Plugin Directory


Ignore:
Location:
photo-gallery
Files:
557 added
20 edited

Legend:

Unmodified
Added
Removed
  • photo-gallery/trunk/admin/controllers/Albums.php

    r2694928 r2706798  
    9696    $params['actions'] = $this->actions;
    9797    $params['order'] = WDWLibrary::get('order', 'asc');
    98     $params['orderby'] = WDWLibrary::get('orderby', 'name');
     98    $params['orderby'] = WDWLibrary::get('orderby', '');
     99    if ( $params['orderby'] != '' ) {
     100        WDWLibrary::set_sorting( array('list_type'=>'albums', 'order_by' => $params['orderby'].'_'.$params['order']) );
     101    } else {
     102        $sorting = WDWLibrary::get_sorting( array('list_type'=>'albums') );
     103        $sorting = explode("_", $sorting);
     104        $params['orderby'] = isset($sorting[0]) ? $sorting[0] : 'name';
     105        $params['order'] = isset($sorting[1]) ? $sorting[1] : 'asc';
     106    }
    99107    // To prevent SQL injections.
    100108    $params['order'] = ($params['order'] == 'desc') ? 'desc' : 'asc';
  • photo-gallery/trunk/admin/controllers/Galleries.php

    r2694928 r2706798  
    9999    $params['order'] = WDWLibrary::get('order', 'asc');
    100100    $params['orderby'] = WDWLibrary::get('orderby', 'order');
     101    if ( $params['orderby'] != 'order' ) {
     102        WDWLibrary::set_sorting( array('list_type'=>'galleries', 'order_by' => $params['orderby'].'_'.$params['order']) );
     103    } else {
     104        $sorting = WDWLibrary::get_sorting( array('list_type'=>'galleries') );
     105        $sorting = explode("_", $sorting);
     106        $params['orderby'] = isset($sorting[0]) ? $sorting[0] : 'order';
     107        $params['order'] = isset($sorting[1]) ? $sorting[1] : 'asc';
     108    }
    101109    // To prevent SQL injections.
    102110    $params['order'] = ($params['order'] == 'desc') ? 'desc' : 'asc';
     
    354362    $params['actions'] = WDWLibrary::image_actions( $params['gallery_type'] );
    355363    $params['page_url'] = $params['form_action'];
    356     $order_by = WDWLibrary::get('order_by', 'order_asc');
    357     if ( !array_key_exists($order_by, WDWLibrary::admin_images_ordering_choices())) {
    358       $order_by = 'order_asc';
    359     }
     364    $order_by = WDWLibrary::get('order_by', '');
     365    if ( $order_by != '' && array_key_exists($order_by, WDWLibrary::admin_images_ordering_choices()) ) {
     366      WDWLibrary::set_sorting( array('gallery_id' => $id, 'list_type' => 'edit', 'order_by' => $order_by) );
     367    }
     368    $order_by = WDWLibrary::get_sorting( array('gallery_id' => $id, 'list_type' => 'edit') );
    360369    $order_by = explode('_', $order_by);
    361370    $params['order'] = $order_by[1];
  • photo-gallery/trunk/admin/views/AddTags.php

    r2694928 r2706798  
    4848        //if Select all checked, id equal to 0
    4949        //for other cases id must be positive number
    50         if ( str_contains(WDWLibrary::get('image_id', 0), 'pr_') ) {
     50        if ( strpos(WDWLibrary::get('image_id', 0), 'pr_') > -1 ) {
    5151          $image_id = WDWLibrary::get('image_id', 0);
    5252        } else {
     
    114114    </div>
    115115    </div>
    116     <input id="image_id" name="image_id" type="hidden" value="<?php echo $image_id; ?>" />
     116    <input id="image_id" name="image_id" type="hidden" value="<?php echo esc_attr($image_id); ?>" />
    117117    <div class="media-frame-toolbar">
    118118        <div class="media-toolbar">
  • photo-gallery/trunk/admin/views/AdminView.php

    r2694928 r2706798  
    8686    ob_start();
    8787    ?>
    88     <div class="wd-list-view-header">
     88    <div class="wd-list-view-header<?php echo !BWG()->is_pro ? ' bwg-page-header-free' : ''?>">
    8989      <div class="wd-list-view-header-left">
    9090        <div class="wd-page-title <?php echo $title_class; ?>">
     
    185185  protected function sorting() {
    186186    $options = WDWLibrary::admin_images_ordering_choices();
     187    $id = WDWLibrary::get('current_id', 0);
     188    $order_by = WDWLibrary::get_sorting( array('gallery_id' => $id, 'list_type' => 'edit') );
    187189    ob_start();
    188190    ?>
     
    191193      foreach ( $options as $key => $option ) {
    192194        ?>
    193         <option value="<?php echo $key; ?>"><?php echo $option; ?></option>
     195        <option value="<?php echo $key; ?>" <?php if ($order_by == $key) { echo 'selected'; } ?>><?php echo $option; ?></option>
    194196        <?php
    195197      }
  • photo-gallery/trunk/admin/views/Albums.php

    r2694928 r2706798  
    189189    );
    190190    ?>
    191     <div class="bwg-page-header wd-list-view-header">
     191    <div class="bwg-page-header wd-list-view-header<?php echo !BWG()->is_pro ? ' bwg-page-header-free' : ''?>">
    192192      <div class="wd-page-title wd-header wd-list-view-header-left">
    193193        <div>
  • photo-gallery/trunk/admin/views/Editimage.php

    r2694928 r2706798  
    2727    }
    2828    $image_id =  WDWLibrary::get('image_id', '0');
    29     $image_url =  WDWLibrary::get('image_url', '');
    30     $facebook_post = WDWLibrary::get('FACEBOOK_POST', '0');
    31     $fb_post_url =  WDWLibrary::get('fb_post_url', '');
    32     $app_id = BWG()->options->facebook_app_id;
     29    $image_url =  WDWLibrary::get('image_url', '', 'esc_url');
    3330    ?>
    3431    <div id="loading_div"></div>
    3532    <div id="wd-content" style="width:100%; height:100%;">
    3633      <div id="bwg_container_for_media_1" style="width:100%; height:100%; margin:0 auto; text-align:center; vertical-align:middle;">
    37         <?php if ( !$facebook_post ) { ?>
    3834            <img id="image_display" src="<?php echo BWG()->upload_url . WDWLibrary::image_url_version($image_url, $modified_date); ?>" style="max-width:100%; max-height:100%; position: relative; transform: translateY(-50%); top: 50%;" />
    39         <?php }
    40         else { ?>
    41           <div id="fb-root"></div>
    42           <script>
    43             (function (d, s, id) {
    44               var js, fjs = d.getElementsByTagName(s)[0];
    45               if (d.getElementById(id)) {
    46                 return;
    47               }
    48               js = d.createElement(s);
    49               js.id = id;
    50               js.src = "//connect.facebook.net/en_US/all.js#xfbml=1&version=v2.3&appId=<?php echo $app_id; ?>";
    51               fjs.parentNode.insertBefore(js, fjs);
    52             }(document, 'script', 'facebook-jssdk'));
    53           </script>
    54           <div class="fb-post" data-width="300" data-href="https://www.facebook.com/{user_name_or_id}/<?php echo $fb_post_url; ?>"></div>
    55         <?php } ?>
    5635      </div>
    5736    </div>
     
    6140      var file_url = window.parent.document.getElementById("image_url_<?php echo $image_id; ?>").value;
    6241      var is_embed = file_type.indexOf("EMBED_") > -1 ? true : false;
    63       //for facebook
    64       var is_facebook_post = file_type.indexOf("_FACEBOOK_POST") > -1 ? true : false;
     42
    6543      var is_instagram_post = file_type.indexOf("INSTAGRAM_POST") > -1 ? true : false;
    6644      if (is_embed) {
    6745        var embed_id = window.parent.document.getElementById("input_filename_<?php echo $image_id; ?>").value;
    68         if (!is_facebook_post) {
    69           window.document.getElementById("image_display").setAttribute('style', 'display: none;');
    70           if (!is_instagram_post) {
    71             window.document.getElementById("bwg_container_for_media_1").innerHTML = spider_display_embed(file_type, file_url, embed_id, {
    72               class: "embed_display",
    73               frameborder: "0",
    74               allowfullscreen: "allowfullscreen",
    75               style: "width:100%; height:100%; vertical-align:middle; text-align: center; margin: 0 auto;"
    76             });
    77           }
    78           else {
    79             window.document.getElementById("bwg_container_for_media_1").innerHTML = spider_display_embed(file_type, file_url, embed_id, {
    80               class: "embed_display",
    81               width: "<?php echo $instagram_post_width; ?>",
    82               height: "<?php echo $instagram_post_height; ?>",
    83               frameborder: "0",
    84               allowfullscreen: "allowfullscreen",
    85               style: "width:<?php echo $instagram_post_width; ?>px; height:<?php echo $instagram_post_height; ?>px; vertical-align:middle; text-align: center; margin: 0 auto;"
    86             });
    87           }
     46        window.document.getElementById("image_display").setAttribute('style', 'display: none;');
     47        if (!is_instagram_post) {
     48          window.document.getElementById("bwg_container_for_media_1").innerHTML = spider_display_embed(file_type, file_url, embed_id, {
     49            class: "embed_display",
     50            frameborder: "0",
     51            allowfullscreen: "allowfullscreen",
     52            style: "width:100%; height:100%; vertical-align:middle; text-align: center; margin: 0 auto;"
     53          });
     54        }
     55        else {
     56          window.document.getElementById("bwg_container_for_media_1").innerHTML = spider_display_embed(file_type, file_url, embed_id, {
     57            class: "embed_display",
     58            width: "<?php echo $instagram_post_width; ?>",
     59            height: "<?php echo $instagram_post_height; ?>",
     60            frameborder: "0",
     61            allowfullscreen: "allowfullscreen",
     62            style: "width:<?php echo $instagram_post_width; ?>px; height:<?php echo $instagram_post_height; ?>px; vertical-align:middle; text-align: center; margin: 0 auto;"
     63          });
    8864        }
    8965      }
     
    9167      jQuery('#loading_div', window.parent.document).hide();
    9268      });
    93     </script>
    94     <?php
    95     die();
    96   }
    97 
    98   public function thumb_display() {
    99     $popup_width = WDWLibrary::get('width', 1000, 'intval') - 30;
    100     $image_width = $popup_width - 40;
    101     $popup_height = WDWLibrary::get('width', 600, 'intval') - 50;
    102     $image_height = $popup_height - 40;
    103     $image_id = WDWLibrary::get('image_id', 0, 'intval');
    104     $modified_date = WDWLibrary::get('modified_date', '');
    105     ?>
    106     <div style="display:table; width:100%; height:<?php echo $popup_height; ?>px;">
    107       <div style="display:table-cell; text-align:center; vertical-align:middle;">
    108         <img id="thumb_view" src="" style="max-width:<?php echo $image_width; ?>px; max-height:<?php echo $image_height; ?>px;" />
    109       </div>
    110     </div>
    111     <script>
    112       var image_url = "<?php echo BWG()->upload_url; ?>" + window.parent.document.getElementById("thumb_url_<?php echo $image_id; ?>").value;
    113       window.document.getElementById("thumb_view").src = image_url + "<?php echo $modified_date ? '?bwg=' . $modified_date : ''; ?>";
    11469    </script>
    11570    <?php
     
    899854      </div>
    900855      <input type="hidden" name="edit_type" id="edit_type" />
    901       <input type="hidden" name="image_id" id="image_id" value="<?php echo $image_id; ?>" />
    902       <input type="hidden" name="brightness_val" id="brightness_val" value="<?php echo $brightness_val; ?>" />
    903       <input type="hidden" name="contrast_val" id="contrast_val" value="<?php echo $contrast_val; ?>" />
     856      <input type="hidden" name="image_id" id="image_id" value="<?php echo esc_attr($image_id); ?>" />
     857      <input type="hidden" name="brightness_val" id="brightness_val" value="<?php echo esc_attr($brightness_val); ?>" />
     858      <input type="hidden" name="contrast_val" id="contrast_val" value="<?php echo esc_attr($contrast_val); ?>" />
    904859    </form>
    905860    <script>
  • photo-gallery/trunk/admin/views/Galleries.php

    r2694928 r2706798  
    233233    </div>
    234234    <div id="message_div" class="wd_updated" style="display: none;"></div>
    235     <div class="bwg-page-header wd-list-view-header">
     235    <div class="bwg-page-header wd-list-view-header<?php echo !BWG()->is_pro ? ' bwg-page-header-free' : ''?>">
    236236      <div class="wd-page-title wd-header wd-list-view-header-left">
    237237        <div>
  • photo-gallery/trunk/css/bwg_tables.css

    r2694928 r2706798  
    11531153  margin-right: 15px;
    11541154}
     1155.bwg-page-header-free.bwg-page-actions {
     1156  margin-top: 18px;
     1157}
     1158
    11551159.bwg-page-actions {
    11561160  float: right;
     
    11591163  position: relative;
    11601164}
     1165
    11611166.bwg-clear {
    11621167    content: '';
     
    25102515.bwg-page-actions .bwg-howto-button:before {
    25112516  content: "";
    2512   background: url(images/button_plus.svg) no-repeat 5px ;
    2513   background-position: 5px;
     2517  background: url(images/button_plus.svg) no-repeat;
     2518  background-position: 5px 5px;
    25142519  background-color: #323A45;
    25152520  border-radius: 50%;
     
    32023207    flex: 1 1 280px;
    32033208  }
     3209  .bwg-page-header-free .wd-page-title > div:first-child {
     3210    flex: 1 1 200px;
     3211  }
    32043212}
    32053213/* style for 1366 */
     
    33423350}
    33433351/* style for 1280 */
    3344 @media screen and (max-width: 1280px) {
     3352@media screen and (max-width: 1366px) {
    33453353  .wd-list-view-header .wd-list-view-header-free-right {
    33463354    margin-left: 10px;
    33473355  }
    3348 }
     3356
     3357  .bwg-page-header-free.wd-list-view-header .wd-list-view-header-left {
     3358    display: block;
     3359  }
     3360
     3361  .bwg-page-header-free.wd-list-view-header .wd-list-view-header-left .wd-page-title.wd-header {
     3362    width: auto;
     3363    height: 40px;
     3364    display: inline-block;
     3365  }
     3366
     3367  .bwg-page-header-free.wd-list-view-header .wd-list-view-header-left .wd-list-view-header-buttons .page-title-action {
     3368    line-height: 70px;
     3369  }
     3370
     3371  .bwg-page-header-free.wd-list-view-header .wd-list-view-header-free-right {
     3372    height: 103px;
     3373  }
     3374
     3375  .bwg-page-header-free#name {
     3376    width:160px;
     3377  }
     3378
     3379  .bwg-page-header-free .tw-button-primary {
     3380    margin: 0 10px 20px 0px;
     3381  }
     3382
     3383  .bwg-page-header-free .wd-howto-divider-vertical-two {
     3384    display: none;
     3385  }
     3386
     3387  .bwg-page-header-free .bwg-howto-button {
     3388    display: block;
     3389  }
     3390
     3391  .bwg-page-header-free .bwg-page-actions {
     3392    display: block;
     3393    float: left;
     3394  }
     3395
     3396  .bwg-page-header-free.wd-list-view-header .wd-list-view-header-free-right {
     3397    height: 103px;
     3398  }
     3399
     3400
     3401  .bwg-page-header-free .wd-page-title > div:first-child {
     3402    flex: none;
     3403    margin-right:40px;
     3404  }
     3405
     3406  .bwg-page-header-free .bwg-page-actions .tw-button-primary {
     3407    min-width: 100px;
     3408  }
     3409}
     3410
    33493411@media screen and (max-width: 1365px) {
    33503412  #bwg_tab_gallery_content > .bwg-section > .wd-box-content,
     
    34343496}
    34353497/* style for 1024*/
    3436 @media screen and (max-width: 1275px) {
     3498@media screen and (max-width: 1280px) {
    34373499  .wd-form .list-search-box input[type=search] {
    34383500    width: 100%;
     
    34433505  .wd-list-view-header .wd-list-view-header-free-right {
    34443506    display: none;
     3507  }
     3508  .bwg-page-header-free.wd-list-view-header .wd-list-view-header-free-right {
     3509    display: block;
    34453510  }
    34463511  .upgrade-to-pro-text {
     
    37573822
    37583823@media screen and (max-width: 826px) {
     3824  .wd-list-view-header .wd-list-view-header-free-right {
     3825    margin-right: -15px
     3826  }
     3827
    37593828  .bwg_form .tablenav.top .actions, .tablenav .view-switch {
    37603829    display: none;
     
    38713940    margin: 10px auto;
    38723941  }
     3942
    38733943  .wd-list-view-header .wd-list-view-header-left {
    38743944    display: flex;
    38753945    flex-wrap: wrap;
    38763946  }
     3947
     3948  .bwg-page-header-free.wd-list-view-header .wd-list-view-header-left {
     3949    display: block;
     3950    flex-wrap: unset;
     3951  }
     3952
     3953  .wd-list-view-header .wd-list-view-header-left {
     3954    display: flex;
     3955    flex-wrap: wrap;
     3956  }
     3957
    38773958  .wd-list-view-header .wd-list-view-header-left .wd-page-title.wd-header {
    38783959    display: inline-block;
    38793960    margin-bottom: 15px;
    38803961  }
     3962
     3963  .bwg-page-header-free.wd-list-view-header .wd-list-view-header-left .wd-page-title.wd-header {
     3964    display: inline-block;
     3965    margin-bottom: inherit;
     3966  }
     3967
    38813968  .wd-list-view-header .wd-list-view-header-left .wd-page-title.wd-header h1.wd-heading-inline {
    38823969    font-size: 18px;
     
    39284015
    39294016@media screen and (max-width: 655px) {
     4017  .bwg-page-header-free.wd-list-view-header {
     4018    display: block;
     4019  }
     4020
     4021  .bwg-page-header-free.wd-list-view-header .wd-list-view-header-left {
     4022    margin-top: 170px;
     4023  }
     4024
     4025  .bwg-page-header-free.wd-list-view-header .wd-list-view-header-free-right {
     4026    width: 100%;
     4027    background-image: none;
     4028    background-color: #000E14;
     4029    margin: 0;
     4030    padding: 0;
     4031    box-sizing: border-box;
     4032    position: absolute;
     4033    left:0px;
     4034    top:-105px;
     4035    border-radius: 0;
     4036  }
     4037
     4038  .bwg-page-header-free.wd-list-view-header .wd-list-view-header-free-right .upgrade-header,
     4039  .bwg-page-header-free.wd-list-view-header .wd-list-view-header-free-right .upgrade-text {
     4040    text-align: center;
     4041  }
     4042
     4043  .bwg-page-header-free.wd-list-view-header .wd-list-view-header-free-right .upgrade-button {
     4044    text-align: center;
     4045    display: block;
     4046    width: 136px;
     4047    margin: auto;
     4048    box-sizing: border-box;
     4049  }
     4050
     4051  form.bwg_form {
     4052    position: relative;
     4053  }
     4054
    39304055  .wd-list-view-header .wd-list-view-header-left {
    39314056    align-items: flex-start;
     
    39374062    margin-left: 5px;
    39384063  }
     4064  .bwg-page-header-free.wd-list-view-header .wd-list-view-header-left .wd-page-title.wd-header {
     4065    margin: 20px 0 0 5px;
     4066  }
     4067  .bwg-page-header-free.wd-list-view-header .wd-list-view-header-left .wd-list-view-header-buttons {
     4068    margin-top: 0px;
     4069  }
    39394070  .wd-list-view-header .wd-list-view-header-left .wd-list-view-header-buttons {
    39404071    margin-top: 20px;
    39414072  }
     4073  .bwg-page-header-free .wd-page-title > div:first-child {
     4074    padding-top: 30px;
     4075  }
    39424076  .wd-page-title > div:first-child {
    39434077    flex: 0;
     4078    padding-top: inherit;
    39444079  }
    39454080}
     
    39534088    display: block;
    39544089  }
     4090
    39554091  .bwg-page-actions .bwg-howto-button,
    39564092  .bwg-page-header.wd-list-view-header .bwg-howto-button {
    3957     margin-top: 10px;
    3958   }
     4093     margin-top: 10px;
     4094   }
    39594095  .wd-list-view-header .bwg-howto-button {
    39604096    margin-top: 20px;
    39614097    margin-left: 5px;
    39624098  }
     4099
     4100  .bwg-page-header-free.bwg-page-actions .bwg-howto-button,
     4101  .bwg-page-header-free.bwg-page-header.wd-list-view-header .bwg-howto-button {
     4102     margin-top: inherit;
     4103   }
     4104  .bwg-page-header-free.wd-list-view-header .bwg-howto-button {
     4105    margin-top: inherit;
     4106    margin-left: inherit;
     4107  }
     4108
    39634109  .bwg-page-header.wd-list-view-header .bwg-howto-button {
    39644110    margin-left: 0px;
  • photo-gallery/trunk/filemanager/controller.php

    r2694928 r2706798  
    5050
    5151    // set session data.
    52       $session_data = array();
    53     $session_data['sort_by'] = $this->model->get_from_session('sort_by', 'date_modified');
    54     $session_data['sort_order'] = $this->model->get_from_session('sort_order', 'desc');
     52    $session_data = array();
    5553    $session_data['items_view'] = $this->model->get_from_session('items_view', 'thumbs');
    5654    $session_data['clipboard_task'] = $this->model->get_from_session('clipboard_task', '');
     
    5856    $session_data['clipboard_src'] = $this->model->get_from_session('clipboard_src', '');
    5957    $session_data['clipboard_dest'] = $this->model->get_from_session('clipboard_dest', '');
     58    $bwg_filemanager_sorting_array = get_option('bwg_filemanager_sorting', 0);
     59    if ($bwg_filemanager_sorting_array !== 0) {
     60      if (array_key_exists(get_current_user_id(), $bwg_filemanager_sorting_array)) {
     61        $session_data['sort_by'] = $bwg_filemanager_sorting_array[get_current_user_id()]['sort_by'];
     62        $session_data['sort_order'] = $bwg_filemanager_sorting_array[get_current_user_id()]['sort_order'];
     63      } else {
     64        $session_data['sort_by'] = 'date_modified';
     65        $session_data['sort_order'] = 'asc';
     66      }
     67    } else {
     68      $session_data['sort_by'] = 'date_modified';
     69      $session_data['sort_order'] = 'asc';
     70    }
     71    $params['orderby'] = $session_data['sort_by'];
    6072    $params['session_data'] = $session_data;
    61 
    6273    $params['dir'] = ($dir == '' || $dir == '/') ? '/' : $dir .'/';
    6374    $params['path_components'] = $this->model->get_path_components( $dir );
     
    6576    $params['page_num'] = $page_num;
    6677    $params['valid_types'] = $valid_types;
    67     $params['orderby'] = $session_data['sort_by'];
     78
     79
    6880    $params['order'] = $session_data['sort_order'];
    6981    $params['page_per'] = $this->page_per;
     82
    7083    // get file lists.
    7184    $items = $this->model->get_file_lists( $params );
  • photo-gallery/trunk/framework/WDWLibrary.php

    r2694928 r2706798  
    499499    <?php if (!$pager) { ?>
    500500    <input type="hidden" id="page_number"  name="page_number" value="<?php echo self::get('page_number', 1, 'intval'); ?>" />
    501     <input type="hidden" id="search_or_not" name="search_or_not" value="<?php echo self::get('search_or_not'); ?>"/>
     501    <input type="hidden" id="search_or_not" name="search_or_not" value="<?php echo self::get('search_or_not', '', 'esc_attr'); ?>"/>
    502502    <?php
    503503    }
     
    12481248
    12491249      if ( !empty($filter_teg) ) {
    1250         $filter_teg_arr = explode(',', trim($filter_teg));
     1250        $filter_teg_arr = array_map('intval', explode(",", trim($filter_teg)));
    12511251        $_REQUEST[$tag_input_name] = $filter_teg_arr;
    12521252      }
     
    33133313    return $data;
    33143314  }
     3315
     3316  /**
     3317   * Saving admin galleries, gallery edit, albums list page sorted value to wp_options.
     3318   *
     3319   * @param $params array list_type => edit/galleries/albums, gallery_id for edit case only, order_by for all cases
     3320  */
     3321  public static function set_sorting( $params = array() ) {
     3322
     3323    $gallery_id = isset( $params['gallery_id'] ) ? $params['gallery_id'] : 0;
     3324    $order_by   = isset( $params['order_by'] ) ? $params['order_by'] : 'order_asc';
     3325    $list_type  = isset( $params['list_type'] ) ? $params['list_type'] : '';
     3326
     3327    if ( $list_type == '' )  {
     3328      return;
     3329    }
     3330
     3331    $data = get_option('bwg_gallery_sorting');
     3332    $user_id = get_current_user_id();
     3333
     3334    if( $list_type == 'edit' && ((!empty($data[$user_id][$gallery_id]) && $data[$user_id][$gallery_id]['order_by'] == $order_by) || $gallery_id == 0 || $user_id == 0) ) {
     3335      return;
     3336    }
     3337    if ( $list_type == 'edit') {
     3338        $data[$user_id][$gallery_id]['order_by'] = $order_by;
     3339    } elseif ( $list_type == 'galleries' ) {
     3340        $data[$user_id]['galleries']['order_by'] = $order_by;
     3341    } elseif ( $list_type == 'albums' ) {
     3342        $data[$user_id]['albums']['order_by'] = $order_by;
     3343    }
     3344
     3345    update_option( 'bwg_gallery_sorting', $data, 1 );
     3346  }
     3347
     3348  /**
     3349   * Getting admin gallery list page sorted value from wp_options.
     3350   *
     3351   * @param $params array list_type => edit/galleries/albums, gallery_id for edit case only
     3352   *
     3353   * @return string
     3354  */
     3355  public static function get_sorting( $params = array() ) {
     3356    $gallery_id = isset($params['gallery_id']) ? $params['gallery_id'] : 0;
     3357    $list_type = isset($params['list_type']) ? $params['list_type'] : '';
     3358    $user_id = get_current_user_id();
     3359    $data = get_option('bwg_gallery_sorting');
     3360
     3361    if ( $list_type == 'edit' && !empty($data[$user_id][$gallery_id]['order_by']) ) {
     3362        return $data[$user_id][$gallery_id]['order_by'];
     3363    } elseif ($list_type == 'galleries' && !empty($data[$user_id]['galleries']['order_by']) ) {
     3364        return $data[$user_id]['galleries']['order_by'];
     3365    } elseif ($list_type == 'albums' && !empty($data[$user_id]['albums']['order_by']) ) {
     3366        return $data[$user_id]['albums']['order_by'];
     3367    }
     3368    return 'order_asc';
     3369  }
    33153370}
    33163371
  • photo-gallery/trunk/frontend/models/BWGModelGalleryBox.php

    r2694928 r2706798  
    4343      $bwg_filter_tag_temp = WDWLibrary::get('filter_tag_' . $bwg, 0);
    4444      if ( !empty($bwg_filter_tag_temp) ) {
    45         $filter_tags = explode(",", $bwg_filter_tag_temp);
     45        $filter_tags = array_map('intval', explode(",", $bwg_filter_tag_temp));
    4646      }
    4747    }
    4848    else {
    49       $filter_tags = explode(",", $bwg_filter_tag_temp);
     49      $filter_tags = array_map('intval', explode(",", $bwg_filter_tag_temp));
    5050    }
    5151
     
    111111          $join .= ' LEFT JOIN (SELECT GROUP_CONCAT(tag_id order by tag_id SEPARATOR ",") AS tags_combined, image_id FROM  ' . $wpdb->prefix . 'bwg_image_tag GROUP BY image_id) AS tags ON image.id=tags.image_id';
    112112      }
    113       $where .= ' AND CONCAT(",", tags.tags_combined, ",") REGEXP ",(' . implode($compare_sign, $filter_tags) . ')," ';
     113      $where .= ' AND CONCAT(",", tags.tags_combined, ",") REGEXP ",( %s )," ';
     114      $prepareArgs[] = implode($compare_sign, $filter_tags);
    114115    }
    115116
  • photo-gallery/trunk/frontend/views/BWGViewGalleryBox.php

    r2694928 r2706798  
    10681068                                <p class="bwg_comment_waiting_message"><?php _e('Your comment is awaiting moderation', BWG()->prefix); ?></p>
    10691069                                <input id="ajax_task" name="ajax_task" type="hidden" value="" />
    1070                                 <input id="image_id"id="image_id" name="image_id" type="hidden" value="<?php echo esc_attr($image_id); ?>" />
    1071                                             <input id="comment_id" name="comment_id" type="hidden" value="" />
     1070                                <input id="image_id" name="image_id" type="hidden" value="<?php echo esc_attr($image_id); ?>" />
     1071                                <input id="comment_id" name="comment_id" type="hidden" value="" />
    10721072                                <input type="hidden" value="<?php echo esc_attr($params['comment_moderation']) ?>" id="bwg_comment_moderation">
    10731073                                <input type="hidden" value="<?php echo ($params['gdpr_compliance']) ? 0 : esc_attr($params['popup_enable_captcha']); ?>" id="bwg_popup_enable_captcha">
  • photo-gallery/trunk/frontend/views/BWGViewThumbnails.php

    r2694928 r2706798  
    166166    ?>
    167167    #bwg_container1_<?php echo $bwg; ?> #bwg_container2_<?php echo $bwg; ?> .bwg-container-<?php echo $bwg; ?>.bwg-standard-thumbnails .bwg-item {
    168       justify-content: <?php echo $theme_row->thumb_title_pos == 'top'? 'flex-end' : 'flex-start'; ?>;
     168      justify-content: <?php echo ($theme_row->thumb_title_pos == 'bottom' || $params['show_thumb_description']) ? 'flex-start' : 'flex-end'; ?>;
    169169      max-width: <?php echo $params['thumb_width']; ?>px;
    170170      <?php if ( !BWG()->options->resizable_thumbnails ) { ?>
  • photo-gallery/trunk/frontend/views/view.php

    r2694928 r2706798  
    545545      $get_filter_teg = WDWLibrary::get('filter_tag_' . $bwg);
    546546      if ( BWG()->options->front_ajax == "1" && isset($get_filter_teg) && !empty($get_filter_teg) ) {
    547         $filter_teg_arr = explode(',', $get_filter_teg);
     547        $filter_teg_arr = array_map('intval', explode(",", trim($get_filter_teg)));
    548548        $bwg_search_tags = $filter_teg_arr;
    549549      } ob_start();
     
    635635             ?>
    636636          </div>
    637           <div class="bwg_tag_button_see_all"><div class="see_all_tags show"><span>&#43;</span><?php echo __('see all tags', BWG()->prefix);?></div></div>
     637          <div class="bwg_tag_button_see_all"><div class="see_all_tags bwg_show"><span>&#43;</span><?php echo __('see all tags', BWG()->prefix);?></div></div>
    638638        <?php
    639639        } ?>
     
    907907      <input type="hidden" id="page_number_<?php echo sanitize_html_class($current_view); ?>" name="page_number_<?php echo esc_attr($current_view); ?>" value="<?php echo esc_attr($page_number); ?>" />
    908908      <script type="text/javascript">
     909        if( jQuery('.bwg_nav_cont_<?php echo $current_view; ?>').length > 1 ) {
     910          jQuery('.bwg_nav_cont_<?php echo $current_view; ?>').first().remove()
     911        }
    909912        function spider_page_<?php echo $current_view; ?>(cur, x, y, load_more) {
    910913          if (typeof load_more == "undefined") {
  • photo-gallery/trunk/js/bwg_frontend.js

    r2694928 r2706798  
    167167
    168168    if( tags_button_filter_full > visible_buttons_maxheight ) {
    169       tags_button_filter.css({
    170         'min-height':visible_buttons_minheight,
    171         'max-height':visible_buttons_maxheight,
    172         'overflow':"hidden",
    173       });
     169      /* Check for not closing see all tags container if it is already open ex. during page load */
     170      if(jQuery(this).find(".see_all_tags.bwg_hide").length === 0 ) {
     171        tags_button_filter.css({
     172          'min-height':visible_buttons_minheight,
     173          'max-height':visible_buttons_maxheight,
     174          'overflow':"hidden",
     175        });
     176      }
    174177      tags_button_filter.next('.bwg_tag_button_see_all').show();
    175178    }
     
    188191
    189192    tags_button_filter.next().find('.see_all_tags').off("click").on('click', function () {
    190       if ( jQuery(this).hasClass("show") ) {
    191         jQuery(this).removeClass("show").addClass("hide").html("<span>&#8722;</span>" + bwg_objectsL10n.bwg_tag_see_less);
     193      if ( jQuery(this).hasClass("bwg_show") ) {
     194        jQuery(this).removeClass("bwg_show").addClass("bwg_hide").html("<span>&#8722;</span>" + bwg_objectsL10n.bwg_tag_see_less);
    192195        tags_button_filter.css({
    193196          'min-height':'auto',
     
    197200        });
    198201      }
    199       else if ( jQuery(this).hasClass("hide") ) {
    200         jQuery(this).removeClass("hide").addClass("show").html("<span>&#43;</span>" + bwg_objectsL10n.bwg_tag_see_all);
     202      else if ( jQuery(this).hasClass("bwg_hide") ) {
     203        jQuery(this).removeClass("bwg_hide").addClass("bwg_show").html("<span>&#43;</span>" + bwg_objectsL10n.bwg_tag_see_all);
    201204        tags_button_filter.css({
    202205          'min-height':visible_buttons_minheight,
     
    208211    /* Show all tags section, if selected tags position is under than 2-rd line */
    209212    if ( show_bottom_tag == 1 ) {
    210       jQuery(this).find('.see_all_tags').removeClass("show").addClass("hide").html("<span>&#8722;</span>" + bwg_objectsL10n.bwg_tag_see_less);
     213      jQuery(this).find('.see_all_tags').removeClass("bwg_show").addClass("bwg_hide").html("<span>&#8722;</span>" + bwg_objectsL10n.bwg_tag_see_less);
    211214      tags_button_filter.css({
    212215        'min-height':'auto',
     
    36673670
    36683671function bwg_popup_resize_slidshow( bwg ) {
     3672  var bwg_container1_class_name = '#bwg_container1_' + bwg;
     3673  var bwg_container2_class_name = bwg_container1_class_name + ' #bwg_container2_' + bwg;
     3674  var bwg_slideshow_image_wrap_class_name = bwg_container2_class_name + ' .bwg_slideshow_image_wrap_' + bwg;
     3675  var bwg_slideshow_image_container_class_name = bwg_container2_class_name + ' .bwg_slideshow_image_container_' + bwg;
     3676  var bwg_slideshow_image_class_name = bwg_container2_class_name + ' .bwg_slideshow_image_' + bwg;
     3677
    36693678  var slideshow_filmstrip_class_name = ".bwg_slideshow_filmstrip_" + bwg;
    36703679  // Slideshow filmstrip type is Fix count.
     
    36733682  }
    36743683  var parentt = jQuery("#bwg_container1_" + bwg).parent();
     3684  // Trick to set parent's width to wordpress content area.
     3685  if ( parentt.hasClass('content-area') ) {
     3686    parentt.width(parentt.closest('.content-area').width());
     3687  }
    36753688  /* Trick to set parent's width to elementor tab. */
    36763689  if ( parentt.hasClass('elementor-tab-content') ) {
     
    37663779  }
    37673780  else {
     3781    var slideshow_ratio = bwg_params[bwg]['image_height'] / bwg_params[bwg]['image_width'];
     3782    var new_slideshow_height = parent_width * slideshow_ratio;
    37683783    /* Slideshow filmstrip type is Fix dimension. */
    37693784    if ( bwg_params[bwg]['slideshow_filmstrip_type'] == 1 ) {
     
    37843799    jQuery(".bwg_slideshow_title_text_" + bwg).css({ fontSize: ((parent_width) * 2 * bwg_params[bwg]['slideshow_title_font_size'] / bwg_params[bwg]['image_width']) });
    37853800    jQuery(".bwg_slideshow_description_text_" + bwg).css({ fontSize: ((parent_width) * 2 * bwg_params[bwg]['slideshow_description_font_size'] / bwg_params[bwg]['image_width']) });
    3786     jQuery(".bwg_slideshow_image_" + bwg).css({ 'display': 'inline-block' });
     3801    jQuery(bwg_slideshow_image_wrap_class_name).css({
     3802      width: parent_width,
     3803      height: new_slideshow_height
     3804    });
     3805    jQuery(bwg_slideshow_image_container_class_name).css({
     3806      width: parent_width,
     3807      height: new_slideshow_height
     3808    });
     3809    jQuery(bwg_slideshow_image_class_name).css({
     3810      'display': 'inline-block',
     3811      'max-width': parent_width,
     3812      'max-height': new_slideshow_height
     3813    });
    37873814  }
    37883815  if ( data[parseInt(jQuery("#bwg_current_image_key_" + bwg).val())]["is_embed_video"] ) {
  • photo-gallery/trunk/js/scripts.min.js

    r2694928 r2706798  
    1 var bwg_current_filmstrip_pos,total_thumbnail_count,key,startPoint,endPoint,bwg_image_info_pos,filmstrip_width,preloadCount,filmstrip_thumbnail_width,filmstrip_thumbnail_height,addthis_share,lightbox_comment_pos,bwg_transition_duration,bwg_playInterval,isPopUpOpened=!1,bwg_overflow_initial_value=!1,bwg_overflow_x_initial_value=!1,bwg_overflow_y_initial_value=!1;function gallery_box_ready(){filmstrip_thumbnail_width=jQuery(".bwg_filmstrip_thumbnail").width(),filmstrip_thumbnail_height=jQuery(".bwg_filmstrip_thumbnail").height(),1==gallery_box_data.open_with_fullscreen?(filmstrip_width=jQuery(window).width(),filmstrip_height=jQuery(window).height()):(filmstrip_width=jQuery(".bwg_filmstrip_container").width(),filmstrip_height=jQuery(".bwg_filmstrip_container").height()),preloadCount="horizontal"==gallery_box_data.filmstrip_direction?parseInt(filmstrip_width/filmstrip_thumbnail_width)+gallery_box_data.preload_images_count:parseInt(filmstrip_height/filmstrip_thumbnail_height)+gallery_box_data.preload_images_count,total_thumbnail_count=jQuery(".bwg_filmstrip_thumbnail").length,key=parseInt(jQuery("#bwg_current_image_key").val()),startPoint=0,endPoint=key+preloadCount,jQuery(function(){bwg_load_visible_images(key,preloadCount,total_thumbnail_count),jQuery(".pge_tabs li a").on("click",function(){return jQuery(".pge_tabs_container > div").hide(),jQuery(".pge_tabs li").removeClass("pge_active"),jQuery(jQuery(this).attr("href")).show(),jQuery(this).closest("li").addClass("pge_active"),jQuery("[name=type]").val(jQuery(this).attr("href").substr(1)),!1});var e=jQuery("#bwg_rated").attr("data-params");void 0!==e&&bwg_rating((e=JSON.parse(e)).current_rate,e.current_rate_count,e.current_avg_rating,e.current_image_key)}),1==gallery_box_data.is_pro&&1==gallery_box_data.enable_addthis&&gallery_box_data.addthis_profile_id&&(addthis_share={url:gallery_box_data.share_url}),lightbox_comment_pos=gallery_box_data.lightbox_comment_pos,bwg_image_info_pos=jQuery(".bwg_ctrl_btn_container").length?jQuery(".bwg_ctrl_btn_container").height():0,bwg_transition_duration=gallery_box_data.slideshow_interval<4*gallery_box_data.slideshow_effect_duration&&0!=gallery_box_data.slideshow_interval?1e3*gallery_box_data.slideshow_interval/4:1e3*gallery_box_data.slideshow_effect_duration,gallery_box_data.bwg_transition_duration=bwg_transition_duration,gallery_box_data.bwg_trans_in_progress=!1,(jQuery("#spider_popup_wrap").width()>=jQuery(window).width()||jQuery("#spider_popup_wrap").height()>=jQuery(window).height())&&parseInt(jQuery(".spider_popup_close").css("right"))<0&&jQuery(".spider_popup_close").attr("class","spider_popup_close_fullscreen"),window.clearInterval(bwg_playInterval),bwg_current_filmstrip_pos=gallery_box_data.current_pos,jQuery(document).on("keydown",function(e){jQuery("#bwg_name").is(":focus")||jQuery("#bwg_email").is(":focus")||jQuery("#bwg_comment").is(":focus")||jQuery("#bwg_captcha_input").is(":focus")||("ArrowRight"==e.key?parseInt(jQuery("#bwg_current_image_key").val())==gallery_box_data.data.length-1?bwg_change_image(parseInt(jQuery("#bwg_current_image_key").val()),0):bwg_change_image(parseInt(jQuery("#bwg_current_image_key").val()),parseInt(jQuery("#bwg_current_image_key").val())+1):"ArrowLeft"==e.key?0==parseInt(jQuery("#bwg_current_image_key").val())?bwg_change_image(parseInt(jQuery("#bwg_current_image_key").val()),gallery_box_data.data.length-1):bwg_change_image(parseInt(jQuery("#bwg_current_image_key").val()),parseInt(jQuery("#bwg_current_image_key").val())-1):"Escape"==e.key?spider_destroypopup(1e3):"Space"==e.key&&jQuery(".bwg_play_pause").trigger("click"))}),jQuery(window).resize(function(){void 0!==jQuery().fullscreen&&jQuery.isFunction(jQuery().fullscreen)&&(jQuery.fullscreen.isFullScreen()||bwg_popup_resize())});var r=gallery_box_data.image_width,_=gallery_box_data.image_height;if(1==gallery_box_data.is_pro){1==gallery_box_data.enable_addthis&&gallery_box_data.addthis_profile_id&&jQuery(".at4-share-outer").show(),spider_set_input_value("rate_ajax_task","save_hit_count"),spider_rate_ajax_save("bwg_rate_form");var e=gallery_box_data.data,t=gallery_box_data.current_image_key;jQuery(".bwg_image_hits span").html(++e[t].hit_count);var i=window.location.hash;i&&"-1"!=i.indexOf("bwg")||(location.replace("#bwg"+gallery_box_data.gallery_id+"/"+gallery_box_data.current_image_id),history.replaceState(void 0,void 0,"#bwg"+gallery_box_data.gallery_id+"/"+gallery_box_data.current_image_id))}1==gallery_box_data.image_right_click&&(jQuery(".bwg_image_wrap").bind("contextmenu",function(e){return!1}),jQuery(".bwg_image_wrap").css("webkitTouchCallout","none")),jQuery("#spider_popup_wrap").bind("touchmove",function(e){e.preventDefault()}),void 0!==jQuery().swiperight&&jQuery.isFunction(jQuery().swiperight)&&jQuery("#spider_popup_wrap .bwg_image_wrap").swiperight(function(){return bwg_change_image(parseInt(jQuery("#bwg_current_image_key").val()),(parseInt(jQuery("#bwg_current_image_key").val())+gallery_box_data.data.length-1)%gallery_box_data.data.length),!1}),void 0!==jQuery().swipeleft&&jQuery.isFunction(jQuery().swipeleft)&&jQuery("#spider_popup_wrap .bwg_image_wrap").swipeleft(function(){return bwg_change_image(parseInt(jQuery("#bwg_current_image_key").val()),(parseInt(jQuery("#bwg_current_image_key").val())+1)%gallery_box_data.data.length),!1}),bwg_reset_zoom();var a=/android|webos|iphone|ipad|ipod|blackberry|iemobile|opera mini/i.test(navigator.userAgent.toLowerCase())?"touchend":"click";jQuery("#spider_popup_left").on(a,function(){return bwg_change_image(parseInt(jQuery("#bwg_current_image_key").val()),(parseInt(jQuery("#bwg_current_image_key").val())+gallery_box_data.data.length-1)%gallery_box_data.data.length),!1}),jQuery("#spider_popup_right").on(a,function(){return bwg_change_image(parseInt(jQuery("#bwg_current_image_key").val()),(parseInt(jQuery("#bwg_current_image_key").val())+1)%gallery_box_data.data.length),!1}),-1!=navigator.appVersion.indexOf("MSIE 10")||-1!=navigator.appVersion.indexOf("MSIE 9")?setTimeout(function(){bwg_popup_resize()},1):bwg_popup_resize(),jQuery(".bwg_watermark").css({display:"none"}),setTimeout(function(){bwg_change_watermark_container()},500),void 0!==jQuery().fullscreen&&jQuery.isFunction(jQuery().fullscreen)&&(jQuery.fullscreen.isNativelySupported()||jQuery(".bwg_fullscreen").hide()),"horizontal"==gallery_box_data.filmstrip_direction?(jQuery(".bwg_image_container").height(jQuery(".bwg_image_wrap").height()-gallery_box_data.image_filmstrip_height),jQuery(".bwg_image_container").width(jQuery(".bwg_image_wrap").width())):(jQuery(".bwg_image_container").height(jQuery(".bwg_image_wrap").height()),jQuery(".bwg_image_container").width(jQuery(".bwg_image_wrap").width()-gallery_box_data.image_filmstrip_width)),void 0!==jQuery().mCustomScrollbar&&jQuery.isFunction(jQuery().mCustomScrollbar)&&jQuery(".bwg_comments,.bwg_ecommerce_panel, .bwg_image_info").mCustomScrollbar({scrollInertia:150,theme:"dark-thick",advanced:{updateOnContentResize:!0}});var s=/Firefox/i.test(navigator.userAgent)?"DOMMouseScroll":"mousewheel";jQuery(".bwg_filmstrip").on(s,function(e){var t=window.event||e,i=(t=t.originalEvent?t.originalEvent:t).detail?-40*t.detail:t.wheelDelta,a=/android|webos|iphone|ipad|ipod|blackberry|iemobile|opera mini/i.test(navigator.userAgent.toLowerCase());0<i?jQuery(".bwg_filmstrip_left").trigger(a?"touchend":"click"):jQuery(".bwg_filmstrip_right").trigger(a?"touchend":"click")}),jQuery(".bwg_filmstrip_right").on(a,function(){jQuery(".bwg_filmstrip_thumbnails").stop(!0,!1),"left"==gallery_box_data.left_or_top?"width"==gallery_box_data.width_or_height?(jQuery(".bwg_filmstrip_thumbnails").position().left>=-(jQuery(".bwg_filmstrip_thumbnails").width()-jQuery(".bwg_filmstrip").width())&&(jQuery(".bwg_filmstrip_left").css({opacity:1}),jQuery(".bwg_filmstrip_thumbnails").position().left<-(jQuery(".bwg_filmstrip_thumbnails").width()-jQuery(".bwg_filmstrip").width()-(gallery_box_data.filmstrip_thumb_right_left_space+gallery_box_data.image_filmstrip_width+gallery_box_data.all_images_right_left_space))?jQuery(".bwg_filmstrip_thumbnails").animate({left:-(jQuery(".bwg_filmstrip_thumbnails").width()-jQuery(".bwg_filmstrip").width()-gallery_box_data.all_images_right_left_space)},500,"linear"):jQuery(".bwg_filmstrip_thumbnails").animate({left:jQuery(".bwg_filmstrip_thumbnails").position().left-(gallery_box_data.filmstrip_thumb_right_left_space+gallery_box_data.image_filmstrip_width)},500,"linear")),window.setTimeout(function(){jQuery(".bwg_filmstrip_thumbnails").position().left==-(jQuery(".bwg_filmstrip_thumbnails").width()-jQuery(".bwg_filmstrip").width())&&jQuery(".bwg_filmstrip_right").css({opacity:.3})},500)):(jQuery(".bwg_filmstrip_thumbnails").position().left>=-(jQuery(".bwg_filmstrip_thumbnails").height()-jQuery(".bwg_filmstrip").height())&&(jQuery(".bwg_filmstrip_left").css({opacity:1}),jQuery(".bwg_filmstrip_thumbnails").position().left<-(jQuery(".bwg_filmstrip_thumbnails").height()-jQuery(".bwg_filmstrip").height()-(gallery_box_data.filmstrip_thumb_right_left_space+gallery_box_data.image_filmstrip_width+gallery_box_data.all_images_right_left_space))?jQuery(".bwg_filmstrip_thumbnails").animate({left:-(jQuery(".bwg_filmstrip_thumbnails").height()-jQuery(".bwg_filmstrip").height()-gallery_box_data.all_images_right_left_space)},500,"linear"):jQuery(".bwg_filmstrip_thumbnails").animate({left:jQuery(".bwg_filmstrip_thumbnails").position().left-(gallery_box_data.filmstrip_thumb_right_left_space+gallery_box_data.image_filmstrip_width)},500,"linear")),window.setTimeout(function(){jQuery(".bwg_filmstrip_thumbnails").position().left==-(jQuery(".bwg_filmstrip_thumbnails").height()-jQuery(".bwg_filmstrip").height())&&jQuery(".bwg_filmstrip_right").css({opacity:.3})},500)):"width"==gallery_box_data.width_or_height?(jQuery(".bwg_filmstrip_thumbnails").position().top>=-(jQuery(".bwg_filmstrip_thumbnails").width()-jQuery(".bwg_filmstrip").width())&&(jQuery(".bwg_filmstrip_left").css({opacity:1}),jQuery(".bwg_filmstrip_thumbnails").position().top<-(jQuery(".bwg_filmstrip_thumbnails").width()-jQuery(".bwg_filmstrip").width()-(gallery_box_data.filmstrip_thumb_right_left_space+gallery_box_data.image_filmstrip_width+gallery_box_data.all_images_right_left_space))?jQuery(".bwg_filmstrip_thumbnails").animate({left:-(jQuery(".bwg_filmstrip_thumbnails").width()-jQuery(".bwg_filmstrip").width()-gallery_box_data.all_images_right_left_space)},500,"linear"):jQuery(".bwg_filmstrip_thumbnails").animate({left:jQuery(".bwg_filmstrip_thumbnails").position().top-(gallery_box_data.filmstrip_thumb_right_left_space+gallery_box_data.image_filmstrip_width)},500,"linear")),window.setTimeout(function(){jQuery(".bwg_filmstrip_thumbnails").position().left==-(jQuery(".bwg_filmstrip_thumbnails").width()-jQuery(".bwg_filmstrip").width())&&jQuery(".bwg_filmstrip_right").css({opacity:.3})},500)):(jQuery(".bwg_filmstrip_thumbnails").position().top>=-(jQuery(".bwg_filmstrip_thumbnails").height()-jQuery(".bwg_filmstrip").height())&&(jQuery(".bwg_filmstrip_left").css({opacity:1}),jQuery(".bwg_filmstrip_thumbnails").position().top<-(jQuery(".bwg_filmstrip_thumbnails").height()-jQuery(".bwg_filmstrip").height()-(gallery_box_data.filmstrip_thumb_right_left_space+gallery_box_data.image_filmstrip_width+gallery_box_data.all_images_right_left_space))?jQuery(".bwg_filmstrip_thumbnails").animate({top:-(jQuery(".bwg_filmstrip_thumbnails").height()-jQuery(".bwg_filmstrip").height()-gallery_box_data.all_images_right_left_space)},500,"linear"):jQuery(".bwg_filmstrip_thumbnails").animate({top:jQuery(".bwg_filmstrip_thumbnails").position().top-(gallery_box_data.filmstrip_thumb_right_left_space+gallery_box_data.image_filmstrip_width)},500,"linear")),window.setTimeout(function(){jQuery(".bwg_filmstrip_thumbnails").position().left==-(jQuery(".bwg_filmstrip_thumbnails").height()-jQuery(".bwg_filmstrip").height())&&jQuery(".bwg_filmstrip_right").css({opacity:.3})},500))}),"left"==gallery_box_data.left_or_top?jQuery(".bwg_filmstrip_left").on(a,function(){jQuery(".bwg_filmstrip_thumbnails").stop(!0,!1),jQuery(".bwg_filmstrip_thumbnails").position().left<0&&(jQuery(".bwg_filmstrip_right").css({opacity:1}),jQuery(".bwg_filmstrip_thumbnails").position().left>-(gallery_box_data.filmstrip_thumb_right_left_space+gallery_box_data.image_filmstrip_width)?jQuery(".bwg_filmstrip_thumbnails").animate({left:0},500,"linear"):jQuery(".bwg_filmstrip_thumbnails").animate({left:jQuery(".bwg_filmstrip_thumbnails").position().left+gallery_box_data.image_filmstrip_width+gallery_box_data.filmstrip_thumb_right_left_space},500,"linear")),window.setTimeout(function(){0==jQuery(".bwg_filmstrip_thumbnails").position().left&&jQuery(".bwg_filmstrip_left").css({opacity:.3})},500)}):jQuery(".bwg_filmstrip_left").on(a,function(){jQuery(".bwg_filmstrip_thumbnails").stop(!0,!1),jQuery(".bwg_filmstrip_thumbnails").position().top<0&&(jQuery(".bwg_filmstrip_right").css({opacity:1}),jQuery(".bwg_filmstrip_thumbnails").position().top>-(gallery_box_data.filmstrip_thumb_right_left_space+gallery_box_data.image_filmstrip_width)?jQuery(".bwg_filmstrip_thumbnails").animate({top:0},500,"linear"):jQuery(".bwg_filmstrip_thumbnails").animate({top:jQuery(".bwg_filmstrip_thumbnails").position().top+gallery_box_data.image_filmstrip_width+gallery_box_data.filmstrip_thumb_right_left_space},500,"linear")),window.setTimeout(function(){0==jQuery(".bwg_filmstrip_thumbnails").position().top&&jQuery(".bwg_filmstrip_left").css({opacity:.3})},500)}),"width"==gallery_box_data.width_or_height?bwg_set_filmstrip_pos(jQuery(".bwg_filmstrip").width(),"",gallery_box_data):bwg_set_filmstrip_pos(jQuery(".bwg_filmstrip").height(),"",gallery_box_data),jQuery(".bwg_info").on(a,function(){if("none"==jQuery(".bwg_image_info_container1").css("display")){jQuery(".bwg_image_info_container1").css("display","table-cell"),jQuery(".bwg_info").attr("title",bwg_objectsL10n.bwg_hide_info);jQuery(".bwg_ctrl_btn_container").length&&jQuery(".bwg_ctrl_btn_container").height();jQuery(".bwg_image_info").css("height","auto"),bwg_info_height_set()}else jQuery(".bwg_image_info_container1").css("display","none"),jQuery(".bwg_info").attr("title",bwg_objectsL10n.bwg_show_info)}),jQuery(".bwg_rate").on(a,function(){"none"==jQuery(".bwg_image_rate_container1").css("display")?(jQuery(".bwg_image_rate_container1").css("display","table-cell"),jQuery(".bwg_rate").attr("title",bwg_objectsL10n.bwg_hide_rating)):(jQuery(".bwg_image_rate_container1").css("display","none"),jQuery(".bwg_rate").attr("title",bwg_objectsL10n.bwg_show_rating))}),jQuery(".bwg_zoom").on(a,function(){var e=["mousemove","touchmove"];jQuery("figure.bwg_popup_image").each(function(){var i=jQuery(this);i.hasClass("zoom")?jQuery.each(e,function(e,t){i.removeClass("zoom"),i.off(t)}):jQuery.each(e,function(e,t){i.addClass("zoom"),i.on(t,function(e){var t,i,a,r;window.clearInterval(bwg_playInterval),jQuery(".bwg_play_pause").attr("title",bwg_objectsL10n.bwg_play),jQuery(".bwg_play_pause").attr("class","bwg-icon-play bwg_ctrl_btn bwg_play_pause");var _=e.target,s=_.getBoundingClientRect();e.targetTouches&&(a=e.targetTouches[0].clientX-s.left,r=e.targetTouches[0].clientY-s.top),t=e.offsetX?e.offsetX:e.targetTouches?a:_.offsetHeight,i=e.offsetY?e.offsetY:e.targetTouches?r:_.offsetWidth,x=t/_.offsetWidth*100,y=i/_.offsetHeight*100,_.parentNode.style.backgroundPosition=x+"% "+y+"%"})})})}),jQuery(".bwg_comment, .bwg_comments_close_btn").on(a,function(){bwg_comment()}),jQuery(".bwg_ecommerce, .bwg_ecommerce_close_btn").on(a,function(){bwg_ecommerce()}),jQuery(".bwg_toggle_container").on(a,function(){var e="top"==gallery_box_data.lightbox_ctrl_btn_pos?"bwg-icon-caret-up":"bwg-icon-caret-down",t="top"==gallery_box_data.lightbox_ctrl_btn_pos?"bwg-icon-caret-down":"bwg-icon-caret-up";jQuery(".bwg_toggle_container i").hasClass(e)?(gallery_box_data.enable_image_filmstrip&&"bottom"==gallery_box_data.lightbox_filmstrip_pos||"bottom"!=gallery_box_data.lightbox_ctrl_btn_pos||"bottom"!=gallery_box_data.lightbox_rate_pos?gallery_box_data.enable_image_filmstrip&&"top"==gallery_box_data.lightbox_filmstrip_pos||"top"!=gallery_box_data.lightbox_ctrl_btn_pos||"top"!=gallery_box_data.lightbox_rate_pos||jQuery(".bwg_image_rate").animate({top:0},500):jQuery(".bwg_image_rate").animate({bottom:0},500),gallery_box_data.enable_image_filmstrip&&"bottom"==gallery_box_data.lightbox_filmstrip_pos||"bottom"!=gallery_box_data.lightbox_ctrl_btn_pos||"bottom"!=gallery_box_data.lightbox_hit_pos?gallery_box_data.enable_image_filmstrip&&"top"==gallery_box_data.lightbox_filmstrip_pos||"top"!=gallery_box_data.lightbox_ctrl_btn_pos||"top"!=gallery_box_data.lightbox_hit_pos||jQuery(".bwg_image_hit").animate({top:0},500):jQuery(".bwg_image_hit").animate({bottom:0},500),"bottom"==gallery_box_data.lightbox_ctrl_btn_pos?(jQuery(".bwg_ctrl_btn_container").animate({bottom:"-"+jQuery(".bwg_ctrl_btn_container").height()},500).addClass("closed"),jQuery(".bwg_toggle_container").animate({bottom:0},{duration:500,complete:function(){jQuery(".bwg_toggle_container i").attr("class","bwg_toggle_btn "+t)}})):(jQuery(".bwg_ctrl_btn_container").animate({top:"-"+jQuery(".bwg_ctrl_btn_container").height()},500).addClass("closed"),jQuery(".bwg_toggle_container").animate({top:0},{duration:500,complete:function(){jQuery(".bwg_toggle_container i").attr("class","bwg_toggle_btn "+t)}}))):(gallery_box_data.enable_image_filmstrip&&"bottom"==gallery_box_data.lightbox_filmstrip_pos||"bottom"!=gallery_box_data.lightbox_ctrl_btn_pos||"bottom"!=gallery_box_data.lightbox_rate_pos?gallery_box_data.enable_image_filmstrip&&"top"==gallery_box_data.lightbox_filmstrip_pos||"top"!=gallery_box_data.lightbox_ctrl_btn_pos||"top"!=gallery_box_data.lightbox_rate_pos||jQuery(".bwg_image_rate").animate({top:jQuery(".bwg_ctrl_btn_container").height()},500):jQuery(".bwg_image_rate").animate({bottom:jQuery(".bwg_ctrl_btn_container").height()},500),gallery_box_data.enable_image_filmstrip&&"bottom"==gallery_box_data.lightbox_filmstrip_pos||"bottom"!=gallery_box_data.lightbox_ctrl_btn_pos||"bottom"!=gallery_box_data.lightbox_hit_pos?gallery_box_data.enable_image_filmstrip&&"top"==gallery_box_data.lightbox_filmstrip_pos||"top"!=gallery_box_data.lightbox_ctrl_btn_pos||"top"!=gallery_box_data.lightbox_hit_pos||jQuery(".bwg_image_hit").animate({top:jQuery(".bwg_ctrl_btn_container").height()},500):jQuery(".bwg_image_hit").animate({bottom:jQuery(".bwg_ctrl_btn_container").height()},500),"bottom"==gallery_box_data.lightbox_ctrl_btn_pos?(jQuery(".bwg_ctrl_btn_container").animate({bottom:0},500).removeClass("closed"),jQuery(".bwg_toggle_container").animate({bottom:jQuery(".bwg_ctrl_btn_container").height()},{duration:500,complete:function(){jQuery(".bwg_toggle_container i").attr("class","bwg_toggle_btn "+e)}})):(jQuery(".bwg_ctrl_btn_container").animate({top:0},500).removeClass("closed"),jQuery(".bwg_toggle_container").animate({top:jQuery(".bwg_ctrl_btn_container").height()},{duration:500,complete:function(){jQuery(".bwg_toggle_container i").attr("class","bwg_toggle_btn "+e)}}))),bwg_info_position(!0)});var o=window.innerHeight;jQuery(".bwg_resize-full").on(a,function(){bwg_resize_full()}),jQuery(".bwg_fullscreen").on(a,function(){jQuery(".bwg_watermark").css({display:"none"});var e,t=0;if((jQuery(".bwg_comment_container").hasClass("bwg_open")||jQuery(".bwg_ecommerce_container").hasClass("bwg_open"))&&(t=jQuery(".bwg_comment_container").width()||jQuery(".bwg_ecommerce_container").width()),void 0!==jQuery().fullscreen&&jQuery.isFunction(jQuery().fullscreen))if(jQuery.fullscreen.isFullScreen())jQuery.fullscreen.exit(),e=o,jQuery(window).width()>gallery_box_data.image_width&&(r=gallery_box_data.image_width),window.innerHeight>gallery_box_data.image_height&&(_=gallery_box_data.image_height),gallery_box_data.open_with_fullscreen&&(r=jQuery(window).width(),_=e),jQuery("#spider_popup_wrap").on("fscreenclose",function(){jQuery("#spider_popup_wrap").css({width:r,height:_,left:"50%",top:"50%",marginLeft:-r/2,marginTop:-_/2,zIndex:1e5}),jQuery(".bwg_image_wrap").css({width:r-t}),jQuery(".bwg_image_container").css({height:_-("horizontal"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_height:0),width:r-t-("vertical"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_width:0)}),jQuery(".bwg_image_info").css("height","auto"),bwg_info_height_set(),jQuery(".bwg_popup_image").css({maxWidth:r-t-("vertical"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_width:0),maxHeight:_-("horizontal"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_height:0)}),jQuery(".bwg_popup_embed > .bwg_embed_frame > img, .bwg_popup_embed > .bwg_embed_frame > video").css({maxWidth:r-t-("vertical"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_width:0),maxHeight:_-("horizontal"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_height:0)}),bwg_resize_instagram_post(),bwg_change_watermark_container(),"width"==gallery_box_data.width_or_height?(jQuery(".bwg_filmstrip_container").css({width:r-("horizontal"==gallery_box_data.filmstrip_direction?"comment_container_width":0)}),jQuery(".bwg_filmstrip").css({width:r-("horizontal"==gallery_box_data.filmstrip_direction?"comment_container_width":0)-2*("horizontal"==gallery_box_data.filmstrip_direction?jQuery(".bwg_filmstrip_right").width():jQuery(".bwg_filmstrip_right").height())}),bwg_set_filmstrip_pos(r-2*("horizontal"==gallery_box_data.filmstrip_direction?jQuery(".bwg_filmstrip_right").width():jQuery(".bwg_filmstrip_right").height()),"",gallery_box_data)):(jQuery(".bwg_filmstrip_container").css({height:_-("horizontal"==gallery_box_data.filmstrip_direction?"comment_container_width":0)}),jQuery(".bwg_filmstrip").css({height:_-("horizontal"==gallery_box_data.filmstrip_direction?"comment_container_width":0)-2*("horizontal"==gallery_box_data.filmstrip_direction?jQuery(".bwg_filmstrip_right").width():jQuery(".bwg_filmstrip_right").height())}),bwg_set_filmstrip_pos(_-2*("horizontal"==gallery_box_data.filmstrip_direction?jQuery(".bwg_filmstrip_right").width():jQuery(".bwg_filmstrip_right").height()),"",gallery_box_data),"horizontal"!=gallery_box_data.filmstrip_direction&&jQuery(".bwg_filmstrip_right").css({top:_-jQuery(".bwg_filmstrip_right").height()})),jQuery(".bwg_resize-full").show(),jQuery(".bwg_resize-full").attr("class","bwg-icon-expand bwg_ctrl_btn bwg_resize-full"),jQuery(".bwg_resize-full").attr("title",bwg_objectsL10n.bwg_maximize),jQuery(".bwg_fullscreen").attr("class","bwg-icon-arrows-out bwg_ctrl_btn bwg_fullscreen"),jQuery(".bwg_fullscreen").attr("title",bwg_objectsL10n.bwg_fullscreen),jQuery("#spider_popup_wrap").width()<jQuery(window).width()&&jQuery("#spider_popup_wrap").height()<window.innerHeight&&jQuery(".spider_popup_close_fullscreen").attr("class","spider_popup_close")});else{jQuery("#spider_popup_wrap").fullscreen();var i=screen.width,a=screen.height;jQuery("#spider_popup_wrap").css({width:i,height:a,left:0,top:0,margin:0,zIndex:1e5}),jQuery(".bwg_image_wrap").css({width:i-t}),jQuery(".bwg_image_container").css({height:a-("horizontal"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_height:0),width:i-t-("vertical"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_width:0)}),jQuery(".bwg_image_info").css("height","auto"),bwg_info_height_set(),jQuery(".bwg_popup_image").css({maxWidth:i-t-("vertical"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_width:0),maxHeight:a-("horizontal"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_height:0)}),jQuery(".bwg_popup_embed > .bwg_embed_frame > img, .bwg_popup_embed > .bwg_embed_frame > video").css({maxWidth:i-t-("vertical"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_width:0),maxHeight:a-("horizontal"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_height:0)}),bwg_resize_instagram_post(),bwg_change_watermark_container(),"width"==gallery_box_data.width_or_height?(jQuery(".bwg_filmstrip_container").css({width:i-("horizontal"==gallery_box_data.filmstrip_direction?t:0)},500),jQuery(".bwg_filmstrip").css({width:i-("horizontal"==gallery_box_data.filmstrip_direction?t:0)-2*("horizontal"==gallery_box_data.filmstrip_direction?jQuery(".bwg_filmstrip_right").width():jQuery(".bwg_filmstrip_right").height())},500),bwg_set_filmstrip_pos(i-("horizontal"==gallery_box_data.filmstrip_direction?t:0)-2*("horizontal"==gallery_box_data.filmstrip_direction?jQuery(".bwg_filmstrip_right").width():jQuery(".bwg_filmstrip_right").height()),"",gallery_box_data)):(jQuery(".bwg_filmstrip_container").css({height:a-("horizontal"==gallery_box_data.filmstrip_direction)?"comment_container_width":0}),jQuery(".bwg_filmstrip").css({height:a-("horizontal"==gallery_box_data.filmstrip_direction?"comment_container_width":0)-2*("horizontal"==gallery_box_data.filmstrip_direction?jQuery(".bwg_filmstrip_right").width():jQuery(".bwg_filmstrip_right").height())}),bwg_set_filmstrip_pos(a-("horizontal"==gallery_box_data.filmstrip_direction?"comment_container_width":0)-2*("horizontal"==gallery_box_data.filmstrip_direction?jQuery(".bwg_filmstrip_right").width():jQuery(".bwg_filmstrip_right").height()),"",gallery_box_data),"horizontal"!=gallery_box_data.filmstrip_direction&&jQuery(".bwg_filmstrip_right").css({top:a-jQuery(".bwg_filmstrip_right").height()})),jQuery(".bwg_resize-full").hide(),jQuery(".bwg_fullscreen").attr("class","bwg-icon-compress bwg_ctrl_btn bwg_fullscreen"),jQuery(".bwg_fullscreen").attr("title",bwg_objectsL10n.bwg_exit_fullscreen),jQuery(".spider_popup_close").attr("class","spider_popup_close_fullscreen")}return!1}),jQuery(".bwg_play_pause").on(a,function(){jQuery(".bwg_play_pause").length&&jQuery(".bwg_play_pause").hasClass("bwg-icon-play")&&!jQuery(".bwg_comment_container").hasClass("bwg_open")?(bwg_play(gallery_box_data.data),jQuery(".bwg_play_pause").attr("title",bwg_objectsL10n.bwg_pause),jQuery(".bwg_play_pause").attr("class","bwg-icon-pause bwg_ctrl_btn bwg_play_pause")):(window.clearInterval(bwg_playInterval),jQuery(".bwg_play_pause").attr("title",bwg_objectsL10n.bwg_play),jQuery(".bwg_play_pause").attr("class","bwg-icon-play bwg_ctrl_btn bwg_play_pause"))}),gallery_box_data.open_with_autoplay&&(bwg_play(gallery_box_data.data),jQuery(".bwg_play_pause").attr("title",bwg_objectsL10n.bwg_pause),jQuery(".bwg_play_pause").attr("class","bwg-icon-pause bwg_ctrl_btn bwg_play_pause")),gallery_box_data.open_with_fullscreen&&bwg_open_with_fullscreen(),jQuery(".bwg_popup_image").removeAttr("width"),jQuery(".bwg_popup_image").removeAttr("height"),jQuery(window).focus(function(){jQuery(".bwg_play_pause").length&&!jQuery(".bwg_play_pause").hasClass("bwg-icon-play")&&bwg_play(gallery_box_data.data)}),jQuery(window).blur(function(){event_stack=[],window.clearInterval(bwg_playInterval)});gallery_box_data.lightbox_ctrl_btn_pos;1==gallery_box_data.open_ecommerce&&setTimeout(function(){bwg_ecommerce()},400),1==gallery_box_data.open_comment&&bwg_comment()}function spider_createpopup(e,t,a,r,_,s,o,l){e=e.replace(/&#038;/g,"&"),isPopUpOpened||(isPopUpOpened=!0,spider_isunsupporteduseragent()||(bwg_overflow_initial_value=jQuery("html").css("overflow"),bwg_overflow_x_initial_value=jQuery("html").css("overflow-x"),bwg_overflow_y_initial_value=jQuery("html").css("overflow-y"),jQuery("html").attr("style","overflow:hidden !important;"),jQuery("#bwg_spider_popup_loading_"+t).show(),jQuery("#spider_popup_overlay_"+t).css({display:"block"}),jQuery.ajax({type:"GET",url:e,success:function(e){var t=jQuery('<div id="spider_popup_wrap" class="spider_popup_wrap" style=" width:'+a+"px; height:"+r+"px; margin-top:-"+r/2+"px; margin-left: -"+a/2+'px; ">'+e+"</div>").hide().appendTo("body");if(gallery_box_ready(),spider_showpopup(s,o,t,_,l),"undefined"!=typeof addthis){jQuery(".addthis-smartlayers").show();var i=setInterval(function(){void 0!==addthis.layers.refresh&&(clearInterval(i),addthis.layers.refresh())},100)}},beforeSend:function(){},complete:function(){}})))}function spider_showpopup(e,t,i,a,r){var _=gallery_box_data.data,s=parseInt(jQuery("#bwg_current_image_key").val());if(void 0!==_[s]&&(isPopUpOpened=!0,-1<_[s].filetype.indexOf("EMBED_")?bwg_first_image_load(i,r):jQuery("#spider_popup_wrap .bwg_popup_image_spun img").prop("complete")?bwg_first_image_load(i,r):jQuery("#spider_popup_wrap .bwg_popup_image_spun img").on("load error",function(){bwg_first_image_load(i,r)}),"EMBED_OEMBED_INSTAGRAM_POST"==_[s].filetype&&"undefined"!=typeof instgrm&&void 0!==instgrm.Embeds)){instgrm.Embeds.process();var o=parseInt(jQuery("#bwg_image_container").height());jQuery(".bwg_embed_frame .instagram-media").css({"max-height":o+"px"})}}function bwg_first_image_load(e,t){e.show(),""==gallery_box_data.data[key].alt&&""==gallery_box_data.data[key].description?jQuery(".bwg_info").hide():jQuery(".bwg_info").show();var i=jQuery(".bwg_ctrl_btn_container").height();"bottom"==t?jQuery(".bwg_toggle_container").css("bottom",i+"px"):"top"==t&&jQuery(".bwg_toggle_container").css("top",i+"px"),jQuery(".bwg_spider_popup_loading").hide(),1==gallery_box_data.preload_images&&bwg_preload_images(parseInt(jQuery("#bwg_current_image_key").val())),bwg_load_filmstrip(),bwg_info_height_set()}function spider_isunsupporteduseragent(){return!window.XMLHttpRequest}function spider_destroypopup(e){jQuery(".addthis-smartlayers").hide(),null!=document.getElementById("spider_popup_wrap")&&(void 0!==jQuery().fullscreen&&jQuery.isFunction(jQuery().fullscreen)&&jQuery.fullscreen.isFullScreen()&&jQuery.fullscreen.exit(),"undefined"!=typeof enable_addthis&&enable_addthis&&jQuery(".at4-share-outer").hide(),setTimeout(function(){jQuery(".spider_popup_wrap").remove(),jQuery(".bwg_spider_popup_loading").css({display:"none"}),jQuery(".spider_popup_overlay").css({display:"none"}),jQuery(document).off("keydown"),!1!==bwg_overflow_initial_value&&jQuery("html").css("overflow",bwg_overflow_initial_value),!1!==bwg_overflow_x_initial_value&&jQuery("html").css("overflow-x",bwg_overflow_x_initial_value),!1!==bwg_overflow_y_initial_value&&jQuery("html").css("overflow-y",bwg_overflow_y_initial_value)},20)),isPopUpOpened=!1;var t=/android|webos|iphone|ipad|ipod|blackberry|iemobile|opera mini/i.test(navigator.userAgent.toLowerCase()),i=document.querySelector('meta[name="viewport"]');t&&i&&(i.content="width=device-width, initial-scale=1");var a=jQuery(document).scrollTop();bwg_objectsL10n.is_pro&&history.pushState(history.state,null,window.location.origin+window.location.pathname+window.location.search),jQuery(document).scrollTop(a),void 0!==gallery_box_data.bwg_playInterval&&clearInterval(gallery_box_data.bwg_playInterval)}function get_ajax_pricelist(){var e={};return jQuery(".add_to_cart_msg").html(""),e.ajax_task="display",e.image_id=jQuery("#bwg_popup_image").attr("image_id"),jQuery("#ecommerce_ajax_loading").css("height",jQuery(".bwg_ecommerce_panel").css("height")),jQuery("#ecommerce_opacity_div").css("width",jQuery(".bwg_ecommerce_panel").css("width")),jQuery("#ecommerce_opacity_div").css("height",jQuery(".bwg_ecommerce_panel").css("height")),jQuery("#ecommerce_loading_div").css("width",jQuery(".bwg_ecommerce_panel").css("width")),jQuery("#ecommerce_loading_div").css("height",jQuery(".bwg_ecommerce_panel").css("height")),jQuery("#ecommerce_opacity_div").css("display","block"),jQuery("#ecommerce_loading_div").css("display","table-cell"),jQuery.ajax({type:"POST",url:jQuery("#bwg_ecommerce_form").attr("action"),data:e,success:function(e){jQuery(".pge_tabs li a").on("click",function(){return jQuery(".pge_tabs_container > div").hide(),jQuery(".pge_tabs li").removeClass("pge_active"),jQuery(jQuery(this).attr("href")).show(),jQuery(this).closest("li").addClass("pge_active"),jQuery("[name=type]").val(jQuery(this).attr("href").substr(1)),!1});var t=jQuery(e).find(".manual").html();jQuery(".manual").html(t);var i=jQuery(e).find(".downloads").html();jQuery(".downloads").html(i);var a=jQuery(e).find(".pge_options").html();jQuery(".pge_options").html(a);var r=jQuery(e).find(".pge_add_to_cart").html();jQuery(".pge_add_to_cart").html(r)},beforeSend:function(){},complete:function(){jQuery("#ecommerce_opacity_div").css("display","none"),jQuery("#ecommerce_loading_div").css("display","none")}}),!1}function spider_ajax_save(e){var t={};return t.bwg_name=jQuery("#bwg_name").val(),t.bwg_comment=jQuery("#bwg_comment").val(),t.bwg_email=jQuery("#bwg_email").val(),t.bwg_captcha_input=jQuery("#bwg_captcha_input").val(),t.ajax_task=jQuery("#ajax_task").val(),t.image_id=jQuery("#image_id").val(),t.comment_id=jQuery("#comment_id").val(),jQuery("#ajax_loading").css("height",jQuery(".bwg_comments").css("height")),jQuery("#opacity_div").css("width",jQuery(".bwg_comments").css("width")),jQuery("#opacity_div").css("height",jQuery(".bwg_comments").css("height")),jQuery("#loading_div").css("width",jQuery(".bwg_comments").css("width")),jQuery("#loading_div").css("height",jQuery(".bwg_comments").css("height")),document.getElementById("opacity_div").style.display="",document.getElementById("loading_div").style.display="table-cell",jQuery.ajax({type:"POST",url:jQuery("#"+e).attr("action"),data:t,success:function(e){jQuery(".bwg_comments").mCustomScrollbar("destroy");var t=jQuery(e).find(".bwg_comments").html();jQuery(".bwg_comments").html(t)},beforeSend:function(){},complete:function(){document.getElementById("opacity_div").style.display="none",document.getElementById("loading_div").style.display="none",jQuery(".bwg_comments").mCustomScrollbar({scrollInertia:150,theme:"dark-thick",advanced:{updateOnContentResize:!0}}),jQuery(".bwg_comments_close_btn").click(bwg_comment),bwg_captcha_refresh("bwg_captcha")}}),!1}function spider_rate_ajax_save(i,e){var t={};return t.image_id=jQuery("#"+i+" input[name='image_id']").val(),t.rate=void 0!==e?e:jQuery("#"+i+" input[name='score']").val(),t.ajax_task=jQuery("#rate_ajax_task").val(),jQuery.ajax({type:"POST",url:jQuery("#"+i).attr("action"),data:t,success:function(e){var t=jQuery(e).find("#"+i).html();jQuery("#"+i).html(t)},beforeSend:function(){},complete:function(){}})}function spider_set_input_value(e,t){document.getElementById(e)&&(document.getElementById(e).value=t)}function spider_form_submit(e,t){document.getElementById(t)&&document.getElementById(t).submit(),e.preventDefault?e.preventDefault():e.returnValue=!1}function spider_check_required(e,t){return""==jQuery("#"+e).val()&&(alert(t+" "+bwg_objectsL10n.bwg_field_required),jQuery("#"+e).attr("style","border-color: #FF0000;"),jQuery("#"+e).focus(),!0)}function comment_check_privacy_policy(){var e=jQuery("#bwg_submit");e.removeClass("bwg-submit-disabled"),e.removeAttr("disabled"),jQuery("#bwg_comment_privacy_policy").is(":checked")||(e.addClass("bwg-submit-disabled"),e.attr("disabled","disabled"))}function spider_check_email(e){if(""!=jQuery("#"+e).val())return-1==jQuery("#"+e).val().replace(/^\s+|\s+$/g,"").search(/^\w+((-\w+)|(\.\w+))*\@[A-Za-z0-9]+((\.|-)[A-Za-z0-9]+)*\.[A-Za-z0-9]+$/)&&(alert(bwg_objectsL10n.bwg_mail_validation),!0)}function bwg_captcha_refresh(e){document.getElementById(e+"_img")&&document.getElementById(e+"_input")&&(srcArr=document.getElementById(e+"_img").src.split("&r="),document.getElementById(e+"_img").src=srcArr[0]+"&r="+Math.floor(100*Math.random()),document.getElementById(e+"_img").style.display="inline-block",document.getElementById(e+"_input").value="")}function bwg_play_instagram_video(e,t){jQuery(e).parent().find("video").each(function(){jQuery(this).get(0).paused?(jQuery(this).get(0).play(),jQuery(e).children().hide()):(jQuery(this).get(0).pause(),jQuery(e).children().show())})}function bwg_add_comment(){var t=jQuery("#bwg_comment_form"),e=t.attr("action"),i={ajax_task:"add_comment"};return i.comment_name=t.find("#bwg_name").val(),i.comment_email=t.find("#bwg_email").val(),i.comment_text=t.find("#bwg_comment").val(),i.comment_captcha=t.find("#bwg_captcha_input").val(),i.popup_enable_captcha=t.find("#bwg_popup_enable_captcha").val(),i.privacy_policy=t.find("#bwg_comment_privacy_policy").is(":checked")?1:0,i.comment_image_id=jQuery("#bwg_popup_image").attr("image_id"),i.comment_moderation=t.find("#bwg_comment_moderation").val(),jQuery(".bwg_spider_ajax_loading").hide(),jQuery.ajax({url:e,type:"POST",dataType:"json",data:i,success:function(e){jQuery(".bwg_comment_error").text(""),1==e.error?jQuery.each(e.error_messages,function(e,t){t&&jQuery(".bwg_comment_"+e+"_error").text(t)}):(t.find("#bwg_comment").val(""),jQuery(".bwg_comment_waiting_message").hide(),0==e.published&&jQuery(".bwg_comment_waiting_message").show(),""!=e.html_comments_block&&jQuery("#bwg_added_comments").html(e.html_comments_block).show())},beforeSend:function(){jQuery(".bwg_spider_ajax_loading").show()},complete:function(){0<t.find("#bwg_comment_privacy_policy").length&&(t.find("#bwg_comment_privacy_policy").prop("checked",!1),comment_check_privacy_policy()),bwg_captcha_refresh("bwg_captcha"),jQuery(".bwg_spider_ajax_loading").hide()},error:function(){}}),!1}function bwg_remove_comment(t){var e=jQuery("#bwg_comment_form").attr("action"),i={ajax_task:"delete_comment"};return i.id_image=jQuery("#bwg_popup_image").attr("image_id"),i.id_comment=t,jQuery.ajax({url:e,type:"POST",dataType:"json",data:i,success:function(e){0==e.error&&jQuery("#bwg_comment_block_"+t).fadeOut("slow").remove()},beforeSend:function(){},complete:function(){},error:function(){}}),!1}function bwg_gallery_box(e,t,i,a){jQuery(".bwg-validate").each(function(){jQuery(this).on("keypress change",function(){jQuery(this).parent().next().find(".bwg_comment_error").html("")})}),void 0===i&&(i=!1);var r,_=t.data("bwg");r=t.find(".bwg-container").data("lightbox-url")?t.find(".bwg-container").data("lightbox-url"):t.data("lightbox-url");var s=t.find(".cur_gal_id").val(),o=jQuery("#bwg_tag_id_"+s).val();o=o||0;var l=1==i?"&open_ecommerce=1":"",n=jQuery("#bwg_search_input_"+_).val(),g=jQuery("#bwg_order_"+_).val()?"&filtersortby="+jQuery("#bwg_order_"+_).val():"";n=n||"",void 0!==a&&(r+="&gallery_id="+a);var w="",b=jQuery("#bwg_blog_style_share_buttons_"+e).attr("data-open-comment");void 0!==b&&!1!==b&&(w="&open_comment=1"),spider_createpopup(r+"&bwg_random_seed="+jQuery("#bwg_random_seed_"+_).val()+"&image_id="+e+"&filter_tag="+o+l+w+"&filter_search_name="+n+g,_,t.data("popup-width"),t.data("popup-height"),1,"testpopup",5,t.data("buttons-position"))}function bwg_change_image_lightbox(e,a,r,t){if(jQuery("#bwg_rate_form input[name='image_id']").val(r[a].id),bwg_current_key=gallery_box_data.bwg_current_key,""==gallery_box_data.data[a].alt&&""==gallery_box_data.data[a].description?jQuery(".bwg_info").hide():jQuery(".bwg_info").show(),jQuery(".bwg_image_info").css("height","auto"),setTimeout(function(){bwg_info_height_set(),jQuery(".bwg_image_description").height()>jQuery(".bwg_image_info").height()&&jQuery(".mCSB_container").hasClass("mCS_no_scrollbar")&&jQuery(".bwg_image_info").mCustomScrollbar("destroy"),jQuery(".bwg_image_info").hasClass("mCustomScrollbar")||void 0!==jQuery().mCustomScrollbar&&jQuery.isFunction(jQuery().mCustomScrollbar)&&jQuery(".bwg_image_info").mCustomScrollbar({scrollInertia:150,theme:"dark-thick",advanced:{updateOnContentResize:!0}})},200),jQuery("#spider_popup_left").show(),jQuery("#spider_popup_right").show(),jQuery(".bwg_image_info").hide(),0==gallery_box_data.enable_loop&&(a==parseInt(r.length)-1&&jQuery("#spider_popup_right").hide(),0==a&&jQuery("#spider_popup_left").hide()),1==gallery_box_data.ecommerceACtive&&1==gallery_box_data.enable_image_ecommerce)if(0==gallery_box_data.data[a].pricelist)jQuery(".bwg_ecommerce").hide();else{jQuery(".bwg_ecommerce").show(),jQuery(".pge_tabs li").hide(),jQuery("#downloads").hide(),jQuery("#manual").hide();var i=gallery_box_data.data[a].pricelist_sections.split(",");if(i)if(jQuery("#"+i[0]).show(),jQuery("[name=type]").val(i[0]),1<i.length)for(jQuery(".pge_tabs").show(),k=0;k<i.length;k++)jQuery("#"+i[k]+"_li").show();else jQuery(".pge_tabs").hide();else jQuery("[name=type]").val("")}if(jQuery("#bwg_image_container").find("iframe").each(function(){jQuery(this)[0].contentWindow.postMessage('{"event":"command","func":"pauseVideo","args":""}',"*"),jQuery(this)[0].contentWindow.postMessage('{ "method": "pause" }',"*"),jQuery(this)[0].contentWindow.postMessage("pause","*")}),jQuery("#bwg_image_container").find("video").each(function(){jQuery(this).trigger("pause")}),void 0===r&&(r=gallery_box_data.data),void 0!==r[a]&&void 0!==r[e]){if(jQuery(".bwg_play_pause").length&&!jQuery(".bwg_play_pause").hasClass("bwg-icon-play")&&bwg_play(r),t||jQuery("#bwg_current_image_key").val(a),gallery_box_data.bwg_trans_in_progress)return void gallery_box_data.event_stack.push(e+"-"+a);var _="right";if(bwg_current_key>a)_="left";else if(bwg_current_key==a)return;jQuery(".bwg_image_count").html(r[a].number),jQuery(".bwg_watermark").css({display:"none"}),"width"==gallery_box_data.width_or_height?bwg_current_filmstrip_pos=a*(jQuery(".bwg_filmstrip_thumbnail").width()+2+2*gallery_box_data.lightbox_filmstrip_thumb_border_width):"height"==gallery_box_data.width_or_height&&(bwg_current_filmstrip_pos=a*(jQuery(".bwg_filmstrip_thumbnail").height()+2+2*gallery_box_data.lightbox_filmstrip_thumb_border_width)),gallery_box_data.bwg_current_key=a,bwg_objectsL10n.is_pro&&(location.replace("#bwg"+gallery_box_data.gallery_id+"/"+r[a].id),history.replaceState(void 0,void 0,"#bwg"+gallery_box_data.gallery_id+"/"+r[a].id)),jQuery("#bwg_rate_form input[name='image_id']").val(r[a].id),spider_set_input_value("rate_ajax_task","save_hit_count"),spider_rate_ajax_save("bwg_rate_form"),gallery_box_data.popup_enable_rate&&(jQuery("#bwg_star").attr("data-score",r[a].avg_rating),jQuery("#bwg_star").removeAttr("title"),r[a].cur_key=a,bwg_rating(r[a].rate,r[a].rate_count,r[a].avg_rating,a)),jQuery(".bwg_image_hits span").html(++r[a].hit_count),jQuery("#bwg_popup_image").attr("image_id",r[a].id),jQuery(".bwg_image_title").html(jQuery("<span />").html(r[a].alt).text()),jQuery(".bwg_image_description").html(jQuery("<span />").html(r[a].description).text()),jQuery(".bwg_filmstrip_thumbnail").removeClass("bwg_thumb_active").addClass("bwg_thumb_deactive"),jQuery("#bwg_filmstrip_thumbnail_"+a).removeClass("bwg_thumb_deactive").addClass("bwg_thumb_active"),jQuery(".bwg_image_info").css("opacity",1),""==r[a].alt.trim()&&""==r[a].description.trim()&&jQuery(".bwg_image_info").css("opacity",0),"none"!=jQuery(".bwg_image_info_container1").css("display")?jQuery(".bwg_image_info_container1").css("display","table-cell"):jQuery(".bwg_image_info_container1").css("display","none"),"none"!=jQuery(".bwg_image_rate_container1").css("display")?jQuery(".bwg_image_rate_container1").css("display","table-cell"):jQuery(".bwg_image_rate_container1").css("display","none");var s=2==jQuery(".bwg_popup_image_spun").css("zIndex")?".bwg_popup_image_spun":".bwg_popup_image_second_spun",o=".bwg_popup_image_second_spun"==s?".bwg_popup_image_spun":".bwg_popup_image_second_spun",l=-1<r[a].filetype.indexOf("EMBED_"),n=-1<r[a].filetype.indexOf("INSTAGRAM_POST"),g=-1<r[a].filetype.indexOf("INSTAGRAM_VIDEO"),w=-1!==jQuery.inArray(r[a].filetype,["EMBED_OEMBED_YOUTUBE_VIDEO","EMBED_OEMBED_VIMEO_VIDEO","EMBED_OEMBED_FACEBOOK_VIDEO","EMBED_OEMBED_DAILYMOTION_VIDEO"]),b=jQuery(s).height(),u=jQuery(s).width(),d='<span class="bwg_popup_image_spun1" style="display: '+(l?"block":"table")+'; width: inherit; height: inherit;"><span class="bwg_popup_image_spun2" style="display:'+(l?"block":"table-cell")+'; vertical-align: middle;text-align: center;height: 100%;">';if(l){if(jQuery("#bwg_download").addClass("bwg-hidden"),d+='<span class="bwg_popup_embed bwg_popup_watermark" style="display: '+(w?"block":"table")+'; table-layout: fixed; height: 100%;">'+(g?'<div class="bwg_inst_play_btn_cont" onclick="bwg_play_instagram_video(this)" ><div class="bwg_inst_play"></div></div>':" "),n){var h=jQuery(".instagram-media"),m=jQuery(".bwg_embed_frame"),c=jQuery(".bwg_image_container").width()-("vertical"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_width:0),p=jQuery(".bwg_image_container").height()-("horizontal"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_height:0),y=r[a].image_width,f=r[a].image_height,j=bwg_resizing_ratio(y,f,c,p);m.attr("data-width",c),m.attr("data-height",p);var Q=j.width,v=j.height;Q<v?Q-=109:Q+=109,d+=spider_display_embed(r[a].filetype,r[a].image_url,r[a].filename,{class:"bwg_embed_frame","data-width":c,"data-height":p,"data-instagram-width":y,"data-instagram-height":f,style:"width:"+Q+"px; height:"+v+"px; vertical-align:middle; display:inline-block; position:relative;"}),h.css({"max-height":v+"px","min-width":Q+"px !important"})}else d+=spider_display_embed(r[a].filetype,r[a].image_url,r[a].filename,{class:"bwg_embed_frame",frameborder:"0",allowfullscreen:"allowfullscreen",style:"display:"+(w?"block":"table-cell")+"; width:inherit; height:inherit; vertical-align:middle;"});d+="</span>"}else{jQuery(".bwg-loading").removeClass("bwg-hidden"),jQuery("#bwg_download").removeClass("bwg-hidden");var x="'"+(gallery_box_data.site_url+jQuery("<span />").html(decodeURIComponent(r[a].image_url)).text()).split("?bwg")[0]+"'";gallery_box_data.popup_enable_zoom&&(d+='<figure style="max-height: '+b+"px; max-width: "+u+"px; background-image: url("+x+'); background-repeat: no-repeat" class="bwg_popup_image bwg_popup_watermark" alt="'+r[a].alt+'" />'),d+='<img style="max-height: '+b+"px; max-width: "+u+'px;" class="bwg_popup_image bwg_popup_watermark" src="'+gallery_box_data.site_url+jQuery("<span />").html(decodeURIComponent(r[a].image_url)).text()+'" alt="'+r[a].alt+'" />'}function z(){gallery_box_data.preload_images&&bwg_preload_images(a),window["bwg_"+gallery_box_data.bwg_image_effect](s,o,_),jQuery(s).find(".bwg_fb_video").each(function(){jQuery(this).attr("src","")}),l?jQuery("#bwg_fullsize_image").attr("href",decodeURIComponent(r[a].image_url)):(jQuery("#bwg_fullsize_image").attr("href",gallery_box_data.site_url+decodeURIComponent(r[a].image_url)),jQuery("#bwg_download").attr("href",gallery_box_data.site_url+decodeURIComponent(r[a].thumb_url).replace("/thumb/","/.original/")));var e=decodeURIComponent(r[a].image_url).split("/");jQuery("#bwg_download").attr("download",e[e.length-1].replace(/\?bwg=(\d+)$/,""));var t=encodeURIComponent(gallery_box_data.bwg_share_url)+"="+r[a].id+encodeURIComponent("#bwg"+gallery_box_data.gallery_id+"/")+r[a].id;if(l)var i=encodeURIComponent(r[a].thumb_url);else i=gallery_box_data.bwg_share_image_url+encodeURIComponent(encodeURIComponent(r[a].pure_image_url));i=i.replace(/%252F|%25252F/g,"%2F"),void 0!==addthis_share&&(addthis_share.url=t),jQuery("#bwg_facebook_a").attr("href","https://www.facebook.com/sharer/sharer.php?u="+t),jQuery("#bwg_twitter_a").attr("href","https://twitter.com/intent/tweet?url="+t),jQuery("#bwg_pinterest_a").attr("href","http://pinterest.com/pin/create/button/?s=100&url="+t+"&media="+i+"&description="+r[a].alt+"%0A"+r[a].description),jQuery("#bwg_tumblr_a").attr("href","https://www.tumblr.com/share/photo?source="+i+"&caption="+r[a].alt+"&clickthru="+t),jQuery(".bwg_comment_container").hasClass("bwg_open")&&(jQuery(".bwg_comments .mCSB_container").css("top","0"),jQuery("#bwg_added_comments").show(),spider_set_input_value("ajax_task","display"),spider_set_input_value("image_id",jQuery("#bwg_popup_image").attr("image_id")),spider_ajax_save("bwg_comment_form")),jQuery(".bwg_ecommerce_container").hasClass("bwg_open")&&(0==r[a].pricelist?(bwg_popup_sidebar_close(jQuery(".bwg_ecommerce_container")),bwg_animate_image_box_for_hide_sidebar(),jQuery(".bwg_ecommerce_container").attr("class","bwg_ecommerce_container bwg_close"),jQuery(".bwg_ecommerce").attr("title",bwg_objectsL10n.bwg_show_ecommerce),jQuery(".spider_popup_close_fullscreen").show()):get_ajax_pricelist()),void 0!==jQuery().mCustomScrollbar&&jQuery.isFunction(jQuery().mCustomScrollbar)&&jQuery(".bwg_comments").mCustomScrollbar({advanced:{updateOnContentResize:!0}}),jQuery(".bwg_comments .mCSB_scrollTools").hide(),gallery_box_data.enable_image_filmstrip&&bwg_slideshow_filmstrip_fix_dimension(),bwg_resize_instagram_post()}if(gallery_box_data.popup_enable_zoom?d+="</figure></span></span>":d+="</span></span>",jQuery(o).html(d),jQuery(o).find("img").on("load error",function(){jQuery(".bwg-loading").addClass("bwg-hidden")}),jQuery(".bwg_popup_embed > .bwg_embed_frame > img, .bwg_popup_embed > .bwg_embed_frame > video").css({maxWidth:u,maxHeight:b,height:"auto"}),l)z();else jQuery(o).find("img").one("load",function(){z()}).each(function(){this.complete&&jQuery(this).load()});"undefined"!=typeof instgrm&&void 0!==instgrm.Embeds&&(jQuery(".instagram-media").hide(),instgrm.Embeds.process(),jQuery(".instagram-media").show())}}function bwg_preload_images_lightbox(e){for(var t=gallery_box_data.data,i=t.length,a=0==gallery_box_data.preload_images_count||gallery_box_data.preload_images_count>=i?i:gallery_box_data.preload_images_count,r=0,_=1;r<a;_++){var s=1;do{var o=(e+_*s+i)%i;if(void 0!==t[o])-1<t[o].filetype.indexOf("EMBED_")||jQuery("<img/>").attr("src",gallery_box_data.site_url+jQuery("<span />").html(decodeURIComponent(t[o].image_url)).text());s*=-1,r++}while(1!=s)}}function bwg_popup_sidebar_open(e){var t=gallery_box_data.lightbox_comment_width,i=gallery_box_data.lightbox_comment_pos;if(t>jQuery(window).width()){if(t=jQuery(window).width(),e.css({width:t}),jQuery(".spider_popup_close_fullscreen").hide(),jQuery(".spider_popup_close").hide(),jQuery(".bwg_ctrl_btn").hasClass("bwg-icon-pause")){var a=/android|webos|iphone|ipad|ipod|blackberry|iemobile|opera mini/i.test(navigator.userAgent.toLowerCase());jQuery(".bwg_play_pause").trigger(a?"touchend":"click")}}else jQuery(".spider_popup_close_fullscreen").show();"left"==i?e.animate({left:0},100):e.animate({right:0},100)}function bwg_comment(){if(jQuery(".bwg_watermark").css({display:"none"}),jQuery(".bwg_ecommerce_wrap").css("z-index","-1"),jQuery(".bwg_comment_wrap").css("z-index","25"),jQuery(".bwg_ecommerce_container").hasClass("bwg_open")&&(bwg_popup_sidebar_close(jQuery(".bwg_ecommerce_container")),jQuery(".bwg_ecommerce_container").attr("class","bwg_ecommerce_container bwg_close"),jQuery(".bwg_ecommerce").attr("title",bwg_objectsL10n.bwg_show_ecommerce)),jQuery(".bwg_comment_container").hasClass("bwg_open"))"1"==jQuery(".bwg_comment_container").attr("data-play-status")&&jQuery(".bwg_ctrl_btn.bwg_play_pause").removeClass("bwg-icon-play").addClass("bwg-icon-pause").attr("title",bwg_objectsL10n.bwg_pause),bwg_popup_sidebar_close(jQuery(".bwg_comment_container")),bwg_animate_image_box_for_hide_sidebar(),jQuery(".bwg_comment_wrap").css("z-index","-1"),jQuery(".bwg_comment_container").attr("class","bwg_comment_container bwg_close"),jQuery(".bwg_comment").attr("title",bwg_objectsL10n.bwg_show_comments),jQuery(".spider_popup_close_fullscreen").show();else{jQuery(".bwg_play_pause").hasClass("bwg-icon-pause")?jQuery(".bwg_comment_container").attr("data-play-status","1"):jQuery(".bwg_comment_container").attr("data-play-status","0"),jQuery(".bwg_ctrl_btn.bwg_play_pause").removeClass("bwg-icon-pause").addClass("bwg-icon-play").attr("title",bwg_objectsL10n.bwg_play),bwg_popup_sidebar_open(jQuery(".bwg_comment_container")),bwg_animate_image_box_for_show_sidebar(),jQuery(".bwg_comment_container").attr("class","bwg_comment_container bwg_open"),jQuery(".bwg_comment").attr("title",bwg_objectsL10n.bwg_hide_comments);var e=parseInt(jQuery("#bwg_current_image_key").val());void 0!==gallery_box_data.current_image_key&&0!=gallery_box_data.data[e].comment_count&&(jQuery("#bwg_added_comments").show(),spider_set_input_value("ajax_task","display"),spider_set_input_value("image_id",jQuery("#bwg_popup_image").attr("image_id")),spider_ajax_save("bwg_comment_form"))}jQuery(".bwg_comments").mCustomScrollbar("update",{scrollInertia:150,theme:"dark-thick",advanced:{updateOnContentResize:!0}})}function bwg_ecommerce(){jQuery(".bwg_watermark").css({display:"none"}),jQuery(".bwg_ecommerce_wrap").css("z-index","25"),jQuery(".bwg_comment_wrap").css("z-index","-1"),jQuery(".bwg_comment_container").hasClass("bwg_open")&&(bwg_popup_sidebar_close(jQuery(".bwg_comment_container")),jQuery(".bwg_comment_container").attr("class","bwg_comment_container bwg_close"),jQuery(".bwg_comment").attr("title",bwg_objectsL10n.bwg_show_comments)),jQuery(".bwg_ecommerce_container").hasClass("bwg_open")?(bwg_popup_sidebar_close(jQuery(".bwg_ecommerce_container")),bwg_animate_image_box_for_hide_sidebar(),jQuery(".bwg_ecommerce_container").attr("class","bwg_ecommerce_container bwg_close"),jQuery(".bwg_ecommerce").attr("title",bwg_objectsL10n.bwg_show_ecommerce)):(bwg_popup_sidebar_open(jQuery(".bwg_ecommerce_container")),bwg_animate_image_box_for_show_sidebar(),jQuery(".bwg_ecommerce_container").attr("class","bwg_ecommerce_container bwg_open"),jQuery(".bwg_ecommerce").attr("title",bwg_objectsL10n.bwg_hide_ecommerce),get_ajax_pricelist())}function bwg_popup_sidebar_close(e){var t=parseInt(e.css("borderRightWidth"));t||(t=0),"left"==lightbox_comment_pos?e.animate({left:-e.width()-t},100):"right"==lightbox_comment_pos&&e.animate({right:-e.width()-t},100)}function bwg_animate_image_box_for_hide_sidebar(){"left"==lightbox_comment_pos?jQuery(".bwg_image_wrap").animate({left:0,width:jQuery("#spider_popup_wrap").width()},100):"right"==lightbox_comment_pos&&jQuery(".bwg_image_wrap").animate({right:0,width:jQuery("#spider_popup_wrap").width()},100),jQuery(".bwg_image_container").animate({width:jQuery("#spider_popup_wrap").width()-("vertical"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_width:0)},100),jQuery(".bwg_popup_image").animate({maxWidth:jQuery("#spider_popup_wrap").width()-("vertical"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_width:0)},{duration:100,complete:function(){bwg_change_watermark_container()}}),jQuery(".bwg_popup_embed").animate({width:jQuery("#spider_popup_wrap").width()-("vertical"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_width:0)},{duration:100,complete:function(){bwg_resize_instagram_post(),bwg_change_watermark_container()}}),"width"==gallery_box_data.width_or_height?(jQuery(".bwg_filmstrip_container").animate({width:jQuery(".spider_popup_wrap").width()},100),jQuery(".bwg_filmstrip").animate({width:jQuery(".spider_popup_wrap").width()-2*("horizontal"==gallery_box_data.filmstrip_direction?jQuery(".bwg_filmstrip_right").width():jQuery(".bwg_filmstrip_right").height())},100)):"height"==gallery_box_data.width_or_height&&(jQuery(".bwg_filmstrip_container").animate({height:jQuery(".spider_popup_wrap").width()},100),jQuery(".bwg_filmstrip").animate({height:jQuery(".spider_popup_wrap").width()-2*("horizontal"==gallery_box_data.filmstrip_direction?jQuery(".bwg_filmstrip_right").width():jQuery(".bwg_filmstrip_right").height())},100)),bwg_set_filmstrip_pos(jQuery(".spider_popup_wrap").width()-2*("horizontal"==gallery_box_data.filmstrip_direction?jQuery(".bwg_filmstrip_right").width():jQuery(".bwg_filmstrip_right").height()),"",gallery_box_data),jQuery(".spider_popup_close_fullscreen").show(100)}function bwg_animate_image_box_for_show_sidebar(){var e=jQuery(".bwg_comment_container").width()||jQuery(".bwg_ecommerce_container").width();"left"==lightbox_comment_pos?jQuery(".bwg_image_wrap").animate({left:e,width:jQuery("#spider_popup_wrap").width()-e},100):"right"==lightbox_comment_pos&&jQuery(".bwg_image_wrap").animate({right:e,width:jQuery("#spider_popup_wrap").width()-e},100),jQuery(".bwg_image_container").animate({width:jQuery("#spider_popup_wrap").width()-("vertical"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_width:0)-e},100),jQuery(".bwg_popup_image").animate({maxWidth:jQuery("#spider_popup_wrap").width()-e-("vertical"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_width:0)},{duration:100,complete:function(){bwg_change_watermark_container()}}),jQuery(".bwg_popup_embed > .bwg_embed_frame > img, .bwg_popup_embed > .bwg_embed_frame > video").animate({maxWidth:jQuery("#spider_popup_wrap").width()-e-("vertical"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_width:0)},{duration:100,complete:function(){bwg_resize_instagram_post(),bwg_change_watermark_container()}}),"width"==gallery_box_data.width_or_height&&(jQuery(".bwg_filmstrip_container").css({width:jQuery("#spider_popup_wrap").width()-("vertical"==gallery_box_data.filmstrip_direction?0:e)}),jQuery(".bwg_filmstrip").animate({width:jQuery(".bwg_filmstrip_container").width()-2*("horizontal"==gallery_box_data.filmstrip_direction?jQuery(".bwg_filmstrip_right").width():jQuery(".bwg_filmstrip_right").height())},100),bwg_set_filmstrip_pos(jQuery(".bwg_filmstrip_container").width()-2*("horizontal"==gallery_box_data.filmstrip_direction?jQuery(".bwg_filmstrip_right").width():jQuery(".bwg_filmstrip_right").height()),"",gallery_box_data))}function bwg_reset_zoom(){var e=/android|webos|iphone|ipad|ipod|blackberry|iemobile|opera mini/i.test(navigator.userAgent.toLowerCase()),t=document.querySelector('meta[name="viewport"]');e&&t&&(t.content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=0")}function bwg_open_with_fullscreen(){jQuery(".bwg_watermark").css({display:"none"});var e=0;(jQuery(".bwg_comment_container").hasClass("bwg_open")||jQuery(".bwg_ecommerce_container").hasClass("bwg_open"))&&(e=jQuery(".bwg_comment_container").width()||jQuery(".bwg_ecommerce_container").width()),bwg_popup_current_width=jQuery(window).width(),bwg_popup_current_height=window.innerHeight,jQuery("#spider_popup_wrap").css({width:jQuery(window).width(),height:window.innerHeight,left:0,top:0,margin:0,zIndex:100002}),jQuery(".bwg_image_wrap").css({width:jQuery(window).width()-e}),jQuery(".bwg_image_container").css({height:bwg_popup_current_height-("horizontal"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_height:0),width:bwg_popup_current_width-e-("vertical"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_width:0)}),jQuery(".bwg_popup_image").css({maxWidth:jQuery(window).width()-e-("vertical"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_width:0),maxHeight:window.innerHeight-("horizontal"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_height:0)},{complete:function(){bwg_change_watermark_container()}}),jQuery(".bwg_popup_video").css({width:jQuery(window).width()-e-("vertical"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_width:0),height:window.innerHeight-("horizontal"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_height:0)},{complete:function(){bwg_change_watermark_container()}}),jQuery(".bwg_popup_embed > .bwg_embed_frame > img, .bwg_popup_embed > .bwg_embed_frame > video").css({maxWidth:jQuery(window).width()-e-("vertical"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_width:0),maxHeight:window.innerHeight-("horizontal"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_height:0)},{complete:function(){bwg_resize_instagram_post(),bwg_change_watermark_container()}}),"width"==gallery_box_data.width_or_height?(jQuery(".bwg_filmstrip_container").css({width:jQuery(window).width()-("horizontal"==gallery_box_data.filmstrip_direction?"comment_container_width":0)}),jQuery(".bwg_filmstrip").css({width:jQuery(window).width()-("horizontal"==gallery_box_data.filmstrip_direction?"comment_container_width":0)-2*("horizontal"==gallery_box_data.filmstrip_direction?jQuery(".bwg_filmstrip_right").width():jQuery(".bwg_filmstrip_right").height())}),bwg_set_filmstrip_pos(jQuery(window).width()-("horizontal"==gallery_box_data.filmstrip_direction?"comment_container_width":0)-2*("horizontal"==gallery_box_data.filmstrip_direction?jQuery(".bwg_filmstrip_right").width():jQuery(".bwg_filmstrip_right").height()),"",gallery_box_data)):(jQuery(".bwg_filmstrip_container").css({height:window.innerHeight-("horizontal"==gallery_box_data.filmstrip_direction?"comment_container_width":0)}),jQuery(".bwg_filmstrip").css({height:window.innerHeight-("horizontal"==gallery_box_data.filmstrip_direction?"comment_container_width":0)-2*("horizontal"==gallery_box_data.filmstrip_direction?jQuery(".bwg_filmstrip_right").width():jQuery(".bwg_filmstrip_right").height())}),bwg_set_filmstrip_pos(window.innerHeight-("horizontal"==gallery_box_data.filmstrip_direction?"comment_container_width":0)-2*("horizontal"==gallery_box_data.filmstrip_direction?jQuery(".bwg_filmstrip_right").width():jQuery(".bwg_filmstrip_right").height()),"",gallery_box_data)),jQuery(".bwg_resize-full").attr("class","bwg-icon-compress bwg_ctrl_btn bwg_resize-full"),jQuery(".bwg_resize-full").attr("title",bwg_objectsL10n.bwg_restore),jQuery(".spider_popup_close").attr("class","spider_popup_close_fullscreen")}function bwg_resize_full(){jQuery(".bwg_watermark").css({display:"none"});var e=0;(jQuery(".bwg_comment_container").hasClass("bwg_open")||jQuery(".bwg_ecommerce_container").hasClass("bwg_open"))&&(e=jQuery(".bwg_comment_container").width()||jQuery(".bwg_ecommerce_container").width()),jQuery(".bwg_resize-full").hasClass("bwg-icon-compress")?(jQuery(window).width()>gallery_box_data.image_width&&(bwg_popup_current_width=gallery_box_data.image_width),window.innerHeight>gallery_box_data.image_height&&(bwg_popup_current_height=gallery_box_data.image_height),jQuery("#spider_popup_wrap").animate({width:bwg_popup_current_width,height:bwg_popup_current_height,left:"50%",top:"50%",marginLeft:-bwg_popup_current_width/2,marginTop:-bwg_popup_current_height/2,zIndex:100002},500),jQuery(".bwg_image_wrap").animate({width:bwg_popup_current_width-e},500),jQuery(".bwg_image_container").animate({height:bwg_popup_current_height-("horizontal"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_height:0),width:bwg_popup_current_width-e-("vertical"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_width:0)},500),jQuery(".bwg_popup_image").animate({maxWidth:bwg_popup_current_width-e-("vertical"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_width:0),maxHeight:bwg_popup_current_height-("horizontal"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_height:0)},{duration:500,complete:function(){bwg_change_watermark_container(),jQuery("#spider_popup_wrap").width()<jQuery(window).width()&&jQuery("#spider_popup_wrap").height()<window.innerHeight&&jQuery(".spider_popup_close_fullscreen").attr("class","spider_popup_close")}}),jQuery(".bwg_popup_embed > .bwg_embed_frame > img, .bwg_popup_embed > .bwg_embed_frame > video").animate({maxWidth:bwg_popup_current_width-e-("vertical"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_width:0),maxHeight:bwg_popup_current_height-("horizontal"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_height:0)},{duration:500,complete:function(){bwg_resize_instagram_post(),bwg_change_watermark_container(),jQuery("#spider_popup_wrap").width()<jQuery(window).width()&&jQuery("#spider_popup_wrap").height()<window.innerHeight&&jQuery(".spider_popup_close_fullscreen").attr("class","spider_popup_close")}}),"width"==gallery_box_data.width_or_height?(jQuery(".bwg_filmstrip_container").animate({width:bwg_popup_current_width-("horizontal"==gallery_box_data.filmstrip_direction?e:0)},500),jQuery(".bwg_filmstrip").animate({width:bwg_popup_current_width-("horizontal"==gallery_box_data.filmstrip_direction?e:0)-2*("horizontal"==gallery_box_data.filmstrip_direction?jQuery(".bwg_filmstrip_right").width():jQuery(".bwg_filmstrip_right").height())},500),bwg_set_filmstrip_pos(bwg_popup_current_width-2*("horizontal"==gallery_box_data.filmstrip_direction?jQuery(".bwg_filmstrip_right").width():jQuery(".bwg_filmstrip_right").height()),"",gallery_box_data)):(jQuery(".bwg_filmstrip_container").animate({height:bwg_popup_current_height-("horizontal"==gallery_box_data.filmstrip_direction?e:0)},500),jQuery(".bwg_filmstrip").animate({height:bwg_popup_current_height-("horizontal"==gallery_box_data.filmstrip_direction?e:0)-2*("horizontal"==gallery_box_data.filmstrip_direction?jQuery(".bwg_filmstrip_right").width():jQuery(".bwg_filmstrip_right").height())},500),bwg_set_filmstrip_pos(bwg_popup_current_height-2*("horizontal"==gallery_box_data.filmstrip_direction?jQuery(".bwg_filmstrip_right").width():jQuery(".bwg_filmstrip_right").height()),"",gallery_box_data),"horizontal"!=gallery_box_data.filmstrip_direction&&jQuery(".bwg_filmstrip_right").css({top:bwg_popup_current_height-jQuery(".bwg_filmstrip_right").height()})),jQuery(".bwg_resize-full").attr("class","bwg-icon-expand bwg_ctrl_btn bwg_resize-full"),jQuery(".bwg_resize-full").attr("title",bwg_objectsL10n.bwg_maximize),setTimeout(function(){bwg_info_height_set()},500)):(bwg_popup_current_width=jQuery(window).width(),bwg_popup_current_height=window.innerHeight,jQuery("#spider_popup_wrap").animate({width:jQuery(window).width(),height:window.innerHeight,left:0,top:0,margin:0,zIndex:100002},500),jQuery(".bwg_image_wrap").animate({width:jQuery(window).width()-e},500),jQuery(".bwg_image_container").animate({height:bwg_popup_current_height-("horizontal"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_height:0),width:bwg_popup_current_width-e-("vertical"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_width:0)},500),jQuery(".bwg_popup_image").animate({maxWidth:jQuery(window).width()-e-("vertical"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_width:0),maxHeight:window.innerHeight-("horizontal"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_height:0)},{duration:500,complete:function(){bwg_change_watermark_container()}}),jQuery(".bwg_popup_embed > .bwg_embed_frame > img, .bwg_popup_embed > .bwg_embed_frame > video").animate({maxWidth:jQuery(window).width()-e-("vertical"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_width:0),maxHeight:window.innerHeight-("horizontal"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_height:0)},{duration:500,complete:function(){bwg_resize_instagram_post(),bwg_change_watermark_container()}}),"width"==gallery_box_data.width_or_height?(jQuery(".bwg_filmstrip_container").animate({width:jQuery(window).width()-("horizontal"==gallery_box_data.filmstrip_direction?e:0)},500),jQuery(".bwg_filmstrip").animate({width:jQuery(window).width()-("horizontal"==gallery_box_data.filmstrip_direction?e:0)-2*("horizontal"==gallery_box_data.filmstrip_direction?jQuery(".bwg_filmstrip_right").width():jQuery(".bwg_filmstrip_right").height())},500),bwg_set_filmstrip_pos(jQuery(window).width()-("horizontal"==gallery_box_data.filmstrip_direction?e:0)-2*("horizontal"==gallery_box_data.filmstrip_direction?jQuery(".bwg_filmstrip_right").width():jQuery(".bwg_filmstrip_right").height()),"",gallery_box_data)):(jQuery(".bwg_filmstrip_container").animate({height:window.innerHeight-("horizontal"==gallery_box_data.filmstrip_direction?e:0)},500),jQuery(".bwg_filmstrip").animate({height:window.innerHeight-("horizontal"==gallery_box_data.filmstrip_direction?e:0)-2*("horizontal"==gallery_box_data.filmstrip_direction?jQuery(".bwg_filmstrip_right").width():jQuery(".bwg_filmstrip_right").height())},500),bwg_set_filmstrip_pos(window.innerHeight-("horizontal"==gallery_box_data.filmstrip_direction?e:0)-2*("horizontal"==gallery_box_data.filmstrip_direction?jQuery(".bwg_filmstrip_right").width():jQuery(".bwg_filmstrip_right").height()),"",gallery_box_data),"horizontal"!=gallery_box_data.filmstrip_direction&&jQuery(".bwg_filmstrip_right").css({top:window.innerHeight-jQuery(".bwg_filmstrip_right").height()})),jQuery(".bwg_resize-full").attr("class","bwg-icon-compress bwg_ctrl_btn bwg_resize-full"),jQuery(".bwg_resize-full").attr("title",bwg_objectsL10n.bwg_restore),jQuery(".spider_popup_close").attr("class","spider_popup_close_fullscreen")),setTimeout(function(){bwg_info_height_set()},500)}function bwg_popup_resize_lightbox(){void 0!==jQuery().fullscreen&&jQuery.isFunction(jQuery().fullscreen)&&(jQuery.fullscreen.isFullScreen()||(jQuery(".bwg_resize-full").show(),jQuery(".bwg_resize-full").hasClass("bwg-icon-compress")||jQuery(".bwg_resize-full").attr("class","bwg-icon-expand bwg_ctrl_btn bwg_resize-full"),jQuery(".bwg_resize-full").attr("title",bwg_objectsL10n.bwg_maximize),jQuery(".bwg_fullscreen").attr("class","bwg-icon-arrows-out bwg_ctrl_btn bwg_fullscreen"),jQuery(".bwg_fullscreen").attr("title",bwg_objectsL10n.fullscreen)));var e=0;(jQuery(".bwg_comment_container").hasClass("bwg_open")||jQuery(".bwg_ecommerce_container").hasClass("bwg_open"))&&(e=gallery_box_data.lightbox_comment_width),e>jQuery(window).width()?(e=jQuery(window).width(),jQuery(".bwg_comment_container").css({width:e}),jQuery(".bwg_ecommerce_container").css({width:e}),jQuery(".spider_popup_close_fullscreen").hide()):jQuery(".spider_popup_close_fullscreen").show(),window.innerHeight>gallery_box_data.image_height&&1!=gallery_box_data.open_with_fullscreen&&!jQuery(".bwg_resize-full").hasClass("bwg-icon-compress")?(jQuery("#spider_popup_wrap").css({height:gallery_box_data.image_height,top:"50%",marginTop:-gallery_box_data.image_height/2,zIndex:100002}),jQuery(".bwg_image_container").css({height:gallery_box_data.image_height-("horizontal"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_height:0)}),jQuery(".bwg_image_info").css("height","auto"),bwg_info_height_set(),jQuery(".bwg_popup_image").css({maxHeight:gallery_box_data.image_height-("horizontal"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_height:0)}),jQuery(".bwg_popup_embed > .bwg_embed_frame > img, .bwg_popup_embed > .bwg_embed_frame > video").css({maxHeight:gallery_box_data.image_height-("horizontal"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_height:0)}),"vertical"==gallery_box_data.filmstrip_direction&&(jQuery(".bwg_filmstrip_container").css({height:gallery_box_data.image_height}),jQuery(".bwg_filmstrip").css({height:gallery_box_data.image_height-2*("horizontal"==gallery_box_data.filmstrip_direction?jQuery(".bwg_filmstrip_right").width():jQuery(".bwg_filmstrip_right").height())})),bwg_popup_current_height=gallery_box_data.image_height):(jQuery("#spider_popup_wrap").css({height:window.innerHeight,top:0,marginTop:0,zIndex:100002}),jQuery(".bwg_image_container").css({height:window.innerHeight-("horizontal"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_height:0)}),jQuery(".bwg_image_info").css("height","auto"),bwg_info_height_set(),jQuery(".bwg_popup_image").css({maxHeight:window.innerHeight-("horizontal"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_height:0)}),jQuery(".bwg_popup_embed > .bwg_embed_frame > img, .bwg_popup_embed > .bwg_embed_frame > video").css({maxHeight:window.innerHeight-("horizontal"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_height:0)}),"vertical"==gallery_box_data.filmstrip_direction&&(jQuery(".bwg_filmstrip_container").css({height:window.innerHeight}),jQuery(".bwg_filmstrip").css({height:window.innerHeight-2*("horizontal"==gallery_box_data.filmstrip_direction?jQuery(".bwg_filmstrip_right").width():jQuery(".bwg_filmstrip_right").height())})),bwg_popup_current_height=window.innerHeight),jQuery(window).width()>=gallery_box_data.image_width&&1!=gallery_box_data.open_with_fullscreen?(jQuery("#spider_popup_wrap").css({width:gallery_box_data.image_width,left:"50%",marginLeft:-gallery_box_data.image_width/2,zIndex:100002}),jQuery(".bwg_image_wrap").css({width:gallery_box_data.image_width-e}),jQuery(".bwg_image_container").css({width:gallery_box_data.image_width-("vertical"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_width:0)-e}),jQuery(".bwg_image_info").css("height","auto"),bwg_info_height_set(),jQuery(".bwg_popup_image").css({maxWidth:gallery_box_data.image_width-("vertical"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_width:0)-e}),jQuery(".bwg_popup_embed > .bwg_embed_frame > img, .bwg_popup_embed > .bwg_embed_frame > video").css({maxWidth:gallery_box_data.image_width-("vertical"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_width:0)-e}),"horizontal"==gallery_box_data.filmstrip_direction&&(jQuery(".bwg_filmstrip_container").css({width:gallery_box_data.image_width-e}),jQuery(".bwg_filmstrip").css({width:gallery_box_data.image_width-e-2*("horizontal"==gallery_box_data.filmstrip_direction?jQuery(".bwg_filmstrip_right").width():jQuery(".bwg_filmstrip_right").height())})),bwg_popup_current_width=gallery_box_data.image_width):(jQuery("#spider_popup_wrap").css({width:jQuery(window).width(),left:0,marginLeft:0,zIndex:100002}),jQuery(".bwg_image_wrap").css({width:jQuery(window).width()-e}),jQuery(".bwg_image_container").css({width:jQuery(window).width()-("vertical"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_width:0)-e}),jQuery(".bwg_popup_image").css({maxWidth:jQuery(window).width()-("vertical"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_width:0)-e}),jQuery(".bwg_popup_embed > .bwg_embed_frame > img, .bwg_popup_embed > .bwg_embed_frame > video").css({maxWidth:jQuery(window).width()-("vertical"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_width:0)-e}),"horizontal"==gallery_box_data.filmstrip_direction&&(jQuery(".bwg_filmstrip_container").css({width:jQuery(window).width()-e}),jQuery(".bwg_filmstrip").css({width:jQuery(window).width()-e-2*("horizontal"==gallery_box_data.filmstrip_direction?jQuery(".bwg_filmstrip_right").width():jQuery(".bwg_filmstrip_right").height())})),bwg_popup_current_width=jQuery(window).width()),bwg_resize_instagram_post(),bwg_change_watermark_container(),1!=gallery_box_data.open_with_fullscreen&&(gallery_box_data.lightbox_close_btn_right<0&&jQuery("#spider_popup_wrap").width()-2*gallery_box_data.lightbox_close_btn_right>=jQuery(window).width()||gallery_box_data.lightbox_close_btn_top<0&&jQuery("#spider_popup_wrap").height()-2*gallery_box_data.lightbox_close_btn_top>=jQuery(window).height()?jQuery(".spider_popup_close").attr("class","spider_popup_close_fullscreen"):jQuery(".spider_popup_close_fullscreen").attr("class","spider_popup_close"));var t=jQuery(".bwg_ctrl_btn_container").height();"bottom"==gallery_box_data.lightbox_ctrl_btn_pos&&jQuery(".bwg_toggle_container i").hasClass("bwg-icon-caret-down")&&jQuery(".bwg_toggle_container").css("bottom",t+"px"),"top"==gallery_box_data.lightbox_ctrl_btn_pos&&jQuery(".bwg_toggle_container i").hasClass("bwg-icon-caret-up")&&jQuery(".bwg_toggle_container").css("top",t+"px")}function bwg_rating(e,t,i,a){lightbox_rate_stars_count=gallery_box_data.lightbox_rate_stars_count,lightbox_rate_size=gallery_box_data.lightbox_rate_size,lightbox_rate_icon=gallery_box_data.lightbox_rate_icon;var r="Not rated yet.";if(0!=i&&""!=i&&(r=parseFloat(i).toFixed(1)+"\n Votes: "+t),void 0!==jQuery().raty&&jQuery.isFunction(jQuery().raty)){var _=parseFloat(jQuery("#bwg_star").attr("data-score"));jQuery("#bwg_star").removeAttr("data-score").html("");var s={starType:"i",number:lightbox_rate_stars_count,size:lightbox_rate_size,noRatedMsg:"Not rated yet.",readOnly:!1,score:_,starHalf:"bwg-icon-"+lightbox_rate_icon+("star"==lightbox_rate_icon?"-half":"")+"-o",starOff:"bwg-icon-"+lightbox_rate_icon+"-o",starOn:"bwg-icon-"+lightbox_rate_icon,cancelOff:"bwg-icon-minus-square-o",cancelOn:"bwg-icon-minus-square-o",cancel:!1,cancelHint:"Cancel your rating.",hints:[r,r,r,r,r],alreadyRatedMsg:parseFloat(i).toFixed(1)+"\nYou have already rated.\nVotes: "+t};e||(s.click=function(e,t){jQuery("#bwg_star").hide(),jQuery("#bwg_rated").show(),spider_set_input_value("rate_ajax_task","save_rate"),jQuery.when(spider_rate_ajax_save("bwg_rate_form",e)).then(function(){gallery_box_data.data[a].rate=e,++gallery_box_data.data[a].rate_count,gallery_box_data.data[a].avg_rating=_?((_+e)/2).toFixed(1):e.toFixed(1),bwg_rating(gallery_box_data.data[a].rate,gallery_box_data.data[a].rate_count,gallery_box_data.data[a].avg_rating,gallery_box_data.current_image_key)})}),jQuery("#bwg_star").raty(s),jQuery(".bwg_image_rate_disabled").hide(),e&&jQuery(".bwg_image_rate_disabled").show()}}function changeDownloadsTotal(e){var t=0;0==jQuery("[name=option_show_digital_items_count]").val()?jQuery("[name=selected_download_item]:checked").each(function(){t+=Number(jQuery(this).closest("tr").attr("data-price"))}):jQuery(".digital_image_count").each(function(){0!=Number(jQuery(this).val())&&(t+=Number(jQuery(this).closest("tr").attr("data-price"))*Number(jQuery(this).val()))}),t=t.toFixed(2).toString().replace(/(\d)(?=(\d{3})+(?!\d))/g,"$1,"),jQuery(".product_downloads_price").html(t)}function changeMenualTotal(e){Number(jQuery(e).val())<=0&&jQuery(e).val("1");var t=Number(jQuery(e).val()),i=Number(jQuery(".product_manual_price").attr("data-actual-price"));i=(i*=t).toFixed(2).toString().replace(/(\d)(?=(\d{3})+(?!\d))/g,"$1,"),jQuery(".product_manual_price").html(i)}function onSelectableParametersChange(e){var t=0,i=gallery_box_data.data[jQuery("#bwg_current_image_key").val()].pricelist_manual_price?gallery_box_data.data[jQuery("#bwg_current_image_key").val()].pricelist_manual_price:"0";i=parseFloat(i.replace(",",""));var a=jQuery(e).closest(".image_selected_parameter").attr("data-parameter-type"),r=jQuery(e).val();r=r.split("*");var _=parseFloat(r[1]),s=r[0],o=Number(jQuery(e).closest(".image_selected_parameter").find(".already_selected_values").val());if("4"==a||"5"==a){var l=parseFloat(s+_);jQuery(e).closest(".image_selected_parameter").find(".already_selected_values").val(l)}else if("6"==a){if(0==jQuery(e).is(":checked"))var n=o-parseFloat(s+_);else n=o+parseFloat(s+_);jQuery(e).closest(".image_selected_parameter").find(".already_selected_values").val(n)}jQuery(".already_selected_values").each(function(){t+=Number(jQuery(this).val())}),i+=t,jQuery(".product_manual_price").attr("data-actual-price",i),i=(i*=Number(jQuery(".image_count").val())<=0?1:Number(jQuery(".image_count").val())).toFixed(2).toString().replace(/(\d)(?=(\d{3})+(?!\d))/g,"$1,"),jQuery(".product_manual_price").html(i)}function onBtnClickAddToCart(){var e=jQuery("[name=type]").val();if(""!=e){var t={};if("manual"==e){var i=jQuery(".image_count").val(),a={};jQuery(".manual").find(".image_selected_parameter").each(function(){var e=jQuery(this).attr("data-parameter-id"),t="";switch(jQuery(this).attr("data-parameter-type")){case"2":t=jQuery(this).find("input").val();break;case"3":t=jQuery(this).find("textarea").val();break;case"4":t=jQuery(this).find("select :selected").val();break;case"5":t=jQuery(this).find("[type=radio]:checked").val();break;case"6":var i=[];jQuery(this).find("[type=checkbox]:checked").each(function(){i.push(jQuery(this).val())}),t=i}a[e]=t}),t.count=i,t.parameters=a,t.price=jQuery(".product_manual_price").attr("data-price").replace(",","")}else{var r=[];if(0==jQuery("[name=option_show_digital_items_count]").val()){if(0==jQuery("[name=selected_download_item]:checked").length)return void jQuery(".add_to_cart_msg").html("You must select at least one item.");jQuery("[name=selected_download_item]:checked").each(function(){var e={};e.id=jQuery(this).val(),e.count=1,e.price=jQuery(this).closest("tr").attr("data-price"),r.push(e)})}else jQuery(".digital_image_count").each(function(){var e={};0<jQuery(this).val()&&(e.id=jQuery(this).closest("tr").attr("data-id"),e.price=jQuery(this).closest("tr").attr("data-price"),e.count=jQuery(this).val(),r.push(e))});if(0==(t.downloadItems=r).length)return void jQuery(".add_to_cart_msg").html("Please select at least one item")}var _=jQuery("#ajax_url").val(),s={action:"add_cart",task:"add_cart",controller:"checkout",image_id:jQuery("#bwg_popup_image").attr("image_id"),type:e,data:JSON.stringify(t)};jQuery.ajax({type:"POST",url:_,data:s,success:function(e){responseData=JSON.parse(e),jQuery(".add_to_cart_msg").html(responseData.msg),jQuery(".products_in_cart").html(responseData.products_in_cart),1==responseData.redirect&&(window.location.href="<?php echo get_permalink($options->checkout_page);?>")},beforeSend:function(){},complete:function(){}})}else jQuery(".add_to_cart_msg").html("Please select Prints and products or Downloads")}function onBtnViewCart(){var e=jQuery("[name=option_checkout_page]").val();jQuery("#bwg_ecommerce_form").attr("action",e),jQuery("#bwg_ecommerce_form").submit()}function bwg_load_visible_images(e,t,i){0<=e-t&&(startPoint=e-t),i<e+t&&(endPoint=i);for(var a=startPoint;a<=endPoint;a++){var r=jQuery("#bwg_filmstrip_thumbnail_"+a+" img");r.removeClass("bwg-hidden"),r.attr("src",r.data("url"))}}function bwg_load_filmstrip(){for(var e=1;e<=total_thumbnail_count;e++){var t;if(leftIndex=startPoint-e,rightIndex=endPoint+e,rightIndex<total_thumbnail_count)(t=jQuery("#bwg_filmstrip_thumbnail_"+rightIndex+" img")).removeClass("bwg-hidden"),t.attr("src",t.data("url"));if(0<=leftIndex)(t=jQuery("#bwg_filmstrip_thumbnail_"+leftIndex+" img")).removeClass("bwg-hidden"),t.attr("src",t.data("url"))}jQuery(".bwg_filmstrip_thumbnail").each(function(){var e=jQuery(this).find("img");void 0===e.attr("style")&&(0==e.width()?e.on("load",function(){jQuery(this).find(".bwg_filmstrip_thumbnail_img_wrap"),bwg_filmstrip_thumb_view(e)}):(jQuery(this).find(".bwg_filmstrip_thumbnail_img_wrap"),bwg_filmstrip_thumb_view(e)))})}function bwg_filmstrip_thumb_view(e){var t=gallery_box_data.image_filmstrip_height,i=gallery_box_data.image_filmstrip_width,a=i-gallery_box_data.filmstrip_thumb_right_left_space,r=t,_=Math.max(i/e.width(),t/e.height()),s=e.width()*_,o=e.height()*_;e.css({width:s,height:o,marginLeft:(a-s)/2,marginTop:(r-o)/2})}function bwg_info_height_set(){bwg_info_position(!1),jQuery(".mCustomScrollBox").length&&jQuery(".bwg_image_info_container1").height()<jQuery(".mCustomScrollBox").height()+jQuery(".bwg_toggle_container").height()+bwg_image_info_pos+2*parseInt(gallery_box_data.lightbox_info_margin)&&jQuery(".bwg_image_info").css({height:jQuery(".bwg_image_info_container1").height()-jQuery(".bwg_toggle_container").height()-bwg_image_info_pos-2*parseInt(gallery_box_data.lightbox_info_margin)})}function bwg_info_position(e){var t=0,i="none";"top"==gallery_box_data.lightbox_ctrl_btn_pos?"top"==gallery_box_data.lightbox_info_pos&&(i="top"):"bottom"==gallery_box_data.lightbox_info_pos&&(i="bottom"),jQuery(".bwg_ctrl_btn_container").hasClass("closed")||("top"==gallery_box_data.lightbox_ctrl_btn_pos?"top"==gallery_box_data.lightbox_info_pos&&(t=jQuery(".bwg_ctrl_btn_container").height()):"bottom"==gallery_box_data.lightbox_info_pos&&(t=jQuery(".bwg_ctrl_btn_container").height())),"top"==i?0==e?jQuery(".bwg_image_info").css("top",t):jQuery(".bwg_image_info").animate({top:t+"px"},500):"bottom"==i&&(0==e?jQuery(".bwg_image_info").css("bottom",t):jQuery(".bwg_image_info").animate({bottom:t+"px"},500))}function spider_display_embed(e,t,i,a){var r="";switch(e){case"EMBED_OEMBED_YOUTUBE_VIDEO":var _="<iframe ";for(attr in""!=i&&(_+=' src="//www.youtube.com/embed/'+i+'?enablejsapi=1&wmode=transparent"'),a)/src/i.test(attr)||""!=attr&&""!=a[attr]&&(_+=" "+attr+'="'+a[attr]+'"');r+=_+=" ></iframe>";break;case"EMBED_OEMBED_VIMEO_VIDEO":var s="<iframe ";for(attr in""!=i&&(s+=' src="//player.vimeo.com/video/'+i+'?enablejsapi=1"'),a)/src/i.test(attr)||""!=attr&&""!=a[attr]&&(s+=" "+attr+'="'+a[attr]+'"');r+=s+=" ></iframe>";break;case"EMBED_OEMBED_FLICKR_IMAGE":var o="<div ";for(attr in a)/src/i.test(attr)||""!=attr&&""!=a[attr]&&(o+=" "+attr+'="'+a[attr]+'"');o+=" >",""!=i&&(o+='<img src="'+i+'" style="max-width:100% !important; max-height:100% !important; width:auto !important; height:auto !important;">'),r+=o+="</div>";break;case"EMBED_OEMBED_FLICKR_VIDEO":break;case"EMBED_OEMBED_INSTAGRAM_VIDEO":var l="<div ";for(attr in a)/src/i.test(attr)||""!=attr&&""!=a[attr]&&(l+=" "+attr+'="'+a[attr]+'"');l+=" >",""!=t&&(l+='<video style="width:auto !important; height:auto !important; max-width:100% !important; max-height:100% !important; margin:0 !important;" controls><source src="'+decodeURIComponent(t)+'" type="video/mp4"> Your browser does not support the video tag. </video>'),r+=l+="</div>";break;case"EMBED_OEMBED_INSTAGRAM_IMAGE":var n=a["data-max-width"],g=a["data-max-height"];l="<div ";for(attr in a)/src/i.test(attr)||""!=attr&&""!=a[attr]&&(l+=" "+attr+'="'+a[attr]+'"');l+=" >",""!=t&&(l+='<img src="'+decodeURIComponent(t)+'" style="max-width:'+n+"px; max-height:"+g+'px; width: auto; height: auto">'),r+=l+="</div>";break;case"EMBED_OEMBED_INSTAGRAM_POST":l="<div ";for(attr in a)/src/i.test(attr)||""!=attr&&""!=a[attr]&&(l+=" "+attr+'="'+a[attr]+'"',"CLASS"!=attr&&"class"!=attr&&"Class"!=attr||(obj_class=a[attr]));l+=">",""!=t&&(l+='<div class="inner_instagram_iframe_'+obj_class+'" style="max-width: 100% !important; max-height: 100% !important; width: 100%; height: 100%; margin:0; vertical-align:middle;">'+atob(t)+"</div>"),r+=l+="</div>";break;case"EMBED_OEMBED_FACEBOOK_IMAGE":var w="<span ";for(attr in a)/src/i.test(attr)||""!=attr&&""!=a[attr]&&(w+=" "+attr+'="'+a[attr]+'"');w+=" >",""!=i&&(w+='<img src="'+t+'" style=" max-width:100% !important; max-height:100% !important; width:auto; height:100%;">'),r+=w+="</span>";break;case"EMBED_OEMBED_FACEBOOK_VIDEO":var b="<div ";for(attr in a)/src/i.test(attr)||""!=attr&&""!=a[attr]&&(b+=" "+attr+'="'+a[attr]+'"');b+=" >",""!=i&&(b+='<iframe src="//www.facebook.com/video/embed?video_id='+t+'&enablejsapi=1&wmode=transparent" style="max-width:100% !important; max-height:100% !important; width:100%; height:100%; margin:0; display:table-cell; vertical-align:middle;"frameborder="0" class="bwg_fb_video" scrolling="no" allowtransparency="false" allowfullscreen></iframe>'),r+=b+="</div>";break;case"EMBED_OEMBED_DAILYMOTION_VIDEO":var u="<iframe ";for(attr in""!=i&&(u+=' src="//www.dailymotion.com/embed/video/'+i+'?api=postMessage"'),a)/src/i.test(attr)||""!=attr&&""!=a[attr]&&(u+=" "+attr+'="'+a[attr]+'"');r+=u+=" ></iframe>";break;case"EMBED_OEMBED_IMGUR":var d="<div ";for(attr in a)/src/i.test(attr)||""!=attr&&""!=a[attr]&&(l+=" "+attr+'="'+a[attr]+'"');d+=" >",""!=i&&(d+='<img src="'+i+'" style="max-width:100% !important; max-height:100% !important; width:auto; height:auto !important;">'),r+=d+="</div>";break;case"EMBED_OEMBED_GOOGLE_PHOTO_IMAGE":var h="<div ";for(attr in a)/src/i.test(attr)||""!=attr&&""!=a[attr]&&(h+=" "+attr+'="'+a[attr]+'"');h+=" >",""!=i&&(h+='<img src="'+t+'" style=" max-width:100% !important; max-height:100% !important; width:auto; height:auto;">'),r+=h+="</div>";break;default:var m={content:""};jQuery(document).trigger("bwg_display_embed",[m,e,t,i,a]),r=m.content}return r}function bwg_add_instagram_gallery(e,s){if(!0===(s=void 0!==s&&s)){if(bwg_check_instagram_gallery_input(e,s))return!1;var t="0";1==jQuery("input[name=popup_instagram_post_gallery]:checked").val()&&(t="1");var i=encodeURI(jQuery("#popup_instagram_gallery_source").val()),a=encodeURI(jQuery("#popup_instagram_image_number").val())}else{if(bwg_check_instagram_gallery_input(e,s))return!1;if(!bwg_check_gallery_empty(!1,!0))return!1;t="0";1==jQuery("input[name=instagram_post_gallery]:checked").val()&&(t="1");i=encodeURI(jQuery("#gallery_source").val());var r=jQuery("input[name=update_flag]:checked").val();a=encodeURI(jQuery("#autogallery_image_number").val())}jQuery("#bulk_embed").hide(),jQuery("#loading_div").show();var o=[],_={action:"addInstagramGallery",instagram_user:i,instagram_access_token:e,whole_post:t,autogallery_image_number:a,update_flag:r,async:!0};jQuery.post(bwg_ajax_url_nonce,_,function(e){if(0==e)return alert("Error: cannot get response from the server."),jQuery("#loading_div").hide(),s&&jQuery("#bulk_embed").show(),!1;var t=e.indexOf("WD_delimiter_start"),i=e.indexOf("WD_delimiter_end");if(-1==t||-1==i)return jQuery("#loading_div").hide(),s&&jQuery("#bulk_embed").show(),!1;if(e=e.substring(t+18,i),response_JSON=JSON.parse(e),response_JSON){if("error"==response_JSON[0])return alert("Error: "+JSON.parse(e)[1]),jQuery("#loading_div").hide(),s&&jQuery("#bulk_embed").show(),!1;for(var a=response_JSON.length,r=1;r<=a;r++)if(0!=response_JSON[a-r]){var _=response_JSON[a-r];o.push(_)}return bwg_add_image(o),s||(bwg_gallery_update_flag(),jQuery("#tr_instagram_gallery_add_button").hide()),jQuery("#loading_div").hide(),s&&jQuery(".opacity_bulk_embed").hide(),"ok"}return alert("There is some error. Cannot add Instagram gallery."),jQuery("#loading_div").hide(),s&&jQuery("#bulk_embed").show(),!1})}var bwg=0,isMobile=/android|webos|iphone|ipad|ipod|blackberry|iemobile|opera mini/i.test(navigator.userAgent.toLowerCase()),bwg_click=isMobile?"touchend":"click",bwg_slideshow_filmstrip_thumbnail_timer=!1;window.bwg_slideshow_filmstrip_thumb={};var bwg_params=[],bwg_params_ib=[],bwg_params_carousel=[];function bwg_remove_lazy_loader_icon(){1==bwg_objectsL10n.lazy_load&&jQuery("img.bwg_lazyload").Lazy({afterLoad:function(){jQuery(".lazy_loader").removeClass("lazy_loader")},onFinishedAll:function(){jQuery(".lazy_loader").removeClass("lazy_loader")}})}function bwg_main_ready(e){var t=e.data("bwg");bwg_remove_lazy_loader_icon(),0<e.find(".wd_error").length&&bwg_container_loaded(t);var i=e.find(".bwg-container");if("album"===e.data("is-album")&&i.hasClass("bwg-thumbnails"))var a="thumbnails";else a=e.data("gallery-type");switch(bwg_document_ready(e),a){case"thumbnails":case"thumbnails_masonry":case"album_compact_preview":case"album_masonry_preview":case"album_extended_preview":bwg_all_thumnails_loaded(i);break;case"thumbnails_mosaic":bwg_thumbnail_mosaic(i);break;case"slideshow":bwg_slideshow_ready(t);break;case"carousel":bwg_carousel_ready(t),bwg_carousel_onload(e);break;case"image_browser":bwg_image_browser_ready(e);break;case"blog_style":bwg_blog_style_ready(e)}}function bwg_resize_search_line(){jQuery(".search_line").each(function(){var e=jQuery(this);e.width()<410?e.addClass("bwg-search-line-responsive"):e.removeClass("bwg-search-line-responsive")})}function bwg_tags_button_section_visibility(){jQuery('div[id^="bwg_container1_"]').each(function(){var e=jQuery(this),t=e.find(".current_view").val(),i=e.find(".show_bottom_tag").val(),a=e.find(".bwg_tags_container_"+t+" .bwg_tag_button_view_container");if(a.length)var r=a[0].scrollHeight;var _=a.find(".bwg_tags_filter_buttons").outerHeight(!0),s=parseInt(2*a.find(".bwg_tags_filter_buttons").outerHeight(!0)+3);s<r?(a.css({"min-height":_,"max-height":s,overflow:"hidden"}),a.next(".bwg_tag_button_see_all").show()):(a.css({"min-height":"auto","max-height":"100%",height:"auto",overflow:"visible"}),a.next(".bwg_tag_button_see_all").hide());var o=a.next().find(".see_all_tags").width()/2;a.next().find(".see_all_tags").attr("style","margin-left: -"+o+"px"),a.next().find(".see_all_tags").off("click").on("click",function(){jQuery(this).hasClass("show")?(jQuery(this).removeClass("show").addClass("hide").html("<span>&#8722;</span>"+bwg_objectsL10n.bwg_tag_see_less),a.css({"min-height":"auto","max-height":"100%",height:"auto",overflow:"visible"})):jQuery(this).hasClass("hide")&&(jQuery(this).removeClass("hide").addClass("show").html("<span>&#43;</span>"+bwg_objectsL10n.bwg_tag_see_all),a.css({"min-height":_,"max-height":s,overflow:"hidden"}))}),1==i&&(jQuery(this).find(".see_all_tags").removeClass("show").addClass("hide").html("<span>&#8722;</span>"+bwg_objectsL10n.bwg_tag_see_less),a.css({"min-height":"auto","max-height":"100%",height:"auto",overflow:"visible"}))})}function bwg_slideshow_resize(){jQuery(".bwg_slideshow").each(function(){bwg=jQuery(this).attr("data-bwg"),jQuery("#bwg_slideshow_image_container_"+bwg).length&&(bwg_params[bwg]=JSON.parse(jQuery("#bwg_slideshow_image_container_"+bwg).attr("data-params")),bwg_params[bwg].event_stack=[],bwg_popup_resize(bwg))})}function bwg_blog_style_resize(){jQuery(".bwg_blog_style").each(function(){bwg=jQuery(this).attr("data-bwg"),jQuery(".bwg_embed_frame_16x9_"+bwg).each(function(e){jQuery(this).width(jQuery(this).parent().width()),jQuery(this).height(.5625*jQuery(this).width())}),jQuery(".bwg_embed_frame_instapost_"+bwg).each(function(e){jQuery(this).width(jQuery(this).parent().width()),jQuery(this).height((jQuery(this).width()-16)*jQuery(this).attr("data-height")/jQuery(this).attr("data-width")+96)})})}function bwg_blog_style_onload(){jQuery(".bwg_blog_style").each(function(){bwg=jQuery(this).attr("data-bwg");jQuery("#bwg_blog_style_"+bwg);jQuery(".bwg_embed_frame_16x9_"+bwg).each(function(e){if(jQuery(".bwg_blog_style_image_"+bwg).find(".fluid-width-video-wrapper").length){jQuery(".fluid-width-video-wrapper").removeAttr("style");var t=jQuery(this).parents(".bwg_blog_style_image_"+bwg).find(".fluid-width-video-wrapper").contents();jQuery(this).parents(".fluid-width-video-wrapper").replaceWith(t)}jQuery(this).width(jQuery(this).parents(".bwg_blog_style_image_"+bwg).width()),jQuery(this).height(.5625*jQuery(this).width())}),jQuery(".bwg_embed_frame_instapost_"+bwg).each(function(e){jQuery(this).width(jQuery(this).parents(".bwg_blog_style_image_"+bwg).width()),jQuery(this).height((jQuery(this).width()-16)*jQuery(this).attr("data-height")/jQuery(this).attr("data-width")+96)}),bwg_container_loaded(bwg)})}function bwg_blog_style_ready(t){var e=t.data("bwg");bwg_container_loaded(e);var i=!1;t.find(".bwg_lightbox_"+e).on("click",function(){var e=jQuery(this).attr("data-image-id");if(jQuery("#bwg_blog_style_share_buttons_"+e).removeAttr("data-open-comment"),!i)return i=!0,setTimeout(function(){i=!1},100),bwg_gallery_box(e,t.closest(".bwg_container")),!1}),jQuery(".bwg_lightbox_"+e+" .bwg_ecommerce").on("click",function(e){if(e.stopPropagation(),!i)return i=!0,setTimeout(function(){i=!1},100),bwg_gallery_box(t.attr("data-image-id"),t.closest(".bwg_container"),!0),!1});var a=window.location.hash.substring(1);a&&"-1"!=a.indexOf("bwg")&&(bwg_hash_array=a.replace("bwg","").split("/"),"<?php echo $params_array['gallery_id']; ?>"==bwg_hash_array[0]&&bwg_gallery_box(bwg_hash_array[1]))}function bwg_slideshow_focus(){jQuery(".bwg_slideshow").each(function(){bwg=jQuery(this).data("bwg"),jQuery(".bwg_slideshow[data-bwg="+bwg+"]")[0].offsetHeight&&jQuery("#bwg_slideshow_image_container_"+bwg).length&&(bwg_params[bwg]=JSON.parse(jQuery("#bwg_slideshow_image_container_"+bwg).attr("data-params")),bwg_params[bwg].event_stack=[],window.clearInterval(window["bwg_playInterval"+bwg]),jQuery(".bwg_ctrl_btn_"+bwg).hasClass("bwg-icon-play")||bwg_play(bwg_params[bwg].data,bwg))})}function bwg_carousel_focus(){jQuery(".bwg_carousel").each(function(){bwg=jQuery(this).data("bwg"),jQuery(".bwg_carousel[data-bwg="+bwg+"]")[0].offsetHeight&&jQuery(".bwg_carousel_image_container_"+bwg).length&&jQuery(".bwg_ctrl_btn_"+bwg).hasClass("bwg-icon-pause")&&bwg_params_carousel[bwg].carousel.start()})}function bwg_slideshow_blur(e){jQuery(".bwg_slideshow").each(function(){bwg=jQuery(this).data("bwg"),!e&&jQuery(".bwg_slideshow[data-bwg="+bwg+"]")[0].offsetHeight||jQuery("#bwg_slideshow_image_container_"+bwg).length&&(bwg_params[bwg]=JSON.parse(jQuery("#bwg_slideshow_image_container_"+bwg).attr("data-params")),bwg_params[bwg].event_stack=[],window.clearInterval(window["bwg_playInterval"+bwg]))})}function bwg_carousel_blur(e){jQuery(".bwg_carousel").each(function(){bwg=jQuery(this).data("bwg"),!e&&jQuery(".bwg_carousel[data-bwg="+bwg+"]")[0].offsetHeight||jQuery(".bwg_carousel_image_container_"+bwg).length&&void 0!==bwg_params_carousel[bwg]&&bwg_params_carousel[bwg].carousel.pause()})}function bwg_carousel_ready(t){bwg_params_carousel[t]=[],bwg_params_carousel[t].bwg_currentCenterNum=1,bwg_params_carousel[t].bwg_currentlyMoving=!1,bwg_params_carousel[t].data=[],jQuery("#spider_carousel_left-ico_"+t).on("click",function(e){bwg_params_carousel[t].carousel.prev(),e.stopPropagation(),e.stopImmediatePropagation()}),jQuery("#spider_carousel_right-ico_"+t).on("click",function(e){bwg_params_carousel[t].carousel.next(),e.stopPropagation(),e.stopImmediatePropagation()}),parseInt(bwg_params_carousel[t].carousel_enable_autoplay)&&(jQuery(".bwg_carousel_play_pause_"+t).attr("title",bwg_objectsL10n.pause),jQuery(".bwg_carousel_play_pause_"+t).attr("class","bwg-icon-pause bwg_ctrl_btn_"+t+" bwg_carousel_play_pause_"+t)),jQuery(".bwg_carousel_play_pause_"+t).on(bwg_click,function(e){jQuery(".bwg_ctrl_btn_"+t).hasClass("bwg-icon-play")?(jQuery(".bwg_carousel_play_pause_"+t).attr("title",bwg_objectsL10n.pause),jQuery(".bwg_carousel_play_pause_"+t).attr("class","bwg-icon-pause bwg_ctrl_btn_"+t+" bwg_carousel_play_pause_"+t),bwg_params_carousel[t].carousel.start()):(jQuery(".bwg_carousel_play_pause_"+t).attr("title",bwg_objectsL10n.play),jQuery(".bwg_carousel_play_pause_"+t).attr("class","bwg-icon-play bwg_ctrl_btn_"+t+" bwg_carousel_play_pause_"+t),bwg_params_carousel[t].carousel.pause()),e.stopPropagation(),e.stopImmediatePropagation()}),void 0!==jQuery().swiperight&&jQuery.isFunction(jQuery().swiperight)&&jQuery("#bwg_container1_"+t).swiperight(function(){bwg_params_carousel[t].carousel.prev()}),void 0!==jQuery().swipeleft&&jQuery.isFunction(jQuery().swipeleft)&&jQuery("#bwg_container1_"+t).swipeleft(function(){bwg_params_carousel[t].carousel.next()})}function bwg_carousel_resize(){jQuery(".bwg-carousel").each(function(){var e=jQuery(this).data("bwg");jQuery("#bwg_carousel-container"+e).length&&(bwg_carousel_params(e,!0),bwg_params_carousel[e].carousel.pause(),bwg_carousel_watermark(e),jQuery(".bwg_ctrl_btn_"+e).hasClass("bwg-icon-play")||bwg_params_carousel[e].carousel.start())})}function bwg_carousel_onload(e){var t=e.data("bwg"),i=e.find(".bwg_carousel-container"+t);i.length&&(bwg_params_carousel[t]=i.data("params"),bwg_params_carousel[t].parent_width=0,bwg_carousel_watermark(t),bwg_carousel_params(t,!1),bwg_container_loaded(t))}function bwg_carousel_params(t,e){var i=jQuery("#bwg_container1_"+t).parent();i.hasClass("elementor-tab-content")&&i.width(i.closest(".elementor-widget-wrap").width());var a=i.width(),r=1;a<bwg_params_carousel[t].carousel_r_width?r=a/bwg_params_carousel[t].carousel_r_width:a=bwg_params_carousel[t].carousel_r_width,bwg_params_carousel[t].parent_width!=a&&(bwg_params_carousel[t].parent_width=a,bwg_params_carousel[t].carousel_image_column_number>bwg_params_carousel[t].count&&(bwg_params_carousel[t].carousel_image_column_number=bwg_params_carousel[t].count),jQuery(".bwg_carousel_play_pause_"+t).css({display:parseInt(bwg_params_carousel[t].carousel_play_pause_butt)?"":"none"}),parseInt(bwg_params_carousel[t].carousel_prev_next_butt)?(jQuery("#bwg_carousel-right"+t).css({display:""}),jQuery("#bwg_carousel-left"+t).css({display:""})):(jQuery("#bwg_carousel-left"+t).css({display:"none"}),jQuery("#bwg_carousel-right"+t).css({display:"none"})),jQuery(".inner_instagram_iframe_bwg_embed_frame_"+t).each(function(){var e=jQuery(this).parent();bwg_params_carousel[t].image_height/(parseInt(e.attr("data-height"))+96)<bwg_params_carousel[t].image_width/parseInt(e.attr("data-width"))?(e.height(bwg_params_carousel[t].image_height*r),e.width((e.height()-96)*e.attr("data-width")/e.attr("data-height")+16)):(e.width(bwg_params_carousel[t].image_width*r),e.height((e.width()-16)*e.attr("data-height")/e.attr("data-width")+96))}),jQuery(".bwg_carousel_image_container_"+t).css({width:bwg_params_carousel[t].image_width*r,height:bwg_params_carousel[t].image_height*r}),jQuery(".bwg_carousel_watermark_text_"+t+", .bwg_carousel_watermark_text_"+t+":hover").css({fontSize:a*(bwg_params_carousel[t].watermark_font_size/bwg_params_carousel[t].image_width)*r}),jQuery(".bwg_carousel-image "+t).css({width:bwg_params_carousel[t].image_width*r,height:bwg_params_carousel[t].image_height*r}),jQuery(".bwg_carousel_watermark_container_"+t).css({width:bwg_params_carousel[t].image_width*r,height:bwg_params_carousel[t].image_height*r}),jQuery(".bwg_carousel_embed_video_"+t).css({width:bwg_params_carousel[t].image_width*r,height:bwg_params_carousel[t].image_height*r}),jQuery(".bwg_carousel_watermark_spun_"+t).css({width:bwg_params_carousel[t].image_width*r,height:bwg_params_carousel[t].image_height*r}),jQuery(".bwg_carousel-container"+t).css({width:a,height:bwg_params_carousel[t].image_height*r}),jQuery(".bwg_video_hide"+t).css({width:bwg_params_carousel[t].image_width*r,height:bwg_params_carousel[t].image_height*r}),bwg_params_carousel[t].carousel&&!e||(e&&bwg_params_carousel[t].carousel&&bwg_params_carousel[t].carousel.pause(),bwg_params_carousel[t].carousel=jQuery("#bwg_carousel"+t).featureCarousel({containerWidth:a*r,containerHeight:bwg_params_carousel[t].image_height*r,fit_containerWidth:bwg_params_carousel[t].carousel_fit_containerWidth,largeFeatureWidth:bwg_params_carousel[t].image_width*r,largeFeatureHeight:bwg_params_carousel[t].image_height*r,smallFeaturePar:bwg_params_carousel[t].carousel_image_par,currentlyMoving:!1,startingFeature:bwg_params_carousel[t].bwg_currentCenterNum,featuresArray:[],timeoutVar:null,rotationsRemaining:0,autoPlay:1e3*bwg_params_carousel[t].car_inter,interval:1e3*bwg_params_carousel[t].carousel_interval,imagecount:bwg_params_carousel[t].carousel_image_column_number,bwg_number:t,enable_image_title:bwg_params_carousel[t].enable_image_title,borderWidth:0})))}function bwg_carousel_watermark(e){var t=1,i=jQuery("#bwg_container1_"+e).parent().width();if(i<bwg_params_carousel[e].carousel_r_width&&(t=i/bwg_params_carousel[e].carousel_r_width),i>=bwg_params_carousel[e].image_width)bwg_carousel_change_watermark_container(e),jQuery("#bwg_carousel_play_pause-ico_"+e).css({fontSize:bwg_params_carousel[e].carousel_play_pause_btn_size}),jQuery(".bwg_carousel_watermark_image_"+e).css({maxWidth:bwg_params_carousel[e].watermark_width*t,maxHeight:bwg_params_carousel[e].watermark_height*t}),jQuery(".bwg_carousel_watermark_text_"+e+", .bwg_carousel_watermark_text_"+e+":hover").css({fontSize:t*bwg_params_carousel[e].watermark_font_size});else{var a=bwg_params_carousel[e].image_width/t;bwg_carousel_change_watermark_container(e),jQuery(".bwg_carousel_watermark_image_"+e).css({maxWidth:i*bwg_params_carousel[e].watermark_width/a,maxHeight:i*bwg_params_carousel[e].watermark_height/a}),jQuery(".bwg_carousel_watermark_text_"+e+", .bwg_carousel_watermark_text_"+e+":hover").css({fontSize:i*bwg_params_carousel[e].watermark_font_size/a})}}function bwg_carousel_change_watermark_container(a){jQuery(".bwg_carousel"+a).children().each(function(){if(2==jQuery(this).css("zIndex")){var e=jQuery(this).find("img");e.length||(e=jQuery(this).find("iframe"));var t=e.width(),i=e.height();jQuery(".bwg_carousel_watermark_spun_"+a).width(t),jQuery(".bwg_carousel_watermark_spun_"+a).height(i),jQuery(".bwg_carousel_title_spun_"+a).width(t),jQuery(".bwg_carouel_title_spun_"+a).height(i),jQuery(".bwg_carousel_watermark_"+a).css({display:"none"})}})}function bwg_carousel_preload(e,t){var i=jQuery(".bwg_carousel_preload").get();t||i.reverse();var a=0;jQuery(i).each(function(){if(1<++a)return!1;jQuery(this).parent().hasClass("bwg_carousel_embed_video_"+e)||jQuery(this).parent().hasClass("bwg_embed_frame_"+e)||jQuery(this).parent().hasClass("bwg_carousel_video")?(jQuery(this).attr("src",jQuery(this).attr("data-src")),jQuery(this).on("load",function(){jQuery(this).removeClass("bwg_carousel_preload")}),jQuery(this).parent().hasClass("bwg_carousel_video")&&(jQuery(".bwg_carousel_video")[0].load(),jQuery(this).parent().parent().removeClass("bwg_carousel_preload")),jQuery(this).removeAttr("data-src")):(jQuery(this).css({"background-image":"url('"+jQuery(this).attr("data-background")+"')",height:"100%"}),jQuery(this).removeClass("bwg_carousel_preload"),jQuery(this).removeAttr("data-background"))})}function bwg_slideshow_ready(i){if(jQuery("#bwg_slideshow_image_container_"+i).length){bwg_params[i]=JSON.parse(jQuery("#bwg_slideshow_image_container_"+i).attr("data-params")),bwg_params[i].event_stack=[];var e=".bwg_slideshow_filmstrip_"+i,t="bwg_slideshow_filmstrip_thumbnail_"+i;bwg_slideshow_filmstrip_thumb[t]={},bwg_slideshow_filmstrip_thumb[t].next_prev_index=0;var a=!1;2==bwg_params[i].slideshow_filmstrip_type&&(a=!0,e=".bwg_slideshow_filmstrip_fix_count_"+i),bwg_container_loaded(i);var r=bwg_params[i].data;void 0!==jQuery().swiperight&&jQuery.isFunction(jQuery().swiperight)&&jQuery("#bwg_container1_"+i).swiperight(function(){return bwg_change_image(parseInt(jQuery("#bwg_current_image_key_"+i).val()),0<=parseInt(jQuery("#bwg_current_image_key_"+i).val())-bwg_iterator(i)?(parseInt(jQuery("#bwg_current_image_key_"+i).val())-bwg_iterator(i))%r.length:r.length-1,r,"",i),!1}),void 0!==jQuery().swipeleft&&jQuery.isFunction(jQuery().swipeleft)&&jQuery("#bwg_container1_"+i).swipeleft(function(){return bwg_change_image(parseInt(jQuery("#bwg_current_image_key_"+i).val()),parseInt(jQuery("#bwg_current_image_key_"+i).val())+bwg_iterator(i)%r.length,r,"",i),!1});var _=/android|webos|iphone|ipad|ipod|blackberry|iemobile|opera mini/i.test(navigator.userAgent.toLowerCase())?"touchend":"click";bwg_popup_resize(i),jQuery(".bwg_slideshow_watermark_"+i).css({display:"none"}),jQuery(".bwg_slideshow_title_text_"+i).css({display:"none"}),jQuery(".bwg_slideshow_description_text_"+i).css({display:"none"}),setTimeout(function(){bwg_change_watermark_container(i)},500),1==bwg_params[i].slideshow_filmstrip_type&&("horizontal"==bwg_params[i].filmstrip_direction?jQuery(".bwg_slideshow_image_container_"+i).height(jQuery(".bwg_slideshow_image_wrap_"+i).height()-bwg_params[i].slideshow_filmstrip_height):jQuery(".bwg_slideshow_image_container_"+i).width(jQuery(".bwg_slideshow_image_wrap_"+i).width()-bwg_params[i].slideshow_filmstrip_width));var s=/Firefox/i.test(navigator.userAgent)?"DOMMouseScroll":"mousewheel";jQuery(e).bind(s,function(e){var t=window.event||e;return 0<((t=t.originalEvent?t.originalEvent:t).detail?-40*t.detail:t.wheelDelta)?jQuery(".bwg_slideshow_filmstrip_left_"+i).trigger("click"):jQuery(".bwg_slideshow_filmstrip_right_"+i).trigger("click"),!1});var o={bwg:i,params:bwg_params[i],slideshow_filmstrip_class_name:e};if(jQuery(".bwg_slideshow_filmstrip_right_"+i).on(_,function(){1==a?!1===bwg_slideshow_filmstrip_thumbnail_timer&&(bwg_slideshow_filmstrip_thumbnail_timer=!0,bwg_slideshow_filmstrip_next(o),setTimeout(function(){bwg_slideshow_filmstrip_thumbnail_timer=!1},505)):bwg_slideshow_filmstrip_next(o)}),jQuery(".bwg_slideshow_filmstrip_left_"+i).on(_,function(){1==a?!1===bwg_slideshow_filmstrip_thumbnail_timer&&(bwg_slideshow_filmstrip_thumbnail_timer=!0,bwg_slideshow_filmstrip_prev(o),setTimeout(function(){bwg_slideshow_filmstrip_thumbnail_timer=!1},505)):bwg_slideshow_filmstrip_prev(o)}),"width"==bwg_params[i].width_or_height?bwg_set_filmstrip_pos(jQuery(e).width(),i):bwg_set_filmstrip_pos(jQuery(e).height(),i),jQuery("#bwg_slideshow_play_pause_"+i).off(_).on(_,function(){jQuery(".bwg_ctrl_btn_"+i).hasClass("bwg-icon-play")?(bwg_play(bwg_params[i].data,i),jQuery(".bwg_slideshow_play_pause_"+i).attr("title",bwg_objectsL10n.pause),jQuery(".bwg_slideshow_play_pause_"+i).attr("class","bwg-icon-pause bwg_ctrl_btn_"+i+" bwg_slideshow_play_pause_"+i),1==bwg_params[i].enable_slideshow_music&&document.getElementById("bwg_audio_"+i).play()):(window.clearInterval(window["bwg_playInterval"+i]),jQuery(".bwg_slideshow_play_pause_"+i).attr("title","Play"),jQuery(".bwg_slideshow_play_pause_"+i).attr("class","bwg-icon-play bwg_ctrl_btn_"+i+" bwg_slideshow_play_pause_"+i),1==bwg_params[i].enable_slideshow_music&&document.getElementById("bwg_audio_"+i).pause())}),0!=bwg_params[i].enable_slideshow_autoplay&&(bwg_play(bwg_params[i].data,i),jQuery(".bwg_slideshow_play_pause_"+i).attr("title",bwg_objectsL10n.pause),jQuery(".bwg_slideshow_play_pause_"+i).attr("class","bwg-icon-pause bwg_ctrl_btn_"+i+" bwg_slideshow_play_pause_"+i),1==bwg_params[i].enable_slideshow_music&&jQuery("#bwg_audio_"+i).length&&document.getElementById("bwg_audio_"+i).play()),bwg_params[i].preload_images&&bwg_preload_images(parseInt(jQuery("#bwg_current_image_key_".$bwg).val()),i),jQuery(".bwg_slideshow_image_"+i).removeAttr("width"),jQuery(".bwg_slideshow_image_"+i).removeAttr("height"),"undefined"!=typeof instgrm&&void 0!==instgrm.Embeds){var l=jQuery("#instagram-embed-"+i),n=jQuery(".bwg_embed_frame_"+i).data("height");l.hide(),instgrm.Embeds.process(),l.css({"max-height":n+"px"}).show()}}}function bwg_image_browser_resize(){jQuery(".bwg_image_browser").each(function(){var e=jQuery(this).attr("data-bwg");jQuery(".image_browser_images_conteiner_"+e).length&&(bwg_params_ib[e]=JSON.parse(jQuery("#bwg_container1_"+e+" .image_browser_images_conteiner_"+e).attr("data-params")),bwg_image_browser(e))})}function bwg_image_browser_ready(e){var t=e.data("bwg");bwg_container_loaded(t),jQuery(".image_browser_images_conteiner_"+t).length&&(bwg_params_ib[t]=JSON.parse(jQuery(".image_browser_images_conteiner_"+t).attr("data-params")),setTimeout(function(){bwg_image_browser(t)},3))}function bwg_search_focus(e){jQuery(e).parent().find(".bwg_search_input").focus(),jQuery(e).hide()}function bwg_key_press(e){jQuery(e).parent().find(".bwg_search_reset_container").removeClass("bwg-hidden"),jQuery(e).parent().find(".bwg_search_loupe_container1").removeClass("bwg-hidden")}function bwg_all_thumnails_loaded(t){var i=0,a=jQuery(t).find("img").length;return 0==a?bwg_all_thumbnails_loaded_callback(t):jQuery(t).find("img").each(function(){var e=jQuery(this).attr("src");jQuery("<img/>").attr("src",e).on("load error",function(){++i>=a&&bwg_all_thumbnails_loaded_callback(t)})}),jQuery(".bwg_container").each(function(){var e=jQuery(this).data("bwg");0<jQuery(this).find(".wd_error").length&&bwg_container_loaded(e)}),0==a}function bwg_all_thumbnails_loaded_callback(e){jQuery(e).hasClass("bwg-thumbnails")&&!jQuery(e).hasClass("bwg-masonry-thumbnails")&&bwg_thumbnail(e),jQuery(e).hasClass("bwg-masonry-thumbnails")&&bwg_thumbnail_masonry(e),jQuery(e).hasClass("bwg-album-extended")&&bwg_album_extended(e)}function bwg_album_thumbnail(e){bwg_container_loaded(jQuery(e).data("bwg"))}function bwg_album_extended(e){var t=jQuery(e).width(),i=jQuery(e).data("thumbnail-width"),a=jQuery(e).data("spacing"),r=jQuery(e).data("max-count"),_=parseInt(t/(2*i));_<1&&(_=1),r<_&&(_=r);var s=100/_,o=jQuery(e).find(".bwg-extended-item"),l=parseInt(o.css("margin-left")),n=parseInt(o.css("margin-right"));o.css({width:"calc("+s+"% - "+(l+n)+"px)"}),o.width()<i?o.find(".bwg-extended-item0, .bwg-extended-item1").css({width:"calc(100% - "+a+"px)"}):o.width()>2*i?(o.find(".bwg-extended-item0").css({width:"calc(50% - "+a+"px)"}),o.find(".bwg-extended-item1").css({width:"calc(100% - "+(i+2*a)+"px)"})):o.find(".bwg-extended-item0, .bwg-extended-item1").css({width:"calc(50% - "+a+"px)"}),jQuery(e).children(".bwg-extended-item").each(function(){var e=jQuery(this).find("img"),t=jQuery(this).find(".bwg-item0"),i=jQuery(this).find(".bwg-item2"),a=e.data("width"),r=e.data("height");""!=a&&""!=r||(a=e.width(),r=e.height());var _=a/r;i.width()/i.height()>a/r?(i.width()>a?e.css({width:"100%",height:i.width()/_}):e.css({maxWidth:"100%",height:i.width()/_}),a=i.width(),r=i.width()/_):(i.height()>r?e.css({height:"100%",width:i.height()*_,maxWidth:"initial"}):e.css({maxHeight:"100%",width:i.height()*_,maxWidth:"initial"}),r=i.height(),a=i.height()*_),jQuery(this).find(".bwg-item2").css({marginLeft:(t.width()-a)/2,marginTop:(t.height()-r)/2})}),bwg_container_loaded(jQuery(e).data("bwg"))}function bwg_thumbnail(e){var t=jQuery(e).width(),i=jQuery(e).data("thumbnail-width"),a=jQuery(e).data("max-count"),r=parseInt(t/i)+1;a<r&&(r=a);var _=100/r;jQuery(e).find(".bwg-item").css({width:_+"%"}),jQuery(e).children(".bwg-item").each(function(){var e=jQuery(this).find("img"),t=jQuery(this).find(".bwg-item2"),i=jQuery(this).find(".bwg-item1"),a=0<t.width()?t.width():i.width(),r=0<t.height()?t.height():i.height(),_=e.data("width"),s=e.data("height");""!=_&&""!=s&&void 0!==_&&void 0!==s||(_=e.width(),s=e.height());var o=_/s;e.removeAttr("style"),o<a/r?(_<a?e.css({width:"100%",height:a/o}):e.css({maxWidth:"100%",height:Math.ceil(a/o)}),s=(_=a)/o):(r>e.height()?e.css({height:"100%",width:r*o,maxWidth:"initial"}):e.css({maxHeight:"100%",width:r*o,maxWidth:"initial"}),_=(s=r)*o),jQuery(this).find(".bwg-item2").css({marginLeft:(a-_)/2,marginTop:(r-s)/2})}),bwg_container_loaded(jQuery(e).data("bwg"))}function bwg_thumbnail_masonry(e){var t="#bwg_thumbnails_masonry_"+(bwg=jQuery(e).attr("data-bwg"));jQuery("#bwg_album_masonry_"+bwg).length&&(t="#bwg_album_masonry_"+bwg),0===jQuery(".bwg-container-temp"+bwg).length&&(jQuery(t).clone().appendTo("#bwg_container3_"+bwg).removeAttr("id").removeClass("bwg-container-"+bwg).addClass("bwg-container-temp"+bwg),jQuery(".bwg-container-temp"+bwg).empty());var a=jQuery(".bwg-container-temp"+bwg),r=jQuery(t),_=a;if(a.prepend(r.html()),_.find(".bwg-empty-item").remove(),"horizontal"==_.data("masonry-type")){var s=_.data("thumbnail-height"),o=_.data("max-count"),l=[];for(i=0;i<o;i++)l.push(0);_.find(".bwg-item").each(function(){var e=l.indexOf(Math.min.apply(Math,l));jQuery(this).css({height:s,order:e+1}),l[e]+=jQuery(this)[0].getBoundingClientRect().width});var n=Math.max.apply(Math,l);for(_.width(n),i=0;i<o;i++)l[i]<n&&_.append(jQuery('<div class="bwg-item bwg-empty-item"></div>').css({height:s,order:i+1,width:n-l[i]}))}else{_.removeAttr("style");n=_.width();var g=_.data("thumbnail-width"),w=_.data("thumbnail-border"),b=(_.data("thumbnail-padding"),o=_.data("max-count"),parseInt(n/g)+("0"==_.data("resizable-thumbnails")?0:1));o<b&&(b=o);var u=_.find(".bwg-item").length;u<b&&(b=u);var d,h,m=100/b,c=[];for(i=0;i<b;i++)c.push(0);_.find(".bwg-item").each(function(){var e=c.indexOf(Math.min.apply(Math,c)),t=jQuery(this).find("img");if(jQuery(this).css({width:m+"%",order:e+1}),void 0!==t.data("src")&&-1===t.data("src").indexOf("svg")&&0<t.attr("data-width").length&&0<t.attr("data-height").length){h=parseInt(t.data("width"))/parseInt(t.data("height")),d=t.width()/h;var i=(this.querySelector("a .bwg-zoom-effect-overlay .bwg-title2")||!this.querySelector("a .bwg-title1 .bwg-title2")?0:this.querySelector("a .bwg-title1 .bwg-title2").getClientRects()[0].height)+(0<jQuery(this).find(".bwg-masonry-thumb-description").length?jQuery(this).find(".bwg-masonry-thumb-description").height():0);jQuery(this).height(Math.floor(d+i+2*w))}c[e]+=jQuery(this)[0].getBoundingClientRect().height});var p=Math.max.apply(Math,c);for(i=0;i<b;i++)c[i]<p&&_.append(jQuery('<div class="bwg-item bwg-empty-item"></div>').css({width:m+"%",order:i+1,height:p-c[i]}));_.outerWidth(b*(g+2*w)),_.height(p)}if(""!=a.html()){r.outerWidth(b*(g+2*w)),"0"!=p?(r.css("opacity","1"),r.height(p)):r.css("opacity","0"),r.empty();var y=a.html();r.append(y),r.find(".bwg_lazyload").each(function(){null!=jQuery(this).data("src")&&""!=jQuery(this).data("src")&&(jQuery(this).attr("src",jQuery(this).data("src")),jQuery(this).on("load",function(){jQuery(this).removeClass("lazy_loader")}))}),a.empty().hide()}bwg_container_loaded(_.data("bwg"))}function bwg_container_loaded(e){jQuery("#gal_front_form_"+e).removeClass("bwg-hidden"),jQuery("#ajax_loading_"+e).addClass("bwg-hidden"),jQuery(".bwg_container img").removeAttr("width").removeAttr("height")}function bwg_thumbnail_mosaic_logic(e){var t=e.attr("data-bwg"),i=e.attr("data-block-id"),a=parseInt(e.attr("data-thumb-padding"))/2,r=parseInt(e.attr("data-thumb-border"))+a;if("horizontal"==e.attr("data-mosaic-direction")){var _=parseInt(e.attr("data-height"));if("1"==e.attr("data-resizable"))if(1920<=jQuery(window).width())var s=(1+jQuery(window).width()/1920)*_;else if(jQuery(window).width()<=640)s=jQuery(window).width()/640*_;else s=_;else s=_;(p=jQuery(".bwg_mosaic_thumb_"+t)).each(function(e){var t=jQuery(this).data("width"),i=jQuery(this).data("height");""!=t&&""!=i&&void 0!==t&&void 0!==i||(t=p.get(e).naturalWidth,i=p.get(e).naturalHeight),t=t*s/i,p.eq(e).height(s),p.eq(e).width(t)});var o=jQuery("#bwg_mosaic_thumbnails_div_"+t).width()/100*parseInt(e.attr("data-total-width"));jQuery("#"+i).width(o);var l=s+2*r,n=0,g=[];g[0]=0;var w=[],b=w[0]=0;p.each(function(e){row_cum_width2=b+p.eq(e).width()+2*r,row_cum_width2-o<0?(b=row_cum_width2,g[e]=n,w[n]++):e!==p.length-1?Math.abs(b-o)>Math.abs(row_cum_width2-o)||Math.abs(b-o)<=Math.abs(row_cum_width2-o)&&0==w[n]?e!==p.length-2?(b=row_cum_width2,g[e]=n,w[n]++,w[++n]=0,b=0):(b=row_cum_width2,g[e]=n,w[n]++):(w[++n]=1,g[e]=n,b=row_cum_width2-b):(b=row_cum_width2,g[e]=n,w[n]++)});for(var u=[],d=[],h=0;h<=n;h++)b=0,p.each(function(e){g[e]==h&&(b+=p.eq(e).width())}),u[h]=z=(o-2*w[h]*r)/b,d[h]=(l-2*r)*u[h]+2*r;if(0==n)for(h=0;h<=n;h++)d[h]>s&&(u[h]=1,d[h]=l);(O=[])[0]=0;var m=[],c=[];m[0]=0,c[0]=0;for(h=1;h<=n;h++)m[h]=m[0],c[h]=c[h-1]+d[h-1];p.each(function(e){var t=p.eq(e).width(),i=p.eq(e).height();p.eq(e).width(t*u[g[e]]),p.eq(e).height(i*u[g[e]]),p.eq(e).parent().css({top:c[g[e]],left:m[g[e]]}),m[g[e]]+=t*u[g[e]]+2*r,O[g[e]]=e}),jQuery("#"+i).height(c[n]+d[n]-c[0])}else{var p,y=parseInt(e.attr("data-width"));if("1"==e.attr("data-resizable")){if(1920<=jQuery(window).width())var f=(1+jQuery(window).width()/1920)*y;else if(jQuery(window).width()<=640)f=jQuery(window).width()/640*y;else f=y;if(0<jQuery(".header-content-with_tab").length)f=jQuery(".header-content-with_tab").width()/4-10}else f=y;(p=jQuery(".bwg_mosaic_thumb_"+t)).each(function(e){jQuery(this).removeAttr("style"),jQuery(this).parent().removeAttr("style");var t=jQuery(this).data("width"),i=jQuery(this).data("height");""!=t&&""!=i&&void 0!==t&&void 0!==i||(t=p.get(e).naturalWidth,i=p.get(e).naturalHeight),p.eq(e).height(i*f/t),p.eq(e).width(f)});o=jQuery("#bwg_mosaic_thumbnails_div_"+t).width()/100*parseInt(e.attr("data-total-width"));jQuery("#"+i).width(o);var j=f+2*r<o?f:o-2*r,Q=Math.min(Math.floor(o/(j+2*r)),p.length),v=[];v[0]=0;for(var x=[],k=[],z=0;z<Q;z++)k[z]=0,x[z]=0;p.each(function(e){for(var t=0,i=k[0],a=0;a<Q;a++)i>k[a]&&(i=k[a],t=a);v[e]=t,x[t]++,H=i,T=0+t*(j+2*r),p.eq(e).parent().css({top:H,left:T}),k[t]+=p.eq(e).height()+2*r}),(u=[])[0]=1;var C=0,I=[],E=0,M=0;for(z=0;z<Q;z++)C+=j,I[z]=0,p.each(function(e){v[e]==z&&(I[z]+=p.eq(e).height())}),0!=I[z]&&(E+=j/I[z],M+=j*x[z]*2*r/I[z]);var S=0;0!=E&&(S=(C+M)/E);for(z=0;z<Q;z++)0!=I[z]&&(u[z]=(S-2*x[z]*r)/I[z]);var O,T=[];T[0]=0;for(z=1;z<=Q;z++)T[z]=T[z-1]+j*u[z-1]+2*r;var H=[];for(z=0;z<Q;z++)H[z]=0;(O=[])[0]=0,p.each(function(e){var t=p.eq(e).width(),i=p.eq(e).height();p.eq(e).width(t*u[v[e]]),p.eq(e).height(i*u[v[e]]),p.eq(e).parent().css({top:H[v[e]],left:T[v[e]]}),H[v[e]]+=i*u[v[e]]+2*r,O[v[e]]=e}),jQuery("#"+i).width(T[Q]).height(H[0])}}function bwg_thumbnail_mosaic(e){var t=jQuery(e),i=jQuery.Deferred();if(i.done([bwg_thumbnail_mosaic_logic]).done(function(e){"1"!=e.data("mosaic-thumb-transition")&&jQuery(".bwg_mosaic_thumb_spun_"+t).css({transition:"all 0.3s ease 0s","-webkit-transition":"all 0.3s ease 0s"});var t=e.data("bwg");jQuery(".bwg_mosaic_thumbnails_"+t).css({visibility:"visible"}),jQuery(".tablenav-pages_"+t).css({visibility:"visible"}),bwg_container_loaded(t),jQuery(".bwg_mosaic_thumb_"+t).removeClass("bwg-hidden"),jQuery("#bwg_mosaic_thumbnails_div_"+t).removeClass("bwg-hidden")}),i.resolve(t),"hover"==t.attr("data-image-title")){var a=parseInt(t.attr("data-thumb-padding"))/2,r=parseInt(t.attr("data-thumb-border"))+a;bwg_mosaic_title_on_hover(t.data("bwg"),t,r)}"hover"==t.attr("data-ecommerce-icon")&&(jQuery(".bwg_mosaic_thumb_spun_"+bwg).on("mouseenter",function(){var e=jQuery(this).parents(".bwg-mosaic-thumb-span").children(".bwg_mosaic_thumb_"+bwg).width(),t=jQuery(this).parents(".bwg-mosaic-thumb-span").children(".bwg_mosaic_thumb_"+bwg).height();jQuery(this).children(".bwg_ecommerce_spun1_"+bwg).width(e);var i=jQuery(this).children(".bwg_ecommerce_spun1_"+bwg).width(),a=jQuery(this).children(".bwg_ecommerce_spun1_"+bwg).height();jQuery(this).children(".bwg_ecommerce_spun1_"+bwg).css({top:r+.5*t-.5*a,left:r+.5*e-.5*i,opacity:1})}),jQuery(".bwg_mosaic_thumb_spun_"+bwg).on("mouseleave",function(){jQuery(this).children(".bwg_ecommerce_spun1_"+bwg).css({top:0,left:-1e4,opacity:0,padding:t.attr("data-title-margin")})}))}function bwg_mosaic_title_on_hover(t,e,i){jQuery(".bwg-mosaic-thumb-span").on("mouseenter",function(){var e=jQuery(this).children(".bwg_mosaic_thumb_"+t).width();jQuery(this).find(".bwg_mosaic_title_spun1_"+t).width(e),jQuery(this).find(".bwg_mosaic_title_spun1_"+t).css({opacity:1,"max-height":"calc(100% - "+2*i+"px)",overflow:"hidden"})}),jQuery(".bwg-mosaic-thumb-span").on("mouseleave",function(){jQuery(this).find(".bwg_mosaic_title_spun1_"+t).css({opacity:0,padding:e.attr("data-title-margin"),"max-height":"calc(100% - "+2*i+"px)",overflow:"hidden"})})}function bwg_mosaic_ajax(e,t){var i=0;jQuery(".bwg_mosaic_thumb_spun_"+e+" img").on("load",function(){++i>=t&&bwg_thumbnail_mosaic(jQuery(".bwg-mosaic-thumbnails[data-bwg="+e+"]"))}),jQuery(".bwg_mosaic_thumb_spun_"+e+" img").on("error",function(){jQuery(this).height(100),jQuery(this).width(100),++i>=t&&bwg_thumbnail_mosaic(jQuery(".bwg-mosaic-thumbnails[data-bwg="+e+"]"))}),jQuery(".bwg_container").each(function(){var e=jQuery(this).data("bwg");0<jQuery(this).find(".wd_error").length&&bwg_container_loaded(e)})}function bwg_add_album(){var t=!1;"1"!=bwg_objectsL10n.front_ajax&&jQuery(document).off("click",".bwg-album").on("click",".bwg-album",function(){if(!t){var e=jQuery(this).attr("data-bwg");return t=!0,setTimeout(function(){t=!1},100),bwg_ajax("gal_front_form_"+e,e,jQuery(this).attr("data-container_id"),jQuery(this).attr("data-alb_gal_id"),jQuery(this).attr("data-album_gallery_id"),jQuery(this).attr("data-def_type"),"",jQuery(this).attr("data-title")),!1}}),jQuery(".bwg_description_more").on("click",function(){jQuery(this).hasClass("bwg_more")?(jQuery(this).parent().find(".bwg_description_full").show(),jQuery(this).addClass("bwg_hide").removeClass("bwg_more"),jQuery(this).html(jQuery(this).data("hide-msg"))):(jQuery(this).parent().find(".bwg_description_full").hide(),jQuery(this).addClass("bwg_more").removeClass("bwg_hide"),jQuery(this).html(jQuery(this).data("more-msg")))})}function bwg_add_lightbox(){var i=!1;jQuery(document).on("click",".bwg_lightbox .bwg-item0, .bwg_lightbox .bwg_slide, .bwg_lightbox .bwg-carousel-image, .bwg_lightbox .bwg-title1",function(e){e.stopPropagation(),e.preventDefault();var t=jQuery(this).closest("a");if(!i)return i=!0,setTimeout(function(){i=!1},100),bwg_gallery_box(jQuery(t).attr("data-image-id"),jQuery(t).closest(".bwg_container")),!1}),jQuery(".bwg_lightbox .bwg_ecommerce").on("click",function(e){if(e.stopPropagation(),!i)return i=!0,setTimeout(function(){i=!1},100),bwg_gallery_box(jQuery(this).closest(".bwg_lightbox").attr("data-image-id"),jQuery(this).closest(".bwg_container"),!0),!1})}function bwg_filter_by_tag(e){var t,i="",a="",r=(a=jQuery(e).parent().parent().hasClass("bwg_tag_buttons_view")?jQuery(e).parent().parent():jQuery(e).parent().parent().parent()).find(".current_view").val(),_=a.find(".form_id").val(),s=a.find(".cur_gal_id").val(),o=a.find(".album_gallery_id").val(),l=a.find(".type").val();jQuery(e).parent().find(".opt.selected").each(function(){i=i+jQuery(e).text()+","}),""==(i=i.slice(0,-1))&&(i=bwg_objectsL10n.bwg_select_tag),jQuery(e).parent().find(".CaptionCont").attr("title",i),jQuery(e).parent().find(".CaptionCont .placeholder").html(i);var n=jQuery(".bwg_tags_container_"+r+" #bwg_tag_id_"+s).val();t="string"==typeof n&&""!==n?n.split(","):[],"object"==typeof n&&(t=n),jQuery(".bwg_tags_container_"+r+" #bwg_tag_id_"+r).val(t),bwg_select_tag(r,_,s,o,l,!1)}function bwg_document_ready(i){bwg_add_lightbox(),i.data("right-click-protection")&&bwg_disable_right_click(i),jQuery(".SumoSelect > .CaptionCont > label > i").addClass("bwg-icon-angle-down closed");var e=i.find(".search_tags");if("1"==bwg_objectsL10n.front_ajax&&e.length)for(var t=0;t<e[0].length;t++)void 0===e[0][t].attributes.selected&&(e[0][t].selected=!1);e.length&&(e.SumoSelect({triggerChangeCombined:!0,placeholder:bwg_objectsL10n.bwg_select_tag,search:!0,searchText:bwg_objectsL10n.bwg_search,forceCustomRendering:!0,noMatch:bwg_objectsL10n.bwg_tag_no_match,captionFormatAllSelected:bwg_objectsL10n.bwg_all_tags_selected,captionFormat:"{0} "+bwg_objectsL10n.bwg_tags_selected,okCancelInMulti:!0,locale:[bwg_objectsL10n.ok,bwg_objectsL10n.cancel,bwg_objectsL10n.select_all]}),e.off("change").on("change",function(){bwg_filter_by_tag(this)})),bwg_search_tag_init(i);var a=i.find(".cur_gal_id").val(),r=i.find(".current_view").val(),_=i.find(".bwg_tags_container_"+r+" .bwg_tag_button_view_container"),s=i.find("#bwg_tag_id_"+a),o=parseInt(2*_.find(".bwg_tags_filter_buttons").outerHeight(!0));_.length&&(_.find(".bwg_tags_filter_buttons").off("click").on("click",function(){if(!jQuery(this).hasClass("active")){var e=jQuery(this).position().top;o<e&&i.find(".show_bottom_tag").val("1"),""==s.val()?s.val(jQuery(this).val()):s.val(s.val()+","+jQuery(this).val()),bwg_filter_by_tag(this)}return!1}),_.find(".bwg_all_tags").off("click").on("click",function(){return jQuery(this).hasClass("active")||(s.val(""),bwg_filter_by_tag(this)),!1}),""!=s.val()&&_.find(".bwg_all_tags").removeClass("active"),s.val().split(",").forEach(function(t){_.find(".bwg_tags_filter_buttons").each(function(){if(jQuery(this).val()==t){var e=jQuery(this).position().top;o<e&&i.find(".show_bottom_tag").val("1")}})}),bwg_tags_button_section_visibility());var l=i.find(".bwg_order");l.length&&l.SumoSelect({triggerChangeCombined:!0,forceCustomRendering:!0}),jQuery(this).find("search_placeholder_title").hide(),""==jQuery(this).find(".bwg_search_input").val()&&jQuery(this).find("search_placeholder_title").show(),jQuery(".bwg_thumbnail .bwg_search_container_2").focusout(function(e){""==jQuery(this).find(".bwg_search_input").val()&&(jQuery(this).find(".search_placeholder_title").show(),jQuery(this).find(".bwg_search_loupe_container1").addClass("bwg-hidden"),jQuery(this).find(".bwg_search_reset_container").addClass("bwg-hidden"))}),jQuery(".search_tags").on("sumo:opened",function(){var e=jQuery(this).parents(".bwg_container").height(),t=jQuery(this).parents(".bwg_container").find(".wd_error").length,i=jQuery(this).parents(".bwg_container").find(".SumoSelect>.optWrapper>.options");void 0!==i&&(e-50<i.height()&&!t&&i.css("max-height",e-50));0==jQuery(this).parent().find("ul li").length&&(jQuery(".no-match").html(bwg_objectsL10n.bwg_tag_no_match),jQuery(".no-match").show())}),jQuery(".bwg_thumbnail .SumoSelect").on("sumo:closed",function(){jQuery(this).find("label i").removeClass("bwg-icon-angle-up opened"),jQuery(this).find("label i").addClass("bwg-icon-angle-down closed")}),jQuery(".bwg_thumbnail .SumoSelect").on("sumo:opened",function(){jQuery(this).find("label i").removeClass("bwg-icon-angle-down closed"),jQuery(this).find("label i").addClass("bwg-icon-angle-up opened")}),bwg_add_album();var n=window.location.hash.substring(1);if(n&&"-1"!=n.indexOf("bwg")){bwg_hash_array=n.replace("bwg","").split("/");var g=jQuery(".bwg_container");g&&bwg_gallery_box(bwg_hash_array[1],g,!1,bwg_hash_array[0])}bwg_resize_search_line()}function bwg_search_tag_init(e){jQuery(".SumoSelect > .CaptionCont > label > i").addClass("bwg-icon-angle-down closed");var t=e.find(".search_tags");if("1"==bwg_objectsL10n.front_ajax&&t.length)for(var i=0;i<t[0].length;i++)void 0===t[0][i].attributes.selected&&(t[0][i].selected=!1);t.length&&(t.SumoSelect({triggerChangeCombined:!0,placeholder:bwg_objectsL10n.bwg_select_tag,search:!0,searchText:bwg_objectsL10n.bwg_search,forceCustomRendering:!0,noMatch:bwg_objectsL10n.bwg_tag_no_match,captionFormatAllSelected:bwg_objectsL10n.bwg_all_tags_selected,captionFormat:"{0} "+bwg_objectsL10n.bwg_tags_selected,okCancelInMulti:!0,locale:[bwg_objectsL10n.ok,bwg_objectsL10n.cancel,bwg_objectsL10n.select_all]}),t.off("change").on("change",function(){bwg_filter_by_tag(this)}))}function bwg_clear_search_input(e){if("1"!=bwg_objectsL10n.front_ajax)jQuery("#bwg_search_input_"+e).val(""),jQuery("#bwg_search_container_1_"+e+" .bwg_search_loupe_container1").addClass("bwg-hidden"),jQuery("#bwg_search_container_1_"+e+" .bwg_search_reset_container").addClass("bwg-hidden");else{var t=window.location.href,i=bwg_remove_url_parameter("bwg_search_"+e,t,t);window.location.replace(i)}}function bwg_check_search_input_enter(e,t){return"Enter"!=t.key||(jQuery(e).closest(".bwg_search_container_1").find(".bwg_search").trigger("click"),!1)}function bwg_ajax(t,i,a,r,e,_,s,o,l,n,g,w){if("1"!=bwg_objectsL10n.front_ajax||!0===n){jQuery("#ajax_loading_"+i).removeClass("bwg-hidden"),jQuery(".bwg_load_more_ajax_loading").css({top:jQuery("#bwg_container1_"+bwg).height()-jQuery(".bwg_load_more_ajax_loading").height()}),"function"==typeof bwg_scroll_load_action&&jQuery(window).off("scroll",bwg_scroll_load_action),jQuery(".bwg_thumbnail .search_tags").off("sumo:closed");var b=jQuery("#"+t).data("ajax-url"),u=0;if(void 0===n)n=!1;var d,h=jQuery("#page_number_"+i).val(),m=jQuery("#bwg_search_input_"+i).val(),c={},p=jQuery("#bwg_album_breadcrumb_"+i).val();if(p&&!0!==n){var y=JSON.parse(p);if("back"==r){y.splice(-1,1);var f=y.slice(-1)[0];r=f.id,h=f.page,c["action_"+i]="back"}else"numeric"===n||s?(y.splice(-1,1),y.push({id:r,page:h,search:m})):(y.push({id:r,page:1}),h=1);c["bwg_album_breadcrumb_"+i]=JSON.stringify(y)}if(c["bwg-preview-type"]=jQuery("#"+t).data("gallery-type"),c.gallery_type=jQuery("#"+t).data("gallery-type"),c.gallery_id=jQuery("#"+t).data("gallery-id"),c.tag=jQuery("#"+t).data("tag"),c.album_id=jQuery("#"+t).data("album-id"),c.theme_id=jQuery("#"+t).data("theme-id"),c.shortcode_id=jQuery("#"+t).data("shortcode-id"),c.bwg=i,c.current_url=encodeURI(jQuery("#bwg_container1_"+i).data("current-url")),s&&(h=1),void 0===o||""==o)o="";if(void 0===g||""==g)g="";if(void 0===l||""==l)l=jQuery(".bwg_order_"+i).val();if(void 0===w)w=!0;if(1==w&&jQuery("html, body").animate({scrollTop:jQuery("#"+t).offset().top-150},500),c["page_number_"+i]=h,c["bwg_load_more_"+i]=jQuery("#bwg_load_more_"+i).val(),c["album_gallery_id_"+i]=r,c["type_"+i]=_,c["title_"+i]=o,c["description_"+i]=g,c["sortImagesByValue_"+i]=l,c["bwg_random_seed_"+i]=jQuery("#bwg_random_seed_"+i).val(),0<jQuery("#bwg_search_input_"+i).length&&(c["bwg_search_"+i]=jQuery("#bwg_search_input_"+i).val()),void 0!==c["bwg_album_breadcrumb_"+i]){var j=JSON.parse(c["bwg_album_breadcrumb_"+i]);jQuery.each(j,function(e,t){c["bwg_search_"+i]="",r==t.id&&(c["bwg_search_"+i]=t.search)})}var Q=jQuery(".bwg_tags_container_"+i+" #bwg_tag_id_"+a).val();return d="string"==typeof Q&&""!==Q?Q.split(","):[],"object"==typeof Q&&(d=Q),c["bwg_tag_id_"+a]=d,jQuery("#ajax_loading_"+i).removeClass("bwg-hidden"),jQuery(".bwg_load_more_ajax_loading").css({top:jQuery("#bwg_container1_"+bwg).height()-jQuery(".bwg_load_more_ajax_loading").height()}),jQuery.ajax({type:"POST",url:b,data:c,success:function(e){jQuery(e).find(".bwg_masonry_thumb_spun_"+i+" img").length,u=jQuery(e).find(".bwg_mosaic_thumb_spun_"+i+" img").length,!0===n?(a=="bwg_thumbnails_mosaic_"+i?jQuery("#"+a).append(jQuery(e).closest(".bwg-container-"+i).find("#"+a).html()):a=="bwg_album_compact_"+i?jQuery("#"+a).append(jQuery(e).closest(".bwg-album-thumbnails").html()):a=="bwg_thumbnails_masonry_"+i?jQuery(".bwg-container-temp"+i).append(jQuery(e).closest(".bwg-container-"+i).html()):jQuery("#"+a).append(jQuery(e).closest(".bwg-container-"+i).html()),jQuery(".bwg_nav_cont_"+i).html(jQuery(e).closest(".bwg_nav_cont_"+i).html())):jQuery("#bwg_container3_"+i).html(e),bwg_remove_lazy_loader_icon()},complete:function(){jQuery("div[id^='bwg_container1_'] img").each(function(){null!=jQuery(this).attr("data-lazy-src")&&""!=jQuery(this).attr("data-lazy-src")?jQuery(this).attr("src",jQuery(this).attr("data-lazy-src")):null!=jQuery(this).attr("data-src")&&""!=jQuery(this).attr("data-src")&&jQuery(this).attr("src",jQuery(this).attr("data-src"))}),jQuery(".blog_style_image_buttons_conteiner_"+i).find(jQuery(".bwg_blog_style_img_"+i)).on("load",function(){jQuery(".bwg_blog_style_img_"+i).closest(jQuery(".blog_style_image_buttons_conteiner_"+i)).show()}),""==d&&(d=[]),jQuery(".bwg_tags_container_"+i+" #bwg_tag_id_"+a).val(d),d.forEach(function(t){jQuery(".bwg_tags_container_"+i+" .bwg_tags_filter_buttons").each(function(){var e=parseInt(2*jQuery(this).outerHeight(!0));jQuery(this).val()==t&&(jQuery(this).addClass("active"),e<jQuery(this).position().top&&jQuery(".bwg_tags_container_"+i+" .show_bottom_tag").val("1"),jQuery(".bwg_tags_container_"+i+" .bwg_all_tags").removeClass("active"))})}),jQuery(".pagination-links_"+i).length&&jQuery("html, body").animate({scrollTop:jQuery("#"+t).offset().top-150},500),bwg_document_ready(jQuery("#bwg_container1_"+i));var e=jQuery("#bwg_container1_"+i).data("gallery-type");if(jQuery("#bwg_container1_"+i+" .bwg-album-thumbnails").length){bwg_all_thumnails_loaded(".bwg-container-"+i)&&bwg_container_loaded(i)}else{switch(e){case"thumbnails":case"thumbnails_masonry":case"album_compact_preview":case"album_masonry_preview":case"album_extended_preview":bwg_all_thumnails_loaded(".bwg-container-"+i);break;case"slideshow":bwg_slideshow_ready(i);break;case"carousel":bwg_carousel_ready(i),bwg_carousel_onload(jQuery("#bwg_container1_"+i));break;case"image_browser":bwg_image_browser_ready(jQuery("#bwg_container1_"+i));break;case"blog_style":bwg_blog_style_ready(jQuery("#bwg_container1_"+i))}bwg_mosaic_ajax(i,u)}jQuery(".blog_style_images_conteiner_"+i+" .bwg_embed_frame_16x9_"+i).each(function(e){jQuery(this).width(jQuery(this).parent().width()),jQuery(this).height(.5625*jQuery(this).width())}),jQuery(".blog_style_images_conteiner_"+i+" .bwg_embed_frame_instapost_"+i).each(function(e){jQuery(this).width(jQuery(this).parent().width()),jQuery(this).height((jQuery(this).width()-16)*jQuery(this).attr("data-height")/jQuery(this).attr("data-width")+96)}),jQuery("#bwg_embed_frame_16x9_"+i).width(jQuery("#bwg_embed_frame_16x9_"+i).parent().width()),jQuery("#bwg_embed_frame_16x9_"+i).height(.5625*jQuery("#bwg_embed_frame_16x9_"+i).width()),jQuery("#bwg_embed_frame_instapost_"+i).width(jQuery("#bwg_embed_frame_16x9_"+i).parent().width()),jQuery(".bwg_embed_frame_instapost_"+i).height((jQuery(".bwg_embed_frame_instapost_"+i).width()-16)*jQuery(".bwg_embed_frame_instapost_"+i).attr("data-height")/jQuery(".bwg_embed_frame_instapost_"+i).attr("data-width")+96),jQuery("#bwg_search_input_"+i).val(c["bwg_search_"+i]),""!=jQuery("#bwg_search_input_"+i).val()?(jQuery("#bwg_search_input_"+i).parent().find(".search_placeholder_title").hide(),jQuery("#bwg_search_input_"+i).parent().parent().find(".bwg_search_reset_container").show(),jQuery("#bwg_search_input_"+i).parent().parent().find(".bwg_search_loupe_container1").show()):jQuery("#bwg_search_input_"+i).parent().find(".search_placeholder_title").show();jQuery("#bwg_container2_"+i+" .cur_gal_id").val();""==d&&(d=[]),jQuery(".bwg_tags_container_"+i+" #bwg_tag_id_"+i).val(d)}}),!1}if("back"===r)return-1==document.referrer.indexOf(window.location.host)?(str=jQuery(location).attr("href"),void window.location.replace(str.substring(0,str.indexOf("type_0")))):void window.history.back();var v=jQuery("#bwg_search_input_"+i).val(),x=jQuery(".bwg_tags_container_"+i+" .cur_gal_id").val(),k=window.location.href,z="",C=jQuery(".bwg_tags_container_"+i+" #bwg_tag_id_"+x).val();if(jQuery(".bwg_tags_container_"+i).parent().hasClass("bwg_tag_select_view")&&(C=C.toString()),"#"==k.substr(-1)&&(k=k.slice(0,-1)),""!==v&&void 0!==v?!1!==(z=bwg_add_url_parameter(z=bwg_remove_url_parameter("page_number_"+i,k),"bwg_search_"+i,v))&&(k=z):!1!==(z=bwg_remove_url_parameter("bwg_search_"+i,k))&&(k=z),void 0!==l&&""!==l&&!1!==(z=bwg_add_url_parameter(k,"sort_by_"+i,l))&&(k=z),null!=C&&0<C.length){var I="",E=C.split(",");jQuery.each(E,function(e){var t=",";e===E.length-1&&(t=""),I+=E[e]+t}),""!==I&&!1!==(z=bwg_add_url_parameter(k,"filter_tag_"+i,I))&&(k=z)}else!1!==(z=bwg_remove_url_parameter("filter_tag_"+i,z))&&(k=z);window.location.href=k}function bwg_add_url_parameter(e,t,i){var a=new RegExp("([?&])"+t+"=.*?(&|$)","i"),r=-1!==e.indexOf("?")?"&":"?";return e.match(a)?e.replace(a,"$1"+t+"="+i+"$2"):e+r+t+"="+i}function bwg_remove_url_parameter(e,t){var i=t.split("?"),a=i[0]+"?",r="";if(void 0!==i[1]&&(r=i[1]),""===r)return t;var _,s,o=decodeURIComponent(r).split("&");for(s=0;s<o.length;s++)(_=o[s].split("="))[0]!=e&&(a=a+_[0]+"="+_[1]+"&");return a.substring(0,a.length-1)}function bwg_select_tag(e,t,i,a,r,_){_&&jQuery(".bwg_tags_container_"+e+" #bwg_tag_id_"+i).val(""),bwg_ajax(t,e,i,a,"",r,1,"")}function bwg_cube(e,t,i,a,r,_,s,o,l,n,g){var w,b=!1,u="";if(void 0!==g&&""!==g){b=!0,bwg_params[g].bwg_trans_in_progress=!0,u="_"+g,w=bwg_params[g].bwg_transition_duration;bwg_params[g].event_stack}else w=bwg_transition_duration;if(!bwg_testBrowser_cssTransitions(g))return bwg_fallback(o,l,n,g);if(!bwg_testBrowser_cssTransforms3d(g))return bwg_fallback3d(o,l,n,g);function d(){if(jQuery(o).removeAttr("style"),jQuery(l).removeAttr("style"),jQuery(".bwg_slider"+u).removeAttr("style"),jQuery(o).css({opacity:0,"z-index":1}),jQuery(l).css({opacity:1,"z-index":2}),jQuery(".bwg_image_info").show(),jQuery(o).html(""),b){bwg_change_watermark_container(g),bwg_params[g].bwg_trans_in_progress=!1;var e=bwg_params[g].data,t=bwg_params[g].event_stack}else{e="";gallery_box_data.bwg_trans_in_progress=!1;t=gallery_box_data.event_stack}if(void 0!==t&&0<t.length){var i=t[0].split("-");t.shift(),bwg_change_image(i[0],i[1],e,!0,g)}bwg_change_watermark_container()}b?(jQuery(".bwg_slideshow_filmstrip_thumbnail_"+g).removeClass("bwg_slideshow_thumb_active_"+g).addClass("bwg_slideshow_thumb_deactive_"+g),jQuery("#bwg_filmstrip_thumbnail_"+bwg_params[g].bwg_current_key+"_"+g).removeClass("bwg_slideshow_thumb_deactive_"+g).addClass("bwg_slideshow_thumb_active_"+g),jQuery(".bwg_slideshow_dots_"+g).removeClass("bwg_slideshow_dots_active_"+g).addClass("bwg_slideshow_dots_deactive_"+g),jQuery("#bwg_dots_"+bwg_params[g].bwg_current_key+"_"+g).removeClass("bwg_slideshow_dots_deactive_"+g).addClass("bwg_slideshow_dots_active_"+g),jQuery(".bwg_slide_bg_"+g).css("perspective",1e3)):(gallery_box_data.bwg_trans_in_progress=!0,jQuery(".bwg_filmstrip_thumbnail").removeClass("bwg_thumb_active").addClass("bwg_thumb_deactive"),jQuery("#bwg_filmstrip_thumbnail_"+gallery_box_data.bwg_current_key).removeClass("bwg_thumb_deactive").addClass("bwg_thumb_active"),jQuery(".bwg_slide_bg").css("perspective",1e3)),jQuery(o).css({transform:"translateZ("+e+"px)",backfaceVisibility:"hidden"}),jQuery(l).css({opacity:1,backfaceVisibility:"hidden",transform:"translateY("+i+"px) translateX("+t+"px) rotateY("+r+"deg) rotateX("+a+"deg)"}),jQuery(".bwg_slider"+u).css({transform:"translateZ(-"+e+"px)",transformStyle:"preserve-3d"}),setTimeout(function(){jQuery(".bwg_slider"+u).css({transition:"all "+w+"ms ease-in-out",transform:"translateZ(-"+e+"px) rotateX("+_+"deg) rotateY("+s+"deg)"})},20),jQuery(".bwg_slider"+u).one("webkitTransitionEnd transitionend otransitionend oTransitionEnd mstransitionend",jQuery.proxy(d)),0==w&&d()}function bwg_cubeH(e,t,i,a){var r=jQuery(e).width()/2;"right"==i?bwg_cube(r,r,0,0,90,0,-90,e,t,i,a):"left"==i&&bwg_cube(r,-r,0,0,-90,0,90,e,t,i,a)}function bwg_cubeV(e,t,i,a){var r=jQuery(e).height()/2;"right"==i?bwg_cube(r,0,-r,90,0,-90,0,e,t,i,a):"left"==i&&bwg_cube(r,0,r,-90,0,90,0,e,t,i,a)}function bwg_fade(e,t,i,a){var r,_=!1;function s(){jQuery(".bwg_image_info").show(),bwg_change_watermark_container(a),_?bwg_params[a].bwg_trans_in_progress=!1:gallery_box_data.bwg_trans_in_progress=!1}r=void 0!==a&&""!==a?(_=!0,bwg_params[a].bwg_trans_in_progress=!0,bwg_params[a].bwg_transition_duration):(gallery_box_data.bwg_trans_in_progress=!0,gallery_box_data.bwg_transition_duration),_?(jQuery(".bwg_slideshow_filmstrip_thumbnail_"+a).removeClass("bwg_slideshow_thumb_active_"+a).addClass("bwg_slideshow_thumb_deactive_"+a),jQuery("#bwg_filmstrip_thumbnail_"+bwg_params[a].bwg_current_key+"_"+a).removeClass("bwg_slideshow_thumb_deactive_"+a).addClass("bwg_slideshow_thumb_active_"+a),jQuery(".bwg_slideshow_dots_"+a).removeClass("bwg_slideshow_dots_active_"+a).addClass("bwg_slideshow_dots_deactive_"+a),jQuery("#bwg_dots_"+bwg_params[a].bwg_current_key+"_"+a).removeClass("bwg_slideshow_dots_deactive_"+a).addClass("bwg_slideshow_dots_active_"+a)):(jQuery(".bwg_filmstrip_thumbnail").removeClass("bwg_thumb_active").addClass("bwg_thumb_deactive"),jQuery("#bwg_filmstrip_thumbnail_"+gallery_box_data.bwg_current_key).removeClass("bwg_thumb_deactive").addClass("bwg_thumb_active")),bwg_testBrowser_cssTransitions()?(jQuery(t).css("transition","opacity "+r+"ms linear"),jQuery(e).css("transition","opacity "+r+"ms linear"),jQuery(e).css({opacity:0,"z-index":1}),jQuery(t).css({opacity:1,"z-index":2}),jQuery(t).one("webkitTransitionEnd transitionend otransitionend oTransitionEnd mstransitionend",jQuery.proxy(s))):(jQuery(e).animate({opacity:0,"z-index":1},r),jQuery(t).animate({opacity:1,"z-index":2},{duration:r,complete:function(){_?bwg_params[a].bwg_trans_in_progress=!1:gallery_box_data.bwg_trans_in_progress=!1,jQuery(e).html(""),s()}}),jQuery(e).fadeTo(r,0),jQuery(t).fadeTo(r,1)),0==r&&s()}function bwg_grid(e,t,i,a,r,_,s,o,l,n,g){var w,b=!1,u="";if(event_stack=void 0!==g&&""!==g?(b=!0,bwg_params[g].bwg_trans_in_progress=!0,u="_"+g,w=bwg_params[g].bwg_transition_duration,bwg_params[g].event_stack):(w=bwg_transition_duration,gallery_box_data.bwg_trans_in_progress=!0,gallery_box_data.event_stack),!bwg_testBrowser_cssTransitions())return bwg_fallback(o,l,n);b?(jQuery(".bwg_slideshow_filmstrip_thumbnail_"+g).removeClass("bwg_slideshow_thumb_active_"+g).addClass("bwg_slideshow_thumb_deactive_"+g),jQuery("#bwg_filmstrip_thumbnail_"+bwg_params[g].bwg_current_key+u).removeClass("bwg_slideshow_thumb_deactive_"+g).addClass("bwg_slideshow_thumb_active_"+g),jQuery(".bwg_slideshow_dots_"+g).removeClass("bwg_slideshow_dots_active_"+g).addClass("bwg_slideshow_dots_deactive_"+g),jQuery("#bwg_dots_"+bwg_params[g].bwg_current_key+u).removeClass("bwg_slideshow_dots_deactive_"+g).addClass("bwg_slideshow_dots_active_"+g)):(jQuery(".bwg_filmstrip_thumbnail").removeClass("bwg_thumb_active").addClass("bwg_thumb_deactive"),jQuery("#bwg_filmstrip_thumbnail_"+gallery_box_data.bwg_current_key).removeClass("bwg_thumb_deactive").addClass("bwg_thumb_active"));var d=w/(e+t);var h=jQuery(o).find("img"),m=jQuery(o).find("figure"),c=(jQuery(o).find("iframe").css("opacity",0),jQuery('<span style="display: block;" />').addClass("bwg_grid"+u));jQuery(o).prepend(c);var p,y,f,j,Q,v,x,k,z,C,I,E=jQuery(".bwg_slide_bg"+u),M=h.width(),S=h.height(),O=E.width(),T=E.height(),H=Math.floor(O/e),L=Math.floor(T/t),A=O-e*H,B=Math.ceil(A/e),W=T-t*L,D=Math.ceil(W/t),R=0,F=Math.ceil((jQuery(".bwg_slide_bg"+u).width()-h.width())/2),N=void 0===h.attr("src")?"":h.attr("src");a="min-auto"===(a="auto"===a?O:a)?-O:a,r="min-auto"===(r="auto"===r?T:r)?-T:r;for(var P=0;P<e;P++){var U=0,V=Math.floor((jQuery(".bwg_slide_bg"+u).height()-h.height())/2),q=H;if(0<A){var J=B<=A?B:A;q+=J,A-=J}for(var G=0;G<t;G++){var Y=L,$=W;0<$&&(Y+=J=D<=$?D:W,$-=J),c.append((p=q,y=Y,f=U,j=V,Q=R,v=F,x=N,k=M,z=S,C=g,void 0,I=(P+G)*d,jQuery('<span class="bwg_gridlet'+u+'" />').css({display:"block",width:p,height:y,top:f,left:Q,backgroundImage:'url("'+x+'")',backgroundColor:b?jQuery(".bwg_slideshow_image_wrap_"+C).css("background-color"):jQuery(".spider_popup_wrap").css("background-color"),backgroundRepeat:"no-repeat",backgroundPosition:v+"px "+j+"px",backgroundSize:k+"px "+z+"px",transition:"all "+w+"ms ease-in-out "+I+"ms",transform:"none"}))),U+=Y,V-=Y}F-=q,R+=q}var X=c.children().last();function K(){if(jQuery(o).css({opacity:0,"z-index":1}),jQuery(l).css({opacity:1,"z-index":2}),h.css("opacity",1),m.css("opacity",1),c.remove(),b){bwg_params[g].bwg_trans_in_progress=!1;var e=bwg_params[g].event_stack,t=bwg_params[g].data}else{gallery_box_data.bwg_trans_in_progress=!1;e=gallery_box_data.event_stack,t=""}if(jQuery(".bwg_image_info").show(),jQuery(o).html(""),void 0!==e&&0<e.length){var i=e[0].split("-");e.shift(),bwg_change_image(i[0],i[1],t,!0,g)}b?bwg_change_watermark_container(g):bwg_change_watermark_container()}c.show(),h.css("opacity",0),m.css("opacity",0),c.children().first().addClass("rs-top-left"),c.children().last().addClass("rs-bottom-right"),c.children().eq(t-1).addClass("rs-bottom-left"),c.children().eq(-t).addClass("rs-top-right"),setTimeout(function(){c.children().css({opacity:s,transform:"rotate("+i+"deg) translateX("+a+"px) translateY("+r+"px) scale("+_+")"})},1),jQuery(l).css("opacity",1),jQuery(X).one("webkitTransitionEnd transitionend otransitionend oTransitionEnd mstransitionend",jQuery.proxy(K)),0==w&&K()}function bwg_sliceH(e,t,i,a){if("right"==i)var r="min-auto";else if("left"==i)r="auto";bwg_grid(1,8,0,r,0,1,0,e,t,i,a)}function bwg_sliceV(e,t,i,a){if("right"==i)var r="min-auto";else if("left"==i)r="auto";bwg_grid(10,1,0,0,r,1,0,e,t,i,a)}function bwg_slideV(e,t,i,a){if("right"==i)var r="auto";else if("left"==i)r="min-auto";bwg_grid(1,1,0,0,r,1,1,e,t,i,a)}function bwg_slideH(e,t,i,a){if("right"==i)var r="min-auto";else if("left"==i)r="auto";bwg_grid(1,1,0,r,0,1,1,e,t,i,a)}function bwg_scaleOut(e,t,i,a){bwg_grid(1,1,0,0,0,1.5,0,e,t,i,a)}function bwg_scaleIn(e,t,i,a){bwg_grid(1,1,0,0,0,.5,0,e,t,i,a)}function bwg_blockScale(e,t,i,a){bwg_grid(8,6,0,0,0,.6,0,e,t,i,a)}function bwg_kaleidoscope(e,t,i,a){bwg_grid(10,8,0,0,0,1,0,e,t,i,a)}function bwg_fan(e,t,i,a){if("right"==i)var r=45,_=100;else if("left"==i)r=-45,_=-100;bwg_grid(1,10,r,_,0,1,0,e,t,i,a)}function bwg_blindV(e,t,i,a){bwg_grid(1,8,0,0,0,.7,0,e,t,"",a)}function bwg_blindH(e,t,i,a){bwg_grid(10,1,0,0,0,.7,0,e,t,"",a)}function bwg_random(e,t,i,a){var r=["sliceH","sliceV","slideH","slideV","scaleOut","scaleIn","blockScale","kaleidoscope","fan","blindH","blindV"];this["bwg_"+r[Math.floor(Math.random()*r.length)]](e,t,i,a)}function bwg_change_watermark_container(t){jQuery(".bwg_slider"+(void 0!==t&&""!==t?"_"+t:"")).children().each(function(){if(2==jQuery(this).css("zIndex")){var e=jQuery(this).find("img");if(e.length)if(e.prop("complete"))bwg_change_each_watermark_container(e.width(),e.height(),t);else e.on("load",function(){bwg_change_each_watermark_container(e.width(),e.height(),t)});else(e=jQuery(this).find("iframe")).length||(e=jQuery(this).find("video")),bwg_change_each_watermark_container(e.width(),e.height(),t)}})}function bwg_change_each_watermark_container(e,t,i){var a=void 0!==i&&""!==i?"_"+i:"",r=void 0!==i&&""!==i?"_slideshow":"";if(jQuery(".bwg"+r+"_watermark_spun"+a).width(e),jQuery(".bwg"+r+"_watermark_spun"+a).height(t),jQuery(".bwg"+r+"_watermark"+a).css({display:""}),void 0===i||""===i){var _=0;(jQuery(".bwg_comment_container").hasClass("bwg_open")||jQuery(".bwg_ecommerce_container").hasClass("bwg_open"))&&(_=gallery_box_data.lightbox_comment_width),e<=jQuery(window).width()-_&&(jQuery(".bwg_watermark_image").css({width:(jQuery(".spider_popup_wrap").width()-_)*gallery_box_data.watermark_font_size/gallery_box_data.image_width}),jQuery(".bwg_watermark_text, .bwg_watermark_text:hover").css({fontSize:(jQuery(".spider_popup_wrap").width()-_)*gallery_box_data.watermark_font_size/gallery_box_data.image_width}))}else jQuery(".bwg"+r+"_title_spun"+a).width(e),jQuery(".bwg"+r+"_title_spun"+a).height(t),jQuery(".bwg"+r+"_description_spun"+a).width(e),jQuery(".bwg"+r+"_description_spun"+a).height(t);jQuery.trim(jQuery(".bwg"+r+"_title_text"+a).text())&&jQuery(".bwg_slideshow_title_text"+a).css({display:""}),jQuery.trim(jQuery(".bwg"+r+"_description_text"+a).text())&&jQuery(".bwg"+r+"_description_text"+a).css({display:""})}function bwg_set_filmstrip_pos(e,t,i){var a,r=void 0!==t&&""!==t?"_"+t:"",_=void 0!==t&&""!==t?"_slideshow":"";a=void 0!==t&&""!==t?bwg_params[t].left_or_top:gallery_box_data.left_or_top;var s=parseInt(jQuery(".bwg_filmstrip_thumbnails").attr("data-all-images-top-bottom-space")),o=parseInt(jQuery(".bwg_filmstrip_thumbnails").attr("data-all-images-right-left-space"));if(void 0===t||""===t){if("outerWidth"==gallery_box_data.outerWidth_or_outerHeight)var l=-bwg_current_filmstrip_pos-jQuery(".bwg_filmstrip_thumbnail").outerWidth(!0)/2;else if("outerHeight"==gallery_box_data.outerWidth_or_outerHeight)l=-bwg_current_filmstrip_pos-jQuery(".bwg_filmstrip_thumbnail").outerHeight(!0)/2;if("width"==gallery_box_data.width_or_height)var n=Math.min(0,Math.max(e-jQuery(".bwg_filmstrip_thumbnails").width(),l+e/2));else if("height"==gallery_box_data.width_or_height)n=Math.min(0,Math.max(e-jQuery(".bwg_filmstrip_thumbnails").height(),l+e/2))}else if("width"==bwg_params[t].width_or_height)l=-bwg_params[t].bwg_current_filmstrip_pos-(jQuery(".bwg_slideshow_filmstrip_thumbnail"+r).width()+bwg_params[t].filmstrip_thumb_margin_hor)/2,n=Math.min(0,Math.max(e-jQuery(".bwg_slideshow_filmstrip_thumbnails"+r).width(),l+e/2));else l=-bwg_params[t].bwg_current_filmstrip_pos-(jQuery(".bwg_slideshow_filmstrip_thumbnail"+r).height()+bwg_params[t].filmstrip_thumb_margin_hor)/2,n=Math.min(0,Math.max(e-jQuery(".bwg_slideshow_filmstrip_thumbnails"+r).height(),l+e/2));0<n+o&&(o=0),0<n+s&&(s=0),"left"==a?jQuery(".bwg"+_+"_filmstrip_thumbnails"+r).animate({left:n+o},{duration:500,complete:function(){bwg_filmstrip_arrows(t)}}):jQuery(".bwg"+_+"_filmstrip_thumbnails"+r).animate({top:n+s},{duration:500,complete:function(){bwg_filmstrip_arrows(t)}})}function bwg_filmstrip_arrows(e){var t=void 0!==e&&""!==e?"_slideshow":"",i=void 0!==bwg_params[e]&&2==bwg_params[e].slideshow_filmstrip_type?"_filmstrip_fix_count":"_filmstrip",a=void 0!==e&&""!==e?"_"+e:"";if("width"==(void 0!==e&&""!==e?bwg_params[e].width_or_heigh:gallery_box_data.width_or_height))var r=jQuery(".bwg"+t+"_filmstrip_thumbnails"+a).width(),_=jQuery(".bwg"+t+i+a).width();else r=jQuery(".bwg"+t+"_filmstrip_thumbnails"+a).height(),_=jQuery(".bwg"+t+i+a).height();r<_?(jQuery(".bwg"+t+"_filmstrip_left"+a).hide(),jQuery(".bwg"+t+"_filmstrip_right"+a).hide()):(jQuery(".bwg"+t+"_filmstrip_left"+a).hide(),jQuery(".bwg"+t+"_filmstrip_right"+a).show())}function bwg_slideshow_filmstrip_fix_dimension(e){var t,i,a,r,_,s,o=void 0!==e&&""!==e?"_"+e:"",l=void 0!==e&&""!==e?"_slideshow":"",n=void 0!==e&&""!==e&&void 0!==bwg_params[e].outerWidth_or_outerHeight?bwg_params[e].outerWidth_or_outerHeight:gallery_box_data.outerWidth_or_outerHeight,g=void 0!==e&&""!==e&&void 0!==bwg_params[e].left_or_top?bwg_params[e].left_or_top:gallery_box_data.left_or_top;i="outerWidth"==n?(t=jQuery(".bwg"+l+"_filmstrip"+o).outerWidth(!0),jQuery(".bwg"+l+"_filmstrip_thumbnails"+o).outerWidth(!0)):(t=jQuery(".bwg"+l+"_filmstrip"+o).outerHeight(!0),jQuery(".bwg"+l+"_filmstrip_thumbnails"+o).outerHeight(!0)),s="left"==g?(a=jQuery(".bwg"+l+"_thumb_active"+o).position().left,r="outerWidth"==n?jQuery(".bwg"+l+"_thumb_active"+o).position().left+jQuery(".bwg"+l+"_thumb_active"+o).outerWidth(!0):jQuery(".bwg"+l+"_thumb_active"+o).position().left+jQuery(".bwg"+l+"_thumb_active"+o).outerHeight(!0),_=jQuery(".bwg"+l+"_filmstrip_thumbnails"+o).position().left,Math.abs(jQuery(".bwg"+l+"_filmstrip_thumbnails"+o).position().left)+t):(a=jQuery(".bwg"+l+"_thumb_active"+o).position().top,r="outerWidth"==n?jQuery(".bwg"+l+"_thumb_active"+o).position().top+jQuery(".bwg"+l+"_thumb_active"+o).outerWidth(!0):jQuery(".bwg"+l+"_thumb_active"+o).position().top+jQuery(".bwg"+l+"_thumb_active"+o).outerHeight(!0),_=jQuery(".bwg"+l+"_filmstrip_thumbnails"+o).position().top,Math.abs(jQuery(".bwg"+l+"_filmstrip_thumbnails"+o).position().top)+t),i<t||(a<Math.abs(_)?"left"==g?jQuery(".bwg"+l+"_filmstrip_thumbnails"+o).animate({left:-a},{duration:500,complete:function(){bwg_filmstrip_arrows(e)}}):jQuery(".bwg"+l+"_filmstrip_thumbnails"+o).animate({top:-a},{duration:500,complete:function(){bwg_filmstrip_arrows(e)}}):s<r&&("left"==g?jQuery(".bwg"+l+"_filmstrip_thumbnails"+o).animate({left:-(r-t)},{duration:500,complete:function(){bwg_filmstrip_arrows(e)}}):jQuery(".bwg"+l+"_filmstrip_thumbnails"+o).animate({top:-(r-t)},{duration:500,complete:function(){bwg_filmstrip_arrows(e)}})))}function bwg_slideshow_filmstrip_fix_count(e){var t,i,a,r,_,s,o=void 0!==e&&""!==e?"_"+e:"",l=void 0!==e&&""!==e?"_slideshow":"",n=void 0!==e&&""!==e?bwg_params[e].outerWidth_or_outerHeight:gallery_box_data.outerWidth_or_outerHeight,g=void 0!==e&&""!==e?bwg_params[e].left_or_top:gallery_box_data.left_or_top;i="outerWidth"==n?(t=jQuery(".bwg"+l+"_filmstrip_fix_count"+o).outerWidth(!0),jQuery(".bwg"+l+"_filmstrip_thumbnails"+o).outerWidth(!0)):(t=jQuery(".bwg"+l+"_filmstrip_fix_count"+o).outerHeight(!0),jQuery(".bwg"+l+"_filmstrip_thumbnails"+o).outerHeight(!0)),s="left"==g?(a=jQuery(".bwg"+l+"_thumb_active"+o).position().left,r="outerWidth"==n?jQuery(".bwg"+l+"_thumb_active"+o).position().left+jQuery(".bwg"+l+"_thumb_active"+o).outerWidth(!0):jQuery(".bwg"+l+"_thumb_active"+o).position().left+jQuery(".bwg"+l+"_thumb_active"+o).outerHeight(!0),_=jQuery(".bwg"+l+"_filmstrip_thumbnails"+o).position().left,Math.abs(jQuery(".bwg"+l+"_filmstrip_thumbnails"+o).position().left)+t):(a=jQuery(".bwg"+l+"_thumb_active"+o).position().top,r="outerWidth"==n?jQuery(".bwg"+l+"_thumb_active"+o).position().top+jQuery(".bwg"+l+"_thumb_active"+o).outerWidth(!0):jQuery(".bwg"+l+"_thumb_active"+o).position().top+jQuery(".bwg"+l+"_thumb_active"+o).outerHeight(!0),_=jQuery(".bwg"+l+"_filmstrip_thumbnails"+o).position().top,Math.abs(jQuery(".bwg"+l+"_filmstrip_thumbnails"+o).position().top)+t),i<t||(a<Math.abs(_)?"left"==g?jQuery(".bwg"+l+"_filmstrip_thumbnails"+o).animate({left:-a},{duration:500,complete:function(){bwg_filmstrip_arrows(e)}}):jQuery(".bwg"+l+"_filmstrip_thumbnails"+o).animate({top:-a},{duration:500,complete:function(){bwg_filmstrip_arrows(e)}}):s<r&&("left"==g?jQuery(".bwg"+l+"_filmstrip_thumbnails"+o).animate({left:-(r-t)},{duration:500,complete:function(){bwg_filmstrip_arrows(e)}}):jQuery(".bwg"+l+"_filmstrip_thumbnails"+o).animate({top:-(r-t)},{duration:500,complete:function(){bwg_filmstrip_arrows(e)}})))}function bwg_resize_slideshow_filmstrip_fix_count(e){var _=e.bwg,t=e.parent_width,i=e.params,a=i.filmstrip_direction,r=i.data,s=i.filmstrip_thumb_margin_hor,o=jQuery(window).width()<=767&&5<i.slideshow_thumbnails_count,l=o?5:i.slideshow_thumbnails_count,n="#bwg_container1_"+_+" #bwg_container2_"+_+" .bwg_slideshow_filmstrip_container_"+_,g="#bwg_container1_"+_+" #bwg_container2_"+_+" .bwg_slideshow_filmstrip_fix_count_"+_,w="#bwg_container1_"+_+" #bwg_container2_"+_+" .bwg_slideshow_filmstrip_fix_count_"+_+" .bwg_slideshow_filmstrip_thumbnails_"+_,b="#bwg_container1_"+_+" #bwg_container2_"+_+" .bwg_slideshow_filmstrip_fix_count_"+_+" .bwg_slideshow_filmstrip_thumbnails_"+_+" .bwg_slideshow_filmstrip_thumbnail_"+_,u="#bwg_container1_"+_+" #bwg_container2_"+_+" .bwg_slideshow_image_container_"+_,d=jQuery(u).data("filmstrip-position"),h=(jQuery(u).data("filmstrip-size"),i.slideshow_filmstrip_rl_btn_size);if(jQuery("#bwg_container1_"+_).css({width:"100%"}),jQuery("#bwg_container1_"+_+" #bwg_container2_"+_).css({width:t}),"undefined"==typeof resize_in_progress||!1===resize_in_progress){window.resize_in_progress=!0,void 0!==m&&clearTimeout(m);var m=setTimeout(function(){resize_in_progress=!1;var e={};"bottom"==d||"top"==d?e.left=0:e.top=0,jQuery(w).css(e);var t="horizontal"==a?"table-cell":"block";jQuery(n).find(".bwg_slideshow_filmstrip_left_"+_).css({display:"none"}),jQuery(n).find(".bwg_slideshow_filmstrip_left_disabled_"+_).css({display:t}),jQuery(n).find(".bwg_slideshow_filmstrip_right_"+_).css({display:t}),jQuery(n).find(".bwg_slideshow_filmstrip_right_disabled_"+_).css({display:"none"})},500)}if(bwg_resize_instagram_post(_),bwg_change_watermark_container(_),"horizontal"==a){var c=i.image_height/i.image_width,p=t-40,y=Math.round(c*p),f=(p-s*l)/l,j=Math.round(c*f);jQuery(n).css({width:t,height:j}),jQuery(g).css({width:p,height:j}),jQuery(b).css({width:f,height:j}),jQuery.each(r,function(e,t){var i=f,a=j;if(""!=t.image_width&&""!=t.image_height){var r=Math.max(f/t.image_width,j/t.image_height);i=t.image_width*r,a=t.thumb_height*r}""!=t.thumb_width&&""!=t.thumb_height&&(i=t.thumb_width,a=t.thumb_height);i*=r=Math.max(f/i,j/a),a*=r;jQuery(".bwg_slideshow_filmstrip_fix_count_"+_+" .bwg_slideshow_filmstrip_thumbnail_"+_+" .bwg_slideshow_filmstrip_thumbnail_img_"+_).css({width:f,height:j,"margin-left":0,"margin-top":0})}),jQuery(w).css({width:f*r.length+s*r.length,height:j}),jQuery(".bwg_slideshow_image_wrap_"+_).css({width:t,height:t*i.image_height/i.image_width}),(Q={width:t,height:t*(i.image_height/i.image_width)-j})[d]=j,jQuery(".bwg_slideshow_image_container_"+_).css(Q),jQuery(".bwg_slideshow_image_"+_).css({cssText:"max-width:"+t+"px !important; max-height:"+(t*(i.image_height/i.image_width)-j)+"px !important;"}),jQuery(".bwg_slideshow_embed_"+_).css({cssText:"width:"+t+"px !important; height:"+(t*(i.image_height/i.image_width)-j)+"px !important;"}),j<h&&(h=j),jQuery(n).find(".bwg-icon-angle-left").css({"font-size":h}),jQuery(n).find(".bwg-icon-angle-right").css({"font-size":h})}else{var Q,v=t*i.image_height/i.image_width;c=i.image_width/i.image_height,y=v-40,p=Math.round(c*y),j=(y-s*l)/l,f=Math.round(c*j);jQuery.each(r,function(e,t){var i=f,a=j;if(""!=t.image_width&&""!=t.image_height){var r=Math.max(f/t.image_width,j/t.image_height);i=t.image_width*r,a=t.thumb_height*r}""!=t.thumb_width&&""!=t.thumb_height&&(i=t.thumb_width,a=t.thumb_height);r=Math.max(f/i,j/a),i*=r,a*=r;jQuery(".bwg_slideshow_filmstrip_fix_count_"+_+" .bwg_slideshow_filmstrip_thumbnail_"+_+" .bwg_slideshow_filmstrip_thumbnail_img_"+_).css({width:f,height:j,"margin-left":0,"margin-top":0})}),jQuery(n).css({width:f,height:v}),jQuery(g).css({width:f,height:y}),jQuery(w).css({width:f,height:j*r.length+s*r.length}),jQuery(b).css({width:f,height:j}),jQuery(".bwg_slideshow_image_wrap_"+_).css({width:t,height:v}),(Q={width:t-f,height:v})[d]=f,jQuery(u).css(Q),jQuery(".bwg_slideshow_image_"+_).css({cssText:"max-width:"+(t-f)+"px !important; max-height:"+v+"px !important;"}),jQuery(".bwg_slideshow_embed_"+_).css({cssText:"width:"+(t-f)+"px !important; height:"+v+"px !important;"}),f<h&&(h=f),jQuery(n).find(".bwg-icon-angle-up").css({"font-size":h}),jQuery(n).find(".bwg-icon-angle-down").css({"font-size":h})}o&&(jQuery(n).find(".bwg-icon-angle-left").removeAttr("style"),jQuery(n).find(".bwg-icon-angle-right").removeAttr("style"),jQuery(n).find(".bwg-icon-angle-up").removeAttr("style"),jQuery(n).find(".bwg-icon-angle-down").removeAttr("style"))}function bwg_resize_slideshow_filmstrip_fix_dimension(e){var t=e.bwg,i=e.parent_width,a=e.params,r=a.filmstrip_direction;jQuery(".bwg_slideshow_image_wrap_"+t).css({width:i}),jQuery(".bwg_slideshow_image_wrap_"+t).css({height:i*(a.image_height/a.image_width)}),jQuery(".bwg_slideshow_image_container_"+t).css({width:i-("horizontal"==a.filmstrip_direction?0:a.slideshow_filmstrip_width)}),jQuery(".bwg_slideshow_image_container_"+t).css({height:i*a.image_height/a.image_width-("horizontal"==a.filmstrip_direction?a.slideshow_filmstrip_height:0)}),jQuery(".bwg_slideshow_image_"+t).css({cssText:"max-width: "+(i-("horizontal"==bwg_params[t].filmstrip_direction?0:a.slideshow_filmstrip_width))+"px !important; max-height: "+(i*(a.image_height/a.image_width)-("horizontal"==a.filmstrip_direction?a.slideshow_filmstrip_height:0)-1)+"px !important;"}),jQuery(".bwg_slideshow_embed_"+t).css({cssText:"width: "+(i-("horizontal"==a.filmstrip_direction?0:a.slideshow_filmstrip_width))+"px !important; height: "+(i*(a.image_height/a.image_width)-("horizontal"==a.filmstrip_direction?a.slideshow_filmstrip_height:0)-1)+"px !important;"}),bwg_resize_instagram_post(t),bwg_change_watermark_container(t),"horizontal"==r?(jQuery(".bwg_slideshow_filmstrip_container_"+t).css({width:i}),jQuery(".bwg_slideshow_filmstrip_"+t).css({width:i-40})):(jQuery(".bwg_slideshow_filmstrip_container_"+t).css({height:i*a.image_height/a.image_width}),jQuery(".bwg_slideshow_filmstrip_"+t).css({height:i*a.image_height/a.image_width-40}))}function bwg_calculate_slideshow_filmstrip_thumbnail_size(e){var t=e.bwg,i=e.params,a=i.slideshow_filmstrip_width;if(2==i.slideshow_filmstrip_type){var r="#bwg_container1_"+t+" #bwg_container2_"+t+" .bwg_slideshow_filmstrip_fix_count_"+t+" .bwg_slideshow_filmstrip_thumbnail_"+t;a=(i.left_or_top,"width"==i.width_or_height?jQuery(r).width():jQuery(r).height())}return parseFloat(a)}function bwg_move_dots(e){var t=jQuery(".bwg_slideshow_dots_active_"+e).position().left,i=jQuery(".bwg_slideshow_dots_active_"+e).position().left+jQuery(".bwg_slideshow_dots_active_"+e).outerWidth(!0),a=jQuery(".bwg_slideshow_dots_container_"+e).outerWidth(!0),r=jQuery(".bwg_slideshow_dots_thumbnails_"+e).outerWidth(!1),_=jQuery(".bwg_slideshow_dots_thumbnails_"+e).position().left,s=Math.abs(jQuery(".bwg_slideshow_dots_thumbnails_"+e).position().left)+a;r<a||(t<Math.abs(_)?jQuery(".bwg_slideshow_dots_thumbnails_"+e).animate({left:-t},{duration:500,complete:function(){}}):s<i&&jQuery(".bwg_slideshow_dots_thumbnails_"+e).animate({left:-(i-a)},{duration:500,complete:function(){}}))}function bwg_testBrowser_cssTransitions(e){return bwg_testDom("Transition",e)}function bwg_testBrowser_cssTransforms3d(e){return bwg_testDom("Perspective",e)}function bwg_testDom(e,t){for(var i=["","Webkit","Moz","ms","O","Khtml"],a=i.length;a--;)if(void 0!==document.body.style[i[a]+e])return!0;return!1}function bwg_fallback(e,t,i,a){bwg_fade(e,t,i,a)}function bwg_fallback3d(e,t,i,a){bwg_sliceV(e,t,i,a)}function bwg_none(e,t,i,a){var r=void 0!==a&&""!==a?"_"+a:"";if(jQuery(e).css({opacity:0,"z-index":1}),jQuery(t).css({opacity:1,"z-index":2}),void 0!==a&&""!==a){var _=bwg_params[a].bwg_current_key;bwg_change_watermark_container(a),jQuery(".bwg_slideshow_filmstrip_thumbnail"+r).removeClass("bwg_slideshow_thumb_active"+r).addClass("bwg_slideshow_thumb_deactive"+r),jQuery("#bwg_filmstrip_thumbnail_"+_+r).removeClass("bwg_slideshow_thumb_deactive"+r).addClass("bwg_slideshow_thumb_active"+r),jQuery(".bwg_slideshow_dots"+r).removeClass("bwg_slideshow_dots_active"+r).addClass("bwg_slideshow_dots_deactive"+r),jQuery("#bwg_dots_"+_+r).removeClass("bwg_slideshow_dots_deactive"+r).addClass("bwg_slideshow_dots_active"+r)}else jQuery(".bwg_image_info").show(),gallery_box_data.bwg_trans_in_progress=!1,jQuery(e).html(""),bwg_change_watermark_container()}function bwg_iterator(e){var t=1;return void 0!==e&&""!==e&&void 0!==bwg_params[e]&&1==bwg_params[e].enable_slideshow_shuffle&&(t=Math.floor((bwg_params[e].data.length-1)*Math.random()+1)),t}function bwg_change_image_slideshow(e,t,i,a,r){i=bwg_params[r].data;if(jQuery("#bwg_slideshow_image_container_"+r).find("iframe").each(function(){jQuery(this)[0].contentWindow.postMessage('{"event":"command","func":"pauseVideo","args":""}',"*"),jQuery(this)[0].contentWindow.postMessage('{ "method": "pause" }',"*"),jQuery(this)[0].contentWindow.postMessage("pause","*")}),jQuery("#image_id_"+r+"_"+i[e].id).find(".bwg_fb_video").each(function(){jQuery(this).attr("src",jQuery(this).attr("src"))}),i[t]){if(jQuery(".bwg_ctrl_btn_"+r).hasClass("bwg-icon-pause")&&bwg_play(bwg_params[r].data,r),a||(jQuery("#bwg_current_image_key_"+r).val(t),"-1"==e?e=jQuery(".bwg_slideshow_thumb_active_"+r).children("img").attr("image_key"):"-2"==e&&(e=jQuery(".bwg_slideshow_dots_active_"+r).attr("image_key"))),bwg_params[r].bwg_trans_in_progress)return void bwg_params[r].event_stack.push(e+"-"+t);var _="right";if(t<e)_="left";else if(e==t)return;jQuery(".bwg_slideshow_watermark_"+r).css({display:"none"}),jQuery(".bwg_slideshow_title_text_"+r).css({display:"none"}),jQuery(".bwg_slideshow_description_text_"+r).css({display:"none"}),"width"==bwg_params[r].width_or_height?bwg_params[r].bwg_current_filmstrip_pos=t*(jQuery(".bwg_slideshow_filmstrip_thumbnail_"+r).width()+2+2*bwg_params[r].lightbox_filmstrip_thumb_border_width):bwg_params[r].bwg_current_filmstrip_pos=t*(jQuery(".bwg_slideshow_filmstrip_thumbnail_"+r).height()+2+2*bwg_params[r].lightbox_filmstrip_thumb_border_width),e=t,bwg_params[r].bwg_current_key=e,jQuery("#bwg_slideshow_image_"+r).attr("image_id",i[t].id),jQuery(".bwg_slideshow_title_text_"+r).html(jQuery('<span style="display: block;" />').html(i[t].alt).text()),jQuery(".bwg_slideshow_description_text_"+r).html(jQuery('<span style="display: block;" />').html(i[t].description).text());var s=2==jQuery(".bwg_slideshow_image_spun_"+r).css("zIndex")?".bwg_slideshow_image_spun_"+r:".bwg_slideshow_image_second_spun_"+r,o=s==".bwg_slideshow_image_second_spun_"+r?".bwg_slideshow_image_spun_"+r:".bwg_slideshow_image_second_spun_"+r,l=-1<i[t].filetype.indexOf("EMBED_"),n=-1<i[t].filetype.indexOf("INSTAGRAM_POST"),g=-1<i[t].filetype.indexOf("INSTAGRAM_VIDEO"),w=jQuery(s).height(),b=jQuery(s).width(),u='<span class="bwg_slideshow_image_spun1_'+r+'" style="display:  '+(l?"block":"table")+' ;width: inherit; height: inherit;"><span class="bwg_slideshow_image_spun2_'+r+'" style="display: '+(l?"block":"table-cell")+'; vertical-align: middle; text-align: center; ">';if(l){if(u+='<span style="height: '+w+"px; width: "+b+'px;" class="bwg_popup_embed bwg_popup_watermark">',g&&(u+='<span class="bwg_inst_play_btn_cont" onclick="bwg_play_instagram_video(this)"><span class="bwg_inst_play"></span></span>'),n){var d=jQuery(".bwg_embed_frame"),h=jQuery(".bwg_slideshow_image_container_"+r).width(),m=jQuery(".bwg_slideshow_image_container_"+r).height(),c=i[t].image_width,p=i[t].image_height,y=bwg_resizing_ratio(c,p,h,m);d.attr("data-width",h),d.attr("data-height",m);var f=y.width,j=y.height;f<j?f-=109:f+=109,u+=spider_display_embed(i[t].filetype,decodeURIComponent(i[t].image_url),i[t].filename,{class:"bwg_embed_frame","data-width":h,"data-height":m,"data-instagram-width":c,"data-instagram-height":p,style:"width:"+f+"px; height:"+j+"px; vertical-align:middle; display:inline-block; position:relative;"})}else u+=spider_display_embed(i[t].filetype,decodeURIComponent(i[t].image_url),i[t].filename,{class:"bwg_embed_frame",frameborder:"0",allowfullscreen:"allowfullscreen","data-max-width":b,"data-max-height":w,style:"width:inherit; height:inherit; vertical-align:middle; display:table-cell;"});u+="</span>"}else{if("do_nothing"!=bwg_params[r].thumb_click_action){var Q="";"open_lightbox"==bwg_params[r].thumb_click_action?Q+=' class="bwg_lightbox" data-image-id="'+i[t].id+'" data-elementor-open-lightbox="no"':"redirect_to_url"==bwg_params[r].thumb_click_action&&i[t].redirect_url&&(Q+='href="'+i[t].redirect_url+'"'+(bwg_params[r].thumb_link_target&&1==bwg_params[r].thumb_link_target?' target="_blank"':"")),u+="<a "+Q+">"}u+='<img style="max-height: '+w+"px !important; max-width: "+b+'px !important; display:inline-block;" ',u+=' class="bwg_slide bwg_slideshow_image_'+r+'" ',u+=' id="bwg_slideshow_image_'+r+'" ',u+=' src="'+bwg_params[r].upload_url+jQuery("<span style='display: block;' />").html(decodeURIComponent(i[t].image_url)).text()+'" alt="'+i[t].alt+'" image_id="'+i[t].id+'" /></a>'}u+="</span></span>",jQuery(o).html(u),bwg_params[r].preload_images&&bwg_preload_images(t,r),window["bwg_"+bwg_params[r].slideshow_effect](s,o,_,r),1==bwg_params[r].slideshow_filmstrip_type?bwg_slideshow_filmstrip_fix_dimension(r):2==bwg_params[r].slideshow_filmstrip_type?bwg_slideshow_filmstrip_fix_count(r):bwg_move_dots(r),i[t].is_embed_video?jQuery("#bwg_slideshow_play_pause_"+r).css({display:"none"}):jQuery("#bwg_slideshow_play_pause_"+r).css({display:""})}bwg_add_lightbox(),"EMBED_OEMBED_INSTAGRAM_POST"==i[t].filetype&&"undefined"!=typeof instgrm&&void 0!==instgrm.Embeds&&(jQuery(".instagram-media").hide(),instgrm.Embeds.process(),jQuery(".instagram-media").css({"max-height":j+"px","min-width":f+"px !important"}),jQuery(".instagram-media").show())}function bwg_preload_images_slideshow(e,t){var i=bwg_params[t].data;count=bwg_params[t].preload_images_count/2;var a=i.length;if(a<bwg_params[t].preload_images_count&&(count=0),0!=count)for(var r=e-count;r<e+count;r++){var _=parseInt((r+a)%a),s=-1<i[_].filetype.indexOf("EMBED_");void 0!==i[_]&&(s||jQuery("<img/>").attr("src",bwg_params[t].upload_url+jQuery('<span style="display: block;" />').html(decodeURIComponent(i[_].image_url)).text()))}else for(r=0;r<i.length;r++){s=-1<i[r].filetype.indexOf("EMBED_");void 0!==i[r]&&(s||jQuery("<img/>").attr("src",bwg_params[t].upload_url+jQuery('<span style="display: block;" />').html(decodeURIComponent(i[r].image_url)).text()))}}function bwg_preload_images(e,t){void 0!==t&&""!==t?bwg_preload_images_slideshow(e,t):bwg_preload_images_lightbox(e)}function bwg_popup_resize_slidshow(e){var t=".bwg_slideshow_filmstrip_"+e;2==bwg_params[e].slideshow_filmstrip_type&&(t=".bwg_slideshow_filmstrip_fix_count_"+e);var i=jQuery("#bwg_container1_"+e).parent();i.hasClass("elementor-tab-content")&&i.width(i.closest(".elementor-widget-wrap").width());var a=i.width(),r=bwg_params[e].data;if(a>=bwg_params[e].image_width){jQuery(".bwg_slideshow_image_wrap_"+e).css({width:bwg_params[e].image_width}),jQuery(".bwg_slideshow_image_wrap_"+e).css({height:bwg_params[e].image_height}),jQuery(".bwg_slideshow_image_container_"+e).css({width:"horizontal"==bwg_params[e].filmstrip_direction?bwg_params[e].image_width:bwg_params[e].image_width-bwg_params[e].slideshow_filmstrip_width}),jQuery(".bwg_slideshow_image_container_"+e).css({height:"horizontal"==bwg_params[e].filmstrip_direction?bwg_params[e].image_height-bwg_params[e].slideshow_filmstrip_height:bwg_params[e].image_height}),jQuery(".bwg_slideshow_image_"+e).css({cssText:(bwg_params[e].filmstrip_direction,bwg_params[e].image_width)}),jQuery(".bwg_slideshow_embed_"+e).css({cssText:(bwg_params[e].filmstrip_direction,bwg_params[e].image_width)}),bwg_resize_instagram_post(e),bwg_change_watermark_container(e);var _="horizontal"==bwg_params[e].filmstrip_direction?"width: "+bwg_params[e].image_width:"height: "+bwg_params[e].image_height,s="horizontal"==bwg_params[e].filmstrip_direction?"width: "+(bwg_params[e].image_width-40):"height: "+(bwg_params[e].image_height-40);if(jQuery(".bwg_slideshow_filmstrip_container_"+e).css({cssText:_}),jQuery(t).css({cssText:s}),jQuery(".bwg_slideshow_dots_container_"+e).css({width:bwg_params[e].image_width}),jQuery("#bwg_slideshow_play_pause-ico_"+e).css({fontSize:bwg_params[e].slideshow_play_pause_btn_size}),"image"==bwg_params[e].watermark_type&&jQuery(".bwg_slideshow_watermark_image_"+e).css({maxWidth:bwg_params[e].watermark_width,maxHeight:bwg_params[e].watermark_height}),"text"==bwg_params[e].watermark_type&&jQuery(".bwg_slideshow_watermark_text_"+e+", .bwg_slideshow_watermark_text_"+e+" :hover").css({fontSize:bwg_params[e].watermark_font_size}),jQuery(".bwg_slideshow_title_text_"+e).css({fontSize:2*bwg_params[e].slideshow_title_font_size}),jQuery(".bwg_slideshow_description_text_"+e).css({fontSize:2*bwg_params[e].slideshow_description_font_size}),2==bwg_params[e].slideshow_filmstrip_type){var o=bwg_params[e].filmstrip_direction,l="#bwg_container1_"+e+" #bwg_container2_"+e;jQuery(l).removeAttr("style");var n=l+" .bwg_slideshow_filmstrip_container_"+e,g=bwg_params[e].slideshow_filmstrip_rl_btn_size,w=jQuery(".bwg_slideshow_filmstrip_fix_count_"+e).width();"horizontal"==o&&(w=jQuery(".bwg_slideshow_filmstrip_fix_count_"+e).height());var b="horizontal"==o?"table-cell":"block";jQuery(n).find(".bwg_slideshow_filmstrip_left_"+e).css({display:"none"}),jQuery(n).find(".bwg_slideshow_filmstrip_left_disabled_"+e).css({display:b}),jQuery(n).find(".bwg_slideshow_filmstrip_right_"+e).css({display:b}),jQuery(n).find(".bwg_slideshow_filmstrip_right_disabled_"+e).css({display:"none"}),w<g?(g=w,jQuery(n).find(".bwg-icon-angle-left").css({"font-size":g}),jQuery(n).find(".bwg-icon-angle-right").css({"font-size":g}),jQuery(n).find(".bwg-icon-angle-up").css({"font-size":g}),jQuery(n).find(".bwg-icon-angle-down").css({"font-size":g})):(jQuery(n).find(".bwg-icon-angle-left").removeAttr("style"),jQuery(n).find(".bwg-icon-angle-right").removeAttr("style"),jQuery(n).find(".bwg-icon-angle-up").removeAttr("style"),jQuery(n).find(".bwg-icon-angle-down").removeAttr("style"));var u=l+" .bwg_slideshow_filmstrip_thumbnails_"+e;jQuery(u).removeAttr("style"),jQuery(u+" .bwg_slideshow_filmstrip_thumbnail_"+e).each(function(e,t){jQuery(t).attr("style",jQuery(t).attr("data-style")),jQuery(t).find("img").attr("style",jQuery(t).attr("data-style"))});var d="#bwg_container1_"+e+" #bwg_container2_"+e+" .bwg_slideshow_image_container_"+e,h=(jQuery(d).data("filmstrip-position"),jQuery(d).data("filmstrip-size"));jQuery(d).css({filmstrip_position:h});var m="bwg_slideshow_filmstrip_thumbnail_"+e;window.bwg_slideshow_filmstrip_thumb[m].next_prev_index&&(window.bwg_slideshow_filmstrip_thumb[m].next_prev_index=0)}}else 1==bwg_params[e].slideshow_filmstrip_type&&bwg_resize_slideshow_filmstrip_fix_dimension({bwg:e,params:bwg_params[e],parent_width:a-40}),2==bwg_params[e].slideshow_filmstrip_type&&bwg_resize_slideshow_filmstrip_fix_count({bwg:e,params:bwg_params[e],parent_width:a}),jQuery(".bwg_slideshow_dots_container_"+e).css({width:a}),jQuery("#bwg_slideshow_play_pause-ico_"+e).css({fontSize:a*(bwg_params[e].slideshow_play_pause_btn_size/bwg_params[e].image_width)}),jQuery(".bwg_slideshow_watermark_image_"+e).css({maxWidth:a*(bwg_params[e].watermark_width/bwg_params[e].image_width),maxHeight:a*(bwg_params[e].watermark_height/bwg_params[e].image_width)}),jQuery(".bwg_slideshow_watermark_text_"+e+", .bwg_slideshow_watermark_text_"+e+":hover").css({fontSize:a*(bwg_params[e].watermark_font_size/bwg_params[e].image_width)}),jQuery(".bwg_slideshow_title_text_"+e).css({fontSize:2*a*bwg_params[e].slideshow_title_font_size/bwg_params[e].image_width}),jQuery(".bwg_slideshow_description_text_"+e).css({fontSize:2*a*bwg_params[e].slideshow_description_font_size/bwg_params[e].image_width}),jQuery(".bwg_slideshow_image_"+e).css({display:"inline-block"});r[parseInt(jQuery("#bwg_current_image_key_"+e).val())].is_embed_video?jQuery("#bwg_slideshow_play_pause_"+e).css({display:"none"}):jQuery("#bwg_slideshow_play_pause_"+e).css({display:""})}function bwg_popup_resize(e){void 0!==e&&""!==e?bwg_popup_resize_slidshow(e):bwg_popup_resize_lightbox()}function bwg_change_image(e,t,i,a,r){void 0!==r&&""!==r?bwg_change_image_slideshow(e,t,i,a,r):bwg_change_image_lightbox(e,t,i=gallery_box_data.data,a)}function bwg_resize_instagram_post(e){var t=!1;if(void 0!==e&&""!==e){if(jQuery(".inner_instagram_iframe_bwg_embed_frame_"+e).length){t=!0;var i=jQuery("#instagram-embed-"+e),a=jQuery(".bwg_slideshow_embed_"+e),r=jQuery(".bwg_embed_frame_"+e),_=void 0!==a.width()?a.width():jQuery(".bwg_slideshow_embed_"+e).width(),s=void 0!==a.height()?a.height():jQuery(".bwg_slideshow_embed_"+e).height(),o=r.data("instagram-width"),l=r.data("instagram-height");bwg_change_watermark_container(e)}}else if(jQuery(".inner_instagram_iframe_bwg_embed_frame").length){t=!0;i=jQuery(".instagram-media"),r=jQuery(".bwg_embed_frame"),_=jQuery(".bwg_image_container").width(),s=jQuery(".bwg_image_container").height(),o=r.data("instagram-width"),l=r.data("instagram-height");bwg_change_watermark_container()}if(!0===t){var n=bwg_resizing_ratio(o,l,_,s);r.attr("data-width",_),r.attr("data-height",s);var g=n.width,w=n.height;g<w?g-=109:g+=109,r.width(g),r.height(w),i.css({"max-height":w+"px","min-width":g+"px !important"})}}function bwg_play(t,i){if(void 0!==i&&""!==i)t=bwg_params[i].data;void 0!==i&&""!==i?(window.clearInterval(window["bwg_playInterval"+i]),window["bwg_playInterval"+i]=setInterval(function(){var e=1;1==bwg_params[i].enable_slideshow_shuffle&&(e=Math.floor((t.length-1)*Math.random()+1)),bwg_change_image(parseInt(jQuery("#bwg_current_image_key_"+i).val()),(parseInt(jQuery("#bwg_current_image_key_"+i).val())+e)%t.length,t,"",i)},1e3*bwg_params[i].slideshow_interval)):(window.clearInterval(gallery_box_data.bwg_playInterval),gallery_box_data.bwg_playInterval=setInterval(function(){jQuery(".bwg_comment_container").hasClass("bwg_open")||jQuery(".bwg_play_pause").length&&jQuery(".bwg_play_pause").hasClass("bwg-icon-play")||(void 0===t||void 0!==t[parseInt(jQuery("#bwg_current_image_key").val())+1]?bwg_change_image(parseInt(jQuery("#bwg_current_image_key").val()),parseInt(jQuery("#bwg_current_image_key").val())+1):1==gallery_box_data.enable_loop&&bwg_change_image(parseInt(jQuery("#bwg_current_image_key").val()),0))},1e3*gallery_box_data.slideshow_interval))}function bwg_image_browser(e){if(jQuery("#bwg_embed_frame_16x9_"+e).width(jQuery("#bwg_embed_frame_16x9_"+e).parents(".image_browser_image_buttons_"+e).width()),jQuery("#bwg_embed_frame_16x9_"+e).height(.5625*jQuery("#bwg_embed_frame_16x9_"+e).width()),jQuery("#bwg_embed_frame_instapost_"+e).width(jQuery("#bwg_embed_frame_16x9_"+e).parents(".image_browser_image_buttons_"+e).width()),jQuery(".image_browser_images_conteiner_"+e).find(".fluid-width-video-wrapper").length){var t=jQuery(".image_browser_images_conteiner_"+e).find(".fluid-width-video-wrapper").contents();jQuery(".image_browser_images_conteiner_"+e).find(".fluid-width-video-wrapper").replaceWith(t)}jQuery(".bwg_embed_frame_instapost_"+e).height((jQuery(".bwg_embed_frame_instapost_"+e).width()-16)*jQuery(".bwg_embed_frame_instapost_"+e).attr("data-height")/jQuery(".bwg_embed_frame_instapost_"+e).attr("data-width")+96);var i=jQuery(".image_browser_images_"+e).width();i<=108?jQuery(".paging-input_"+e).css("display","none"):(i<=200?(jQuery(".paging-input_"+e).css("margin","0% 0% 0% 0%"),jQuery(".paging-input_"+e).css("display","inline")):i<=580?(jQuery(".paging-input_"+e).css("display","inline"),jQuery(".tablenav-pages_"+e+" a").css("font-size","13px"),jQuery(".paging-input_"+e).css("margin","0% 7% 0% 7%")):(jQuery(".tablenav-pages_"+e+" a").css("font-size","15px"),jQuery(".paging-input_"+e).css("margin","0%  14% 0%  14%"),jQuery(".paging-input_"+e).css("display","inline")),jQuery(".tablenav-pages_"+e+" .next-page").css("margin","0% 0% 0% 0%"),jQuery(".tablenav-pages_"+e+" .prev-page").css("margin","0% 0% 0% 0%"))}function bwg_disable_right_click(e){e.bind("contextmenu",function(){return!1}),e.css("webkitTouchCallout","none")}function bwg_resizing_ratio(e,t,i,a){var r=[i/e,a/t];return{width:e*(r=Math.min(r[0],r[1])),height:t*r}}function bwg_slideshow_filmstrip_next(e){var t=e.bwg,i=e.params,a=e.slideshow_filmstrip_class_name,r=bwg_calculate_slideshow_filmstrip_thumbnail_size({bwg:t,params:i}),_="bwg_slideshow_filmstrip_thumbnail_"+t,s="#bwg_container1_"+t+" #bwg_container2_"+t+" .bwg_slideshow_filmstrip_left_"+t,o="#bwg_container1_"+t+" #bwg_container2_"+t+" .bwg_slideshow_filmstrip_left_disabled_"+t,l="#bwg_container1_"+t+" #bwg_container2_"+t+" .bwg_slideshow_filmstrip_right_"+t,n="#bwg_container1_"+t+" #bwg_container2_"+t+" .bwg_slideshow_filmstrip_right_disabled_"+t,g="horizontal"==i.filmstrip_direction?"table-cell":"block";"left"==i.left_or_top?"width"==i.width_or_height?(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).position().left>=-(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).width()-jQuery(a).width())&&(jQuery(s).css({display:g}),jQuery(o).css({display:"none"}),jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).position().left<-(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).width()-jQuery(a).width()-(parseInt(i.filmstrip_thumb_margin_hor)+r))?jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).animate({left:-(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).width()-jQuery(a).width())},500,"linear"):jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).animate({left:jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).position().left-(parseInt(i.filmstrip_thumb_margin_hor)+r)},500,"linear")),window.setTimeout(function(){parseInt(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).position().left)==-parseInt(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).width()-jQuery(a).width())?(jQuery(l).css({display:"none"}),jQuery(n).css({display:g})):(jQuery(l).css({display:g}),jQuery(n).css({display:"none"}))},510)):(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).position().left>=-(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).height()-jQuery(a).height())&&(jQuery(s).css({display:g}),jQuery(o).css({display:"none"}),jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).position().left<-(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).height()-jQuery(a).height()-(parseInt(i.filmstrip_thumb_margin_hor)+r))?jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).animate({left:-(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).height()-jQuery(a).height())},500,"linear"):jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).animate({left:jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).position().left-(parseInt(i.filmstrip_thumb_margin_hor)+r)},500,"linear")),window.setTimeout(function(){parseInt(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).position().left)==-parseInt(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).height()-jQuery(a).height())?(jQuery(l).css({display:"none"}),jQuery(n).css({display:g})):(jQuery(l).css({display:g}),jQuery(n).css({display:"none"}))},510)):"width"==i.width_or_height?(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).position().top>=-(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).width()-jQuery(a).width())&&(jQuery(s).css({display:g}),jQuery(o).css({display:"none"}),jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).position().top<-(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).width()-jQuery(a).width()-parseInt(i.filmstrip_thumb_margin_hor)+r)?jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).animate({top:-(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).width()-jQuery(a).width())},500,"linear"):jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).animate({top:jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).position().top-parseInt(i.filmstrip_thumb_margin_hor)+r},500,"linear")),window.setTimeout(function(){parseInt(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).position().top)==-parseInt(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).width()-jQuery(a).width())?(jQuery(l).css({display:"none"}),jQuery(n).css({display:g})):(jQuery(l).css({display:g}),jQuery(n).css({display:"none"}))},510)):(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).position().top>=-(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).height()-jQuery(a).height())&&(jQuery(s).css({display:g}),jQuery(o).css({display:"none"}),jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).position().top<-(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).height()-jQuery(a).height()-(parseInt(i.filmstrip_thumb_margin_hor)+r))?jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).animate({top:-(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).height()-jQuery(a).height())},500,"linear"):jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).animate({top:jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).position().top-(parseInt(i.filmstrip_thumb_margin_hor)+r)},500,"linear")),window.setTimeout(function(){parseInt(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).position().top)==-parseInt(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).height()-jQuery(a).height())?(jQuery(l).css({display:"none"}),jQuery(n).css({display:g})):(jQuery(l).css({display:g}),jQuery(n).css({display:"none"}))},510)),bwg_slideshow_filmstrip_thumb[_].next_prev_index=bwg_slideshow_filmstrip_thumb[_].next_prev_index+1}function bwg_slideshow_filmstrip_prev(e){var t=e.bwg,i=e.params,a=bwg_calculate_slideshow_filmstrip_thumbnail_size({bwg:t,params:i}),r="bwg_slideshow_filmstrip_thumbnail_"+t,_="#bwg_container1_"+t+" #bwg_container2_"+t+" .bwg_slideshow_filmstrip_left_"+t,s="#bwg_container1_"+t+" #bwg_container2_"+t+" .bwg_slideshow_filmstrip_left_disabled_"+t,o="#bwg_container1_"+t+" #bwg_container2_"+t+" .bwg_slideshow_filmstrip_right_"+t,l="#bwg_container1_"+t+" #bwg_container2_"+t+" .bwg_slideshow_filmstrip_right_disabled_"+t,n="horizontal"==i.filmstrip_direction?"table-cell":"block";"left"==i.left_or_top?(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).position().left<0&&(jQuery(o).css({display:n}),jQuery(l).css({display:"none"}),jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).position().left>-(i.filmstrip_thumb_margin_hor+a)?jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).animate({left:0},500,"linear"):jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).animate({left:jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).position().left+parseInt(i.filmstrip_thumb_margin_hor)+a},500,"linear")),window.setTimeout(function(){0==parseInt(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).position().left)?(jQuery(_).css({display:"none"}),jQuery(s).css({display:n})):(jQuery(_).css({display:n}),jQuery(s).css({display:"none"}))},510)):(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).position().top<0&&(jQuery(o).css({display:n}),jQuery(l).css({display:"none"}),jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).position().top>-(i.filmstrip_thumb_margin_hor+a)?jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).animate({top:0},500,"linear"):jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).animate({top:jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).position().top+parseInt(i.filmstrip_thumb_margin_hor)+a},500,"linear")),window.setTimeout(function(){0==parseInt(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).position().top)?(jQuery(_).css({display:"none"}),jQuery(s).css({display:n})):(jQuery(_).css({display:n}),jQuery(s).css({display:"none"}))},510)),bwg_slideshow_filmstrip_thumb[r].next_prev_index=bwg_slideshow_filmstrip_thumb[r].next_prev_index-1}jQuery(function(){function i(e){bwg_slideshow_blur(e),bwg_carousel_blur(e),0<jQuery(".bwg_play_pause").length&&window.clearInterval(gallery_box_data.bwg_playInterval)}function a(e){e&&bwg_main_ready(e),bwg_slideshow_focus(),bwg_carousel_focus(),jQuery(".bwg_play_pause").length&&jQuery(".bwg_play_pause").hasClass("bwg-icon-play")&&!jQuery(".bwg_comment_container").hasClass("bwg_open")&&bwg_play(gallery_box_data.data)}var r=!1;jQuery(".bwg_container").each(function(){if(0<jQuery(this).find(".wd_error").length&&(r=!0),!r){var e=jQuery(this);if(e[0].offsetHeight)var t=0;else t=1;setInterval(function(){e[0].offsetHeight?1==t&&(t=0,a(e)):0==t&&i(!(t=1))},200)}}),r||jQuery(window).focus(function(){a()}).blur(function(){i(!0)})}),jQuery(window).on("resize",function(){setTimeout(function(){var e=!1;jQuery(".bwg_container").each(function(){0<jQuery(this).find(".wd_error").length&&(e=!0)}),bwg_tags_button_section_visibility(),e||(jQuery(".bwg-thumbnails, .bwg-masonry-thumbnails, .bwg-album-thumbnails").each(function(){bwg_all_thumnails_loaded(this)}),bwg_slideshow_resize(),bwg_image_browser_resize(),bwg_carousel_resize(),bwg_blog_style_resize(),jQuery(".bwg-mosaic-thumbnails").each(function(){bwg_thumbnail_mosaic(this)})),bwg_resize_search_line()},0)}),jQuery(window).on("load",function(){var e=!1;jQuery(".bwg_container").each(function(){0<jQuery(this).find(".wd_error").length&&(e=!0)}),e||(bwg_blog_style_onload(),jQuery(".bwg-mosaic-thumbnails").each(function(){bwg_thumbnail_mosaic(this)}))}),jQuery(".bwg-masonry-thumb-span img, .bwg-mosaic-thumb-span img").on("error",function(){jQuery(this).height(100),jQuery(this).width(100)});
     1var bwg_current_filmstrip_pos,total_thumbnail_count,key,startPoint,endPoint,bwg_image_info_pos,filmstrip_width,preloadCount,filmstrip_thumbnail_width,filmstrip_thumbnail_height,addthis_share,lightbox_comment_pos,bwg_transition_duration,bwg_playInterval,isPopUpOpened=!1,bwg_overflow_initial_value=!1,bwg_overflow_x_initial_value=!1,bwg_overflow_y_initial_value=!1;function gallery_box_ready(){filmstrip_thumbnail_width=jQuery(".bwg_filmstrip_thumbnail").width(),filmstrip_thumbnail_height=jQuery(".bwg_filmstrip_thumbnail").height(),1==gallery_box_data.open_with_fullscreen?(filmstrip_width=jQuery(window).width(),filmstrip_height=jQuery(window).height()):(filmstrip_width=jQuery(".bwg_filmstrip_container").width(),filmstrip_height=jQuery(".bwg_filmstrip_container").height()),preloadCount="horizontal"==gallery_box_data.filmstrip_direction?parseInt(filmstrip_width/filmstrip_thumbnail_width)+gallery_box_data.preload_images_count:parseInt(filmstrip_height/filmstrip_thumbnail_height)+gallery_box_data.preload_images_count,total_thumbnail_count=jQuery(".bwg_filmstrip_thumbnail").length,key=parseInt(jQuery("#bwg_current_image_key").val()),startPoint=0,endPoint=key+preloadCount,jQuery(function(){bwg_load_visible_images(key,preloadCount,total_thumbnail_count),jQuery(".pge_tabs li a").on("click",function(){return jQuery(".pge_tabs_container > div").hide(),jQuery(".pge_tabs li").removeClass("pge_active"),jQuery(jQuery(this).attr("href")).show(),jQuery(this).closest("li").addClass("pge_active"),jQuery("[name=type]").val(jQuery(this).attr("href").substr(1)),!1});var e=jQuery("#bwg_rated").attr("data-params");void 0!==e&&bwg_rating((e=JSON.parse(e)).current_rate,e.current_rate_count,e.current_avg_rating,e.current_image_key)}),1==gallery_box_data.is_pro&&1==gallery_box_data.enable_addthis&&gallery_box_data.addthis_profile_id&&(addthis_share={url:gallery_box_data.share_url}),lightbox_comment_pos=gallery_box_data.lightbox_comment_pos,bwg_image_info_pos=jQuery(".bwg_ctrl_btn_container").length?jQuery(".bwg_ctrl_btn_container").height():0,bwg_transition_duration=gallery_box_data.slideshow_interval<4*gallery_box_data.slideshow_effect_duration&&0!=gallery_box_data.slideshow_interval?1e3*gallery_box_data.slideshow_interval/4:1e3*gallery_box_data.slideshow_effect_duration,gallery_box_data.bwg_transition_duration=bwg_transition_duration,gallery_box_data.bwg_trans_in_progress=!1,(jQuery("#spider_popup_wrap").width()>=jQuery(window).width()||jQuery("#spider_popup_wrap").height()>=jQuery(window).height())&&parseInt(jQuery(".spider_popup_close").css("right"))<0&&jQuery(".spider_popup_close").attr("class","spider_popup_close_fullscreen"),window.clearInterval(bwg_playInterval),bwg_current_filmstrip_pos=gallery_box_data.current_pos,jQuery(document).on("keydown",function(e){jQuery("#bwg_name").is(":focus")||jQuery("#bwg_email").is(":focus")||jQuery("#bwg_comment").is(":focus")||jQuery("#bwg_captcha_input").is(":focus")||("ArrowRight"==e.key?parseInt(jQuery("#bwg_current_image_key").val())==gallery_box_data.data.length-1?bwg_change_image(parseInt(jQuery("#bwg_current_image_key").val()),0):bwg_change_image(parseInt(jQuery("#bwg_current_image_key").val()),parseInt(jQuery("#bwg_current_image_key").val())+1):"ArrowLeft"==e.key?0==parseInt(jQuery("#bwg_current_image_key").val())?bwg_change_image(parseInt(jQuery("#bwg_current_image_key").val()),gallery_box_data.data.length-1):bwg_change_image(parseInt(jQuery("#bwg_current_image_key").val()),parseInt(jQuery("#bwg_current_image_key").val())-1):"Escape"==e.key?spider_destroypopup(1e3):"Space"==e.key&&jQuery(".bwg_play_pause").trigger("click"))}),jQuery(window).resize(function(){void 0!==jQuery().fullscreen&&jQuery.isFunction(jQuery().fullscreen)&&(jQuery.fullscreen.isFullScreen()||bwg_popup_resize())});var r=gallery_box_data.image_width,_=gallery_box_data.image_height;if(1==gallery_box_data.is_pro){1==gallery_box_data.enable_addthis&&gallery_box_data.addthis_profile_id&&jQuery(".at4-share-outer").show(),spider_set_input_value("rate_ajax_task","save_hit_count"),spider_rate_ajax_save("bwg_rate_form");var e=gallery_box_data.data,t=gallery_box_data.current_image_key;jQuery(".bwg_image_hits span").html(++e[t].hit_count);var i=window.location.hash;i&&"-1"!=i.indexOf("bwg")||(location.replace("#bwg"+gallery_box_data.gallery_id+"/"+gallery_box_data.current_image_id),history.replaceState(void 0,void 0,"#bwg"+gallery_box_data.gallery_id+"/"+gallery_box_data.current_image_id))}1==gallery_box_data.image_right_click&&(jQuery(".bwg_image_wrap").bind("contextmenu",function(e){return!1}),jQuery(".bwg_image_wrap").css("webkitTouchCallout","none")),jQuery("#spider_popup_wrap").bind("touchmove",function(e){e.preventDefault()}),void 0!==jQuery().swiperight&&jQuery.isFunction(jQuery().swiperight)&&jQuery("#spider_popup_wrap .bwg_image_wrap").swiperight(function(){return bwg_change_image(parseInt(jQuery("#bwg_current_image_key").val()),(parseInt(jQuery("#bwg_current_image_key").val())+gallery_box_data.data.length-1)%gallery_box_data.data.length),!1}),void 0!==jQuery().swipeleft&&jQuery.isFunction(jQuery().swipeleft)&&jQuery("#spider_popup_wrap .bwg_image_wrap").swipeleft(function(){return bwg_change_image(parseInt(jQuery("#bwg_current_image_key").val()),(parseInt(jQuery("#bwg_current_image_key").val())+1)%gallery_box_data.data.length),!1}),bwg_reset_zoom();var a=/android|webos|iphone|ipad|ipod|blackberry|iemobile|opera mini/i.test(navigator.userAgent.toLowerCase())?"touchend":"click";jQuery("#spider_popup_left").on(a,function(){return bwg_change_image(parseInt(jQuery("#bwg_current_image_key").val()),(parseInt(jQuery("#bwg_current_image_key").val())+gallery_box_data.data.length-1)%gallery_box_data.data.length),!1}),jQuery("#spider_popup_right").on(a,function(){return bwg_change_image(parseInt(jQuery("#bwg_current_image_key").val()),(parseInt(jQuery("#bwg_current_image_key").val())+1)%gallery_box_data.data.length),!1}),-1!=navigator.appVersion.indexOf("MSIE 10")||-1!=navigator.appVersion.indexOf("MSIE 9")?setTimeout(function(){bwg_popup_resize()},1):bwg_popup_resize(),jQuery(".bwg_watermark").css({display:"none"}),setTimeout(function(){bwg_change_watermark_container()},500),void 0!==jQuery().fullscreen&&jQuery.isFunction(jQuery().fullscreen)&&(jQuery.fullscreen.isNativelySupported()||jQuery(".bwg_fullscreen").hide()),"horizontal"==gallery_box_data.filmstrip_direction?(jQuery(".bwg_image_container").height(jQuery(".bwg_image_wrap").height()-gallery_box_data.image_filmstrip_height),jQuery(".bwg_image_container").width(jQuery(".bwg_image_wrap").width())):(jQuery(".bwg_image_container").height(jQuery(".bwg_image_wrap").height()),jQuery(".bwg_image_container").width(jQuery(".bwg_image_wrap").width()-gallery_box_data.image_filmstrip_width)),void 0!==jQuery().mCustomScrollbar&&jQuery.isFunction(jQuery().mCustomScrollbar)&&jQuery(".bwg_comments,.bwg_ecommerce_panel, .bwg_image_info").mCustomScrollbar({scrollInertia:150,theme:"dark-thick",advanced:{updateOnContentResize:!0}});var s=/Firefox/i.test(navigator.userAgent)?"DOMMouseScroll":"mousewheel";jQuery(".bwg_filmstrip").on(s,function(e){var t=window.event||e,i=(t=t.originalEvent?t.originalEvent:t).detail?-40*t.detail:t.wheelDelta,a=/android|webos|iphone|ipad|ipod|blackberry|iemobile|opera mini/i.test(navigator.userAgent.toLowerCase());0<i?jQuery(".bwg_filmstrip_left").trigger(a?"touchend":"click"):jQuery(".bwg_filmstrip_right").trigger(a?"touchend":"click")}),jQuery(".bwg_filmstrip_right").on(a,function(){jQuery(".bwg_filmstrip_thumbnails").stop(!0,!1),"left"==gallery_box_data.left_or_top?"width"==gallery_box_data.width_or_height?(jQuery(".bwg_filmstrip_thumbnails").position().left>=-(jQuery(".bwg_filmstrip_thumbnails").width()-jQuery(".bwg_filmstrip").width())&&(jQuery(".bwg_filmstrip_left").css({opacity:1}),jQuery(".bwg_filmstrip_thumbnails").position().left<-(jQuery(".bwg_filmstrip_thumbnails").width()-jQuery(".bwg_filmstrip").width()-(gallery_box_data.filmstrip_thumb_right_left_space+gallery_box_data.image_filmstrip_width+gallery_box_data.all_images_right_left_space))?jQuery(".bwg_filmstrip_thumbnails").animate({left:-(jQuery(".bwg_filmstrip_thumbnails").width()-jQuery(".bwg_filmstrip").width()-gallery_box_data.all_images_right_left_space)},500,"linear"):jQuery(".bwg_filmstrip_thumbnails").animate({left:jQuery(".bwg_filmstrip_thumbnails").position().left-(gallery_box_data.filmstrip_thumb_right_left_space+gallery_box_data.image_filmstrip_width)},500,"linear")),window.setTimeout(function(){jQuery(".bwg_filmstrip_thumbnails").position().left==-(jQuery(".bwg_filmstrip_thumbnails").width()-jQuery(".bwg_filmstrip").width())&&jQuery(".bwg_filmstrip_right").css({opacity:.3})},500)):(jQuery(".bwg_filmstrip_thumbnails").position().left>=-(jQuery(".bwg_filmstrip_thumbnails").height()-jQuery(".bwg_filmstrip").height())&&(jQuery(".bwg_filmstrip_left").css({opacity:1}),jQuery(".bwg_filmstrip_thumbnails").position().left<-(jQuery(".bwg_filmstrip_thumbnails").height()-jQuery(".bwg_filmstrip").height()-(gallery_box_data.filmstrip_thumb_right_left_space+gallery_box_data.image_filmstrip_width+gallery_box_data.all_images_right_left_space))?jQuery(".bwg_filmstrip_thumbnails").animate({left:-(jQuery(".bwg_filmstrip_thumbnails").height()-jQuery(".bwg_filmstrip").height()-gallery_box_data.all_images_right_left_space)},500,"linear"):jQuery(".bwg_filmstrip_thumbnails").animate({left:jQuery(".bwg_filmstrip_thumbnails").position().left-(gallery_box_data.filmstrip_thumb_right_left_space+gallery_box_data.image_filmstrip_width)},500,"linear")),window.setTimeout(function(){jQuery(".bwg_filmstrip_thumbnails").position().left==-(jQuery(".bwg_filmstrip_thumbnails").height()-jQuery(".bwg_filmstrip").height())&&jQuery(".bwg_filmstrip_right").css({opacity:.3})},500)):"width"==gallery_box_data.width_or_height?(jQuery(".bwg_filmstrip_thumbnails").position().top>=-(jQuery(".bwg_filmstrip_thumbnails").width()-jQuery(".bwg_filmstrip").width())&&(jQuery(".bwg_filmstrip_left").css({opacity:1}),jQuery(".bwg_filmstrip_thumbnails").position().top<-(jQuery(".bwg_filmstrip_thumbnails").width()-jQuery(".bwg_filmstrip").width()-(gallery_box_data.filmstrip_thumb_right_left_space+gallery_box_data.image_filmstrip_width+gallery_box_data.all_images_right_left_space))?jQuery(".bwg_filmstrip_thumbnails").animate({left:-(jQuery(".bwg_filmstrip_thumbnails").width()-jQuery(".bwg_filmstrip").width()-gallery_box_data.all_images_right_left_space)},500,"linear"):jQuery(".bwg_filmstrip_thumbnails").animate({left:jQuery(".bwg_filmstrip_thumbnails").position().top-(gallery_box_data.filmstrip_thumb_right_left_space+gallery_box_data.image_filmstrip_width)},500,"linear")),window.setTimeout(function(){jQuery(".bwg_filmstrip_thumbnails").position().left==-(jQuery(".bwg_filmstrip_thumbnails").width()-jQuery(".bwg_filmstrip").width())&&jQuery(".bwg_filmstrip_right").css({opacity:.3})},500)):(jQuery(".bwg_filmstrip_thumbnails").position().top>=-(jQuery(".bwg_filmstrip_thumbnails").height()-jQuery(".bwg_filmstrip").height())&&(jQuery(".bwg_filmstrip_left").css({opacity:1}),jQuery(".bwg_filmstrip_thumbnails").position().top<-(jQuery(".bwg_filmstrip_thumbnails").height()-jQuery(".bwg_filmstrip").height()-(gallery_box_data.filmstrip_thumb_right_left_space+gallery_box_data.image_filmstrip_width+gallery_box_data.all_images_right_left_space))?jQuery(".bwg_filmstrip_thumbnails").animate({top:-(jQuery(".bwg_filmstrip_thumbnails").height()-jQuery(".bwg_filmstrip").height()-gallery_box_data.all_images_right_left_space)},500,"linear"):jQuery(".bwg_filmstrip_thumbnails").animate({top:jQuery(".bwg_filmstrip_thumbnails").position().top-(gallery_box_data.filmstrip_thumb_right_left_space+gallery_box_data.image_filmstrip_width)},500,"linear")),window.setTimeout(function(){jQuery(".bwg_filmstrip_thumbnails").position().left==-(jQuery(".bwg_filmstrip_thumbnails").height()-jQuery(".bwg_filmstrip").height())&&jQuery(".bwg_filmstrip_right").css({opacity:.3})},500))}),"left"==gallery_box_data.left_or_top?jQuery(".bwg_filmstrip_left").on(a,function(){jQuery(".bwg_filmstrip_thumbnails").stop(!0,!1),jQuery(".bwg_filmstrip_thumbnails").position().left<0&&(jQuery(".bwg_filmstrip_right").css({opacity:1}),jQuery(".bwg_filmstrip_thumbnails").position().left>-(gallery_box_data.filmstrip_thumb_right_left_space+gallery_box_data.image_filmstrip_width)?jQuery(".bwg_filmstrip_thumbnails").animate({left:0},500,"linear"):jQuery(".bwg_filmstrip_thumbnails").animate({left:jQuery(".bwg_filmstrip_thumbnails").position().left+gallery_box_data.image_filmstrip_width+gallery_box_data.filmstrip_thumb_right_left_space},500,"linear")),window.setTimeout(function(){0==jQuery(".bwg_filmstrip_thumbnails").position().left&&jQuery(".bwg_filmstrip_left").css({opacity:.3})},500)}):jQuery(".bwg_filmstrip_left").on(a,function(){jQuery(".bwg_filmstrip_thumbnails").stop(!0,!1),jQuery(".bwg_filmstrip_thumbnails").position().top<0&&(jQuery(".bwg_filmstrip_right").css({opacity:1}),jQuery(".bwg_filmstrip_thumbnails").position().top>-(gallery_box_data.filmstrip_thumb_right_left_space+gallery_box_data.image_filmstrip_width)?jQuery(".bwg_filmstrip_thumbnails").animate({top:0},500,"linear"):jQuery(".bwg_filmstrip_thumbnails").animate({top:jQuery(".bwg_filmstrip_thumbnails").position().top+gallery_box_data.image_filmstrip_width+gallery_box_data.filmstrip_thumb_right_left_space},500,"linear")),window.setTimeout(function(){0==jQuery(".bwg_filmstrip_thumbnails").position().top&&jQuery(".bwg_filmstrip_left").css({opacity:.3})},500)}),"width"==gallery_box_data.width_or_height?bwg_set_filmstrip_pos(jQuery(".bwg_filmstrip").width(),"",gallery_box_data):bwg_set_filmstrip_pos(jQuery(".bwg_filmstrip").height(),"",gallery_box_data),jQuery(".bwg_info").on(a,function(){if("none"==jQuery(".bwg_image_info_container1").css("display")){jQuery(".bwg_image_info_container1").css("display","table-cell"),jQuery(".bwg_info").attr("title",bwg_objectsL10n.bwg_hide_info);jQuery(".bwg_ctrl_btn_container").length&&jQuery(".bwg_ctrl_btn_container").height();jQuery(".bwg_image_info").css("height","auto"),bwg_info_height_set()}else jQuery(".bwg_image_info_container1").css("display","none"),jQuery(".bwg_info").attr("title",bwg_objectsL10n.bwg_show_info)}),jQuery(".bwg_rate").on(a,function(){"none"==jQuery(".bwg_image_rate_container1").css("display")?(jQuery(".bwg_image_rate_container1").css("display","table-cell"),jQuery(".bwg_rate").attr("title",bwg_objectsL10n.bwg_hide_rating)):(jQuery(".bwg_image_rate_container1").css("display","none"),jQuery(".bwg_rate").attr("title",bwg_objectsL10n.bwg_show_rating))}),jQuery(".bwg_zoom").on(a,function(){var e=["mousemove","touchmove"];jQuery("figure.bwg_popup_image").each(function(){var i=jQuery(this);i.hasClass("zoom")?jQuery.each(e,function(e,t){i.removeClass("zoom"),i.off(t)}):jQuery.each(e,function(e,t){i.addClass("zoom"),i.on(t,function(e){var t,i,a,r;window.clearInterval(bwg_playInterval),jQuery(".bwg_play_pause").attr("title",bwg_objectsL10n.bwg_play),jQuery(".bwg_play_pause").attr("class","bwg-icon-play bwg_ctrl_btn bwg_play_pause");var _=e.target,s=_.getBoundingClientRect();e.targetTouches&&(a=e.targetTouches[0].clientX-s.left,r=e.targetTouches[0].clientY-s.top),t=e.offsetX?e.offsetX:e.targetTouches?a:_.offsetHeight,i=e.offsetY?e.offsetY:e.targetTouches?r:_.offsetWidth,x=t/_.offsetWidth*100,y=i/_.offsetHeight*100,_.parentNode.style.backgroundPosition=x+"% "+y+"%"})})})}),jQuery(".bwg_comment, .bwg_comments_close_btn").on(a,function(){bwg_comment()}),jQuery(".bwg_ecommerce, .bwg_ecommerce_close_btn").on(a,function(){bwg_ecommerce()}),jQuery(".bwg_toggle_container").on(a,function(){var e="top"==gallery_box_data.lightbox_ctrl_btn_pos?"bwg-icon-caret-up":"bwg-icon-caret-down",t="top"==gallery_box_data.lightbox_ctrl_btn_pos?"bwg-icon-caret-down":"bwg-icon-caret-up";jQuery(".bwg_toggle_container i").hasClass(e)?(gallery_box_data.enable_image_filmstrip&&"bottom"==gallery_box_data.lightbox_filmstrip_pos||"bottom"!=gallery_box_data.lightbox_ctrl_btn_pos||"bottom"!=gallery_box_data.lightbox_rate_pos?gallery_box_data.enable_image_filmstrip&&"top"==gallery_box_data.lightbox_filmstrip_pos||"top"!=gallery_box_data.lightbox_ctrl_btn_pos||"top"!=gallery_box_data.lightbox_rate_pos||jQuery(".bwg_image_rate").animate({top:0},500):jQuery(".bwg_image_rate").animate({bottom:0},500),gallery_box_data.enable_image_filmstrip&&"bottom"==gallery_box_data.lightbox_filmstrip_pos||"bottom"!=gallery_box_data.lightbox_ctrl_btn_pos||"bottom"!=gallery_box_data.lightbox_hit_pos?gallery_box_data.enable_image_filmstrip&&"top"==gallery_box_data.lightbox_filmstrip_pos||"top"!=gallery_box_data.lightbox_ctrl_btn_pos||"top"!=gallery_box_data.lightbox_hit_pos||jQuery(".bwg_image_hit").animate({top:0},500):jQuery(".bwg_image_hit").animate({bottom:0},500),"bottom"==gallery_box_data.lightbox_ctrl_btn_pos?(jQuery(".bwg_ctrl_btn_container").animate({bottom:"-"+jQuery(".bwg_ctrl_btn_container").height()},500).addClass("closed"),jQuery(".bwg_toggle_container").animate({bottom:0},{duration:500,complete:function(){jQuery(".bwg_toggle_container i").attr("class","bwg_toggle_btn "+t)}})):(jQuery(".bwg_ctrl_btn_container").animate({top:"-"+jQuery(".bwg_ctrl_btn_container").height()},500).addClass("closed"),jQuery(".bwg_toggle_container").animate({top:0},{duration:500,complete:function(){jQuery(".bwg_toggle_container i").attr("class","bwg_toggle_btn "+t)}}))):(gallery_box_data.enable_image_filmstrip&&"bottom"==gallery_box_data.lightbox_filmstrip_pos||"bottom"!=gallery_box_data.lightbox_ctrl_btn_pos||"bottom"!=gallery_box_data.lightbox_rate_pos?gallery_box_data.enable_image_filmstrip&&"top"==gallery_box_data.lightbox_filmstrip_pos||"top"!=gallery_box_data.lightbox_ctrl_btn_pos||"top"!=gallery_box_data.lightbox_rate_pos||jQuery(".bwg_image_rate").animate({top:jQuery(".bwg_ctrl_btn_container").height()},500):jQuery(".bwg_image_rate").animate({bottom:jQuery(".bwg_ctrl_btn_container").height()},500),gallery_box_data.enable_image_filmstrip&&"bottom"==gallery_box_data.lightbox_filmstrip_pos||"bottom"!=gallery_box_data.lightbox_ctrl_btn_pos||"bottom"!=gallery_box_data.lightbox_hit_pos?gallery_box_data.enable_image_filmstrip&&"top"==gallery_box_data.lightbox_filmstrip_pos||"top"!=gallery_box_data.lightbox_ctrl_btn_pos||"top"!=gallery_box_data.lightbox_hit_pos||jQuery(".bwg_image_hit").animate({top:jQuery(".bwg_ctrl_btn_container").height()},500):jQuery(".bwg_image_hit").animate({bottom:jQuery(".bwg_ctrl_btn_container").height()},500),"bottom"==gallery_box_data.lightbox_ctrl_btn_pos?(jQuery(".bwg_ctrl_btn_container").animate({bottom:0},500).removeClass("closed"),jQuery(".bwg_toggle_container").animate({bottom:jQuery(".bwg_ctrl_btn_container").height()},{duration:500,complete:function(){jQuery(".bwg_toggle_container i").attr("class","bwg_toggle_btn "+e)}})):(jQuery(".bwg_ctrl_btn_container").animate({top:0},500).removeClass("closed"),jQuery(".bwg_toggle_container").animate({top:jQuery(".bwg_ctrl_btn_container").height()},{duration:500,complete:function(){jQuery(".bwg_toggle_container i").attr("class","bwg_toggle_btn "+e)}}))),bwg_info_position(!0)});var o=window.innerHeight;jQuery(".bwg_resize-full").on(a,function(){bwg_resize_full()}),jQuery(".bwg_fullscreen").on(a,function(){jQuery(".bwg_watermark").css({display:"none"});var e,t=0;if((jQuery(".bwg_comment_container").hasClass("bwg_open")||jQuery(".bwg_ecommerce_container").hasClass("bwg_open"))&&(t=jQuery(".bwg_comment_container").width()||jQuery(".bwg_ecommerce_container").width()),void 0!==jQuery().fullscreen&&jQuery.isFunction(jQuery().fullscreen))if(jQuery.fullscreen.isFullScreen())jQuery.fullscreen.exit(),e=o,jQuery(window).width()>gallery_box_data.image_width&&(r=gallery_box_data.image_width),window.innerHeight>gallery_box_data.image_height&&(_=gallery_box_data.image_height),gallery_box_data.open_with_fullscreen&&(r=jQuery(window).width(),_=e),jQuery("#spider_popup_wrap").on("fscreenclose",function(){jQuery("#spider_popup_wrap").css({width:r,height:_,left:"50%",top:"50%",marginLeft:-r/2,marginTop:-_/2,zIndex:1e5}),jQuery(".bwg_image_wrap").css({width:r-t}),jQuery(".bwg_image_container").css({height:_-("horizontal"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_height:0),width:r-t-("vertical"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_width:0)}),jQuery(".bwg_image_info").css("height","auto"),bwg_info_height_set(),jQuery(".bwg_popup_image").css({maxWidth:r-t-("vertical"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_width:0),maxHeight:_-("horizontal"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_height:0)}),jQuery(".bwg_popup_embed > .bwg_embed_frame > img, .bwg_popup_embed > .bwg_embed_frame > video").css({maxWidth:r-t-("vertical"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_width:0),maxHeight:_-("horizontal"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_height:0)}),bwg_resize_instagram_post(),bwg_change_watermark_container(),"width"==gallery_box_data.width_or_height?(jQuery(".bwg_filmstrip_container").css({width:r-("horizontal"==gallery_box_data.filmstrip_direction?"comment_container_width":0)}),jQuery(".bwg_filmstrip").css({width:r-("horizontal"==gallery_box_data.filmstrip_direction?"comment_container_width":0)-2*("horizontal"==gallery_box_data.filmstrip_direction?jQuery(".bwg_filmstrip_right").width():jQuery(".bwg_filmstrip_right").height())}),bwg_set_filmstrip_pos(r-2*("horizontal"==gallery_box_data.filmstrip_direction?jQuery(".bwg_filmstrip_right").width():jQuery(".bwg_filmstrip_right").height()),"",gallery_box_data)):(jQuery(".bwg_filmstrip_container").css({height:_-("horizontal"==gallery_box_data.filmstrip_direction?"comment_container_width":0)}),jQuery(".bwg_filmstrip").css({height:_-("horizontal"==gallery_box_data.filmstrip_direction?"comment_container_width":0)-2*("horizontal"==gallery_box_data.filmstrip_direction?jQuery(".bwg_filmstrip_right").width():jQuery(".bwg_filmstrip_right").height())}),bwg_set_filmstrip_pos(_-2*("horizontal"==gallery_box_data.filmstrip_direction?jQuery(".bwg_filmstrip_right").width():jQuery(".bwg_filmstrip_right").height()),"",gallery_box_data),"horizontal"!=gallery_box_data.filmstrip_direction&&jQuery(".bwg_filmstrip_right").css({top:_-jQuery(".bwg_filmstrip_right").height()})),jQuery(".bwg_resize-full").show(),jQuery(".bwg_resize-full").attr("class","bwg-icon-expand bwg_ctrl_btn bwg_resize-full"),jQuery(".bwg_resize-full").attr("title",bwg_objectsL10n.bwg_maximize),jQuery(".bwg_fullscreen").attr("class","bwg-icon-arrows-out bwg_ctrl_btn bwg_fullscreen"),jQuery(".bwg_fullscreen").attr("title",bwg_objectsL10n.bwg_fullscreen),jQuery("#spider_popup_wrap").width()<jQuery(window).width()&&jQuery("#spider_popup_wrap").height()<window.innerHeight&&jQuery(".spider_popup_close_fullscreen").attr("class","spider_popup_close")});else{jQuery("#spider_popup_wrap").fullscreen();var i=screen.width,a=screen.height;jQuery("#spider_popup_wrap").css({width:i,height:a,left:0,top:0,margin:0,zIndex:1e5}),jQuery(".bwg_image_wrap").css({width:i-t}),jQuery(".bwg_image_container").css({height:a-("horizontal"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_height:0),width:i-t-("vertical"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_width:0)}),jQuery(".bwg_image_info").css("height","auto"),bwg_info_height_set(),jQuery(".bwg_popup_image").css({maxWidth:i-t-("vertical"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_width:0),maxHeight:a-("horizontal"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_height:0)}),jQuery(".bwg_popup_embed > .bwg_embed_frame > img, .bwg_popup_embed > .bwg_embed_frame > video").css({maxWidth:i-t-("vertical"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_width:0),maxHeight:a-("horizontal"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_height:0)}),bwg_resize_instagram_post(),bwg_change_watermark_container(),"width"==gallery_box_data.width_or_height?(jQuery(".bwg_filmstrip_container").css({width:i-("horizontal"==gallery_box_data.filmstrip_direction?t:0)},500),jQuery(".bwg_filmstrip").css({width:i-("horizontal"==gallery_box_data.filmstrip_direction?t:0)-2*("horizontal"==gallery_box_data.filmstrip_direction?jQuery(".bwg_filmstrip_right").width():jQuery(".bwg_filmstrip_right").height())},500),bwg_set_filmstrip_pos(i-("horizontal"==gallery_box_data.filmstrip_direction?t:0)-2*("horizontal"==gallery_box_data.filmstrip_direction?jQuery(".bwg_filmstrip_right").width():jQuery(".bwg_filmstrip_right").height()),"",gallery_box_data)):(jQuery(".bwg_filmstrip_container").css({height:a-("horizontal"==gallery_box_data.filmstrip_direction)?"comment_container_width":0}),jQuery(".bwg_filmstrip").css({height:a-("horizontal"==gallery_box_data.filmstrip_direction?"comment_container_width":0)-2*("horizontal"==gallery_box_data.filmstrip_direction?jQuery(".bwg_filmstrip_right").width():jQuery(".bwg_filmstrip_right").height())}),bwg_set_filmstrip_pos(a-("horizontal"==gallery_box_data.filmstrip_direction?"comment_container_width":0)-2*("horizontal"==gallery_box_data.filmstrip_direction?jQuery(".bwg_filmstrip_right").width():jQuery(".bwg_filmstrip_right").height()),"",gallery_box_data),"horizontal"!=gallery_box_data.filmstrip_direction&&jQuery(".bwg_filmstrip_right").css({top:a-jQuery(".bwg_filmstrip_right").height()})),jQuery(".bwg_resize-full").hide(),jQuery(".bwg_fullscreen").attr("class","bwg-icon-compress bwg_ctrl_btn bwg_fullscreen"),jQuery(".bwg_fullscreen").attr("title",bwg_objectsL10n.bwg_exit_fullscreen),jQuery(".spider_popup_close").attr("class","spider_popup_close_fullscreen")}return!1}),jQuery(".bwg_play_pause").on(a,function(){jQuery(".bwg_play_pause").length&&jQuery(".bwg_play_pause").hasClass("bwg-icon-play")&&!jQuery(".bwg_comment_container").hasClass("bwg_open")?(bwg_play(gallery_box_data.data),jQuery(".bwg_play_pause").attr("title",bwg_objectsL10n.bwg_pause),jQuery(".bwg_play_pause").attr("class","bwg-icon-pause bwg_ctrl_btn bwg_play_pause")):(window.clearInterval(bwg_playInterval),jQuery(".bwg_play_pause").attr("title",bwg_objectsL10n.bwg_play),jQuery(".bwg_play_pause").attr("class","bwg-icon-play bwg_ctrl_btn bwg_play_pause"))}),gallery_box_data.open_with_autoplay&&(bwg_play(gallery_box_data.data),jQuery(".bwg_play_pause").attr("title",bwg_objectsL10n.bwg_pause),jQuery(".bwg_play_pause").attr("class","bwg-icon-pause bwg_ctrl_btn bwg_play_pause")),gallery_box_data.open_with_fullscreen&&bwg_open_with_fullscreen(),jQuery(".bwg_popup_image").removeAttr("width"),jQuery(".bwg_popup_image").removeAttr("height"),jQuery(window).focus(function(){jQuery(".bwg_play_pause").length&&!jQuery(".bwg_play_pause").hasClass("bwg-icon-play")&&bwg_play(gallery_box_data.data)}),jQuery(window).blur(function(){event_stack=[],window.clearInterval(bwg_playInterval)});gallery_box_data.lightbox_ctrl_btn_pos;1==gallery_box_data.open_ecommerce&&setTimeout(function(){bwg_ecommerce()},400),1==gallery_box_data.open_comment&&bwg_comment()}function spider_createpopup(e,t,a,r,_,s,o,l){e=e.replace(/&#038;/g,"&"),isPopUpOpened||(isPopUpOpened=!0,spider_isunsupporteduseragent()||(bwg_overflow_initial_value=jQuery("html").css("overflow"),bwg_overflow_x_initial_value=jQuery("html").css("overflow-x"),bwg_overflow_y_initial_value=jQuery("html").css("overflow-y"),jQuery("html").attr("style","overflow:hidden !important;"),jQuery("#bwg_spider_popup_loading_"+t).show(),jQuery("#spider_popup_overlay_"+t).css({display:"block"}),jQuery.ajax({type:"GET",url:e,success:function(e){var t=jQuery('<div id="spider_popup_wrap" class="spider_popup_wrap" style=" width:'+a+"px; height:"+r+"px; margin-top:-"+r/2+"px; margin-left: -"+a/2+'px; ">'+e+"</div>").hide().appendTo("body");if(gallery_box_ready(),spider_showpopup(s,o,t,_,l),"undefined"!=typeof addthis){jQuery(".addthis-smartlayers").show();var i=setInterval(function(){void 0!==addthis.layers.refresh&&(clearInterval(i),addthis.layers.refresh())},100)}},beforeSend:function(){},complete:function(){}})))}function spider_showpopup(e,t,i,a,r){var _=gallery_box_data.data,s=parseInt(jQuery("#bwg_current_image_key").val());if(void 0!==_[s]&&(isPopUpOpened=!0,-1<_[s].filetype.indexOf("EMBED_")?bwg_first_image_load(i,r):jQuery("#spider_popup_wrap .bwg_popup_image_spun img").prop("complete")?bwg_first_image_load(i,r):jQuery("#spider_popup_wrap .bwg_popup_image_spun img").on("load error",function(){bwg_first_image_load(i,r)}),"EMBED_OEMBED_INSTAGRAM_POST"==_[s].filetype&&"undefined"!=typeof instgrm&&void 0!==instgrm.Embeds)){instgrm.Embeds.process();var o=parseInt(jQuery("#bwg_image_container").height());jQuery(".bwg_embed_frame .instagram-media").css({"max-height":o+"px"})}}function bwg_first_image_load(e,t){e.show(),""==gallery_box_data.data[key].alt&&""==gallery_box_data.data[key].description?jQuery(".bwg_info").hide():jQuery(".bwg_info").show();var i=jQuery(".bwg_ctrl_btn_container").height();"bottom"==t?jQuery(".bwg_toggle_container").css("bottom",i+"px"):"top"==t&&jQuery(".bwg_toggle_container").css("top",i+"px"),jQuery(".bwg_spider_popup_loading").hide(),1==gallery_box_data.preload_images&&bwg_preload_images(parseInt(jQuery("#bwg_current_image_key").val())),bwg_load_filmstrip(),bwg_info_height_set()}function spider_isunsupporteduseragent(){return!window.XMLHttpRequest}function spider_destroypopup(e){jQuery(".addthis-smartlayers").hide(),null!=document.getElementById("spider_popup_wrap")&&(void 0!==jQuery().fullscreen&&jQuery.isFunction(jQuery().fullscreen)&&jQuery.fullscreen.isFullScreen()&&jQuery.fullscreen.exit(),"undefined"!=typeof enable_addthis&&enable_addthis&&jQuery(".at4-share-outer").hide(),setTimeout(function(){jQuery(".spider_popup_wrap").remove(),jQuery(".bwg_spider_popup_loading").css({display:"none"}),jQuery(".spider_popup_overlay").css({display:"none"}),jQuery(document).off("keydown"),!1!==bwg_overflow_initial_value&&jQuery("html").css("overflow",bwg_overflow_initial_value),!1!==bwg_overflow_x_initial_value&&jQuery("html").css("overflow-x",bwg_overflow_x_initial_value),!1!==bwg_overflow_y_initial_value&&jQuery("html").css("overflow-y",bwg_overflow_y_initial_value)},20)),isPopUpOpened=!1;var t=/android|webos|iphone|ipad|ipod|blackberry|iemobile|opera mini/i.test(navigator.userAgent.toLowerCase()),i=document.querySelector('meta[name="viewport"]');t&&i&&(i.content="width=device-width, initial-scale=1");var a=jQuery(document).scrollTop();bwg_objectsL10n.is_pro&&history.pushState(history.state,null,window.location.origin+window.location.pathname+window.location.search),jQuery(document).scrollTop(a),void 0!==gallery_box_data.bwg_playInterval&&clearInterval(gallery_box_data.bwg_playInterval)}function get_ajax_pricelist(){var e={};return jQuery(".add_to_cart_msg").html(""),e.ajax_task="display",e.image_id=jQuery("#bwg_popup_image").attr("image_id"),jQuery("#ecommerce_ajax_loading").css("height",jQuery(".bwg_ecommerce_panel").css("height")),jQuery("#ecommerce_opacity_div").css("width",jQuery(".bwg_ecommerce_panel").css("width")),jQuery("#ecommerce_opacity_div").css("height",jQuery(".bwg_ecommerce_panel").css("height")),jQuery("#ecommerce_loading_div").css("width",jQuery(".bwg_ecommerce_panel").css("width")),jQuery("#ecommerce_loading_div").css("height",jQuery(".bwg_ecommerce_panel").css("height")),jQuery("#ecommerce_opacity_div").css("display","block"),jQuery("#ecommerce_loading_div").css("display","table-cell"),jQuery.ajax({type:"POST",url:jQuery("#bwg_ecommerce_form").attr("action"),data:e,success:function(e){jQuery(".pge_tabs li a").on("click",function(){return jQuery(".pge_tabs_container > div").hide(),jQuery(".pge_tabs li").removeClass("pge_active"),jQuery(jQuery(this).attr("href")).show(),jQuery(this).closest("li").addClass("pge_active"),jQuery("[name=type]").val(jQuery(this).attr("href").substr(1)),!1});var t=jQuery(e).find(".manual").html();jQuery(".manual").html(t);var i=jQuery(e).find(".downloads").html();jQuery(".downloads").html(i);var a=jQuery(e).find(".pge_options").html();jQuery(".pge_options").html(a);var r=jQuery(e).find(".pge_add_to_cart").html();jQuery(".pge_add_to_cart").html(r)},beforeSend:function(){},complete:function(){jQuery("#ecommerce_opacity_div").css("display","none"),jQuery("#ecommerce_loading_div").css("display","none")}}),!1}function spider_ajax_save(e){var t={};return t.bwg_name=jQuery("#bwg_name").val(),t.bwg_comment=jQuery("#bwg_comment").val(),t.bwg_email=jQuery("#bwg_email").val(),t.bwg_captcha_input=jQuery("#bwg_captcha_input").val(),t.ajax_task=jQuery("#ajax_task").val(),t.image_id=jQuery("#image_id").val(),t.comment_id=jQuery("#comment_id").val(),jQuery("#ajax_loading").css("height",jQuery(".bwg_comments").css("height")),jQuery("#opacity_div").css("width",jQuery(".bwg_comments").css("width")),jQuery("#opacity_div").css("height",jQuery(".bwg_comments").css("height")),jQuery("#loading_div").css("width",jQuery(".bwg_comments").css("width")),jQuery("#loading_div").css("height",jQuery(".bwg_comments").css("height")),document.getElementById("opacity_div").style.display="",document.getElementById("loading_div").style.display="table-cell",jQuery.ajax({type:"POST",url:jQuery("#"+e).attr("action"),data:t,success:function(e){jQuery(".bwg_comments").mCustomScrollbar("destroy");var t=jQuery(e).find(".bwg_comments").html();jQuery(".bwg_comments").html(t)},beforeSend:function(){},complete:function(){document.getElementById("opacity_div").style.display="none",document.getElementById("loading_div").style.display="none",jQuery(".bwg_comments").mCustomScrollbar({scrollInertia:150,theme:"dark-thick",advanced:{updateOnContentResize:!0}}),jQuery(".bwg_comments_close_btn").click(bwg_comment),bwg_captcha_refresh("bwg_captcha")}}),!1}function spider_rate_ajax_save(i,e){var t={};return t.image_id=jQuery("#"+i+" input[name='image_id']").val(),t.rate=void 0!==e?e:jQuery("#"+i+" input[name='score']").val(),t.ajax_task=jQuery("#rate_ajax_task").val(),jQuery.ajax({type:"POST",url:jQuery("#"+i).attr("action"),data:t,success:function(e){var t=jQuery(e).find("#"+i).html();jQuery("#"+i).html(t)},beforeSend:function(){},complete:function(){}})}function spider_set_input_value(e,t){document.getElementById(e)&&(document.getElementById(e).value=t)}function spider_form_submit(e,t){document.getElementById(t)&&document.getElementById(t).submit(),e.preventDefault?e.preventDefault():e.returnValue=!1}function spider_check_required(e,t){return""==jQuery("#"+e).val()&&(alert(t+" "+bwg_objectsL10n.bwg_field_required),jQuery("#"+e).attr("style","border-color: #FF0000;"),jQuery("#"+e).focus(),!0)}function comment_check_privacy_policy(){var e=jQuery("#bwg_submit");e.removeClass("bwg-submit-disabled"),e.removeAttr("disabled"),jQuery("#bwg_comment_privacy_policy").is(":checked")||(e.addClass("bwg-submit-disabled"),e.attr("disabled","disabled"))}function spider_check_email(e){if(""!=jQuery("#"+e).val())return-1==jQuery("#"+e).val().replace(/^\s+|\s+$/g,"").search(/^\w+((-\w+)|(\.\w+))*\@[A-Za-z0-9]+((\.|-)[A-Za-z0-9]+)*\.[A-Za-z0-9]+$/)&&(alert(bwg_objectsL10n.bwg_mail_validation),!0)}function bwg_captcha_refresh(e){document.getElementById(e+"_img")&&document.getElementById(e+"_input")&&(srcArr=document.getElementById(e+"_img").src.split("&r="),document.getElementById(e+"_img").src=srcArr[0]+"&r="+Math.floor(100*Math.random()),document.getElementById(e+"_img").style.display="inline-block",document.getElementById(e+"_input").value="")}function bwg_play_instagram_video(e,t){jQuery(e).parent().find("video").each(function(){jQuery(this).get(0).paused?(jQuery(this).get(0).play(),jQuery(e).children().hide()):(jQuery(this).get(0).pause(),jQuery(e).children().show())})}function bwg_add_comment(){var t=jQuery("#bwg_comment_form"),e=t.attr("action"),i={ajax_task:"add_comment"};return i.comment_name=t.find("#bwg_name").val(),i.comment_email=t.find("#bwg_email").val(),i.comment_text=t.find("#bwg_comment").val(),i.comment_captcha=t.find("#bwg_captcha_input").val(),i.popup_enable_captcha=t.find("#bwg_popup_enable_captcha").val(),i.privacy_policy=t.find("#bwg_comment_privacy_policy").is(":checked")?1:0,i.comment_image_id=jQuery("#bwg_popup_image").attr("image_id"),i.comment_moderation=t.find("#bwg_comment_moderation").val(),jQuery(".bwg_spider_ajax_loading").hide(),jQuery.ajax({url:e,type:"POST",dataType:"json",data:i,success:function(e){jQuery(".bwg_comment_error").text(""),1==e.error?jQuery.each(e.error_messages,function(e,t){t&&jQuery(".bwg_comment_"+e+"_error").text(t)}):(t.find("#bwg_comment").val(""),jQuery(".bwg_comment_waiting_message").hide(),0==e.published&&jQuery(".bwg_comment_waiting_message").show(),""!=e.html_comments_block&&jQuery("#bwg_added_comments").html(e.html_comments_block).show())},beforeSend:function(){jQuery(".bwg_spider_ajax_loading").show()},complete:function(){0<t.find("#bwg_comment_privacy_policy").length&&(t.find("#bwg_comment_privacy_policy").prop("checked",!1),comment_check_privacy_policy()),bwg_captcha_refresh("bwg_captcha"),jQuery(".bwg_spider_ajax_loading").hide()},error:function(){}}),!1}function bwg_remove_comment(t){var e=jQuery("#bwg_comment_form").attr("action"),i={ajax_task:"delete_comment"};return i.id_image=jQuery("#bwg_popup_image").attr("image_id"),i.id_comment=t,jQuery.ajax({url:e,type:"POST",dataType:"json",data:i,success:function(e){0==e.error&&jQuery("#bwg_comment_block_"+t).fadeOut("slow").remove()},beforeSend:function(){},complete:function(){},error:function(){}}),!1}function bwg_gallery_box(e,t,i,a){jQuery(".bwg-validate").each(function(){jQuery(this).on("keypress change",function(){jQuery(this).parent().next().find(".bwg_comment_error").html("")})}),void 0===i&&(i=!1);var r,_=t.data("bwg");r=t.find(".bwg-container").data("lightbox-url")?t.find(".bwg-container").data("lightbox-url"):t.data("lightbox-url");var s=t.find(".cur_gal_id").val(),o=jQuery("#bwg_tag_id_"+s).val();o=o||0;var l=1==i?"&open_ecommerce=1":"",n=jQuery("#bwg_search_input_"+_).val(),g=jQuery("#bwg_order_"+_).val()?"&filtersortby="+jQuery("#bwg_order_"+_).val():"";n=n||"",void 0!==a&&(r+="&gallery_id="+a);var w="",b=jQuery("#bwg_blog_style_share_buttons_"+e).attr("data-open-comment");void 0!==b&&!1!==b&&(w="&open_comment=1"),spider_createpopup(r+"&bwg_random_seed="+jQuery("#bwg_random_seed_"+_).val()+"&image_id="+e+"&filter_tag="+o+l+w+"&filter_search_name="+n+g,_,t.data("popup-width"),t.data("popup-height"),1,"testpopup",5,t.data("buttons-position"))}function bwg_change_image_lightbox(e,a,r,t){if(jQuery("#bwg_rate_form input[name='image_id']").val(r[a].id),bwg_current_key=gallery_box_data.bwg_current_key,""==gallery_box_data.data[a].alt&&""==gallery_box_data.data[a].description?jQuery(".bwg_info").hide():jQuery(".bwg_info").show(),jQuery(".bwg_image_info").css("height","auto"),setTimeout(function(){bwg_info_height_set(),jQuery(".bwg_image_description").height()>jQuery(".bwg_image_info").height()&&jQuery(".mCSB_container").hasClass("mCS_no_scrollbar")&&jQuery(".bwg_image_info").mCustomScrollbar("destroy"),jQuery(".bwg_image_info").hasClass("mCustomScrollbar")||void 0!==jQuery().mCustomScrollbar&&jQuery.isFunction(jQuery().mCustomScrollbar)&&jQuery(".bwg_image_info").mCustomScrollbar({scrollInertia:150,theme:"dark-thick",advanced:{updateOnContentResize:!0}})},200),jQuery("#spider_popup_left").show(),jQuery("#spider_popup_right").show(),jQuery(".bwg_image_info").hide(),0==gallery_box_data.enable_loop&&(a==parseInt(r.length)-1&&jQuery("#spider_popup_right").hide(),0==a&&jQuery("#spider_popup_left").hide()),1==gallery_box_data.ecommerceACtive&&1==gallery_box_data.enable_image_ecommerce)if(0==gallery_box_data.data[a].pricelist)jQuery(".bwg_ecommerce").hide();else{jQuery(".bwg_ecommerce").show(),jQuery(".pge_tabs li").hide(),jQuery("#downloads").hide(),jQuery("#manual").hide();var i=gallery_box_data.data[a].pricelist_sections.split(",");if(i)if(jQuery("#"+i[0]).show(),jQuery("[name=type]").val(i[0]),1<i.length)for(jQuery(".pge_tabs").show(),k=0;k<i.length;k++)jQuery("#"+i[k]+"_li").show();else jQuery(".pge_tabs").hide();else jQuery("[name=type]").val("")}if(jQuery("#bwg_image_container").find("iframe").each(function(){jQuery(this)[0].contentWindow.postMessage('{"event":"command","func":"pauseVideo","args":""}',"*"),jQuery(this)[0].contentWindow.postMessage('{ "method": "pause" }',"*"),jQuery(this)[0].contentWindow.postMessage("pause","*")}),jQuery("#bwg_image_container").find("video").each(function(){jQuery(this).trigger("pause")}),void 0===r&&(r=gallery_box_data.data),void 0!==r[a]&&void 0!==r[e]){if(jQuery(".bwg_play_pause").length&&!jQuery(".bwg_play_pause").hasClass("bwg-icon-play")&&bwg_play(r),t||jQuery("#bwg_current_image_key").val(a),gallery_box_data.bwg_trans_in_progress)return void gallery_box_data.event_stack.push(e+"-"+a);var _="right";if(bwg_current_key>a)_="left";else if(bwg_current_key==a)return;jQuery(".bwg_image_count").html(r[a].number),jQuery(".bwg_watermark").css({display:"none"}),"width"==gallery_box_data.width_or_height?bwg_current_filmstrip_pos=a*(jQuery(".bwg_filmstrip_thumbnail").width()+2+2*gallery_box_data.lightbox_filmstrip_thumb_border_width):"height"==gallery_box_data.width_or_height&&(bwg_current_filmstrip_pos=a*(jQuery(".bwg_filmstrip_thumbnail").height()+2+2*gallery_box_data.lightbox_filmstrip_thumb_border_width)),gallery_box_data.bwg_current_key=a,bwg_objectsL10n.is_pro&&(location.replace("#bwg"+gallery_box_data.gallery_id+"/"+r[a].id),history.replaceState(void 0,void 0,"#bwg"+gallery_box_data.gallery_id+"/"+r[a].id)),jQuery("#bwg_rate_form input[name='image_id']").val(r[a].id),spider_set_input_value("rate_ajax_task","save_hit_count"),spider_rate_ajax_save("bwg_rate_form"),gallery_box_data.popup_enable_rate&&(jQuery("#bwg_star").attr("data-score",r[a].avg_rating),jQuery("#bwg_star").removeAttr("title"),r[a].cur_key=a,bwg_rating(r[a].rate,r[a].rate_count,r[a].avg_rating,a)),jQuery(".bwg_image_hits span").html(++r[a].hit_count),jQuery("#bwg_popup_image").attr("image_id",r[a].id),jQuery(".bwg_image_title").html(jQuery("<span />").html(r[a].alt).text()),jQuery(".bwg_image_description").html(jQuery("<span />").html(r[a].description).text()),jQuery(".bwg_filmstrip_thumbnail").removeClass("bwg_thumb_active").addClass("bwg_thumb_deactive"),jQuery("#bwg_filmstrip_thumbnail_"+a).removeClass("bwg_thumb_deactive").addClass("bwg_thumb_active"),jQuery(".bwg_image_info").css("opacity",1),""==r[a].alt.trim()&&""==r[a].description.trim()&&jQuery(".bwg_image_info").css("opacity",0),"none"!=jQuery(".bwg_image_info_container1").css("display")?jQuery(".bwg_image_info_container1").css("display","table-cell"):jQuery(".bwg_image_info_container1").css("display","none"),"none"!=jQuery(".bwg_image_rate_container1").css("display")?jQuery(".bwg_image_rate_container1").css("display","table-cell"):jQuery(".bwg_image_rate_container1").css("display","none");var s=2==jQuery(".bwg_popup_image_spun").css("zIndex")?".bwg_popup_image_spun":".bwg_popup_image_second_spun",o=".bwg_popup_image_second_spun"==s?".bwg_popup_image_spun":".bwg_popup_image_second_spun",l=-1<r[a].filetype.indexOf("EMBED_"),n=-1<r[a].filetype.indexOf("INSTAGRAM_POST"),g=-1<r[a].filetype.indexOf("INSTAGRAM_VIDEO"),w=-1!==jQuery.inArray(r[a].filetype,["EMBED_OEMBED_YOUTUBE_VIDEO","EMBED_OEMBED_VIMEO_VIDEO","EMBED_OEMBED_FACEBOOK_VIDEO","EMBED_OEMBED_DAILYMOTION_VIDEO"]),b=jQuery(s).height(),u=jQuery(s).width(),d='<span class="bwg_popup_image_spun1" style="display: '+(l?"block":"table")+'; width: inherit; height: inherit;"><span class="bwg_popup_image_spun2" style="display:'+(l?"block":"table-cell")+'; vertical-align: middle;text-align: center;height: 100%;">';if(l){if(jQuery("#bwg_download").addClass("bwg-hidden"),d+='<span class="bwg_popup_embed bwg_popup_watermark" style="display: '+(w?"block":"table")+'; table-layout: fixed; height: 100%;">'+(g?'<div class="bwg_inst_play_btn_cont" onclick="bwg_play_instagram_video(this)" ><div class="bwg_inst_play"></div></div>':" "),n){var h=jQuery(".instagram-media"),m=jQuery(".bwg_embed_frame"),c=jQuery(".bwg_image_container").width()-("vertical"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_width:0),p=jQuery(".bwg_image_container").height()-("horizontal"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_height:0),y=r[a].image_width,f=r[a].image_height,j=bwg_resizing_ratio(y,f,c,p);m.attr("data-width",c),m.attr("data-height",p);var Q=j.width,v=j.height;Q<v?Q-=109:Q+=109,d+=spider_display_embed(r[a].filetype,r[a].image_url,r[a].filename,{class:"bwg_embed_frame","data-width":c,"data-height":p,"data-instagram-width":y,"data-instagram-height":f,style:"width:"+Q+"px; height:"+v+"px; vertical-align:middle; display:inline-block; position:relative;"}),h.css({"max-height":v+"px","min-width":Q+"px !important"})}else d+=spider_display_embed(r[a].filetype,r[a].image_url,r[a].filename,{class:"bwg_embed_frame",frameborder:"0",allowfullscreen:"allowfullscreen",style:"display:"+(w?"block":"table-cell")+"; width:inherit; height:inherit; vertical-align:middle;"});d+="</span>"}else{jQuery(".bwg-loading").removeClass("bwg-hidden"),jQuery("#bwg_download").removeClass("bwg-hidden");var x="'"+(gallery_box_data.site_url+jQuery("<span />").html(decodeURIComponent(r[a].image_url)).text()).split("?bwg")[0]+"'";gallery_box_data.popup_enable_zoom&&(d+='<figure style="max-height: '+b+"px; max-width: "+u+"px; background-image: url("+x+'); background-repeat: no-repeat" class="bwg_popup_image bwg_popup_watermark" alt="'+r[a].alt+'" />'),d+='<img style="max-height: '+b+"px; max-width: "+u+'px;" class="bwg_popup_image bwg_popup_watermark" src="'+gallery_box_data.site_url+jQuery("<span />").html(decodeURIComponent(r[a].image_url)).text()+'" alt="'+r[a].alt+'" />'}function z(){gallery_box_data.preload_images&&bwg_preload_images(a),window["bwg_"+gallery_box_data.bwg_image_effect](s,o,_),jQuery(s).find(".bwg_fb_video").each(function(){jQuery(this).attr("src","")}),l?jQuery("#bwg_fullsize_image").attr("href",decodeURIComponent(r[a].image_url)):(jQuery("#bwg_fullsize_image").attr("href",gallery_box_data.site_url+decodeURIComponent(r[a].image_url)),jQuery("#bwg_download").attr("href",gallery_box_data.site_url+decodeURIComponent(r[a].thumb_url).replace("/thumb/","/.original/")));var e=decodeURIComponent(r[a].image_url).split("/");jQuery("#bwg_download").attr("download",e[e.length-1].replace(/\?bwg=(\d+)$/,""));var t=encodeURIComponent(gallery_box_data.bwg_share_url)+"="+r[a].id+encodeURIComponent("#bwg"+gallery_box_data.gallery_id+"/")+r[a].id;if(l)var i=encodeURIComponent(r[a].thumb_url);else i=gallery_box_data.bwg_share_image_url+encodeURIComponent(encodeURIComponent(r[a].pure_image_url));i=i.replace(/%252F|%25252F/g,"%2F"),void 0!==addthis_share&&(addthis_share.url=t),jQuery("#bwg_facebook_a").attr("href","https://www.facebook.com/sharer/sharer.php?u="+t),jQuery("#bwg_twitter_a").attr("href","https://twitter.com/intent/tweet?url="+t),jQuery("#bwg_pinterest_a").attr("href","http://pinterest.com/pin/create/button/?s=100&url="+t+"&media="+i+"&description="+r[a].alt+"%0A"+r[a].description),jQuery("#bwg_tumblr_a").attr("href","https://www.tumblr.com/share/photo?source="+i+"&caption="+r[a].alt+"&clickthru="+t),jQuery(".bwg_comment_container").hasClass("bwg_open")&&(jQuery(".bwg_comments .mCSB_container").css("top","0"),jQuery("#bwg_added_comments").show(),spider_set_input_value("ajax_task","display"),spider_set_input_value("image_id",jQuery("#bwg_popup_image").attr("image_id")),spider_ajax_save("bwg_comment_form")),jQuery(".bwg_ecommerce_container").hasClass("bwg_open")&&(0==r[a].pricelist?(bwg_popup_sidebar_close(jQuery(".bwg_ecommerce_container")),bwg_animate_image_box_for_hide_sidebar(),jQuery(".bwg_ecommerce_container").attr("class","bwg_ecommerce_container bwg_close"),jQuery(".bwg_ecommerce").attr("title",bwg_objectsL10n.bwg_show_ecommerce),jQuery(".spider_popup_close_fullscreen").show()):get_ajax_pricelist()),void 0!==jQuery().mCustomScrollbar&&jQuery.isFunction(jQuery().mCustomScrollbar)&&jQuery(".bwg_comments").mCustomScrollbar({advanced:{updateOnContentResize:!0}}),jQuery(".bwg_comments .mCSB_scrollTools").hide(),gallery_box_data.enable_image_filmstrip&&bwg_slideshow_filmstrip_fix_dimension(),bwg_resize_instagram_post()}if(gallery_box_data.popup_enable_zoom?d+="</figure></span></span>":d+="</span></span>",jQuery(o).html(d),jQuery(o).find("img").on("load error",function(){jQuery(".bwg-loading").addClass("bwg-hidden")}),jQuery(".bwg_popup_embed > .bwg_embed_frame > img, .bwg_popup_embed > .bwg_embed_frame > video").css({maxWidth:u,maxHeight:b,height:"auto"}),l)z();else jQuery(o).find("img").one("load",function(){z()}).each(function(){this.complete&&jQuery(this).load()});"undefined"!=typeof instgrm&&void 0!==instgrm.Embeds&&(jQuery(".instagram-media").hide(),instgrm.Embeds.process(),jQuery(".instagram-media").show())}}function bwg_preload_images_lightbox(e){for(var t=gallery_box_data.data,i=t.length,a=0==gallery_box_data.preload_images_count||gallery_box_data.preload_images_count>=i?i:gallery_box_data.preload_images_count,r=0,_=1;r<a;_++){var s=1;do{var o=(e+_*s+i)%i;if(void 0!==t[o])-1<t[o].filetype.indexOf("EMBED_")||jQuery("<img/>").attr("src",gallery_box_data.site_url+jQuery("<span />").html(decodeURIComponent(t[o].image_url)).text());s*=-1,r++}while(1!=s)}}function bwg_popup_sidebar_open(e){var t=gallery_box_data.lightbox_comment_width,i=gallery_box_data.lightbox_comment_pos;if(t>jQuery(window).width()){if(t=jQuery(window).width(),e.css({width:t}),jQuery(".spider_popup_close_fullscreen").hide(),jQuery(".spider_popup_close").hide(),jQuery(".bwg_ctrl_btn").hasClass("bwg-icon-pause")){var a=/android|webos|iphone|ipad|ipod|blackberry|iemobile|opera mini/i.test(navigator.userAgent.toLowerCase());jQuery(".bwg_play_pause").trigger(a?"touchend":"click")}}else jQuery(".spider_popup_close_fullscreen").show();"left"==i?e.animate({left:0},100):e.animate({right:0},100)}function bwg_comment(){if(jQuery(".bwg_watermark").css({display:"none"}),jQuery(".bwg_ecommerce_wrap").css("z-index","-1"),jQuery(".bwg_comment_wrap").css("z-index","25"),jQuery(".bwg_ecommerce_container").hasClass("bwg_open")&&(bwg_popup_sidebar_close(jQuery(".bwg_ecommerce_container")),jQuery(".bwg_ecommerce_container").attr("class","bwg_ecommerce_container bwg_close"),jQuery(".bwg_ecommerce").attr("title",bwg_objectsL10n.bwg_show_ecommerce)),jQuery(".bwg_comment_container").hasClass("bwg_open"))"1"==jQuery(".bwg_comment_container").attr("data-play-status")&&jQuery(".bwg_ctrl_btn.bwg_play_pause").removeClass("bwg-icon-play").addClass("bwg-icon-pause").attr("title",bwg_objectsL10n.bwg_pause),bwg_popup_sidebar_close(jQuery(".bwg_comment_container")),bwg_animate_image_box_for_hide_sidebar(),jQuery(".bwg_comment_wrap").css("z-index","-1"),jQuery(".bwg_comment_container").attr("class","bwg_comment_container bwg_close"),jQuery(".bwg_comment").attr("title",bwg_objectsL10n.bwg_show_comments),jQuery(".spider_popup_close_fullscreen").show();else{jQuery(".bwg_play_pause").hasClass("bwg-icon-pause")?jQuery(".bwg_comment_container").attr("data-play-status","1"):jQuery(".bwg_comment_container").attr("data-play-status","0"),jQuery(".bwg_ctrl_btn.bwg_play_pause").removeClass("bwg-icon-pause").addClass("bwg-icon-play").attr("title",bwg_objectsL10n.bwg_play),bwg_popup_sidebar_open(jQuery(".bwg_comment_container")),bwg_animate_image_box_for_show_sidebar(),jQuery(".bwg_comment_container").attr("class","bwg_comment_container bwg_open"),jQuery(".bwg_comment").attr("title",bwg_objectsL10n.bwg_hide_comments);var e=parseInt(jQuery("#bwg_current_image_key").val());void 0!==gallery_box_data.current_image_key&&0!=gallery_box_data.data[e].comment_count&&(jQuery("#bwg_added_comments").show(),spider_set_input_value("ajax_task","display"),spider_set_input_value("image_id",jQuery("#bwg_popup_image").attr("image_id")),spider_ajax_save("bwg_comment_form"))}jQuery(".bwg_comments").mCustomScrollbar("update",{scrollInertia:150,theme:"dark-thick",advanced:{updateOnContentResize:!0}})}function bwg_ecommerce(){jQuery(".bwg_watermark").css({display:"none"}),jQuery(".bwg_ecommerce_wrap").css("z-index","25"),jQuery(".bwg_comment_wrap").css("z-index","-1"),jQuery(".bwg_comment_container").hasClass("bwg_open")&&(bwg_popup_sidebar_close(jQuery(".bwg_comment_container")),jQuery(".bwg_comment_container").attr("class","bwg_comment_container bwg_close"),jQuery(".bwg_comment").attr("title",bwg_objectsL10n.bwg_show_comments)),jQuery(".bwg_ecommerce_container").hasClass("bwg_open")?(bwg_popup_sidebar_close(jQuery(".bwg_ecommerce_container")),bwg_animate_image_box_for_hide_sidebar(),jQuery(".bwg_ecommerce_container").attr("class","bwg_ecommerce_container bwg_close"),jQuery(".bwg_ecommerce").attr("title",bwg_objectsL10n.bwg_show_ecommerce)):(bwg_popup_sidebar_open(jQuery(".bwg_ecommerce_container")),bwg_animate_image_box_for_show_sidebar(),jQuery(".bwg_ecommerce_container").attr("class","bwg_ecommerce_container bwg_open"),jQuery(".bwg_ecommerce").attr("title",bwg_objectsL10n.bwg_hide_ecommerce),get_ajax_pricelist())}function bwg_popup_sidebar_close(e){var t=parseInt(e.css("borderRightWidth"));t||(t=0),"left"==lightbox_comment_pos?e.animate({left:-e.width()-t},100):"right"==lightbox_comment_pos&&e.animate({right:-e.width()-t},100)}function bwg_animate_image_box_for_hide_sidebar(){"left"==lightbox_comment_pos?jQuery(".bwg_image_wrap").animate({left:0,width:jQuery("#spider_popup_wrap").width()},100):"right"==lightbox_comment_pos&&jQuery(".bwg_image_wrap").animate({right:0,width:jQuery("#spider_popup_wrap").width()},100),jQuery(".bwg_image_container").animate({width:jQuery("#spider_popup_wrap").width()-("vertical"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_width:0)},100),jQuery(".bwg_popup_image").animate({maxWidth:jQuery("#spider_popup_wrap").width()-("vertical"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_width:0)},{duration:100,complete:function(){bwg_change_watermark_container()}}),jQuery(".bwg_popup_embed").animate({width:jQuery("#spider_popup_wrap").width()-("vertical"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_width:0)},{duration:100,complete:function(){bwg_resize_instagram_post(),bwg_change_watermark_container()}}),"width"==gallery_box_data.width_or_height?(jQuery(".bwg_filmstrip_container").animate({width:jQuery(".spider_popup_wrap").width()},100),jQuery(".bwg_filmstrip").animate({width:jQuery(".spider_popup_wrap").width()-2*("horizontal"==gallery_box_data.filmstrip_direction?jQuery(".bwg_filmstrip_right").width():jQuery(".bwg_filmstrip_right").height())},100)):"height"==gallery_box_data.width_or_height&&(jQuery(".bwg_filmstrip_container").animate({height:jQuery(".spider_popup_wrap").width()},100),jQuery(".bwg_filmstrip").animate({height:jQuery(".spider_popup_wrap").width()-2*("horizontal"==gallery_box_data.filmstrip_direction?jQuery(".bwg_filmstrip_right").width():jQuery(".bwg_filmstrip_right").height())},100)),bwg_set_filmstrip_pos(jQuery(".spider_popup_wrap").width()-2*("horizontal"==gallery_box_data.filmstrip_direction?jQuery(".bwg_filmstrip_right").width():jQuery(".bwg_filmstrip_right").height()),"",gallery_box_data),jQuery(".spider_popup_close_fullscreen").show(100)}function bwg_animate_image_box_for_show_sidebar(){var e=jQuery(".bwg_comment_container").width()||jQuery(".bwg_ecommerce_container").width();"left"==lightbox_comment_pos?jQuery(".bwg_image_wrap").animate({left:e,width:jQuery("#spider_popup_wrap").width()-e},100):"right"==lightbox_comment_pos&&jQuery(".bwg_image_wrap").animate({right:e,width:jQuery("#spider_popup_wrap").width()-e},100),jQuery(".bwg_image_container").animate({width:jQuery("#spider_popup_wrap").width()-("vertical"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_width:0)-e},100),jQuery(".bwg_popup_image").animate({maxWidth:jQuery("#spider_popup_wrap").width()-e-("vertical"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_width:0)},{duration:100,complete:function(){bwg_change_watermark_container()}}),jQuery(".bwg_popup_embed > .bwg_embed_frame > img, .bwg_popup_embed > .bwg_embed_frame > video").animate({maxWidth:jQuery("#spider_popup_wrap").width()-e-("vertical"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_width:0)},{duration:100,complete:function(){bwg_resize_instagram_post(),bwg_change_watermark_container()}}),"width"==gallery_box_data.width_or_height&&(jQuery(".bwg_filmstrip_container").css({width:jQuery("#spider_popup_wrap").width()-("vertical"==gallery_box_data.filmstrip_direction?0:e)}),jQuery(".bwg_filmstrip").animate({width:jQuery(".bwg_filmstrip_container").width()-2*("horizontal"==gallery_box_data.filmstrip_direction?jQuery(".bwg_filmstrip_right").width():jQuery(".bwg_filmstrip_right").height())},100),bwg_set_filmstrip_pos(jQuery(".bwg_filmstrip_container").width()-2*("horizontal"==gallery_box_data.filmstrip_direction?jQuery(".bwg_filmstrip_right").width():jQuery(".bwg_filmstrip_right").height()),"",gallery_box_data))}function bwg_reset_zoom(){var e=/android|webos|iphone|ipad|ipod|blackberry|iemobile|opera mini/i.test(navigator.userAgent.toLowerCase()),t=document.querySelector('meta[name="viewport"]');e&&t&&(t.content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=0")}function bwg_open_with_fullscreen(){jQuery(".bwg_watermark").css({display:"none"});var e=0;(jQuery(".bwg_comment_container").hasClass("bwg_open")||jQuery(".bwg_ecommerce_container").hasClass("bwg_open"))&&(e=jQuery(".bwg_comment_container").width()||jQuery(".bwg_ecommerce_container").width()),bwg_popup_current_width=jQuery(window).width(),bwg_popup_current_height=window.innerHeight,jQuery("#spider_popup_wrap").css({width:jQuery(window).width(),height:window.innerHeight,left:0,top:0,margin:0,zIndex:100002}),jQuery(".bwg_image_wrap").css({width:jQuery(window).width()-e}),jQuery(".bwg_image_container").css({height:bwg_popup_current_height-("horizontal"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_height:0),width:bwg_popup_current_width-e-("vertical"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_width:0)}),jQuery(".bwg_popup_image").css({maxWidth:jQuery(window).width()-e-("vertical"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_width:0),maxHeight:window.innerHeight-("horizontal"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_height:0)},{complete:function(){bwg_change_watermark_container()}}),jQuery(".bwg_popup_video").css({width:jQuery(window).width()-e-("vertical"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_width:0),height:window.innerHeight-("horizontal"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_height:0)},{complete:function(){bwg_change_watermark_container()}}),jQuery(".bwg_popup_embed > .bwg_embed_frame > img, .bwg_popup_embed > .bwg_embed_frame > video").css({maxWidth:jQuery(window).width()-e-("vertical"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_width:0),maxHeight:window.innerHeight-("horizontal"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_height:0)},{complete:function(){bwg_resize_instagram_post(),bwg_change_watermark_container()}}),"width"==gallery_box_data.width_or_height?(jQuery(".bwg_filmstrip_container").css({width:jQuery(window).width()-("horizontal"==gallery_box_data.filmstrip_direction?"comment_container_width":0)}),jQuery(".bwg_filmstrip").css({width:jQuery(window).width()-("horizontal"==gallery_box_data.filmstrip_direction?"comment_container_width":0)-2*("horizontal"==gallery_box_data.filmstrip_direction?jQuery(".bwg_filmstrip_right").width():jQuery(".bwg_filmstrip_right").height())}),bwg_set_filmstrip_pos(jQuery(window).width()-("horizontal"==gallery_box_data.filmstrip_direction?"comment_container_width":0)-2*("horizontal"==gallery_box_data.filmstrip_direction?jQuery(".bwg_filmstrip_right").width():jQuery(".bwg_filmstrip_right").height()),"",gallery_box_data)):(jQuery(".bwg_filmstrip_container").css({height:window.innerHeight-("horizontal"==gallery_box_data.filmstrip_direction?"comment_container_width":0)}),jQuery(".bwg_filmstrip").css({height:window.innerHeight-("horizontal"==gallery_box_data.filmstrip_direction?"comment_container_width":0)-2*("horizontal"==gallery_box_data.filmstrip_direction?jQuery(".bwg_filmstrip_right").width():jQuery(".bwg_filmstrip_right").height())}),bwg_set_filmstrip_pos(window.innerHeight-("horizontal"==gallery_box_data.filmstrip_direction?"comment_container_width":0)-2*("horizontal"==gallery_box_data.filmstrip_direction?jQuery(".bwg_filmstrip_right").width():jQuery(".bwg_filmstrip_right").height()),"",gallery_box_data)),jQuery(".bwg_resize-full").attr("class","bwg-icon-compress bwg_ctrl_btn bwg_resize-full"),jQuery(".bwg_resize-full").attr("title",bwg_objectsL10n.bwg_restore),jQuery(".spider_popup_close").attr("class","spider_popup_close_fullscreen")}function bwg_resize_full(){jQuery(".bwg_watermark").css({display:"none"});var e=0;(jQuery(".bwg_comment_container").hasClass("bwg_open")||jQuery(".bwg_ecommerce_container").hasClass("bwg_open"))&&(e=jQuery(".bwg_comment_container").width()||jQuery(".bwg_ecommerce_container").width()),jQuery(".bwg_resize-full").hasClass("bwg-icon-compress")?(jQuery(window).width()>gallery_box_data.image_width&&(bwg_popup_current_width=gallery_box_data.image_width),window.innerHeight>gallery_box_data.image_height&&(bwg_popup_current_height=gallery_box_data.image_height),jQuery("#spider_popup_wrap").animate({width:bwg_popup_current_width,height:bwg_popup_current_height,left:"50%",top:"50%",marginLeft:-bwg_popup_current_width/2,marginTop:-bwg_popup_current_height/2,zIndex:100002},500),jQuery(".bwg_image_wrap").animate({width:bwg_popup_current_width-e},500),jQuery(".bwg_image_container").animate({height:bwg_popup_current_height-("horizontal"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_height:0),width:bwg_popup_current_width-e-("vertical"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_width:0)},500),jQuery(".bwg_popup_image").animate({maxWidth:bwg_popup_current_width-e-("vertical"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_width:0),maxHeight:bwg_popup_current_height-("horizontal"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_height:0)},{duration:500,complete:function(){bwg_change_watermark_container(),jQuery("#spider_popup_wrap").width()<jQuery(window).width()&&jQuery("#spider_popup_wrap").height()<window.innerHeight&&jQuery(".spider_popup_close_fullscreen").attr("class","spider_popup_close")}}),jQuery(".bwg_popup_embed > .bwg_embed_frame > img, .bwg_popup_embed > .bwg_embed_frame > video").animate({maxWidth:bwg_popup_current_width-e-("vertical"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_width:0),maxHeight:bwg_popup_current_height-("horizontal"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_height:0)},{duration:500,complete:function(){bwg_resize_instagram_post(),bwg_change_watermark_container(),jQuery("#spider_popup_wrap").width()<jQuery(window).width()&&jQuery("#spider_popup_wrap").height()<window.innerHeight&&jQuery(".spider_popup_close_fullscreen").attr("class","spider_popup_close")}}),"width"==gallery_box_data.width_or_height?(jQuery(".bwg_filmstrip_container").animate({width:bwg_popup_current_width-("horizontal"==gallery_box_data.filmstrip_direction?e:0)},500),jQuery(".bwg_filmstrip").animate({width:bwg_popup_current_width-("horizontal"==gallery_box_data.filmstrip_direction?e:0)-2*("horizontal"==gallery_box_data.filmstrip_direction?jQuery(".bwg_filmstrip_right").width():jQuery(".bwg_filmstrip_right").height())},500),bwg_set_filmstrip_pos(bwg_popup_current_width-2*("horizontal"==gallery_box_data.filmstrip_direction?jQuery(".bwg_filmstrip_right").width():jQuery(".bwg_filmstrip_right").height()),"",gallery_box_data)):(jQuery(".bwg_filmstrip_container").animate({height:bwg_popup_current_height-("horizontal"==gallery_box_data.filmstrip_direction?e:0)},500),jQuery(".bwg_filmstrip").animate({height:bwg_popup_current_height-("horizontal"==gallery_box_data.filmstrip_direction?e:0)-2*("horizontal"==gallery_box_data.filmstrip_direction?jQuery(".bwg_filmstrip_right").width():jQuery(".bwg_filmstrip_right").height())},500),bwg_set_filmstrip_pos(bwg_popup_current_height-2*("horizontal"==gallery_box_data.filmstrip_direction?jQuery(".bwg_filmstrip_right").width():jQuery(".bwg_filmstrip_right").height()),"",gallery_box_data),"horizontal"!=gallery_box_data.filmstrip_direction&&jQuery(".bwg_filmstrip_right").css({top:bwg_popup_current_height-jQuery(".bwg_filmstrip_right").height()})),jQuery(".bwg_resize-full").attr("class","bwg-icon-expand bwg_ctrl_btn bwg_resize-full"),jQuery(".bwg_resize-full").attr("title",bwg_objectsL10n.bwg_maximize),setTimeout(function(){bwg_info_height_set()},500)):(bwg_popup_current_width=jQuery(window).width(),bwg_popup_current_height=window.innerHeight,jQuery("#spider_popup_wrap").animate({width:jQuery(window).width(),height:window.innerHeight,left:0,top:0,margin:0,zIndex:100002},500),jQuery(".bwg_image_wrap").animate({width:jQuery(window).width()-e},500),jQuery(".bwg_image_container").animate({height:bwg_popup_current_height-("horizontal"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_height:0),width:bwg_popup_current_width-e-("vertical"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_width:0)},500),jQuery(".bwg_popup_image").animate({maxWidth:jQuery(window).width()-e-("vertical"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_width:0),maxHeight:window.innerHeight-("horizontal"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_height:0)},{duration:500,complete:function(){bwg_change_watermark_container()}}),jQuery(".bwg_popup_embed > .bwg_embed_frame > img, .bwg_popup_embed > .bwg_embed_frame > video").animate({maxWidth:jQuery(window).width()-e-("vertical"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_width:0),maxHeight:window.innerHeight-("horizontal"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_height:0)},{duration:500,complete:function(){bwg_resize_instagram_post(),bwg_change_watermark_container()}}),"width"==gallery_box_data.width_or_height?(jQuery(".bwg_filmstrip_container").animate({width:jQuery(window).width()-("horizontal"==gallery_box_data.filmstrip_direction?e:0)},500),jQuery(".bwg_filmstrip").animate({width:jQuery(window).width()-("horizontal"==gallery_box_data.filmstrip_direction?e:0)-2*("horizontal"==gallery_box_data.filmstrip_direction?jQuery(".bwg_filmstrip_right").width():jQuery(".bwg_filmstrip_right").height())},500),bwg_set_filmstrip_pos(jQuery(window).width()-("horizontal"==gallery_box_data.filmstrip_direction?e:0)-2*("horizontal"==gallery_box_data.filmstrip_direction?jQuery(".bwg_filmstrip_right").width():jQuery(".bwg_filmstrip_right").height()),"",gallery_box_data)):(jQuery(".bwg_filmstrip_container").animate({height:window.innerHeight-("horizontal"==gallery_box_data.filmstrip_direction?e:0)},500),jQuery(".bwg_filmstrip").animate({height:window.innerHeight-("horizontal"==gallery_box_data.filmstrip_direction?e:0)-2*("horizontal"==gallery_box_data.filmstrip_direction?jQuery(".bwg_filmstrip_right").width():jQuery(".bwg_filmstrip_right").height())},500),bwg_set_filmstrip_pos(window.innerHeight-("horizontal"==gallery_box_data.filmstrip_direction?e:0)-2*("horizontal"==gallery_box_data.filmstrip_direction?jQuery(".bwg_filmstrip_right").width():jQuery(".bwg_filmstrip_right").height()),"",gallery_box_data),"horizontal"!=gallery_box_data.filmstrip_direction&&jQuery(".bwg_filmstrip_right").css({top:window.innerHeight-jQuery(".bwg_filmstrip_right").height()})),jQuery(".bwg_resize-full").attr("class","bwg-icon-compress bwg_ctrl_btn bwg_resize-full"),jQuery(".bwg_resize-full").attr("title",bwg_objectsL10n.bwg_restore),jQuery(".spider_popup_close").attr("class","spider_popup_close_fullscreen")),setTimeout(function(){bwg_info_height_set()},500)}function bwg_popup_resize_lightbox(){void 0!==jQuery().fullscreen&&jQuery.isFunction(jQuery().fullscreen)&&(jQuery.fullscreen.isFullScreen()||(jQuery(".bwg_resize-full").show(),jQuery(".bwg_resize-full").hasClass("bwg-icon-compress")||jQuery(".bwg_resize-full").attr("class","bwg-icon-expand bwg_ctrl_btn bwg_resize-full"),jQuery(".bwg_resize-full").attr("title",bwg_objectsL10n.bwg_maximize),jQuery(".bwg_fullscreen").attr("class","bwg-icon-arrows-out bwg_ctrl_btn bwg_fullscreen"),jQuery(".bwg_fullscreen").attr("title",bwg_objectsL10n.fullscreen)));var e=0;(jQuery(".bwg_comment_container").hasClass("bwg_open")||jQuery(".bwg_ecommerce_container").hasClass("bwg_open"))&&(e=gallery_box_data.lightbox_comment_width),e>jQuery(window).width()?(e=jQuery(window).width(),jQuery(".bwg_comment_container").css({width:e}),jQuery(".bwg_ecommerce_container").css({width:e}),jQuery(".spider_popup_close_fullscreen").hide()):jQuery(".spider_popup_close_fullscreen").show(),window.innerHeight>gallery_box_data.image_height&&1!=gallery_box_data.open_with_fullscreen&&!jQuery(".bwg_resize-full").hasClass("bwg-icon-compress")?(jQuery("#spider_popup_wrap").css({height:gallery_box_data.image_height,top:"50%",marginTop:-gallery_box_data.image_height/2,zIndex:100002}),jQuery(".bwg_image_container").css({height:gallery_box_data.image_height-("horizontal"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_height:0)}),jQuery(".bwg_image_info").css("height","auto"),bwg_info_height_set(),jQuery(".bwg_popup_image").css({maxHeight:gallery_box_data.image_height-("horizontal"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_height:0)}),jQuery(".bwg_popup_embed > .bwg_embed_frame > img, .bwg_popup_embed > .bwg_embed_frame > video").css({maxHeight:gallery_box_data.image_height-("horizontal"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_height:0)}),"vertical"==gallery_box_data.filmstrip_direction&&(jQuery(".bwg_filmstrip_container").css({height:gallery_box_data.image_height}),jQuery(".bwg_filmstrip").css({height:gallery_box_data.image_height-2*("horizontal"==gallery_box_data.filmstrip_direction?jQuery(".bwg_filmstrip_right").width():jQuery(".bwg_filmstrip_right").height())})),bwg_popup_current_height=gallery_box_data.image_height):(jQuery("#spider_popup_wrap").css({height:window.innerHeight,top:0,marginTop:0,zIndex:100002}),jQuery(".bwg_image_container").css({height:window.innerHeight-("horizontal"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_height:0)}),jQuery(".bwg_image_info").css("height","auto"),bwg_info_height_set(),jQuery(".bwg_popup_image").css({maxHeight:window.innerHeight-("horizontal"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_height:0)}),jQuery(".bwg_popup_embed > .bwg_embed_frame > img, .bwg_popup_embed > .bwg_embed_frame > video").css({maxHeight:window.innerHeight-("horizontal"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_height:0)}),"vertical"==gallery_box_data.filmstrip_direction&&(jQuery(".bwg_filmstrip_container").css({height:window.innerHeight}),jQuery(".bwg_filmstrip").css({height:window.innerHeight-2*("horizontal"==gallery_box_data.filmstrip_direction?jQuery(".bwg_filmstrip_right").width():jQuery(".bwg_filmstrip_right").height())})),bwg_popup_current_height=window.innerHeight),jQuery(window).width()>=gallery_box_data.image_width&&1!=gallery_box_data.open_with_fullscreen?(jQuery("#spider_popup_wrap").css({width:gallery_box_data.image_width,left:"50%",marginLeft:-gallery_box_data.image_width/2,zIndex:100002}),jQuery(".bwg_image_wrap").css({width:gallery_box_data.image_width-e}),jQuery(".bwg_image_container").css({width:gallery_box_data.image_width-("vertical"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_width:0)-e}),jQuery(".bwg_image_info").css("height","auto"),bwg_info_height_set(),jQuery(".bwg_popup_image").css({maxWidth:gallery_box_data.image_width-("vertical"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_width:0)-e}),jQuery(".bwg_popup_embed > .bwg_embed_frame > img, .bwg_popup_embed > .bwg_embed_frame > video").css({maxWidth:gallery_box_data.image_width-("vertical"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_width:0)-e}),"horizontal"==gallery_box_data.filmstrip_direction&&(jQuery(".bwg_filmstrip_container").css({width:gallery_box_data.image_width-e}),jQuery(".bwg_filmstrip").css({width:gallery_box_data.image_width-e-2*("horizontal"==gallery_box_data.filmstrip_direction?jQuery(".bwg_filmstrip_right").width():jQuery(".bwg_filmstrip_right").height())})),bwg_popup_current_width=gallery_box_data.image_width):(jQuery("#spider_popup_wrap").css({width:jQuery(window).width(),left:0,marginLeft:0,zIndex:100002}),jQuery(".bwg_image_wrap").css({width:jQuery(window).width()-e}),jQuery(".bwg_image_container").css({width:jQuery(window).width()-("vertical"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_width:0)-e}),jQuery(".bwg_popup_image").css({maxWidth:jQuery(window).width()-("vertical"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_width:0)-e}),jQuery(".bwg_popup_embed > .bwg_embed_frame > img, .bwg_popup_embed > .bwg_embed_frame > video").css({maxWidth:jQuery(window).width()-("vertical"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_width:0)-e}),"horizontal"==gallery_box_data.filmstrip_direction&&(jQuery(".bwg_filmstrip_container").css({width:jQuery(window).width()-e}),jQuery(".bwg_filmstrip").css({width:jQuery(window).width()-e-2*("horizontal"==gallery_box_data.filmstrip_direction?jQuery(".bwg_filmstrip_right").width():jQuery(".bwg_filmstrip_right").height())})),bwg_popup_current_width=jQuery(window).width()),bwg_resize_instagram_post(),bwg_change_watermark_container(),1!=gallery_box_data.open_with_fullscreen&&(gallery_box_data.lightbox_close_btn_right<0&&jQuery("#spider_popup_wrap").width()-2*gallery_box_data.lightbox_close_btn_right>=jQuery(window).width()||gallery_box_data.lightbox_close_btn_top<0&&jQuery("#spider_popup_wrap").height()-2*gallery_box_data.lightbox_close_btn_top>=jQuery(window).height()?jQuery(".spider_popup_close").attr("class","spider_popup_close_fullscreen"):jQuery(".spider_popup_close_fullscreen").attr("class","spider_popup_close"));var t=jQuery(".bwg_ctrl_btn_container").height();"bottom"==gallery_box_data.lightbox_ctrl_btn_pos&&jQuery(".bwg_toggle_container i").hasClass("bwg-icon-caret-down")&&jQuery(".bwg_toggle_container").css("bottom",t+"px"),"top"==gallery_box_data.lightbox_ctrl_btn_pos&&jQuery(".bwg_toggle_container i").hasClass("bwg-icon-caret-up")&&jQuery(".bwg_toggle_container").css("top",t+"px")}function bwg_rating(e,t,i,a){lightbox_rate_stars_count=gallery_box_data.lightbox_rate_stars_count,lightbox_rate_size=gallery_box_data.lightbox_rate_size,lightbox_rate_icon=gallery_box_data.lightbox_rate_icon;var r="Not rated yet.";if(0!=i&&""!=i&&(r=parseFloat(i).toFixed(1)+"\n Votes: "+t),void 0!==jQuery().raty&&jQuery.isFunction(jQuery().raty)){var _=parseFloat(jQuery("#bwg_star").attr("data-score"));jQuery("#bwg_star").removeAttr("data-score").html("");var s={starType:"i",number:lightbox_rate_stars_count,size:lightbox_rate_size,noRatedMsg:"Not rated yet.",readOnly:!1,score:_,starHalf:"bwg-icon-"+lightbox_rate_icon+("star"==lightbox_rate_icon?"-half":"")+"-o",starOff:"bwg-icon-"+lightbox_rate_icon+"-o",starOn:"bwg-icon-"+lightbox_rate_icon,cancelOff:"bwg-icon-minus-square-o",cancelOn:"bwg-icon-minus-square-o",cancel:!1,cancelHint:"Cancel your rating.",hints:[r,r,r,r,r],alreadyRatedMsg:parseFloat(i).toFixed(1)+"\nYou have already rated.\nVotes: "+t};e||(s.click=function(e,t){jQuery("#bwg_star").hide(),jQuery("#bwg_rated").show(),spider_set_input_value("rate_ajax_task","save_rate"),jQuery.when(spider_rate_ajax_save("bwg_rate_form",e)).then(function(){gallery_box_data.data[a].rate=e,++gallery_box_data.data[a].rate_count,gallery_box_data.data[a].avg_rating=_?((_+e)/2).toFixed(1):e.toFixed(1),bwg_rating(gallery_box_data.data[a].rate,gallery_box_data.data[a].rate_count,gallery_box_data.data[a].avg_rating,gallery_box_data.current_image_key)})}),jQuery("#bwg_star").raty(s),jQuery(".bwg_image_rate_disabled").hide(),e&&jQuery(".bwg_image_rate_disabled").show()}}function changeDownloadsTotal(e){var t=0;0==jQuery("[name=option_show_digital_items_count]").val()?jQuery("[name=selected_download_item]:checked").each(function(){t+=Number(jQuery(this).closest("tr").attr("data-price"))}):jQuery(".digital_image_count").each(function(){0!=Number(jQuery(this).val())&&(t+=Number(jQuery(this).closest("tr").attr("data-price"))*Number(jQuery(this).val()))}),t=t.toFixed(2).toString().replace(/(\d)(?=(\d{3})+(?!\d))/g,"$1,"),jQuery(".product_downloads_price").html(t)}function changeMenualTotal(e){Number(jQuery(e).val())<=0&&jQuery(e).val("1");var t=Number(jQuery(e).val()),i=Number(jQuery(".product_manual_price").attr("data-actual-price"));i=(i*=t).toFixed(2).toString().replace(/(\d)(?=(\d{3})+(?!\d))/g,"$1,"),jQuery(".product_manual_price").html(i)}function onSelectableParametersChange(e){var t=0,i=gallery_box_data.data[jQuery("#bwg_current_image_key").val()].pricelist_manual_price?gallery_box_data.data[jQuery("#bwg_current_image_key").val()].pricelist_manual_price:"0";i=parseFloat(i.replace(",",""));var a=jQuery(e).closest(".image_selected_parameter").attr("data-parameter-type"),r=jQuery(e).val();r=r.split("*");var _=parseFloat(r[1]),s=r[0],o=Number(jQuery(e).closest(".image_selected_parameter").find(".already_selected_values").val());if("4"==a||"5"==a){var l=parseFloat(s+_);jQuery(e).closest(".image_selected_parameter").find(".already_selected_values").val(l)}else if("6"==a){if(0==jQuery(e).is(":checked"))var n=o-parseFloat(s+_);else n=o+parseFloat(s+_);jQuery(e).closest(".image_selected_parameter").find(".already_selected_values").val(n)}jQuery(".already_selected_values").each(function(){t+=Number(jQuery(this).val())}),i+=t,jQuery(".product_manual_price").attr("data-actual-price",i),i=(i*=Number(jQuery(".image_count").val())<=0?1:Number(jQuery(".image_count").val())).toFixed(2).toString().replace(/(\d)(?=(\d{3})+(?!\d))/g,"$1,"),jQuery(".product_manual_price").html(i)}function onBtnClickAddToCart(){var e=jQuery("[name=type]").val();if(""!=e){var t={};if("manual"==e){var i=jQuery(".image_count").val(),a={};jQuery(".manual").find(".image_selected_parameter").each(function(){var e=jQuery(this).attr("data-parameter-id"),t="";switch(jQuery(this).attr("data-parameter-type")){case"2":t=jQuery(this).find("input").val();break;case"3":t=jQuery(this).find("textarea").val();break;case"4":t=jQuery(this).find("select :selected").val();break;case"5":t=jQuery(this).find("[type=radio]:checked").val();break;case"6":var i=[];jQuery(this).find("[type=checkbox]:checked").each(function(){i.push(jQuery(this).val())}),t=i}a[e]=t}),t.count=i,t.parameters=a,t.price=jQuery(".product_manual_price").attr("data-price").replace(",","")}else{var r=[];if(0==jQuery("[name=option_show_digital_items_count]").val()){if(0==jQuery("[name=selected_download_item]:checked").length)return void jQuery(".add_to_cart_msg").html("You must select at least one item.");jQuery("[name=selected_download_item]:checked").each(function(){var e={};e.id=jQuery(this).val(),e.count=1,e.price=jQuery(this).closest("tr").attr("data-price"),r.push(e)})}else jQuery(".digital_image_count").each(function(){var e={};0<jQuery(this).val()&&(e.id=jQuery(this).closest("tr").attr("data-id"),e.price=jQuery(this).closest("tr").attr("data-price"),e.count=jQuery(this).val(),r.push(e))});if(0==(t.downloadItems=r).length)return void jQuery(".add_to_cart_msg").html("Please select at least one item")}var _=jQuery("#ajax_url").val(),s={action:"add_cart",task:"add_cart",controller:"checkout",image_id:jQuery("#bwg_popup_image").attr("image_id"),type:e,data:JSON.stringify(t)};jQuery.ajax({type:"POST",url:_,data:s,success:function(e){responseData=JSON.parse(e),jQuery(".add_to_cart_msg").html(responseData.msg),jQuery(".products_in_cart").html(responseData.products_in_cart),1==responseData.redirect&&(window.location.href="<?php echo get_permalink($options->checkout_page);?>")},beforeSend:function(){},complete:function(){}})}else jQuery(".add_to_cart_msg").html("Please select Prints and products or Downloads")}function onBtnViewCart(){var e=jQuery("[name=option_checkout_page]").val();jQuery("#bwg_ecommerce_form").attr("action",e),jQuery("#bwg_ecommerce_form").submit()}function bwg_load_visible_images(e,t,i){0<=e-t&&(startPoint=e-t),i<e+t&&(endPoint=i);for(var a=startPoint;a<=endPoint;a++){var r=jQuery("#bwg_filmstrip_thumbnail_"+a+" img");r.removeClass("bwg-hidden"),r.attr("src",r.data("url"))}}function bwg_load_filmstrip(){for(var e=1;e<=total_thumbnail_count;e++){var t;if(leftIndex=startPoint-e,rightIndex=endPoint+e,rightIndex<total_thumbnail_count)(t=jQuery("#bwg_filmstrip_thumbnail_"+rightIndex+" img")).removeClass("bwg-hidden"),t.attr("src",t.data("url"));if(0<=leftIndex)(t=jQuery("#bwg_filmstrip_thumbnail_"+leftIndex+" img")).removeClass("bwg-hidden"),t.attr("src",t.data("url"))}jQuery(".bwg_filmstrip_thumbnail").each(function(){var e=jQuery(this).find("img");void 0===e.attr("style")&&(0==e.width()?e.on("load",function(){jQuery(this).find(".bwg_filmstrip_thumbnail_img_wrap"),bwg_filmstrip_thumb_view(e)}):(jQuery(this).find(".bwg_filmstrip_thumbnail_img_wrap"),bwg_filmstrip_thumb_view(e)))})}function bwg_filmstrip_thumb_view(e){var t=gallery_box_data.image_filmstrip_height,i=gallery_box_data.image_filmstrip_width,a=i-gallery_box_data.filmstrip_thumb_right_left_space,r=t,_=Math.max(i/e.width(),t/e.height()),s=e.width()*_,o=e.height()*_;e.css({width:s,height:o,marginLeft:(a-s)/2,marginTop:(r-o)/2})}function bwg_info_height_set(){bwg_info_position(!1),jQuery(".mCustomScrollBox").length&&jQuery(".bwg_image_info_container1").height()<jQuery(".mCustomScrollBox").height()+jQuery(".bwg_toggle_container").height()+bwg_image_info_pos+2*parseInt(gallery_box_data.lightbox_info_margin)&&jQuery(".bwg_image_info").css({height:jQuery(".bwg_image_info_container1").height()-jQuery(".bwg_toggle_container").height()-bwg_image_info_pos-2*parseInt(gallery_box_data.lightbox_info_margin)})}function bwg_info_position(e){var t=0,i="none";"top"==gallery_box_data.lightbox_ctrl_btn_pos?"top"==gallery_box_data.lightbox_info_pos&&(i="top"):"bottom"==gallery_box_data.lightbox_info_pos&&(i="bottom"),jQuery(".bwg_ctrl_btn_container").hasClass("closed")||("top"==gallery_box_data.lightbox_ctrl_btn_pos?"top"==gallery_box_data.lightbox_info_pos&&(t=jQuery(".bwg_ctrl_btn_container").height()):"bottom"==gallery_box_data.lightbox_info_pos&&(t=jQuery(".bwg_ctrl_btn_container").height())),"top"==i?0==e?jQuery(".bwg_image_info").css("top",t):jQuery(".bwg_image_info").animate({top:t+"px"},500):"bottom"==i&&(0==e?jQuery(".bwg_image_info").css("bottom",t):jQuery(".bwg_image_info").animate({bottom:t+"px"},500))}function spider_display_embed(e,t,i,a){var r="";switch(e){case"EMBED_OEMBED_YOUTUBE_VIDEO":var _="<iframe ";for(attr in""!=i&&(_+=' src="//www.youtube.com/embed/'+i+'?enablejsapi=1&wmode=transparent"'),a)/src/i.test(attr)||""!=attr&&""!=a[attr]&&(_+=" "+attr+'="'+a[attr]+'"');r+=_+=" ></iframe>";break;case"EMBED_OEMBED_VIMEO_VIDEO":var s="<iframe ";for(attr in""!=i&&(s+=' src="//player.vimeo.com/video/'+i+'?enablejsapi=1"'),a)/src/i.test(attr)||""!=attr&&""!=a[attr]&&(s+=" "+attr+'="'+a[attr]+'"');r+=s+=" ></iframe>";break;case"EMBED_OEMBED_FLICKR_IMAGE":var o="<div ";for(attr in a)/src/i.test(attr)||""!=attr&&""!=a[attr]&&(o+=" "+attr+'="'+a[attr]+'"');o+=" >",""!=i&&(o+='<img src="'+i+'" style="max-width:100% !important; max-height:100% !important; width:auto !important; height:auto !important;">'),r+=o+="</div>";break;case"EMBED_OEMBED_FLICKR_VIDEO":break;case"EMBED_OEMBED_INSTAGRAM_VIDEO":var l="<div ";for(attr in a)/src/i.test(attr)||""!=attr&&""!=a[attr]&&(l+=" "+attr+'="'+a[attr]+'"');l+=" >",""!=t&&(l+='<video style="width:auto !important; height:auto !important; max-width:100% !important; max-height:100% !important; margin:0 !important;" controls><source src="'+decodeURIComponent(t)+'" type="video/mp4"> Your browser does not support the video tag. </video>'),r+=l+="</div>";break;case"EMBED_OEMBED_INSTAGRAM_IMAGE":var n=a["data-max-width"],g=a["data-max-height"];l="<div ";for(attr in a)/src/i.test(attr)||""!=attr&&""!=a[attr]&&(l+=" "+attr+'="'+a[attr]+'"');l+=" >",""!=t&&(l+='<img src="'+decodeURIComponent(t)+'" style="max-width:'+n+"px; max-height:"+g+'px; width: auto; height: auto">'),r+=l+="</div>";break;case"EMBED_OEMBED_INSTAGRAM_POST":l="<div ";for(attr in a)/src/i.test(attr)||""!=attr&&""!=a[attr]&&(l+=" "+attr+'="'+a[attr]+'"',"CLASS"!=attr&&"class"!=attr&&"Class"!=attr||(obj_class=a[attr]));l+=">",""!=t&&(l+='<div class="inner_instagram_iframe_'+obj_class+'" style="max-width: 100% !important; max-height: 100% !important; width: 100%; height: 100%; margin:0; vertical-align:middle;">'+atob(t)+"</div>"),r+=l+="</div>";break;case"EMBED_OEMBED_FACEBOOK_IMAGE":var w="<span ";for(attr in a)/src/i.test(attr)||""!=attr&&""!=a[attr]&&(w+=" "+attr+'="'+a[attr]+'"');w+=" >",""!=i&&(w+='<img src="'+t+'" style=" max-width:100% !important; max-height:100% !important; width:auto; height:100%;">'),r+=w+="</span>";break;case"EMBED_OEMBED_FACEBOOK_VIDEO":var b="<div ";for(attr in a)/src/i.test(attr)||""!=attr&&""!=a[attr]&&(b+=" "+attr+'="'+a[attr]+'"');b+=" >",""!=i&&(b+='<iframe src="//www.facebook.com/video/embed?video_id='+t+'&enablejsapi=1&wmode=transparent" style="max-width:100% !important; max-height:100% !important; width:100%; height:100%; margin:0; display:table-cell; vertical-align:middle;"frameborder="0" class="bwg_fb_video" scrolling="no" allowtransparency="false" allowfullscreen></iframe>'),r+=b+="</div>";break;case"EMBED_OEMBED_DAILYMOTION_VIDEO":var u="<iframe ";for(attr in""!=i&&(u+=' src="//www.dailymotion.com/embed/video/'+i+'?api=postMessage"'),a)/src/i.test(attr)||""!=attr&&""!=a[attr]&&(u+=" "+attr+'="'+a[attr]+'"');r+=u+=" ></iframe>";break;case"EMBED_OEMBED_IMGUR":var d="<div ";for(attr in a)/src/i.test(attr)||""!=attr&&""!=a[attr]&&(l+=" "+attr+'="'+a[attr]+'"');d+=" >",""!=i&&(d+='<img src="'+i+'" style="max-width:100% !important; max-height:100% !important; width:auto; height:auto !important;">'),r+=d+="</div>";break;case"EMBED_OEMBED_GOOGLE_PHOTO_IMAGE":var h="<div ";for(attr in a)/src/i.test(attr)||""!=attr&&""!=a[attr]&&(h+=" "+attr+'="'+a[attr]+'"');h+=" >",""!=i&&(h+='<img src="'+t+'" style=" max-width:100% !important; max-height:100% !important; width:auto; height:auto;">'),r+=h+="</div>";break;default:var m={content:""};jQuery(document).trigger("bwg_display_embed",[m,e,t,i,a]),r=m.content}return r}function bwg_add_instagram_gallery(e,s){if(!0===(s=void 0!==s&&s)){if(bwg_check_instagram_gallery_input(e,s))return!1;var t="0";1==jQuery("input[name=popup_instagram_post_gallery]:checked").val()&&(t="1");var i=encodeURI(jQuery("#popup_instagram_gallery_source").val()),a=encodeURI(jQuery("#popup_instagram_image_number").val())}else{if(bwg_check_instagram_gallery_input(e,s))return!1;if(!bwg_check_gallery_empty(!1,!0))return!1;t="0";1==jQuery("input[name=instagram_post_gallery]:checked").val()&&(t="1");i=encodeURI(jQuery("#gallery_source").val());var r=jQuery("input[name=update_flag]:checked").val();a=encodeURI(jQuery("#autogallery_image_number").val())}jQuery("#bulk_embed").hide(),jQuery("#loading_div").show();var o=[],_={action:"addInstagramGallery",instagram_user:i,instagram_access_token:e,whole_post:t,autogallery_image_number:a,update_flag:r,async:!0};jQuery.post(bwg_ajax_url_nonce,_,function(e){if(0==e)return alert("Error: cannot get response from the server."),jQuery("#loading_div").hide(),s&&jQuery("#bulk_embed").show(),!1;var t=e.indexOf("WD_delimiter_start"),i=e.indexOf("WD_delimiter_end");if(-1==t||-1==i)return jQuery("#loading_div").hide(),s&&jQuery("#bulk_embed").show(),!1;if(e=e.substring(t+18,i),response_JSON=JSON.parse(e),response_JSON){if("error"==response_JSON[0])return alert("Error: "+JSON.parse(e)[1]),jQuery("#loading_div").hide(),s&&jQuery("#bulk_embed").show(),!1;for(var a=response_JSON.length,r=1;r<=a;r++)if(0!=response_JSON[a-r]){var _=response_JSON[a-r];o.push(_)}return bwg_add_image(o),s||(bwg_gallery_update_flag(),jQuery("#tr_instagram_gallery_add_button").hide()),jQuery("#loading_div").hide(),s&&jQuery(".opacity_bulk_embed").hide(),"ok"}return alert("There is some error. Cannot add Instagram gallery."),jQuery("#loading_div").hide(),s&&jQuery("#bulk_embed").show(),!1})}var bwg=0,isMobile=/android|webos|iphone|ipad|ipod|blackberry|iemobile|opera mini/i.test(navigator.userAgent.toLowerCase()),bwg_click=isMobile?"touchend":"click",bwg_slideshow_filmstrip_thumbnail_timer=!1;window.bwg_slideshow_filmstrip_thumb={};var bwg_params=[],bwg_params_ib=[],bwg_params_carousel=[];function bwg_remove_lazy_loader_icon(){1==bwg_objectsL10n.lazy_load&&jQuery("img.bwg_lazyload").Lazy({afterLoad:function(){jQuery(".lazy_loader").removeClass("lazy_loader")},onFinishedAll:function(){jQuery(".lazy_loader").removeClass("lazy_loader")}})}function bwg_main_ready(e){var t=e.data("bwg");bwg_remove_lazy_loader_icon(),0<e.find(".wd_error").length&&bwg_container_loaded(t);var i=e.find(".bwg-container");if("album"===e.data("is-album")&&i.hasClass("bwg-thumbnails"))var a="thumbnails";else a=e.data("gallery-type");switch(bwg_document_ready(e),a){case"thumbnails":case"thumbnails_masonry":case"album_compact_preview":case"album_masonry_preview":case"album_extended_preview":bwg_all_thumnails_loaded(i);break;case"thumbnails_mosaic":bwg_thumbnail_mosaic(i);break;case"slideshow":bwg_slideshow_ready(t);break;case"carousel":bwg_carousel_ready(t),bwg_carousel_onload(e);break;case"image_browser":bwg_image_browser_ready(e);break;case"blog_style":bwg_blog_style_ready(e)}}function bwg_resize_search_line(){jQuery(".search_line").each(function(){var e=jQuery(this);e.width()<410?e.addClass("bwg-search-line-responsive"):e.removeClass("bwg-search-line-responsive")})}function bwg_tags_button_section_visibility(){jQuery('div[id^="bwg_container1_"]').each(function(){var e=jQuery(this),t=e.find(".current_view").val(),i=e.find(".show_bottom_tag").val(),a=e.find(".bwg_tags_container_"+t+" .bwg_tag_button_view_container");if(a.length)var r=a[0].scrollHeight;var _=a.find(".bwg_tags_filter_buttons").outerHeight(!0),s=parseInt(2*a.find(".bwg_tags_filter_buttons").outerHeight(!0)+3);s<r?(0===jQuery(this).find(".see_all_tags.bwg_hide").length&&a.css({"min-height":_,"max-height":s,overflow:"hidden"}),a.next(".bwg_tag_button_see_all").show()):(a.css({"min-height":"auto","max-height":"100%",height:"auto",overflow:"visible"}),a.next(".bwg_tag_button_see_all").hide());var o=a.next().find(".see_all_tags").width()/2;a.next().find(".see_all_tags").attr("style","margin-left: -"+o+"px"),a.next().find(".see_all_tags").off("click").on("click",function(){jQuery(this).hasClass("bwg_show")?(jQuery(this).removeClass("bwg_show").addClass("bwg_hide").html("<span>&#8722;</span>"+bwg_objectsL10n.bwg_tag_see_less),a.css({"min-height":"auto","max-height":"100%",height:"auto",overflow:"visible"})):jQuery(this).hasClass("bwg_hide")&&(jQuery(this).removeClass("bwg_hide").addClass("bwg_show").html("<span>&#43;</span>"+bwg_objectsL10n.bwg_tag_see_all),a.css({"min-height":_,"max-height":s,overflow:"hidden"}))}),1==i&&(jQuery(this).find(".see_all_tags").removeClass("bwg_show").addClass("bwg_hide").html("<span>&#8722;</span>"+bwg_objectsL10n.bwg_tag_see_less),a.css({"min-height":"auto","max-height":"100%",height:"auto",overflow:"visible"}))})}function bwg_slideshow_resize(){jQuery(".bwg_slideshow").each(function(){bwg=jQuery(this).attr("data-bwg"),jQuery("#bwg_slideshow_image_container_"+bwg).length&&(bwg_params[bwg]=JSON.parse(jQuery("#bwg_slideshow_image_container_"+bwg).attr("data-params")),bwg_params[bwg].event_stack=[],bwg_popup_resize(bwg))})}function bwg_blog_style_resize(){jQuery(".bwg_blog_style").each(function(){bwg=jQuery(this).attr("data-bwg"),jQuery(".bwg_embed_frame_16x9_"+bwg).each(function(e){jQuery(this).width(jQuery(this).parent().width()),jQuery(this).height(.5625*jQuery(this).width())}),jQuery(".bwg_embed_frame_instapost_"+bwg).each(function(e){jQuery(this).width(jQuery(this).parent().width()),jQuery(this).height((jQuery(this).width()-16)*jQuery(this).attr("data-height")/jQuery(this).attr("data-width")+96)})})}function bwg_blog_style_onload(){jQuery(".bwg_blog_style").each(function(){bwg=jQuery(this).attr("data-bwg");jQuery("#bwg_blog_style_"+bwg);jQuery(".bwg_embed_frame_16x9_"+bwg).each(function(e){if(jQuery(".bwg_blog_style_image_"+bwg).find(".fluid-width-video-wrapper").length){jQuery(".fluid-width-video-wrapper").removeAttr("style");var t=jQuery(this).parents(".bwg_blog_style_image_"+bwg).find(".fluid-width-video-wrapper").contents();jQuery(this).parents(".fluid-width-video-wrapper").replaceWith(t)}jQuery(this).width(jQuery(this).parents(".bwg_blog_style_image_"+bwg).width()),jQuery(this).height(.5625*jQuery(this).width())}),jQuery(".bwg_embed_frame_instapost_"+bwg).each(function(e){jQuery(this).width(jQuery(this).parents(".bwg_blog_style_image_"+bwg).width()),jQuery(this).height((jQuery(this).width()-16)*jQuery(this).attr("data-height")/jQuery(this).attr("data-width")+96)}),bwg_container_loaded(bwg)})}function bwg_blog_style_ready(t){var e=t.data("bwg");bwg_container_loaded(e);var i=!1;t.find(".bwg_lightbox_"+e).on("click",function(){var e=jQuery(this).attr("data-image-id");if(jQuery("#bwg_blog_style_share_buttons_"+e).removeAttr("data-open-comment"),!i)return i=!0,setTimeout(function(){i=!1},100),bwg_gallery_box(e,t.closest(".bwg_container")),!1}),jQuery(".bwg_lightbox_"+e+" .bwg_ecommerce").on("click",function(e){if(e.stopPropagation(),!i)return i=!0,setTimeout(function(){i=!1},100),bwg_gallery_box(t.attr("data-image-id"),t.closest(".bwg_container"),!0),!1});var a=window.location.hash.substring(1);a&&"-1"!=a.indexOf("bwg")&&(bwg_hash_array=a.replace("bwg","").split("/"),"<?php echo $params_array['gallery_id']; ?>"==bwg_hash_array[0]&&bwg_gallery_box(bwg_hash_array[1]))}function bwg_slideshow_focus(){jQuery(".bwg_slideshow").each(function(){bwg=jQuery(this).data("bwg"),jQuery(".bwg_slideshow[data-bwg="+bwg+"]")[0].offsetHeight&&jQuery("#bwg_slideshow_image_container_"+bwg).length&&(bwg_params[bwg]=JSON.parse(jQuery("#bwg_slideshow_image_container_"+bwg).attr("data-params")),bwg_params[bwg].event_stack=[],window.clearInterval(window["bwg_playInterval"+bwg]),jQuery(".bwg_ctrl_btn_"+bwg).hasClass("bwg-icon-play")||bwg_play(bwg_params[bwg].data,bwg))})}function bwg_carousel_focus(){jQuery(".bwg_carousel").each(function(){bwg=jQuery(this).data("bwg"),jQuery(".bwg_carousel[data-bwg="+bwg+"]")[0].offsetHeight&&jQuery(".bwg_carousel_image_container_"+bwg).length&&jQuery(".bwg_ctrl_btn_"+bwg).hasClass("bwg-icon-pause")&&bwg_params_carousel[bwg].carousel.start()})}function bwg_slideshow_blur(e){jQuery(".bwg_slideshow").each(function(){bwg=jQuery(this).data("bwg"),!e&&jQuery(".bwg_slideshow[data-bwg="+bwg+"]")[0].offsetHeight||jQuery("#bwg_slideshow_image_container_"+bwg).length&&(bwg_params[bwg]=JSON.parse(jQuery("#bwg_slideshow_image_container_"+bwg).attr("data-params")),bwg_params[bwg].event_stack=[],window.clearInterval(window["bwg_playInterval"+bwg]))})}function bwg_carousel_blur(e){jQuery(".bwg_carousel").each(function(){bwg=jQuery(this).data("bwg"),!e&&jQuery(".bwg_carousel[data-bwg="+bwg+"]")[0].offsetHeight||jQuery(".bwg_carousel_image_container_"+bwg).length&&void 0!==bwg_params_carousel[bwg]&&bwg_params_carousel[bwg].carousel.pause()})}function bwg_carousel_ready(t){bwg_params_carousel[t]=[],bwg_params_carousel[t].bwg_currentCenterNum=1,bwg_params_carousel[t].bwg_currentlyMoving=!1,bwg_params_carousel[t].data=[],jQuery("#spider_carousel_left-ico_"+t).on("click",function(e){bwg_params_carousel[t].carousel.prev(),e.stopPropagation(),e.stopImmediatePropagation()}),jQuery("#spider_carousel_right-ico_"+t).on("click",function(e){bwg_params_carousel[t].carousel.next(),e.stopPropagation(),e.stopImmediatePropagation()}),parseInt(bwg_params_carousel[t].carousel_enable_autoplay)&&(jQuery(".bwg_carousel_play_pause_"+t).attr("title",bwg_objectsL10n.pause),jQuery(".bwg_carousel_play_pause_"+t).attr("class","bwg-icon-pause bwg_ctrl_btn_"+t+" bwg_carousel_play_pause_"+t)),jQuery(".bwg_carousel_play_pause_"+t).on(bwg_click,function(e){jQuery(".bwg_ctrl_btn_"+t).hasClass("bwg-icon-play")?(jQuery(".bwg_carousel_play_pause_"+t).attr("title",bwg_objectsL10n.pause),jQuery(".bwg_carousel_play_pause_"+t).attr("class","bwg-icon-pause bwg_ctrl_btn_"+t+" bwg_carousel_play_pause_"+t),bwg_params_carousel[t].carousel.start()):(jQuery(".bwg_carousel_play_pause_"+t).attr("title",bwg_objectsL10n.play),jQuery(".bwg_carousel_play_pause_"+t).attr("class","bwg-icon-play bwg_ctrl_btn_"+t+" bwg_carousel_play_pause_"+t),bwg_params_carousel[t].carousel.pause()),e.stopPropagation(),e.stopImmediatePropagation()}),void 0!==jQuery().swiperight&&jQuery.isFunction(jQuery().swiperight)&&jQuery("#bwg_container1_"+t).swiperight(function(){bwg_params_carousel[t].carousel.prev()}),void 0!==jQuery().swipeleft&&jQuery.isFunction(jQuery().swipeleft)&&jQuery("#bwg_container1_"+t).swipeleft(function(){bwg_params_carousel[t].carousel.next()})}function bwg_carousel_resize(){jQuery(".bwg-carousel").each(function(){var e=jQuery(this).data("bwg");jQuery("#bwg_carousel-container"+e).length&&(bwg_carousel_params(e,!0),bwg_params_carousel[e].carousel.pause(),bwg_carousel_watermark(e),jQuery(".bwg_ctrl_btn_"+e).hasClass("bwg-icon-play")||bwg_params_carousel[e].carousel.start())})}function bwg_carousel_onload(e){var t=e.data("bwg"),i=e.find(".bwg_carousel-container"+t);i.length&&(bwg_params_carousel[t]=i.data("params"),bwg_params_carousel[t].parent_width=0,bwg_carousel_watermark(t),bwg_carousel_params(t,!1),bwg_container_loaded(t))}function bwg_carousel_params(t,e){var i=jQuery("#bwg_container1_"+t).parent();i.hasClass("elementor-tab-content")&&i.width(i.closest(".elementor-widget-wrap").width());var a=i.width(),r=1;a<bwg_params_carousel[t].carousel_r_width?r=a/bwg_params_carousel[t].carousel_r_width:a=bwg_params_carousel[t].carousel_r_width,bwg_params_carousel[t].parent_width!=a&&(bwg_params_carousel[t].parent_width=a,bwg_params_carousel[t].carousel_image_column_number>bwg_params_carousel[t].count&&(bwg_params_carousel[t].carousel_image_column_number=bwg_params_carousel[t].count),jQuery(".bwg_carousel_play_pause_"+t).css({display:parseInt(bwg_params_carousel[t].carousel_play_pause_butt)?"":"none"}),parseInt(bwg_params_carousel[t].carousel_prev_next_butt)?(jQuery("#bwg_carousel-right"+t).css({display:""}),jQuery("#bwg_carousel-left"+t).css({display:""})):(jQuery("#bwg_carousel-left"+t).css({display:"none"}),jQuery("#bwg_carousel-right"+t).css({display:"none"})),jQuery(".inner_instagram_iframe_bwg_embed_frame_"+t).each(function(){var e=jQuery(this).parent();bwg_params_carousel[t].image_height/(parseInt(e.attr("data-height"))+96)<bwg_params_carousel[t].image_width/parseInt(e.attr("data-width"))?(e.height(bwg_params_carousel[t].image_height*r),e.width((e.height()-96)*e.attr("data-width")/e.attr("data-height")+16)):(e.width(bwg_params_carousel[t].image_width*r),e.height((e.width()-16)*e.attr("data-height")/e.attr("data-width")+96))}),jQuery(".bwg_carousel_image_container_"+t).css({width:bwg_params_carousel[t].image_width*r,height:bwg_params_carousel[t].image_height*r}),jQuery(".bwg_carousel_watermark_text_"+t+", .bwg_carousel_watermark_text_"+t+":hover").css({fontSize:a*(bwg_params_carousel[t].watermark_font_size/bwg_params_carousel[t].image_width)*r}),jQuery(".bwg_carousel-image "+t).css({width:bwg_params_carousel[t].image_width*r,height:bwg_params_carousel[t].image_height*r}),jQuery(".bwg_carousel_watermark_container_"+t).css({width:bwg_params_carousel[t].image_width*r,height:bwg_params_carousel[t].image_height*r}),jQuery(".bwg_carousel_embed_video_"+t).css({width:bwg_params_carousel[t].image_width*r,height:bwg_params_carousel[t].image_height*r}),jQuery(".bwg_carousel_watermark_spun_"+t).css({width:bwg_params_carousel[t].image_width*r,height:bwg_params_carousel[t].image_height*r}),jQuery(".bwg_carousel-container"+t).css({width:a,height:bwg_params_carousel[t].image_height*r}),jQuery(".bwg_video_hide"+t).css({width:bwg_params_carousel[t].image_width*r,height:bwg_params_carousel[t].image_height*r}),bwg_params_carousel[t].carousel&&!e||(e&&bwg_params_carousel[t].carousel&&bwg_params_carousel[t].carousel.pause(),bwg_params_carousel[t].carousel=jQuery("#bwg_carousel"+t).featureCarousel({containerWidth:a*r,containerHeight:bwg_params_carousel[t].image_height*r,fit_containerWidth:bwg_params_carousel[t].carousel_fit_containerWidth,largeFeatureWidth:bwg_params_carousel[t].image_width*r,largeFeatureHeight:bwg_params_carousel[t].image_height*r,smallFeaturePar:bwg_params_carousel[t].carousel_image_par,currentlyMoving:!1,startingFeature:bwg_params_carousel[t].bwg_currentCenterNum,featuresArray:[],timeoutVar:null,rotationsRemaining:0,autoPlay:1e3*bwg_params_carousel[t].car_inter,interval:1e3*bwg_params_carousel[t].carousel_interval,imagecount:bwg_params_carousel[t].carousel_image_column_number,bwg_number:t,enable_image_title:bwg_params_carousel[t].enable_image_title,borderWidth:0})))}function bwg_carousel_watermark(e){var t=1,i=jQuery("#bwg_container1_"+e).parent().width();if(i<bwg_params_carousel[e].carousel_r_width&&(t=i/bwg_params_carousel[e].carousel_r_width),i>=bwg_params_carousel[e].image_width)bwg_carousel_change_watermark_container(e),jQuery("#bwg_carousel_play_pause-ico_"+e).css({fontSize:bwg_params_carousel[e].carousel_play_pause_btn_size}),jQuery(".bwg_carousel_watermark_image_"+e).css({maxWidth:bwg_params_carousel[e].watermark_width*t,maxHeight:bwg_params_carousel[e].watermark_height*t}),jQuery(".bwg_carousel_watermark_text_"+e+", .bwg_carousel_watermark_text_"+e+":hover").css({fontSize:t*bwg_params_carousel[e].watermark_font_size});else{var a=bwg_params_carousel[e].image_width/t;bwg_carousel_change_watermark_container(e),jQuery(".bwg_carousel_watermark_image_"+e).css({maxWidth:i*bwg_params_carousel[e].watermark_width/a,maxHeight:i*bwg_params_carousel[e].watermark_height/a}),jQuery(".bwg_carousel_watermark_text_"+e+", .bwg_carousel_watermark_text_"+e+":hover").css({fontSize:i*bwg_params_carousel[e].watermark_font_size/a})}}function bwg_carousel_change_watermark_container(a){jQuery(".bwg_carousel"+a).children().each(function(){if(2==jQuery(this).css("zIndex")){var e=jQuery(this).find("img");e.length||(e=jQuery(this).find("iframe"));var t=e.width(),i=e.height();jQuery(".bwg_carousel_watermark_spun_"+a).width(t),jQuery(".bwg_carousel_watermark_spun_"+a).height(i),jQuery(".bwg_carousel_title_spun_"+a).width(t),jQuery(".bwg_carouel_title_spun_"+a).height(i),jQuery(".bwg_carousel_watermark_"+a).css({display:"none"})}})}function bwg_carousel_preload(e,t){var i=jQuery(".bwg_carousel_preload").get();t||i.reverse();var a=0;jQuery(i).each(function(){if(1<++a)return!1;jQuery(this).parent().hasClass("bwg_carousel_embed_video_"+e)||jQuery(this).parent().hasClass("bwg_embed_frame_"+e)||jQuery(this).parent().hasClass("bwg_carousel_video")?(jQuery(this).attr("src",jQuery(this).attr("data-src")),jQuery(this).on("load",function(){jQuery(this).removeClass("bwg_carousel_preload")}),jQuery(this).parent().hasClass("bwg_carousel_video")&&(jQuery(".bwg_carousel_video")[0].load(),jQuery(this).parent().parent().removeClass("bwg_carousel_preload")),jQuery(this).removeAttr("data-src")):(jQuery(this).css({"background-image":"url('"+jQuery(this).attr("data-background")+"')",height:"100%"}),jQuery(this).removeClass("bwg_carousel_preload"),jQuery(this).removeAttr("data-background"))})}function bwg_slideshow_ready(i){if(jQuery("#bwg_slideshow_image_container_"+i).length){bwg_params[i]=JSON.parse(jQuery("#bwg_slideshow_image_container_"+i).attr("data-params")),bwg_params[i].event_stack=[];var e=".bwg_slideshow_filmstrip_"+i,t="bwg_slideshow_filmstrip_thumbnail_"+i;bwg_slideshow_filmstrip_thumb[t]={},bwg_slideshow_filmstrip_thumb[t].next_prev_index=0;var a=!1;2==bwg_params[i].slideshow_filmstrip_type&&(a=!0,e=".bwg_slideshow_filmstrip_fix_count_"+i),bwg_container_loaded(i);var r=bwg_params[i].data;void 0!==jQuery().swiperight&&jQuery.isFunction(jQuery().swiperight)&&jQuery("#bwg_container1_"+i).swiperight(function(){return bwg_change_image(parseInt(jQuery("#bwg_current_image_key_"+i).val()),0<=parseInt(jQuery("#bwg_current_image_key_"+i).val())-bwg_iterator(i)?(parseInt(jQuery("#bwg_current_image_key_"+i).val())-bwg_iterator(i))%r.length:r.length-1,r,"",i),!1}),void 0!==jQuery().swipeleft&&jQuery.isFunction(jQuery().swipeleft)&&jQuery("#bwg_container1_"+i).swipeleft(function(){return bwg_change_image(parseInt(jQuery("#bwg_current_image_key_"+i).val()),parseInt(jQuery("#bwg_current_image_key_"+i).val())+bwg_iterator(i)%r.length,r,"",i),!1});var _=/android|webos|iphone|ipad|ipod|blackberry|iemobile|opera mini/i.test(navigator.userAgent.toLowerCase())?"touchend":"click";bwg_popup_resize(i),jQuery(".bwg_slideshow_watermark_"+i).css({display:"none"}),jQuery(".bwg_slideshow_title_text_"+i).css({display:"none"}),jQuery(".bwg_slideshow_description_text_"+i).css({display:"none"}),setTimeout(function(){bwg_change_watermark_container(i)},500),1==bwg_params[i].slideshow_filmstrip_type&&("horizontal"==bwg_params[i].filmstrip_direction?jQuery(".bwg_slideshow_image_container_"+i).height(jQuery(".bwg_slideshow_image_wrap_"+i).height()-bwg_params[i].slideshow_filmstrip_height):jQuery(".bwg_slideshow_image_container_"+i).width(jQuery(".bwg_slideshow_image_wrap_"+i).width()-bwg_params[i].slideshow_filmstrip_width));var s=/Firefox/i.test(navigator.userAgent)?"DOMMouseScroll":"mousewheel";jQuery(e).bind(s,function(e){var t=window.event||e;return 0<((t=t.originalEvent?t.originalEvent:t).detail?-40*t.detail:t.wheelDelta)?jQuery(".bwg_slideshow_filmstrip_left_"+i).trigger("click"):jQuery(".bwg_slideshow_filmstrip_right_"+i).trigger("click"),!1});var o={bwg:i,params:bwg_params[i],slideshow_filmstrip_class_name:e};if(jQuery(".bwg_slideshow_filmstrip_right_"+i).on(_,function(){1==a?!1===bwg_slideshow_filmstrip_thumbnail_timer&&(bwg_slideshow_filmstrip_thumbnail_timer=!0,bwg_slideshow_filmstrip_next(o),setTimeout(function(){bwg_slideshow_filmstrip_thumbnail_timer=!1},505)):bwg_slideshow_filmstrip_next(o)}),jQuery(".bwg_slideshow_filmstrip_left_"+i).on(_,function(){1==a?!1===bwg_slideshow_filmstrip_thumbnail_timer&&(bwg_slideshow_filmstrip_thumbnail_timer=!0,bwg_slideshow_filmstrip_prev(o),setTimeout(function(){bwg_slideshow_filmstrip_thumbnail_timer=!1},505)):bwg_slideshow_filmstrip_prev(o)}),"width"==bwg_params[i].width_or_height?bwg_set_filmstrip_pos(jQuery(e).width(),i):bwg_set_filmstrip_pos(jQuery(e).height(),i),jQuery("#bwg_slideshow_play_pause_"+i).off(_).on(_,function(){jQuery(".bwg_ctrl_btn_"+i).hasClass("bwg-icon-play")?(bwg_play(bwg_params[i].data,i),jQuery(".bwg_slideshow_play_pause_"+i).attr("title",bwg_objectsL10n.pause),jQuery(".bwg_slideshow_play_pause_"+i).attr("class","bwg-icon-pause bwg_ctrl_btn_"+i+" bwg_slideshow_play_pause_"+i),1==bwg_params[i].enable_slideshow_music&&document.getElementById("bwg_audio_"+i).play()):(window.clearInterval(window["bwg_playInterval"+i]),jQuery(".bwg_slideshow_play_pause_"+i).attr("title","Play"),jQuery(".bwg_slideshow_play_pause_"+i).attr("class","bwg-icon-play bwg_ctrl_btn_"+i+" bwg_slideshow_play_pause_"+i),1==bwg_params[i].enable_slideshow_music&&document.getElementById("bwg_audio_"+i).pause())}),0!=bwg_params[i].enable_slideshow_autoplay&&(bwg_play(bwg_params[i].data,i),jQuery(".bwg_slideshow_play_pause_"+i).attr("title",bwg_objectsL10n.pause),jQuery(".bwg_slideshow_play_pause_"+i).attr("class","bwg-icon-pause bwg_ctrl_btn_"+i+" bwg_slideshow_play_pause_"+i),1==bwg_params[i].enable_slideshow_music&&jQuery("#bwg_audio_"+i).length&&document.getElementById("bwg_audio_"+i).play()),bwg_params[i].preload_images&&bwg_preload_images(parseInt(jQuery("#bwg_current_image_key_".$bwg).val()),i),jQuery(".bwg_slideshow_image_"+i).removeAttr("width"),jQuery(".bwg_slideshow_image_"+i).removeAttr("height"),"undefined"!=typeof instgrm&&void 0!==instgrm.Embeds){var l=jQuery("#instagram-embed-"+i),n=jQuery(".bwg_embed_frame_"+i).data("height");l.hide(),instgrm.Embeds.process(),l.css({"max-height":n+"px"}).show()}}}function bwg_image_browser_resize(){jQuery(".bwg_image_browser").each(function(){var e=jQuery(this).attr("data-bwg");jQuery(".image_browser_images_conteiner_"+e).length&&(bwg_params_ib[e]=JSON.parse(jQuery("#bwg_container1_"+e+" .image_browser_images_conteiner_"+e).attr("data-params")),bwg_image_browser(e))})}function bwg_image_browser_ready(e){var t=e.data("bwg");bwg_container_loaded(t),jQuery(".image_browser_images_conteiner_"+t).length&&(bwg_params_ib[t]=JSON.parse(jQuery(".image_browser_images_conteiner_"+t).attr("data-params")),setTimeout(function(){bwg_image_browser(t)},3))}function bwg_search_focus(e){jQuery(e).parent().find(".bwg_search_input").focus(),jQuery(e).hide()}function bwg_key_press(e){jQuery(e).parent().find(".bwg_search_reset_container").removeClass("bwg-hidden"),jQuery(e).parent().find(".bwg_search_loupe_container1").removeClass("bwg-hidden")}function bwg_all_thumnails_loaded(t){var i=0,a=jQuery(t).find("img").length;return 0==a?bwg_all_thumbnails_loaded_callback(t):jQuery(t).find("img").each(function(){var e=jQuery(this).attr("src");jQuery("<img/>").attr("src",e).on("load error",function(){++i>=a&&bwg_all_thumbnails_loaded_callback(t)})}),jQuery(".bwg_container").each(function(){var e=jQuery(this).data("bwg");0<jQuery(this).find(".wd_error").length&&bwg_container_loaded(e)}),0==a}function bwg_all_thumbnails_loaded_callback(e){jQuery(e).hasClass("bwg-thumbnails")&&!jQuery(e).hasClass("bwg-masonry-thumbnails")&&bwg_thumbnail(e),jQuery(e).hasClass("bwg-masonry-thumbnails")&&bwg_thumbnail_masonry(e),jQuery(e).hasClass("bwg-album-extended")&&bwg_album_extended(e)}function bwg_album_thumbnail(e){bwg_container_loaded(jQuery(e).data("bwg"))}function bwg_album_extended(e){var t=jQuery(e).width(),i=jQuery(e).data("thumbnail-width"),a=jQuery(e).data("spacing"),r=jQuery(e).data("max-count"),_=parseInt(t/(2*i));_<1&&(_=1),r<_&&(_=r);var s=100/_,o=jQuery(e).find(".bwg-extended-item"),l=parseInt(o.css("margin-left")),n=parseInt(o.css("margin-right"));o.css({width:"calc("+s+"% - "+(l+n)+"px)"}),o.width()<i?o.find(".bwg-extended-item0, .bwg-extended-item1").css({width:"calc(100% - "+a+"px)"}):o.width()>2*i?(o.find(".bwg-extended-item0").css({width:"calc(50% - "+a+"px)"}),o.find(".bwg-extended-item1").css({width:"calc(100% - "+(i+2*a)+"px)"})):o.find(".bwg-extended-item0, .bwg-extended-item1").css({width:"calc(50% - "+a+"px)"}),jQuery(e).children(".bwg-extended-item").each(function(){var e=jQuery(this).find("img"),t=jQuery(this).find(".bwg-item0"),i=jQuery(this).find(".bwg-item2"),a=e.data("width"),r=e.data("height");""!=a&&""!=r||(a=e.width(),r=e.height());var _=a/r;i.width()/i.height()>a/r?(i.width()>a?e.css({width:"100%",height:i.width()/_}):e.css({maxWidth:"100%",height:i.width()/_}),a=i.width(),r=i.width()/_):(i.height()>r?e.css({height:"100%",width:i.height()*_,maxWidth:"initial"}):e.css({maxHeight:"100%",width:i.height()*_,maxWidth:"initial"}),r=i.height(),a=i.height()*_),jQuery(this).find(".bwg-item2").css({marginLeft:(t.width()-a)/2,marginTop:(t.height()-r)/2})}),bwg_container_loaded(jQuery(e).data("bwg"))}function bwg_thumbnail(e){var t=jQuery(e).width(),i=jQuery(e).data("thumbnail-width"),a=jQuery(e).data("max-count"),r=parseInt(t/i)+1;a<r&&(r=a);var _=100/r;jQuery(e).find(".bwg-item").css({width:_+"%"}),jQuery(e).children(".bwg-item").each(function(){var e=jQuery(this).find("img"),t=jQuery(this).find(".bwg-item2"),i=jQuery(this).find(".bwg-item1"),a=0<t.width()?t.width():i.width(),r=0<t.height()?t.height():i.height(),_=e.data("width"),s=e.data("height");""!=_&&""!=s&&void 0!==_&&void 0!==s||(_=e.width(),s=e.height());var o=_/s;e.removeAttr("style"),o<a/r?(_<a?e.css({width:"100%",height:a/o}):e.css({maxWidth:"100%",height:Math.ceil(a/o)}),s=(_=a)/o):(r>e.height()?e.css({height:"100%",width:r*o,maxWidth:"initial"}):e.css({maxHeight:"100%",width:r*o,maxWidth:"initial"}),_=(s=r)*o),jQuery(this).find(".bwg-item2").css({marginLeft:(a-_)/2,marginTop:(r-s)/2})}),bwg_container_loaded(jQuery(e).data("bwg"))}function bwg_thumbnail_masonry(e){var t="#bwg_thumbnails_masonry_"+(bwg=jQuery(e).attr("data-bwg"));jQuery("#bwg_album_masonry_"+bwg).length&&(t="#bwg_album_masonry_"+bwg),0===jQuery(".bwg-container-temp"+bwg).length&&(jQuery(t).clone().appendTo("#bwg_container3_"+bwg).removeAttr("id").removeClass("bwg-container-"+bwg).addClass("bwg-container-temp"+bwg),jQuery(".bwg-container-temp"+bwg).empty());var a=jQuery(".bwg-container-temp"+bwg),r=jQuery(t),_=a;if(a.prepend(r.html()),_.find(".bwg-empty-item").remove(),"horizontal"==_.data("masonry-type")){var s=_.data("thumbnail-height"),o=_.data("max-count"),l=[];for(i=0;i<o;i++)l.push(0);_.find(".bwg-item").each(function(){var e=l.indexOf(Math.min.apply(Math,l));jQuery(this).css({height:s,order:e+1}),l[e]+=jQuery(this)[0].getBoundingClientRect().width});var n=Math.max.apply(Math,l);for(_.width(n),i=0;i<o;i++)l[i]<n&&_.append(jQuery('<div class="bwg-item bwg-empty-item"></div>').css({height:s,order:i+1,width:n-l[i]}))}else{_.removeAttr("style");n=_.width();var g=_.data("thumbnail-width"),w=_.data("thumbnail-border"),b=(_.data("thumbnail-padding"),o=_.data("max-count"),parseInt(n/g)+("0"==_.data("resizable-thumbnails")?0:1));o<b&&(b=o);var u=_.find(".bwg-item").length;u<b&&(b=u);var d,h,m=100/b,c=[];for(i=0;i<b;i++)c.push(0);_.find(".bwg-item").each(function(){var e=c.indexOf(Math.min.apply(Math,c)),t=jQuery(this).find("img");if(jQuery(this).css({width:m+"%",order:e+1}),void 0!==t.data("src")&&-1===t.data("src").indexOf("svg")&&0<t.attr("data-width").length&&0<t.attr("data-height").length){h=parseInt(t.data("width"))/parseInt(t.data("height")),d=t.width()/h;var i=(this.querySelector("a .bwg-zoom-effect-overlay .bwg-title2")||!this.querySelector("a .bwg-title1 .bwg-title2")?0:this.querySelector("a .bwg-title1 .bwg-title2").getClientRects()[0].height)+(0<jQuery(this).find(".bwg-masonry-thumb-description").length?jQuery(this).find(".bwg-masonry-thumb-description").height():0);jQuery(this).height(Math.floor(d+i+2*w))}c[e]+=jQuery(this)[0].getBoundingClientRect().height});var p=Math.max.apply(Math,c);for(i=0;i<b;i++)c[i]<p&&_.append(jQuery('<div class="bwg-item bwg-empty-item"></div>').css({width:m+"%",order:i+1,height:p-c[i]}));_.outerWidth(b*(g+2*w)),_.height(p)}if(""!=a.html()){r.outerWidth(b*(g+2*w)),"0"!=p?(r.css("opacity","1"),r.height(p)):r.css("opacity","0"),r.empty();var y=a.html();r.append(y),r.find(".bwg_lazyload").each(function(){null!=jQuery(this).data("src")&&""!=jQuery(this).data("src")&&(jQuery(this).attr("src",jQuery(this).data("src")),jQuery(this).on("load",function(){jQuery(this).removeClass("lazy_loader")}))}),a.empty().hide()}bwg_container_loaded(_.data("bwg"))}function bwg_container_loaded(e){jQuery("#gal_front_form_"+e).removeClass("bwg-hidden"),jQuery("#ajax_loading_"+e).addClass("bwg-hidden"),jQuery(".bwg_container img").removeAttr("width").removeAttr("height")}function bwg_thumbnail_mosaic_logic(e){var t=e.attr("data-bwg"),i=e.attr("data-block-id"),a=parseInt(e.attr("data-thumb-padding"))/2,r=parseInt(e.attr("data-thumb-border"))+a;if("horizontal"==e.attr("data-mosaic-direction")){var _=parseInt(e.attr("data-height"));if("1"==e.attr("data-resizable"))if(1920<=jQuery(window).width())var s=(1+jQuery(window).width()/1920)*_;else if(jQuery(window).width()<=640)s=jQuery(window).width()/640*_;else s=_;else s=_;(p=jQuery(".bwg_mosaic_thumb_"+t)).each(function(e){var t=jQuery(this).data("width"),i=jQuery(this).data("height");""!=t&&""!=i&&void 0!==t&&void 0!==i||(t=p.get(e).naturalWidth,i=p.get(e).naturalHeight),t=t*s/i,p.eq(e).height(s),p.eq(e).width(t)});var o=jQuery("#bwg_mosaic_thumbnails_div_"+t).width()/100*parseInt(e.attr("data-total-width"));jQuery("#"+i).width(o);var l=s+2*r,n=0,g=[];g[0]=0;var w=[],b=w[0]=0;p.each(function(e){row_cum_width2=b+p.eq(e).width()+2*r,row_cum_width2-o<0?(b=row_cum_width2,g[e]=n,w[n]++):e!==p.length-1?Math.abs(b-o)>Math.abs(row_cum_width2-o)||Math.abs(b-o)<=Math.abs(row_cum_width2-o)&&0==w[n]?e!==p.length-2?(b=row_cum_width2,g[e]=n,w[n]++,w[++n]=0,b=0):(b=row_cum_width2,g[e]=n,w[n]++):(w[++n]=1,g[e]=n,b=row_cum_width2-b):(b=row_cum_width2,g[e]=n,w[n]++)});for(var u=[],d=[],h=0;h<=n;h++)b=0,p.each(function(e){g[e]==h&&(b+=p.eq(e).width())}),u[h]=z=(o-2*w[h]*r)/b,d[h]=(l-2*r)*u[h]+2*r;if(0==n)for(h=0;h<=n;h++)d[h]>s&&(u[h]=1,d[h]=l);(O=[])[0]=0;var m=[],c=[];m[0]=0,c[0]=0;for(h=1;h<=n;h++)m[h]=m[0],c[h]=c[h-1]+d[h-1];p.each(function(e){var t=p.eq(e).width(),i=p.eq(e).height();p.eq(e).width(t*u[g[e]]),p.eq(e).height(i*u[g[e]]),p.eq(e).parent().css({top:c[g[e]],left:m[g[e]]}),m[g[e]]+=t*u[g[e]]+2*r,O[g[e]]=e}),jQuery("#"+i).height(c[n]+d[n]-c[0])}else{var p,y=parseInt(e.attr("data-width"));if("1"==e.attr("data-resizable")){if(1920<=jQuery(window).width())var f=(1+jQuery(window).width()/1920)*y;else if(jQuery(window).width()<=640)f=jQuery(window).width()/640*y;else f=y;if(0<jQuery(".header-content-with_tab").length)f=jQuery(".header-content-with_tab").width()/4-10}else f=y;(p=jQuery(".bwg_mosaic_thumb_"+t)).each(function(e){jQuery(this).removeAttr("style"),jQuery(this).parent().removeAttr("style");var t=jQuery(this).data("width"),i=jQuery(this).data("height");""!=t&&""!=i&&void 0!==t&&void 0!==i||(t=p.get(e).naturalWidth,i=p.get(e).naturalHeight),p.eq(e).height(i*f/t),p.eq(e).width(f)});o=jQuery("#bwg_mosaic_thumbnails_div_"+t).width()/100*parseInt(e.attr("data-total-width"));jQuery("#"+i).width(o);var j=f+2*r<o?f:o-2*r,Q=Math.min(Math.floor(o/(j+2*r)),p.length),v=[];v[0]=0;for(var x=[],k=[],z=0;z<Q;z++)k[z]=0,x[z]=0;p.each(function(e){for(var t=0,i=k[0],a=0;a<Q;a++)i>k[a]&&(i=k[a],t=a);v[e]=t,x[t]++,H=i,T=0+t*(j+2*r),p.eq(e).parent().css({top:H,left:T}),k[t]+=p.eq(e).height()+2*r}),(u=[])[0]=1;var C=0,I=[],E=0,M=0;for(z=0;z<Q;z++)C+=j,I[z]=0,p.each(function(e){v[e]==z&&(I[z]+=p.eq(e).height())}),0!=I[z]&&(E+=j/I[z],M+=j*x[z]*2*r/I[z]);var S=0;0!=E&&(S=(C+M)/E);for(z=0;z<Q;z++)0!=I[z]&&(u[z]=(S-2*x[z]*r)/I[z]);var O,T=[];T[0]=0;for(z=1;z<=Q;z++)T[z]=T[z-1]+j*u[z-1]+2*r;var H=[];for(z=0;z<Q;z++)H[z]=0;(O=[])[0]=0,p.each(function(e){var t=p.eq(e).width(),i=p.eq(e).height();p.eq(e).width(t*u[v[e]]),p.eq(e).height(i*u[v[e]]),p.eq(e).parent().css({top:H[v[e]],left:T[v[e]]}),H[v[e]]+=i*u[v[e]]+2*r,O[v[e]]=e}),jQuery("#"+i).width(T[Q]).height(H[0])}}function bwg_thumbnail_mosaic(e){var t=jQuery(e),i=jQuery.Deferred();if(i.done([bwg_thumbnail_mosaic_logic]).done(function(e){"1"!=e.data("mosaic-thumb-transition")&&jQuery(".bwg_mosaic_thumb_spun_"+t).css({transition:"all 0.3s ease 0s","-webkit-transition":"all 0.3s ease 0s"});var t=e.data("bwg");jQuery(".bwg_mosaic_thumbnails_"+t).css({visibility:"visible"}),jQuery(".tablenav-pages_"+t).css({visibility:"visible"}),bwg_container_loaded(t),jQuery(".bwg_mosaic_thumb_"+t).removeClass("bwg-hidden"),jQuery("#bwg_mosaic_thumbnails_div_"+t).removeClass("bwg-hidden")}),i.resolve(t),"hover"==t.attr("data-image-title")){var a=parseInt(t.attr("data-thumb-padding"))/2,r=parseInt(t.attr("data-thumb-border"))+a;bwg_mosaic_title_on_hover(t.data("bwg"),t,r)}"hover"==t.attr("data-ecommerce-icon")&&(jQuery(".bwg_mosaic_thumb_spun_"+bwg).on("mouseenter",function(){var e=jQuery(this).parents(".bwg-mosaic-thumb-span").children(".bwg_mosaic_thumb_"+bwg).width(),t=jQuery(this).parents(".bwg-mosaic-thumb-span").children(".bwg_mosaic_thumb_"+bwg).height();jQuery(this).children(".bwg_ecommerce_spun1_"+bwg).width(e);var i=jQuery(this).children(".bwg_ecommerce_spun1_"+bwg).width(),a=jQuery(this).children(".bwg_ecommerce_spun1_"+bwg).height();jQuery(this).children(".bwg_ecommerce_spun1_"+bwg).css({top:r+.5*t-.5*a,left:r+.5*e-.5*i,opacity:1})}),jQuery(".bwg_mosaic_thumb_spun_"+bwg).on("mouseleave",function(){jQuery(this).children(".bwg_ecommerce_spun1_"+bwg).css({top:0,left:-1e4,opacity:0,padding:t.attr("data-title-margin")})}))}function bwg_mosaic_title_on_hover(t,e,i){jQuery(".bwg-mosaic-thumb-span").on("mouseenter",function(){var e=jQuery(this).children(".bwg_mosaic_thumb_"+t).width();jQuery(this).find(".bwg_mosaic_title_spun1_"+t).width(e),jQuery(this).find(".bwg_mosaic_title_spun1_"+t).css({opacity:1,"max-height":"calc(100% - "+2*i+"px)",overflow:"hidden"})}),jQuery(".bwg-mosaic-thumb-span").on("mouseleave",function(){jQuery(this).find(".bwg_mosaic_title_spun1_"+t).css({opacity:0,padding:e.attr("data-title-margin"),"max-height":"calc(100% - "+2*i+"px)",overflow:"hidden"})})}function bwg_mosaic_ajax(e,t){var i=0;jQuery(".bwg_mosaic_thumb_spun_"+e+" img").on("load",function(){++i>=t&&bwg_thumbnail_mosaic(jQuery(".bwg-mosaic-thumbnails[data-bwg="+e+"]"))}),jQuery(".bwg_mosaic_thumb_spun_"+e+" img").on("error",function(){jQuery(this).height(100),jQuery(this).width(100),++i>=t&&bwg_thumbnail_mosaic(jQuery(".bwg-mosaic-thumbnails[data-bwg="+e+"]"))}),jQuery(".bwg_container").each(function(){var e=jQuery(this).data("bwg");0<jQuery(this).find(".wd_error").length&&bwg_container_loaded(e)})}function bwg_add_album(){var t=!1;"1"!=bwg_objectsL10n.front_ajax&&jQuery(document).off("click",".bwg-album").on("click",".bwg-album",function(){if(!t){var e=jQuery(this).attr("data-bwg");return t=!0,setTimeout(function(){t=!1},100),bwg_ajax("gal_front_form_"+e,e,jQuery(this).attr("data-container_id"),jQuery(this).attr("data-alb_gal_id"),jQuery(this).attr("data-album_gallery_id"),jQuery(this).attr("data-def_type"),"",jQuery(this).attr("data-title")),!1}}),jQuery(".bwg_description_more").on("click",function(){jQuery(this).hasClass("bwg_more")?(jQuery(this).parent().find(".bwg_description_full").show(),jQuery(this).addClass("bwg_hide").removeClass("bwg_more"),jQuery(this).html(jQuery(this).data("hide-msg"))):(jQuery(this).parent().find(".bwg_description_full").hide(),jQuery(this).addClass("bwg_more").removeClass("bwg_hide"),jQuery(this).html(jQuery(this).data("more-msg")))})}function bwg_add_lightbox(){var i=!1;jQuery(document).on("click",".bwg_lightbox .bwg-item0, .bwg_lightbox .bwg_slide, .bwg_lightbox .bwg-carousel-image, .bwg_lightbox .bwg-title1",function(e){e.stopPropagation(),e.preventDefault();var t=jQuery(this).closest("a");if(!i)return i=!0,setTimeout(function(){i=!1},100),bwg_gallery_box(jQuery(t).attr("data-image-id"),jQuery(t).closest(".bwg_container")),!1}),jQuery(".bwg_lightbox .bwg_ecommerce").on("click",function(e){if(e.stopPropagation(),!i)return i=!0,setTimeout(function(){i=!1},100),bwg_gallery_box(jQuery(this).closest(".bwg_lightbox").attr("data-image-id"),jQuery(this).closest(".bwg_container"),!0),!1})}function bwg_filter_by_tag(e){var t,i="",a="",r=(a=jQuery(e).parent().parent().hasClass("bwg_tag_buttons_view")?jQuery(e).parent().parent():jQuery(e).parent().parent().parent()).find(".current_view").val(),_=a.find(".form_id").val(),s=a.find(".cur_gal_id").val(),o=a.find(".album_gallery_id").val(),l=a.find(".type").val();jQuery(e).parent().find(".opt.selected").each(function(){i=i+jQuery(e).text()+","}),""==(i=i.slice(0,-1))&&(i=bwg_objectsL10n.bwg_select_tag),jQuery(e).parent().find(".CaptionCont").attr("title",i),jQuery(e).parent().find(".CaptionCont .placeholder").html(i);var n=jQuery(".bwg_tags_container_"+r+" #bwg_tag_id_"+s).val();t="string"==typeof n&&""!==n?n.split(","):[],"object"==typeof n&&(t=n),jQuery(".bwg_tags_container_"+r+" #bwg_tag_id_"+r).val(t),bwg_select_tag(r,_,s,o,l,!1)}function bwg_document_ready(i){bwg_add_lightbox(),i.data("right-click-protection")&&bwg_disable_right_click(i),jQuery(".SumoSelect > .CaptionCont > label > i").addClass("bwg-icon-angle-down closed");var e=i.find(".search_tags");if("1"==bwg_objectsL10n.front_ajax&&e.length)for(var t=0;t<e[0].length;t++)void 0===e[0][t].attributes.selected&&(e[0][t].selected=!1);e.length&&(e.SumoSelect({triggerChangeCombined:!0,placeholder:bwg_objectsL10n.bwg_select_tag,search:!0,searchText:bwg_objectsL10n.bwg_search,forceCustomRendering:!0,noMatch:bwg_objectsL10n.bwg_tag_no_match,captionFormatAllSelected:bwg_objectsL10n.bwg_all_tags_selected,captionFormat:"{0} "+bwg_objectsL10n.bwg_tags_selected,okCancelInMulti:!0,locale:[bwg_objectsL10n.ok,bwg_objectsL10n.cancel,bwg_objectsL10n.select_all]}),e.off("change").on("change",function(){bwg_filter_by_tag(this)})),bwg_search_tag_init(i);var a=i.find(".cur_gal_id").val(),r=i.find(".current_view").val(),_=i.find(".bwg_tags_container_"+r+" .bwg_tag_button_view_container"),s=i.find("#bwg_tag_id_"+a),o=parseInt(2*_.find(".bwg_tags_filter_buttons").outerHeight(!0));_.length&&(_.find(".bwg_tags_filter_buttons").off("click").on("click",function(){if(!jQuery(this).hasClass("active")){var e=jQuery(this).position().top;o<e&&i.find(".show_bottom_tag").val("1"),""==s.val()?s.val(jQuery(this).val()):s.val(s.val()+","+jQuery(this).val()),bwg_filter_by_tag(this)}return!1}),_.find(".bwg_all_tags").off("click").on("click",function(){return jQuery(this).hasClass("active")||(s.val(""),bwg_filter_by_tag(this)),!1}),""!=s.val()&&_.find(".bwg_all_tags").removeClass("active"),s.val().split(",").forEach(function(t){_.find(".bwg_tags_filter_buttons").each(function(){if(jQuery(this).val()==t){var e=jQuery(this).position().top;o<e&&i.find(".show_bottom_tag").val("1")}})}),bwg_tags_button_section_visibility());var l=i.find(".bwg_order");l.length&&l.SumoSelect({triggerChangeCombined:!0,forceCustomRendering:!0}),jQuery(this).find("search_placeholder_title").hide(),""==jQuery(this).find(".bwg_search_input").val()&&jQuery(this).find("search_placeholder_title").show(),jQuery(".bwg_thumbnail .bwg_search_container_2").focusout(function(e){""==jQuery(this).find(".bwg_search_input").val()&&(jQuery(this).find(".search_placeholder_title").show(),jQuery(this).find(".bwg_search_loupe_container1").addClass("bwg-hidden"),jQuery(this).find(".bwg_search_reset_container").addClass("bwg-hidden"))}),jQuery(".search_tags").on("sumo:opened",function(){var e=jQuery(this).parents(".bwg_container").height(),t=jQuery(this).parents(".bwg_container").find(".wd_error").length,i=jQuery(this).parents(".bwg_container").find(".SumoSelect>.optWrapper>.options");void 0!==i&&(e-50<i.height()&&!t&&i.css("max-height",e-50));0==jQuery(this).parent().find("ul li").length&&(jQuery(".no-match").html(bwg_objectsL10n.bwg_tag_no_match),jQuery(".no-match").show())}),jQuery(".bwg_thumbnail .SumoSelect").on("sumo:closed",function(){jQuery(this).find("label i").removeClass("bwg-icon-angle-up opened"),jQuery(this).find("label i").addClass("bwg-icon-angle-down closed")}),jQuery(".bwg_thumbnail .SumoSelect").on("sumo:opened",function(){jQuery(this).find("label i").removeClass("bwg-icon-angle-down closed"),jQuery(this).find("label i").addClass("bwg-icon-angle-up opened")}),bwg_add_album();var n=window.location.hash.substring(1);if(n&&"-1"!=n.indexOf("bwg")){bwg_hash_array=n.replace("bwg","").split("/");var g=jQuery(".bwg_container");g&&bwg_gallery_box(bwg_hash_array[1],g,!1,bwg_hash_array[0])}bwg_resize_search_line()}function bwg_search_tag_init(e){jQuery(".SumoSelect > .CaptionCont > label > i").addClass("bwg-icon-angle-down closed");var t=e.find(".search_tags");if("1"==bwg_objectsL10n.front_ajax&&t.length)for(var i=0;i<t[0].length;i++)void 0===t[0][i].attributes.selected&&(t[0][i].selected=!1);t.length&&(t.SumoSelect({triggerChangeCombined:!0,placeholder:bwg_objectsL10n.bwg_select_tag,search:!0,searchText:bwg_objectsL10n.bwg_search,forceCustomRendering:!0,noMatch:bwg_objectsL10n.bwg_tag_no_match,captionFormatAllSelected:bwg_objectsL10n.bwg_all_tags_selected,captionFormat:"{0} "+bwg_objectsL10n.bwg_tags_selected,okCancelInMulti:!0,locale:[bwg_objectsL10n.ok,bwg_objectsL10n.cancel,bwg_objectsL10n.select_all]}),t.off("change").on("change",function(){bwg_filter_by_tag(this)}))}function bwg_clear_search_input(e){if("1"!=bwg_objectsL10n.front_ajax)jQuery("#bwg_search_input_"+e).val(""),jQuery("#bwg_search_container_1_"+e+" .bwg_search_loupe_container1").addClass("bwg-hidden"),jQuery("#bwg_search_container_1_"+e+" .bwg_search_reset_container").addClass("bwg-hidden");else{var t=window.location.href,i=bwg_remove_url_parameter("bwg_search_"+e,t,t);window.location.replace(i)}}function bwg_check_search_input_enter(e,t){return"Enter"!=t.key||(jQuery(e).closest(".bwg_search_container_1").find(".bwg_search").trigger("click"),!1)}function bwg_ajax(t,i,a,r,e,_,s,o,l,n,g,w){if("1"!=bwg_objectsL10n.front_ajax||!0===n){jQuery("#ajax_loading_"+i).removeClass("bwg-hidden"),jQuery(".bwg_load_more_ajax_loading").css({top:jQuery("#bwg_container1_"+bwg).height()-jQuery(".bwg_load_more_ajax_loading").height()}),"function"==typeof bwg_scroll_load_action&&jQuery(window).off("scroll",bwg_scroll_load_action),jQuery(".bwg_thumbnail .search_tags").off("sumo:closed");var b=jQuery("#"+t).data("ajax-url"),u=0;if(void 0===n)n=!1;var d,h=jQuery("#page_number_"+i).val(),m=jQuery("#bwg_search_input_"+i).val(),c={},p=jQuery("#bwg_album_breadcrumb_"+i).val();if(p&&!0!==n){var y=JSON.parse(p);if("back"==r){y.splice(-1,1);var f=y.slice(-1)[0];r=f.id,h=f.page,c["action_"+i]="back"}else"numeric"===n||s?(y.splice(-1,1),y.push({id:r,page:h,search:m})):(y.push({id:r,page:1}),h=1);c["bwg_album_breadcrumb_"+i]=JSON.stringify(y)}if(c["bwg-preview-type"]=jQuery("#"+t).data("gallery-type"),c.gallery_type=jQuery("#"+t).data("gallery-type"),c.gallery_id=jQuery("#"+t).data("gallery-id"),c.tag=jQuery("#"+t).data("tag"),c.album_id=jQuery("#"+t).data("album-id"),c.theme_id=jQuery("#"+t).data("theme-id"),c.shortcode_id=jQuery("#"+t).data("shortcode-id"),c.bwg=i,c.current_url=encodeURI(jQuery("#bwg_container1_"+i).data("current-url")),s&&(h=1),void 0===o||""==o)o="";if(void 0===g||""==g)g="";if(void 0===l||""==l)l=jQuery(".bwg_order_"+i).val();if(void 0===w)w=!0;if(1==w&&jQuery("html, body").animate({scrollTop:jQuery("#"+t).offset().top-150},500),c["page_number_"+i]=h,c["bwg_load_more_"+i]=jQuery("#bwg_load_more_"+i).val(),c["album_gallery_id_"+i]=r,c["type_"+i]=_,c["title_"+i]=o,c["description_"+i]=g,c["sortImagesByValue_"+i]=l,c["bwg_random_seed_"+i]=jQuery("#bwg_random_seed_"+i).val(),0<jQuery("#bwg_search_input_"+i).length&&(c["bwg_search_"+i]=jQuery("#bwg_search_input_"+i).val()),void 0!==c["bwg_album_breadcrumb_"+i]){var j=JSON.parse(c["bwg_album_breadcrumb_"+i]);jQuery.each(j,function(e,t){c["bwg_search_"+i]="",r==t.id&&(c["bwg_search_"+i]=t.search)})}var Q=jQuery(".bwg_tags_container_"+i+" #bwg_tag_id_"+a).val();return d="string"==typeof Q&&""!==Q?Q.split(","):[],"object"==typeof Q&&(d=Q),c["bwg_tag_id_"+a]=d,jQuery("#ajax_loading_"+i).removeClass("bwg-hidden"),jQuery(".bwg_load_more_ajax_loading").css({top:jQuery("#bwg_container1_"+bwg).height()-jQuery(".bwg_load_more_ajax_loading").height()}),jQuery.ajax({type:"POST",url:b,data:c,success:function(e){jQuery(e).find(".bwg_masonry_thumb_spun_"+i+" img").length,u=jQuery(e).find(".bwg_mosaic_thumb_spun_"+i+" img").length,!0===n?(a=="bwg_thumbnails_mosaic_"+i?jQuery("#"+a).append(jQuery(e).closest(".bwg-container-"+i).find("#"+a).html()):a=="bwg_album_compact_"+i?jQuery("#"+a).append(jQuery(e).closest(".bwg-album-thumbnails").html()):a=="bwg_thumbnails_masonry_"+i?jQuery(".bwg-container-temp"+i).append(jQuery(e).closest(".bwg-container-"+i).html()):jQuery("#"+a).append(jQuery(e).closest(".bwg-container-"+i).html()),jQuery(".bwg_nav_cont_"+i).html(jQuery(e).closest(".bwg_nav_cont_"+i).html())):jQuery("#bwg_container3_"+i).html(e),bwg_remove_lazy_loader_icon()},complete:function(){jQuery("div[id^='bwg_container1_'] img").each(function(){null!=jQuery(this).attr("data-lazy-src")&&""!=jQuery(this).attr("data-lazy-src")?jQuery(this).attr("src",jQuery(this).attr("data-lazy-src")):null!=jQuery(this).attr("data-src")&&""!=jQuery(this).attr("data-src")&&jQuery(this).attr("src",jQuery(this).attr("data-src"))}),jQuery(".blog_style_image_buttons_conteiner_"+i).find(jQuery(".bwg_blog_style_img_"+i)).on("load",function(){jQuery(".bwg_blog_style_img_"+i).closest(jQuery(".blog_style_image_buttons_conteiner_"+i)).show()}),""==d&&(d=[]),jQuery(".bwg_tags_container_"+i+" #bwg_tag_id_"+a).val(d),d.forEach(function(t){jQuery(".bwg_tags_container_"+i+" .bwg_tags_filter_buttons").each(function(){var e=parseInt(2*jQuery(this).outerHeight(!0));jQuery(this).val()==t&&(jQuery(this).addClass("active"),e<jQuery(this).position().top&&jQuery(".bwg_tags_container_"+i+" .show_bottom_tag").val("1"),jQuery(".bwg_tags_container_"+i+" .bwg_all_tags").removeClass("active"))})}),jQuery(".pagination-links_"+i).length&&jQuery("html, body").animate({scrollTop:jQuery("#"+t).offset().top-150},500),bwg_document_ready(jQuery("#bwg_container1_"+i));var e=jQuery("#bwg_container1_"+i).data("gallery-type");if(jQuery("#bwg_container1_"+i+" .bwg-album-thumbnails").length){bwg_all_thumnails_loaded(".bwg-container-"+i)&&bwg_container_loaded(i)}else{switch(e){case"thumbnails":case"thumbnails_masonry":case"album_compact_preview":case"album_masonry_preview":case"album_extended_preview":bwg_all_thumnails_loaded(".bwg-container-"+i);break;case"slideshow":bwg_slideshow_ready(i);break;case"carousel":bwg_carousel_ready(i),bwg_carousel_onload(jQuery("#bwg_container1_"+i));break;case"image_browser":bwg_image_browser_ready(jQuery("#bwg_container1_"+i));break;case"blog_style":bwg_blog_style_ready(jQuery("#bwg_container1_"+i))}bwg_mosaic_ajax(i,u)}jQuery(".blog_style_images_conteiner_"+i+" .bwg_embed_frame_16x9_"+i).each(function(e){jQuery(this).width(jQuery(this).parent().width()),jQuery(this).height(.5625*jQuery(this).width())}),jQuery(".blog_style_images_conteiner_"+i+" .bwg_embed_frame_instapost_"+i).each(function(e){jQuery(this).width(jQuery(this).parent().width()),jQuery(this).height((jQuery(this).width()-16)*jQuery(this).attr("data-height")/jQuery(this).attr("data-width")+96)}),jQuery("#bwg_embed_frame_16x9_"+i).width(jQuery("#bwg_embed_frame_16x9_"+i).parent().width()),jQuery("#bwg_embed_frame_16x9_"+i).height(.5625*jQuery("#bwg_embed_frame_16x9_"+i).width()),jQuery("#bwg_embed_frame_instapost_"+i).width(jQuery("#bwg_embed_frame_16x9_"+i).parent().width()),jQuery(".bwg_embed_frame_instapost_"+i).height((jQuery(".bwg_embed_frame_instapost_"+i).width()-16)*jQuery(".bwg_embed_frame_instapost_"+i).attr("data-height")/jQuery(".bwg_embed_frame_instapost_"+i).attr("data-width")+96),jQuery("#bwg_search_input_"+i).val(c["bwg_search_"+i]),""!=jQuery("#bwg_search_input_"+i).val()?(jQuery("#bwg_search_input_"+i).parent().find(".search_placeholder_title").hide(),jQuery("#bwg_search_input_"+i).parent().parent().find(".bwg_search_reset_container").show(),jQuery("#bwg_search_input_"+i).parent().parent().find(".bwg_search_loupe_container1").show()):jQuery("#bwg_search_input_"+i).parent().find(".search_placeholder_title").show();jQuery("#bwg_container2_"+i+" .cur_gal_id").val();""==d&&(d=[]),jQuery(".bwg_tags_container_"+i+" #bwg_tag_id_"+i).val(d)}}),!1}if("back"===r)return-1==document.referrer.indexOf(window.location.host)?(str=jQuery(location).attr("href"),void window.location.replace(str.substring(0,str.indexOf("type_0")))):void window.history.back();var v=jQuery("#bwg_search_input_"+i).val(),x=jQuery(".bwg_tags_container_"+i+" .cur_gal_id").val(),k=window.location.href,z="",C=jQuery(".bwg_tags_container_"+i+" #bwg_tag_id_"+x).val();if(jQuery(".bwg_tags_container_"+i).parent().hasClass("bwg_tag_select_view")&&(C=C.toString()),"#"==k.substr(-1)&&(k=k.slice(0,-1)),""!==v&&void 0!==v?!1!==(z=bwg_add_url_parameter(z=bwg_remove_url_parameter("page_number_"+i,k),"bwg_search_"+i,v))&&(k=z):!1!==(z=bwg_remove_url_parameter("bwg_search_"+i,k))&&(k=z),void 0!==l&&""!==l&&!1!==(z=bwg_add_url_parameter(k,"sort_by_"+i,l))&&(k=z),null!=C&&0<C.length){var I="",E=C.split(",");jQuery.each(E,function(e){var t=",";e===E.length-1&&(t=""),I+=E[e]+t}),""!==I&&!1!==(z=bwg_add_url_parameter(k,"filter_tag_"+i,I))&&(k=z)}else!1!==(z=bwg_remove_url_parameter("filter_tag_"+i,z))&&(k=z);window.location.href=k}function bwg_add_url_parameter(e,t,i){var a=new RegExp("([?&])"+t+"=.*?(&|$)","i"),r=-1!==e.indexOf("?")?"&":"?";return e.match(a)?e.replace(a,"$1"+t+"="+i+"$2"):e+r+t+"="+i}function bwg_remove_url_parameter(e,t){var i=t.split("?"),a=i[0]+"?",r="";if(void 0!==i[1]&&(r=i[1]),""===r)return t;var _,s,o=decodeURIComponent(r).split("&");for(s=0;s<o.length;s++)(_=o[s].split("="))[0]!=e&&(a=a+_[0]+"="+_[1]+"&");return a.substring(0,a.length-1)}function bwg_select_tag(e,t,i,a,r,_){_&&jQuery(".bwg_tags_container_"+e+" #bwg_tag_id_"+i).val(""),bwg_ajax(t,e,i,a,"",r,1,"")}function bwg_cube(e,t,i,a,r,_,s,o,l,n,g){var w,b=!1,u="";if(void 0!==g&&""!==g){b=!0,bwg_params[g].bwg_trans_in_progress=!0,u="_"+g,w=bwg_params[g].bwg_transition_duration;bwg_params[g].event_stack}else w=bwg_transition_duration;if(!bwg_testBrowser_cssTransitions(g))return bwg_fallback(o,l,n,g);if(!bwg_testBrowser_cssTransforms3d(g))return bwg_fallback3d(o,l,n,g);function d(){if(jQuery(o).removeAttr("style"),jQuery(l).removeAttr("style"),jQuery(".bwg_slider"+u).removeAttr("style"),jQuery(o).css({opacity:0,"z-index":1}),jQuery(l).css({opacity:1,"z-index":2}),jQuery(".bwg_image_info").show(),jQuery(o).html(""),b){bwg_change_watermark_container(g),bwg_params[g].bwg_trans_in_progress=!1;var e=bwg_params[g].data,t=bwg_params[g].event_stack}else{e="";gallery_box_data.bwg_trans_in_progress=!1;t=gallery_box_data.event_stack}if(void 0!==t&&0<t.length){var i=t[0].split("-");t.shift(),bwg_change_image(i[0],i[1],e,!0,g)}bwg_change_watermark_container()}b?(jQuery(".bwg_slideshow_filmstrip_thumbnail_"+g).removeClass("bwg_slideshow_thumb_active_"+g).addClass("bwg_slideshow_thumb_deactive_"+g),jQuery("#bwg_filmstrip_thumbnail_"+bwg_params[g].bwg_current_key+"_"+g).removeClass("bwg_slideshow_thumb_deactive_"+g).addClass("bwg_slideshow_thumb_active_"+g),jQuery(".bwg_slideshow_dots_"+g).removeClass("bwg_slideshow_dots_active_"+g).addClass("bwg_slideshow_dots_deactive_"+g),jQuery("#bwg_dots_"+bwg_params[g].bwg_current_key+"_"+g).removeClass("bwg_slideshow_dots_deactive_"+g).addClass("bwg_slideshow_dots_active_"+g),jQuery(".bwg_slide_bg_"+g).css("perspective",1e3)):(gallery_box_data.bwg_trans_in_progress=!0,jQuery(".bwg_filmstrip_thumbnail").removeClass("bwg_thumb_active").addClass("bwg_thumb_deactive"),jQuery("#bwg_filmstrip_thumbnail_"+gallery_box_data.bwg_current_key).removeClass("bwg_thumb_deactive").addClass("bwg_thumb_active"),jQuery(".bwg_slide_bg").css("perspective",1e3)),jQuery(o).css({transform:"translateZ("+e+"px)",backfaceVisibility:"hidden"}),jQuery(l).css({opacity:1,backfaceVisibility:"hidden",transform:"translateY("+i+"px) translateX("+t+"px) rotateY("+r+"deg) rotateX("+a+"deg)"}),jQuery(".bwg_slider"+u).css({transform:"translateZ(-"+e+"px)",transformStyle:"preserve-3d"}),setTimeout(function(){jQuery(".bwg_slider"+u).css({transition:"all "+w+"ms ease-in-out",transform:"translateZ(-"+e+"px) rotateX("+_+"deg) rotateY("+s+"deg)"})},20),jQuery(".bwg_slider"+u).one("webkitTransitionEnd transitionend otransitionend oTransitionEnd mstransitionend",jQuery.proxy(d)),0==w&&d()}function bwg_cubeH(e,t,i,a){var r=jQuery(e).width()/2;"right"==i?bwg_cube(r,r,0,0,90,0,-90,e,t,i,a):"left"==i&&bwg_cube(r,-r,0,0,-90,0,90,e,t,i,a)}function bwg_cubeV(e,t,i,a){var r=jQuery(e).height()/2;"right"==i?bwg_cube(r,0,-r,90,0,-90,0,e,t,i,a):"left"==i&&bwg_cube(r,0,r,-90,0,90,0,e,t,i,a)}function bwg_fade(e,t,i,a){var r,_=!1;function s(){jQuery(".bwg_image_info").show(),bwg_change_watermark_container(a),_?bwg_params[a].bwg_trans_in_progress=!1:gallery_box_data.bwg_trans_in_progress=!1}r=void 0!==a&&""!==a?(_=!0,bwg_params[a].bwg_trans_in_progress=!0,bwg_params[a].bwg_transition_duration):(gallery_box_data.bwg_trans_in_progress=!0,gallery_box_data.bwg_transition_duration),_?(jQuery(".bwg_slideshow_filmstrip_thumbnail_"+a).removeClass("bwg_slideshow_thumb_active_"+a).addClass("bwg_slideshow_thumb_deactive_"+a),jQuery("#bwg_filmstrip_thumbnail_"+bwg_params[a].bwg_current_key+"_"+a).removeClass("bwg_slideshow_thumb_deactive_"+a).addClass("bwg_slideshow_thumb_active_"+a),jQuery(".bwg_slideshow_dots_"+a).removeClass("bwg_slideshow_dots_active_"+a).addClass("bwg_slideshow_dots_deactive_"+a),jQuery("#bwg_dots_"+bwg_params[a].bwg_current_key+"_"+a).removeClass("bwg_slideshow_dots_deactive_"+a).addClass("bwg_slideshow_dots_active_"+a)):(jQuery(".bwg_filmstrip_thumbnail").removeClass("bwg_thumb_active").addClass("bwg_thumb_deactive"),jQuery("#bwg_filmstrip_thumbnail_"+gallery_box_data.bwg_current_key).removeClass("bwg_thumb_deactive").addClass("bwg_thumb_active")),bwg_testBrowser_cssTransitions()?(jQuery(t).css("transition","opacity "+r+"ms linear"),jQuery(e).css("transition","opacity "+r+"ms linear"),jQuery(e).css({opacity:0,"z-index":1}),jQuery(t).css({opacity:1,"z-index":2}),jQuery(t).one("webkitTransitionEnd transitionend otransitionend oTransitionEnd mstransitionend",jQuery.proxy(s))):(jQuery(e).animate({opacity:0,"z-index":1},r),jQuery(t).animate({opacity:1,"z-index":2},{duration:r,complete:function(){_?bwg_params[a].bwg_trans_in_progress=!1:gallery_box_data.bwg_trans_in_progress=!1,jQuery(e).html(""),s()}}),jQuery(e).fadeTo(r,0),jQuery(t).fadeTo(r,1)),0==r&&s()}function bwg_grid(e,t,i,a,r,_,s,o,l,n,g){var w,b=!1,u="";if(event_stack=void 0!==g&&""!==g?(b=!0,bwg_params[g].bwg_trans_in_progress=!0,u="_"+g,w=bwg_params[g].bwg_transition_duration,bwg_params[g].event_stack):(w=bwg_transition_duration,gallery_box_data.bwg_trans_in_progress=!0,gallery_box_data.event_stack),!bwg_testBrowser_cssTransitions())return bwg_fallback(o,l,n);b?(jQuery(".bwg_slideshow_filmstrip_thumbnail_"+g).removeClass("bwg_slideshow_thumb_active_"+g).addClass("bwg_slideshow_thumb_deactive_"+g),jQuery("#bwg_filmstrip_thumbnail_"+bwg_params[g].bwg_current_key+u).removeClass("bwg_slideshow_thumb_deactive_"+g).addClass("bwg_slideshow_thumb_active_"+g),jQuery(".bwg_slideshow_dots_"+g).removeClass("bwg_slideshow_dots_active_"+g).addClass("bwg_slideshow_dots_deactive_"+g),jQuery("#bwg_dots_"+bwg_params[g].bwg_current_key+u).removeClass("bwg_slideshow_dots_deactive_"+g).addClass("bwg_slideshow_dots_active_"+g)):(jQuery(".bwg_filmstrip_thumbnail").removeClass("bwg_thumb_active").addClass("bwg_thumb_deactive"),jQuery("#bwg_filmstrip_thumbnail_"+gallery_box_data.bwg_current_key).removeClass("bwg_thumb_deactive").addClass("bwg_thumb_active"));var d=w/(e+t);var h=jQuery(o).find("img"),m=jQuery(o).find("figure"),c=(jQuery(o).find("iframe").css("opacity",0),jQuery('<span style="display: block;" />').addClass("bwg_grid"+u));jQuery(o).prepend(c);var p,y,f,j,Q,v,x,k,z,C,I,E=jQuery(".bwg_slide_bg"+u),M=h.width(),S=h.height(),O=E.width(),T=E.height(),H=Math.floor(O/e),L=Math.floor(T/t),A=O-e*H,B=Math.ceil(A/e),W=T-t*L,D=Math.ceil(W/t),R=0,F=Math.ceil((jQuery(".bwg_slide_bg"+u).width()-h.width())/2),N=void 0===h.attr("src")?"":h.attr("src");a="min-auto"===(a="auto"===a?O:a)?-O:a,r="min-auto"===(r="auto"===r?T:r)?-T:r;for(var P=0;P<e;P++){var U=0,V=Math.floor((jQuery(".bwg_slide_bg"+u).height()-h.height())/2),q=H;if(0<A){var J=B<=A?B:A;q+=J,A-=J}for(var G=0;G<t;G++){var Y=L,$=W;0<$&&(Y+=J=D<=$?D:W,$-=J),c.append((p=q,y=Y,f=U,j=V,Q=R,v=F,x=N,k=M,z=S,C=g,void 0,I=(P+G)*d,jQuery('<span class="bwg_gridlet'+u+'" />').css({display:"block",width:p,height:y,top:f,left:Q,backgroundImage:'url("'+x+'")',backgroundColor:b?jQuery(".bwg_slideshow_image_wrap_"+C).css("background-color"):jQuery(".spider_popup_wrap").css("background-color"),backgroundRepeat:"no-repeat",backgroundPosition:v+"px "+j+"px",backgroundSize:k+"px "+z+"px",transition:"all "+w+"ms ease-in-out "+I+"ms",transform:"none"}))),U+=Y,V-=Y}F-=q,R+=q}var X=c.children().last();function K(){if(jQuery(o).css({opacity:0,"z-index":1}),jQuery(l).css({opacity:1,"z-index":2}),h.css("opacity",1),m.css("opacity",1),c.remove(),b){bwg_params[g].bwg_trans_in_progress=!1;var e=bwg_params[g].event_stack,t=bwg_params[g].data}else{gallery_box_data.bwg_trans_in_progress=!1;e=gallery_box_data.event_stack,t=""}if(jQuery(".bwg_image_info").show(),jQuery(o).html(""),void 0!==e&&0<e.length){var i=e[0].split("-");e.shift(),bwg_change_image(i[0],i[1],t,!0,g)}b?bwg_change_watermark_container(g):bwg_change_watermark_container()}c.show(),h.css("opacity",0),m.css("opacity",0),c.children().first().addClass("rs-top-left"),c.children().last().addClass("rs-bottom-right"),c.children().eq(t-1).addClass("rs-bottom-left"),c.children().eq(-t).addClass("rs-top-right"),setTimeout(function(){c.children().css({opacity:s,transform:"rotate("+i+"deg) translateX("+a+"px) translateY("+r+"px) scale("+_+")"})},1),jQuery(l).css("opacity",1),jQuery(X).one("webkitTransitionEnd transitionend otransitionend oTransitionEnd mstransitionend",jQuery.proxy(K)),0==w&&K()}function bwg_sliceH(e,t,i,a){if("right"==i)var r="min-auto";else if("left"==i)r="auto";bwg_grid(1,8,0,r,0,1,0,e,t,i,a)}function bwg_sliceV(e,t,i,a){if("right"==i)var r="min-auto";else if("left"==i)r="auto";bwg_grid(10,1,0,0,r,1,0,e,t,i,a)}function bwg_slideV(e,t,i,a){if("right"==i)var r="auto";else if("left"==i)r="min-auto";bwg_grid(1,1,0,0,r,1,1,e,t,i,a)}function bwg_slideH(e,t,i,a){if("right"==i)var r="min-auto";else if("left"==i)r="auto";bwg_grid(1,1,0,r,0,1,1,e,t,i,a)}function bwg_scaleOut(e,t,i,a){bwg_grid(1,1,0,0,0,1.5,0,e,t,i,a)}function bwg_scaleIn(e,t,i,a){bwg_grid(1,1,0,0,0,.5,0,e,t,i,a)}function bwg_blockScale(e,t,i,a){bwg_grid(8,6,0,0,0,.6,0,e,t,i,a)}function bwg_kaleidoscope(e,t,i,a){bwg_grid(10,8,0,0,0,1,0,e,t,i,a)}function bwg_fan(e,t,i,a){if("right"==i)var r=45,_=100;else if("left"==i)r=-45,_=-100;bwg_grid(1,10,r,_,0,1,0,e,t,i,a)}function bwg_blindV(e,t,i,a){bwg_grid(1,8,0,0,0,.7,0,e,t,"",a)}function bwg_blindH(e,t,i,a){bwg_grid(10,1,0,0,0,.7,0,e,t,"",a)}function bwg_random(e,t,i,a){var r=["sliceH","sliceV","slideH","slideV","scaleOut","scaleIn","blockScale","kaleidoscope","fan","blindH","blindV"];this["bwg_"+r[Math.floor(Math.random()*r.length)]](e,t,i,a)}function bwg_change_watermark_container(t){jQuery(".bwg_slider"+(void 0!==t&&""!==t?"_"+t:"")).children().each(function(){if(2==jQuery(this).css("zIndex")){var e=jQuery(this).find("img");if(e.length)if(e.prop("complete"))bwg_change_each_watermark_container(e.width(),e.height(),t);else e.on("load",function(){bwg_change_each_watermark_container(e.width(),e.height(),t)});else(e=jQuery(this).find("iframe")).length||(e=jQuery(this).find("video")),bwg_change_each_watermark_container(e.width(),e.height(),t)}})}function bwg_change_each_watermark_container(e,t,i){var a=void 0!==i&&""!==i?"_"+i:"",r=void 0!==i&&""!==i?"_slideshow":"";if(jQuery(".bwg"+r+"_watermark_spun"+a).width(e),jQuery(".bwg"+r+"_watermark_spun"+a).height(t),jQuery(".bwg"+r+"_watermark"+a).css({display:""}),void 0===i||""===i){var _=0;(jQuery(".bwg_comment_container").hasClass("bwg_open")||jQuery(".bwg_ecommerce_container").hasClass("bwg_open"))&&(_=gallery_box_data.lightbox_comment_width),e<=jQuery(window).width()-_&&(jQuery(".bwg_watermark_image").css({width:(jQuery(".spider_popup_wrap").width()-_)*gallery_box_data.watermark_font_size/gallery_box_data.image_width}),jQuery(".bwg_watermark_text, .bwg_watermark_text:hover").css({fontSize:(jQuery(".spider_popup_wrap").width()-_)*gallery_box_data.watermark_font_size/gallery_box_data.image_width}))}else jQuery(".bwg"+r+"_title_spun"+a).width(e),jQuery(".bwg"+r+"_title_spun"+a).height(t),jQuery(".bwg"+r+"_description_spun"+a).width(e),jQuery(".bwg"+r+"_description_spun"+a).height(t);jQuery.trim(jQuery(".bwg"+r+"_title_text"+a).text())&&jQuery(".bwg_slideshow_title_text"+a).css({display:""}),jQuery.trim(jQuery(".bwg"+r+"_description_text"+a).text())&&jQuery(".bwg"+r+"_description_text"+a).css({display:""})}function bwg_set_filmstrip_pos(e,t,i){var a,r=void 0!==t&&""!==t?"_"+t:"",_=void 0!==t&&""!==t?"_slideshow":"";a=void 0!==t&&""!==t?bwg_params[t].left_or_top:gallery_box_data.left_or_top;var s=parseInt(jQuery(".bwg_filmstrip_thumbnails").attr("data-all-images-top-bottom-space")),o=parseInt(jQuery(".bwg_filmstrip_thumbnails").attr("data-all-images-right-left-space"));if(void 0===t||""===t){if("outerWidth"==gallery_box_data.outerWidth_or_outerHeight)var l=-bwg_current_filmstrip_pos-jQuery(".bwg_filmstrip_thumbnail").outerWidth(!0)/2;else if("outerHeight"==gallery_box_data.outerWidth_or_outerHeight)l=-bwg_current_filmstrip_pos-jQuery(".bwg_filmstrip_thumbnail").outerHeight(!0)/2;if("width"==gallery_box_data.width_or_height)var n=Math.min(0,Math.max(e-jQuery(".bwg_filmstrip_thumbnails").width(),l+e/2));else if("height"==gallery_box_data.width_or_height)n=Math.min(0,Math.max(e-jQuery(".bwg_filmstrip_thumbnails").height(),l+e/2))}else if("width"==bwg_params[t].width_or_height)l=-bwg_params[t].bwg_current_filmstrip_pos-(jQuery(".bwg_slideshow_filmstrip_thumbnail"+r).width()+bwg_params[t].filmstrip_thumb_margin_hor)/2,n=Math.min(0,Math.max(e-jQuery(".bwg_slideshow_filmstrip_thumbnails"+r).width(),l+e/2));else l=-bwg_params[t].bwg_current_filmstrip_pos-(jQuery(".bwg_slideshow_filmstrip_thumbnail"+r).height()+bwg_params[t].filmstrip_thumb_margin_hor)/2,n=Math.min(0,Math.max(e-jQuery(".bwg_slideshow_filmstrip_thumbnails"+r).height(),l+e/2));0<n+o&&(o=0),0<n+s&&(s=0),"left"==a?jQuery(".bwg"+_+"_filmstrip_thumbnails"+r).animate({left:n+o},{duration:500,complete:function(){bwg_filmstrip_arrows(t)}}):jQuery(".bwg"+_+"_filmstrip_thumbnails"+r).animate({top:n+s},{duration:500,complete:function(){bwg_filmstrip_arrows(t)}})}function bwg_filmstrip_arrows(e){var t=void 0!==e&&""!==e?"_slideshow":"",i=void 0!==bwg_params[e]&&2==bwg_params[e].slideshow_filmstrip_type?"_filmstrip_fix_count":"_filmstrip",a=void 0!==e&&""!==e?"_"+e:"";if("width"==(void 0!==e&&""!==e?bwg_params[e].width_or_heigh:gallery_box_data.width_or_height))var r=jQuery(".bwg"+t+"_filmstrip_thumbnails"+a).width(),_=jQuery(".bwg"+t+i+a).width();else r=jQuery(".bwg"+t+"_filmstrip_thumbnails"+a).height(),_=jQuery(".bwg"+t+i+a).height();r<_?(jQuery(".bwg"+t+"_filmstrip_left"+a).hide(),jQuery(".bwg"+t+"_filmstrip_right"+a).hide()):(jQuery(".bwg"+t+"_filmstrip_left"+a).hide(),jQuery(".bwg"+t+"_filmstrip_right"+a).show())}function bwg_slideshow_filmstrip_fix_dimension(e){var t,i,a,r,_,s,o=void 0!==e&&""!==e?"_"+e:"",l=void 0!==e&&""!==e?"_slideshow":"",n=void 0!==e&&""!==e&&void 0!==bwg_params[e].outerWidth_or_outerHeight?bwg_params[e].outerWidth_or_outerHeight:gallery_box_data.outerWidth_or_outerHeight,g=void 0!==e&&""!==e&&void 0!==bwg_params[e].left_or_top?bwg_params[e].left_or_top:gallery_box_data.left_or_top;i="outerWidth"==n?(t=jQuery(".bwg"+l+"_filmstrip"+o).outerWidth(!0),jQuery(".bwg"+l+"_filmstrip_thumbnails"+o).outerWidth(!0)):(t=jQuery(".bwg"+l+"_filmstrip"+o).outerHeight(!0),jQuery(".bwg"+l+"_filmstrip_thumbnails"+o).outerHeight(!0)),s="left"==g?(a=jQuery(".bwg"+l+"_thumb_active"+o).position().left,r="outerWidth"==n?jQuery(".bwg"+l+"_thumb_active"+o).position().left+jQuery(".bwg"+l+"_thumb_active"+o).outerWidth(!0):jQuery(".bwg"+l+"_thumb_active"+o).position().left+jQuery(".bwg"+l+"_thumb_active"+o).outerHeight(!0),_=jQuery(".bwg"+l+"_filmstrip_thumbnails"+o).position().left,Math.abs(jQuery(".bwg"+l+"_filmstrip_thumbnails"+o).position().left)+t):(a=jQuery(".bwg"+l+"_thumb_active"+o).position().top,r="outerWidth"==n?jQuery(".bwg"+l+"_thumb_active"+o).position().top+jQuery(".bwg"+l+"_thumb_active"+o).outerWidth(!0):jQuery(".bwg"+l+"_thumb_active"+o).position().top+jQuery(".bwg"+l+"_thumb_active"+o).outerHeight(!0),_=jQuery(".bwg"+l+"_filmstrip_thumbnails"+o).position().top,Math.abs(jQuery(".bwg"+l+"_filmstrip_thumbnails"+o).position().top)+t),i<t||(a<Math.abs(_)?"left"==g?jQuery(".bwg"+l+"_filmstrip_thumbnails"+o).animate({left:-a},{duration:500,complete:function(){bwg_filmstrip_arrows(e)}}):jQuery(".bwg"+l+"_filmstrip_thumbnails"+o).animate({top:-a},{duration:500,complete:function(){bwg_filmstrip_arrows(e)}}):s<r&&("left"==g?jQuery(".bwg"+l+"_filmstrip_thumbnails"+o).animate({left:-(r-t)},{duration:500,complete:function(){bwg_filmstrip_arrows(e)}}):jQuery(".bwg"+l+"_filmstrip_thumbnails"+o).animate({top:-(r-t)},{duration:500,complete:function(){bwg_filmstrip_arrows(e)}})))}function bwg_slideshow_filmstrip_fix_count(e){var t,i,a,r,_,s,o=void 0!==e&&""!==e?"_"+e:"",l=void 0!==e&&""!==e?"_slideshow":"",n=void 0!==e&&""!==e?bwg_params[e].outerWidth_or_outerHeight:gallery_box_data.outerWidth_or_outerHeight,g=void 0!==e&&""!==e?bwg_params[e].left_or_top:gallery_box_data.left_or_top;i="outerWidth"==n?(t=jQuery(".bwg"+l+"_filmstrip_fix_count"+o).outerWidth(!0),jQuery(".bwg"+l+"_filmstrip_thumbnails"+o).outerWidth(!0)):(t=jQuery(".bwg"+l+"_filmstrip_fix_count"+o).outerHeight(!0),jQuery(".bwg"+l+"_filmstrip_thumbnails"+o).outerHeight(!0)),s="left"==g?(a=jQuery(".bwg"+l+"_thumb_active"+o).position().left,r="outerWidth"==n?jQuery(".bwg"+l+"_thumb_active"+o).position().left+jQuery(".bwg"+l+"_thumb_active"+o).outerWidth(!0):jQuery(".bwg"+l+"_thumb_active"+o).position().left+jQuery(".bwg"+l+"_thumb_active"+o).outerHeight(!0),_=jQuery(".bwg"+l+"_filmstrip_thumbnails"+o).position().left,Math.abs(jQuery(".bwg"+l+"_filmstrip_thumbnails"+o).position().left)+t):(a=jQuery(".bwg"+l+"_thumb_active"+o).position().top,r="outerWidth"==n?jQuery(".bwg"+l+"_thumb_active"+o).position().top+jQuery(".bwg"+l+"_thumb_active"+o).outerWidth(!0):jQuery(".bwg"+l+"_thumb_active"+o).position().top+jQuery(".bwg"+l+"_thumb_active"+o).outerHeight(!0),_=jQuery(".bwg"+l+"_filmstrip_thumbnails"+o).position().top,Math.abs(jQuery(".bwg"+l+"_filmstrip_thumbnails"+o).position().top)+t),i<t||(a<Math.abs(_)?"left"==g?jQuery(".bwg"+l+"_filmstrip_thumbnails"+o).animate({left:-a},{duration:500,complete:function(){bwg_filmstrip_arrows(e)}}):jQuery(".bwg"+l+"_filmstrip_thumbnails"+o).animate({top:-a},{duration:500,complete:function(){bwg_filmstrip_arrows(e)}}):s<r&&("left"==g?jQuery(".bwg"+l+"_filmstrip_thumbnails"+o).animate({left:-(r-t)},{duration:500,complete:function(){bwg_filmstrip_arrows(e)}}):jQuery(".bwg"+l+"_filmstrip_thumbnails"+o).animate({top:-(r-t)},{duration:500,complete:function(){bwg_filmstrip_arrows(e)}})))}function bwg_resize_slideshow_filmstrip_fix_count(e){var _=e.bwg,t=e.parent_width,i=e.params,a=i.filmstrip_direction,r=i.data,s=i.filmstrip_thumb_margin_hor,o=jQuery(window).width()<=767&&5<i.slideshow_thumbnails_count,l=o?5:i.slideshow_thumbnails_count,n="#bwg_container1_"+_+" #bwg_container2_"+_+" .bwg_slideshow_filmstrip_container_"+_,g="#bwg_container1_"+_+" #bwg_container2_"+_+" .bwg_slideshow_filmstrip_fix_count_"+_,w="#bwg_container1_"+_+" #bwg_container2_"+_+" .bwg_slideshow_filmstrip_fix_count_"+_+" .bwg_slideshow_filmstrip_thumbnails_"+_,b="#bwg_container1_"+_+" #bwg_container2_"+_+" .bwg_slideshow_filmstrip_fix_count_"+_+" .bwg_slideshow_filmstrip_thumbnails_"+_+" .bwg_slideshow_filmstrip_thumbnail_"+_,u="#bwg_container1_"+_+" #bwg_container2_"+_+" .bwg_slideshow_image_container_"+_,d=jQuery(u).data("filmstrip-position"),h=(jQuery(u).data("filmstrip-size"),i.slideshow_filmstrip_rl_btn_size);if(jQuery("#bwg_container1_"+_).css({width:"100%"}),jQuery("#bwg_container1_"+_+" #bwg_container2_"+_).css({width:t}),"undefined"==typeof resize_in_progress||!1===resize_in_progress){window.resize_in_progress=!0,void 0!==m&&clearTimeout(m);var m=setTimeout(function(){resize_in_progress=!1;var e={};"bottom"==d||"top"==d?e.left=0:e.top=0,jQuery(w).css(e);var t="horizontal"==a?"table-cell":"block";jQuery(n).find(".bwg_slideshow_filmstrip_left_"+_).css({display:"none"}),jQuery(n).find(".bwg_slideshow_filmstrip_left_disabled_"+_).css({display:t}),jQuery(n).find(".bwg_slideshow_filmstrip_right_"+_).css({display:t}),jQuery(n).find(".bwg_slideshow_filmstrip_right_disabled_"+_).css({display:"none"})},500)}if(bwg_resize_instagram_post(_),bwg_change_watermark_container(_),"horizontal"==a){var c=i.image_height/i.image_width,p=t-40,y=Math.round(c*p),f=(p-s*l)/l,j=Math.round(c*f);jQuery(n).css({width:t,height:j}),jQuery(g).css({width:p,height:j}),jQuery(b).css({width:f,height:j}),jQuery.each(r,function(e,t){var i=f,a=j;if(""!=t.image_width&&""!=t.image_height){var r=Math.max(f/t.image_width,j/t.image_height);i=t.image_width*r,a=t.thumb_height*r}""!=t.thumb_width&&""!=t.thumb_height&&(i=t.thumb_width,a=t.thumb_height);i*=r=Math.max(f/i,j/a),a*=r;jQuery(".bwg_slideshow_filmstrip_fix_count_"+_+" .bwg_slideshow_filmstrip_thumbnail_"+_+" .bwg_slideshow_filmstrip_thumbnail_img_"+_).css({width:f,height:j,"margin-left":0,"margin-top":0})}),jQuery(w).css({width:f*r.length+s*r.length,height:j}),jQuery(".bwg_slideshow_image_wrap_"+_).css({width:t,height:t*i.image_height/i.image_width}),(Q={width:t,height:t*(i.image_height/i.image_width)-j})[d]=j,jQuery(".bwg_slideshow_image_container_"+_).css(Q),jQuery(".bwg_slideshow_image_"+_).css({cssText:"max-width:"+t+"px !important; max-height:"+(t*(i.image_height/i.image_width)-j)+"px !important;"}),jQuery(".bwg_slideshow_embed_"+_).css({cssText:"width:"+t+"px !important; height:"+(t*(i.image_height/i.image_width)-j)+"px !important;"}),j<h&&(h=j),jQuery(n).find(".bwg-icon-angle-left").css({"font-size":h}),jQuery(n).find(".bwg-icon-angle-right").css({"font-size":h})}else{var Q,v=t*i.image_height/i.image_width;c=i.image_width/i.image_height,y=v-40,p=Math.round(c*y),j=(y-s*l)/l,f=Math.round(c*j);jQuery.each(r,function(e,t){var i=f,a=j;if(""!=t.image_width&&""!=t.image_height){var r=Math.max(f/t.image_width,j/t.image_height);i=t.image_width*r,a=t.thumb_height*r}""!=t.thumb_width&&""!=t.thumb_height&&(i=t.thumb_width,a=t.thumb_height);r=Math.max(f/i,j/a),i*=r,a*=r;jQuery(".bwg_slideshow_filmstrip_fix_count_"+_+" .bwg_slideshow_filmstrip_thumbnail_"+_+" .bwg_slideshow_filmstrip_thumbnail_img_"+_).css({width:f,height:j,"margin-left":0,"margin-top":0})}),jQuery(n).css({width:f,height:v}),jQuery(g).css({width:f,height:y}),jQuery(w).css({width:f,height:j*r.length+s*r.length}),jQuery(b).css({width:f,height:j}),jQuery(".bwg_slideshow_image_wrap_"+_).css({width:t,height:v}),(Q={width:t-f,height:v})[d]=f,jQuery(u).css(Q),jQuery(".bwg_slideshow_image_"+_).css({cssText:"max-width:"+(t-f)+"px !important; max-height:"+v+"px !important;"}),jQuery(".bwg_slideshow_embed_"+_).css({cssText:"width:"+(t-f)+"px !important; height:"+v+"px !important;"}),f<h&&(h=f),jQuery(n).find(".bwg-icon-angle-up").css({"font-size":h}),jQuery(n).find(".bwg-icon-angle-down").css({"font-size":h})}o&&(jQuery(n).find(".bwg-icon-angle-left").removeAttr("style"),jQuery(n).find(".bwg-icon-angle-right").removeAttr("style"),jQuery(n).find(".bwg-icon-angle-up").removeAttr("style"),jQuery(n).find(".bwg-icon-angle-down").removeAttr("style"))}function bwg_resize_slideshow_filmstrip_fix_dimension(e){var t=e.bwg,i=e.parent_width,a=e.params,r=a.filmstrip_direction;jQuery(".bwg_slideshow_image_wrap_"+t).css({width:i}),jQuery(".bwg_slideshow_image_wrap_"+t).css({height:i*(a.image_height/a.image_width)}),jQuery(".bwg_slideshow_image_container_"+t).css({width:i-("horizontal"==a.filmstrip_direction?0:a.slideshow_filmstrip_width)}),jQuery(".bwg_slideshow_image_container_"+t).css({height:i*a.image_height/a.image_width-("horizontal"==a.filmstrip_direction?a.slideshow_filmstrip_height:0)}),jQuery(".bwg_slideshow_image_"+t).css({cssText:"max-width: "+(i-("horizontal"==bwg_params[t].filmstrip_direction?0:a.slideshow_filmstrip_width))+"px !important; max-height: "+(i*(a.image_height/a.image_width)-("horizontal"==a.filmstrip_direction?a.slideshow_filmstrip_height:0)-1)+"px !important;"}),jQuery(".bwg_slideshow_embed_"+t).css({cssText:"width: "+(i-("horizontal"==a.filmstrip_direction?0:a.slideshow_filmstrip_width))+"px !important; height: "+(i*(a.image_height/a.image_width)-("horizontal"==a.filmstrip_direction?a.slideshow_filmstrip_height:0)-1)+"px !important;"}),bwg_resize_instagram_post(t),bwg_change_watermark_container(t),"horizontal"==r?(jQuery(".bwg_slideshow_filmstrip_container_"+t).css({width:i}),jQuery(".bwg_slideshow_filmstrip_"+t).css({width:i-40})):(jQuery(".bwg_slideshow_filmstrip_container_"+t).css({height:i*a.image_height/a.image_width}),jQuery(".bwg_slideshow_filmstrip_"+t).css({height:i*a.image_height/a.image_width-40}))}function bwg_calculate_slideshow_filmstrip_thumbnail_size(e){var t=e.bwg,i=e.params,a=i.slideshow_filmstrip_width;if(2==i.slideshow_filmstrip_type){var r="#bwg_container1_"+t+" #bwg_container2_"+t+" .bwg_slideshow_filmstrip_fix_count_"+t+" .bwg_slideshow_filmstrip_thumbnail_"+t;a=(i.left_or_top,"width"==i.width_or_height?jQuery(r).width():jQuery(r).height())}return parseFloat(a)}function bwg_move_dots(e){var t=jQuery(".bwg_slideshow_dots_active_"+e).position().left,i=jQuery(".bwg_slideshow_dots_active_"+e).position().left+jQuery(".bwg_slideshow_dots_active_"+e).outerWidth(!0),a=jQuery(".bwg_slideshow_dots_container_"+e).outerWidth(!0),r=jQuery(".bwg_slideshow_dots_thumbnails_"+e).outerWidth(!1),_=jQuery(".bwg_slideshow_dots_thumbnails_"+e).position().left,s=Math.abs(jQuery(".bwg_slideshow_dots_thumbnails_"+e).position().left)+a;r<a||(t<Math.abs(_)?jQuery(".bwg_slideshow_dots_thumbnails_"+e).animate({left:-t},{duration:500,complete:function(){}}):s<i&&jQuery(".bwg_slideshow_dots_thumbnails_"+e).animate({left:-(i-a)},{duration:500,complete:function(){}}))}function bwg_testBrowser_cssTransitions(e){return bwg_testDom("Transition",e)}function bwg_testBrowser_cssTransforms3d(e){return bwg_testDom("Perspective",e)}function bwg_testDom(e,t){for(var i=["","Webkit","Moz","ms","O","Khtml"],a=i.length;a--;)if(void 0!==document.body.style[i[a]+e])return!0;return!1}function bwg_fallback(e,t,i,a){bwg_fade(e,t,i,a)}function bwg_fallback3d(e,t,i,a){bwg_sliceV(e,t,i,a)}function bwg_none(e,t,i,a){var r=void 0!==a&&""!==a?"_"+a:"";if(jQuery(e).css({opacity:0,"z-index":1}),jQuery(t).css({opacity:1,"z-index":2}),void 0!==a&&""!==a){var _=bwg_params[a].bwg_current_key;bwg_change_watermark_container(a),jQuery(".bwg_slideshow_filmstrip_thumbnail"+r).removeClass("bwg_slideshow_thumb_active"+r).addClass("bwg_slideshow_thumb_deactive"+r),jQuery("#bwg_filmstrip_thumbnail_"+_+r).removeClass("bwg_slideshow_thumb_deactive"+r).addClass("bwg_slideshow_thumb_active"+r),jQuery(".bwg_slideshow_dots"+r).removeClass("bwg_slideshow_dots_active"+r).addClass("bwg_slideshow_dots_deactive"+r),jQuery("#bwg_dots_"+_+r).removeClass("bwg_slideshow_dots_deactive"+r).addClass("bwg_slideshow_dots_active"+r)}else jQuery(".bwg_image_info").show(),gallery_box_data.bwg_trans_in_progress=!1,jQuery(e).html(""),bwg_change_watermark_container()}function bwg_iterator(e){var t=1;return void 0!==e&&""!==e&&void 0!==bwg_params[e]&&1==bwg_params[e].enable_slideshow_shuffle&&(t=Math.floor((bwg_params[e].data.length-1)*Math.random()+1)),t}function bwg_change_image_slideshow(e,t,i,a,r){i=bwg_params[r].data;if(jQuery("#bwg_slideshow_image_container_"+r).find("iframe").each(function(){jQuery(this)[0].contentWindow.postMessage('{"event":"command","func":"pauseVideo","args":""}',"*"),jQuery(this)[0].contentWindow.postMessage('{ "method": "pause" }',"*"),jQuery(this)[0].contentWindow.postMessage("pause","*")}),jQuery("#image_id_"+r+"_"+i[e].id).find(".bwg_fb_video").each(function(){jQuery(this).attr("src",jQuery(this).attr("src"))}),i[t]){if(jQuery(".bwg_ctrl_btn_"+r).hasClass("bwg-icon-pause")&&bwg_play(bwg_params[r].data,r),a||(jQuery("#bwg_current_image_key_"+r).val(t),"-1"==e?e=jQuery(".bwg_slideshow_thumb_active_"+r).children("img").attr("image_key"):"-2"==e&&(e=jQuery(".bwg_slideshow_dots_active_"+r).attr("image_key"))),bwg_params[r].bwg_trans_in_progress)return void bwg_params[r].event_stack.push(e+"-"+t);var _="right";if(t<e)_="left";else if(e==t)return;jQuery(".bwg_slideshow_watermark_"+r).css({display:"none"}),jQuery(".bwg_slideshow_title_text_"+r).css({display:"none"}),jQuery(".bwg_slideshow_description_text_"+r).css({display:"none"}),"width"==bwg_params[r].width_or_height?bwg_params[r].bwg_current_filmstrip_pos=t*(jQuery(".bwg_slideshow_filmstrip_thumbnail_"+r).width()+2+2*bwg_params[r].lightbox_filmstrip_thumb_border_width):bwg_params[r].bwg_current_filmstrip_pos=t*(jQuery(".bwg_slideshow_filmstrip_thumbnail_"+r).height()+2+2*bwg_params[r].lightbox_filmstrip_thumb_border_width),e=t,bwg_params[r].bwg_current_key=e,jQuery("#bwg_slideshow_image_"+r).attr("image_id",i[t].id),jQuery(".bwg_slideshow_title_text_"+r).html(jQuery('<span style="display: block;" />').html(i[t].alt).text()),jQuery(".bwg_slideshow_description_text_"+r).html(jQuery('<span style="display: block;" />').html(i[t].description).text());var s=2==jQuery(".bwg_slideshow_image_spun_"+r).css("zIndex")?".bwg_slideshow_image_spun_"+r:".bwg_slideshow_image_second_spun_"+r,o=s==".bwg_slideshow_image_second_spun_"+r?".bwg_slideshow_image_spun_"+r:".bwg_slideshow_image_second_spun_"+r,l=-1<i[t].filetype.indexOf("EMBED_"),n=-1<i[t].filetype.indexOf("INSTAGRAM_POST"),g=-1<i[t].filetype.indexOf("INSTAGRAM_VIDEO"),w=jQuery(s).height(),b=jQuery(s).width(),u='<span class="bwg_slideshow_image_spun1_'+r+'" style="display:  '+(l?"block":"table")+' ;width: inherit; height: inherit;"><span class="bwg_slideshow_image_spun2_'+r+'" style="display: '+(l?"block":"table-cell")+'; vertical-align: middle; text-align: center; ">';if(l){if(u+='<span style="height: '+w+"px; width: "+b+'px;" class="bwg_popup_embed bwg_popup_watermark">',g&&(u+='<span class="bwg_inst_play_btn_cont" onclick="bwg_play_instagram_video(this)"><span class="bwg_inst_play"></span></span>'),n){var d=jQuery(".bwg_embed_frame"),h=jQuery(".bwg_slideshow_image_container_"+r).width(),m=jQuery(".bwg_slideshow_image_container_"+r).height(),c=i[t].image_width,p=i[t].image_height,y=bwg_resizing_ratio(c,p,h,m);d.attr("data-width",h),d.attr("data-height",m);var f=y.width,j=y.height;f<j?f-=109:f+=109,u+=spider_display_embed(i[t].filetype,decodeURIComponent(i[t].image_url),i[t].filename,{class:"bwg_embed_frame","data-width":h,"data-height":m,"data-instagram-width":c,"data-instagram-height":p,style:"width:"+f+"px; height:"+j+"px; vertical-align:middle; display:inline-block; position:relative;"})}else u+=spider_display_embed(i[t].filetype,decodeURIComponent(i[t].image_url),i[t].filename,{class:"bwg_embed_frame",frameborder:"0",allowfullscreen:"allowfullscreen","data-max-width":b,"data-max-height":w,style:"width:inherit; height:inherit; vertical-align:middle; display:table-cell;"});u+="</span>"}else{if("do_nothing"!=bwg_params[r].thumb_click_action){var Q="";"open_lightbox"==bwg_params[r].thumb_click_action?Q+=' class="bwg_lightbox" data-image-id="'+i[t].id+'" data-elementor-open-lightbox="no"':"redirect_to_url"==bwg_params[r].thumb_click_action&&i[t].redirect_url&&(Q+='href="'+i[t].redirect_url+'"'+(bwg_params[r].thumb_link_target&&1==bwg_params[r].thumb_link_target?' target="_blank"':"")),u+="<a "+Q+">"}u+='<img style="max-height: '+w+"px !important; max-width: "+b+'px !important; display:inline-block;" ',u+=' class="bwg_slide bwg_slideshow_image_'+r+'" ',u+=' id="bwg_slideshow_image_'+r+'" ',u+=' src="'+bwg_params[r].upload_url+jQuery("<span style='display: block;' />").html(decodeURIComponent(i[t].image_url)).text()+'" alt="'+i[t].alt+'" image_id="'+i[t].id+'" /></a>'}u+="</span></span>",jQuery(o).html(u),bwg_params[r].preload_images&&bwg_preload_images(t,r),window["bwg_"+bwg_params[r].slideshow_effect](s,o,_,r),1==bwg_params[r].slideshow_filmstrip_type?bwg_slideshow_filmstrip_fix_dimension(r):2==bwg_params[r].slideshow_filmstrip_type?bwg_slideshow_filmstrip_fix_count(r):bwg_move_dots(r),i[t].is_embed_video?jQuery("#bwg_slideshow_play_pause_"+r).css({display:"none"}):jQuery("#bwg_slideshow_play_pause_"+r).css({display:""})}bwg_add_lightbox(),"EMBED_OEMBED_INSTAGRAM_POST"==i[t].filetype&&"undefined"!=typeof instgrm&&void 0!==instgrm.Embeds&&(jQuery(".instagram-media").hide(),instgrm.Embeds.process(),jQuery(".instagram-media").css({"max-height":j+"px","min-width":f+"px !important"}),jQuery(".instagram-media").show())}function bwg_preload_images_slideshow(e,t){var i=bwg_params[t].data;count=bwg_params[t].preload_images_count/2;var a=i.length;if(a<bwg_params[t].preload_images_count&&(count=0),0!=count)for(var r=e-count;r<e+count;r++){var _=parseInt((r+a)%a),s=-1<i[_].filetype.indexOf("EMBED_");void 0!==i[_]&&(s||jQuery("<img/>").attr("src",bwg_params[t].upload_url+jQuery('<span style="display: block;" />').html(decodeURIComponent(i[_].image_url)).text()))}else for(r=0;r<i.length;r++){s=-1<i[r].filetype.indexOf("EMBED_");void 0!==i[r]&&(s||jQuery("<img/>").attr("src",bwg_params[t].upload_url+jQuery('<span style="display: block;" />').html(decodeURIComponent(i[r].image_url)).text()))}}function bwg_preload_images(e,t){void 0!==t&&""!==t?bwg_preload_images_slideshow(e,t):bwg_preload_images_lightbox(e)}function bwg_popup_resize_slidshow(e){var t="#bwg_container1_"+e+" #bwg_container2_"+e,i=t+" .bwg_slideshow_image_wrap_"+e,a=t+" .bwg_slideshow_image_container_"+e,r=t+" .bwg_slideshow_image_"+e,_=".bwg_slideshow_filmstrip_"+e;2==bwg_params[e].slideshow_filmstrip_type&&(_=".bwg_slideshow_filmstrip_fix_count_"+e);var s=jQuery("#bwg_container1_"+e).parent();s.hasClass("content-area")&&s.width(s.closest(".content-area").width()),s.hasClass("elementor-tab-content")&&s.width(s.closest(".elementor-widget-wrap").width());var o=s.width(),l=bwg_params[e].data;if(o>=bwg_params[e].image_width){jQuery(".bwg_slideshow_image_wrap_"+e).css({width:bwg_params[e].image_width}),jQuery(".bwg_slideshow_image_wrap_"+e).css({height:bwg_params[e].image_height}),jQuery(".bwg_slideshow_image_container_"+e).css({width:"horizontal"==bwg_params[e].filmstrip_direction?bwg_params[e].image_width:bwg_params[e].image_width-bwg_params[e].slideshow_filmstrip_width}),jQuery(".bwg_slideshow_image_container_"+e).css({height:"horizontal"==bwg_params[e].filmstrip_direction?bwg_params[e].image_height-bwg_params[e].slideshow_filmstrip_height:bwg_params[e].image_height}),jQuery(".bwg_slideshow_image_"+e).css({cssText:(bwg_params[e].filmstrip_direction,bwg_params[e].image_width)}),jQuery(".bwg_slideshow_embed_"+e).css({cssText:(bwg_params[e].filmstrip_direction,bwg_params[e].image_width)}),bwg_resize_instagram_post(e),bwg_change_watermark_container(e);var n="horizontal"==bwg_params[e].filmstrip_direction?"width: "+bwg_params[e].image_width:"height: "+bwg_params[e].image_height,g="horizontal"==bwg_params[e].filmstrip_direction?"width: "+(bwg_params[e].image_width-40):"height: "+(bwg_params[e].image_height-40);if(jQuery(".bwg_slideshow_filmstrip_container_"+e).css({cssText:n}),jQuery(_).css({cssText:g}),jQuery(".bwg_slideshow_dots_container_"+e).css({width:bwg_params[e].image_width}),jQuery("#bwg_slideshow_play_pause-ico_"+e).css({fontSize:bwg_params[e].slideshow_play_pause_btn_size}),"image"==bwg_params[e].watermark_type&&jQuery(".bwg_slideshow_watermark_image_"+e).css({maxWidth:bwg_params[e].watermark_width,maxHeight:bwg_params[e].watermark_height}),"text"==bwg_params[e].watermark_type&&jQuery(".bwg_slideshow_watermark_text_"+e+", .bwg_slideshow_watermark_text_"+e+" :hover").css({fontSize:bwg_params[e].watermark_font_size}),jQuery(".bwg_slideshow_title_text_"+e).css({fontSize:2*bwg_params[e].slideshow_title_font_size}),jQuery(".bwg_slideshow_description_text_"+e).css({fontSize:2*bwg_params[e].slideshow_description_font_size}),2==bwg_params[e].slideshow_filmstrip_type){var w=bwg_params[e].filmstrip_direction,b="#bwg_container1_"+e+" #bwg_container2_"+e;jQuery(b).removeAttr("style");var u=b+" .bwg_slideshow_filmstrip_container_"+e,d=bwg_params[e].slideshow_filmstrip_rl_btn_size,h=jQuery(".bwg_slideshow_filmstrip_fix_count_"+e).width();"horizontal"==w&&(h=jQuery(".bwg_slideshow_filmstrip_fix_count_"+e).height());var m="horizontal"==w?"table-cell":"block";jQuery(u).find(".bwg_slideshow_filmstrip_left_"+e).css({display:"none"}),jQuery(u).find(".bwg_slideshow_filmstrip_left_disabled_"+e).css({display:m}),jQuery(u).find(".bwg_slideshow_filmstrip_right_"+e).css({display:m}),jQuery(u).find(".bwg_slideshow_filmstrip_right_disabled_"+e).css({display:"none"}),h<d?(d=h,jQuery(u).find(".bwg-icon-angle-left").css({"font-size":d}),jQuery(u).find(".bwg-icon-angle-right").css({"font-size":d}),jQuery(u).find(".bwg-icon-angle-up").css({"font-size":d}),jQuery(u).find(".bwg-icon-angle-down").css({"font-size":d})):(jQuery(u).find(".bwg-icon-angle-left").removeAttr("style"),jQuery(u).find(".bwg-icon-angle-right").removeAttr("style"),jQuery(u).find(".bwg-icon-angle-up").removeAttr("style"),jQuery(u).find(".bwg-icon-angle-down").removeAttr("style"));var c=b+" .bwg_slideshow_filmstrip_thumbnails_"+e;jQuery(c).removeAttr("style"),jQuery(c+" .bwg_slideshow_filmstrip_thumbnail_"+e).each(function(e,t){jQuery(t).attr("style",jQuery(t).attr("data-style")),jQuery(t).find("img").attr("style",jQuery(t).attr("data-style"))});var p="#bwg_container1_"+e+" #bwg_container2_"+e+" .bwg_slideshow_image_container_"+e,y=(jQuery(p).data("filmstrip-position"),jQuery(p).data("filmstrip-size"));jQuery(p).css({filmstrip_position:y});var f="bwg_slideshow_filmstrip_thumbnail_"+e;window.bwg_slideshow_filmstrip_thumb[f].next_prev_index&&(window.bwg_slideshow_filmstrip_thumb[f].next_prev_index=0)}}else{var j=o*(bwg_params[e].image_height/bwg_params[e].image_width);1==bwg_params[e].slideshow_filmstrip_type&&bwg_resize_slideshow_filmstrip_fix_dimension({bwg:e,params:bwg_params[e],parent_width:o-40}),2==bwg_params[e].slideshow_filmstrip_type&&bwg_resize_slideshow_filmstrip_fix_count({bwg:e,params:bwg_params[e],parent_width:o}),jQuery(".bwg_slideshow_dots_container_"+e).css({width:o}),jQuery("#bwg_slideshow_play_pause-ico_"+e).css({fontSize:o*(bwg_params[e].slideshow_play_pause_btn_size/bwg_params[e].image_width)}),jQuery(".bwg_slideshow_watermark_image_"+e).css({maxWidth:o*(bwg_params[e].watermark_width/bwg_params[e].image_width),maxHeight:o*(bwg_params[e].watermark_height/bwg_params[e].image_width)}),jQuery(".bwg_slideshow_watermark_text_"+e+", .bwg_slideshow_watermark_text_"+e+":hover").css({fontSize:o*(bwg_params[e].watermark_font_size/bwg_params[e].image_width)}),jQuery(".bwg_slideshow_title_text_"+e).css({fontSize:2*o*bwg_params[e].slideshow_title_font_size/bwg_params[e].image_width}),jQuery(".bwg_slideshow_description_text_"+e).css({fontSize:2*o*bwg_params[e].slideshow_description_font_size/bwg_params[e].image_width}),jQuery(i).css({width:o,height:j}),jQuery(a).css({width:o,height:j}),jQuery(r).css({display:"inline-block","max-width":o,"max-height":j})}l[parseInt(jQuery("#bwg_current_image_key_"+e).val())].is_embed_video?jQuery("#bwg_slideshow_play_pause_"+e).css({display:"none"}):jQuery("#bwg_slideshow_play_pause_"+e).css({display:""})}function bwg_popup_resize(e){void 0!==e&&""!==e?bwg_popup_resize_slidshow(e):bwg_popup_resize_lightbox()}function bwg_change_image(e,t,i,a,r){void 0!==r&&""!==r?bwg_change_image_slideshow(e,t,i,a,r):bwg_change_image_lightbox(e,t,i=gallery_box_data.data,a)}function bwg_resize_instagram_post(e){var t=!1;if(void 0!==e&&""!==e){if(jQuery(".inner_instagram_iframe_bwg_embed_frame_"+e).length){t=!0;var i=jQuery("#instagram-embed-"+e),a=jQuery(".bwg_slideshow_embed_"+e),r=jQuery(".bwg_embed_frame_"+e),_=void 0!==a.width()?a.width():jQuery(".bwg_slideshow_embed_"+e).width(),s=void 0!==a.height()?a.height():jQuery(".bwg_slideshow_embed_"+e).height(),o=r.data("instagram-width"),l=r.data("instagram-height");bwg_change_watermark_container(e)}}else if(jQuery(".inner_instagram_iframe_bwg_embed_frame").length){t=!0;i=jQuery(".instagram-media"),r=jQuery(".bwg_embed_frame"),_=jQuery(".bwg_image_container").width(),s=jQuery(".bwg_image_container").height(),o=r.data("instagram-width"),l=r.data("instagram-height");bwg_change_watermark_container()}if(!0===t){var n=bwg_resizing_ratio(o,l,_,s);r.attr("data-width",_),r.attr("data-height",s);var g=n.width,w=n.height;g<w?g-=109:g+=109,r.width(g),r.height(w),i.css({"max-height":w+"px","min-width":g+"px !important"})}}function bwg_play(t,i){if(void 0!==i&&""!==i)t=bwg_params[i].data;void 0!==i&&""!==i?(window.clearInterval(window["bwg_playInterval"+i]),window["bwg_playInterval"+i]=setInterval(function(){var e=1;1==bwg_params[i].enable_slideshow_shuffle&&(e=Math.floor((t.length-1)*Math.random()+1)),bwg_change_image(parseInt(jQuery("#bwg_current_image_key_"+i).val()),(parseInt(jQuery("#bwg_current_image_key_"+i).val())+e)%t.length,t,"",i)},1e3*bwg_params[i].slideshow_interval)):(window.clearInterval(gallery_box_data.bwg_playInterval),gallery_box_data.bwg_playInterval=setInterval(function(){jQuery(".bwg_comment_container").hasClass("bwg_open")||jQuery(".bwg_play_pause").length&&jQuery(".bwg_play_pause").hasClass("bwg-icon-play")||(void 0===t||void 0!==t[parseInt(jQuery("#bwg_current_image_key").val())+1]?bwg_change_image(parseInt(jQuery("#bwg_current_image_key").val()),parseInt(jQuery("#bwg_current_image_key").val())+1):1==gallery_box_data.enable_loop&&bwg_change_image(parseInt(jQuery("#bwg_current_image_key").val()),0))},1e3*gallery_box_data.slideshow_interval))}function bwg_image_browser(e){if(jQuery("#bwg_embed_frame_16x9_"+e).width(jQuery("#bwg_embed_frame_16x9_"+e).parents(".image_browser_image_buttons_"+e).width()),jQuery("#bwg_embed_frame_16x9_"+e).height(.5625*jQuery("#bwg_embed_frame_16x9_"+e).width()),jQuery("#bwg_embed_frame_instapost_"+e).width(jQuery("#bwg_embed_frame_16x9_"+e).parents(".image_browser_image_buttons_"+e).width()),jQuery(".image_browser_images_conteiner_"+e).find(".fluid-width-video-wrapper").length){var t=jQuery(".image_browser_images_conteiner_"+e).find(".fluid-width-video-wrapper").contents();jQuery(".image_browser_images_conteiner_"+e).find(".fluid-width-video-wrapper").replaceWith(t)}jQuery(".bwg_embed_frame_instapost_"+e).height((jQuery(".bwg_embed_frame_instapost_"+e).width()-16)*jQuery(".bwg_embed_frame_instapost_"+e).attr("data-height")/jQuery(".bwg_embed_frame_instapost_"+e).attr("data-width")+96);var i=jQuery(".image_browser_images_"+e).width();i<=108?jQuery(".paging-input_"+e).css("display","none"):(i<=200?(jQuery(".paging-input_"+e).css("margin","0% 0% 0% 0%"),jQuery(".paging-input_"+e).css("display","inline")):i<=580?(jQuery(".paging-input_"+e).css("display","inline"),jQuery(".tablenav-pages_"+e+" a").css("font-size","13px"),jQuery(".paging-input_"+e).css("margin","0% 7% 0% 7%")):(jQuery(".tablenav-pages_"+e+" a").css("font-size","15px"),jQuery(".paging-input_"+e).css("margin","0%  14% 0%  14%"),jQuery(".paging-input_"+e).css("display","inline")),jQuery(".tablenav-pages_"+e+" .next-page").css("margin","0% 0% 0% 0%"),jQuery(".tablenav-pages_"+e+" .prev-page").css("margin","0% 0% 0% 0%"))}function bwg_disable_right_click(e){e.bind("contextmenu",function(){return!1}),e.css("webkitTouchCallout","none")}function bwg_resizing_ratio(e,t,i,a){var r=[i/e,a/t];return{width:e*(r=Math.min(r[0],r[1])),height:t*r}}function bwg_slideshow_filmstrip_next(e){var t=e.bwg,i=e.params,a=e.slideshow_filmstrip_class_name,r=bwg_calculate_slideshow_filmstrip_thumbnail_size({bwg:t,params:i}),_="bwg_slideshow_filmstrip_thumbnail_"+t,s="#bwg_container1_"+t+" #bwg_container2_"+t+" .bwg_slideshow_filmstrip_left_"+t,o="#bwg_container1_"+t+" #bwg_container2_"+t+" .bwg_slideshow_filmstrip_left_disabled_"+t,l="#bwg_container1_"+t+" #bwg_container2_"+t+" .bwg_slideshow_filmstrip_right_"+t,n="#bwg_container1_"+t+" #bwg_container2_"+t+" .bwg_slideshow_filmstrip_right_disabled_"+t,g="horizontal"==i.filmstrip_direction?"table-cell":"block";"left"==i.left_or_top?"width"==i.width_or_height?(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).position().left>=-(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).width()-jQuery(a).width())&&(jQuery(s).css({display:g}),jQuery(o).css({display:"none"}),jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).position().left<-(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).width()-jQuery(a).width()-(parseInt(i.filmstrip_thumb_margin_hor)+r))?jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).animate({left:-(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).width()-jQuery(a).width())},500,"linear"):jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).animate({left:jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).position().left-(parseInt(i.filmstrip_thumb_margin_hor)+r)},500,"linear")),window.setTimeout(function(){parseInt(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).position().left)==-parseInt(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).width()-jQuery(a).width())?(jQuery(l).css({display:"none"}),jQuery(n).css({display:g})):(jQuery(l).css({display:g}),jQuery(n).css({display:"none"}))},510)):(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).position().left>=-(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).height()-jQuery(a).height())&&(jQuery(s).css({display:g}),jQuery(o).css({display:"none"}),jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).position().left<-(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).height()-jQuery(a).height()-(parseInt(i.filmstrip_thumb_margin_hor)+r))?jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).animate({left:-(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).height()-jQuery(a).height())},500,"linear"):jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).animate({left:jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).position().left-(parseInt(i.filmstrip_thumb_margin_hor)+r)},500,"linear")),window.setTimeout(function(){parseInt(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).position().left)==-parseInt(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).height()-jQuery(a).height())?(jQuery(l).css({display:"none"}),jQuery(n).css({display:g})):(jQuery(l).css({display:g}),jQuery(n).css({display:"none"}))},510)):"width"==i.width_or_height?(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).position().top>=-(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).width()-jQuery(a).width())&&(jQuery(s).css({display:g}),jQuery(o).css({display:"none"}),jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).position().top<-(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).width()-jQuery(a).width()-parseInt(i.filmstrip_thumb_margin_hor)+r)?jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).animate({top:-(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).width()-jQuery(a).width())},500,"linear"):jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).animate({top:jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).position().top-parseInt(i.filmstrip_thumb_margin_hor)+r},500,"linear")),window.setTimeout(function(){parseInt(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).position().top)==-parseInt(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).width()-jQuery(a).width())?(jQuery(l).css({display:"none"}),jQuery(n).css({display:g})):(jQuery(l).css({display:g}),jQuery(n).css({display:"none"}))},510)):(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).position().top>=-(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).height()-jQuery(a).height())&&(jQuery(s).css({display:g}),jQuery(o).css({display:"none"}),jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).position().top<-(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).height()-jQuery(a).height()-(parseInt(i.filmstrip_thumb_margin_hor)+r))?jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).animate({top:-(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).height()-jQuery(a).height())},500,"linear"):jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).animate({top:jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).position().top-(parseInt(i.filmstrip_thumb_margin_hor)+r)},500,"linear")),window.setTimeout(function(){parseInt(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).position().top)==-parseInt(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).height()-jQuery(a).height())?(jQuery(l).css({display:"none"}),jQuery(n).css({display:g})):(jQuery(l).css({display:g}),jQuery(n).css({display:"none"}))},510)),bwg_slideshow_filmstrip_thumb[_].next_prev_index=bwg_slideshow_filmstrip_thumb[_].next_prev_index+1}function bwg_slideshow_filmstrip_prev(e){var t=e.bwg,i=e.params,a=bwg_calculate_slideshow_filmstrip_thumbnail_size({bwg:t,params:i}),r="bwg_slideshow_filmstrip_thumbnail_"+t,_="#bwg_container1_"+t+" #bwg_container2_"+t+" .bwg_slideshow_filmstrip_left_"+t,s="#bwg_container1_"+t+" #bwg_container2_"+t+" .bwg_slideshow_filmstrip_left_disabled_"+t,o="#bwg_container1_"+t+" #bwg_container2_"+t+" .bwg_slideshow_filmstrip_right_"+t,l="#bwg_container1_"+t+" #bwg_container2_"+t+" .bwg_slideshow_filmstrip_right_disabled_"+t,n="horizontal"==i.filmstrip_direction?"table-cell":"block";"left"==i.left_or_top?(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).position().left<0&&(jQuery(o).css({display:n}),jQuery(l).css({display:"none"}),jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).position().left>-(i.filmstrip_thumb_margin_hor+a)?jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).animate({left:0},500,"linear"):jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).animate({left:jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).position().left+parseInt(i.filmstrip_thumb_margin_hor)+a},500,"linear")),window.setTimeout(function(){0==parseInt(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).position().left)?(jQuery(_).css({display:"none"}),jQuery(s).css({display:n})):(jQuery(_).css({display:n}),jQuery(s).css({display:"none"}))},510)):(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).position().top<0&&(jQuery(o).css({display:n}),jQuery(l).css({display:"none"}),jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).position().top>-(i.filmstrip_thumb_margin_hor+a)?jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).animate({top:0},500,"linear"):jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).animate({top:jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).position().top+parseInt(i.filmstrip_thumb_margin_hor)+a},500,"linear")),window.setTimeout(function(){0==parseInt(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).position().top)?(jQuery(_).css({display:"none"}),jQuery(s).css({display:n})):(jQuery(_).css({display:n}),jQuery(s).css({display:"none"}))},510)),bwg_slideshow_filmstrip_thumb[r].next_prev_index=bwg_slideshow_filmstrip_thumb[r].next_prev_index-1}jQuery(function(){function i(e){bwg_slideshow_blur(e),bwg_carousel_blur(e),0<jQuery(".bwg_play_pause").length&&window.clearInterval(gallery_box_data.bwg_playInterval)}function a(e){e&&bwg_main_ready(e),bwg_slideshow_focus(),bwg_carousel_focus(),jQuery(".bwg_play_pause").length&&jQuery(".bwg_play_pause").hasClass("bwg-icon-play")&&!jQuery(".bwg_comment_container").hasClass("bwg_open")&&bwg_play(gallery_box_data.data)}var r=!1;jQuery(".bwg_container").each(function(){if(0<jQuery(this).find(".wd_error").length&&(r=!0),!r){var e=jQuery(this);if(e[0].offsetHeight)var t=0;else t=1;setInterval(function(){e[0].offsetHeight?1==t&&(t=0,a(e)):0==t&&i(!(t=1))},200)}}),r||jQuery(window).focus(function(){a()}).blur(function(){i(!0)})}),jQuery(window).on("resize",function(){setTimeout(function(){var e=!1;jQuery(".bwg_container").each(function(){0<jQuery(this).find(".wd_error").length&&(e=!0)}),bwg_tags_button_section_visibility(),e||(jQuery(".bwg-thumbnails, .bwg-masonry-thumbnails, .bwg-album-thumbnails").each(function(){bwg_all_thumnails_loaded(this)}),bwg_slideshow_resize(),bwg_image_browser_resize(),bwg_carousel_resize(),bwg_blog_style_resize(),jQuery(".bwg-mosaic-thumbnails").each(function(){bwg_thumbnail_mosaic(this)})),bwg_resize_search_line()},0)}),jQuery(window).on("load",function(){var e=!1;jQuery(".bwg_container").each(function(){0<jQuery(this).find(".wd_error").length&&(e=!0)}),e||(bwg_blog_style_onload(),jQuery(".bwg-mosaic-thumbnails").each(function(){bwg_thumbnail_mosaic(this)}))}),jQuery(".bwg-masonry-thumb-span img, .bwg-mosaic-thumb-span img").on("error",function(){jQuery(this).height(100),jQuery(this).width(100)});
  • photo-gallery/trunk/languages/bwg-en_US.po

    r2694928 r2706798  
    22msgstr ""
    33"Project-Id-Version: bwg\n"
    4 "POT-Creation-Date: 2019-11-06 12:38+0400\n"
    5 "PO-Revision-Date: 2019-11-06 12:38+0400\n"
     4"POT-Creation-Date: 2022-03-17 10:42+0400\n"
     5"PO-Revision-Date: 2022-03-17 10:45+0400\n"
    66"Last-Translator: \n"
    77"Language-Team: \n"
     
    1010"Content-Type: text/plain; charset=UTF-8\n"
    1111"Content-Transfer-Encoding: 8bit\n"
    12 "X-Generator: Poedit 2.2.4\n"
     12"X-Generator: Poedit 3.0\n"
    1313"X-Poedit-Basepath: ..\n"
    1414"Plural-Forms: nplurals=2; plural=(n != 1);\n"
     
    1717
    1818#: addons/addons.php:6
    19 msgid "Photo Gallery Ecommerce"
     19msgid "NextGen Gallery Import to Photo Gallery"
    2020msgstr ""
    2121
    2222#: addons/addons.php:8
    23 msgid ""
    24 "Using Photo Gallery Ecommerce you can sell images included in galleries "
    25 "either as digital downloads or products/prints via Paypal or Stripe."
    26 msgstr ""
    27 
    28 #: addons/addons.php:13
    29 msgid "NextGen Gallery Import to Photo Gallery"
    30 msgstr ""
    31 
    32 #: addons/addons.php:15
    3323msgid ""
    3424"This addon integrates NextGen with Photo Gallery allowing to import images "
     
    3626msgstr ""
    3727
    38 #: addons/addons.php:20
     28#: addons/addons.php:13
    3929msgid "Photo Gallery Export / Import"
    4030msgstr ""
    4131
    42 #: addons/addons.php:22
     32#: addons/addons.php:15
    4333msgid ""
    4434"Photo Gallery Export/Import helps to move created galleries and gallery "
     
    4737msgstr ""
    4838
    49 #: addons/addons.php:27
     39#: addons/addons.php:20
    5040msgid "Photo Gallery Google Photos Integration"
    5141msgstr ""
    5242
    53 #: addons/addons.php:29
     43#: addons/addons.php:22
    5444msgid "Link and display your Google Photos albums in one click."
    5545msgstr ""
    5646
    57 #: addons/addons.php:39
     47#: addons/addons.php:32
    5848msgid "Photo Gallery Add-ons"
    5949msgstr ""
    6050
    61 #: addons/addons.php:72
     51#: addons/addons.php:65
    6252msgid "GET THIS ADD ON"
    6353msgstr ""
    6454
    65 #: admin/controllers/AddTags.php:53 admin/views/Galleries.php:782
    66 #: photo-gallery.php:467
     55#: admin/controllers/AddTags.php:53 admin/controllers/Themes.php:279
     56#: admin/views/Galleries.php:844 photo-gallery.php:488
    6757msgid "Tags"
    6858msgstr ""
    6959
    7060#: admin/controllers/Albums.php:38 admin/controllers/Comments.php:40
    71 #: admin/controllers/Galleries.php:34 admin/views/Albums.php:111
    72 #: admin/views/Albums.php:183 admin/views/Comments.php:109
    73 #: admin/views/Galleries.php:118 admin/views/Galleries.php:213
    74 #: admin/views/Galleries.php:731 framework/WDWLibrary.php:2475
     61#: admin/controllers/Galleries.php:34 admin/views/Albums.php:113
     62#: admin/views/Albums.php:199 admin/views/Comments.php:109
     63#: admin/views/Galleries.php:121 admin/views/Galleries.php:247
     64#: admin/views/Galleries.php:793 framework/WDWLibrary.php:2699
    7565msgid "Publish"
    7666msgstr ""
    7767
    7868#: admin/controllers/Albums.php:39 admin/controllers/Comments.php:41
    79 #: admin/controllers/Galleries.php:35 framework/WDWLibrary.php:2476
     69#: admin/controllers/Galleries.php:35 framework/WDWLibrary.php:2700
    8070msgid "published"
    8171msgstr ""
    8272
    8373#: admin/controllers/Albums.php:42 admin/controllers/Comments.php:44
    84 #: admin/controllers/Galleries.php:38 admin/views/Albums.php:111
    85 #: admin/views/Comments.php:109 admin/views/Galleries.php:118
    86 #: admin/views/Galleries.php:731 framework/WDWLibrary.php:2480
     74#: admin/controllers/Galleries.php:38 admin/views/Albums.php:113
     75#: admin/views/Comments.php:109 admin/views/Galleries.php:121
     76#: admin/views/Galleries.php:793 framework/WDWLibrary.php:2704
    8777msgid "Unpublish"
    8878msgstr ""
    8979
    9080#: admin/controllers/Albums.php:43 admin/controllers/Comments.php:45
    91 #: admin/controllers/Galleries.php:39 framework/WDWLibrary.php:2481
     81#: admin/controllers/Galleries.php:39 framework/WDWLibrary.php:2705
    9282msgid "unpublished"
    9383msgstr ""
    9484
    95 #: admin/controllers/Albums.php:46 admin/controllers/Themes.php:39
    96 #: admin/views/Albums.php:112 admin/views/Themes.php:105
     85#: admin/controllers/Albums.php:46 admin/controllers/Galleries.php:42
     86#: admin/controllers/Themes.php:39 admin/views/Albums.php:114
     87#: admin/views/Galleries.php:123 admin/views/Themes.php:229
    9788msgid "Duplicate"
    9889msgstr ""
     
    10394
    10495#: admin/controllers/Albums.php:50 admin/controllers/Comments.php:48
    105 #: admin/controllers/Galleries.php:42 admin/controllers/Ratings.php:41
    106 #: admin/controllers/Themes.php:43 admin/views/Albums.php:113
    107 #: admin/views/Comments.php:112 admin/views/Galleries.php:119
    108 #: admin/views/Galleries.php:738 admin/views/Ratings.php:84
    109 #: admin/views/Themes.php:106 framework/WDWLibrary.php:2485
    110 #, fuzzy
    111 #| msgid "Delete Comment"
     96#: admin/controllers/Galleries.php:46 admin/controllers/Ratings.php:41
     97#: admin/controllers/Themes.php:43 admin/views/Albums.php:115
     98#: admin/views/Comments.php:112 admin/views/Galleries.php:122
     99#: admin/views/Galleries.php:800 admin/views/Ratings.php:84
     100#: admin/views/Themes.php:230 framework/WDWLibrary.php:2709
    112101msgid "Delete"
    113 msgstr "Delete Comment"
     102msgstr ""
    114103
    115104#: admin/controllers/Albums.php:51 admin/controllers/Comments.php:49
    116 #: admin/controllers/Galleries.php:43 admin/controllers/Ratings.php:42
    117 #: admin/controllers/Themes.php:44 framework/WDWLibrary.php:2486
     105#: admin/controllers/Galleries.php:47 admin/controllers/Ratings.php:42
     106#: admin/controllers/Themes.php:44 framework/WDWLibrary.php:2710
    118107msgid "deleted"
    119108msgstr ""
    120109
    121 #: admin/controllers/Albums.php:95 photo-gallery.php:464
     110#: admin/controllers/Albums.php:95 photo-gallery.php:485
    122111msgid "Gallery Groups"
    123112msgstr ""
     
    127116msgstr ""
    128117
    129 #: admin/controllers/Comments.php:91 photo-gallery.php:475
    130 #, fuzzy
    131 #| msgid "Comment"
     118#: admin/controllers/Comments.php:91 photo-gallery.php:496
    132119msgid "Comments"
    133 msgstr "Comment"
     120msgstr ""
    134121
    135122#: admin/controllers/Comments.php:127 admin/controllers/Ratings.php:133
     
    141128msgstr ""
    142129
    143 #: admin/controllers/Galleries.php:93 photo-gallery.php:1740
    144 #, fuzzy
    145 #| msgid "Gallery is empty."
     130#: admin/controllers/Galleries.php:43 admin/controllers/Themes.php:40
     131msgid "duplicated"
     132msgstr ""
     133
     134#: admin/controllers/Galleries.php:97 photo-gallery.php:1769
    146135msgid "Galleries"
    147 msgstr "Gallery is empty."
    148 
    149 #: admin/controllers/Galleries.php:343
     136msgstr ""
     137
     138#: admin/controllers/Galleries.php:377
    150139msgid "Mixed"
    151140msgstr ""
    152141
    153 #: admin/controllers/Galleries.php:343
     142#: admin/controllers/Galleries.php:377
    154143msgid "Instagram only"
    155144msgstr ""
    156145
    157 #: admin/controllers/Galleries.php:345 admin/views/Options.php:581
    158 #, fuzzy
    159 #| msgid "Share on Facebook"
     146#: admin/controllers/Galleries.php:379 admin/views/Options.php:756
    160147msgid "Facebook"
    161 msgstr "Share on Facebook"
    162 
    163 #: admin/controllers/Options.php:48
    164 msgid "Edit options"
    165 msgstr ""
    166 
    167 #: admin/controllers/Options.php:53 admin/controllers/Shortcode.php:40
    168 #: admin/views/Options.php:375 admin/views/Shortcode.php:68
    169 #: admin/views/Shortcode.php:430 photo-gallery.php:1585
     148msgstr ""
     149
     150#: admin/controllers/Options.php:51 photo-gallery.php:490
     151msgid "Global Settings"
     152msgstr ""
     153
     154#: admin/controllers/Options.php:56 admin/controllers/Shortcode.php:40
     155#: admin/views/Galleries.php:193 admin/views/Options.php:442
     156#: admin/views/Shortcode.php:75 photo-gallery.php:1614
    170157msgid "Thumbnails"
    171158msgstr ""
    172159
    173 #: admin/controllers/Options.php:54 admin/controllers/Options.php:63
     160#: admin/controllers/Options.php:57 admin/controllers/Options.php:66
    174161#: admin/controllers/Shortcode.php:41 admin/controllers/Shortcode.php:50
    175 #: admin/controllers/Themes.php:263 admin/views/Options.php:383
    176 #: admin/views/Options.php:473 admin/views/Options.php:2681
    177 #: admin/views/Options.php:3220 admin/views/Shortcode.php:76
    178 #: admin/views/Shortcode.php:146 admin/views/Widget.php:139
    179 #: photo-gallery.php:1589
     162#: admin/controllers/Themes.php:268 admin/views/Albums.php:182
     163#: admin/views/Galleries.php:197 admin/views/Options.php:452
     164#: admin/views/Options.php:599 admin/views/Options.php:2937
     165#: admin/views/Options.php:3471 admin/views/Shortcode.php:85
     166#: admin/views/Shortcode.php:196 admin/views/Widget.php:138
     167#: photo-gallery.php:1618
    180168msgid "Masonry"
    181169msgstr ""
    182170
    183 #: admin/controllers/Options.php:55 admin/controllers/Shortcode.php:42
    184 #: admin/controllers/Themes.php:264 admin/views/Options.php:392
    185 #: admin/views/Options.php:2682 admin/views/Options.php:3221
    186 #: admin/views/Shortcode.php:85 photo-gallery.php:1593
     171#: admin/controllers/Options.php:58 admin/controllers/Shortcode.php:42
     172#: admin/controllers/Themes.php:269 admin/views/Galleries.php:201
     173#: admin/views/Options.php:465 admin/views/Options.php:2938
     174#: admin/views/Options.php:3472 admin/views/Shortcode.php:97
     175#: photo-gallery.php:1622
    187176msgid "Mosaic"
    188177msgstr ""
    189178
    190 #: admin/controllers/Options.php:56 admin/controllers/Shortcode.php:43
    191 #: admin/controllers/Themes.php:265 admin/views/Options.php:401
    192 #: admin/views/Options.php:2683 admin/views/Options.php:3222
    193 #: admin/views/Shortcode.php:94 photo-gallery.php:1559 photo-gallery.php:1597
     179#: admin/controllers/Options.php:59 admin/controllers/Shortcode.php:43
     180#: admin/controllers/Themes.php:270 admin/views/Galleries.php:205
     181#: admin/views/Options.php:478 admin/views/Options.php:2939
     182#: admin/views/Options.php:3473 admin/views/Shortcode.php:109
     183#: photo-gallery.php:1588 photo-gallery.php:1626
    194184msgid "Slideshow"
    195185msgstr ""
    196186
    197 #: admin/controllers/Options.php:57 admin/controllers/Shortcode.php:44
    198 #: admin/views/Options.php:407 admin/views/Options.php:2684
    199 #: admin/views/Options.php:3223 admin/views/Shortcode.php:100
    200 #: photo-gallery.php:1601
     187#: admin/controllers/Options.php:60 admin/controllers/Shortcode.php:44
     188#: admin/views/Galleries.php:209 admin/views/Options.php:488
     189#: admin/views/Options.php:2940 admin/views/Options.php:3474
     190#: admin/views/Shortcode.php:118 photo-gallery.php:1630
    201191msgid "Image Browser"
    202192msgstr ""
    203193
    204 #: admin/controllers/Options.php:58 admin/controllers/Shortcode.php:45
    205 #: admin/views/Options.php:413 admin/views/Options.php:2685
    206 #: admin/views/Options.php:3224 admin/views/Shortcode.php:106
    207 #: photo-gallery.php:1617
     194#: admin/controllers/Options.php:61 admin/controllers/Shortcode.php:45
     195#: admin/views/Galleries.php:213 admin/views/Options.php:498
     196#: admin/views/Options.php:2941 admin/views/Options.php:3475
     197#: admin/views/Shortcode.php:127 photo-gallery.php:1646
    208198msgid "Blog Style"
    209199msgstr ""
    210200
    211 #: admin/controllers/Options.php:59 admin/controllers/Shortcode.php:46
    212 #: admin/controllers/Themes.php:273 admin/views/Options.php:422
    213 #: admin/views/Options.php:2686 admin/views/Options.php:3225
    214 #: admin/views/Shortcode.php:115 photo-gallery.php:1629
     201#: admin/controllers/Options.php:62 admin/controllers/Shortcode.php:46
     202#: admin/controllers/Themes.php:278 admin/views/Galleries.php:217
     203#: admin/views/Options.php:511 admin/views/Options.php:2942
     204#: admin/views/Options.php:3476 admin/views/Shortcode.php:139
     205#: photo-gallery.php:1658
    215206msgid "Carousel"
    216207msgstr ""
    217208
    218 #: admin/controllers/Options.php:62 admin/controllers/Shortcode.php:49
    219 #: admin/views/Options.php:467 admin/views/Shortcode.php:140
     209#: admin/controllers/Options.php:65 admin/controllers/Shortcode.php:49
     210#: admin/views/Albums.php:178 admin/views/Options.php:588
     211#: admin/views/Shortcode.php:187
    220212msgid "Compact"
    221213msgstr ""
    222214
    223 #: admin/controllers/Options.php:64 admin/controllers/Shortcode.php:51
    224 #: admin/views/Options.php:482 admin/views/Shortcode.php:155
     215#: admin/controllers/Options.php:67 admin/controllers/Shortcode.php:51
     216#: admin/views/Albums.php:186 admin/views/Options.php:612
     217#: admin/views/Shortcode.php:208
    225218msgid "Extended"
    226219msgstr ""
    227220
    228 #: admin/controllers/Options.php:130
     221#: admin/controllers/Options.php:132
    229222msgid "Default values restored. Changes must be saved."
    230223msgstr ""
    231224
    232 #: admin/controllers/Options.php:162
     225#: admin/controllers/Options.php:164
    233226msgid "Uploads directory doesn't exist. Old value is restored."
    234227msgstr ""
    235228
    236 #: admin/controllers/Options.php:165
     229#: admin/controllers/Options.php:167
    237230msgid ""
    238231"Warning: \"photo-gallery\" folder already exists in uploads directory. Old "
     
    240233msgstr ""
    241234
    242 #: admin/controllers/Options.php:195
     235#: admin/controllers/Options.php:197
    243236msgid "All thumbnails are successfully recreated."
    244237msgstr ""
    245238
    246 #: admin/controllers/Options.php:208
     239#: admin/controllers/Options.php:210
    247240msgid "Item Succesfully Saved."
    248241msgstr ""
    249242
    250 #: admin/controllers/Options.php:248 framework/WDWLibrary.php:218
     243#: admin/controllers/Options.php:251 framework/WDWLibrary.php:236
    251244msgid ""
    252245"http:// wrapper is disabled in the server configuration by allow_url_fopen=0."
    253246msgstr ""
    254247
    255 #: admin/controllers/Options.php:254 framework/WDWLibrary.php:213
     248#: admin/controllers/Options.php:259 framework/WDWLibrary.php:231
    256249msgid "Watermark could not be set. The image URL is incorrect."
    257250msgstr ""
    258251
    259 #: admin/controllers/Options.php:258
     252#: admin/controllers/Options.php:263
    260253msgid "All images are successfully watermarked."
    261254msgstr ""
    262255
    263 #: admin/controllers/Ratings.php:86 photo-gallery.php:478
     256#: admin/controllers/Ratings.php:86 photo-gallery.php:499
    264257msgid "Ratings"
    265258msgstr ""
    266259
    267 #: admin/controllers/Themes.php:40
    268 msgid "duplicated"
    269 msgstr ""
    270 
    271 #: admin/controllers/Themes.php:88 photo-gallery.php:471
     260#: admin/controllers/Themes.php:88 photo-gallery.php:492
    272261msgid "Themes"
    273262msgstr ""
    274263
    275 #: admin/controllers/Themes.php:262 admin/views/Options.php:2680
    276 #: admin/views/Options.php:3219 admin/views/Widget.php:138
     264#: admin/controllers/Themes.php:267 admin/views/Options.php:2936
     265#: admin/views/Options.php:3470 admin/views/Widget.php:137
    277266msgid "Thumbnail"
    278267msgstr ""
    279268
    280 #: admin/controllers/Themes.php:266
     269#: admin/controllers/Themes.php:271
    281270msgid "Image browser"
    282271msgstr ""
    283272
    284 #: admin/controllers/Themes.php:267
     273#: admin/controllers/Themes.php:272
    285274msgid "Compact album"
    286275msgstr ""
    287276
    288 #: admin/controllers/Themes.php:268
     277#: admin/controllers/Themes.php:273
    289278msgid "Masonry album"
    290279msgstr ""
    291280
    292 #: admin/controllers/Themes.php:269
     281#: admin/controllers/Themes.php:274
    293282msgid "Extended album"
    294283msgstr ""
    295284
    296 #: admin/controllers/Themes.php:270
     285#: admin/controllers/Themes.php:275
    297286msgid "Blog style"
    298287msgstr ""
    299288
    300 #: admin/controllers/Themes.php:271 admin/views/WidgetTags.php:96
    301 #: photo-gallery.php:1551 photo-gallery.php:1621
     289#: admin/controllers/Themes.php:276 admin/views/Options.php:110
     290#: admin/views/WidgetTags.php:96 photo-gallery.php:1580 photo-gallery.php:1650
    302291msgid "Lightbox"
    303292msgstr ""
    304293
    305 #: admin/controllers/Themes.php:272
     294#: admin/controllers/Themes.php:277
    306295msgid "Navigation"
    307296msgstr ""
    308297
    309 #: admin/controllers/Themes.php:277 admin/controllers/Themes.php:316
    310 #: admin/controllers/Themes.php:323 admin/controllers/WidgetSlideshow.php:44
    311 #: admin/views/Options.php:677 admin/views/Options.php:830
    312 #: admin/views/Options.php:1060 admin/views/Options.php:1108
    313 #: admin/views/Options.php:1326 admin/views/Options.php:1562
    314 #: admin/views/Options.php:2156 admin/views/Shortcode.php:299
     298#: admin/controllers/Themes.php:283 admin/controllers/Themes.php:322
     299#: admin/controllers/Themes.php:329 admin/controllers/WidgetSlideshow.php:44
     300#: admin/views/Options.php:884 admin/views/Options.php:1042
     301#: admin/views/Options.php:1289 admin/views/Options.php:1337
     302#: admin/views/Options.php:1563 admin/views/Options.php:1797
     303#: admin/views/Options.php:2091 admin/views/Options.php:2396
     304#: admin/views/Shortcode.php:381
    315305msgid "None"
    316306msgstr ""
    317307
    318 #: admin/controllers/Themes.php:278
     308#: admin/controllers/Themes.php:284
    319309msgid "Solid"
    320310msgstr ""
    321311
    322 #: admin/controllers/Themes.php:279
     312#: admin/controllers/Themes.php:285
    323313msgid "Dotted"
    324314msgstr ""
    325315
    326 #: admin/controllers/Themes.php:280
     316#: admin/controllers/Themes.php:286
    327317msgid "Dashed"
    328318msgstr ""
    329319
    330 #: admin/controllers/Themes.php:281 admin/controllers/Themes.php:333
     320#: admin/controllers/Themes.php:287 admin/controllers/Themes.php:339
    331321msgid "Double"
    332322msgstr ""
    333323
    334 #: admin/controllers/Themes.php:282
     324#: admin/controllers/Themes.php:288
    335325msgid "Groove"
    336326msgstr ""
    337327
    338 #: admin/controllers/Themes.php:283
     328#: admin/controllers/Themes.php:289
    339329msgid "Ridge"
    340330msgstr ""
    341331
    342 #: admin/controllers/Themes.php:284
     332#: admin/controllers/Themes.php:290
    343333msgid "Inset"
    344334msgstr ""
    345335
    346 #: admin/controllers/Themes.php:285
     336#: admin/controllers/Themes.php:291
    347337msgid "Outset"
    348338msgstr ""
    349339
    350 #: admin/controllers/Themes.php:303 admin/views/Themes.php:1278
    351 #: admin/views/Themes.php:3903 admin/views/Themes.php:4385
     340#: admin/controllers/Themes.php:309 admin/views/Themes.php:1360
     341#: admin/views/Themes.php:3704 admin/views/Themes.php:4132
    352342msgid "Left"
    353343msgstr ""
    354344
    355 #: admin/controllers/Themes.php:304
     345#: admin/controllers/Themes.php:310
    356346msgid "Center"
    357347msgstr ""
    358348
    359 #: admin/controllers/Themes.php:305 admin/views/Themes.php:1276
    360 #: admin/views/Themes.php:3901 admin/views/Themes.php:4387
     349#: admin/controllers/Themes.php:311 admin/views/Themes.php:1358
     350#: admin/views/Themes.php:3702 admin/views/Themes.php:4134
    361351msgid "Right"
    362352msgstr ""
    363353
    364 #: admin/controllers/Themes.php:309
     354#: admin/controllers/Themes.php:315
    365355msgid "Lighter"
    366356msgstr ""
    367357
    368 #: admin/controllers/Themes.php:310
     358#: admin/controllers/Themes.php:316
    369359msgid "Normal"
    370360msgstr ""
    371361
    372 #: admin/controllers/Themes.php:311
     362#: admin/controllers/Themes.php:317
    373363msgid "Bold"
    374364msgstr ""
    375365
    376 #: admin/controllers/Themes.php:317 admin/controllers/Themes.php:324
     366#: admin/controllers/Themes.php:323 admin/controllers/Themes.php:330
    377367msgid "Rotate"
    378368msgstr ""
    379369
    380 #: admin/controllers/Themes.php:318 admin/controllers/Themes.php:325
     370#: admin/controllers/Themes.php:324 admin/controllers/Themes.php:331
    381371msgid "Scale"
    382372msgstr ""
    383373
    384 #: admin/controllers/Themes.php:319 admin/controllers/Themes.php:327
     374#: admin/controllers/Themes.php:325 admin/controllers/Themes.php:333
    385375msgid "Skew"
    386376msgstr ""
    387377
    388 #: admin/controllers/Themes.php:326
     378#: admin/controllers/Themes.php:332
    389379msgid "Zoom"
    390380msgstr ""
    391381
    392 #: admin/controllers/Themes.php:331
     382#: admin/controllers/Themes.php:337
    393383msgid "Angle"
    394384msgstr ""
    395385
    396 #: admin/controllers/Themes.php:332
     386#: admin/controllers/Themes.php:338
    397387msgid "Chevron"
    398388msgstr ""
    399389
    400 #: admin/controllers/Themes.php:337
     390#: admin/controllers/Themes.php:343
    401391msgid "Star"
    402392msgstr ""
    403393
    404 #: admin/controllers/Themes.php:338
     394#: admin/controllers/Themes.php:344
    405395msgid "Bell"
    406396msgstr ""
    407397
    408 #: admin/controllers/Themes.php:339
     398#: admin/controllers/Themes.php:345
    409399msgid "Circle"
    410400msgstr ""
    411401
    412 #: admin/controllers/Themes.php:340
     402#: admin/controllers/Themes.php:346
    413403msgid "Flag"
    414404msgstr ""
    415405
    416 #: admin/controllers/Themes.php:341
     406#: admin/controllers/Themes.php:347
    417407msgid "Heart"
    418408msgstr ""
    419409
    420 #: admin/controllers/Themes.php:342
     410#: admin/controllers/Themes.php:348
    421411msgid "Square"
    422412msgstr ""
    423413
    424414#: admin/controllers/Uninstall.php:59 admin/controllers/Uninstall.php:100
    425 #: admin/views/Options.php:351
     415#: admin/views/Options.php:412
    426416#, php-format
    427417msgid "Uninstall %s"
     
    436426msgstr ""
    437427
    438 #: admin/controllers/WidgetSlideshow.php:45 admin/views/Options.php:1061
     428#: admin/controllers/WidgetSlideshow.php:45 admin/views/Options.php:1290
    439429msgid "Cube Horizontal"
    440430msgstr ""
    441431
    442 #: admin/controllers/WidgetSlideshow.php:46 admin/views/Options.php:1062
     432#: admin/controllers/WidgetSlideshow.php:46 admin/views/Options.php:1291
    443433msgid "Cube Vertical"
    444434msgstr ""
    445435
    446 #: admin/controllers/WidgetSlideshow.php:47 admin/views/Options.php:1063
     436#: admin/controllers/WidgetSlideshow.php:47 admin/views/Options.php:1292
    447437msgid "Fade"
    448438msgstr ""
    449439
    450 #: admin/controllers/WidgetSlideshow.php:48 admin/views/Options.php:1064
     440#: admin/controllers/WidgetSlideshow.php:48 admin/views/Options.php:1293
    451441msgid "Slice Horizontal"
    452442msgstr ""
    453443
    454 #: admin/controllers/WidgetSlideshow.php:49 admin/views/Options.php:1065
     444#: admin/controllers/WidgetSlideshow.php:49 admin/views/Options.php:1294
    455445msgid "Slice Vertical"
    456446msgstr ""
    457447
    458 #: admin/controllers/WidgetSlideshow.php:50 admin/views/Options.php:1066
     448#: admin/controllers/WidgetSlideshow.php:50 admin/views/Options.php:1295
    459449msgid "Slide Horizontal"
    460450msgstr ""
    461451
    462 #: admin/controllers/WidgetSlideshow.php:51 admin/views/Options.php:1067
     452#: admin/controllers/WidgetSlideshow.php:51 admin/views/Options.php:1296
    463453msgid "Slide Vertical"
    464454msgstr ""
    465455
    466 #: admin/controllers/WidgetSlideshow.php:52 admin/views/Options.php:1068
     456#: admin/controllers/WidgetSlideshow.php:52 admin/views/Options.php:1297
    467457msgid "Scale Out"
    468458msgstr ""
    469459
    470 #: admin/controllers/WidgetSlideshow.php:53 admin/views/Options.php:1069
     460#: admin/controllers/WidgetSlideshow.php:53 admin/views/Options.php:1298
    471461msgid "Scale In"
    472462msgstr ""
    473463
    474 #: admin/controllers/WidgetSlideshow.php:54 admin/views/Options.php:1070
     464#: admin/controllers/WidgetSlideshow.php:54 admin/views/Options.php:1299
    475465msgid "Block Scale"
    476466msgstr ""
    477467
    478 #: admin/controllers/WidgetSlideshow.php:55 admin/views/Options.php:1071
     468#: admin/controllers/WidgetSlideshow.php:55 admin/views/Options.php:1300
    479469msgid "Kaleidoscope"
    480470msgstr ""
    481471
    482 #: admin/controllers/WidgetSlideshow.php:56 admin/views/Options.php:1072
     472#: admin/controllers/WidgetSlideshow.php:56 admin/views/Options.php:1301
    483473msgid "Fan"
    484474msgstr ""
    485475
    486 #: admin/controllers/WidgetSlideshow.php:57 admin/views/Options.php:1073
     476#: admin/controllers/WidgetSlideshow.php:57 admin/views/Options.php:1302
    487477msgid "Blind Horizontal"
    488478msgstr ""
    489479
    490 #: admin/controllers/WidgetSlideshow.php:58 admin/views/Options.php:1074
     480#: admin/controllers/WidgetSlideshow.php:58 admin/views/Options.php:1303
    491481msgid "Blind Vertical"
    492482msgstr ""
    493483
    494 #: admin/controllers/WidgetSlideshow.php:59 admin/views/Options.php:1075
    495 #: admin/views/Options.php:1151 admin/views/Options.php:1369
    496 #: admin/views/Options.php:1605 admin/views/Options.php:1802
    497 #: admin/views/Options.php:2042 admin/views/Options.php:2201
    498 #: admin/views/Options.php:2378 admin/views/Options.php:2563
    499 #: admin/views/Options.php:2585 admin/views/Options.php:2863
    500 #: admin/views/Options.php:2885 admin/views/Options.php:3103
    501 #: admin/views/Options.php:3125 admin/views/Widget.php:159
    502 #: frontend/views/view.php:433
     484#: admin/controllers/WidgetSlideshow.php:59 admin/views/Options.php:1304
     485#: admin/views/Options.php:1378 admin/views/Options.php:1604
     486#: admin/views/Options.php:1838 admin/views/Options.php:2033
     487#: admin/views/Options.php:2282 admin/views/Options.php:2439
     488#: admin/views/Options.php:2614 admin/views/Options.php:2821
     489#: admin/views/Options.php:2841 admin/views/Options.php:3117
     490#: admin/views/Options.php:3137 admin/views/Options.php:3356
     491#: admin/views/Options.php:3376 admin/views/Widget.php:158
     492#: frontend/views/view.php:528
    503493msgid "Random"
    504 msgstr "Random"
     494msgstr ""
    505495
    506496#: admin/controllers/WidgetTags.php:14
     
    508498msgstr ""
    509499
    510 #: admin/controllers/elementorWidget.php:36 admin/views/Albumsgalleries.php:119
    511 #: admin/views/Shortcode.php:57 admin/views/Shortcode.php:186
    512 #: admin/views/Shortcode.php:264 admin/views/Widget.php:120
    513 msgid "Gallery"
    514 msgstr ""
    515 
    516 #: admin/controllers/elementorWidget.php:68 admin/views/Options.php:74
    517 #: photo-gallery.php:417
     500#: admin/controllers/elementorWidget.php:36 admin/views/Widget.php:97
     501#: photo-gallery.php:111
     502msgid "Photo Gallery"
     503msgstr ""
     504
     505#: admin/controllers/elementorWidget.php:68 admin/views/Options.php:92
     506#: photo-gallery.php:438
    518507msgid "General"
    519508msgstr ""
    520509
    521 #: admin/models/Comments.php:62 admin/models/Ratings.php:81
    522 #: framework/WDWLibrary.php:2751
     510#: admin/models/Comments.php:73 admin/models/Ratings.php:104
     511#: framework/WDWLibrary.php:3089
    523512msgid "All galleries"
    524513msgstr ""
    525514
    526 #: admin/models/Comments.php:76 admin/models/Ratings.php:100
    527 #: admin/views/Widget.php:126 framework/WDWLibrary.php:2732
     515#: admin/models/Comments.php:92 admin/models/Ratings.php:133
     516#: admin/views/Widget.php:125 framework/WDWLibrary.php:3070
    528517msgid "All images"
    529518msgstr ""
    530519
    531 #: admin/models/Galleries.php:1220 admin/views/Galleries.php:760
     520#: admin/models/Galleries.php:1563 admin/views/Galleries.php:822
    532521msgid ""
    533522"Selected pricelist item longest dimension greater than some original images "
     
    535524msgstr ""
    536525
    537 #: admin/views/AddTags.php:66 admin/views/Albums.php:58
    538 #: admin/views/Comments.php:65 admin/views/Themes.php:77 photo-gallery.php:1436
     526#: admin/views/AddTags.php:78 admin/views/Albums.php:59
     527#: admin/views/Comments.php:65 admin/views/Themes.php:201
     528#: photo-gallery.php:1463
    539529msgid "Select all"
    540530msgstr ""
    541531
    542 #: admin/views/AddTags.php:69 admin/views/AddTags.php:87
     532#: admin/views/AddTags.php:81 admin/views/AddTags.php:99
    543533#: admin/views/Comments.php:69 admin/views/Comments.php:90
    544 #: filemanager/view.php:135 frontend/views/BWGViewGalleryBox.php:994
    545 #: frontend/views/BWGViewGalleryBox.php:1112
    546 #: frontend/views/BWGViewGalleryBox.php:1226
     534#: filemanager/view.php:138 frontend/views/BWGViewGalleryBox.php:1020
     535#: frontend/views/BWGViewGalleryBox.php:1137
     536#: frontend/views/BWGViewGalleryBox.php:1251
    547537msgid "Name"
    548 msgstr "Name"
    549 
    550 #: admin/views/AddTags.php:108
    551 #, fuzzy
    552 #| msgid "Reset"
     538msgstr ""
     539
     540#: admin/views/AddTags.php:120
    553541msgid "Remove from image"
    554 msgstr "Reset"
    555 
    556 #: admin/views/AddTags.php:109
     542msgstr ""
     543
     544#: admin/views/AddTags.php:121
    557545msgid "Add to image"
    558546msgstr ""
    559547
    560 #: admin/views/AdminView.php:95
    561 msgid "Add New"
    562 msgstr ""
    563 
    564 #: admin/views/AdminView.php:198 framework/WDWLibrary.php:349
    565 #: framework/WDWLibrary.php:527 photo-gallery.php:1412
     548#: admin/views/AdminView.php:77
     549msgid "Add new"
     550msgstr ""
     551
     552#: admin/views/AdminView.php:218 framework/WDWLibrary.php:381
     553#: framework/WDWLibrary.php:533 photo-gallery.php:1439
    566554msgid "Search"
    567 msgstr "Search"
    568 
    569 #: admin/views/AdminView.php:260
    570 #, fuzzy
     555msgstr ""
     556
     557#: admin/views/AdminView.php:279
    571558#| msgid "First"
    572559msgid "First page"
    573 msgstr "First"
    574 
    575 #: admin/views/AdminView.php:261
    576 #, fuzzy
     560msgstr ""
     561
     562#: admin/views/AdminView.php:280
    577563#| msgid "Previous"
    578564msgid "Previous page"
    579 msgstr "Previous"
    580 
    581 #: admin/views/AdminView.php:266
     565msgstr ""
     566
     567#: admin/views/AdminView.php:285
    582568msgid "Current Page"
    583569msgstr ""
    584570
    585 #: admin/views/AdminView.php:269 framework/WDWLibrary.php:480
    586 #: framework/WDWLibrary.php:629 frontend/views/view.php:663
     571#: admin/views/AdminView.php:288 framework/WDWLibrary.php:487
     572#: framework/WDWLibrary.php:634 frontend/views/view.php:852
    587573msgid "of"
    588 msgstr "of"
    589 
    590 #: admin/views/AdminView.php:282
    591 #, fuzzy
    592 #| msgid "Next"
     574msgstr ""
     575
     576#: admin/views/AdminView.php:301
    593577msgid "Next page"
    594 msgstr "Next"
    595 
    596 #: admin/views/AdminView.php:283
    597 #, fuzzy
    598 #| msgid "Last"
     578msgstr ""
     579
     580#: admin/views/AdminView.php:302
    599581msgid "Last page"
    600 msgstr "Last"
    601 
    602 #: admin/views/AdminView.php:315 filemanager/view.php:205
     582msgstr ""
     583
     584#: admin/views/AdminView.php:337 filemanager/view.php:208
    603585msgid "Select All"
    604586msgstr ""
    605587
    606 #: admin/views/AdminView.php:320
     588#: admin/views/AdminView.php:341
    607589msgid "Select bulk action"
    608590msgstr ""
    609591
    610 #: admin/views/AdminView.php:322
     592#: admin/views/AdminView.php:343
    611593msgid "Bulk Actions"
    612594msgstr ""
    613595
    614 #: admin/views/AdminView.php:331 admin/views/Galleries.php:398
    615 #: admin/views/Galleries.php:726 admin/views/Galleries.php:727
    616 #: admin/views/Galleries.php:728 admin/views/Options.php:157
    617 #: admin/views/Options.php:957 admin/views/Options.php:960
     596#: admin/views/AdminView.php:348 admin/views/Galleries.php:457
     597#: admin/views/Galleries.php:788 admin/views/Galleries.php:789
     598#: admin/views/Galleries.php:790 admin/views/Options.php:195
     599#: admin/views/Options.php:1169 admin/views/Options.php:1172
    618600#: filemanager/view.php:66
    619601msgid "This option is disabled in demo."
    620602msgstr ""
    621603
    622 #: admin/views/AdminView.php:331
     604#: admin/views/AdminView.php:348
    623605msgid "Apply"
    624606msgstr ""
    625607
    626 #: admin/views/Albums.php:61 admin/views/Albums.php:97
    627 #: admin/views/Albumsgalleries.php:78 admin/views/Albumsgalleries.php:102
    628 #: admin/views/Galleries.php:60 admin/views/Galleries.php:63
    629 #: admin/views/Galleries.php:104 admin/views/Options.php:1145
    630 #: admin/views/Options.php:1363 admin/views/Options.php:1599
    631 #: admin/views/Options.php:1796 admin/views/Options.php:2036
    632 #: admin/views/Options.php:2195 admin/views/Options.php:2372
    633 #: admin/views/Options.php:2562 admin/views/Options.php:2579
    634 #: admin/views/Options.php:2862 admin/views/Options.php:2879
    635 #: admin/views/Options.php:3102 admin/views/Options.php:3119
    636 #: admin/views/Themes.php:80 admin/views/Themes.php:99
     608#: admin/views/Albums.php:44
     609msgid "Add new group"
     610msgstr ""
     611
     612#: admin/views/Albums.php:62 admin/views/Albums.php:99
     613#: admin/views/Albumsgalleries.php:79 admin/views/Albumsgalleries.php:103
     614#: admin/views/Galleries.php:61 admin/views/Galleries.php:64
     615#: admin/views/Galleries.php:107 admin/views/Options.php:1374
     616#: admin/views/Options.php:1600 admin/views/Options.php:1834
     617#: admin/views/Options.php:2029 admin/views/Options.php:2278
     618#: admin/views/Options.php:2435 admin/views/Options.php:2610
     619#: admin/views/Options.php:2819 admin/views/Options.php:2837
     620#: admin/views/Options.php:3115 admin/views/Options.php:3133
     621#: admin/views/Options.php:3354 admin/views/Options.php:3372
     622#: admin/views/Themes.php:204 admin/views/Themes.php:223
     623#: frontend/views/view.php:516
    637624msgid "Title"
    638625msgstr ""
    639626
    640 #: admin/views/Albums.php:62 admin/views/Albums.php:120
    641 #: admin/views/Albums.php:241 admin/views/Galleries.php:65
    642 #: admin/views/Galleries.php:127 admin/views/Galleries.php:281
     627#: admin/views/Albums.php:63 admin/views/Albums.php:122
     628#: admin/views/Albums.php:283 admin/views/Galleries.php:66
     629#: admin/views/Galleries.php:131 admin/views/Galleries.php:337
    643630msgid "Author"
    644631msgstr ""
    645632
    646 #: admin/views/Albums.php:106 admin/views/Albums.php:333
    647 #: admin/views/Albumsgalleries.php:111 admin/views/Comments.php:102
    648 #: admin/views/Galleries.php:113 admin/views/Galleries.php:718
     633#: admin/views/Albums.php:108 admin/views/Albums.php:386
     634#: admin/views/Albumsgalleries.php:112 admin/views/Comments.php:102
     635#: admin/views/Galleries.php:116 admin/views/Galleries.php:781
    649636msgid "Unpublished"
    650637msgstr ""
    651638
    652 #: admin/views/Albums.php:110 admin/views/Editimage.php:325
    653 #: admin/views/Galleries.php:117 admin/views/Galleries.php:726
    654 #: admin/views/Themes.php:104
     639#: admin/views/Albums.php:112 admin/views/Editimage.php:326
     640#: admin/views/Galleries.php:120 admin/views/Galleries.php:788
     641#: admin/views/Themes.php:228
    655642msgid "Edit"
    656643msgstr ""
    657644
    658 #: admin/views/Albums.php:113 admin/views/Comments.php:112
    659 #: admin/views/Galleries.php:119 admin/views/Galleries.php:732
    660 #: admin/views/Ratings.php:84 admin/views/Themes.php:106
     645#: admin/views/Albums.php:115 admin/views/Comments.php:112
     646#: admin/views/Galleries.php:122 admin/views/Galleries.php:794
     647#: admin/views/Ratings.php:84 admin/views/Themes.php:230
    661648msgid "Do you want to delete selected item?"
    662649msgstr ""
    663650
    664 #: admin/views/Albums.php:114 admin/views/Albums.php:186
    665 #: admin/views/Galleries.php:120 admin/views/Galleries.php:217
    666 #, fuzzy
     651#: admin/views/Albums.php:116 admin/views/Albums.php:204
     652#: admin/views/Galleries.php:124 admin/views/Galleries.php:252
    667653#| msgid "Previous"
    668654msgid "Preview"
    669 msgstr "Previous"
    670 
    671 #: admin/views/Albums.php:117 admin/views/Albumsgalleries.php:115
    672 #: admin/views/Comments.php:115 admin/views/Galleries.php:123
    673 #: admin/views/Galleries.php:742 admin/views/Ratings.php:87
    674 #: admin/views/Themes.php:109
    675 #, fuzzy
     655msgstr ""
     656
     657#: admin/views/Albums.php:119 admin/views/Albumsgalleries.php:116
     658#: admin/views/Comments.php:115 admin/views/Galleries.php:127
     659#: admin/views/Galleries.php:804 admin/views/Ratings.php:87
     660#: admin/views/Themes.php:233
    676661#| msgid "Show comments"
    677662msgid "Show more details"
    678 msgstr "Show comments"
    679 
    680 #: admin/views/Albums.php:174
     663msgstr ""
     664
     665#: admin/views/Albums.php:182 admin/views/Galleries.php:197
     666#: admin/views/Galleries.php:201 admin/views/Galleries.php:213
     667#: admin/views/Galleries.php:217 wd/wd.php:53 wd/wd.php:57
     668msgid "Premium"
     669msgstr ""
     670
     671#: admin/views/Albums.php:194
    681672msgid "Gallery Group Title"
    682673msgstr ""
    683674
    684 #: admin/views/Albums.php:183 admin/views/Galleries.php:213
    685 #: admin/views/Shortcode.php:576 admin/views/Shortcode.php:2126
    686 #: admin/views/Themes.php:181
     675#: admin/views/Albums.php:199 admin/views/Galleries.php:247
     676#: admin/views/Shortcode.php:662 admin/views/Shortcode.php:2251
     677#: admin/views/Themes.php:351
    687678msgid "Update"
    688679msgstr ""
    689680
    690 #: admin/views/Albums.php:197 admin/views/Albums.php:233
    691 #: admin/views/Galleries.php:229 admin/views/Galleries.php:270
    692 #: admin/views/Options.php:528 admin/views/Options.php:596
    693 #: admin/views/Options.php:664 admin/views/Shortcode.php:260
    694 #: admin/views/Shortcode.php:275
     681#: admin/views/Albums.php:206
     682#| msgid "Gallery is empty."
     683msgid "Preview gallery group in:"
     684msgstr ""
     685
     686#: admin/views/Albums.php:236 admin/views/Albums.php:272
     687#: admin/views/Galleries.php:285 admin/views/Galleries.php:326
     688#: admin/views/Options.php:686 admin/views/Options.php:771
     689#: admin/views/Options.php:872 admin/views/Shortcode.php:341
     690#: admin/views/Shortcode.php:356
    695691msgid "Toggle panel:"
    696692msgstr ""
    697693
    698 #: admin/views/Albums.php:201 admin/views/Galleries.php:233
     694#: admin/views/Albums.php:240 admin/views/Galleries.php:289
    699695msgid "Basic"
    700696msgstr ""
    701697
    702 #: admin/views/Albums.php:206 admin/views/Galleries.php:238
     698#: admin/views/Albums.php:245 admin/views/Galleries.php:294
    703699msgid "Preview image"
    704700msgstr ""
    705701
    706 #: admin/views/Albums.php:208 admin/views/Galleries.php:242
     702#: admin/views/Albums.php:247 admin/views/Galleries.php:298
    707703msgid "Add Preview Image"
    708704msgstr ""
    709705
    710 #: admin/views/Albums.php:209 admin/views/Albums.php:296
    711 #: admin/views/Galleries.php:245 admin/views/Galleries.php:446
    712 #: filemanager/view.php:213
     706#: admin/views/Albums.php:248 admin/views/Albums.php:342
     707#: admin/views/Galleries.php:301 filemanager/view.php:216
    713708msgid "Add"
    714709msgstr ""
    715710
    716 #: admin/views/Albums.php:214
     711#: admin/views/Albums.php:253
    717712msgid ""
    718713"Add a preview image, which will be displayed as the cover image of the "
     
    720715msgstr ""
    721716
    722 #: admin/views/Albums.php:218 admin/views/Galleries.php:255
     717#: admin/views/Albums.php:257 admin/views/Galleries.php:311
    723718msgid "Published"
    724719msgstr ""
    725720
    726 #: admin/views/Albums.php:220 admin/views/Galleries.php:257
    727 #: admin/views/Options.php:134 admin/views/Options.php:175
    728 #: admin/views/Options.php:185 admin/views/Options.php:195
    729 #: admin/views/Options.php:214 admin/views/Options.php:224
    730 #: admin/views/Options.php:234 admin/views/Options.php:244
    731 #: admin/views/Options.php:256 admin/views/Options.php:267
    732 #: admin/views/Options.php:277 admin/views/Options.php:287
    733 #: admin/views/Options.php:297 admin/views/Options.php:307
    734 #: admin/views/Options.php:317 admin/views/Options.php:335
    735 #: admin/views/Options.php:341 admin/views/Options.php:628
    736 #: admin/views/Options.php:639 admin/views/Options.php:650
    737 #: admin/views/Options.php:1167 admin/views/Options.php:1193
    738 #: admin/views/Options.php:1203 admin/views/Options.php:1215
    739 #: admin/views/Options.php:1225 admin/views/Options.php:1246
    740 #: admin/views/Options.php:1256 admin/views/Options.php:1385
    741 #: admin/views/Options.php:1411 admin/views/Options.php:1421
    742 #: admin/views/Options.php:1433 admin/views/Options.php:1443
    743 #: admin/views/Options.php:1464 admin/views/Options.php:1475
    744 #: admin/views/Options.php:1485 admin/views/Options.php:1532
    745 #: admin/views/Options.php:1621 admin/views/Options.php:1647
    746 #: admin/views/Options.php:1657 admin/views/Options.php:1669
    747 #: admin/views/Options.php:1679 admin/views/Options.php:1699
    748 #: admin/views/Options.php:1709 admin/views/Options.php:1818
    749 #: admin/views/Options.php:1828 admin/views/Options.php:1838
    750 #: admin/views/Options.php:1860 admin/views/Options.php:1881
    751 #: admin/views/Options.php:1918 admin/views/Options.php:1928
    752 #: admin/views/Options.php:1965 admin/views/Options.php:1984
    753 #: admin/views/Options.php:2013 admin/views/Options.php:2022
    754 #: admin/views/Options.php:2058 admin/views/Options.php:2084
    755 #: admin/views/Options.php:2094 admin/views/Options.php:2106
    756 #: admin/views/Options.php:2116 admin/views/Options.php:2126
    757 #: admin/views/Options.php:2217 admin/views/Options.php:2243
    758 #: admin/views/Options.php:2253 admin/views/Options.php:2265
    759 #: admin/views/Options.php:2275 admin/views/Options.php:2285
    760 #: admin/views/Options.php:2296 admin/views/Options.php:2307
    761 #: admin/views/Options.php:2394 admin/views/Options.php:2417
    762 #: admin/views/Options.php:2428 admin/views/Options.php:2439
    763 #: admin/views/Options.php:2450 admin/views/Options.php:2461
    764 #: admin/views/Options.php:2601 admin/views/Options.php:2627
    765 #: admin/views/Options.php:2637 admin/views/Options.php:2649
    766 #: admin/views/Options.php:2659 admin/views/Options.php:2707
    767 #: admin/views/Options.php:2742 admin/views/Options.php:2752
    768 #: admin/views/Options.php:2901 admin/views/Options.php:2927
    769 #: admin/views/Options.php:2937 admin/views/Options.php:2949
    770 #: admin/views/Options.php:2959 admin/views/Options.php:2980
    771 #: admin/views/Options.php:3141 admin/views/Options.php:3167
    772 #: admin/views/Options.php:3177 admin/views/Options.php:3189
    773 #: admin/views/Options.php:3199 admin/views/Options.php:3209
    774 #: admin/views/Options.php:3246 admin/views/Options.php:3281
    775 #: admin/views/Options.php:3291 admin/views/Options.php:3345
    776 #: admin/views/Options.php:3356 admin/views/Options.php:3405
    777 #: admin/views/Options.php:3424 admin/views/Options.php:3460
    778 #: admin/views/Options.php:3483 admin/views/Options.php:3495
    779 #: admin/views/Options.php:3508 admin/views/Options.php:3519
    780 #: admin/views/Options.php:3530 admin/views/Options.php:3541
    781 #: admin/views/Options.php:3551 admin/views/Options.php:3561
    782 #: admin/views/Options.php:3581 admin/views/Options.php:3592
    783 #: admin/views/Options.php:3605 admin/views/Options.php:3615
    784 #: admin/views/Options.php:3625 admin/views/Options.php:3635
    785 #: admin/views/Options.php:3645 admin/views/Options.php:3666
    786 #: admin/views/Options.php:3677 admin/views/Options.php:3688
    787 #: admin/views/Options.php:3699 admin/views/Options.php:3713
    788 #: admin/views/Themes.php:221 admin/views/Themes.php:298
    789 #: admin/views/Themes.php:543 admin/views/Themes.php:607
    790 #: admin/views/Themes.php:865 admin/views/Themes.php:929
    791 #: admin/views/Themes.php:1920 admin/views/Themes.php:1998
    792 #: admin/views/Themes.php:2341 admin/views/Themes.php:2930
    793 #: admin/views/Themes.php:2994 admin/views/Themes.php:4702
    794 #: admin/views/Themes.php:4751 admin/views/Uninstall.php:77
     721#: admin/views/Albums.php:259 admin/views/Galleries.php:313
     722#: admin/views/Options.php:172 admin/views/Options.php:213
     723#: admin/views/Options.php:223 admin/views/Options.php:233
     724#: admin/views/Options.php:252 admin/views/Options.php:262
     725#: admin/views/Options.php:272 admin/views/Options.php:282
     726#: admin/views/Options.php:292 admin/views/Options.php:304
     727#: admin/views/Options.php:315 admin/views/Options.php:325
     728#: admin/views/Options.php:335 admin/views/Options.php:345
     729#: admin/views/Options.php:354 admin/views/Options.php:364
     730#: admin/views/Options.php:374 admin/views/Options.php:393
     731#: admin/views/Options.php:401 admin/views/Options.php:803
     732#: admin/views/Options.php:814 admin/views/Options.php:825
     733#: admin/views/Options.php:836 admin/views/Options.php:847
     734#: admin/views/Options.php:858 admin/views/Options.php:1394
     735#: admin/views/Options.php:1420 admin/views/Options.php:1430
     736#: admin/views/Options.php:1442 admin/views/Options.php:1452
     737#: admin/views/Options.php:1473 admin/views/Options.php:1483
     738#: admin/views/Options.php:1493 admin/views/Options.php:1620
     739#: admin/views/Options.php:1646 admin/views/Options.php:1656
     740#: admin/views/Options.php:1668 admin/views/Options.php:1678
     741#: admin/views/Options.php:1699 admin/views/Options.php:1710
     742#: admin/views/Options.php:1720 admin/views/Options.php:1767
     743#: admin/views/Options.php:1854 admin/views/Options.php:1880
     744#: admin/views/Options.php:1890 admin/views/Options.php:1902
     745#: admin/views/Options.php:1912 admin/views/Options.php:1932
     746#: admin/views/Options.php:1942 admin/views/Options.php:2049
     747#: admin/views/Options.php:2059 admin/views/Options.php:2069
     748#: admin/views/Options.php:2123 admin/views/Options.php:2160
     749#: admin/views/Options.php:2170 admin/views/Options.php:2207
     750#: admin/views/Options.php:2226 admin/views/Options.php:2255
     751#: admin/views/Options.php:2264 admin/views/Options.php:2298
     752#: admin/views/Options.php:2324 admin/views/Options.php:2334
     753#: admin/views/Options.php:2346 admin/views/Options.php:2356
     754#: admin/views/Options.php:2366 admin/views/Options.php:2455
     755#: admin/views/Options.php:2481 admin/views/Options.php:2491
     756#: admin/views/Options.php:2503 admin/views/Options.php:2513
     757#: admin/views/Options.php:2523 admin/views/Options.php:2534
     758#: admin/views/Options.php:2545 admin/views/Options.php:2630
     759#: admin/views/Options.php:2651 admin/views/Options.php:2662
     760#: admin/views/Options.php:2675 admin/views/Options.php:2686
     761#: admin/views/Options.php:2696 admin/views/Options.php:2707
     762#: admin/views/Options.php:2718 admin/views/Options.php:2857
     763#: admin/views/Options.php:2883 admin/views/Options.php:2893
     764#: admin/views/Options.php:2905 admin/views/Options.php:2915
     765#: admin/views/Options.php:2963 admin/views/Options.php:2995
     766#: admin/views/Options.php:3005 admin/views/Options.php:3153
     767#: admin/views/Options.php:3179 admin/views/Options.php:3189
     768#: admin/views/Options.php:3201 admin/views/Options.php:3211
     769#: admin/views/Options.php:3232 admin/views/Options.php:3392
     770#: admin/views/Options.php:3418 admin/views/Options.php:3428
     771#: admin/views/Options.php:3440 admin/views/Options.php:3450
     772#: admin/views/Options.php:3460 admin/views/Options.php:3497
     773#: admin/views/Options.php:3529 admin/views/Options.php:3539
     774#: admin/views/Options.php:3593 admin/views/Options.php:3604
     775#: admin/views/Options.php:3653 admin/views/Options.php:3672
     776#: admin/views/Options.php:3708 admin/views/Options.php:3731
     777#: admin/views/Options.php:3743 admin/views/Options.php:3756
     778#: admin/views/Options.php:3767 admin/views/Options.php:3779
     779#: admin/views/Options.php:3790 admin/views/Options.php:3800
     780#: admin/views/Options.php:3810 admin/views/Options.php:3830
     781#: admin/views/Options.php:3841 admin/views/Options.php:3852
     782#: admin/views/Options.php:3865 admin/views/Options.php:3875
     783#: admin/views/Options.php:3885 admin/views/Options.php:3895
     784#: admin/views/Options.php:3905 admin/views/Options.php:3926
     785#: admin/views/Options.php:3937 admin/views/Options.php:3948
     786#: admin/views/Options.php:3959 admin/views/Options.php:3973
     787#: admin/views/Themes.php:391 admin/views/Themes.php:468
     788#: admin/views/Themes.php:701 admin/views/Themes.php:765
     789#: admin/views/Themes.php:976 admin/views/Themes.php:1040
     790#: admin/views/Themes.php:1930 admin/views/Themes.php:2008
     791#: admin/views/Themes.php:2304 admin/views/Themes.php:2821
     792#: admin/views/Themes.php:2885 admin/views/Themes.php:4413
     793#: admin/views/Themes.php:4462 admin/views/Uninstall.php:77
    795794#: admin/views/WidgetSlideshow.php:114 admin/views/WidgetSlideshow.php:120
    796795#: admin/views/WidgetSlideshow.php:126 admin/views/WidgetTags.php:89
     
    799798msgstr ""
    800799
    801 #: admin/views/Albums.php:222 admin/views/Galleries.php:259
    802 #: admin/views/Options.php:135 admin/views/Options.php:176
    803 #: admin/views/Options.php:186 admin/views/Options.php:196
    804 #: admin/views/Options.php:215 admin/views/Options.php:225
    805 #: admin/views/Options.php:235 admin/views/Options.php:245
    806 #: admin/views/Options.php:257 admin/views/Options.php:268
    807 #: admin/views/Options.php:278 admin/views/Options.php:288
    808 #: admin/views/Options.php:298 admin/views/Options.php:308
    809 #: admin/views/Options.php:318 admin/views/Options.php:336
    810 #: admin/views/Options.php:342 admin/views/Options.php:629
    811 #: admin/views/Options.php:640 admin/views/Options.php:651
    812 #: admin/views/Options.php:1168 admin/views/Options.php:1194
    813 #: admin/views/Options.php:1204 admin/views/Options.php:1216
    814 #: admin/views/Options.php:1226 admin/views/Options.php:1247
    815 #: admin/views/Options.php:1257 admin/views/Options.php:1386
    816 #: admin/views/Options.php:1412 admin/views/Options.php:1422
    817 #: admin/views/Options.php:1434 admin/views/Options.php:1444
    818 #: admin/views/Options.php:1465 admin/views/Options.php:1476
    819 #: admin/views/Options.php:1486 admin/views/Options.php:1533
    820 #: admin/views/Options.php:1622 admin/views/Options.php:1648
    821 #: admin/views/Options.php:1658 admin/views/Options.php:1670
    822 #: admin/views/Options.php:1680 admin/views/Options.php:1700
    823 #: admin/views/Options.php:1710 admin/views/Options.php:1819
    824 #: admin/views/Options.php:1829 admin/views/Options.php:1839
    825 #: admin/views/Options.php:1861 admin/views/Options.php:1882
    826 #: admin/views/Options.php:1919 admin/views/Options.php:1929
    827 #: admin/views/Options.php:1966 admin/views/Options.php:1985
    828 #: admin/views/Options.php:2014 admin/views/Options.php:2023
    829 #: admin/views/Options.php:2059 admin/views/Options.php:2085
    830 #: admin/views/Options.php:2095 admin/views/Options.php:2107
    831 #: admin/views/Options.php:2117 admin/views/Options.php:2127
    832 #: admin/views/Options.php:2218 admin/views/Options.php:2244
    833 #: admin/views/Options.php:2254 admin/views/Options.php:2266
    834 #: admin/views/Options.php:2276 admin/views/Options.php:2286
    835 #: admin/views/Options.php:2297 admin/views/Options.php:2308
    836 #: admin/views/Options.php:2395 admin/views/Options.php:2418
    837 #: admin/views/Options.php:2429 admin/views/Options.php:2440
    838 #: admin/views/Options.php:2451 admin/views/Options.php:2462
    839 #: admin/views/Options.php:2525 admin/views/Options.php:2602
    840 #: admin/views/Options.php:2628 admin/views/Options.php:2638
    841 #: admin/views/Options.php:2650 admin/views/Options.php:2660
    842 #: admin/views/Options.php:2708 admin/views/Options.php:2743
    843 #: admin/views/Options.php:2753 admin/views/Options.php:2825
    844 #: admin/views/Options.php:2902 admin/views/Options.php:2928
    845 #: admin/views/Options.php:2938 admin/views/Options.php:2950
    846 #: admin/views/Options.php:2960 admin/views/Options.php:2981
    847 #: admin/views/Options.php:3065 admin/views/Options.php:3142
    848 #: admin/views/Options.php:3168 admin/views/Options.php:3178
    849 #: admin/views/Options.php:3190 admin/views/Options.php:3200
    850 #: admin/views/Options.php:3210 admin/views/Options.php:3247
    851 #: admin/views/Options.php:3282 admin/views/Options.php:3292
    852 #: admin/views/Options.php:3346 admin/views/Options.php:3357
    853 #: admin/views/Options.php:3406 admin/views/Options.php:3425
    854 #: admin/views/Options.php:3474 admin/views/Options.php:3484
    855 #: admin/views/Options.php:3498 admin/views/Options.php:3509
    856 #: admin/views/Options.php:3520 admin/views/Options.php:3531
    857 #: admin/views/Options.php:3542 admin/views/Options.php:3552
    858 #: admin/views/Options.php:3562 admin/views/Options.php:3582
    859 #: admin/views/Options.php:3593 admin/views/Options.php:3606
    860 #: admin/views/Options.php:3616 admin/views/Options.php:3626
    861 #: admin/views/Options.php:3636 admin/views/Options.php:3646
    862 #: admin/views/Options.php:3667 admin/views/Options.php:3678
    863 #: admin/views/Options.php:3689 admin/views/Options.php:3700
    864 #: admin/views/Options.php:3714 admin/views/Themes.php:223
    865 #: admin/views/Themes.php:300 admin/views/Themes.php:545
    866 #: admin/views/Themes.php:609 admin/views/Themes.php:867
    867 #: admin/views/Themes.php:931 admin/views/Themes.php:1922
    868 #: admin/views/Themes.php:2000 admin/views/Themes.php:2343
    869 #: admin/views/Themes.php:2932 admin/views/Themes.php:2996
    870 #: admin/views/Themes.php:4704 admin/views/Themes.php:4753
     800#: admin/views/Albums.php:261 admin/views/Galleries.php:315
     801#: admin/views/Options.php:173 admin/views/Options.php:214
     802#: admin/views/Options.php:224 admin/views/Options.php:234
     803#: admin/views/Options.php:253 admin/views/Options.php:263
     804#: admin/views/Options.php:273 admin/views/Options.php:283
     805#: admin/views/Options.php:293 admin/views/Options.php:305
     806#: admin/views/Options.php:316 admin/views/Options.php:326
     807#: admin/views/Options.php:336 admin/views/Options.php:346
     808#: admin/views/Options.php:355 admin/views/Options.php:365
     809#: admin/views/Options.php:375 admin/views/Options.php:394
     810#: admin/views/Options.php:402 admin/views/Options.php:804
     811#: admin/views/Options.php:815 admin/views/Options.php:826
     812#: admin/views/Options.php:837 admin/views/Options.php:848
     813#: admin/views/Options.php:859 admin/views/Options.php:1395
     814#: admin/views/Options.php:1421 admin/views/Options.php:1431
     815#: admin/views/Options.php:1443 admin/views/Options.php:1453
     816#: admin/views/Options.php:1474 admin/views/Options.php:1484
     817#: admin/views/Options.php:1494 admin/views/Options.php:1621
     818#: admin/views/Options.php:1647 admin/views/Options.php:1657
     819#: admin/views/Options.php:1669 admin/views/Options.php:1679
     820#: admin/views/Options.php:1700 admin/views/Options.php:1711
     821#: admin/views/Options.php:1721 admin/views/Options.php:1768
     822#: admin/views/Options.php:1855 admin/views/Options.php:1881
     823#: admin/views/Options.php:1891 admin/views/Options.php:1903
     824#: admin/views/Options.php:1913 admin/views/Options.php:1933
     825#: admin/views/Options.php:1943 admin/views/Options.php:2050
     826#: admin/views/Options.php:2060 admin/views/Options.php:2070
     827#: admin/views/Options.php:2124 admin/views/Options.php:2161
     828#: admin/views/Options.php:2171 admin/views/Options.php:2208
     829#: admin/views/Options.php:2227 admin/views/Options.php:2256
     830#: admin/views/Options.php:2265 admin/views/Options.php:2299
     831#: admin/views/Options.php:2325 admin/views/Options.php:2335
     832#: admin/views/Options.php:2347 admin/views/Options.php:2357
     833#: admin/views/Options.php:2367 admin/views/Options.php:2456
     834#: admin/views/Options.php:2482 admin/views/Options.php:2492
     835#: admin/views/Options.php:2504 admin/views/Options.php:2514
     836#: admin/views/Options.php:2524 admin/views/Options.php:2535
     837#: admin/views/Options.php:2546 admin/views/Options.php:2631
     838#: admin/views/Options.php:2652 admin/views/Options.php:2663
     839#: admin/views/Options.php:2676 admin/views/Options.php:2687
     840#: admin/views/Options.php:2697 admin/views/Options.php:2708
     841#: admin/views/Options.php:2719 admin/views/Options.php:2782
     842#: admin/views/Options.php:2858 admin/views/Options.php:2884
     843#: admin/views/Options.php:2894 admin/views/Options.php:2906
     844#: admin/views/Options.php:2916 admin/views/Options.php:2964
     845#: admin/views/Options.php:2996 admin/views/Options.php:3006
     846#: admin/views/Options.php:3078 admin/views/Options.php:3154
     847#: admin/views/Options.php:3180 admin/views/Options.php:3190
     848#: admin/views/Options.php:3202 admin/views/Options.php:3212
     849#: admin/views/Options.php:3233 admin/views/Options.php:3317
     850#: admin/views/Options.php:3393 admin/views/Options.php:3419
     851#: admin/views/Options.php:3429 admin/views/Options.php:3441
     852#: admin/views/Options.php:3451 admin/views/Options.php:3461
     853#: admin/views/Options.php:3498 admin/views/Options.php:3530
     854#: admin/views/Options.php:3540 admin/views/Options.php:3594
     855#: admin/views/Options.php:3605 admin/views/Options.php:3654
     856#: admin/views/Options.php:3673 admin/views/Options.php:3722
     857#: admin/views/Options.php:3732 admin/views/Options.php:3746
     858#: admin/views/Options.php:3757 admin/views/Options.php:3768
     859#: admin/views/Options.php:3780 admin/views/Options.php:3791
     860#: admin/views/Options.php:3801 admin/views/Options.php:3811
     861#: admin/views/Options.php:3831 admin/views/Options.php:3842
     862#: admin/views/Options.php:3853 admin/views/Options.php:3866
     863#: admin/views/Options.php:3876 admin/views/Options.php:3886
     864#: admin/views/Options.php:3896 admin/views/Options.php:3906
     865#: admin/views/Options.php:3927 admin/views/Options.php:3938
     866#: admin/views/Options.php:3949 admin/views/Options.php:3960
     867#: admin/views/Options.php:3974 admin/views/Themes.php:393
     868#: admin/views/Themes.php:470 admin/views/Themes.php:703
     869#: admin/views/Themes.php:767 admin/views/Themes.php:978
     870#: admin/views/Themes.php:1042 admin/views/Themes.php:1932
     871#: admin/views/Themes.php:2010 admin/views/Themes.php:2306
     872#: admin/views/Themes.php:2823 admin/views/Themes.php:2887
     873#: admin/views/Themes.php:4415 admin/views/Themes.php:4464
    871874#: admin/views/WidgetSlideshow.php:115 admin/views/WidgetSlideshow.php:121
    872875#: admin/views/WidgetSlideshow.php:127 admin/views/WidgetTags.php:90
     
    875878msgstr ""
    876879
    877 #: admin/views/Albums.php:237 admin/views/Galleries.php:274
    878 #: admin/views/Options.php:86 admin/views/Shortcode.php:293
     880#: admin/views/Albums.php:276 admin/views/Galleries.php:330
     881#: admin/views/Options.php:122 admin/views/Shortcode.php:374
    879882msgid "Advanced"
    880883msgstr ""
    881884
    882 #: admin/views/Albums.php:245 admin/views/Galleries.php:285
     885#: admin/views/Albums.php:287 admin/views/Galleries.php:341
    883886msgid "Slug"
    884887msgstr ""
    885888
    886 #: admin/views/Albums.php:250 admin/views/Galleries.php:290
    887 #: admin/views/Galleries.php:752 frontend/views/BWGViewGalleryBox.php:1127
     889#: admin/views/Albums.php:292 admin/views/Galleries.php:346
     890#: admin/views/Galleries.php:814 frontend/views/BWGViewGalleryBox.php:1152
    888891msgid "Description"
    889892msgstr ""
    890893
    891 #: admin/views/Albums.php:277
     894#: admin/views/Albums.php:323
    892895msgid "Galleries and Gallery Groups"
    893896msgstr ""
    894897
    895 #: admin/views/Albums.php:324 admin/views/Galleries.php:97
    896 #: admin/views/Galleries.php:694
     898#: admin/views/Albums.php:375 admin/views/Galleries.php:100
     899#: admin/views/Galleries.php:753
    897900msgid "Drag to re-order"
    898901msgstr ""
    899902
    900 #: admin/views/Albums.php:332
     903#: admin/views/Albums.php:385 admin/views/Options.php:732
    901904msgid "Remove"
    902905msgstr ""
    903906
    904 #: admin/views/Albumsgalleries.php:79 admin/views/Albumsgalleries.php:118
    905 #: admin/views/Galleries.php:714 admin/views/Options.php:1149
    906 #: admin/views/Options.php:1367 admin/views/Options.php:1603
    907 #: admin/views/Options.php:1800 admin/views/Options.php:2040
    908 #: admin/views/Options.php:2199 admin/views/Options.php:2376
    909 #: admin/views/Options.php:2583 admin/views/Options.php:2883
    910 #: admin/views/Options.php:3123
     907#: admin/views/Albumsgalleries.php:80 admin/views/Albumsgalleries.php:119
     908#: admin/views/Galleries.php:775
    911909msgid "Type"
    912910msgstr ""
    913911
    914 #: admin/views/Albumsgalleries.php:119 admin/views/Shortcode.php:60
    915 #: admin/views/Shortcode.php:264
    916 #, fuzzy
     912#: admin/views/Albumsgalleries.php:120 admin/views/Shortcode.php:64
     913#: admin/views/Shortcode.php:345
    917914#| msgid "Gallery is empty."
    918915msgid "Gallery group"
    919 msgstr "Gallery is empty."
    920 
    921 #: admin/views/Albumsgalleries.php:137
     916msgstr ""
     917
     918#: admin/views/Albumsgalleries.php:120 admin/views/Shortcode.php:61
     919#: admin/views/Shortcode.php:267 admin/views/Shortcode.php:345
     920#: admin/views/Widget.php:119
     921msgid "Gallery"
     922msgstr ""
     923
     924#: admin/views/Albumsgalleries.php:138
    922925msgid "Add to Gallery Group"
    923926msgstr ""
    924927
    925928#: admin/views/Comments.php:70 admin/views/Comments.php:118
    926 #: frontend/views/BWGViewGalleryBox.php:1000
     929#: frontend/views/BWGViewGalleryBox.php:1025
    927930msgid "Email"
    928 msgstr "Email"
     931msgstr ""
    929932
    930933#: admin/views/Comments.php:71 admin/views/Comments.php:121
    931 #: frontend/views/BWGViewGalleryBox.php:1005
     934#: frontend/views/BWGViewGalleryBox.php:1029
    932935msgid "Comment"
    933 msgstr "Comment"
     936msgstr ""
    934937
    935938#: 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
     939#: admin/views/Galleries.php:772 admin/views/Options.php:1375
     940#: admin/views/Options.php:1601 admin/views/Options.php:1835
     941#: admin/views/Options.php:2030 admin/views/Options.php:2279
     942#: admin/views/Options.php:2436 admin/views/Options.php:2611
     943#: admin/views/Options.php:2820 admin/views/Options.php:2838
     944#: admin/views/Options.php:3116 admin/views/Options.php:3134
     945#: admin/views/Options.php:3355 admin/views/Options.php:3373
     946#: admin/views/Ratings.php:60 admin/views/Ratings.php:92
     947#: frontend/views/view.php:519
    943948msgid "Date"
    944949msgstr ""
     
    960965msgstr ""
    961966
    962 #: admin/views/Editimage.php:321
     967#: admin/views/Editimage.php:322
    963968msgid "The thumbnail was successfully cropped."
    964969msgstr ""
    965970
    966 #: admin/views/Editimage.php:803
     971#: admin/views/Editimage.php:810
    967972msgid "Grayscale"
    968973msgstr ""
    969974
    970 #: admin/views/Editimage.php:807
     975#: admin/views/Editimage.php:814
    971976msgid "Negative"
    972977msgstr ""
    973978
    974 #: admin/views/Editimage.php:811
     979#: admin/views/Editimage.php:818
    975980msgid "Removal"
    976981msgstr ""
    977982
    978 #: admin/views/Editimage.php:815
     983#: admin/views/Editimage.php:822
    979984msgid "Sepia"
    980985msgstr ""
    981986
    982 #: admin/views/Editimage.php:819
     987#: admin/views/Editimage.php:826
    983988msgid "Slate"
    984989msgstr ""
    985990
    986 #: admin/views/Editimage.php:823
     991#: admin/views/Editimage.php:830
    987992msgid "Saturate"
    988993msgstr ""
    989994
    990 #: admin/views/Editimage.php:827 admin/views/Galleries.php:728
     995#: admin/views/Editimage.php:834 admin/views/Galleries.php:790
    991996msgid "Do you want to reset the image?"
    992997msgstr ""
    993998
    994 #: admin/views/Editimage.php:829
    995 #, fuzzy
     999#: admin/views/Editimage.php:836
    9961000#| msgid "Reset"
    9971001msgid "Reset image"
    998 msgstr "Reset"
    999 
    1000 #: admin/views/Editimage.php:855
     1002msgstr ""
     1003
     1004#: admin/views/Editimage.php:862
    10011005msgid "Brightness"
    10021006msgstr ""
    10031007
    1004 #: admin/views/Editimage.php:857 admin/views/Editimage.php:882
     1008#: admin/views/Editimage.php:864 admin/views/Editimage.php:889
    10051009msgid "Press for result"
    10061010msgstr ""
    10071011
    1008 #: admin/views/Editimage.php:880
     1012#: admin/views/Editimage.php:887
    10091013msgid "Contrast"
    10101014msgstr ""
    10111015
    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
     1016#: admin/views/Galleries.php:46
     1017#| msgid "Gallery is empty."
     1018msgid "Add new gallery"
     1019msgstr ""
     1020
     1021#: admin/views/Galleries.php:65 admin/views/Galleries.php:130
    10171022msgid "Images count"
    10181023msgstr ""
    10191024
    1020 #: admin/views/Galleries.php:200
    1021 #, fuzzy
     1025#: admin/views/Galleries.php:238
    10221026#| msgid "Gallery is empty."
    10231027msgid "Gallery title"
    1024 msgstr "Gallery is empty."
    1025 
    1026 #: admin/views/Galleries.php:252
     1028msgstr ""
     1029
     1030#: admin/views/Galleries.php:254
     1031msgid "Preview gallery in:"
     1032msgstr ""
     1033
     1034#: admin/views/Galleries.php:308
    10271035msgid ""
    10281036"Add a preview image, which will be displayed as the cover image of the "
     
    10301038msgstr ""
    10311039
    1032 #: admin/views/Galleries.php:316
     1040#: admin/views/Galleries.php:372
    10331041msgid "Gallery content type"
    10341042msgstr ""
    10351043
    1036 #: admin/views/Galleries.php:330
     1044#: admin/views/Galleries.php:386
    10371045msgid ""
    10381046"Select the type of gallery content. Mixed galleries can include all "
     
    10411049msgstr ""
    10421050
    1043 #: admin/views/Galleries.php:332
     1051#: admin/views/Galleries.php:388
    10441052msgid ""
    10451053"Gallery type cannot be changed, as it is not empty. If you would like to "
     
    10471055msgstr ""
    10481056
    1049 #: admin/views/Galleries.php:338
     1057#: admin/views/Galleries.php:394
    10501058msgid "Number of Instagram recent posts to add to gallery"
    10511059msgstr ""
    10521060
    1053 #: admin/views/Galleries.php:342
     1061#: admin/views/Galleries.php:398
    10541062msgid "Instagram embed type"
    10551063msgstr ""
    10561064
    1057 #: admin/views/Galleries.php:344 admin/views/Galleries.php:496
     1065#: admin/views/Galleries.php:400 admin/views/Galleries.php:551
    10581066msgid "Content"
    10591067msgstr ""
    10601068
    1061 #: admin/views/Galleries.php:346 admin/views/Galleries.php:498
     1069#: admin/views/Galleries.php:402 admin/views/Galleries.php:553
    10621070msgid "Whole post"
    10631071msgstr ""
    10641072
    1065 #: admin/views/Galleries.php:349
    1066 #, fuzzy
     1073#: admin/views/Galleries.php:405
    10671074#| msgid "Photo gallery plugin autoupdate interval."
    10681075msgid "Gallery autoupdate option"
    1069 msgstr "Photo gallery plugin autoupdate interval."
    1070 
    1071 #: admin/views/Galleries.php:351
     1076msgstr ""
     1077
     1078#: admin/views/Galleries.php:407
    10721079msgid "No update"
    10731080msgstr ""
    10741081
    1075 #: admin/views/Galleries.php:353
     1082#: admin/views/Galleries.php:409
    10761083msgid "Add new media, keep old ones published."
    10771084msgstr ""
    10781085
    1079 #: admin/views/Galleries.php:355
     1086#: admin/views/Galleries.php:411
    10801087msgid "Add new media, unpublish old ones."
    10811088msgstr ""
    10821089
    1083 #: admin/views/Galleries.php:358
     1090#: admin/views/Galleries.php:414
    10841091msgid "Add Instagram Gallery"
    10851092msgstr ""
    10861093
    1087 #: admin/views/Galleries.php:367
     1094#: admin/views/Galleries.php:423
    10881095msgid "Photo Gallery Facebook Integration"
    10891096msgstr ""
    10901097
    1091 #: admin/views/Galleries.php:368
     1098#: admin/views/Galleries.php:424
    10921099#, php-format
    10931100msgid "Please install %s add-on to use this feature."
    10941101msgstr ""
    10951102
    1096 #: admin/views/Galleries.php:395 admin/views/Galleries.php:396
     1103#: admin/views/Galleries.php:453 admin/views/Galleries.php:455
    10971104msgid "Add Images"
    10981105msgstr ""
    10991106
    1100 #: admin/views/Galleries.php:398
     1107#: admin/views/Galleries.php:457
    11011108msgid "Import from Media Library"
    11021109msgstr ""
    11031110
    1104 #: admin/views/Galleries.php:405 admin/views/Galleries.php:407
     1111#: admin/views/Galleries.php:464
    11051112msgid "Embed Media"
    11061113msgstr ""
    11071114
    1108 #: admin/views/Galleries.php:408 admin/views/Galleries.php:410
     1115#: admin/views/Galleries.php:465
    11091116msgid "Social Bulk Embed"
    11101117msgstr ""
    11111118
    1112 #: admin/views/Galleries.php:410 photo-gallery.php:108
    1113 msgid "This option is disabled in free version."
    1114 msgstr ""
    1115 
    1116 #: admin/views/Galleries.php:413
     1119#: admin/views/Galleries.php:465 photo-gallery.php:127
     1120msgid "This option is available in Premium version"
     1121msgstr ""
     1122
     1123#: admin/views/Galleries.php:468
    11171124msgid "Optimize Images"
    11181125msgstr ""
    11191126
    1120 #: admin/views/Galleries.php:429
     1127#: admin/views/Galleries.php:485
    11211128msgid "Enter YouTube, Vimeo, Instagram, Flickr or Dailymotion URL here."
    11221129msgstr ""
    11231130
    1124 #: admin/views/Galleries.php:430 admin/views/Galleries.php:466
     1131#: admin/views/Galleries.php:486 admin/views/Galleries.php:521
    11251132msgid "Add to gallery"
    11261133msgstr ""
    11271134
    1128 #: admin/views/Galleries.php:431 admin/views/Galleries.php:465
    1129 #: admin/views/Galleries.php:522 admin/views/Galleries.php:543
    1130 #: admin/views/Galleries.php:562 admin/views/Galleries.php:582
    1131 #: filemanager/view.php:218 filemanager/view.php:219 photo-gallery.php:1435
     1135#: admin/views/Galleries.php:487 admin/views/Galleries.php:520
     1136#: admin/views/Galleries.php:577 admin/views/Galleries.php:598
     1137#: admin/views/Galleries.php:617 admin/views/Galleries.php:637
     1138#: filemanager/view.php:221 filemanager/view.php:222 photo-gallery.php:1462
    11321139msgid "Cancel"
    11331140msgstr ""
    11341141
    1135 #: admin/views/Galleries.php:436
     1142#: admin/views/Galleries.php:492
    11361143msgid "<b>Youtube</b> URL example:"
    11371144msgstr ""
    11381145
    1139 #: admin/views/Galleries.php:440
     1146#: admin/views/Galleries.php:496
    11401147msgid "<b>Vimeo</b> URL example:"
    11411148msgstr ""
    11421149
    1143 #: admin/views/Galleries.php:444
     1150#: admin/views/Galleries.php:500
    11441151msgid "<b>Instagram</b> URL example:"
    11451152msgstr ""
    11461153
    1147 #: admin/views/Galleries.php:446
    1148 msgid "post"
    1149 msgstr ""
    1150 
    1151 #: admin/views/Galleries.php:446
    1152 msgid ""
    1153 "to the end of URL if you want to embed the whole Instagram post, not only "
    1154 "its content."
    1155 msgstr ""
    1156 
    1157 #: admin/views/Galleries.php:454
     1154#: admin/views/Galleries.php:509
    11581155msgid "<b>Flickr</b> URL example:"
    11591156msgstr ""
    11601157
    1161 #: admin/views/Galleries.php:458
     1158#: admin/views/Galleries.php:513
    11621159msgid "<b>Dailymotion</b> URL example:"
    11631160msgstr ""
    11641161
    1165 #: admin/views/Galleries.php:477
     1162#: admin/views/Galleries.php:532
    11661163msgid "username:"
    11671164msgstr ""
    11681165
    1169 #: admin/views/Galleries.php:485
     1166#: admin/views/Galleries.php:540
    11701167msgid "Number of Instagram recent posts to add to gallery:"
    11711168msgstr ""
    11721169
    1173 #: admin/views/Galleries.php:493
     1170#: admin/views/Galleries.php:548
    11741171msgid "embed type:"
    11751172msgstr ""
    11761173
    1177 #: admin/views/Galleries.php:512
     1174#: admin/views/Galleries.php:567
    11781175msgid "Resize images to: "
    11791176msgstr ""
    11801177
    1181 #: admin/views/Galleries.php:515
     1178#: admin/views/Galleries.php:570
    11821179msgid "The maximum size of resized image."
    11831180msgstr ""
    11841181
    1185 #: admin/views/Galleries.php:521 framework/WDWLibrary.php:2422
     1182#: admin/views/Galleries.php:576 framework/WDWLibrary.php:2646
    11861183msgid "Resize"
    11871184msgstr ""
    11881185
    1189 #: admin/views/Galleries.php:532
     1186#: admin/views/Galleries.php:587
    11901187msgid "Alt/Title: "
    11911188msgstr ""
    11921189
    1193 #: admin/views/Galleries.php:535
     1190#: admin/views/Galleries.php:590
    11941191msgid "Leave blank and click to \"Save changes\" to delete Alt/Titles."
    11951192msgstr ""
    11961193
    1197 #: admin/views/Galleries.php:542 admin/views/Galleries.php:561
    1198 #: admin/views/Galleries.php:581
     1194#: admin/views/Galleries.php:597 admin/views/Galleries.php:616
     1195#: admin/views/Galleries.php:636
    11991196msgid "Save changes"
    12001197msgstr ""
    12011198
    1202 #: admin/views/Galleries.php:551
     1199#: admin/views/Galleries.php:606
    12031200msgid "Redirect URL: "
    12041201msgstr ""
    12051202
    1206 #: admin/views/Galleries.php:554
     1203#: admin/views/Galleries.php:609
    12071204msgid "Leave blank and click to \"Save changes\" to delete Redirect URLs."
    12081205msgstr ""
    12091206
    1210 #: admin/views/Galleries.php:570
     1207#: admin/views/Galleries.php:625
    12111208msgid "Description: "
    12121209msgstr ""
    12131210
    1214 #: admin/views/Galleries.php:573
     1211#: admin/views/Galleries.php:628
    12151212msgid "Leave blank and click to \"Save changes\" to delete Descriptions."
    12161213msgstr ""
    12171214
    1218 #: admin/views/Galleries.php:599
    1219 #, fuzzy
     1215#: admin/views/Galleries.php:656
    12201216#| msgid "You have already rated."
    12211217msgid "You have unsaved changes."
    1222 msgstr "You have already rated."
    1223 
    1224 #: admin/views/Galleries.php:604
     1218msgstr ""
     1219
     1220#: admin/views/Galleries.php:661
    12251221msgid ""
    12261222"This sorting does not affect the published galleries. You can change the "
     
    12281224msgstr ""
    12291225
    1230 #: admin/views/Galleries.php:621 photo-gallery.php:616
    1231 #, fuzzy
     1226#: admin/views/Galleries.php:678 photo-gallery.php:643
    12321227#| msgid "Show comments"
    12331228msgid "Show order column"
    1234 msgstr "Show comments"
    1235 
    1236 #: admin/views/Galleries.php:623
     1229msgstr ""
     1230
     1231#: admin/views/Galleries.php:679
     1232msgid "Drag&Drop"
     1233msgstr ""
     1234
     1235#: admin/views/Galleries.php:680
    12371236msgid "Numerate"
    12381237msgstr ""
    12391238
    1240 #: admin/views/Galleries.php:629
    1241 #, fuzzy
     1239#: admin/views/Galleries.php:686
    12421240#| msgid "Order by: "
    12431241msgid "Ordering"
    1244 msgstr "Order by: "
    1245 
    1246 #: admin/views/Galleries.php:635 admin/views/Galleries.php:702
    1247 #: admin/views/Options.php:1147 admin/views/Options.php:1365
    1248 #: admin/views/Options.php:1601 admin/views/Options.php:1798
    1249 #: admin/views/Options.php:2038 admin/views/Options.php:2197
    1250 #: admin/views/Options.php:2374 admin/views/Options.php:2581
    1251 #: admin/views/Options.php:2881 admin/views/Options.php:3121
    1252 #: frontend/views/view.php:427
     1242msgstr ""
     1243
     1244#: admin/views/Galleries.php:692 admin/views/Galleries.php:761
     1245#: admin/views/Options.php:1376 admin/views/Options.php:1602
     1246#: admin/views/Options.php:1836 admin/views/Options.php:2031
     1247#: admin/views/Options.php:2280 admin/views/Options.php:2437
     1248#: admin/views/Options.php:2612 admin/views/Options.php:2839
     1249#: admin/views/Options.php:3135 admin/views/Options.php:3374
     1250#: frontend/views/view.php:522
    12531251msgid "Filename"
    1254 msgstr "Filename"
    1255 
    1256 #: admin/views/Galleries.php:640 admin/views/Options.php:681
    1257 #: admin/views/Options.php:834 admin/views/Ratings.php:57
    1258 #: admin/views/Ratings.php:74 admin/views/Shortcode.php:301
     1252msgstr ""
     1253
     1254#: admin/views/Galleries.php:697 admin/views/Options.php:886
     1255#: admin/views/Options.php:1046 admin/views/Ratings.php:57
     1256#: admin/views/Ratings.php:74 admin/views/Shortcode.php:383
    12591257#: admin/views/WidgetTags.php:84
    12601258msgid "Image"
    12611259msgstr ""
    12621260
    1263 #: admin/views/Galleries.php:712 admin/views/Options.php:1150
    1264 #: admin/views/Options.php:1368 admin/views/Options.php:1604
    1265 #: admin/views/Options.php:1801 admin/views/Options.php:2041
    1266 #: admin/views/Options.php:2200 admin/views/Options.php:2377
    1267 #: admin/views/Options.php:2584 admin/views/Options.php:2884
    1268 #: admin/views/Options.php:3124
     1261#: admin/views/Galleries.php:773
    12691262msgid "Resolution"
    12701263msgstr ""
    12711264
    1272 #: admin/views/Galleries.php:713 admin/views/Options.php:1148
    1273 #: admin/views/Options.php:1366 admin/views/Options.php:1602
    1274 #: admin/views/Options.php:1799 admin/views/Options.php:2039
    1275 #: admin/views/Options.php:2198 admin/views/Options.php:2375
    1276 #: admin/views/Options.php:2582 admin/views/Options.php:2882
    1277 #: admin/views/Options.php:3122 filemanager/view.php:151
    1278 #: frontend/views/view.php:430
     1265#: admin/views/Galleries.php:774 admin/views/Options.php:1377
     1266#: admin/views/Options.php:1603 admin/views/Options.php:1837
     1267#: admin/views/Options.php:2032 admin/views/Options.php:2281
     1268#: admin/views/Options.php:2438 admin/views/Options.php:2613
     1269#: admin/views/Options.php:2840 admin/views/Options.php:3136
     1270#: admin/views/Options.php:3375 filemanager/view.php:154
     1271#: frontend/views/view.php:525
    12791272msgid "Size"
    1280 msgstr "Size"
    1281 
    1282 #: admin/views/Galleries.php:726 admin/views/Galleries.php:727
    1283 #: admin/views/Options.php:157 admin/views/Options.php:957
    1284 #: admin/views/Options.php:960
     1273msgstr ""
     1274
     1275#: admin/views/Galleries.php:788 admin/views/Galleries.php:789
     1276#: admin/views/Options.php:195 admin/views/Options.php:1169
     1277#: admin/views/Options.php:1172
    12851278msgid "Image edit functionality is not supported by your web host."
    12861279msgstr ""
    12871280
    1288 #: admin/views/Galleries.php:727
     1281#: admin/views/Galleries.php:789
    12891282msgid "Crop Thumbnail"
    12901283msgstr ""
    12911284
    1292 #: admin/views/Galleries.php:728 admin/views/Themes.php:191
    1293 #: framework/WDWLibrary.php:350 framework/WDWLibrary.php:528
    1294 #: framework/WDWLibrary.php:2447 frontend/views/view.php:377
     1285#: admin/views/Galleries.php:790 admin/views/Options.php:63
     1286#: admin/views/Themes.php:361 framework/WDWLibrary.php:382
     1287#: framework/WDWLibrary.php:534 framework/WDWLibrary.php:2671
     1288#: frontend/views/view.php:469
    12951289msgid "Reset"
    1296 msgstr "Reset"
    1297 
    1298 #: admin/views/Galleries.php:748
     1290msgstr ""
     1291
     1292#: admin/views/Galleries.php:810
    12991293msgid "Alt/Title"
    13001294msgstr ""
    13011295
    1302 #: admin/views/Galleries.php:770
     1296#: admin/views/Galleries.php:832
    13031297msgid "Redirect URL"
    13041298msgstr ""
    13051299
    1306 #: admin/views/Galleries.php:774
     1300#: admin/views/Galleries.php:836
    13071301msgid "Options > General"
    13081302msgstr ""
    13091303
    1310 #: admin/views/Galleries.php:775
     1304#: admin/views/Galleries.php:837
    13111305#, php-format
    13121306msgid ""
     
    13151309msgstr ""
    13161310
    1317 #: admin/views/Galleries.php:793
     1311#: admin/views/Galleries.php:855
    13181312msgid "Remove tag"
    13191313msgstr ""
    13201314
    1321 #: admin/views/Galleries.php:803
     1315#: admin/views/Galleries.php:865
    13221316msgid "Add tag"
    13231317msgstr ""
     
    13341328
    13351329#: admin/views/LibSubscribe.php:20
    1336 #, fuzzy
    13371330#| msgid "This is not a valid email address."
    13381331msgid "Please enter a valid email."
    1339 msgstr "This is not a valid email address."
     1332msgstr ""
    13401333
    13411334#: admin/views/LibSubscribe.php:62
     
    13631356msgstr ""
    13641357
    1365 #: admin/views/Options.php:47 admin/views/Themes.php:181
    1366 msgid "Save"
    1367 msgstr ""
    1368 
    1369 #: admin/views/Options.php:53
    1370 msgid "Reset all options"
    1371 msgstr ""
    1372 
    1373 #: admin/views/Options.php:54 admin/views/Themes.php:186
     1358#: admin/views/Options.php:57
     1359msgid "Save options"
     1360msgstr ""
     1361
     1362#: admin/views/Options.php:64 admin/views/Themes.php:356
    13741363msgid "Do you want to reset to default?"
    13751364msgstr ""
    13761365
    1377 #: admin/views/Options.php:77
    1378 #, fuzzy
     1366#: admin/views/Options.php:98
    13791367#| msgid "Gallery is empty."
    1380 msgid "Gallery defaults"
    1381 msgstr "Gallery is empty."
    1382 
    1383 #: admin/views/Options.php:80
    1384 #, fuzzy
     1368msgid "Gallery views"
     1369msgstr ""
     1370
     1371#: admin/views/Options.php:104
    13851372#| msgid "Gallery is empty."
    1386 msgid "Gallery Group defaults"
    1387 msgstr "Gallery is empty."
    1388 
    1389 #: admin/views/Options.php:83
    1390 msgid "Lightbox defaults"
    1391 msgstr ""
    1392 
    1393 #: admin/views/Options.php:89 photo-gallery.php:1543
     1373msgid "Group of gallery views"
     1374msgstr ""
     1375
     1376#: admin/views/Options.php:116 photo-gallery.php:1572
    13941377msgid "Watermark"
    13951378msgstr ""
    13961379
    1397 #: admin/views/Options.php:109
     1380#: admin/views/Options.php:147
    13981381msgid "Images directory"
    13991382msgstr ""
    14001383
    1401 #: admin/views/Options.php:114
     1384#: admin/views/Options.php:152
    14021385msgid ""
    14031386"Provide the path of an existing folder inside the WordPress directory of "
     
    14061389msgstr ""
    14071390
    1408 #: admin/views/Options.php:122 admin/views/Options.php:3333
     1391#: admin/views/Options.php:160 admin/views/Options.php:3581
    14091392msgid "Image click action"
    14101393msgstr ""
    14111394
    1412 #: admin/views/Options.php:124 admin/views/Options.php:3335
     1395#: admin/views/Options.php:162 admin/views/Options.php:3583
    14131396msgid "Open lightbox"
    14141397msgstr ""
    14151398
    1416 #: admin/views/Options.php:125 admin/views/Options.php:3336
     1399#: admin/views/Options.php:163 admin/views/Options.php:3584
    14171400msgid "Redirect to url"
    14181401msgstr ""
    14191402
    1420 #: admin/views/Options.php:126 admin/views/Options.php:3337
     1403#: admin/views/Options.php:164 admin/views/Options.php:3585
    14211404msgid "Do Nothing"
    14221405msgstr ""
    14231406
    1424 #: admin/views/Options.php:128 admin/views/Options.php:3339
     1407#: admin/views/Options.php:166 admin/views/Options.php:3587
    14251408msgid "Select the action which runs after clicking on gallery thumbnails."
    14261409msgstr ""
    14271410
    1428 #: admin/views/Options.php:132 admin/views/Options.php:3343
     1411#: admin/views/Options.php:170 admin/views/Options.php:3591
    14291412msgid "Open in a new window"
    14301413msgstr ""
    14311414
    1432 #: admin/views/Options.php:142 admin/views/Options.php:2335
     1415#: admin/views/Options.php:180 admin/views/Options.php:2573
    14331416msgid "Image dimensions"
    14341417msgstr ""
    14351418
    1436 #: admin/views/Options.php:147
     1419#: admin/views/Options.php:185
    14371420msgid ""
    14381421"Specify the maximum dimensions of uploaded images (set 0 for original size)."
    14391422msgstr ""
    14401423
    1441 #: admin/views/Options.php:152
     1424#: admin/views/Options.php:190
    14421425msgid "Generated thumbnail dimensions"
    14431426msgstr ""
    14441427
    1445 #: admin/views/Options.php:157 photo-gallery.php:417
     1428#: admin/views/Options.php:195 photo-gallery.php:438
    14461429msgid "Recreate"
    14471430msgstr ""
    14481431
    1449 #: admin/views/Options.php:159
     1432#: admin/views/Options.php:197
    14501433msgid ""
    14511434"Specify the maximum dimensions of generated thumbnails. They must be larger "
     
    14531436msgstr ""
    14541437
    1455 #: admin/views/Options.php:164
     1438#: admin/views/Options.php:202
    14561439msgid "Image quality"
    14571440msgstr ""
    14581441
    1459 #: admin/views/Options.php:168
     1442#: admin/views/Options.php:206
    14601443msgid "Set the quality of gallery images. Provide a value from 0 to 100%."
    14611444msgstr ""
    14621445
    1463 #: admin/views/Options.php:173
     1446#: admin/views/Options.php:211
    14641447msgid "Resizable thumbnails"
    14651448msgstr ""
    14661449
    1467 #: admin/views/Options.php:178
     1450#: admin/views/Options.php:216
    14681451msgid ""
    14691452"Enable this option to allow resizing gallery thumbnails on smaller screens."
    14701453msgstr ""
    14711454
    1472 #: admin/views/Options.php:183
     1455#: admin/views/Options.php:221
    14731456msgid "Lazy load"
    14741457msgstr ""
    14751458
    1476 #: admin/views/Options.php:188
     1459#: admin/views/Options.php:226
    14771460msgid ""
    14781461"Enable this option to activate lazy loading for images and improve the "
     
    14801463msgstr ""
    14811464
    1482 #: admin/views/Options.php:193
     1465#: admin/views/Options.php:231
    14831466msgid "Preload images"
    14841467msgstr ""
    14851468
    1486 #: admin/views/Options.php:198
     1469#: admin/views/Options.php:236
    14871470msgid ""
    14881471"If this setting is enabled, Photo Gallery loads a specific number of images "
     
    14911474msgstr ""
    14921475
    1493 #: admin/views/Options.php:203
     1476#: admin/views/Options.php:241
    14941477msgid "Number of preloaded images"
    14951478msgstr ""
    14961479
    1497 #: admin/views/Options.php:207
     1480#: admin/views/Options.php:245
    14981481msgid "Specify the number of images to preload, e.g. 5 (set 0 for all)."
    14991482msgstr ""
    15001483
    1501 #: admin/views/Options.php:212
    1502 #, fuzzy
     1484#: admin/views/Options.php:250
    15031485#| msgid "Show comments"
    15041486msgid "Show custom posts"
    1505 msgstr "Show comments"
    1506 
    1507 #: admin/views/Options.php:217
     1487msgstr ""
     1488
     1489#: admin/views/Options.php:255
    15081490msgid ""
    15091491"Activate this setting to display Photo Gallery custom posts with new menu "
     
    15111493msgstr ""
    15121494
    1513 #: admin/views/Options.php:222
     1495#: admin/views/Options.php:260
    15141496msgid "Discourage Search Engine Visibility"
    15151497msgstr ""
    15161498
    1517 #: admin/views/Options.php:227
     1499#: admin/views/Options.php:265
    15181500msgid "Discourage search engines from indexing Photo Gallery custom posts."
    15191501msgstr ""
    15201502
    1521 #: admin/views/Options.php:232
    1522 #, fuzzy
     1503#: admin/views/Options.php:270
    15231504#| msgid "Show comments"
    15241505msgid "Show comments for custom posts"
    1525 msgstr "Show comments"
    1526 
    1527 #: admin/views/Options.php:237
     1506msgstr ""
     1507
     1508#: admin/views/Options.php:275
    15281509msgid ""
    15291510"Use this setting to show or hide comments under Photo Gallery custom posts."
    15301511msgstr ""
    15311512
    1532 #: admin/views/Options.php:242
     1513#: admin/views/Options.php:280
    15331514msgid "Use AND operator for tag filtering"
    15341515msgstr ""
    15351516
    1536 #: admin/views/Options.php:247
     1517#: admin/views/Options.php:285
    15371518msgid ""
    15381519"Enable this option to filter images with AND operator. In this case, the "
     
    15401521msgstr ""
    15411522
    1542 #: admin/views/Options.php:254
     1523#: admin/views/Options.php:290
     1524#| msgid "Hide rating"
     1525msgid "Enable GDPR compliance"
     1526msgstr ""
     1527
     1528#: admin/views/Options.php:295
     1529msgid "Enable this option to have General Data Protection Regulation."
     1530msgstr ""
     1531
     1532#: admin/views/Options.php:302
    15431533msgid "Save IP "
    15441534msgstr ""
    15451535
    1546 #: admin/views/Options.php:259
     1536#: admin/views/Options.php:307
    15471537msgid "Disable saving user IP address when rating the images."
    15481538msgstr ""
    15491539
    1550 #: admin/views/Options.php:265
     1540#: admin/views/Options.php:313
    15511541msgid "Right-click protection"
    15521542msgstr ""
    15531543
    1554 #: admin/views/Options.php:270
     1544#: admin/views/Options.php:318
    15551545msgid "Switch off right-click on your gallery images by enabling this setting."
    15561546msgstr ""
    15571547
    1558 #: admin/views/Options.php:275
     1548#: admin/views/Options.php:323
    15591549msgid "Include styles/scripts on gallery pages only"
    15601550msgstr ""
    15611551
    1562 #: admin/views/Options.php:280
     1552#: admin/views/Options.php:328
    15631553msgid ""
    15641554"If this option is enabled, CSS and Javascript files of Photo Gallery will "
     
    15661556msgstr ""
    15671557
    1568 #: admin/views/Options.php:285
    1569 #, fuzzy
     1558#: admin/views/Options.php:333
    15701559#| msgid "Show comments"
    15711560msgid "Enable Google fonts"
    1572 msgstr "Show comments"
    1573 
    1574 #: admin/views/Options.php:290
     1561msgstr ""
     1562
     1563#: admin/views/Options.php:338
    15751564msgid ""
    15761565"If this option is disabled, Google fonts will not be included in your pages."
    15771566msgstr ""
    15781567
    1579 #: admin/views/Options.php:295
    1580 #, fuzzy
     1568#: admin/views/Options.php:343
    15811569#| msgid "Hide info"
    15821570msgid "Enable HTML editor"
    1583 msgstr "Hide info"
    1584 
    1585 #: admin/views/Options.php:300
     1571msgstr ""
     1572
     1573#: admin/views/Options.php:348
    15861574msgid ""
    15871575"Description text boxes of Photo Gallery will use TinyMCE editor, in case "
     
    15891577msgstr ""
    15901578
    1591 #: admin/views/Options.php:305
     1579#: admin/views/Options.php:352
     1580msgid "Enable get parameter for image URL"
     1581msgstr ""
     1582
     1583#: admin/views/Options.php:357
     1584msgid ""
     1585"If this option is enabled, some IDs will be added after the image extension "
     1586"to enable CDN to serve those images."
     1587msgstr ""
     1588
     1589#: admin/views/Options.php:362
    15921590msgid "Enable href attribute"
    15931591msgstr ""
    15941592
    1595 #: admin/views/Options.php:310
     1593#: admin/views/Options.php:367
    15961594msgid "Disable this option only if Photo Gallery conflicts with your theme."
    15971595msgstr ""
    15981596
    1599 #: admin/views/Options.php:315
     1597#: admin/views/Options.php:372
    16001598msgid "Auto-fill metadata"
    16011599msgstr ""
    16021600
    1603 #: admin/views/Options.php:320
     1601#: admin/views/Options.php:377
    16041602msgid ""
    16051603"Enabling this option will let the plugin fill in meta descriptions of photos "
     
    16071605msgstr ""
    16081606
    1609 #: admin/views/Options.php:325 admin/views/Options.php:328
    1610 #: photo-gallery.php:491
     1607#: admin/views/Options.php:382 admin/views/Options.php:385
     1608#: photo-gallery.php:512
    16111609msgid "Generate Shortcode"
    16121610msgstr ""
    16131611
    1614 #: admin/views/Options.php:331
     1612#: admin/views/Options.php:388
    16151613msgid ""
    16161614"Generate or edit Photo Gallery shortcodes that are used to publish galleries "
     
    16181616msgstr ""
    16191617
    1620 #: admin/views/Options.php:334
     1618#: admin/views/Options.php:391
    16211619msgid "Enable dynamic URLs for galleries and gallery groups"
    16221620msgstr ""
    16231621
    1624 #: admin/views/Options.php:337
     1622#: admin/views/Options.php:396
    16251623msgid ""
    16261624"Enable this option to browse galleries and gallery groups, as well as search "
     
    16281626msgstr ""
    16291627
    1630 #: admin/views/Options.php:340
     1628#: admin/views/Options.php:399
    16311629msgid "Developer mode"
    16321630msgstr ""
    16331631
    1634 #: admin/views/Options.php:343
     1632#: admin/views/Options.php:404
    16351633msgid ""
    16361634"Do not use minified JS and CSS files. Enable this option if You need to "
     
    16381636msgstr ""
    16391637
    1640 #: admin/views/Options.php:354 photo-gallery.php:490
     1638#: admin/views/Options.php:415 photo-gallery.php:511
    16411639msgid "Uninstall"
    16421640msgstr ""
    16431641
    1644 #: admin/views/Options.php:357
     1642#: admin/views/Options.php:418
    16451643msgid ""
    16461644"Note, that uninstalling Photo Gallery will completely remove all galleries, "
     
    16491647msgstr ""
    16501648
    1651 #: admin/views/Options.php:430 admin/views/Options.php:487
    1652 #: admin/views/Shortcode.php:123 admin/views/Shortcode.php:160
    1653 msgid "View type"
    1654 msgstr ""
    1655 
    1656 #: admin/views/Options.php:447 admin/views/Options.php:504
    1657 #: admin/views/Shortcode.php:177
    1658 msgid "This view is not available in free version."
    1659 msgstr ""
    1660 
    1661 #: admin/views/Options.php:532
     1649#: admin/views/Options.php:558 admin/views/Options.php:656
     1650#: admin/views/Shortcode.php:252
     1651msgid "Visit demo page for this view"
     1652msgstr ""
     1653
     1654#: admin/views/Options.php:560 admin/views/Options.php:658
     1655#: admin/views/Shortcode.php:254
     1656msgid "UPGRADE to Premium"
     1657msgstr ""
     1658
     1659#: admin/views/Options.php:561 admin/views/Options.php:659
     1660#: admin/views/Shortcode.php:255
     1661msgid "view demo"
     1662msgstr ""
     1663
     1664#: admin/views/Options.php:690
    16621665msgid "Social"
    16631666msgstr ""
    16641667
    1665 #: admin/views/Options.php:538
    1666 #, fuzzy
     1668#: admin/views/Options.php:696
    16671669#| msgid "Photo gallery plugin autoupdate interval."
    16681670msgid "Gallery autoupdate interval"
    1669 msgstr "Photo gallery plugin autoupdate interval."
    1670 
    1671 #: admin/views/Options.php:541
     1671msgstr ""
     1672
     1673#: admin/views/Options.php:699
    16721674msgid "hour"
    16731675msgstr ""
    16741676
    1675 #: admin/views/Options.php:543
     1677#: admin/views/Options.php:701
    16761678msgid "min"
    16771679msgstr ""
    16781680
    1679 #: admin/views/Options.php:545
     1681#: admin/views/Options.php:703
    16801682msgid ""
    16811683"Set the interval when Instagram galleries will be updated, and will display "
     
    16831685msgstr ""
    16841686
    1685 #: admin/views/Options.php:551
     1687#: admin/views/Options.php:709
    16861688msgid "Instagram"
    16871689msgstr ""
    16881690
    1689 #: admin/views/Options.php:557
    1690 msgid ""
    1691 "Press this button to sign in to your Instagram account. In this case, access "
    1692 "token will be added automatically."
    1693 msgstr ""
    1694 
    1695 #: admin/views/Options.php:561
    1696 msgid "Sign in with Instagram"
    1697 msgstr ""
    1698 
    1699 #: admin/views/Options.php:563
     1691#: admin/views/Options.php:716
     1692msgid "Connect an Instagram Account"
     1693msgstr ""
     1694
     1695#: admin/views/Options.php:718
    17001696msgid ""
    17011697"Press this button to sign in to your Instagram account. This lets you "
     
    17031699msgstr ""
    17041700
    1705 #: admin/views/Options.php:566
    1706 msgid ""
    1707 "Press this button to sign out from your Instagram account. The access token "
    1708 "will reset."
    1709 msgstr ""
    1710 
    1711 #: admin/views/Options.php:568
     1701#: admin/views/Options.php:731
    17121702msgid ""
    17131703"Are you sure you want to reset access token, after resetting it you will "
     
    17151705msgstr ""
    17161706
    1717 #: admin/views/Options.php:570
    1718 msgid "Sign out from Instagram"
    1719 msgstr ""
    1720 
    1721 #: admin/views/Options.php:572
    1722 msgid "Press this button to sign out from your Instagram account."
    1723 msgstr ""
    1724 
    1725 #: admin/views/Options.php:600 admin/views/Options.php:606
     1707#: admin/views/Options.php:739
     1708msgid "User ID:"
     1709msgstr ""
     1710
     1711#: admin/views/Options.php:775 admin/views/Options.php:781
    17261712msgid "Roles"
    17271713msgstr ""
    17281714
    1729 #: admin/views/Options.php:618
     1715#: admin/views/Options.php:793
    17301716msgid ""
    17311717"Choose a WordPress user role which can add and edit galleries, images, "
    1732 "gallery groups and tags."
    1733 msgstr ""
    1734 
    1735 #: admin/views/Options.php:626
    1736 #, fuzzy
     1718"gallery groups, tags, themes and edit settings."
     1719msgstr ""
     1720
     1721#: admin/views/Options.php:801
    17371722#| msgid "Gallery is empty."
    17381723msgid "Gallery role restrictions"
    1739 msgstr "Gallery is empty."
    1740 
    1741 #: admin/views/Options.php:631
     1724msgstr ""
     1725
     1726#: admin/views/Options.php:806
    17421727msgid ""
    17431728"Enable this setting to restrict authors from modifying galleries created by "
     
    17451730msgstr ""
    17461731
    1747 #: admin/views/Options.php:637
    1748 #, fuzzy
     1732#: admin/views/Options.php:812
    17491733#| msgid "Gallery is empty."
    17501734msgid "Gallery group restrictions"
    1751 msgstr "Gallery is empty."
    1752 
    1753 #: admin/views/Options.php:642
     1735msgstr ""
     1736
     1737#: admin/views/Options.php:817
    17541738msgid ""
    17551739"Enabling this option will restrict authors from modifying galleries groups "
     
    17571741msgstr ""
    17581742
    1759 #: admin/views/Options.php:648
     1743#: admin/views/Options.php:823
    17601744msgid "Image role restrictions"
    17611745msgstr ""
    17621746
    1763 #: admin/views/Options.php:653
     1747#: admin/views/Options.php:828
    17641748msgid ""
    17651749"Enable this setting to restrict authors from modifying images added by other "
     
    17671751msgstr ""
    17681752
    1769 #: admin/views/Options.php:668 photo-gallery.php:1547 photo-gallery.php:1662
     1753#: admin/views/Options.php:834
     1754msgid "Tag permission"
     1755msgstr ""
     1756
     1757#: admin/views/Options.php:839
     1758msgid "Enable this setting to allow users to add/edit tags."
     1759msgstr ""
     1760
     1761#: admin/views/Options.php:845
     1762msgid "Theme permission"
     1763msgstr ""
     1764
     1765#: admin/views/Options.php:850
     1766msgid "Enable this setting to allow users to add/edit themes."
     1767msgstr ""
     1768
     1769#: admin/views/Options.php:856
     1770msgid "Global settings permission"
     1771msgstr ""
     1772
     1773#: admin/views/Options.php:861
     1774msgid "Enable this setting to allow users to edit global settings."
     1775msgstr ""
     1776
     1777#: admin/views/Options.php:876 photo-gallery.php:1576 photo-gallery.php:1691
    17701778msgid "Advertisement"
    17711779msgstr ""
    17721780
    1773 #: admin/views/Options.php:674 admin/views/Shortcode.php:298
     1781#: admin/views/Options.php:882 admin/views/Shortcode.php:379
    17741782msgid "Advertisement type"
    17751783msgstr ""
    17761784
    1777 #: admin/views/Options.php:679 admin/views/Options.php:832
    1778 #: admin/views/Shortcode.php:300 admin/views/Themes.php:4760
     1785#: admin/views/Options.php:885 admin/views/Options.php:1044
     1786#: admin/views/Shortcode.php:382 admin/views/Themes.php:4471
    17791787#: admin/views/WidgetTags.php:83
    17801788msgid "Text"
    17811789msgstr ""
    17821790
    1783 #: admin/views/Options.php:683 admin/views/Shortcode.php:302
     1791#: admin/views/Options.php:888 admin/views/Shortcode.php:385
    17841792msgid "Add Text or Image advertisement to your images with this option."
    17851793msgstr ""
    17861794
    1787 #: admin/views/Options.php:688 admin/views/Shortcode.php:315
     1795#: admin/views/Options.php:893 admin/views/Shortcode.php:398
    17881796msgid "Advertisement URL"
    17891797msgstr ""
    17901798
    1791 #: admin/views/Options.php:696 admin/views/Options.php:698
    1792 #: admin/views/Options.php:849 admin/views/Options.php:851
    1793 #, fuzzy
     1799#: admin/views/Options.php:906 admin/views/Options.php:908
     1800#: admin/views/Options.php:1061 admin/views/Options.php:1063
    17941801#| msgid "Reset"
    17951802msgid "Select Image"
    1796 msgstr "Reset"
    1797 
    1798 #: admin/views/Options.php:700 admin/views/Options.php:853
    1799 #: filemanager/view.php:246
    1800 #, fuzzy
     1803msgstr ""
     1804
     1805#: admin/views/Options.php:910 admin/views/Options.php:1065
     1806#: filemanager/view.php:249
    18011807#| msgid "More"
    18021808msgid "or"
    1803 msgstr "More"
    1804 
    1805 #: admin/views/Options.php:703 admin/views/Shortcode.php:317
     1809msgstr ""
     1810
     1811#: admin/views/Options.php:913 admin/views/Shortcode.php:400
    18061812msgid ""
    18071813"Provide the absolute URL of the image you would like to use as advertisement."
    18081814msgstr ""
    18091815
    1810 #: admin/views/Options.php:708 admin/views/Shortcode.php:322
     1816#: admin/views/Options.php:918 admin/views/Shortcode.php:405
    18111817msgid "Advertisement text"
    18121818msgstr ""
    18131819
    1814 #: admin/views/Options.php:712 admin/views/Shortcode.php:324
     1820#: admin/views/Options.php:922 admin/views/Shortcode.php:407
    18151821msgid "Write the text to add to images as advertisement."
    18161822msgstr ""
    18171823
    1818 #: admin/views/Options.php:717 admin/views/Shortcode.php:308
     1824#: admin/views/Options.php:927 admin/views/Shortcode.php:391
    18191825msgid "Advertisement link"
    18201826msgstr ""
    18211827
    1822 #: admin/views/Options.php:721 admin/views/Shortcode.php:310
     1828#: admin/views/Options.php:931 admin/views/Shortcode.php:393
    18231829msgid "Provide the link to be added to advertisement on images."
    18241830msgstr ""
    18251831
    1826 #: admin/views/Options.php:726 admin/views/Shortcode.php:362
     1832#: admin/views/Options.php:936 admin/views/Shortcode.php:447
    18271833msgid "Advertisement dimensions"
    18281834msgstr ""
    18291835
    1830 #: admin/views/Options.php:731 admin/views/Shortcode.php:367
     1836#: admin/views/Options.php:941 admin/views/Shortcode.php:452
    18311837msgid "Select the dimensions of the advertisement image."
    18321838msgstr ""
    18331839
    1834 #: admin/views/Options.php:736 admin/views/Shortcode.php:353
     1840#: admin/views/Options.php:946 admin/views/Shortcode.php:438
    18351841msgid "Advertisement font size"
    18361842msgstr ""
    18371843
    1838 #: admin/views/Options.php:740 admin/views/Shortcode.php:357
     1844#: admin/views/Options.php:950 admin/views/Shortcode.php:442
    18391845msgid "Specify the font size of the advertisement text."
    18401846msgstr ""
    18411847
    1842 #: admin/views/Options.php:745 admin/views/Shortcode.php:331
     1848#: admin/views/Options.php:955 admin/views/Shortcode.php:414
    18431849msgid "Advertisement font style"
    18441850msgstr ""
    18451851
    1846 #: admin/views/Options.php:760 admin/views/Shortcode.php:345
    1847 #: admin/views/Themes.php:408 admin/views/Themes.php:471
    1848 #: admin/views/Themes.php:704 admin/views/Themes.php:759
    1849 #: admin/views/Themes.php:793 admin/views/Themes.php:1028
    1850 #: admin/views/Themes.php:1090 admin/views/Themes.php:1474
    1851 #: admin/views/Themes.php:1535 admin/views/Themes.php:1760
    1852 #: admin/views/Themes.php:1848 admin/views/Themes.php:2106
    1853 #: admin/views/Themes.php:2168 admin/views/Themes.php:2223
    1854 #: admin/views/Themes.php:2559 admin/views/Themes.php:2716
    1855 #: admin/views/Themes.php:2797 admin/views/Themes.php:2857
    1856 #: admin/views/Themes.php:3095 admin/views/Themes.php:3150
    1857 #: admin/views/Themes.php:3205 admin/views/Themes.php:3341
    1858 #: admin/views/Themes.php:3510 admin/views/Themes.php:4157
    1859 #: admin/views/Themes.php:4299 admin/views/Themes.php:4348
    1860 #: admin/views/Themes.php:4424 admin/views/Themes.php:4608
    1861 #: admin/views/Themes.php:4993
     1852#: admin/views/Options.php:971 admin/views/Shortcode.php:429
     1853#: admin/views/Themes.php:305
    18621854msgid "Google fonts"
    18631855msgstr ""
    18641856
    1865 #: admin/views/Options.php:762 admin/views/Options.php:1144
    1866 #: admin/views/Options.php:1362 admin/views/Options.php:1598
    1867 #: admin/views/Options.php:1795 admin/views/Options.php:2035
    1868 #: admin/views/Options.php:2194 admin/views/Options.php:2371
    1869 #: admin/views/Options.php:2561 admin/views/Options.php:2578
    1870 #: admin/views/Options.php:2861 admin/views/Options.php:2878
    1871 #: admin/views/Options.php:3101 admin/views/Options.php:3118
    1872 #: admin/views/Shortcode.php:347 admin/views/Themes.php:81
    1873 #: admin/views/Themes.php:112 admin/views/Themes.php:410
    1874 #: admin/views/Themes.php:473 admin/views/Themes.php:706
    1875 #: admin/views/Themes.php:761 admin/views/Themes.php:795
    1876 #: admin/views/Themes.php:1030 admin/views/Themes.php:1092
    1877 #: admin/views/Themes.php:1476 admin/views/Themes.php:1537
    1878 #: admin/views/Themes.php:1762 admin/views/Themes.php:1850
    1879 #: admin/views/Themes.php:2108 admin/views/Themes.php:2170
    1880 #: admin/views/Themes.php:2225 admin/views/Themes.php:2561
    1881 #: admin/views/Themes.php:2718 admin/views/Themes.php:2799
    1882 #: admin/views/Themes.php:2859 admin/views/Themes.php:3097
    1883 #: admin/views/Themes.php:3152 admin/views/Themes.php:3207
    1884 #: admin/views/Themes.php:3343 admin/views/Themes.php:3512
    1885 #: admin/views/Themes.php:4159 admin/views/Themes.php:4301
    1886 #: admin/views/Themes.php:4350 admin/views/Themes.php:4426
    1887 #: admin/views/Themes.php:4610 admin/views/Themes.php:4995
     1857#: admin/views/Options.php:973 admin/views/Options.php:1373
     1858#: admin/views/Options.php:1599 admin/views/Options.php:1833
     1859#: admin/views/Options.php:2028 admin/views/Options.php:2277
     1860#: admin/views/Options.php:2434 admin/views/Options.php:2609
     1861#: admin/views/Options.php:2818 admin/views/Options.php:2836
     1862#: admin/views/Options.php:3114 admin/views/Options.php:3132
     1863#: admin/views/Options.php:3353 admin/views/Options.php:3371
     1864#: admin/views/Shortcode.php:431 admin/views/Themes.php:205
     1865#: admin/views/Themes.php:236 admin/views/Themes.php:307
    18881866msgid "Default"
    1889 msgstr "Default"
    1890 
    1891 #: admin/views/Options.php:764 admin/views/Shortcode.php:348
     1867msgstr ""
     1868
     1869#: admin/views/Options.php:976 admin/views/Shortcode.php:433
    18921870msgid "Select the font family of the advertisement text."
    18931871msgstr ""
    18941872
    1895 #: admin/views/Options.php:769 admin/views/Shortcode.php:372
     1873#: admin/views/Options.php:981 admin/views/Shortcode.php:457
    18961874msgid "Advertisement color"
    18971875msgstr ""
    18981876
    1899 #: admin/views/Options.php:773 admin/views/Shortcode.php:374
     1877#: admin/views/Options.php:985 admin/views/Shortcode.php:459
    19001878msgid "Choose the color for the advertisement text on images."
    19011879msgstr ""
    19021880
    1903 #: admin/views/Options.php:778 admin/views/Shortcode.php:381
     1881#: admin/views/Options.php:990 admin/views/Shortcode.php:466
    19041882msgid "Advertisement opacity"
    19051883msgstr ""
    19061884
    1907 #: admin/views/Options.php:782 admin/views/Shortcode.php:385
     1885#: admin/views/Options.php:994 admin/views/Shortcode.php:470
    19081886msgid ""
    19091887"Specify the opacity of the advertisement. The value must be between 0 to 100."
    19101888msgstr ""
    19111889
    1912 #: admin/views/Options.php:787 admin/views/Shortcode.php:390
     1890#: admin/views/Options.php:999 admin/views/Shortcode.php:475
    19131891msgid "Advertisement position"
    19141892msgstr ""
    19151893
    1916 #: admin/views/Options.php:810 admin/views/Shortcode.php:410
     1894#: admin/views/Options.php:1022 admin/views/Shortcode.php:495
    19171895msgid "Mark the position where the advertisement should appear on images."
    19181896msgstr ""
    19191897
    1920 #: admin/views/Options.php:827
     1898#: admin/views/Options.php:1039
    19211899msgid "Watermark type"
    19221900msgstr ""
    19231901
    1924 #: admin/views/Options.php:836
     1902#: admin/views/Options.php:1048
    19251903msgid "Add Text or Image watermark to your images with this option."
    19261904msgstr ""
    19271905
    1928 #: admin/views/Options.php:841
     1906#: admin/views/Options.php:1053
    19291907msgid "Watermark URL"
    19301908msgstr ""
    19311909
    1932 #: admin/views/Options.php:856
     1910#: admin/views/Options.php:1068
    19331911msgid ""
    19341912"Provide the absolute URL of the image you would like to use as watermark."
    19351913msgstr ""
    19361914
    1937 #: admin/views/Options.php:856
     1915#: admin/views/Options.php:1068
    19381916msgid "Only .png format is supported."
    19391917msgstr ""
    19401918
    1941 #: admin/views/Options.php:861
     1919#: admin/views/Options.php:1073
    19421920msgid "Watermark text"
    19431921msgstr ""
    19441922
    1945 #: admin/views/Options.php:865
     1923#: admin/views/Options.php:1077
    19461924msgid "Provide the text to add to images as watermark."
    19471925msgstr ""
    19481926
    1949 #: admin/views/Options.php:870
     1927#: admin/views/Options.php:1082
    19501928msgid "Watermark size"
    19511929msgstr ""
    19521930
    1953 #: admin/views/Options.php:874
     1931#: admin/views/Options.php:1086
    19541932msgid "Specify the size of watermark on images in percent."
    19551933msgstr ""
    19561934
    1957 #: admin/views/Options.php:879
     1935#: admin/views/Options.php:1091
    19581936msgid "Watermark font size"
    19591937msgstr ""
    19601938
    1961 #: admin/views/Options.php:883
     1939#: admin/views/Options.php:1095
    19621940msgid "Specify the font size of the watermark text."
    19631941msgstr ""
    19641942
    1965 #: admin/views/Options.php:888
     1943#: admin/views/Options.php:1100
    19661944msgid "Watermark font style"
    19671945msgstr ""
    19681946
    1969 #: admin/views/Options.php:912
     1947#: admin/views/Options.php:1124
    19701948msgid "Select the font family of the watermark text."
    19711949msgstr ""
    19721950
    1973 #: admin/views/Options.php:917
     1951#: admin/views/Options.php:1129
    19741952msgid "Watermark color"
    19751953msgstr ""
    19761954
    1977 #: admin/views/Options.php:921
     1955#: admin/views/Options.php:1133
    19781956msgid "Choose the color for the watermark text on images."
    19791957msgstr ""
    19801958
    1981 #: admin/views/Options.php:926
     1959#: admin/views/Options.php:1138
    19821960msgid "Watermark opacity"
    19831961msgstr ""
    19841962
    1985 #: admin/views/Options.php:930
     1963#: admin/views/Options.php:1142
    19861964msgid ""
    19871965"Specify the opacity of the watermark. The value must be between 0 to 100."
    19881966msgstr ""
    19891967
    1990 #: admin/views/Options.php:935
     1968#: admin/views/Options.php:1147
    19911969msgid "Watermark position"
    19921970msgstr ""
    19931971
    1994 #: admin/views/Options.php:956 framework/WDWLibrary.php:2442
     1972#: admin/views/Options.php:1168 framework/WDWLibrary.php:2666
    19951973msgid "Set watermark"
    19961974msgstr ""
    19971975
    1998 #: admin/views/Options.php:958
     1976#: admin/views/Options.php:1170
    19991977msgid "Set Watermark"
    20001978msgstr ""
    20011979
    2002 #: admin/views/Options.php:959
     1980#: admin/views/Options.php:1171
    20031981msgid "Reset watermark"
    20041982msgstr ""
    20051983
    2006 #: admin/views/Options.php:961
     1984#: admin/views/Options.php:1173
    20071985msgid "Reset Watermark"
    20081986msgstr ""
    20091987
    2010 #: admin/views/Options.php:963
     1988#: admin/views/Options.php:1175
    20111989msgid "Mark the position where the watermark should appear on images."
    20121990msgstr ""
    20131991
    2014 #: admin/views/Options.php:1087 admin/views/Options.php:2513
    2015 #: admin/views/Options.php:3053 admin/views/Shortcode.php:2152
     1992#: admin/views/Options.php:1316 admin/views/Options.php:2770
     1993#: admin/views/Options.php:3305 admin/views/Shortcode.php:2280
    20161994msgid "Thumbnail dimensions"
    20171995msgstr ""
    20181996
    2019 #: admin/views/Options.php:1092 admin/views/Options.php:2518
    2020 #: admin/views/Options.php:2818 admin/views/Options.php:3058
     1997#: admin/views/Options.php:1321 admin/views/Options.php:2775
     1998#: admin/views/Options.php:3071 admin/views/Options.php:3310
    20211999msgid ""
    20222000"The default dimensions of thumbnails which will display on published "
     
    20242002msgstr ""
    20252003
    2026 #: admin/views/Options.php:1097 admin/views/Options.php:1314
    2027 #: admin/views/Options.php:2504 admin/views/Options.php:2805
    2028 #: admin/views/Options.php:3044 admin/views/Shortcode.php:2154
     2004#: admin/views/Options.php:1326 admin/views/Options.php:1551
     2005#: admin/views/Options.php:2761 admin/views/Options.php:3058
     2006#: admin/views/Options.php:3296 admin/views/Shortcode.php:2282
    20292007msgid "Number of image columns"
    20302008msgstr ""
    20312009
    2032 #: admin/views/Options.php:1101 admin/views/Options.php:2508
    2033 #: admin/views/Options.php:2809 admin/views/Options.php:3048
     2010#: admin/views/Options.php:1330 admin/views/Options.php:2765
     2011#: admin/views/Options.php:3062 admin/views/Options.php:3300
    20342012msgid ""
    20352013"Set the maximum number of image columns in galleries. Note, that the parent "
     
    20372015msgstr ""
    20382016
    2039 #: admin/views/Options.php:1106 admin/views/Options.php:1324
    2040 #: admin/views/Options.php:1560 admin/views/Options.php:2154
    2041 #: admin/views/Options.php:2523 admin/views/Options.php:2823
    2042 #: admin/views/Options.php:3063
     2017#: admin/views/Options.php:1335 admin/views/Options.php:1561
     2018#: admin/views/Options.php:1795 admin/views/Options.php:2394
     2019#: admin/views/Options.php:2780 admin/views/Options.php:3076
     2020#: admin/views/Options.php:3315
    20432021msgid "Pagination"
    20442022msgstr ""
    20452023
    2046 #: admin/views/Options.php:1109 admin/views/Options.php:1327
    2047 #: admin/views/Options.php:1563 admin/views/Options.php:2157
    2048 #: admin/views/Options.php:2526 admin/views/Options.php:2826
    2049 #: admin/views/Options.php:3066
     2024#: admin/views/Options.php:1338 admin/views/Options.php:1564
     2025#: admin/views/Options.php:1798 admin/views/Options.php:2397
     2026#: admin/views/Options.php:2783 admin/views/Options.php:3079
     2027#: admin/views/Options.php:3318
    20502028msgid "Simple"
    20512029msgstr ""
    20522030
    2053 #: admin/views/Options.php:1110 admin/views/Options.php:1328
    2054 #: admin/views/Options.php:1564 admin/views/Options.php:2158
    2055 #: admin/views/Options.php:2527 admin/views/Options.php:2827
    2056 #: admin/views/Options.php:3067
    2057 #, fuzzy
     2031#: admin/views/Options.php:1339 admin/views/Options.php:1565
     2032#: admin/views/Options.php:1799 admin/views/Options.php:2398
     2033#: admin/views/Options.php:2784 admin/views/Options.php:3080
     2034#: admin/views/Options.php:3319
    20582035#| msgid "Load More..."
    20592036msgid "Load More"
    2060 msgstr "Load More..."
    2061 
    2062 #: admin/views/Options.php:1111 admin/views/Options.php:1329
    2063 #: admin/views/Options.php:1565 admin/views/Options.php:2159
    2064 #: admin/views/Options.php:2528 admin/views/Options.php:2828
    2065 #: admin/views/Options.php:3068
     2037msgstr ""
     2038
     2039#: admin/views/Options.php:1340 admin/views/Options.php:1566
     2040#: admin/views/Options.php:1800 admin/views/Options.php:2399
     2041#: admin/views/Options.php:2785 admin/views/Options.php:3081
     2042#: admin/views/Options.php:3320
    20662043msgid "Scroll Load"
    20672044msgstr ""
    20682045
    2069 #: admin/views/Options.php:1113 admin/views/Options.php:1331
    2070 #: admin/views/Options.php:1567 admin/views/Options.php:2161
    2071 #: admin/views/Options.php:2530 admin/views/Options.php:2830
    2072 #: admin/views/Options.php:3070
     2046#: admin/views/Options.php:1342 admin/views/Options.php:1568
     2047#: admin/views/Options.php:1802 admin/views/Options.php:2401
     2048#: admin/views/Options.php:2787 admin/views/Options.php:3083
     2049#: admin/views/Options.php:3322
    20732050msgid "This option removes all types of pagination from your galleries."
    20742051msgstr ""
    20752052
    2076 #: admin/views/Options.php:1114 admin/views/Options.php:1332
    2077 #: admin/views/Options.php:1568 admin/views/Options.php:2162
    2078 #: admin/views/Options.php:2531 admin/views/Options.php:2831
    2079 #: admin/views/Options.php:3071
     2053#: admin/views/Options.php:1343 admin/views/Options.php:1569
     2054#: admin/views/Options.php:1803 admin/views/Options.php:2402
     2055#: admin/views/Options.php:2788 admin/views/Options.php:3084
     2056#: admin/views/Options.php:3323
    20802057msgid ""
    20812058"Activating this option will add page numbers and next/previous buttons to "
     
    20832060msgstr ""
    20842061
    2085 #: admin/views/Options.php:1115 admin/views/Options.php:1333
    2086 #: admin/views/Options.php:1569 admin/views/Options.php:2163
    2087 #: admin/views/Options.php:2532 admin/views/Options.php:2832
    2088 #: admin/views/Options.php:3072
     2062#: admin/views/Options.php:1344 admin/views/Options.php:1570
     2063#: admin/views/Options.php:1804 admin/views/Options.php:2403
     2064#: admin/views/Options.php:2789 admin/views/Options.php:3085
     2065#: admin/views/Options.php:3324
    20892066msgid ""
    20902067"Adding a Load More button, you can let users display a new set of images "
     
    20922069msgstr ""
    20932070
    2094 #: admin/views/Options.php:1116 admin/views/Options.php:1334
    2095 #: admin/views/Options.php:1570 admin/views/Options.php:2164
    2096 #: admin/views/Options.php:2533 admin/views/Options.php:2833
    2097 #: admin/views/Options.php:3073
     2071#: admin/views/Options.php:1345 admin/views/Options.php:1571
     2072#: admin/views/Options.php:1805 admin/views/Options.php:2404
     2073#: admin/views/Options.php:2790 admin/views/Options.php:3086
     2074#: admin/views/Options.php:3325
    20982075msgid ""
    20992076"With this option, users can load new images of your galleries simply by "
     
    21012078msgstr ""
    21022079
    2103 #: admin/views/Options.php:1121 admin/views/Options.php:1339
    2104 #: admin/views/Options.php:1575 admin/views/Options.php:2170
    2105 #: admin/views/Options.php:2547 admin/views/Options.php:2847
    2106 #: admin/views/Options.php:3087
     2080#: admin/views/Options.php:1350 admin/views/Options.php:1576
     2081#: admin/views/Options.php:1810 admin/views/Options.php:2410
     2082#: admin/views/Options.php:2804 admin/views/Options.php:3100
     2083#: admin/views/Options.php:3339
    21072084msgid "Images per page"
    21082085msgstr ""
    21092086
    2110 #: admin/views/Options.php:1125 admin/views/Options.php:1343
    2111 #: admin/views/Options.php:1579 admin/views/Options.php:2551
    2112 #: admin/views/Options.php:2851 admin/views/Options.php:3091
     2087#: admin/views/Options.php:1354 admin/views/Options.php:1580
     2088#: admin/views/Options.php:1814 admin/views/Options.php:2808
     2089#: admin/views/Options.php:3104 admin/views/Options.php:3343
    21132090msgid ""
    21142091"Specify the number of images to display per page on galleries. Setting this "
     
    21162093msgstr ""
    21172094
    2118 #: admin/views/Options.php:1130 admin/views/Options.php:1348
    2119 #: admin/views/Options.php:1584 admin/views/Options.php:2180
     2095#: admin/views/Options.php:1359 admin/views/Options.php:1585
     2096#: admin/views/Options.php:1819 admin/views/Options.php:2420
    21202097msgid "Images per load"
    21212098msgstr ""
    21222099
    2123 #: admin/views/Options.php:1134 admin/views/Options.php:1352
    2124 #: admin/views/Options.php:1588 admin/views/Options.php:2184
     2100#: admin/views/Options.php:1363 admin/views/Options.php:1589
     2101#: admin/views/Options.php:1823 admin/views/Options.php:2424
    21252102msgid "Specify the number of images to display per load on galleries."
    21262103msgstr ""
    21272104
    2128 #: admin/views/Options.php:1142 admin/views/Options.php:1359
    2129 #: admin/views/Options.php:1595 admin/views/Options.php:1792
    2130 #: admin/views/Options.php:2032 admin/views/Options.php:2191
    2131 #: admin/views/Options.php:2368
    2132 #, fuzzy
     2105#: admin/views/Options.php:1371 admin/views/Options.php:1596
     2106#: admin/views/Options.php:1830 admin/views/Options.php:2025
     2107#: admin/views/Options.php:2274 admin/views/Options.php:2431
     2108#: admin/views/Options.php:2606
    21332109#| msgid "Order by: "
    21342110msgid "Order by"
    2135 msgstr "Order by: "
    2136 
    2137 #: admin/views/Options.php:1156 admin/views/Options.php:1374
    2138 #: admin/views/Options.php:1610 admin/views/Options.php:1807
    2139 #: admin/views/Options.php:2047 admin/views/Options.php:2206
    2140 #: admin/views/Options.php:2383 admin/views/Options.php:2568
    2141 #: admin/views/Options.php:2590 admin/views/Options.php:2868
    2142 #: admin/views/Options.php:2890 admin/views/Options.php:3108
    2143 #: admin/views/Options.php:3130
     2111msgstr ""
     2112
     2113#: admin/views/Options.php:1383 admin/views/Options.php:1609
     2114#: admin/views/Options.php:1843 admin/views/Options.php:2038
     2115#: admin/views/Options.php:2287 admin/views/Options.php:2444
     2116#: admin/views/Options.php:2619 admin/views/Options.php:2826
     2117#: admin/views/Options.php:2846 admin/views/Options.php:3122
     2118#: admin/views/Options.php:3142 admin/views/Options.php:3361
     2119#: admin/views/Options.php:3381
    21442120msgid "Ascending"
    21452121msgstr ""
    21462122
    2147 #: admin/views/Options.php:1157 admin/views/Options.php:1375
    2148 #: admin/views/Options.php:1611 admin/views/Options.php:1808
    2149 #: admin/views/Options.php:2048 admin/views/Options.php:2207
    2150 #: admin/views/Options.php:2384 admin/views/Options.php:2569
    2151 #: admin/views/Options.php:2591 admin/views/Options.php:2869
    2152 #: admin/views/Options.php:2891 admin/views/Options.php:3109
    2153 #: admin/views/Options.php:3131
     2123#: admin/views/Options.php:1384 admin/views/Options.php:1610
     2124#: admin/views/Options.php:1844 admin/views/Options.php:2039
     2125#: admin/views/Options.php:2288 admin/views/Options.php:2445
     2126#: admin/views/Options.php:2620 admin/views/Options.php:2827
     2127#: admin/views/Options.php:2847 admin/views/Options.php:3123
     2128#: admin/views/Options.php:3143 admin/views/Options.php:3362
     2129#: admin/views/Options.php:3382
    21542130msgid "Descending"
    21552131msgstr ""
    21562132
    2157 #: admin/views/Options.php:1160 admin/views/Options.php:1378
    2158 #: admin/views/Options.php:1614 admin/views/Options.php:1811
    2159 #: admin/views/Options.php:2051 admin/views/Options.php:2210
    2160 #: admin/views/Options.php:2387 admin/views/Options.php:2594
    2161 #: admin/views/Options.php:2894 admin/views/Options.php:3134
     2133#: admin/views/Options.php:1387 admin/views/Options.php:1613
     2134#: admin/views/Options.php:1847 admin/views/Options.php:2042
     2135#: admin/views/Options.php:2291 admin/views/Options.php:2448
     2136#: admin/views/Options.php:2623 admin/views/Options.php:2850
     2137#: admin/views/Options.php:3146 admin/views/Options.php:3385
    21622138msgid ""
    21632139"Select the parameter and order direction to sort the gallery images with. E."
     
    21652141msgstr ""
    21662142
    2167 #: admin/views/Options.php:1165 admin/views/Options.php:1383
    2168 #: admin/views/Options.php:1619 admin/views/Options.php:2056
    2169 #: admin/views/Options.php:2215 admin/views/Options.php:2599
    2170 #: admin/views/Options.php:2899 admin/views/Options.php:3139
     2143#: admin/views/Options.php:1392 admin/views/Options.php:1618
     2144#: admin/views/Options.php:1852 admin/views/Options.php:2296
     2145#: admin/views/Options.php:2453 admin/views/Options.php:2855
     2146#: admin/views/Options.php:3151 admin/views/Options.php:3390
    21712147msgid "Show search box"
    21722148msgstr ""
    21732149
    2174 #: admin/views/Options.php:1170 admin/views/Options.php:1388
    2175 #: admin/views/Options.php:1624 admin/views/Options.php:2061
    2176 #: admin/views/Options.php:2220 admin/views/Options.php:2604
    2177 #: admin/views/Options.php:2904 admin/views/Options.php:3144
     2150#: admin/views/Options.php:1397 admin/views/Options.php:1623
     2151#: admin/views/Options.php:1857 admin/views/Options.php:2301
     2152#: admin/views/Options.php:2458 admin/views/Options.php:2860
     2153#: admin/views/Options.php:3156 admin/views/Options.php:3395
    21782154msgid ""
    21792155"Enable this option to display a search box with your gallery or gallery "
     
    21812157msgstr ""
    21822158
    2183 #: admin/views/Options.php:1175 admin/views/Options.php:1393
    2184 #: admin/views/Options.php:1629 admin/views/Options.php:2066
    2185 #: admin/views/Options.php:2225 admin/views/Options.php:2609
    2186 #: admin/views/Options.php:2909 admin/views/Options.php:3149
     2159#: admin/views/Options.php:1402 admin/views/Options.php:1628
     2160#: admin/views/Options.php:1862 admin/views/Options.php:2306
     2161#: admin/views/Options.php:2463 admin/views/Options.php:2865
     2162#: admin/views/Options.php:3161 admin/views/Options.php:3400
    21872163msgid "Add placeholder to search"
    21882164msgstr ""
    21892165
    2190 #: admin/views/Options.php:1183 admin/views/Options.php:1401
    2191 #: admin/views/Options.php:1637 admin/views/Options.php:2074
    2192 #: admin/views/Options.php:2233 admin/views/Options.php:2617
    2193 #: admin/views/Options.php:2917 admin/views/Options.php:3157
     2166#: admin/views/Options.php:1410 admin/views/Options.php:1636
     2167#: admin/views/Options.php:1870 admin/views/Options.php:2314
     2168#: admin/views/Options.php:2471 admin/views/Options.php:2873
     2169#: admin/views/Options.php:3169 admin/views/Options.php:3408
    21942170msgid "Search box maximum width"
    21952171msgstr ""
    21962172
    2197 #: admin/views/Options.php:1191 admin/views/Options.php:1409
    2198 #: admin/views/Options.php:1645 admin/views/Options.php:2082
    2199 #: admin/views/Options.php:2241 admin/views/Options.php:2625
    2200 #: admin/views/Options.php:2925 admin/views/Options.php:3165
     2173#: admin/views/Options.php:1418 admin/views/Options.php:1644
     2174#: admin/views/Options.php:1878 admin/views/Options.php:2322
     2175#: admin/views/Options.php:2479 admin/views/Options.php:2881
     2176#: admin/views/Options.php:3177 admin/views/Options.php:3416
    22012177msgid "Show \"Order by\" dropdown list"
    22022178msgstr ""
    22032179
    2204 #: admin/views/Options.php:1196 admin/views/Options.php:1414
    2205 #: admin/views/Options.php:1650 admin/views/Options.php:2087
    2206 #: admin/views/Options.php:2246 admin/views/Options.php:2630
    2207 #: admin/views/Options.php:2930 admin/views/Options.php:3170
     2180#: admin/views/Options.php:1423 admin/views/Options.php:1649
     2181#: admin/views/Options.php:1883 admin/views/Options.php:2327
     2182#: admin/views/Options.php:2484 admin/views/Options.php:2886
     2183#: admin/views/Options.php:3182 admin/views/Options.php:3421
    22082184msgid ""
    22092185"Activate this dropdown box to let users browse your gallery images with "
     
    22112187msgstr ""
    22122188
    2213 #: admin/views/Options.php:1201 admin/views/Options.php:1419
    2214 #: admin/views/Options.php:1655 admin/views/Options.php:2092
    2215 #: admin/views/Options.php:2251 admin/views/Options.php:2635
    2216 #: admin/views/Options.php:2935 admin/views/Options.php:3175
    2217 #, fuzzy
     2189#: admin/views/Options.php:1428 admin/views/Options.php:1654
     2190#: admin/views/Options.php:1888 admin/views/Options.php:2332
     2191#: admin/views/Options.php:2489 admin/views/Options.php:2891
     2192#: admin/views/Options.php:3187 admin/views/Options.php:3426
    22182193#| msgid "Show rating"
    22192194msgid "Show tag box"
    2220 msgstr "Show rating"
    2221 
    2222 #: admin/views/Options.php:1206 admin/views/Options.php:1424
    2223 #: admin/views/Options.php:1660 admin/views/Options.php:2097
    2224 #: admin/views/Options.php:2256 admin/views/Options.php:2640
    2225 #: admin/views/Options.php:2940 admin/views/Options.php:3180
     2195msgstr ""
     2196
     2197#: admin/views/Options.php:1433 admin/views/Options.php:1659
     2198#: admin/views/Options.php:1893 admin/views/Options.php:2337
     2199#: admin/views/Options.php:2494 admin/views/Options.php:2896
     2200#: admin/views/Options.php:3192 admin/views/Options.php:3431
    22262201msgid ""
    22272202"Enable Tag Box to allow users to filter the gallery images by their tags."
    22282203msgstr ""
    22292204
    2230 #: admin/views/Options.php:1213 admin/views/Options.php:1431
    2231 #: admin/views/Options.php:1667 admin/views/Options.php:2104
    2232 #: admin/views/Options.php:2263 admin/views/Options.php:2667
     2205#: admin/views/Options.php:1440 admin/views/Options.php:1666
     2206#: admin/views/Options.php:1900 admin/views/Options.php:2344
     2207#: admin/views/Options.php:2501 admin/views/Options.php:2673
     2208#: admin/views/Options.php:2923
    22332209msgid "Show gallery title"
    22342210msgstr ""
    22352211
    2236 #: admin/views/Options.php:1218 admin/views/Options.php:1436
    2237 #: admin/views/Options.php:1672 admin/views/Options.php:2109
    2238 #: admin/views/Options.php:2268
     2212#: admin/views/Options.php:1445 admin/views/Options.php:1671
     2213#: admin/views/Options.php:1905 admin/views/Options.php:2349
     2214#: admin/views/Options.php:2506 admin/views/Options.php:2678
    22392215msgid ""
    22402216"Allow users to see the titles of your galleries by enabling this setting."
    22412217msgstr ""
    22422218
    2243 #: admin/views/Options.php:1223 admin/views/Options.php:1441
    2244 #: admin/views/Options.php:1677 admin/views/Options.php:2114
    2245 #: admin/views/Options.php:2273
     2219#: admin/views/Options.php:1450 admin/views/Options.php:1676
     2220#: admin/views/Options.php:1910 admin/views/Options.php:2354
     2221#: admin/views/Options.php:2511 admin/views/Options.php:2684
    22462222msgid "Show gallery description"
    22472223msgstr ""
    22482224
    2249 #: admin/views/Options.php:1228 admin/views/Options.php:1446
    2250 #: admin/views/Options.php:1682 admin/views/Options.php:2119
    2251 #: admin/views/Options.php:2278
     2225#: admin/views/Options.php:1455 admin/views/Options.php:1681
     2226#: admin/views/Options.php:1915 admin/views/Options.php:2359
     2227#: admin/views/Options.php:2516 admin/views/Options.php:2689
    22522228msgid "Display the descriptions of your galleries by activating this option."
    22532229msgstr ""
    22542230
    2255 #: admin/views/Options.php:1233 admin/views/Options.php:1451
    2256 #: admin/views/Options.php:1687 admin/views/Options.php:1879
    2257 #: admin/views/Options.php:2011 admin/views/Options.php:2283
    2258 #: admin/views/Options.php:2415 admin/views/Options.php:2726
    2259 #: admin/views/Options.php:2967 admin/views/Options.php:3265
     2231#: admin/views/Options.php:1460 admin/views/Options.php:1686
     2232#: admin/views/Options.php:1920 admin/views/Options.php:2121
     2233#: admin/views/Options.php:2253 admin/views/Options.php:2521
     2234#: admin/views/Options.php:2694 admin/views/Options.php:2982
     2235#: admin/views/Options.php:3219 admin/views/Options.php:3516
    22602236msgid "Show image title"
    22612237msgstr ""
    22622238
    2263 #: admin/views/Options.php:1235 admin/views/Options.php:1275
    2264 #: admin/views/Options.php:1453 admin/views/Options.php:1504
    2265 #: admin/views/Options.php:1689 admin/views/Options.php:1728
    2266 #: admin/views/Options.php:2669 admin/views/Options.php:2729
    2267 #: admin/views/Options.php:2771 admin/views/Options.php:2969
    2268 #: admin/views/Options.php:2999 admin/views/Options.php:3268
    2269 #: admin/views/Options.php:3310
    2270 #, fuzzy
     2239#: admin/views/Options.php:1462 admin/views/Options.php:1512
     2240#: admin/views/Options.php:1688 admin/views/Options.php:1739
     2241#: admin/views/Options.php:1922 admin/views/Options.php:1961
     2242#: admin/views/Options.php:2925 admin/views/Options.php:2984
     2243#: admin/views/Options.php:3024 admin/views/Options.php:3221
     2244#: admin/views/Options.php:3251 admin/views/Options.php:3518
     2245#: admin/views/Options.php:3558
    22712246#| msgid "Show info"
    22722247msgid "Show on hover"
    2273 msgstr "Show info"
    2274 
    2275 #: admin/views/Options.php:1236 admin/views/Options.php:1276
    2276 #: admin/views/Options.php:1454 admin/views/Options.php:2670
    2277 #: admin/views/Options.php:2731 admin/views/Options.php:2772
    2278 #: admin/views/Options.php:2970 admin/views/Options.php:3270
    2279 #: admin/views/Options.php:3311
     2248msgstr ""
     2249
     2250#: admin/views/Options.php:1463 admin/views/Options.php:1513
     2251#: admin/views/Options.php:1689 admin/views/Options.php:2926
     2252#: admin/views/Options.php:2985 admin/views/Options.php:3025
     2253#: admin/views/Options.php:3222 admin/views/Options.php:3519
     2254#: admin/views/Options.php:3559
    22802255msgid "Always show"
    22812256msgstr ""
    22822257
    2283 #: admin/views/Options.php:1237 admin/views/Options.php:1277
    2284 #: admin/views/Options.php:1455 admin/views/Options.php:1505
    2285 #: admin/views/Options.php:1690 admin/views/Options.php:1729
    2286 #: admin/views/Options.php:2671 admin/views/Options.php:2733
    2287 #: admin/views/Options.php:2773 admin/views/Options.php:2971
    2288 #: admin/views/Options.php:3000 admin/views/Options.php:3272
    2289 #: admin/views/Options.php:3312
     2258#: admin/views/Options.php:1464 admin/views/Options.php:1514
     2259#: admin/views/Options.php:1690 admin/views/Options.php:1740
     2260#: admin/views/Options.php:1923 admin/views/Options.php:1962
     2261#: admin/views/Options.php:2927 admin/views/Options.php:2986
     2262#: admin/views/Options.php:3026 admin/views/Options.php:3223
     2263#: admin/views/Options.php:3252 admin/views/Options.php:3520
     2264#: admin/views/Options.php:3560
    22902265msgid "Don't show"
    22912266msgstr ""
    22922267
    2293 #: admin/views/Options.php:1239 admin/views/Options.php:1457
    2294 #: admin/views/Options.php:1692 admin/views/Options.php:2735
    2295 #: admin/views/Options.php:2973 admin/views/Options.php:3274
     2268#: admin/views/Options.php:1466 admin/views/Options.php:1692
     2269#: admin/views/Options.php:1925 admin/views/Options.php:2988
     2270#: admin/views/Options.php:3225 admin/views/Options.php:3522
    22962271msgid "Choose to show/hide titles of images, or display them on hover."
    22972272msgstr ""
    22982273
    2299 #: admin/views/Options.php:1244 admin/views/Options.php:1473
    2300 #: admin/views/Options.php:1697 admin/views/Options.php:2740
    2301 #: admin/views/Options.php:3279
     2274#: admin/views/Options.php:1471 admin/views/Options.php:1697
     2275#| msgid "Show comments"
     2276msgid "Show image descriptions"
     2277msgstr ""
     2278
     2279#: admin/views/Options.php:1476 admin/views/Options.php:1702
     2280msgid "Enable this setting to display descriptions under images."
     2281msgstr ""
     2282
     2283#: admin/views/Options.php:1481 admin/views/Options.php:1708
     2284#: admin/views/Options.php:1930 admin/views/Options.php:2993
     2285#: admin/views/Options.php:3527
    23022286msgid "Show Play icon on video thumbnails"
    23032287msgstr ""
    23042288
    2305 #: admin/views/Options.php:1249 admin/views/Options.php:1478
    2306 #: admin/views/Options.php:1702 admin/views/Options.php:2745
    2307 #: admin/views/Options.php:3284
     2289#: admin/views/Options.php:1486 admin/views/Options.php:1713
     2290#: admin/views/Options.php:1935 admin/views/Options.php:2998
     2291#: admin/views/Options.php:3532
    23082292msgid "Activate this option to add a Play button on thumbnails of videos."
    23092293msgstr ""
    23102294
    2311 #: admin/views/Options.php:1254 admin/views/Options.php:1483
    2312 #: admin/views/Options.php:1707 admin/views/Options.php:1982
    2313 #: admin/views/Options.php:2124 admin/views/Options.php:2305
    2314 #: admin/views/Options.php:2459 admin/views/Options.php:2750
    2315 #: admin/views/Options.php:2978 admin/views/Options.php:3289
     2295#: admin/views/Options.php:1491 admin/views/Options.php:1718
     2296#: admin/views/Options.php:1940 admin/views/Options.php:2224
     2297#: admin/views/Options.php:2364 admin/views/Options.php:2543
     2298#: admin/views/Options.php:2716 admin/views/Options.php:3003
     2299#: admin/views/Options.php:3230 admin/views/Options.php:3537
    23162300msgid "Enable bulk download button"
    23172301msgstr ""
    23182302
    2319 #: admin/views/Options.php:1259 admin/views/Options.php:1488
    2320 #: admin/views/Options.php:1712 admin/views/Options.php:1987
    2321 #: admin/views/Options.php:2129 admin/views/Options.php:2310
    2322 #: admin/views/Options.php:2464 admin/views/Options.php:2755
    2323 #: admin/views/Options.php:2983 admin/views/Options.php:3294
     2303#: admin/views/Options.php:1496 admin/views/Options.php:1723
     2304#: admin/views/Options.php:1945 admin/views/Options.php:2229
     2305#: admin/views/Options.php:2369 admin/views/Options.php:2548
     2306#: admin/views/Options.php:2721 admin/views/Options.php:3008
     2307#: admin/views/Options.php:3235 admin/views/Options.php:3542
    23242308msgid ""
    23252309"Activate this setting to let users download all images of your gallery with "
     
    23272311msgstr ""
    23282312
    2329 #: admin/views/Options.php:1263 admin/views/Options.php:1492
    2330 #: admin/views/Options.php:1716 admin/views/Options.php:1991
    2331 #: admin/views/Options.php:2133 admin/views/Options.php:2314
    2332 #: admin/views/Options.php:2468 admin/views/Options.php:2759
    2333 #: admin/views/Options.php:2987 admin/views/Options.php:3298
     2313#: admin/views/Options.php:1500 admin/views/Options.php:1727
     2314#: admin/views/Options.php:1949 admin/views/Options.php:2233
     2315#: admin/views/Options.php:2373 admin/views/Options.php:2552
     2316#: admin/views/Options.php:2725 admin/views/Options.php:3012
     2317#: admin/views/Options.php:3239 admin/views/Options.php:3546
    23342318msgid ""
    23352319"Photo Gallery Export will not work correctly, as ZipArchive PHP extension is "
     
    23382322msgstr ""
    23392323
    2340 #: admin/views/Options.php:1273 admin/views/Options.php:1502
    2341 #: admin/views/Options.php:1726 admin/views/Options.php:2769
    2342 #: admin/views/Options.php:2997 admin/views/Options.php:3308
    2343 #, fuzzy
     2324#: admin/views/Options.php:1510 admin/views/Options.php:1737
     2325#: admin/views/Options.php:1959 admin/views/Options.php:3022
     2326#: admin/views/Options.php:3249 admin/views/Options.php:3556
    23442327#| msgid "Show comments"
    23452328msgid "Show ecommerce icon"
    2346 msgstr "Show comments"
    2347 
    2348 #: admin/views/Options.php:1279 admin/views/Options.php:1507
    2349 #: admin/views/Options.php:1731 admin/views/Options.php:2775
    2350 #: admin/views/Options.php:3002 admin/views/Options.php:3314
     2329msgstr ""
     2330
     2331#: admin/views/Options.php:1516 admin/views/Options.php:1742
     2332#: admin/views/Options.php:1964 admin/views/Options.php:3028
     2333#: admin/views/Options.php:3254 admin/views/Options.php:3562
    23512334msgid "Choose to show/hide ecommerce icon, or display them on hover."
    23522335msgstr ""
    23532336
    2354 #: admin/views/Options.php:1305 admin/views/Options.php:1551
     2337#: admin/views/Options.php:1542 admin/views/Options.php:1786
    23552338msgid "Thumbnail size"
    23562339msgstr ""
    23572340
    2358 #: admin/views/Options.php:1309 admin/views/Options.php:1555
     2341#: admin/views/Options.php:1546 admin/views/Options.php:1790
    23592342msgid ""
    23602343"The default size of thumbnails which will display on published galleries."
    23612344msgstr ""
    23622345
    2363 #: admin/views/Options.php:1315 admin/views/Shortcode.php:2156
     2346#: admin/views/Options.php:1552 admin/views/Shortcode.php:2284
    23642347msgid "Number of image rows"
    23652348msgstr ""
    23662349
    2367 #: admin/views/Options.php:1319
     2350#: admin/views/Options.php:1556
    23682351msgid ""
    23692352"Set the maximum number of image columns (or rows) in galleries. Note, that "
     
    23712354msgstr ""
    23722355
    2373 #: admin/views/Options.php:1462
    2374 #, fuzzy
    2375 #| msgid "Show comments"
    2376 msgid "Show image descriptions"
    2377 msgstr "Show comments"
    2378 
    2379 #: admin/views/Options.php:1467
    2380 msgid "Enable this setting to display descriptions under images."
    2381 msgstr ""
    2382 
    2383 #: admin/views/Options.php:1519 admin/views/Options.php:2694
    2384 #: admin/views/Options.php:3233
    2385 #, fuzzy
     2356#: admin/views/Options.php:1754 admin/views/Options.php:2950
     2357#: admin/views/Options.php:3484
    23862358#| msgid "Gallery is empty."
    23872359msgid "Mosaic gallery type"
    2388 msgstr "Gallery is empty."
    2389 
    2390 #: admin/views/Options.php:1521 admin/views/Options.php:2696
    2391 #: admin/views/Options.php:3235
     2360msgstr ""
     2361
     2362#: admin/views/Options.php:1756 admin/views/Options.php:2952
     2363#: admin/views/Options.php:3486
    23922364msgid "Vertical"
    23932365msgstr ""
    23942366
    2395 #: admin/views/Options.php:1522 admin/views/Options.php:2697
    2396 #: admin/views/Options.php:3236
     2367#: admin/views/Options.php:1757 admin/views/Options.php:2953
     2368#: admin/views/Options.php:3487
    23972369msgid "Horizontal"
    23982370msgstr ""
    23992371
    2400 #: admin/views/Options.php:1524 admin/views/Options.php:2699
    2401 #: admin/views/Options.php:3238
     2372#: admin/views/Options.php:1759 admin/views/Options.php:2955
     2373#: admin/views/Options.php:3489
    24022374msgid "Select the type of Mosaic galleries, Vertical or Horizontal."
    24032375msgstr ""
    24042376
    2405 #: admin/views/Options.php:1530 admin/views/Options.php:2705
    2406 #: admin/views/Options.php:3244
     2377#: admin/views/Options.php:1765 admin/views/Options.php:2961
     2378#: admin/views/Options.php:3495
    24072379msgid "Resizable mosaic"
    24082380msgstr ""
    24092381
    2410 #: admin/views/Options.php:1535 admin/views/Options.php:2710
    2411 #: admin/views/Options.php:3249
     2382#: admin/views/Options.php:1770 admin/views/Options.php:2966
     2383#: admin/views/Options.php:3500
    24122384msgid ""
    24132385"If this setting is enabled, Photo Gallery resizes all thumbnail images on "
     
    24152387msgstr ""
    24162388
    2417 #: admin/views/Options.php:1541 admin/views/Options.php:2716
    2418 #: admin/views/Options.php:3255
     2389#: admin/views/Options.php:1776 admin/views/Options.php:2972
     2390#: admin/views/Options.php:3506
    24192391msgid "Width of mosaic galleries"
    24202392msgstr ""
    24212393
    2422 #: admin/views/Options.php:1545 admin/views/Options.php:2720
    2423 #: admin/views/Options.php:3259
     2394#: admin/views/Options.php:1780 admin/views/Options.php:2976
     2395#: admin/views/Options.php:3510
    24242396msgid ""
    24252397"The total width of mosaic galleries as a percentage of container's width."
    24262398msgstr ""
    24272399
    2428 #: admin/views/Options.php:1743
     2400#: admin/views/Options.php:1976
    24292401msgid "Slideshow effect"
    24302402msgstr ""
    24312403
    2432 #: admin/views/Options.php:1750 admin/views/Options.php:3381
     2404#: admin/views/Options.php:1983 admin/views/Options.php:3629
    24332405#: admin/views/WidgetSlideshow.php:105
    24342406msgid "This effect is disabled in free version."
    24352407msgstr ""
    24362408
    2437 #: admin/views/Options.php:1757
     2409#: admin/views/Options.php:1990
    24382410msgid "Select the animation effect for your slideshow."
    24392411msgstr ""
    24402412
    2441 #: admin/views/Options.php:1762 admin/views/Options.php:3393
     2413#: admin/views/Options.php:1995 admin/views/Options.php:3641
    24422414msgid "Effect duration"
    24432415msgstr ""
    24442416
    2445 #: admin/views/Options.php:1766
     2417#: admin/views/Options.php:1999
    24462418msgid "Set the duration of your slideshow animation effect."
    24472419msgstr ""
    24482420
    2449 #: admin/views/Options.php:1771 admin/views/Options.php:2403
    2450 #: admin/views/Options.php:3413
     2421#: admin/views/Options.php:2004 admin/views/Options.php:2639
     2422#: admin/views/Options.php:3661
    24512423msgid "Time interval"
    24522424msgstr ""
    24532425
    2454 #: admin/views/Options.php:1775
     2426#: admin/views/Options.php:2008
    24552427msgid ""
    24562428"Specify the time interval between slides in Photo Gallery's Slideshow view."
    24572429msgstr ""
    24582430
    2459 #: admin/views/Options.php:1780
     2431#: admin/views/Options.php:2013
    24602432msgid "Slideshow dimensions"
    24612433msgstr ""
    24622434
    2463 #: admin/views/Options.php:1785
     2435#: admin/views/Options.php:2018
    24642436msgid "Set the default dimensions of your slideshow galleries."
    24652437msgstr ""
    24662438
    2467 #: admin/views/Options.php:1816 admin/views/Options.php:2392
     2439#: admin/views/Options.php:2047 admin/views/Options.php:2628
    24682440msgid "Enable autoplay"
    24692441msgstr ""
    24702442
    2471 #: admin/views/Options.php:1821
     2443#: admin/views/Options.php:2052
    24722444msgid "Activate this option to autoplay slideshow galleries."
    24732445msgstr ""
    24742446
    2475 #: admin/views/Options.php:1826
     2447#: admin/views/Options.php:2057
    24762448msgid "Enable shuffle"
    24772449msgstr ""
    24782450
    2479 #: admin/views/Options.php:1831
     2451#: admin/views/Options.php:2062
    24802452msgid "The slideshow images will be shuffled in case this setting is enabled."
    24812453msgstr ""
    24822454
    2483 #: admin/views/Options.php:1836 admin/views/Options.php:3445
     2455#: admin/views/Options.php:2067 admin/views/Options.php:3693
    24842456msgid "Enable control buttons"
    24852457msgstr ""
    24862458
    2487 #: admin/views/Options.php:1841
     2459#: admin/views/Options.php:2072
    24882460msgid "Enable this option to show control buttons on your slideshow galleries."
    24892461msgstr ""
    24902462
    2491 #: admin/views/Options.php:1846 admin/views/Options.php:3569
     2463#: admin/views/Options.php:2077 admin/views/Options.php:3818
    24922464msgid "Show Next / Previous buttons"
    24932465msgstr ""
    24942466
    2495 #: admin/views/Options.php:1848 admin/views/Options.php:3571
     2467#: admin/views/Options.php:2079 admin/views/Options.php:3820
    24962468msgid "On hover"
    24972469msgstr ""
    24982470
    2499 #: admin/views/Options.php:1849 admin/views/Options.php:3572
     2471#: admin/views/Options.php:2080 admin/views/Options.php:3821
    25002472msgid "Always"
    25012473msgstr ""
    25022474
    2503 #: admin/views/Options.php:1851
     2475#: admin/views/Options.php:2082
    25042476msgid ""
    25052477"Display Next/Previous buttons on your slideshow galleries activating this "
     
    25072479msgstr ""
    25082480
    2509 #: admin/views/Options.php:1858
    2510 msgid "Enable slideshow filmstrip"
    2511 msgstr ""
    2512 
    2513 #: admin/views/Options.php:1863
    2514 msgid ""
    2515 "Add a filmstrip with image thumbnails to your slideshow galleries by "
    2516 "enabling this option."
    2517 msgstr ""
    2518 
    2519 #: admin/views/Options.php:1869
     2481#: admin/views/Options.php:2089
     2482msgid "Slideshow filmstrip type"
     2483msgstr ""
     2484
     2485#: admin/views/Options.php:2092
     2486msgid "Fix dimension"
     2487msgstr ""
     2488
     2489#: admin/views/Options.php:2093
     2490msgid "Fix count"
     2491msgstr ""
     2492
     2493#: admin/views/Options.php:2095
     2494msgid "Select the type for the slideshow filmstrip."
     2495msgstr ""
     2496
     2497#: admin/views/Options.php:2101
     2498msgid "Slideshow thumbnails count"
     2499msgstr ""
     2500
     2501#: admin/views/Options.php:2105
     2502msgid ""
     2503"Set the number of items that will be displayed in the filmstrip. This will "
     2504"also construct the width of the filmstrip."
     2505msgstr ""
     2506
     2507#: admin/views/Options.php:2111
    25202508msgid "Slideshow filmstrip size"
    25212509msgstr ""
    25222510
    2523 #: admin/views/Options.php:1873 admin/views/Options.php:3437
     2511#: admin/views/Options.php:2115 admin/views/Options.php:2126
     2512#: admin/views/Options.php:3685
    25242513msgid ""
    25252514"Set the size of your filmstrip. If the filmstrip is horizontal, this "
     
    25272516msgstr ""
    25282517
    2529 #: admin/views/Options.php:1884
    2530 msgid "Enable this setting to display titles of images in Slideshow view."
    2531 msgstr ""
    2532 
    2533 #: admin/views/Options.php:1889
     2518#: admin/views/Options.php:2131
    25342519msgid "Title position"
    25352520msgstr ""
    25362521
    2537 #: admin/views/Options.php:1911
     2522#: admin/views/Options.php:2153
    25382523msgid "Set the position of image titles in Slideshow view."
    25392524msgstr ""
    25402525
    2541 #: admin/views/Options.php:1916
     2526#: admin/views/Options.php:2158
    25422527msgid "Full width title"
    25432528msgstr ""
    25442529
    2545 #: admin/views/Options.php:1921
     2530#: admin/views/Options.php:2163
    25462531msgid "Display image title based on the slideshow dimensions."
    25472532msgstr ""
    25482533
    2549 #: admin/views/Options.php:1926 admin/views/Options.php:2020
    2550 #: admin/views/Options.php:2294
    2551 #, fuzzy
     2534#: admin/views/Options.php:2168 admin/views/Options.php:2262
     2535#: admin/views/Options.php:2532
    25522536#| msgid "Show comments"
    25532537msgid "Show image description"
    2554 msgstr "Show comments"
    2555 
    2556 #: admin/views/Options.php:1931
     2538msgstr ""
     2539
     2540#: admin/views/Options.php:2173
    25572541msgid "Enable this setting to show descriptions of images in Slideshow view."
    25582542msgstr ""
    25592543
    2560 #: admin/views/Options.php:1936
     2544#: admin/views/Options.php:2178
    25612545msgid "Description position"
    25622546msgstr ""
    25632547
    2564 #: admin/views/Options.php:1958
     2548#: admin/views/Options.php:2200
    25652549msgid "Set the position of image descriptions in Slideshow view."
    25662550msgstr ""
    25672551
    2568 #: admin/views/Options.php:1963
     2552#: admin/views/Options.php:2205
    25692553msgid "Enable slideshow Music"
    25702554msgstr ""
    25712555
    2572 #: admin/views/Options.php:1968
     2556#: admin/views/Options.php:2210
    25732557msgid ""
    25742558"Enabling this option, you can have music playing along with your slideshow."
    25752559msgstr ""
    25762560
    2577 #: admin/views/Options.php:1973
     2561#: admin/views/Options.php:2215
    25782562msgid "Audio URL"
    25792563msgstr ""
    25802564
    2581 #: admin/views/Options.php:1977
     2565#: admin/views/Options.php:2219
    25822566msgid ""
    25832567"Provide the absolute URL of the audio file you would like to play with your "
     
    25852569msgstr ""
    25862570
    2587 #: admin/views/Options.php:2002 admin/views/Options.php:2144
     2571#: admin/views/Options.php:2244 admin/views/Options.php:2384
    25882572msgid "Image width"
    25892573msgstr ""
    25902574
    2591 #: admin/views/Options.php:2006
     2575#: admin/views/Options.php:2248
    25922576msgid "Specify the default width of images in Image Browser view."
    25932577msgstr ""
    25942578
    2595 #: admin/views/Options.php:2025
     2579#: admin/views/Options.php:2267
    25962580msgid "Enable this setting to display titles of images in Image Browser view."
    25972581msgstr ""
    25982582
    2599 #: admin/views/Options.php:2148
     2583#: admin/views/Options.php:2388
    26002584msgid "Specify the default width of images in Blog Style view."
    26012585msgstr ""
    26022586
    2603 #: admin/views/Options.php:2174
     2587#: admin/views/Options.php:2414
    26042588msgid "Select the number of images displayed per page in Blog Style view."
    26052589msgstr ""
    26062590
    2607 #: admin/views/Options.php:2288
     2591#: admin/views/Options.php:2526
    26082592msgid "Enable this setting to display titles of images in Blog Style view."
    26092593msgstr ""
    26102594
    2611 #: admin/views/Options.php:2299
     2595#: admin/views/Options.php:2537
    26122596msgid "Enable this setting to show descriptions of images in Blog Style view."
    26132597msgstr ""
    26142598
    2615 #: admin/views/Options.php:2325
     2599#: admin/views/Options.php:2563
    26162600msgid "Max. number of images"
    26172601msgstr ""
    26182602
    2619 #: admin/views/Options.php:2329
     2603#: admin/views/Options.php:2567
    26202604msgid "Set the maximum number of images that are shown with Carousel display."
    26212605msgstr ""
    26222606
    2623 #: admin/views/Options.php:2340
     2607#: admin/views/Options.php:2578
    26242608msgid "Specify the dimensions of carousel images in pixels."
    26252609msgstr ""
    26262610
    2627 #: admin/views/Options.php:2346
     2611#: admin/views/Options.php:2584
    26282612msgid "Carousel ratio"
    26292613msgstr ""
    26302614
    2631 #: admin/views/Options.php:2350
     2615#: admin/views/Options.php:2588
    26322616msgid ""
    26332617"This option defines the proportion of dimensions between neighboring images "
     
    26352619msgstr ""
    26362620
    2637 #: admin/views/Options.php:2356
     2621#: admin/views/Options.php:2594
    26382622msgid "Fixed width"
    26392623msgstr ""
    26402624
    2641 #: admin/views/Options.php:2360
     2625#: admin/views/Options.php:2598
    26422626msgid "Specify the fixed width of Carousel gallery container."
    26432627msgstr ""
    26442628
    2645 #: admin/views/Options.php:2397
     2629#: admin/views/Options.php:2633
    26462630msgid "Activate this option to autoplay Carousel galleries."
    26472631msgstr ""
    26482632
    2649 #: admin/views/Options.php:2407
     2633#: admin/views/Options.php:2643
    26502634msgid ""
    26512635"Specify the time interval between rotations in Photo Gallery's Carousel view."
    26522636msgstr ""
    26532637
    2654 #: admin/views/Options.php:2420
     2638#: admin/views/Options.php:2649
     2639msgid "Container fit"
     2640msgstr ""
     2641
     2642#: admin/views/Options.php:2654
     2643msgid ""
     2644"Enabling this setting fits the images inside their container on Carousel "
     2645"galleries with fixed width."
     2646msgstr ""
     2647
     2648#: admin/views/Options.php:2660
     2649msgid "Next/Previous buttons"
     2650msgstr ""
     2651
     2652#: admin/views/Options.php:2665
     2653msgid ""
     2654"Enable this setting to display Next/Previous buttons on your galleries with "
     2655"Carousel view."
     2656msgstr ""
     2657
     2658#: admin/views/Options.php:2699
    26552659msgid ""
    26562660"Display image titles in Photo Gallery Carousel view by activating this "
     
    26582662msgstr ""
    26592663
    2660 #: admin/views/Options.php:2426
    2661 msgid "Container fit"
    2662 msgstr ""
    2663 
    2664 #: admin/views/Options.php:2431
    2665 msgid ""
    2666 "Enabling this setting fits the images inside their container on Carousel "
    2667 "galleries with fixed width."
    2668 msgstr ""
    2669 
    2670 #: admin/views/Options.php:2437
    2671 msgid "Next/Previous buttons"
    2672 msgstr ""
    2673 
    2674 #: admin/views/Options.php:2442
    2675 msgid ""
    2676 "Enable this setting to display Next/Previous buttons on your galleries with "
    2677 "Carousel view."
    2678 msgstr ""
    2679 
    2680 #: admin/views/Options.php:2448
     2664#: admin/views/Options.php:2705
    26812665msgid "Play/Pause buttons"
    26822666msgstr ""
    26832667
    2684 #: admin/views/Options.php:2453
     2668#: admin/views/Options.php:2710
    26852669msgid "Activate this to show Play/Pause buttons on your Carousel galleries."
    26862670msgstr ""
    26872671
    2688 #: admin/views/Options.php:2485 admin/views/Options.php:2787
     2672#: admin/views/Options.php:2742 admin/views/Options.php:3040
    26892673msgid "Number of gallery group columns"
    26902674msgstr ""
    26912675
    2692 #: admin/views/Options.php:2489 admin/views/Options.php:2791
     2676#: admin/views/Options.php:2746 admin/views/Options.php:3044
    26932677msgid ""
    26942678"Set the maximum number of columns in gallery groups. Note, that the parent "
     
    26962680msgstr ""
    26972681
    2698 #: admin/views/Options.php:2494 admin/views/Options.php:3034
     2682#: admin/views/Options.php:2751 admin/views/Options.php:3286
    26992683msgid "Gallery group thumbnail dimensions"
    27002684msgstr ""
    27012685
    2702 #: admin/views/Options.php:2499 admin/views/Options.php:2800
    2703 #: admin/views/Options.php:3039
     2686#: admin/views/Options.php:2756 admin/views/Options.php:3053
     2687#: admin/views/Options.php:3291
    27042688msgid "Specify the dimensions of thumbnails in gallery groups."
    27052689msgstr ""
    27062690
    2707 #: admin/views/Options.php:2538 admin/views/Options.php:2838
    2708 #: admin/views/Options.php:3078
    2709 #, fuzzy
     2691#: admin/views/Options.php:2795 admin/views/Options.php:3091
     2692#: admin/views/Options.php:3330
    27102693#| msgid "Gallery is empty."
    27112694msgid "Gallery groups per page"
    2712 msgstr "Gallery is empty."
    2713 
    2714 #: admin/views/Options.php:2542 admin/views/Options.php:2842
    2715 #: admin/views/Options.php:3082
     2695msgstr ""
     2696
     2697#: admin/views/Options.php:2799 admin/views/Options.php:3095
     2698#: admin/views/Options.php:3334
    27162699msgid ""
    27172700"Specify the number of galleries/gallery groups to display per page. Setting "
     
    27192702msgstr ""
    27202703
    2721 #: admin/views/Options.php:2558 admin/views/Options.php:2858
    2722 #: admin/views/Options.php:3098
    2723 #, fuzzy
     2704#: admin/views/Options.php:2815 admin/views/Options.php:3111
     2705#: admin/views/Options.php:3350
    27242706#| msgid "Gallery is empty."
    27252707msgid "Order Gallery group by"
    2726 msgstr "Gallery is empty."
    2727 
    2728 #: admin/views/Options.php:2572 admin/views/Options.php:2872
    2729 #: admin/views/Options.php:3112
     2708msgstr ""
     2709
     2710#: admin/views/Options.php:2830 admin/views/Options.php:3126
     2711#: admin/views/Options.php:3365
    27302712msgid ""
    27312713"Select the parameter and order direction to sort the gallery group images "
     
    27332715msgstr ""
    27342716
    2735 #: admin/views/Options.php:2575 admin/views/Options.php:2875
    2736 #: admin/views/Options.php:3116
    2737 #, fuzzy
     2717#: admin/views/Options.php:2833 admin/views/Options.php:3129
     2718#: admin/views/Options.php:3369
    27382719#| msgid "Order by: "
    27392720msgid "Order images by"
    2740 msgstr "Order by: "
    2741 
    2742 #: admin/views/Options.php:2647 admin/views/Options.php:2947
    2743 #: admin/views/Options.php:3187
     2721msgstr ""
     2722
     2723#: admin/views/Options.php:2903 admin/views/Options.php:3199
     2724#: admin/views/Options.php:3438
    27442725msgid "Show gallery group or gallery title"
    27452726msgstr ""
    27462727
    2747 #: admin/views/Options.php:2652 admin/views/Options.php:2952
    2748 #: admin/views/Options.php:3192
     2728#: admin/views/Options.php:2908 admin/views/Options.php:3204
     2729#: admin/views/Options.php:3443
    27492730msgid ""
    27502731"Display the title of displayed gallery or gallery group by enabling this "
     
    27522733msgstr ""
    27532734
    2754 #: admin/views/Options.php:2657 admin/views/Options.php:2957
    2755 #: admin/views/Options.php:3197
     2735#: admin/views/Options.php:2913 admin/views/Options.php:3209
     2736#: admin/views/Options.php:3448
    27562737msgid "Show gallery group or gallery description"
    27572738msgstr ""
    27582739
    2759 #: admin/views/Options.php:2662 admin/views/Options.php:2962
    2760 #: admin/views/Options.php:3202
     2740#: admin/views/Options.php:2918 admin/views/Options.php:3214
     2741#: admin/views/Options.php:3453
    27612742msgid ""
    27622743"Display the description of displayed gallery or gallery group by enabling "
     
    27642745msgstr ""
    27652746
    2766 #: admin/views/Options.php:2673
     2747#: admin/views/Options.php:2929
    27672748msgid ""
    27682749"Choose to show/hide titles of galleries/gallery groups, or display them on "
     
    27702751msgstr ""
    27712752
    2772 #: admin/views/Options.php:2678 admin/views/Options.php:3217
    2773 #, fuzzy
     2753#: admin/views/Options.php:2934 admin/views/Options.php:3468
    27742754#| msgid "Gallery is empty."
    27752755msgid "Gallery view type"
    2776 msgstr "Gallery is empty."
    2777 
    2778 #: admin/views/Options.php:2688 admin/views/Options.php:3227
     2756msgstr ""
     2757
     2758#: admin/views/Options.php:2944 admin/views/Options.php:3478
    27792759msgid ""
    27802760"Choose the display type for gallery groups, Thumbnails, Masonry, Mosaic, "
     
    27822762msgstr ""
    27832763
    2784 #: admin/views/Options.php:2796
    2785 #, fuzzy
     2764#: admin/views/Options.php:3049
    27862765#| msgid "Gallery is empty."
    27872766msgid "Gallery group thumbnail width"
    2788 msgstr "Gallery is empty."
    2789 
    2790 #: admin/views/Options.php:2814
     2767msgstr ""
     2768
     2769#: admin/views/Options.php:3067
    27912770msgid "Thumbnail width"
    27922771msgstr ""
    27932772
    2794 #: admin/views/Options.php:3014
     2773#: admin/views/Options.php:3266
    27952774msgid "Extended gallery group height"
    27962775msgstr ""
    27972776
    2798 #: admin/views/Options.php:3018
     2777#: admin/views/Options.php:3270
    27992778msgid "Set the height of blocks in Extended gallery groups."
    28002779msgstr ""
    28012780
    2802 #: admin/views/Options.php:3023
     2781#: admin/views/Options.php:3275
    28032782msgid "Number of columns"
    28042783msgstr ""
    28052784
    2806 #: admin/views/Options.php:3025
     2785#: admin/views/Options.php:3277
    28072786msgid "1 column"
    28082787msgstr ""
    28092788
    2810 #: admin/views/Options.php:3026
     2789#: admin/views/Options.php:3278
    28112790msgid "2 column"
    28122791msgstr ""
    28132792
    2814 #: admin/views/Options.php:3027
     2793#: admin/views/Options.php:3279
    28152794msgid "3 column"
    28162795msgstr ""
    28172796
    2818 #: admin/views/Options.php:3029
     2797#: admin/views/Options.php:3281
    28192798msgid "Set the maximum number of columns."
    28202799msgstr ""
    28212800
    2822 #: admin/views/Options.php:3207
     2801#: admin/views/Options.php:3458
    28232802msgid "Show extended gallery group description"
    28242803msgstr ""
    28252804
    2826 #: admin/views/Options.php:3212
     2805#: admin/views/Options.php:3463
    28272806msgid ""
    28282807"Enable this option to show descriptions of galleries/gallery groups in "
     
    28302809msgstr ""
    28312810
    2832 #: admin/views/Options.php:3354
     2811#: admin/views/Options.php:3602
    28332812msgid "Full-width lightbox"
    28342813msgstr ""
    28352814
    2836 #: admin/views/Options.php:3359
     2815#: admin/views/Options.php:3607
    28372816msgid "Image lightbox will appear full-width if this setting is activated."
    28382817msgstr ""
    28392818
    2840 #: admin/views/Options.php:3364
     2819#: admin/views/Options.php:3612
    28412820msgid "Lightbox dimensions"
    28422821msgstr ""
    28432822
    2844 #: admin/views/Options.php:3369
     2823#: admin/views/Options.php:3617
    28452824msgid "Set the dimensions of image lightbox."
    28462825msgstr ""
    28472826
    2848 #: admin/views/Options.php:3374
     2827#: admin/views/Options.php:3622
    28492828msgid "Lightbox effect"
    28502829msgstr ""
    28512830
    2852 #: admin/views/Options.php:3388
     2831#: admin/views/Options.php:3636
    28532832msgid "Select the animation effect for image lightbox."
    28542833msgstr ""
    28552834
    2856 #: admin/views/Options.php:3397
     2835#: admin/views/Options.php:3645
    28572836msgid "Set the duration of lightbox animation effect."
    28582837msgstr ""
    28592838
    2860 #: admin/views/Options.php:3398
     2839#: admin/views/Options.php:3646
    28612840msgid ""
    28622841"Note, that the value of Effect Duration can not be greater than 1/4 of Time "
     
    28642843msgstr ""
    28652844
    2866 #: admin/views/Options.php:3403
     2845#: admin/views/Options.php:3651
    28672846msgid "Lightbox autoplay"
    28682847msgstr ""
    28692848
    2870 #: admin/views/Options.php:3408
     2849#: admin/views/Options.php:3656
    28712850msgid "Activate this option to autoplay images in gallery lightbox."
    28722851msgstr ""
    28732852
    2874 #: admin/views/Options.php:3417
     2853#: admin/views/Options.php:3665
    28752854msgid "Specify the time interval of autoplay in Photo Gallery lightbox."
    28762855msgstr ""
    28772856
    2878 #: admin/views/Options.php:3422
     2857#: admin/views/Options.php:3670
    28792858msgid "Enable filmstrip"
    28802859msgstr ""
    28812860
    2882 #: admin/views/Options.php:3427
     2861#: admin/views/Options.php:3675
    28832862msgid ""
    28842863"Add a filmstrip with image thumbnails to the lightbox of your galleries."
    28852864msgstr ""
    28862865
    2887 #: admin/views/Options.php:3433
     2866#: admin/views/Options.php:3681
    28882867msgid "Filmstrip size"
    28892868msgstr ""
    28902869
    2891 #: admin/views/Options.php:3476
     2870#: admin/views/Options.php:3724
    28922871msgid "Enable this option to show control buttons on Photo Gallery lightbox."
    28932872msgstr ""
    28942873
    2895 #: admin/views/Options.php:3481
    2896 #, fuzzy
     2874#: admin/views/Options.php:3729
    28972875#| msgid "Exit Fullscreen"
    28982876msgid "Enable fullscreen button"
    2899 msgstr "Exit Fullscreen"
    2900 
    2901 #: admin/views/Options.php:3486
     2877msgstr ""
     2878
     2879#: admin/views/Options.php:3734
    29022880msgid ""
    29032881"Activate this setting to add Fullscreen button to lightbox control buttons."
    29042882msgstr ""
    29052883
    2906 #: admin/views/Options.php:3491
    2907 #, fuzzy
     2884#: admin/views/Options.php:3739
    29082885#| msgid "Show comments"
    29092886msgid "Enable comments"
    2910 msgstr "Show comments"
    2911 
    2912 #: admin/views/Options.php:3500
     2887msgstr ""
     2888
     2889#: admin/views/Options.php:3748
    29132890msgid ""
    29142891"Let users to leave comments on images by enabling comments section of "
     
    29162893msgstr ""
    29172894
    2918 #: admin/views/Options.php:3506
    2919 #, fuzzy
     2895#: admin/views/Options.php:3754
    29202896#| msgid "Show comments"
    29212897msgid "Show Email for comments"
    2922 msgstr "Show comments"
    2923 
    2924 #: admin/views/Options.php:3511
     2898msgstr ""
     2899
     2900#: admin/views/Options.php:3759
    29252901msgid ""
    29262902"Activate this option to display email address field in comments section."
    29272903msgstr ""
    29282904
    2929 #: admin/views/Options.php:3517
    2930 #, fuzzy
     2905#: admin/views/Options.php:3765
    29312906#| msgid "Show comments"
    29322907msgid "Show Captcha for comments"
    2933 msgstr "Show comments"
    2934 
    2935 #: admin/views/Options.php:3522
     2908msgstr ""
     2909
     2910#: admin/views/Options.php:3770
    29362911msgid ""
    29372912"Enable this setting to place Captcha word verification in comments section."
    29382913msgstr ""
    29392914
    2940 #: admin/views/Options.php:3528
    2941 #, fuzzy
     2915#: admin/views/Options.php:3771
     2916msgid "Note, this option cannot be used with GDPR compliance."
     2917msgstr ""
     2918
     2919#: admin/views/Options.php:3777
    29422920#| msgid "Your comment is awaiting moderation"
    29432921msgid "Enable comments moderation"
    2944 msgstr "Your comment is awaiting moderation"
    2945 
    2946 #: admin/views/Options.php:3533
     2922msgstr ""
     2923
     2924#: admin/views/Options.php:3782
    29472925msgid "Moderate each comment left on images by activating this setting."
    29482926msgstr ""
    29492927
    2950 #: admin/views/Options.php:3539
    2951 #, fuzzy
     2928#: admin/views/Options.php:3788
    29522929#| msgid "Show comments"
    29532930msgid "Show image info"
    2954 msgstr "Show comments"
    2955 
    2956 #: admin/views/Options.php:3544
     2931msgstr ""
     2932
     2933#: admin/views/Options.php:3793
    29572934msgid ""
    29582935"Activate this setting to show Info button among lightbox control buttons."
    29592936msgstr ""
    29602937
    2961 #: admin/views/Options.php:3549
     2938#: admin/views/Options.php:3798
    29622939msgid "Display info by default"
    29632940msgstr ""
    29642941
    2965 #: admin/views/Options.php:3554
     2942#: admin/views/Options.php:3803
    29662943msgid ""
    29672944"Enabling this option will let you show image title and description on "
     
    29692946msgstr ""
    29702947
    2971 #: admin/views/Options.php:3559
     2948#: admin/views/Options.php:3808
    29722949msgid "Full width info"
    29732950msgstr ""
    29742951
    2975 #: admin/views/Options.php:3564
     2952#: admin/views/Options.php:3813
    29762953msgid ""
    29772954"Display info box with the full width of the lightbox by enabling this option."
    29782955msgstr ""
    29792956
    2980 #: admin/views/Options.php:3574
     2957#: admin/views/Options.php:3823
    29812958msgid ""
    29822959"Choose to display Next/Previous buttons of Photo Gallery lightbox on hover "
     
    29842961msgstr ""
    29852962
    2986 #: admin/views/Options.php:3579
     2963#: admin/views/Options.php:3828
    29872964msgid "Display views counter"
    29882965msgstr ""
    29892966
    2990 #: admin/views/Options.php:3584
     2967#: admin/views/Options.php:3833
    29912968msgid "Show the number of views, when a gallery image was opened in lightbox."
    29922969msgstr ""
    29932970
    2994 #: admin/views/Options.php:3590
    2995 #, fuzzy
     2971#: admin/views/Options.php:3839
    29962972#| msgid "Hide rating"
    29972973msgid "Enable rating"
    2998 msgstr "Hide rating"
    2999 
    3000 #: admin/views/Options.php:3595
     2974msgstr ""
     2975
     2976#: admin/views/Options.php:3844
    30012977msgid ""
    30022978"Allow users to rate your images by adding rating feature to Photo Gallery "
     
    30042980msgstr ""
    30052981
    3006 #: admin/views/Options.php:3603
     2982#: admin/views/Options.php:3850
     2983#| msgid "Hide rating"
     2984msgid "Enable zoom"
     2985msgstr ""
     2986
     2987#: admin/views/Options.php:3855
     2988msgid "Allow users to zoom images in Photo Gallery lightbox."
     2989msgstr ""
     2990
     2991#: admin/views/Options.php:3863
    30072992msgid "Show Display Original Image button"
    30082993msgstr ""
    30092994
    3010 #: admin/views/Options.php:3608
     2995#: admin/views/Options.php:3868
    30112996msgid ""
    30122997"Let users view original versions of your images by enabling this button."
    30132998msgstr ""
    30142999
    3015 #: admin/views/Options.php:3613
     3000#: admin/views/Options.php:3873
    30163001msgid "Show download button"
    30173002msgstr ""
    30183003
    3019 #: admin/views/Options.php:3618
     3004#: admin/views/Options.php:3878
    30203005msgid ""
    30213006"This option will allow users to download gallery images while viewing them "
     
    30233008msgstr ""
    30243009
    3025 #: admin/views/Options.php:3623
    3026 #, fuzzy
     3010#: admin/views/Options.php:3883
    30273011#| msgid "Show comments"
    30283012msgid "Show image counter"
    3029 msgstr "Show comments"
    3030 
    3031 #: admin/views/Options.php:3628
     3013msgstr ""
     3014
     3015#: admin/views/Options.php:3888
    30323016msgid "Enable this option to display image counter on Photo Gallery lightbox."
    30333017msgstr ""
    30343018
    3035 #: admin/views/Options.php:3633
    3036 #, fuzzy
     3019#: admin/views/Options.php:3893
    30373020#| msgid "Hide rating"
    30383021msgid "Enable looping"
    3039 msgstr "Hide rating"
    3040 
    3041 #: admin/views/Options.php:3638
     3022msgstr ""
     3023
     3024#: admin/views/Options.php:3898
    30423025msgid ""
    30433026"Activate looping to start lightbox navigation from the beginning when users "
     
    30453028msgstr ""
    30463029
    3047 #: admin/views/Options.php:3643
     3030#: admin/views/Options.php:3903
    30483031msgid "Enable"
    30493032msgstr ""
    30503033
    3051 #: admin/views/Options.php:3648
     3034#: admin/views/Options.php:3908
    30523035msgid "Display AddThis on Photo Gallery lightbox by activating this option."
    30533036msgstr ""
    30543037
    3055 #: admin/views/Options.php:3654
     3038#: admin/views/Options.php:3914
    30563039msgid "profile ID"
    30573040msgstr ""
    30583041
    3059 #: admin/views/Options.php:3658
     3042#: admin/views/Options.php:3918
    30603043msgid "Provide the ID of your profile to connect to AddThis."
    30613044msgstr ""
    30623045
    3063 #: admin/views/Options.php:3658
     3046#: admin/views/Options.php:3918
    30643047#, php-format
    30653048msgid "Create an account %s."
    30663049msgstr ""
    30673050
    3068 #: admin/views/Options.php:3658 admin/views/Shortcode.php:254
     3051#: admin/views/Options.php:3918 admin/views/Shortcode.php:335
    30693052msgid "here"
    30703053msgstr ""
    30713054
    3072 #: admin/views/Options.php:3664
    3073 #, fuzzy
     3055#: admin/views/Options.php:3924
    30743056#| msgid "Share on Facebook"
    30753057msgid "Show Facebook button"
    3076 msgstr "Share on Facebook"
    3077 
    3078 #: admin/views/Options.php:3669
     3058msgstr ""
     3059
     3060#: admin/views/Options.php:3929
    30793061msgid ""
    30803062"Enabling this setting will add Facebook sharing button to Photo Gallery "
     
    30823064msgstr ""
    30833065
    3084 #: admin/views/Options.php:3675
    3085 #, fuzzy
     3066#: admin/views/Options.php:3935
    30863067#| msgid "Share on Twitter"
    30873068msgid "Show Twitter button"
    3088 msgstr "Share on Twitter"
    3089 
    3090 #: admin/views/Options.php:3680
     3069msgstr ""
     3070
     3071#: admin/views/Options.php:3940
    30913072msgid "Enable this setting to add Tweet button to Photo Gallery lightbox."
    30923073msgstr ""
    30933074
    3094 #: admin/views/Options.php:3686
    3095 #, fuzzy
     3075#: admin/views/Options.php:3946
    30963076#| msgid "Share on Pinterest"
    30973077msgid "Show Pinterest button"
    3098 msgstr "Share on Pinterest"
    3099 
    3100 #: admin/views/Options.php:3691
     3078msgstr ""
     3079
     3080#: admin/views/Options.php:3951
    31013081msgid "Activate Pin button of Photo Gallery lightbox by enabling this setting."
    31023082msgstr ""
    31033083
    3104 #: admin/views/Options.php:3697
    3105 #, fuzzy
     3084#: admin/views/Options.php:3957
    31063085#| msgid "Share on Tumblr"
    31073086msgid "Show Tumblr button"
    3108 msgstr "Share on Tumblr"
    3109 
    3110 #: admin/views/Options.php:3702
     3087msgstr ""
     3088
     3089#: admin/views/Options.php:3962
    31113090msgid ""
    31123091"Allow users to share images on Tumblr from Photo Gallery lightbox by "
     
    31143093msgstr ""
    31153094
    3116 #: admin/views/Options.php:3711
    3117 #, fuzzy
     3095#: admin/views/Options.php:3971
    31183096#| msgid "Show comments"
    31193097msgid "Show Ecommerce button"
    3120 msgstr "Show comments"
    3121 
    3122 #: admin/views/Options.php:3716
     3098msgstr ""
     3099
     3100#: admin/views/Options.php:3976
    31233101msgid "Enable this option to display ecommerce icon on Photo Gallery lightbox"
    31243102msgstr ""
     
    31333111msgstr ""
    31343112
    3135 #: admin/views/Shortcode.php:198
     3113#: admin/views/Shortcode.php:147 admin/views/Shortcode.php:213
     3114msgid "View type"
     3115msgstr ""
     3116
     3117#: admin/views/Shortcode.php:279
    31363118msgid "Select the gallery to display."
    31373119msgstr ""
    31383120
    3139 #: admin/views/Shortcode.php:201
    3140 #, fuzzy
     3121#: admin/views/Shortcode.php:282
    31413122#| msgid "Gallery is empty."
    31423123msgid "Gallery Group"
    3143 msgstr "Gallery is empty."
    3144 
    3145 #: admin/views/Shortcode.php:212
     3124msgstr ""
     3125
     3126#: admin/views/Shortcode.php:293
    31463127msgid "Select the gallery group to display."
    31473128msgstr ""
    31483129
    3149 #: admin/views/Shortcode.php:218
     3130#: admin/views/Shortcode.php:299
    31503131msgid "Tag"
    31513132msgstr ""
    31523133
    3153 #: admin/views/Shortcode.php:230
    3154 #, fuzzy
     3134#: admin/views/Shortcode.php:311
    31553135#| msgid "There are no images in this gallery."
    31563136msgid "Filter gallery images by this tag."
    3157 msgstr "There are no images in this gallery."
    3158 
    3159 #: admin/views/Shortcode.php:235
     3137msgstr ""
     3138
     3139#: admin/views/Shortcode.php:316
    31603140msgid "Theme"
    31613141msgstr ""
    31623142
    3163 #: admin/views/Shortcode.php:247
     3143#: admin/views/Shortcode.php:328
    31643144msgid "Choose the theme for your gallery."
    31653145msgstr ""
    31663146
    3167 #: admin/views/Shortcode.php:253
     3147#: admin/views/Shortcode.php:334
    31683148msgid "Use default options"
    31693149msgstr ""
    31703150
    3171 #: admin/views/Shortcode.php:254
     3151#: admin/views/Shortcode.php:335
    31723152msgid ""
    31733153"Mark this option to use default settings configured in Photo Gallery Options."
    31743154msgstr ""
    31753155
    3176 #: admin/views/Shortcode.php:254
     3156#: admin/views/Shortcode.php:335
    31773157#, php-format
    31783158msgid "You can change the default options %s."
    31793159msgstr ""
    31803160
    3181 #: admin/views/Shortcode.php:279
     3161#: admin/views/Shortcode.php:360
    31823162msgid "Action on image click"
    31833163msgstr ""
    31843164
    3185 #: admin/views/Shortcode.php:289
     3165#: admin/views/Shortcode.php:370
    31863166msgid "Toggle panel"
    31873167msgstr ""
    31883168
    3189 #: admin/views/Shortcode.php:425
     3169#: admin/views/Shortcode.php:510
    31903170msgid "Insert into post"
    31913171msgstr ""
    31923172
    3193 #: admin/views/Shortcode.php:430
    3194 msgid "Please see "
    3195 msgstr ""
    3196 
    3197 #: admin/views/Shortcode.php:430
    3198 msgid "View in Premium version"
    3199 msgstr ""
    3200 
    3201 #: admin/views/Shortcode.php:452
     3173#: admin/views/Shortcode.php:538
    32023174msgid "New shortcode"
    32033175msgstr ""
    32043176
    3205 #: admin/views/Shortcode.php:461 admin/views/Shortcode.php:545
     3177#: admin/views/Shortcode.php:547 admin/views/Shortcode.php:631
    32063178msgid "Generate"
    32073179msgstr ""
    32083180
    3209 #: admin/views/Shortcode.php:463
     3181#: admin/views/Shortcode.php:549
    32103182msgid ""
    32113183"If you would like to edit an existing shortcode, use this dropdown box to "
     
    32133185msgstr ""
    32143186
    3215 #: admin/views/Shortcode.php:467
     3187#: admin/views/Shortcode.php:553
    32163188msgid "Shortcode"
    32173189msgstr ""
    32183190
    3219 #: admin/views/Shortcode.php:469
     3191#: admin/views/Shortcode.php:555
    32203192msgid ""
    32213193"Add the selected gallery or gallery group to any WordPress page or post. "
     
    32243196msgstr ""
    32253197
    3226 #: admin/views/Shortcode.php:474
     3198#: admin/views/Shortcode.php:560
    32273199msgid "PHP function"
    32283200msgstr ""
    32293201
    3230 #: admin/views/Shortcode.php:476
     3202#: admin/views/Shortcode.php:562
    32313203msgid ""
    32323204"Use generated PHP function to call the selected gallery or gallery group on "
     
    32343206msgstr ""
    32353207
    3236 #: admin/views/Shortcode.php:563
     3208#: admin/views/Shortcode.php:649
    32373209msgid "There is no shortcode with such ID!"
    32383210msgstr ""
    32393211
    3240 #: admin/views/Shortcode.php:2153
     3212#: admin/views/Shortcode.php:2281
    32413213msgid "Image thumbnail width "
    32423214msgstr ""
    32433215
    3244 #: admin/views/Shortcode.php:2155
     3216#: admin/views/Shortcode.php:2283
    32453217msgid "Image thumbnail height"
    32463218msgstr ""
    32473219
    3248 #: admin/views/Themes.php:22
    3249 msgid "You can't change theme parameters in free version."
    3250 msgstr ""
    3251 
    3252 #: admin/views/Themes.php:176
    3253 #, fuzzy
     3220#: admin/views/Themes.php:28
     3221#| msgid "Share on Facebook"
     3222msgid "Photo Gallery Themes"
     3223msgstr ""
     3224
     3225#: admin/views/Themes.php:39
     3226msgid "Build Fully Customized Gallery Views"
     3227msgstr ""
     3228
     3229#: admin/views/Themes.php:44
     3230msgid "Unlimited options to completely customize every detail. "
     3231msgstr ""
     3232
     3233#: admin/views/Themes.php:46
     3234msgid ""
     3235" Use default dark and light themes, or\n"
     3236"                    create new from scratch."
     3237msgstr ""
     3238
     3239#: admin/views/Themes.php:53
     3240msgid "UPGRADE TO PREMIUM"
     3241msgstr ""
     3242
     3243#: admin/views/Themes.php:187
     3244msgid "Add new theme"
     3245msgstr ""
     3246
     3247#: admin/views/Themes.php:346
    32543248#| msgid "Show rating"
    32553249msgid "Theme title"
    3256 msgstr "Show rating"
    3257 
    3258 #: admin/views/Themes.php:184
     3250msgstr ""
     3251
     3252#: admin/views/Themes.php:351
     3253msgid "Save"
     3254msgstr ""
     3255
     3256#: admin/views/Themes.php:354
    32593257msgid "Reset to default theme"
    32603258msgstr ""
    32613259
    3262 #: admin/views/Themes.php:212 admin/views/Themes.php:534
    3263 #: admin/views/Themes.php:856 admin/views/Themes.php:1911
    3264 #: admin/views/Themes.php:2921
     3260#: admin/views/Themes.php:382 admin/views/Themes.php:692
     3261#: admin/views/Themes.php:967 admin/views/Themes.php:1921
     3262#: admin/views/Themes.php:2812
    32653263msgid "Distance between pictures:"
    32663264msgstr ""
    32673265
    3268 #: admin/views/Themes.php:218 admin/views/Themes.php:540
    3269 #: admin/views/Themes.php:862 admin/views/Themes.php:1917
    3270 #: admin/views/Themes.php:2927
     3266#: admin/views/Themes.php:388 admin/views/Themes.php:698
     3267#: admin/views/Themes.php:973 admin/views/Themes.php:1927
     3268#: admin/views/Themes.php:2818
    32713269msgid "Distance from container frame:"
    32723270msgstr ""
    32733271
    3274 #: admin/views/Themes.php:224 admin/views/Themes.php:546
    3275 #: admin/views/Themes.php:868 admin/views/Themes.php:1923
    3276 #: admin/views/Themes.php:2933
     3272#: admin/views/Themes.php:394 admin/views/Themes.php:704
     3273#: admin/views/Themes.php:979 admin/views/Themes.php:1933
     3274#: admin/views/Themes.php:2824
    32773275msgid ""
    32783276"Enable this option to add distance between the parent container and the "
     
    32803278msgstr ""
    32813279
    3282 #: admin/views/Themes.php:228 admin/views/Themes.php:1640
    3283 #: admin/views/Themes.php:1927 admin/views/Themes.php:2473
    3284 #: admin/views/Themes.php:3302 admin/views/Themes.php:4679
     3280#: admin/views/Themes.php:398 admin/views/Themes.php:1686
     3281#: admin/views/Themes.php:1937 admin/views/Themes.php:2436
     3282#: admin/views/Themes.php:3139 admin/views/Themes.php:4390
     3283#: admin/views/Themes.php:4841
    32853284msgid "Padding:"
    32863285msgstr ""
    32873286
    3288 #: admin/views/Themes.php:234 admin/views/Themes.php:550
    3289 #: admin/views/Themes.php:872 admin/views/Themes.php:1647
    3290 #: admin/views/Themes.php:1934 admin/views/Themes.php:2937
    3291 #: admin/views/Themes.php:3360 admin/views/Themes.php:4629
     3287#: admin/views/Themes.php:404 admin/views/Themes.php:708
     3288#: admin/views/Themes.php:983 admin/views/Themes.php:1693
     3289#: admin/views/Themes.php:1944 admin/views/Themes.php:2828
     3290#: admin/views/Themes.php:3179 admin/views/Themes.php:4340
     3291#: admin/views/Themes.php:4848
    32923292msgid "Border width:"
    32933293msgstr ""
    32943294
    3295 #: admin/views/Themes.php:240 admin/views/Themes.php:556
    3296 #: admin/views/Themes.php:878 admin/views/Themes.php:1653
    3297 #: admin/views/Themes.php:1940 admin/views/Themes.php:2943
    3298 #: admin/views/Themes.php:3366 admin/views/Themes.php:4635
    3299 #, fuzzy
     3295#: admin/views/Themes.php:410 admin/views/Themes.php:714
     3296#: admin/views/Themes.php:989 admin/views/Themes.php:1699
     3297#: admin/views/Themes.php:1950 admin/views/Themes.php:2834
     3298#: admin/views/Themes.php:3185 admin/views/Themes.php:4346
     3299#: admin/views/Themes.php:4854
    33003300#| msgid "Order by: "
    33013301msgid "Border style:"
    3302 msgstr "Order by: "
    3303 
    3304 #: admin/views/Themes.php:254 admin/views/Themes.php:570
    3305 #: admin/views/Themes.php:892 admin/views/Themes.php:1667
    3306 #: admin/views/Themes.php:1954 admin/views/Themes.php:2957
    3307 #: admin/views/Themes.php:3380 admin/views/Themes.php:4649
     3302msgstr ""
     3303
     3304#: admin/views/Themes.php:424 admin/views/Themes.php:728
     3305#: admin/views/Themes.php:1003 admin/views/Themes.php:1713
     3306#: admin/views/Themes.php:1964 admin/views/Themes.php:2848
     3307#: admin/views/Themes.php:3199 admin/views/Themes.php:4360
     3308#: admin/views/Themes.php:4864
    33083309msgid "Border color:"
    33093310msgstr ""
    33103311
    3311 #: admin/views/Themes.php:260 admin/views/Themes.php:576
    3312 #: admin/views/Themes.php:898 admin/views/Themes.php:1673
    3313 #: admin/views/Themes.php:1960 admin/views/Themes.php:2492
    3314 #: admin/views/Themes.php:2963 admin/views/Themes.php:3386
    3315 #: admin/views/Themes.php:4655
     3312#: admin/views/Themes.php:430 admin/views/Themes.php:734
     3313#: admin/views/Themes.php:1009 admin/views/Themes.php:1719
     3314#: admin/views/Themes.php:1970 admin/views/Themes.php:2455
     3315#: admin/views/Themes.php:2854 admin/views/Themes.php:3205
     3316#: admin/views/Themes.php:4366 admin/views/Themes.php:4868
    33163317msgid "Border radius:"
    33173318msgstr ""
    33183319
    3319 #: admin/views/Themes.php:263 admin/views/Themes.php:270
    3320 #: admin/views/Themes.php:432 admin/views/Themes.php:439
     3320#: admin/views/Themes.php:433 admin/views/Themes.php:440
     3321#: admin/views/Themes.php:591 admin/views/Themes.php:598
     3322#: admin/views/Themes.php:653 admin/views/Themes.php:660
     3323#: admin/views/Themes.php:737 admin/views/Themes.php:875
     3324#: admin/views/Themes.php:928 admin/views/Themes.php:935
     3325#: admin/views/Themes.php:1012 admin/views/Themes.php:1152
     3326#: admin/views/Themes.php:1159 admin/views/Themes.php:1196
     3327#: admin/views/Themes.php:1203 admin/views/Themes.php:1319
     3328#: admin/views/Themes.php:1340 admin/views/Themes.php:1368
     3329#: admin/views/Themes.php:1402 admin/views/Themes.php:1458
     3330#: admin/views/Themes.php:1518 admin/views/Themes.php:1525
     3331#: admin/views/Themes.php:1561 admin/views/Themes.php:1568
     3332#: admin/views/Themes.php:1605 admin/views/Themes.php:1625
     3333#: admin/views/Themes.php:1682 admin/views/Themes.php:1689
     3334#: admin/views/Themes.php:1722 admin/views/Themes.php:1742
     3335#: admin/views/Themes.php:1798 admin/views/Themes.php:1805
     3336#: admin/views/Themes.php:1838 admin/views/Themes.php:1882
     3337#: admin/views/Themes.php:1889 admin/views/Themes.php:1940
     3338#: admin/views/Themes.php:1973 admin/views/Themes.php:1980
     3339#: admin/views/Themes.php:2129 admin/views/Themes.php:2136
     3340#: admin/views/Themes.php:2173 admin/views/Themes.php:2210
     3341#: admin/views/Themes.php:2217 admin/views/Themes.php:2290
     3342#: admin/views/Themes.php:2297 admin/views/Themes.php:2385
     3343#: admin/views/Themes.php:2425 admin/views/Themes.php:2432
     3344#: admin/views/Themes.php:2458 admin/views/Themes.php:2491
     3345#: admin/views/Themes.php:2552 admin/views/Themes.php:2585
     3346#: admin/views/Themes.php:2604 admin/views/Themes.php:2667
     3347#: admin/views/Themes.php:2772 admin/views/Themes.php:2779
     3348#: admin/views/Themes.php:2857 admin/views/Themes.php:2992
     3349#: admin/views/Themes.php:3029 admin/views/Themes.php:3066
     3350#: admin/views/Themes.php:3073 admin/views/Themes.php:3135
     3351#: admin/views/Themes.php:3142 admin/views/Themes.php:3149
     3352#: admin/views/Themes.php:3208 admin/views/Themes.php:3225
     3353#: admin/views/Themes.php:3270 admin/views/Themes.php:3335
     3354#: admin/views/Themes.php:3342 admin/views/Themes.php:3436
     3355#: admin/views/Themes.php:3490 admin/views/Themes.php:3523
     3356#: admin/views/Themes.php:3631 admin/views/Themes.php:3668
     3357#: admin/views/Themes.php:3712 admin/views/Themes.php:3745
     3358#: admin/views/Themes.php:3850 admin/views/Themes.php:3919
     3359#: admin/views/Themes.php:3926 admin/views/Themes.php:3933
     3360#: admin/views/Themes.php:4043 admin/views/Themes.php:4050
     3361#: admin/views/Themes.php:4057 admin/views/Themes.php:4214
     3362#: admin/views/Themes.php:4233 admin/views/Themes.php:4266
     3363#: admin/views/Themes.php:4369 admin/views/Themes.php:4386
     3364#: admin/views/Themes.php:4393 admin/views/Themes.php:4422
     3365#: admin/views/Themes.php:4583 admin/views/Themes.php:4672
     3366#: admin/views/Themes.php:4752 admin/views/Themes.php:4759
     3367#: admin/views/Themes.php:4837 admin/views/Themes.php:4844
     3368#: admin/views/Themes.php:4871 admin/views/Themes.php:4924
     3369msgid "Use CSS type values."
     3370msgstr ""
     3371
     3372#: admin/views/Themes.php:437 admin/views/Themes.php:1977
     3373msgid "Shadow:"
     3374msgstr ""
     3375
     3376#: admin/views/Themes.php:444 admin/views/Themes.php:741
     3377#: admin/views/Themes.php:1016 admin/views/Themes.php:1984
     3378#: admin/views/Themes.php:2861
     3379msgid "Hover effect:"
     3380msgstr ""
     3381
     3382#: admin/views/Themes.php:458 admin/views/Themes.php:755
     3383#: admin/views/Themes.php:1030 admin/views/Themes.php:1998
     3384#: admin/views/Themes.php:2345 admin/views/Themes.php:2875
     3385msgid "Hover effect value:"
     3386msgstr ""
     3387
     3388#: admin/views/Themes.php:461
     3389msgid "E.g. Rotate: 10deg, Scale/Zoom: 1.5, Skew: 10deg."
     3390msgstr ""
     3391
     3392#: admin/views/Themes.php:465 admin/views/Themes.php:762
     3393#: admin/views/Themes.php:1037
     3394msgid "Transition:"
     3395msgstr ""
     3396
     3397#: admin/views/Themes.php:485 admin/views/Themes.php:782
     3398#: admin/views/Themes.php:1056 admin/views/Themes.php:2024
     3399#: admin/views/Themes.php:2352 admin/views/Themes.php:2902
     3400msgid "Thumbnail background color:"
     3401msgstr ""
     3402
     3403#: admin/views/Themes.php:492 admin/views/Themes.php:789
     3404#: admin/views/Themes.php:1062 admin/views/Themes.php:2030
     3405#: admin/views/Themes.php:2364
     3406msgid "Thumbnail background transparency:"
     3407msgstr ""
     3408
    33213409#: admin/views/Themes.php:495 admin/views/Themes.php:502
    3322 #: admin/views/Themes.php:579 admin/views/Themes.php:728
    3323 #: admin/views/Themes.php:817 admin/views/Themes.php:824
    3324 #: admin/views/Themes.php:901 admin/views/Themes.php:1052
    3325 #: admin/views/Themes.php:1059 admin/views/Themes.php:1114
    3326 #: admin/views/Themes.php:1121 admin/views/Themes.php:1237
    3327 #: admin/views/Themes.php:1258 admin/views/Themes.php:1286
    3328 #: admin/views/Themes.php:1320 admin/views/Themes.php:1376
    3329 #: admin/views/Themes.php:1436 admin/views/Themes.php:1443
    3330 #: admin/views/Themes.php:1497 admin/views/Themes.php:1504
    3331 #: admin/views/Themes.php:1559 admin/views/Themes.php:1579
    3332 #: admin/views/Themes.php:1636 admin/views/Themes.php:1643
    3333 #: admin/views/Themes.php:1676 admin/views/Themes.php:1696
    3334 #: admin/views/Themes.php:1770 admin/views/Themes.php:1777
    3335 #: admin/views/Themes.php:1810 admin/views/Themes.php:1872
    3336 #: admin/views/Themes.php:1879 admin/views/Themes.php:1930
    3337 #: admin/views/Themes.php:1963 admin/views/Themes.php:1970
    3338 #: admin/views/Themes.php:2130 admin/views/Themes.php:2137
    3339 #: admin/views/Themes.php:2192 admin/views/Themes.php:2247
    3340 #: admin/views/Themes.php:2254 admin/views/Themes.php:2327
    3341 #: admin/views/Themes.php:2334 admin/views/Themes.php:2422
    3342 #: admin/views/Themes.php:2462 admin/views/Themes.php:2469
    3343 #: admin/views/Themes.php:2495 admin/views/Themes.php:2528
    3344 #: admin/views/Themes.php:2607 admin/views/Themes.php:2640
    3345 #: admin/views/Themes.php:2659 admin/views/Themes.php:2740
    3346 #: admin/views/Themes.php:2881 admin/views/Themes.php:2888
    3347 #: admin/views/Themes.php:2966 admin/views/Themes.php:3119
    3348 #: admin/views/Themes.php:3174 admin/views/Themes.php:3229
    3349 #: admin/views/Themes.php:3236 admin/views/Themes.php:3298
    3350 #: admin/views/Themes.php:3305 admin/views/Themes.php:3312
    3351 #: admin/views/Themes.php:3389 admin/views/Themes.php:3406
    3352 #: admin/views/Themes.php:3451 admin/views/Themes.php:3534
    3353 #: admin/views/Themes.php:3541 admin/views/Themes.php:3635
    3354 #: admin/views/Themes.php:3689 admin/views/Themes.php:3722
    3355 #: admin/views/Themes.php:3830 admin/views/Themes.php:3867
    3356 #: admin/views/Themes.php:3911 admin/views/Themes.php:3944
    3357 #: admin/views/Themes.php:4049 admin/views/Themes.php:4118
    3358 #: admin/views/Themes.php:4125 admin/views/Themes.php:4132
    3359 #: admin/views/Themes.php:4260 admin/views/Themes.php:4267
    3360 #: admin/views/Themes.php:4274 admin/views/Themes.php:4485
    3361 #: admin/views/Themes.php:4504 admin/views/Themes.php:4537
    3362 #: admin/views/Themes.php:4658 admin/views/Themes.php:4675
    3363 #: admin/views/Themes.php:4682 admin/views/Themes.php:4711
    3364 #: admin/views/Themes.php:4872 admin/views/Themes.php:4961
    3365 msgid "Use CSS type values."
    3366 msgstr ""
    3367 
    3368 #: admin/views/Themes.php:267 admin/views/Themes.php:1967
    3369 msgid "Shadow:"
    3370 msgstr ""
    3371 
    3372 #: admin/views/Themes.php:274 admin/views/Themes.php:583
    3373 #: admin/views/Themes.php:905 admin/views/Themes.php:1974
    3374 #: admin/views/Themes.php:2970
    3375 msgid "Hover effect:"
    3376 msgstr ""
    3377 
    3378 #: admin/views/Themes.php:288 admin/views/Themes.php:597
    3379 #: admin/views/Themes.php:919 admin/views/Themes.php:1988
    3380 #: admin/views/Themes.php:2382 admin/views/Themes.php:2984
    3381 msgid "Hover effect value:"
    3382 msgstr ""
    3383 
    3384 #: admin/views/Themes.php:291
    3385 msgid "E.g. Rotate: 10deg, Scale/Zoom: 1.5, Skew: 10deg."
    3386 msgstr ""
    3387 
    3388 #: admin/views/Themes.php:295 admin/views/Themes.php:604
    3389 #: admin/views/Themes.php:926
    3390 msgid "Transition:"
    3391 msgstr ""
    3392 
    3393 #: admin/views/Themes.php:315 admin/views/Themes.php:624
    3394 #: admin/views/Themes.php:2014 admin/views/Themes.php:2389
    3395 #: admin/views/Themes.php:3011
    3396 msgid "Thumbnail background color:"
    3397 msgstr ""
    3398 
    3399 #: admin/views/Themes.php:322 admin/views/Themes.php:2020
    3400 #: admin/views/Themes.php:2361 admin/views/Themes.php:3018
     3410#: admin/views/Themes.php:515 admin/views/Themes.php:792
     3411#: admin/views/Themes.php:799 admin/views/Themes.php:812
     3412#: admin/views/Themes.php:1065 admin/views/Themes.php:1072
     3413#: admin/views/Themes.php:1085 admin/views/Themes.php:1262
     3414#: admin/views/Themes.php:1421 admin/views/Themes.php:1511
     3415#: admin/views/Themes.php:1554 admin/views/Themes.php:1618
     3416#: admin/views/Themes.php:1735 admin/views/Themes.php:2033
     3417#: admin/views/Themes.php:2040 admin/views/Themes.php:2053
     3418#: admin/views/Themes.php:2327 admin/views/Themes.php:2367
     3419#: admin/views/Themes.php:2451 admin/views/Themes.php:2912
     3420#: admin/views/Themes.php:2925 admin/views/Themes.php:3114
     3421#: admin/views/Themes.php:3283 admin/views/Themes.php:3383
     3422#: admin/views/Themes.php:3396 admin/views/Themes.php:3443
     3423#: admin/views/Themes.php:3470 admin/views/Themes.php:3764
     3424#: admin/views/Themes.php:3886 admin/views/Themes.php:4010
     3425#: admin/views/Themes.php:4406 admin/views/Themes.php:4501
     3426#: admin/views/Themes.php:4526 admin/views/Themes.php:4665
     3427msgid "Value must be between 0 to 100."
     3428msgstr ""
     3429
     3430#: admin/views/Themes.php:499 admin/views/Themes.php:2037
     3431#: admin/views/Themes.php:2324 admin/views/Themes.php:2909
    34013432msgid "Thumbnail transparency:"
    34023433msgstr ""
    34033434
    3404 #: admin/views/Themes.php:325 admin/views/Themes.php:338
    3405 #: admin/views/Themes.php:634 admin/views/Themes.php:647
    3406 #: admin/views/Themes.php:954 admin/views/Themes.php:967
    3407 #: admin/views/Themes.php:1180 admin/views/Themes.php:1339
    3408 #: admin/views/Themes.php:1429 admin/views/Themes.php:1490
    3409 #: admin/views/Themes.php:1572 admin/views/Themes.php:1689
    3410 #: admin/views/Themes.php:2023 admin/views/Themes.php:2036
    3411 #: admin/views/Themes.php:2364 admin/views/Themes.php:2404
    3412 #: admin/views/Themes.php:2488 admin/views/Themes.php:3021
    3413 #: admin/views/Themes.php:3034 admin/views/Themes.php:3277
    3414 #: admin/views/Themes.php:3464 admin/views/Themes.php:3582
    3415 #: admin/views/Themes.php:3595 admin/views/Themes.php:3642
    3416 #: admin/views/Themes.php:3669 admin/views/Themes.php:3963
    3417 #: admin/views/Themes.php:4085 admin/views/Themes.php:4227
    3418 #: admin/views/Themes.php:4695 admin/views/Themes.php:4790
    3419 #: admin/views/Themes.php:4815 admin/views/Themes.php:4954
    3420 msgid "Value must be between 0 to 100."
    3421 msgstr ""
    3422 
    3423 #: admin/views/Themes.php:329 admin/views/Themes.php:1563
    3424 #: admin/views/Themes.php:2027 admin/views/Themes.php:3025
     3435#: admin/views/Themes.php:506 admin/views/Themes.php:1609
     3436#: admin/views/Themes.php:2044 admin/views/Themes.php:2916
    34253437msgid "Full background color:"
    34263438msgstr ""
    34273439
    3428 #: admin/views/Themes.php:335 admin/views/Themes.php:1569
    3429 #: admin/views/Themes.php:2033 admin/views/Themes.php:3031
     3440#: admin/views/Themes.php:512 admin/views/Themes.php:1615
     3441#: admin/views/Themes.php:2050 admin/views/Themes.php:2922
    34303442msgid "Full background transparency:"
    34313443msgstr ""
    34323444
    3433 #: admin/views/Themes.php:342 admin/views/Themes.php:651
    3434 #: admin/views/Themes.php:971 admin/views/Themes.php:1619
    3435 #: admin/views/Themes.php:2040 admin/views/Themes.php:3038
    3436 #: admin/views/Themes.php:3281 admin/views/Themes.php:4734
     3445#: admin/views/Themes.php:519 admin/views/Themes.php:816
     3446#: admin/views/Themes.php:1089 admin/views/Themes.php:1665
     3447#: admin/views/Themes.php:2057 admin/views/Themes.php:2929
     3448#: admin/views/Themes.php:3118 admin/views/Themes.php:4445
    34373449msgid "Alignment:"
    34383450msgstr ""
    34393451
    3440 #: admin/views/Themes.php:366 admin/views/Themes.php:1710
    3441 #: admin/views/Themes.php:2064
     3452#: admin/views/Themes.php:543 admin/views/Themes.php:1756
     3453#: admin/views/Themes.php:2081
    34423454msgid "Title position:"
    34433455msgstr ""
    34443456
    3445 #: admin/views/Themes.php:369 admin/views/Themes.php:1275
    3446 #: admin/views/Themes.php:1713 admin/views/Themes.php:2067
    3447 #: admin/views/Themes.php:3620 admin/views/Themes.php:3900
    3448 #: admin/views/Themes.php:3988 admin/views/Themes.php:4056
    3449 #: admin/views/Themes.php:4198 admin/views/Themes.php:4728
     3457#: admin/views/Themes.php:546 admin/views/Themes.php:1357
     3458#: admin/views/Themes.php:1759 admin/views/Themes.php:2084
     3459#: admin/views/Themes.php:3421 admin/views/Themes.php:3701
     3460#: admin/views/Themes.php:3789 admin/views/Themes.php:3857
     3461#: admin/views/Themes.php:3981 admin/views/Themes.php:4439
    34503462msgid "Top"
    34513463msgstr ""
    34523464
    3453 #: admin/views/Themes.php:371 admin/views/Themes.php:1277
    3454 #: admin/views/Themes.php:1715 admin/views/Themes.php:2069
    3455 #: admin/views/Themes.php:3622 admin/views/Themes.php:3902
    3456 #: admin/views/Themes.php:3990 admin/views/Themes.php:4058
    3457 #: admin/views/Themes.php:4200 admin/views/Themes.php:4730
     3465#: admin/views/Themes.php:548 admin/views/Themes.php:1359
     3466#: admin/views/Themes.php:1761 admin/views/Themes.php:2086
     3467#: admin/views/Themes.php:3423 admin/views/Themes.php:3703
     3468#: admin/views/Themes.php:3791 admin/views/Themes.php:3859
     3469#: admin/views/Themes.php:3983 admin/views/Themes.php:4441
    34583470msgid "Bottom"
    34593471msgstr ""
    34603472
    3461 #: admin/views/Themes.php:375 admin/views/Themes.php:671
    3462 #: admin/views/Themes.php:995 admin/views/Themes.php:2073
    3463 #: admin/views/Themes.php:2689 admin/views/Themes.php:3062
    3464 #: admin/views/Themes.php:4320 admin/views/Themes.php:4999
     3473#: admin/views/Themes.php:552 admin/views/Themes.php:836
     3474#: admin/views/Themes.php:1113 admin/views/Themes.php:2090
     3475#: admin/views/Themes.php:2634 admin/views/Themes.php:2953
     3476#: admin/views/Themes.php:4085 admin/views/Themes.php:4692
    34653477msgid "Title font size:"
    34663478msgstr ""
    34673479
    3468 #: admin/views/Themes.php:381 admin/views/Themes.php:677
    3469 #: admin/views/Themes.php:1001 admin/views/Themes.php:2079
    3470 #: admin/views/Themes.php:2695 admin/views/Themes.php:3068
    3471 #: admin/views/Themes.php:4278
     3480#: admin/views/Themes.php:558 admin/views/Themes.php:842
     3481#: admin/views/Themes.php:1119 admin/views/Themes.php:2096
     3482#: admin/views/Themes.php:2640 admin/views/Themes.php:2959
     3483#: admin/views/Themes.php:4061
    34723484msgid "Title font color:"
    34733485msgstr ""
    34743486
    3475 #: admin/views/Themes.php:387 admin/views/Themes.php:683
    3476 #: admin/views/Themes.php:1007 admin/views/Themes.php:2085
    3477 #: admin/views/Themes.php:3074
     3487#: admin/views/Themes.php:564 admin/views/Themes.php:848
     3488#: admin/views/Themes.php:1125 admin/views/Themes.php:2102
     3489#: admin/views/Themes.php:2965
    34783490msgid "Title font color (Show on hover):"
    34793491msgstr ""
    34803492
    3481 #: admin/views/Themes.php:393 admin/views/Themes.php:689
    3482 #: admin/views/Themes.php:1013 admin/views/Themes.php:1459
    3483 #: admin/views/Themes.php:2091 admin/views/Themes.php:2701
    3484 #: admin/views/Themes.php:3080 admin/views/Themes.php:4284
     3493#: admin/views/Themes.php:571 admin/views/Themes.php:855
     3494#: admin/views/Themes.php:1132 admin/views/Themes.php:1542
     3495#: admin/views/Themes.php:2109 admin/views/Themes.php:2647
     3496#: admin/views/Themes.php:2972 admin/views/Themes.php:4068
    34853497msgid "Title font family:"
    34863498msgstr ""
    34873499
    3488 #: admin/views/Themes.php:415 admin/views/Themes.php:711
    3489 #: admin/views/Themes.php:1035 admin/views/Themes.php:2113
    3490 #: admin/views/Themes.php:2723 admin/views/Themes.php:3102
    3491 #: admin/views/Themes.php:4306 admin/views/Themes.php:5011
     3500#: admin/views/Themes.php:574 admin/views/Themes.php:858
     3501#: admin/views/Themes.php:1135 admin/views/Themes.php:2112
     3502#: admin/views/Themes.php:2650 admin/views/Themes.php:2975
     3503#: admin/views/Themes.php:4071 admin/views/Themes.php:4704
    34923504msgid "Title font weight:"
    34933505msgstr ""
    34943506
    3495 #: admin/views/Themes.php:429 admin/views/Themes.php:1049
    3496 #: admin/views/Themes.php:2127 admin/views/Themes.php:3116
     3507#: admin/views/Themes.php:588 admin/views/Themes.php:1149
     3508#: admin/views/Themes.php:2126 admin/views/Themes.php:2989
    34973509msgid "Title box shadow:"
    34983510msgstr ""
    34993511
    3500 #: admin/views/Themes.php:436 admin/views/Themes.php:725
    3501 #: admin/views/Themes.php:1056 admin/views/Themes.php:2134
    3502 #: admin/views/Themes.php:2650 admin/views/Themes.php:4965
     3512#: admin/views/Themes.php:595 admin/views/Themes.php:872
     3513#: admin/views/Themes.php:1156 admin/views/Themes.php:2133
     3514#: admin/views/Themes.php:2595 admin/views/Themes.php:4676
    35033515msgid "Title margin:"
    35043516msgstr ""
    35053517
    3506 #: admin/views/Themes.php:443 admin/views/Themes.php:766
    3507 #: admin/views/Themes.php:1063 admin/views/Themes.php:1820
    3508 #: admin/views/Themes.php:2196 admin/views/Themes.php:2830
    3509 #: admin/views/Themes.php:3178 admin/views/Themes.php:3482
     3518#: admin/views/Themes.php:602
     3519msgid "Thumb description font size:"
     3520msgstr ""
     3521
     3522#: admin/views/Themes.php:609
     3523msgid "Thumb description font color:"
     3524msgstr ""
     3525
     3526#: admin/views/Themes.php:616 admin/views/Themes.php:892
     3527#: admin/views/Themes.php:1585 admin/views/Themes.php:2710
     3528#: admin/views/Themes.php:4099
     3529msgid "Description font family:"
     3530msgstr ""
     3531
     3532#: admin/views/Themes.php:619 admin/views/Themes.php:895
     3533#: admin/views/Themes.php:1163 admin/views/Themes.php:1848
     3534#: admin/views/Themes.php:2177 admin/views/Themes.php:2739
     3535#: admin/views/Themes.php:3033 admin/views/Themes.php:3301
     3536#: admin/views/Themes.php:4718
    35103537msgid "Gallery title/description font size:"
    35113538msgstr ""
    35123539
    3513 #: admin/views/Themes.php:450 admin/views/Themes.php:772
    3514 #: admin/views/Themes.php:1069 admin/views/Themes.php:1827
    3515 #: admin/views/Themes.php:2202 admin/views/Themes.php:2836
    3516 #: admin/views/Themes.php:3184 admin/views/Themes.php:3489
     3540#: admin/views/Themes.php:626 admin/views/Themes.php:901
     3541#: admin/views/Themes.php:1169 admin/views/Themes.php:1855
     3542#: admin/views/Themes.php:2183 admin/views/Themes.php:2745
     3543#: admin/views/Themes.php:3039 admin/views/Themes.php:3308
     3544#: admin/views/Themes.php:4725
    35173545msgid "Gallery title/description font color:"
    35183546msgstr ""
    35193547
    3520 #: admin/views/Themes.php:456 admin/views/Themes.php:778
    3521 #: admin/views/Themes.php:1075 admin/views/Themes.php:1833
    3522 #: admin/views/Themes.php:2208 admin/views/Themes.php:2842
    3523 #: admin/views/Themes.php:3190 admin/views/Themes.php:3495
     3548#: admin/views/Themes.php:633 admin/views/Themes.php:908
     3549#: admin/views/Themes.php:1176 admin/views/Themes.php:1862
     3550#: admin/views/Themes.php:2190 admin/views/Themes.php:2752
     3551#: admin/views/Themes.php:3046 admin/views/Themes.php:3315
     3552#: admin/views/Themes.php:4732
    35243553msgid "Gallery title/description font family:"
    35253554msgstr ""
    35263555
    3527 #: admin/views/Themes.php:478 admin/views/Themes.php:800
    3528 #: admin/views/Themes.php:1097 admin/views/Themes.php:1855
    3529 #: admin/views/Themes.php:2230 admin/views/Themes.php:2864
    3530 #: admin/views/Themes.php:3212 admin/views/Themes.php:3517
     3556#: admin/views/Themes.php:636 admin/views/Themes.php:911
     3557#: admin/views/Themes.php:1179 admin/views/Themes.php:1865
     3558#: admin/views/Themes.php:2193 admin/views/Themes.php:2755
     3559#: admin/views/Themes.php:3049 admin/views/Themes.php:3318
     3560#: admin/views/Themes.php:4735
    35313561msgid "Gallery title/description font weight:"
    35323562msgstr ""
    35333563
    3534 #: admin/views/Themes.php:492 admin/views/Themes.php:814
    3535 #: admin/views/Themes.php:1111 admin/views/Themes.php:1869
    3536 #: admin/views/Themes.php:2244 admin/views/Themes.php:2878
    3537 #: admin/views/Themes.php:3226 admin/views/Themes.php:3531
     3564#: admin/views/Themes.php:650 admin/views/Themes.php:925
     3565#: admin/views/Themes.php:1193 admin/views/Themes.php:1879
     3566#: admin/views/Themes.php:2207 admin/views/Themes.php:2769
     3567#: admin/views/Themes.php:3063 admin/views/Themes.php:3332
     3568#: admin/views/Themes.php:4749
    35383569msgid "Gallery title/description box shadow:"
    35393570msgstr ""
    35403571
    3541 #: admin/views/Themes.php:499 admin/views/Themes.php:821
    3542 #: admin/views/Themes.php:1118 admin/views/Themes.php:1876
    3543 #: admin/views/Themes.php:2251 admin/views/Themes.php:2885
    3544 #: admin/views/Themes.php:3233 admin/views/Themes.php:3538
     3572#: admin/views/Themes.php:657 admin/views/Themes.php:932
     3573#: admin/views/Themes.php:1200 admin/views/Themes.php:1886
     3574#: admin/views/Themes.php:2214 admin/views/Themes.php:2776
     3575#: admin/views/Themes.php:3070 admin/views/Themes.php:3339
     3576#: admin/views/Themes.php:4756
    35453577msgid "Gallery title/description margin:"
    35463578msgstr ""
    35473579
    3548 #: admin/views/Themes.php:506 admin/views/Themes.php:828
    3549 #: admin/views/Themes.php:1125 admin/views/Themes.php:1883
    3550 #: admin/views/Themes.php:2258 admin/views/Themes.php:2892
    3551 #: admin/views/Themes.php:3240 admin/views/Themes.php:3545
    3552 #, fuzzy
     3580#: admin/views/Themes.php:664 admin/views/Themes.php:939
     3581#: admin/views/Themes.php:1207 admin/views/Themes.php:1893
     3582#: admin/views/Themes.php:2221 admin/views/Themes.php:2783
     3583#: admin/views/Themes.php:3077 admin/views/Themes.php:3346
     3584#: admin/views/Themes.php:4763
    35533585#| msgid "Gallery is empty."
    35543586msgid "Gallery title alignment:"
    3555 msgstr "Gallery is empty."
    3556 
    3557 #: admin/views/Themes.php:600 admin/views/Themes.php:922
    3558 #: admin/views/Themes.php:1991 admin/views/Themes.php:2385
    3559 #: admin/views/Themes.php:2987
     3587msgstr ""
     3588
     3589#: admin/views/Themes.php:758 admin/views/Themes.php:1033
     3590#: admin/views/Themes.php:2001 admin/views/Themes.php:2348
     3591#: admin/views/Themes.php:2878
    35603592msgid "E.g. Rotate: 10deg, Scale: 1.5, Skew: 10deg."
    35613593msgstr ""
    35623594
    3563 #: admin/views/Themes.php:631 admin/views/Themes.php:951
     3595#: admin/views/Themes.php:796 admin/views/Themes.php:1069
    35643596msgid "Transparency:"
    35653597msgstr ""
    35663598
    3567 #: admin/views/Themes.php:638 admin/views/Themes.php:958
     3599#: admin/views/Themes.php:803 admin/views/Themes.php:1076
    35683600msgid "Full Background color:"
    35693601msgstr ""
    35703602
    3571 #: admin/views/Themes.php:644 admin/views/Themes.php:964
    3572 #: admin/views/Themes.php:1686 admin/views/Themes.php:2485
    3573 #: admin/views/Themes.php:3274
     3603#: admin/views/Themes.php:809 admin/views/Themes.php:1082
     3604#: admin/views/Themes.php:1732 admin/views/Themes.php:2448
     3605#: admin/views/Themes.php:3111
    35743606msgid "Background transparency:"
    35753607msgstr ""
    35763608
    3577 #: admin/views/Themes.php:732 admin/views/Themes.php:1508
    3578 #: admin/views/Themes.php:2770 admin/views/Themes.php:4369
     3609#: admin/views/Themes.php:879 admin/views/Themes.php:1572
     3610#: admin/views/Themes.php:2697 admin/views/Themes.php:4116
    35793611msgid "Description font size:"
    35803612msgstr ""
    35813613
    3582 #: admin/views/Themes.php:738 admin/views/Themes.php:2776
    3583 #: admin/views/Themes.php:4327
     3614#: admin/views/Themes.php:885 admin/views/Themes.php:2703
     3615#: admin/views/Themes.php:4092
    35843616msgid "Description font color:"
    35853617msgstr ""
    35863618
    3587 #: admin/views/Themes.php:744 admin/views/Themes.php:1520
    3588 #: admin/views/Themes.php:2782 admin/views/Themes.php:4333
    3589 msgid "Description font family:"
    3590 msgstr ""
    3591 
    3592 #: admin/views/Themes.php:945 admin/views/Themes.php:1153
    3593 #: admin/views/Themes.php:1680 admin/views/Themes.php:2479
    3594 #: admin/views/Themes.php:3268 admin/views/Themes.php:4781
     3619#: admin/views/Themes.php:1235 admin/views/Themes.php:1726
     3620#: admin/views/Themes.php:2442 admin/views/Themes.php:3105
     3621#: admin/views/Themes.php:4492
    35953622msgid "Background color:"
    35963623msgstr ""
    35973624
    3598 #: admin/views/Themes.php:1159 admin/views/Themes.php:3846
    3599 #: admin/views/Themes.php:4794
     3625#: admin/views/Themes.php:1241 admin/views/Themes.php:3647
     3626#: admin/views/Themes.php:4505
    36003627msgid "Right, left buttons size:"
    36013628msgstr ""
    36023629
    3603 #: admin/views/Themes.php:1165 admin/views/Themes.php:4800
     3630#: admin/views/Themes.php:1247 admin/views/Themes.php:4511
    36043631msgid "Play, pause buttons size:"
    36053632msgstr ""
    36063633
    3607 #: admin/views/Themes.php:1171 admin/views/Themes.php:3416
    3608 #: admin/views/Themes.php:4806
     3634#: admin/views/Themes.php:1253 admin/views/Themes.php:3235
     3635#: admin/views/Themes.php:4517
    36093636msgid "Buttons color:"
    36103637msgstr ""
    36113638
    3612 #: admin/views/Themes.php:1177 admin/views/Themes.php:4812
     3639#: admin/views/Themes.php:1259 admin/views/Themes.php:4523
    36133640msgid "Buttons transparency:"
    36143641msgstr ""
    36153642
    3616 #: admin/views/Themes.php:1184 admin/views/Themes.php:4819
     3643#: admin/views/Themes.php:1266 admin/views/Themes.php:4530
    36173644msgid "Buttons hover color:"
    36183645msgstr ""
    36193646
    3620 #: admin/views/Themes.php:1190 admin/views/Themes.php:3840
    3621 #: admin/views/Themes.php:4825
     3647#: admin/views/Themes.php:1272 admin/views/Themes.php:3641
     3648#: admin/views/Themes.php:4536
    36223649msgid "Right, left buttons width:"
    36233650msgstr ""
    36243651
    3625 #: admin/views/Themes.php:1196 admin/views/Themes.php:3834
    3626 #: admin/views/Themes.php:4831
     3652#: admin/views/Themes.php:1278 admin/views/Themes.php:3635
     3653#: admin/views/Themes.php:4542
    36273654msgid "Right, left buttons height:"
    36283655msgstr ""
    36293656
    3630 #: admin/views/Themes.php:1202 admin/views/Themes.php:3815
    3631 #: admin/views/Themes.php:4837
     3657#: admin/views/Themes.php:1284 admin/views/Themes.php:3616
     3658#: admin/views/Themes.php:4548
    36323659msgid "Right, left buttons background color:"
    36333660msgstr ""
    36343661
    3635 #: admin/views/Themes.php:1208 admin/views/Themes.php:3871
    3636 #: admin/views/Themes.php:4843
     3662#: admin/views/Themes.php:1290 admin/views/Themes.php:3672
     3663#: admin/views/Themes.php:4554
    36373664msgid "Right, left buttons border width:"
    36383665msgstr ""
    36393666
    3640 #: admin/views/Themes.php:1214 admin/views/Themes.php:3877
    3641 #: admin/views/Themes.php:4849
     3667#: admin/views/Themes.php:1296 admin/views/Themes.php:3678
     3668#: admin/views/Themes.php:4560
    36423669msgid "Right, left buttons border style:"
    36433670msgstr ""
    36443671
    3645 #: admin/views/Themes.php:1228 admin/views/Themes.php:3891
    3646 #: admin/views/Themes.php:4863
     3672#: admin/views/Themes.php:1310 admin/views/Themes.php:3692
     3673#: admin/views/Themes.php:4574
    36473674msgid "Right, left buttons border color:"
    36483675msgstr ""
    36493676
    3650 #: admin/views/Themes.php:1234 admin/views/Themes.php:3864
    3651 #: admin/views/Themes.php:4869
     3677#: admin/views/Themes.php:1316 admin/views/Themes.php:3665
     3678#: admin/views/Themes.php:4580
    36523679msgid "Right, left buttons border radius:"
    36533680msgstr ""
    36543681
    3655 #: admin/views/Themes.php:1241 admin/views/Themes.php:3801
    3656 #: admin/views/Themes.php:4876
     3682#: admin/views/Themes.php:1323 admin/views/Themes.php:3602
     3683#: admin/views/Themes.php:4587
    36573684msgid "Right, left buttons style:"
    36583685msgstr ""
    36593686
    3660 #: admin/views/Themes.php:1255 admin/views/Themes.php:3827
     3687#: admin/views/Themes.php:1337 admin/views/Themes.php:3628
    36613688msgid "Right, left buttons box shadow:"
    36623689msgstr ""
    36633690
    3664 #: admin/views/Themes.php:1272
     3691#: admin/views/Themes.php:1354
    36653692msgid "Filmstrip/Slider bullet position:"
    36663693msgstr ""
    36673694
    3668 #: admin/views/Themes.php:1283
     3695#: admin/views/Themes.php:1365
    36693696msgid "Filmstrip margin:"
    36703697msgstr ""
    36713698
    3672 #: admin/views/Themes.php:1290
     3699#: admin/views/Themes.php:1372
    36733700msgid "Filmstrip border width:"
    36743701msgstr ""
    36753702
    3676 #: admin/views/Themes.php:1296
     3703#: admin/views/Themes.php:1378
    36773704msgid "Filmstrip border style:"
    36783705msgstr ""
    36793706
    3680 #: admin/views/Themes.php:1311
     3707#: admin/views/Themes.php:1393
    36813708msgid "Filmstrip border color:"
    36823709msgstr ""
    36833710
    3684 #: admin/views/Themes.php:1317
     3711#: admin/views/Themes.php:1399
    36853712msgid "Filmstrip border radius:"
    36863713msgstr ""
    36873714
    3688 #: admin/views/Themes.php:1324
     3715#: admin/views/Themes.php:1406
    36893716msgid "Filmstrip active border width:"
    36903717msgstr ""
    36913718
    3692 #: admin/views/Themes.php:1330
     3719#: admin/views/Themes.php:1412
    36933720msgid "Filmstrip active border color:"
    36943721msgstr ""
    36953722
    3696 #: admin/views/Themes.php:1336
     3723#: admin/views/Themes.php:1418
    36973724msgid "Filmstrip deactive transparency: "
    36983725msgstr ""
    36993726
    3700 #: admin/views/Themes.php:1343
     3727#: admin/views/Themes.php:1425
    37013728msgid "Filmstrip right, left buttons background color: "
    37023729msgstr ""
    37033730
    3704 #: admin/views/Themes.php:1349 admin/views/Themes.php:3973
     3731#: admin/views/Themes.php:1431 admin/views/Themes.php:3774
    37053732msgid "Filmstrip right, left buttons color:"
    37063733msgstr ""
    37073734
    3708 #: admin/views/Themes.php:1355 admin/views/Themes.php:3967
     3735#: admin/views/Themes.php:1437 admin/views/Themes.php:3768
    37093736msgid "Filmstrip right, left buttons size:"
    37103737msgstr ""
    37113738
    3712 #: admin/views/Themes.php:1361
     3739#: admin/views/Themes.php:1443
    37133740msgid "Slider bullet width: "
    37143741msgstr ""
    37153742
    3716 #: admin/views/Themes.php:1367
     3743#: admin/views/Themes.php:1449
    37173744msgid "Slider bullet height:"
    37183745msgstr ""
    37193746
    3720 #: admin/views/Themes.php:1373
     3747#: admin/views/Themes.php:1455
    37213748msgid "Slider bullet border radius: "
    37223749msgstr ""
    37233750
    3724 #: admin/views/Themes.php:1380
     3751#: admin/views/Themes.php:1462
    37253752msgid "Slider bullet background color:"
    37263753msgstr ""
    37273754
    3728 #: admin/views/Themes.php:1386
     3755#: admin/views/Themes.php:1468
    37293756msgid "Slider bullet margin:"
    37303757msgstr ""
    37313758
    3732 #: admin/views/Themes.php:1392
     3759#: admin/views/Themes.php:1474
    37333760msgid "Slider bullet active background color: "
    37343761msgstr ""
    37353762
    3736 #: admin/views/Themes.php:1398
     3763#: admin/views/Themes.php:1480
    37373764msgid "Slider bullet active border width:"
    37383765msgstr ""
    37393766
    3740 #: admin/views/Themes.php:1404
     3767#: admin/views/Themes.php:1486
    37413768msgid "Slider bullet active border color: "
    37423769msgstr ""
    37433770
    3744 #: admin/views/Themes.php:1420
     3771#: admin/views/Themes.php:1502
    37453772msgid "Title background color: "
    37463773msgstr ""
    37473774
    3748 #: admin/views/Themes.php:1426
     3775#: admin/views/Themes.php:1508
    37493776msgid "Title transparency: "
    37503777msgstr ""
    37513778
    3752 #: admin/views/Themes.php:1433 admin/views/Themes.php:4958
     3779#: admin/views/Themes.php:1515 admin/views/Themes.php:4669
    37533780msgid "Title border radius:"
    37543781msgstr ""
    37553782
    3756 #: admin/views/Themes.php:1440
     3783#: admin/views/Themes.php:1522
    37573784msgid "Title padding: "
    37583785msgstr ""
    37593786
    3760 #: admin/views/Themes.php:1447
     3787#: admin/views/Themes.php:1529
    37613788msgid "Title font size: "
    37623789msgstr ""
    37633790
    3764 #: admin/views/Themes.php:1453
     3791#: admin/views/Themes.php:1535
    37653792msgid "Title color: "
    37663793msgstr ""
    37673794
    3768 #: admin/views/Themes.php:1481 admin/views/Themes.php:1814
     3795#: admin/views/Themes.php:1545 admin/views/Themes.php:1842
    37693796msgid "Description background color:"
    37703797msgstr ""
    37713798
    3772 #: admin/views/Themes.php:1487
     3799#: admin/views/Themes.php:1551
    37733800msgid "Description transparency:"
    37743801msgstr ""
    37753802
    3776 #: admin/views/Themes.php:1494 admin/views/Themes.php:1807
     3803#: admin/views/Themes.php:1558 admin/views/Themes.php:1835
    37773804msgid "Description border radius:"
    37783805msgstr ""
    37793806
    3780 #: admin/views/Themes.php:1501 admin/views/Themes.php:1774
    3781 #: admin/views/Themes.php:2737
     3807#: admin/views/Themes.php:1565 admin/views/Themes.php:1802
     3808#: admin/views/Themes.php:2664
    37823809msgid "Description padding:"
    37833810msgstr ""
    37843811
    3785 #: admin/views/Themes.php:1514
     3812#: admin/views/Themes.php:1578
    37863813msgid "Description color:"
    37873814msgstr ""
    37883815
    3789 #: admin/views/Themes.php:1556
     3816#: admin/views/Themes.php:1602
    37903817msgid "Full padding:"
    37913818msgstr ""
    37923819
    3793 #: admin/views/Themes.php:1576
     3820#: admin/views/Themes.php:1622
    37943821msgid "Full border radius:"
    37953822msgstr ""
    37963823
    3797 #: admin/views/Themes.php:1583
     3824#: admin/views/Themes.php:1629
    37983825msgid "Full border width:"
    37993826msgstr ""
    38003827
    3801 #: admin/views/Themes.php:1589
     3828#: admin/views/Themes.php:1635
    38023829msgid "Full border style:"
    38033830msgstr ""
    38043831
    3805 #: admin/views/Themes.php:1603
     3832#: admin/views/Themes.php:1649
    38063833msgid "Full border color:"
    38073834msgstr ""
    38083835
    3809 #: admin/views/Themes.php:1633 admin/views/Themes.php:2466
    3810 #: admin/views/Themes.php:3295 admin/views/Themes.php:4672
     3836#: admin/views/Themes.php:1679 admin/views/Themes.php:2429
     3837#: admin/views/Themes.php:3132 admin/views/Themes.php:4383
     3838#: admin/views/Themes.php:4834
    38113839msgid "Margin:"
    38123840msgstr ""
    38133841
    3814 #: admin/views/Themes.php:1693 admin/views/Themes.php:3309
    3815 #: admin/views/Themes.php:4708
     3842#: admin/views/Themes.php:1739 admin/views/Themes.php:3146
     3843#: admin/views/Themes.php:4419
    38163844msgid "Box shadow:"
    38173845msgstr ""
    38183846
    3819 #: admin/views/Themes.php:1719
     3847#: admin/views/Themes.php:1765
    38203848msgid "Title alignment:"
    38213849msgstr ""
    38223850
    3823 #: admin/views/Themes.php:1733 admin/views/Themes.php:3348
    3824 #: admin/views/Themes.php:4581
     3851#: admin/views/Themes.php:1779 admin/views/Themes.php:3167
     3852#: admin/views/Themes.php:4310 admin/views/Themes.php:4810
    38253853msgid "Font size:"
    38263854msgstr ""
    38273855
    3828 #: admin/views/Themes.php:1739 admin/views/Themes.php:3354
    3829 #: admin/views/Themes.php:4587
     3856#: admin/views/Themes.php:1785 admin/views/Themes.php:3173
     3857#: admin/views/Themes.php:4316 admin/views/Themes.php:4816
    38303858msgid "Font color:"
    38313859msgstr ""
    38323860
    3833 #: admin/views/Themes.php:1745 admin/views/Themes.php:3326
    3834 #: admin/views/Themes.php:4593
     3861#: admin/views/Themes.php:1792 admin/views/Themes.php:3164
     3862#: admin/views/Themes.php:4323 admin/views/Themes.php:4821
    38353863msgid "Font family:"
    38363864msgstr ""
    38373865
    3838 #: admin/views/Themes.php:1767
     3866#: admin/views/Themes.php:1795
    38393867msgid "Description margin:"
    38403868msgstr ""
    38413869
    3842 #: admin/views/Themes.php:1781 admin/views/Themes.php:2744
     3870#: admin/views/Themes.php:1809 admin/views/Themes.php:2671
    38433871msgid "Description border width:"
    38443872msgstr ""
    38453873
    3846 #: admin/views/Themes.php:1787 admin/views/Themes.php:2750
     3874#: admin/views/Themes.php:1815 admin/views/Themes.php:2677
    38473875msgid "Description border style:"
    38483876msgstr ""
    38493877
    3850 #: admin/views/Themes.php:1801 admin/views/Themes.php:2764
     3878#: admin/views/Themes.php:1829 admin/views/Themes.php:2691
    38513879msgid "Description border color:"
    38523880msgstr ""
    38533881
    3854 #: admin/views/Themes.php:1995 admin/views/Themes.php:2338
    3855 #: admin/views/Themes.php:2991
     3882#: admin/views/Themes.php:2005 admin/views/Themes.php:2301
     3883#: admin/views/Themes.php:2882
    38563884msgid "Thumbnail transition:"
    38573885msgstr ""
    38583886
    3859 #: admin/views/Themes.php:2141 admin/views/Themes.php:3123
     3887#: admin/views/Themes.php:2140 admin/views/Themes.php:2996
    38603888msgid "Back Font size:"
    38613889msgstr ""
    38623890
    3863 #: admin/views/Themes.php:2147 admin/views/Themes.php:3129
    3864 #, fuzzy
     3891#: admin/views/Themes.php:2146 admin/views/Themes.php:3002
    38653892#| msgid "Share on Facebook"
    38663893msgid "Back Font color:"
    3867 msgstr "Share on Facebook"
    3868 
    3869 #: admin/views/Themes.php:2153 admin/views/Themes.php:3135
     3894msgstr ""
     3895
     3896#: admin/views/Themes.php:2153 admin/views/Themes.php:3009
    38703897msgid "Back Font family:"
    38713898msgstr ""
    38723899
    3873 #: admin/views/Themes.php:2175 admin/views/Themes.php:3157
     3900#: admin/views/Themes.php:2156 admin/views/Themes.php:3012
    38743901msgid "Back Font weight:"
    38753902msgstr ""
    38763903
    3877 #: admin/views/Themes.php:2189 admin/views/Themes.php:2525
    3878 #: admin/views/Themes.php:3171
     3904#: admin/views/Themes.php:2170 admin/views/Themes.php:2488
     3905#: admin/views/Themes.php:3026
    38793906msgid "Back padding:"
    38803907msgstr ""
    38813908
    3882 #: admin/views/Themes.php:2286
     3909#: admin/views/Themes.php:2249
    38833910msgid "Thumbnail margin:"
    38843911msgstr ""
    38853912
    3886 #: admin/views/Themes.php:2292
     3913#: admin/views/Themes.php:2255
    38873914msgid "Thumbnail padding:"
    38883915msgstr ""
    38893916
    3890 #: admin/views/Themes.php:2298
     3917#: admin/views/Themes.php:2261
    38913918msgid "Thumbnail border width:"
    38923919msgstr ""
    38933920
    3894 #: admin/views/Themes.php:2304
     3921#: admin/views/Themes.php:2267
    38953922msgid "Thumbnail border style:"
    38963923msgstr ""
    38973924
    3898 #: admin/views/Themes.php:2318
     3925#: admin/views/Themes.php:2281
    38993926msgid "Thumbnail border color:"
    39003927msgstr ""
    39013928
    3902 #: admin/views/Themes.php:2324
     3929#: admin/views/Themes.php:2287
    39033930msgid "Thumbnail border radius:"
    39043931msgstr ""
    39053932
     3933#: admin/views/Themes.php:2294
     3934msgid "Thumbnail box shadow:"
     3935msgstr ""
     3936
     3937#: admin/views/Themes.php:2310
     3938msgid "Description alignment:"
     3939msgstr ""
     3940
    39063941#: admin/views/Themes.php:2331
    3907 msgid "Thumbnail box shadow:"
    3908 msgstr ""
    3909 
    3910 #: admin/views/Themes.php:2347
    3911 msgid "Description alignment:"
    3912 msgstr ""
    3913 
    3914 #: admin/views/Themes.php:2368
    39153942msgid "Thumbnail hover effect:"
    39163943msgstr ""
    39173944
     3945#: admin/views/Themes.php:2358
     3946msgid "Thumbnails background color:"
     3947msgstr ""
     3948
     3949#: admin/views/Themes.php:2382
     3950msgid "Thumbnail div padding:"
     3951msgstr ""
     3952
     3953#: admin/views/Themes.php:2389
     3954msgid "Thumbnail div background color:"
     3955msgstr ""
     3956
    39183957#: admin/views/Themes.php:2395
    3919 msgid "Thumbnails background color:"
    3920 msgstr ""
    3921 
    3922 #: admin/views/Themes.php:2401
    3923 msgid "Thumbnail background transparency:"
    3924 msgstr ""
    3925 
    3926 #: admin/views/Themes.php:2419
    3927 msgid "Thumbnail div padding:"
    3928 msgstr ""
    3929 
    3930 #: admin/views/Themes.php:2426
    3931 msgid "Thumbnail div background color:"
    3932 msgstr ""
    3933 
    3934 #: admin/views/Themes.php:2432
    39353958msgid "Thumbnail div border width:"
    39363959msgstr ""
    39373960
    3938 #: admin/views/Themes.php:2439
     3961#: admin/views/Themes.php:2402
    39393962msgid "humbnail div border style:"
    39403963msgstr ""
    39413964
    3942 #: admin/views/Themes.php:2453
     3965#: admin/views/Themes.php:2416
    39433966msgid "Thumbnail div border color:"
    39443967msgstr ""
    39453968
    3946 #: admin/views/Themes.php:2459
     3969#: admin/views/Themes.php:2422
    39473970msgid "Thumbnail div border radius:"
    39483971msgstr ""
    39493972
    3950 #: admin/views/Themes.php:2499
     3973#: admin/views/Themes.php:2462
    39513974msgid "Separator width:"
    39523975msgstr ""
    39533976
    3954 #: admin/views/Themes.php:2505
     3977#: admin/views/Themes.php:2468
    39553978msgid "Separator style:"
    39563979msgstr ""
    39573980
    3958 #: admin/views/Themes.php:2519
     3981#: admin/views/Themes.php:2482
    39593982msgid "Separator color:"
    39603983msgstr ""
    39613984
    3962 #: admin/views/Themes.php:2532
     3985#: admin/views/Themes.php:2495
    39633986msgid "Back font size:"
    39643987msgstr ""
    39653988
    3966 #: admin/views/Themes.php:2538
     3989#: admin/views/Themes.php:2501
    39673990msgid "Back font color:"
    39683991msgstr ""
    39693992
    3970 #: admin/views/Themes.php:2544
     3993#: admin/views/Themes.php:2508
    39713994msgid "Back font family:"
    39723995msgstr ""
    39733996
    3974 #: admin/views/Themes.php:2566
     3997#: admin/views/Themes.php:2511
    39753998msgid "Back font weight:"
    39763999msgstr ""
    39774000
    3978 #: admin/views/Themes.php:2590
     4001#: admin/views/Themes.php:2535
    39794002msgid "Title/description alignment:"
    39804003msgstr ""
    39814004
    3982 #: admin/views/Themes.php:2604
     4005#: admin/views/Themes.php:2549
    39834006msgid "Text div padding:"
    39844007msgstr ""
    39854008
    3986 #: admin/views/Themes.php:2611
     4009#: admin/views/Themes.php:2556
    39874010msgid "Text div border width:"
    39884011msgstr ""
    39894012
    3990 #: admin/views/Themes.php:2617
     4013#: admin/views/Themes.php:2562
    39914014msgid "Text border style:"
    39924015msgstr ""
    39934016
    3994 #: admin/views/Themes.php:2631
     4017#: admin/views/Themes.php:2576
    39954018msgid "Text border color:"
    39964019msgstr ""
    39974020
    3998 #: admin/views/Themes.php:2637
     4021#: admin/views/Themes.php:2582
    39994022msgid "Text div border radius:"
    40004023msgstr ""
    40014024
    4002 #: admin/views/Themes.php:2644
     4025#: admin/views/Themes.php:2589
    40034026msgid "Text background color:"
    40044027msgstr ""
    40054028
    4006 #: admin/views/Themes.php:2656 admin/views/Themes.php:4971
     4029#: admin/views/Themes.php:2601 admin/views/Themes.php:4682
    40074030msgid "Title padding:"
    40084031msgstr ""
    40094032
    4010 #: admin/views/Themes.php:2663
     4033#: admin/views/Themes.php:2608
    40114034msgid "Title border width:"
    40124035msgstr ""
    40134036
    4014 #: admin/views/Themes.php:2669
     4037#: admin/views/Themes.php:2614
    40154038msgid "Title border style:"
    40164039msgstr ""
    40174040
    4018 #: admin/views/Themes.php:2683
     4041#: admin/views/Themes.php:2628
    40194042msgid "Title border color:"
    40204043msgstr ""
    40214044
    4022 #: admin/views/Themes.php:2804 admin/views/Themes.php:4355
     4045#: admin/views/Themes.php:2713 admin/views/Themes.php:4102
    40234046msgid "Description font weight:"
    40244047msgstr ""
    40254048
    4026 #: admin/views/Themes.php:2818
     4049#: admin/views/Themes.php:2727
    40274050msgid "Description more size:"
    40284051msgstr ""
    40294052
    4030 #: admin/views/Themes.php:2824
     4053#: admin/views/Themes.php:2733
    40314054msgid "Description more color:"
    40324055msgstr ""
    40334056
    4034 #: admin/views/Themes.php:3403
     4057#: admin/views/Themes.php:3222
    40354058msgid "Buttons and title margin:"
    40364059msgstr ""
    40374060
    4038 #: admin/views/Themes.php:3410
     4061#: admin/views/Themes.php:3229
    40394062msgid "Buttons size:"
    40404063msgstr ""
    40414064
    4042 #: admin/views/Themes.php:3422
     4065#: admin/views/Themes.php:3241
    40434066msgid "Buttons and title border width:"
    40444067msgstr ""
    40454068
    4046 #: admin/views/Themes.php:3428
     4069#: admin/views/Themes.php:3247
    40474070msgid "Buttons and title border style:"
    40484071msgstr ""
    40494072
    4050 #: admin/views/Themes.php:3442
     4073#: admin/views/Themes.php:3261
    40514074msgid "Buttons and title border color:"
    40524075msgstr ""
    40534076
    4054 #: admin/views/Themes.php:3448
     4077#: admin/views/Themes.php:3267
    40554078msgid "Buttons and title border radius:"
    40564079msgstr ""
    40574080
    4058 #: admin/views/Themes.php:3455
     4081#: admin/views/Themes.php:3274
    40594082msgid "Buttons and title background color:"
    40604083msgstr ""
    40614084
     4085#: admin/views/Themes.php:3280
     4086msgid "Buttons and title background transparency:"
     4087msgstr ""
     4088
     4089#: admin/views/Themes.php:3287
     4090msgid "Buttons or title alignment:"
     4091msgstr ""
     4092
     4093#: admin/views/Themes.php:3374
     4094msgid "Overlay background color:"
     4095msgstr ""
     4096
     4097#: admin/views/Themes.php:3380
     4098msgid "Overlay background transparency:"
     4099msgstr ""
     4100
     4101#: admin/views/Themes.php:3387
     4102msgid "Lightbox background color:"
     4103msgstr ""
     4104
     4105#: admin/views/Themes.php:3393
     4106msgid "Lightbox background transparency:"
     4107msgstr ""
     4108
     4109#: admin/views/Themes.php:3400
     4110msgid "Control buttons height:"
     4111msgstr ""
     4112
     4113#: admin/views/Themes.php:3406
     4114msgid "Control buttons margin (top):"
     4115msgstr ""
     4116
     4117#: admin/views/Themes.php:3412
     4118msgid "Control buttons margin (left):"
     4119msgstr ""
     4120
     4121#: admin/views/Themes.php:3418
     4122msgid "Control buttons position:"
     4123msgstr ""
     4124
     4125#: admin/views/Themes.php:3427
     4126msgid "Control buttons background color:"
     4127msgstr ""
     4128
     4129#: admin/views/Themes.php:3433
     4130msgid "Control buttons container border radius:"
     4131msgstr ""
     4132
     4133#: admin/views/Themes.php:3440
     4134msgid "Control buttons container background transparency:"
     4135msgstr ""
     4136
     4137#: admin/views/Themes.php:3447
     4138msgid "Control buttons alignment:"
     4139msgstr ""
     4140
    40624141#: admin/views/Themes.php:3461
    4063 msgid "Buttons and title background transparency:"
    4064 msgstr ""
    4065 
    4066 #: admin/views/Themes.php:3468
    4067 msgid "Buttons or title alignment:"
    4068 msgstr ""
    4069 
    4070 #: admin/views/Themes.php:3573
    4071 msgid "Overlay background color:"
    4072 msgstr ""
    4073 
    4074 #: admin/views/Themes.php:3579
    4075 msgid "Overlay background transparency:"
     4142msgid "Control buttons color:"
     4143msgstr ""
     4144
     4145#: admin/views/Themes.php:3467
     4146msgid "Control buttons transparency:"
     4147msgstr ""
     4148
     4149#: admin/views/Themes.php:3474
     4150msgid "Toggle button height:"
     4151msgstr ""
     4152
     4153#: admin/views/Themes.php:3480
     4154msgid "Toggle button width:"
     4155msgstr ""
     4156
     4157#: admin/views/Themes.php:3486
     4158msgid "Close button border radius:"
     4159msgstr ""
     4160
     4161#: admin/views/Themes.php:3494
     4162msgid "Close button border width:"
     4163msgstr ""
     4164
     4165#: admin/views/Themes.php:3500
     4166msgid "Close button border style:"
     4167msgstr ""
     4168
     4169#: admin/views/Themes.php:3514
     4170msgid "Close button border color:"
     4171msgstr ""
     4172
     4173#: admin/views/Themes.php:3520
     4174msgid "Close button box shadow:"
     4175msgstr ""
     4176
     4177#: admin/views/Themes.php:3527
     4178msgid "Close button background color:"
     4179msgstr ""
     4180
     4181#: admin/views/Themes.php:3530 admin/views/Themes.php:3543
     4182#: admin/views/Themes.php:3550 admin/views/Themes.php:3557
     4183#: admin/views/Themes.php:3564
     4184msgid "The option does not apply to Full-width lightbox."
     4185msgstr ""
     4186
     4187#: admin/views/Themes.php:3534
     4188msgid "Close button transparency:"
     4189msgstr ""
     4190
     4191#: admin/views/Themes.php:3540
     4192msgid "Close button width:"
     4193msgstr ""
     4194
     4195#: admin/views/Themes.php:3547
     4196msgid "Close button height:"
     4197msgstr ""
     4198
     4199#: admin/views/Themes.php:3554
     4200msgid "Close button top:"
     4201msgstr ""
     4202
     4203#: admin/views/Themes.php:3561
     4204msgid "Close button right:"
     4205msgstr ""
     4206
     4207#: admin/views/Themes.php:3568
     4208msgid "Close button size:"
     4209msgstr ""
     4210
     4211#: admin/views/Themes.php:3574
     4212msgid "Close button color:"
     4213msgstr ""
     4214
     4215#: admin/views/Themes.php:3580
     4216msgid "Fullscreen close button color:"
    40764217msgstr ""
    40774218
    40784219#: admin/views/Themes.php:3586
    4079 msgid "Lightbox background color:"
    4080 msgstr ""
    4081 
    4082 #: admin/views/Themes.php:3592
    4083 msgid "Lightbox background transparency:"
    4084 msgstr ""
    4085 
    4086 #: admin/views/Themes.php:3599
    4087 msgid "Control buttons height:"
    4088 msgstr ""
    4089 
    4090 #: admin/views/Themes.php:3605
    4091 msgid "Control buttons margin (top):"
    4092 msgstr ""
    4093 
    4094 #: admin/views/Themes.php:3611
    4095 msgid "Control buttons margin (left):"
    4096 msgstr ""
    4097 
    4098 #: admin/views/Themes.php:3617
    4099 msgid "Control buttons position:"
    4100 msgstr ""
    4101 
    4102 #: admin/views/Themes.php:3626
    4103 msgid "Control buttons background color:"
    4104 msgstr ""
    4105 
    4106 #: admin/views/Themes.php:3632
    4107 msgid "Control buttons container border radius:"
    4108 msgstr ""
    4109 
    4110 #: admin/views/Themes.php:3639
    4111 msgid "Control buttons container background transparency:"
    4112 msgstr ""
    4113 
    4114 #: admin/views/Themes.php:3646
    4115 msgid "Control buttons alignment:"
    4116 msgstr ""
    4117 
    4118 #: admin/views/Themes.php:3660
    4119 msgid "Control buttons color:"
    4120 msgstr ""
    4121 
    4122 #: admin/views/Themes.php:3666
    4123 msgid "Control buttons transparency:"
    4124 msgstr ""
    4125 
    4126 #: admin/views/Themes.php:3673
    4127 msgid "Toggle button height:"
    4128 msgstr ""
    4129 
    4130 #: admin/views/Themes.php:3679
    4131 msgid "Toggle button width:"
    4132 msgstr ""
    4133 
    4134 #: admin/views/Themes.php:3685
    4135 msgid "Close button border radius:"
    4136 msgstr ""
    4137 
    4138 #: admin/views/Themes.php:3693
    4139 msgid "Close button border width:"
    4140 msgstr ""
    4141 
    4142 #: admin/views/Themes.php:3699
    4143 msgid "Close button border style:"
    4144 msgstr ""
    4145 
    4146 #: admin/views/Themes.php:3713
    4147 msgid "Close button border color:"
    4148 msgstr ""
    4149 
    4150 #: admin/views/Themes.php:3719
    4151 msgid "Close button box shadow:"
    4152 msgstr ""
    4153 
    4154 #: admin/views/Themes.php:3726
    4155 msgid "Close button background color:"
    4156 msgstr ""
    4157 
    4158 #: admin/views/Themes.php:3729 admin/views/Themes.php:3742
    4159 #: admin/views/Themes.php:3749 admin/views/Themes.php:3756
    4160 #: admin/views/Themes.php:3763
    4161 msgid "The option does not apply to Full-width lightbox."
    4162 msgstr ""
    4163 
    4164 #: admin/views/Themes.php:3733
    4165 msgid "Close button transparency:"
    4166 msgstr ""
    4167 
    4168 #: admin/views/Themes.php:3739
    4169 msgid "Close button width:"
    4170 msgstr ""
    4171 
    4172 #: admin/views/Themes.php:3746
    4173 msgid "Close button height:"
    4174 msgstr ""
    4175 
    4176 #: admin/views/Themes.php:3753
    4177 msgid "Close button top:"
    4178 msgstr ""
    4179 
    4180 #: admin/views/Themes.php:3760
    4181 msgid "Close button right:"
    4182 msgstr ""
    4183 
    4184 #: admin/views/Themes.php:3767
    4185 msgid "Close button size:"
    4186 msgstr ""
    4187 
    4188 #: admin/views/Themes.php:3773
    4189 msgid "Close button color:"
    4190 msgstr ""
    4191 
    4192 #: admin/views/Themes.php:3779
    4193 msgid "Fullscreen close button color:"
    4194 msgstr ""
    4195 
    4196 #: admin/views/Themes.php:3785
    4197 #, fuzzy
    41984220#| msgid "Share on Facebook"
    41994221msgid "Share buttons color:"
    4200 msgstr "Share on Facebook"
    4201 
    4202 #: admin/views/Themes.php:3821
     4222msgstr ""
     4223
     4224#: admin/views/Themes.php:3622
    42034225msgid "Right, left buttons transparency:"
    42044226msgstr ""
    42054227
    4206 #: admin/views/Themes.php:3852
     4228#: admin/views/Themes.php:3653
    42074229msgid "Right, left, close buttons hover color:"
    42084230msgstr ""
    42094231
    4210 #: admin/views/Themes.php:3858
     4232#: admin/views/Themes.php:3659
    42114233msgid "Right, left buttons color:"
    42124234msgstr ""
    42134235
    4214 #: admin/views/Themes.php:3897
     4236#: admin/views/Themes.php:3698
    42154237msgid "Filmstrip position:"
    42164238msgstr ""
    42174239
    4218 #: admin/views/Themes.php:3908
     4240#: admin/views/Themes.php:3709
    42194241msgid "Filmstrip thumbnail margin:"
    42204242msgstr ""
    42214243
    4222 #: admin/views/Themes.php:3915
     4244#: admin/views/Themes.php:3716
    42234245msgid "Filmstrip thumbnail border width:"
    42244246msgstr ""
    42254247
    4226 #: admin/views/Themes.php:3921
     4248#: admin/views/Themes.php:3722
    42274249msgid "Filmstrip thumbnail border style:"
    42284250msgstr ""
    42294251
    4230 #: admin/views/Themes.php:3935
     4252#: admin/views/Themes.php:3736
    42314253msgid "Filmstrip thumbnail border color:"
    42324254msgstr ""
    42334255
    4234 #: admin/views/Themes.php:3941
     4256#: admin/views/Themes.php:3742
    42354257msgid "Filmstrip thumbnail border radius:"
    42364258msgstr ""
    42374259
    4238 #: admin/views/Themes.php:3948
     4260#: admin/views/Themes.php:3749
    42394261msgid "Filmstrip thumbnail active border width:"
    42404262msgstr ""
    42414263
    4242 #: admin/views/Themes.php:3954
     4264#: admin/views/Themes.php:3755
    42434265msgid "Filmstrip thumbnail active border color:"
    42444266msgstr ""
    42454267
    4246 #: admin/views/Themes.php:3960
     4268#: admin/views/Themes.php:3761
    42474269msgid "Filmstrip thumbnail deactive transparency:"
    42484270msgstr ""
    42494271
    4250 #: admin/views/Themes.php:3979
     4272#: admin/views/Themes.php:3780
    42514273msgid "Filmstrip right, left button background color:"
    42524274msgstr ""
    42534275
    4254 #: admin/views/Themes.php:3985
     4276#: admin/views/Themes.php:3786
    42554277msgid "Rating position:"
    42564278msgstr ""
    42574279
    4258 #: admin/views/Themes.php:3994
     4280#: admin/views/Themes.php:3795
    42594281msgid "Rating alignment:"
    42604282msgstr ""
    42614283
    4262 #: admin/views/Themes.php:4008
     4284#: admin/views/Themes.php:3809
    42634285msgid "Rating icon:"
    42644286msgstr ""
    42654287
    4266 #: admin/views/Themes.php:4022
     4288#: admin/views/Themes.php:3823
    42674289msgid "Rating color:"
    42684290msgstr ""
    42694291
    4270 #: admin/views/Themes.php:4028
     4292#: admin/views/Themes.php:3829
    42714293msgid "Rating hover color:"
    42724294msgstr ""
    42734295
     4296#: admin/views/Themes.php:3835
     4297msgid "Rating size:"
     4298msgstr ""
     4299
     4300#: admin/views/Themes.php:3841
     4301msgid "Rating icon count:"
     4302msgstr ""
     4303
     4304#: admin/views/Themes.php:3847
     4305msgid "Rating padding:"
     4306msgstr ""
     4307
     4308#: admin/views/Themes.php:3854
     4309msgid "Hit counter position:"
     4310msgstr ""
     4311
     4312#: admin/views/Themes.php:3863
     4313msgid "Hit counter alignment:"
     4314msgstr ""
     4315
     4316#: admin/views/Themes.php:3877
     4317msgid "Hit counter background color:"
     4318msgstr ""
     4319
     4320#: admin/views/Themes.php:3883
     4321msgid "Hit counter background transparency:"
     4322msgstr ""
     4323
     4324#: admin/views/Themes.php:3890
     4325msgid "Hit counter border width:"
     4326msgstr ""
     4327
     4328#: admin/views/Themes.php:3896
     4329msgid "Hit counter border style:"
     4330msgstr ""
     4331
     4332#: admin/views/Themes.php:3910
     4333msgid "Hit counter border color:"
     4334msgstr ""
     4335
     4336#: admin/views/Themes.php:3916
     4337msgid "Hit counter border radius:"
     4338msgstr ""
     4339
     4340#: admin/views/Themes.php:3923
     4341msgid "Hit counter padding:"
     4342msgstr ""
     4343
     4344#: admin/views/Themes.php:3930
     4345msgid "Hit counter margin:"
     4346msgstr ""
     4347
     4348#: admin/views/Themes.php:3937
     4349msgid "Hit counter font color:"
     4350msgstr ""
     4351
     4352#: admin/views/Themes.php:3944
     4353msgid "Hit counter font family:"
     4354msgstr ""
     4355
     4356#: admin/views/Themes.php:3947
     4357msgid "Hit counter font weight:"
     4358msgstr ""
     4359
     4360#: admin/views/Themes.php:3961
     4361msgid "Hit counter font size:"
     4362msgstr ""
     4363
     4364#: admin/views/Themes.php:3978
     4365msgid "Info position:"
     4366msgstr ""
     4367
     4368#: admin/views/Themes.php:3987
     4369msgid "Info alignment:"
     4370msgstr ""
     4371
     4372#: admin/views/Themes.php:4001
     4373msgid "Info background color:"
     4374msgstr ""
     4375
     4376#: admin/views/Themes.php:4007
     4377msgid "Info background transparency:"
     4378msgstr ""
     4379
     4380#: admin/views/Themes.php:4014
     4381msgid "Info border width:"
     4382msgstr ""
     4383
     4384#: admin/views/Themes.php:4020
     4385msgid "Info border style:"
     4386msgstr ""
     4387
    42744388#: admin/views/Themes.php:4034
    4275 msgid "Rating size:"
     4389msgid "Info border color:"
    42764390msgstr ""
    42774391
    42784392#: admin/views/Themes.php:4040
    4279 msgid "Rating icon count:"
    4280 msgstr ""
    4281 
    4282 #: admin/views/Themes.php:4046
    4283 msgid "Rating padding:"
    4284 msgstr ""
    4285 
    4286 #: admin/views/Themes.php:4053
    4287 msgid "Hit counter position:"
    4288 msgstr ""
    4289 
    4290 #: admin/views/Themes.php:4062
    4291 msgid "Hit counter alignment:"
    4292 msgstr ""
    4293 
    4294 #: admin/views/Themes.php:4076
    4295 msgid "Hit counter background color:"
    4296 msgstr ""
    4297 
    4298 #: admin/views/Themes.php:4082
    4299 msgid "Hit counter background transparency:"
    4300 msgstr ""
    4301 
    4302 #: admin/views/Themes.php:4089
    4303 msgid "Hit counter border width:"
    4304 msgstr ""
    4305 
    4306 #: admin/views/Themes.php:4095
    4307 msgid "Hit counter border style:"
    4308 msgstr ""
    4309 
    4310 #: admin/views/Themes.php:4109
    4311 msgid "Hit counter border color:"
    4312 msgstr ""
    4313 
    4314 #: admin/views/Themes.php:4115
    4315 msgid "Hit counter border radius:"
    4316 msgstr ""
    4317 
    4318 #: admin/views/Themes.php:4122
    4319 msgid "Hit counter padding:"
    4320 msgstr ""
    4321 
    4322 #: admin/views/Themes.php:4129
    4323 msgid "Hit counter margin:"
    4324 msgstr ""
    4325 
    4326 #: admin/views/Themes.php:4136
    4327 msgid "Hit counter font color:"
    4328 msgstr ""
    4329 
    4330 #: admin/views/Themes.php:4142
    4331 msgid "Hit counter font family:"
    4332 msgstr ""
    4333 
    4334 #: admin/views/Themes.php:4164
    4335 msgid "Hit counter font weight:"
    4336 msgstr ""
    4337 
    4338 #: admin/views/Themes.php:4178
    4339 msgid "Hit counter font size:"
    4340 msgstr ""
    4341 
    4342 #: admin/views/Themes.php:4195
    4343 msgid "Info position:"
    4344 msgstr ""
    4345 
    4346 #: admin/views/Themes.php:4204
    4347 msgid "Info alignment:"
    4348 msgstr ""
    4349 
    4350 #: admin/views/Themes.php:4218
    4351 msgid "Info background color:"
    4352 msgstr ""
    4353 
    4354 #: admin/views/Themes.php:4224
    4355 msgid "Info background transparency:"
    4356 msgstr ""
    4357 
    4358 #: admin/views/Themes.php:4231
    4359 msgid "Info border width:"
    4360 msgstr ""
    4361 
    4362 #: admin/views/Themes.php:4237
    4363 msgid "Info border style:"
    4364 msgstr ""
    4365 
    4366 #: admin/views/Themes.php:4251
    4367 msgid "Info border color:"
    4368 msgstr ""
    4369 
    4370 #: admin/views/Themes.php:4257
    43714393msgid "Info border radius:"
    43724394msgstr ""
    43734395
    4374 #: admin/views/Themes.php:4264
     4396#: admin/views/Themes.php:4047
    43754397msgid "Info padding:"
    43764398msgstr ""
    43774399
    4378 #: admin/views/Themes.php:4271
     4400#: admin/views/Themes.php:4054
    43794401msgid "Info margin:"
    43804402msgstr ""
    43814403
    4382 #: admin/views/Themes.php:4376
    4383 #, fuzzy
     4404#: admin/views/Themes.php:4123
    43844405#| msgid "Comment"
    43854406msgid "Comments Width:"
    4386 msgstr "Comment"
    4387 
    4388 #: admin/views/Themes.php:4382
     4407msgstr ""
     4408
     4409#: admin/views/Themes.php:4129
    43894410msgid "Comments position:"
    43904411msgstr ""
    43914412
    4392 #: admin/views/Themes.php:4391
     4413#: admin/views/Themes.php:4138
    43934414msgid "Comments background color:"
    43944415msgstr ""
    43954416
    4396 #: admin/views/Themes.php:4397
     4417#: admin/views/Themes.php:4144
    43974418msgid "Comments font size:"
    43984419msgstr ""
    43994420
     4421#: admin/views/Themes.php:4150
     4422msgid "Comments font color:"
     4423msgstr ""
     4424
     4425#: admin/views/Themes.php:4157
     4426msgid "Comments font family:"
     4427msgstr ""
     4428
     4429#: admin/views/Themes.php:4160
     4430msgid "Comments author font size:"
     4431msgstr ""
     4432
     4433#: admin/views/Themes.php:4167
     4434msgid "Comments date font size:"
     4435msgstr ""
     4436
     4437#: admin/views/Themes.php:4173
     4438msgid "Comments body font size:"
     4439msgstr ""
     4440
     4441#: admin/views/Themes.php:4179
     4442msgid "Comment input border width:"
     4443msgstr ""
     4444
     4445#: admin/views/Themes.php:4185
     4446msgid "omment input border style:"
     4447msgstr ""
     4448
     4449#: admin/views/Themes.php:4199
     4450msgid "Comment input border color:"
     4451msgstr ""
     4452
     4453#: admin/views/Themes.php:4205
     4454msgid "Comment input border radius:"
     4455msgstr ""
     4456
     4457#: admin/views/Themes.php:4211
     4458msgid "Comment input padding:"
     4459msgstr ""
     4460
     4461#: admin/views/Themes.php:4218
     4462msgid "Comment input background color:"
     4463msgstr ""
     4464
     4465#: admin/views/Themes.php:4224
     4466msgid "Comment button background color:"
     4467msgstr ""
     4468
     4469#: admin/views/Themes.php:4230
     4470msgid "Comment button padding:"
     4471msgstr ""
     4472
     4473#: admin/views/Themes.php:4237
     4474msgid "Comment button border width:"
     4475msgstr ""
     4476
     4477#: admin/views/Themes.php:4243
     4478msgid "Comment button border style:"
     4479msgstr ""
     4480
     4481#: admin/views/Themes.php:4257
     4482msgid "Comment button border color:"
     4483msgstr ""
     4484
     4485#: admin/views/Themes.php:4263
     4486msgid "omment button border radius:"
     4487msgstr ""
     4488
     4489#: admin/views/Themes.php:4270
     4490msgid "Comment separator width:"
     4491msgstr ""
     4492
     4493#: admin/views/Themes.php:4276
     4494msgid "Comment separator style:"
     4495msgstr ""
     4496
     4497#: admin/views/Themes.php:4290
     4498msgid "Comment separator color:"
     4499msgstr ""
     4500
     4501#: admin/views/Themes.php:4326 admin/views/Themes.php:4824
     4502msgid "Font weight:"
     4503msgstr ""
     4504
     4505#: admin/views/Themes.php:4397 admin/views/Themes.php:4875
     4506msgid "Button background color:"
     4507msgstr ""
     4508
    44004509#: admin/views/Themes.php:4403
    4401 msgid "Comments font color:"
    4402 msgstr ""
    4403 
    4404 #: admin/views/Themes.php:4409
    4405 msgid "Comments font family:"
    4406 msgstr ""
    4407 
    4408 #: admin/views/Themes.php:4431
    4409 msgid "Comments author font size:"
    4410 msgstr ""
    4411 
    4412 #: admin/views/Themes.php:4438
    4413 msgid "Comments date font size:"
    4414 msgstr ""
    4415 
    4416 #: admin/views/Themes.php:4444
    4417 msgid "Comments body font size:"
    4418 msgstr ""
    4419 
    4420 #: admin/views/Themes.php:4450
    4421 msgid "Comment input border width:"
    4422 msgstr ""
    4423 
    4424 #: admin/views/Themes.php:4456
    4425 msgid "omment input border style:"
    4426 msgstr ""
    4427 
    4428 #: admin/views/Themes.php:4470
    4429 msgid "Comment input border color:"
    4430 msgstr ""
    4431 
    4432 #: admin/views/Themes.php:4476
    4433 msgid "Comment input border radius:"
    4434 msgstr ""
    4435 
    4436 #: admin/views/Themes.php:4482
    4437 msgid "Comment input padding:"
    4438 msgstr ""
    4439 
    4440 #: admin/views/Themes.php:4489
    4441 msgid "Comment input background color:"
    4442 msgstr ""
    4443 
    4444 #: admin/views/Themes.php:4495
    4445 msgid "Comment button background color:"
    4446 msgstr ""
    4447 
    4448 #: admin/views/Themes.php:4501
    4449 msgid "Comment button padding:"
    4450 msgstr ""
    4451 
    4452 #: admin/views/Themes.php:4508
    4453 msgid "Comment button border width:"
    4454 msgstr ""
    4455 
    4456 #: admin/views/Themes.php:4514
    4457 msgid "Comment button border style:"
    4458 msgstr ""
    4459 
    4460 #: admin/views/Themes.php:4528
    4461 msgid "Comment button border color:"
    4462 msgstr ""
    4463 
    4464 #: admin/views/Themes.php:4534
    4465 msgid "omment button border radius:"
    4466 msgstr ""
    4467 
    4468 #: admin/views/Themes.php:4541
    4469 msgid "Comment separator width:"
    4470 msgstr ""
    4471 
    4472 #: admin/views/Themes.php:4547
    4473 msgid "Comment separator style:"
    4474 msgstr ""
    4475 
    4476 #: admin/views/Themes.php:4561
    4477 msgid "Comment separator color:"
    4478 msgstr ""
    4479 
    4480 #: admin/views/Themes.php:4615
    4481 msgid "Font weight:"
    4482 msgstr ""
    4483 
    4484 #: admin/views/Themes.php:4686
    4485 msgid "Button background color:"
    4486 msgstr ""
    4487 
    4488 #: admin/views/Themes.php:4692
    44894510msgid "Button background transparency:"
    44904511msgstr ""
    44914512
    4492 #: admin/views/Themes.php:4699
     4513#: admin/views/Themes.php:4410
    44934514msgid "Button transition:"
    44944515msgstr ""
    44954516
    4496 #: admin/views/Themes.php:4725
     4517#: admin/views/Themes.php:4436
    44974518msgid "Position:"
    44984519msgstr ""
    44994520
    4500 #: admin/views/Themes.php:4748
     4521#: admin/views/Themes.php:4459
    45014522msgid "Numbering:"
    45024523msgstr ""
    45034524
    4504 #: admin/views/Themes.php:4757
     4525#: admin/views/Themes.php:4468
    45054526msgid "Button text:"
    45064527msgstr ""
    45074528
    4508 #: admin/views/Themes.php:4762
     4529#: admin/views/Themes.php:4473
    45094530msgid "Arrow"
    45104531msgstr ""
    45114532
    4512 #: admin/views/Themes.php:4763
     4533#: admin/views/Themes.php:4474
    45134534msgid "Next, previous buttons values."
    45144535msgstr ""
    45154536
    4516 #: admin/views/Themes.php:4787
     4537#: admin/views/Themes.php:4498
    45174538msgid "Container opacity:"
    45184539msgstr ""
    45194540
    4520 #: admin/views/Themes.php:4900
     4541#: admin/views/Themes.php:4611
    45214542msgid "Carousel margin:"
    45224543msgstr ""
    45234544
    4524 #: admin/views/Themes.php:4906
     4545#: admin/views/Themes.php:4617
    45254546msgid "Image border width:"
    45264547msgstr ""
    45274548
    4528 #: admin/views/Themes.php:4913
     4549#: admin/views/Themes.php:4624
    45294550msgid "Image border style:"
    45304551msgstr ""
    45314552
    4532 #: admin/views/Themes.php:4928
     4553#: admin/views/Themes.php:4639
    45334554msgid "Image border color:"
    45344555msgstr ""
    45354556
    4536 #: admin/views/Themes.php:4944
     4557#: admin/views/Themes.php:4655
    45374558msgid "Title background color:"
    45384559msgstr ""
    45394560
    4540 #: admin/views/Themes.php:4951
     4561#: admin/views/Themes.php:4662
    45414562msgid "Title opacity:"
    45424563msgstr ""
    45434564
    4544 #: admin/views/Themes.php:4978
     4565#: admin/views/Themes.php:4690
    45454566msgid "Title Font family:"
    45464567msgstr ""
    45474568
    4548 #: admin/views/Themes.php:5005
     4569#: admin/views/Themes.php:4698
    45494570msgid "Title color:"
     4571msgstr ""
     4572
     4573#: admin/views/Themes.php:4791
     4574#| msgid "Gallery is empty."
     4575msgid "Tags filter type:"
     4576msgstr ""
     4577
     4578#: admin/views/Themes.php:4794
     4579#| msgid "Reset"
     4580msgid "Select Box"
     4581msgstr ""
     4582
     4583#: admin/views/Themes.php:4796
     4584msgid "Buttons"
     4585msgstr ""
     4586
     4587#: admin/views/Themes.php:4879
     4588msgid "Active Button background color:"
     4589msgstr ""
     4590
     4591#: admin/views/Themes.php:4883
     4592#| msgid "Share on Facebook"
     4593msgid "Active Button font color:"
     4594msgstr ""
     4595
     4596#: admin/views/Themes.php:4887
     4597msgid "See All Button Font size:"
     4598msgstr ""
     4599
     4600#: admin/views/Themes.php:4893
     4601#| msgid "Share on Facebook"
     4602msgid "See All Button Font color:"
     4603msgstr ""
     4604
     4605#: admin/views/Themes.php:4897
     4606msgid "See All Button background color:"
     4607msgstr ""
     4608
     4609#: admin/views/Themes.php:4901
     4610msgid "See All Button Border width:"
     4611msgstr ""
     4612
     4613#: admin/views/Themes.php:4907
     4614#| msgid "Order by: "
     4615msgid "See All Button Border style:"
     4616msgstr ""
     4617
     4618#: admin/views/Themes.php:4917
     4619#| msgid "Share on Facebook"
     4620msgid "See All Button Border color:"
     4621msgstr ""
     4622
     4623#: admin/views/Themes.php:4921
     4624msgid "See All Button Border radius:"
    45504625msgstr ""
    45514626
     
    46134688msgstr ""
    46144689
    4615 #: admin/views/Widget.php:98 photo-gallery.php:92
    4616 msgid "Photo Gallery"
    4617 msgstr ""
    4618 
    4619 #: admin/views/Widget.php:115 admin/views/WidgetSlideshow.php:82
     4690#: admin/views/Widget.php:114 admin/views/WidgetSlideshow.php:82
    46204691#: admin/views/WidgetTags.php:78
    46214692msgid "Title:"
    46224693msgstr ""
    46234694
    4624 #: admin/views/Widget.php:119 admin/views/WidgetTags.php:82
     4695#: admin/views/Widget.php:118 admin/views/WidgetTags.php:82
    46254696msgid "Type:"
    46264697msgstr ""
    46274698
    4628 #: admin/views/Widget.php:121
     4699#: admin/views/Widget.php:120
    46294700msgid "Gallery groups"
    46304701msgstr ""
    46314702
    4632 #: admin/views/Widget.php:124 admin/views/WidgetSlideshow.php:86
     4703#: admin/views/Widget.php:123 admin/views/WidgetSlideshow.php:86
    46334704msgid "Galleries:"
    46344705msgstr ""
    46354706
    4636 #: admin/views/Widget.php:137
    4637 #, fuzzy
     4707#: admin/views/Widget.php:136
    46384708#| msgid "Gallery is empty."
    46394709msgid "Gallery Type:"
    4640 msgstr "Gallery is empty."
    4641 
    4642 #: admin/views/Widget.php:145
     4710msgstr ""
     4711
     4712#: admin/views/Widget.php:144
    46434713msgid "Gallery Groups:"
    46444714msgstr ""
    46454715
    4646 #: admin/views/Widget.php:147
     4716#: admin/views/Widget.php:146
    46474717msgid "All Galleries"
    46484718msgstr ""
    46494719
    4650 #: admin/views/Widget.php:158
     4720#: admin/views/Widget.php:157
    46514721msgid "Sort:"
    46524722msgstr ""
    46534723
    4654 #: admin/views/Widget.php:160 frontend/views/view.php:639
     4724#: admin/views/Widget.php:159 frontend/views/view.php:825
    46554725msgid "First"
    4656 msgstr "First"
    4657 
    4658 #: admin/views/Widget.php:161 frontend/views/view.php:642
     4726msgstr ""
     4727
     4728#: admin/views/Widget.php:160 frontend/views/view.php:828
    46594729msgid "Last"
    4660 msgstr "Last"
    4661 
    4662 #: admin/views/Widget.php:165
     4730msgstr ""
     4731
     4732#: admin/views/Widget.php:164
    46634733msgid "Count:"
    46644734msgstr ""
    46654735
    4666 #: admin/views/Widget.php:169 admin/views/WidgetSlideshow.php:131
     4736#: admin/views/Widget.php:168 admin/views/WidgetSlideshow.php:131
    46674737#: admin/views/WidgetTags.php:105
    46684738msgid "Dimensions:"
    46694739msgstr ""
    46704740
    4671 #: admin/views/Widget.php:174 admin/views/WidgetSlideshow.php:147
     4741#: admin/views/Widget.php:173 admin/views/WidgetSlideshow.php:147
    46724742#: admin/views/WidgetTags.php:124
    46734743msgid "Themes:"
    46744744msgstr ""
    46754745
    4676 #: admin/views/WidgetSlideshow.php:67 photo-gallery.php:1680
     4746#: admin/views/WidgetSlideshow.php:67 photo-gallery.php:1709
    46774747msgid "Photo Gallery Slideshow"
    46784748msgstr ""
     
    47064776msgstr ""
    47074777
    4708 #: admin/views/WidgetTags.php:63 photo-gallery.php:1676
     4778#: admin/views/WidgetTags.php:63 photo-gallery.php:1705
    47094779msgid "Photo Gallery Tags Cloud"
    47104780msgstr ""
     
    47664836msgstr ""
    47674837
    4768 #: filemanager/controller.php:263
     4838#: filemanager/controller.php:275
    47694839msgid "File doesn't exist."
    47704840msgstr ""
    47714841
    4772 #: filemanager/controller.php:267 filemanager/controller.php:300
    4773 #: filemanager/controller.php:332
     4842#: filemanager/controller.php:279 filemanager/controller.php:338
     4843#: filemanager/controller.php:378
    47744844msgid "Can't rename the file."
    47754845msgstr ""
    47764846
    4777 #: filemanager/controller.php:371
     4847#: filemanager/controller.php:417
    47784848msgid "Some of the files couldn't be removed."
    47794849msgstr ""
    47804850
    4781 #: filemanager/controller.php:481
     4851#: filemanager/controller.php:528
    47824852msgid "Failed to copy some of the files."
    47834853msgstr ""
    47844854
    4785 #: filemanager/controller.php:528
     4855#: filemanager/controller.php:575
    47864856msgid "Failed to move some of the files."
    47874857msgstr ""
     
    48114881msgstr ""
    48124882
    4813 #: filemanager/view.php:93
     4883#: filemanager/view.php:96
    48144884msgid "Up"
    48154885msgstr ""
    48164886
    4817 #: filemanager/view.php:94
     4887#: filemanager/view.php:97
    48184888msgid "Make a directory"
    48194889msgstr ""
    48204890
    4821 #: filemanager/view.php:95
     4891#: filemanager/view.php:98
    48224892msgid "Rename item"
    48234893msgstr ""
    48244894
    4825 #: filemanager/view.php:97 framework/howto/data.php:168
     4895#: filemanager/view.php:100 framework/howto/data.php:168
    48264896msgid "Copy"
    48274897msgstr ""
    48284898
    4829 #: filemanager/view.php:98
     4899#: filemanager/view.php:101
    48304900msgid "Cut"
    48314901msgstr ""
    48324902
    4833 #: filemanager/view.php:99
     4903#: filemanager/view.php:102
    48344904msgid "Paste"
    48354905msgstr ""
    48364906
    4837 #: filemanager/view.php:100
    4838 #, fuzzy
     4907#: filemanager/view.php:103
    48394908#| msgid " item(s)"
    48404909msgid "Remove items"
    4841 msgstr "item(s)"
    4842 
    4843 #: filemanager/view.php:102
     4910msgstr ""
     4911
     4912#: filemanager/view.php:105
    48444913msgid "Refresh"
    48454914msgstr ""
    48464915
    4847 #: filemanager/view.php:106
     4916#: filemanager/view.php:109
    48484917msgid "View thumbs"
    48494918msgstr ""
    48504919
    4851 #: filemanager/view.php:107
     4920#: filemanager/view.php:110
    48524921msgid "View list"
    48534922msgstr ""
    48544923
    4855 #: filemanager/view.php:111
     4924#: filemanager/view.php:114
    48564925msgid "Upload files"
    48574926msgstr ""
    48584927
    4859 #: filemanager/view.php:130
    4860 #, fuzzy
     4928#: filemanager/view.php:133
    48614929#| msgid "Order by: "
    48624930msgid "Order by:"
    4863 msgstr "Order by: "
    4864 
    4865 #: filemanager/view.php:132
     4931msgstr ""
     4932
     4933#: filemanager/view.php:135
    48664934msgid "Click to sort by name"
    48674935msgstr ""
    48684936
    4869 #: filemanager/view.php:148
     4937#: filemanager/view.php:151
    48704938msgid "Click to sort by size"
    48714939msgstr ""
    48724940
    4873 #: filemanager/view.php:164
     4941#: filemanager/view.php:167
    48744942msgid "Click to sort by date modified"
    48754943msgstr ""
    48764944
    4877 #: filemanager/view.php:167
     4945#: filemanager/view.php:170
    48784946msgid "Date modified"
    48794947msgstr ""
    48804948
    4881 #: filemanager/view.php:198
     4949#: filemanager/view.php:201
    48824950msgid "No items found."
    48834951msgstr ""
    48844952
    4885 #: filemanager/view.php:213
    4886 #, fuzzy
     4953#: filemanager/view.php:216
    48874954#| msgid "There are no images in this gallery."
    48884955msgid "Add selected images to gallery"
    4889 msgstr "There are no images in this gallery."
    4890 
    4891 #: filemanager/view.php:228
     4956msgstr ""
     4957
     4958#: filemanager/view.php:231 frontend/views/view.php:333
     4959msgid "Back"
     4960msgstr ""
     4961
     4962#: filemanager/view.php:234
    48924963msgid "Thumbnail Max Dimensions:"
    48934964msgstr ""
    48944965
    4895 #: filemanager/view.php:229
     4966#: filemanager/view.php:235
    48964967msgid "Thumbnail:"
    48974968msgstr ""
    48984969
    4899 #: filemanager/view.php:234 frontend/views/view.php:241
    4900 msgid "Back"
    4901 msgstr "Back"
    4902 
    4903 #: filemanager/view.php:237
     4970#: filemanager/view.php:240
    49044971msgid "Image Max Dimensions:"
    49054972msgstr ""
    49064973
    4907 #: filemanager/view.php:238
     4974#: filemanager/view.php:241
    49084975msgid "Image:"
    49094976msgstr ""
    49104977
    4911 #: filemanager/view.php:246
     4978#: filemanager/view.php:249
    49124979msgid "Drag files here"
    49134980msgstr ""
    49144981
    4915 #: filemanager/view.php:246
     4982#: filemanager/view.php:249
    49164983msgid "Select Files"
    49174984msgstr ""
    49184985
    4919 #: filemanager/view.php:265
     4986#: filemanager/view.php:268
    49204987msgid "No files to upload"
    49214988msgstr ""
    49224989
    4923 #: filemanager/view.php:292
     4990#: filemanager/view.php:295
    49244991msgid "Uploaded"
    49254992msgstr ""
    49264993
    4927 #: filemanager/view.php:293
     4994#: filemanager/view.php:296
    49284995msgid "Upload failed"
    49294996msgstr ""
    49304997
    4931 #: filemanager/view.php:294
     4998#: filemanager/view.php:297
    49324999msgid ""
    49335000"There has been a problem while trying to upload the following images. Please "
     
    49355002msgstr ""
    49365003
    4937 #: filemanager/view.php:295
     5004#: filemanager/view.php:298
    49385005msgid "Allowed upload types JPG, JPEG, GIF, PNG, SVG."
    49395006msgstr ""
    49405007
    4941 #: framework/WDWLibrary.php:69
     5008#: framework/WDWLibrary.php:87
    49425009msgid "Item successfully saved."
    49435010msgstr ""
    49445011
    4945 #: framework/WDWLibrary.php:75 framework/WDWLibrary.php:178
     5012#: framework/WDWLibrary.php:93 framework/WDWLibrary.php:196
    49465013msgid "Failed."
    49475014msgstr ""
    49485015
    4949 #: framework/WDWLibrary.php:81
     5016#: framework/WDWLibrary.php:99
    49505017msgid "Item successfully deleted."
    49515018msgstr ""
    49525019
    4953 #: framework/WDWLibrary.php:87
     5020#: framework/WDWLibrary.php:105
    49545021msgid "You can't delete default theme."
    49555022msgstr ""
    49565023
    4957 #: framework/WDWLibrary.php:93
    4958 msgid "Items Successfully Deleted."
    4959 msgstr ""
    4960 
    4961 #: framework/WDWLibrary.php:99
     5024#: framework/WDWLibrary.php:111
     5025msgid "Items successfully deleted."
     5026msgstr ""
     5027
     5028#: framework/WDWLibrary.php:117
    49625029msgid "You must set watermark type from Options page."
    49635030msgstr ""
    49645031
    4965 #: framework/WDWLibrary.php:105
     5032#: framework/WDWLibrary.php:123
    49665033msgid "The item is successfully set as default."
    49675034msgstr ""
    49685035
    4969 #: framework/WDWLibrary.php:111
     5036#: framework/WDWLibrary.php:129
    49705037msgid "Options successfully saved."
    49715038msgstr ""
    49725039
    4973 #: framework/WDWLibrary.php:117
     5040#: framework/WDWLibrary.php:135
    49745041msgid "Item successfully published."
    49755042msgstr ""
    49765043
    4977 #: framework/WDWLibrary.php:123
     5044#: framework/WDWLibrary.php:141
    49785045msgid "Item successfully unpublished."
    49795046msgstr ""
    49805047
    4981 #: framework/WDWLibrary.php:129
     5048#: framework/WDWLibrary.php:147
    49825049msgid "Item successfully duplicated."
    49835050msgstr ""
    49845051
    4985 #: framework/WDWLibrary.php:136
    4986 msgid "Items Succesfully Unpublished."
    4987 msgstr ""
    4988 
    4989 #: framework/WDWLibrary.php:142
    4990 msgid "Ordering Succesfully Saved."
    4991 msgstr ""
    4992 
    4993 #: framework/WDWLibrary.php:148
     5052#: framework/WDWLibrary.php:154
     5053msgid "Items successfully unpublished."
     5054msgstr ""
     5055
     5056#: framework/WDWLibrary.php:160
     5057msgid "Ordering successfully saved."
     5058msgstr ""
     5059
     5060#: framework/WDWLibrary.php:166
    49945061msgid "A term with the name provided already exists."
    49955062msgstr ""
    49965063
    4997 #: framework/WDWLibrary.php:154
     5064#: framework/WDWLibrary.php:172
    49985065msgid "Name field is required."
    49995066msgstr ""
    50005067
    5001 #: framework/WDWLibrary.php:160
     5068#: framework/WDWLibrary.php:178
    50025069msgid "The slug must be unique."
    50035070msgstr ""
    50045071
    5005 #: framework/WDWLibrary.php:166
     5072#: framework/WDWLibrary.php:184
    50065073msgid "Changes must be saved."
    50075074msgstr ""
    50085075
    5009 #: framework/WDWLibrary.php:172
     5076#: framework/WDWLibrary.php:190
    50105077msgid "Theme successfully copied."
    50115078msgstr ""
    50125079
    5013 #: framework/WDWLibrary.php:183
     5080#: framework/WDWLibrary.php:201
    50145081msgid "Items were reset successfully."
    50155082msgstr ""
    50165083
    5017 #: framework/WDWLibrary.php:188
     5084#: framework/WDWLibrary.php:206
    50185085msgid "Watermark successfully set."
    50195086msgstr ""
    50205087
    5021 #: framework/WDWLibrary.php:193
     5088#: framework/WDWLibrary.php:211
    50225089msgid "Items successfully rotated."
    50235090msgstr ""
    50245091
    5025 #: framework/WDWLibrary.php:198
     5092#: framework/WDWLibrary.php:216
    50265093msgid "Items successfully recreated."
    50275094msgstr ""
    50285095
    5029 #: framework/WDWLibrary.php:203
     5096#: framework/WDWLibrary.php:221
    50305097msgid "Items successfully resized."
    50315098msgstr ""
    50325099
    5033 #: framework/WDWLibrary.php:208
     5100#: framework/WDWLibrary.php:226
    50345101msgid "Items successfully edited."
    50355102msgstr ""
    50365103
    5037 #: framework/WDWLibrary.php:269
     5104#: framework/WDWLibrary.php:241
     5105msgid "All items are successfully duplicated."
     5106msgstr ""
     5107
     5108#: framework/WDWLibrary.php:246
     5109msgid "Connected successfully."
     5110msgstr ""
     5111
     5112#: framework/WDWLibrary.php:251
     5113msgid "Connect successfully deleted."
     5114msgstr ""
     5115
     5116#: framework/WDWLibrary.php:302
    50385117msgid "Click to sort by this item"
    50395118msgstr ""
    50405119
    5041 #: framework/WDWLibrary.php:451 framework/WDWLibrary.php:600
    5042 msgid "item"
    5043 msgstr ""
    5044 
    5045 #: framework/WDWLibrary.php:2156
     5120#: framework/WDWLibrary.php:317
     5121#| msgid "Default"
     5122msgid "Default sorting"
     5123msgstr ""
     5124
     5125#: framework/WDWLibrary.php:318
     5126#| msgid "Filename"
     5127msgid "File name (Asc)"
     5128msgstr ""
     5129
     5130#: framework/WDWLibrary.php:319
     5131#| msgid "Filename"
     5132msgid "File name (Desc)"
     5133msgstr ""
     5134
     5135#: framework/WDWLibrary.php:320
     5136msgid "Alt/Title (Asc)"
     5137msgstr ""
     5138
     5139#: framework/WDWLibrary.php:321
     5140msgid "Alt/Title (Desc)"
     5141msgstr ""
     5142
     5143#: framework/WDWLibrary.php:322
     5144msgid "Description (Asc)"
     5145msgstr ""
     5146
     5147#: framework/WDWLibrary.php:323
     5148msgid "Description (Desc)"
     5149msgstr ""
     5150
     5151#: framework/WDWLibrary.php:2362
    50465152#, php-format
    50475153msgid "No %s found."
    50485154msgstr ""
    50495155
    5050 #: framework/WDWLibrary.php:2212
    5051 #, fuzzy
     5156#: framework/WDWLibrary.php:2418
    50525157#| msgid "Gallery is empty."
    50535158msgid "Gallery Tags"
    5054 msgstr "Gallery is empty."
    5055 
    5056 #: framework/WDWLibrary.php:2423
     5159msgstr ""
     5160
     5161#: framework/WDWLibrary.php:2647
    50575162msgid "resized"
    50585163msgstr ""
    50595164
    5060 #: framework/WDWLibrary.php:2427
     5165#: framework/WDWLibrary.php:2651
    50615166msgid "Recreate thumbnail"
    50625167msgstr ""
    50635168
    5064 #: framework/WDWLibrary.php:2428
     5169#: framework/WDWLibrary.php:2652
    50655170msgid "recreated"
    50665171msgstr ""
    50675172
    5068 #: framework/WDWLibrary.php:2432
     5173#: framework/WDWLibrary.php:2656
    50695174msgid "Rotate left"
    50705175msgstr ""
    50715176
    5072 #: framework/WDWLibrary.php:2433
    5073 #, fuzzy
     5177#: framework/WDWLibrary.php:2657
    50745178#| msgid "Not rated yet."
    50755179msgid "rotated left"
    5076 msgstr "Not rated yet."
    5077 
    5078 #: framework/WDWLibrary.php:2437
     5180msgstr ""
     5181
     5182#: framework/WDWLibrary.php:2661
    50795183msgid "Rotate right"
    50805184msgstr ""
    50815185
    5082 #: framework/WDWLibrary.php:2438
     5186#: framework/WDWLibrary.php:2662
    50835187msgid "rotated right"
    50845188msgstr ""
    50855189
    5086 #: framework/WDWLibrary.php:2443 framework/WDWLibrary.php:2456
    5087 #: framework/WDWLibrary.php:2461 framework/WDWLibrary.php:2466
    5088 #: framework/WDWLibrary.php:2471 framework/WDWLibrary.php:2494
    5089 #: framework/WDWLibrary.php:2499
     5190#: framework/WDWLibrary.php:2667 framework/WDWLibrary.php:2680
     5191#: framework/WDWLibrary.php:2685 framework/WDWLibrary.php:2690
     5192#: framework/WDWLibrary.php:2695 framework/WDWLibrary.php:2718
     5193#: framework/WDWLibrary.php:2723
    50905194msgid "edited"
    50915195msgstr ""
    50925196
    5093 #: framework/WDWLibrary.php:2448
    5094 #, fuzzy
     5197#: framework/WDWLibrary.php:2672
    50955198#| msgid "Reset"
    50965199msgid "reset"
    5097 msgstr "Reset"
    5098 
    5099 #: framework/WDWLibrary.php:2455
     5200msgstr ""
     5201
     5202#: framework/WDWLibrary.php:2679
    51005203msgid "Edit Alt/Title"
    51015204msgstr ""
    51025205
    5103 #: framework/WDWLibrary.php:2460
     5206#: framework/WDWLibrary.php:2684
    51045207msgid "Edit description"
    51055208msgstr ""
    51065209
    5107 #: framework/WDWLibrary.php:2465
     5210#: framework/WDWLibrary.php:2689
    51085211msgid "Edit redirect URL"
    51095212msgstr ""
    51105213
    5111 #: framework/WDWLibrary.php:2470
    5112 #, fuzzy
     5214#: framework/WDWLibrary.php:2694
    51135215#| msgid " item(s)"
    51145216msgid "Add/Remove tag"
    5115 msgstr "item(s)"
    5116 
    5117 #: framework/WDWLibrary.php:2493
     5217msgstr ""
     5218
     5219#: framework/WDWLibrary.php:2717
    51185220msgid "Add pricelist"
    51195221msgstr ""
    51205222
    5121 #: framework/WDWLibrary.php:2498
     5223#: framework/WDWLibrary.php:2722
    51225224msgid "Remove pricelist"
    51235225msgstr ""
    51245226
    5125 #: framework/WDWLibrary.php:2604
    5126 #, fuzzy
     5227#: framework/WDWLibrary.php:2828
    51275228#| msgid "Share on Facebook"
    51285229msgid "Photo Gallery Premium"
    5129 msgstr "Share on Facebook"
    5130 
    5131 #: framework/WDWLibrary.php:2607
     5230msgstr ""
     5231
     5232#: framework/WDWLibrary.php:2831
    51325233msgid ""
    51335234"Get more stunning views with fully customizable themes, powerful lightbox "
     
    51355236msgstr ""
    51365237
    5137 #: framework/WDWLibrary.php:2611 framework/WDWLibrary.php:2662
     5238#: framework/WDWLibrary.php:2849
     5239msgid "User guide"
     5240msgstr ""
     5241
     5242#: framework/WDWLibrary.php:2864 framework/WDWLibrary.php:3009
     5243#: framework/WDWLibrary.php:3023 photo-gallery.php:519 photo-gallery.php:1934
     5244msgid "Ask a question"
     5245msgstr ""
     5246
     5247#: framework/WDWLibrary.php:2878
     5248msgid "Forms"
     5249msgstr ""
     5250
     5251#: framework/WDWLibrary.php:2882 photo-gallery.php:509
     5252msgid "Add-ons"
     5253msgstr ""
     5254
     5255#: framework/WDWLibrary.php:2886
     5256msgid "Premium Version"
     5257msgstr ""
     5258
     5259#: framework/WDWLibrary.php:2886
    51385260msgid "Upgrade"
    51395261msgstr ""
    51405262
    5141 #: framework/WDWLibrary.php:2625
    5142 msgid "User guide"
    5143 msgstr ""
    5144 
    5145 #: framework/WDWLibrary.php:2640 photo-gallery.php:498 photo-gallery.php:1905
    5146 msgid "Ask a question"
    5147 msgstr ""
    5148 
    5149 #: framework/WDWLibrary.php:2654
    5150 msgid "Forms"
    5151 msgstr ""
    5152 
    5153 #: framework/WDWLibrary.php:2658 photo-gallery.php:488
    5154 msgid "Add-ons"
    5155 msgstr ""
    5156 
    5157 #: framework/WDWLibrary.php:2662
    5158 msgid "Premium Version"
    5159 msgstr ""
    5160 
    5161 #: framework/WDWLibrary.php:2796
    5162 #, fuzzy
     5263#: framework/WDWLibrary.php:3005
     5264msgid "Unleash the full benefits & "
     5265msgstr ""
     5266
     5267#: framework/WDWLibrary.php:3006
     5268msgid "features of the Premium Plugin"
     5269msgstr ""
     5270
     5271#: framework/WDWLibrary.php:3007
     5272msgid "Upgrade Now"
     5273msgstr ""
     5274
     5275#: framework/WDWLibrary.php:3134
    51635276#| msgid "Gallery is empty."
    51645277msgid "All tags"
    5165 msgstr "Gallery is empty."
    5166 
    5167 #: framework/WDWLibraryEmbed.php:399 framework/WDWLibraryEmbed.php:408
    5168 #: framework/WDWLibraryEmbed.php:410
     5278msgstr ""
     5279
     5280#: framework/WDWLibraryEmbed.php:338 framework/WDWLibraryEmbed.php:347
     5281#: framework/WDWLibraryEmbed.php:349
    51695282msgid "The entered URL is incorrect. Please check the URL and try again."
    51705283msgstr ""
     
    52115324
    52125325#: framework/howto/data.php:32
    5213 #, fuzzy
    52145326#| msgid "Gallery is empty."
    52155327msgid "Add Gallery Widget"
    5216 msgstr "Gallery is empty."
     5328msgstr ""
    52175329
    52185330#: framework/howto/data.php:33
     
    53175429msgstr ""
    53185430
    5319 #: framework/howto/howto.php:339 framework/howto/howto.php:357
     5431#: framework/howto/howto.php:346 framework/howto/howto.php:364
    53205432msgid "How to ..."
    53215433msgstr ""
    53225434
    5323 #: framework/howto/howto.php:409
    5324 msgid "How to use"
    5325 msgstr ""
    5326 
    5327 #: frontend/controllers/BWGControllerGalleryBox.php:74
    5328 #: frontend/controllers/BWGControllerGalleryBox.php:79
    5329 #: frontend/controllers/BWGControllerGalleryBox.php:88
    5330 #: frontend/controllers/BWGControllerGalleryBox.php:96
    5331 #: frontend/controllers/BWGControllerGalleryBox.php:106
     5435#: framework/howto/howto.php:419
     5436#| msgid "Gallery is empty."
     5437msgid "Insert Gallery To"
     5438msgstr ""
     5439
     5440#: framework/howto/howto.php:419
     5441#| msgid "Gallery is empty."
     5442msgid "Insert Gallery Group To"
     5443msgstr ""
     5444
     5445#: framework/screen_recorder/screen_recorder.php:708
     5446#| msgid "Share on Facebook"
     5447msgid "Photo Gallery Data Sharing"
     5448msgstr ""
     5449
     5450#: framework/screen_recorder/screen_recorder.php:709
     5451msgid "Disable access"
     5452msgstr ""
     5453
     5454#: framework/screen_recorder/screen_recorder.php:709
     5455#| msgid "Show comments"
     5456msgid "Enable access"
     5457msgstr ""
     5458
     5459#: framework/screen_recorder/screen_recorder.php:710
     5460msgid ""
     5461"Allow 10Web to collect data for the improvement of the Photo Gallery plugin. "
     5462"Your data will not be shared with 3rd parties and will be deleted after 30 "
     5463"days."
     5464msgstr ""
     5465
     5466#: frontend/controllers/BWGControllerGalleryBox.php:80
     5467#: frontend/controllers/BWGControllerGalleryBox.php:85
     5468#: frontend/controllers/BWGControllerGalleryBox.php:94
     5469#: frontend/controllers/BWGControllerGalleryBox.php:102
     5470#: frontend/controllers/BWGControllerGalleryBox.php:112
    53325471#, php-format
    53335472msgid "The %s field is required."
    53345473msgstr ""
    53355474
    5336 #: frontend/controllers/BWGControllerGalleryBox.php:83
    5337 #, fuzzy, php-format
     5475#: frontend/controllers/BWGControllerGalleryBox.php:89
     5476#, php-format
    53385477#| msgid "This is not a valid email address."
    53395478msgid "The %s field must contain a valid email address."
    5340 msgstr "This is not a valid email address."
    5341 
    5342 #: frontend/controllers/BWGControllerGalleryBox.php:100
    5343 #, fuzzy
     5479msgstr ""
     5480
     5481#: frontend/controllers/BWGControllerGalleryBox.php:106
    53445482#| msgid "Error. Incorrect Verification Code."
    53455483msgid "Incorrect Security code."
    5346 msgstr "Error. Incorrect Verification Code."
    5347 
    5348 #: frontend/controllers/controller.php:94
    5349 #, fuzzy
     5484msgstr ""
     5485
     5486#: frontend/controllers/controller.php:99
    53505487#| msgid "There is no gallery selected or the gallery was deleted."
    53515488msgid "There is no album selected or the gallery was deleted."
    5352 msgstr "There is no gallery selected or the gallery was deleted."
    5353 
    5354 #: frontend/controllers/controller.php:276
    5355 #: frontend/controllers/controller.php:304
     5489msgstr ""
     5490
     5491#: frontend/controllers/controller.php:287
     5492#: frontend/controllers/controller.php:321
    53565493msgid "There is no gallery selected or the gallery was deleted."
    5357 msgstr "There is no gallery selected or the gallery was deleted."
    5358 
    5359 #: frontend/views/BWGViewAlbum_compact_preview.php:78
    5360 #: frontend/views/BWGViewAlbum_extended_preview.php:89
    5361 #: frontend/views/BWGViewAlbum_masonry_preview.php:64
     5494msgstr ""
     5495
     5496#: frontend/views/BWGViewAlbum_compact_preview.php:77
     5497#: frontend/views/BWGViewAlbum_extended_preview.php:86
     5498#: frontend/views/BWGViewAlbum_masonry_preview.php:61
    53625499msgid "No results found."
    53635500msgstr ""
     
    53665503#: frontend/views/BWGViewAlbum_extended_preview.php:164
    53675504msgid "More"
    5368 msgstr "More"
     5505msgstr ""
    53695506
    53705507#: frontend/views/BWGViewAlbum_extended_preview.php:162
    53715508msgid "Hide"
    5372 msgstr "Hide"
    5373 
    5374 #: frontend/views/BWGViewBlog_style.php:149
    5375 #: frontend/views/BWGViewGalleryBox.php:793
     5509msgstr ""
     5510
     5511#: frontend/views/BWGViewBlog_style.php:146
     5512#: frontend/views/BWGViewGalleryBox.php:784
    53765513msgid "Show comments"
    5377 msgstr "Show comments"
    5378 
    5379 #: frontend/views/BWGViewBlog_style.php:155
    5380 #: frontend/views/BWGViewBlog_style.php:156
     5514msgstr ""
     5515
     5516#: frontend/views/BWGViewBlog_style.php:152
     5517#: frontend/views/BWGViewBlog_style.php:153
     5518#: frontend/views/BWGViewGalleryBox.php:794
     5519#: frontend/views/BWGViewGalleryBox.php:795
     5520msgid "Share on Facebook"
     5521msgstr ""
     5522
     5523#: frontend/views/BWGViewBlog_style.php:159
     5524#: frontend/views/BWGViewBlog_style.php:160
    53815525#: frontend/views/BWGViewGalleryBox.php:801
    53825526#: frontend/views/BWGViewGalleryBox.php:802
    5383 msgid "Share on Facebook"
    5384 msgstr "Share on Facebook"
    5385 
    5386 #: frontend/views/BWGViewBlog_style.php:162
    5387 #: frontend/views/BWGViewBlog_style.php:163
     5527msgid "Share on Twitter"
     5528msgstr ""
     5529
     5530#: frontend/views/BWGViewBlog_style.php:166
     5531#: frontend/views/BWGViewBlog_style.php:167
    53885532#: frontend/views/BWGViewGalleryBox.php:808
    53895533#: frontend/views/BWGViewGalleryBox.php:809
    5390 msgid "Share on Twitter"
    5391 msgstr "Share on Twitter"
    5392 
    5393 #: frontend/views/BWGViewBlog_style.php:169
    5394 #: frontend/views/BWGViewBlog_style.php:170
     5534msgid "Share on Pinterest"
     5535msgstr ""
     5536
     5537#: frontend/views/BWGViewBlog_style.php:173
     5538#: frontend/views/BWGViewBlog_style.php:174
    53955539#: frontend/views/BWGViewGalleryBox.php:815
    53965540#: frontend/views/BWGViewGalleryBox.php:816
    5397 msgid "Share on Pinterest"
    5398 msgstr "Share on Pinterest"
    5399 
    5400 #: frontend/views/BWGViewBlog_style.php:176
    5401 #: frontend/views/BWGViewBlog_style.php:177
    5402 #: frontend/views/BWGViewGalleryBox.php:822
    5403 #: frontend/views/BWGViewGalleryBox.php:823
    54045541msgid "Share on Tumblr"
    5405 msgstr "Share on Tumblr"
    5406 
    5407 #: frontend/views/BWGViewBlog_style.php:184
    5408 #, fuzzy
     5542msgstr ""
     5543
     5544#: frontend/views/BWGViewBlog_style.php:181
    54095545#| msgid "Show comments"
    54105546msgid "Show ecommerce"
    5411 msgstr "Show comments"
     5547msgstr ""
    54125548
    54135549#: frontend/views/BWGViewDownload_gallery.php:53
    5414 #, fuzzy
    54155550#| msgid "There are no images in this gallery."
    54165551msgid "There are no images to download."
    5417 msgstr "There are no images in this gallery."
    5418 
    5419 #: frontend/views/BWGViewGalleryBox.php:642
     5552msgstr ""
     5553
     5554#: frontend/views/BWGViewGalleryBox.php:629
    54205555msgid "The image has been deleted."
    5421 msgstr "The image has been deleted."
    5422 
    5423 #: frontend/views/BWGViewGalleryBox.php:781
    5424 #: frontend/views/BWGViewThumbnails.php:45
    5425 #: frontend/views/BWGViewThumbnails_masonry.php:56
    5426 #: frontend/views/BWGViewThumbnails_mosaic.php:90 photo-gallery.php:1425
    5427 #: photo-gallery.php:1428
     5556msgstr ""
     5557
     5558#: frontend/views/BWGViewGalleryBox.php:772
     5559#: frontend/views/BWGViewThumbnails.php:42
     5560#: frontend/views/BWGViewThumbnails_masonry.php:51
     5561#: frontend/views/BWGViewThumbnails_mosaic.php:87 photo-gallery.php:1452
     5562#: photo-gallery.php:1455
    54285563msgid "Play"
    5429 msgstr "Play"
    5430 
    5431 #: frontend/views/BWGViewGalleryBox.php:785 photo-gallery.php:1418
     5564msgstr ""
     5565
     5566#: frontend/views/BWGViewGalleryBox.php:776 photo-gallery.php:1445
    54325567msgid "Maximize"
    5433 msgstr "Maximize"
    5434 
    5435 #: frontend/views/BWGViewGalleryBox.php:789 photo-gallery.php:1419
     5568msgstr ""
     5569
     5570#: frontend/views/BWGViewGalleryBox.php:780 photo-gallery.php:1446
    54365571msgid "Fullscreen"
    5437 msgstr "Fullscreen"
    5438 
    5439 #: frontend/views/BWGViewGalleryBox.php:791 photo-gallery.php:1431
     5572msgstr ""
     5573
     5574#: frontend/views/BWGViewGalleryBox.php:782 photo-gallery.php:1458
    54405575msgid "Show info"
    5441 msgstr "Show info"
    5442 
    5443 #: frontend/views/BWGViewGalleryBox.php:795 photo-gallery.php:1433
     5576msgstr ""
     5577
     5578#: frontend/views/BWGViewGalleryBox.php:786 photo-gallery.php:1460
    54445579msgid "Show rating"
    5445 msgstr "Show rating"
    5446 
    5447 #: frontend/views/BWGViewGalleryBox.php:830
     5580msgstr ""
     5581
     5582#: frontend/views/BWGViewGalleryBox.php:788
     5583msgid "Zoom in-out"
     5584msgstr ""
     5585
     5586#: frontend/views/BWGViewGalleryBox.php:823
    54485587msgid "Open image in original size."
    5449 msgstr "Open image in original size."
     5588msgstr ""
     5589
     5590#: frontend/views/BWGViewGalleryBox.php:838
     5591msgid "Download original image"
     5592msgstr ""
    54505593
    54515594#: frontend/views/BWGViewGalleryBox.php:845
    5452 msgid "Download original image"
    5453 msgstr "Download original image"
    5454 
    5455 #: frontend/views/BWGViewGalleryBox.php:852
    5456 #: frontend/views/BWGViewThumbnails.php:49
    5457 #: frontend/views/BWGViewThumbnails_masonry.php:60
    5458 #: frontend/views/BWGViewThumbnails_mosaic.php:108
     5595#: frontend/views/BWGViewThumbnails.php:46
     5596#: frontend/views/BWGViewThumbnails_masonry.php:55
     5597#: frontend/views/BWGViewThumbnails_mosaic.php:105
    54595598msgid "Ecommerce"
    54605599msgstr ""
    54615600
    5462 #: frontend/views/BWGViewGalleryBox.php:877
     5601#: frontend/views/BWGViewGalleryBox.php:871
    54635602msgid "Hits: "
    5464 msgstr "Hits: "
    5465 
    5466 #: frontend/views/BWGViewGalleryBox.php:897
     5603msgstr ""
     5604
     5605#: frontend/views/BWGViewGalleryBox.php:893
    54675606msgid "Rated."
    5468 msgstr "Rated."
    5469 
    5470 #: frontend/views/BWGViewGalleryBox.php:990 photo-gallery.php:1416
     5607msgstr ""
     5608
     5609#: frontend/views/BWGViewGalleryBox.php:1016 photo-gallery.php:1443
    54715610msgid "Hide Comments"
    5472 msgstr "Hide Comments"
    5473 
    5474 #: frontend/views/BWGViewGalleryBox.php:1009
     5611msgstr ""
     5612
     5613#: frontend/views/BWGViewGalleryBox.php:1033
    54755614msgid "Verification Code"
    5476 msgstr "Verification Code"
    5477 
    5478 #: frontend/views/BWGViewGalleryBox.php:1032
     5615msgstr ""
     5616
     5617#: frontend/views/BWGViewGalleryBox.php:1056
    54795618#, php-format
    54805619msgid ""
     
    54835622msgstr ""
    54845623
    5485 #: frontend/views/BWGViewGalleryBox.php:1033
     5624#: frontend/views/BWGViewGalleryBox.php:1057
    54865625#: wd/templates/display_subscribe.php:39
    54875626msgid "Privacy Policy"
    54885627msgstr ""
    54895628
    5490 #: frontend/views/BWGViewGalleryBox.php:1042
     5629#: frontend/views/BWGViewGalleryBox.php:1066
    54915630msgid "Submit"
    5492 msgstr "Submit"
    5493 
    5494 #: frontend/views/BWGViewGalleryBox.php:1044
     5631msgstr ""
     5632
     5633#: frontend/views/BWGViewGalleryBox.php:1068
    54955634msgid "Your comment is awaiting moderation"
    5496 msgstr "Your comment is awaiting moderation"
    5497 
    5498 #: frontend/views/BWGViewGalleryBox.php:1078 photo-gallery.php:1414
    5499 #, fuzzy
     5635msgstr ""
     5636
     5637#: frontend/views/BWGViewGalleryBox.php:1103 photo-gallery.php:1441
    55005638#| msgid "Hide Comments"
    55015639msgid "Hide Ecommerce"
    5502 msgstr "Hide Comments"
    5503 
    5504 #: frontend/views/BWGViewGalleryBox.php:1084
    5505 #: frontend/views/BWGViewGalleryBox.php:1267
     5640msgstr ""
     5641
     5642#: frontend/views/BWGViewGalleryBox.php:1109
     5643#: frontend/views/BWGViewGalleryBox.php:1292
    55065644msgid "Add to cart"
    55075645msgstr ""
    55085646
    5509 #: frontend/views/BWGViewGalleryBox.php:1087
    5510 #, fuzzy
     5647#: frontend/views/BWGViewGalleryBox.php:1112
    55115648#| msgid " item(s)"
    55125649msgid "items"
    5513 msgstr "item(s)"
    5514 
    5515 #: frontend/views/BWGViewGalleryBox.php:1095
     5650msgstr ""
     5651
     5652#: frontend/views/BWGViewGalleryBox.php:1120
    55165653msgid "Prints and products"
    55175654msgstr ""
    55185655
    5519 #: frontend/views/BWGViewGalleryBox.php:1102
     5656#: frontend/views/BWGViewGalleryBox.php:1127
    55205657msgid "Downloads"
    55215658msgstr ""
    55225659
    5523 #: frontend/views/BWGViewGalleryBox.php:1116
    5524 #: frontend/views/BWGViewGalleryBox.php:1228
     5660#: frontend/views/BWGViewGalleryBox.php:1141
     5661#: frontend/views/BWGViewGalleryBox.php:1253
    55255662msgid "Price"
    55265663msgstr ""
    55275664
    5528 #: frontend/views/BWGViewGalleryBox.php:1136
     5665#: frontend/views/BWGViewGalleryBox.php:1161
    55295666msgid "Count"
    55305667msgstr ""
    55315668
    5532 #: frontend/views/BWGViewGalleryBox.php:1216
    5533 #: frontend/views/BWGViewGalleryBox.php:1260
     5669#: frontend/views/BWGViewGalleryBox.php:1241
     5670#: frontend/views/BWGViewGalleryBox.php:1285
    55345671msgid "Total"
    55355672msgstr ""
    55365673
    5537 #: frontend/views/BWGViewGalleryBox.php:1227
     5674#: frontend/views/BWGViewGalleryBox.php:1252
    55385675msgid "Dimensions"
    55395676msgstr ""
    55405677
    5541 #: frontend/views/BWGViewGalleryBox.php:1229
     5678#: frontend/views/BWGViewGalleryBox.php:1254
    55425679msgid "Choose"
    55435680msgstr ""
    55445681
    5545 #: frontend/views/BWGViewGalleryBox.php:1268
     5682#: frontend/views/BWGViewGalleryBox.php:1293
    55465683msgid "View cart"
    55475684msgstr ""
    55485685
    5549 #: frontend/views/BWGViewGalleryBox.php:1374
     5686#: frontend/views/BWGViewGalleryBox.php:1404
    55505687msgid "Delete Comment"
    5551 msgstr "Delete Comment"
    5552 
    5553 #: frontend/views/BWGViewThumbnails.php:48
    5554 #: frontend/views/BWGViewThumbnails_masonry.php:59
    5555 #: frontend/views/BWGViewThumbnails_mosaic.php:107
     5688msgstr ""
     5689
     5690#: frontend/views/BWGViewThumbnails.php:45
     5691#: frontend/views/BWGViewThumbnails_masonry.php:54
     5692#: frontend/views/BWGViewThumbnails_mosaic.php:104
    55565693msgid "Open"
    55575694msgstr ""
    55585695
    5559 #: frontend/views/view.php:94 frontend/views/view.php:171
    5560 #, fuzzy
     5696#: frontend/views/view.php:157 frontend/views/view.php:259
    55615697#| msgid "There are no images in this gallery."
    55625698msgid "There are no images."
    5563 msgstr "There are no images in this gallery."
    5564 
    5565 #: frontend/views/view.php:97 frontend/views/view.php:174
    5566 #, fuzzy
     5699msgstr ""
     5700
     5701#: frontend/views/view.php:160 frontend/views/view.php:262
    55675702#| msgid "Show comments"
    55685703msgid "No Images found."
    5569 msgstr "Show comments"
    5570 
    5571 #: frontend/views/view.php:317
    5572 #, fuzzy
     5704msgstr ""
     5705
     5706#: frontend/views/view.php:411
    55735707#| msgid "Download original image"
    55745708msgid "Download gallery"
    5575 msgstr "Download original image"
    5576 
    5577 #: frontend/views/view.php:373 frontend/views/view.php:382
    5578 #: photo-gallery.php:1421
     5709msgstr ""
     5710
     5711#: frontend/views/view.php:465 frontend/views/view.php:474
     5712#: photo-gallery.php:1448
    55795713msgid "SEARCH..."
    55805714msgstr ""
    55815715
    5582 #: frontend/views/view.php:421
    5583 #, fuzzy
     5716#: frontend/views/view.php:513
    55845717#| msgid "Order by: "
    55855718msgid "Order by Default"
    5586 msgstr "Order by: "
    5587 
    5588 #: frontend/views/view.php:634
     5719msgstr ""
     5720
     5721#: frontend/views/view.php:627
     5722#| msgid "Gallery is empty."
     5723msgid "All Tags"
     5724msgstr ""
     5725
     5726#: frontend/views/view.php:637 photo-gallery.php:1467
     5727#| msgid "Gallery is empty."
     5728msgid "see all tags"
     5729msgstr ""
     5730
     5731#: frontend/views/view.php:820
    55895732msgid " item(s)"
    5590 msgstr "item(s)"
    5591 
    5592 #: frontend/views/view.php:640
     5733msgstr ""
     5734
     5735#: frontend/views/view.php:826
    55935736msgid "Previous"
    5594 msgstr "Previous"
    5595 
    5596 #: frontend/views/view.php:641
     5737msgstr ""
     5738
     5739#: frontend/views/view.php:827
    55975740msgid "Next"
    5598 msgstr "Next"
    5599 
    5600 #: frontend/views/view.php:660
     5741msgstr ""
     5742
     5743#: frontend/views/view.php:847
    56015744msgid "Go to the first page"
    5602 msgstr "Go to the first page"
    5603 
    5604 #: frontend/views/view.php:661
     5745msgstr ""
     5746
     5747#: frontend/views/view.php:848
    56055748msgid "Go to the previous page"
    5606 msgstr "Go to the previous page"
    5607 
    5608 #: frontend/views/view.php:668
     5749msgstr ""
     5750
     5751#: frontend/views/view.php:858
    56095752msgid "Go to the next page"
    5610 msgstr "Go to the next page"
    5611 
    5612 #: frontend/views/view.php:669
     5753msgstr ""
     5754
     5755#: frontend/views/view.php:859
    56135756msgid "Go to the last page"
    5614 msgstr "Go to the last page"
    5615 
    5616 #: frontend/views/view.php:681
     5757msgstr ""
     5758
     5759#: frontend/views/view.php:872
    56175760msgid "Load More..."
    5618 msgstr "Load More..."
     5761msgstr ""
    56195762
    56205763#: insert.php:137
     
    56265769msgstr ""
    56275770
    5628 #: photo-gallery.php:270
     5771#: photo-gallery.php:290
    56295772msgid "Help"
    56305773msgstr ""
    56315774
    5632 #: photo-gallery.php:317
     5775#: photo-gallery.php:337
    56335776msgid "10WEB Plugins"
    56345777msgstr ""
    56355778
    5636 #: photo-gallery.php:338
     5779#: photo-gallery.php:358
    56375780msgid ""
    56385781"When you leave a comment on this site, we send your name, email\n"
     
    56425785msgstr ""
    56435786
    5644 #: photo-gallery.php:347
     5787#: photo-gallery.php:367
    56455788#, php-format
    56465789msgid "Select %s"
    56475790msgstr ""
    56485791
    5649 #: photo-gallery.php:372
     5792#: photo-gallery.php:393
    56505793msgid "Nothing selected."
    56515794msgstr ""
    56525795
    5653 #: photo-gallery.php:373
     5796#: photo-gallery.php:394
    56545797msgid "- Select -"
    56555798msgstr ""
    56565799
    5657 #: photo-gallery.php:407
     5800#: photo-gallery.php:428
    56585801#, php-format
    56595802msgid ""
     
    56635806msgstr ""
    56645807
    5665 #: photo-gallery.php:407
     5808#: photo-gallery.php:428
    56665809msgid "PHP GD"
    56675810msgstr ""
    56685811
    5669 #: photo-gallery.php:408
     5812#: photo-gallery.php:429
    56705813#, php-format
    56715814msgid ""
     
    56755818msgstr ""
    56765819
    5677 #: photo-gallery.php:408
     5820#: photo-gallery.php:429
    56785821msgid "crop"
    56795822msgstr ""
    56805823
    5681 #: photo-gallery.php:408
     5824#: photo-gallery.php:429
    56825825msgid "edit"
    56835826msgstr ""
    56845827
    5685 #: photo-gallery.php:408
    5686 #, fuzzy
     5828#: photo-gallery.php:429
    56875829#| msgid "Not rated yet."
    56885830msgid "rotate"
    5689 msgstr "Not rated yet."
    5690 
    5691 #: photo-gallery.php:417
     5831msgstr ""
     5832
     5833#: photo-gallery.php:438
    56925834#, php-format
    56935835msgid ""
     
    56965838msgstr ""
    56975839
    5698 #: photo-gallery.php:417 photo-gallery.php:469
     5840#: photo-gallery.php:438
    56995841msgid "Options"
    57005842msgstr ""
    57015843
    5702 #: photo-gallery.php:417
    5703 #, fuzzy
     5844#: photo-gallery.php:438
    57045845#| msgid "Previous"
    57055846msgid "Options page"
    5706 msgstr "Previous"
    5707 
    5708 #: photo-gallery.php:461
     5847msgstr ""
     5848
     5849#: photo-gallery.php:482
    57095850msgid "Add Galleries/Images"
    57105851msgstr ""
    57115852
    5712 #: photo-gallery.php:527
     5853#: photo-gallery.php:548
    57135854#, php-format
    57145855msgid "The controller %s file not exist."
    57155856msgstr ""
    57165857
    5717 #: photo-gallery.php:532
     5858#: photo-gallery.php:553
    57185859#, php-format
    57195860msgid "The view %s file not exist."
    57205861msgstr ""
    57215862
    5722 #: photo-gallery.php:548 photo-gallery.php:553
     5863#: photo-gallery.php:569 photo-gallery.php:574
    57235864#, php-format
    57245865msgid "The %s class not exist."
    57255866msgstr ""
    57265867
    5727 #: photo-gallery.php:596 photo-gallery.php:630
     5868#: photo-gallery.php:622 photo-gallery.php:657
    57285869msgid "Do you want to delete selected items?"
    57295870msgstr ""
    57305871
    5731 #: photo-gallery.php:597 photo-gallery.php:625
     5872#: photo-gallery.php:623 photo-gallery.php:652
    57325873msgid "You must select at least one item."
    57335874msgstr ""
    57345875
    5735 #: photo-gallery.php:598
     5876#: photo-gallery.php:624
    57365877msgid "Do you want to remove pricelist from selected items?"
    57375878msgstr ""
    57385879
    5739 #: photo-gallery.php:605 photo-gallery.php:1407
     5880#: photo-gallery.php:626 photo-gallery.php:684
     5881msgid " view is<br>available in Premium Version"
     5882msgstr ""
     5883
     5884#: photo-gallery.php:632 photo-gallery.php:1434
    57405885msgid "field is required."
    57415886msgstr ""
    57425887
    5743 #: photo-gallery.php:606
     5888#: photo-gallery.php:633
    57445889msgid "You must select an image file."
    57455890msgstr ""
    57465891
    5747 #: photo-gallery.php:607
     5892#: photo-gallery.php:634
    57485893msgid "You must select an audio file."
    57495894msgstr ""
    57505895
    5751 #: photo-gallery.php:608
    5752 msgid ""
    5753 "You do not have Instagram access token. Sign in with Instagram in Options -> "
    5754 "Advanced tab -> Social. "
    5755 msgstr ""
    5756 
    5757 #: photo-gallery.php:609
     5896#: photo-gallery.php:635
     5897msgid ""
     5898"You do not have Instagram access token. Sign in with Instagram in Global "
     5899"Settings -> Advanced tab -> Social. "
     5900msgstr ""
     5901
     5902#: photo-gallery.php:636
    57585903msgid ""
    57595904"You do not have Instagram CLIENT_ID. Input its value in Options->Embed "
     
    57615906msgstr ""
    57625907
    5763 #: photo-gallery.php:610
    5764 msgid "Instagram recent post number must be between 1 and 33."
    5765 msgstr ""
    5766 
    5767 #: photo-gallery.php:611
     5908#: photo-gallery.php:637
     5909msgid "Instagram recent post number must be between 1 and 25."
     5910msgstr ""
     5911
     5912#: photo-gallery.php:638
    57685913msgid ""
    57695914"Gallery type cannot be changed, since it is not empty. In case you would "
     
    57715916msgstr ""
    57725917
    5773 #: photo-gallery.php:612
     5918#: photo-gallery.php:639
    57745919msgid "Please enter url to embed."
    57755920msgstr ""
    57765921
    5777 #: photo-gallery.php:613
     5922#: photo-gallery.php:640
    57785923msgid "Error: cannot get response from the server."
    57795924msgstr ""
    57805925
    5781 #: photo-gallery.php:614
     5926#: photo-gallery.php:641
    57825927msgid "Error: something wrong happened at the server."
    57835928msgstr ""
    57845929
    5785 #: photo-gallery.php:615
     5930#: photo-gallery.php:642
    57865931msgid "Error"
    57875932msgstr ""
    57885933
    5789 #: photo-gallery.php:617
     5934#: photo-gallery.php:644
    57905935msgid "Hide order column"
    57915936msgstr ""
    57925937
    5793 #: photo-gallery.php:618
     5938#: photo-gallery.php:645
    57945939#, php-format
    57955940msgid "Selected %d item."
    57965941msgstr ""
    57975942
    5798 #: photo-gallery.php:619
     5943#: photo-gallery.php:646
    57995944#, php-format
    58005945msgid "Selected %d items."
    58015946msgstr ""
    58025947
    5803 #: photo-gallery.php:620
    5804 msgid "Items Succesfully Saved."
    5805 msgstr ""
    5806 
    5807 #: photo-gallery.php:621
    5808 msgid "Item Succesfully Recovered."
    5809 msgstr ""
    5810 
    5811 #: photo-gallery.php:622
    5812 msgid "Item Succesfully Published."
    5813 msgstr ""
    5814 
    5815 #: photo-gallery.php:623
    5816 msgid "Item Succesfully Unpublished."
    5817 msgstr ""
    5818 
    5819 #: photo-gallery.php:624
    5820 msgid "Item Succesfully Deleted."
    5821 msgstr ""
    5822 
    5823 #: photo-gallery.php:626
    5824 msgid "Items Succesfully resized."
    5825 msgstr ""
    5826 
    5827 #: photo-gallery.php:627
    5828 msgid "Watermarks Succesfully Set."
    5829 msgstr ""
    5830 
    5831 #: photo-gallery.php:628
    5832 msgid "Items Succesfully Reset."
    5833 msgstr ""
    5834 
    5835 #: photo-gallery.php:629
     5948#: photo-gallery.php:647
     5949msgid "Items Successfully Saved."
     5950msgstr ""
     5951
     5952#: photo-gallery.php:648
     5953msgid "Item Successfully Recovered."
     5954msgstr ""
     5955
     5956#: photo-gallery.php:649
     5957msgid "Item Successfully Published."
     5958msgstr ""
     5959
     5960#: photo-gallery.php:650
     5961msgid "Item Successfully Unpublished."
     5962msgstr ""
     5963
     5964#: photo-gallery.php:651
     5965msgid "Item Successfully Deleted."
     5966msgstr ""
     5967
     5968#: photo-gallery.php:653
     5969msgid "Items Successfully resized."
     5970msgstr ""
     5971
     5972#: photo-gallery.php:654
     5973msgid "Watermarks Successfully Set."
     5974msgstr ""
     5975
     5976#: photo-gallery.php:655
     5977msgid "Items Successfully Reset."
     5978msgstr ""
     5979
     5980#: photo-gallery.php:656
    58365981msgid "Save Tag"
    58375982msgstr ""
    58385983
    5839 #: photo-gallery.php:631 photo-gallery.php:633
     5984#: photo-gallery.php:658 photo-gallery.php:660
    58405985msgid ""
    58415986"This action will reset gallery type to mixed and will save that choice. You "
     
    58435988msgstr ""
    58445989
    5845 #: photo-gallery.php:632
     5990#: photo-gallery.php:659
    58465991msgid ""
    58475992"After pressing save/apply buttons, you cannot change gallery type back to "
     
    58495994msgstr ""
    58505995
    5851 #: photo-gallery.php:634
     5996#: photo-gallery.php:661
    58525997msgid "Insert"
    58535998msgstr ""
    58545999
    5855 #: photo-gallery.php:635
     6000#: photo-gallery.php:662
    58566001msgid "Failed to import images from media library"
    58576002msgstr ""
    58586003
    5859 #: photo-gallery.php:636
     6004#: photo-gallery.php:663
    58606005msgid "Sorry, only jpg, jpeg, gif, png types are allowed."
    58616006msgstr ""
    58626007
    5863 #: photo-gallery.php:640
     6008#: photo-gallery.php:667
    58646009msgid "Thumbnails successfully recreated."
    58656010msgstr ""
    58666011
    5867 #: photo-gallery.php:641
     6012#: photo-gallery.php:668
    58686013msgid "All images are successfully reset."
    58696014msgstr ""
    58706015
    5871 #: photo-gallery.php:1002
     6016#: photo-gallery.php:1030
    58726017msgid "Insert Photo Gallery"
    58736018msgstr ""
    58746019
    5875 #: photo-gallery.php:1004
     6020#: photo-gallery.php:1032
    58766021msgid "Add Photo Gallery"
    58776022msgstr ""
    58786023
    5879 #: photo-gallery.php:1408
     6024#: photo-gallery.php:1435
    58806025msgid "This is not a valid email address."
    5881 msgstr "This is not a valid email address."
    5882 
    5883 #: photo-gallery.php:1409
     6026msgstr ""
     6027
     6028#: photo-gallery.php:1436
    58846029msgid "There are no images matching your search."
    5885 msgstr "There are no images matching your search."
    5886 
    5887 #: photo-gallery.php:1410
     6030msgstr ""
     6031
     6032#: photo-gallery.php:1437
    58886033msgid "Select Tag"
    58896034msgstr ""
    58906035
    5891 #: photo-gallery.php:1411
    5892 #, fuzzy
     6036#: photo-gallery.php:1438
    58936037#| msgid "Order by: "
    58946038msgid "Order By"
    5895 msgstr "Order by: "
    5896 
    5897 #: photo-gallery.php:1413
    5898 #, fuzzy
     6039msgstr ""
     6040
     6041#: photo-gallery.php:1440
    58996042#| msgid "Show comments"
    59006043msgid "Show Ecommerce"
    5901 msgstr "Show comments"
    5902 
    5903 #: photo-gallery.php:1415
     6044msgstr ""
     6045
     6046#: photo-gallery.php:1442
    59046047msgid "Show Comments"
    5905 msgstr "Show Comments"
    5906 
    5907 #: photo-gallery.php:1417
     6048msgstr ""
     6049
     6050#: photo-gallery.php:1444
    59086051msgid "Restore"
    5909 msgstr "Restore"
    5910 
    5911 #: photo-gallery.php:1420
     6052msgstr ""
     6053
     6054#: photo-gallery.php:1447
    59126055msgid "Exit Fullscreen"
    5913 msgstr "Exit Fullscreen"
    5914 
    5915 #: photo-gallery.php:1422
     6056msgstr ""
     6057
     6058#: photo-gallery.php:1449
    59166059msgid "No tags found"
    59176060msgstr ""
    59186061
    5919 #: photo-gallery.php:1423
     6062#: photo-gallery.php:1450
    59206063msgid "All tags selected"
    59216064msgstr ""
    59226065
    5923 #: photo-gallery.php:1424
     6066#: photo-gallery.php:1451
    59246067msgid "tags selected"
    59256068msgstr ""
    59266069
    5927 #: photo-gallery.php:1426 photo-gallery.php:1429
     6070#: photo-gallery.php:1453 photo-gallery.php:1456
    59286071msgid "Pause"
    5929 msgstr "Pause"
    5930 
    5931 #: photo-gallery.php:1430
     6072msgstr ""
     6073
     6074#: photo-gallery.php:1457
    59326075msgid "Hide info"
    5933 msgstr "Hide info"
    5934 
    5935 #: photo-gallery.php:1432
     6076msgstr ""
     6077
     6078#: photo-gallery.php:1459
    59366079msgid "Hide rating"
    5937 msgstr "Hide rating"
    5938 
    5939 #: photo-gallery.php:1434
     6080msgstr ""
     6081
     6082#: photo-gallery.php:1461
    59406083msgid "Ok"
    59416084msgstr ""
    59426085
    5943 #: photo-gallery.php:1483
     6086#: photo-gallery.php:1468
     6087msgid "see less tags"
     6088msgstr ""
     6089
     6090#: photo-gallery.php:1512
    59446091msgid ""
    59456092"Photo Gallery is a fully responsive gallery plugin with advanced "
     
    59496096msgstr ""
    59506097
    5951 #: photo-gallery.php:1487
     6098#: photo-gallery.php:1516
    59526099msgid "Easy Set-up and Management"
    59536100msgstr ""
    59546101
    5955 #: photo-gallery.php:1488
     6102#: photo-gallery.php:1517
    59566103msgid ""
    59576104"Create stunning, 100% responsive, SEO-friendly photo galleries in minutes. "
     
    59616108msgstr ""
    59626109
    5963 #: photo-gallery.php:1491
     6110#: photo-gallery.php:1520
    59646111msgid "Unlimited Photos and Albums"
    59656112msgstr ""
    59666113
    5967 #: photo-gallery.php:1492
     6114#: photo-gallery.php:1521
    59686115msgid ""
    59696116"The plugin allows creating unlimited number of galleries or gallery groups "
     
    59736120msgstr ""
    59746121
    5975 #: photo-gallery.php:1495
     6122#: photo-gallery.php:1524
    59766123msgid "Customizable"
    59776124msgstr ""
    59786125
    5979 #: photo-gallery.php:1496
     6126#: photo-gallery.php:1525
    59806127msgid ""
    59816128"The gallery plugin is easily customizable. You can edit themes changing "
     
    59856132msgstr ""
    59866133
    5987 #: photo-gallery.php:1499
     6134#: photo-gallery.php:1528
    59886135msgid "10 View Options"
    59896136msgstr ""
    59906137
    5991 #: photo-gallery.php:1500
     6138#: photo-gallery.php:1529
    59926139msgid ""
    59936140"Photo Gallery plugin allows displaying galleries and gallery groups in 10 "
     
    59976144msgstr ""
    59986145
    5999 #: photo-gallery.php:1503
     6146#: photo-gallery.php:1532
    60006147msgid "Audio and Video Support"
    60016148msgstr ""
    60026149
    6003 #: photo-gallery.php:1504
     6150#: photo-gallery.php:1533
    60046151msgid ""
    60056152"You can include both videos and images within a single gallery. WordPress "
     
    60086155msgstr ""
    60096156
    6010 #: photo-gallery.php:1510
     6157#: photo-gallery.php:1539
    60116158msgid "Installing"
    60126159msgstr ""
    60136160
    6014 #: photo-gallery.php:1515
     6161#: photo-gallery.php:1544
    60156162msgid "Creating/Editing Galleries"
    60166163msgstr ""
    60176164
    6018 #: photo-gallery.php:1519
     6165#: photo-gallery.php:1548
    60196166msgid "Instagram Gallery"
    60206167msgstr ""
    60216168
    6022 #: photo-gallery.php:1525
     6169#: photo-gallery.php:1554
    60236170msgid "Creating/Editing Tags"
    60246171msgstr ""
    60256172
    6026 #: photo-gallery.php:1530
     6173#: photo-gallery.php:1559
    60276174msgid "Creating/Editing Albums"
    60286175msgstr ""
    60296176
    6030 #: photo-gallery.php:1535
     6177#: photo-gallery.php:1564
    60316178msgid "Editing Options"
    60326179msgstr ""
    60336180
    6034 #: photo-gallery.php:1539
     6181#: photo-gallery.php:1568
    60356182msgid "Global Options"
    60366183msgstr ""
    60376184
    6038 #: photo-gallery.php:1555
     6185#: photo-gallery.php:1584
    60396186msgid "Album Options"
    60406187msgstr ""
    60416188
    6042 #: photo-gallery.php:1563
     6189#: photo-gallery.php:1592
    60436190msgid "Thumbnail Options"
    60446191msgstr ""
    60456192
    6046 #: photo-gallery.php:1567
     6193#: photo-gallery.php:1596
    60476194msgid "Image Options"
    60486195msgstr ""
    60496196
    6050 #: photo-gallery.php:1571
     6197#: photo-gallery.php:1600
    60516198msgid "Social Options"
    60526199msgstr ""
    60536200
    6054 #: photo-gallery.php:1575
     6201#: photo-gallery.php:1604
    60556202msgid "Carousel Options"
    60566203msgstr ""
    60576204
    6058 #: photo-gallery.php:1581
     6205#: photo-gallery.php:1610
    60596206msgid "Creating/Editing Themes"
    60606207msgstr ""
    60616208
    6062 #: photo-gallery.php:1605
     6209#: photo-gallery.php:1634
    60636210msgid "Compact Album"
    60646211msgstr ""
    60656212
    6066 #: photo-gallery.php:1609
     6213#: photo-gallery.php:1638
    60676214msgid "Masonry Album"
    60686215msgstr ""
    60696216
    6070 #: photo-gallery.php:1613
     6217#: photo-gallery.php:1642
    60716218msgid "Extended Album"
    60726219msgstr ""
    60736220
    6074 #: photo-gallery.php:1625
     6221#: photo-gallery.php:1654
    60756222msgid "Page Navigation"
    60766223msgstr ""
    60776224
    6078 #: photo-gallery.php:1635
     6225#: photo-gallery.php:1664
    60796226msgid "Generating Shortcode"
    60806227msgstr ""
    60816228
    6082 #: photo-gallery.php:1640
    6083 #, fuzzy
     6229#: photo-gallery.php:1669
    60846230#| msgid "Hide Comments"
    60856231msgid "Editing Comments"
    6086 msgstr "Hide Comments"
    6087 
    6088 #: photo-gallery.php:1645
     6232msgstr ""
     6233
     6234#: photo-gallery.php:1674
    60896235msgid "Editing Ratings"
    60906236msgstr ""
    60916237
    6092 #: photo-gallery.php:1650
     6238#: photo-gallery.php:1679
    60936239msgid "Publishing the Created Photo Gallery"
    60946240msgstr ""
    60956241
    6096 #: photo-gallery.php:1654
     6242#: photo-gallery.php:1683
    60976243msgid "General Parameters"
    60986244msgstr ""
    60996245
    6100 #: photo-gallery.php:1658
     6246#: photo-gallery.php:1687
    61016247msgid "Lightbox Parameters"
    61026248msgstr ""
    61036249
    6104 #: photo-gallery.php:1668
     6250#: photo-gallery.php:1697
    61056251msgid "Publishing Photo Gallery Widgets"
    61066252msgstr ""
    61076253
    6108 #: photo-gallery.php:1672
     6254#: photo-gallery.php:1701
    61096255msgid "Tag Cloud"
    61106256msgstr ""
    61116257
    6112 #: photo-gallery.php:1684
     6258#: photo-gallery.php:1713
    61136259msgid "Photo Gallery Widget"
    61146260msgstr ""
    61156261
    6116 #: photo-gallery.php:1755
     6262#: photo-gallery.php:1784
    61176263msgid "Albums"
    61186264msgstr ""
    61196265
    6120 #: photo-gallery.php:1770
    6121 #, fuzzy
     6266#: photo-gallery.php:1799
    61226267#| msgid "Gallery is empty."
    61236268msgid "Gallery tags"
    6124 msgstr "Gallery is empty."
    6125 
    6126 #: photo-gallery.php:1819
     6269msgstr ""
     6270
     6271#: photo-gallery.php:1848
    61276272msgid "Photo gallery plugin autoupdate interval."
    6128 msgstr "Photo gallery plugin autoupdate interval."
    6129 
    6130 #: photo-gallery.php:1862
     6273msgstr ""
     6274
     6275#: photo-gallery.php:1891
    61316276#, php-format
    61326277msgid "Please update the %s add-on to start using."
    61336278msgstr ""
    61346279
    6135 #: photo-gallery.php:1863
     6280#: photo-gallery.php:1892
    61366281#, php-format
    61376282msgid "Please update the %s add-ons to start using."
    61386283msgstr ""
    61396284
    6140 #: photo-gallery.php:1906
    6141 #, fuzzy
     6285#: photo-gallery.php:1935
    61426286#| msgid "Rated."
    61436287msgid "Rate"
    6144 msgstr "Rated."
    6145 
    6146 #: photo-gallery.php:2013
    6147 #, php-format
    6148 msgid ""
    6149 "%s Photo Gallery advises:%s %sCheck your website’s performance, optimize "
    6150 "images and improve the speed in just minutes.%s"
    6151 msgstr ""
    6152 
    6153 #: wd/includes/deactivate.php:37
     6288msgstr ""
     6289
     6290#: wd/includes/deactivate.php:22
    61546291msgid "Technical problems / hard to use"
    61556292msgstr ""
    61566293
    6157 #: wd/includes/deactivate.php:41
     6294#: wd/includes/deactivate.php:26
    61586295msgid "Free version is limited"
    61596296msgstr ""
    61606297
    6161 #: wd/includes/deactivate.php:45
     6298#: wd/includes/deactivate.php:30
    61626299msgid "Upgrading to paid version"
    61636300msgstr ""
    61646301
    6165 #: wd/includes/deactivate.php:49
     6302#: wd/includes/deactivate.php:34
    61666303msgid "Temporary deactivation"
    61676304msgstr ""
    61686305
    6169 #: wd/includes/notices.php:211
     6306#: wd/includes/notices.php:208
    61706307msgid "Leave A Review?"
    61716308msgstr ""
    61726309
    6173 #: wd/includes/notices.php:212
     6310#: wd/includes/notices.php:209
    61746311#, php-format
    61756312msgid ""
     
    61786315msgstr ""
    61796316
     6317#: wd/includes/notices.php:210
     6318msgid "Sure! I'd love to!"
     6319msgstr ""
     6320
     6321#: wd/includes/notices.php:211
     6322msgid "I've already left a review"
     6323msgstr ""
     6324
     6325#: wd/includes/notices.php:212
     6326msgid "Maybe Later"
     6327msgstr ""
     6328
    61806329#: wd/includes/notices.php:213
    6181 msgid "Sure! I'd love to!"
    6182 msgstr ""
    6183 
    6184 #: wd/includes/notices.php:214
    6185 msgid "I've already left a review"
    6186 msgstr ""
    6187 
    6188 #: wd/includes/notices.php:215
    6189 msgid "Maybe Later"
    6190 msgstr ""
    6191 
    6192 #: wd/includes/notices.php:216
    61936330msgid "Never show again"
    61946331msgstr ""
     
    62526389
    62536390#: wd/templates/display_overview.php:43
    6254 #, fuzzy
    62556391#| msgid "Back"
    62566392msgid "Backup"
    6257 msgstr "Back"
     6393msgstr ""
    62586394
    62596395#: wd/templates/display_overview.php:44
     
    63086444
    63096445#: wd/templates/display_overview.php:75 wd/templates/display_overview.php:96
    6310 #, fuzzy
    63116446#| msgid "Load More..."
    63126447msgid "Learn More"
    6313 msgstr "Load More..."
     6448msgstr ""
    63146449
    63156450#: wd/templates/display_overview.php:81
     
    63796514msgstr ""
    63806515
    6381 #: wd/wd.php:72 wd/wd.php:76
    6382 msgid "Premium"
    6383 msgstr ""
     6516#, fuzzy
     6517#~| msgid "Gallery is empty."
     6518#~ msgid "Gallery defaults"
     6519#~ msgstr "Gallery is empty."
     6520
     6521#, fuzzy
     6522#~| msgid "Gallery is empty."
     6523#~ msgid "Gallery Group defaults"
     6524#~ msgstr "Gallery is empty."
    63846525
    63856526#, fuzzy
  • photo-gallery/trunk/photo-gallery.php

    r2694928 r2706798  
    44 * Plugin URI: https://10web.io/plugins/wordpress-photo-gallery/?utm_source=photo_gallery&utm_medium=free_plugin
    55 * Description: This plugin is a fully responsive gallery plugin with advanced functionality.  It allows having different image galleries for your posts and pages. You can create unlimited number of galleries, combine them into albums, and provide descriptions and tags.
    6  * Version: 1.6.2
     6 * Version: 1.6.3
    77 * Author: Photo Gallery Team
    88 * Author URI: https://10web.io/plugins/?utm_source=photo_gallery&utm_medium=free_plugin
     
    106106    $this->front_url = $this->plugin_url;
    107107    $this->main_file = plugin_basename(__FILE__);
    108     $this->plugin_version = '1.6.2';
    109     $this->db_version = '1.6.2';
     108    $this->plugin_version = '1.6.3';
     109    $this->db_version = '1.6.3';
    110110    $this->prefix = 'bwg';
    111111    $this->nicename = __('Photo Gallery', $this->prefix);
     
    990990    require_once(BWG()->plugin_dir . '/framework/WDWLibrary.php');
    991991    $page = WDWLibrary::get('action');
     992    $filemanager_sort_by = WDWLibrary::get('sort_by', 0);
     993    if ($filemanager_sort_by) {
     994      $filemanager_sort_order = WDWLibrary::get('sort_order', 'asc');
     995      update_option('bwg_filemanager_sorting', [get_current_user_id() => ['sort_by' => $filemanager_sort_by, 'sort_order' => $filemanager_sort_order]]);
     996    }
    992997    if (($page != '') && (($page == 'addImages') || ($page == 'addMusic'))) {
    993998      if (!WDWLibrary::verify_nonce($page)) {
  • photo-gallery/trunk/readme.txt

    r2694928 r2706798  
    44Requires at least: 4.6
    55Tested up to: 5.9
    6 Stable tag: 1.6.2
     6Stable tag: 1.6.3
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    282282
    283283== Changelog ==
     284
     285= 1.6.3 =
     286* Improved: Storable sort order in filemanager.
     287* Improved: Storable sort order in list views.
     288* Fixed: SQL Injection.
     289* Fixed: Cross-Site Scripting.
     290* Fixed: Slideshow responsiveness.
     291* Fixed: Add tag functionality on PHP 8.
     292* Fixed: Open gallery in new tab from gallery group.
     293* Fixed: Thumbnails alignment with enabled images titles.
    284294
    285295= 1.6.2 =
Note: See TracChangeset for help on using the changeset viewer.