Photo Gallery by WD – Responsive Photo Gallery - Version 1.5.69

Version Description

  • Added: Possibility to set Embed YouTube video starting time and to show related videos from your channel.
  • Fixed: XSS vulnerability.
  • Fixed: Scroll bar styles in comments.
  • Fixed: Thumbnails alignment in uploader.
  • Fixed: Remove I button to show image title/description for image with empty title/description in lightbox.
  • Fixed: Update preview images after the gallery content has been removed.
  • Fixed: Message after deleting images with bulk action.
Download this release

Release Info

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

Code changes from version 1.5.68 to 1.5.69

admin/models/Albums.php CHANGED
@@ -80,8 +80,11 @@ class AlbumsModel_bwg {
80
  */
81
  public function delete( $id, $all = FALSE ) {
82
  global $wpdb;
 
 
83
  $prepareArgs = array();
84
- if( !$all ) {
 
85
  $where = ' WHERE id = %d';
86
  $alb_gal_where = ' AND alb_gal_id = %d';
87
  $prepareArgs[] = $id;
@@ -98,7 +101,7 @@ class AlbumsModel_bwg {
98
  }
99
  }
100
 
101
- if( !empty($prepareArgs) ) {
102
  $delete = $wpdb->query($wpdb->prepare('DELETE FROM `' . $wpdb->prefix . 'bwg_album`' . $where, $prepareArgs));
103
  $wpdb->query($wpdb->prepare('DELETE FROM `' . $wpdb->prefix . 'bwg_album_gallery` WHERE is_album="1"' . $alb_gal_where, $prepareArgs));
104
  } else {
@@ -147,8 +150,8 @@ class AlbumsModel_bwg {
147
  $dublicatedAlbumId = 0;
148
  $album_id = 0;
149
  foreach ( $results as $row ) {
150
- $album_row['name'] = $row->name;
151
- $album_row['slug'] = $row->slug;
152
  $album_row['description'] = $row->description;
153
  $album_row['preview_image'] = $row->preview_image;
154
  $album_row['random_preview_image'] = $row->random_preview_image;
@@ -172,9 +175,6 @@ class AlbumsModel_bwg {
172
  $dublicatedAlbumId = $row->id;
173
  }
174
  if ( $album_id ) {
175
- $slug = $album_row['slug'] . '-' . $album_id;
176
- // Update bwg_album slug.
177
- $updated = $wpdb->query($wpdb->prepare('UPDATE `' . $wpdb->prefix . 'bwg_album` SET `slug`=%s WHERE id = %d', $slug, $album_id));
178
  $format = array('%d');
179
  $album_gallery_row['album_id'] = $album_id;
180
  if ( $row->alb_gal_id ) {
@@ -196,7 +196,7 @@ class AlbumsModel_bwg {
196
  $custom_post_params = array(
197
  'id' => $album_id,
198
  'title' => $album_row['name'],
199
- 'slug' => $slug,
200
  'type' => array(
201
  'post_type' => 'album',
202
  'mode' => '',
@@ -225,8 +225,8 @@ class AlbumsModel_bwg {
225
  `a`.`id` = %d',$id));
226
  if ( $rows ) {
227
  $row = $rows[0];
228
- $album_row['name'] = $row->name;
229
- $album_row['slug'] = $row->slug;
230
  $album_row['description'] = $row->description;
231
  $album_row['preview_image'] = $row->preview_image;
232
  $album_row['random_preview_image'] = $row->random_preview_image;
@@ -246,9 +246,6 @@ class AlbumsModel_bwg {
246
  );
247
  $album_id = $this->insert_data_to_db('bwg_album', $album_row, $format);
248
  if ( $album_id ) {
249
- $slug = $album_row['slug'] . '-' . $album_id;
250
- // Update bwg_album slug.
251
- $updated = $wpdb->query( $wpdb->prepare('UPDATE `' . $wpdb->prefix . 'bwg_album` SET `slug`=%s WHERE id = %d', $slug, $album_id) );
252
  $album_gallery_row['album_id'] = $album_id;
253
  $format = array('%d');
254
  foreach ( $rows as $row ) {
@@ -272,7 +269,7 @@ class AlbumsModel_bwg {
272
  $custom_post_params = array(
273
  'id' => $album_id,
274
  'title' => $album_row['name'],
275
- 'slug' => $slug,
276
  'type' => array(
277
  'post_type' => 'album',
278
  'mode' => '',
80
  */
81
  public function delete( $id, $all = FALSE ) {
82
  global $wpdb;
83
+ $where = '';
84
+ $alb_gal_where = '';
85
  $prepareArgs = array();
86
+
87
+ if ( !$all ) {
88
  $where = ' WHERE id = %d';
89
  $alb_gal_where = ' AND alb_gal_id = %d';
90
  $prepareArgs[] = $id;
101
  }
102
  }
103
 
104
+ if ( !empty($prepareArgs) ) {
105
  $delete = $wpdb->query($wpdb->prepare('DELETE FROM `' . $wpdb->prefix . 'bwg_album`' . $where, $prepareArgs));
106
  $wpdb->query($wpdb->prepare('DELETE FROM `' . $wpdb->prefix . 'bwg_album_gallery` WHERE is_album="1"' . $alb_gal_where, $prepareArgs));
107
  } else {
150
  $dublicatedAlbumId = 0;
151
  $album_id = 0;
152
  foreach ( $results as $row ) {
153
+ $album_row['name'] = WDWLibrary::get_unique_value('bwg_album', 'name', $row->name, 0);
154
+ $album_row['slug'] = WDWLibrary::get_unique_value('bwg_album', 'slug', $row->slug, 0);
155
  $album_row['description'] = $row->description;
156
  $album_row['preview_image'] = $row->preview_image;
157
  $album_row['random_preview_image'] = $row->random_preview_image;
175
  $dublicatedAlbumId = $row->id;
176
  }
177
  if ( $album_id ) {
 
 
 
178
  $format = array('%d');
179
  $album_gallery_row['album_id'] = $album_id;
180
  if ( $row->alb_gal_id ) {
196
  $custom_post_params = array(
197
  'id' => $album_id,
198
  'title' => $album_row['name'],
199
+ 'slug' => $album_row['slug'],
200
  'type' => array(
201
  'post_type' => 'album',
202
  'mode' => '',
225
  `a`.`id` = %d',$id));
226
  if ( $rows ) {
227
  $row = $rows[0];
228
+ $album_row['name'] = WDWLibrary::get_unique_value('bwg_album', 'name', $row->name, 0);
229
+ $album_row['slug'] = WDWLibrary::get_unique_value('bwg_album', 'slug', $row->slug, 0);
230
  $album_row['description'] = $row->description;
231
  $album_row['preview_image'] = $row->preview_image;
232
  $album_row['random_preview_image'] = $row->random_preview_image;
246
  );
247
  $album_id = $this->insert_data_to_db('bwg_album', $album_row, $format);
248
  if ( $album_id ) {
 
 
 
249
  $album_gallery_row['album_id'] = $album_id;
250
  $format = array('%d');
251
  foreach ( $rows as $row ) {
269
  $custom_post_params = array(
270
  'id' => $album_id,
271
  'title' => $album_row['name'],
272
+ 'slug' => $album_row['slug'],
273
  'type' => array(
274
  'post_type' => 'album',
275
  'mode' => '',
admin/models/Galleries.php CHANGED
@@ -20,7 +20,6 @@ class GalleriesModel_bwg {
20
  $page_per = $params['items_per_page'];
21
  $page_num = $params['page_num'];
22
  $search = $params['search'];
23
-
24
  if ( !$total ) {
25
  $query = 'SELECT t1.*, count(t2.id) as images_count';
26
  }
@@ -53,7 +52,7 @@ class GalleriesModel_bwg {
53
  $query .= " GROUP BY t1.id ORDER BY t1.`" . $orderby . "` " . $order;
54
  }
55
  if ( !$total ) {
56
- $rows = $wpdb->get_results( $wpdb->prepare($query, $prepareArgs) );
57
  if ( !empty($rows) ) {
58
  foreach ( $rows as $row ) {
59
  $row->preview_image = WDWLibrary::image_url_version($row->preview_image, $row->modified_date);
@@ -62,12 +61,14 @@ class GalleriesModel_bwg {
62
  }
63
  }
64
  else {
65
- if ( !empty( $prepareArgs ) ) {
66
- $rows = $wpdb->get_var( $wpdb->prepare( $query, $prepareArgs ) );
67
- } else {
68
- $rows = $wpdb->get_var( $query );
 
69
  }
70
  }
 
71
  return $rows;
72
  }
73
 
@@ -78,7 +79,7 @@ class GalleriesModel_bwg {
78
  *
79
  * @return array|null|object|string
80
  */
81
- public function total($params) {
82
  return $this->get_rows_data($params, TRUE);
83
  }
84
 
@@ -92,38 +93,35 @@ class GalleriesModel_bwg {
92
  */
93
  public function delete( $id, $all = FALSE ) {
94
  global $wpdb;
95
-
96
  $where = '';
97
  $image_where = '';
98
  $alb_gal_where = '';
99
  $prepareArgs = array();
100
-
101
  if ( !$all ) {
102
  $where = ' WHERE id=%d';
103
  $image_where = ' WHERE gallery_id=%d';
104
  $alb_gal_where = ' AND alb_gal_id=%d';
105
  $prepareArgs[] = $id;
106
  }
107
-
108
  // Remove custom post.
109
  if ( $all ) {
110
  $wpdb->query($wpdb->prepare('DELETE FROM `' . $wpdb->prefix . 'posts` WHERE `post_type`="%s"', "bwg_gallery"));
111
  }
112
  else {
113
- $row = $wpdb->get_row( $wpdb->prepare('SELECT `slug` FROM `' . $wpdb->prefix . 'bwg_gallery` WHERE id="%d"', $id) );
114
  if ( !empty($row) ) {
115
- WDWLibrary::bwg_remove_custom_post( array( 'slug' => $row->slug, 'post_type' => 'bwg_gallery') );
116
  }
117
  }
118
-
119
- if( !empty($prepareArgs) ) {
120
- $delete = $wpdb->query($wpdb->prepare('DELETE FROM `' . $wpdb->prefix . 'bwg_gallery`' . $where, $prepareArgs));
121
- $wpdb->query($wpdb->prepare('DELETE FROM `' . $wpdb->prefix . 'bwg_image`' . $image_where, $prepareArgs));
122
- $wpdb->query($wpdb->prepare('DELETE FROM `' . $wpdb->prefix . 'bwg_album_gallery` WHERE is_album="0"' . $alb_gal_where, $prepareArgs));
123
- } else {
124
- $delete = $wpdb->query('DELETE FROM `' . $wpdb->prefix . 'bwg_gallery`' . $where);
125
- $wpdb->query('DELETE FROM `' . $wpdb->prefix . 'bwg_image`' . $image_where);
126
- $wpdb->query('DELETE FROM `' . $wpdb->prefix . 'bwg_album_gallery` WHERE is_album="0"' . $alb_gal_where);
127
  }
128
  if ( $delete ) {
129
  if ( $all ) {
@@ -143,25 +141,27 @@ class GalleriesModel_bwg {
143
  /**
144
  * Duplicate.
145
  *
146
- * @param $id
147
  * @param bool $all
148
  *
149
  * @return int
150
  */
151
  public function duplicate( $idtoget, $all = FALSE ) {
152
  global $wpdb;
153
-
154
- if (!$idtoget) {
155
  $ids = $wpdb->get_col('SELECT id FROM ' . $wpdb->prefix . 'bwg_gallery');
156
- } else {
157
- $ids = array($idtoget);
158
  }
159
- foreach ($ids as $id) {
 
 
 
160
  $row = $this->get_row_data($id);
161
- if ($row) {
 
 
162
  $data = array(
163
- 'name' => $row->name,
164
- 'slug' => $row->slug,
165
  'description' => $row->description,
166
  'page_link' => '',
167
  'preview_image' => $row->preview_image,
@@ -175,7 +175,6 @@ class GalleriesModel_bwg {
175
  'update_flag' => $row->update_flag,
176
  'modified_date' => time(),
177
  );
178
-
179
  $format = array(
180
  '%s',
181
  '%s',
@@ -192,19 +191,15 @@ class GalleriesModel_bwg {
192
  '%s',
193
  '%d',
194
  );
195
-
196
  $saved = $wpdb->insert($wpdb->prefix . 'bwg_gallery', $data, $format);
197
- if ($saved !== FALSE) {
198
  $new_gallery_id = $wpdb->insert_id;
199
-
200
  $query = "SELECT * FROM " . $wpdb->prefix . "bwg_image where gallery_id=%d";
201
- $images = $wpdb->get_results( $wpdb->prepare($query,$id) );
202
-
203
- foreach ($images as $key => $value) {
204
  $old_image_id = $value->id;
205
-
206
  $value->gallery_id = $new_gallery_id;
207
- $value->id = null;
208
  $format = array(
209
  '%d',
210
  '%d',
@@ -230,14 +225,12 @@ class GalleriesModel_bwg {
230
  '%d',
231
  '%d',
232
  );
233
- $wpdb->insert($wpdb->prefix . 'bwg_image', (array)$value, $format);
234
  $new_image_id = $wpdb->insert_id;
235
-
236
  $query = "SELECT * FROM " . $wpdb->prefix . "bwg_image_tag where gallery_id=%d and image_id=%d";
237
- $image_tags = $wpdb->get_results( $wpdb->prepare($query, array($id,$old_image_id)) );
238
-
239
- foreach ($image_tags as $image_tag) {
240
- $image_tag->id = null;
241
  $image_tag->image_id = $new_image_id;
242
  $image_tag->gallery_id = $new_gallery_id;
243
  $format = array(
@@ -245,14 +238,13 @@ class GalleriesModel_bwg {
245
  '%d',
246
  '%d',
247
  );
248
- $wpdb->insert($wpdb->prefix . 'bwg_image_tag', (array)$image_tag, $format);
249
  }
250
  }
251
- $slug = $this->bwg_get_unique_slug($row->name, $id);
252
  // Create custom post (type is gallery).
253
  $custom_post_params = array(
254
  'id' => $new_gallery_id,
255
- 'title' => $row->name,
256
  'slug' => $slug,
257
  'old_slug' => $slug,
258
  'type' => array(
@@ -261,9 +253,10 @@ class GalleriesModel_bwg {
261
  ),
262
  );
263
  WDWLibrary::bwg_create_custom_post($custom_post_params);
264
- if ($all) {
265
  $message_id = 28;
266
- } else {
 
267
  $message_id = 11;
268
  }
269
  }
@@ -278,7 +271,7 @@ class GalleriesModel_bwg {
278
  */
279
  public function delete_unknown_images() {
280
  global $wpdb;
281
- $wpdb->query($wpdb->prepare('DELETE FROM `' . $wpdb->prefix . 'bwg_image` WHERE gallery_id=%d',0));
282
  }
283
 
284
  /**
@@ -290,18 +283,16 @@ class GalleriesModel_bwg {
290
  *
291
  * @return array|null|object|string
292
  */
293
- public function get_image_rows_data($gallery_id, $params, $total = FALSE) {
294
  global $wpdb;
295
- $rows = array();
296
  $order = $params['order'];
297
  $orderby = $params['orderby'];
298
  $page_per = $params['items_per_page'];
299
  $page_num = $params['page_num'];
300
  $search = $params['search'];
301
  $prepareArgs = array();
302
-
303
  $ecommerce_addon = function_exists('BWGEC');
304
-
305
  if ( !$total ) {
306
  $query = 'SELECT T_IMAGE.*';
307
  if ( $ecommerce_addon ) {
@@ -316,7 +307,6 @@ class GalleriesModel_bwg {
316
  $query .= " LEFT JOIN `" . $wpdb->prefix . "wdpg_ecommerce_pricelists` AS T_PRICELISTS ON T_IMAGE.pricelist_id = T_PRICELISTS.id";
317
  $query .= " LEFT JOIN ( SELECT MAX(item_longest_dimension) AS item_longest_dimension, pricelist_id FROM `" . $wpdb->prefix . "wdpg_ecommerce_pricelist_items` GROUP BY pricelist_id) AS T_PRICELIST_ITEMS ON T_PRICELIST_ITEMS.pricelist_id = T_PRICELISTS.id";
318
  }
319
-
320
  if ( !current_user_can('manage_options') && BWG()->options->image_role ) {
321
  $query .= " WHERE author=%d";
322
  $prepareArgs[] = get_current_user_id();
@@ -326,13 +316,13 @@ class GalleriesModel_bwg {
326
  }
327
  $query .= " AND `gallery_id`=%d";
328
  $prepareArgs[] = $gallery_id;
329
- $search_where = '';
330
  if ( $search ) {
331
  $search_keys = explode(' ', trim($search));
332
  $alt_search = '(';
333
  $filename_search = '(';
334
  $description_search = '(';
335
- foreach( $search_keys as $search_key) {
336
  $alt_search .= '`T_IMAGE`.`alt` LIKE %s AND ';
337
  $filename_search .= '`T_IMAGE`.`filename` LIKE %s AND ';
338
  $description_search .= '`T_IMAGE`.`description` LIKE %s AND ';
@@ -348,7 +338,7 @@ class GalleriesModel_bwg {
348
  $description_search .= ')';
349
  $search_where = ' AND (' . $filename_search . ' OR ' . $alt_search . ' OR ' . $description_search . ') ';
350
  }
351
- $query .= $search_where;
352
  if ( !$total ) {
353
  $query .= ' ORDER BY `' . $orderby . '` ' . $order;
354
  $query .= ' LIMIT %d, %d';
@@ -396,14 +386,13 @@ class GalleriesModel_bwg {
396
  $rows['template']->priselist_name = '';
397
  $rows['template']->not_set_items = 0;
398
  $rows['template']->modified_date = '';
399
-
400
  foreach ( $rows as $key => $value ) {
401
  $value->tags = $this->get_tag_rows_data($value->id);
402
  $value->pure_image_url = $value->image_url;
403
  $value->pure_thumb_url = $value->thumb_url;
404
  $value->image_url = WDWLibrary::image_url_version($value->image_url, $value->modified_date);
405
  $value->thumb_url = WDWLibrary::image_url_version($value->thumb_url, $value->modified_date);
406
- if ( $key != 'template') {
407
  $value->pure_image_url = esc_url($value->pure_image_url);
408
  $value->pure_thumb_url = esc_url($value->pure_thumb_url);
409
  $value->image_url = esc_url($value->image_url);
@@ -414,6 +403,7 @@ class GalleriesModel_bwg {
414
  else {
415
  $rows = $wpdb->get_var($wpdb->prepare($query, $prepareArgs));
416
  }
 
417
  return $rows;
418
  }
419
 
@@ -425,7 +415,7 @@ class GalleriesModel_bwg {
425
  *
426
  * @return array|null|object|string
427
  */
428
- public function image_total($gallery_id, $params) {
429
  return $this->get_image_rows_data($gallery_id, $params, TRUE);
430
  }
431
 
@@ -436,10 +426,9 @@ class GalleriesModel_bwg {
436
  *
437
  * @return mixed
438
  */
439
- public function get_tag_rows_data($image_id) {
440
  global $wpdb;
441
  $rows = $wpdb->get_results($wpdb->prepare("SELECT * FROM " . $wpdb->prefix . "terms AS table1 INNER JOIN " . $wpdb->prefix . "bwg_image_tag AS table2 ON table1.term_id=table2.tag_id WHERE table2.image_id='%d' ORDER BY table2.tag_id", $image_id));
442
-
443
  if ( !$rows ) {
444
  $rows = array();
445
  }
@@ -501,9 +490,10 @@ class GalleriesModel_bwg {
501
  *
502
  * @return array
503
  */
504
- public function save($image_action = '') {
505
  $gallery_id = $this->save_db();
506
- $data = $this->save_image_db( $gallery_id, $image_action );
 
507
  return array(
508
  'id' => $gallery_id,
509
  'saved' => (($gallery_id === FALSE || $data['images_saved'] === FALSE) ? FALSE : TRUE),
@@ -521,9 +511,10 @@ class GalleriesModel_bwg {
521
  $id = WDWLibrary::get('current_id', 0, 'intval', 'POST');
522
  $name = WDWLibrary::get('name');
523
  $name = htmlentities($name, ENT_QUOTES);
524
- $name = $this->bwg_get_unique_name($name, $id);
525
  $slug = WDWLibrary::get('slug');
526
- $slug = $this->bwg_get_unique_slug((empty($slug) ? $name : $slug), $id);
 
527
  $old_slug = WDWLibrary::get('old_slug');
528
  $preview_image = WDWLibrary::get('preview_image');
529
  $random_preview_image = '';
@@ -534,11 +525,11 @@ class GalleriesModel_bwg {
534
  $random_preview_image = $wpdb->get_var($wpdb->prepare("SELECT thumb_url FROM " . $wpdb->prefix . "bwg_image WHERE gallery_id='%d' ORDER BY `order`", $id));
535
  }
536
  if ( empty($random_preview_image) ) {
537
- $random_preview_image = $this->get_post_random_image( $_REQUEST );
538
  }
539
  }
540
  else {
541
- $random_preview_image = $this->get_post_random_image( $_REQUEST );
542
  }
543
  }
544
  if ( !WDWLibrary::check_external_link($preview_image) ) {
@@ -547,14 +538,13 @@ class GalleriesModel_bwg {
547
  if ( !WDWLibrary::check_external_link($random_preview_image) ) {
548
  $random_preview_image = wp_normalize_path($random_preview_image);
549
  }
550
- if(empty($random_preview_image)) {
551
  $random_preview_image = '';
552
  }
553
-
554
  $data = array(
555
  'name' => $name,
556
  'slug' => $slug,
557
- 'description' => strip_tags(htmlspecialchars_decode(WDWLibrary::get('description', '', FALSE)),"<b>,<p>,<a>,<strong>,<span>,<br>,<ul>,<ol>,<li>,<i>"),
558
  'page_link' => '',
559
  'preview_image' => $preview_image,
560
  'random_preview_image' => $random_preview_image,
@@ -587,10 +577,9 @@ class GalleriesModel_bwg {
587
  $saved = $wpdb->insert($wpdb->prefix . 'bwg_gallery', $data, $format);
588
  $id = $wpdb->insert_id;
589
  }
590
- else {
591
  $saved = $wpdb->update($wpdb->prefix . 'bwg_gallery', $data, array( 'id' => $id ), $format);
592
  }
593
-
594
  if ( $saved !== FALSE ) {
595
  // Create custom post (type is gallery).
596
  $custom_post_params = array(
@@ -604,6 +593,7 @@ class GalleriesModel_bwg {
604
  ),
605
  );
606
  WDWLibrary::bwg_create_custom_post($custom_post_params);
 
607
  return $id;
608
  }
609
  else {
@@ -642,18 +632,23 @@ class GalleriesModel_bwg {
642
  continue;
643
  }
644
  $filename = WDWLibrary::get('input_filename_' . $image_id);
645
- $description = str_replace(array('\\', '\t'), '', WDWLibrary::get('image_description_' . $image_id, '', 'wp_filter_post_kses'));
646
- $description = strip_tags(htmlspecialchars_decode($description),"<b>,<p>,<a>,<strong>,<span>,<br>,<ul>,<ol>,<li>,<i>");
647
- $alt = str_replace(array('\\', '\t'), '', WDWLibrary::get('image_alt_text_' . $image_id, '', 'wp_filter_post_kses'));
 
 
 
 
 
 
648
  $alt = preg_replace("/<a[^>]*>|<\/a>/", '', $alt);
649
- $alt = strip_tags(htmlspecialchars_decode($alt),"<b>,<p>,<a>,<strong>,<span>,<br>,<ul>,<ol>,<li>,<i>");
650
  $date = WDWLibrary::get('input_date_modified_' . $image_id, date('Ymd'));
651
  $size = WDWLibrary::get('input_size_' . $image_id);
652
-
653
  $resolution = WDWLibrary::get('input_resolution_' . $image_id);
654
  $resolution_thumb = WDWLibrary::get('input_resolution_thumb_' . $image_id);
655
- if( ($resolution_thumb == '' || $resolution_thumb == 'x') && $thumb_url != '' ) {
656
- $resolution_thumb = WDWLibrary::get_thumb_size( $thumb_url );
657
  }
658
  $order = WDWLibrary::get('order_input_' . $image_id, 0, 'intval');
659
  $redirect_url = WDWLibrary::get('redirect_url_' . $image_id, '', 'esc_url_raw');
@@ -679,7 +674,6 @@ class GalleriesModel_bwg {
679
  if ( !WDWLibrary::check_external_link($thumb_url) ) {
680
  $thumb_url = wp_normalize_path($thumb_url);
681
  }
682
-
683
  $data += array(
684
  'filename' => $filename,
685
  'image_url' => $image_url,
@@ -693,19 +687,41 @@ class GalleriesModel_bwg {
693
  'pricelist_id' => 0,
694
  'modified_date' => time(),
695
  );
696
- $format = array('%d','%s','%s','%s','%s','%s','%s','%s','%s','%s','%d','%s','%s','%s','%d','%d','%d','%d','%d','%d','%d','%d');
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
697
  $save = $wpdb->insert($wpdb->prefix . 'bwg_image', $data, $format);
698
  $image_id = $wpdb->insert_id;
699
  }
700
  else {
701
- $format = array('%d','%s','%s','%s','%s','%s','%s','%s','%s','%s','%d');
702
- if( WDWLibrary::get('ajax_task') == 'image_rotate_right' || WDWLibrary::get('ajax_task') == 'image_rotate_left' || $data['resolution_thumb'] == '' ) {
703
- unset($data['resolution_thumb']);
704
- unset($format[9]);
705
  }
706
  $save = $wpdb->update($wpdb->prefix . 'bwg_image', $data, array( 'id' => $image_id ), $format);
707
  }
708
-
709
  $wpdb->query($wpdb->prepare('DELETE FROM ' . $wpdb->prefix . 'bwg_image_tag WHERE image_id="%d" AND gallery_id="%d"', $image_id, $gallery_id));
710
  if ( $save !== FALSE ) {
711
  $tag_id_array = explode(',', $tags_ids);
@@ -714,7 +730,6 @@ class GalleriesModel_bwg {
714
  if ( strpos($tag_id, 'pr_') !== FALSE ) {
715
  $tag_id = substr($tag_id, 3);
716
  }
717
-
718
  if ( strpos($tag_id, 'bwg_') === 0 ) {
719
  // If tags added to image from image file meta keywords.
720
  $tag_name = str_replace('bwg_', '', $tag_id);
@@ -732,41 +747,32 @@ class GalleriesModel_bwg {
732
  }
733
  $tag_id = isset($term['term_id']) ? $term['term_id'] : 0;
734
  }
735
-
736
  if ( $tag_id ) {
737
  $wpdb->insert($wpdb->prefix . 'bwg_image_tag', array(
738
  'tag_id' => $tag_id,
739
  'image_id' => $image_id,
740
  'gallery_id' => $gallery_id,
741
- ), array('%d','%d','%d'));
742
  // Increase tag count in term_taxonomy table.
743
  $wpdb->query($wpdb->prepare('UPDATE ' . $wpdb->prefix . 'term_taxonomy SET count="%d" WHERE term_id="%d"', $wpdb->get_var($wpdb->prepare('SELECT COUNT(image_id) FROM ' . $wpdb->prefix . 'bwg_image_tag WHERE tag_id="%d"', $tag_id)), $tag_id));
744
  }
745
  }
746
  }
747
  }
748
-
749
- if ( !$all
750
- && $image_action
751
- && method_exists($this, $image_action)
752
- && isset($_POST['check_' . $temp_image_id]) ) {
753
  $image_message = $this->$image_action($image_id, $gallery_id);
754
  }
755
  }
756
  }
757
-
758
  $wpdb->query('SET @i = 0');
759
  $wpdb->query($wpdb->prepare('UPDATE `' . $wpdb->prefix . 'bwg_image` SET `order` = @i := @i + 1 WHERE `gallery_id` = "%d" ORDER BY `order` ASC', $gallery_id));
760
  if ( !in_array($image_message, WDWLibrary::error_message_ids()) && $image_action && $checked_items_count ) {
761
  $actions = WDWLibrary::image_actions();
762
  $image_message = sprintf(_n('%s item successfully %s.', '%s items successfully %s.', $checked_items_count, BWG()->prefix), $checked_items_count, $actions[$image_action]['bulk_action']);
763
  }
764
- if ( $all
765
- && $image_action
766
- && method_exists($this, $image_action) ) {
767
  $image_message = $this->$image_action(0, $gallery_id, TRUE);
768
  }
769
-
770
  $images_saved = ($save !== FALSE) ? TRUE : FALSE;
771
 
772
  return array( 'images_saved' => $images_saved, 'image_message' => $image_message );
@@ -789,52 +795,7 @@ class GalleriesModel_bwg {
789
  $i++;
790
  }
791
 
792
- return $random_preview_image;
793
- }
794
-
795
- public function bwg_get_unique_slug( $slug, $id ) {
796
- global $wpdb;
797
- $slug = sanitize_title($slug);
798
- if ( $id != 0 ) {
799
- $query = $wpdb->prepare("SELECT slug FROM " . $wpdb->prefix . "bwg_gallery WHERE slug = %s AND id != %d", $slug, $id);
800
- }
801
- else {
802
- $query = $wpdb->prepare("SELECT slug FROM " . $wpdb->prefix . "bwg_gallery WHERE slug = %s", $slug);
803
- }
804
- if ( $wpdb->get_var($query) ) {
805
- $num = 2;
806
- do {
807
- $alt_slug = $slug . "-$num";
808
- $num++;
809
- $slug_check = $wpdb->get_var($wpdb->prepare("SELECT slug FROM " . $wpdb->prefix . "bwg_gallery WHERE slug = %s", $alt_slug));
810
- }
811
- while ( $slug_check );
812
- $slug = $alt_slug;
813
- }
814
-
815
- return $slug;
816
- }
817
-
818
- public function bwg_get_unique_name( $name, $id ) {
819
- global $wpdb;
820
- if ( $id != 0 ) {
821
- $query = $wpdb->prepare("SELECT name FROM " . $wpdb->prefix . "bwg_gallery WHERE name = %s AND id != %d", $name, $id);
822
- }
823
- else {
824
- $query = $wpdb->prepare("SELECT name FROM " . $wpdb->prefix . "bwg_gallery WHERE name = %s", $name);
825
- }
826
- if ( $wpdb->get_var($query) ) {
827
- $num = 2;
828
- do {
829
- $alt_name = $name . "-$num";
830
- $num++;
831
- $slug_check = $wpdb->get_var($wpdb->prepare("SELECT name FROM " . $wpdb->prefix . "bwg_gallery WHERE name = %s", $alt_name));
832
- }
833
- while ( $slug_check );
834
- $name = $alt_name;
835
- }
836
-
837
- return $name;
838
  }
839
 
840
  /**
@@ -854,7 +815,6 @@ class GalleriesModel_bwg {
854
  }
855
  $where = 'WHERE gallery_id=%d';
856
  $prepareArgs[] = $gallery_id;
857
- $where .= ($all ? '' : ' AND id=' . $id);
858
  if ( !$all ) {
859
  $where .= ' AND id=%d';
860
  $prepareArgs[] = $id;
@@ -864,48 +824,45 @@ class GalleriesModel_bwg {
864
  $where .= ' AND `filename` LIKE %s';
865
  $prepareArgs[] = "%" . $search . "%";
866
  }
 
 
867
  $delete = $wpdb->query($wpdb->prepare('DELETE FROM `' . $wpdb->prefix . 'bwg_image`' . $where, $prepareArgs));
868
-
869
- $prepareArgs = array();
870
- if ( $all ) {
871
- $image_where = 'WHERE gallery_id=%d';
872
- $prepareArgs[] = $gallery_id;
873
- } else {
874
- $image_where = ' WHERE image_id=%d';
875
- $prepareArgs[] = $id;
876
- }
877
-
878
- $wpdb->query($wpdb->prepare('DELETE FROM `' . $wpdb->prefix . 'bwg_image_comment`' . $image_where, $prepareArgs));
879
- $wpdb->query($wpdb->prepare('DELETE FROM `' . $wpdb->prefix . 'bwg_image_rate`' . $image_where, $prepareArgs));
880
- $tag_ids = $wpdb->get_col($wpdb->prepare('SELECT tag_id FROM `' . $wpdb->prefix . 'bwg_image_tag`' . $image_where, $prepareArgs));
881
- $wpdb->query($wpdb->prepare('DELETE FROM `' . $wpdb->prefix . 'bwg_image_tag`' . $image_where, $prepareArgs));
882
- // Increase tag count in term_taxonomy table.
883
- if ( !empty($tag_ids) ) {
884
- foreach ( $tag_ids as $tag_id ) {
885
- $wpdb->query($wpdb->prepare('UPDATE ' . $wpdb->prefix . 'term_taxonomy SET count="%d" WHERE term_id="%d"', $wpdb->get_var($wpdb->prepare('SELECT COUNT(image_id) FROM ' . $wpdb->prefix . 'bwg_image_tag WHERE tag_id="%d"', $tag_id)), $tag_id));
886
- }
887
- }
888
-
889
- if ( !empty($current_id) ) {
890
- // after deleted and empty image lists then update `preview_image` and `random_preview_image` colums.
891
- $row = $wpdb->get_row( $wpdb->prepare('SELECT * FROM `' . $wpdb->prefix . 'bwg_gallery` AS `g` INNER JOIN `' . $wpdb->prefix . 'bwg_image` AS `i` ON (`g`.`id` = `i`.`gallery_id`) WHERE `g`.`id` = %d', $current_id) );
892
- if ( empty($row) ) {
893
- $wpdb->update($wpdb->prefix . 'bwg_gallery',
894
- array('preview_image' => '', 'random_preview_image' => ''),
895
- array('id' => $current_id)
896
- );
897
- }
898
- }
899
-
900
  $message = 2;
901
  if ( $delete ) {
 
902
  if ( $all ) {
 
 
903
  $message = 5;
904
  }
905
  else {
 
 
906
  $message = 3;
907
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
908
  }
 
909
  return $message;
910
  }
911
 
@@ -926,23 +883,21 @@ class GalleriesModel_bwg {
926
  }
927
  $where = ' WHERE gallery_id=%d';
928
  $prepareArgs[] = $gallery_id;
929
-
930
  if ( !$all ) {
931
  $where .= ' AND id=%d';
932
  $prepareArgs[] = $id;
933
  }
934
-
935
  $search = WDWLibrary::get('s');
936
  if ( $search ) {
937
  $where .= ' AND `filename` LIKE %s';
938
  $prepareArgs[] = "%" . $search . "%";
939
  }
940
- $updated = $wpdb->query( $wpdb->prepare('UPDATE `' . $wpdb->prefix . 'bwg_image` SET published=1' . $where, $prepareArgs) );
941
-
942
- $message = 2;
943
  if ( $updated !== FALSE ) {
944
  $message = 9;
945
  }
 
946
  return $message;
947
  }
948
 
@@ -963,23 +918,21 @@ class GalleriesModel_bwg {
963
  }
964
  $where = ' WHERE gallery_id=%d';
965
  $prepareArgs[] = $gallery_id;
966
-
967
  if ( !$all ) {
968
  $where .= ' AND id=%d';
969
  $prepareArgs[] = $id;
970
  }
971
-
972
  $search = WDWLibrary::get('s');
973
  if ( $search ) {
974
  $where .= ' AND `filename` LIKE %s';
975
  $prepareArgs[] = "%" . $search . "%";
976
  }
977
- $updated = $wpdb->query( $wpdb->prepare('UPDATE `' . $wpdb->prefix . 'bwg_image` SET published=0' . $where, $prepareArgs) );
978
-
979
- $message = 2;
980
  if ( $updated !== FALSE ) {
981
  $message = 10;
982
  }
 
983
  return $message;
984
  }
985
 
@@ -1007,7 +960,7 @@ class GalleriesModel_bwg {
1007
  $image = $wpdb->get_row($wpdb->prepare('SELECT * FROM ' . $wpdb->prefix . 'bwg_image WHERE id="%d"', $id));
1008
  WDWLibrary::recover_image($image, $thumb_width, $width, 'gallery_page');
1009
  $where = ($id) ? ' `id` = ' . $id : 1;
1010
- WDWLibrary::update_image_modified_date( $where );
1011
  }
1012
 
1013
  return 20;
@@ -1022,14 +975,14 @@ class GalleriesModel_bwg {
1022
  *
1023
  * @return int
1024
  */
1025
- public function image_set_watermark($id, $gallery_id = 0, $all = FALSE) {
1026
  if ( ini_get('allow_url_fopen') == 0 ) {
1027
  $message_id = 27;
1028
  }
1029
  else {
1030
  $options = new WD_BWG_Options();
1031
  list($width_watermark, $height_watermark, $type_watermark) = @getimagesize(str_replace(' ', '%20', $options->built_in_watermark_url));
1032
- if ( $options->built_in_watermark_type == 'image' && (empty($width_watermark) OR empty($height_watermark) OR empty($type_watermark)) ) {
1033
  $message_id = 26;
1034
  }
1035
  else {
@@ -1053,7 +1006,7 @@ class GalleriesModel_bwg {
1053
  *
1054
  * @return int
1055
  */
1056
- public function image_rotate_left($id, $gallery_id = 0, $all = FALSE) {
1057
  return $this->rotate(90, $id, $gallery_id, $all);
1058
  }
1059
 
@@ -1066,7 +1019,7 @@ class GalleriesModel_bwg {
1066
  *
1067
  * @return int
1068
  */
1069
- public function image_rotate_right($id, $gallery_id = 0, $all = FALSE) {
1070
  return $this->rotate(270, $id, $gallery_id, $all);
1071
  }
1072
 
@@ -1087,26 +1040,26 @@ class GalleriesModel_bwg {
1087
  if ( $gallery_id == 0 ) {
1088
  $gallery_id = WDWLibrary::get('current_id', 0, 'intval');
1089
  }
1090
-
1091
  $where = 1;
1092
- if ($gallery_id) {
1093
  $where = ' `gallery_id` = %d';
1094
  $prepareArgs[] = $gallery_id;
1095
- if($image_id) {
1096
  $where .= ' AND `id` = %d';
1097
  $prepareArgs[] = $image_id;
1098
  }
1099
  }
1100
- //$where = ( ($gallery_id) ? ' `gallery_id` = ' . $gallery_id . ($image_id ? ' AND `id` = ' . $image_id : '' ) : 1 );
1101
  $search = WDWLibrary::get('s');
1102
  if ( $search ) {
1103
  $where .= ' AND `filename` LIKE %s';
1104
  $prepareArgs[] = "%" . $search . "%";
1105
  }
1106
- if( !empty($prepareArgs) ) {
1107
- $images_data = $wpdb->get_results($wpdb->prepare('SELECT id, image_url, thumb_url, resolution_thumb FROM `' . $wpdb->prefix . 'bwg_image` WHERE ' . $where, $prepareArgs));
1108
- } else {
1109
- $images_data = $wpdb->get_results('SELECT id, image_url, thumb_url, resolution_thumb FROM `' . $wpdb->prefix . 'bwg_image` WHERE ' . $where);
 
1110
  }
1111
  @ini_set('memory_limit', '-1');
1112
  foreach ( $images_data as $image_data ) {
@@ -1168,20 +1121,19 @@ class GalleriesModel_bwg {
1168
  imagedestroy($thumb_rotate);
1169
  }
1170
  }
1171
- $resolution_thumb = isset($image_data->resolution_thumb) ? $image_data->resolution_thumb : '';
1172
- if ( $resolution_thumb == '' ) {
1173
- $resolution_thumb = WDWLibrary::get_thumb_size( $image_data->thumb_url );
1174
- }
1175
- if ($resolution_thumb != '') {
1176
- $res = explode('x', $resolution_thumb);
1177
- $resolution_thumb = $res[1] . "x" . $res[0];
1178
- WDWLibrary::update_thumb_dimansions($resolution_thumb,"id = $image_data->id");
1179
- }
1180
  }
1181
-
1182
  WDWLibrary::update_image_modified_date($where);
1183
 
1184
- return 22;
1185
  }
1186
 
1187
  /**
@@ -1193,46 +1145,46 @@ class GalleriesModel_bwg {
1193
  *
1194
  * @return int
1195
  */
1196
- public function image_recreate_thumbnail($id, $gallery_id = 0, $all = FALSE) {
1197
  $image_id = ($all ? 0 : $id);
1198
  global $wpdb;
1199
  if ( $gallery_id == 0 ) {
1200
  $gallery_id = WDWLibrary::get('current_id', 0, 'intval');
1201
  }
1202
- //$where = ( ($gallery_id) ? ' `gallery_id` = ' . $gallery_id . ( $image_id ? ' AND `id` = ' . $image_id : '' ) : 1 );
1203
  $where = 1;
1204
  $prepareArgs = array();
1205
- if ($gallery_id) {
1206
  $where = ' `gallery_id` = %d';
1207
  $prepareArgs[] = $gallery_id;
1208
- if($image_id) {
1209
  $where .= ' AND `id` = %d';
1210
  $prepareArgs[] = $image_id;
1211
  }
1212
  }
1213
- if( !empty($prepareArgs) ) {
1214
- $img_ids = $wpdb->get_results($wpdb->prepare('SELECT id, thumb_url FROM `' . $wpdb->prefix . 'bwg_image` WHERE ' . $where, $prepareArgs));
1215
- } else {
1216
- $img_ids = $wpdb->get_results('SELECT id, thumb_url FROM `' . $wpdb->prefix . 'bwg_image` WHERE ' . $where);
 
1217
  }
1218
  $search = WDWLibrary::get('s');
1219
  if ( $search ) {
1220
  $where .= ' AND `filename` LIKE %s';
1221
  $prepareArgs[] = "%" . $search . "%";
1222
-
1223
  }
1224
  foreach ( $img_ids as $img_id ) {
1225
  $file_path = str_replace("thumb", ".original", htmlspecialchars_decode(BWG()->upload_dir . $img_id->thumb_url, ENT_COMPAT | ENT_QUOTES));
1226
  $new_file_path = htmlspecialchars_decode(BWG()->upload_dir . $img_id->thumb_url, ENT_COMPAT | ENT_QUOTES);
1227
  if ( WDWLibrary::repair_image_original($file_path) ) {
1228
- WDWLibrary::resize_image( $file_path, $new_file_path, BWG()->options->upload_thumb_width, BWG()->options->upload_thumb_height );
1229
  $resolution_thumb = WDWLibrary::$thumb_dimansions;
1230
- if($resolution_thumb != '') {
1231
- WDWLibrary::update_thumb_dimansions($resolution_thumb,"id = $img_id->id");
1232
  }
1233
  }
1234
  }
1235
- WDWLibrary::update_image_modified_date( $where, $prepareArgs );
1236
 
1237
  return 23;
1238
  }
@@ -1246,7 +1198,7 @@ class GalleriesModel_bwg {
1246
  *
1247
  * @return int
1248
  */
1249
- public function image_resize($id, $gallery_id = 0, $all = FALSE) {
1250
  $image_id = ($all ? 0 : $id);
1251
  global $wpdb;
1252
  if ( $gallery_id == 0 ) {
@@ -1254,30 +1206,29 @@ class GalleriesModel_bwg {
1254
  }
1255
  $image_width = WDWLibrary::get('image_width', 1600, 'intval');
1256
  $image_height = WDWLibrary::get('image_height', 1200, 'intval');
1257
- $where = ' gallery_id=%d';
1258
- $prepareArgs = array($gallery_id);
1259
- if( !$all ) {
1260
  $where .= ' AND id=%d';
1261
  $prepareArgs[] = $id;
1262
  }
1263
-
1264
  $search = WDWLibrary::get('s');
1265
  if ( $search ) {
1266
  $where .= ' AND `filename` LIKE %s';
1267
  $prepareArgs[] = "%" . $search . "%";
1268
  }
1269
- $images = $wpdb->get_results($wpdb->prepare('SELECT * FROM `' . $wpdb->prefix . 'bwg_image` WHERE ' . $where, $prepareArgs) );
1270
  if ( !empty($images) ) {
1271
  foreach ( $images as $image ) {
1272
  $file_path = BWG()->upload_dir . $image->image_url;
1273
  $thumb_filename = BWG()->upload_dir . $image->thumb_url;
1274
  $original_filename = str_replace('/thumb/', '/.original/', $thumb_filename);
1275
  if ( WDWLibrary::repair_image_original($original_filename) ) {
1276
- WDWLibrary::resize_image( $original_filename, $file_path, $image_width, $image_height );
1277
  }
1278
  }
1279
  }
1280
- WDWLibrary::update_image_modified_date( $where );
1281
 
1282
  return 24;
1283
  }
@@ -1291,34 +1242,33 @@ class GalleriesModel_bwg {
1291
  *
1292
  * @return int
1293
  */
1294
- public function image_edit($id, $gallery_id = 0, $all = FALSE) {
1295
  $title = WDWLibrary::get('title');
1296
  $desc = WDWLibrary::get('desc');
1297
  $redirecturl = WDWLibrary::get('redirecturl', '', 'esc_url_raw');
1298
- $prepareArgs = array($title,$desc,$redirecturl);
1299
  if ( $gallery_id == 0 ) {
1300
  $gallery_id = WDWLibrary::get('current_id', 0, 'intval');
1301
  }
1302
  $where = ' WHERE gallery_id=%d';
1303
  $prepareArgs[] = $gallery_id;
1304
- $format = array('%d');
1305
- if( !$all ) {
1306
  $where .= ' AND id=%d';
1307
  $prepareArgs[] = $id;
1308
  }
1309
-
1310
  $search = WDWLibrary::get('s');
1311
  if ( $search ) {
1312
  $where .= ' AND `filename` LIKE %s';
1313
  $prepareArgs[] = "%" . $search . "%";
1314
  }
1315
  global $wpdb;
1316
-
1317
- $updated = $wpdb->query( $wpdb->prepare('UPDATE `' . $wpdb->prefix . 'bwg_image` SET `alt`="%s", `description`="%s", `redirect_url`="%s"' . $where, $prepareArgs) );
1318
  $message = 2;
1319
  if ( $updated !== FALSE ) {
1320
  $message = 25;
1321
  }
 
1322
  return $message;
1323
  }
1324
 
@@ -1333,13 +1283,11 @@ class GalleriesModel_bwg {
1333
  */
1334
  public function image_edit_alt( $id, $gallery_id = 0, $all = FALSE ) {
1335
  $title = WDWLibrary::get('title');
1336
-
1337
  if ( $gallery_id == 0 ) {
1338
  $gallery_id = WDWLibrary::get('current_id', 0, 'intval');
1339
  }
1340
  $where = ' WHERE gallery_id=%d';
1341
  $prepareArgs = array( $title, $gallery_id );
1342
-
1343
  if ( !$all ) {
1344
  $where .= ' AND id=%d';
1345
  $prepareArgs[] = $id;
@@ -1349,13 +1297,13 @@ class GalleriesModel_bwg {
1349
  $where .= ' AND `filename` LIKE %s';
1350
  $prepareArgs[] = "%" . $search . "%";
1351
  }
1352
-
1353
  global $wpdb;
1354
- $updated = $wpdb->query( $wpdb->prepare('UPDATE `' . $wpdb->prefix . 'bwg_image` SET `alt`="%s"' . $where, $prepareArgs) );
1355
  $message = 2;
1356
  if ( $updated !== FALSE ) {
1357
  $message = 25;
1358
  }
 
1359
  return $message;
1360
  }
1361
 
@@ -1379,19 +1327,18 @@ class GalleriesModel_bwg {
1379
  $where .= ' AND id=%d';
1380
  $prepareArgs[] = $id;
1381
  }
1382
-
1383
  $search = WDWLibrary::get('s');
1384
  if ( $search ) {
1385
  $where .= ' AND `filename` LIKE %s';
1386
  $prepareArgs[] = "%" . $search . "%";
1387
  }
1388
-
1389
  global $wpdb;
1390
- $updated = $wpdb->query( $wpdb->prepare('UPDATE `' . $wpdb->prefix . 'bwg_image` SET `description`="%s"' . $where, $prepareArgs) );
1391
  $message = 2;
1392
  if ( $updated !== FALSE ) {
1393
  $message = 25;
1394
  }
 
1395
  return $message;
1396
  }
1397
 
@@ -1415,38 +1362,35 @@ class GalleriesModel_bwg {
1415
  $where .= ' AND id=%d';
1416
  $prepareArgs[] = $id;
1417
  }
1418
-
1419
  $search = WDWLibrary::get('s');
1420
  if ( $search ) {
1421
  $where .= ' AND `filename` LIKE %s';
1422
  $prepareArgs[] = "%" . $search . "%";
1423
  }
1424
-
1425
  global $wpdb;
1426
- $updated = $wpdb->query( $wpdb->prepare('UPDATE `' . $wpdb->prefix . 'bwg_image` SET `redirect_url`="%s"' . $where, $prepareArgs) );
1427
  $message = 2;
1428
  if ( $updated !== FALSE ) {
1429
  $message = 25;
1430
  }
 
1431
  return $message;
1432
  }
1433
 
1434
- public function image_add_tag($id, $gallery_id = 0, $all = FALSE) {
1435
  if ( $gallery_id == 0 ) {
1436
  $gallery_id = WDWLibrary::get('current_id', 0, 'intval');
1437
  }
1438
-
1439
  $tag_ids = WDWLibrary::get('added_tags_id');
1440
  $tag_act = WDWLibrary::get('added_tags_act');
1441
  $tag_ids_array = explode(',', $tag_ids);
1442
  global $wpdb;
1443
  $where = ' WHERE gallery_id=%d';
1444
- $prepareArgs = array($gallery_id);
1445
  if ( !$all ) {
1446
  $where .= ' AND id=%d';
1447
  $prepareArgs[] = $id;
1448
  }
1449
-
1450
  $search = WDWLibrary::get('s');
1451
  if ( $search ) {
1452
  $where .= ' AND (`alt` LIKE %s';
@@ -1461,7 +1405,7 @@ class GalleriesModel_bwg {
1461
  foreach ( $tag_ids_array as $tag_id ) {
1462
  if ( $tag_id ) {
1463
  $exist_tag = $wpdb->get_var($wpdb->prepare('SELECT id FROM ' . $wpdb->prefix . 'bwg_image_tag WHERE tag_id="%d" AND image_id="%d" AND gallery_id="%d"', $tag_id, $image->id, $gallery_id));
1464
- if( $tag_act == 'add' ) {
1465
  if ( $exist_tag == NULL ) {
1466
  $wpdb->insert($wpdb->prefix . 'bwg_image_tag', array(
1467
  'tag_id' => $tag_id,
@@ -1471,7 +1415,8 @@ class GalleriesModel_bwg {
1471
  // Increase tag count in term_taxonomy table.
1472
  $wpdb->query($wpdb->prepare('UPDATE ' . $wpdb->prefix . 'term_taxonomy SET count="%d" WHERE term_id="%d"', $wpdb->get_var($wpdb->prepare('SELECT COUNT(image_id) FROM ' . $wpdb->prefix . 'bwg_image_tag WHERE tag_id="%d"', $tag_id)), $tag_id));
1473
  }
1474
- } elseif( $tag_act == 'remove' ) {
 
1475
  if ( $exist_tag != NULL ) {
1476
  $wpdb->delete($wpdb->prefix . 'bwg_image_tag', array(
1477
  'tag_id' => $tag_id,
@@ -1489,38 +1434,37 @@ class GalleriesModel_bwg {
1489
  return 25;
1490
  }
1491
 
1492
- public function set_image_pricelist($id, $gallery_id = 0, $all = FALSE) {
1493
  global $wpdb;
1494
  $pricelist_id = WDWLibrary::get('image_pricelist_id', 0, 'intval');
1495
  $item_longest_dimension = $wpdb->get_var('SELECT MAX(item_longest_dimension) AS item_longest_dimension FROM ' . $wpdb->prefix . 'wdpg_ecommerce_pricelist_items AS T_PRICELIST_ITEMS LEFT JOIN ' . $wpdb->prefix . 'wdpg_ecommerce_pricelists AS T_PRICELISTS ON T_PRICELIST_ITEMS.pricelist_id = T_PRICELISTS.id WHERE T_PRICELIST_ITEMS.pricelist_id="' . $pricelist_id . '" AND T_PRICELISTS.sections LIKE "%downloads%"');
1496
  $not_set_items = array();
1497
- if ($pricelist_id) {
1498
  $image_id = ($all ? 0 : $id);
1499
  if ( $gallery_id == 0 ) {
1500
  $gallery_id = WDWLibrary::get('current_id', 0, 'intval');
1501
  }
1502
  $where = ' WHERE gallery_id=%d';
1503
- $prepareArgs = array($gallery_id);
1504
  if ( !$all ) {
1505
  $where .= ' AND id=%d';
1506
  $prepareArgs[] = $id;
1507
  }
1508
-
1509
  $search = WDWLibrary::get('s');
1510
  if ( $search ) {
1511
  $where .= ' AND `filename` LIKE %s';
1512
  $prepareArgs[] = "%" . $search . "%";
1513
  }
1514
- $image_ids_col = $wpdb->get_col($wpdb->prepare('SELECT id FROM `' . $wpdb->prefix . 'bwg_image`' . $where, $prepareArgs) );
1515
- foreach ($image_ids_col as $image_id) {
1516
  $thumb_url_image_id = WDWLibrary::get('thumb_url_' . $image_id, '', 'esc_url_raw');
1517
  $file_path = str_replace("thumb", ".original", htmlspecialchars_decode(BWG()->upload_dir . $thumb_url_image_id, ENT_COMPAT | ENT_QUOTES));
1518
  WDWLibrary::repair_image_original($file_path);
1519
  list($img_width) = @getimagesize(htmlspecialchars_decode($file_path, ENT_COMPAT | ENT_QUOTES));
1520
- if ($item_longest_dimension > $img_width && $img_width) {
1521
  $not_set_items[] = $image_id . "-" . $item_longest_dimension;
1522
  }
1523
- $wpdb->update($wpdb->prefix . 'bwg_image', array('pricelist_id' => $pricelist_id), array('id' => $image_id), array('%d'));
1524
  }
1525
  }
1526
  if ( empty($not_set_items) === FALSE ) {
@@ -1528,7 +1472,6 @@ class GalleriesModel_bwg {
1528
  }
1529
  }
1530
 
1531
-
1532
  public function remove_image_pricelist() {
1533
  global $wpdb;
1534
  $image_id = WDWLibrary::get('remove_pricelist', 0, 'intval');
@@ -1537,18 +1480,17 @@ class GalleriesModel_bwg {
1537
  }
1538
  }
1539
 
1540
- public function remove_pricelist_all($id, $gallery_id = 0, $all = FALSE) {
1541
  global $wpdb;
1542
  if ( $gallery_id == 0 ) {
1543
  $gallery_id = WDWLibrary::get('current_id', 0, 'intval');
1544
  }
1545
  $where = ' WHERE gallery_id=' . $gallery_id;
1546
- $prepareArgs = array($gallery_id);
1547
  if ( !$all ) {
1548
  $where .= ' AND id=%d';
1549
  $prepareArgs[] = $id;
1550
  }
1551
-
1552
  $search = WDWLibrary::get('s');
1553
  if ( $search ) {
1554
  $where .= ' AND `filename` LIKE %s';
@@ -1570,7 +1512,7 @@ class GalleriesModel_bwg {
1570
  if ( !empty($orders) ) {
1571
  foreach ( $orders as $order => $id ) {
1572
  $upd_query = 'UPDATE ' . $wpdb->prefix . 'bwg_gallery SET `order` = %d WHERE `id` = %d';
1573
- $update = $wpdb->query($wpdb->prepare($upd_query, array($order,$id)));
1574
  if ( $update ) {
1575
  $message_id = 1;
1576
  }
20
  $page_per = $params['items_per_page'];
21
  $page_num = $params['page_num'];
22
  $search = $params['search'];
 
23
  if ( !$total ) {
24
  $query = 'SELECT t1.*, count(t2.id) as images_count';
25
  }
52
  $query .= " GROUP BY t1.id ORDER BY t1.`" . $orderby . "` " . $order;
53
  }
54
  if ( !$total ) {
55
+ $rows = $wpdb->get_results($wpdb->prepare($query, $prepareArgs));
56
  if ( !empty($rows) ) {
57
  foreach ( $rows as $row ) {
58
  $row->preview_image = WDWLibrary::image_url_version($row->preview_image, $row->modified_date);
61
  }
62
  }
63
  else {
64
+ if ( !empty($prepareArgs) ) {
65
+ $rows = $wpdb->get_var($wpdb->prepare($query, $prepareArgs));
66
+ }
67
+ else {
68
+ $rows = $wpdb->get_var($query);
69
  }
70
  }
71
+
72
  return $rows;
73
  }
74
 
79
  *
80
  * @return array|null|object|string
81
  */
82
+ public function total( $params ) {
83
  return $this->get_rows_data($params, TRUE);
84
  }
85
 
93
  */
94
  public function delete( $id, $all = FALSE ) {
95
  global $wpdb;
 
96
  $where = '';
97
  $image_where = '';
98
  $alb_gal_where = '';
99
  $prepareArgs = array();
 
100
  if ( !$all ) {
101
  $where = ' WHERE id=%d';
102
  $image_where = ' WHERE gallery_id=%d';
103
  $alb_gal_where = ' AND alb_gal_id=%d';
104
  $prepareArgs[] = $id;
105
  }
 
106
  // Remove custom post.
107
  if ( $all ) {
108
  $wpdb->query($wpdb->prepare('DELETE FROM `' . $wpdb->prefix . 'posts` WHERE `post_type`="%s"', "bwg_gallery"));
109
  }
110
  else {
111
+ $row = $wpdb->get_row($wpdb->prepare('SELECT `slug` FROM `' . $wpdb->prefix . 'bwg_gallery` WHERE id="%d"', $id));
112
  if ( !empty($row) ) {
113
+ WDWLibrary::bwg_remove_custom_post(array( 'slug' => $row->slug, 'post_type' => 'bwg_gallery' ));
114
  }
115
  }
116
+ if ( !empty($prepareArgs) ) {
117
+ $delete = $wpdb->query($wpdb->prepare('DELETE FROM `' . $wpdb->prefix . 'bwg_gallery`' . $where, $prepareArgs));
118
+ $wpdb->query($wpdb->prepare('DELETE FROM `' . $wpdb->prefix . 'bwg_image`' . $image_where, $prepareArgs));
119
+ $wpdb->query($wpdb->prepare('DELETE FROM `' . $wpdb->prefix . 'bwg_album_gallery` WHERE is_album="0"' . $alb_gal_where, $prepareArgs));
120
+ }
121
+ else {
122
+ $delete = $wpdb->query('DELETE FROM `' . $wpdb->prefix . 'bwg_gallery`' . $where);
123
+ $wpdb->query('DELETE FROM `' . $wpdb->prefix . 'bwg_image`' . $image_where);
124
+ $wpdb->query('DELETE FROM `' . $wpdb->prefix . 'bwg_album_gallery` WHERE is_album="0"' . $alb_gal_where);
125
  }
126
  if ( $delete ) {
127
  if ( $all ) {
141
  /**
142
  * Duplicate.
143
  *
144
+ * @param $idtoget
145
  * @param bool $all
146
  *
147
  * @return int
148
  */
149
  public function duplicate( $idtoget, $all = FALSE ) {
150
  global $wpdb;
151
+ if ( !$idtoget ) {
 
152
  $ids = $wpdb->get_col('SELECT id FROM ' . $wpdb->prefix . 'bwg_gallery');
 
 
153
  }
154
+ else {
155
+ $ids = array( $idtoget );
156
+ }
157
+ foreach ( $ids as $id ) {
158
  $row = $this->get_row_data($id);
159
+ if ( $row ) {
160
+ $name = WDWLibrary::get_unique_value('bwg_gallery', 'name', $row->name, 0);
161
+ $slug = WDWLibrary::get_unique_value('bwg_gallery', 'slug', $row->slug, 0);
162
  $data = array(
163
+ 'name' => $name,
164
+ 'slug' => $slug,
165
  'description' => $row->description,
166
  'page_link' => '',
167
  'preview_image' => $row->preview_image,
175
  'update_flag' => $row->update_flag,
176
  'modified_date' => time(),
177
  );
 
178
  $format = array(
179
  '%s',
180
  '%s',
191
  '%s',
192
  '%d',
193
  );
 
194
  $saved = $wpdb->insert($wpdb->prefix . 'bwg_gallery', $data, $format);
195
+ if ( $saved !== FALSE ) {
196
  $new_gallery_id = $wpdb->insert_id;
 
197
  $query = "SELECT * FROM " . $wpdb->prefix . "bwg_image where gallery_id=%d";
198
+ $images = $wpdb->get_results($wpdb->prepare($query, $id));
199
+ foreach ( $images as $key => $value ) {
 
200
  $old_image_id = $value->id;
 
201
  $value->gallery_id = $new_gallery_id;
202
+ $value->id = NULL;
203
  $format = array(
204
  '%d',
205
  '%d',
225
  '%d',
226
  '%d',
227
  );
228
+ $wpdb->insert($wpdb->prefix . 'bwg_image', (array) $value, $format);
229
  $new_image_id = $wpdb->insert_id;
 
230
  $query = "SELECT * FROM " . $wpdb->prefix . "bwg_image_tag where gallery_id=%d and image_id=%d";
231
+ $image_tags = $wpdb->get_results($wpdb->prepare($query, array( $id, $old_image_id )));
232
+ foreach ( $image_tags as $image_tag ) {
233
+ $image_tag->id = NULL;
 
234
  $image_tag->image_id = $new_image_id;
235
  $image_tag->gallery_id = $new_gallery_id;
236
  $format = array(
238
  '%d',
239
  '%d',
240
  );
241
+ $wpdb->insert($wpdb->prefix . 'bwg_image_tag', (array) $image_tag, $format);
242
  }
243
  }
 
244
  // Create custom post (type is gallery).
245
  $custom_post_params = array(
246
  'id' => $new_gallery_id,
247
+ 'title' => $name,
248
  'slug' => $slug,
249
  'old_slug' => $slug,
250
  'type' => array(
253
  ),
254
  );
255
  WDWLibrary::bwg_create_custom_post($custom_post_params);
256
+ if ( $all ) {
257
  $message_id = 28;
258
+ }
259
+ else {
260
  $message_id = 11;
261
  }
262
  }
271
  */
272
  public function delete_unknown_images() {
273
  global $wpdb;
274
+ $wpdb->query($wpdb->prepare('DELETE FROM `' . $wpdb->prefix . 'bwg_image` WHERE gallery_id=%d', 0));
275
  }
276
 
277
  /**
283
  *
284
  * @return array|null|object|string
285
  */
286
+ public function get_image_rows_data( $gallery_id, $params, $total = FALSE ) {
287
  global $wpdb;
288
+ $rows = array();
289
  $order = $params['order'];
290
  $orderby = $params['orderby'];
291
  $page_per = $params['items_per_page'];
292
  $page_num = $params['page_num'];
293
  $search = $params['search'];
294
  $prepareArgs = array();
 
295
  $ecommerce_addon = function_exists('BWGEC');
 
296
  if ( !$total ) {
297
  $query = 'SELECT T_IMAGE.*';
298
  if ( $ecommerce_addon ) {
307
  $query .= " LEFT JOIN `" . $wpdb->prefix . "wdpg_ecommerce_pricelists` AS T_PRICELISTS ON T_IMAGE.pricelist_id = T_PRICELISTS.id";
308
  $query .= " LEFT JOIN ( SELECT MAX(item_longest_dimension) AS item_longest_dimension, pricelist_id FROM `" . $wpdb->prefix . "wdpg_ecommerce_pricelist_items` GROUP BY pricelist_id) AS T_PRICELIST_ITEMS ON T_PRICELIST_ITEMS.pricelist_id = T_PRICELISTS.id";
309
  }
 
310
  if ( !current_user_can('manage_options') && BWG()->options->image_role ) {
311
  $query .= " WHERE author=%d";
312
  $prepareArgs[] = get_current_user_id();
316
  }
317
  $query .= " AND `gallery_id`=%d";
318
  $prepareArgs[] = $gallery_id;
319
+ $search_where = '';
320
  if ( $search ) {
321
  $search_keys = explode(' ', trim($search));
322
  $alt_search = '(';
323
  $filename_search = '(';
324
  $description_search = '(';
325
+ foreach ( $search_keys as $search_key ) {
326
  $alt_search .= '`T_IMAGE`.`alt` LIKE %s AND ';
327
  $filename_search .= '`T_IMAGE`.`filename` LIKE %s AND ';
328
  $description_search .= '`T_IMAGE`.`description` LIKE %s AND ';
338
  $description_search .= ')';
339
  $search_where = ' AND (' . $filename_search . ' OR ' . $alt_search . ' OR ' . $description_search . ') ';
340
  }
341
+ $query .= $search_where;
342
  if ( !$total ) {
343
  $query .= ' ORDER BY `' . $orderby . '` ' . $order;
344
  $query .= ' LIMIT %d, %d';
386
  $rows['template']->priselist_name = '';
387
  $rows['template']->not_set_items = 0;
388
  $rows['template']->modified_date = '';
 
389
  foreach ( $rows as $key => $value ) {
390
  $value->tags = $this->get_tag_rows_data($value->id);
391
  $value->pure_image_url = $value->image_url;
392
  $value->pure_thumb_url = $value->thumb_url;
393
  $value->image_url = WDWLibrary::image_url_version($value->image_url, $value->modified_date);
394
  $value->thumb_url = WDWLibrary::image_url_version($value->thumb_url, $value->modified_date);
395
+ if ( $key != 'template' ) {
396
  $value->pure_image_url = esc_url($value->pure_image_url);
397
  $value->pure_thumb_url = esc_url($value->pure_thumb_url);
398
  $value->image_url = esc_url($value->image_url);
403
  else {
404
  $rows = $wpdb->get_var($wpdb->prepare($query, $prepareArgs));
405
  }
406
+
407
  return $rows;
408
  }
409
 
415
  *
416
  * @return array|null|object|string
417
  */
418
+ public function image_total( $gallery_id, $params ) {
419
  return $this->get_image_rows_data($gallery_id, $params, TRUE);
420
  }
421
 
426
  *
427
  * @return mixed
428
  */
429
+ public function get_tag_rows_data( $image_id ) {
430
  global $wpdb;
431
  $rows = $wpdb->get_results($wpdb->prepare("SELECT * FROM " . $wpdb->prefix . "terms AS table1 INNER JOIN " . $wpdb->prefix . "bwg_image_tag AS table2 ON table1.term_id=table2.tag_id WHERE table2.image_id='%d' ORDER BY table2.tag_id", $image_id));
 
432
  if ( !$rows ) {
433
  $rows = array();
434
  }
490
  *
491
  * @return array
492
  */
493
+ public function save( $image_action = '' ) {
494
  $gallery_id = $this->save_db();
495
+ $data = $this->save_image_db($gallery_id, $image_action);
496
+
497
  return array(
498
  'id' => $gallery_id,
499
  'saved' => (($gallery_id === FALSE || $data['images_saved'] === FALSE) ? FALSE : TRUE),
511
  $id = WDWLibrary::get('current_id', 0, 'intval', 'POST');
512
  $name = WDWLibrary::get('name');
513
  $name = htmlentities($name, ENT_QUOTES);
514
+ $name = WDWLibrary::get_unique_value('bwg_gallery', 'name', $name, $id);
515
  $slug = WDWLibrary::get('slug');
516
+ $slug = empty($slug) ? $name : $slug;
517
+ $slug = WDWLibrary::get_unique_value('bwg_gallery', 'slug', $slug, $id);
518
  $old_slug = WDWLibrary::get('old_slug');
519
  $preview_image = WDWLibrary::get('preview_image');
520
  $random_preview_image = '';
525
  $random_preview_image = $wpdb->get_var($wpdb->prepare("SELECT thumb_url FROM " . $wpdb->prefix . "bwg_image WHERE gallery_id='%d' ORDER BY `order`", $id));
526
  }
527
  if ( empty($random_preview_image) ) {
528
+ $random_preview_image = $this->get_post_random_image($_REQUEST);
529
  }
530
  }
531
  else {
532
+ $random_preview_image = $this->get_post_random_image($_REQUEST);
533
  }
534
  }
535
  if ( !WDWLibrary::check_external_link($preview_image) ) {
538
  if ( !WDWLibrary::check_external_link($random_preview_image) ) {
539
  $random_preview_image = wp_normalize_path($random_preview_image);
540
  }
541
+ if ( empty($random_preview_image) ) {
542
  $random_preview_image = '';
543
  }
 
544
  $data = array(
545
  'name' => $name,
546
  'slug' => $slug,
547
+ 'description' => strip_tags(htmlspecialchars_decode(WDWLibrary::get('description', '', FALSE)), "<b>,<p>,<a>,<strong>,<span>,<br>,<ul>,<ol>,<li>,<i>"),
548
  'page_link' => '',
549
  'preview_image' => $preview_image,
550
  'random_preview_image' => $random_preview_image,
577
  $saved = $wpdb->insert($wpdb->prefix . 'bwg_gallery', $data, $format);
578
  $id = $wpdb->insert_id;
579
  }
580
+ else {
581
  $saved = $wpdb->update($wpdb->prefix . 'bwg_gallery', $data, array( 'id' => $id ), $format);
582
  }
 
583
  if ( $saved !== FALSE ) {
584
  // Create custom post (type is gallery).
585
  $custom_post_params = array(
593
  ),
594
  );
595
  WDWLibrary::bwg_create_custom_post($custom_post_params);
596
+
597
  return $id;
598
  }
599
  else {
632
  continue;
633
  }
634
  $filename = WDWLibrary::get('input_filename_' . $image_id);
635
+ $description = str_replace(array(
636
+ '\\',
637
+ '\t'
638
+ ), '', WDWLibrary::get('image_description_' . $image_id, '', 'wp_filter_post_kses'));
639
+ $description = strip_tags(htmlspecialchars_decode($description), "<b>,<p>,<a>,<strong>,<span>,<br>,<ul>,<ol>,<li>,<i>");
640
+ $alt = str_replace(array(
641
+ '\\',
642
+ '\t'
643
+ ), '', WDWLibrary::get('image_alt_text_' . $image_id, '', 'wp_filter_post_kses'));
644
  $alt = preg_replace("/<a[^>]*>|<\/a>/", '', $alt);
645
+ $alt = strip_tags(htmlspecialchars_decode($alt), "<b>,<p>,<a>,<strong>,<span>,<br>,<ul>,<ol>,<li>,<i>");
646
  $date = WDWLibrary::get('input_date_modified_' . $image_id, date('Ymd'));
647
  $size = WDWLibrary::get('input_size_' . $image_id);
 
648
  $resolution = WDWLibrary::get('input_resolution_' . $image_id);
649
  $resolution_thumb = WDWLibrary::get('input_resolution_thumb_' . $image_id);
650
+ if ( ($resolution_thumb == '' || $resolution_thumb == 'x') && $thumb_url != '' ) {
651
+ $resolution_thumb = WDWLibrary::get_thumb_size($thumb_url);
652
  }
653
  $order = WDWLibrary::get('order_input_' . $image_id, 0, 'intval');
654
  $redirect_url = WDWLibrary::get('redirect_url_' . $image_id, '', 'esc_url_raw');
674
  if ( !WDWLibrary::check_external_link($thumb_url) ) {
675
  $thumb_url = wp_normalize_path($thumb_url);
676
  }
 
677
  $data += array(
678
  'filename' => $filename,
679
  'image_url' => $image_url,
687
  'pricelist_id' => 0,
688
  'modified_date' => time(),
689
  );
690
+ $format = array(
691
+ '%d',
692
+ '%s',
693
+ '%s',
694
+ '%s',
695
+ '%s',
696
+ '%s',
697
+ '%s',
698
+ '%s',
699
+ '%s',
700
+ '%s',
701
+ '%d',
702
+ '%s',
703
+ '%s',
704
+ '%s',
705
+ '%d',
706
+ '%d',
707
+ '%d',
708
+ '%d',
709
+ '%d',
710
+ '%d',
711
+ '%d',
712
+ '%d'
713
+ );
714
  $save = $wpdb->insert($wpdb->prefix . 'bwg_image', $data, $format);
715
  $image_id = $wpdb->insert_id;
716
  }
717
  else {
718
+ $format = array( '%d', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%d' );
719
+ if ( WDWLibrary::get('ajax_task') == 'image_rotate_right' || WDWLibrary::get('ajax_task') == 'image_rotate_left' || $data['resolution_thumb'] == '' ) {
720
+ unset($data['resolution_thumb']);
721
+ unset($format[9]);
722
  }
723
  $save = $wpdb->update($wpdb->prefix . 'bwg_image', $data, array( 'id' => $image_id ), $format);
724
  }
 
725
  $wpdb->query($wpdb->prepare('DELETE FROM ' . $wpdb->prefix . 'bwg_image_tag WHERE image_id="%d" AND gallery_id="%d"', $image_id, $gallery_id));
726
  if ( $save !== FALSE ) {
727
  $tag_id_array = explode(',', $tags_ids);
730
  if ( strpos($tag_id, 'pr_') !== FALSE ) {
731
  $tag_id = substr($tag_id, 3);
732
  }
 
733
  if ( strpos($tag_id, 'bwg_') === 0 ) {
734
  // If tags added to image from image file meta keywords.
735
  $tag_name = str_replace('bwg_', '', $tag_id);
747
  }
748
  $tag_id = isset($term['term_id']) ? $term['term_id'] : 0;
749
  }
 
750
  if ( $tag_id ) {
751
  $wpdb->insert($wpdb->prefix . 'bwg_image_tag', array(
752
  'tag_id' => $tag_id,
753
  'image_id' => $image_id,
754
  'gallery_id' => $gallery_id,
755
+ ), array( '%d', '%d', '%d' ));
756
  // Increase tag count in term_taxonomy table.
757
  $wpdb->query($wpdb->prepare('UPDATE ' . $wpdb->prefix . 'term_taxonomy SET count="%d" WHERE term_id="%d"', $wpdb->get_var($wpdb->prepare('SELECT COUNT(image_id) FROM ' . $wpdb->prefix . 'bwg_image_tag WHERE tag_id="%d"', $tag_id)), $tag_id));
758
  }
759
  }
760
  }
761
  }
762
+ if ( !$all && $image_action && method_exists($this, $image_action) && isset($_POST['check_' . $temp_image_id]) ) {
 
 
 
 
763
  $image_message = $this->$image_action($image_id, $gallery_id);
764
  }
765
  }
766
  }
 
767
  $wpdb->query('SET @i = 0');
768
  $wpdb->query($wpdb->prepare('UPDATE `' . $wpdb->prefix . 'bwg_image` SET `order` = @i := @i + 1 WHERE `gallery_id` = "%d" ORDER BY `order` ASC', $gallery_id));
769
  if ( !in_array($image_message, WDWLibrary::error_message_ids()) && $image_action && $checked_items_count ) {
770
  $actions = WDWLibrary::image_actions();
771
  $image_message = sprintf(_n('%s item successfully %s.', '%s items successfully %s.', $checked_items_count, BWG()->prefix), $checked_items_count, $actions[$image_action]['bulk_action']);
772
  }
773
+ if ( $all && $image_action && method_exists($this, $image_action) ) {
 
 
774
  $image_message = $this->$image_action(0, $gallery_id, TRUE);
775
  }
 
776
  $images_saved = ($save !== FALSE) ? TRUE : FALSE;
777
 
778
  return array( 'images_saved' => $images_saved, 'image_message' => $image_message );
795
  $i++;
796
  }
797
 
798
+ return $random_preview_image;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
799
  }
800
 
801
  /**
815
  }
816
  $where = 'WHERE gallery_id=%d';
817
  $prepareArgs[] = $gallery_id;
 
818
  if ( !$all ) {
819
  $where .= ' AND id=%d';
820
  $prepareArgs[] = $id;
824
  $where .= ' AND `filename` LIKE %s';
825
  $prepareArgs[] = "%" . $search . "%";
826
  }
827
+ $image_ids = $wpdb->get_col($wpdb->prepare('SELECT `id` FROM `' . $wpdb->prefix . 'bwg_image`' . $where, $prepareArgs));
828
+ $thumb_urls = $wpdb->get_col($wpdb->prepare('SELECT `thumb_url` FROM `' . $wpdb->prefix . 'bwg_image`' . $where, $prepareArgs));
829
  $delete = $wpdb->query($wpdb->prepare('DELETE FROM `' . $wpdb->prefix . 'bwg_image`' . $where, $prepareArgs));
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
830
  $message = 2;
831
  if ( $delete ) {
832
+ $prepareArgs = array();
833
  if ( $all ) {
834
+ $image_where = 'WHERE image_id IN (%s)';
835
+ $prepareArgs[] = implode(',', $image_ids);
836
  $message = 5;
837
  }
838
  else {
839
+ $image_where = ' WHERE image_id=%d';
840
+ $prepareArgs[] = $id;
841
  $message = 3;
842
  }
843
+ // Remove image all data.
844
+ $wpdb->query($wpdb->prepare('DELETE FROM `' . $wpdb->prefix . 'bwg_image_comment`' . $image_where, $prepareArgs));
845
+ $wpdb->query($wpdb->prepare('DELETE FROM `' . $wpdb->prefix . 'bwg_image_rate`' . $image_where, $prepareArgs));
846
+ $tag_ids = $wpdb->get_col($wpdb->prepare('SELECT tag_id FROM `' . $wpdb->prefix . 'bwg_image_tag`' . $image_where, $prepareArgs));
847
+ $wpdb->query($wpdb->prepare('DELETE FROM `' . $wpdb->prefix . 'bwg_image_tag`' . $image_where, $prepareArgs));
848
+ if ( !empty($tag_ids) ) {
849
+ // Increase tag count in term_taxonomy table.
850
+ foreach ( $tag_ids as $tag_id ) {
851
+ $wpdb->query($wpdb->prepare('UPDATE ' . $wpdb->prefix . 'term_taxonomy SET count="%d" WHERE term_id="%d"', $wpdb->get_var($wpdb->prepare('SELECT COUNT(image_id) FROM ' . $wpdb->prefix . 'bwg_image_tag WHERE tag_id="%d"', $tag_id)), $tag_id));
852
+ }
853
+ }
854
+ if ( !empty($gallery_id) ) {
855
+ $thumbs_str = '';
856
+ foreach ( $thumb_urls as $thumb_url ) {
857
+ $thumbs_str .= '"' . $thumb_url . '",';
858
+ }
859
+ $thumbs_str = rtrim($thumbs_str, ',');
860
+ // Remove preview image.
861
+ $wpdb->query($wpdb->prepare('UPDATE `' . $wpdb->prefix . 'bwg_gallery` SET preview_image="" WHERE `id`=%d and `preview_image` IN (' . $thumbs_str . ')', $gallery_id));
862
+ $wpdb->query($wpdb->prepare('UPDATE `' . $wpdb->prefix . 'bwg_gallery` SET random_preview_image="" WHERE `id`=%d and `random_preview_image` IN (' . $thumbs_str . ')', $gallery_id));
863
+ }
864
  }
865
+
866
  return $message;
867
  }
868
 
883
  }
884
  $where = ' WHERE gallery_id=%d';
885
  $prepareArgs[] = $gallery_id;
 
886
  if ( !$all ) {
887
  $where .= ' AND id=%d';
888
  $prepareArgs[] = $id;
889
  }
 
890
  $search = WDWLibrary::get('s');
891
  if ( $search ) {
892
  $where .= ' AND `filename` LIKE %s';
893
  $prepareArgs[] = "%" . $search . "%";
894
  }
895
+ $updated = $wpdb->query($wpdb->prepare('UPDATE `' . $wpdb->prefix . 'bwg_image` SET published=1' . $where, $prepareArgs));
896
+ $message = 2;
 
897
  if ( $updated !== FALSE ) {
898
  $message = 9;
899
  }
900
+
901
  return $message;
902
  }
903
 
918
  }
919
  $where = ' WHERE gallery_id=%d';
920
  $prepareArgs[] = $gallery_id;
 
921
  if ( !$all ) {
922
  $where .= ' AND id=%d';
923
  $prepareArgs[] = $id;
924
  }
 
925
  $search = WDWLibrary::get('s');
926
  if ( $search ) {
927
  $where .= ' AND `filename` LIKE %s';
928
  $prepareArgs[] = "%" . $search . "%";
929
  }
930
+ $updated = $wpdb->query($wpdb->prepare('UPDATE `' . $wpdb->prefix . 'bwg_image` SET published=0' . $where, $prepareArgs));
931
+ $message = 2;
 
932
  if ( $updated !== FALSE ) {
933
  $message = 10;
934
  }
935
+
936
  return $message;
937
  }
938
 
960
  $image = $wpdb->get_row($wpdb->prepare('SELECT * FROM ' . $wpdb->prefix . 'bwg_image WHERE id="%d"', $id));
961
  WDWLibrary::recover_image($image, $thumb_width, $width, 'gallery_page');
962
  $where = ($id) ? ' `id` = ' . $id : 1;
963
+ WDWLibrary::update_image_modified_date($where);
964
  }
965
 
966
  return 20;
975
  *
976
  * @return int
977
  */
978
+ public function image_set_watermark( $id, $gallery_id = 0, $all = FALSE ) {
979
  if ( ini_get('allow_url_fopen') == 0 ) {
980
  $message_id = 27;
981
  }
982
  else {
983
  $options = new WD_BWG_Options();
984
  list($width_watermark, $height_watermark, $type_watermark) = @getimagesize(str_replace(' ', '%20', $options->built_in_watermark_url));
985
+ if ( $options->built_in_watermark_type == 'image' && (empty($width_watermark) or empty($height_watermark) or empty($type_watermark)) ) {
986
  $message_id = 26;
987
  }
988
  else {
1006
  *
1007
  * @return int
1008
  */
1009
+ public function image_rotate_left( $id, $gallery_id = 0, $all = FALSE ) {
1010
  return $this->rotate(90, $id, $gallery_id, $all);
1011
  }
1012
 
1019
  *
1020
  * @return int
1021
  */
1022
+ public function image_rotate_right( $id, $gallery_id = 0, $all = FALSE ) {
1023
  return $this->rotate(270, $id, $gallery_id, $all);
1024
  }
1025
 
1040
  if ( $gallery_id == 0 ) {
1041
  $gallery_id = WDWLibrary::get('current_id', 0, 'intval');
1042
  }
 
1043
  $where = 1;
1044
+ if ( $gallery_id ) {
1045
  $where = ' `gallery_id` = %d';
1046
  $prepareArgs[] = $gallery_id;
1047
+ if ( $image_id ) {
1048
  $where .= ' AND `id` = %d';
1049
  $prepareArgs[] = $image_id;
1050
  }
1051
  }
1052
+ //$where = ( ($gallery_id) ? ' `gallery_id` = ' . $gallery_id . ($image_id ? ' AND `id` = ' . $image_id : '' ) : 1 );
1053
  $search = WDWLibrary::get('s');
1054
  if ( $search ) {
1055
  $where .= ' AND `filename` LIKE %s';
1056
  $prepareArgs[] = "%" . $search . "%";
1057
  }
1058
+ if ( !empty($prepareArgs) ) {
1059
+ $images_data = $wpdb->get_results($wpdb->prepare('SELECT id, image_url, thumb_url, resolution_thumb FROM `' . $wpdb->prefix . 'bwg_image` WHERE ' . $where, $prepareArgs));
1060
+ }
1061
+ else {
1062
+ $images_data = $wpdb->get_results('SELECT id, image_url, thumb_url, resolution_thumb FROM `' . $wpdb->prefix . 'bwg_image` WHERE ' . $where);
1063
  }
1064
  @ini_set('memory_limit', '-1');
1065
  foreach ( $images_data as $image_data ) {
1121
  imagedestroy($thumb_rotate);
1122
  }
1123
  }
1124
+ $resolution_thumb = isset($image_data->resolution_thumb) ? $image_data->resolution_thumb : '';
1125
+ if ( $resolution_thumb == '' ) {
1126
+ $resolution_thumb = WDWLibrary::get_thumb_size($image_data->thumb_url);
1127
+ }
1128
+ if ( $resolution_thumb != '' ) {
1129
+ $res = explode('x', $resolution_thumb);
1130
+ $resolution_thumb = $res[1] . "x" . $res[0];
1131
+ WDWLibrary::update_thumb_dimansions($resolution_thumb, "id = $image_data->id");
1132
+ }
1133
  }
 
1134
  WDWLibrary::update_image_modified_date($where);
1135
 
1136
+ return 22;
1137
  }
1138
 
1139
  /**
1145
  *
1146
  * @return int
1147
  */
1148
+ public function image_recreate_thumbnail( $id, $gallery_id = 0, $all = FALSE ) {
1149
  $image_id = ($all ? 0 : $id);
1150
  global $wpdb;
1151
  if ( $gallery_id == 0 ) {
1152
  $gallery_id = WDWLibrary::get('current_id', 0, 'intval');
1153
  }
1154
+ //$where = ( ($gallery_id) ? ' `gallery_id` = ' . $gallery_id . ( $image_id ? ' AND `id` = ' . $image_id : '' ) : 1 );
1155
  $where = 1;
1156
  $prepareArgs = array();
1157
+ if ( $gallery_id ) {
1158
  $where = ' `gallery_id` = %d';
1159
  $prepareArgs[] = $gallery_id;
1160
+ if ( $image_id ) {
1161
  $where .= ' AND `id` = %d';
1162
  $prepareArgs[] = $image_id;
1163
  }
1164
  }
1165
+ if ( !empty($prepareArgs) ) {
1166
+ $img_ids = $wpdb->get_results($wpdb->prepare('SELECT id, thumb_url FROM `' . $wpdb->prefix . 'bwg_image` WHERE ' . $where, $prepareArgs));
1167
+ }
1168
+ else {
1169
+ $img_ids = $wpdb->get_results('SELECT id, thumb_url FROM `' . $wpdb->prefix . 'bwg_image` WHERE ' . $where);
1170
  }
1171
  $search = WDWLibrary::get('s');
1172
  if ( $search ) {
1173
  $where .= ' AND `filename` LIKE %s';
1174
  $prepareArgs[] = "%" . $search . "%";
 
1175
  }
1176
  foreach ( $img_ids as $img_id ) {
1177
  $file_path = str_replace("thumb", ".original", htmlspecialchars_decode(BWG()->upload_dir . $img_id->thumb_url, ENT_COMPAT | ENT_QUOTES));
1178
  $new_file_path = htmlspecialchars_decode(BWG()->upload_dir . $img_id->thumb_url, ENT_COMPAT | ENT_QUOTES);
1179
  if ( WDWLibrary::repair_image_original($file_path) ) {
1180
+ WDWLibrary::resize_image($file_path, $new_file_path, BWG()->options->upload_thumb_width, BWG()->options->upload_thumb_height);
1181
  $resolution_thumb = WDWLibrary::$thumb_dimansions;
1182
+ if ( $resolution_thumb != '' ) {
1183
+ WDWLibrary::update_thumb_dimansions($resolution_thumb, "id = $img_id->id");
1184
  }
1185
  }
1186
  }
1187
+ WDWLibrary::update_image_modified_date($where, $prepareArgs);
1188
 
1189
  return 23;
1190
  }
1198
  *
1199
  * @return int
1200
  */
1201
+ public function image_resize( $id, $gallery_id = 0, $all = FALSE ) {
1202
  $image_id = ($all ? 0 : $id);
1203
  global $wpdb;
1204
  if ( $gallery_id == 0 ) {
1206
  }
1207
  $image_width = WDWLibrary::get('image_width', 1600, 'intval');
1208
  $image_height = WDWLibrary::get('image_height', 1200, 'intval');
1209
+ $where = ' gallery_id=%d';
1210
+ $prepareArgs = array( $gallery_id );
1211
+ if ( !$all ) {
1212
  $where .= ' AND id=%d';
1213
  $prepareArgs[] = $id;
1214
  }
 
1215
  $search = WDWLibrary::get('s');
1216
  if ( $search ) {
1217
  $where .= ' AND `filename` LIKE %s';
1218
  $prepareArgs[] = "%" . $search . "%";
1219
  }
1220
+ $images = $wpdb->get_results($wpdb->prepare('SELECT * FROM `' . $wpdb->prefix . 'bwg_image` WHERE ' . $where, $prepareArgs));
1221
  if ( !empty($images) ) {
1222
  foreach ( $images as $image ) {
1223
  $file_path = BWG()->upload_dir . $image->image_url;
1224
  $thumb_filename = BWG()->upload_dir . $image->thumb_url;
1225
  $original_filename = str_replace('/thumb/', '/.original/', $thumb_filename);
1226
  if ( WDWLibrary::repair_image_original($original_filename) ) {
1227
+ WDWLibrary::resize_image($original_filename, $file_path, $image_width, $image_height);
1228
  }
1229
  }
1230
  }
1231
+ WDWLibrary::update_image_modified_date($where);
1232
 
1233
  return 24;
1234
  }
1242
  *
1243
  * @return int
1244
  */
1245
+ public function image_edit( $id, $gallery_id = 0, $all = FALSE ) {
1246
  $title = WDWLibrary::get('title');
1247
  $desc = WDWLibrary::get('desc');
1248
  $redirecturl = WDWLibrary::get('redirecturl', '', 'esc_url_raw');
1249
+ $prepareArgs = array( $title, $desc, $redirecturl );
1250
  if ( $gallery_id == 0 ) {
1251
  $gallery_id = WDWLibrary::get('current_id', 0, 'intval');
1252
  }
1253
  $where = ' WHERE gallery_id=%d';
1254
  $prepareArgs[] = $gallery_id;
1255
+ $format = array( '%d' );
1256
+ if ( !$all ) {
1257
  $where .= ' AND id=%d';
1258
  $prepareArgs[] = $id;
1259
  }
 
1260
  $search = WDWLibrary::get('s');
1261
  if ( $search ) {
1262
  $where .= ' AND `filename` LIKE %s';
1263
  $prepareArgs[] = "%" . $search . "%";
1264
  }
1265
  global $wpdb;
1266
+ $updated = $wpdb->query($wpdb->prepare('UPDATE `' . $wpdb->prefix . 'bwg_image` SET `alt`="%s", `description`="%s", `redirect_url`="%s"' . $where, $prepareArgs));
 
1267
  $message = 2;
1268
  if ( $updated !== FALSE ) {
1269
  $message = 25;
1270
  }
1271
+
1272
  return $message;
1273
  }
1274
 
1283
  */
1284
  public function image_edit_alt( $id, $gallery_id = 0, $all = FALSE ) {
1285
  $title = WDWLibrary::get('title');
 
1286
  if ( $gallery_id == 0 ) {
1287
  $gallery_id = WDWLibrary::get('current_id', 0, 'intval');
1288
  }
1289
  $where = ' WHERE gallery_id=%d';
1290
  $prepareArgs = array( $title, $gallery_id );
 
1291
  if ( !$all ) {
1292
  $where .= ' AND id=%d';
1293
  $prepareArgs[] = $id;
1297
  $where .= ' AND `filename` LIKE %s';
1298
  $prepareArgs[] = "%" . $search . "%";
1299
  }
 
1300
  global $wpdb;
1301
+ $updated = $wpdb->query($wpdb->prepare('UPDATE `' . $wpdb->prefix . 'bwg_image` SET `alt`="%s"' . $where, $prepareArgs));
1302
  $message = 2;
1303
  if ( $updated !== FALSE ) {
1304
  $message = 25;
1305
  }
1306
+
1307
  return $message;
1308
  }
1309
 
1327
  $where .= ' AND id=%d';
1328
  $prepareArgs[] = $id;
1329
  }
 
1330
  $search = WDWLibrary::get('s');
1331
  if ( $search ) {
1332
  $where .= ' AND `filename` LIKE %s';
1333
  $prepareArgs[] = "%" . $search . "%";
1334
  }
 
1335
  global $wpdb;
1336
+ $updated = $wpdb->query($wpdb->prepare('UPDATE `' . $wpdb->prefix . 'bwg_image` SET `description`="%s"' . $where, $prepareArgs));
1337
  $message = 2;
1338
  if ( $updated !== FALSE ) {
1339
  $message = 25;
1340
  }
1341
+
1342
  return $message;
1343
  }
1344
 
1362
  $where .= ' AND id=%d';
1363
  $prepareArgs[] = $id;
1364
  }
 
1365
  $search = WDWLibrary::get('s');
1366
  if ( $search ) {
1367
  $where .= ' AND `filename` LIKE %s';
1368
  $prepareArgs[] = "%" . $search . "%";
1369
  }
 
1370
  global $wpdb;
1371
+ $updated = $wpdb->query($wpdb->prepare('UPDATE `' . $wpdb->prefix . 'bwg_image` SET `redirect_url`="%s"' . $where, $prepareArgs));
1372
  $message = 2;
1373
  if ( $updated !== FALSE ) {
1374
  $message = 25;
1375
  }
1376
+
1377
  return $message;
1378
  }
1379
 
1380
+ public function image_add_tag( $id, $gallery_id = 0, $all = FALSE ) {
1381
  if ( $gallery_id == 0 ) {
1382
  $gallery_id = WDWLibrary::get('current_id', 0, 'intval');
1383
  }
 
1384
  $tag_ids = WDWLibrary::get('added_tags_id');
1385
  $tag_act = WDWLibrary::get('added_tags_act');
1386
  $tag_ids_array = explode(',', $tag_ids);
1387
  global $wpdb;
1388
  $where = ' WHERE gallery_id=%d';
1389
+ $prepareArgs = array( $gallery_id );
1390
  if ( !$all ) {
1391
  $where .= ' AND id=%d';
1392
  $prepareArgs[] = $id;
1393
  }
 
1394
  $search = WDWLibrary::get('s');
1395
  if ( $search ) {
1396
  $where .= ' AND (`alt` LIKE %s';
1405
  foreach ( $tag_ids_array as $tag_id ) {
1406
  if ( $tag_id ) {
1407
  $exist_tag = $wpdb->get_var($wpdb->prepare('SELECT id FROM ' . $wpdb->prefix . 'bwg_image_tag WHERE tag_id="%d" AND image_id="%d" AND gallery_id="%d"', $tag_id, $image->id, $gallery_id));
1408
+ if ( $tag_act == 'add' ) {
1409
  if ( $exist_tag == NULL ) {
1410
  $wpdb->insert($wpdb->prefix . 'bwg_image_tag', array(
1411
  'tag_id' => $tag_id,
1415
  // Increase tag count in term_taxonomy table.
1416
  $wpdb->query($wpdb->prepare('UPDATE ' . $wpdb->prefix . 'term_taxonomy SET count="%d" WHERE term_id="%d"', $wpdb->get_var($wpdb->prepare('SELECT COUNT(image_id) FROM ' . $wpdb->prefix . 'bwg_image_tag WHERE tag_id="%d"', $tag_id)), $tag_id));
1417
  }
1418
+ }
1419
+ elseif ( $tag_act == 'remove' ) {
1420
  if ( $exist_tag != NULL ) {
1421
  $wpdb->delete($wpdb->prefix . 'bwg_image_tag', array(
1422
  'tag_id' => $tag_id,
1434
  return 25;
1435
  }
1436
 
1437
+ public function set_image_pricelist( $id, $gallery_id = 0, $all = FALSE ) {
1438
  global $wpdb;
1439
  $pricelist_id = WDWLibrary::get('image_pricelist_id', 0, 'intval');
1440
  $item_longest_dimension = $wpdb->get_var('SELECT MAX(item_longest_dimension) AS item_longest_dimension FROM ' . $wpdb->prefix . 'wdpg_ecommerce_pricelist_items AS T_PRICELIST_ITEMS LEFT JOIN ' . $wpdb->prefix . 'wdpg_ecommerce_pricelists AS T_PRICELISTS ON T_PRICELIST_ITEMS.pricelist_id = T_PRICELISTS.id WHERE T_PRICELIST_ITEMS.pricelist_id="' . $pricelist_id . '" AND T_PRICELISTS.sections LIKE "%downloads%"');
1441
  $not_set_items = array();
1442
+ if ( $pricelist_id ) {
1443
  $image_id = ($all ? 0 : $id);
1444
  if ( $gallery_id == 0 ) {
1445
  $gallery_id = WDWLibrary::get('current_id', 0, 'intval');
1446
  }
1447
  $where = ' WHERE gallery_id=%d';
1448
+ $prepareArgs = array( $gallery_id );
1449
  if ( !$all ) {
1450
  $where .= ' AND id=%d';
1451
  $prepareArgs[] = $id;
1452
  }
 
1453
  $search = WDWLibrary::get('s');
1454
  if ( $search ) {
1455
  $where .= ' AND `filename` LIKE %s';
1456
  $prepareArgs[] = "%" . $search . "%";
1457
  }
1458
+ $image_ids_col = $wpdb->get_col($wpdb->prepare('SELECT id FROM `' . $wpdb->prefix . 'bwg_image`' . $where, $prepareArgs));
1459
+ foreach ( $image_ids_col as $image_id ) {
1460
  $thumb_url_image_id = WDWLibrary::get('thumb_url_' . $image_id, '', 'esc_url_raw');
1461
  $file_path = str_replace("thumb", ".original", htmlspecialchars_decode(BWG()->upload_dir . $thumb_url_image_id, ENT_COMPAT | ENT_QUOTES));
1462
  WDWLibrary::repair_image_original($file_path);
1463
  list($img_width) = @getimagesize(htmlspecialchars_decode($file_path, ENT_COMPAT | ENT_QUOTES));
1464
+ if ( $item_longest_dimension > $img_width && $img_width ) {
1465
  $not_set_items[] = $image_id . "-" . $item_longest_dimension;
1466
  }
1467
+ $wpdb->update($wpdb->prefix . 'bwg_image', array( 'pricelist_id' => $pricelist_id ), array( 'id' => $image_id ), array( '%d' ));
1468
  }
1469
  }
1470
  if ( empty($not_set_items) === FALSE ) {
1472
  }
1473
  }
1474
 
 
1475
  public function remove_image_pricelist() {
1476
  global $wpdb;
1477
  $image_id = WDWLibrary::get('remove_pricelist', 0, 'intval');
1480
  }
1481
  }
1482
 
1483
+ public function remove_pricelist_all( $id, $gallery_id = 0, $all = FALSE ) {
1484
  global $wpdb;
1485
  if ( $gallery_id == 0 ) {
1486
  $gallery_id = WDWLibrary::get('current_id', 0, 'intval');
1487
  }
1488
  $where = ' WHERE gallery_id=' . $gallery_id;
1489
+ $prepareArgs = array( $gallery_id );
1490
  if ( !$all ) {
1491
  $where .= ' AND id=%d';
1492
  $prepareArgs[] = $id;
1493
  }
 
1494
  $search = WDWLibrary::get('s');
1495
  if ( $search ) {
1496
  $where .= ' AND `filename` LIKE %s';
1512
  if ( !empty($orders) ) {
1513
  foreach ( $orders as $order => $id ) {
1514
  $upd_query = 'UPDATE ' . $wpdb->prefix . 'bwg_gallery SET `order` = %d WHERE `id` = %d';
1515
+ $update = $wpdb->query($wpdb->prepare($upd_query, array( $order, $id )));
1516
  if ( $update ) {
1517
  $message_id = 1;
1518
  }
admin/views/Galleries.php CHANGED
@@ -855,7 +855,6 @@ class GalleriesView_bwg extends AdminView_bwg {
855
  <input type="hidden" id="total" name="total" value="<?php echo $params['total']; ?>" />
856
  <input type="hidden" id="added_tags_id" name="added_tags_id" value="" />
857
  <input type="hidden" id="added_tags_act" name="added_tags_act" value="" />
858
- <a class="wd-add-tags thickbox thickbox-preview wd-hide" href="<?php echo add_query_arg(array('TB_iframe' => '1'), $params['add_tags_action']); ?>"></a>
859
  <?php
860
  if (class_exists('BWGEC')) {
861
  $query_url = admin_url('admin-ajax.php');
@@ -873,6 +872,7 @@ class GalleriesView_bwg extends AdminView_bwg {
873
  <?php } ?>
874
  <input type="hidden" id="remove_pricelist" value="" />
875
  </div>
 
876
  <div class="tablenav bottom">
877
  <?php echo $this->pagination($params['page_url'], $params['total'], $params['items_per_page']); ?>
878
  </div>
855
  <input type="hidden" id="total" name="total" value="<?php echo $params['total']; ?>" />
856
  <input type="hidden" id="added_tags_id" name="added_tags_id" value="" />
857
  <input type="hidden" id="added_tags_act" name="added_tags_act" value="" />
 
858
  <?php
859
  if (class_exists('BWGEC')) {
860
  $query_url = admin_url('admin-ajax.php');
872
  <?php } ?>
873
  <input type="hidden" id="remove_pricelist" value="" />
874
  </div>
875
+ <a class="wd-add-tags thickbox thickbox-preview wd-hide" href="<?php echo add_query_arg(array('TB_iframe' => '1'), $params['add_tags_action']); ?>"></a>
876
  <div class="tablenav bottom">
877
  <?php echo $this->pagination($params['page_url'], $params['total'], $params['items_per_page']); ?>
878
  </div>
css/bwg_tables.css CHANGED
@@ -3561,6 +3561,9 @@ bwg-gallery-ul {
3561
  }
3562
  }
3563
 
3564
- .wd-button {
 
 
 
3565
  cursor: pointer;
3566
  }
3561
  }
3562
  }
3563
 
3564
+ .wd-button,
3565
+ .tw-button-primary,
3566
+ .tw-button-secondary,
3567
+ .button-large {
3568
  cursor: pointer;
3569
  }
filemanager/css/default_view_thumbs.css CHANGED
@@ -77,8 +77,9 @@
77
  display: inline-block;
78
  width: 120px;
79
  height: 100px;
80
- margin: 0 auto;
81
  text-align: center;
 
82
  }
83
 
84
  .explorer_item_hover,
77
  display: inline-block;
78
  width: 120px;
79
  height: 100px;
80
+ margin: 2px 1px;
81
  text-align: center;
82
+ vertical-align: bottom;
83
  }
84
 
85
  .explorer_item_hover,
framework/WDWLibrary.php CHANGED
@@ -305,13 +305,13 @@ class WDWLibrary {
305
  */
306
  public static function admin_images_ordering_choices() {
307
  return array(
308
- 'order_asc' => 'Default sorting',
309
- 'filename_asc' => 'File name (Asc)',
310
- 'filename_desc' => 'File name (Desc)',
311
- 'alt_asc' => 'Alt/Title (Asc)',
312
- 'alt_desc' => 'Alt/Title (Desc)',
313
- 'description_asc' => 'Description (Asc)',
314
- 'description_desc' => 'Description (Desc)',
315
  );
316
  }
317
 
@@ -470,7 +470,7 @@ class WDWLibrary {
470
  <span class="displaying-num">
471
  <?php
472
  if ($count_items != 0) {
473
- echo $count_items; ?> <?php echo __('item', BWG()->prefix); ?><?php echo (($count_items == 1) ? '' : 's');
474
  }
475
  ?>
476
  </span>
@@ -617,7 +617,7 @@ class WDWLibrary {
617
  <span class="displaying-num">
618
  <?php
619
  if ($count_items != 0) {
620
- echo $count_items; ?> <?php echo __('item', BWG()->prefix); ?><?php echo (($count_items == 1) ? '' : 's');
621
  }
622
  ?>
623
  </span>
@@ -3137,4 +3137,28 @@ class WDWLibrary {
3137
 
3138
  return $types;
3139
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3140
  }
305
  */
306
  public static function admin_images_ordering_choices() {
307
  return array(
308
+ 'order_asc' => __('Default sorting', BWG()->prefix),
309
+ 'filename_asc' => __('File name (Asc)', BWG()->prefix),
310
+ 'filename_desc' => __('File name (Desc)', BWG()->prefix),
311
+ 'alt_asc' => __('Alt/Title (Asc)', BWG()->prefix),
312
+ 'alt_desc' => __('Alt/Title (Desc)', BWG()->prefix),
313
+ 'description_asc' => __('Description (Asc)', BWG()->prefix),
314
+ 'description_desc' => __('Description (Desc)', BWG()->prefix),
315
  );
316
  }
317
 
470
  <span class="displaying-num">
471
  <?php
472
  if ($count_items != 0) {
473
+ printf(_n('%s item', '%s items', $count_items, BWG()->prefix), $count_items);
474
  }
475
  ?>
476
  </span>
617
  <span class="displaying-num">
618
  <?php
619
  if ($count_items != 0) {
620
+ printf(_n('%s item', '%s items', $count_items, BWG()->prefix), $count_items);
621
  }
622
  ?>
623
  </span>
3137
 
3138
  return $types;
3139
  }
3140
+
3141
+ public static function get_unique_value( $table, $key, $value, $id ) {
3142
+ global $wpdb;
3143
+ $value = ($key == 'slug') ? sanitize_title($value) : $value;
3144
+ if ( $id != 0 ) {
3145
+ $query = $wpdb->prepare("SELECT `" . $key . "` FROM " . $wpdb->prefix . $table . " WHERE `" . $key . "` = %s AND id != %d", $value, $id);
3146
+ }
3147
+ else {
3148
+ $query = $wpdb->prepare("SELECT `" . $key . "` FROM " . $wpdb->prefix . $table . " WHERE `" . $key . "` = %s", $value);
3149
+ }
3150
+
3151
+ if ( $wpdb->get_var($query) ) {
3152
+ $num = 2;
3153
+ do {
3154
+ $alt_name = $value . "-$num";
3155
+ $num++;
3156
+ $slug_check = $wpdb->get_var($wpdb->prepare("SELECT `" . $key . "` FROM " . $wpdb->prefix . $table . " WHERE `" . $key . "` = %s", $alt_name));
3157
+ }
3158
+ while ( $slug_check );
3159
+ $value = $alt_name;
3160
+ }
3161
+
3162
+ return $value;
3163
+ }
3164
  }
framework/WDWLibraryEmbed.php CHANGED
@@ -226,7 +226,7 @@ class WDWLibraryEmbed {
226
  $embed_type = 'EMBED_OEMBED_'.$host;
227
  switch ($embed_type) {
228
  case 'EMBED_OEMBED_YOUTUBE': {
229
- $youtube_regex = "#(?<=v=)[a-zA-Z0-9-]+(?=&)|(?<=v\/)[^&\n]+|(?<=v=)[^&\n]+|(?<=youtu.be/)[^&\n]+#";
230
  $matches = array();
231
  preg_match($youtube_regex , $url , $matches);
232
  $filename = $matches[0];
@@ -376,31 +376,8 @@ class WDWLibraryEmbed {
376
  $oembed_youtube_html = '<iframe ';
377
  if ($embed_id != '') {
378
  $oembed_youtube_query_args = array();
379
- if (strpos($embed_id, "?t=") !== FALSE) {
380
- $seconds = 0;
381
- $start_info = substr($embed_id, (strpos($embed_id, "?t=") + 3), strlen($embed_id));
382
- $embed_id = substr($embed_id, 0, strpos($embed_id, "?t="));
383
- if (strpos($start_info, "h") !== FALSE) {
384
- $hours = substr($start_info, 0, strpos($start_info, "h"));
385
- $seconds += $hours * 3600;
386
- }
387
- if (strpos($start_info, "m") !== FALSE) {
388
- if (strpos($start_info, "h") !== FALSE) {
389
- $minutes = substr($start_info, strpos($start_info, "h") + 1, -strpos($start_info, "m"));
390
- } else {
391
- $minutes = substr($start_info, 0, strpos($start_info, "m"));
392
- }
393
- $seconds += $minutes * 60;
394
- }
395
- if (strpos($start_info, "s") !== FALSE) {
396
- if (strpos($start_info, "m") !== FALSE) {
397
- $sec = substr($start_info, strpos($start_info, "m") + 1, -1);
398
- } else {
399
- $sec = substr($start_info, 0, -1);
400
- }
401
- $seconds += $sec;
402
- }
403
- $oembed_youtube_query_args = array('start' => $seconds);
404
  }
405
  $oembed_youtube_query_args += array('enablejsapi' => 1, 'wmode' => 'transparent');
406
  if ($is_visible) {
226
  $embed_type = 'EMBED_OEMBED_'.$host;
227
  switch ($embed_type) {
228
  case 'EMBED_OEMBED_YOUTUBE': {
229
+ $youtube_regex = "#(?<=v=)[a-zA-Z0-9-]+(?=&)|(?<=v\/)[^&\n]+|(?<=v=)[^&\n]+|(?<=youtu.be/)+(.*)+#";
230
  $matches = array();
231
  preg_match($youtube_regex , $url , $matches);
232
  $filename = $matches[0];
376
  $oembed_youtube_html = '<iframe ';
377
  if ($embed_id != '') {
378
  $oembed_youtube_query_args = array();
379
+ if (strpos($embed_id, "t=") !== FALSE) {
380
+ $embed_id = str_replace("t=", "start=", $embed_id);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
381
  }
382
  $oembed_youtube_query_args += array('enablejsapi' => 1, 'wmode' => 'transparent');
383
  if ($is_visible) {
frontend/views/view.php CHANGED
@@ -84,7 +84,7 @@ class BWGViewSite {
84
  data-ajax-url="<?php echo add_query_arg(array('action' => 'bwg_frontend_data'), admin_url('admin-ajax.php')); ?>">
85
  <div id="bwg_container3_<?php echo $bwg; ?>" class="bwg-background bwg-background-<?php echo $bwg; ?>">
86
  <?php
87
- $get_album_gallery_id = WDWLibrary::get("album_gallery_id_" . $bwg);
88
  if ( BWG()->options->front_ajax == "1" && isset($get_album_gallery_id) && intval($get_album_gallery_id) > 0 ) {
89
  $this->back($params, $bwg);
90
  }
@@ -153,7 +153,7 @@ class BWGViewSite {
153
  </div>
154
  </div>
155
  <script>
156
- jQuery(function() {
157
  if( typeof bwg_main_ready == 'function' ) {
158
  bwg_main_ready();
159
  }
@@ -221,7 +221,7 @@ class BWGViewSite {
221
 
222
  public function loading($bwg = 0, $image_enable_page = 0, $gallery_type = '' ) {
223
  $load_type_class = "bwg_loading_div_1";
224
- if( ($image_enable_page == 2 || $image_enable_page == 3) ) {
225
  $load_type_class = "bwg_load_more_ajax_loading";
226
  }
227
  ?>
@@ -356,6 +356,7 @@ class BWGViewSite {
356
  $placeholder = $params['placeholder'];
357
  $bwg_search = WDWLibrary::get('bwg_search_' . $current_view);
358
  $type = WDWLibrary::get('type_' . $current_view, 'album');
 
359
  if ( $type == 'album' ) {
360
  $bwg_search = WDWLibrary::get('bwg_album_search_' . $current_view);
361
  }
@@ -393,7 +394,7 @@ class BWGViewSite {
393
  <span class="bwg_search_loupe_container1 bwg-hidden">
394
  <i title="<?php echo __('SEARCH...', BWG()->prefix); ?>" class="bwg-icon-search bwg_search" onclick="bwg_ajax('<?php echo $form_id; ?>', '<?php echo $current_view; ?>', '<?php echo $cur_gal_id; ?>', <?php echo $album_gallery_id; ?>, '', '<?php echo $type; ?>', 1)"></i>
395
  </span>
396
- <input id="bwg_search_input_<?php echo $current_view; ?>" class="bwg_search_input" type="text" onkeypress="bwg_key_press(this); return bwg_check_search_input_enter(this, event);" name="bwg_search_<?php echo $current_view; ?>" value="<?php echo $bwg_search; ?>" placeholder="<?php echo $placeholder; ?>" />
397
  <span class="bwg_search_reset_container <?echo $bwg_search_reset; ?>">
398
  <i title="<?php echo __('Reset', BWG()->prefix); ?>" class="bwg-icon-times bwg_reset" onclick="bwg_clear_search_input('<?php echo $current_view; ?>'); <?php echo $bwg_ajax_reset;?> "></i>
399
  </span>
@@ -419,6 +420,7 @@ class BWGViewSite {
419
  $sort_by = $params['sort_by'];
420
  $search_box_width = $params['search_box_width'];
421
  $type = WDWLibrary::get('type_' . $current_view, 'album');
 
422
  $album_gallery_id = WDWLibrary::get('album_gallery_id_' . $current_view, 0, 'intval');
423
  if ( BWG()->options->front_ajax == "1" ) {
424
  $sort_by = WDWLibrary::get( 'sort_by_'. $bwg, $sort_by );
@@ -467,6 +469,7 @@ class BWGViewSite {
467
  $cur_gal_id = $params['container_id'];
468
  $tags_rows = $params['tags_rows'];
469
  $type = WDWLibrary::get('type_' . $current_view, 'album');
 
470
  $bwg_search_tags = WDWLibrary::get('bwg_tag_id_' . $cur_gal_id, array());
471
  $get_filter_teg = WDWLibrary::get('filter_tag_' . $bwg);
472
  if ( BWG()->options->front_ajax == "1" && isset($get_filter_teg) && !empty($get_filter_teg) ) {
@@ -637,7 +640,8 @@ class BWGViewSite {
637
  $limit = $page_number > 1 ? $items_per_page['load_more_image_count'] : $items_per_page['images_per_page'];
638
  $limit = $limit ? $limit : 1;
639
  $type = WDWLibrary::get('type_' . $current_view, $type);
640
- $album_gallery_id = WDWLibrary::get('album_gallery_id_' . $current_view, $cur_alb_gal_id);
 
641
  if ( $count_items ) {
642
  if ( $count_items % $limit ) {
643
  $items_county = ($count_items - $count_items % $limit) / $limit + 1;
84
  data-ajax-url="<?php echo add_query_arg(array('action' => 'bwg_frontend_data'), admin_url('admin-ajax.php')); ?>">
85
  <div id="bwg_container3_<?php echo $bwg; ?>" class="bwg-background bwg-background-<?php echo $bwg; ?>">
86
  <?php
87
+ $get_album_gallery_id = WDWLibrary::get("album_gallery_id_" . $bwg, 0, 'intval');
88
  if ( BWG()->options->front_ajax == "1" && isset($get_album_gallery_id) && intval($get_album_gallery_id) > 0 ) {
89
  $this->back($params, $bwg);
90
  }
153
  </div>
154
  </div>
155
  <script>
156
+ document.addEventListener('DOMContentLoaded', function() {
157
  if( typeof bwg_main_ready == 'function' ) {
158
  bwg_main_ready();
159
  }
221
 
222
  public function loading($bwg = 0, $image_enable_page = 0, $gallery_type = '' ) {
223
  $load_type_class = "bwg_loading_div_1";
224
+ if ( ($image_enable_page == 2 || $image_enable_page == 3) ) {
225
  $load_type_class = "bwg_load_more_ajax_loading";
226
  }
227
  ?>
356
  $placeholder = $params['placeholder'];
357
  $bwg_search = WDWLibrary::get('bwg_search_' . $current_view);
358
  $type = WDWLibrary::get('type_' . $current_view, 'album');
359
+ $type = ($type != 'album') ? 'gallery' : 'album';
360
  if ( $type == 'album' ) {
361
  $bwg_search = WDWLibrary::get('bwg_album_search_' . $current_view);
362
  }
394
  <span class="bwg_search_loupe_container1 bwg-hidden">
395
  <i title="<?php echo __('SEARCH...', BWG()->prefix); ?>" class="bwg-icon-search bwg_search" onclick="bwg_ajax('<?php echo $form_id; ?>', '<?php echo $current_view; ?>', '<?php echo $cur_gal_id; ?>', <?php echo $album_gallery_id; ?>, '', '<?php echo $type; ?>', 1)"></i>
396
  </span>
397
+ <input id="bwg_search_input_<?php echo $current_view; ?>" class="bwg_search_input" type="text" onkeypress="bwg_key_press(this); return bwg_check_search_input_enter(this, event);" name="bwg_search_<?php echo $current_view; ?>" value="<?php echo esc_attr($bwg_search); ?>" placeholder="<?php echo $placeholder; ?>" />
398
  <span class="bwg_search_reset_container <?echo $bwg_search_reset; ?>">
399
  <i title="<?php echo __('Reset', BWG()->prefix); ?>" class="bwg-icon-times bwg_reset" onclick="bwg_clear_search_input('<?php echo $current_view; ?>'); <?php echo $bwg_ajax_reset;?> "></i>
400
  </span>
420
  $sort_by = $params['sort_by'];
421
  $search_box_width = $params['search_box_width'];
422
  $type = WDWLibrary::get('type_' . $current_view, 'album');
423
+ $type = ($type != 'album') ? 'gallery' : 'album';
424
  $album_gallery_id = WDWLibrary::get('album_gallery_id_' . $current_view, 0, 'intval');
425
  if ( BWG()->options->front_ajax == "1" ) {
426
  $sort_by = WDWLibrary::get( 'sort_by_'. $bwg, $sort_by );
469
  $cur_gal_id = $params['container_id'];
470
  $tags_rows = $params['tags_rows'];
471
  $type = WDWLibrary::get('type_' . $current_view, 'album');
472
+ $type = ($type != 'album') ? 'gallery' : 'album';
473
  $bwg_search_tags = WDWLibrary::get('bwg_tag_id_' . $cur_gal_id, array());
474
  $get_filter_teg = WDWLibrary::get('filter_tag_' . $bwg);
475
  if ( BWG()->options->front_ajax == "1" && isset($get_filter_teg) && !empty($get_filter_teg) ) {
640
  $limit = $page_number > 1 ? $items_per_page['load_more_image_count'] : $items_per_page['images_per_page'];
641
  $limit = $limit ? $limit : 1;
642
  $type = WDWLibrary::get('type_' . $current_view, $type);
643
+ $type = ($type != 'album') ? 'gallery' : 'album';
644
+ $album_gallery_id = WDWLibrary::get('album_gallery_id_' . $current_view, $cur_alb_gal_id, 'intval');
645
  if ( $count_items ) {
646
  if ( $count_items % $limit ) {
647
  $items_county = ($count_items - $count_items % $limit) / $limit + 1;
js/bwg.js CHANGED
@@ -415,7 +415,19 @@ function spider_ajax_save( form_id, tr_group ) {
415
  post_data[ "checked_items_count" ] = jQuery( "[name^=check]:not([id=check_all_items]):checked" ).length;
416
  /* Select all.*/
417
  post_data[ "check_all_items" ] = jQuery( "[name=check_all_items]" ).is( ":checked" ) ? 1 : 0;
418
- var limit = ( ajax_task == 'image_set_watermark' || ajax_task == 'image_reset' || ajax_task == 'image_recreate_thumbnail' || ajax_task == 'image_resize' || ajax_task == 'image_rotate_left' || ajax_task == 'image_rotate_right' || ajax_task == 'image_edit_alt' || ajax_task == 'image_edit_description' || ajax_task == 'image_edit_redirect' || ajax_task == 'image_add_tag' || ajax_task == 'image_publish' || ajax_task == 'image_delete' || ajax_task == 'image_unpublish') && ( post_data[ "check_all_items" ] || tr_count > bwg_save_count ) ? bwg_save_count * ( tr_group - 1 ) : false;
 
 
 
 
 
 
 
 
 
 
 
 
419
  post_data[ "limit" ] = limit;
420
  /* Gallery paramters. */
421
  post_data[ "name" ] = jQuery( "#name" ).val();
@@ -507,7 +519,7 @@ function spider_ajax_save( form_id, tr_group ) {
507
  }
508
  }
509
  ).success( function ( data, textStatus, errorThrown ) {
510
- if ( tr_count > bwg_save_count * tr_group || ( limit !== false && limit < jQuery( "#total" ).val() ) ) {
511
  spider_ajax_save( form_id, ++tr_group );
512
  return;
513
  }
@@ -528,6 +540,7 @@ function spider_ajax_save( form_id, tr_group ) {
528
  var str = jQuery( data ).find( '.bwg-page-header' ).html();
529
  jQuery( '.bwg-page-header' ).html( str );
530
  var str = jQuery( data ).find( '.ajax-msg' ).html();
 
531
  jQuery( '.ajax-msg' ).html( str );
532
  jQuery( ".ajax-msg" ).addClass( "wd-hide" );
533
  var str = jQuery( data ).find( '.gal-msg' ).html();
@@ -959,7 +972,7 @@ function bwg_add_tag( image_id, tagIds, titles ) {
959
  tag_ids = tag_ids + tagIds[ i ] + ',';
960
  var html = jQuery( "#" + image_id + "_tag_temptagid" ).clone().html();
961
  /* Remove white spaces from keywords to set as id and remove prefix.*/
962
- var id = tagIds[ i ].replace( /\s+/g, '_' ).replace( 'bwg_', '' ).replace( /\//g, "" ).replace( /&amp;/g, "" ).replace( /&/g, "" ).replace( /@/g, "" ).replace( /'/g, "39" ).replace( /"/g, "34" ).replace( /!/g, "" ).replace(".", "");
963
  html = html.replace( /temptagid/g, id )
964
  .replace( /temptagname/g, titles[ i ] );
965
  jQuery( "#tags_div_" + image_id ).append( "<div class='tag_div' id='" + image_id + "_tag_" + id + "'>" );
@@ -1776,7 +1789,7 @@ function wd_bulk_action( that ) {
1776
  alert( bwg.select_at_least_one_item );
1777
  return;
1778
  }
1779
- if ( action == 'delete' ) {
1780
  if ( !confirm( bwg.delete_confirmation ) ) {
1781
  return false;
1782
  }
415
  post_data[ "checked_items_count" ] = jQuery( "[name^=check]:not([id=check_all_items]):checked" ).length;
416
  /* Select all.*/
417
  post_data[ "check_all_items" ] = jQuery( "[name=check_all_items]" ).is( ":checked" ) ? 1 : 0;
418
+ var limit = ( ajax_task == 'image_set_watermark'
419
+ || ajax_task == 'image_reset'
420
+ || ajax_task == 'image_recreate_thumbnail'
421
+ || ajax_task == 'image_resize'
422
+ || ajax_task == 'image_rotate_left'
423
+ || ajax_task == 'image_rotate_right'
424
+ || ajax_task == 'image_edit_alt'
425
+ || ajax_task == 'image_edit_description'
426
+ || ajax_task == 'image_edit_redirect'
427
+ || ajax_task == 'image_add_tag'
428
+ || ajax_task == 'image_publish'
429
+ || ajax_task == 'image_delete'
430
+ || ajax_task == 'image_unpublish') && ( post_data[ "check_all_items" ] || tr_count > bwg_save_count ) ? bwg_save_count * ( tr_group - 1 ) : false;
431
  post_data[ "limit" ] = limit;
432
  /* Gallery paramters. */
433
  post_data[ "name" ] = jQuery( "#name" ).val();
519
  }
520
  }
521
  ).success( function ( data, textStatus, errorThrown ) {
522
+ if ( tr_count > bwg_save_count * tr_group || ( limit != false && limit < jQuery( "#total" ).val() ) ) {
523
  spider_ajax_save( form_id, ++tr_group );
524
  return;
525
  }
540
  var str = jQuery( data ).find( '.bwg-page-header' ).html();
541
  jQuery( '.bwg-page-header' ).html( str );
542
  var str = jQuery( data ).find( '.ajax-msg' ).html();
543
+
544
  jQuery( '.ajax-msg' ).html( str );
545
  jQuery( ".ajax-msg" ).addClass( "wd-hide" );
546
  var str = jQuery( data ).find( '.gal-msg' ).html();
972
  tag_ids = tag_ids + tagIds[ i ] + ',';
973
  var html = jQuery( "#" + image_id + "_tag_temptagid" ).clone().html();
974
  /* Remove white spaces from keywords to set as id and remove prefix.*/
975
+ var id = tagIds[ i ].replace( /\s+/g, '_' ).replace( 'bwg_', '' ).replace( /\(/g, "" ).replace( /\)/g, "" ).replace( /,/g, "" ).replace( /\//g, "" ).replace( /&amp;/g, "" ).replace( /&/g, "" ).replace( /@/g, "" ).replace( /'/g, "39" ).replace( /"/g, "34" ).replace( /!/g, "" ).replace(".", "");
976
  html = html.replace( /temptagid/g, id )
977
  .replace( /temptagname/g, titles[ i ] );
978
  jQuery( "#tags_div_" + image_id ).append( "<div class='tag_div' id='" + image_id + "_tag_" + id + "'>" );
1789
  alert( bwg.select_at_least_one_item );
1790
  return;
1791
  }
1792
+ if ( action == 'delete' || action == 'image_delete' ) {
1793
  if ( !confirm( bwg.delete_confirmation ) ) {
1794
  return false;
1795
  }
js/bwg_frontend.js CHANGED
@@ -2650,7 +2650,7 @@ function bwg_popup_resize_slidshow( bwg ) {
2650
  });
2651
  }
2652
  if ( bwg_params[bwg]['watermark_type'] == 'text') {
2653
- jQuery(".bwg_slideshow_watermark_text_" + bwg + ", .bwg_slideshow_watermark_text_" + bwg + " : hover").css({
2654
  fontSize: (bwg_params[bwg]['watermark_font_size'])
2655
  });
2656
  }
2650
  });
2651
  }
2652
  if ( bwg_params[bwg]['watermark_type'] == 'text') {
2653
+ jQuery(".bwg_slideshow_watermark_text_" + bwg + ", .bwg_slideshow_watermark_text_" + bwg + " :hover").css({
2654
  fontSize: (bwg_params[bwg]['watermark_font_size'])
2655
  });
2656
  }
js/bwg_gallery_box.js CHANGED
@@ -205,6 +205,7 @@ function gallery_box_ready() {
205
  if (typeof jQuery().mCustomScrollbar !== 'undefined' && jQuery.isFunction(jQuery().mCustomScrollbar)) {
206
  jQuery(".bwg_comments,.bwg_ecommerce_panel, .bwg_image_info").mCustomScrollbar({
207
  scrollInertia: 150,
 
208
  advanced:{
209
  updateOnContentResize: true
210
  }
@@ -720,6 +721,13 @@ function spider_showpopup( description, lifetime, popup, duration, lightbox_ctrl
720
  function bwg_first_image_load(popup, lightbox_ctrl_btn_pos) {
721
  popup.show();
722
 
 
 
 
 
 
 
 
723
  var bwg_ctrl_btn_container_height = jQuery(".bwg_ctrl_btn_container").height();
724
  if (lightbox_ctrl_btn_pos == 'bottom') {
725
  jQuery(".bwg_toggle_container").css("bottom", bwg_ctrl_btn_container_height + "px");
@@ -1118,6 +1126,14 @@ function bwg_change_image_lightbox(current_key, key, data, from_effect) {
1118
  jQuery("#bwg_rate_form input[name='image_id']").val(data[key]["id"]);
1119
  bwg_current_key = gallery_box_data['bwg_current_key'];
1120
  /* var bwg_image_info_pos = jQuery(".bwg_ctrl_btn_container").height(); */
 
 
 
 
 
 
 
 
1121
  jQuery(".bwg_image_info").css("height","auto");
1122
  setTimeout(function(){
1123
  bwg_info_height_set();
205
  if (typeof jQuery().mCustomScrollbar !== 'undefined' && jQuery.isFunction(jQuery().mCustomScrollbar)) {
206
  jQuery(".bwg_comments,.bwg_ecommerce_panel, .bwg_image_info").mCustomScrollbar({
207
  scrollInertia: 150,
208
+ theme: 'dark-thick',
209
  advanced:{
210
  updateOnContentResize: true
211
  }
721
  function bwg_first_image_load(popup, lightbox_ctrl_btn_pos) {
722
  popup.show();
723
 
724
+ if (gallery_box_data['data'][key]['alt'] =="" && gallery_box_data['data'][key]['description'] == "") {
725
+ jQuery(".bwg_info").hide();
726
+ }
727
+ else {
728
+ jQuery(".bwg_info").show();
729
+ }
730
+
731
  var bwg_ctrl_btn_container_height = jQuery(".bwg_ctrl_btn_container").height();
732
  if (lightbox_ctrl_btn_pos == 'bottom') {
733
  jQuery(".bwg_toggle_container").css("bottom", bwg_ctrl_btn_container_height + "px");
1126
  jQuery("#bwg_rate_form input[name='image_id']").val(data[key]["id"]);
1127
  bwg_current_key = gallery_box_data['bwg_current_key'];
1128
  /* var bwg_image_info_pos = jQuery(".bwg_ctrl_btn_container").height(); */
1129
+
1130
+ if (gallery_box_data['data'][key]['alt'] =="" && gallery_box_data['data'][key]['description'] == "") {
1131
+ jQuery(".bwg_info").hide();
1132
+ }
1133
+ else {
1134
+ jQuery(".bwg_info").show();
1135
+ }
1136
+
1137
  jQuery(".bwg_image_info").css("height","auto");
1138
  setTimeout(function(){
1139
  bwg_info_height_set();
js/scripts.min.js CHANGED
@@ -1 +1 @@
1
- var bwg_current_filmstrip_pos,total_thumbnail_count,key,startPoint,endPoint,bwg_image_info_pos,filmstrip_width,preloadCount,filmstrip_thumbnail_width,filmstrip_thumbnail_height,addthis_share,lightbox_comment_pos,bwg_transition_duration,bwg_playInterval,isPopUpOpened=!1,bwg_overflow_initial_value=!1,bwg_overflow_x_initial_value=!1,bwg_overflow_y_initial_value=!1;function gallery_box_ready(){filmstrip_thumbnail_width=jQuery(".bwg_filmstrip_thumbnail").width(),filmstrip_thumbnail_height=jQuery(".bwg_filmstrip_thumbnail").height(),1==gallery_box_data.open_with_fullscreen?(filmstrip_width=jQuery(window).width(),filmstrip_height=jQuery(window).height()):(filmstrip_width=jQuery(".bwg_filmstrip_container").width(),filmstrip_height=jQuery(".bwg_filmstrip_container").height()),preloadCount="horizontal"==gallery_box_data.filmstrip_direction?parseInt(filmstrip_width/filmstrip_thumbnail_width)+gallery_box_data.preload_images_count:parseInt(filmstrip_height/filmstrip_thumbnail_height)+gallery_box_data.preload_images_count,total_thumbnail_count=jQuery(".bwg_filmstrip_thumbnail").length,key=parseInt(jQuery("#bwg_current_image_key").val()),startPoint=0,endPoint=key+preloadCount,jQuery(function(){bwg_load_visible_images(key,preloadCount,total_thumbnail_count),jQuery(".pge_tabs li a").on("click",function(){return jQuery(".pge_tabs_container > div").hide(),jQuery(".pge_tabs li").removeClass("pge_active"),jQuery(jQuery(this).attr("href")).show(),jQuery(this).closest("li").addClass("pge_active"),jQuery("[name=type]").val(jQuery(this).attr("href").substr(1)),!1});var e=jQuery("#bwg_rated").attr("data-params");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())&&jQuery(".spider_popup_close").attr("class","bwg_ctrl_btn 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,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_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","bwg_ctrl_btn 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,i,a,r,_,s,o){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:'+i+"px; height:"+a+"px; margin-top:-"+a/2+"px; margin-left: -"+i/2+'px; ">'+e+"</div>").hide().appendTo("body");gallery_box_ready(),spider_showpopup(_,s,t,r,o)},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());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())}function bwg_first_image_load(e,t){e.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){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&&location.replace("#"),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){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,advanced:{updateOnContentResize:!0}}),jQuery(".bwg_comments_close_btn").click(bwg_comment),bwg_captcha_refresh("bwg_captcha")}}),!1}function spider_rate_ajax_save(i){var e={};return e.image_id=jQuery("#"+i+" input[name='image_id']").val(),e.rate=jQuery("#"+i+" input[name='score']").val(),e.ajax_task=jQuery("#rate_ajax_task").val(),jQuery.ajax({type:"POST",url:jQuery("#"+i).attr("action"),data:e,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,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,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),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)),spider_set_input_value("rate_ajax_task","save_hit_count"),spider_rate_ajax_save("bwg_rate_form"),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=0,m=0;b<u+88?h=(m=b)-88:m=(h=u)+88,d+=spider_display_embed(r[a].filetype,r[a].image_url,r[a].filename,{class:"bwg_embed_frame","data-width":r[a].image_width,"data-height":r[a].image_height,frameborder:"0",allowfullscreen:"allowfullscreen",style:"width:"+h+"px; height:"+m+"px; vertical-align:middle; display:inline-block; position:relative;"})}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"),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 p(){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/share?url="+t),jQuery("#bwg_pinterest_a").attr("href","http://pinterest.com/pin/create/button/?s=100&url="+t+"&media="+i+"&description="+r[a].alt+"%0A"+r[a].description),jQuery("#bwg_tumblr_a").attr("href","https://www.tumblr.com/share/photo?source="+i+"&caption="+r[a].alt+"&clickthru="+t),jQuery(".bwg_comment_container").hasClass("bwg_open")&&(jQuery(".bwg_comments .mCSB_container").css("top","0"),jQuery("#bwg_added_comments").show(),spider_set_input_value("ajax_task","display"),spider_set_input_value("image_id",jQuery("#bwg_popup_image").attr("image_id")),spider_ajax_save("bwg_comment_form")),jQuery(".bwg_ecommerce_container").hasClass("bwg_open")&&(0==r[a].pricelist?(bwg_popup_sidebar_close(jQuery(".bwg_ecommerce_container")),bwg_animate_image_box_for_hide_sidebar(),jQuery(".bwg_ecommerce_container").attr("class","bwg_ecommerce_container bwg_close"),jQuery(".bwg_ecommerce").attr("title",bwg_objectsL10n.bwg_show_ecommerce),jQuery(".spider_popup_close_fullscreen").show()):get_ajax_pricelist()),void 0!==jQuery().mCustomScrollbar&&jQuery.isFunction(jQuery().mCustomScrollbar)&&jQuery(".bwg_comments").mCustomScrollbar({advanced:{updateOnContentResize:!0}}),jQuery(".bwg_comments .mCSB_scrollTools").hide(),gallery_box_data.enable_image_filmstrip&&bwg_move_filmstrip(),bwg_resize_instagram_post()}if(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)p();else jQuery(o).find("img").one("load",function(){p()}).each(function(){this.complete&&jQuery(this).load()});"undefined"!=typeof instgrm&&void 0!==instgrm.Embeds&&instgrm.Embeds.process()}}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,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","bwg_ctrl_btn 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","bwg_ctrl_btn 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(),window.innerHeight>gallery_box_data.image_height-2*gallery_box_data.lightbox_close_btn_top&&jQuery(window).width()>=gallery_box_data.image_width-2*gallery_box_data.lightbox_close_btn_right&&1!=gallery_box_data.open_with_fullscreen?jQuery(".spider_popup_close_fullscreen").attr("class","spider_popup_close"):jQuery("#spider_popup_wrap").width()<jQuery(window).width()&&jQuery("#spider_popup_wrap").height()<jQuery(window).height()&&jQuery(".spider_popup_close").attr("class","bwg_ctrl_btn spider_popup_close_fullscreen");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.";0!=i&&""!=i&&(r=parseFloat(i).toFixed(1)+"\n Votes: "+t),void 0!==jQuery().raty&&jQuery.isFunction(jQuery().raty)&&jQuery("#bwg_star").raty({score:function(){return jQuery(this).attr("data-score")},starType:"i",number:lightbox_rate_stars_count,size:lightbox_rate_size,readOnly:function(){return!!e},noRatedMsg:"Not rated yet.",click:function(t,e){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")).then(function(){gallery_box_data.data[a].rate=t,++gallery_box_data.data[a].rate_count;var e=parseFloat(jQuery("#bwg_star").attr("data-score"));gallery_box_data.data[a].avg_rating=e?((e+t)/2).toFixed(1):t.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)})},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})}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":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:100% !important; max-height:100% !important; 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+'" frameborder="0" scrolling="no" allowtransparency="false" allowfullscreen 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 n="<span ";for(attr in a)/src/i.test(attr)||""!=attr&&""!=a[attr]&&(n+=" "+attr+'="'+a[attr]+'"');n+=" >",""!=i&&(n+='<img src="'+t+'" style=" max-width:100% !important; max-height:100% !important; width:auto; height:100%;">'),r+=n+="</span>";break;case"EMBED_OEMBED_FACEBOOK_VIDEO":var g="<div ";for(attr in a)/src/i.test(attr)||""!=attr&&""!=a[attr]&&(g+=" "+attr+'="'+a[attr]+'"');g+=" >",""!=i&&(g+='<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+=g+="</div>";break;case"EMBED_OEMBED_DAILYMOTION_VIDEO":var w="<iframe ";for(attr in""!=i&&(w+=' src="//www.dailymotion.com/embed/video/'+i+'?api=postMessage"'),a)/src/i.test(attr)||""!=attr&&""!=a[attr]&&(w+=" "+attr+'="'+a[attr]+'"');r+=w+=" ></iframe>";break;case"EMBED_OEMBED_IMGUR":var b="<div ";for(attr in a)/src/i.test(attr)||""!=attr&&""!=a[attr]&&(l+=" "+attr+'="'+a[attr]+'"');b+=" >",""!=i&&(b+='<img src="'+i+'" style="max-width:100% !important; max-height:100% !important; width:auto; height:auto !important;">'),r+=b+="</div>";break;case"EMBED_OEMBED_GOOGLE_PHOTO_IMAGE":var u="<div ";for(attr in a)/src/i.test(attr)||""!=attr&&""!=a[attr]&&(u+=" "+attr+'="'+a[attr]+'"');u+=" >",""!=i&&(u+='<img src="'+t+'" style=" max-width:100% !important; max-height:100% !important; width:auto; height:auto;">'),r+=u+="</div>";break;default:var d={content:""};jQuery(document).trigger("bwg_display_embed",[d,e,t,i,a]),r=d.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(ajax_url,_,function(e){if(0==e)return alert("Error: cannot get response from the server."),jQuery("#loading_div").hide(),s&&jQuery("#bulk_embed").show(),!1;var t=e.indexOf("WD_delimiter_start"),i=e.indexOf("WD_delimiter_end");if(-1==t||-1==i)return jQuery("#loading_div").hide(),s&&jQuery("#bulk_embed").show(),!1;if(e=e.substring(t+18,i),response_JSON=JSON.parse(e),response_JSON){if("error"==response_JSON[0])return alert("Error: "+JSON.parse(e)[1]),jQuery("#loading_div").hide(),s&&jQuery("#bulk_embed").show(),!1;for(var a=response_JSON.length,r=1;r<=a;r++)if(0!=response_JSON[a-r]){var _=response_JSON[a-r];o.push(_)}return bwg_add_image(o),s||(bwg_gallery_update_flag(),jQuery("#tr_instagram_gallery_add_button").hide()),jQuery("#loading_div").hide(),s&&jQuery(".opacity_bulk_embed").hide(),"ok"}return alert("There is some error. Cannot add Instagram gallery."),jQuery("#loading_div").hide(),s&&jQuery("#bulk_embed").show(),!1})}var bwg=0,isMobile=/android|webos|iphone|ipad|ipod|blackberry|iemobile|opera mini/i.test(navigator.userAgent.toLowerCase()),bwg_click=isMobile?"touchend":"click",bwg_params=[],bwg_params_ib=[],bwg_params_carousel=[];function bwg_main_ready(){1==bwg_objectsL10n.lazy_load&&jQuery(function(){jQuery("img.bwg_lazyload").lazy({onFinishedAll:function(){jQuery(".lazy_loader").removeClass("lazy_loader")}})}),jQuery(".bwg_container").each(function(){0<jQuery(this).find(".wd_error").length&&bwg_container_loaded(jQuery(this).data("bwg"))}),bwg_document_ready(),jQuery(".bwg-thumbnails, .bwg-masonry-thumbnails, .bwg-album-thumbnails").each(function(){bwg_all_thumnails_loaded(this)}),jQuery(".bwg-mosaic-thumbnails").each(function(){bwg_thumbnail_mosaic(this)}),bwg_slideshow_ready(),bwg_carousel_ready(),bwg_carousel_onload(),bwg_image_browser_ready()}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_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(){jQuery(".bwg_blog_style").each(function(){var e=jQuery(this).attr("data-bwg");bwg_container_loaded(e);var t=!1;jQuery(this).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"),!t)return t=!0,setTimeout(function(){t=!1},100),bwg_gallery_box(e,jQuery(this).closest(".bwg_container")),!1}),jQuery(".bwg_lightbox_"+e+" .bwg_ecommerce").on("click",function(e){if(e.stopPropagation(),!t)return t=!0,setTimeout(function(){t=!1},100),bwg_gallery_box(jQuery(this).attr("data-image-id"),jQuery(this).closest(".bwg_container"),!0),!1});var i=window.location.hash.substring(1);i&&"-1"!=i.indexOf("bwg")&&(bwg_hash_array=i.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).attr("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_slideshow_blur(e){jQuery(".bwg_slideshow").each(function(){bwg=jQuery(this).attr("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_ready(){jQuery(".bwg-carousel").each(function(){var t=jQuery(this).data("bwg");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");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(){jQuery(".bwg-carousel").each(function(){var e=jQuery(this).data("bwg");bwg_params_carousel[e]=jQuery(this).data("params"),bwg_params_carousel[e].parent_width=0,bwg_carousel_watermark(e),bwg_carousel_params(e,!1),bwg_container_loaded(e)})}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_play_pause-ico_"+e).css({fontSize:i*bwg_params_carousel[e].carousel_play_pause_btn_size/a}),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(){jQuery(".bwg_slideshow").each(function(){var i=jQuery(this).data("bwg");if(jQuery("#bwg_slideshow_image_container_"+i).length){bwg_params[i]=JSON.parse(jQuery("#bwg_slideshow_image_container_"+i).attr("data-params")),bwg_params[i].event_stack=[],bwg_container_loaded(i);var e=bwg_params[i].data;void 0!==jQuery().swiperight&&jQuery.isFunction(jQuery().swiperight)&&jQuery("#bwg_container1_"+i).swiperight(function(){return bwg_change_image(parseInt(jQuery("#bwg_current_image_key_"+i).val()),0<=parseInt(jQuery("#bwg_current_image_key_"+i).val())-bwg_iterator(i)?(parseInt(jQuery("#bwg_current_image_key_"+i).val())-bwg_iterator(i))%e.length:e.length-1,e,"",i),!1}),void 0!==jQuery().swipeleft&&jQuery.isFunction(jQuery().swipeleft)&&jQuery("#bwg_container1_"+i).swipeleft(function(){return bwg_change_image(parseInt(jQuery("#bwg_current_image_key_"+i).val()),parseInt(jQuery("#bwg_current_image_key_"+i).val())+bwg_iterator(i)%e.length,e,"",i),!1});var t=/android|webos|iphone|ipad|ipod|blackberry|iemobile|opera mini/i.test(navigator.userAgent.toLowerCase())?"touchend":"click";bwg_popup_resize(i),jQuery(".bwg_slideshow_watermark_"+i).css({display:"none"}),jQuery(".bwg_slideshow_title_text_"+i).css({display:"none"}),jQuery(".bwg_slideshow_description_text_"+i).css({display:"none"}),setTimeout(function(){bwg_change_watermark_container(i)},500),"horizontal"==bwg_params[i].filmstrip_direction?jQuery(".bwg_slideshow_image_container_"+i).height(jQuery(".bwg_slideshow_image_wrap_"+i).height()-bwg_params[i].slideshow_filmstrip_height):jQuery(".bwg_slideshow_image_container_"+i).width(jQuery(".bwg_slideshow_image_wrap_"+i).width()-bwg_params[i].slideshow_filmstrip_width);var a=/Firefox/i.test(navigator.userAgent)?"DOMMouseScroll":"mousewheel";jQuery(".bwg_slideshow_filmstrip_"+i).bind(a,function(e){var t=window.event||e;return 0<((t=t.originalEvent?t.originalEvent:t).detail?-40*t.detail:t.wheelDelta)?jQuery(".bwg_slideshow_filmstrip_left_"+i).trigger("click"):jQuery(".bwg_slideshow_filmstrip_right_"+i).trigger("click"),!1}),jQuery(".bwg_slideshow_filmstrip_right_"+i).on(t,function(){jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).stop(!0,!1),"left"==bwg_params[i].left_or_top?"width"==bwg_params[i].width_or_height?(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).position().left>=-(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).width()-jQuery(".bwg_slideshow_filmstrip_"+i).width())&&(jQuery(".bwg_slideshow_filmstrip_left_"+i).css({opacity:1}),jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).position().left<-(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).width()-jQuery(".bwg_slideshow_filmstrip_"+i).width()-(parseInt(bwg_params[i].filmstrip_thumb_margin_hor)+parseInt(bwg_params[i].slideshow_filmstrip_width)))?jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).animate({left:-(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).width()-jQuery(".bwg_slideshow_filmstrip_"+i).width())},500,"linear"):jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).animate({left:jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).position().left-(parseInt(bwg_params[i].filmstrip_thumb_margin_hor)+parseInt(bwg_params[i].slideshow_filmstrip_width))},500,"linear")),window.setTimeout(function(){jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).position().left==-(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).width()-jQuery(".bwg_slideshow_filmstrip_"+i).width())&&jQuery(".bwg_slideshow_filmstrip_right_"+i).css({opacity:.3})},500)):(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).position().left>=-(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).height()-jQuery(".bwg_slideshow_filmstrip_"+i).height())&&(jQuery(".bwg_slideshow_filmstrip_left_"+i).css({opacity:1}),jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).position().left<-(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).height()-jQuery(".bwg_slideshow_filmstrip_"+i).height()-(parseInt(bwg_params[i].filmstrip_thumb_margin_hor)+parseInt(bwg_params[i].slideshow_filmstrip_width)))?jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).animate({left:-(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).height()-jQuery(".bwg_slideshow_filmstrip_"+i).height())},500,"linear"):jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).animate({left:jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).position().left-(parseInt(bwg_params[i].filmstrip_thumb_margin_hor)+parseInt(bwg_params[i].slideshow_filmstrip_width))},500,"linear")),window.setTimeout(function(){jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).position().left==-(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).height()-jQuery(".bwg_slideshow_filmstrip_"+i).height())&&jQuery(".bwg_slideshow_filmstrip_right_"+i).css({opacity:.3})},500)):"width"==bwg_params[i].width_or_height?(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).position().top>=-(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).width()-jQuery(".bwg_slideshow_filmstrip_"+i).width())&&(jQuery(".bwg_slideshow_filmstrip_left_"+i).css({opacity:1}),jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).position().top<-(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).width()-jQuery(".bwg_slideshow_filmstrip_"+i).width()-parseInt(bwg_params[i].filmstrip_thumb_margin_hor)+parseInt(bwg_params[i].slideshow_filmstrip_width))?jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).animate({top:-(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).width()-jQuery(".bwg_slideshow_filmstrip_"+i).width())},500,"linear"):jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).animate({top:jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).position().top-parseInt(bwg_params[i].filmstrip_thumb_margin_hor)+parseInt(bwg_params[i].slideshow_filmstrip_width)},500,"linear")),window.setTimeout(function(){jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).position().top==-(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).width()-jQuery(".bwg_slideshow_filmstrip_"+i).width())&&jQuery(".bwg_slideshow_filmstrip_right_"+i).css({opacity:.3})},500)):(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).position().top>=-(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).height()-jQuery(".bwg_slideshow_filmstrip_"+i).height())&&(jQuery(".bwg_slideshow_filmstrip_left_"+i).css({opacity:1}),jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).position().top<-(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).height()-jQuery(".bwg_slideshow_filmstrip_"+i).height()-(parseInt(bwg_params[i].filmstrip_thumb_margin_hor)+parseInt(bwg_params[i].slideshow_filmstrip_width)))?jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).animate({top:-(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).height()-jQuery(".bwg_slideshow_filmstrip_"+i).height())},500,"linear"):jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).animate({top:jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).position().top-(parseInt(bwg_params[i].filmstrip_thumb_margin_hor)+parseInt(bwg_params[i].slideshow_filmstrip_width))},500,"linear")),window.setTimeout(function(){jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).position().top==-(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).height()-jQuery(".bwg_slideshow_filmstrip_"+i).height())&&jQuery(".bwg_slideshow_filmstrip_right_"+i).css({opacity:.3})},500))}),jQuery(".bwg_slideshow_filmstrip_left_"+i).on(t,function(){jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).stop(!0,!1),"left"==bwg_params[i].left_or_top?(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).position().left<0&&(jQuery(".bwg_slideshow_filmstrip_right_"+i).css({opacity:1}),jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).position().left>-(bwg_params[i].filmstrip_thumb_margin_hor+bwg_params[i].slideshow_filmstrip_width)?jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).animate({left:0},500,"linear"):jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).animate({left:jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).position().left+parseInt(bwg_params[i].filmstrip_thumb_margin_hor)+parseInt(bwg_params[i].slideshow_filmstrip_width)},500,"linear")),window.setTimeout(function(){0==jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).position().left&&jQuery(".bwg_slideshow_filmstrip_left_"+i).css({opacity:.3})},500)):(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).position().top<0&&(jQuery(".bwg_slideshow_filmstrip_right_"+i).css({opacity:1}),jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).position().top>-(bwg_params[i].filmstrip_thumb_margin_hor+bwg_params[i].slideshow_filmstrip_width)?jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).animate({top:0},500,"linear"):jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).animate({top:jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).position().top+parseInt(bwg_params[i].filmstrip_thumb_margin_hor)+parseInt(bwg_params[i].slideshow_filmstrip_width)},500,"linear")),window.setTimeout(function(){0==jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).position().top&&jQuery(".bwg_slideshow_filmstrip_left_"+i).css({opacity:.3})},500))}),"width"==bwg_params[i].width_or_height?bwg_set_filmstrip_pos(jQuery(".bwg_slideshow_filmstrip_"+i).width(),i):bwg_set_filmstrip_pos(jQuery(".bwg_slideshow_filmstrip_"+i).height(),i),jQuery("#bwg_slideshow_play_pause_"+i).off(t).on(t,function(){jQuery(".bwg_ctrl_btn_"+i).hasClass("bwg-icon-play")?(bwg_play(bwg_params[i].data,i),jQuery(".bwg_slideshow_play_pause_"+i).attr("title",bwg_objectsL10n.pause),jQuery(".bwg_slideshow_play_pause_"+i).attr("class","bwg-icon-pause bwg_ctrl_btn_"+i+" bwg_slideshow_play_pause_"+i),1==bwg_params[i].enable_slideshow_music&&document.getElementById("bwg_audio_"+i).play()):(window.clearInterval(window["bwg_playInterval"+i]),jQuery(".bwg_slideshow_play_pause_"+i).attr("title","Play"),jQuery(".bwg_slideshow_play_pause_"+i).attr("class","bwg-icon-play bwg_ctrl_btn_"+i+" bwg_slideshow_play_pause_"+i),1==bwg_params[i].enable_slideshow_music&&document.getElementById("bwg_audio_"+i).pause())}),0!=bwg_params[i].enable_slideshow_autoplay&&(bwg_play(bwg_params[i].data,i),jQuery(".bwg_slideshow_play_pause_"+i).attr("title",bwg_objectsL10n.pause),jQuery(".bwg_slideshow_play_pause_"+i).attr("class","bwg-icon-pause bwg_ctrl_btn_"+i+" bwg_slideshow_play_pause_"+i),1==bwg_params[i].enable_slideshow_music&&jQuery("#bwg_audio_"+i).length&&document.getElementById("bwg_audio_"+i).play()),bwg_params[i].preload_images&&bwg_preload_images(parseInt(jQuery("#bwg_current_image_key_".$bwg).val()),i),jQuery(".bwg_slideshow_image_"+i).removeAttr("width"),jQuery(".bwg_slideshow_image_"+i).removeAttr("height")}})}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(){jQuery(".bwg_image_browser").each(function(){var e=jQuery(this).attr("data-bwg");bwg_container_loaded(e),jQuery(".image_browser_images_conteiner_"+e).length&&(bwg_params_ib[e]=JSON.parse(jQuery(".image_browser_images_conteiner_"+e).attr("data-params")),setTimeout(function(){bwg_image_browser(e)},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)})}),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=(o=_.data("max-count"),parseInt(n/g)+("0"==_.data("resizable-thumbnails")?0:1));o<w&&(w=o);var b=_.find(".bwg-item").length;b<w&&(w=b);var u,d,h=100/w,m=[];for(i=0;i<w;i++)m.push(0);_.find(".bwg-item").each(function(){var e=m.indexOf(Math.min.apply(Math,m));if(jQuery(this).css({width:h+"%",order:e+1}),0<jQuery(this).find("img").attr("data-width").length&&0<jQuery(this).find("img").attr("data-height").length){d=jQuery(this).find("img").data("width")/jQuery(this).find("img").data("height"),u=jQuery(this).width()/d,title_h=this.querySelector("a .bwg-title2")?this.querySelector("a .bwg-title2").getClientRects()[0].height:0,desc_h=this.querySelector("a .bwg-masonry-thumb-description")?this.querySelector("a .bwg-masonry-thumb-description").getClientRects()[0].height:0;var t=title_h+desc_h;jQuery(this).height(u+t)}m[e]+=jQuery(this)[0].getBoundingClientRect().height});var p=Math.max.apply(Math,m);for(i=0;i<w;i++)m[i]<p&&_.append(jQuery('<div class="bwg-item bwg-empty-item"></div>').css({width:h+"%",order:i+1,height:p-m[i]}));_.outerWidth(w*g),_.height(p)}if(""!=a.html()){r.outerWidth(w*g),"0"!=p?(r.css("opacity","1"),r.height(p)):r.css("opacity","0"),r.empty();var c=a.html();r.append(c),r.find(".bwg_lazyload").each(function(){null!=jQuery(this).attr("data-original")&&""!=jQuery(this).attr("data-original")&&jQuery(this).attr("src",jQuery(this).attr("data-original"))}),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")}function bwg_thumbnail_mosaic_logic(e){var t=e.attr("data-bwg"),i=e.attr("data-block-id"),a=parseInt(e.attr("data-thumb-padding"))/2,r=parseInt(e.attr("data-thumb-border"))+a;if("horizontal"==e.attr("data-mosaic-direction")){var _=parseInt(e.attr("data-height"));if("1"==e.attr("data-resizable"))if(1920<=jQuery(window).width())var s=(1+jQuery(window).width()/1920)*_;else if(jQuery(window).width()<=640)s=jQuery(window).width()/640*_;else s=_;else s=_;(c=jQuery(".bwg_mosaic_thumb_"+t)).each(function(e){var t=jQuery(this).data("width"),i=jQuery(this).data("height");""!=t&&""!=i&&void 0!==t&&void 0!==i||(t=c.get(e).naturalWidth,i=c.get(e).naturalHeight),t=t*s/i,c.eq(e).height(s),c.eq(e).width(t)});var o=jQuery("#bwg_mosaic_thumbnails_div_"+t).width()/100*parseInt(e.attr("data-total-width"));jQuery("#"+i).width(o);var l=s+2*r,n=0,g=[];g[0]=0;var w=[],b=w[0]=0;c.each(function(e){row_cum_width2=b+c.eq(e).width()+2*r,row_cum_width2-o<0?(b=row_cum_width2,g[e]=n,w[n]++):e!==c.length-1?Math.abs(b-o)>Math.abs(row_cum_width2-o)||Math.abs(b-o)<=Math.abs(row_cum_width2-o)&&0==w[n]?e!==c.length-2?(b=row_cum_width2,g[e]=n,w[n]++,w[++n]=0,b=0):(b=row_cum_width2,g[e]=n,w[n]++):(w[++n]=1,g[e]=n,b=row_cum_width2-b):(b=row_cum_width2,g[e]=n,w[n]++)});for(var u=[],d=[],h=0;h<=n;h++)u[h]=1,d[h]=l;for(h=0;h<=n;h++)b=0,c.each(function(e){g[e]==h&&(b+=c.eq(e).width())}),u[h]=z=(o-2*w[h]*r)/b,d[h]=(l-2*r)*u[h]+2*r;(S=[])[0]=0;var m=[],p=[];m[0]=0,p[0]=0;for(h=1;h<=n;h++)m[h]=m[0],p[h]=p[h-1]+d[h-1];c.each(function(e){var t=c.eq(e).width(),i=c.eq(e).height();c.eq(e).width(t*u[g[e]]),c.eq(e).height(i*u[g[e]]),c.eq(e).parent().css({top:p[g[e]],left:m[g[e]]}),m[g[e]]+=t*u[g[e]]+2*r,S[g[e]]=e}),jQuery("#"+i).height(p[n]+d[n]-p[0])}else{var c,y=parseInt(e.attr("data-width"));if("1"==e.attr("data-resizable")){if(1920<=jQuery(window).width())var f=(1+jQuery(window).width()/1920)*y;else if(jQuery(window).width()<=640)f=jQuery(window).width()/640*y;else f=y;if(0<jQuery(".header-content-with_tab").length)f=jQuery(".header-content-with_tab").width()/4-10}else f=y;(c=jQuery(".bwg_mosaic_thumb_"+t)).each(function(e){jQuery(this).removeAttr("style"),jQuery(this).parent().removeAttr("style");var t=jQuery(this).data("width"),i=jQuery(this).data("height");""!=t&&""!=i&&void 0!==t&&void 0!==i||(t=c.get(e).naturalWidth,i=c.get(e).naturalHeight),c.eq(e).height(i*f/t),c.eq(e).width(f)});o=jQuery("#bwg_mosaic_thumbnails_div_"+t).width()/100*parseInt(e.attr("data-total-width"));jQuery("#"+i).width(o);var j=f+2*r<o?f:o-2*r,Q=Math.floor(o/(j+2*r)),v=[];v[0]=0;for(var x=[],k=[],z=0;z<Q;z++)k[z]=0,x[z]=0;c.each(function(e){for(var t=0,i=k[0],a=0;a<Q;a++)i>k[a]&&(i=k[a],t=a);v[e]=t,x[t]++,B=i,T=0+t*(j+2*r),c.eq(e).parent().css({top:B,left:T}),k[t]+=c.eq(e).height()+2*r}),(u=[])[0]=1;var C=0,I=[],E=0,O=0;for(z=0;z<Q;z++)C+=j,I[z]=0,c.each(function(e){v[e]==z&&(I[z]+=c.eq(e).height())}),0!=I[z]&&(E+=j/I[z],O+=j*x[z]*2*r/I[z]);var M=0;0!=E&&(M=(C+O)/E);for(z=0;z<Q;z++)0!=I[z]&&(u[z]=(M-2*x[z]*r)/I[z]);var S,T=[];T[0]=0;for(z=1;z<=Q;z++)T[z]=T[z-1]+j*u[z-1]+2*r;var B=[];for(z=0;z<Q;z++)B[z]=0;(S=[])[0]=0,c.each(function(e){var t=c.eq(e).width(),i=c.eq(e).height();c.eq(e).width(t*u[v[e]]),c.eq(e).height(i*u[v[e]]),c.eq(e).parent().css({top:B[v[e]],left:T[v[e]]}),B[v[e]]+=i*u[v[e]]+2*r,S[v[e]]=e}),jQuery("#"+i).width(T[Q]).height(B[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+"]"))})}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=jQuery(e).parent().parent(),a=i.find(".current_view").val(),r=i.find(".form_id").val(),_=i.find(".cur_gal_id").val(),s=i.find(".album_gallery_id").val(),o=i.find(".type").val();jQuery(e).parent().find(".opt.selected").each(function(){t=t+jQuery(e).text()+","}),""==(t=t.slice(0,-1))&&(t=bwg_objectsL10n.bwg_select_tag),jQuery(e).parent().find(".CaptionCont").attr("title",t),jQuery(e).parent().find(".CaptionCont .placeholder").html(t),jQuery("#bwg_tag_id_"+a).val(jQuery("#bwg_tag_id_"+_).val()),bwg_select_tag(a,r,_,s,o,!1)}function bwg_document_ready(){bwg_add_lightbox(),jQuery(".bwg_container img").removeAttr("width").removeAttr("height"),jQuery('div[id^="bwg_container1_"]').each(function(){var e=jQuery(this);e.data("right-click-protection")&&bwg_disable_right_click(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)}));var a=e.find(".bwg_order");a.length&&a.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(){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 e=window.location.hash.substring(1);if(e&&"-1"!=e.indexOf("bwg")){bwg_hash_array=e.replace("bwg","").split("/");var t=jQuery(".bwg_container");t&&bwg_gallery_box(bwg_hash_array[1],t,!1,bwg_hash_array[0])}bwg_blog_style_ready(),bwg_image_browser_ready(),bwg_resize_search_line()}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=jQuery("#page_number_"+i).val(),h=jQuery("#bwg_search_input_"+i).val(),m={},p=jQuery("#bwg_album_breadcrumb_"+i).val();if(p&&!0!==n){var c=JSON.parse(p);if("back"==r){c.splice(-1,1);var y=c.slice(-1)[0];r=y.id,d=y.page,m["action_"+i]="back"}else"numeric"===n||s?(c.splice(-1,1),c.push({id:r,page:d,search:h})):(c.push({id:r,page:1}),d=1);m["bwg_album_breadcrumb_"+i]=JSON.stringify(c)}if(m.gallery_type=jQuery("#"+t).data("gallery-type"),m.gallery_id=jQuery("#"+t).data("gallery-id"),m.tag=jQuery("#"+t).data("tag"),m.album_id=jQuery("#"+t).data("album-id"),m.theme_id=jQuery("#"+t).data("theme-id"),m.shortcode_id=jQuery("#"+t).data("shortcode-id"),m.bwg=i,m.current_url=encodeURI(jQuery("#bwg_container1_"+i).data("current-url")),s&&(d=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),m["page_number_"+i]=d,m["bwg_load_more_"+i]=jQuery("#bwg_load_more_"+i).val(),m["album_gallery_id_"+i]=r,m["type_"+i]=_,m["title_"+i]=o,m["description_"+i]=g,m["sortImagesByValue_"+i]=l,m["bwg_random_seed_"+i]=jQuery("#bwg_random_seed_"+i).val(),0<jQuery("#bwg_search_input_"+i).length&&(m["bwg_search_"+i]=jQuery("#bwg_search_input_"+i).val()),void 0!==m["bwg_album_breadcrumb_"+i]){var f=JSON.parse(m["bwg_album_breadcrumb_"+i]);jQuery.each(f,function(e,t){m["bwg_search_"+i]="",r==t.id&&(m["bwg_search_"+i]=t.search)})}return m["bwg_tag_id_"+a]=jQuery("#bwg_tag_id_"+a).val(),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:m,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)},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-original")&&""!=jQuery(this).attr("data-original")&&jQuery(this).attr("src",jQuery(this).attr("data-original"))}),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()}),jQuery("#bwg_tags_id_"+a).val(jQuery("#bwg_tag_id_"+a).val()),jQuery(".pagination-links_"+i).length&&jQuery("html, body").animate({scrollTop:jQuery("#"+t).offset().top-150},500),bwg_document_ready(),bwg_carousel_ready(),bwg_carousel_onload(),bwg_slideshow_ready(),bwg_mosaic_ajax(i,u),bwg_all_thumnails_loaded(".bwg-container-"+i)&&bwg_container_loaded(i),jQuery(".blog_style_images_conteiner_"+i+" .bwg_embed_frame_16x9_"+i).each(function(e){jQuery(this).width(jQuery(this).parent().width()),jQuery(this).height(.5625*jQuery(this).width())}),jQuery(".blog_style_images_conteiner_"+i+" .bwg_embed_frame_instapost_"+i).each(function(e){jQuery(this).width(jQuery(this).parent().width()),jQuery(this).height((jQuery(this).width()-16)*jQuery(this).attr("data-height")/jQuery(this).attr("data-width")+96)}),jQuery("#bwg_embed_frame_16x9_"+i).width(jQuery("#bwg_embed_frame_16x9_"+i).parent().width()),jQuery("#bwg_embed_frame_16x9_"+i).height(.5625*jQuery("#bwg_embed_frame_16x9_"+i).width()),jQuery("#bwg_embed_frame_instapost_"+i).width(jQuery("#bwg_embed_frame_16x9_"+i).parent().width()),jQuery(".bwg_embed_frame_instapost_"+i).height((jQuery(".bwg_embed_frame_instapost_"+i).width()-16)*jQuery(".bwg_embed_frame_instapost_"+i).attr("data-height")/jQuery(".bwg_embed_frame_instapost_"+i).attr("data-width")+96),jQuery("#bwg_search_input_"+i).val(m["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();var e=jQuery("#bwg_container2_"+i+" .cur_gal_id").val();jQuery("#bwg_tag_id_"+i).val(jQuery("#bwg_tag_id_"+e).val())}}),!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 j=jQuery("#bwg_search_input_"+i).val(),Q=window.location.href,v="",x=jQuery("#bwg_tag_id_"+i).val();if("#"==Q.substr(-1)&&(Q=Q.slice(0,-1)),""!==j&&void 0!==j?!1!==(v=bwg_add_url_parameter(v=bwg_remove_url_parameter("page_number_"+i,Q),"bwg_search_"+i,j))&&(Q=v):!1!==(v=bwg_remove_url_parameter("bwg_search_"+i,Q))&&(Q=v),void 0!==l&&""!==l&&!1!==(v=bwg_add_url_parameter(Q,"sort_by_"+i,l))&&(Q=v),null!=x&&0<x.length){var k="",z=x.split(",");jQuery.each(z,function(e){var t=",";e===z.length-1&&(t=""),k+=z[e]+t}),""!==k&&!1!==(v=bwg_add_url_parameter(Q,"filter_tag_"+i,k))&&(Q=v)}else!1!==(v=bwg_remove_url_parameter("filter_tag_"+i,v))&&(Q=v);window.location.href=Q}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_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_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_change_watermark_container(t){jQuery(".bwg_slider"+(void 0!==t&&""!==t?"_"+t:"")).children().each(function(){if(2==jQuery(this).css("zIndex")){var e=jQuery(this).find("img");if(e.length)if(e.prop("complete"))bwg_change_each_watermark_container(e.width(),e.height(),t);else e.on("load",function(){bwg_change_each_watermark_container(e.width(),e.height(),t)});else(e=jQuery(this).find("iframe")).length||(e=jQuery(this).find("video")),bwg_change_each_watermark_container(e.width(),e.height(),t)}})}function bwg_change_each_watermark_container(e,t,i){var a=void 0!==i&&""!==i?"_"+i:"",r=void 0!==i&&""!==i?"_slideshow":"";if(jQuery(".bwg"+r+"_watermark_spun"+a).width(e),jQuery(".bwg"+r+"_watermark_spun"+a).height(t),jQuery(".bwg"+r+"_watermark"+a).css({display:""}),void 0===i||""===i){var _=0;(jQuery(".bwg_comment_container").hasClass("bwg_open")||jQuery(".bwg_ecommerce_container").hasClass("bwg_open"))&&(_=gallery_box_data.lightbox_comment_width),e<=jQuery(window).width()-_&&(jQuery(".bwg_watermark_image").css({width:(jQuery(".spider_popup_wrap").width()-_)*gallery_box_data.watermark_font_size/gallery_box_data.image_width}),jQuery(".bwg_watermark_text, .bwg_watermark_text:hover").css({fontSize:(jQuery(".spider_popup_wrap").width()-_)*gallery_box_data.watermark_font_size/gallery_box_data.image_width}))}else jQuery(".bwg"+r+"_title_spun"+a).width(e),jQuery(".bwg"+r+"_title_spun"+a).height(t),jQuery(".bwg"+r+"_description_spun"+a).width(e),jQuery(".bwg"+r+"_description_spun"+a).height(t);jQuery.trim(jQuery(".bwg"+r+"_title_text"+a).text())&&jQuery(".bwg_slideshow_title_text"+a).css({display:""}),jQuery.trim(jQuery(".bwg"+r+"_description_text"+a).text())&&jQuery(".bwg"+r+"_description_text"+a).css({display:""})}function bwg_set_filmstrip_pos(e,t,i){var a,r=void 0!==t&&""!==t?"_"+t:"",_=void 0!==t&&""!==t?"_slideshow":"";a=void 0!==t&&""!==t?bwg_params[t].left_or_top:gallery_box_data.left_or_top;var s=parseInt(jQuery(".bwg_filmstrip_thumbnails").attr("data-all-images-top-bottom-space")),o=parseInt(jQuery(".bwg_filmstrip_thumbnails").attr("data-all-images-right-left-space"));if(void 0===t||""===t){if("outerWidth"==gallery_box_data.outerWidth_or_outerHeight)var l=-bwg_current_filmstrip_pos-jQuery(".bwg_filmstrip_thumbnail").outerWidth(!0)/2;else if("outerHeight"==gallery_box_data.outerWidth_or_outerHeight)l=-bwg_current_filmstrip_pos-jQuery(".bwg_filmstrip_thumbnail").outerHeight(!0)/2;if("width"==gallery_box_data.width_or_height)var n=Math.min(0,Math.max(e-jQuery(".bwg_filmstrip_thumbnails").width(),l+e/2));else if("height"==gallery_box_data.width_or_height)n=Math.min(0,Math.max(e-jQuery(".bwg_filmstrip_thumbnails").height(),l+e/2))}else if("width"==bwg_params[t].width_or_height)l=-bwg_params[t].bwg_current_filmstrip_pos-(jQuery(".bwg_slideshow_filmstrip_thumbnail"+r).width()+bwg_params[t].filmstrip_thumb_margin_hor)/2,n=Math.min(0,Math.max(e-jQuery(".bwg_slideshow_filmstrip_thumbnails"+r).width(),l+e/2));else l=-bwg_params[t].bwg_current_filmstrip_pos-(jQuery(".bwg_slideshow_filmstrip_thumbnail"+r).height()+bwg_params[t].filmstrip_thumb_margin_hor)/2,n=Math.min(0,Math.max(e-jQuery(".bwg_slideshow_filmstrip_thumbnails"+r).height(),l+e/2));0<n+o&&(o=0),0<n+s&&(s=0),"left"==a?jQuery(".bwg"+_+"_filmstrip_thumbnails"+r).animate({left:n+o},{duration:500,complete:function(){bwg_filmstrip_arrows(t)}}):jQuery(".bwg"+_+"_filmstrip_thumbnails"+r).animate({top:n+s},{duration:500,complete:function(){bwg_filmstrip_arrows(t)}})}function bwg_filmstrip_arrows(e){var t=void 0!==e&&""!==e?"_"+e:"",i=void 0!==e&&""!==e?"_slideshow":"";if("width"==(void 0!==e&&""!==e?bwg_params[e].width_or_heigh:gallery_box_data.width_or_height))var a=jQuery(".bwg"+i+"_filmstrip_thumbnails"+t).width(),r=jQuery(".bwg"+i+"_filmstrip"+t).width();else a=jQuery(".bwg"+i+"_filmstrip_thumbnails"+t).height(),r=jQuery(".bwg"+i+"_filmstrip"+t).height();a<r?(jQuery(".bwg"+i+"_filmstrip_left"+t).hide(),jQuery(".bwg"+i+"_filmstrip_right"+t).hide()):(jQuery(".bwg"+i+"_filmstrip_left"+t).show(),jQuery(".bwg"+i+"_filmstrip_right"+t).show())}function bwg_move_filmstrip(e){var t,i,a,r,_,s,o=void 0!==e&&""!==e?"_"+e:"",l=void 0!==e&&""!==e?"_slideshow":"",n=void 0!==e&&""!==e?bwg_params[e].outerWidth_or_outerHeight:gallery_box_data.outerWidth_or_outerHeight,g=void 0!==e&&""!==e?bwg_params[e].left_or_top:gallery_box_data.left_or_top;i="outerWidth"==n?(t=jQuery(".bwg"+l+"_filmstrip"+o).outerWidth(!0),jQuery(".bwg"+l+"_filmstrip_thumbnails"+o).outerWidth(!0)):(t=jQuery(".bwg"+l+"_filmstrip"+o).outerHeight(!0),jQuery(".bwg"+l+"_filmstrip_thumbnails"+o).outerHeight(!0)),s="left"==g?(a=jQuery(".bwg"+l+"_thumb_active"+o).position().left,r="outerWidth"==n?jQuery(".bwg"+l+"_thumb_active"+o).position().left+jQuery(".bwg"+l+"_thumb_active"+o).outerWidth(!0):jQuery(".bwg"+l+"_thumb_active"+o).position().left+jQuery(".bwg"+l+"_thumb_active"+o).outerHeight(!0),_=jQuery(".bwg"+l+"_filmstrip_thumbnails"+o).position().left,Math.abs(jQuery(".bwg"+l+"_filmstrip_thumbnails"+o).position().left)+t):(a=jQuery(".bwg"+l+"_thumb_active"+o).position().top,r="outerWidth"==n?jQuery(".bwg"+l+"_thumb_active"+o).position().top+jQuery(".bwg"+l+"_thumb_active"+o).outerWidth(!0):jQuery(".bwg"+l+"_thumb_active"+o).position().top+jQuery(".bwg"+l+"_thumb_active"+o).outerHeight(!0),_=jQuery(".bwg"+l+"_filmstrip_thumbnails"+o).position().top,Math.abs(jQuery(".bwg"+l+"_filmstrip_thumbnails"+o).position().top)+t),i<t||(a<Math.abs(_)?"left"==g?jQuery(".bwg"+l+"_filmstrip_thumbnails"+o).animate({left:-a},{duration:500,complete:function(){bwg_filmstrip_arrows(e)}}):jQuery(".bwg"+l+"_filmstrip_thumbnails"+o).animate({top:-a},{duration:500,complete:function(){bwg_filmstrip_arrows(e)}}):s<r&&("left"==g?jQuery(".bwg"+l+"_filmstrip_thumbnails"+o).animate({left:-(r-t)},{duration:500,complete:function(){bwg_filmstrip_arrows(e)}}):jQuery(".bwg"+l+"_filmstrip_thumbnails"+o).animate({top:-(r-t)},{duration:500,complete:function(){bwg_filmstrip_arrows(e)}})))}function bwg_move_dots(e){var t=jQuery(".bwg_slideshow_dots_active_"+e).position().left,i=jQuery(".bwg_slideshow_dots_active_"+e).position().left+jQuery(".bwg_slideshow_dots_active_"+e).outerWidth(!0),a=jQuery(".bwg_slideshow_dots_container_"+e).outerWidth(!0),r=jQuery(".bwg_slideshow_dots_thumbnails_"+e).outerWidth(!1),_=jQuery(".bwg_slideshow_dots_thumbnails_"+e).position().left,s=Math.abs(jQuery(".bwg_slideshow_dots_thumbnails_"+e).position().left)+a;r<a||(t<Math.abs(_)?jQuery(".bwg_slideshow_dots_thumbnails_"+e).animate({left:-t},{duration:500,complete:function(){}}):s<i&&jQuery(".bwg_slideshow_dots_thumbnails_"+e).animate({left:-(i-a)},{duration:500,complete:function(){}}))}function bwg_testBrowser_cssTransitions(e){return bwg_testDom("Transition",e)}function bwg_testBrowser_cssTransforms3d(e){return bwg_testDom("Perspective",e)}function bwg_testDom(e,t){for(var i=["","Webkit","Moz","ms","O","Khtml"],a=i.length;a--;)if(void 0!==document.body.style[i[a]+e])return!0;return!1}function bwg_fallback(e,t,i,a){bwg_fade(e,t,i,a)}function bwg_fallback3d(e,t,i,a){bwg_sliceV(e,t,i,a)}function bwg_none(e,t,i,a){var r=void 0!==a&&""!==a?"_"+a:"";if(jQuery(e).css({opacity:0,"z-index":1}),jQuery(t).css({opacity:1,"z-index":2}),void 0!==a&&""!==a){var _=bwg_params[a].bwg_current_key;bwg_change_watermark_container(a),jQuery(".bwg_slideshow_filmstrip_thumbnail"+r).removeClass("bwg_slideshow_thumb_active"+r).addClass("bwg_slideshow_thumb_deactive"+r),jQuery("#bwg_filmstrip_thumbnail_"+_+r).removeClass("bwg_slideshow_thumb_deactive"+r).addClass("bwg_slideshow_thumb_active"+r),jQuery(".bwg_slideshow_dots"+r).removeClass("bwg_slideshow_dots_active"+r).addClass("bwg_slideshow_dots_deactive"+r),jQuery("#bwg_dots_"+_+r).removeClass("bwg_slideshow_dots_deactive"+r).addClass("bwg_slideshow_dots_active"+r)}else jQuery(".bwg_image_info").show(),gallery_box_data.bwg_trans_in_progress=!1,jQuery(e).html(""),bwg_change_watermark_container()}function bwg_iterator(e){var t=1;return void 0!==e&&""!==e&&void 0!==bwg_params[e]&&1==bwg_params[e].enable_slideshow_shuffle&&(t=Math.floor((bwg_params[e].data.length-1)*Math.random()+1)),t}function bwg_change_image_slideshow(e,t,i,a,r){i=bwg_params[r].data;if(jQuery("#bwg_slideshow_image_container_"+r).find("iframe").each(function(){jQuery(this)[0].contentWindow.postMessage('{"event":"command","func":"pauseVideo","args":""}',"*"),jQuery(this)[0].contentWindow.postMessage('{ "method": "pause" }',"*"),jQuery(this)[0].contentWindow.postMessage("pause","*")}),jQuery("#image_id_"+r+"_"+i[e].id).find(".bwg_fb_video").each(function(){jQuery(this).attr("src",jQuery(this).attr("src"))}),i[t]){if(jQuery(".bwg_ctrl_btn_"+r).hasClass("bwg-icon-pause")&&bwg_play(bwg_params[r].data,r),a||(jQuery("#bwg_current_image_key_"+r).val(t),"-1"==e?e=jQuery(".bwg_slideshow_thumb_active_"+r).children("img").attr("image_key"):"-2"==e&&(e=jQuery(".bwg_slideshow_dots_active_"+r).attr("image_key"))),bwg_params[r].bwg_trans_in_progress)return void bwg_params[r].event_stack.push(e+"-"+t);var _="right";if(t<e)_="left";else if(e==t)return;jQuery(".bwg_slideshow_watermark_"+r).css({display:"none"}),jQuery(".bwg_slideshow_title_text_"+r).css({display:"none"}),jQuery(".bwg_slideshow_description_text_"+r).css({display:"none"}),"width"==bwg_params[r].width_or_height?bwg_params[r].bwg_current_filmstrip_pos=t*(jQuery(".bwg_slideshow_filmstrip_thumbnail_"+r).width()+2+2*bwg_params[r].lightbox_filmstrip_thumb_border_width):bwg_params[r].bwg_current_filmstrip_pos=t*(jQuery(".bwg_slideshow_filmstrip_thumbnail_"+r).height()+2+2*bwg_params[r].lightbox_filmstrip_thumb_border_width),e=t,bwg_params[r].bwg_current_key=e,jQuery("#bwg_slideshow_image_"+r).attr("image_id",i[t].id),jQuery(".bwg_slideshow_title_text_"+r).html(jQuery('<span style="display: block;" />').html(i[t].alt).text()),jQuery(".bwg_slideshow_description_text_"+r).html(jQuery('<span style="display: block;" />').html(i[t].description).text());var s=2==jQuery(".bwg_slideshow_image_spun_"+r).css("zIndex")?".bwg_slideshow_image_spun_"+r:".bwg_slideshow_image_second_spun_"+r,o=s==".bwg_slideshow_image_second_spun_"+r?".bwg_slideshow_image_spun_"+r:".bwg_slideshow_image_second_spun_"+r,l=-1<i[t].filetype.indexOf("EMBED_"),n=-1<i[t].filetype.indexOf("INSTAGRAM_POST"),g=-1<i[t].filetype.indexOf("INSTAGRAM_VIDEO"),w=jQuery(s).height(),b=jQuery(s).width(),u='<span class="bwg_slideshow_image_spun1_'+r+'" style="display: '+(l?"block":"table")+' ;width: inherit; height: inherit;"><span class="bwg_slideshow_image_spun2_'+r+'" style="display: '+(l?"block":"table-cell")+'; vertical-align: middle; text-align: center; ">';if(l){if(u+='<span style="height: '+w+"px; width: "+b+'px;" class="bwg_popup_embed bwg_popup_watermark">',g&&(u+='<span class="bwg_inst_play_btn_cont" onclick="bwg_play_instagram_video(this)"><span class="bwg_inst_play"></span></span>'),n){var d=0,h=0;w<b+88?d=(h=w)-88:h=(d=b)+88,u+=spider_display_embed(i[t].filetype,decodeURIComponent(i[t].image_url),i[t].filename,{class:"bwg_embed_frame","data-width":i[t].image_width,"data-height":i[t].image_height,frameborder:"0",allowfullscreen:"allowfullscreen",style:"width:"+d+"px; height:"+h+"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",style:"width:inherit; height:inherit; vertical-align:middle; display:table-cell;"});u+="</span>"}else{if("do_nothing"!=bwg_params[r].thumb_click_action){var m="";"open_lightbox"==bwg_params[r].thumb_click_action?m+=' class="bwg_lightbox" data-image-id="'+i[t].id+'"':"redirect_to_url"==bwg_params[r].thumb_click_action&&i[t].redirect_url&&(m+='href="'+i[t].redirect_url+'"'+(bwg_params[r].thumb_link_target&&1==bwg_params[r].thumb_link_target?' target="_blank"':"")),u+="<a "+m+">"}u+='<img style="max-height: '+w+"px !important; max-width: "+b+'px !important; display:inline-block;" ',u+=' class="bwg_slide bwg_slideshow_image_'+r+'" ',u+=' id="bwg_slideshow_image_'+r+'" ',u+=' src="'+bwg_params[r].upload_url+jQuery("<span style='display: block;' />").html(decodeURIComponent(i[t].image_url)).text()+'" alt="'+i[t].alt+'" image_id="'+i[t].id+'" /></a>'}u+="</span></span>",jQuery(o).html(u),bwg_params[r].preload_images&&bwg_preload_images(t,r),window["bwg_"+bwg_params[r].slideshow_effect](s,o,_,r),0<bwg_params[r].enable_slideshow_filmstrip?bwg_move_filmstrip(r):bwg_move_dots(r),i[t].is_embed_video?jQuery("#bwg_slideshow_play_pause_"+r).css({display:"none"}):jQuery("#bwg_slideshow_play_pause_"+r).css({display:""})}bwg_add_lightbox()}function bwg_preload_images_slideshow(e,t){var i=bwg_params[t].data;count=bwg_params[t].preload_images_count/2;var a=i.length;if(a<bwg_params[t].preload_images_count&&(count=0),0!=count)for(var r=e-count;r<e+count;r++){var _=parseInt((r+a)%a),s=-1<i[_].filetype.indexOf("EMBED_");void 0!==i[_]&&(s||jQuery("<img/>").attr("src",bwg_params[t].upload_url+jQuery('<span style="display: block;" />').html(decodeURIComponent(i[_].image_url)).text()))}else for(r=0;r<i.length;r++){s=-1<i[r].filetype.indexOf("EMBED_");void 0!==i[r]&&(s||jQuery("<img/>").attr("src",bwg_params[t].upload_url+jQuery('<span style="display: block;" />').html(decodeURIComponent(i[r].image_url)).text()))}}function bwg_preload_images(e,t){void 0!==t&&""!==t?bwg_preload_images_slideshow(e,t):bwg_preload_images_lightbox(e)}function bwg_popup_resize_slidshow(e){var t=jQuery("#bwg_container1_"+e).parent();t.hasClass("elementor-tab-content")&&t.width(t.closest(".elementor-widget-wrap").width());var i=t.width(),a=bwg_params[e].data;if(i>=bwg_params[e].image_width){jQuery(".bwg_slideshow_image_wrap_"+e).css({width:bwg_params[e].image_width}),jQuery(".bwg_slideshow_image_wrap_"+e).css({height:bwg_params[e].image_height}),jQuery(".bwg_slideshow_image_container_"+e).css({width:"horizontal"==bwg_params[e].filmstrip_direction?bwg_params[e].image_width:bwg_params[e].image_width-bwg_params[e].slideshow_filmstrip_width}),jQuery(".bwg_slideshow_image_container_"+e).css({height:"horizontal"==bwg_params[e].filmstrip_direction?bwg_params[e].image_height-bwg_params[e].slideshow_filmstrip_height:bwg_params[e].image_height}),jQuery(".bwg_slideshow_image_"+e).css({cssText:(bwg_params[e].filmstrip_direction,bwg_params[e].image_width)}),jQuery(".bwg_slideshow_embed_"+e).css({cssText:(bwg_params[e].filmstrip_direction,bwg_params[e].image_width)}),bwg_resize_instagram_post(e),bwg_change_watermark_container(e);var r="horizontal"==bwg_params[e].filmstrip_direction?"width: "+bwg_params[e].image_width:"height: "+bwg_params[e].image_height,_="horizontal"==bwg_params[e].filmstrip_direction?"width: "+(bwg_params[e].image_width-40):"height: "+(bwg_params[e].image_height-40);jQuery(".bwg_slideshow_filmstrip_container_"+e).css({cssText:r}),jQuery(".bwg_slideshow_filmstrip_"+e).css({cssText:_}),jQuery(".bwg_slideshow_dots_container_"+e).css({width:bwg_params[e].image_width}),jQuery("#bwg_slideshow_play_pause-ico_"+e).css({fontSize:bwg_params[e].slideshow_play_pause_btn_size}),"image"==bwg_params[e].watermark_type&&jQuery(".bwg_slideshow_watermark_image_"+e).css({maxWidth:bwg_params[e].watermark_width,maxHeight:bwg_params[e].watermark_height}),"text"==bwg_params[e].watermark_type&&jQuery(".bwg_slideshow_watermark_text_"+e+", .bwg_slideshow_watermark_text_"+e+" : hover").css({fontSize:bwg_params[e].watermark_font_size}),jQuery(".bwg_slideshow_title_text_"+e).css({fontSize:2*bwg_params[e].slideshow_title_font_size}),jQuery(".bwg_slideshow_description_text_"+e).css({fontSize:2*bwg_params[e].slideshow_description_font_size})}else jQuery(".bwg_slideshow_image_wrap_"+e).css({width:i}),jQuery(".bwg_slideshow_image_wrap_"+e).css({height:i*bwg_params[e].image_height/bwg_params[e].image_width}),jQuery(".bwg_slideshow_image_container_"+e).css({width:i-("horizontal"==bwg_params[e].filmstrip_direction?0:bwg_params[e].slideshow_filmstrip_width)}),jQuery(".bwg_slideshow_image_container_"+e).css({height:i*bwg_params[e].image_height/bwg_params[e].image_width-("horizontal"==bwg_params[e].filmstrip_direction?bwg_params[e].slideshow_filmstrip_height:0)}),jQuery(".bwg_slideshow_image_"+e).css({cssText:"max-width: "+(i-("horizontal"==bwg_params[e].filmstrip_direction?0:bwg_params[e].slideshow_filmstrip_width))+"px !important; max-height: "+(i*(bwg_params[e].image_height/bwg_params[e].image_width)-("horizontal"==bwg_params[e].filmstrip_direction?bwg_params[e].slideshow_filmstrip_height:0)-1)+"px !important;"}),jQuery(".bwg_slideshow_embed_"+e).css({cssText:"width: "+(i-("horizontal"==bwg_params[e].filmstrip_direction?0:bwg_params[e].slideshow_filmstrip_width))+"px !important; height: "+(i*(bwg_params[e].image_height/bwg_params[e].image_width)-("horizontal"==bwg_params[e].filmstrip_direction?bwg_params[e].slideshow_filmstrip_height:0)-1)+"px !important;"}),bwg_resize_instagram_post(e),bwg_change_watermark_container(e),"horizontal"==bwg_params[e].filmstrip_direction?(jQuery(".bwg_slideshow_filmstrip_container_"+e).css({width:i}),jQuery(".bwg_slideshow_filmstrip_"+e).css({width:i-40})):(jQuery(".bwg_slideshow_filmstrip_container_"+e).css({height:i*bwg_params[e].image_height/bwg_params[e].image_width}),jQuery(".bwg_slideshow_filmstrip_"+e).css({height:i*bwg_params[e].image_height/bwg_params[e].image_width-40})),jQuery(".bwg_slideshow_dots_container_"+e).css({width:i}),jQuery("#bwg_slideshow_play_pause-ico_"+e).css({fontSize:i*bwg_params[e].slideshow_play_pause_btn_size/bwg_params[e].image_width}),jQuery(".bwg_slideshow_watermark_image_"+e).css({maxWidth:i*bwg_params[e].watermark_width/bwg_params[e].image_width,maxHeight:i*bwg_params[e].watermark_height/bwg_params[e].image_width}),jQuery(".bwg_slideshow_watermark_text_"+e+", .bwg_slideshow_watermark_text_"+e+":hover").css({fontSize:i*bwg_params[e].watermark_font_size/bwg_params[e].image_width}),jQuery(".bwg_slideshow_title_text_"+e).css({fontSize:2*i*bwg_params[e].slideshow_title_font_size/bwg_params[e].image_width}),jQuery(".bwg_slideshow_description_text_"+e).css({fontSize:2*i*bwg_params[e].slideshow_description_font_size/bwg_params[e].image_width}),jQuery(".bwg_slideshow_image_"+e).css({display:"inline-block"});a[parseInt(jQuery("#bwg_current_image_key_"+e).val())].is_embed_video?jQuery("#bwg_slideshow_play_pause_"+e).css({display:"none"}):jQuery("#bwg_slideshow_play_pause_"+e).css({display:""})}function bwg_popup_resize(e){void 0!==e&&""!==e?bwg_popup_resize_slidshow(e):bwg_popup_resize_lightbox()}function bwg_change_image(e,t,i,a,r){void 0!==r&&""!==r?bwg_change_image_slideshow(e,t,i,a,r):bwg_change_image_lightbox(e,t,i=gallery_box_data.data,a)}function bwg_resize_instagram_post(e){if(void 0!==e&&""!==e){if(jQuery(".inner_instagram_iframe_bwg_embed_frame_"+e).length){var t=jQuery(".bwg_slideshow_embed_"+e).width(),i=jQuery(".bwg_slideshow_embed_").height();jQuery(".inner_instagram_iframe_bwg_embed_frame_"+e).each(function(){var e=jQuery(this).parent();i/(parseInt(e.attr("data-height"))+96)<t/parseInt(e.attr("data-width"))?(e.height(i),e.width((e.height()-96)*e.attr("data-width")/e.attr("data-height")+16)):(e.width(t),e.height((e.width()-16)*e.attr("data-height")/e.attr("data-width")+96))}),bwg_change_watermark_container(e)}}else if(jQuery(".inner_instagram_iframe_bwg_embed_frame").length){t=jQuery(".bwg_image_container").width(),i=jQuery(".bwg_image_container").height();jQuery(".inner_instagram_iframe_bwg_embed_frame").each(function(){var e=jQuery(this).parent();i/(parseInt(e.attr("data-height"))+176)<t/parseInt(e.attr("data-width"))?(e.height(i),e.width((e.height()-176)*e.attr("data-width")/e.attr("data-height")+16)):(e.width(t),e.height((e.width()-16)*e.attr("data-height")/e.attr("data-width")+96)),e.css({top:.5*(i-e.height())})}),bwg_change_watermark_container()}}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")}jQuery(function(){function i(e){bwg_slideshow_blur(e),0<jQuery(".bwg_play_pause").length&&(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"))}function a(){bwg_slideshow_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),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"))}var e=!1;jQuery(".bwg_container").each(function(){if(0<jQuery(this).find(".wd_error").length&&(e=!0),!e){var t=jQuery(this);setTimeout(function(){if(t[0].offsetHeight)var e=1;else e=0;setInterval(function(){t[0].offsetHeight?1==e&&(e=0,a()):0==e&&i(!(e=1))},200)},200)}}),e||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)}),e||(jQuery(".bwg-thumbnails, .bwg-masonry-thumbnails, .bwg-album-thumbnails").each(function(){bwg_all_thumnails_loaded(this)}),bwg_slideshow_resize(),bwg_image_browser_resize(),bwg_carousel_resize(),bwg_blog_style_resize(),jQuery(".bwg-mosaic-thumbnails").each(function(){bwg_thumbnail_mosaic(this)})),bwg_resize_search_line()},0)}),jQuery(window).on("load",function(){var e=!1;jQuery(".bwg_container").each(function(){0<jQuery(this).find(".wd_error").length&&(e=!0)}),e||(bwg_blog_style_onload(),jQuery(".bwg-mosaic-thumbnails").each(function(){bwg_thumbnail_mosaic(this)}))}),jQuery(".bwg-masonry-thumb-span img, .bwg-mosaic-thumb-span img").on("error",function(){jQuery(this).height(100),jQuery(this).width(100)});
1
+ var bwg_current_filmstrip_pos,total_thumbnail_count,key,startPoint,endPoint,bwg_image_info_pos,filmstrip_width,preloadCount,filmstrip_thumbnail_width,filmstrip_thumbnail_height,addthis_share,lightbox_comment_pos,bwg_transition_duration,bwg_playInterval,isPopUpOpened=!1,bwg_overflow_initial_value=!1,bwg_overflow_x_initial_value=!1,bwg_overflow_y_initial_value=!1;function gallery_box_ready(){filmstrip_thumbnail_width=jQuery(".bwg_filmstrip_thumbnail").width(),filmstrip_thumbnail_height=jQuery(".bwg_filmstrip_thumbnail").height(),1==gallery_box_data.open_with_fullscreen?(filmstrip_width=jQuery(window).width(),filmstrip_height=jQuery(window).height()):(filmstrip_width=jQuery(".bwg_filmstrip_container").width(),filmstrip_height=jQuery(".bwg_filmstrip_container").height()),preloadCount="horizontal"==gallery_box_data.filmstrip_direction?parseInt(filmstrip_width/filmstrip_thumbnail_width)+gallery_box_data.preload_images_count:parseInt(filmstrip_height/filmstrip_thumbnail_height)+gallery_box_data.preload_images_count,total_thumbnail_count=jQuery(".bwg_filmstrip_thumbnail").length,key=parseInt(jQuery("#bwg_current_image_key").val()),startPoint=0,endPoint=key+preloadCount,jQuery(function(){bwg_load_visible_images(key,preloadCount,total_thumbnail_count),jQuery(".pge_tabs li a").on("click",function(){return jQuery(".pge_tabs_container > div").hide(),jQuery(".pge_tabs li").removeClass("pge_active"),jQuery(jQuery(this).attr("href")).show(),jQuery(this).closest("li").addClass("pge_active"),jQuery("[name=type]").val(jQuery(this).attr("href").substr(1)),!1});var e=jQuery("#bwg_rated").attr("data-params");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())&&jQuery(".spider_popup_close").attr("class","bwg_ctrl_btn 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_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","bwg_ctrl_btn 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,i,a,r,_,s,o){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:'+i+"px; height:"+a+"px; margin-top:-"+a/2+"px; margin-left: -"+i/2+'px; ">'+e+"</div>").hide().appendTo("body");gallery_box_ready(),spider_showpopup(_,s,t,r,o)},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());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())}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){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&&location.replace("#"),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){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,advanced:{updateOnContentResize:!0}}),jQuery(".bwg_comments_close_btn").click(bwg_comment),bwg_captcha_refresh("bwg_captcha")}}),!1}function spider_rate_ajax_save(i){var e={};return e.image_id=jQuery("#"+i+" input[name='image_id']").val(),e.rate=jQuery("#"+i+" input[name='score']").val(),e.ajax_task=jQuery("#rate_ajax_task").val(),jQuery.ajax({type:"POST",url:jQuery("#"+i).attr("action"),data:e,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,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),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)),spider_set_input_value("rate_ajax_task","save_hit_count"),spider_rate_ajax_save("bwg_rate_form"),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=0,m=0;b<u+88?h=(m=b)-88:m=(h=u)+88,d+=spider_display_embed(r[a].filetype,r[a].image_url,r[a].filename,{class:"bwg_embed_frame","data-width":r[a].image_width,"data-height":r[a].image_height,frameborder:"0",allowfullscreen:"allowfullscreen",style:"width:"+h+"px; height:"+m+"px; vertical-align:middle; display:inline-block; position:relative;"})}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"),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 p(){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/share?url="+t),jQuery("#bwg_pinterest_a").attr("href","http://pinterest.com/pin/create/button/?s=100&url="+t+"&media="+i+"&description="+r[a].alt+"%0A"+r[a].description),jQuery("#bwg_tumblr_a").attr("href","https://www.tumblr.com/share/photo?source="+i+"&caption="+r[a].alt+"&clickthru="+t),jQuery(".bwg_comment_container").hasClass("bwg_open")&&(jQuery(".bwg_comments .mCSB_container").css("top","0"),jQuery("#bwg_added_comments").show(),spider_set_input_value("ajax_task","display"),spider_set_input_value("image_id",jQuery("#bwg_popup_image").attr("image_id")),spider_ajax_save("bwg_comment_form")),jQuery(".bwg_ecommerce_container").hasClass("bwg_open")&&(0==r[a].pricelist?(bwg_popup_sidebar_close(jQuery(".bwg_ecommerce_container")),bwg_animate_image_box_for_hide_sidebar(),jQuery(".bwg_ecommerce_container").attr("class","bwg_ecommerce_container bwg_close"),jQuery(".bwg_ecommerce").attr("title",bwg_objectsL10n.bwg_show_ecommerce),jQuery(".spider_popup_close_fullscreen").show()):get_ajax_pricelist()),void 0!==jQuery().mCustomScrollbar&&jQuery.isFunction(jQuery().mCustomScrollbar)&&jQuery(".bwg_comments").mCustomScrollbar({advanced:{updateOnContentResize:!0}}),jQuery(".bwg_comments .mCSB_scrollTools").hide(),gallery_box_data.enable_image_filmstrip&&bwg_move_filmstrip(),bwg_resize_instagram_post()}if(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)p();else jQuery(o).find("img").one("load",function(){p()}).each(function(){this.complete&&jQuery(this).load()});"undefined"!=typeof instgrm&&void 0!==instgrm.Embeds&&instgrm.Embeds.process()}}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,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","bwg_ctrl_btn 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","bwg_ctrl_btn 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(),window.innerHeight>gallery_box_data.image_height-2*gallery_box_data.lightbox_close_btn_top&&jQuery(window).width()>=gallery_box_data.image_width-2*gallery_box_data.lightbox_close_btn_right&&1!=gallery_box_data.open_with_fullscreen?jQuery(".spider_popup_close_fullscreen").attr("class","spider_popup_close"):jQuery("#spider_popup_wrap").width()<jQuery(window).width()&&jQuery("#spider_popup_wrap").height()<jQuery(window).height()&&jQuery(".spider_popup_close").attr("class","bwg_ctrl_btn spider_popup_close_fullscreen");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.";0!=i&&""!=i&&(r=parseFloat(i).toFixed(1)+"\n Votes: "+t),void 0!==jQuery().raty&&jQuery.isFunction(jQuery().raty)&&jQuery("#bwg_star").raty({score:function(){return jQuery(this).attr("data-score")},starType:"i",number:lightbox_rate_stars_count,size:lightbox_rate_size,readOnly:function(){return!!e},noRatedMsg:"Not rated yet.",click:function(t,e){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")).then(function(){gallery_box_data.data[a].rate=t,++gallery_box_data.data[a].rate_count;var e=parseFloat(jQuery("#bwg_star").attr("data-score"));gallery_box_data.data[a].avg_rating=e?((e+t)/2).toFixed(1):t.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)})},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})}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":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:100% !important; max-height:100% !important; 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+'" frameborder="0" scrolling="no" allowtransparency="false" allowfullscreen 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 n="<span ";for(attr in a)/src/i.test(attr)||""!=attr&&""!=a[attr]&&(n+=" "+attr+'="'+a[attr]+'"');n+=" >",""!=i&&(n+='<img src="'+t+'" style=" max-width:100% !important; max-height:100% !important; width:auto; height:100%;">'),r+=n+="</span>";break;case"EMBED_OEMBED_FACEBOOK_VIDEO":var g="<div ";for(attr in a)/src/i.test(attr)||""!=attr&&""!=a[attr]&&(g+=" "+attr+'="'+a[attr]+'"');g+=" >",""!=i&&(g+='<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+=g+="</div>";break;case"EMBED_OEMBED_DAILYMOTION_VIDEO":var w="<iframe ";for(attr in""!=i&&(w+=' src="//www.dailymotion.com/embed/video/'+i+'?api=postMessage"'),a)/src/i.test(attr)||""!=attr&&""!=a[attr]&&(w+=" "+attr+'="'+a[attr]+'"');r+=w+=" ></iframe>";break;case"EMBED_OEMBED_IMGUR":var b="<div ";for(attr in a)/src/i.test(attr)||""!=attr&&""!=a[attr]&&(l+=" "+attr+'="'+a[attr]+'"');b+=" >",""!=i&&(b+='<img src="'+i+'" style="max-width:100% !important; max-height:100% !important; width:auto; height:auto !important;">'),r+=b+="</div>";break;case"EMBED_OEMBED_GOOGLE_PHOTO_IMAGE":var u="<div ";for(attr in a)/src/i.test(attr)||""!=attr&&""!=a[attr]&&(u+=" "+attr+'="'+a[attr]+'"');u+=" >",""!=i&&(u+='<img src="'+t+'" style=" max-width:100% !important; max-height:100% !important; width:auto; height:auto;">'),r+=u+="</div>";break;default:var d={content:""};jQuery(document).trigger("bwg_display_embed",[d,e,t,i,a]),r=d.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(ajax_url,_,function(e){if(0==e)return alert("Error: cannot get response from the server."),jQuery("#loading_div").hide(),s&&jQuery("#bulk_embed").show(),!1;var t=e.indexOf("WD_delimiter_start"),i=e.indexOf("WD_delimiter_end");if(-1==t||-1==i)return jQuery("#loading_div").hide(),s&&jQuery("#bulk_embed").show(),!1;if(e=e.substring(t+18,i),response_JSON=JSON.parse(e),response_JSON){if("error"==response_JSON[0])return alert("Error: "+JSON.parse(e)[1]),jQuery("#loading_div").hide(),s&&jQuery("#bulk_embed").show(),!1;for(var a=response_JSON.length,r=1;r<=a;r++)if(0!=response_JSON[a-r]){var _=response_JSON[a-r];o.push(_)}return bwg_add_image(o),s||(bwg_gallery_update_flag(),jQuery("#tr_instagram_gallery_add_button").hide()),jQuery("#loading_div").hide(),s&&jQuery(".opacity_bulk_embed").hide(),"ok"}return alert("There is some error. Cannot add Instagram gallery."),jQuery("#loading_div").hide(),s&&jQuery("#bulk_embed").show(),!1})}var bwg=0,isMobile=/android|webos|iphone|ipad|ipod|blackberry|iemobile|opera mini/i.test(navigator.userAgent.toLowerCase()),bwg_click=isMobile?"touchend":"click",bwg_params=[],bwg_params_ib=[],bwg_params_carousel=[];function bwg_main_ready(){1==bwg_objectsL10n.lazy_load&&jQuery(function(){jQuery("img.bwg_lazyload").lazy({onFinishedAll:function(){jQuery(".lazy_loader").removeClass("lazy_loader")}})}),jQuery(".bwg_container").each(function(){0<jQuery(this).find(".wd_error").length&&bwg_container_loaded(jQuery(this).data("bwg"))}),bwg_document_ready(),jQuery(".bwg-thumbnails, .bwg-masonry-thumbnails, .bwg-album-thumbnails").each(function(){bwg_all_thumnails_loaded(this)}),jQuery(".bwg-mosaic-thumbnails").each(function(){bwg_thumbnail_mosaic(this)}),bwg_slideshow_ready(),bwg_carousel_ready(),bwg_carousel_onload(),bwg_image_browser_ready()}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_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(){jQuery(".bwg_blog_style").each(function(){var e=jQuery(this).attr("data-bwg");bwg_container_loaded(e);var t=!1;jQuery(this).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"),!t)return t=!0,setTimeout(function(){t=!1},100),bwg_gallery_box(e,jQuery(this).closest(".bwg_container")),!1}),jQuery(".bwg_lightbox_"+e+" .bwg_ecommerce").on("click",function(e){if(e.stopPropagation(),!t)return t=!0,setTimeout(function(){t=!1},100),bwg_gallery_box(jQuery(this).attr("data-image-id"),jQuery(this).closest(".bwg_container"),!0),!1});var i=window.location.hash.substring(1);i&&"-1"!=i.indexOf("bwg")&&(bwg_hash_array=i.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).attr("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_slideshow_blur(e){jQuery(".bwg_slideshow").each(function(){bwg=jQuery(this).attr("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_ready(){jQuery(".bwg-carousel").each(function(){var t=jQuery(this).data("bwg");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");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(){jQuery(".bwg-carousel").each(function(){var e=jQuery(this).data("bwg");bwg_params_carousel[e]=jQuery(this).data("params"),bwg_params_carousel[e].parent_width=0,bwg_carousel_watermark(e),bwg_carousel_params(e,!1),bwg_container_loaded(e)})}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_play_pause-ico_"+e).css({fontSize:i*bwg_params_carousel[e].carousel_play_pause_btn_size/a}),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(){jQuery(".bwg_slideshow").each(function(){var i=jQuery(this).data("bwg");if(jQuery("#bwg_slideshow_image_container_"+i).length){bwg_params[i]=JSON.parse(jQuery("#bwg_slideshow_image_container_"+i).attr("data-params")),bwg_params[i].event_stack=[],bwg_container_loaded(i);var e=bwg_params[i].data;void 0!==jQuery().swiperight&&jQuery.isFunction(jQuery().swiperight)&&jQuery("#bwg_container1_"+i).swiperight(function(){return bwg_change_image(parseInt(jQuery("#bwg_current_image_key_"+i).val()),0<=parseInt(jQuery("#bwg_current_image_key_"+i).val())-bwg_iterator(i)?(parseInt(jQuery("#bwg_current_image_key_"+i).val())-bwg_iterator(i))%e.length:e.length-1,e,"",i),!1}),void 0!==jQuery().swipeleft&&jQuery.isFunction(jQuery().swipeleft)&&jQuery("#bwg_container1_"+i).swipeleft(function(){return bwg_change_image(parseInt(jQuery("#bwg_current_image_key_"+i).val()),parseInt(jQuery("#bwg_current_image_key_"+i).val())+bwg_iterator(i)%e.length,e,"",i),!1});var t=/android|webos|iphone|ipad|ipod|blackberry|iemobile|opera mini/i.test(navigator.userAgent.toLowerCase())?"touchend":"click";bwg_popup_resize(i),jQuery(".bwg_slideshow_watermark_"+i).css({display:"none"}),jQuery(".bwg_slideshow_title_text_"+i).css({display:"none"}),jQuery(".bwg_slideshow_description_text_"+i).css({display:"none"}),setTimeout(function(){bwg_change_watermark_container(i)},500),"horizontal"==bwg_params[i].filmstrip_direction?jQuery(".bwg_slideshow_image_container_"+i).height(jQuery(".bwg_slideshow_image_wrap_"+i).height()-bwg_params[i].slideshow_filmstrip_height):jQuery(".bwg_slideshow_image_container_"+i).width(jQuery(".bwg_slideshow_image_wrap_"+i).width()-bwg_params[i].slideshow_filmstrip_width);var a=/Firefox/i.test(navigator.userAgent)?"DOMMouseScroll":"mousewheel";jQuery(".bwg_slideshow_filmstrip_"+i).bind(a,function(e){var t=window.event||e;return 0<((t=t.originalEvent?t.originalEvent:t).detail?-40*t.detail:t.wheelDelta)?jQuery(".bwg_slideshow_filmstrip_left_"+i).trigger("click"):jQuery(".bwg_slideshow_filmstrip_right_"+i).trigger("click"),!1}),jQuery(".bwg_slideshow_filmstrip_right_"+i).on(t,function(){jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).stop(!0,!1),"left"==bwg_params[i].left_or_top?"width"==bwg_params[i].width_or_height?(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).position().left>=-(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).width()-jQuery(".bwg_slideshow_filmstrip_"+i).width())&&(jQuery(".bwg_slideshow_filmstrip_left_"+i).css({opacity:1}),jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).position().left<-(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).width()-jQuery(".bwg_slideshow_filmstrip_"+i).width()-(parseInt(bwg_params[i].filmstrip_thumb_margin_hor)+parseInt(bwg_params[i].slideshow_filmstrip_width)))?jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).animate({left:-(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).width()-jQuery(".bwg_slideshow_filmstrip_"+i).width())},500,"linear"):jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).animate({left:jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).position().left-(parseInt(bwg_params[i].filmstrip_thumb_margin_hor)+parseInt(bwg_params[i].slideshow_filmstrip_width))},500,"linear")),window.setTimeout(function(){jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).position().left==-(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).width()-jQuery(".bwg_slideshow_filmstrip_"+i).width())&&jQuery(".bwg_slideshow_filmstrip_right_"+i).css({opacity:.3})},500)):(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).position().left>=-(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).height()-jQuery(".bwg_slideshow_filmstrip_"+i).height())&&(jQuery(".bwg_slideshow_filmstrip_left_"+i).css({opacity:1}),jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).position().left<-(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).height()-jQuery(".bwg_slideshow_filmstrip_"+i).height()-(parseInt(bwg_params[i].filmstrip_thumb_margin_hor)+parseInt(bwg_params[i].slideshow_filmstrip_width)))?jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).animate({left:-(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).height()-jQuery(".bwg_slideshow_filmstrip_"+i).height())},500,"linear"):jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).animate({left:jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).position().left-(parseInt(bwg_params[i].filmstrip_thumb_margin_hor)+parseInt(bwg_params[i].slideshow_filmstrip_width))},500,"linear")),window.setTimeout(function(){jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).position().left==-(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).height()-jQuery(".bwg_slideshow_filmstrip_"+i).height())&&jQuery(".bwg_slideshow_filmstrip_right_"+i).css({opacity:.3})},500)):"width"==bwg_params[i].width_or_height?(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).position().top>=-(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).width()-jQuery(".bwg_slideshow_filmstrip_"+i).width())&&(jQuery(".bwg_slideshow_filmstrip_left_"+i).css({opacity:1}),jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).position().top<-(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).width()-jQuery(".bwg_slideshow_filmstrip_"+i).width()-parseInt(bwg_params[i].filmstrip_thumb_margin_hor)+parseInt(bwg_params[i].slideshow_filmstrip_width))?jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).animate({top:-(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).width()-jQuery(".bwg_slideshow_filmstrip_"+i).width())},500,"linear"):jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).animate({top:jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).position().top-parseInt(bwg_params[i].filmstrip_thumb_margin_hor)+parseInt(bwg_params[i].slideshow_filmstrip_width)},500,"linear")),window.setTimeout(function(){jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).position().top==-(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).width()-jQuery(".bwg_slideshow_filmstrip_"+i).width())&&jQuery(".bwg_slideshow_filmstrip_right_"+i).css({opacity:.3})},500)):(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).position().top>=-(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).height()-jQuery(".bwg_slideshow_filmstrip_"+i).height())&&(jQuery(".bwg_slideshow_filmstrip_left_"+i).css({opacity:1}),jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).position().top<-(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).height()-jQuery(".bwg_slideshow_filmstrip_"+i).height()-(parseInt(bwg_params[i].filmstrip_thumb_margin_hor)+parseInt(bwg_params[i].slideshow_filmstrip_width)))?jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).animate({top:-(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).height()-jQuery(".bwg_slideshow_filmstrip_"+i).height())},500,"linear"):jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).animate({top:jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).position().top-(parseInt(bwg_params[i].filmstrip_thumb_margin_hor)+parseInt(bwg_params[i].slideshow_filmstrip_width))},500,"linear")),window.setTimeout(function(){jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).position().top==-(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).height()-jQuery(".bwg_slideshow_filmstrip_"+i).height())&&jQuery(".bwg_slideshow_filmstrip_right_"+i).css({opacity:.3})},500))}),jQuery(".bwg_slideshow_filmstrip_left_"+i).on(t,function(){jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).stop(!0,!1),"left"==bwg_params[i].left_or_top?(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).position().left<0&&(jQuery(".bwg_slideshow_filmstrip_right_"+i).css({opacity:1}),jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).position().left>-(bwg_params[i].filmstrip_thumb_margin_hor+bwg_params[i].slideshow_filmstrip_width)?jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).animate({left:0},500,"linear"):jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).animate({left:jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).position().left+parseInt(bwg_params[i].filmstrip_thumb_margin_hor)+parseInt(bwg_params[i].slideshow_filmstrip_width)},500,"linear")),window.setTimeout(function(){0==jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).position().left&&jQuery(".bwg_slideshow_filmstrip_left_"+i).css({opacity:.3})},500)):(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).position().top<0&&(jQuery(".bwg_slideshow_filmstrip_right_"+i).css({opacity:1}),jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).position().top>-(bwg_params[i].filmstrip_thumb_margin_hor+bwg_params[i].slideshow_filmstrip_width)?jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).animate({top:0},500,"linear"):jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).animate({top:jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).position().top+parseInt(bwg_params[i].filmstrip_thumb_margin_hor)+parseInt(bwg_params[i].slideshow_filmstrip_width)},500,"linear")),window.setTimeout(function(){0==jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).position().top&&jQuery(".bwg_slideshow_filmstrip_left_"+i).css({opacity:.3})},500))}),"width"==bwg_params[i].width_or_height?bwg_set_filmstrip_pos(jQuery(".bwg_slideshow_filmstrip_"+i).width(),i):bwg_set_filmstrip_pos(jQuery(".bwg_slideshow_filmstrip_"+i).height(),i),jQuery("#bwg_slideshow_play_pause_"+i).off(t).on(t,function(){jQuery(".bwg_ctrl_btn_"+i).hasClass("bwg-icon-play")?(bwg_play(bwg_params[i].data,i),jQuery(".bwg_slideshow_play_pause_"+i).attr("title",bwg_objectsL10n.pause),jQuery(".bwg_slideshow_play_pause_"+i).attr("class","bwg-icon-pause bwg_ctrl_btn_"+i+" bwg_slideshow_play_pause_"+i),1==bwg_params[i].enable_slideshow_music&&document.getElementById("bwg_audio_"+i).play()):(window.clearInterval(window["bwg_playInterval"+i]),jQuery(".bwg_slideshow_play_pause_"+i).attr("title","Play"),jQuery(".bwg_slideshow_play_pause_"+i).attr("class","bwg-icon-play bwg_ctrl_btn_"+i+" bwg_slideshow_play_pause_"+i),1==bwg_params[i].enable_slideshow_music&&document.getElementById("bwg_audio_"+i).pause())}),0!=bwg_params[i].enable_slideshow_autoplay&&(bwg_play(bwg_params[i].data,i),jQuery(".bwg_slideshow_play_pause_"+i).attr("title",bwg_objectsL10n.pause),jQuery(".bwg_slideshow_play_pause_"+i).attr("class","bwg-icon-pause bwg_ctrl_btn_"+i+" bwg_slideshow_play_pause_"+i),1==bwg_params[i].enable_slideshow_music&&jQuery("#bwg_audio_"+i).length&&document.getElementById("bwg_audio_"+i).play()),bwg_params[i].preload_images&&bwg_preload_images(parseInt(jQuery("#bwg_current_image_key_".$bwg).val()),i),jQuery(".bwg_slideshow_image_"+i).removeAttr("width"),jQuery(".bwg_slideshow_image_"+i).removeAttr("height")}})}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(){jQuery(".bwg_image_browser").each(function(){var e=jQuery(this).attr("data-bwg");bwg_container_loaded(e),jQuery(".image_browser_images_conteiner_"+e).length&&(bwg_params_ib[e]=JSON.parse(jQuery(".image_browser_images_conteiner_"+e).attr("data-params")),setTimeout(function(){bwg_image_browser(e)},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)})}),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=(o=_.data("max-count"),parseInt(n/g)+("0"==_.data("resizable-thumbnails")?0:1));o<w&&(w=o);var b=_.find(".bwg-item").length;b<w&&(w=b);var u,d,h=100/w,m=[];for(i=0;i<w;i++)m.push(0);_.find(".bwg-item").each(function(){var e=m.indexOf(Math.min.apply(Math,m));if(jQuery(this).css({width:h+"%",order:e+1}),0<jQuery(this).find("img").attr("data-width").length&&0<jQuery(this).find("img").attr("data-height").length){d=jQuery(this).find("img").data("width")/jQuery(this).find("img").data("height"),u=jQuery(this).width()/d,title_h=this.querySelector("a .bwg-title2")?this.querySelector("a .bwg-title2").getClientRects()[0].height:0,desc_h=this.querySelector("a .bwg-masonry-thumb-description")?this.querySelector("a .bwg-masonry-thumb-description").getClientRects()[0].height:0;var t=title_h+desc_h;jQuery(this).height(u+t)}m[e]+=jQuery(this)[0].getBoundingClientRect().height});var p=Math.max.apply(Math,m);for(i=0;i<w;i++)m[i]<p&&_.append(jQuery('<div class="bwg-item bwg-empty-item"></div>').css({width:h+"%",order:i+1,height:p-m[i]}));_.outerWidth(w*g),_.height(p)}if(""!=a.html()){r.outerWidth(w*g),"0"!=p?(r.css("opacity","1"),r.height(p)):r.css("opacity","0"),r.empty();var c=a.html();r.append(c),r.find(".bwg_lazyload").each(function(){null!=jQuery(this).attr("data-original")&&""!=jQuery(this).attr("data-original")&&jQuery(this).attr("src",jQuery(this).attr("data-original"))}),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")}function bwg_thumbnail_mosaic_logic(e){var t=e.attr("data-bwg"),i=e.attr("data-block-id"),a=parseInt(e.attr("data-thumb-padding"))/2,r=parseInt(e.attr("data-thumb-border"))+a;if("horizontal"==e.attr("data-mosaic-direction")){var _=parseInt(e.attr("data-height"));if("1"==e.attr("data-resizable"))if(1920<=jQuery(window).width())var s=(1+jQuery(window).width()/1920)*_;else if(jQuery(window).width()<=640)s=jQuery(window).width()/640*_;else s=_;else s=_;(c=jQuery(".bwg_mosaic_thumb_"+t)).each(function(e){var t=jQuery(this).data("width"),i=jQuery(this).data("height");""!=t&&""!=i&&void 0!==t&&void 0!==i||(t=c.get(e).naturalWidth,i=c.get(e).naturalHeight),t=t*s/i,c.eq(e).height(s),c.eq(e).width(t)});var o=jQuery("#bwg_mosaic_thumbnails_div_"+t).width()/100*parseInt(e.attr("data-total-width"));jQuery("#"+i).width(o);var l=s+2*r,n=0,g=[];g[0]=0;var w=[],b=w[0]=0;c.each(function(e){row_cum_width2=b+c.eq(e).width()+2*r,row_cum_width2-o<0?(b=row_cum_width2,g[e]=n,w[n]++):e!==c.length-1?Math.abs(b-o)>Math.abs(row_cum_width2-o)||Math.abs(b-o)<=Math.abs(row_cum_width2-o)&&0==w[n]?e!==c.length-2?(b=row_cum_width2,g[e]=n,w[n]++,w[++n]=0,b=0):(b=row_cum_width2,g[e]=n,w[n]++):(w[++n]=1,g[e]=n,b=row_cum_width2-b):(b=row_cum_width2,g[e]=n,w[n]++)});for(var u=[],d=[],h=0;h<=n;h++)u[h]=1,d[h]=l;for(h=0;h<=n;h++)b=0,c.each(function(e){g[e]==h&&(b+=c.eq(e).width())}),u[h]=z=(o-2*w[h]*r)/b,d[h]=(l-2*r)*u[h]+2*r;(S=[])[0]=0;var m=[],p=[];m[0]=0,p[0]=0;for(h=1;h<=n;h++)m[h]=m[0],p[h]=p[h-1]+d[h-1];c.each(function(e){var t=c.eq(e).width(),i=c.eq(e).height();c.eq(e).width(t*u[g[e]]),c.eq(e).height(i*u[g[e]]),c.eq(e).parent().css({top:p[g[e]],left:m[g[e]]}),m[g[e]]+=t*u[g[e]]+2*r,S[g[e]]=e}),jQuery("#"+i).height(p[n]+d[n]-p[0])}else{var c,y=parseInt(e.attr("data-width"));if("1"==e.attr("data-resizable")){if(1920<=jQuery(window).width())var f=(1+jQuery(window).width()/1920)*y;else if(jQuery(window).width()<=640)f=jQuery(window).width()/640*y;else f=y;if(0<jQuery(".header-content-with_tab").length)f=jQuery(".header-content-with_tab").width()/4-10}else f=y;(c=jQuery(".bwg_mosaic_thumb_"+t)).each(function(e){jQuery(this).removeAttr("style"),jQuery(this).parent().removeAttr("style");var t=jQuery(this).data("width"),i=jQuery(this).data("height");""!=t&&""!=i&&void 0!==t&&void 0!==i||(t=c.get(e).naturalWidth,i=c.get(e).naturalHeight),c.eq(e).height(i*f/t),c.eq(e).width(f)});o=jQuery("#bwg_mosaic_thumbnails_div_"+t).width()/100*parseInt(e.attr("data-total-width"));jQuery("#"+i).width(o);var j=f+2*r<o?f:o-2*r,Q=Math.floor(o/(j+2*r)),v=[];v[0]=0;for(var x=[],k=[],z=0;z<Q;z++)k[z]=0,x[z]=0;c.each(function(e){for(var t=0,i=k[0],a=0;a<Q;a++)i>k[a]&&(i=k[a],t=a);v[e]=t,x[t]++,B=i,T=0+t*(j+2*r),c.eq(e).parent().css({top:B,left:T}),k[t]+=c.eq(e).height()+2*r}),(u=[])[0]=1;var C=0,I=[],E=0,O=0;for(z=0;z<Q;z++)C+=j,I[z]=0,c.each(function(e){v[e]==z&&(I[z]+=c.eq(e).height())}),0!=I[z]&&(E+=j/I[z],O+=j*x[z]*2*r/I[z]);var M=0;0!=E&&(M=(C+O)/E);for(z=0;z<Q;z++)0!=I[z]&&(u[z]=(M-2*x[z]*r)/I[z]);var S,T=[];T[0]=0;for(z=1;z<=Q;z++)T[z]=T[z-1]+j*u[z-1]+2*r;var B=[];for(z=0;z<Q;z++)B[z]=0;(S=[])[0]=0,c.each(function(e){var t=c.eq(e).width(),i=c.eq(e).height();c.eq(e).width(t*u[v[e]]),c.eq(e).height(i*u[v[e]]),c.eq(e).parent().css({top:B[v[e]],left:T[v[e]]}),B[v[e]]+=i*u[v[e]]+2*r,S[v[e]]=e}),jQuery("#"+i).width(T[Q]).height(B[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+"]"))})}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=jQuery(e).parent().parent(),a=i.find(".current_view").val(),r=i.find(".form_id").val(),_=i.find(".cur_gal_id").val(),s=i.find(".album_gallery_id").val(),o=i.find(".type").val();jQuery(e).parent().find(".opt.selected").each(function(){t=t+jQuery(e).text()+","}),""==(t=t.slice(0,-1))&&(t=bwg_objectsL10n.bwg_select_tag),jQuery(e).parent().find(".CaptionCont").attr("title",t),jQuery(e).parent().find(".CaptionCont .placeholder").html(t),jQuery("#bwg_tag_id_"+a).val(jQuery("#bwg_tag_id_"+_).val()),bwg_select_tag(a,r,_,s,o,!1)}function bwg_document_ready(){bwg_add_lightbox(),jQuery(".bwg_container img").removeAttr("width").removeAttr("height"),jQuery('div[id^="bwg_container1_"]').each(function(){var e=jQuery(this);e.data("right-click-protection")&&bwg_disable_right_click(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)}));var a=e.find(".bwg_order");a.length&&a.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(){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 e=window.location.hash.substring(1);if(e&&"-1"!=e.indexOf("bwg")){bwg_hash_array=e.replace("bwg","").split("/");var t=jQuery(".bwg_container");t&&bwg_gallery_box(bwg_hash_array[1],t,!1,bwg_hash_array[0])}bwg_blog_style_ready(),bwg_image_browser_ready(),bwg_resize_search_line()}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=jQuery("#page_number_"+i).val(),h=jQuery("#bwg_search_input_"+i).val(),m={},p=jQuery("#bwg_album_breadcrumb_"+i).val();if(p&&!0!==n){var c=JSON.parse(p);if("back"==r){c.splice(-1,1);var y=c.slice(-1)[0];r=y.id,d=y.page,m["action_"+i]="back"}else"numeric"===n||s?(c.splice(-1,1),c.push({id:r,page:d,search:h})):(c.push({id:r,page:1}),d=1);m["bwg_album_breadcrumb_"+i]=JSON.stringify(c)}if(m.gallery_type=jQuery("#"+t).data("gallery-type"),m.gallery_id=jQuery("#"+t).data("gallery-id"),m.tag=jQuery("#"+t).data("tag"),m.album_id=jQuery("#"+t).data("album-id"),m.theme_id=jQuery("#"+t).data("theme-id"),m.shortcode_id=jQuery("#"+t).data("shortcode-id"),m.bwg=i,m.current_url=encodeURI(jQuery("#bwg_container1_"+i).data("current-url")),s&&(d=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),m["page_number_"+i]=d,m["bwg_load_more_"+i]=jQuery("#bwg_load_more_"+i).val(),m["album_gallery_id_"+i]=r,m["type_"+i]=_,m["title_"+i]=o,m["description_"+i]=g,m["sortImagesByValue_"+i]=l,m["bwg_random_seed_"+i]=jQuery("#bwg_random_seed_"+i).val(),0<jQuery("#bwg_search_input_"+i).length&&(m["bwg_search_"+i]=jQuery("#bwg_search_input_"+i).val()),void 0!==m["bwg_album_breadcrumb_"+i]){var f=JSON.parse(m["bwg_album_breadcrumb_"+i]);jQuery.each(f,function(e,t){m["bwg_search_"+i]="",r==t.id&&(m["bwg_search_"+i]=t.search)})}return m["bwg_tag_id_"+a]=jQuery("#bwg_tag_id_"+a).val(),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:m,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)},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-original")&&""!=jQuery(this).attr("data-original")&&jQuery(this).attr("src",jQuery(this).attr("data-original"))}),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()}),jQuery("#bwg_tags_id_"+a).val(jQuery("#bwg_tag_id_"+a).val()),jQuery(".pagination-links_"+i).length&&jQuery("html, body").animate({scrollTop:jQuery("#"+t).offset().top-150},500),bwg_document_ready(),bwg_carousel_ready(),bwg_carousel_onload(),bwg_slideshow_ready(),bwg_mosaic_ajax(i,u),bwg_all_thumnails_loaded(".bwg-container-"+i)&&bwg_container_loaded(i),jQuery(".blog_style_images_conteiner_"+i+" .bwg_embed_frame_16x9_"+i).each(function(e){jQuery(this).width(jQuery(this).parent().width()),jQuery(this).height(.5625*jQuery(this).width())}),jQuery(".blog_style_images_conteiner_"+i+" .bwg_embed_frame_instapost_"+i).each(function(e){jQuery(this).width(jQuery(this).parent().width()),jQuery(this).height((jQuery(this).width()-16)*jQuery(this).attr("data-height")/jQuery(this).attr("data-width")+96)}),jQuery("#bwg_embed_frame_16x9_"+i).width(jQuery("#bwg_embed_frame_16x9_"+i).parent().width()),jQuery("#bwg_embed_frame_16x9_"+i).height(.5625*jQuery("#bwg_embed_frame_16x9_"+i).width()),jQuery("#bwg_embed_frame_instapost_"+i).width(jQuery("#bwg_embed_frame_16x9_"+i).parent().width()),jQuery(".bwg_embed_frame_instapost_"+i).height((jQuery(".bwg_embed_frame_instapost_"+i).width()-16)*jQuery(".bwg_embed_frame_instapost_"+i).attr("data-height")/jQuery(".bwg_embed_frame_instapost_"+i).attr("data-width")+96),jQuery("#bwg_search_input_"+i).val(m["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();var e=jQuery("#bwg_container2_"+i+" .cur_gal_id").val();jQuery("#bwg_tag_id_"+i).val(jQuery("#bwg_tag_id_"+e).val())}}),!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 j=jQuery("#bwg_search_input_"+i).val(),Q=window.location.href,v="",x=jQuery("#bwg_tag_id_"+i).val();if("#"==Q.substr(-1)&&(Q=Q.slice(0,-1)),""!==j&&void 0!==j?!1!==(v=bwg_add_url_parameter(v=bwg_remove_url_parameter("page_number_"+i,Q),"bwg_search_"+i,j))&&(Q=v):!1!==(v=bwg_remove_url_parameter("bwg_search_"+i,Q))&&(Q=v),void 0!==l&&""!==l&&!1!==(v=bwg_add_url_parameter(Q,"sort_by_"+i,l))&&(Q=v),null!=x&&0<x.length){var k="",z=x.split(",");jQuery.each(z,function(e){var t=",";e===z.length-1&&(t=""),k+=z[e]+t}),""!==k&&!1!==(v=bwg_add_url_parameter(Q,"filter_tag_"+i,k))&&(Q=v)}else!1!==(v=bwg_remove_url_parameter("filter_tag_"+i,v))&&(Q=v);window.location.href=Q}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_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_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_change_watermark_container(t){jQuery(".bwg_slider"+(void 0!==t&&""!==t?"_"+t:"")).children().each(function(){if(2==jQuery(this).css("zIndex")){var e=jQuery(this).find("img");if(e.length)if(e.prop("complete"))bwg_change_each_watermark_container(e.width(),e.height(),t);else e.on("load",function(){bwg_change_each_watermark_container(e.width(),e.height(),t)});else(e=jQuery(this).find("iframe")).length||(e=jQuery(this).find("video")),bwg_change_each_watermark_container(e.width(),e.height(),t)}})}function bwg_change_each_watermark_container(e,t,i){var a=void 0!==i&&""!==i?"_"+i:"",r=void 0!==i&&""!==i?"_slideshow":"";if(jQuery(".bwg"+r+"_watermark_spun"+a).width(e),jQuery(".bwg"+r+"_watermark_spun"+a).height(t),jQuery(".bwg"+r+"_watermark"+a).css({display:""}),void 0===i||""===i){var _=0;(jQuery(".bwg_comment_container").hasClass("bwg_open")||jQuery(".bwg_ecommerce_container").hasClass("bwg_open"))&&(_=gallery_box_data.lightbox_comment_width),e<=jQuery(window).width()-_&&(jQuery(".bwg_watermark_image").css({width:(jQuery(".spider_popup_wrap").width()-_)*gallery_box_data.watermark_font_size/gallery_box_data.image_width}),jQuery(".bwg_watermark_text, .bwg_watermark_text:hover").css({fontSize:(jQuery(".spider_popup_wrap").width()-_)*gallery_box_data.watermark_font_size/gallery_box_data.image_width}))}else jQuery(".bwg"+r+"_title_spun"+a).width(e),jQuery(".bwg"+r+"_title_spun"+a).height(t),jQuery(".bwg"+r+"_description_spun"+a).width(e),jQuery(".bwg"+r+"_description_spun"+a).height(t);jQuery.trim(jQuery(".bwg"+r+"_title_text"+a).text())&&jQuery(".bwg_slideshow_title_text"+a).css({display:""}),jQuery.trim(jQuery(".bwg"+r+"_description_text"+a).text())&&jQuery(".bwg"+r+"_description_text"+a).css({display:""})}function bwg_set_filmstrip_pos(e,t,i){var a,r=void 0!==t&&""!==t?"_"+t:"",_=void 0!==t&&""!==t?"_slideshow":"";a=void 0!==t&&""!==t?bwg_params[t].left_or_top:gallery_box_data.left_or_top;var s=parseInt(jQuery(".bwg_filmstrip_thumbnails").attr("data-all-images-top-bottom-space")),o=parseInt(jQuery(".bwg_filmstrip_thumbnails").attr("data-all-images-right-left-space"));if(void 0===t||""===t){if("outerWidth"==gallery_box_data.outerWidth_or_outerHeight)var l=-bwg_current_filmstrip_pos-jQuery(".bwg_filmstrip_thumbnail").outerWidth(!0)/2;else if("outerHeight"==gallery_box_data.outerWidth_or_outerHeight)l=-bwg_current_filmstrip_pos-jQuery(".bwg_filmstrip_thumbnail").outerHeight(!0)/2;if("width"==gallery_box_data.width_or_height)var n=Math.min(0,Math.max(e-jQuery(".bwg_filmstrip_thumbnails").width(),l+e/2));else if("height"==gallery_box_data.width_or_height)n=Math.min(0,Math.max(e-jQuery(".bwg_filmstrip_thumbnails").height(),l+e/2))}else if("width"==bwg_params[t].width_or_height)l=-bwg_params[t].bwg_current_filmstrip_pos-(jQuery(".bwg_slideshow_filmstrip_thumbnail"+r).width()+bwg_params[t].filmstrip_thumb_margin_hor)/2,n=Math.min(0,Math.max(e-jQuery(".bwg_slideshow_filmstrip_thumbnails"+r).width(),l+e/2));else l=-bwg_params[t].bwg_current_filmstrip_pos-(jQuery(".bwg_slideshow_filmstrip_thumbnail"+r).height()+bwg_params[t].filmstrip_thumb_margin_hor)/2,n=Math.min(0,Math.max(e-jQuery(".bwg_slideshow_filmstrip_thumbnails"+r).height(),l+e/2));0<n+o&&(o=0),0<n+s&&(s=0),"left"==a?jQuery(".bwg"+_+"_filmstrip_thumbnails"+r).animate({left:n+o},{duration:500,complete:function(){bwg_filmstrip_arrows(t)}}):jQuery(".bwg"+_+"_filmstrip_thumbnails"+r).animate({top:n+s},{duration:500,complete:function(){bwg_filmstrip_arrows(t)}})}function bwg_filmstrip_arrows(e){var t=void 0!==e&&""!==e?"_"+e:"",i=void 0!==e&&""!==e?"_slideshow":"";if("width"==(void 0!==e&&""!==e?bwg_params[e].width_or_heigh:gallery_box_data.width_or_height))var a=jQuery(".bwg"+i+"_filmstrip_thumbnails"+t).width(),r=jQuery(".bwg"+i+"_filmstrip"+t).width();else a=jQuery(".bwg"+i+"_filmstrip_thumbnails"+t).height(),r=jQuery(".bwg"+i+"_filmstrip"+t).height();a<r?(jQuery(".bwg"+i+"_filmstrip_left"+t).hide(),jQuery(".bwg"+i+"_filmstrip_right"+t).hide()):(jQuery(".bwg"+i+"_filmstrip_left"+t).show(),jQuery(".bwg"+i+"_filmstrip_right"+t).show())}function bwg_move_filmstrip(e){var t,i,a,r,_,s,o=void 0!==e&&""!==e?"_"+e:"",l=void 0!==e&&""!==e?"_slideshow":"",n=void 0!==e&&""!==e?bwg_params[e].outerWidth_or_outerHeight:gallery_box_data.outerWidth_or_outerHeight,g=void 0!==e&&""!==e?bwg_params[e].left_or_top:gallery_box_data.left_or_top;i="outerWidth"==n?(t=jQuery(".bwg"+l+"_filmstrip"+o).outerWidth(!0),jQuery(".bwg"+l+"_filmstrip_thumbnails"+o).outerWidth(!0)):(t=jQuery(".bwg"+l+"_filmstrip"+o).outerHeight(!0),jQuery(".bwg"+l+"_filmstrip_thumbnails"+o).outerHeight(!0)),s="left"==g?(a=jQuery(".bwg"+l+"_thumb_active"+o).position().left,r="outerWidth"==n?jQuery(".bwg"+l+"_thumb_active"+o).position().left+jQuery(".bwg"+l+"_thumb_active"+o).outerWidth(!0):jQuery(".bwg"+l+"_thumb_active"+o).position().left+jQuery(".bwg"+l+"_thumb_active"+o).outerHeight(!0),_=jQuery(".bwg"+l+"_filmstrip_thumbnails"+o).position().left,Math.abs(jQuery(".bwg"+l+"_filmstrip_thumbnails"+o).position().left)+t):(a=jQuery(".bwg"+l+"_thumb_active"+o).position().top,r="outerWidth"==n?jQuery(".bwg"+l+"_thumb_active"+o).position().top+jQuery(".bwg"+l+"_thumb_active"+o).outerWidth(!0):jQuery(".bwg"+l+"_thumb_active"+o).position().top+jQuery(".bwg"+l+"_thumb_active"+o).outerHeight(!0),_=jQuery(".bwg"+l+"_filmstrip_thumbnails"+o).position().top,Math.abs(jQuery(".bwg"+l+"_filmstrip_thumbnails"+o).position().top)+t),i<t||(a<Math.abs(_)?"left"==g?jQuery(".bwg"+l+"_filmstrip_thumbnails"+o).animate({left:-a},{duration:500,complete:function(){bwg_filmstrip_arrows(e)}}):jQuery(".bwg"+l+"_filmstrip_thumbnails"+o).animate({top:-a},{duration:500,complete:function(){bwg_filmstrip_arrows(e)}}):s<r&&("left"==g?jQuery(".bwg"+l+"_filmstrip_thumbnails"+o).animate({left:-(r-t)},{duration:500,complete:function(){bwg_filmstrip_arrows(e)}}):jQuery(".bwg"+l+"_filmstrip_thumbnails"+o).animate({top:-(r-t)},{duration:500,complete:function(){bwg_filmstrip_arrows(e)}})))}function bwg_move_dots(e){var t=jQuery(".bwg_slideshow_dots_active_"+e).position().left,i=jQuery(".bwg_slideshow_dots_active_"+e).position().left+jQuery(".bwg_slideshow_dots_active_"+e).outerWidth(!0),a=jQuery(".bwg_slideshow_dots_container_"+e).outerWidth(!0),r=jQuery(".bwg_slideshow_dots_thumbnails_"+e).outerWidth(!1),_=jQuery(".bwg_slideshow_dots_thumbnails_"+e).position().left,s=Math.abs(jQuery(".bwg_slideshow_dots_thumbnails_"+e).position().left)+a;r<a||(t<Math.abs(_)?jQuery(".bwg_slideshow_dots_thumbnails_"+e).animate({left:-t},{duration:500,complete:function(){}}):s<i&&jQuery(".bwg_slideshow_dots_thumbnails_"+e).animate({left:-(i-a)},{duration:500,complete:function(){}}))}function bwg_testBrowser_cssTransitions(e){return bwg_testDom("Transition",e)}function bwg_testBrowser_cssTransforms3d(e){return bwg_testDom("Perspective",e)}function bwg_testDom(e,t){for(var i=["","Webkit","Moz","ms","O","Khtml"],a=i.length;a--;)if(void 0!==document.body.style[i[a]+e])return!0;return!1}function bwg_fallback(e,t,i,a){bwg_fade(e,t,i,a)}function bwg_fallback3d(e,t,i,a){bwg_sliceV(e,t,i,a)}function bwg_none(e,t,i,a){var r=void 0!==a&&""!==a?"_"+a:"";if(jQuery(e).css({opacity:0,"z-index":1}),jQuery(t).css({opacity:1,"z-index":2}),void 0!==a&&""!==a){var _=bwg_params[a].bwg_current_key;bwg_change_watermark_container(a),jQuery(".bwg_slideshow_filmstrip_thumbnail"+r).removeClass("bwg_slideshow_thumb_active"+r).addClass("bwg_slideshow_thumb_deactive"+r),jQuery("#bwg_filmstrip_thumbnail_"+_+r).removeClass("bwg_slideshow_thumb_deactive"+r).addClass("bwg_slideshow_thumb_active"+r),jQuery(".bwg_slideshow_dots"+r).removeClass("bwg_slideshow_dots_active"+r).addClass("bwg_slideshow_dots_deactive"+r),jQuery("#bwg_dots_"+_+r).removeClass("bwg_slideshow_dots_deactive"+r).addClass("bwg_slideshow_dots_active"+r)}else jQuery(".bwg_image_info").show(),gallery_box_data.bwg_trans_in_progress=!1,jQuery(e).html(""),bwg_change_watermark_container()}function bwg_iterator(e){var t=1;return void 0!==e&&""!==e&&void 0!==bwg_params[e]&&1==bwg_params[e].enable_slideshow_shuffle&&(t=Math.floor((bwg_params[e].data.length-1)*Math.random()+1)),t}function bwg_change_image_slideshow(e,t,i,a,r){i=bwg_params[r].data;if(jQuery("#bwg_slideshow_image_container_"+r).find("iframe").each(function(){jQuery(this)[0].contentWindow.postMessage('{"event":"command","func":"pauseVideo","args":""}',"*"),jQuery(this)[0].contentWindow.postMessage('{ "method": "pause" }',"*"),jQuery(this)[0].contentWindow.postMessage("pause","*")}),jQuery("#image_id_"+r+"_"+i[e].id).find(".bwg_fb_video").each(function(){jQuery(this).attr("src",jQuery(this).attr("src"))}),i[t]){if(jQuery(".bwg_ctrl_btn_"+r).hasClass("bwg-icon-pause")&&bwg_play(bwg_params[r].data,r),a||(jQuery("#bwg_current_image_key_"+r).val(t),"-1"==e?e=jQuery(".bwg_slideshow_thumb_active_"+r).children("img").attr("image_key"):"-2"==e&&(e=jQuery(".bwg_slideshow_dots_active_"+r).attr("image_key"))),bwg_params[r].bwg_trans_in_progress)return void bwg_params[r].event_stack.push(e+"-"+t);var _="right";if(t<e)_="left";else if(e==t)return;jQuery(".bwg_slideshow_watermark_"+r).css({display:"none"}),jQuery(".bwg_slideshow_title_text_"+r).css({display:"none"}),jQuery(".bwg_slideshow_description_text_"+r).css({display:"none"}),"width"==bwg_params[r].width_or_height?bwg_params[r].bwg_current_filmstrip_pos=t*(jQuery(".bwg_slideshow_filmstrip_thumbnail_"+r).width()+2+2*bwg_params[r].lightbox_filmstrip_thumb_border_width):bwg_params[r].bwg_current_filmstrip_pos=t*(jQuery(".bwg_slideshow_filmstrip_thumbnail_"+r).height()+2+2*bwg_params[r].lightbox_filmstrip_thumb_border_width),e=t,bwg_params[r].bwg_current_key=e,jQuery("#bwg_slideshow_image_"+r).attr("image_id",i[t].id),jQuery(".bwg_slideshow_title_text_"+r).html(jQuery('<span style="display: block;" />').html(i[t].alt).text()),jQuery(".bwg_slideshow_description_text_"+r).html(jQuery('<span style="display: block;" />').html(i[t].description).text());var s=2==jQuery(".bwg_slideshow_image_spun_"+r).css("zIndex")?".bwg_slideshow_image_spun_"+r:".bwg_slideshow_image_second_spun_"+r,o=s==".bwg_slideshow_image_second_spun_"+r?".bwg_slideshow_image_spun_"+r:".bwg_slideshow_image_second_spun_"+r,l=-1<i[t].filetype.indexOf("EMBED_"),n=-1<i[t].filetype.indexOf("INSTAGRAM_POST"),g=-1<i[t].filetype.indexOf("INSTAGRAM_VIDEO"),w=jQuery(s).height(),b=jQuery(s).width(),u='<span class="bwg_slideshow_image_spun1_'+r+'" style="display: '+(l?"block":"table")+' ;width: inherit; height: inherit;"><span class="bwg_slideshow_image_spun2_'+r+'" style="display: '+(l?"block":"table-cell")+'; vertical-align: middle; text-align: center; ">';if(l){if(u+='<span style="height: '+w+"px; width: "+b+'px;" class="bwg_popup_embed bwg_popup_watermark">',g&&(u+='<span class="bwg_inst_play_btn_cont" onclick="bwg_play_instagram_video(this)"><span class="bwg_inst_play"></span></span>'),n){var d=0,h=0;w<b+88?d=(h=w)-88:h=(d=b)+88,u+=spider_display_embed(i[t].filetype,decodeURIComponent(i[t].image_url),i[t].filename,{class:"bwg_embed_frame","data-width":i[t].image_width,"data-height":i[t].image_height,frameborder:"0",allowfullscreen:"allowfullscreen",style:"width:"+d+"px; height:"+h+"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",style:"width:inherit; height:inherit; vertical-align:middle; display:table-cell;"});u+="</span>"}else{if("do_nothing"!=bwg_params[r].thumb_click_action){var m="";"open_lightbox"==bwg_params[r].thumb_click_action?m+=' class="bwg_lightbox" data-image-id="'+i[t].id+'"':"redirect_to_url"==bwg_params[r].thumb_click_action&&i[t].redirect_url&&(m+='href="'+i[t].redirect_url+'"'+(bwg_params[r].thumb_link_target&&1==bwg_params[r].thumb_link_target?' target="_blank"':"")),u+="<a "+m+">"}u+='<img style="max-height: '+w+"px !important; max-width: "+b+'px !important; display:inline-block;" ',u+=' class="bwg_slide bwg_slideshow_image_'+r+'" ',u+=' id="bwg_slideshow_image_'+r+'" ',u+=' src="'+bwg_params[r].upload_url+jQuery("<span style='display: block;' />").html(decodeURIComponent(i[t].image_url)).text()+'" alt="'+i[t].alt+'" image_id="'+i[t].id+'" /></a>'}u+="</span></span>",jQuery(o).html(u),bwg_params[r].preload_images&&bwg_preload_images(t,r),window["bwg_"+bwg_params[r].slideshow_effect](s,o,_,r),0<bwg_params[r].enable_slideshow_filmstrip?bwg_move_filmstrip(r):bwg_move_dots(r),i[t].is_embed_video?jQuery("#bwg_slideshow_play_pause_"+r).css({display:"none"}):jQuery("#bwg_slideshow_play_pause_"+r).css({display:""})}bwg_add_lightbox()}function bwg_preload_images_slideshow(e,t){var i=bwg_params[t].data;count=bwg_params[t].preload_images_count/2;var a=i.length;if(a<bwg_params[t].preload_images_count&&(count=0),0!=count)for(var r=e-count;r<e+count;r++){var _=parseInt((r+a)%a),s=-1<i[_].filetype.indexOf("EMBED_");void 0!==i[_]&&(s||jQuery("<img/>").attr("src",bwg_params[t].upload_url+jQuery('<span style="display: block;" />').html(decodeURIComponent(i[_].image_url)).text()))}else for(r=0;r<i.length;r++){s=-1<i[r].filetype.indexOf("EMBED_");void 0!==i[r]&&(s||jQuery("<img/>").attr("src",bwg_params[t].upload_url+jQuery('<span style="display: block;" />').html(decodeURIComponent(i[r].image_url)).text()))}}function bwg_preload_images(e,t){void 0!==t&&""!==t?bwg_preload_images_slideshow(e,t):bwg_preload_images_lightbox(e)}function bwg_popup_resize_slidshow(e){var t=jQuery("#bwg_container1_"+e).parent();t.hasClass("elementor-tab-content")&&t.width(t.closest(".elementor-widget-wrap").width());var i=t.width(),a=bwg_params[e].data;if(i>=bwg_params[e].image_width){jQuery(".bwg_slideshow_image_wrap_"+e).css({width:bwg_params[e].image_width}),jQuery(".bwg_slideshow_image_wrap_"+e).css({height:bwg_params[e].image_height}),jQuery(".bwg_slideshow_image_container_"+e).css({width:"horizontal"==bwg_params[e].filmstrip_direction?bwg_params[e].image_width:bwg_params[e].image_width-bwg_params[e].slideshow_filmstrip_width}),jQuery(".bwg_slideshow_image_container_"+e).css({height:"horizontal"==bwg_params[e].filmstrip_direction?bwg_params[e].image_height-bwg_params[e].slideshow_filmstrip_height:bwg_params[e].image_height}),jQuery(".bwg_slideshow_image_"+e).css({cssText:(bwg_params[e].filmstrip_direction,bwg_params[e].image_width)}),jQuery(".bwg_slideshow_embed_"+e).css({cssText:(bwg_params[e].filmstrip_direction,bwg_params[e].image_width)}),bwg_resize_instagram_post(e),bwg_change_watermark_container(e);var r="horizontal"==bwg_params[e].filmstrip_direction?"width: "+bwg_params[e].image_width:"height: "+bwg_params[e].image_height,_="horizontal"==bwg_params[e].filmstrip_direction?"width: "+(bwg_params[e].image_width-40):"height: "+(bwg_params[e].image_height-40);jQuery(".bwg_slideshow_filmstrip_container_"+e).css({cssText:r}),jQuery(".bwg_slideshow_filmstrip_"+e).css({cssText:_}),jQuery(".bwg_slideshow_dots_container_"+e).css({width:bwg_params[e].image_width}),jQuery("#bwg_slideshow_play_pause-ico_"+e).css({fontSize:bwg_params[e].slideshow_play_pause_btn_size}),"image"==bwg_params[e].watermark_type&&jQuery(".bwg_slideshow_watermark_image_"+e).css({maxWidth:bwg_params[e].watermark_width,maxHeight:bwg_params[e].watermark_height}),"text"==bwg_params[e].watermark_type&&jQuery(".bwg_slideshow_watermark_text_"+e+", .bwg_slideshow_watermark_text_"+e+" :hover").css({fontSize:bwg_params[e].watermark_font_size}),jQuery(".bwg_slideshow_title_text_"+e).css({fontSize:2*bwg_params[e].slideshow_title_font_size}),jQuery(".bwg_slideshow_description_text_"+e).css({fontSize:2*bwg_params[e].slideshow_description_font_size})}else jQuery(".bwg_slideshow_image_wrap_"+e).css({width:i}),jQuery(".bwg_slideshow_image_wrap_"+e).css({height:i*bwg_params[e].image_height/bwg_params[e].image_width}),jQuery(".bwg_slideshow_image_container_"+e).css({width:i-("horizontal"==bwg_params[e].filmstrip_direction?0:bwg_params[e].slideshow_filmstrip_width)}),jQuery(".bwg_slideshow_image_container_"+e).css({height:i*bwg_params[e].image_height/bwg_params[e].image_width-("horizontal"==bwg_params[e].filmstrip_direction?bwg_params[e].slideshow_filmstrip_height:0)}),jQuery(".bwg_slideshow_image_"+e).css({cssText:"max-width: "+(i-("horizontal"==bwg_params[e].filmstrip_direction?0:bwg_params[e].slideshow_filmstrip_width))+"px !important; max-height: "+(i*(bwg_params[e].image_height/bwg_params[e].image_width)-("horizontal"==bwg_params[e].filmstrip_direction?bwg_params[e].slideshow_filmstrip_height:0)-1)+"px !important;"}),jQuery(".bwg_slideshow_embed_"+e).css({cssText:"width: "+(i-("horizontal"==bwg_params[e].filmstrip_direction?0:bwg_params[e].slideshow_filmstrip_width))+"px !important; height: "+(i*(bwg_params[e].image_height/bwg_params[e].image_width)-("horizontal"==bwg_params[e].filmstrip_direction?bwg_params[e].slideshow_filmstrip_height:0)-1)+"px !important;"}),bwg_resize_instagram_post(e),bwg_change_watermark_container(e),"horizontal"==bwg_params[e].filmstrip_direction?(jQuery(".bwg_slideshow_filmstrip_container_"+e).css({width:i}),jQuery(".bwg_slideshow_filmstrip_"+e).css({width:i-40})):(jQuery(".bwg_slideshow_filmstrip_container_"+e).css({height:i*bwg_params[e].image_height/bwg_params[e].image_width}),jQuery(".bwg_slideshow_filmstrip_"+e).css({height:i*bwg_params[e].image_height/bwg_params[e].image_width-40})),jQuery(".bwg_slideshow_dots_container_"+e).css({width:i}),jQuery("#bwg_slideshow_play_pause-ico_"+e).css({fontSize:i*bwg_params[e].slideshow_play_pause_btn_size/bwg_params[e].image_width}),jQuery(".bwg_slideshow_watermark_image_"+e).css({maxWidth:i*bwg_params[e].watermark_width/bwg_params[e].image_width,maxHeight:i*bwg_params[e].watermark_height/bwg_params[e].image_width}),jQuery(".bwg_slideshow_watermark_text_"+e+", .bwg_slideshow_watermark_text_"+e+":hover").css({fontSize:i*bwg_params[e].watermark_font_size/bwg_params[e].image_width}),jQuery(".bwg_slideshow_title_text_"+e).css({fontSize:2*i*bwg_params[e].slideshow_title_font_size/bwg_params[e].image_width}),jQuery(".bwg_slideshow_description_text_"+e).css({fontSize:2*i*bwg_params[e].slideshow_description_font_size/bwg_params[e].image_width}),jQuery(".bwg_slideshow_image_"+e).css({display:"inline-block"});a[parseInt(jQuery("#bwg_current_image_key_"+e).val())].is_embed_video?jQuery("#bwg_slideshow_play_pause_"+e).css({display:"none"}):jQuery("#bwg_slideshow_play_pause_"+e).css({display:""})}function bwg_popup_resize(e){void 0!==e&&""!==e?bwg_popup_resize_slidshow(e):bwg_popup_resize_lightbox()}function bwg_change_image(e,t,i,a,r){void 0!==r&&""!==r?bwg_change_image_slideshow(e,t,i,a,r):bwg_change_image_lightbox(e,t,i=gallery_box_data.data,a)}function bwg_resize_instagram_post(e){if(void 0!==e&&""!==e){if(jQuery(".inner_instagram_iframe_bwg_embed_frame_"+e).length){var t=jQuery(".bwg_slideshow_embed_"+e).width(),i=jQuery(".bwg_slideshow_embed_").height();jQuery(".inner_instagram_iframe_bwg_embed_frame_"+e).each(function(){var e=jQuery(this).parent();i/(parseInt(e.attr("data-height"))+96)<t/parseInt(e.attr("data-width"))?(e.height(i),e.width((e.height()-96)*e.attr("data-width")/e.attr("data-height")+16)):(e.width(t),e.height((e.width()-16)*e.attr("data-height")/e.attr("data-width")+96))}),bwg_change_watermark_container(e)}}else if(jQuery(".inner_instagram_iframe_bwg_embed_frame").length){t=jQuery(".bwg_image_container").width(),i=jQuery(".bwg_image_container").height();jQuery(".inner_instagram_iframe_bwg_embed_frame").each(function(){var e=jQuery(this).parent();i/(parseInt(e.attr("data-height"))+176)<t/parseInt(e.attr("data-width"))?(e.height(i),e.width((e.height()-176)*e.attr("data-width")/e.attr("data-height")+16)):(e.width(t),e.height((e.width()-16)*e.attr("data-height")/e.attr("data-width")+96)),e.css({top:.5*(i-e.height())})}),bwg_change_watermark_container()}}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")}jQuery(function(){function i(e){bwg_slideshow_blur(e),0<jQuery(".bwg_play_pause").length&&(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"))}function a(){bwg_slideshow_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),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"))}var e=!1;jQuery(".bwg_container").each(function(){if(0<jQuery(this).find(".wd_error").length&&(e=!0),!e){var t=jQuery(this);setTimeout(function(){if(t[0].offsetHeight)var e=1;else e=0;setInterval(function(){t[0].offsetHeight?1==e&&(e=0,a()):0==e&&i(!(e=1))},200)},200)}}),e||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)}),e||(jQuery(".bwg-thumbnails, .bwg-masonry-thumbnails, .bwg-album-thumbnails").each(function(){bwg_all_thumnails_loaded(this)}),bwg_slideshow_resize(),bwg_image_browser_resize(),bwg_carousel_resize(),bwg_blog_style_resize(),jQuery(".bwg-mosaic-thumbnails").each(function(){bwg_thumbnail_mosaic(this)})),bwg_resize_search_line()},0)}),jQuery(window).on("load",function(){var e=!1;jQuery(".bwg_container").each(function(){0<jQuery(this).find(".wd_error").length&&(e=!0)}),e||(bwg_blog_style_onload(),jQuery(".bwg-mosaic-thumbnails").each(function(){bwg_thumbnail_mosaic(this)}))}),jQuery(".bwg-masonry-thumb-span img, .bwg-mosaic-thumb-span img").on("error",function(){jQuery(this).height(100),jQuery(this).width(100)});
languages/bwg-tr_TR.mo CHANGED
Binary file
languages/bwg-tr_TR.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: bwg\n"
4
- "POT-Creation-Date: 2019-11-06 12:30+0400\n"
5
- "PO-Revision-Date: 2021-02-01 17:19+0400\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: tr_TR\n"
@@ -10,90 +10,83 @@ msgstr ""
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
  "X-Generator: Poedit 2.4.2\n"
13
- "X-Poedit-Basepath: ..\n"
14
- "Plural-Forms: nplurals=1; plural=0;\n"
15
- "X-Poedit-KeywordsList: __;_e\n"
 
16
  "X-Poedit-SearchPath-0: .\n"
 
17
 
18
  #: addons/addons.php:6
19
- msgid "Photo Gallery Ecommerce"
20
- msgstr ""
21
-
22
- #: addons/addons.php:8
23
- msgid ""
24
- "Using Photo Gallery Ecommerce you can sell images included in galleries "
25
- "either as digital downloads or products/prints via Paypal or Stripe."
26
- msgstr ""
27
-
28
- #: addons/addons.php:13
29
  msgid "NextGen Gallery Import to Photo Gallery"
30
  msgstr ""
31
 
32
- #: addons/addons.php:15
33
  msgid ""
34
  "This addon integrates NextGen with Photo Gallery allowing to import images "
35
  "and related data from NextGen to use with Photo Gallery"
36
  msgstr ""
37
 
38
- #: addons/addons.php:20
39
  msgid "Photo Gallery Export / Import"
40
  msgstr ""
41
 
42
- #: addons/addons.php:22
43
  msgid ""
44
  "Photo Gallery Export/Import helps to move created galleries and gallery "
45
  "groups from one site to another. This way you can save the gallery/album "
46
  "options and manual modifications."
47
  msgstr ""
48
 
49
- #: addons/addons.php:27
50
  msgid "Photo Gallery Google Photos Integration"
51
  msgstr ""
52
 
53
- #: addons/addons.php:29
54
  msgid "Link and display your Google Photos albums in one click."
55
  msgstr ""
56
 
57
- #: addons/addons.php:39
58
  msgid "Photo Gallery Add-ons"
59
  msgstr ""
60
 
61
- #: addons/addons.php:72
62
  msgid "GET THIS ADD ON"
63
  msgstr ""
64
 
65
- #: admin/controllers/AddTags.php:53 admin/views/Galleries.php:782
66
- #: photo-gallery.php:467
67
  msgid "Tags"
68
  msgstr ""
69
 
70
  #: admin/controllers/Albums.php:38 admin/controllers/Comments.php:40
71
- #: admin/controllers/Galleries.php:34 admin/views/Albums.php:111
72
- #: admin/views/Albums.php:183 admin/views/Comments.php:109
73
- #: admin/views/Galleries.php:118 admin/views/Galleries.php:213
74
- #: admin/views/Galleries.php:731 framework/WDWLibrary.php:2475
75
  msgid "Publish"
76
  msgstr ""
77
 
78
  #: admin/controllers/Albums.php:39 admin/controllers/Comments.php:41
79
- #: admin/controllers/Galleries.php:35 framework/WDWLibrary.php:2476
80
  msgid "published"
81
  msgstr ""
82
 
83
  #: admin/controllers/Albums.php:42 admin/controllers/Comments.php:44
84
- #: admin/controllers/Galleries.php:38 admin/views/Albums.php:111
85
- #: admin/views/Comments.php:109 admin/views/Galleries.php:118
86
- #: admin/views/Galleries.php:731 framework/WDWLibrary.php:2480
87
  msgid "Unpublish"
88
  msgstr ""
89
 
90
  #: admin/controllers/Albums.php:43 admin/controllers/Comments.php:45
91
- #: admin/controllers/Galleries.php:39 framework/WDWLibrary.php:2481
92
  msgid "unpublished"
93
  msgstr ""
94
 
95
- #: admin/controllers/Albums.php:46 admin/controllers/Themes.php:39
96
- #: admin/views/Albums.php:112 admin/views/Themes.php:105
 
97
  msgid "Duplicate"
98
  msgstr ""
99
 
@@ -102,29 +95,38 @@ msgid "duplicate"
102
  msgstr ""
103
 
104
  #: admin/controllers/Albums.php:50 admin/controllers/Comments.php:48
105
- #: admin/controllers/Galleries.php:42 admin/controllers/Ratings.php:41
106
- #: admin/controllers/Themes.php:43 admin/views/Albums.php:113
107
- #: admin/views/Comments.php:112 admin/views/Galleries.php:119
108
- #: admin/views/Galleries.php:738 admin/views/Ratings.php:84
109
- #: admin/views/Themes.php:106 framework/WDWLibrary.php:2485
110
  msgid "Delete"
111
  msgstr "Yorum silin"
112
 
113
  #: admin/controllers/Albums.php:51 admin/controllers/Comments.php:49
114
- #: admin/controllers/Galleries.php:43 admin/controllers/Ratings.php:42
115
- #: admin/controllers/Themes.php:44 framework/WDWLibrary.php:2486
116
  msgid "deleted"
117
  msgstr ""
118
 
119
- #: admin/controllers/Albums.php:95 photo-gallery.php:464
120
  msgid "Gallery Groups"
121
  msgstr ""
122
 
 
 
 
 
 
 
 
 
 
123
  #: admin/controllers/Albumsgalleries.php:50
124
  msgid "Galleries / Gallery groups"
125
  msgstr ""
126
 
127
- #: admin/controllers/Comments.php:91 photo-gallery.php:475
128
  msgid "Comments"
129
  msgstr "Yorum"
130
 
@@ -136,285 +138,285 @@ msgstr ""
136
  msgid "Filter by image"
137
  msgstr ""
138
 
139
- #: admin/controllers/Galleries.php:93 photo-gallery.php:1740
 
 
 
 
140
  msgid "Galleries"
141
  msgstr "Galeri boş"
142
 
143
- #: admin/controllers/Galleries.php:343
144
  msgid "Mixed"
145
  msgstr ""
146
 
147
- #: admin/controllers/Galleries.php:343
148
  msgid "Instagram only"
149
  msgstr ""
150
 
151
- #: admin/controllers/Galleries.php:345 admin/views/Options.php:581
152
  msgid "Facebook"
153
  msgstr "Facebook'ta paylaşın"
154
 
155
- #: admin/controllers/Options.php:48
156
- msgid "Edit options"
157
  msgstr ""
158
 
159
  #: admin/controllers/Options.php:53 admin/controllers/Shortcode.php:40
160
- #: admin/views/Options.php:375 admin/views/Shortcode.php:68
161
- #: admin/views/Shortcode.php:430 photo-gallery.php:1585
162
  msgid "Thumbnails"
163
  msgstr ""
164
 
165
  #: admin/controllers/Options.php:54 admin/controllers/Options.php:63
166
  #: admin/controllers/Shortcode.php:41 admin/controllers/Shortcode.php:50
167
- #: admin/controllers/Themes.php:263 admin/views/Options.php:383
168
- #: admin/views/Options.php:473 admin/views/Options.php:2681
169
- #: admin/views/Options.php:3220 admin/views/Shortcode.php:76
170
- #: admin/views/Shortcode.php:146 admin/views/Widget.php:139
171
- #: photo-gallery.php:1589
172
  msgid "Masonry"
173
  msgstr ""
174
 
175
  #: admin/controllers/Options.php:55 admin/controllers/Shortcode.php:42
176
- #: admin/controllers/Themes.php:264 admin/views/Options.php:392
177
- #: admin/views/Options.php:2682 admin/views/Options.php:3221
178
- #: admin/views/Shortcode.php:85 photo-gallery.php:1593
179
  msgid "Mosaic"
180
  msgstr ""
181
 
182
  #: admin/controllers/Options.php:56 admin/controllers/Shortcode.php:43
183
- #: admin/controllers/Themes.php:265 admin/views/Options.php:401
184
- #: admin/views/Options.php:2683 admin/views/Options.php:3222
185
- #: admin/views/Shortcode.php:94 photo-gallery.php:1559 photo-gallery.php:1597
186
  msgid "Slideshow"
187
  msgstr ""
188
 
189
  #: admin/controllers/Options.php:57 admin/controllers/Shortcode.php:44
190
- #: admin/views/Options.php:407 admin/views/Options.php:2684
191
- #: admin/views/Options.php:3223 admin/views/Shortcode.php:100
192
- #: photo-gallery.php:1601
193
  msgid "Image Browser"
194
  msgstr ""
195
 
196
  #: admin/controllers/Options.php:58 admin/controllers/Shortcode.php:45
197
- #: admin/views/Options.php:413 admin/views/Options.php:2685
198
- #: admin/views/Options.php:3224 admin/views/Shortcode.php:106
199
- #: photo-gallery.php:1617
200
  msgid "Blog Style"
201
  msgstr ""
202
 
203
  #: admin/controllers/Options.php:59 admin/controllers/Shortcode.php:46
204
- #: admin/controllers/Themes.php:273 admin/views/Options.php:422
205
- #: admin/views/Options.php:2686 admin/views/Options.php:3225
206
- #: admin/views/Shortcode.php:115 photo-gallery.php:1629
207
  msgid "Carousel"
208
  msgstr ""
209
 
210
  #: admin/controllers/Options.php:62 admin/controllers/Shortcode.php:49
211
- #: admin/views/Options.php:467 admin/views/Shortcode.php:140
212
  msgid "Compact"
213
  msgstr ""
214
 
215
  #: admin/controllers/Options.php:64 admin/controllers/Shortcode.php:51
216
- #: admin/views/Options.php:482 admin/views/Shortcode.php:155
217
  msgid "Extended"
218
  msgstr ""
219
 
220
- #: admin/controllers/Options.php:130
221
  msgid "Default values restored. Changes must be saved."
222
  msgstr ""
223
 
224
- #: admin/controllers/Options.php:162
225
  msgid "Uploads directory doesn't exist. Old value is restored."
226
  msgstr ""
227
 
228
- #: admin/controllers/Options.php:165
229
  msgid ""
230
  "Warning: \"photo-gallery\" folder already exists in uploads directory. Old "
231
  "value is restored."
232
  msgstr ""
233
 
234
- #: admin/controllers/Options.php:195
235
  msgid "All thumbnails are successfully recreated."
236
  msgstr ""
237
 
238
- #: admin/controllers/Options.php:208
239
  msgid "Item Succesfully Saved."
240
  msgstr ""
241
 
242
- #: admin/controllers/Options.php:248 framework/WDWLibrary.php:218
243
  msgid ""
244
  "http:// wrapper is disabled in the server configuration by allow_url_fopen=0."
245
  msgstr ""
246
 
247
- #: admin/controllers/Options.php:254 framework/WDWLibrary.php:213
248
  msgid "Watermark could not be set. The image URL is incorrect."
249
  msgstr ""
250
 
251
- #: admin/controllers/Options.php:258
252
  msgid "All images are successfully watermarked."
253
  msgstr ""
254
 
255
- #: admin/controllers/Ratings.php:86 photo-gallery.php:478
256
  msgid "Ratings"
257
  msgstr ""
258
 
259
- #: admin/controllers/Themes.php:40
260
- msgid "duplicated"
261
- msgstr ""
262
-
263
- #: admin/controllers/Themes.php:88 photo-gallery.php:471
264
  msgid "Themes"
265
  msgstr ""
266
 
267
- #: admin/controllers/Themes.php:262 admin/views/Options.php:2680
268
- #: admin/views/Options.php:3219 admin/views/Widget.php:138
269
  msgid "Thumbnail"
270
  msgstr ""
271
 
272
- #: admin/controllers/Themes.php:266
273
  msgid "Image browser"
274
  msgstr ""
275
 
276
- #: admin/controllers/Themes.php:267
277
  msgid "Compact album"
278
  msgstr ""
279
 
280
- #: admin/controllers/Themes.php:268
281
  msgid "Masonry album"
282
  msgstr ""
283
 
284
- #: admin/controllers/Themes.php:269
285
  msgid "Extended album"
286
  msgstr ""
287
 
288
- #: admin/controllers/Themes.php:270
289
  msgid "Blog style"
290
  msgstr ""
291
 
292
- #: admin/controllers/Themes.php:271 admin/views/WidgetTags.php:96
293
- #: photo-gallery.php:1551 photo-gallery.php:1621
294
  msgid "Lightbox"
295
  msgstr ""
296
 
297
- #: admin/controllers/Themes.php:272
298
  msgid "Navigation"
299
  msgstr ""
300
 
301
- #: admin/controllers/Themes.php:277 admin/controllers/Themes.php:316
302
- #: admin/controllers/Themes.php:323 admin/controllers/WidgetSlideshow.php:44
303
- #: admin/views/Options.php:677 admin/views/Options.php:830
304
- #: admin/views/Options.php:1060 admin/views/Options.php:1108
305
- #: admin/views/Options.php:1326 admin/views/Options.php:1562
306
- #: admin/views/Options.php:2156 admin/views/Shortcode.php:299
307
  msgid "None"
308
  msgstr ""
309
 
310
- #: admin/controllers/Themes.php:278
311
  msgid "Solid"
312
  msgstr ""
313
 
314
- #: admin/controllers/Themes.php:279
315
  msgid "Dotted"
316
  msgstr ""
317
 
318
- #: admin/controllers/Themes.php:280
319
  msgid "Dashed"
320
  msgstr ""
321
 
322
- #: admin/controllers/Themes.php:281 admin/controllers/Themes.php:333
323
  msgid "Double"
324
  msgstr ""
325
 
326
- #: admin/controllers/Themes.php:282
327
  msgid "Groove"
328
  msgstr ""
329
 
330
- #: admin/controllers/Themes.php:283
331
  msgid "Ridge"
332
  msgstr ""
333
 
334
- #: admin/controllers/Themes.php:284
335
  msgid "Inset"
336
  msgstr ""
337
 
338
- #: admin/controllers/Themes.php:285
339
  msgid "Outset"
340
  msgstr ""
341
 
342
- #: admin/controllers/Themes.php:303 admin/views/Themes.php:1278
343
- #: admin/views/Themes.php:3903 admin/views/Themes.php:4385
344
  msgid "Left"
345
  msgstr ""
346
 
347
- #: admin/controllers/Themes.php:304
348
  msgid "Center"
349
  msgstr ""
350
 
351
- #: admin/controllers/Themes.php:305 admin/views/Themes.php:1276
352
- #: admin/views/Themes.php:3901 admin/views/Themes.php:4387
353
  msgid "Right"
354
  msgstr ""
355
 
356
- #: admin/controllers/Themes.php:309
357
  msgid "Lighter"
358
  msgstr ""
359
 
360
- #: admin/controllers/Themes.php:310
361
  msgid "Normal"
362
  msgstr ""
363
 
364
- #: admin/controllers/Themes.php:311
365
  msgid "Bold"
366
  msgstr ""
367
 
368
- #: admin/controllers/Themes.php:317 admin/controllers/Themes.php:324
369
  msgid "Rotate"
370
  msgstr ""
371
 
372
- #: admin/controllers/Themes.php:318 admin/controllers/Themes.php:325
373
  msgid "Scale"
374
  msgstr ""
375
 
376
- #: admin/controllers/Themes.php:319 admin/controllers/Themes.php:327
377
  msgid "Skew"
378
  msgstr ""
379
 
380
- #: admin/controllers/Themes.php:326
381
  msgid "Zoom"
382
  msgstr ""
383
 
384
- #: admin/controllers/Themes.php:331
385
  msgid "Angle"
386
  msgstr ""
387
 
388
- #: admin/controllers/Themes.php:332
389
  msgid "Chevron"
390
  msgstr ""
391
 
392
- #: admin/controllers/Themes.php:337
393
  msgid "Star"
394
  msgstr ""
395
 
396
- #: admin/controllers/Themes.php:338
397
  msgid "Bell"
398
  msgstr ""
399
 
400
- #: admin/controllers/Themes.php:339
401
  msgid "Circle"
402
  msgstr ""
403
 
404
- #: admin/controllers/Themes.php:340
405
  msgid "Flag"
406
  msgstr ""
407
 
408
- #: admin/controllers/Themes.php:341
409
  msgid "Heart"
410
  msgstr ""
411
 
412
- #: admin/controllers/Themes.php:342
413
  msgid "Square"
414
  msgstr ""
415
 
416
  #: admin/controllers/Uninstall.php:59 admin/controllers/Uninstall.php:100
417
- #: admin/views/Options.php:351
418
  #, php-format
419
  msgid "Uninstall %s"
420
  msgstr ""
@@ -427,71 +429,71 @@ msgstr ""
427
  msgid "Add Photo Gallery slideshow to Your widget area."
428
  msgstr ""
429
 
430
- #: admin/controllers/WidgetSlideshow.php:45 admin/views/Options.php:1061
431
  msgid "Cube Horizontal"
432
  msgstr ""
433
 
434
- #: admin/controllers/WidgetSlideshow.php:46 admin/views/Options.php:1062
435
  msgid "Cube Vertical"
436
  msgstr ""
437
 
438
- #: admin/controllers/WidgetSlideshow.php:47 admin/views/Options.php:1063
439
  msgid "Fade"
440
  msgstr ""
441
 
442
- #: admin/controllers/WidgetSlideshow.php:48 admin/views/Options.php:1064
443
  msgid "Slice Horizontal"
444
  msgstr ""
445
 
446
- #: admin/controllers/WidgetSlideshow.php:49 admin/views/Options.php:1065
447
  msgid "Slice Vertical"
448
  msgstr ""
449
 
450
- #: admin/controllers/WidgetSlideshow.php:50 admin/views/Options.php:1066
451
  msgid "Slide Horizontal"
452
  msgstr ""
453
 
454
- #: admin/controllers/WidgetSlideshow.php:51 admin/views/Options.php:1067
455
  msgid "Slide Vertical"
456
  msgstr ""
457
 
458
- #: admin/controllers/WidgetSlideshow.php:52 admin/views/Options.php:1068
459
  msgid "Scale Out"
460
  msgstr ""
461
 
462
- #: admin/controllers/WidgetSlideshow.php:53 admin/views/Options.php:1069
463
  msgid "Scale In"
464
  msgstr ""
465
 
466
- #: admin/controllers/WidgetSlideshow.php:54 admin/views/Options.php:1070
467
  msgid "Block Scale"
468
  msgstr ""
469
 
470
- #: admin/controllers/WidgetSlideshow.php:55 admin/views/Options.php:1071
471
  msgid "Kaleidoscope"
472
  msgstr ""
473
 
474
- #: admin/controllers/WidgetSlideshow.php:56 admin/views/Options.php:1072
475
  msgid "Fan"
476
  msgstr ""
477
 
478
- #: admin/controllers/WidgetSlideshow.php:57 admin/views/Options.php:1073
479
  msgid "Blind Horizontal"
480
  msgstr ""
481
 
482
- #: admin/controllers/WidgetSlideshow.php:58 admin/views/Options.php:1074
483
  msgid "Blind Vertical"
484
  msgstr ""
485
 
486
- #: admin/controllers/WidgetSlideshow.php:59 admin/views/Options.php:1075
487
- #: admin/views/Options.php:1151 admin/views/Options.php:1369
488
- #: admin/views/Options.php:1605 admin/views/Options.php:1802
489
- #: admin/views/Options.php:2042 admin/views/Options.php:2201
490
- #: admin/views/Options.php:2378 admin/views/Options.php:2563
491
- #: admin/views/Options.php:2585 admin/views/Options.php:2863
492
- #: admin/views/Options.php:2885 admin/views/Options.php:3103
493
- #: admin/views/Options.php:3125 admin/views/Widget.php:159
494
- #: frontend/views/view.php:433
495
  msgid "Random"
496
  msgstr "Rasgele"
497
 
@@ -499,423 +501,434 @@ msgstr "Rasgele"
499
  msgid "Add Photo Gallery Tags dynamic cloud to Your widget area."
500
  msgstr ""
501
 
502
- #: admin/controllers/elementorWidget.php:36 admin/views/Albumsgalleries.php:119
503
- #: admin/views/Shortcode.php:57 admin/views/Shortcode.php:186
504
- #: admin/views/Shortcode.php:264 admin/views/Widget.php:120
505
- msgid "Gallery"
506
- msgstr ""
507
-
508
- #: admin/controllers/elementorWidget.php:68 admin/views/Options.php:74
509
- #: photo-gallery.php:417
510
- msgid "General"
511
- msgstr ""
512
-
513
- #: admin/models/Comments.php:62 admin/models/Ratings.php:81
514
- #: framework/WDWLibrary.php:2751
515
  msgid "All galleries"
516
  msgstr ""
517
 
518
- #: admin/models/Comments.php:76 admin/models/Ratings.php:100
519
- #: admin/views/Widget.php:126 framework/WDWLibrary.php:2732
520
  msgid "All images"
521
  msgstr ""
522
 
523
- #: admin/models/Galleries.php:1220 admin/views/Galleries.php:760
524
  msgid ""
525
  "Selected pricelist item longest dimension greater than some original images "
526
  "dimensions."
527
  msgstr ""
528
 
529
- #: admin/views/AddTags.php:66 admin/views/Albums.php:58
530
- #: admin/views/Comments.php:65 admin/views/Themes.php:77 photo-gallery.php:1436
 
531
  msgid "Select all"
532
  msgstr ""
533
 
534
- #: admin/views/AddTags.php:69 admin/views/AddTags.php:87
535
  #: admin/views/Comments.php:69 admin/views/Comments.php:90
536
- #: filemanager/view.php:135 frontend/views/BWGViewGalleryBox.php:994
537
- #: frontend/views/BWGViewGalleryBox.php:1112
538
- #: frontend/views/BWGViewGalleryBox.php:1226
539
  msgid "Name"
540
  msgstr "Ad"
541
 
542
- #: admin/views/AddTags.php:108
543
  msgid "Remove from image"
544
  msgstr "Sıfırlayın"
545
 
546
- #: admin/views/AddTags.php:109
547
  msgid "Add to image"
548
  msgstr ""
549
 
550
- #: admin/views/AdminView.php:95
551
- msgid "Add New"
552
  msgstr ""
553
 
554
- #: admin/views/AdminView.php:198 framework/WDWLibrary.php:349
555
- #: framework/WDWLibrary.php:527 photo-gallery.php:1412
556
  msgid "Search"
557
  msgstr "Ara"
558
 
559
- #: admin/views/AdminView.php:260
560
  msgid "First page"
561
  msgstr "İlk"
562
 
563
- #: admin/views/AdminView.php:261
564
  msgid "Previous page"
565
  msgstr "Önceki"
566
 
567
- #: admin/views/AdminView.php:266
568
  msgid "Current Page"
569
  msgstr ""
570
 
571
- #: admin/views/AdminView.php:269 framework/WDWLibrary.php:480
572
- #: framework/WDWLibrary.php:629 frontend/views/view.php:663
573
  msgid "of"
574
  msgstr "arasında"
575
 
576
- #: admin/views/AdminView.php:282
577
  msgid "Next page"
578
  msgstr "Sonraki"
579
 
580
- #: admin/views/AdminView.php:283
581
  msgid "Last page"
582
  msgstr "Son"
583
 
584
- #: admin/views/AdminView.php:315 filemanager/view.php:205
 
 
 
 
 
 
 
 
585
  msgid "Select All"
586
  msgstr ""
587
 
588
- #: admin/views/AdminView.php:320
589
  msgid "Select bulk action"
590
  msgstr ""
591
 
592
- #: admin/views/AdminView.php:322
593
  msgid "Bulk Actions"
594
  msgstr ""
595
 
596
- #: admin/views/AdminView.php:331 admin/views/Galleries.php:398
597
- #: admin/views/Galleries.php:726 admin/views/Galleries.php:727
598
- #: admin/views/Galleries.php:728 admin/views/Options.php:157
599
- #: admin/views/Options.php:957 admin/views/Options.php:960
600
  #: filemanager/view.php:66
601
  msgid "This option is disabled in demo."
602
  msgstr ""
603
 
604
- #: admin/views/AdminView.php:331
605
  msgid "Apply"
606
  msgstr ""
607
 
608
- #: admin/views/Albums.php:61 admin/views/Albums.php:97
609
- #: admin/views/Albumsgalleries.php:78 admin/views/Albumsgalleries.php:102
610
- #: admin/views/Galleries.php:60 admin/views/Galleries.php:63
611
- #: admin/views/Galleries.php:104 admin/views/Options.php:1145
612
- #: admin/views/Options.php:1363 admin/views/Options.php:1599
613
- #: admin/views/Options.php:1796 admin/views/Options.php:2036
614
- #: admin/views/Options.php:2195 admin/views/Options.php:2372
615
- #: admin/views/Options.php:2562 admin/views/Options.php:2579
616
- #: admin/views/Options.php:2862 admin/views/Options.php:2879
617
- #: admin/views/Options.php:3102 admin/views/Options.php:3119
618
- #: admin/views/Themes.php:80 admin/views/Themes.php:99
 
 
 
 
 
619
  msgid "Title"
620
  msgstr ""
621
 
622
- #: admin/views/Albums.php:62 admin/views/Albums.php:120
623
- #: admin/views/Albums.php:241 admin/views/Galleries.php:65
624
- #: admin/views/Galleries.php:127 admin/views/Galleries.php:281
625
  msgid "Author"
626
  msgstr ""
627
 
628
- #: admin/views/Albums.php:106 admin/views/Albums.php:333
629
- #: admin/views/Albumsgalleries.php:111 admin/views/Comments.php:102
630
- #: admin/views/Galleries.php:113 admin/views/Galleries.php:718
631
  msgid "Unpublished"
632
  msgstr ""
633
 
634
- #: admin/views/Albums.php:110 admin/views/Editimage.php:325
635
- #: admin/views/Galleries.php:117 admin/views/Galleries.php:726
636
- #: admin/views/Themes.php:104
637
  msgid "Edit"
638
  msgstr ""
639
 
640
- #: admin/views/Albums.php:113 admin/views/Comments.php:112
641
- #: admin/views/Galleries.php:119 admin/views/Galleries.php:732
642
- #: admin/views/Ratings.php:84 admin/views/Themes.php:106
643
  msgid "Do you want to delete selected item?"
644
  msgstr ""
645
 
646
- #: admin/views/Albums.php:114 admin/views/Albums.php:186
647
- #: admin/views/Galleries.php:120 admin/views/Galleries.php:217
648
  msgid "Preview"
649
  msgstr "Önceki"
650
 
651
- #: admin/views/Albums.php:117 admin/views/Albumsgalleries.php:115
652
- #: admin/views/Comments.php:115 admin/views/Galleries.php:123
653
- #: admin/views/Galleries.php:742 admin/views/Ratings.php:87
654
- #: admin/views/Themes.php:109
655
  msgid "Show more details"
656
  msgstr "Yorumları göster"
657
 
658
- #: admin/views/Albums.php:174
659
  msgid "Gallery Group Title"
660
  msgstr ""
661
 
662
- #: admin/views/Albums.php:183 admin/views/Galleries.php:213
663
- #: admin/views/Shortcode.php:576 admin/views/Shortcode.php:2126
664
- #: admin/views/Themes.php:181
665
  msgid "Update"
666
  msgstr ""
667
 
668
- #: admin/views/Albums.php:197 admin/views/Albums.php:233
669
- #: admin/views/Galleries.php:229 admin/views/Galleries.php:270
670
- #: admin/views/Options.php:528 admin/views/Options.php:596
671
- #: admin/views/Options.php:664 admin/views/Shortcode.php:260
672
- #: admin/views/Shortcode.php:275
673
  msgid "Toggle panel:"
674
  msgstr ""
675
 
676
- #: admin/views/Albums.php:201 admin/views/Galleries.php:233
677
  msgid "Basic"
678
  msgstr ""
679
 
680
- #: admin/views/Albums.php:206 admin/views/Galleries.php:238
681
  msgid "Preview image"
682
  msgstr ""
683
 
684
- #: admin/views/Albums.php:208 admin/views/Galleries.php:242
685
  msgid "Add Preview Image"
686
  msgstr ""
687
 
688
- #: admin/views/Albums.php:209 admin/views/Albums.php:296
689
- #: admin/views/Galleries.php:245 admin/views/Galleries.php:446
690
- #: filemanager/view.php:213
691
  msgid "Add"
692
  msgstr ""
693
 
694
- #: admin/views/Albums.php:214
695
  msgid ""
696
  "Add a preview image, which will be displayed as the cover image of the "
697
  "gallery group when it is published in a parent gallery group."
698
  msgstr ""
699
 
700
- #: admin/views/Albums.php:218 admin/views/Galleries.php:255
701
  msgid "Published"
702
  msgstr ""
703
 
704
- #: admin/views/Albums.php:220 admin/views/Galleries.php:257
705
- #: admin/views/Options.php:134 admin/views/Options.php:175
706
- #: admin/views/Options.php:185 admin/views/Options.php:195
707
  #: admin/views/Options.php:214 admin/views/Options.php:224
708
- #: admin/views/Options.php:234 admin/views/Options.php:244
709
- #: admin/views/Options.php:256 admin/views/Options.php:267
710
- #: admin/views/Options.php:277 admin/views/Options.php:287
711
- #: admin/views/Options.php:297 admin/views/Options.php:307
712
- #: admin/views/Options.php:317 admin/views/Options.php:335
713
- #: admin/views/Options.php:341 admin/views/Options.php:628
714
- #: admin/views/Options.php:639 admin/views/Options.php:650
715
- #: admin/views/Options.php:1167 admin/views/Options.php:1193
716
- #: admin/views/Options.php:1203 admin/views/Options.php:1215
717
- #: admin/views/Options.php:1225 admin/views/Options.php:1246
718
- #: admin/views/Options.php:1256 admin/views/Options.php:1385
719
- #: admin/views/Options.php:1411 admin/views/Options.php:1421
720
- #: admin/views/Options.php:1433 admin/views/Options.php:1443
721
- #: admin/views/Options.php:1464 admin/views/Options.php:1475
722
- #: admin/views/Options.php:1485 admin/views/Options.php:1532
723
- #: admin/views/Options.php:1621 admin/views/Options.php:1647
724
- #: admin/views/Options.php:1657 admin/views/Options.php:1669
725
- #: admin/views/Options.php:1679 admin/views/Options.php:1699
726
- #: admin/views/Options.php:1709 admin/views/Options.php:1818
727
- #: admin/views/Options.php:1828 admin/views/Options.php:1838
728
- #: admin/views/Options.php:1860 admin/views/Options.php:1881
729
- #: admin/views/Options.php:1918 admin/views/Options.php:1928
730
- #: admin/views/Options.php:1965 admin/views/Options.php:1984
731
- #: admin/views/Options.php:2013 admin/views/Options.php:2022
732
- #: admin/views/Options.php:2058 admin/views/Options.php:2084
733
- #: admin/views/Options.php:2094 admin/views/Options.php:2106
734
- #: admin/views/Options.php:2116 admin/views/Options.php:2126
735
- #: admin/views/Options.php:2217 admin/views/Options.php:2243
736
- #: admin/views/Options.php:2253 admin/views/Options.php:2265
737
- #: admin/views/Options.php:2275 admin/views/Options.php:2285
738
- #: admin/views/Options.php:2296 admin/views/Options.php:2307
739
- #: admin/views/Options.php:2394 admin/views/Options.php:2417
740
- #: admin/views/Options.php:2428 admin/views/Options.php:2439
741
- #: admin/views/Options.php:2450 admin/views/Options.php:2461
742
- #: admin/views/Options.php:2601 admin/views/Options.php:2627
743
- #: admin/views/Options.php:2637 admin/views/Options.php:2649
744
- #: admin/views/Options.php:2659 admin/views/Options.php:2707
745
- #: admin/views/Options.php:2742 admin/views/Options.php:2752
746
- #: admin/views/Options.php:2901 admin/views/Options.php:2927
747
- #: admin/views/Options.php:2937 admin/views/Options.php:2949
748
- #: admin/views/Options.php:2959 admin/views/Options.php:2980
749
- #: admin/views/Options.php:3141 admin/views/Options.php:3167
750
- #: admin/views/Options.php:3177 admin/views/Options.php:3189
751
- #: admin/views/Options.php:3199 admin/views/Options.php:3209
752
- #: admin/views/Options.php:3246 admin/views/Options.php:3281
753
- #: admin/views/Options.php:3291 admin/views/Options.php:3345
754
- #: admin/views/Options.php:3356 admin/views/Options.php:3405
755
- #: admin/views/Options.php:3424 admin/views/Options.php:3460
756
- #: admin/views/Options.php:3483 admin/views/Options.php:3495
757
- #: admin/views/Options.php:3508 admin/views/Options.php:3519
758
- #: admin/views/Options.php:3530 admin/views/Options.php:3541
759
- #: admin/views/Options.php:3551 admin/views/Options.php:3561
760
- #: admin/views/Options.php:3581 admin/views/Options.php:3592
761
- #: admin/views/Options.php:3605 admin/views/Options.php:3615
762
- #: admin/views/Options.php:3625 admin/views/Options.php:3635
763
- #: admin/views/Options.php:3645 admin/views/Options.php:3666
764
- #: admin/views/Options.php:3677 admin/views/Options.php:3688
765
- #: admin/views/Options.php:3699 admin/views/Options.php:3713
766
- #: admin/views/Themes.php:221 admin/views/Themes.php:298
767
- #: admin/views/Themes.php:543 admin/views/Themes.php:607
768
- #: admin/views/Themes.php:865 admin/views/Themes.php:929
769
- #: admin/views/Themes.php:1920 admin/views/Themes.php:1998
770
- #: admin/views/Themes.php:2341 admin/views/Themes.php:2930
771
- #: admin/views/Themes.php:2994 admin/views/Themes.php:4702
772
- #: admin/views/Themes.php:4751 admin/views/Uninstall.php:77
 
 
 
 
 
773
  #: admin/views/WidgetSlideshow.php:114 admin/views/WidgetSlideshow.php:120
774
  #: admin/views/WidgetSlideshow.php:126 admin/views/WidgetTags.php:89
775
  #: admin/views/WidgetTags.php:111
776
  msgid "Yes"
777
  msgstr ""
778
 
779
- #: admin/views/Albums.php:222 admin/views/Galleries.php:259
780
- #: admin/views/Options.php:135 admin/views/Options.php:176
781
- #: admin/views/Options.php:186 admin/views/Options.php:196
782
  #: admin/views/Options.php:215 admin/views/Options.php:225
783
- #: admin/views/Options.php:235 admin/views/Options.php:245
784
- #: admin/views/Options.php:257 admin/views/Options.php:268
785
- #: admin/views/Options.php:278 admin/views/Options.php:288
786
- #: admin/views/Options.php:298 admin/views/Options.php:308
787
- #: admin/views/Options.php:318 admin/views/Options.php:336
788
- #: admin/views/Options.php:342 admin/views/Options.php:629
789
- #: admin/views/Options.php:640 admin/views/Options.php:651
790
- #: admin/views/Options.php:1168 admin/views/Options.php:1194
791
- #: admin/views/Options.php:1204 admin/views/Options.php:1216
792
- #: admin/views/Options.php:1226 admin/views/Options.php:1247
793
- #: admin/views/Options.php:1257 admin/views/Options.php:1386
794
- #: admin/views/Options.php:1412 admin/views/Options.php:1422
795
- #: admin/views/Options.php:1434 admin/views/Options.php:1444
796
- #: admin/views/Options.php:1465 admin/views/Options.php:1476
797
- #: admin/views/Options.php:1486 admin/views/Options.php:1533
798
- #: admin/views/Options.php:1622 admin/views/Options.php:1648
799
- #: admin/views/Options.php:1658 admin/views/Options.php:1670
800
- #: admin/views/Options.php:1680 admin/views/Options.php:1700
801
- #: admin/views/Options.php:1710 admin/views/Options.php:1819
802
- #: admin/views/Options.php:1829 admin/views/Options.php:1839
803
- #: admin/views/Options.php:1861 admin/views/Options.php:1882
804
- #: admin/views/Options.php:1919 admin/views/Options.php:1929
805
- #: admin/views/Options.php:1966 admin/views/Options.php:1985
806
- #: admin/views/Options.php:2014 admin/views/Options.php:2023
807
- #: admin/views/Options.php:2059 admin/views/Options.php:2085
808
- #: admin/views/Options.php:2095 admin/views/Options.php:2107
809
- #: admin/views/Options.php:2117 admin/views/Options.php:2127
810
- #: admin/views/Options.php:2218 admin/views/Options.php:2244
811
- #: admin/views/Options.php:2254 admin/views/Options.php:2266
812
- #: admin/views/Options.php:2276 admin/views/Options.php:2286
813
- #: admin/views/Options.php:2297 admin/views/Options.php:2308
814
- #: admin/views/Options.php:2395 admin/views/Options.php:2418
815
- #: admin/views/Options.php:2429 admin/views/Options.php:2440
816
- #: admin/views/Options.php:2451 admin/views/Options.php:2462
817
- #: admin/views/Options.php:2525 admin/views/Options.php:2602
818
- #: admin/views/Options.php:2628 admin/views/Options.php:2638
819
- #: admin/views/Options.php:2650 admin/views/Options.php:2660
820
- #: admin/views/Options.php:2708 admin/views/Options.php:2743
821
- #: admin/views/Options.php:2753 admin/views/Options.php:2825
822
- #: admin/views/Options.php:2902 admin/views/Options.php:2928
823
- #: admin/views/Options.php:2938 admin/views/Options.php:2950
824
- #: admin/views/Options.php:2960 admin/views/Options.php:2981
825
- #: admin/views/Options.php:3065 admin/views/Options.php:3142
826
- #: admin/views/Options.php:3168 admin/views/Options.php:3178
827
- #: admin/views/Options.php:3190 admin/views/Options.php:3200
828
- #: admin/views/Options.php:3210 admin/views/Options.php:3247
829
- #: admin/views/Options.php:3282 admin/views/Options.php:3292
830
- #: admin/views/Options.php:3346 admin/views/Options.php:3357
831
- #: admin/views/Options.php:3406 admin/views/Options.php:3425
832
- #: admin/views/Options.php:3474 admin/views/Options.php:3484
833
- #: admin/views/Options.php:3498 admin/views/Options.php:3509
834
- #: admin/views/Options.php:3520 admin/views/Options.php:3531
835
- #: admin/views/Options.php:3542 admin/views/Options.php:3552
836
- #: admin/views/Options.php:3562 admin/views/Options.php:3582
837
- #: admin/views/Options.php:3593 admin/views/Options.php:3606
838
- #: admin/views/Options.php:3616 admin/views/Options.php:3626
839
- #: admin/views/Options.php:3636 admin/views/Options.php:3646
840
- #: admin/views/Options.php:3667 admin/views/Options.php:3678
841
- #: admin/views/Options.php:3689 admin/views/Options.php:3700
842
- #: admin/views/Options.php:3714 admin/views/Themes.php:223
843
- #: admin/views/Themes.php:300 admin/views/Themes.php:545
844
- #: admin/views/Themes.php:609 admin/views/Themes.php:867
845
- #: admin/views/Themes.php:931 admin/views/Themes.php:1922
846
- #: admin/views/Themes.php:2000 admin/views/Themes.php:2343
847
- #: admin/views/Themes.php:2932 admin/views/Themes.php:2996
848
- #: admin/views/Themes.php:4704 admin/views/Themes.php:4753
 
 
 
 
 
849
  #: admin/views/WidgetSlideshow.php:115 admin/views/WidgetSlideshow.php:121
850
  #: admin/views/WidgetSlideshow.php:127 admin/views/WidgetTags.php:90
851
  #: admin/views/WidgetTags.php:112
852
  msgid "No"
853
  msgstr ""
854
 
855
- #: admin/views/Albums.php:237 admin/views/Galleries.php:274
856
- #: admin/views/Options.php:86 admin/views/Shortcode.php:293
857
  msgid "Advanced"
858
  msgstr ""
859
 
860
- #: admin/views/Albums.php:245 admin/views/Galleries.php:285
861
  msgid "Slug"
862
  msgstr ""
863
 
864
- #: admin/views/Albums.php:250 admin/views/Galleries.php:290
865
- #: admin/views/Galleries.php:752 frontend/views/BWGViewGalleryBox.php:1127
866
  msgid "Description"
867
  msgstr ""
868
 
869
- #: admin/views/Albums.php:277
870
  msgid "Galleries and Gallery Groups"
871
  msgstr ""
872
 
873
- #: admin/views/Albums.php:324 admin/views/Galleries.php:97
874
- #: admin/views/Galleries.php:694
875
  msgid "Drag to re-order"
876
  msgstr ""
877
 
878
- #: admin/views/Albums.php:332
879
  msgid "Remove"
880
  msgstr ""
881
 
882
- #: admin/views/Albumsgalleries.php:79 admin/views/Albumsgalleries.php:118
883
- #: admin/views/Galleries.php:714 admin/views/Options.php:1149
884
- #: admin/views/Options.php:1367 admin/views/Options.php:1603
885
- #: admin/views/Options.php:1800 admin/views/Options.php:2040
886
- #: admin/views/Options.php:2199 admin/views/Options.php:2376
887
- #: admin/views/Options.php:2583 admin/views/Options.php:2883
888
- #: admin/views/Options.php:3123
889
  msgid "Type"
890
  msgstr ""
891
 
892
- #: admin/views/Albumsgalleries.php:119 admin/views/Shortcode.php:60
893
- #: admin/views/Shortcode.php:264
894
  msgid "Gallery group"
895
  msgstr "Galeri boş"
896
 
897
- #: admin/views/Albumsgalleries.php:137
 
 
 
 
 
 
898
  msgid "Add to Gallery Group"
899
  msgstr ""
900
 
901
  #: admin/views/Comments.php:70 admin/views/Comments.php:118
902
- #: frontend/views/BWGViewGalleryBox.php:1000
903
  msgid "Email"
904
  msgstr "E-posta"
905
 
906
  #: admin/views/Comments.php:71 admin/views/Comments.php:121
907
- #: frontend/views/BWGViewGalleryBox.php:1005
908
  msgid "Comment"
909
  msgstr "Yorum"
910
 
911
  #: admin/views/Comments.php:72 admin/views/Comments.php:124
912
- #: admin/views/Galleries.php:711 admin/views/Options.php:1146
913
- #: admin/views/Options.php:1364 admin/views/Options.php:1600
914
- #: admin/views/Options.php:1797 admin/views/Options.php:2037
915
- #: admin/views/Options.php:2196 admin/views/Options.php:2373
916
- #: admin/views/Options.php:2580 admin/views/Options.php:2880
917
- #: admin/views/Options.php:3120 admin/views/Ratings.php:60
918
- #: admin/views/Ratings.php:92 frontend/views/view.php:424
919
  msgid "Date"
920
  msgstr ""
921
 
@@ -935,354 +948,344 @@ msgstr ""
935
  msgid "Crop"
936
  msgstr ""
937
 
938
- #: admin/views/Editimage.php:321
939
  msgid "The thumbnail was successfully cropped."
940
  msgstr ""
941
 
942
- #: admin/views/Editimage.php:803
943
  msgid "Grayscale"
944
  msgstr ""
945
 
946
- #: admin/views/Editimage.php:807
947
  msgid "Negative"
948
  msgstr ""
949
 
950
- #: admin/views/Editimage.php:811
951
  msgid "Removal"
952
  msgstr ""
953
 
954
- #: admin/views/Editimage.php:815
955
  msgid "Sepia"
956
  msgstr ""
957
 
958
- #: admin/views/Editimage.php:819
959
  msgid "Slate"
960
  msgstr ""
961
 
962
- #: admin/views/Editimage.php:823
963
  msgid "Saturate"
964
  msgstr ""
965
 
966
- #: admin/views/Editimage.php:827 admin/views/Galleries.php:728
967
  msgid "Do you want to reset the image?"
968
  msgstr ""
969
 
970
- #: admin/views/Editimage.php:829
971
  msgid "Reset image"
972
  msgstr "Sıfırlayın"
973
 
974
- #: admin/views/Editimage.php:855
975
  msgid "Brightness"
976
  msgstr ""
977
 
978
- #: admin/views/Editimage.php:857 admin/views/Editimage.php:882
979
  msgid "Press for result"
980
  msgstr ""
981
 
982
- #: admin/views/Editimage.php:880
983
  msgid "Contrast"
984
  msgstr ""
985
 
986
- #: admin/views/Galleries.php:58 admin/views/Galleries.php:622
987
- msgid "Drag&Drop"
988
- msgstr ""
989
 
990
- #: admin/views/Galleries.php:64 admin/views/Galleries.php:126
991
  msgid "Images count"
992
  msgstr ""
993
 
994
- #: admin/views/Galleries.php:200
995
  msgid "Gallery title"
996
  msgstr "Galeri boş"
997
 
998
- #: admin/views/Galleries.php:252
999
  msgid ""
1000
  "Add a preview image, which will be displayed as the cover image of the "
1001
  "gallery when it is published in a gallery group."
1002
  msgstr ""
1003
 
1004
- #: admin/views/Galleries.php:316
1005
  msgid "Gallery content type"
1006
  msgstr ""
1007
 
1008
- #: admin/views/Galleries.php:330
1009
  msgid ""
1010
  "Select the type of gallery content. Mixed galleries can include all "
1011
  "supported items. Alternatively, you can showcase images from one specific "
1012
  "source only."
1013
  msgstr ""
1014
 
1015
- #: admin/views/Galleries.php:332
1016
  msgid ""
1017
  "Gallery type cannot be changed, as it is not empty. If you would like to "
1018
  "show images from another source, please create a new gallery."
1019
  msgstr ""
1020
 
1021
- #: admin/views/Galleries.php:338
1022
  msgid "Number of Instagram recent posts to add to gallery"
1023
  msgstr ""
1024
 
1025
- #: admin/views/Galleries.php:342
1026
  msgid "Instagram embed type"
1027
  msgstr ""
1028
 
1029
- #: admin/views/Galleries.php:344 admin/views/Galleries.php:496
1030
  msgid "Content"
1031
  msgstr ""
1032
 
1033
- #: admin/views/Galleries.php:346 admin/views/Galleries.php:498
1034
  msgid "Whole post"
1035
  msgstr ""
1036
 
1037
- #: admin/views/Galleries.php:349
1038
  msgid "Gallery autoupdate option"
1039
  msgstr "Otomatik güncelleme aralığını eklentisi Fotoğraf galerisi"
1040
 
1041
- #: admin/views/Galleries.php:351
1042
  msgid "No update"
1043
  msgstr ""
1044
 
1045
- #: admin/views/Galleries.php:353
1046
  msgid "Add new media, keep old ones published."
1047
  msgstr ""
1048
 
1049
- #: admin/views/Galleries.php:355
1050
  msgid "Add new media, unpublish old ones."
1051
  msgstr ""
1052
 
1053
- #: admin/views/Galleries.php:358
1054
  msgid "Add Instagram Gallery"
1055
  msgstr ""
1056
 
1057
- #: admin/views/Galleries.php:367
1058
  msgid "Photo Gallery Facebook Integration"
1059
  msgstr ""
1060
 
1061
- #: admin/views/Galleries.php:368
1062
  #, php-format
1063
  msgid "Please install %s add-on to use this feature."
1064
  msgstr ""
1065
 
1066
- #: admin/views/Galleries.php:395 admin/views/Galleries.php:396
1067
  msgid "Add Images"
1068
  msgstr ""
1069
 
1070
- #: admin/views/Galleries.php:398
1071
  msgid "Import from Media Library"
1072
  msgstr ""
1073
 
1074
- #: admin/views/Galleries.php:405 admin/views/Galleries.php:407
1075
  msgid "Embed Media"
1076
  msgstr ""
1077
 
1078
- #: admin/views/Galleries.php:408 admin/views/Galleries.php:410
1079
  msgid "Social Bulk Embed"
1080
  msgstr ""
1081
 
1082
- #: admin/views/Galleries.php:410 photo-gallery.php:108
1083
- msgid "This option is disabled in free version."
1084
  msgstr ""
1085
 
1086
- #: admin/views/Galleries.php:413
1087
  msgid "Optimize Images"
1088
  msgstr ""
1089
 
1090
- #: admin/views/Galleries.php:429
1091
  msgid "Enter YouTube, Vimeo, Instagram, Flickr or Dailymotion URL here."
1092
  msgstr ""
1093
 
1094
- #: admin/views/Galleries.php:430 admin/views/Galleries.php:466
1095
  msgid "Add to gallery"
1096
  msgstr ""
1097
 
1098
- #: admin/views/Galleries.php:431 admin/views/Galleries.php:465
1099
- #: admin/views/Galleries.php:522 admin/views/Galleries.php:543
1100
- #: admin/views/Galleries.php:562 admin/views/Galleries.php:582
1101
- #: filemanager/view.php:218 filemanager/view.php:219 photo-gallery.php:1435
1102
  msgid "Cancel"
1103
  msgstr ""
1104
 
1105
- #: admin/views/Galleries.php:436
1106
  msgid "<b>Youtube</b> URL example:"
1107
  msgstr ""
1108
 
1109
- #: admin/views/Galleries.php:440
1110
  msgid "<b>Vimeo</b> URL example:"
1111
  msgstr ""
1112
 
1113
- #: admin/views/Galleries.php:444
1114
  msgid "<b>Instagram</b> URL example:"
1115
  msgstr ""
1116
 
1117
- #: admin/views/Galleries.php:446
1118
- msgid "post"
1119
- msgstr ""
1120
-
1121
- #: admin/views/Galleries.php:446
1122
- msgid ""
1123
- "to the end of URL if you want to embed the whole Instagram post, not only "
1124
- "its content."
1125
- msgstr ""
1126
-
1127
- #: admin/views/Galleries.php:454
1128
  msgid "<b>Flickr</b> URL example:"
1129
  msgstr ""
1130
 
1131
- #: admin/views/Galleries.php:458
1132
  msgid "<b>Dailymotion</b> URL example:"
1133
  msgstr ""
1134
 
1135
- #: admin/views/Galleries.php:477
1136
  msgid "username:"
1137
  msgstr ""
1138
 
1139
- #: admin/views/Galleries.php:485
1140
  msgid "Number of Instagram recent posts to add to gallery:"
1141
  msgstr ""
1142
 
1143
- #: admin/views/Galleries.php:493
1144
  msgid "embed type:"
1145
  msgstr ""
1146
 
1147
- #: admin/views/Galleries.php:512
1148
  msgid "Resize images to: "
1149
  msgstr ""
1150
 
1151
- #: admin/views/Galleries.php:515
1152
  msgid "The maximum size of resized image."
1153
  msgstr ""
1154
 
1155
- #: admin/views/Galleries.php:521 framework/WDWLibrary.php:2422
1156
  msgid "Resize"
1157
  msgstr ""
1158
 
1159
- #: admin/views/Galleries.php:532
1160
  msgid "Alt/Title: "
1161
  msgstr ""
1162
 
1163
- #: admin/views/Galleries.php:535
1164
  msgid "Leave blank and click to \"Save changes\" to delete Alt/Titles."
1165
  msgstr ""
1166
 
1167
- #: admin/views/Galleries.php:542 admin/views/Galleries.php:561
1168
- #: admin/views/Galleries.php:581
1169
  msgid "Save changes"
1170
  msgstr ""
1171
 
1172
- #: admin/views/Galleries.php:551
1173
  msgid "Redirect URL: "
1174
  msgstr ""
1175
 
1176
- #: admin/views/Galleries.php:554
1177
  msgid "Leave blank and click to \"Save changes\" to delete Redirect URLs."
1178
  msgstr ""
1179
 
1180
- #: admin/views/Galleries.php:570
1181
  msgid "Description: "
1182
  msgstr ""
1183
 
1184
- #: admin/views/Galleries.php:573
1185
  msgid "Leave blank and click to \"Save changes\" to delete Descriptions."
1186
  msgstr ""
1187
 
1188
- #: admin/views/Galleries.php:599
1189
  msgid "You have unsaved changes."
1190
  msgstr "Zaten puan var."
1191
 
1192
- #: admin/views/Galleries.php:604
1193
  msgid ""
1194
  "This sorting does not affect the published galleries. You can change the "
1195
  "ordering on frontend by editing gallery shortcode or Photo Gallery Options."
1196
  msgstr ""
1197
 
1198
- #: admin/views/Galleries.php:621 photo-gallery.php:616
1199
  msgid "Show order column"
1200
  msgstr "Yorumları göster"
1201
 
1202
- #: admin/views/Galleries.php:623
 
 
 
 
1203
  msgid "Numerate"
1204
  msgstr ""
1205
 
1206
- #: admin/views/Galleries.php:629
1207
  msgid "Ordering"
1208
  msgstr "Sipariş"
1209
 
1210
- #: admin/views/Galleries.php:635 admin/views/Galleries.php:702
1211
- #: admin/views/Options.php:1147 admin/views/Options.php:1365
1212
- #: admin/views/Options.php:1601 admin/views/Options.php:1798
1213
- #: admin/views/Options.php:2038 admin/views/Options.php:2197
1214
- #: admin/views/Options.php:2374 admin/views/Options.php:2581
1215
- #: admin/views/Options.php:2881 admin/views/Options.php:3121
1216
- #: frontend/views/view.php:427
1217
  msgid "Filename"
1218
  msgstr "Dosya Adı"
1219
 
1220
- #: admin/views/Galleries.php:640 admin/views/Options.php:681
1221
- #: admin/views/Options.php:834 admin/views/Ratings.php:57
1222
- #: admin/views/Ratings.php:74 admin/views/Shortcode.php:301
1223
  #: admin/views/WidgetTags.php:84
1224
  msgid "Image"
1225
  msgstr ""
1226
 
1227
- #: admin/views/Galleries.php:712 admin/views/Options.php:1150
1228
- #: admin/views/Options.php:1368 admin/views/Options.php:1604
1229
- #: admin/views/Options.php:1801 admin/views/Options.php:2041
1230
- #: admin/views/Options.php:2200 admin/views/Options.php:2377
1231
- #: admin/views/Options.php:2584 admin/views/Options.php:2884
1232
- #: admin/views/Options.php:3124
1233
  msgid "Resolution"
1234
  msgstr ""
1235
 
1236
- #: admin/views/Galleries.php:713 admin/views/Options.php:1148
1237
- #: admin/views/Options.php:1366 admin/views/Options.php:1602
1238
- #: admin/views/Options.php:1799 admin/views/Options.php:2039
1239
- #: admin/views/Options.php:2198 admin/views/Options.php:2375
1240
- #: admin/views/Options.php:2582 admin/views/Options.php:2882
1241
- #: admin/views/Options.php:3122 filemanager/view.php:151
1242
- #: frontend/views/view.php:430
1243
  msgid "Size"
1244
  msgstr "Boyut"
1245
 
1246
- #: admin/views/Galleries.php:726 admin/views/Galleries.php:727
1247
- #: admin/views/Options.php:157 admin/views/Options.php:957
1248
- #: admin/views/Options.php:960
1249
  msgid "Image edit functionality is not supported by your web host."
1250
  msgstr ""
1251
 
1252
- #: admin/views/Galleries.php:727
1253
  msgid "Crop Thumbnail"
1254
  msgstr ""
1255
 
1256
- #: admin/views/Galleries.php:728 admin/views/Themes.php:191
1257
- #: framework/WDWLibrary.php:350 framework/WDWLibrary.php:528
1258
- #: framework/WDWLibrary.php:2447 frontend/views/view.php:377
 
1259
  msgid "Reset"
1260
  msgstr "Sıfırlayın"
1261
 
1262
- #: admin/views/Galleries.php:748
1263
  msgid "Alt/Title"
1264
  msgstr ""
1265
 
1266
- #: admin/views/Galleries.php:770
1267
  msgid "Redirect URL"
1268
  msgstr ""
1269
 
1270
- #: admin/views/Galleries.php:774
1271
  msgid "Options > General"
1272
  msgstr ""
1273
 
1274
- #: admin/views/Galleries.php:775
1275
  #, php-format
1276
  msgid ""
1277
  "To activate this feature, go to %s, then set \"Image click action\" to "
1278
  "\"Redirect to URL\". Please use absolute URLs when specifying the links."
1279
  msgstr ""
1280
 
1281
- #: admin/views/Galleries.php:793
1282
  msgid "Remove tag"
1283
  msgstr ""
1284
 
1285
- #: admin/views/Galleries.php:803
1286
  msgid "Add tag"
1287
  msgstr ""
1288
 
@@ -1324,1688 +1327,1708 @@ msgstr ""
1324
  msgid "Skip"
1325
  msgstr ""
1326
 
1327
- #: admin/views/Options.php:47 admin/views/Themes.php:181
1328
- msgid "Save"
1329
  msgstr ""
1330
 
1331
- #: admin/views/Options.php:53
1332
- msgid "Reset all options"
1333
  msgstr ""
1334
 
1335
- #: admin/views/Options.php:54 admin/views/Themes.php:186
1336
- msgid "Do you want to reset to default?"
1337
  msgstr ""
1338
 
1339
- #: admin/views/Options.php:77
1340
- msgid "Gallery defaults"
1341
  msgstr "Galeri boş"
1342
 
1343
- #: admin/views/Options.php:80
1344
- msgid "Gallery Group defaults"
1345
  msgstr "Galeri boş"
1346
 
1347
- #: admin/views/Options.php:83
1348
- msgid "Lightbox defaults"
1349
- msgstr ""
1350
-
1351
- #: admin/views/Options.php:89 photo-gallery.php:1543
1352
  msgid "Watermark"
1353
  msgstr ""
1354
 
1355
- #: admin/views/Options.php:109
1356
  msgid "Images directory"
1357
  msgstr ""
1358
 
1359
- #: admin/views/Options.php:114
1360
  msgid ""
1361
  "Provide the path of an existing folder inside the WordPress directory of "
1362
  "your website to store uploaded images.<br />The content of the previous "
1363
  "directory will be moved to the new one."
1364
  msgstr ""
1365
 
1366
- #: admin/views/Options.php:122 admin/views/Options.php:3333
1367
  msgid "Image click action"
1368
  msgstr ""
1369
 
1370
- #: admin/views/Options.php:124 admin/views/Options.php:3335
1371
  msgid "Open lightbox"
1372
  msgstr ""
1373
 
1374
- #: admin/views/Options.php:125 admin/views/Options.php:3336
1375
  msgid "Redirect to url"
1376
  msgstr ""
1377
 
1378
- #: admin/views/Options.php:126 admin/views/Options.php:3337
1379
  msgid "Do Nothing"
1380
  msgstr ""
1381
 
1382
- #: admin/views/Options.php:128 admin/views/Options.php:3339
1383
  msgid "Select the action which runs after clicking on gallery thumbnails."
1384
  msgstr ""
1385
 
1386
- #: admin/views/Options.php:132 admin/views/Options.php:3343
1387
  msgid "Open in a new window"
1388
  msgstr ""
1389
 
1390
- #: admin/views/Options.php:142 admin/views/Options.php:2335
1391
  msgid "Image dimensions"
1392
  msgstr ""
1393
 
1394
- #: admin/views/Options.php:147
1395
  msgid ""
1396
  "Specify the maximum dimensions of uploaded images (set 0 for original size)."
1397
  msgstr ""
1398
 
1399
- #: admin/views/Options.php:152
1400
  msgid "Generated thumbnail dimensions"
1401
  msgstr ""
1402
 
1403
- #: admin/views/Options.php:157 photo-gallery.php:417
1404
  msgid "Recreate"
1405
  msgstr ""
1406
 
1407
- #: admin/views/Options.php:159
1408
  msgid ""
1409
  "Specify the maximum dimensions of generated thumbnails. They must be larger "
1410
  "than frontend thumbnail dimensions."
1411
  msgstr ""
1412
 
1413
- #: admin/views/Options.php:164
1414
  msgid "Image quality"
1415
  msgstr ""
1416
 
1417
- #: admin/views/Options.php:168
1418
  msgid "Set the quality of gallery images. Provide a value from 0 to 100%."
1419
  msgstr ""
1420
 
1421
- #: admin/views/Options.php:173
1422
  msgid "Resizable thumbnails"
1423
  msgstr ""
1424
 
1425
- #: admin/views/Options.php:178
1426
  msgid ""
1427
  "Enable this option to allow resizing gallery thumbnails on smaller screens."
1428
  msgstr ""
1429
 
1430
- #: admin/views/Options.php:183
1431
  msgid "Lazy load"
1432
  msgstr ""
1433
 
1434
- #: admin/views/Options.php:188
1435
  msgid ""
1436
  "Enable this option to activate lazy loading for images and improve the "
1437
  "loading speed on your galleries."
1438
  msgstr ""
1439
 
1440
- #: admin/views/Options.php:193
1441
  msgid "Preload images"
1442
  msgstr ""
1443
 
1444
- #: admin/views/Options.php:198
1445
  msgid ""
1446
  "If this setting is enabled, Photo Gallery loads a specific number of images "
1447
  "before opening lightbox. This lets you showcase images without loading "
1448
  "delays, providing better user experience."
1449
  msgstr ""
1450
 
1451
- #: admin/views/Options.php:203
1452
  msgid "Number of preloaded images"
1453
  msgstr ""
1454
 
1455
- #: admin/views/Options.php:207
1456
  msgid "Specify the number of images to preload, e.g. 5 (set 0 for all)."
1457
  msgstr ""
1458
 
1459
- #: admin/views/Options.php:212
1460
  msgid "Show custom posts"
1461
  msgstr "Yorumları göster"
1462
 
1463
- #: admin/views/Options.php:217
1464
  msgid ""
1465
  "Activate this setting to display Photo Gallery custom posts with new menu "
1466
  "items under WordPress admin menu."
1467
  msgstr ""
1468
 
1469
- #: admin/views/Options.php:222
1470
  msgid "Discourage Search Engine Visibility"
1471
  msgstr ""
1472
 
1473
- #: admin/views/Options.php:227
1474
  msgid "Discourage search engines from indexing Photo Gallery custom posts."
1475
  msgstr ""
1476
 
1477
- #: admin/views/Options.php:232
1478
  msgid "Show comments for custom posts"
1479
  msgstr "Yorumları göster"
1480
 
1481
- #: admin/views/Options.php:237
1482
  msgid ""
1483
  "Use this setting to show or hide comments under Photo Gallery custom posts."
1484
  msgstr ""
1485
 
1486
- #: admin/views/Options.php:242
1487
  msgid "Use AND operator for tag filtering"
1488
  msgstr ""
1489
 
1490
- #: admin/views/Options.php:247
1491
  msgid ""
1492
  "Enable this option to filter images with AND operator. In this case, the "
1493
  "filter results must have all selected tags in the Tag Box."
1494
  msgstr ""
1495
 
1496
- #: admin/views/Options.php:254
 
 
 
 
 
 
 
 
1497
  msgid "Save IP "
1498
  msgstr ""
1499
 
1500
- #: admin/views/Options.php:259
1501
  msgid "Disable saving user IP address when rating the images."
1502
  msgstr ""
1503
 
1504
- #: admin/views/Options.php:265
1505
  msgid "Right-click protection"
1506
  msgstr ""
1507
 
1508
- #: admin/views/Options.php:270
1509
  msgid "Switch off right-click on your gallery images by enabling this setting."
1510
  msgstr ""
1511
 
1512
- #: admin/views/Options.php:275
1513
  msgid "Include styles/scripts on gallery pages only"
1514
  msgstr ""
1515
 
1516
- #: admin/views/Options.php:280
1517
  msgid ""
1518
  "If this option is enabled, CSS and Javascript files of Photo Gallery will "
1519
  "only load on pages with galleries and gallery groups."
1520
  msgstr ""
1521
 
1522
- #: admin/views/Options.php:285
1523
  msgid "Enable Google fonts"
1524
  msgstr "Yorumları göster"
1525
 
1526
- #: admin/views/Options.php:290
1527
  msgid ""
1528
  "If this option is disabled, Google fonts will not be included in your pages."
1529
  msgstr ""
1530
 
1531
- #: admin/views/Options.php:295
1532
  msgid "Enable HTML editor"
1533
  msgstr "Bilgiyi sakla"
1534
 
1535
- #: admin/views/Options.php:300
1536
  msgid ""
1537
  "Description text boxes of Photo Gallery will use TinyMCE editor, in case "
1538
  "this setting is enabled."
1539
  msgstr ""
1540
 
1541
- #: admin/views/Options.php:305
 
 
 
 
 
 
 
 
 
 
1542
  msgid "Enable href attribute"
1543
  msgstr ""
1544
 
1545
- #: admin/views/Options.php:310
1546
  msgid "Disable this option only if Photo Gallery conflicts with your theme."
1547
  msgstr ""
1548
 
1549
- #: admin/views/Options.php:315
1550
  msgid "Auto-fill metadata"
1551
  msgstr ""
1552
 
1553
- #: admin/views/Options.php:320
1554
  msgid ""
1555
  "Enabling this option will let the plugin fill in meta descriptions of photos "
1556
  "into Image Description option automatically."
1557
  msgstr ""
1558
 
1559
- #: admin/views/Options.php:325 admin/views/Options.php:328
1560
- #: photo-gallery.php:491
1561
  msgid "Generate Shortcode"
1562
  msgstr ""
1563
 
1564
- #: admin/views/Options.php:331
1565
  msgid ""
1566
  "Generate or edit Photo Gallery shortcodes that are used to publish galleries "
1567
  "or gallery groups."
1568
  msgstr ""
1569
 
1570
- #: admin/views/Options.php:334
1571
  msgid "Enable dynamic URLs for galleries and gallery groups"
1572
  msgstr ""
1573
 
1574
- #: admin/views/Options.php:337
1575
  msgid ""
1576
  "Enable this option to browse galleries and gallery groups, as well as search "
1577
  "results and tagged images with dynamic links."
1578
  msgstr ""
1579
 
1580
- #: admin/views/Options.php:340
1581
  msgid "Developer mode"
1582
  msgstr ""
1583
 
1584
- #: admin/views/Options.php:343
1585
  msgid ""
1586
  "Do not use minified JS and CSS files. Enable this option if You need to "
1587
  "debug JS or CSS issues."
1588
  msgstr ""
1589
 
1590
- #: admin/views/Options.php:354 photo-gallery.php:490
1591
  msgid "Uninstall"
1592
  msgstr ""
1593
 
1594
- #: admin/views/Options.php:357
1595
  msgid ""
1596
  "Note, that uninstalling Photo Gallery will completely remove all galleries, "
1597
  "gallery groups and other data on the plugin. Please make sure you don't have "
1598
  "any important information before you proceed."
1599
  msgstr ""
1600
 
1601
- #: admin/views/Options.php:430 admin/views/Options.php:487
1602
- #: admin/views/Shortcode.php:123 admin/views/Shortcode.php:160
1603
- msgid "View type"
 
 
 
 
 
1604
  msgstr ""
1605
 
1606
- #: admin/views/Options.php:447 admin/views/Options.php:504
1607
- #: admin/views/Shortcode.php:177
1608
- msgid "This view is not available in free version."
1609
  msgstr ""
1610
 
1611
- #: admin/views/Options.php:532
1612
  msgid "Social"
1613
  msgstr ""
1614
 
1615
- #: admin/views/Options.php:538
1616
  msgid "Gallery autoupdate interval"
1617
  msgstr "Otomatik güncelleme aralığını eklentisi Fotoğraf galerisi"
1618
 
1619
- #: admin/views/Options.php:541
1620
  msgid "hour"
1621
  msgstr ""
1622
 
1623
- #: admin/views/Options.php:543
1624
  msgid "min"
1625
  msgstr ""
1626
 
1627
- #: admin/views/Options.php:545
1628
  msgid ""
1629
  "Set the interval when Instagram galleries will be updated, and will display "
1630
  "new posts of your Instagram or Facebook account."
1631
  msgstr ""
1632
 
1633
- #: admin/views/Options.php:551
1634
  msgid "Instagram"
1635
  msgstr ""
1636
 
1637
- #: admin/views/Options.php:557
1638
  msgid ""
1639
  "Press this button to sign in to your Instagram account. In this case, access "
1640
  "token will be added automatically."
1641
  msgstr ""
1642
 
1643
- #: admin/views/Options.php:561
1644
  msgid "Sign in with Instagram"
1645
  msgstr ""
1646
 
1647
- #: admin/views/Options.php:563
1648
  msgid ""
1649
  "Press this button to sign in to your Instagram account. This lets you "
1650
  "incorporate Instagram API to your website."
1651
  msgstr ""
1652
 
1653
- #: admin/views/Options.php:566
1654
  msgid ""
1655
  "Press this button to sign out from your Instagram account. The access token "
1656
  "will reset."
1657
  msgstr ""
1658
 
1659
- #: admin/views/Options.php:568
1660
  msgid ""
1661
  "Are you sure you want to reset access token, after resetting it you will "
1662
  "need to log in with Instagram again for using plugin"
1663
  msgstr ""
1664
 
1665
- #: admin/views/Options.php:570
1666
  msgid "Sign out from Instagram"
1667
  msgstr ""
1668
 
1669
- #: admin/views/Options.php:572
1670
  msgid "Press this button to sign out from your Instagram account."
1671
  msgstr ""
1672
 
1673
- #: admin/views/Options.php:600 admin/views/Options.php:606
1674
  msgid "Roles"
1675
  msgstr ""
1676
 
1677
- #: admin/views/Options.php:618
1678
  msgid ""
1679
  "Choose a WordPress user role which can add and edit galleries, images, "
1680
- "gallery groups and tags."
1681
  msgstr ""
1682
 
1683
- #: admin/views/Options.php:626
1684
  msgid "Gallery role restrictions"
1685
  msgstr "Galeri boş"
1686
 
1687
- #: admin/views/Options.php:631
1688
  msgid ""
1689
  "Enable this setting to restrict authors from modifying galleries created by "
1690
  "other users."
1691
  msgstr ""
1692
 
1693
- #: admin/views/Options.php:637
1694
  msgid "Gallery group restrictions"
1695
  msgstr "Galeri boş"
1696
 
1697
- #: admin/views/Options.php:642
1698
  msgid ""
1699
  "Enabling this option will restrict authors from modifying galleries groups "
1700
  "created by other users."
1701
  msgstr ""
1702
 
1703
- #: admin/views/Options.php:648
1704
  msgid "Image role restrictions"
1705
  msgstr ""
1706
 
1707
- #: admin/views/Options.php:653
1708
  msgid ""
1709
  "Enable this setting to restrict authors from modifying images added by other "
1710
  "users."
1711
  msgstr ""
1712
 
1713
- #: admin/views/Options.php:668 photo-gallery.php:1547 photo-gallery.php:1662
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1714
  msgid "Advertisement"
1715
  msgstr ""
1716
 
1717
- #: admin/views/Options.php:674 admin/views/Shortcode.php:298
1718
  msgid "Advertisement type"
1719
  msgstr ""
1720
 
1721
- #: admin/views/Options.php:679 admin/views/Options.php:832
1722
- #: admin/views/Shortcode.php:300 admin/views/Themes.php:4760
1723
  #: admin/views/WidgetTags.php:83
1724
  msgid "Text"
1725
  msgstr ""
1726
 
1727
- #: admin/views/Options.php:683 admin/views/Shortcode.php:302
1728
  msgid "Add Text or Image advertisement to your images with this option."
1729
  msgstr ""
1730
 
1731
- #: admin/views/Options.php:688 admin/views/Shortcode.php:315
1732
  msgid "Advertisement URL"
1733
  msgstr ""
1734
 
1735
- #: admin/views/Options.php:696 admin/views/Options.php:698
1736
- #: admin/views/Options.php:849 admin/views/Options.php:851
1737
  msgid "Select Image"
1738
  msgstr "Sıfırlayın"
1739
 
1740
- #: admin/views/Options.php:700 admin/views/Options.php:853
1741
- #: filemanager/view.php:246
1742
  msgid "or"
1743
  msgstr "daha"
1744
 
1745
- #: admin/views/Options.php:703 admin/views/Shortcode.php:317
1746
  msgid ""
1747
  "Provide the absolute URL of the image you would like to use as advertisement."
1748
  msgstr ""
1749
 
1750
- #: admin/views/Options.php:708 admin/views/Shortcode.php:322
1751
  msgid "Advertisement text"
1752
  msgstr ""
1753
 
1754
- #: admin/views/Options.php:712 admin/views/Shortcode.php:324
1755
  msgid "Write the text to add to images as advertisement."
1756
  msgstr ""
1757
 
1758
- #: admin/views/Options.php:717 admin/views/Shortcode.php:308
1759
  msgid "Advertisement link"
1760
  msgstr ""
1761
 
1762
- #: admin/views/Options.php:721 admin/views/Shortcode.php:310
1763
  msgid "Provide the link to be added to advertisement on images."
1764
  msgstr ""
1765
 
1766
- #: admin/views/Options.php:726 admin/views/Shortcode.php:362
1767
  msgid "Advertisement dimensions"
1768
  msgstr ""
1769
 
1770
- #: admin/views/Options.php:731 admin/views/Shortcode.php:367
1771
  msgid "Select the dimensions of the advertisement image."
1772
  msgstr ""
1773
 
1774
- #: admin/views/Options.php:736 admin/views/Shortcode.php:353
1775
  msgid "Advertisement font size"
1776
  msgstr ""
1777
 
1778
- #: admin/views/Options.php:740 admin/views/Shortcode.php:357
1779
  msgid "Specify the font size of the advertisement text."
1780
  msgstr ""
1781
 
1782
- #: admin/views/Options.php:745 admin/views/Shortcode.php:331
1783
  msgid "Advertisement font style"
1784
  msgstr ""
1785
 
1786
- #: admin/views/Options.php:760 admin/views/Shortcode.php:345
1787
- #: admin/views/Themes.php:408 admin/views/Themes.php:471
1788
- #: admin/views/Themes.php:704 admin/views/Themes.php:759
1789
- #: admin/views/Themes.php:793 admin/views/Themes.php:1028
1790
- #: admin/views/Themes.php:1090 admin/views/Themes.php:1474
1791
- #: admin/views/Themes.php:1535 admin/views/Themes.php:1760
1792
- #: admin/views/Themes.php:1848 admin/views/Themes.php:2106
1793
- #: admin/views/Themes.php:2168 admin/views/Themes.php:2223
1794
- #: admin/views/Themes.php:2559 admin/views/Themes.php:2716
1795
- #: admin/views/Themes.php:2797 admin/views/Themes.php:2857
1796
- #: admin/views/Themes.php:3095 admin/views/Themes.php:3150
1797
- #: admin/views/Themes.php:3205 admin/views/Themes.php:3341
1798
- #: admin/views/Themes.php:3510 admin/views/Themes.php:4157
1799
- #: admin/views/Themes.php:4299 admin/views/Themes.php:4348
1800
- #: admin/views/Themes.php:4424 admin/views/Themes.php:4608
1801
- #: admin/views/Themes.php:4993
1802
  msgid "Google fonts"
1803
  msgstr ""
1804
 
1805
- #: admin/views/Options.php:762 admin/views/Options.php:1144
1806
- #: admin/views/Options.php:1362 admin/views/Options.php:1598
1807
- #: admin/views/Options.php:1795 admin/views/Options.php:2035
1808
- #: admin/views/Options.php:2194 admin/views/Options.php:2371
1809
- #: admin/views/Options.php:2561 admin/views/Options.php:2578
1810
- #: admin/views/Options.php:2861 admin/views/Options.php:2878
1811
- #: admin/views/Options.php:3101 admin/views/Options.php:3118
1812
- #: admin/views/Shortcode.php:347 admin/views/Themes.php:81
1813
- #: admin/views/Themes.php:112 admin/views/Themes.php:410
1814
- #: admin/views/Themes.php:473 admin/views/Themes.php:706
1815
- #: admin/views/Themes.php:761 admin/views/Themes.php:795
1816
- #: admin/views/Themes.php:1030 admin/views/Themes.php:1092
1817
- #: admin/views/Themes.php:1476 admin/views/Themes.php:1537
1818
- #: admin/views/Themes.php:1762 admin/views/Themes.php:1850
1819
- #: admin/views/Themes.php:2108 admin/views/Themes.php:2170
1820
- #: admin/views/Themes.php:2225 admin/views/Themes.php:2561
1821
- #: admin/views/Themes.php:2718 admin/views/Themes.php:2799
1822
- #: admin/views/Themes.php:2859 admin/views/Themes.php:3097
1823
- #: admin/views/Themes.php:3152 admin/views/Themes.php:3207
1824
- #: admin/views/Themes.php:3343 admin/views/Themes.php:3512
1825
- #: admin/views/Themes.php:4159 admin/views/Themes.php:4301
1826
- #: admin/views/Themes.php:4350 admin/views/Themes.php:4426
1827
- #: admin/views/Themes.php:4610 admin/views/Themes.php:4995
1828
  msgid "Default"
1829
  msgstr "Standart"
1830
 
1831
- #: admin/views/Options.php:764 admin/views/Shortcode.php:348
1832
  msgid "Select the font family of the advertisement text."
1833
  msgstr ""
1834
 
1835
- #: admin/views/Options.php:769 admin/views/Shortcode.php:372
1836
  msgid "Advertisement color"
1837
  msgstr ""
1838
 
1839
- #: admin/views/Options.php:773 admin/views/Shortcode.php:374
1840
  msgid "Choose the color for the advertisement text on images."
1841
  msgstr ""
1842
 
1843
- #: admin/views/Options.php:778 admin/views/Shortcode.php:381
1844
  msgid "Advertisement opacity"
1845
  msgstr ""
1846
 
1847
- #: admin/views/Options.php:782 admin/views/Shortcode.php:385
1848
  msgid ""
1849
  "Specify the opacity of the advertisement. The value must be between 0 to 100."
1850
  msgstr ""
1851
 
1852
- #: admin/views/Options.php:787 admin/views/Shortcode.php:390
1853
  msgid "Advertisement position"
1854
  msgstr ""
1855
 
1856
- #: admin/views/Options.php:810 admin/views/Shortcode.php:410
1857
  msgid "Mark the position where the advertisement should appear on images."
1858
  msgstr ""
1859
 
1860
- #: admin/views/Options.php:827
1861
  msgid "Watermark type"
1862
  msgstr ""
1863
 
1864
- #: admin/views/Options.php:836
1865
  msgid "Add Text or Image watermark to your images with this option."
1866
  msgstr ""
1867
 
1868
- #: admin/views/Options.php:841
1869
  msgid "Watermark URL"
1870
  msgstr ""
1871
 
1872
- #: admin/views/Options.php:856
1873
  msgid ""
1874
  "Provide the absolute URL of the image you would like to use as watermark."
1875
  msgstr ""
1876
 
1877
- #: admin/views/Options.php:856
1878
  msgid "Only .png format is supported."
1879
  msgstr ""
1880
 
1881
- #: admin/views/Options.php:861
1882
  msgid "Watermark text"
1883
  msgstr ""
1884
 
1885
- #: admin/views/Options.php:865
1886
  msgid "Provide the text to add to images as watermark."
1887
  msgstr ""
1888
 
1889
- #: admin/views/Options.php:870
1890
  msgid "Watermark size"
1891
  msgstr ""
1892
 
1893
- #: admin/views/Options.php:874
1894
  msgid "Specify the size of watermark on images in percent."
1895
  msgstr ""
1896
 
1897
- #: admin/views/Options.php:879
1898
  msgid "Watermark font size"
1899
  msgstr ""
1900
 
1901
- #: admin/views/Options.php:883
1902
  msgid "Specify the font size of the watermark text."
1903
  msgstr ""
1904
 
1905
- #: admin/views/Options.php:888
1906
  msgid "Watermark font style"
1907
  msgstr ""
1908
 
1909
- #: admin/views/Options.php:912
1910
  msgid "Select the font family of the watermark text."
1911
  msgstr ""
1912
 
1913
- #: admin/views/Options.php:917
1914
  msgid "Watermark color"
1915
  msgstr ""
1916
 
1917
- #: admin/views/Options.php:921
1918
  msgid "Choose the color for the watermark text on images."
1919
  msgstr ""
1920
 
1921
- #: admin/views/Options.php:926
1922
  msgid "Watermark opacity"
1923
  msgstr ""
1924
 
1925
- #: admin/views/Options.php:930
1926
  msgid ""
1927
  "Specify the opacity of the watermark. The value must be between 0 to 100."
1928
  msgstr ""
1929
 
1930
- #: admin/views/Options.php:935
1931
  msgid "Watermark position"
1932
  msgstr ""
1933
 
1934
- #: admin/views/Options.php:956 framework/WDWLibrary.php:2442
1935
  msgid "Set watermark"
1936
  msgstr ""
1937
 
1938
- #: admin/views/Options.php:958
1939
  msgid "Set Watermark"
1940
  msgstr ""
1941
 
1942
- #: admin/views/Options.php:959
1943
  msgid "Reset watermark"
1944
  msgstr ""
1945
 
1946
- #: admin/views/Options.php:961
1947
  msgid "Reset Watermark"
1948
  msgstr ""
1949
 
1950
- #: admin/views/Options.php:963
1951
  msgid "Mark the position where the watermark should appear on images."
1952
  msgstr ""
1953
 
1954
- #: admin/views/Options.php:1087 admin/views/Options.php:2513
1955
- #: admin/views/Options.php:3053 admin/views/Shortcode.php:2152
1956
  msgid "Thumbnail dimensions"
1957
  msgstr ""
1958
 
1959
- #: admin/views/Options.php:1092 admin/views/Options.php:2518
1960
- #: admin/views/Options.php:2818 admin/views/Options.php:3058
1961
  msgid ""
1962
  "The default dimensions of thumbnails which will display on published "
1963
  "galleries."
1964
  msgstr ""
1965
 
1966
- #: admin/views/Options.php:1097 admin/views/Options.php:1314
1967
- #: admin/views/Options.php:2504 admin/views/Options.php:2805
1968
- #: admin/views/Options.php:3044 admin/views/Shortcode.php:2154
1969
  msgid "Number of image columns"
1970
  msgstr ""
1971
 
1972
- #: admin/views/Options.php:1101 admin/views/Options.php:2508
1973
- #: admin/views/Options.php:2809 admin/views/Options.php:3048
1974
  msgid ""
1975
  "Set the maximum number of image columns in galleries. Note, that the parent "
1976
  "container needs to be large enough to display all columns."
1977
  msgstr ""
1978
 
1979
- #: admin/views/Options.php:1106 admin/views/Options.php:1324
1980
- #: admin/views/Options.php:1560 admin/views/Options.php:2154
1981
- #: admin/views/Options.php:2523 admin/views/Options.php:2823
1982
- #: admin/views/Options.php:3063
1983
  msgid "Pagination"
1984
  msgstr ""
1985
 
1986
- #: admin/views/Options.php:1109 admin/views/Options.php:1327
1987
- #: admin/views/Options.php:1563 admin/views/Options.php:2157
1988
- #: admin/views/Options.php:2526 admin/views/Options.php:2826
1989
- #: admin/views/Options.php:3066
1990
  msgid "Simple"
1991
  msgstr ""
1992
 
1993
- #: admin/views/Options.php:1110 admin/views/Options.php:1328
1994
- #: admin/views/Options.php:1564 admin/views/Options.php:2158
1995
- #: admin/views/Options.php:2527 admin/views/Options.php:2827
1996
- #: admin/views/Options.php:3067
1997
  msgid "Load More"
1998
  msgstr "Daha fazla yükle"
1999
 
2000
- #: admin/views/Options.php:1111 admin/views/Options.php:1329
2001
- #: admin/views/Options.php:1565 admin/views/Options.php:2159
2002
- #: admin/views/Options.php:2528 admin/views/Options.php:2828
2003
- #: admin/views/Options.php:3068
2004
  msgid "Scroll Load"
2005
  msgstr ""
2006
 
2007
- #: admin/views/Options.php:1113 admin/views/Options.php:1331
2008
- #: admin/views/Options.php:1567 admin/views/Options.php:2161
2009
- #: admin/views/Options.php:2530 admin/views/Options.php:2830
2010
- #: admin/views/Options.php:3070
2011
  msgid "This option removes all types of pagination from your galleries."
2012
  msgstr ""
2013
 
2014
- #: admin/views/Options.php:1114 admin/views/Options.php:1332
2015
- #: admin/views/Options.php:1568 admin/views/Options.php:2162
2016
- #: admin/views/Options.php:2531 admin/views/Options.php:2831
2017
- #: admin/views/Options.php:3071
2018
  msgid ""
2019
  "Activating this option will add page numbers and next/previous buttons to "
2020
  "your galleries."
2021
  msgstr ""
2022
 
2023
- #: admin/views/Options.php:1115 admin/views/Options.php:1333
2024
- #: admin/views/Options.php:1569 admin/views/Options.php:2163
2025
- #: admin/views/Options.php:2532 admin/views/Options.php:2832
2026
- #: admin/views/Options.php:3072
2027
  msgid ""
2028
  "Adding a Load More button, you can let users display a new set of images "
2029
  "from your galleries."
2030
  msgstr ""
2031
 
2032
- #: admin/views/Options.php:1116 admin/views/Options.php:1334
2033
- #: admin/views/Options.php:1570 admin/views/Options.php:2164
2034
- #: admin/views/Options.php:2533 admin/views/Options.php:2833
2035
- #: admin/views/Options.php:3073
2036
  msgid ""
2037
  "With this option, users can load new images of your galleries simply by "
2038
  "scrolling down."
2039
  msgstr ""
2040
 
2041
- #: admin/views/Options.php:1121 admin/views/Options.php:1339
2042
- #: admin/views/Options.php:1575 admin/views/Options.php:2170
2043
- #: admin/views/Options.php:2547 admin/views/Options.php:2847
2044
- #: admin/views/Options.php:3087
2045
  msgid "Images per page"
2046
  msgstr ""
2047
 
2048
- #: admin/views/Options.php:1125 admin/views/Options.php:1343
2049
- #: admin/views/Options.php:1579 admin/views/Options.php:2551
2050
- #: admin/views/Options.php:2851 admin/views/Options.php:3091
2051
  msgid ""
2052
  "Specify the number of images to display per page on galleries. Setting this "
2053
  "option to 0 shows all items."
2054
  msgstr ""
2055
 
2056
- #: admin/views/Options.php:1130 admin/views/Options.php:1348
2057
- #: admin/views/Options.php:1584 admin/views/Options.php:2180
2058
  msgid "Images per load"
2059
  msgstr ""
2060
 
2061
- #: admin/views/Options.php:1134 admin/views/Options.php:1352
2062
- #: admin/views/Options.php:1588 admin/views/Options.php:2184
2063
  msgid "Specify the number of images to display per load on galleries."
2064
  msgstr ""
2065
 
2066
- #: admin/views/Options.php:1142 admin/views/Options.php:1359
2067
- #: admin/views/Options.php:1595 admin/views/Options.php:1792
2068
- #: admin/views/Options.php:2032 admin/views/Options.php:2191
2069
- #: admin/views/Options.php:2368
2070
  msgid "Order by"
2071
  msgstr "Sipariş"
2072
 
2073
- #: admin/views/Options.php:1156 admin/views/Options.php:1374
2074
- #: admin/views/Options.php:1610 admin/views/Options.php:1807
2075
- #: admin/views/Options.php:2047 admin/views/Options.php:2206
2076
- #: admin/views/Options.php:2383 admin/views/Options.php:2568
2077
- #: admin/views/Options.php:2590 admin/views/Options.php:2868
2078
- #: admin/views/Options.php:2890 admin/views/Options.php:3108
2079
- #: admin/views/Options.php:3130
2080
  msgid "Ascending"
2081
  msgstr ""
2082
 
2083
- #: admin/views/Options.php:1157 admin/views/Options.php:1375
2084
- #: admin/views/Options.php:1611 admin/views/Options.php:1808
2085
- #: admin/views/Options.php:2048 admin/views/Options.php:2207
2086
- #: admin/views/Options.php:2384 admin/views/Options.php:2569
2087
- #: admin/views/Options.php:2591 admin/views/Options.php:2869
2088
- #: admin/views/Options.php:2891 admin/views/Options.php:3109
2089
- #: admin/views/Options.php:3131
2090
  msgid "Descending"
2091
  msgstr ""
2092
 
2093
- #: admin/views/Options.php:1160 admin/views/Options.php:1378
2094
- #: admin/views/Options.php:1614 admin/views/Options.php:1811
2095
- #: admin/views/Options.php:2051 admin/views/Options.php:2210
2096
- #: admin/views/Options.php:2387 admin/views/Options.php:2594
2097
- #: admin/views/Options.php:2894 admin/views/Options.php:3134
2098
  msgid ""
2099
  "Select the parameter and order direction to sort the gallery images with. E."
2100
  "g. Title and Ascending."
2101
  msgstr ""
2102
 
2103
- #: admin/views/Options.php:1165 admin/views/Options.php:1383
2104
- #: admin/views/Options.php:1619 admin/views/Options.php:2056
2105
- #: admin/views/Options.php:2215 admin/views/Options.php:2599
2106
- #: admin/views/Options.php:2899 admin/views/Options.php:3139
2107
  msgid "Show search box"
2108
  msgstr ""
2109
 
2110
- #: admin/views/Options.php:1170 admin/views/Options.php:1388
2111
- #: admin/views/Options.php:1624 admin/views/Options.php:2061
2112
- #: admin/views/Options.php:2220 admin/views/Options.php:2604
2113
- #: admin/views/Options.php:2904 admin/views/Options.php:3144
2114
  msgid ""
2115
  "Enable this option to display a search box with your gallery or gallery "
2116
  "group."
2117
  msgstr ""
2118
 
2119
- #: admin/views/Options.php:1175 admin/views/Options.php:1393
2120
- #: admin/views/Options.php:1629 admin/views/Options.php:2066
2121
- #: admin/views/Options.php:2225 admin/views/Options.php:2609
2122
- #: admin/views/Options.php:2909 admin/views/Options.php:3149
2123
  msgid "Add placeholder to search"
2124
  msgstr ""
2125
 
2126
- #: admin/views/Options.php:1183 admin/views/Options.php:1401
2127
- #: admin/views/Options.php:1637 admin/views/Options.php:2074
2128
- #: admin/views/Options.php:2233 admin/views/Options.php:2617
2129
- #: admin/views/Options.php:2917 admin/views/Options.php:3157
2130
  msgid "Search box maximum width"
2131
  msgstr ""
2132
 
2133
- #: admin/views/Options.php:1191 admin/views/Options.php:1409
2134
- #: admin/views/Options.php:1645 admin/views/Options.php:2082
2135
- #: admin/views/Options.php:2241 admin/views/Options.php:2625
2136
- #: admin/views/Options.php:2925 admin/views/Options.php:3165
2137
  msgid "Show \"Order by\" dropdown list"
2138
  msgstr ""
2139
 
2140
- #: admin/views/Options.php:1196 admin/views/Options.php:1414
2141
- #: admin/views/Options.php:1650 admin/views/Options.php:2087
2142
- #: admin/views/Options.php:2246 admin/views/Options.php:2630
2143
- #: admin/views/Options.php:2930 admin/views/Options.php:3170
2144
  msgid ""
2145
  "Activate this dropdown box to let users browse your gallery images with "
2146
  "different ordering options."
2147
  msgstr ""
2148
 
2149
- #: admin/views/Options.php:1201 admin/views/Options.php:1419
2150
- #: admin/views/Options.php:1655 admin/views/Options.php:2092
2151
- #: admin/views/Options.php:2251 admin/views/Options.php:2635
2152
- #: admin/views/Options.php:2935 admin/views/Options.php:3175
2153
  msgid "Show tag box"
2154
  msgstr "Derece Show"
2155
 
2156
- #: admin/views/Options.php:1206 admin/views/Options.php:1424
2157
- #: admin/views/Options.php:1660 admin/views/Options.php:2097
2158
- #: admin/views/Options.php:2256 admin/views/Options.php:2640
2159
- #: admin/views/Options.php:2940 admin/views/Options.php:3180
2160
  msgid ""
2161
  "Enable Tag Box to allow users to filter the gallery images by their tags."
2162
  msgstr ""
2163
 
2164
- #: admin/views/Options.php:1213 admin/views/Options.php:1431
2165
- #: admin/views/Options.php:1667 admin/views/Options.php:2104
2166
- #: admin/views/Options.php:2263 admin/views/Options.php:2667
 
2167
  msgid "Show gallery title"
2168
  msgstr ""
2169
 
2170
- #: admin/views/Options.php:1218 admin/views/Options.php:1436
2171
- #: admin/views/Options.php:1672 admin/views/Options.php:2109
2172
- #: admin/views/Options.php:2268
2173
  msgid ""
2174
  "Allow users to see the titles of your galleries by enabling this setting."
2175
  msgstr ""
2176
 
2177
- #: admin/views/Options.php:1223 admin/views/Options.php:1441
2178
- #: admin/views/Options.php:1677 admin/views/Options.php:2114
2179
- #: admin/views/Options.php:2273
2180
  msgid "Show gallery description"
2181
  msgstr ""
2182
 
2183
- #: admin/views/Options.php:1228 admin/views/Options.php:1446
2184
- #: admin/views/Options.php:1682 admin/views/Options.php:2119
2185
- #: admin/views/Options.php:2278
2186
  msgid "Display the descriptions of your galleries by activating this option."
2187
  msgstr ""
2188
 
2189
- #: admin/views/Options.php:1233 admin/views/Options.php:1451
2190
- #: admin/views/Options.php:1687 admin/views/Options.php:1879
2191
- #: admin/views/Options.php:2011 admin/views/Options.php:2283
2192
- #: admin/views/Options.php:2415 admin/views/Options.php:2726
2193
- #: admin/views/Options.php:2967 admin/views/Options.php:3265
2194
  msgid "Show image title"
2195
  msgstr ""
2196
 
2197
- #: admin/views/Options.php:1235 admin/views/Options.php:1275
2198
- #: admin/views/Options.php:1453 admin/views/Options.php:1504
2199
- #: admin/views/Options.php:1689 admin/views/Options.php:1728
2200
- #: admin/views/Options.php:2669 admin/views/Options.php:2729
2201
- #: admin/views/Options.php:2771 admin/views/Options.php:2969
2202
- #: admin/views/Options.php:2999 admin/views/Options.php:3268
2203
- #: admin/views/Options.php:3310
2204
  msgid "Show on hover"
2205
  msgstr "Bilgi göster"
2206
 
2207
- #: admin/views/Options.php:1236 admin/views/Options.php:1276
2208
- #: admin/views/Options.php:1454 admin/views/Options.php:2670
2209
- #: admin/views/Options.php:2731 admin/views/Options.php:2772
2210
- #: admin/views/Options.php:2970 admin/views/Options.php:3270
2211
- #: admin/views/Options.php:3311
2212
  msgid "Always show"
2213
  msgstr ""
2214
 
2215
- #: admin/views/Options.php:1237 admin/views/Options.php:1277
2216
- #: admin/views/Options.php:1455 admin/views/Options.php:1505
2217
- #: admin/views/Options.php:1690 admin/views/Options.php:1729
2218
- #: admin/views/Options.php:2671 admin/views/Options.php:2733
2219
- #: admin/views/Options.php:2773 admin/views/Options.php:2971
2220
- #: admin/views/Options.php:3000 admin/views/Options.php:3272
2221
- #: admin/views/Options.php:3312
2222
  msgid "Don't show"
2223
  msgstr ""
2224
 
2225
- #: admin/views/Options.php:1239 admin/views/Options.php:1457
2226
- #: admin/views/Options.php:1692 admin/views/Options.php:2735
2227
- #: admin/views/Options.php:2973 admin/views/Options.php:3274
2228
  msgid "Choose to show/hide titles of images, or display them on hover."
2229
  msgstr ""
2230
 
2231
- #: admin/views/Options.php:1244 admin/views/Options.php:1473
2232
- #: admin/views/Options.php:1697 admin/views/Options.php:2740
2233
- #: admin/views/Options.php:3279
 
 
 
 
 
 
 
 
2234
  msgid "Show Play icon on video thumbnails"
2235
  msgstr ""
2236
 
2237
- #: admin/views/Options.php:1249 admin/views/Options.php:1478
2238
- #: admin/views/Options.php:1702 admin/views/Options.php:2745
2239
- #: admin/views/Options.php:3284
2240
  msgid "Activate this option to add a Play button on thumbnails of videos."
2241
  msgstr ""
2242
 
2243
- #: admin/views/Options.php:1254 admin/views/Options.php:1483
2244
- #: admin/views/Options.php:1707 admin/views/Options.php:1982
2245
- #: admin/views/Options.php:2124 admin/views/Options.php:2305
2246
- #: admin/views/Options.php:2459 admin/views/Options.php:2750
2247
- #: admin/views/Options.php:2978 admin/views/Options.php:3289
2248
  msgid "Enable bulk download button"
2249
  msgstr ""
2250
 
2251
- #: admin/views/Options.php:1259 admin/views/Options.php:1488
2252
- #: admin/views/Options.php:1712 admin/views/Options.php:1987
2253
- #: admin/views/Options.php:2129 admin/views/Options.php:2310
2254
- #: admin/views/Options.php:2464 admin/views/Options.php:2755
2255
- #: admin/views/Options.php:2983 admin/views/Options.php:3294
2256
  msgid ""
2257
  "Activate this setting to let users download all images of your gallery with "
2258
  "a click."
2259
  msgstr ""
2260
 
2261
- #: admin/views/Options.php:1263 admin/views/Options.php:1492
2262
- #: admin/views/Options.php:1716 admin/views/Options.php:1991
2263
- #: admin/views/Options.php:2133 admin/views/Options.php:2314
2264
- #: admin/views/Options.php:2468 admin/views/Options.php:2759
2265
- #: admin/views/Options.php:2987 admin/views/Options.php:3298
2266
  msgid ""
2267
  "Photo Gallery Export will not work correctly, as ZipArchive PHP extension is "
2268
  "disabled on your website. Please contact your hosting provider and ask them "
2269
  "to enable it."
2270
  msgstr ""
2271
 
2272
- #: admin/views/Options.php:1273 admin/views/Options.php:1502
2273
- #: admin/views/Options.php:1726 admin/views/Options.php:2769
2274
- #: admin/views/Options.php:2997 admin/views/Options.php:3308
2275
  msgid "Show ecommerce icon"
2276
  msgstr "Yorumları göster"
2277
 
2278
- #: admin/views/Options.php:1279 admin/views/Options.php:1507
2279
- #: admin/views/Options.php:1731 admin/views/Options.php:2775
2280
- #: admin/views/Options.php:3002 admin/views/Options.php:3314
2281
  msgid "Choose to show/hide ecommerce icon, or display them on hover."
2282
  msgstr ""
2283
 
2284
- #: admin/views/Options.php:1305 admin/views/Options.php:1551
2285
  msgid "Thumbnail size"
2286
  msgstr ""
2287
 
2288
- #: admin/views/Options.php:1309 admin/views/Options.php:1555
2289
  msgid ""
2290
  "The default size of thumbnails which will display on published galleries."
2291
  msgstr ""
2292
 
2293
- #: admin/views/Options.php:1315 admin/views/Shortcode.php:2156
2294
  msgid "Number of image rows"
2295
  msgstr ""
2296
 
2297
- #: admin/views/Options.php:1319
2298
  msgid ""
2299
  "Set the maximum number of image columns (or rows) in galleries. Note, that "
2300
  "the parent container needs to be large enough to display all columns."
2301
  msgstr ""
2302
 
2303
- #: admin/views/Options.php:1462
2304
- msgid "Show image descriptions"
2305
- msgstr "Yorumları göster"
2306
-
2307
- #: admin/views/Options.php:1467
2308
- msgid "Enable this setting to display descriptions under images."
2309
- msgstr ""
2310
-
2311
- #: admin/views/Options.php:1519 admin/views/Options.php:2694
2312
- #: admin/views/Options.php:3233
2313
  msgid "Mosaic gallery type"
2314
  msgstr "Galeri boş"
2315
 
2316
- #: admin/views/Options.php:1521 admin/views/Options.php:2696
2317
- #: admin/views/Options.php:3235
2318
  msgid "Vertical"
2319
  msgstr ""
2320
 
2321
- #: admin/views/Options.php:1522 admin/views/Options.php:2697
2322
- #: admin/views/Options.php:3236
2323
  msgid "Horizontal"
2324
  msgstr ""
2325
 
2326
- #: admin/views/Options.php:1524 admin/views/Options.php:2699
2327
- #: admin/views/Options.php:3238
2328
  msgid "Select the type of Mosaic galleries, Vertical or Horizontal."
2329
  msgstr ""
2330
 
2331
- #: admin/views/Options.php:1530 admin/views/Options.php:2705
2332
- #: admin/views/Options.php:3244
2333
  msgid "Resizable mosaic"
2334
  msgstr ""
2335
 
2336
- #: admin/views/Options.php:1535 admin/views/Options.php:2710
2337
- #: admin/views/Options.php:3249
2338
  msgid ""
2339
  "If this setting is enabled, Photo Gallery resizes all thumbnail images on "
2340
  "Mosaic galleries, without modifying their initial display."
2341
  msgstr ""
2342
 
2343
- #: admin/views/Options.php:1541 admin/views/Options.php:2716
2344
- #: admin/views/Options.php:3255
2345
  msgid "Width of mosaic galleries"
2346
  msgstr ""
2347
 
2348
- #: admin/views/Options.php:1545 admin/views/Options.php:2720
2349
- #: admin/views/Options.php:3259
2350
  msgid ""
2351
  "The total width of mosaic galleries as a percentage of container's width."
2352
  msgstr ""
2353
 
2354
- #: admin/views/Options.php:1743
2355
  msgid "Slideshow effect"
2356
  msgstr ""
2357
 
2358
- #: admin/views/Options.php:1750 admin/views/Options.php:3381
2359
  #: admin/views/WidgetSlideshow.php:105
2360
  msgid "This effect is disabled in free version."
2361
  msgstr ""
2362
 
2363
- #: admin/views/Options.php:1757
2364
  msgid "Select the animation effect for your slideshow."
2365
  msgstr ""
2366
 
2367
- #: admin/views/Options.php:1762 admin/views/Options.php:3393
2368
  msgid "Effect duration"
2369
  msgstr ""
2370
 
2371
- #: admin/views/Options.php:1766
2372
  msgid "Set the duration of your slideshow animation effect."
2373
  msgstr ""
2374
 
2375
- #: admin/views/Options.php:1771 admin/views/Options.php:2403
2376
- #: admin/views/Options.php:3413
2377
  msgid "Time interval"
2378
  msgstr ""
2379
 
2380
- #: admin/views/Options.php:1775
2381
  msgid ""
2382
  "Specify the time interval between slides in Photo Gallery's Slideshow view."
2383
  msgstr ""
2384
 
2385
- #: admin/views/Options.php:1780
2386
  msgid "Slideshow dimensions"
2387
  msgstr ""
2388
 
2389
- #: admin/views/Options.php:1785
2390
  msgid "Set the default dimensions of your slideshow galleries."
2391
  msgstr ""
2392
 
2393
- #: admin/views/Options.php:1816 admin/views/Options.php:2392
2394
  msgid "Enable autoplay"
2395
  msgstr ""
2396
 
2397
- #: admin/views/Options.php:1821
2398
  msgid "Activate this option to autoplay slideshow galleries."
2399
  msgstr ""
2400
 
2401
- #: admin/views/Options.php:1826
2402
  msgid "Enable shuffle"
2403
  msgstr ""
2404
 
2405
- #: admin/views/Options.php:1831
2406
  msgid "The slideshow images will be shuffled in case this setting is enabled."
2407
  msgstr ""
2408
 
2409
- #: admin/views/Options.php:1836 admin/views/Options.php:3445
2410
  msgid "Enable control buttons"
2411
  msgstr ""
2412
 
2413
- #: admin/views/Options.php:1841
2414
  msgid "Enable this option to show control buttons on your slideshow galleries."
2415
  msgstr ""
2416
 
2417
- #: admin/views/Options.php:1846 admin/views/Options.php:3569
2418
  msgid "Show Next / Previous buttons"
2419
  msgstr ""
2420
 
2421
- #: admin/views/Options.php:1848 admin/views/Options.php:3571
2422
  msgid "On hover"
2423
  msgstr ""
2424
 
2425
- #: admin/views/Options.php:1849 admin/views/Options.php:3572
2426
  msgid "Always"
2427
  msgstr ""
2428
 
2429
- #: admin/views/Options.php:1851
2430
  msgid ""
2431
  "Display Next/Previous buttons on your slideshow galleries activating this "
2432
  "setting."
2433
  msgstr ""
2434
 
2435
- #: admin/views/Options.php:1858
2436
  msgid "Enable slideshow filmstrip"
2437
  msgstr ""
2438
 
2439
- #: admin/views/Options.php:1863
2440
  msgid ""
2441
  "Add a filmstrip with image thumbnails to your slideshow galleries by "
2442
  "enabling this option."
2443
  msgstr ""
2444
 
2445
- #: admin/views/Options.php:1869
2446
  msgid "Slideshow filmstrip size"
2447
  msgstr ""
2448
 
2449
- #: admin/views/Options.php:1873 admin/views/Options.php:3437
2450
  msgid ""
2451
  "Set the size of your filmstrip. If the filmstrip is horizontal, this "
2452
  "indicates its height, whereas for vertical filmstrips it sets the width."
2453
  msgstr ""
2454
 
2455
- #: admin/views/Options.php:1884
2456
  msgid "Enable this setting to display titles of images in Slideshow view."
2457
  msgstr ""
2458
 
2459
- #: admin/views/Options.php:1889
2460
  msgid "Title position"
2461
  msgstr ""
2462
 
2463
- #: admin/views/Options.php:1911
2464
  msgid "Set the position of image titles in Slideshow view."
2465
  msgstr ""
2466
 
2467
- #: admin/views/Options.php:1916
2468
  msgid "Full width title"
2469
  msgstr ""
2470
 
2471
- #: admin/views/Options.php:1921
2472
  msgid "Display image title based on the slideshow dimensions."
2473
  msgstr ""
2474
 
2475
- #: admin/views/Options.php:1926 admin/views/Options.php:2020
2476
- #: admin/views/Options.php:2294
2477
  msgid "Show image description"
2478
  msgstr "Yorumları göster"
2479
 
2480
- #: admin/views/Options.php:1931
2481
  msgid "Enable this setting to show descriptions of images in Slideshow view."
2482
  msgstr ""
2483
 
2484
- #: admin/views/Options.php:1936
2485
  msgid "Description position"
2486
  msgstr ""
2487
 
2488
- #: admin/views/Options.php:1958
2489
  msgid "Set the position of image descriptions in Slideshow view."
2490
  msgstr ""
2491
 
2492
- #: admin/views/Options.php:1963
2493
  msgid "Enable slideshow Music"
2494
  msgstr ""
2495
 
2496
- #: admin/views/Options.php:1968
2497
  msgid ""
2498
  "Enabling this option, you can have music playing along with your slideshow."
2499
  msgstr ""
2500
 
2501
- #: admin/views/Options.php:1973
2502
  msgid "Audio URL"
2503
  msgstr ""
2504
 
2505
- #: admin/views/Options.php:1977
2506
  msgid ""
2507
  "Provide the absolute URL of the audio file you would like to play with your "
2508
  "slideshow."
2509
  msgstr ""
2510
 
2511
- #: admin/views/Options.php:2002 admin/views/Options.php:2144
2512
  msgid "Image width"
2513
  msgstr ""
2514
 
2515
- #: admin/views/Options.php:2006
2516
  msgid "Specify the default width of images in Image Browser view."
2517
  msgstr ""
2518
 
2519
- #: admin/views/Options.php:2025
2520
  msgid "Enable this setting to display titles of images in Image Browser view."
2521
  msgstr ""
2522
 
2523
- #: admin/views/Options.php:2148
2524
  msgid "Specify the default width of images in Blog Style view."
2525
  msgstr ""
2526
 
2527
- #: admin/views/Options.php:2174
2528
  msgid "Select the number of images displayed per page in Blog Style view."
2529
  msgstr ""
2530
 
2531
- #: admin/views/Options.php:2288
2532
  msgid "Enable this setting to display titles of images in Blog Style view."
2533
  msgstr ""
2534
 
2535
- #: admin/views/Options.php:2299
2536
  msgid "Enable this setting to show descriptions of images in Blog Style view."
2537
  msgstr ""
2538
 
2539
- #: admin/views/Options.php:2325
2540
  msgid "Max. number of images"
2541
  msgstr ""
2542
 
2543
- #: admin/views/Options.php:2329
2544
  msgid "Set the maximum number of images that are shown with Carousel display."
2545
  msgstr ""
2546
 
2547
- #: admin/views/Options.php:2340
2548
  msgid "Specify the dimensions of carousel images in pixels."
2549
  msgstr ""
2550
 
2551
- #: admin/views/Options.php:2346
2552
  msgid "Carousel ratio"
2553
  msgstr ""
2554
 
2555
- #: admin/views/Options.php:2350
2556
  msgid ""
2557
  "This option defines the proportion of dimensions between neighboring images "
2558
  "in the carousel."
2559
  msgstr ""
2560
 
2561
- #: admin/views/Options.php:2356
2562
  msgid "Fixed width"
2563
  msgstr ""
2564
 
2565
- #: admin/views/Options.php:2360
2566
  msgid "Specify the fixed width of Carousel gallery container."
2567
  msgstr ""
2568
 
2569
- #: admin/views/Options.php:2397
2570
  msgid "Activate this option to autoplay Carousel galleries."
2571
  msgstr ""
2572
 
2573
- #: admin/views/Options.php:2407
2574
  msgid ""
2575
  "Specify the time interval between rotations in Photo Gallery's Carousel view."
2576
  msgstr ""
2577
 
2578
- #: admin/views/Options.php:2420
2579
- msgid ""
2580
- "Display image titles in Photo Gallery Carousel view by activating this "
2581
- "option."
2582
- msgstr ""
2583
-
2584
- #: admin/views/Options.php:2426
2585
  msgid "Container fit"
2586
  msgstr ""
2587
 
2588
- #: admin/views/Options.php:2431
2589
  msgid ""
2590
  "Enabling this setting fits the images inside their container on Carousel "
2591
  "galleries with fixed width."
2592
  msgstr ""
2593
 
2594
- #: admin/views/Options.php:2437
2595
  msgid "Next/Previous buttons"
2596
  msgstr ""
2597
 
2598
- #: admin/views/Options.php:2442
2599
  msgid ""
2600
  "Enable this setting to display Next/Previous buttons on your galleries with "
2601
  "Carousel view."
2602
  msgstr ""
2603
 
2604
- #: admin/views/Options.php:2448
 
 
 
 
 
 
2605
  msgid "Play/Pause buttons"
2606
  msgstr ""
2607
 
2608
- #: admin/views/Options.php:2453
2609
  msgid "Activate this to show Play/Pause buttons on your Carousel galleries."
2610
  msgstr ""
2611
 
2612
- #: admin/views/Options.php:2485 admin/views/Options.php:2787
2613
  msgid "Number of gallery group columns"
2614
  msgstr ""
2615
 
2616
- #: admin/views/Options.php:2489 admin/views/Options.php:2791
2617
  msgid ""
2618
  "Set the maximum number of columns in gallery groups. Note, that the parent "
2619
  "container needs to be large enough to display all columns."
2620
  msgstr ""
2621
 
2622
- #: admin/views/Options.php:2494 admin/views/Options.php:3034
2623
  msgid "Gallery group thumbnail dimensions"
2624
  msgstr ""
2625
 
2626
- #: admin/views/Options.php:2499 admin/views/Options.php:2800
2627
- #: admin/views/Options.php:3039
2628
  msgid "Specify the dimensions of thumbnails in gallery groups."
2629
  msgstr ""
2630
 
2631
- #: admin/views/Options.php:2538 admin/views/Options.php:2838
2632
- #: admin/views/Options.php:3078
2633
  msgid "Gallery groups per page"
2634
  msgstr "Galeri boş"
2635
 
2636
- #: admin/views/Options.php:2542 admin/views/Options.php:2842
2637
- #: admin/views/Options.php:3082
2638
  msgid ""
2639
  "Specify the number of galleries/gallery groups to display per page. Setting "
2640
  "this option to 0 shows all items."
2641
  msgstr ""
2642
 
2643
- #: admin/views/Options.php:2558 admin/views/Options.php:2858
2644
- #: admin/views/Options.php:3098
2645
  msgid "Order Gallery group by"
2646
  msgstr "Galeri boş"
2647
 
2648
- #: admin/views/Options.php:2572 admin/views/Options.php:2872
2649
- #: admin/views/Options.php:3112
2650
  msgid ""
2651
  "Select the parameter and order direction to sort the gallery group images "
2652
  "with. E.g. Title and Ascending."
2653
  msgstr ""
2654
 
2655
- #: admin/views/Options.php:2575 admin/views/Options.php:2875
2656
- #: admin/views/Options.php:3116
2657
  msgid "Order images by"
2658
  msgstr "Sipariş"
2659
 
2660
- #: admin/views/Options.php:2647 admin/views/Options.php:2947
2661
- #: admin/views/Options.php:3187
2662
  msgid "Show gallery group or gallery title"
2663
  msgstr ""
2664
 
2665
- #: admin/views/Options.php:2652 admin/views/Options.php:2952
2666
- #: admin/views/Options.php:3192
2667
  msgid ""
2668
  "Display the title of displayed gallery or gallery group by enabling this "
2669
  "setting."
2670
  msgstr ""
2671
 
2672
- #: admin/views/Options.php:2657 admin/views/Options.php:2957
2673
- #: admin/views/Options.php:3197
2674
  msgid "Show gallery group or gallery description"
2675
  msgstr ""
2676
 
2677
- #: admin/views/Options.php:2662 admin/views/Options.php:2962
2678
- #: admin/views/Options.php:3202
2679
  msgid ""
2680
  "Display the description of displayed gallery or gallery group by enabling "
2681
  "this setting."
2682
  msgstr ""
2683
 
2684
- #: admin/views/Options.php:2673
2685
  msgid ""
2686
  "Choose to show/hide titles of galleries/gallery groups, or display them on "
2687
  "hover."
2688
  msgstr ""
2689
 
2690
- #: admin/views/Options.php:2678 admin/views/Options.php:3217
2691
  msgid "Gallery view type"
2692
  msgstr "Galeri boş"
2693
 
2694
- #: admin/views/Options.php:2688 admin/views/Options.php:3227
2695
  msgid ""
2696
  "Choose the display type for gallery groups, Thumbnails, Masonry, Mosaic, "
2697
  "Slideshow, Image browser, Blog style or Carousel."
2698
  msgstr ""
2699
 
2700
- #: admin/views/Options.php:2796
2701
  msgid "Gallery group thumbnail width"
2702
  msgstr "Galeri boş"
2703
 
2704
- #: admin/views/Options.php:2814
2705
  msgid "Thumbnail width"
2706
  msgstr ""
2707
 
2708
- #: admin/views/Options.php:3014
2709
  msgid "Extended gallery group height"
2710
  msgstr ""
2711
 
2712
- #: admin/views/Options.php:3018
2713
  msgid "Set the height of blocks in Extended gallery groups."
2714
  msgstr ""
2715
 
2716
- #: admin/views/Options.php:3023
2717
  msgid "Number of columns"
2718
  msgstr ""
2719
 
2720
- #: admin/views/Options.php:3025
2721
  msgid "1 column"
2722
  msgstr ""
2723
 
2724
- #: admin/views/Options.php:3026
2725
  msgid "2 column"
2726
  msgstr ""
2727
 
2728
- #: admin/views/Options.php:3027
2729
  msgid "3 column"
2730
  msgstr ""
2731
 
2732
- #: admin/views/Options.php:3029
2733
  msgid "Set the maximum number of columns."
2734
  msgstr ""
2735
 
2736
- #: admin/views/Options.php:3207
2737
  msgid "Show extended gallery group description"
2738
  msgstr ""
2739
 
2740
- #: admin/views/Options.php:3212
2741
  msgid ""
2742
  "Enable this option to show descriptions of galleries/gallery groups in "
2743
  "Extended view."
2744
  msgstr ""
2745
 
2746
- #: admin/views/Options.php:3354
2747
  msgid "Full-width lightbox"
2748
  msgstr ""
2749
 
2750
- #: admin/views/Options.php:3359
2751
  msgid "Image lightbox will appear full-width if this setting is activated."
2752
  msgstr ""
2753
 
2754
- #: admin/views/Options.php:3364
2755
  msgid "Lightbox dimensions"
2756
  msgstr ""
2757
 
2758
- #: admin/views/Options.php:3369
2759
  msgid "Set the dimensions of image lightbox."
2760
  msgstr ""
2761
 
2762
- #: admin/views/Options.php:3374
2763
  msgid "Lightbox effect"
2764
  msgstr ""
2765
 
2766
- #: admin/views/Options.php:3388
2767
  msgid "Select the animation effect for image lightbox."
2768
  msgstr ""
2769
 
2770
- #: admin/views/Options.php:3397
2771
  msgid "Set the duration of lightbox animation effect."
2772
  msgstr ""
2773
 
2774
- #: admin/views/Options.php:3398
2775
  msgid ""
2776
  "Note, that the value of Effect Duration can not be greater than 1/4 of Time "
2777
  "Interval."
2778
  msgstr ""
2779
 
2780
- #: admin/views/Options.php:3403
2781
  msgid "Lightbox autoplay"
2782
  msgstr ""
2783
 
2784
- #: admin/views/Options.php:3408
2785
  msgid "Activate this option to autoplay images in gallery lightbox."
2786
  msgstr ""
2787
 
2788
- #: admin/views/Options.php:3417
2789
  msgid "Specify the time interval of autoplay in Photo Gallery lightbox."
2790
  msgstr ""
2791
 
2792
- #: admin/views/Options.php:3422
2793
  msgid "Enable filmstrip"
2794
  msgstr ""
2795
 
2796
- #: admin/views/Options.php:3427
2797
  msgid ""
2798
  "Add a filmstrip with image thumbnails to the lightbox of your galleries."
2799
  msgstr ""
2800
 
2801
- #: admin/views/Options.php:3433
2802
  msgid "Filmstrip size"
2803
  msgstr ""
2804
 
2805
- #: admin/views/Options.php:3476
2806
  msgid "Enable this option to show control buttons on Photo Gallery lightbox."
2807
  msgstr ""
2808
 
2809
- #: admin/views/Options.php:3481
2810
  msgid "Enable fullscreen button"
2811
  msgstr "Tam Ekran çıkın"
2812
 
2813
- #: admin/views/Options.php:3486
2814
  msgid ""
2815
  "Activate this setting to add Fullscreen button to lightbox control buttons."
2816
  msgstr ""
2817
 
2818
- #: admin/views/Options.php:3491
2819
  msgid "Enable comments"
2820
  msgstr "Yorumları göster"
2821
 
2822
- #: admin/views/Options.php:3500
2823
  msgid ""
2824
  "Let users to leave comments on images by enabling comments section of "
2825
  "lightbox."
2826
  msgstr ""
2827
 
2828
- #: admin/views/Options.php:3506
2829
  msgid "Show Email for comments"
2830
  msgstr "Yorumları göster"
2831
 
2832
- #: admin/views/Options.php:3511
2833
  msgid ""
2834
  "Activate this option to display email address field in comments section."
2835
  msgstr ""
2836
 
2837
- #: admin/views/Options.php:3517
2838
  msgid "Show Captcha for comments"
2839
  msgstr "Yorumları göster"
2840
 
2841
- #: admin/views/Options.php:3522
2842
  msgid ""
2843
  "Enable this setting to place Captcha word verification in comments section."
2844
  msgstr ""
2845
 
2846
- #: admin/views/Options.php:3528
 
 
 
 
2847
  msgid "Enable comments moderation"
2848
  msgstr "Yorumunuz ılımlılık bekliyor"
2849
 
2850
- #: admin/views/Options.php:3533
2851
  msgid "Moderate each comment left on images by activating this setting."
2852
  msgstr ""
2853
 
2854
- #: admin/views/Options.php:3539
2855
  msgid "Show image info"
2856
  msgstr "Yorumları göster"
2857
 
2858
- #: admin/views/Options.php:3544
2859
  msgid ""
2860
  "Activate this setting to show Info button among lightbox control buttons."
2861
  msgstr ""
2862
 
2863
- #: admin/views/Options.php:3549
2864
  msgid "Display info by default"
2865
  msgstr ""
2866
 
2867
- #: admin/views/Options.php:3554
2868
  msgid ""
2869
  "Enabling this option will let you show image title and description on "
2870
  "lightbox by default."
2871
  msgstr ""
2872
 
2873
- #: admin/views/Options.php:3559
2874
  msgid "Full width info"
2875
  msgstr ""
2876
 
2877
- #: admin/views/Options.php:3564
2878
  msgid ""
2879
  "Display info box with the full width of the lightbox by enabling this option."
2880
  msgstr ""
2881
 
2882
- #: admin/views/Options.php:3574
2883
  msgid ""
2884
  "Choose to display Next/Previous buttons of Photo Gallery lightbox on hover "
2885
  "or always."
2886
  msgstr ""
2887
 
2888
- #: admin/views/Options.php:3579
2889
  msgid "Display views counter"
2890
  msgstr ""
2891
 
2892
- #: admin/views/Options.php:3584
2893
  msgid "Show the number of views, when a gallery image was opened in lightbox."
2894
  msgstr ""
2895
 
2896
- #: admin/views/Options.php:3590
2897
  msgid "Enable rating"
2898
  msgstr "Gizle derece"
2899
 
2900
- #: admin/views/Options.php:3595
2901
  msgid ""
2902
  "Allow users to rate your images by adding rating feature to Photo Gallery "
2903
  "lightbox."
2904
  msgstr ""
2905
 
2906
- #: admin/views/Options.php:3603
2907
  msgid "Show Display Original Image button"
2908
  msgstr ""
2909
 
2910
- #: admin/views/Options.php:3608
2911
  msgid ""
2912
  "Let users view original versions of your images by enabling this button."
2913
  msgstr ""
2914
 
2915
- #: admin/views/Options.php:3613
2916
  msgid "Show download button"
2917
  msgstr ""
2918
 
2919
- #: admin/views/Options.php:3618
2920
  msgid ""
2921
  "This option will allow users to download gallery images while viewing them "
2922
  "in lightbox."
2923
  msgstr ""
2924
 
2925
- #: admin/views/Options.php:3623
2926
  msgid "Show image counter"
2927
  msgstr "Yorumları göster"
2928
 
2929
- #: admin/views/Options.php:3628
2930
  msgid "Enable this option to display image counter on Photo Gallery lightbox."
2931
  msgstr ""
2932
 
2933
- #: admin/views/Options.php:3633
2934
  msgid "Enable looping"
2935
  msgstr "Gizle derece"
2936
 
2937
- #: admin/views/Options.php:3638
2938
  msgid ""
2939
  "Activate looping to start lightbox navigation from the beginning when users "
2940
  "reach its last image."
2941
  msgstr ""
2942
 
2943
- #: admin/views/Options.php:3643
2944
  msgid "Enable"
2945
  msgstr ""
2946
 
2947
- #: admin/views/Options.php:3648
2948
  msgid "Display AddThis on Photo Gallery lightbox by activating this option."
2949
  msgstr ""
2950
 
2951
- #: admin/views/Options.php:3654
2952
  msgid "profile ID"
2953
  msgstr ""
2954
 
2955
- #: admin/views/Options.php:3658
2956
  msgid "Provide the ID of your profile to connect to AddThis."
2957
  msgstr ""
2958
 
2959
- #: admin/views/Options.php:3658
2960
  #, php-format
2961
  msgid "Create an account %s."
2962
  msgstr ""
2963
 
2964
- #: admin/views/Options.php:3658 admin/views/Shortcode.php:254
2965
  msgid "here"
2966
  msgstr ""
2967
 
2968
- #: admin/views/Options.php:3664
2969
  msgid "Show Facebook button"
2970
  msgstr "Facebook'ta paylaşın"
2971
 
2972
- #: admin/views/Options.php:3669
2973
  msgid ""
2974
  "Enabling this setting will add Facebook sharing button to Photo Gallery "
2975
  "lightbox."
2976
  msgstr ""
2977
 
2978
- #: admin/views/Options.php:3675
2979
  msgid "Show Twitter button"
2980
  msgstr "Twitter'da paylaşın"
2981
 
2982
- #: admin/views/Options.php:3680
2983
  msgid "Enable this setting to add Tweet button to Photo Gallery lightbox."
2984
  msgstr ""
2985
 
2986
- #: admin/views/Options.php:3686
2987
  msgid "Show Pinterest button"
2988
  msgstr "Pinterest Share on"
2989
 
2990
- #: admin/views/Options.php:3691
2991
  msgid "Activate Pin button of Photo Gallery lightbox by enabling this setting."
2992
  msgstr ""
2993
 
2994
- #: admin/views/Options.php:3697
2995
  msgid "Show Tumblr button"
2996
  msgstr "Tumblr Share on"
2997
 
2998
- #: admin/views/Options.php:3702
2999
  msgid ""
3000
  "Allow users to share images on Tumblr from Photo Gallery lightbox by "
3001
  "activating this setting."
3002
  msgstr ""
3003
 
3004
- #: admin/views/Options.php:3711
3005
  msgid "Show Ecommerce button"
3006
  msgstr "Yorumları göster"
3007
 
3008
- #: admin/views/Options.php:3716
3009
  msgid "Enable this option to display ecommerce icon on Photo Gallery lightbox"
3010
  msgstr ""
3011
 
@@ -3018,1404 +3041,1447 @@ msgstr ""
3018
  msgid "Rating"
3019
  msgstr ""
3020
 
3021
- #: admin/views/Shortcode.php:198
 
 
 
 
3022
  msgid "Select the gallery to display."
3023
  msgstr ""
3024
 
3025
- #: admin/views/Shortcode.php:201
3026
  msgid "Gallery Group"
3027
  msgstr "Galeri boş"
3028
 
3029
- #: admin/views/Shortcode.php:212
3030
  msgid "Select the gallery group to display."
3031
  msgstr ""
3032
 
3033
- #: admin/views/Shortcode.php:218
3034
  msgid "Tag"
3035
  msgstr ""
3036
 
3037
- #: admin/views/Shortcode.php:230
3038
  msgid "Filter gallery images by this tag."
3039
  msgstr "Bu galeride resim yok."
3040
 
3041
- #: admin/views/Shortcode.php:235
3042
  msgid "Theme"
3043
  msgstr ""
3044
 
3045
- #: admin/views/Shortcode.php:247
3046
  msgid "Choose the theme for your gallery."
3047
  msgstr ""
3048
 
3049
- #: admin/views/Shortcode.php:253
3050
  msgid "Use default options"
3051
  msgstr ""
3052
 
3053
- #: admin/views/Shortcode.php:254
3054
  msgid ""
3055
  "Mark this option to use default settings configured in Photo Gallery Options."
3056
  msgstr ""
3057
 
3058
- #: admin/views/Shortcode.php:254
3059
  #, php-format
3060
  msgid "You can change the default options %s."
3061
  msgstr ""
3062
 
3063
- #: admin/views/Shortcode.php:279
3064
  msgid "Action on image click"
3065
  msgstr ""
3066
 
3067
- #: admin/views/Shortcode.php:289
3068
  msgid "Toggle panel"
3069
  msgstr ""
3070
 
3071
- #: admin/views/Shortcode.php:425
3072
  msgid "Insert into post"
3073
  msgstr ""
3074
 
3075
- #: admin/views/Shortcode.php:430
3076
- msgid "Please see "
3077
- msgstr ""
3078
-
3079
- #: admin/views/Shortcode.php:430
3080
- msgid "View in Premium version"
3081
- msgstr ""
3082
-
3083
- #: admin/views/Shortcode.php:452
3084
  msgid "New shortcode"
3085
  msgstr ""
3086
 
3087
- #: admin/views/Shortcode.php:461 admin/views/Shortcode.php:545
3088
  msgid "Generate"
3089
  msgstr ""
3090
 
3091
- #: admin/views/Shortcode.php:463
3092
  msgid ""
3093
  "If you would like to edit an existing shortcode, use this dropdown box to "
3094
  "select it."
3095
  msgstr ""
3096
 
3097
- #: admin/views/Shortcode.php:467
3098
  msgid "Shortcode"
3099
  msgstr ""
3100
 
3101
- #: admin/views/Shortcode.php:469
3102
  msgid ""
3103
  "Add the selected gallery or gallery group to any WordPress page or post. "
3104
  "Simply copy the generated shortcode and paste it in the content of page/post "
3105
  "editor."
3106
  msgstr ""
3107
 
3108
- #: admin/views/Shortcode.php:474
3109
  msgid "PHP function"
3110
  msgstr ""
3111
 
3112
- #: admin/views/Shortcode.php:476
3113
  msgid ""
3114
  "Use generated PHP function to call the selected gallery or gallery group on "
3115
  "a custom PHP template."
3116
  msgstr ""
3117
 
3118
- #: admin/views/Shortcode.php:563
3119
  msgid "There is no shortcode with such ID!"
3120
  msgstr ""
3121
 
3122
- #: admin/views/Shortcode.php:2153
3123
  msgid "Image thumbnail width "
3124
  msgstr ""
3125
 
3126
- #: admin/views/Shortcode.php:2155
3127
  msgid "Image thumbnail height"
3128
  msgstr ""
3129
 
3130
- #: admin/views/Themes.php:22
3131
- msgid "You can't change theme parameters in free version."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3132
  msgstr ""
3133
 
3134
- #: admin/views/Themes.php:176
3135
  msgid "Theme title"
3136
  msgstr "Derece Show"
3137
 
3138
- #: admin/views/Themes.php:184
 
 
 
 
3139
  msgid "Reset to default theme"
3140
  msgstr ""
3141
 
3142
- #: admin/views/Themes.php:212 admin/views/Themes.php:534
3143
- #: admin/views/Themes.php:856 admin/views/Themes.php:1911
3144
- #: admin/views/Themes.php:2921
3145
  msgid "Distance between pictures:"
3146
  msgstr ""
3147
 
3148
- #: admin/views/Themes.php:218 admin/views/Themes.php:540
3149
- #: admin/views/Themes.php:862 admin/views/Themes.php:1917
3150
- #: admin/views/Themes.php:2927
3151
  msgid "Distance from container frame:"
3152
  msgstr ""
3153
 
3154
- #: admin/views/Themes.php:224 admin/views/Themes.php:546
3155
- #: admin/views/Themes.php:868 admin/views/Themes.php:1923
3156
- #: admin/views/Themes.php:2933
3157
  msgid ""
3158
  "Enable this option to add distance between the parent container and the "
3159
  "thumbnails grid."
3160
  msgstr ""
3161
 
3162
- #: admin/views/Themes.php:228 admin/views/Themes.php:1640
3163
- #: admin/views/Themes.php:1927 admin/views/Themes.php:2473
3164
- #: admin/views/Themes.php:3302 admin/views/Themes.php:4679
3165
  msgid "Padding:"
3166
  msgstr ""
3167
 
3168
- #: admin/views/Themes.php:234 admin/views/Themes.php:550
3169
- #: admin/views/Themes.php:872 admin/views/Themes.php:1647
3170
- #: admin/views/Themes.php:1934 admin/views/Themes.php:2937
3171
- #: admin/views/Themes.php:3360 admin/views/Themes.php:4629
3172
  msgid "Border width:"
3173
  msgstr ""
3174
 
3175
- #: admin/views/Themes.php:240 admin/views/Themes.php:556
3176
- #: admin/views/Themes.php:878 admin/views/Themes.php:1653
3177
- #: admin/views/Themes.php:1940 admin/views/Themes.php:2943
3178
- #: admin/views/Themes.php:3366 admin/views/Themes.php:4635
3179
  msgid "Border style:"
3180
  msgstr "Sipariş:"
3181
 
3182
- #: admin/views/Themes.php:254 admin/views/Themes.php:570
3183
- #: admin/views/Themes.php:892 admin/views/Themes.php:1667
3184
- #: admin/views/Themes.php:1954 admin/views/Themes.php:2957
3185
- #: admin/views/Themes.php:3380 admin/views/Themes.php:4649
3186
  msgid "Border color:"
3187
  msgstr ""
3188
 
3189
- #: admin/views/Themes.php:260 admin/views/Themes.php:576
3190
- #: admin/views/Themes.php:898 admin/views/Themes.php:1673
3191
- #: admin/views/Themes.php:1960 admin/views/Themes.php:2492
3192
- #: admin/views/Themes.php:2963 admin/views/Themes.php:3386
3193
- #: admin/views/Themes.php:4655
3194
  msgid "Border radius:"
3195
  msgstr ""
3196
 
3197
- #: admin/views/Themes.php:263 admin/views/Themes.php:270
3198
- #: admin/views/Themes.php:432 admin/views/Themes.php:439
3199
- #: admin/views/Themes.php:495 admin/views/Themes.php:502
3200
- #: admin/views/Themes.php:579 admin/views/Themes.php:728
3201
- #: admin/views/Themes.php:817 admin/views/Themes.php:824
3202
- #: admin/views/Themes.php:901 admin/views/Themes.php:1052
3203
- #: admin/views/Themes.php:1059 admin/views/Themes.php:1114
3204
- #: admin/views/Themes.php:1121 admin/views/Themes.php:1237
3205
- #: admin/views/Themes.php:1258 admin/views/Themes.php:1286
3206
- #: admin/views/Themes.php:1320 admin/views/Themes.php:1376
3207
- #: admin/views/Themes.php:1436 admin/views/Themes.php:1443
3208
- #: admin/views/Themes.php:1497 admin/views/Themes.php:1504
3209
- #: admin/views/Themes.php:1559 admin/views/Themes.php:1579
3210
- #: admin/views/Themes.php:1636 admin/views/Themes.php:1643
3211
- #: admin/views/Themes.php:1676 admin/views/Themes.php:1696
3212
- #: admin/views/Themes.php:1770 admin/views/Themes.php:1777
3213
- #: admin/views/Themes.php:1810 admin/views/Themes.php:1872
3214
- #: admin/views/Themes.php:1879 admin/views/Themes.php:1930
3215
- #: admin/views/Themes.php:1963 admin/views/Themes.php:1970
3216
- #: admin/views/Themes.php:2130 admin/views/Themes.php:2137
3217
- #: admin/views/Themes.php:2192 admin/views/Themes.php:2247
3218
- #: admin/views/Themes.php:2254 admin/views/Themes.php:2327
3219
- #: admin/views/Themes.php:2334 admin/views/Themes.php:2422
3220
- #: admin/views/Themes.php:2462 admin/views/Themes.php:2469
3221
- #: admin/views/Themes.php:2495 admin/views/Themes.php:2528
3222
- #: admin/views/Themes.php:2607 admin/views/Themes.php:2640
3223
- #: admin/views/Themes.php:2659 admin/views/Themes.php:2740
3224
- #: admin/views/Themes.php:2881 admin/views/Themes.php:2888
3225
- #: admin/views/Themes.php:2966 admin/views/Themes.php:3119
3226
- #: admin/views/Themes.php:3174 admin/views/Themes.php:3229
3227
- #: admin/views/Themes.php:3236 admin/views/Themes.php:3298
3228
- #: admin/views/Themes.php:3305 admin/views/Themes.php:3312
3229
- #: admin/views/Themes.php:3389 admin/views/Themes.php:3406
3230
- #: admin/views/Themes.php:3451 admin/views/Themes.php:3534
3231
- #: admin/views/Themes.php:3541 admin/views/Themes.php:3635
3232
- #: admin/views/Themes.php:3689 admin/views/Themes.php:3722
3233
- #: admin/views/Themes.php:3830 admin/views/Themes.php:3867
3234
- #: admin/views/Themes.php:3911 admin/views/Themes.php:3944
3235
- #: admin/views/Themes.php:4049 admin/views/Themes.php:4118
3236
- #: admin/views/Themes.php:4125 admin/views/Themes.php:4132
3237
- #: admin/views/Themes.php:4260 admin/views/Themes.php:4267
3238
- #: admin/views/Themes.php:4274 admin/views/Themes.php:4485
3239
- #: admin/views/Themes.php:4504 admin/views/Themes.php:4537
3240
- #: admin/views/Themes.php:4658 admin/views/Themes.php:4675
3241
- #: admin/views/Themes.php:4682 admin/views/Themes.php:4711
3242
- #: admin/views/Themes.php:4872 admin/views/Themes.php:4961
 
3243
  msgid "Use CSS type values."
3244
  msgstr ""
3245
 
3246
- #: admin/views/Themes.php:267 admin/views/Themes.php:1967
3247
  msgid "Shadow:"
3248
  msgstr ""
3249
 
3250
- #: admin/views/Themes.php:274 admin/views/Themes.php:583
3251
- #: admin/views/Themes.php:905 admin/views/Themes.php:1974
3252
- #: admin/views/Themes.php:2970
3253
  msgid "Hover effect:"
3254
  msgstr ""
3255
 
3256
- #: admin/views/Themes.php:288 admin/views/Themes.php:597
3257
- #: admin/views/Themes.php:919 admin/views/Themes.php:1988
3258
- #: admin/views/Themes.php:2382 admin/views/Themes.php:2984
3259
  msgid "Hover effect value:"
3260
  msgstr ""
3261
 
3262
- #: admin/views/Themes.php:291
3263
  msgid "E.g. Rotate: 10deg, Scale/Zoom: 1.5, Skew: 10deg."
3264
  msgstr ""
3265
 
3266
- #: admin/views/Themes.php:295 admin/views/Themes.php:604
3267
- #: admin/views/Themes.php:926
3268
  msgid "Transition:"
3269
  msgstr ""
3270
 
3271
- #: admin/views/Themes.php:315 admin/views/Themes.php:624
3272
- #: admin/views/Themes.php:2014 admin/views/Themes.php:2389
3273
- #: admin/views/Themes.php:3011
3274
  msgid "Thumbnail background color:"
3275
  msgstr ""
3276
 
3277
- #: admin/views/Themes.php:322 admin/views/Themes.php:2020
3278
- #: admin/views/Themes.php:2361 admin/views/Themes.php:3018
3279
- msgid "Thumbnail transparency:"
 
3280
  msgstr ""
3281
 
3282
- #: admin/views/Themes.php:325 admin/views/Themes.php:338
3283
- #: admin/views/Themes.php:634 admin/views/Themes.php:647
3284
- #: admin/views/Themes.php:954 admin/views/Themes.php:967
3285
- #: admin/views/Themes.php:1180 admin/views/Themes.php:1339
3286
- #: admin/views/Themes.php:1429 admin/views/Themes.php:1490
3287
- #: admin/views/Themes.php:1572 admin/views/Themes.php:1689
3288
- #: admin/views/Themes.php:2023 admin/views/Themes.php:2036
3289
- #: admin/views/Themes.php:2364 admin/views/Themes.php:2404
3290
- #: admin/views/Themes.php:2488 admin/views/Themes.php:3021
3291
- #: admin/views/Themes.php:3034 admin/views/Themes.php:3277
3292
- #: admin/views/Themes.php:3464 admin/views/Themes.php:3582
3293
- #: admin/views/Themes.php:3595 admin/views/Themes.php:3642
3294
- #: admin/views/Themes.php:3669 admin/views/Themes.php:3963
3295
- #: admin/views/Themes.php:4085 admin/views/Themes.php:4227
3296
- #: admin/views/Themes.php:4695 admin/views/Themes.php:4790
3297
- #: admin/views/Themes.php:4815 admin/views/Themes.php:4954
 
 
3298
  msgid "Value must be between 0 to 100."
3299
  msgstr ""
3300
 
3301
- #: admin/views/Themes.php:329 admin/views/Themes.php:1563
3302
- #: admin/views/Themes.php:2027 admin/views/Themes.php:3025
 
 
 
 
 
3303
  msgid "Full background color:"
3304
  msgstr ""
3305
 
3306
- #: admin/views/Themes.php:335 admin/views/Themes.php:1569
3307
- #: admin/views/Themes.php:2033 admin/views/Themes.php:3031
3308
  msgid "Full background transparency:"
3309
  msgstr ""
3310
 
3311
- #: admin/views/Themes.php:342 admin/views/Themes.php:651
3312
- #: admin/views/Themes.php:971 admin/views/Themes.php:1619
3313
- #: admin/views/Themes.php:2040 admin/views/Themes.php:3038
3314
- #: admin/views/Themes.php:3281 admin/views/Themes.php:4734
3315
  msgid "Alignment:"
3316
  msgstr ""
3317
 
3318
- #: admin/views/Themes.php:366 admin/views/Themes.php:1710
3319
- #: admin/views/Themes.php:2064
3320
  msgid "Title position:"
3321
  msgstr ""
3322
 
3323
- #: admin/views/Themes.php:369 admin/views/Themes.php:1275
3324
- #: admin/views/Themes.php:1713 admin/views/Themes.php:2067
3325
- #: admin/views/Themes.php:3620 admin/views/Themes.php:3900
3326
- #: admin/views/Themes.php:3988 admin/views/Themes.php:4056
3327
- #: admin/views/Themes.php:4198 admin/views/Themes.php:4728
3328
  msgid "Top"
3329
  msgstr ""
3330
 
3331
- #: admin/views/Themes.php:371 admin/views/Themes.php:1277
3332
- #: admin/views/Themes.php:1715 admin/views/Themes.php:2069
3333
- #: admin/views/Themes.php:3622 admin/views/Themes.php:3902
3334
- #: admin/views/Themes.php:3990 admin/views/Themes.php:4058
3335
- #: admin/views/Themes.php:4200 admin/views/Themes.php:4730
3336
  msgid "Bottom"
3337
  msgstr ""
3338
 
3339
- #: admin/views/Themes.php:375 admin/views/Themes.php:671
3340
- #: admin/views/Themes.php:995 admin/views/Themes.php:2073
3341
- #: admin/views/Themes.php:2689 admin/views/Themes.php:3062
3342
- #: admin/views/Themes.php:4320 admin/views/Themes.php:4999
3343
  msgid "Title font size:"
3344
  msgstr ""
3345
 
3346
- #: admin/views/Themes.php:381 admin/views/Themes.php:677
3347
- #: admin/views/Themes.php:1001 admin/views/Themes.php:2079
3348
- #: admin/views/Themes.php:2695 admin/views/Themes.php:3068
3349
- #: admin/views/Themes.php:4278
3350
  msgid "Title font color:"
3351
  msgstr ""
3352
 
3353
- #: admin/views/Themes.php:387 admin/views/Themes.php:683
3354
- #: admin/views/Themes.php:1007 admin/views/Themes.php:2085
3355
- #: admin/views/Themes.php:3074
3356
  msgid "Title font color (Show on hover):"
3357
  msgstr ""
3358
 
3359
- #: admin/views/Themes.php:393 admin/views/Themes.php:689
3360
- #: admin/views/Themes.php:1013 admin/views/Themes.php:1459
3361
- #: admin/views/Themes.php:2091 admin/views/Themes.php:2701
3362
- #: admin/views/Themes.php:3080 admin/views/Themes.php:4284
3363
  msgid "Title font family:"
3364
  msgstr ""
3365
 
3366
- #: admin/views/Themes.php:415 admin/views/Themes.php:711
3367
- #: admin/views/Themes.php:1035 admin/views/Themes.php:2113
3368
- #: admin/views/Themes.php:2723 admin/views/Themes.php:3102
3369
- #: admin/views/Themes.php:4306 admin/views/Themes.php:5011
3370
  msgid "Title font weight:"
3371
  msgstr ""
3372
 
3373
- #: admin/views/Themes.php:429 admin/views/Themes.php:1049
3374
- #: admin/views/Themes.php:2127 admin/views/Themes.php:3116
3375
  msgid "Title box shadow:"
3376
  msgstr ""
3377
 
3378
- #: admin/views/Themes.php:436 admin/views/Themes.php:725
3379
- #: admin/views/Themes.php:1056 admin/views/Themes.php:2134
3380
- #: admin/views/Themes.php:2650 admin/views/Themes.php:4965
3381
  msgid "Title margin:"
3382
  msgstr ""
3383
 
3384
- #: admin/views/Themes.php:443 admin/views/Themes.php:766
3385
- #: admin/views/Themes.php:1063 admin/views/Themes.php:1820
3386
- #: admin/views/Themes.php:2196 admin/views/Themes.php:2830
3387
- #: admin/views/Themes.php:3178 admin/views/Themes.php:3482
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3388
  msgid "Gallery title/description font size:"
3389
  msgstr ""
3390
 
3391
- #: admin/views/Themes.php:450 admin/views/Themes.php:772
3392
- #: admin/views/Themes.php:1069 admin/views/Themes.php:1827
3393
- #: admin/views/Themes.php:2202 admin/views/Themes.php:2836
3394
- #: admin/views/Themes.php:3184 admin/views/Themes.php:3489
 
3395
  msgid "Gallery title/description font color:"
3396
  msgstr ""
3397
 
3398
- #: admin/views/Themes.php:456 admin/views/Themes.php:778
3399
- #: admin/views/Themes.php:1075 admin/views/Themes.php:1833
3400
- #: admin/views/Themes.php:2208 admin/views/Themes.php:2842
3401
- #: admin/views/Themes.php:3190 admin/views/Themes.php:3495
 
3402
  msgid "Gallery title/description font family:"
3403
  msgstr ""
3404
 
3405
- #: admin/views/Themes.php:478 admin/views/Themes.php:800
3406
- #: admin/views/Themes.php:1097 admin/views/Themes.php:1855
3407
- #: admin/views/Themes.php:2230 admin/views/Themes.php:2864
3408
- #: admin/views/Themes.php:3212 admin/views/Themes.php:3517
 
3409
  msgid "Gallery title/description font weight:"
3410
  msgstr ""
3411
 
3412
- #: admin/views/Themes.php:492 admin/views/Themes.php:814
3413
- #: admin/views/Themes.php:1111 admin/views/Themes.php:1869
3414
- #: admin/views/Themes.php:2244 admin/views/Themes.php:2878
3415
- #: admin/views/Themes.php:3226 admin/views/Themes.php:3531
 
3416
  msgid "Gallery title/description box shadow:"
3417
  msgstr ""
3418
 
3419
- #: admin/views/Themes.php:499 admin/views/Themes.php:821
3420
- #: admin/views/Themes.php:1118 admin/views/Themes.php:1876
3421
- #: admin/views/Themes.php:2251 admin/views/Themes.php:2885
3422
- #: admin/views/Themes.php:3233 admin/views/Themes.php:3538
 
3423
  msgid "Gallery title/description margin:"
3424
  msgstr ""
3425
 
3426
- #: admin/views/Themes.php:506 admin/views/Themes.php:828
3427
- #: admin/views/Themes.php:1125 admin/views/Themes.php:1883
3428
- #: admin/views/Themes.php:2258 admin/views/Themes.php:2892
3429
- #: admin/views/Themes.php:3240 admin/views/Themes.php:3545
 
3430
  msgid "Gallery title alignment:"
3431
  msgstr "Galeri boş:"
3432
 
3433
- #: admin/views/Themes.php:600 admin/views/Themes.php:922
3434
- #: admin/views/Themes.php:1991 admin/views/Themes.php:2385
3435
- #: admin/views/Themes.php:2987
3436
  msgid "E.g. Rotate: 10deg, Scale: 1.5, Skew: 10deg."
3437
  msgstr ""
3438
 
3439
- #: admin/views/Themes.php:631 admin/views/Themes.php:951
3440
  msgid "Transparency:"
3441
  msgstr ""
3442
 
3443
- #: admin/views/Themes.php:638 admin/views/Themes.php:958
3444
  msgid "Full Background color:"
3445
  msgstr ""
3446
 
3447
- #: admin/views/Themes.php:644 admin/views/Themes.php:964
3448
- #: admin/views/Themes.php:1686 admin/views/Themes.php:2485
3449
- #: admin/views/Themes.php:3274
3450
  msgid "Background transparency:"
3451
  msgstr ""
3452
 
3453
- #: admin/views/Themes.php:732 admin/views/Themes.php:1508
3454
- #: admin/views/Themes.php:2770 admin/views/Themes.php:4369
3455
  msgid "Description font size:"
3456
  msgstr ""
3457
 
3458
- #: admin/views/Themes.php:738 admin/views/Themes.php:2776
3459
- #: admin/views/Themes.php:4327
3460
  msgid "Description font color:"
3461
  msgstr ""
3462
 
3463
- #: admin/views/Themes.php:744 admin/views/Themes.php:1520
3464
- #: admin/views/Themes.php:2782 admin/views/Themes.php:4333
3465
- msgid "Description font family:"
3466
- msgstr ""
3467
-
3468
- #: admin/views/Themes.php:945 admin/views/Themes.php:1153
3469
- #: admin/views/Themes.php:1680 admin/views/Themes.php:2479
3470
- #: admin/views/Themes.php:3268 admin/views/Themes.php:4781
3471
  msgid "Background color:"
3472
  msgstr ""
3473
 
3474
- #: admin/views/Themes.php:1159 admin/views/Themes.php:3846
3475
- #: admin/views/Themes.php:4794
3476
  msgid "Right, left buttons size:"
3477
  msgstr ""
3478
 
3479
- #: admin/views/Themes.php:1165 admin/views/Themes.php:4800
3480
  msgid "Play, pause buttons size:"
3481
  msgstr ""
3482
 
3483
- #: admin/views/Themes.php:1171 admin/views/Themes.php:3416
3484
- #: admin/views/Themes.php:4806
3485
  msgid "Buttons color:"
3486
  msgstr ""
3487
 
3488
- #: admin/views/Themes.php:1177 admin/views/Themes.php:4812
3489
  msgid "Buttons transparency:"
3490
  msgstr ""
3491
 
3492
- #: admin/views/Themes.php:1184 admin/views/Themes.php:4819
3493
  msgid "Buttons hover color:"
3494
  msgstr ""
3495
 
3496
- #: admin/views/Themes.php:1190 admin/views/Themes.php:3840
3497
- #: admin/views/Themes.php:4825
3498
  msgid "Right, left buttons width:"
3499
  msgstr ""
3500
 
3501
- #: admin/views/Themes.php:1196 admin/views/Themes.php:3834
3502
- #: admin/views/Themes.php:4831
3503
  msgid "Right, left buttons height:"
3504
  msgstr ""
3505
 
3506
- #: admin/views/Themes.php:1202 admin/views/Themes.php:3815
3507
- #: admin/views/Themes.php:4837
3508
  msgid "Right, left buttons background color:"
3509
  msgstr ""
3510
 
3511
- #: admin/views/Themes.php:1208 admin/views/Themes.php:3871
3512
- #: admin/views/Themes.php:4843
3513
  msgid "Right, left buttons border width:"
3514
  msgstr ""
3515
 
3516
- #: admin/views/Themes.php:1214 admin/views/Themes.php:3877
3517
- #: admin/views/Themes.php:4849
3518
  msgid "Right, left buttons border style:"
3519
  msgstr ""
3520
 
3521
- #: admin/views/Themes.php:1228 admin/views/Themes.php:3891
3522
- #: admin/views/Themes.php:4863
3523
  msgid "Right, left buttons border color:"
3524
  msgstr ""
3525
 
3526
- #: admin/views/Themes.php:1234 admin/views/Themes.php:3864
3527
- #: admin/views/Themes.php:4869
3528
  msgid "Right, left buttons border radius:"
3529
  msgstr ""
3530
 
3531
- #: admin/views/Themes.php:1241 admin/views/Themes.php:3801
3532
- #: admin/views/Themes.php:4876
3533
  msgid "Right, left buttons style:"
3534
  msgstr ""
3535
 
3536
- #: admin/views/Themes.php:1255 admin/views/Themes.php:3827
3537
  msgid "Right, left buttons box shadow:"
3538
  msgstr ""
3539
 
3540
- #: admin/views/Themes.php:1272
3541
  msgid "Filmstrip/Slider bullet position:"
3542
  msgstr ""
3543
 
3544
- #: admin/views/Themes.php:1283
3545
  msgid "Filmstrip margin:"
3546
  msgstr ""
3547
 
3548
- #: admin/views/Themes.php:1290
3549
  msgid "Filmstrip border width:"
3550
  msgstr ""
3551
 
3552
- #: admin/views/Themes.php:1296
3553
  msgid "Filmstrip border style:"
3554
  msgstr ""
3555
 
3556
- #: admin/views/Themes.php:1311
3557
  msgid "Filmstrip border color:"
3558
  msgstr ""
3559
 
3560
- #: admin/views/Themes.php:1317
3561
  msgid "Filmstrip border radius:"
3562
  msgstr ""
3563
 
3564
- #: admin/views/Themes.php:1324
3565
  msgid "Filmstrip active border width:"
3566
  msgstr ""
3567
 
3568
- #: admin/views/Themes.php:1330
3569
  msgid "Filmstrip active border color:"
3570
  msgstr ""
3571
 
3572
- #: admin/views/Themes.php:1336
3573
  msgid "Filmstrip deactive transparency: "
3574
  msgstr ""
3575
 
3576
- #: admin/views/Themes.php:1343
3577
  msgid "Filmstrip right, left buttons background color: "
3578
  msgstr ""
3579
 
3580
- #: admin/views/Themes.php:1349 admin/views/Themes.php:3973
3581
  msgid "Filmstrip right, left buttons color:"
3582
  msgstr ""
3583
 
3584
- #: admin/views/Themes.php:1355 admin/views/Themes.php:3967
3585
  msgid "Filmstrip right, left buttons size:"
3586
  msgstr ""
3587
 
3588
- #: admin/views/Themes.php:1361
3589
  msgid "Slider bullet width: "
3590
  msgstr ""
3591
 
3592
- #: admin/views/Themes.php:1367
3593
  msgid "Slider bullet height:"
3594
  msgstr ""
3595
 
3596
- #: admin/views/Themes.php:1373
3597
  msgid "Slider bullet border radius: "
3598
  msgstr ""
3599
 
3600
- #: admin/views/Themes.php:1380
3601
  msgid "Slider bullet background color:"
3602
  msgstr ""
3603
 
3604
- #: admin/views/Themes.php:1386
3605
  msgid "Slider bullet margin:"
3606
  msgstr ""
3607
 
3608
- #: admin/views/Themes.php:1392
3609
  msgid "Slider bullet active background color: "
3610
  msgstr ""
3611
 
3612
- #: admin/views/Themes.php:1398
3613
  msgid "Slider bullet active border width:"
3614
  msgstr ""
3615
 
3616
- #: admin/views/Themes.php:1404
3617
  msgid "Slider bullet active border color: "
3618
  msgstr ""
3619
 
3620
- #: admin/views/Themes.php:1420
3621
  msgid "Title background color: "
3622
  msgstr ""
3623
 
3624
- #: admin/views/Themes.php:1426
3625
  msgid "Title transparency: "
3626
  msgstr ""
3627
 
3628
- #: admin/views/Themes.php:1433 admin/views/Themes.php:4958
3629
  msgid "Title border radius:"
3630
  msgstr ""
3631
 
3632
- #: admin/views/Themes.php:1440
3633
  msgid "Title padding: "
3634
  msgstr ""
3635
 
3636
- #: admin/views/Themes.php:1447
3637
  msgid "Title font size: "
3638
  msgstr ""
3639
 
3640
- #: admin/views/Themes.php:1453
3641
  msgid "Title color: "
3642
  msgstr ""
3643
 
3644
- #: admin/views/Themes.php:1481 admin/views/Themes.php:1814
3645
  msgid "Description background color:"
3646
  msgstr ""
3647
 
3648
- #: admin/views/Themes.php:1487
3649
  msgid "Description transparency:"
3650
  msgstr ""
3651
 
3652
- #: admin/views/Themes.php:1494 admin/views/Themes.php:1807
3653
  msgid "Description border radius:"
3654
  msgstr ""
3655
 
3656
- #: admin/views/Themes.php:1501 admin/views/Themes.php:1774
3657
- #: admin/views/Themes.php:2737
3658
  msgid "Description padding:"
3659
  msgstr ""
3660
 
3661
- #: admin/views/Themes.php:1514
3662
  msgid "Description color:"
3663
  msgstr ""
3664
 
3665
- #: admin/views/Themes.php:1556
3666
  msgid "Full padding:"
3667
  msgstr ""
3668
 
3669
- #: admin/views/Themes.php:1576
3670
  msgid "Full border radius:"
3671
  msgstr ""
3672
 
3673
- #: admin/views/Themes.php:1583
3674
  msgid "Full border width:"
3675
  msgstr ""
3676
 
3677
- #: admin/views/Themes.php:1589
3678
  msgid "Full border style:"
3679
  msgstr ""
3680
 
3681
- #: admin/views/Themes.php:1603
3682
  msgid "Full border color:"
3683
  msgstr ""
3684
 
3685
- #: admin/views/Themes.php:1633 admin/views/Themes.php:2466
3686
- #: admin/views/Themes.php:3295 admin/views/Themes.php:4672
3687
  msgid "Margin:"
3688
  msgstr ""
3689
 
3690
- #: admin/views/Themes.php:1693 admin/views/Themes.php:3309
3691
- #: admin/views/Themes.php:4708
3692
  msgid "Box shadow:"
3693
  msgstr ""
3694
 
3695
- #: admin/views/Themes.php:1719
3696
  msgid "Title alignment:"
3697
  msgstr ""
3698
 
3699
- #: admin/views/Themes.php:1733 admin/views/Themes.php:3348
3700
- #: admin/views/Themes.php:4581
3701
  msgid "Font size:"
3702
  msgstr ""
3703
 
3704
- #: admin/views/Themes.php:1739 admin/views/Themes.php:3354
3705
- #: admin/views/Themes.php:4587
3706
  msgid "Font color:"
3707
  msgstr ""
3708
 
3709
- #: admin/views/Themes.php:1745 admin/views/Themes.php:3326
3710
- #: admin/views/Themes.php:4593
3711
  msgid "Font family:"
3712
  msgstr ""
3713
 
3714
- #: admin/views/Themes.php:1767
3715
  msgid "Description margin:"
3716
  msgstr ""
3717
 
3718
- #: admin/views/Themes.php:1781 admin/views/Themes.php:2744
3719
  msgid "Description border width:"
3720
  msgstr ""
3721
 
3722
- #: admin/views/Themes.php:1787 admin/views/Themes.php:2750
3723
  msgid "Description border style:"
3724
  msgstr ""
3725
 
3726
- #: admin/views/Themes.php:1801 admin/views/Themes.php:2764
3727
  msgid "Description border color:"
3728
  msgstr ""
3729
 
3730
- #: admin/views/Themes.php:1995 admin/views/Themes.php:2338
3731
- #: admin/views/Themes.php:2991
3732
  msgid "Thumbnail transition:"
3733
  msgstr ""
3734
 
3735
- #: admin/views/Themes.php:2141 admin/views/Themes.php:3123
3736
  msgid "Back Font size:"
3737
  msgstr ""
3738
 
3739
- #: admin/views/Themes.php:2147 admin/views/Themes.php:3129
3740
  msgid "Back Font color:"
3741
  msgstr "Facebook'ta paylaşın:"
3742
 
3743
- #: admin/views/Themes.php:2153 admin/views/Themes.php:3135
3744
  msgid "Back Font family:"
3745
  msgstr ""
3746
 
3747
- #: admin/views/Themes.php:2175 admin/views/Themes.php:3157
3748
  msgid "Back Font weight:"
3749
  msgstr ""
3750
 
3751
- #: admin/views/Themes.php:2189 admin/views/Themes.php:2525
3752
- #: admin/views/Themes.php:3171
3753
  msgid "Back padding:"
3754
  msgstr ""
3755
 
3756
- #: admin/views/Themes.php:2286
3757
  msgid "Thumbnail margin:"
3758
  msgstr ""
3759
 
3760
- #: admin/views/Themes.php:2292
3761
  msgid "Thumbnail padding:"
3762
  msgstr ""
3763
 
3764
- #: admin/views/Themes.php:2298
3765
  msgid "Thumbnail border width:"
3766
  msgstr ""
3767
 
3768
- #: admin/views/Themes.php:2304
3769
  msgid "Thumbnail border style:"
3770
  msgstr ""
3771
 
3772
- #: admin/views/Themes.php:2318
3773
  msgid "Thumbnail border color:"
3774
  msgstr ""
3775
 
3776
- #: admin/views/Themes.php:2324
3777
  msgid "Thumbnail border radius:"
3778
  msgstr ""
3779
 
3780
- #: admin/views/Themes.php:2331
3781
  msgid "Thumbnail box shadow:"
3782
  msgstr ""
3783
 
3784
- #: admin/views/Themes.php:2347
3785
  msgid "Description alignment:"
3786
  msgstr ""
3787
 
3788
- #: admin/views/Themes.php:2368
3789
  msgid "Thumbnail hover effect:"
3790
  msgstr ""
3791
 
3792
- #: admin/views/Themes.php:2395
3793
  msgid "Thumbnails background color:"
3794
  msgstr ""
3795
 
3796
- #: admin/views/Themes.php:2401
3797
- msgid "Thumbnail background transparency:"
3798
- msgstr ""
3799
-
3800
- #: admin/views/Themes.php:2419
3801
  msgid "Thumbnail div padding:"
3802
  msgstr ""
3803
 
3804
- #: admin/views/Themes.php:2426
3805
  msgid "Thumbnail div background color:"
3806
  msgstr ""
3807
 
3808
- #: admin/views/Themes.php:2432
3809
  msgid "Thumbnail div border width:"
3810
  msgstr ""
3811
 
3812
- #: admin/views/Themes.php:2439
3813
  msgid "humbnail div border style:"
3814
  msgstr ""
3815
 
3816
- #: admin/views/Themes.php:2453
3817
  msgid "Thumbnail div border color:"
3818
  msgstr ""
3819
 
3820
- #: admin/views/Themes.php:2459
3821
  msgid "Thumbnail div border radius:"
3822
  msgstr ""
3823
 
3824
- #: admin/views/Themes.php:2499
3825
  msgid "Separator width:"
3826
  msgstr ""
3827
 
3828
- #: admin/views/Themes.php:2505
3829
  msgid "Separator style:"
3830
  msgstr ""
3831
 
3832
- #: admin/views/Themes.php:2519
3833
  msgid "Separator color:"
3834
  msgstr ""
3835
 
3836
- #: admin/views/Themes.php:2532
3837
  msgid "Back font size:"
3838
  msgstr ""
3839
 
3840
- #: admin/views/Themes.php:2538
3841
  msgid "Back font color:"
3842
  msgstr ""
3843
 
3844
- #: admin/views/Themes.php:2544
3845
  msgid "Back font family:"
3846
  msgstr ""
3847
 
3848
- #: admin/views/Themes.php:2566
3849
  msgid "Back font weight:"
3850
  msgstr ""
3851
 
3852
- #: admin/views/Themes.php:2590
3853
  msgid "Title/description alignment:"
3854
  msgstr ""
3855
 
3856
- #: admin/views/Themes.php:2604
3857
  msgid "Text div padding:"
3858
  msgstr ""
3859
 
3860
- #: admin/views/Themes.php:2611
3861
  msgid "Text div border width:"
3862
  msgstr ""
3863
 
3864
- #: admin/views/Themes.php:2617
3865
  msgid "Text border style:"
3866
  msgstr ""
3867
 
3868
- #: admin/views/Themes.php:2631
3869
  msgid "Text border color:"
3870
  msgstr ""
3871
 
3872
- #: admin/views/Themes.php:2637
3873
  msgid "Text div border radius:"
3874
  msgstr ""
3875
 
3876
- #: admin/views/Themes.php:2644
3877
  msgid "Text background color:"
3878
  msgstr ""
3879
 
3880
- #: admin/views/Themes.php:2656 admin/views/Themes.php:4971
3881
  msgid "Title padding:"
3882
  msgstr ""
3883
 
3884
- #: admin/views/Themes.php:2663
3885
  msgid "Title border width:"
3886
  msgstr ""
3887
 
3888
- #: admin/views/Themes.php:2669
3889
  msgid "Title border style:"
3890
  msgstr ""
3891
 
3892
- #: admin/views/Themes.php:2683
3893
  msgid "Title border color:"
3894
  msgstr ""
3895
 
3896
- #: admin/views/Themes.php:2804 admin/views/Themes.php:4355
3897
  msgid "Description font weight:"
3898
  msgstr ""
3899
 
3900
- #: admin/views/Themes.php:2818
3901
  msgid "Description more size:"
3902
  msgstr ""
3903
 
3904
- #: admin/views/Themes.php:2824
3905
  msgid "Description more color:"
3906
  msgstr ""
3907
 
3908
- #: admin/views/Themes.php:3403
3909
  msgid "Buttons and title margin:"
3910
  msgstr ""
3911
 
3912
- #: admin/views/Themes.php:3410
3913
  msgid "Buttons size:"
3914
  msgstr ""
3915
 
3916
- #: admin/views/Themes.php:3422
3917
  msgid "Buttons and title border width:"
3918
  msgstr ""
3919
 
3920
- #: admin/views/Themes.php:3428
3921
  msgid "Buttons and title border style:"
3922
  msgstr ""
3923
 
3924
- #: admin/views/Themes.php:3442
3925
  msgid "Buttons and title border color:"
3926
  msgstr ""
3927
 
3928
- #: admin/views/Themes.php:3448
3929
  msgid "Buttons and title border radius:"
3930
  msgstr ""
3931
 
3932
- #: admin/views/Themes.php:3455
3933
  msgid "Buttons and title background color:"
3934
  msgstr ""
3935
 
3936
- #: admin/views/Themes.php:3461
3937
  msgid "Buttons and title background transparency:"
3938
  msgstr ""
3939
 
3940
- #: admin/views/Themes.php:3468
3941
  msgid "Buttons or title alignment:"
3942
  msgstr ""
3943
 
3944
- #: admin/views/Themes.php:3573
3945
  msgid "Overlay background color:"
3946
  msgstr ""
3947
 
3948
- #: admin/views/Themes.php:3579
3949
  msgid "Overlay background transparency:"
3950
  msgstr ""
3951
 
3952
- #: admin/views/Themes.php:3586
3953
  msgid "Lightbox background color:"
3954
  msgstr ""
3955
 
3956
- #: admin/views/Themes.php:3592
3957
  msgid "Lightbox background transparency:"
3958
  msgstr ""
3959
 
3960
- #: admin/views/Themes.php:3599
3961
  msgid "Control buttons height:"
3962
  msgstr ""
3963
 
3964
- #: admin/views/Themes.php:3605
3965
  msgid "Control buttons margin (top):"
3966
  msgstr ""
3967
 
3968
- #: admin/views/Themes.php:3611
3969
  msgid "Control buttons margin (left):"
3970
  msgstr ""
3971
 
3972
- #: admin/views/Themes.php:3617
3973
  msgid "Control buttons position:"
3974
  msgstr ""
3975
 
3976
- #: admin/views/Themes.php:3626
3977
  msgid "Control buttons background color:"
3978
  msgstr ""
3979
 
3980
- #: admin/views/Themes.php:3632
3981
  msgid "Control buttons container border radius:"
3982
  msgstr ""
3983
 
3984
- #: admin/views/Themes.php:3639
3985
  msgid "Control buttons container background transparency:"
3986
  msgstr ""
3987
 
3988
- #: admin/views/Themes.php:3646
3989
  msgid "Control buttons alignment:"
3990
  msgstr ""
3991
 
3992
- #: admin/views/Themes.php:3660
3993
  msgid "Control buttons color:"
3994
  msgstr ""
3995
 
3996
- #: admin/views/Themes.php:3666
3997
  msgid "Control buttons transparency:"
3998
  msgstr ""
3999
 
4000
- #: admin/views/Themes.php:3673
4001
  msgid "Toggle button height:"
4002
  msgstr ""
4003
 
4004
- #: admin/views/Themes.php:3679
4005
  msgid "Toggle button width:"
4006
  msgstr ""
4007
 
4008
- #: admin/views/Themes.php:3685
4009
  msgid "Close button border radius:"
4010
  msgstr ""
4011
 
4012
- #: admin/views/Themes.php:3693
4013
  msgid "Close button border width:"
4014
  msgstr ""
4015
 
4016
- #: admin/views/Themes.php:3699
4017
  msgid "Close button border style:"
4018
  msgstr ""
4019
 
4020
- #: admin/views/Themes.php:3713
4021
  msgid "Close button border color:"
4022
  msgstr ""
4023
 
4024
- #: admin/views/Themes.php:3719
4025
  msgid "Close button box shadow:"
4026
  msgstr ""
4027
 
4028
- #: admin/views/Themes.php:3726
4029
  msgid "Close button background color:"
4030
  msgstr ""
4031
 
4032
- #: admin/views/Themes.php:3729 admin/views/Themes.php:3742
4033
- #: admin/views/Themes.php:3749 admin/views/Themes.php:3756
4034
- #: admin/views/Themes.php:3763
4035
  msgid "The option does not apply to Full-width lightbox."
4036
  msgstr ""
4037
 
4038
- #: admin/views/Themes.php:3733
4039
  msgid "Close button transparency:"
4040
  msgstr ""
4041
 
4042
- #: admin/views/Themes.php:3739
4043
  msgid "Close button width:"
4044
  msgstr ""
4045
 
4046
- #: admin/views/Themes.php:3746
4047
  msgid "Close button height:"
4048
  msgstr ""
4049
 
4050
- #: admin/views/Themes.php:3753
4051
  msgid "Close button top:"
4052
  msgstr ""
4053
 
4054
- #: admin/views/Themes.php:3760
4055
  msgid "Close button right:"
4056
  msgstr ""
4057
 
4058
- #: admin/views/Themes.php:3767
4059
  msgid "Close button size:"
4060
  msgstr ""
4061
 
4062
- #: admin/views/Themes.php:3773
4063
  msgid "Close button color:"
4064
  msgstr ""
4065
 
4066
- #: admin/views/Themes.php:3779
4067
  msgid "Fullscreen close button color:"
4068
  msgstr ""
4069
 
4070
- #: admin/views/Themes.php:3785
4071
  msgid "Share buttons color:"
4072
  msgstr "Facebook'ta paylaşın:"
4073
 
4074
- #: admin/views/Themes.php:3821
4075
  msgid "Right, left buttons transparency:"
4076
  msgstr ""
4077
 
4078
- #: admin/views/Themes.php:3852
4079
  msgid "Right, left, close buttons hover color:"
4080
  msgstr ""
4081
 
4082
- #: admin/views/Themes.php:3858
4083
  msgid "Right, left buttons color:"
4084
  msgstr ""
4085
 
4086
- #: admin/views/Themes.php:3897
4087
  msgid "Filmstrip position:"
4088
  msgstr ""
4089
 
4090
- #: admin/views/Themes.php:3908
4091
  msgid "Filmstrip thumbnail margin:"
4092
  msgstr ""
4093
 
4094
- #: admin/views/Themes.php:3915
4095
  msgid "Filmstrip thumbnail border width:"
4096
  msgstr ""
4097
 
4098
- #: admin/views/Themes.php:3921
4099
  msgid "Filmstrip thumbnail border style:"
4100
  msgstr ""
4101
 
4102
- #: admin/views/Themes.php:3935
4103
  msgid "Filmstrip thumbnail border color:"
4104
  msgstr ""
4105
 
4106
- #: admin/views/Themes.php:3941
4107
  msgid "Filmstrip thumbnail border radius:"
4108
  msgstr ""
4109
 
4110
- #: admin/views/Themes.php:3948
4111
  msgid "Filmstrip thumbnail active border width:"
4112
  msgstr ""
4113
 
4114
- #: admin/views/Themes.php:3954
4115
  msgid "Filmstrip thumbnail active border color:"
4116
  msgstr ""
4117
 
4118
- #: admin/views/Themes.php:3960
4119
  msgid "Filmstrip thumbnail deactive transparency:"
4120
  msgstr ""
4121
 
4122
- #: admin/views/Themes.php:3979
4123
  msgid "Filmstrip right, left button background color:"
4124
  msgstr ""
4125
 
4126
- #: admin/views/Themes.php:3985
4127
  msgid "Rating position:"
4128
  msgstr ""
4129
 
4130
- #: admin/views/Themes.php:3994
4131
  msgid "Rating alignment:"
4132
  msgstr ""
4133
 
4134
- #: admin/views/Themes.php:4008
4135
  msgid "Rating icon:"
4136
  msgstr ""
4137
 
4138
- #: admin/views/Themes.php:4022
4139
  msgid "Rating color:"
4140
  msgstr ""
4141
 
4142
- #: admin/views/Themes.php:4028
4143
  msgid "Rating hover color:"
4144
  msgstr ""
4145
 
4146
- #: admin/views/Themes.php:4034
4147
  msgid "Rating size:"
4148
  msgstr ""
4149
 
4150
- #: admin/views/Themes.php:4040
4151
  msgid "Rating icon count:"
4152
  msgstr ""
4153
 
4154
- #: admin/views/Themes.php:4046
4155
  msgid "Rating padding:"
4156
  msgstr ""
4157
 
4158
- #: admin/views/Themes.php:4053
4159
  msgid "Hit counter position:"
4160
  msgstr ""
4161
 
4162
- #: admin/views/Themes.php:4062
4163
  msgid "Hit counter alignment:"
4164
  msgstr ""
4165
 
4166
- #: admin/views/Themes.php:4076
4167
  msgid "Hit counter background color:"
4168
  msgstr ""
4169
 
4170
- #: admin/views/Themes.php:4082
4171
  msgid "Hit counter background transparency:"
4172
  msgstr ""
4173
 
4174
- #: admin/views/Themes.php:4089
4175
  msgid "Hit counter border width:"
4176
  msgstr ""
4177
 
4178
- #: admin/views/Themes.php:4095
4179
  msgid "Hit counter border style:"
4180
  msgstr ""
4181
 
4182
- #: admin/views/Themes.php:4109
4183
  msgid "Hit counter border color:"
4184
  msgstr ""
4185
 
4186
- #: admin/views/Themes.php:4115
4187
  msgid "Hit counter border radius:"
4188
  msgstr ""
4189
 
4190
- #: admin/views/Themes.php:4122
4191
  msgid "Hit counter padding:"
4192
  msgstr ""
4193
 
4194
- #: admin/views/Themes.php:4129
4195
  msgid "Hit counter margin:"
4196
  msgstr ""
4197
 
4198
- #: admin/views/Themes.php:4136
4199
  msgid "Hit counter font color:"
4200
  msgstr ""
4201
 
4202
- #: admin/views/Themes.php:4142
4203
  msgid "Hit counter font family:"
4204
  msgstr ""
4205
 
4206
- #: admin/views/Themes.php:4164
4207
  msgid "Hit counter font weight:"
4208
  msgstr ""
4209
 
4210
- #: admin/views/Themes.php:4178
4211
  msgid "Hit counter font size:"
4212
  msgstr ""
4213
 
4214
- #: admin/views/Themes.php:4195
4215
  msgid "Info position:"
4216
  msgstr ""
4217
 
4218
- #: admin/views/Themes.php:4204
4219
  msgid "Info alignment:"
4220
  msgstr ""
4221
 
4222
- #: admin/views/Themes.php:4218
4223
  msgid "Info background color:"
4224
  msgstr ""
4225
 
4226
- #: admin/views/Themes.php:4224
4227
  msgid "Info background transparency:"
4228
  msgstr ""
4229
 
4230
- #: admin/views/Themes.php:4231
4231
  msgid "Info border width:"
4232
  msgstr ""
4233
 
4234
- #: admin/views/Themes.php:4237
4235
  msgid "Info border style:"
4236
  msgstr ""
4237
 
4238
- #: admin/views/Themes.php:4251
4239
  msgid "Info border color:"
4240
  msgstr ""
4241
 
4242
- #: admin/views/Themes.php:4257
4243
  msgid "Info border radius:"
4244
  msgstr ""
4245
 
4246
- #: admin/views/Themes.php:4264
4247
  msgid "Info padding:"
4248
  msgstr ""
4249
 
4250
- #: admin/views/Themes.php:4271
4251
  msgid "Info margin:"
4252
  msgstr ""
4253
 
4254
- #: admin/views/Themes.php:4376
4255
  msgid "Comments Width:"
4256
  msgstr "Yorum:"
4257
 
4258
- #: admin/views/Themes.php:4382
4259
  msgid "Comments position:"
4260
  msgstr ""
4261
 
4262
- #: admin/views/Themes.php:4391
4263
  msgid "Comments background color:"
4264
  msgstr ""
4265
 
4266
- #: admin/views/Themes.php:4397
4267
  msgid "Comments font size:"
4268
  msgstr ""
4269
 
4270
- #: admin/views/Themes.php:4403
4271
  msgid "Comments font color:"
4272
  msgstr ""
4273
 
4274
- #: admin/views/Themes.php:4409
4275
  msgid "Comments font family:"
4276
  msgstr ""
4277
 
4278
- #: admin/views/Themes.php:4431
4279
  msgid "Comments author font size:"
4280
  msgstr ""
4281
 
4282
- #: admin/views/Themes.php:4438
4283
  msgid "Comments date font size:"
4284
  msgstr ""
4285
 
4286
- #: admin/views/Themes.php:4444
4287
  msgid "Comments body font size:"
4288
  msgstr ""
4289
 
4290
- #: admin/views/Themes.php:4450
4291
  msgid "Comment input border width:"
4292
  msgstr ""
4293
 
4294
- #: admin/views/Themes.php:4456
4295
  msgid "omment input border style:"
4296
  msgstr ""
4297
 
4298
- #: admin/views/Themes.php:4470
4299
  msgid "Comment input border color:"
4300
  msgstr ""
4301
 
4302
- #: admin/views/Themes.php:4476
4303
  msgid "Comment input border radius:"
4304
  msgstr ""
4305
 
4306
- #: admin/views/Themes.php:4482
4307
  msgid "Comment input padding:"
4308
  msgstr ""
4309
 
4310
- #: admin/views/Themes.php:4489
4311
  msgid "Comment input background color:"
4312
  msgstr ""
4313
 
4314
- #: admin/views/Themes.php:4495
4315
  msgid "Comment button background color:"
4316
  msgstr ""
4317
 
4318
- #: admin/views/Themes.php:4501
4319
  msgid "Comment button padding:"
4320
  msgstr ""
4321
 
4322
- #: admin/views/Themes.php:4508
4323
  msgid "Comment button border width:"
4324
  msgstr ""
4325
 
4326
- #: admin/views/Themes.php:4514
4327
  msgid "Comment button border style:"
4328
  msgstr ""
4329
 
4330
- #: admin/views/Themes.php:4528
4331
  msgid "Comment button border color:"
4332
  msgstr ""
4333
 
4334
- #: admin/views/Themes.php:4534
4335
  msgid "omment button border radius:"
4336
  msgstr ""
4337
 
4338
- #: admin/views/Themes.php:4541
4339
  msgid "Comment separator width:"
4340
  msgstr ""
4341
 
4342
- #: admin/views/Themes.php:4547
4343
  msgid "Comment separator style:"
4344
  msgstr ""
4345
 
4346
- #: admin/views/Themes.php:4561
4347
  msgid "Comment separator color:"
4348
  msgstr ""
4349
 
4350
- #: admin/views/Themes.php:4615
4351
  msgid "Font weight:"
4352
  msgstr ""
4353
 
4354
- #: admin/views/Themes.php:4686
4355
  msgid "Button background color:"
4356
  msgstr ""
4357
 
4358
- #: admin/views/Themes.php:4692
4359
  msgid "Button background transparency:"
4360
  msgstr ""
4361
 
4362
- #: admin/views/Themes.php:4699
4363
  msgid "Button transition:"
4364
  msgstr ""
4365
 
4366
- #: admin/views/Themes.php:4725
4367
  msgid "Position:"
4368
  msgstr ""
4369
 
4370
- #: admin/views/Themes.php:4748
4371
  msgid "Numbering:"
4372
  msgstr ""
4373
 
4374
- #: admin/views/Themes.php:4757
4375
  msgid "Button text:"
4376
  msgstr ""
4377
 
4378
- #: admin/views/Themes.php:4762
4379
  msgid "Arrow"
4380
  msgstr ""
4381
 
4382
- #: admin/views/Themes.php:4763
4383
  msgid "Next, previous buttons values."
4384
  msgstr ""
4385
 
4386
- #: admin/views/Themes.php:4787
4387
  msgid "Container opacity:"
4388
  msgstr ""
4389
 
4390
- #: admin/views/Themes.php:4900
4391
  msgid "Carousel margin:"
4392
  msgstr ""
4393
 
4394
- #: admin/views/Themes.php:4906
4395
  msgid "Image border width:"
4396
  msgstr ""
4397
 
4398
- #: admin/views/Themes.php:4913
4399
  msgid "Image border style:"
4400
  msgstr ""
4401
 
4402
- #: admin/views/Themes.php:4928
4403
  msgid "Image border color:"
4404
  msgstr ""
4405
 
4406
- #: admin/views/Themes.php:4944
4407
  msgid "Title background color:"
4408
  msgstr ""
4409
 
4410
- #: admin/views/Themes.php:4951
4411
  msgid "Title opacity:"
4412
  msgstr ""
4413
 
4414
- #: admin/views/Themes.php:4978
4415
  msgid "Title Font family:"
4416
  msgstr ""
4417
 
4418
- #: admin/views/Themes.php:5005
4419
  msgid "Title color:"
4420
  msgstr ""
4421
 
@@ -4482,66 +4548,66 @@ msgid ""
4482
  "You are About to Uninstall %s from WordPress. This Action Is Not Reversible."
4483
  msgstr ""
4484
 
4485
- #: admin/views/Widget.php:98 photo-gallery.php:92
4486
  msgid "Photo Gallery"
4487
  msgstr ""
4488
 
4489
- #: admin/views/Widget.php:115 admin/views/WidgetSlideshow.php:82
4490
  #: admin/views/WidgetTags.php:78
4491
  msgid "Title:"
4492
  msgstr ""
4493
 
4494
- #: admin/views/Widget.php:119 admin/views/WidgetTags.php:82
4495
  msgid "Type:"
4496
  msgstr ""
4497
 
4498
- #: admin/views/Widget.php:121
4499
  msgid "Gallery groups"
4500
  msgstr ""
4501
 
4502
- #: admin/views/Widget.php:124 admin/views/WidgetSlideshow.php:86
4503
  msgid "Galleries:"
4504
  msgstr ""
4505
 
4506
- #: admin/views/Widget.php:137
4507
  msgid "Gallery Type:"
4508
  msgstr "Galeri boş:"
4509
 
4510
- #: admin/views/Widget.php:145
4511
  msgid "Gallery Groups:"
4512
  msgstr ""
4513
 
4514
- #: admin/views/Widget.php:147
4515
  msgid "All Galleries"
4516
  msgstr ""
4517
 
4518
- #: admin/views/Widget.php:158
4519
  msgid "Sort:"
4520
  msgstr ""
4521
 
4522
- #: admin/views/Widget.php:160 frontend/views/view.php:639
4523
  msgid "First"
4524
  msgstr "İlk"
4525
 
4526
- #: admin/views/Widget.php:161 frontend/views/view.php:642
4527
  msgid "Last"
4528
  msgstr "Son"
4529
 
4530
- #: admin/views/Widget.php:165
4531
  msgid "Count:"
4532
  msgstr ""
4533
 
4534
- #: admin/views/Widget.php:169 admin/views/WidgetSlideshow.php:131
4535
  #: admin/views/WidgetTags.php:105
4536
  msgid "Dimensions:"
4537
  msgstr ""
4538
 
4539
- #: admin/views/Widget.php:174 admin/views/WidgetSlideshow.php:147
4540
  #: admin/views/WidgetTags.php:124
4541
  msgid "Themes:"
4542
  msgstr ""
4543
 
4544
- #: admin/views/WidgetSlideshow.php:67 photo-gallery.php:1680
4545
  msgid "Photo Gallery Slideshow"
4546
  msgstr ""
4547
 
@@ -4573,7 +4639,7 @@ msgstr ""
4573
  msgid "Time interval:"
4574
  msgstr ""
4575
 
4576
- #: admin/views/WidgetTags.php:63 photo-gallery.php:1676
4577
  msgid "Photo Gallery Tags Cloud"
4578
  msgstr ""
4579
 
@@ -4629,28 +4695,28 @@ msgstr ""
4629
  msgid "Installation failed, please try again."
4630
  msgstr ""
4631
 
4632
- #: filemanager/controller.php:177
4633
  msgid "Directory already exists."
4634
  msgstr ""
4635
 
4636
- #: filemanager/controller.php:263
4637
  msgid "File doesn't exist."
4638
  msgstr ""
4639
 
4640
- #: filemanager/controller.php:267 filemanager/controller.php:300
4641
- #: filemanager/controller.php:332
4642
  msgid "Can't rename the file."
4643
  msgstr ""
4644
 
4645
- #: filemanager/controller.php:371
4646
  msgid "Some of the files couldn't be removed."
4647
  msgstr ""
4648
 
4649
- #: filemanager/controller.php:481
4650
  msgid "Failed to copy some of the files."
4651
  msgstr ""
4652
 
4653
- #: filemanager/controller.php:528
4654
  msgid "Failed to move some of the files."
4655
  msgstr ""
4656
 
@@ -4678,344 +4744,385 @@ msgstr ""
4678
  msgid "Processing uploaded files..."
4679
  msgstr ""
4680
 
4681
- #: filemanager/view.php:93
4682
  msgid "Up"
4683
  msgstr ""
4684
 
4685
- #: filemanager/view.php:94
4686
  msgid "Make a directory"
4687
  msgstr ""
4688
 
4689
- #: filemanager/view.php:95
4690
  msgid "Rename item"
4691
  msgstr ""
4692
 
4693
- #: filemanager/view.php:97 framework/howto/data.php:168
4694
  msgid "Copy"
4695
  msgstr ""
4696
 
4697
- #: filemanager/view.php:98
4698
  msgid "Cut"
4699
  msgstr ""
4700
 
4701
- #: filemanager/view.php:99
4702
  msgid "Paste"
4703
  msgstr ""
4704
 
4705
- #: filemanager/view.php:100
4706
  msgid "Remove items"
4707
  msgstr "Madde"
4708
 
4709
- #: filemanager/view.php:102
4710
  msgid "Refresh"
4711
  msgstr ""
4712
 
4713
- #: filemanager/view.php:106
4714
  msgid "View thumbs"
4715
  msgstr ""
4716
 
4717
- #: filemanager/view.php:107
4718
  msgid "View list"
4719
  msgstr ""
4720
 
4721
- #: filemanager/view.php:111
4722
  msgid "Upload files"
4723
  msgstr ""
4724
 
4725
- #: filemanager/view.php:130
4726
  msgid "Order by:"
4727
  msgstr "Sipariş:"
4728
 
4729
- #: filemanager/view.php:132
4730
  msgid "Click to sort by name"
4731
  msgstr ""
4732
 
4733
- #: filemanager/view.php:148
4734
  msgid "Click to sort by size"
4735
  msgstr ""
4736
 
4737
- #: filemanager/view.php:164
4738
  msgid "Click to sort by date modified"
4739
  msgstr ""
4740
 
4741
- #: filemanager/view.php:167
4742
  msgid "Date modified"
4743
  msgstr ""
4744
 
4745
- #: filemanager/view.php:198
4746
  msgid "No items found."
4747
  msgstr ""
4748
 
4749
- #: filemanager/view.php:213
4750
  msgid "Add selected images to gallery"
4751
  msgstr "Bu galeride resim yok"
4752
 
4753
- #: filemanager/view.php:228
 
 
 
 
4754
  msgid "Thumbnail Max Dimensions:"
4755
  msgstr ""
4756
 
4757
- #: filemanager/view.php:229
4758
  msgid "Thumbnail:"
4759
  msgstr ""
4760
 
4761
- #: filemanager/view.php:234 frontend/views/view.php:241
4762
- msgid "Back"
4763
- msgstr "Geri"
4764
-
4765
- #: filemanager/view.php:237
4766
  msgid "Image Max Dimensions:"
4767
  msgstr ""
4768
 
4769
- #: filemanager/view.php:238
4770
  msgid "Image:"
4771
  msgstr ""
4772
 
4773
- #: filemanager/view.php:246
4774
  msgid "Drag files here"
4775
  msgstr ""
4776
 
4777
- #: filemanager/view.php:246
4778
  msgid "Select Files"
4779
  msgstr ""
4780
 
4781
- #: filemanager/view.php:265
4782
  msgid "No files to upload"
4783
  msgstr ""
4784
 
4785
- #: filemanager/view.php:292
4786
  msgid "Uploaded"
4787
  msgstr ""
4788
 
4789
- #: filemanager/view.php:293
4790
  msgid "Upload failed"
4791
  msgstr ""
4792
 
4793
- #: filemanager/view.php:294
4794
  msgid ""
4795
  "There has been a problem while trying to upload the following images. Please "
4796
  "try to upload them again."
4797
  msgstr ""
4798
 
4799
- #: filemanager/view.php:295
4800
  msgid "Allowed upload types JPG, JPEG, GIF, PNG, SVG."
4801
  msgstr ""
4802
 
4803
- #: framework/WDWLibrary.php:69
4804
  msgid "Item successfully saved."
4805
  msgstr ""
4806
 
4807
- #: framework/WDWLibrary.php:75 framework/WDWLibrary.php:178
4808
  msgid "Failed."
4809
  msgstr ""
4810
 
4811
- #: framework/WDWLibrary.php:81
4812
  msgid "Item successfully deleted."
4813
  msgstr ""
4814
 
4815
- #: framework/WDWLibrary.php:87
4816
  msgid "You can't delete default theme."
4817
  msgstr ""
4818
 
4819
- #: framework/WDWLibrary.php:93
4820
  msgid "Items Successfully Deleted."
4821
  msgstr ""
4822
 
4823
- #: framework/WDWLibrary.php:99
4824
  msgid "You must set watermark type from Options page."
4825
  msgstr ""
4826
 
4827
- #: framework/WDWLibrary.php:105
4828
  msgid "The item is successfully set as default."
4829
  msgstr ""
4830
 
4831
- #: framework/WDWLibrary.php:111
4832
  msgid "Options successfully saved."
4833
  msgstr ""
4834
 
4835
- #: framework/WDWLibrary.php:117
4836
  msgid "Item successfully published."
4837
  msgstr ""
4838
 
4839
- #: framework/WDWLibrary.php:123
4840
  msgid "Item successfully unpublished."
4841
  msgstr ""
4842
 
4843
- #: framework/WDWLibrary.php:129
4844
  msgid "Item successfully duplicated."
4845
  msgstr ""
4846
 
4847
- #: framework/WDWLibrary.php:136
4848
  msgid "Items Succesfully Unpublished."
4849
  msgstr ""
4850
 
4851
- #: framework/WDWLibrary.php:142
4852
  msgid "Ordering Succesfully Saved."
4853
  msgstr ""
4854
 
4855
- #: framework/WDWLibrary.php:148
4856
  msgid "A term with the name provided already exists."
4857
  msgstr ""
4858
 
4859
- #: framework/WDWLibrary.php:154
4860
  msgid "Name field is required."
4861
  msgstr ""
4862
 
4863
- #: framework/WDWLibrary.php:160
4864
  msgid "The slug must be unique."
4865
  msgstr ""
4866
 
4867
- #: framework/WDWLibrary.php:166
4868
  msgid "Changes must be saved."
4869
  msgstr ""
4870
 
4871
- #: framework/WDWLibrary.php:172
4872
  msgid "Theme successfully copied."
4873
  msgstr ""
4874
 
4875
- #: framework/WDWLibrary.php:183
4876
  msgid "Items were reset successfully."
4877
  msgstr ""
4878
 
4879
- #: framework/WDWLibrary.php:188
4880
  msgid "Watermark successfully set."
4881
  msgstr ""
4882
 
4883
- #: framework/WDWLibrary.php:193
4884
  msgid "Items successfully rotated."
4885
  msgstr ""
4886
 
4887
- #: framework/WDWLibrary.php:198
4888
  msgid "Items successfully recreated."
4889
  msgstr ""
4890
 
4891
- #: framework/WDWLibrary.php:203
4892
  msgid "Items successfully resized."
4893
  msgstr ""
4894
 
4895
- #: framework/WDWLibrary.php:208
4896
  msgid "Items successfully edited."
4897
  msgstr ""
4898
 
4899
- #: framework/WDWLibrary.php:269
4900
- msgid "Click to sort by this item"
4901
  msgstr ""
4902
 
4903
- #: framework/WDWLibrary.php:451 framework/WDWLibrary.php:600
4904
- msgid "item"
4905
  msgstr ""
4906
 
4907
- #: framework/WDWLibrary.php:2156
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4908
  #, php-format
4909
  msgid "No %s found."
4910
  msgstr ""
4911
 
4912
- #: framework/WDWLibrary.php:2212
4913
  msgid "Gallery Tags"
4914
  msgstr "Galeri boş"
4915
 
4916
- #: framework/WDWLibrary.php:2423
4917
  msgid "resized"
4918
  msgstr ""
4919
 
4920
- #: framework/WDWLibrary.php:2427
4921
  msgid "Recreate thumbnail"
4922
  msgstr ""
4923
 
4924
- #: framework/WDWLibrary.php:2428
4925
  msgid "recreated"
4926
  msgstr ""
4927
 
4928
- #: framework/WDWLibrary.php:2432
4929
  msgid "Rotate left"
4930
  msgstr ""
4931
 
4932
- #: framework/WDWLibrary.php:2433
4933
  msgid "rotated left"
4934
  msgstr "henüz değerlendirilmedi"
4935
 
4936
- #: framework/WDWLibrary.php:2437
4937
  msgid "Rotate right"
4938
  msgstr ""
4939
 
4940
- #: framework/WDWLibrary.php:2438
4941
  msgid "rotated right"
4942
  msgstr ""
4943
 
4944
- #: framework/WDWLibrary.php:2443 framework/WDWLibrary.php:2456
4945
- #: framework/WDWLibrary.php:2461 framework/WDWLibrary.php:2466
4946
- #: framework/WDWLibrary.php:2471 framework/WDWLibrary.php:2494
4947
- #: framework/WDWLibrary.php:2499
4948
  msgid "edited"
4949
  msgstr ""
4950
 
4951
- #: framework/WDWLibrary.php:2448
4952
  msgid "reset"
4953
  msgstr "sıfırlayın"
4954
 
4955
- #: framework/WDWLibrary.php:2455
4956
  msgid "Edit Alt/Title"
4957
  msgstr ""
4958
 
4959
- #: framework/WDWLibrary.php:2460
4960
  msgid "Edit description"
4961
  msgstr ""
4962
 
4963
- #: framework/WDWLibrary.php:2465
4964
  msgid "Edit redirect URL"
4965
  msgstr ""
4966
 
4967
- #: framework/WDWLibrary.php:2470
4968
  msgid "Add/Remove tag"
4969
  msgstr "Madde"
4970
 
4971
- #: framework/WDWLibrary.php:2493
4972
  msgid "Add pricelist"
4973
  msgstr ""
4974
 
4975
- #: framework/WDWLibrary.php:2498
4976
  msgid "Remove pricelist"
4977
  msgstr ""
4978
 
4979
- #: framework/WDWLibrary.php:2604
4980
  msgid "Photo Gallery Premium"
4981
  msgstr "Facebook'ta paylaşın"
4982
 
4983
- #: framework/WDWLibrary.php:2607
4984
  msgid ""
4985
  "Get more stunning views with fully customizable themes, powerful lightbox "
4986
  "and much more."
4987
  msgstr ""
4988
 
4989
- #: framework/WDWLibrary.php:2611 framework/WDWLibrary.php:2662
4990
- msgid "Upgrade"
4991
- msgstr ""
4992
-
4993
- #: framework/WDWLibrary.php:2625
4994
  msgid "User guide"
4995
  msgstr ""
4996
 
4997
- #: framework/WDWLibrary.php:2640 photo-gallery.php:498 photo-gallery.php:1905
 
4998
  msgid "Ask a question"
4999
  msgstr ""
5000
 
5001
- #: framework/WDWLibrary.php:2654
5002
  msgid "Forms"
5003
  msgstr ""
5004
 
5005
- #: framework/WDWLibrary.php:2658 photo-gallery.php:488
5006
  msgid "Add-ons"
5007
  msgstr ""
5008
 
5009
- #: framework/WDWLibrary.php:2662
5010
  msgid "Premium Version"
5011
  msgstr ""
5012
 
5013
- #: framework/WDWLibrary.php:2796
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5014
  msgid "All tags"
5015
  msgstr "Galeri boş"
5016
 
5017
- #: framework/WDWLibraryEmbed.php:399 framework/WDWLibraryEmbed.php:408
5018
- #: framework/WDWLibraryEmbed.php:410
5019
  msgid "The entered URL is incorrect. Please check the URL and try again."
5020
  msgstr ""
5021
 
@@ -5172,82 +5279,101 @@ msgstr ""
5172
  msgid "How to use"
5173
  msgstr ""
5174
 
5175
- #: frontend/controllers/BWGControllerGalleryBox.php:74
5176
- #: frontend/controllers/BWGControllerGalleryBox.php:79
5177
- #: frontend/controllers/BWGControllerGalleryBox.php:88
5178
- #: frontend/controllers/BWGControllerGalleryBox.php:96
5179
- #: frontend/controllers/BWGControllerGalleryBox.php:106
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5180
  #, php-format
5181
  msgid "The %s field is required."
5182
  msgstr ""
5183
 
5184
- #: frontend/controllers/BWGControllerGalleryBox.php:83
5185
  #, php-format
5186
  msgid "The %s field must contain a valid email address."
5187
  msgstr "Bu, %s geçerli bir e-posta adresi değil."
5188
 
5189
- #: frontend/controllers/BWGControllerGalleryBox.php:100
5190
  msgid "Incorrect Security code."
5191
  msgstr "Hatası. Yanlış Doğrulama Kodu."
5192
 
5193
- #: frontend/controllers/controller.php:94
5194
  msgid "There is no album selected or the gallery was deleted."
5195
  msgstr "Orada Seçili galeri veya galeri silindi."
5196
 
5197
- #: frontend/controllers/controller.php:276
5198
- #: frontend/controllers/controller.php:304
5199
  msgid "There is no gallery selected or the gallery was deleted."
5200
  msgstr "Orada Seçili galeri veya galeri silindi."
5201
 
5202
- #: frontend/views/BWGViewAlbum_compact_preview.php:78
5203
- #: frontend/views/BWGViewAlbum_extended_preview.php:89
5204
- #: frontend/views/BWGViewAlbum_masonry_preview.php:64
5205
  msgid "No results found."
5206
  msgstr ""
5207
 
5208
- #: frontend/views/BWGViewAlbum_extended_preview.php:161
5209
- #: frontend/views/BWGViewAlbum_extended_preview.php:164
5210
  msgid "More"
5211
  msgstr "Daha"
5212
 
5213
- #: frontend/views/BWGViewAlbum_extended_preview.php:162
5214
  msgid "Hide"
5215
  msgstr "Gizle"
5216
 
5217
- #: frontend/views/BWGViewBlog_style.php:149
5218
- #: frontend/views/BWGViewGalleryBox.php:793
5219
  msgid "Show comments"
5220
  msgstr "Yorumları göster"
5221
 
5222
- #: frontend/views/BWGViewBlog_style.php:155
5223
- #: frontend/views/BWGViewBlog_style.php:156
5224
- #: frontend/views/BWGViewGalleryBox.php:801
5225
- #: frontend/views/BWGViewGalleryBox.php:802
5226
  msgid "Share on Facebook"
5227
  msgstr "Facebook'ta paylaşın"
5228
 
5229
- #: frontend/views/BWGViewBlog_style.php:162
5230
- #: frontend/views/BWGViewBlog_style.php:163
5231
- #: frontend/views/BWGViewGalleryBox.php:808
5232
- #: frontend/views/BWGViewGalleryBox.php:809
5233
  msgid "Share on Twitter"
5234
  msgstr "Twitter'da paylaşın"
5235
 
5236
- #: frontend/views/BWGViewBlog_style.php:169
5237
- #: frontend/views/BWGViewBlog_style.php:170
5238
- #: frontend/views/BWGViewGalleryBox.php:815
5239
- #: frontend/views/BWGViewGalleryBox.php:816
5240
  msgid "Share on Pinterest"
5241
  msgstr "Pinterest Share on"
5242
 
5243
- #: frontend/views/BWGViewBlog_style.php:176
5244
- #: frontend/views/BWGViewBlog_style.php:177
5245
- #: frontend/views/BWGViewGalleryBox.php:822
5246
- #: frontend/views/BWGViewGalleryBox.php:823
5247
  msgid "Share on Tumblr"
5248
  msgstr "Tumblr Share on"
5249
 
5250
- #: frontend/views/BWGViewBlog_style.php:184
5251
  msgid "Show ecommerce"
5252
  msgstr "Yorumları göster"
5253
 
@@ -5255,192 +5381,192 @@ msgstr "Yorumları göster"
5255
  msgid "There are no images to download."
5256
  msgstr "Bu galeride resim yok."
5257
 
5258
- #: frontend/views/BWGViewGalleryBox.php:642
5259
  msgid "The image has been deleted."
5260
  msgstr "Resim silindi."
5261
 
5262
- #: frontend/views/BWGViewGalleryBox.php:781
5263
- #: frontend/views/BWGViewThumbnails.php:45
5264
- #: frontend/views/BWGViewThumbnails_masonry.php:56
5265
- #: frontend/views/BWGViewThumbnails_mosaic.php:90 photo-gallery.php:1425
5266
- #: photo-gallery.php:1428
5267
  msgid "Play"
5268
  msgstr "Oynayın"
5269
 
5270
- #: frontend/views/BWGViewGalleryBox.php:785 photo-gallery.php:1418
5271
  msgid "Maximize"
5272
  msgstr "Özdeyiş"
5273
 
5274
- #: frontend/views/BWGViewGalleryBox.php:789 photo-gallery.php:1419
5275
  msgid "Fullscreen"
5276
  msgstr "Fullscreen"
5277
 
5278
- #: frontend/views/BWGViewGalleryBox.php:791 photo-gallery.php:1431
5279
  msgid "Show info"
5280
  msgstr "Bilgi göster"
5281
 
5282
- #: frontend/views/BWGViewGalleryBox.php:795 photo-gallery.php:1433
5283
  msgid "Show rating"
5284
  msgstr "Derece Show"
5285
 
5286
- #: frontend/views/BWGViewGalleryBox.php:830
5287
  msgid "Open image in original size."
5288
  msgstr "Orijinal boyutunda açık görüntüsü."
5289
 
5290
- #: frontend/views/BWGViewGalleryBox.php:845
5291
  msgid "Download original image"
5292
  msgstr "Orijinal resim dosyasını indirin"
5293
 
5294
- #: frontend/views/BWGViewGalleryBox.php:852
5295
- #: frontend/views/BWGViewThumbnails.php:49
5296
- #: frontend/views/BWGViewThumbnails_masonry.php:60
5297
- #: frontend/views/BWGViewThumbnails_mosaic.php:108
5298
  msgid "Ecommerce"
5299
  msgstr ""
5300
 
5301
- #: frontend/views/BWGViewGalleryBox.php:877
5302
  msgid "Hits: "
5303
  msgstr "Hits: "
5304
 
5305
- #: frontend/views/BWGViewGalleryBox.php:897
5306
  msgid "Rated."
5307
  msgstr "Anma."
5308
 
5309
- #: frontend/views/BWGViewGalleryBox.php:990 photo-gallery.php:1416
5310
  msgid "Hide Comments"
5311
  msgstr "Yorumlar gizle"
5312
 
5313
- #: frontend/views/BWGViewGalleryBox.php:1009
5314
  msgid "Verification Code"
5315
  msgstr "Doğrulama Kodu"
5316
 
5317
- #: frontend/views/BWGViewGalleryBox.php:1032
5318
  #, php-format
5319
  msgid ""
5320
  "I consent collecting this data and processing it according to %s of this "
5321
  "website."
5322
  msgstr ""
5323
 
5324
- #: frontend/views/BWGViewGalleryBox.php:1033
5325
  #: wd/templates/display_subscribe.php:39
5326
  msgid "Privacy Policy"
5327
  msgstr ""
5328
 
5329
- #: frontend/views/BWGViewGalleryBox.php:1042
5330
  msgid "Submit"
5331
  msgstr "Gönder"
5332
 
5333
- #: frontend/views/BWGViewGalleryBox.php:1044
5334
  msgid "Your comment is awaiting moderation"
5335
  msgstr "Yorumunuz ılımlılık bekliyor"
5336
 
5337
- #: frontend/views/BWGViewGalleryBox.php:1078 photo-gallery.php:1414
5338
  msgid "Hide Ecommerce"
5339
  msgstr "Yorumlar gizle"
5340
 
5341
- #: frontend/views/BWGViewGalleryBox.php:1084
5342
- #: frontend/views/BWGViewGalleryBox.php:1267
5343
  msgid "Add to cart"
5344
  msgstr ""
5345
 
5346
- #: frontend/views/BWGViewGalleryBox.php:1087
5347
  msgid "items"
5348
  msgstr "madde"
5349
 
5350
- #: frontend/views/BWGViewGalleryBox.php:1095
5351
  msgid "Prints and products"
5352
  msgstr ""
5353
 
5354
- #: frontend/views/BWGViewGalleryBox.php:1102
5355
  msgid "Downloads"
5356
  msgstr ""
5357
 
5358
- #: frontend/views/BWGViewGalleryBox.php:1116
5359
- #: frontend/views/BWGViewGalleryBox.php:1228
5360
  msgid "Price"
5361
  msgstr ""
5362
 
5363
- #: frontend/views/BWGViewGalleryBox.php:1136
5364
  msgid "Count"
5365
  msgstr ""
5366
 
5367
- #: frontend/views/BWGViewGalleryBox.php:1216
5368
- #: frontend/views/BWGViewGalleryBox.php:1260
5369
  msgid "Total"
5370
  msgstr ""
5371
 
5372
- #: frontend/views/BWGViewGalleryBox.php:1227
5373
  msgid "Dimensions"
5374
  msgstr ""
5375
 
5376
- #: frontend/views/BWGViewGalleryBox.php:1229
5377
  msgid "Choose"
5378
  msgstr ""
5379
 
5380
- #: frontend/views/BWGViewGalleryBox.php:1268
5381
  msgid "View cart"
5382
  msgstr ""
5383
 
5384
- #: frontend/views/BWGViewGalleryBox.php:1374
5385
  msgid "Delete Comment"
5386
  msgstr "Yorum silin"
5387
 
5388
- #: frontend/views/BWGViewThumbnails.php:48
5389
- #: frontend/views/BWGViewThumbnails_masonry.php:59
5390
- #: frontend/views/BWGViewThumbnails_mosaic.php:107
5391
  msgid "Open"
5392
  msgstr ""
5393
 
5394
- #: frontend/views/view.php:94 frontend/views/view.php:171
5395
  msgid "There are no images."
5396
  msgstr "Bu galeride resim yok."
5397
 
5398
- #: frontend/views/view.php:97 frontend/views/view.php:174
5399
  msgid "No Images found."
5400
  msgstr "Yorumları göster."
5401
 
5402
- #: frontend/views/view.php:317
5403
  msgid "Download gallery"
5404
  msgstr "Orijinal resim dosyasını indirin"
5405
 
5406
- #: frontend/views/view.php:373 frontend/views/view.php:382
5407
- #: photo-gallery.php:1421
5408
  msgid "SEARCH..."
5409
  msgstr ""
5410
 
5411
- #: frontend/views/view.php:421
5412
  msgid "Order by Default"
5413
  msgstr "Sipariş"
5414
 
5415
- #: frontend/views/view.php:634
5416
  msgid " item(s)"
5417
  msgstr " madde"
5418
 
5419
- #: frontend/views/view.php:640
5420
  msgid "Previous"
5421
  msgstr "Önceki"
5422
 
5423
- #: frontend/views/view.php:641
5424
  msgid "Next"
5425
  msgstr "Sonraki"
5426
 
5427
- #: frontend/views/view.php:660
5428
  msgid "Go to the first page"
5429
  msgstr "İlk sayfaya git"
5430
 
5431
- #: frontend/views/view.php:661
5432
  msgid "Go to the previous page"
5433
  msgstr "Önceki sayfaya git"
5434
 
5435
- #: frontend/views/view.php:668
5436
  msgid "Go to the next page"
5437
  msgstr "Bir sonraki sayfaya gitmek"
5438
 
5439
- #: frontend/views/view.php:669
5440
  msgid "Go to the last page"
5441
  msgstr "Son sayfaya gidin"
5442
 
5443
- #: frontend/views/view.php:681
5444
  msgid "Load More..."
5445
  msgstr "Daha fazla yükle..."
5446
 
@@ -5452,15 +5578,15 @@ msgstr ""
5452
  msgid "Dark"
5453
  msgstr ""
5454
 
5455
- #: photo-gallery.php:270
5456
  msgid "Help"
5457
  msgstr ""
5458
 
5459
- #: photo-gallery.php:317
5460
  msgid "10WEB Plugins"
5461
  msgstr ""
5462
 
5463
- #: photo-gallery.php:338
5464
  msgid ""
5465
  "When you leave a comment on this site, we send your name, email\n"
5466
  " address, IP address and comment text to example.com. Example.com "
@@ -5468,20 +5594,20 @@ msgid ""
5468
  " not retain your personal data."
5469
  msgstr ""
5470
 
5471
- #: photo-gallery.php:347
5472
  #, php-format
5473
  msgid "Select %s"
5474
  msgstr ""
5475
 
5476
- #: photo-gallery.php:372
5477
  msgid "Nothing selected."
5478
  msgstr ""
5479
 
5480
- #: photo-gallery.php:373
5481
  msgid "- Select -"
5482
  msgstr ""
5483
 
5484
- #: photo-gallery.php:407
5485
  #, php-format
5486
  msgid ""
5487
  "Image edit functionality is not supported by your web host. We highly "
@@ -5489,11 +5615,11 @@ msgid ""
5489
  "library."
5490
  msgstr ""
5491
 
5492
- #: photo-gallery.php:407
5493
  msgid "PHP GD"
5494
  msgstr ""
5495
 
5496
- #: photo-gallery.php:408
5497
  #, php-format
5498
  msgid ""
5499
  "Without image editing functions, image thumbnails will not be created, thus "
@@ -5501,269 +5627,269 @@ msgid ""
5501
  "Gallery's features, e.g. %s, %s, and %s, will not be available."
5502
  msgstr ""
5503
 
5504
- #: photo-gallery.php:408
5505
  msgid "crop"
5506
  msgstr ""
5507
 
5508
- #: photo-gallery.php:408
5509
  msgid "edit"
5510
  msgstr ""
5511
 
5512
- #: photo-gallery.php:408
5513
- #, fuzzy
5514
- #| msgid "Not rated yet."
5515
  msgid "rotate"
5516
  msgstr "Henüz değerlendirilmedi. "
5517
 
5518
- #: photo-gallery.php:417
5519
  #, php-format
5520
  msgid ""
5521
  "Image edit functionality was just activated on your web host. Please go to "
5522
  "%s, navigate to %s tab and press %s button."
5523
  msgstr ""
5524
 
5525
- #: photo-gallery.php:417 photo-gallery.php:469
5526
  msgid "Options"
5527
  msgstr ""
5528
 
5529
- #: photo-gallery.php:417
5530
- #, fuzzy
5531
- #| msgid "Previous"
5532
  msgid "Options page"
5533
  msgstr "Önceki"
5534
 
5535
- #: photo-gallery.php:461
5536
  msgid "Add Galleries/Images"
5537
  msgstr ""
5538
 
5539
- #: photo-gallery.php:527
5540
  #, php-format
5541
  msgid "The controller %s file not exist."
5542
  msgstr ""
5543
 
5544
- #: photo-gallery.php:532
5545
  #, php-format
5546
  msgid "The view %s file not exist."
5547
  msgstr ""
5548
 
5549
- #: photo-gallery.php:548 photo-gallery.php:553
5550
  #, php-format
5551
  msgid "The %s class not exist."
5552
  msgstr ""
5553
 
5554
- #: photo-gallery.php:596 photo-gallery.php:630
5555
  msgid "Do you want to delete selected items?"
5556
  msgstr ""
5557
 
5558
- #: photo-gallery.php:597 photo-gallery.php:625
5559
  msgid "You must select at least one item."
5560
  msgstr ""
5561
 
5562
- #: photo-gallery.php:598
5563
  msgid "Do you want to remove pricelist from selected items?"
5564
  msgstr ""
5565
 
5566
- #: photo-gallery.php:605 photo-gallery.php:1407
 
 
 
 
5567
  msgid "field is required."
5568
  msgstr ""
5569
 
5570
- #: photo-gallery.php:606
5571
  msgid "You must select an image file."
5572
  msgstr ""
5573
 
5574
- #: photo-gallery.php:607
5575
  msgid "You must select an audio file."
5576
  msgstr ""
5577
 
5578
- #: photo-gallery.php:608
5579
  msgid ""
5580
  "You do not have Instagram access token. Sign in with Instagram in Options -> "
5581
  "Advanced tab -> Social. "
5582
  msgstr ""
5583
 
5584
- #: photo-gallery.php:609
5585
  msgid ""
5586
  "You do not have Instagram CLIENT_ID. Input its value in Options->Embed "
5587
  "options."
5588
  msgstr ""
5589
 
5590
- #: photo-gallery.php:610
5591
- msgid "Instagram recent post number must be between 1 and 33."
5592
  msgstr ""
5593
 
5594
- #: photo-gallery.php:611
5595
  msgid ""
5596
  "Gallery type cannot be changed, since it is not empty. In case you would "
5597
  "like to have Instagram gallery, please create a new one."
5598
  msgstr ""
5599
 
5600
- #: photo-gallery.php:612
5601
  msgid "Please enter url to embed."
5602
  msgstr ""
5603
 
5604
- #: photo-gallery.php:613
5605
  msgid "Error: cannot get response from the server."
5606
  msgstr ""
5607
 
5608
- #: photo-gallery.php:614
5609
  msgid "Error: something wrong happened at the server."
5610
  msgstr ""
5611
 
5612
- #: photo-gallery.php:615
5613
  msgid "Error"
5614
  msgstr ""
5615
 
5616
- #: photo-gallery.php:617
5617
  msgid "Hide order column"
5618
  msgstr ""
5619
 
5620
- #: photo-gallery.php:618
5621
  #, php-format
5622
  msgid "Selected %d item."
5623
  msgstr ""
5624
 
5625
- #: photo-gallery.php:619
5626
  #, php-format
5627
  msgid "Selected %d items."
5628
  msgstr ""
5629
 
5630
- #: photo-gallery.php:620
5631
  msgid "Items Succesfully Saved."
5632
  msgstr ""
5633
 
5634
- #: photo-gallery.php:621
5635
  msgid "Item Succesfully Recovered."
5636
  msgstr ""
5637
 
5638
- #: photo-gallery.php:622
5639
  msgid "Item Succesfully Published."
5640
  msgstr ""
5641
 
5642
- #: photo-gallery.php:623
5643
  msgid "Item Succesfully Unpublished."
5644
  msgstr ""
5645
 
5646
- #: photo-gallery.php:624
5647
  msgid "Item Succesfully Deleted."
5648
  msgstr ""
5649
 
5650
- #: photo-gallery.php:626
5651
  msgid "Items Succesfully resized."
5652
  msgstr ""
5653
 
5654
- #: photo-gallery.php:627
5655
  msgid "Watermarks Succesfully Set."
5656
  msgstr ""
5657
 
5658
- #: photo-gallery.php:628
5659
  msgid "Items Succesfully Reset."
5660
  msgstr ""
5661
 
5662
- #: photo-gallery.php:629
5663
  msgid "Save Tag"
5664
  msgstr ""
5665
 
5666
- #: photo-gallery.php:631 photo-gallery.php:633
5667
  msgid ""
5668
  "This action will reset gallery type to mixed and will save that choice. You "
5669
  "cannot undo it."
5670
  msgstr ""
5671
 
5672
- #: photo-gallery.php:632
5673
  msgid ""
5674
  "After pressing save/apply buttons, you cannot change gallery type back to "
5675
  "Instagram!"
5676
  msgstr ""
5677
 
5678
- #: photo-gallery.php:634
5679
  msgid "Insert"
5680
  msgstr ""
5681
 
5682
- #: photo-gallery.php:635
5683
  msgid "Failed to import images from media library"
5684
  msgstr ""
5685
 
5686
- #: photo-gallery.php:636
5687
  msgid "Sorry, only jpg, jpeg, gif, png types are allowed."
5688
  msgstr ""
5689
 
5690
- #: photo-gallery.php:640
5691
  msgid "Thumbnails successfully recreated."
5692
  msgstr ""
5693
 
5694
- #: photo-gallery.php:641
5695
  msgid "All images are successfully reset."
5696
  msgstr ""
5697
 
5698
- #: photo-gallery.php:1002
5699
  msgid "Insert Photo Gallery"
5700
  msgstr ""
5701
 
5702
- #: photo-gallery.php:1004
5703
  msgid "Add Photo Gallery"
5704
  msgstr ""
5705
 
5706
- #: photo-gallery.php:1408
5707
  msgid "This is not a valid email address."
5708
  msgstr "Bu, geçerli bir e-posta adresi değil."
5709
 
5710
- #: photo-gallery.php:1409
5711
  msgid "There are no images matching your search."
5712
  msgstr "Aramanızı eşleşen görüntü yok."
5713
 
5714
- #: photo-gallery.php:1410
5715
  msgid "Select Tag"
5716
  msgstr ""
5717
 
5718
- #: photo-gallery.php:1411
5719
  msgid "Order By"
5720
  msgstr "Sipariş"
5721
 
5722
- #: photo-gallery.php:1413
5723
  msgid "Show Ecommerce"
5724
  msgstr "Yorumları göster"
5725
 
5726
- #: photo-gallery.php:1415
5727
  msgid "Show Comments"
5728
  msgstr "Yorumları Göster"
5729
 
5730
- #: photo-gallery.php:1417
5731
  msgid "Restore"
5732
  msgstr "Restore"
5733
 
5734
- #: photo-gallery.php:1420
5735
  msgid "Exit Fullscreen"
5736
  msgstr "Tam Ekran çıkın"
5737
 
5738
- #: photo-gallery.php:1422
5739
  msgid "No tags found"
5740
  msgstr ""
5741
 
5742
- #: photo-gallery.php:1423
5743
  msgid "All tags selected"
5744
  msgstr ""
5745
 
5746
- #: photo-gallery.php:1424
5747
  msgid "tags selected"
5748
  msgstr ""
5749
 
5750
- #: photo-gallery.php:1426 photo-gallery.php:1429
5751
  msgid "Pause"
5752
  msgstr "Pause"
5753
 
5754
- #: photo-gallery.php:1430
5755
  msgid "Hide info"
5756
  msgstr "Bilgiyi sakla"
5757
 
5758
- #: photo-gallery.php:1432
5759
  msgid "Hide rating"
5760
  msgstr "Gizle derece"
5761
 
5762
- #: photo-gallery.php:1434
5763
  msgid "Ok"
5764
  msgstr ""
5765
 
5766
- #: photo-gallery.php:1483
5767
  msgid ""
5768
  "Photo Gallery is a fully responsive gallery plugin with advanced "
5769
  "functionality. It allows having different image galleries for your posts and "
@@ -5771,11 +5897,11 @@ msgid ""
5771
  "gallery groups, and provide descriptions and tags."
5772
  msgstr ""
5773
 
5774
- #: photo-gallery.php:1487
5775
  msgid "Easy Set-up and Management"
5776
  msgstr ""
5777
 
5778
- #: photo-gallery.php:1488
5779
  msgid ""
5780
  "Create stunning, 100% responsive, SEO-friendly photo galleries in minutes. "
5781
  "Use the File Manager with single-step and easy-to-manage functionality to "
@@ -5783,11 +5909,11 @@ msgid ""
5783
  "use WordPress built in media uploader."
5784
  msgstr ""
5785
 
5786
- #: photo-gallery.php:1491
5787
  msgid "Unlimited Photos and Albums"
5788
  msgstr ""
5789
 
5790
- #: photo-gallery.php:1492
5791
  msgid ""
5792
  "The plugin allows creating unlimited number of galleries or gallery groups "
5793
  "and upload images in each gallery as many as you wish. Add single/ multiple "
@@ -5795,11 +5921,11 @@ msgid ""
5795
  "visual shortcodes for an easier management."
5796
  msgstr ""
5797
 
5798
- #: photo-gallery.php:1495
5799
  msgid "Customizable"
5800
  msgstr ""
5801
 
5802
- #: photo-gallery.php:1496
5803
  msgid ""
5804
  "The gallery plugin is easily customizable. You can edit themes changing "
5805
  "sizes and colors for different features. Specify the number of images to "
@@ -5807,11 +5933,11 @@ msgid ""
5807
  "thumbnail images by cropping, flipping and rotating them."
5808
  msgstr ""
5809
 
5810
- #: photo-gallery.php:1499
5811
  msgid "10 View Options"
5812
  msgstr ""
5813
 
5814
- #: photo-gallery.php:1500
5815
  msgid ""
5816
  "Photo Gallery plugin allows displaying galleries and gallery groups in 10 "
5817
  "elegant and beautiful views:, Thumbnails, Masonry, Mosaic, Slideshow, Image "
@@ -5819,194 +5945,187 @@ msgid ""
5819
  "Ecommerce."
5820
  msgstr ""
5821
 
5822
- #: photo-gallery.php:1503
5823
  msgid "Audio and Video Support"
5824
  msgstr ""
5825
 
5826
- #: photo-gallery.php:1504
5827
  msgid ""
5828
  "You can include both videos and images within a single gallery. WordPress "
5829
  "Photo Gallery Plugin supports YouTube and Vimeo videos within Galleries. "
5830
  "It's also possible to add audio tracks for the image slideshow."
5831
  msgstr ""
5832
 
5833
- #: photo-gallery.php:1510
5834
  msgid "Installing"
5835
  msgstr ""
5836
 
5837
- #: photo-gallery.php:1515
5838
  msgid "Creating/Editing Galleries"
5839
  msgstr ""
5840
 
5841
- #: photo-gallery.php:1519
5842
  msgid "Instagram Gallery"
5843
  msgstr ""
5844
 
5845
- #: photo-gallery.php:1525
5846
  msgid "Creating/Editing Tags"
5847
  msgstr ""
5848
 
5849
- #: photo-gallery.php:1530
5850
  msgid "Creating/Editing Albums"
5851
  msgstr ""
5852
 
5853
- #: photo-gallery.php:1535
5854
  msgid "Editing Options"
5855
  msgstr ""
5856
 
5857
- #: photo-gallery.php:1539
5858
  msgid "Global Options"
5859
  msgstr ""
5860
 
5861
- #: photo-gallery.php:1555
5862
  msgid "Album Options"
5863
  msgstr ""
5864
 
5865
- #: photo-gallery.php:1563
5866
  msgid "Thumbnail Options"
5867
  msgstr ""
5868
 
5869
- #: photo-gallery.php:1567
5870
  msgid "Image Options"
5871
  msgstr ""
5872
 
5873
- #: photo-gallery.php:1571
5874
  msgid "Social Options"
5875
  msgstr ""
5876
 
5877
- #: photo-gallery.php:1575
5878
  msgid "Carousel Options"
5879
  msgstr ""
5880
 
5881
- #: photo-gallery.php:1581
5882
  msgid "Creating/Editing Themes"
5883
  msgstr ""
5884
 
5885
- #: photo-gallery.php:1605
5886
  msgid "Compact Album"
5887
  msgstr ""
5888
 
5889
- #: photo-gallery.php:1609
5890
  msgid "Masonry Album"
5891
  msgstr ""
5892
 
5893
- #: photo-gallery.php:1613
5894
  msgid "Extended Album"
5895
  msgstr ""
5896
 
5897
- #: photo-gallery.php:1625
5898
  msgid "Page Navigation"
5899
  msgstr ""
5900
 
5901
- #: photo-gallery.php:1635
5902
  msgid "Generating Shortcode"
5903
  msgstr ""
5904
 
5905
- #: photo-gallery.php:1640
5906
  msgid "Editing Comments"
5907
  msgstr "Yorumlar gizle"
5908
 
5909
- #: photo-gallery.php:1645
5910
  msgid "Editing Ratings"
5911
  msgstr ""
5912
 
5913
- #: photo-gallery.php:1650
5914
  msgid "Publishing the Created Photo Gallery"
5915
  msgstr ""
5916
 
5917
- #: photo-gallery.php:1654
5918
  msgid "General Parameters"
5919
  msgstr ""
5920
 
5921
- #: photo-gallery.php:1658
5922
  msgid "Lightbox Parameters"
5923
  msgstr ""
5924
 
5925
- #: photo-gallery.php:1668
5926
  msgid "Publishing Photo Gallery Widgets"
5927
  msgstr ""
5928
 
5929
- #: photo-gallery.php:1672
5930
  msgid "Tag Cloud"
5931
  msgstr ""
5932
 
5933
- #: photo-gallery.php:1684
5934
  msgid "Photo Gallery Widget"
5935
  msgstr ""
5936
 
5937
- #: photo-gallery.php:1755
5938
  msgid "Albums"
5939
  msgstr ""
5940
 
5941
- #: photo-gallery.php:1770
5942
  msgid "Gallery tags"
5943
  msgstr "Galeri boş"
5944
 
5945
- #: photo-gallery.php:1819
5946
  msgid "Photo gallery plugin autoupdate interval."
5947
  msgstr "Otomatik güncelleme aralığını eklentisi Fotoğraf galerisi."
5948
 
5949
- #: photo-gallery.php:1862
5950
  #, php-format
5951
  msgid "Please update the %s add-on to start using."
5952
  msgstr ""
5953
 
5954
- #: photo-gallery.php:1863
5955
  #, php-format
5956
  msgid "Please update the %s add-ons to start using."
5957
  msgstr ""
5958
 
5959
- #: photo-gallery.php:1906
5960
  msgid "Rate"
5961
  msgstr "Anma"
5962
 
5963
- #: photo-gallery.php:2013
5964
- #, php-format
5965
- msgid ""
5966
- "%s Photo Gallery advises:%s %sCheck your website’s performance, optimize "
5967
- "images and improve the speed in just minutes.%s"
5968
- msgstr ""
5969
-
5970
- #: wd/includes/deactivate.php:37
5971
  msgid "Technical problems / hard to use"
5972
  msgstr ""
5973
 
5974
- #: wd/includes/deactivate.php:41
5975
  msgid "Free version is limited"
5976
  msgstr ""
5977
 
5978
- #: wd/includes/deactivate.php:45
5979
  msgid "Upgrading to paid version"
5980
  msgstr ""
5981
 
5982
- #: wd/includes/deactivate.php:49
5983
  msgid "Temporary deactivation"
5984
  msgstr ""
5985
 
5986
- #: wd/includes/notices.php:211
5987
  msgid "Leave A Review?"
5988
  msgstr ""
5989
 
5990
- #: wd/includes/notices.php:212
5991
  #, php-format
5992
  msgid ""
5993
  "We hope you've enjoyed using WordPress %s! Would you consider leaving us a "
5994
  "review on WordPress.org?"
5995
  msgstr ""
5996
 
5997
- #: wd/includes/notices.php:213
5998
  msgid "Sure! I'd love to!"
5999
  msgstr ""
6000
 
6001
- #: wd/includes/notices.php:214
6002
  msgid "I've already left a review"
6003
  msgstr ""
6004
 
6005
- #: wd/includes/notices.php:215
6006
  msgid "Maybe Later"
6007
  msgstr ""
6008
 
6009
- #: wd/includes/notices.php:216
6010
  msgid "Never show again"
6011
  msgstr ""
6012
 
@@ -6191,47 +6310,697 @@ msgstr ""
6191
  msgid "Terms of Use"
6192
  msgstr ""
6193
 
6194
- #: wd/wd.php:72 wd/wd.php:76
6195
  msgid "Premium"
6196
  msgstr ""
6197
 
6198
  #, fuzzy
6199
- #~| msgid "There are no images in this gallery."
6200
- #~ msgid "The gallery images view type in the gallery group."
6201
- #~ msgstr "Bu galeride resim yok."
6202
 
6203
  #, fuzzy
6204
- #~| msgid "Load More..."
6205
- #~ msgid "Load more"
6206
- #~ msgstr "Daha fazla yükle..."
6207
 
6208
  #, fuzzy
6209
- #~| msgid "Album is empty."
6210
- #~ msgid "Albums per page"
6211
- #~ msgstr "Albüm boş"
6212
 
6213
  #, fuzzy
6214
  #~| msgid "Album is empty."
6215
- #~ msgid "Album title"
6216
  #~ msgstr "Albüm boş"
6217
 
6218
  #, fuzzy
6219
- #~| msgid "Album is empty."
6220
- #~ msgid "Album view type"
6221
- #~ msgstr "Albüm boş"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6222
 
6223
  #~ msgid "There is no theme selected or the theme was deleted."
6224
  #~ msgstr "Orada seçilmiş hiçbir tema veya tema silindi."
6225
 
6226
- #~ msgid "There is no album selected or the album was deleted."
6227
- #~ msgstr "Orada seçilmiş bir albüm veya albüm silindi."
6228
-
6229
  #~ msgid "Album is empty."
6230
  #~ msgstr "Albüm boş"
6231
 
6232
- #~ msgid "Gallery is empty."
6233
- #~ msgstr "Galeri boş."
6234
-
6235
  #~ msgid "Share on Google+"
6236
  #~ msgstr "Google+ paylaşın."
6237
 
@@ -6246,3 +7015,54 @@ msgstr ""
6246
 
6247
  #~ msgid "You have already rated."
6248
  #~ msgstr "Zaten puan var. "
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: bwg\n"
4
+ "POT-Creation-Date: 2021-02-03 13:34+0400\n"
5
+ "PO-Revision-Date: 2021-02-03 13:35+0400\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: tr_TR\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
  "X-Generator: Poedit 2.4.2\n"
13
+ "X-Poedit-Basepath: ../../../xampp/htdocs/wordpress/wp-content/plugins/photo-"
14
+ "gallery\n"
15
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
16
+ "X-Poedit-KeywordsList: __;_e;_n;_n:1,2\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
+ "X-Poedit-SearchPathExcluded-0: admin/controllers/elementorWidget.php\n"
19
 
20
  #: addons/addons.php:6
 
 
 
 
 
 
 
 
 
 
21
  msgid "NextGen Gallery Import to Photo Gallery"
22
  msgstr ""
23
 
24
+ #: addons/addons.php:8
25
  msgid ""
26
  "This addon integrates NextGen with Photo Gallery allowing to import images "
27
  "and related data from NextGen to use with Photo Gallery"
28
  msgstr ""
29
 
30
+ #: addons/addons.php:13
31
  msgid "Photo Gallery Export / Import"
32
  msgstr ""
33
 
34
+ #: addons/addons.php:15
35
  msgid ""
36
  "Photo Gallery Export/Import helps to move created galleries and gallery "
37
  "groups from one site to another. This way you can save the gallery/album "
38
  "options and manual modifications."
39
  msgstr ""
40
 
41
+ #: addons/addons.php:20
42
  msgid "Photo Gallery Google Photos Integration"
43
  msgstr ""
44
 
45
+ #: addons/addons.php:22
46
  msgid "Link and display your Google Photos albums in one click."
47
  msgstr ""
48
 
49
+ #: addons/addons.php:32
50
  msgid "Photo Gallery Add-ons"
51
  msgstr ""
52
 
53
+ #: addons/addons.php:65
54
  msgid "GET THIS ADD ON"
55
  msgstr ""
56
 
57
+ #: admin/controllers/AddTags.php:53 admin/views/Galleries.php:802
58
+ #: photo-gallery.php:488
59
  msgid "Tags"
60
  msgstr ""
61
 
62
  #: admin/controllers/Albums.php:38 admin/controllers/Comments.php:40
63
+ #: admin/controllers/Galleries.php:34 admin/views/Albums.php:113
64
+ #: admin/views/Albums.php:187 admin/views/Comments.php:109
65
+ #: admin/views/Galleries.php:121 admin/views/Galleries.php:219
66
+ #: admin/views/Galleries.php:751 framework/WDWLibrary.php:2632
67
  msgid "Publish"
68
  msgstr ""
69
 
70
  #: admin/controllers/Albums.php:39 admin/controllers/Comments.php:41
71
+ #: admin/controllers/Galleries.php:35 framework/WDWLibrary.php:2633
72
  msgid "published"
73
  msgstr ""
74
 
75
  #: admin/controllers/Albums.php:42 admin/controllers/Comments.php:44
76
+ #: admin/controllers/Galleries.php:38 admin/views/Albums.php:113
77
+ #: admin/views/Comments.php:109 admin/views/Galleries.php:121
78
+ #: admin/views/Galleries.php:751 framework/WDWLibrary.php:2637
79
  msgid "Unpublish"
80
  msgstr ""
81
 
82
  #: admin/controllers/Albums.php:43 admin/controllers/Comments.php:45
83
+ #: admin/controllers/Galleries.php:39 framework/WDWLibrary.php:2638
84
  msgid "unpublished"
85
  msgstr ""
86
 
87
+ #: admin/controllers/Albums.php:46 admin/controllers/Galleries.php:42
88
+ #: admin/controllers/Themes.php:39 admin/views/Albums.php:114
89
+ #: admin/views/Galleries.php:123 admin/views/Themes.php:224
90
  msgid "Duplicate"
91
  msgstr ""
92
 
95
  msgstr ""
96
 
97
  #: admin/controllers/Albums.php:50 admin/controllers/Comments.php:48
98
+ #: admin/controllers/Galleries.php:46 admin/controllers/Ratings.php:41
99
+ #: admin/controllers/Themes.php:43 admin/views/Albums.php:115
100
+ #: admin/views/Comments.php:112 admin/views/Galleries.php:122
101
+ #: admin/views/Galleries.php:758 admin/views/Ratings.php:84
102
+ #: admin/views/Themes.php:225 framework/WDWLibrary.php:2642
103
  msgid "Delete"
104
  msgstr "Yorum silin"
105
 
106
  #: admin/controllers/Albums.php:51 admin/controllers/Comments.php:49
107
+ #: admin/controllers/Galleries.php:47 admin/controllers/Ratings.php:42
108
+ #: admin/controllers/Themes.php:44 framework/WDWLibrary.php:2643
109
  msgid "deleted"
110
  msgstr ""
111
 
112
+ #: admin/controllers/Albums.php:95 photo-gallery.php:485
113
  msgid "Gallery Groups"
114
  msgstr ""
115
 
116
+ #: admin/controllers/Albums.php:160 admin/controllers/Comments.php:170
117
+ #: admin/controllers/Galleries.php:168 admin/controllers/Ratings.php:177
118
+ #: admin/controllers/Themes.php:132 admin/models/Galleries.php:771
119
+ #, php-format
120
+ msgid "%s item successfully %s."
121
+ msgid_plural "%s items successfully %s."
122
+ msgstr[0] ""
123
+ msgstr[1] ""
124
+
125
  #: admin/controllers/Albumsgalleries.php:50
126
  msgid "Galleries / Gallery groups"
127
  msgstr ""
128
 
129
+ #: admin/controllers/Comments.php:91 photo-gallery.php:496
130
  msgid "Comments"
131
  msgstr "Yorum"
132
 
138
  msgid "Filter by image"
139
  msgstr ""
140
 
141
+ #: admin/controllers/Galleries.php:43 admin/controllers/Themes.php:40
142
+ msgid "duplicated"
143
+ msgstr ""
144
+
145
+ #: admin/controllers/Galleries.php:97 photo-gallery.php:1758
146
  msgid "Galleries"
147
  msgstr "Galeri boş"
148
 
149
+ #: admin/controllers/Galleries.php:379
150
  msgid "Mixed"
151
  msgstr ""
152
 
153
+ #: admin/controllers/Galleries.php:379
154
  msgid "Instagram only"
155
  msgstr ""
156
 
157
+ #: admin/controllers/Galleries.php:381 admin/views/Options.php:726
158
  msgid "Facebook"
159
  msgstr "Facebook'ta paylaşın"
160
 
161
+ #: admin/controllers/Options.php:48 photo-gallery.php:490
162
+ msgid "Global Settings"
163
  msgstr ""
164
 
165
  #: admin/controllers/Options.php:53 admin/controllers/Shortcode.php:40
166
+ #: admin/views/Options.php:429 admin/views/Shortcode.php:76
167
+ #: photo-gallery.php:1603
168
  msgid "Thumbnails"
169
  msgstr ""
170
 
171
  #: admin/controllers/Options.php:54 admin/controllers/Options.php:63
172
  #: admin/controllers/Shortcode.php:41 admin/controllers/Shortcode.php:50
173
+ #: admin/controllers/Themes.php:267 admin/views/Options.php:439
174
+ #: admin/views/Options.php:586 admin/views/Options.php:2874
175
+ #: admin/views/Options.php:3409 admin/views/Shortcode.php:86
176
+ #: admin/views/Shortcode.php:197 admin/views/Widget.php:138
177
+ #: photo-gallery.php:1607
178
  msgid "Masonry"
179
  msgstr ""
180
 
181
  #: admin/controllers/Options.php:55 admin/controllers/Shortcode.php:42
182
+ #: admin/controllers/Themes.php:268 admin/views/Options.php:452
183
+ #: admin/views/Options.php:2875 admin/views/Options.php:3410
184
+ #: admin/views/Shortcode.php:98 photo-gallery.php:1611
185
  msgid "Mosaic"
186
  msgstr ""
187
 
188
  #: admin/controllers/Options.php:56 admin/controllers/Shortcode.php:43
189
+ #: admin/controllers/Themes.php:269 admin/views/Options.php:465
190
+ #: admin/views/Options.php:2876 admin/views/Options.php:3411
191
+ #: admin/views/Shortcode.php:110 photo-gallery.php:1577 photo-gallery.php:1615
192
  msgid "Slideshow"
193
  msgstr ""
194
 
195
  #: admin/controllers/Options.php:57 admin/controllers/Shortcode.php:44
196
+ #: admin/views/Options.php:475 admin/views/Options.php:2877
197
+ #: admin/views/Options.php:3412 admin/views/Shortcode.php:119
198
+ #: photo-gallery.php:1619
199
  msgid "Image Browser"
200
  msgstr ""
201
 
202
  #: admin/controllers/Options.php:58 admin/controllers/Shortcode.php:45
203
+ #: admin/views/Options.php:485 admin/views/Options.php:2878
204
+ #: admin/views/Options.php:3413 admin/views/Shortcode.php:128
205
+ #: photo-gallery.php:1635
206
  msgid "Blog Style"
207
  msgstr ""
208
 
209
  #: admin/controllers/Options.php:59 admin/controllers/Shortcode.php:46
210
+ #: admin/controllers/Themes.php:277 admin/views/Options.php:498
211
+ #: admin/views/Options.php:2879 admin/views/Options.php:3414
212
+ #: admin/views/Shortcode.php:140 photo-gallery.php:1647
213
  msgid "Carousel"
214
  msgstr ""
215
 
216
  #: admin/controllers/Options.php:62 admin/controllers/Shortcode.php:49
217
+ #: admin/views/Options.php:575 admin/views/Shortcode.php:188
218
  msgid "Compact"
219
  msgstr ""
220
 
221
  #: admin/controllers/Options.php:64 admin/controllers/Shortcode.php:51
222
+ #: admin/views/Options.php:599 admin/views/Shortcode.php:209
223
  msgid "Extended"
224
  msgstr ""
225
 
226
+ #: admin/controllers/Options.php:129
227
  msgid "Default values restored. Changes must be saved."
228
  msgstr ""
229
 
230
+ #: admin/controllers/Options.php:161
231
  msgid "Uploads directory doesn't exist. Old value is restored."
232
  msgstr ""
233
 
234
+ #: admin/controllers/Options.php:164
235
  msgid ""
236
  "Warning: \"photo-gallery\" folder already exists in uploads directory. Old "
237
  "value is restored."
238
  msgstr ""
239
 
240
+ #: admin/controllers/Options.php:194
241
  msgid "All thumbnails are successfully recreated."
242
  msgstr ""
243
 
244
+ #: admin/controllers/Options.php:207
245
  msgid "Item Succesfully Saved."
246
  msgstr ""
247
 
248
+ #: admin/controllers/Options.php:247 framework/WDWLibrary.php:236
249
  msgid ""
250
  "http:// wrapper is disabled in the server configuration by allow_url_fopen=0."
251
  msgstr ""
252
 
253
+ #: admin/controllers/Options.php:253 framework/WDWLibrary.php:231
254
  msgid "Watermark could not be set. The image URL is incorrect."
255
  msgstr ""
256
 
257
+ #: admin/controllers/Options.php:257
258
  msgid "All images are successfully watermarked."
259
  msgstr ""
260
 
261
+ #: admin/controllers/Ratings.php:86 photo-gallery.php:499
262
  msgid "Ratings"
263
  msgstr ""
264
 
265
+ #: admin/controllers/Themes.php:88 photo-gallery.php:492
 
 
 
 
266
  msgid "Themes"
267
  msgstr ""
268
 
269
+ #: admin/controllers/Themes.php:266 admin/views/Options.php:2873
270
+ #: admin/views/Options.php:3408 admin/views/Widget.php:137
271
  msgid "Thumbnail"
272
  msgstr ""
273
 
274
+ #: admin/controllers/Themes.php:270
275
  msgid "Image browser"
276
  msgstr ""
277
 
278
+ #: admin/controllers/Themes.php:271
279
  msgid "Compact album"
280
  msgstr ""
281
 
282
+ #: admin/controllers/Themes.php:272
283
  msgid "Masonry album"
284
  msgstr ""
285
 
286
+ #: admin/controllers/Themes.php:273
287
  msgid "Extended album"
288
  msgstr ""
289
 
290
+ #: admin/controllers/Themes.php:274
291
  msgid "Blog style"
292
  msgstr ""
293
 
294
+ #: admin/controllers/Themes.php:275 admin/views/Options.php:101
295
+ #: admin/views/WidgetTags.php:96 photo-gallery.php:1569 photo-gallery.php:1639
296
  msgid "Lightbox"
297
  msgstr ""
298
 
299
+ #: admin/controllers/Themes.php:276
300
  msgid "Navigation"
301
  msgstr ""
302
 
303
+ #: admin/controllers/Themes.php:281 admin/controllers/Themes.php:320
304
+ #: admin/controllers/Themes.php:327 admin/controllers/WidgetSlideshow.php:44
305
+ #: admin/views/Options.php:855 admin/views/Options.php:1008
306
+ #: admin/views/Options.php:1238 admin/views/Options.php:1286
307
+ #: admin/views/Options.php:1512 admin/views/Options.php:1746
308
+ #: admin/views/Options.php:2334 admin/views/Shortcode.php:381
309
  msgid "None"
310
  msgstr ""
311
 
312
+ #: admin/controllers/Themes.php:282
313
  msgid "Solid"
314
  msgstr ""
315
 
316
+ #: admin/controllers/Themes.php:283
317
  msgid "Dotted"
318
  msgstr ""
319
 
320
+ #: admin/controllers/Themes.php:284
321
  msgid "Dashed"
322
  msgstr ""
323
 
324
+ #: admin/controllers/Themes.php:285 admin/controllers/Themes.php:337
325
  msgid "Double"
326
  msgstr ""
327
 
328
+ #: admin/controllers/Themes.php:286
329
  msgid "Groove"
330
  msgstr ""
331
 
332
+ #: admin/controllers/Themes.php:287
333
  msgid "Ridge"
334
  msgstr ""
335
 
336
+ #: admin/controllers/Themes.php:288
337
  msgid "Inset"
338
  msgstr ""
339
 
340
+ #: admin/controllers/Themes.php:289
341
  msgid "Outset"
342
  msgstr ""
343
 
344
+ #: admin/controllers/Themes.php:307 admin/views/Themes.php:1351
345
+ #: admin/views/Themes.php:3695 admin/views/Themes.php:4123
346
  msgid "Left"
347
  msgstr ""
348
 
349
+ #: admin/controllers/Themes.php:308
350
  msgid "Center"
351
  msgstr ""
352
 
353
+ #: admin/controllers/Themes.php:309 admin/views/Themes.php:1349
354
+ #: admin/views/Themes.php:3693 admin/views/Themes.php:4125
355
  msgid "Right"
356
  msgstr ""
357
 
358
+ #: admin/controllers/Themes.php:313
359
  msgid "Lighter"
360
  msgstr ""
361
 
362
+ #: admin/controllers/Themes.php:314
363
  msgid "Normal"
364
  msgstr ""
365
 
366
+ #: admin/controllers/Themes.php:315
367
  msgid "Bold"
368
  msgstr ""
369
 
370
+ #: admin/controllers/Themes.php:321 admin/controllers/Themes.php:328
371
  msgid "Rotate"
372
  msgstr ""
373
 
374
+ #: admin/controllers/Themes.php:322 admin/controllers/Themes.php:329
375
  msgid "Scale"
376
  msgstr ""
377
 
378
+ #: admin/controllers/Themes.php:323 admin/controllers/Themes.php:331
379
  msgid "Skew"
380
  msgstr ""
381
 
382
+ #: admin/controllers/Themes.php:330
383
  msgid "Zoom"
384
  msgstr ""
385
 
386
+ #: admin/controllers/Themes.php:335
387
  msgid "Angle"
388
  msgstr ""
389
 
390
+ #: admin/controllers/Themes.php:336
391
  msgid "Chevron"
392
  msgstr ""
393
 
394
+ #: admin/controllers/Themes.php:341
395
  msgid "Star"
396
  msgstr ""
397
 
398
+ #: admin/controllers/Themes.php:342
399
  msgid "Bell"
400
  msgstr ""
401
 
402
+ #: admin/controllers/Themes.php:343
403
  msgid "Circle"
404
  msgstr ""
405
 
406
+ #: admin/controllers/Themes.php:344
407
  msgid "Flag"
408
  msgstr ""
409
 
410
+ #: admin/controllers/Themes.php:345
411
  msgid "Heart"
412
  msgstr ""
413
 
414
+ #: admin/controllers/Themes.php:346
415
  msgid "Square"
416
  msgstr ""
417
 
418
  #: admin/controllers/Uninstall.php:59 admin/controllers/Uninstall.php:100
419
+ #: admin/views/Options.php:399
420
  #, php-format
421
  msgid "Uninstall %s"
422
  msgstr ""
429
  msgid "Add Photo Gallery slideshow to Your widget area."
430
  msgstr ""
431
 
432
+ #: admin/controllers/WidgetSlideshow.php:45 admin/views/Options.php:1239
433
  msgid "Cube Horizontal"
434
  msgstr ""
435
 
436
+ #: admin/controllers/WidgetSlideshow.php:46 admin/views/Options.php:1240
437
  msgid "Cube Vertical"
438
  msgstr ""
439
 
440
+ #: admin/controllers/WidgetSlideshow.php:47 admin/views/Options.php:1241
441
  msgid "Fade"
442
  msgstr ""
443
 
444
+ #: admin/controllers/WidgetSlideshow.php:48 admin/views/Options.php:1242
445
  msgid "Slice Horizontal"
446
  msgstr ""
447
 
448
+ #: admin/controllers/WidgetSlideshow.php:49 admin/views/Options.php:1243
449
  msgid "Slice Vertical"
450
  msgstr ""
451
 
452
+ #: admin/controllers/WidgetSlideshow.php:50 admin/views/Options.php:1244
453
  msgid "Slide Horizontal"
454
  msgstr ""
455
 
456
+ #: admin/controllers/WidgetSlideshow.php:51 admin/views/Options.php:1245
457
  msgid "Slide Vertical"
458
  msgstr ""
459
 
460
+ #: admin/controllers/WidgetSlideshow.php:52 admin/views/Options.php:1246
461
  msgid "Scale Out"
462
  msgstr ""
463
 
464
+ #: admin/controllers/WidgetSlideshow.php:53 admin/views/Options.php:1247
465
  msgid "Scale In"
466
  msgstr ""
467
 
468
+ #: admin/controllers/WidgetSlideshow.php:54 admin/views/Options.php:1248
469
  msgid "Block Scale"
470
  msgstr ""
471
 
472
+ #: admin/controllers/WidgetSlideshow.php:55 admin/views/Options.php:1249
473
  msgid "Kaleidoscope"
474
  msgstr ""
475
 
476
+ #: admin/controllers/WidgetSlideshow.php:56 admin/views/Options.php:1250
477
  msgid "Fan"
478
  msgstr ""
479
 
480
+ #: admin/controllers/WidgetSlideshow.php:57 admin/views/Options.php:1251
481
  msgid "Blind Horizontal"
482
  msgstr ""
483
 
484
+ #: admin/controllers/WidgetSlideshow.php:58 admin/views/Options.php:1252
485
  msgid "Blind Vertical"
486
  msgstr ""
487
 
488
+ #: admin/controllers/WidgetSlideshow.php:59 admin/views/Options.php:1253
489
+ #: admin/views/Options.php:1327 admin/views/Options.php:1553
490
+ #: admin/views/Options.php:1787 admin/views/Options.php:1982
491
+ #: admin/views/Options.php:2220 admin/views/Options.php:2377
492
+ #: admin/views/Options.php:2552 admin/views/Options.php:2758
493
+ #: admin/views/Options.php:2778 admin/views/Options.php:3056
494
+ #: admin/views/Options.php:3076 admin/views/Options.php:3294
495
+ #: admin/views/Options.php:3314 admin/views/Widget.php:158
496
+ #: frontend/views/view.php:456
497
  msgid "Random"
498
  msgstr "Rasgele"
499
 
501
  msgid "Add Photo Gallery Tags dynamic cloud to Your widget area."
502
  msgstr ""
503
 
504
+ #: admin/models/Comments.php:73 admin/models/Ratings.php:104
505
+ #: framework/WDWLibrary.php:3022
 
 
 
 
 
 
 
 
 
 
 
506
  msgid "All galleries"
507
  msgstr ""
508
 
509
+ #: admin/models/Comments.php:92 admin/models/Ratings.php:133
510
+ #: admin/views/Widget.php:125 framework/WDWLibrary.php:3003
511
  msgid "All images"
512
  msgstr ""
513
 
514
+ #: admin/models/Galleries.php:1471 admin/views/Galleries.php:780
515
  msgid ""
516
  "Selected pricelist item longest dimension greater than some original images "
517
  "dimensions."
518
  msgstr ""
519
 
520
+ #: admin/views/AddTags.php:67 admin/views/Albums.php:59
521
+ #: admin/views/Comments.php:65 admin/views/Themes.php:196
522
+ #: photo-gallery.php:1454
523
  msgid "Select all"
524
  msgstr ""
525
 
526
+ #: admin/views/AddTags.php:70 admin/views/AddTags.php:88
527
  #: admin/views/Comments.php:69 admin/views/Comments.php:90
528
+ #: filemanager/view.php:138 frontend/views/BWGViewGalleryBox.php:996
529
+ #: frontend/views/BWGViewGalleryBox.php:1117
530
+ #: frontend/views/BWGViewGalleryBox.php:1231
531
  msgid "Name"
532
  msgstr "Ad"
533
 
534
+ #: admin/views/AddTags.php:109
535
  msgid "Remove from image"
536
  msgstr "Sıfırlayın"
537
 
538
+ #: admin/views/AddTags.php:110
539
  msgid "Add to image"
540
  msgstr ""
541
 
542
+ #: admin/views/AdminView.php:77
543
+ msgid "Add new"
544
  msgstr ""
545
 
546
+ #: admin/views/AdminView.php:218 framework/WDWLibrary.php:372
547
+ #: framework/WDWLibrary.php:548 photo-gallery.php:1430
548
  msgid "Search"
549
  msgstr "Ara"
550
 
551
+ #: admin/views/AdminView.php:279
552
  msgid "First page"
553
  msgstr "İlk"
554
 
555
+ #: admin/views/AdminView.php:280
556
  msgid "Previous page"
557
  msgstr "Önceki"
558
 
559
+ #: admin/views/AdminView.php:285
560
  msgid "Current Page"
561
  msgstr ""
562
 
563
+ #: admin/views/AdminView.php:288 framework/WDWLibrary.php:502
564
+ #: framework/WDWLibrary.php:649 frontend/views/view.php:700
565
  msgid "of"
566
  msgstr "arasında"
567
 
568
+ #: admin/views/AdminView.php:301
569
  msgid "Next page"
570
  msgstr "Sonraki"
571
 
572
+ #: admin/views/AdminView.php:302
573
  msgid "Last page"
574
  msgstr "Son"
575
 
576
+ #: admin/views/AdminView.php:311 framework/WDWLibrary.php:473
577
+ #: framework/WDWLibrary.php:620
578
+ #, php-format
579
+ msgid "%s item"
580
+ msgid_plural "%s items"
581
+ msgstr[0] "%s madde"
582
+ msgstr[1] "% s öğe"
583
+
584
+ #: admin/views/AdminView.php:337 filemanager/view.php:208
585
  msgid "Select All"
586
  msgstr ""
587
 
588
+ #: admin/views/AdminView.php:341
589
  msgid "Select bulk action"
590
  msgstr ""
591
 
592
+ #: admin/views/AdminView.php:343
593
  msgid "Bulk Actions"
594
  msgstr ""
595
 
596
+ #: admin/views/AdminView.php:348 admin/views/Galleries.php:414
597
+ #: admin/views/Galleries.php:746 admin/views/Galleries.php:747
598
+ #: admin/views/Galleries.php:748 admin/views/Options.php:186
599
+ #: admin/views/Options.php:1135 admin/views/Options.php:1138
600
  #: filemanager/view.php:66
601
  msgid "This option is disabled in demo."
602
  msgstr ""
603
 
604
+ #: admin/views/AdminView.php:348
605
  msgid "Apply"
606
  msgstr ""
607
 
608
+ #: admin/views/Albums.php:44
609
+ msgid "Add new group"
610
+ msgstr ""
611
+
612
+ #: admin/views/Albums.php:62 admin/views/Albums.php:99
613
+ #: admin/views/Albumsgalleries.php:79 admin/views/Albumsgalleries.php:103
614
+ #: admin/views/Galleries.php:61 admin/views/Galleries.php:64
615
+ #: admin/views/Galleries.php:107 admin/views/Options.php:1323
616
+ #: admin/views/Options.php:1549 admin/views/Options.php:1783
617
+ #: admin/views/Options.php:1978 admin/views/Options.php:2216
618
+ #: admin/views/Options.php:2373 admin/views/Options.php:2548
619
+ #: admin/views/Options.php:2757 admin/views/Options.php:2774
620
+ #: admin/views/Options.php:3055 admin/views/Options.php:3072
621
+ #: admin/views/Options.php:3293 admin/views/Options.php:3310
622
+ #: admin/views/Themes.php:199 admin/views/Themes.php:218
623
+ #: frontend/views/view.php:444
624
  msgid "Title"
625
  msgstr ""
626
 
627
+ #: admin/views/Albums.php:63 admin/views/Albums.php:122
628
+ #: admin/views/Albums.php:249 admin/views/Galleries.php:66
629
+ #: admin/views/Galleries.php:131 admin/views/Galleries.php:292
630
  msgid "Author"
631
  msgstr ""
632
 
633
+ #: admin/views/Albums.php:108 admin/views/Albums.php:341
634
+ #: admin/views/Albumsgalleries.php:112 admin/views/Comments.php:102
635
+ #: admin/views/Galleries.php:116 admin/views/Galleries.php:739
636
  msgid "Unpublished"
637
  msgstr ""
638
 
639
+ #: admin/views/Albums.php:112 admin/views/Editimage.php:326
640
+ #: admin/views/Galleries.php:120 admin/views/Galleries.php:746
641
+ #: admin/views/Themes.php:223
642
  msgid "Edit"
643
  msgstr ""
644
 
645
+ #: admin/views/Albums.php:115 admin/views/Comments.php:112
646
+ #: admin/views/Galleries.php:122 admin/views/Galleries.php:752
647
+ #: admin/views/Ratings.php:84 admin/views/Themes.php:225
648
  msgid "Do you want to delete selected item?"
649
  msgstr ""
650
 
651
+ #: admin/views/Albums.php:116 admin/views/Albums.php:190
652
+ #: admin/views/Galleries.php:124 admin/views/Galleries.php:223
653
  msgid "Preview"
654
  msgstr "Önceki"
655
 
656
+ #: admin/views/Albums.php:119 admin/views/Albumsgalleries.php:116
657
+ #: admin/views/Comments.php:115 admin/views/Galleries.php:127
658
+ #: admin/views/Galleries.php:762 admin/views/Ratings.php:87
659
+ #: admin/views/Themes.php:228
660
  msgid "Show more details"
661
  msgstr "Yorumları göster"
662
 
663
+ #: admin/views/Albums.php:177
664
  msgid "Gallery Group Title"
665
  msgstr ""
666
 
667
+ #: admin/views/Albums.php:187 admin/views/Galleries.php:219
668
+ #: admin/views/Shortcode.php:659 admin/views/Shortcode.php:2232
669
+ #: admin/views/Themes.php:342
670
  msgid "Update"
671
  msgstr ""
672
 
673
+ #: admin/views/Albums.php:205 admin/views/Albums.php:241
674
+ #: admin/views/Galleries.php:240 admin/views/Galleries.php:281
675
+ #: admin/views/Options.php:673 admin/views/Options.php:741
676
+ #: admin/views/Options.php:842 admin/views/Shortcode.php:342
677
+ #: admin/views/Shortcode.php:357
678
  msgid "Toggle panel:"
679
  msgstr ""
680
 
681
+ #: admin/views/Albums.php:209 admin/views/Galleries.php:244
682
  msgid "Basic"
683
  msgstr ""
684
 
685
+ #: admin/views/Albums.php:214 admin/views/Galleries.php:249
686
  msgid "Preview image"
687
  msgstr ""
688
 
689
+ #: admin/views/Albums.php:216 admin/views/Galleries.php:253
690
  msgid "Add Preview Image"
691
  msgstr ""
692
 
693
+ #: admin/views/Albums.php:217 admin/views/Albums.php:304
694
+ #: admin/views/Galleries.php:256 filemanager/view.php:216
 
695
  msgid "Add"
696
  msgstr ""
697
 
698
+ #: admin/views/Albums.php:222
699
  msgid ""
700
  "Add a preview image, which will be displayed as the cover image of the "
701
  "gallery group when it is published in a parent gallery group."
702
  msgstr ""
703
 
704
+ #: admin/views/Albums.php:226 admin/views/Galleries.php:266
705
  msgid "Published"
706
  msgstr ""
707
 
708
+ #: admin/views/Albums.php:228 admin/views/Galleries.php:268
709
+ #: admin/views/Options.php:163 admin/views/Options.php:204
 
710
  #: admin/views/Options.php:214 admin/views/Options.php:224
711
+ #: admin/views/Options.php:243 admin/views/Options.php:253
712
+ #: admin/views/Options.php:263 admin/views/Options.php:273
713
+ #: admin/views/Options.php:283 admin/views/Options.php:295
714
+ #: admin/views/Options.php:306 admin/views/Options.php:316
715
+ #: admin/views/Options.php:326 admin/views/Options.php:336
716
+ #: admin/views/Options.php:345 admin/views/Options.php:355
717
+ #: admin/views/Options.php:365 admin/views/Options.php:383
718
+ #: admin/views/Options.php:389 admin/views/Options.php:773
719
+ #: admin/views/Options.php:784 admin/views/Options.php:795
720
+ #: admin/views/Options.php:806 admin/views/Options.php:817
721
+ #: admin/views/Options.php:828 admin/views/Options.php:1343
722
+ #: admin/views/Options.php:1369 admin/views/Options.php:1379
723
+ #: admin/views/Options.php:1391 admin/views/Options.php:1401
724
+ #: admin/views/Options.php:1422 admin/views/Options.php:1432
725
+ #: admin/views/Options.php:1442 admin/views/Options.php:1569
726
+ #: admin/views/Options.php:1595 admin/views/Options.php:1605
727
+ #: admin/views/Options.php:1617 admin/views/Options.php:1627
728
+ #: admin/views/Options.php:1648 admin/views/Options.php:1659
729
+ #: admin/views/Options.php:1669 admin/views/Options.php:1716
730
+ #: admin/views/Options.php:1803 admin/views/Options.php:1829
731
+ #: admin/views/Options.php:1839 admin/views/Options.php:1851
732
+ #: admin/views/Options.php:1861 admin/views/Options.php:1881
733
+ #: admin/views/Options.php:1891 admin/views/Options.php:1998
734
+ #: admin/views/Options.php:2008 admin/views/Options.php:2018
735
+ #: admin/views/Options.php:2040 admin/views/Options.php:2061
736
+ #: admin/views/Options.php:2098 admin/views/Options.php:2108
737
+ #: admin/views/Options.php:2145 admin/views/Options.php:2164
738
+ #: admin/views/Options.php:2193 admin/views/Options.php:2202
739
+ #: admin/views/Options.php:2236 admin/views/Options.php:2262
740
+ #: admin/views/Options.php:2272 admin/views/Options.php:2284
741
+ #: admin/views/Options.php:2294 admin/views/Options.php:2304
742
+ #: admin/views/Options.php:2393 admin/views/Options.php:2419
743
+ #: admin/views/Options.php:2429 admin/views/Options.php:2441
744
+ #: admin/views/Options.php:2451 admin/views/Options.php:2461
745
+ #: admin/views/Options.php:2472 admin/views/Options.php:2483
746
+ #: admin/views/Options.php:2568 admin/views/Options.php:2589
747
+ #: admin/views/Options.php:2600 admin/views/Options.php:2613
748
+ #: admin/views/Options.php:2624 admin/views/Options.php:2634
749
+ #: admin/views/Options.php:2645 admin/views/Options.php:2656
750
+ #: admin/views/Options.php:2794 admin/views/Options.php:2820
751
+ #: admin/views/Options.php:2830 admin/views/Options.php:2842
752
+ #: admin/views/Options.php:2852 admin/views/Options.php:2900
753
+ #: admin/views/Options.php:2935 admin/views/Options.php:2945
754
+ #: admin/views/Options.php:3092 admin/views/Options.php:3118
755
+ #: admin/views/Options.php:3128 admin/views/Options.php:3140
756
+ #: admin/views/Options.php:3150 admin/views/Options.php:3171
757
+ #: admin/views/Options.php:3330 admin/views/Options.php:3356
758
+ #: admin/views/Options.php:3366 admin/views/Options.php:3378
759
+ #: admin/views/Options.php:3388 admin/views/Options.php:3398
760
+ #: admin/views/Options.php:3435 admin/views/Options.php:3470
761
+ #: admin/views/Options.php:3480 admin/views/Options.php:3534
762
+ #: admin/views/Options.php:3545 admin/views/Options.php:3594
763
+ #: admin/views/Options.php:3613 admin/views/Options.php:3649
764
+ #: admin/views/Options.php:3672 admin/views/Options.php:3684
765
+ #: admin/views/Options.php:3697 admin/views/Options.php:3708
766
+ #: admin/views/Options.php:3720 admin/views/Options.php:3731
767
+ #: admin/views/Options.php:3741 admin/views/Options.php:3751
768
+ #: admin/views/Options.php:3771 admin/views/Options.php:3782
769
+ #: admin/views/Options.php:3795 admin/views/Options.php:3805
770
+ #: admin/views/Options.php:3815 admin/views/Options.php:3825
771
+ #: admin/views/Options.php:3835 admin/views/Options.php:3856
772
+ #: admin/views/Options.php:3867 admin/views/Options.php:3878
773
+ #: admin/views/Options.php:3889 admin/views/Options.php:3903
774
+ #: admin/views/Themes.php:382 admin/views/Themes.php:459
775
+ #: admin/views/Themes.php:692 admin/views/Themes.php:756
776
+ #: admin/views/Themes.php:967 admin/views/Themes.php:1031
777
+ #: admin/views/Themes.php:1921 admin/views/Themes.php:1999
778
+ #: admin/views/Themes.php:2295 admin/views/Themes.php:2812
779
+ #: admin/views/Themes.php:2876 admin/views/Themes.php:4404
780
+ #: admin/views/Themes.php:4453 admin/views/Uninstall.php:77
781
  #: admin/views/WidgetSlideshow.php:114 admin/views/WidgetSlideshow.php:120
782
  #: admin/views/WidgetSlideshow.php:126 admin/views/WidgetTags.php:89
783
  #: admin/views/WidgetTags.php:111
784
  msgid "Yes"
785
  msgstr ""
786
 
787
+ #: admin/views/Albums.php:230 admin/views/Galleries.php:270
788
+ #: admin/views/Options.php:164 admin/views/Options.php:205
 
789
  #: admin/views/Options.php:215 admin/views/Options.php:225
790
+ #: admin/views/Options.php:244 admin/views/Options.php:254
791
+ #: admin/views/Options.php:264 admin/views/Options.php:274
792
+ #: admin/views/Options.php:284 admin/views/Options.php:296
793
+ #: admin/views/Options.php:307 admin/views/Options.php:317
794
+ #: admin/views/Options.php:327 admin/views/Options.php:337
795
+ #: admin/views/Options.php:346 admin/views/Options.php:356
796
+ #: admin/views/Options.php:366 admin/views/Options.php:384
797
+ #: admin/views/Options.php:390 admin/views/Options.php:774
798
+ #: admin/views/Options.php:785 admin/views/Options.php:796
799
+ #: admin/views/Options.php:807 admin/views/Options.php:818
800
+ #: admin/views/Options.php:829 admin/views/Options.php:1344
801
+ #: admin/views/Options.php:1370 admin/views/Options.php:1380
802
+ #: admin/views/Options.php:1392 admin/views/Options.php:1402
803
+ #: admin/views/Options.php:1423 admin/views/Options.php:1433
804
+ #: admin/views/Options.php:1443 admin/views/Options.php:1570
805
+ #: admin/views/Options.php:1596 admin/views/Options.php:1606
806
+ #: admin/views/Options.php:1618 admin/views/Options.php:1628
807
+ #: admin/views/Options.php:1649 admin/views/Options.php:1660
808
+ #: admin/views/Options.php:1670 admin/views/Options.php:1717
809
+ #: admin/views/Options.php:1804 admin/views/Options.php:1830
810
+ #: admin/views/Options.php:1840 admin/views/Options.php:1852
811
+ #: admin/views/Options.php:1862 admin/views/Options.php:1882
812
+ #: admin/views/Options.php:1892 admin/views/Options.php:1999
813
+ #: admin/views/Options.php:2009 admin/views/Options.php:2019
814
+ #: admin/views/Options.php:2041 admin/views/Options.php:2062
815
+ #: admin/views/Options.php:2099 admin/views/Options.php:2109
816
+ #: admin/views/Options.php:2146 admin/views/Options.php:2165
817
+ #: admin/views/Options.php:2194 admin/views/Options.php:2203
818
+ #: admin/views/Options.php:2237 admin/views/Options.php:2263
819
+ #: admin/views/Options.php:2273 admin/views/Options.php:2285
820
+ #: admin/views/Options.php:2295 admin/views/Options.php:2305
821
+ #: admin/views/Options.php:2394 admin/views/Options.php:2420
822
+ #: admin/views/Options.php:2430 admin/views/Options.php:2442
823
+ #: admin/views/Options.php:2452 admin/views/Options.php:2462
824
+ #: admin/views/Options.php:2473 admin/views/Options.php:2484
825
+ #: admin/views/Options.php:2569 admin/views/Options.php:2590
826
+ #: admin/views/Options.php:2601 admin/views/Options.php:2614
827
+ #: admin/views/Options.php:2625 admin/views/Options.php:2635
828
+ #: admin/views/Options.php:2646 admin/views/Options.php:2657
829
+ #: admin/views/Options.php:2720 admin/views/Options.php:2795
830
+ #: admin/views/Options.php:2821 admin/views/Options.php:2831
831
+ #: admin/views/Options.php:2843 admin/views/Options.php:2853
832
+ #: admin/views/Options.php:2901 admin/views/Options.php:2936
833
+ #: admin/views/Options.php:2946 admin/views/Options.php:3018
834
+ #: admin/views/Options.php:3093 admin/views/Options.php:3119
835
+ #: admin/views/Options.php:3129 admin/views/Options.php:3141
836
+ #: admin/views/Options.php:3151 admin/views/Options.php:3172
837
+ #: admin/views/Options.php:3256 admin/views/Options.php:3331
838
+ #: admin/views/Options.php:3357 admin/views/Options.php:3367
839
+ #: admin/views/Options.php:3379 admin/views/Options.php:3389
840
+ #: admin/views/Options.php:3399 admin/views/Options.php:3436
841
+ #: admin/views/Options.php:3471 admin/views/Options.php:3481
842
+ #: admin/views/Options.php:3535 admin/views/Options.php:3546
843
+ #: admin/views/Options.php:3595 admin/views/Options.php:3614
844
+ #: admin/views/Options.php:3663 admin/views/Options.php:3673
845
+ #: admin/views/Options.php:3687 admin/views/Options.php:3698
846
+ #: admin/views/Options.php:3709 admin/views/Options.php:3721
847
+ #: admin/views/Options.php:3732 admin/views/Options.php:3742
848
+ #: admin/views/Options.php:3752 admin/views/Options.php:3772
849
+ #: admin/views/Options.php:3783 admin/views/Options.php:3796
850
+ #: admin/views/Options.php:3806 admin/views/Options.php:3816
851
+ #: admin/views/Options.php:3826 admin/views/Options.php:3836
852
+ #: admin/views/Options.php:3857 admin/views/Options.php:3868
853
+ #: admin/views/Options.php:3879 admin/views/Options.php:3890
854
+ #: admin/views/Options.php:3904 admin/views/Themes.php:384
855
+ #: admin/views/Themes.php:461 admin/views/Themes.php:694
856
+ #: admin/views/Themes.php:758 admin/views/Themes.php:969
857
+ #: admin/views/Themes.php:1033 admin/views/Themes.php:1923
858
+ #: admin/views/Themes.php:2001 admin/views/Themes.php:2297
859
+ #: admin/views/Themes.php:2814 admin/views/Themes.php:2878
860
+ #: admin/views/Themes.php:4406 admin/views/Themes.php:4455
861
  #: admin/views/WidgetSlideshow.php:115 admin/views/WidgetSlideshow.php:121
862
  #: admin/views/WidgetSlideshow.php:127 admin/views/WidgetTags.php:90
863
  #: admin/views/WidgetTags.php:112
864
  msgid "No"
865
  msgstr ""
866
 
867
+ #: admin/views/Albums.php:245 admin/views/Galleries.php:285
868
+ #: admin/views/Options.php:113 admin/views/Shortcode.php:375
869
  msgid "Advanced"
870
  msgstr ""
871
 
872
+ #: admin/views/Albums.php:253 admin/views/Galleries.php:296
873
  msgid "Slug"
874
  msgstr ""
875
 
876
+ #: admin/views/Albums.php:258 admin/views/Galleries.php:301
877
+ #: admin/views/Galleries.php:772 frontend/views/BWGViewGalleryBox.php:1132
878
  msgid "Description"
879
  msgstr ""
880
 
881
+ #: admin/views/Albums.php:285
882
  msgid "Galleries and Gallery Groups"
883
  msgstr ""
884
 
885
+ #: admin/views/Albums.php:332 admin/views/Galleries.php:100
886
+ #: admin/views/Galleries.php:711
887
  msgid "Drag to re-order"
888
  msgstr ""
889
 
890
+ #: admin/views/Albums.php:340
891
  msgid "Remove"
892
  msgstr ""
893
 
894
+ #: admin/views/Albumsgalleries.php:80 admin/views/Albumsgalleries.php:119
895
+ #: admin/views/Galleries.php:733
 
 
 
 
 
896
  msgid "Type"
897
  msgstr ""
898
 
899
+ #: admin/views/Albumsgalleries.php:120 admin/views/Shortcode.php:65
900
+ #: admin/views/Shortcode.php:346
901
  msgid "Gallery group"
902
  msgstr "Galeri boş"
903
 
904
+ #: admin/views/Albumsgalleries.php:120 admin/views/Shortcode.php:62
905
+ #: admin/views/Shortcode.php:268 admin/views/Shortcode.php:346
906
+ #: admin/views/Widget.php:119
907
+ msgid "Gallery"
908
+ msgstr ""
909
+
910
+ #: admin/views/Albumsgalleries.php:138
911
  msgid "Add to Gallery Group"
912
  msgstr ""
913
 
914
  #: admin/views/Comments.php:70 admin/views/Comments.php:118
915
+ #: frontend/views/BWGViewGalleryBox.php:1002
916
  msgid "Email"
917
  msgstr "E-posta"
918
 
919
  #: admin/views/Comments.php:71 admin/views/Comments.php:121
920
+ #: frontend/views/BWGViewGalleryBox.php:1007
921
  msgid "Comment"
922
  msgstr "Yorum"
923
 
924
  #: admin/views/Comments.php:72 admin/views/Comments.php:124
925
+ #: admin/views/Galleries.php:730 admin/views/Options.php:1324
926
+ #: admin/views/Options.php:1550 admin/views/Options.php:1784
927
+ #: admin/views/Options.php:1979 admin/views/Options.php:2217
928
+ #: admin/views/Options.php:2374 admin/views/Options.php:2549
929
+ #: admin/views/Options.php:2775 admin/views/Options.php:3073
930
+ #: admin/views/Options.php:3311 admin/views/Ratings.php:60
931
+ #: admin/views/Ratings.php:92 frontend/views/view.php:447
932
  msgid "Date"
933
  msgstr ""
934
 
948
  msgid "Crop"
949
  msgstr ""
950
 
951
+ #: admin/views/Editimage.php:322
952
  msgid "The thumbnail was successfully cropped."
953
  msgstr ""
954
 
955
+ #: admin/views/Editimage.php:810
956
  msgid "Grayscale"
957
  msgstr ""
958
 
959
+ #: admin/views/Editimage.php:814
960
  msgid "Negative"
961
  msgstr ""
962
 
963
+ #: admin/views/Editimage.php:818
964
  msgid "Removal"
965
  msgstr ""
966
 
967
+ #: admin/views/Editimage.php:822
968
  msgid "Sepia"
969
  msgstr ""
970
 
971
+ #: admin/views/Editimage.php:826
972
  msgid "Slate"
973
  msgstr ""
974
 
975
+ #: admin/views/Editimage.php:830
976
  msgid "Saturate"
977
  msgstr ""
978
 
979
+ #: admin/views/Editimage.php:834 admin/views/Galleries.php:748
980
  msgid "Do you want to reset the image?"
981
  msgstr ""
982
 
983
+ #: admin/views/Editimage.php:836
984
  msgid "Reset image"
985
  msgstr "Sıfırlayın"
986
 
987
+ #: admin/views/Editimage.php:862
988
  msgid "Brightness"
989
  msgstr ""
990
 
991
+ #: admin/views/Editimage.php:864 admin/views/Editimage.php:889
992
  msgid "Press for result"
993
  msgstr ""
994
 
995
+ #: admin/views/Editimage.php:887
996
  msgid "Contrast"
997
  msgstr ""
998
 
999
+ #: admin/views/Galleries.php:46
1000
+ msgid "Add new gallery"
1001
+ msgstr "Galeri boş"
1002
 
1003
+ #: admin/views/Galleries.php:65 admin/views/Galleries.php:130
1004
  msgid "Images count"
1005
  msgstr ""
1006
 
1007
+ #: admin/views/Galleries.php:205
1008
  msgid "Gallery title"
1009
  msgstr "Galeri boş"
1010
 
1011
+ #: admin/views/Galleries.php:263
1012
  msgid ""
1013
  "Add a preview image, which will be displayed as the cover image of the "
1014
  "gallery when it is published in a gallery group."
1015
  msgstr ""
1016
 
1017
+ #: admin/views/Galleries.php:327
1018
  msgid "Gallery content type"
1019
  msgstr ""
1020
 
1021
+ #: admin/views/Galleries.php:341
1022
  msgid ""
1023
  "Select the type of gallery content. Mixed galleries can include all "
1024
  "supported items. Alternatively, you can showcase images from one specific "
1025
  "source only."
1026
  msgstr ""
1027
 
1028
+ #: admin/views/Galleries.php:343
1029
  msgid ""
1030
  "Gallery type cannot be changed, as it is not empty. If you would like to "
1031
  "show images from another source, please create a new gallery."
1032
  msgstr ""
1033
 
1034
+ #: admin/views/Galleries.php:349
1035
  msgid "Number of Instagram recent posts to add to gallery"
1036
  msgstr ""
1037
 
1038
+ #: admin/views/Galleries.php:353
1039
  msgid "Instagram embed type"
1040
  msgstr ""
1041
 
1042
+ #: admin/views/Galleries.php:355 admin/views/Galleries.php:512
1043
  msgid "Content"
1044
  msgstr ""
1045
 
1046
+ #: admin/views/Galleries.php:357 admin/views/Galleries.php:514
1047
  msgid "Whole post"
1048
  msgstr ""
1049
 
1050
+ #: admin/views/Galleries.php:360
1051
  msgid "Gallery autoupdate option"
1052
  msgstr "Otomatik güncelleme aralığını eklentisi Fotoğraf galerisi"
1053
 
1054
+ #: admin/views/Galleries.php:362
1055
  msgid "No update"
1056
  msgstr ""
1057
 
1058
+ #: admin/views/Galleries.php:364
1059
  msgid "Add new media, keep old ones published."
1060
  msgstr ""
1061
 
1062
+ #: admin/views/Galleries.php:366
1063
  msgid "Add new media, unpublish old ones."
1064
  msgstr ""
1065
 
1066
+ #: admin/views/Galleries.php:369
1067
  msgid "Add Instagram Gallery"
1068
  msgstr ""
1069
 
1070
+ #: admin/views/Galleries.php:378
1071
  msgid "Photo Gallery Facebook Integration"
1072
  msgstr ""
1073
 
1074
+ #: admin/views/Galleries.php:379
1075
  #, php-format
1076
  msgid "Please install %s add-on to use this feature."
1077
  msgstr ""
1078
 
1079
+ #: admin/views/Galleries.php:408 admin/views/Galleries.php:412
1080
  msgid "Add Images"
1081
  msgstr ""
1082
 
1083
+ #: admin/views/Galleries.php:414
1084
  msgid "Import from Media Library"
1085
  msgstr ""
1086
 
1087
+ #: admin/views/Galleries.php:421 admin/views/Galleries.php:423
1088
  msgid "Embed Media"
1089
  msgstr ""
1090
 
1091
+ #: admin/views/Galleries.php:424 admin/views/Galleries.php:426
1092
  msgid "Social Bulk Embed"
1093
  msgstr ""
1094
 
1095
+ #: admin/views/Galleries.php:426 photo-gallery.php:127
1096
+ msgid "This option is available in Premium version"
1097
  msgstr ""
1098
 
1099
+ #: admin/views/Galleries.php:429
1100
  msgid "Optimize Images"
1101
  msgstr ""
1102
 
1103
+ #: admin/views/Galleries.php:446
1104
  msgid "Enter YouTube, Vimeo, Instagram, Flickr or Dailymotion URL here."
1105
  msgstr ""
1106
 
1107
+ #: admin/views/Galleries.php:447 admin/views/Galleries.php:482
1108
  msgid "Add to gallery"
1109
  msgstr ""
1110
 
1111
+ #: admin/views/Galleries.php:448 admin/views/Galleries.php:481
1112
+ #: admin/views/Galleries.php:538 admin/views/Galleries.php:559
1113
+ #: admin/views/Galleries.php:578 admin/views/Galleries.php:598
1114
+ #: filemanager/view.php:221 filemanager/view.php:222 photo-gallery.php:1453
1115
  msgid "Cancel"
1116
  msgstr ""
1117
 
1118
+ #: admin/views/Galleries.php:453
1119
  msgid "<b>Youtube</b> URL example:"
1120
  msgstr ""
1121
 
1122
+ #: admin/views/Galleries.php:457
1123
  msgid "<b>Vimeo</b> URL example:"
1124
  msgstr ""
1125
 
1126
+ #: admin/views/Galleries.php:461
1127
  msgid "<b>Instagram</b> URL example:"
1128
  msgstr ""
1129
 
1130
+ #: admin/views/Galleries.php:470
 
 
 
 
 
 
 
 
 
 
1131
  msgid "<b>Flickr</b> URL example:"
1132
  msgstr ""
1133
 
1134
+ #: admin/views/Galleries.php:474
1135
  msgid "<b>Dailymotion</b> URL example:"
1136
  msgstr ""
1137
 
1138
+ #: admin/views/Galleries.php:493
1139
  msgid "username:"
1140
  msgstr ""
1141
 
1142
+ #: admin/views/Galleries.php:501
1143
  msgid "Number of Instagram recent posts to add to gallery:"
1144
  msgstr ""
1145
 
1146
+ #: admin/views/Galleries.php:509
1147
  msgid "embed type:"
1148
  msgstr ""
1149
 
1150
+ #: admin/views/Galleries.php:528
1151
  msgid "Resize images to: "
1152
  msgstr ""
1153
 
1154
+ #: admin/views/Galleries.php:531
1155
  msgid "The maximum size of resized image."
1156
  msgstr ""
1157
 
1158
+ #: admin/views/Galleries.php:537 framework/WDWLibrary.php:2579
1159
  msgid "Resize"
1160
  msgstr ""
1161
 
1162
+ #: admin/views/Galleries.php:548
1163
  msgid "Alt/Title: "
1164
  msgstr ""
1165
 
1166
+ #: admin/views/Galleries.php:551
1167
  msgid "Leave blank and click to \"Save changes\" to delete Alt/Titles."
1168
  msgstr ""
1169
 
1170
+ #: admin/views/Galleries.php:558 admin/views/Galleries.php:577
1171
+ #: admin/views/Galleries.php:597
1172
  msgid "Save changes"
1173
  msgstr ""
1174
 
1175
+ #: admin/views/Galleries.php:567
1176
  msgid "Redirect URL: "
1177
  msgstr ""
1178
 
1179
+ #: admin/views/Galleries.php:570
1180
  msgid "Leave blank and click to \"Save changes\" to delete Redirect URLs."
1181
  msgstr ""
1182
 
1183
+ #: admin/views/Galleries.php:586
1184
  msgid "Description: "
1185
  msgstr ""
1186
 
1187
+ #: admin/views/Galleries.php:589
1188
  msgid "Leave blank and click to \"Save changes\" to delete Descriptions."
1189
  msgstr ""
1190
 
1191
+ #: admin/views/Galleries.php:615
1192
  msgid "You have unsaved changes."
1193
  msgstr "Zaten puan var."
1194
 
1195
+ #: admin/views/Galleries.php:620
1196
  msgid ""
1197
  "This sorting does not affect the published galleries. You can change the "
1198
  "ordering on frontend by editing gallery shortcode or Photo Gallery Options."
1199
  msgstr ""
1200
 
1201
+ #: admin/views/Galleries.php:637 photo-gallery.php:643
1202
  msgid "Show order column"
1203
  msgstr "Yorumları göster"
1204
 
1205
+ #: admin/views/Galleries.php:638
1206
+ msgid "Drag&Drop"
1207
+ msgstr ""
1208
+
1209
+ #: admin/views/Galleries.php:639
1210
  msgid "Numerate"
1211
  msgstr ""
1212
 
1213
+ #: admin/views/Galleries.php:645
1214
  msgid "Ordering"
1215
  msgstr "Sipariş"
1216
 
1217
+ #: admin/views/Galleries.php:651 admin/views/Galleries.php:719
1218
+ #: admin/views/Options.php:1325 admin/views/Options.php:1551
1219
+ #: admin/views/Options.php:1785 admin/views/Options.php:1980
1220
+ #: admin/views/Options.php:2218 admin/views/Options.php:2375
1221
+ #: admin/views/Options.php:2550 admin/views/Options.php:2776
1222
+ #: admin/views/Options.php:3074 admin/views/Options.php:3312
1223
+ #: frontend/views/view.php:450
1224
  msgid "Filename"
1225
  msgstr "Dosya Adı"
1226
 
1227
+ #: admin/views/Galleries.php:656 admin/views/Options.php:859
1228
+ #: admin/views/Options.php:1012 admin/views/Ratings.php:57
1229
+ #: admin/views/Ratings.php:74 admin/views/Shortcode.php:383
1230
  #: admin/views/WidgetTags.php:84
1231
  msgid "Image"
1232
  msgstr ""
1233
 
1234
+ #: admin/views/Galleries.php:731
 
 
 
 
 
1235
  msgid "Resolution"
1236
  msgstr ""
1237
 
1238
+ #: admin/views/Galleries.php:732 admin/views/Options.php:1326
1239
+ #: admin/views/Options.php:1552 admin/views/Options.php:1786
1240
+ #: admin/views/Options.php:1981 admin/views/Options.php:2219
1241
+ #: admin/views/Options.php:2376 admin/views/Options.php:2551
1242
+ #: admin/views/Options.php:2777 admin/views/Options.php:3075
1243
+ #: admin/views/Options.php:3313 filemanager/view.php:154
1244
+ #: frontend/views/view.php:453
1245
  msgid "Size"
1246
  msgstr "Boyut"
1247
 
1248
+ #: admin/views/Galleries.php:746 admin/views/Galleries.php:747
1249
+ #: admin/views/Options.php:186 admin/views/Options.php:1135
1250
+ #: admin/views/Options.php:1138
1251
  msgid "Image edit functionality is not supported by your web host."
1252
  msgstr ""
1253
 
1254
+ #: admin/views/Galleries.php:747
1255
  msgid "Crop Thumbnail"
1256
  msgstr ""
1257
 
1258
+ #: admin/views/Galleries.php:748 admin/views/Options.php:53
1259
+ #: admin/views/Themes.php:352 framework/WDWLibrary.php:373
1260
+ #: framework/WDWLibrary.php:549 framework/WDWLibrary.php:2604
1261
+ #: frontend/views/view.php:398
1262
  msgid "Reset"
1263
  msgstr "Sıfırlayın"
1264
 
1265
+ #: admin/views/Galleries.php:768
1266
  msgid "Alt/Title"
1267
  msgstr ""
1268
 
1269
+ #: admin/views/Galleries.php:790
1270
  msgid "Redirect URL"
1271
  msgstr ""
1272
 
1273
+ #: admin/views/Galleries.php:794
1274
  msgid "Options > General"
1275
  msgstr ""
1276
 
1277
+ #: admin/views/Galleries.php:795
1278
  #, php-format
1279
  msgid ""
1280
  "To activate this feature, go to %s, then set \"Image click action\" to "
1281
  "\"Redirect to URL\". Please use absolute URLs when specifying the links."
1282
  msgstr ""
1283
 
1284
+ #: admin/views/Galleries.php:813
1285
  msgid "Remove tag"
1286
  msgstr ""
1287
 
1288
+ #: admin/views/Galleries.php:823
1289
  msgid "Add tag"
1290
  msgstr ""
1291
 
1327
  msgid "Skip"
1328
  msgstr ""
1329
 
1330
+ #: admin/views/Options.php:47
1331
+ msgid "Save options"
1332
  msgstr ""
1333
 
1334
+ #: admin/views/Options.php:54 admin/views/Themes.php:347
1335
+ msgid "Do you want to reset to default?"
1336
  msgstr ""
1337
 
1338
+ #: admin/views/Options.php:83 photo-gallery.php:438
1339
+ msgid "General"
1340
  msgstr ""
1341
 
1342
+ #: admin/views/Options.php:89
1343
+ msgid "Gallery views"
1344
  msgstr "Galeri boş"
1345
 
1346
+ #: admin/views/Options.php:95
1347
+ msgid "Group of gallery views"
1348
  msgstr "Galeri boş"
1349
 
1350
+ #: admin/views/Options.php:107 photo-gallery.php:1561
 
 
 
 
1351
  msgid "Watermark"
1352
  msgstr ""
1353
 
1354
+ #: admin/views/Options.php:138
1355
  msgid "Images directory"
1356
  msgstr ""
1357
 
1358
+ #: admin/views/Options.php:143
1359
  msgid ""
1360
  "Provide the path of an existing folder inside the WordPress directory of "
1361
  "your website to store uploaded images.<br />The content of the previous "
1362
  "directory will be moved to the new one."
1363
  msgstr ""
1364
 
1365
+ #: admin/views/Options.php:151 admin/views/Options.php:3522
1366
  msgid "Image click action"
1367
  msgstr ""
1368
 
1369
+ #: admin/views/Options.php:153 admin/views/Options.php:3524
1370
  msgid "Open lightbox"
1371
  msgstr ""
1372
 
1373
+ #: admin/views/Options.php:154 admin/views/Options.php:3525
1374
  msgid "Redirect to url"
1375
  msgstr ""
1376
 
1377
+ #: admin/views/Options.php:155 admin/views/Options.php:3526
1378
  msgid "Do Nothing"
1379
  msgstr ""
1380
 
1381
+ #: admin/views/Options.php:157 admin/views/Options.php:3528
1382
  msgid "Select the action which runs after clicking on gallery thumbnails."
1383
  msgstr ""
1384
 
1385
+ #: admin/views/Options.php:161 admin/views/Options.php:3532
1386
  msgid "Open in a new window"
1387
  msgstr ""
1388
 
1389
+ #: admin/views/Options.php:171 admin/views/Options.php:2511
1390
  msgid "Image dimensions"
1391
  msgstr ""
1392
 
1393
+ #: admin/views/Options.php:176
1394
  msgid ""
1395
  "Specify the maximum dimensions of uploaded images (set 0 for original size)."
1396
  msgstr ""
1397
 
1398
+ #: admin/views/Options.php:181
1399
  msgid "Generated thumbnail dimensions"
1400
  msgstr ""
1401
 
1402
+ #: admin/views/Options.php:186 photo-gallery.php:438
1403
  msgid "Recreate"
1404
  msgstr ""
1405
 
1406
+ #: admin/views/Options.php:188
1407
  msgid ""
1408
  "Specify the maximum dimensions of generated thumbnails. They must be larger "
1409
  "than frontend thumbnail dimensions."
1410
  msgstr ""
1411
 
1412
+ #: admin/views/Options.php:193
1413
  msgid "Image quality"
1414
  msgstr ""
1415
 
1416
+ #: admin/views/Options.php:197
1417
  msgid "Set the quality of gallery images. Provide a value from 0 to 100%."
1418
  msgstr ""
1419
 
1420
+ #: admin/views/Options.php:202
1421
  msgid "Resizable thumbnails"
1422
  msgstr ""
1423
 
1424
+ #: admin/views/Options.php:207
1425
  msgid ""
1426
  "Enable this option to allow resizing gallery thumbnails on smaller screens."
1427
  msgstr ""
1428
 
1429
+ #: admin/views/Options.php:212
1430
  msgid "Lazy load"
1431
  msgstr ""
1432
 
1433
+ #: admin/views/Options.php:217
1434
  msgid ""
1435
  "Enable this option to activate lazy loading for images and improve the "
1436
  "loading speed on your galleries."
1437
  msgstr ""
1438
 
1439
+ #: admin/views/Options.php:222
1440
  msgid "Preload images"
1441
  msgstr ""
1442
 
1443
+ #: admin/views/Options.php:227
1444
  msgid ""
1445
  "If this setting is enabled, Photo Gallery loads a specific number of images "
1446
  "before opening lightbox. This lets you showcase images without loading "
1447
  "delays, providing better user experience."
1448
  msgstr ""
1449
 
1450
+ #: admin/views/Options.php:232
1451
  msgid "Number of preloaded images"
1452
  msgstr ""
1453
 
1454
+ #: admin/views/Options.php:236
1455
  msgid "Specify the number of images to preload, e.g. 5 (set 0 for all)."
1456
  msgstr ""
1457
 
1458
+ #: admin/views/Options.php:241
1459
  msgid "Show custom posts"
1460
  msgstr "Yorumları göster"
1461
 
1462
+ #: admin/views/Options.php:246
1463
  msgid ""
1464
  "Activate this setting to display Photo Gallery custom posts with new menu "
1465
  "items under WordPress admin menu."
1466
  msgstr ""
1467
 
1468
+ #: admin/views/Options.php:251
1469
  msgid "Discourage Search Engine Visibility"
1470
  msgstr ""
1471
 
1472
+ #: admin/views/Options.php:256
1473
  msgid "Discourage search engines from indexing Photo Gallery custom posts."
1474
  msgstr ""
1475
 
1476
+ #: admin/views/Options.php:261
1477
  msgid "Show comments for custom posts"
1478
  msgstr "Yorumları göster"
1479
 
1480
+ #: admin/views/Options.php:266
1481
  msgid ""
1482
  "Use this setting to show or hide comments under Photo Gallery custom posts."
1483
  msgstr ""
1484
 
1485
+ #: admin/views/Options.php:271
1486
  msgid "Use AND operator for tag filtering"
1487
  msgstr ""
1488
 
1489
+ #: admin/views/Options.php:276
1490
  msgid ""
1491
  "Enable this option to filter images with AND operator. In this case, the "
1492
  "filter results must have all selected tags in the Tag Box."
1493
  msgstr ""
1494
 
1495
+ #: admin/views/Options.php:281
1496
+ msgid "Enable GDPR compliance"
1497
+ msgstr "Gizle derece"
1498
+
1499
+ #: admin/views/Options.php:286
1500
+ msgid "Enable this option to have General Data Protection Regulation."
1501
+ msgstr ""
1502
+
1503
+ #: admin/views/Options.php:293
1504
  msgid "Save IP "
1505
  msgstr ""
1506
 
1507
+ #: admin/views/Options.php:298
1508
  msgid "Disable saving user IP address when rating the images."
1509
  msgstr ""
1510
 
1511
+ #: admin/views/Options.php:304
1512
  msgid "Right-click protection"
1513
  msgstr ""
1514
 
1515
+ #: admin/views/Options.php:309
1516
  msgid "Switch off right-click on your gallery images by enabling this setting."
1517
  msgstr ""
1518
 
1519
+ #: admin/views/Options.php:314
1520
  msgid "Include styles/scripts on gallery pages only"
1521
  msgstr ""
1522
 
1523
+ #: admin/views/Options.php:319
1524
  msgid ""
1525
  "If this option is enabled, CSS and Javascript files of Photo Gallery will "
1526
  "only load on pages with galleries and gallery groups."
1527
  msgstr ""
1528
 
1529
+ #: admin/views/Options.php:324
1530
  msgid "Enable Google fonts"
1531
  msgstr "Yorumları göster"
1532
 
1533
+ #: admin/views/Options.php:329
1534
  msgid ""
1535
  "If this option is disabled, Google fonts will not be included in your pages."
1536
  msgstr ""
1537
 
1538
+ #: admin/views/Options.php:334
1539
  msgid "Enable HTML editor"
1540
  msgstr "Bilgiyi sakla"
1541
 
1542
+ #: admin/views/Options.php:339
1543
  msgid ""
1544
  "Description text boxes of Photo Gallery will use TinyMCE editor, in case "
1545
  "this setting is enabled."
1546
  msgstr ""
1547
 
1548
+ #: admin/views/Options.php:343
1549
+ msgid "Enable get parameter for image URL"
1550
+ msgstr ""
1551
+
1552
+ #: admin/views/Options.php:348
1553
+ msgid ""
1554
+ "If this option is enabled, some IDs will be added after the image extension "
1555
+ "to enable CDN to serve those images."
1556
+ msgstr ""
1557
+
1558
+ #: admin/views/Options.php:353
1559
  msgid "Enable href attribute"
1560
  msgstr ""
1561
 
1562
+ #: admin/views/Options.php:358
1563
  msgid "Disable this option only if Photo Gallery conflicts with your theme."
1564
  msgstr ""
1565
 
1566
+ #: admin/views/Options.php:363
1567
  msgid "Auto-fill metadata"
1568
  msgstr ""
1569
 
1570
+ #: admin/views/Options.php:368
1571
  msgid ""
1572
  "Enabling this option will let the plugin fill in meta descriptions of photos "
1573
  "into Image Description option automatically."
1574
  msgstr ""
1575
 
1576
+ #: admin/views/Options.php:373 admin/views/Options.php:376
1577
+ #: photo-gallery.php:512
1578
  msgid "Generate Shortcode"
1579
  msgstr ""
1580
 
1581
+ #: admin/views/Options.php:379
1582
  msgid ""
1583
  "Generate or edit Photo Gallery shortcodes that are used to publish galleries "
1584
  "or gallery groups."
1585
  msgstr ""
1586
 
1587
+ #: admin/views/Options.php:382
1588
  msgid "Enable dynamic URLs for galleries and gallery groups"
1589
  msgstr ""
1590
 
1591
+ #: admin/views/Options.php:385
1592
  msgid ""
1593
  "Enable this option to browse galleries and gallery groups, as well as search "
1594
  "results and tagged images with dynamic links."
1595
  msgstr ""
1596
 
1597
+ #: admin/views/Options.php:388
1598
  msgid "Developer mode"
1599
  msgstr ""
1600
 
1601
+ #: admin/views/Options.php:391
1602
  msgid ""
1603
  "Do not use minified JS and CSS files. Enable this option if You need to "
1604
  "debug JS or CSS issues."
1605
  msgstr ""
1606
 
1607
+ #: admin/views/Options.php:402 photo-gallery.php:511
1608
  msgid "Uninstall"
1609
  msgstr ""
1610
 
1611
+ #: admin/views/Options.php:405
1612
  msgid ""
1613
  "Note, that uninstalling Photo Gallery will completely remove all galleries, "
1614
  "gallery groups and other data on the plugin. Please make sure you don't have "
1615
  "any important information before you proceed."
1616
  msgstr ""
1617
 
1618
+ #: admin/views/Options.php:545 admin/views/Options.php:643
1619
+ #: admin/views/Shortcode.php:253
1620
+ msgid "Visit demo page for this view"
1621
+ msgstr ""
1622
+
1623
+ #: admin/views/Options.php:547 admin/views/Options.php:645
1624
+ #: admin/views/Shortcode.php:255
1625
+ msgid "UPGRADE to Premium"
1626
  msgstr ""
1627
 
1628
+ #: admin/views/Options.php:548 admin/views/Options.php:646
1629
+ #: admin/views/Shortcode.php:256
1630
+ msgid "view demo"
1631
  msgstr ""
1632
 
1633
+ #: admin/views/Options.php:677
1634
  msgid "Social"
1635
  msgstr ""
1636
 
1637
+ #: admin/views/Options.php:683
1638
  msgid "Gallery autoupdate interval"
1639
  msgstr "Otomatik güncelleme aralığını eklentisi Fotoğraf galerisi"
1640
 
1641
+ #: admin/views/Options.php:686
1642
  msgid "hour"
1643
  msgstr ""
1644
 
1645
+ #: admin/views/Options.php:688
1646
  msgid "min"
1647
  msgstr ""
1648
 
1649
+ #: admin/views/Options.php:690
1650
  msgid ""
1651
  "Set the interval when Instagram galleries will be updated, and will display "
1652
  "new posts of your Instagram or Facebook account."
1653
  msgstr ""
1654
 
1655
+ #: admin/views/Options.php:696
1656
  msgid "Instagram"
1657
  msgstr ""
1658
 
1659
+ #: admin/views/Options.php:702
1660
  msgid ""
1661
  "Press this button to sign in to your Instagram account. In this case, access "
1662
  "token will be added automatically."
1663
  msgstr ""
1664
 
1665
+ #: admin/views/Options.php:706
1666
  msgid "Sign in with Instagram"
1667
  msgstr ""
1668
 
1669
+ #: admin/views/Options.php:708
1670
  msgid ""
1671
  "Press this button to sign in to your Instagram account. This lets you "
1672
  "incorporate Instagram API to your website."
1673
  msgstr ""
1674
 
1675
+ #: admin/views/Options.php:711
1676
  msgid ""
1677
  "Press this button to sign out from your Instagram account. The access token "
1678
  "will reset."
1679
  msgstr ""
1680
 
1681
+ #: admin/views/Options.php:713
1682
  msgid ""
1683
  "Are you sure you want to reset access token, after resetting it you will "
1684
  "need to log in with Instagram again for using plugin"
1685
  msgstr ""
1686
 
1687
+ #: admin/views/Options.php:715
1688
  msgid "Sign out from Instagram"
1689
  msgstr ""
1690
 
1691
+ #: admin/views/Options.php:717
1692
  msgid "Press this button to sign out from your Instagram account."
1693
  msgstr ""
1694
 
1695
+ #: admin/views/Options.php:745 admin/views/Options.php:751
1696
  msgid "Roles"
1697
  msgstr ""
1698
 
1699
+ #: admin/views/Options.php:763
1700
  msgid ""
1701
  "Choose a WordPress user role which can add and edit galleries, images, "
1702
+ "gallery groups, tags, themes and edit settings."
1703
  msgstr ""
1704
 
1705
+ #: admin/views/Options.php:771
1706
  msgid "Gallery role restrictions"
1707
  msgstr "Galeri boş"
1708
 
1709
+ #: admin/views/Options.php:776
1710
  msgid ""
1711
  "Enable this setting to restrict authors from modifying galleries created by "
1712
  "other users."
1713
  msgstr ""
1714
 
1715
+ #: admin/views/Options.php:782
1716
  msgid "Gallery group restrictions"
1717
  msgstr "Galeri boş"
1718
 
1719
+ #: admin/views/Options.php:787
1720
  msgid ""
1721
  "Enabling this option will restrict authors from modifying galleries groups "
1722
  "created by other users."
1723
  msgstr ""
1724
 
1725
+ #: admin/views/Options.php:793
1726
  msgid "Image role restrictions"
1727
  msgstr ""
1728
 
1729
+ #: admin/views/Options.php:798
1730
  msgid ""
1731
  "Enable this setting to restrict authors from modifying images added by other "
1732
  "users."
1733
  msgstr ""
1734
 
1735
+ #: admin/views/Options.php:804
1736
+ msgid "Tag permission"
1737
+ msgstr ""
1738
+
1739
+ #: admin/views/Options.php:809
1740
+ msgid "Enable this setting to allow users to add/edit tags."
1741
+ msgstr ""
1742
+
1743
+ #: admin/views/Options.php:815
1744
+ msgid "Theme permission"
1745
+ msgstr ""
1746
+
1747
+ #: admin/views/Options.php:820
1748
+ msgid "Enable this setting to allow users to add/edit themes."
1749
+ msgstr ""
1750
+
1751
+ #: admin/views/Options.php:826
1752
+ msgid "Global settings permission"
1753
+ msgstr ""
1754
+
1755
+ #: admin/views/Options.php:831
1756
+ msgid "Enable this setting to allow users to edit global settings."
1757
+ msgstr ""
1758
+
1759
+ #: admin/views/Options.php:846 photo-gallery.php:1565 photo-gallery.php:1680
1760
  msgid "Advertisement"
1761
  msgstr ""
1762
 
1763
+ #: admin/views/Options.php:852 admin/views/Shortcode.php:380
1764
  msgid "Advertisement type"
1765
  msgstr ""
1766
 
1767
+ #: admin/views/Options.php:857 admin/views/Options.php:1010
1768
+ #: admin/views/Shortcode.php:382 admin/views/Themes.php:4462
1769
  #: admin/views/WidgetTags.php:83
1770
  msgid "Text"
1771
  msgstr ""
1772
 
1773
+ #: admin/views/Options.php:861 admin/views/Shortcode.php:384
1774
  msgid "Add Text or Image advertisement to your images with this option."
1775
  msgstr ""
1776
 
1777
+ #: admin/views/Options.php:866 admin/views/Shortcode.php:397
1778
  msgid "Advertisement URL"
1779
  msgstr ""
1780
 
1781
+ #: admin/views/Options.php:874 admin/views/Options.php:876
1782
+ #: admin/views/Options.php:1027 admin/views/Options.php:1029
1783
  msgid "Select Image"
1784
  msgstr "Sıfırlayın"
1785
 
1786
+ #: admin/views/Options.php:878 admin/views/Options.php:1031
1787
+ #: filemanager/view.php:249
1788
  msgid "or"
1789
  msgstr "daha"
1790
 
1791
+ #: admin/views/Options.php:881 admin/views/Shortcode.php:399
1792
  msgid ""
1793
  "Provide the absolute URL of the image you would like to use as advertisement."
1794
  msgstr ""
1795
 
1796
+ #: admin/views/Options.php:886 admin/views/Shortcode.php:404
1797
  msgid "Advertisement text"
1798
  msgstr ""
1799
 
1800
+ #: admin/views/Options.php:890 admin/views/Shortcode.php:406
1801
  msgid "Write the text to add to images as advertisement."
1802
  msgstr ""
1803
 
1804
+ #: admin/views/Options.php:895 admin/views/Shortcode.php:390
1805
  msgid "Advertisement link"
1806
  msgstr ""
1807
 
1808
+ #: admin/views/Options.php:899 admin/views/Shortcode.php:392
1809
  msgid "Provide the link to be added to advertisement on images."
1810
  msgstr ""
1811
 
1812
+ #: admin/views/Options.php:904 admin/views/Shortcode.php:444
1813
  msgid "Advertisement dimensions"
1814
  msgstr ""
1815
 
1816
+ #: admin/views/Options.php:909 admin/views/Shortcode.php:449
1817
  msgid "Select the dimensions of the advertisement image."
1818
  msgstr ""
1819
 
1820
+ #: admin/views/Options.php:914 admin/views/Shortcode.php:435
1821
  msgid "Advertisement font size"
1822
  msgstr ""
1823
 
1824
+ #: admin/views/Options.php:918 admin/views/Shortcode.php:439
1825
  msgid "Specify the font size of the advertisement text."
1826
  msgstr ""
1827
 
1828
+ #: admin/views/Options.php:923 admin/views/Shortcode.php:413
1829
  msgid "Advertisement font style"
1830
  msgstr ""
1831
 
1832
+ #: admin/views/Options.php:938 admin/views/Shortcode.php:427
1833
+ #: admin/views/Themes.php:296
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1834
  msgid "Google fonts"
1835
  msgstr ""
1836
 
1837
+ #: admin/views/Options.php:940 admin/views/Options.php:1322
1838
+ #: admin/views/Options.php:1548 admin/views/Options.php:1782
1839
+ #: admin/views/Options.php:1977 admin/views/Options.php:2215
1840
+ #: admin/views/Options.php:2372 admin/views/Options.php:2547
1841
+ #: admin/views/Options.php:2756 admin/views/Options.php:2773
1842
+ #: admin/views/Options.php:3054 admin/views/Options.php:3071
1843
+ #: admin/views/Options.php:3292 admin/views/Options.php:3309
1844
+ #: admin/views/Shortcode.php:429 admin/views/Themes.php:200
1845
+ #: admin/views/Themes.php:231 admin/views/Themes.php:298
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1846
  msgid "Default"
1847
  msgstr "Standart"
1848
 
1849
+ #: admin/views/Options.php:942 admin/views/Shortcode.php:430
1850
  msgid "Select the font family of the advertisement text."
1851
  msgstr ""
1852
 
1853
+ #: admin/views/Options.php:947 admin/views/Shortcode.php:454
1854
  msgid "Advertisement color"
1855
  msgstr ""
1856
 
1857
+ #: admin/views/Options.php:951 admin/views/Shortcode.php:456
1858
  msgid "Choose the color for the advertisement text on images."
1859
  msgstr ""
1860
 
1861
+ #: admin/views/Options.php:956 admin/views/Shortcode.php:463
1862
  msgid "Advertisement opacity"
1863
  msgstr ""
1864
 
1865
+ #: admin/views/Options.php:960 admin/views/Shortcode.php:467
1866
  msgid ""
1867
  "Specify the opacity of the advertisement. The value must be between 0 to 100."
1868
  msgstr ""
1869
 
1870
+ #: admin/views/Options.php:965 admin/views/Shortcode.php:472
1871
  msgid "Advertisement position"
1872
  msgstr ""
1873
 
1874
+ #: admin/views/Options.php:988 admin/views/Shortcode.php:492
1875
  msgid "Mark the position where the advertisement should appear on images."
1876
  msgstr ""
1877
 
1878
+ #: admin/views/Options.php:1005
1879
  msgid "Watermark type"
1880
  msgstr ""
1881
 
1882
+ #: admin/views/Options.php:1014
1883
  msgid "Add Text or Image watermark to your images with this option."
1884
  msgstr ""
1885
 
1886
+ #: admin/views/Options.php:1019
1887
  msgid "Watermark URL"
1888
  msgstr ""
1889
 
1890
+ #: admin/views/Options.php:1034
1891
  msgid ""
1892
  "Provide the absolute URL of the image you would like to use as watermark."
1893
  msgstr ""
1894
 
1895
+ #: admin/views/Options.php:1034
1896
  msgid "Only .png format is supported."
1897
  msgstr ""
1898
 
1899
+ #: admin/views/Options.php:1039
1900
  msgid "Watermark text"
1901
  msgstr ""
1902
 
1903
+ #: admin/views/Options.php:1043
1904
  msgid "Provide the text to add to images as watermark."
1905
  msgstr ""
1906
 
1907
+ #: admin/views/Options.php:1048
1908
  msgid "Watermark size"
1909
  msgstr ""
1910
 
1911
+ #: admin/views/Options.php:1052
1912
  msgid "Specify the size of watermark on images in percent."
1913
  msgstr ""
1914
 
1915
+ #: admin/views/Options.php:1057
1916
  msgid "Watermark font size"
1917
  msgstr ""
1918
 
1919
+ #: admin/views/Options.php:1061
1920
  msgid "Specify the font size of the watermark text."
1921
  msgstr ""
1922
 
1923
+ #: admin/views/Options.php:1066
1924
  msgid "Watermark font style"
1925
  msgstr ""
1926
 
1927
+ #: admin/views/Options.php:1090
1928
  msgid "Select the font family of the watermark text."
1929
  msgstr ""
1930
 
1931
+ #: admin/views/Options.php:1095
1932
  msgid "Watermark color"
1933
  msgstr ""
1934
 
1935
+ #: admin/views/Options.php:1099
1936
  msgid "Choose the color for the watermark text on images."
1937
  msgstr ""
1938
 
1939
+ #: admin/views/Options.php:1104
1940
  msgid "Watermark opacity"
1941
  msgstr ""
1942
 
1943
+ #: admin/views/Options.php:1108
1944
  msgid ""
1945
  "Specify the opacity of the watermark. The value must be between 0 to 100."
1946
  msgstr ""
1947
 
1948
+ #: admin/views/Options.php:1113
1949
  msgid "Watermark position"
1950
  msgstr ""
1951
 
1952
+ #: admin/views/Options.php:1134 framework/WDWLibrary.php:2599
1953
  msgid "Set watermark"
1954
  msgstr ""
1955
 
1956
+ #: admin/views/Options.php:1136
1957
  msgid "Set Watermark"
1958
  msgstr ""
1959
 
1960
+ #: admin/views/Options.php:1137
1961
  msgid "Reset watermark"
1962
  msgstr ""
1963
 
1964
+ #: admin/views/Options.php:1139
1965
  msgid "Reset Watermark"
1966
  msgstr ""
1967
 
1968
+ #: admin/views/Options.php:1141
1969
  msgid "Mark the position where the watermark should appear on images."
1970
  msgstr ""
1971
 
1972
+ #: admin/views/Options.php:1265 admin/views/Options.php:2708
1973
+ #: admin/views/Options.php:3244 admin/views/Shortcode.php:2261
1974
  msgid "Thumbnail dimensions"
1975
  msgstr ""
1976
 
1977
+ #: admin/views/Options.php:1270 admin/views/Options.php:2713
1978
+ #: admin/views/Options.php:3011 admin/views/Options.php:3249
1979
  msgid ""
1980
  "The default dimensions of thumbnails which will display on published "
1981
  "galleries."
1982
  msgstr ""
1983
 
1984
+ #: admin/views/Options.php:1275 admin/views/Options.php:1500
1985
+ #: admin/views/Options.php:2699 admin/views/Options.php:2998
1986
+ #: admin/views/Options.php:3235 admin/views/Shortcode.php:2263
1987
  msgid "Number of image columns"
1988
  msgstr ""
1989
 
1990
+ #: admin/views/Options.php:1279 admin/views/Options.php:2703
1991
+ #: admin/views/Options.php:3002 admin/views/Options.php:3239
1992
  msgid ""
1993
  "Set the maximum number of image columns in galleries. Note, that the parent "
1994
  "container needs to be large enough to display all columns."
1995
  msgstr ""
1996
 
1997
+ #: admin/views/Options.php:1284 admin/views/Options.php:1510
1998
+ #: admin/views/Options.php:1744 admin/views/Options.php:2332
1999
+ #: admin/views/Options.php:2718 admin/views/Options.php:3016
2000
+ #: admin/views/Options.php:3254
2001
  msgid "Pagination"
2002
  msgstr ""
2003
 
2004
+ #: admin/views/Options.php:1287 admin/views/Options.php:1513
2005
+ #: admin/views/Options.php:1747 admin/views/Options.php:2335
2006
+ #: admin/views/Options.php:2721 admin/views/Options.php:3019
2007
+ #: admin/views/Options.php:3257
2008
  msgid "Simple"
2009
  msgstr ""
2010
 
2011
+ #: admin/views/Options.php:1288 admin/views/Options.php:1514
2012
+ #: admin/views/Options.php:1748 admin/views/Options.php:2336
2013
+ #: admin/views/Options.php:2722 admin/views/Options.php:3020
2014
+ #: admin/views/Options.php:3258
2015
  msgid "Load More"
2016
  msgstr "Daha fazla yükle"
2017
 
2018
+ #: admin/views/Options.php:1289 admin/views/Options.php:1515
2019
+ #: admin/views/Options.php:1749 admin/views/Options.php:2337
2020
+ #: admin/views/Options.php:2723 admin/views/Options.php:3021
2021
+ #: admin/views/Options.php:3259
2022
  msgid "Scroll Load"
2023
  msgstr ""
2024
 
2025
+ #: admin/views/Options.php:1291 admin/views/Options.php:1517
2026
+ #: admin/views/Options.php:1751 admin/views/Options.php:2339
2027
+ #: admin/views/Options.php:2725 admin/views/Options.php:3023
2028
+ #: admin/views/Options.php:3261
2029
  msgid "This option removes all types of pagination from your galleries."
2030
  msgstr ""
2031
 
2032
+ #: admin/views/Options.php:1292 admin/views/Options.php:1518
2033
+ #: admin/views/Options.php:1752 admin/views/Options.php:2340
2034
+ #: admin/views/Options.php:2726 admin/views/Options.php:3024
2035
+ #: admin/views/Options.php:3262
2036
  msgid ""
2037
  "Activating this option will add page numbers and next/previous buttons to "
2038
  "your galleries."
2039
  msgstr ""
2040
 
2041
+ #: admin/views/Options.php:1293 admin/views/Options.php:1519
2042
+ #: admin/views/Options.php:1753 admin/views/Options.php:2341
2043
+ #: admin/views/Options.php:2727 admin/views/Options.php:3025
2044
+ #: admin/views/Options.php:3263
2045
  msgid ""
2046
  "Adding a Load More button, you can let users display a new set of images "
2047
  "from your galleries."
2048
  msgstr ""
2049
 
2050
+ #: admin/views/Options.php:1294 admin/views/Options.php:1520
2051
+ #: admin/views/Options.php:1754 admin/views/Options.php:2342
2052
+ #: admin/views/Options.php:2728 admin/views/Options.php:3026
2053
+ #: admin/views/Options.php:3264
2054
  msgid ""
2055
  "With this option, users can load new images of your galleries simply by "
2056
  "scrolling down."
2057
  msgstr ""
2058
 
2059
+ #: admin/views/Options.php:1299 admin/views/Options.php:1525
2060
+ #: admin/views/Options.php:1759 admin/views/Options.php:2348
2061
+ #: admin/views/Options.php:2742 admin/views/Options.php:3040
2062
+ #: admin/views/Options.php:3278
2063
  msgid "Images per page"
2064
  msgstr ""
2065
 
2066
+ #: admin/views/Options.php:1303 admin/views/Options.php:1529
2067
+ #: admin/views/Options.php:1763 admin/views/Options.php:2746
2068
+ #: admin/views/Options.php:3044 admin/views/Options.php:3282
2069
  msgid ""
2070
  "Specify the number of images to display per page on galleries. Setting this "
2071
  "option to 0 shows all items."
2072
  msgstr ""
2073
 
2074
+ #: admin/views/Options.php:1308 admin/views/Options.php:1534
2075
+ #: admin/views/Options.php:1768 admin/views/Options.php:2358
2076
  msgid "Images per load"
2077
  msgstr ""
2078
 
2079
+ #: admin/views/Options.php:1312 admin/views/Options.php:1538
2080
+ #: admin/views/Options.php:1772 admin/views/Options.php:2362
2081
  msgid "Specify the number of images to display per load on galleries."
2082
  msgstr ""
2083
 
2084
+ #: admin/views/Options.php:1320 admin/views/Options.php:1545
2085
+ #: admin/views/Options.php:1779 admin/views/Options.php:1974
2086
+ #: admin/views/Options.php:2212 admin/views/Options.php:2369
2087
+ #: admin/views/Options.php:2544
2088
  msgid "Order by"
2089
  msgstr "Sipariş"
2090
 
2091
+ #: admin/views/Options.php:1332 admin/views/Options.php:1558
2092
+ #: admin/views/Options.php:1792 admin/views/Options.php:1987
2093
+ #: admin/views/Options.php:2225 admin/views/Options.php:2382
2094
+ #: admin/views/Options.php:2557 admin/views/Options.php:2763
2095
+ #: admin/views/Options.php:2783 admin/views/Options.php:3061
2096
+ #: admin/views/Options.php:3081 admin/views/Options.php:3299
2097
+ #: admin/views/Options.php:3319
2098
  msgid "Ascending"
2099
  msgstr ""
2100
 
2101
+ #: admin/views/Options.php:1333 admin/views/Options.php:1559
2102
+ #: admin/views/Options.php:1793 admin/views/Options.php:1988
2103
+ #: admin/views/Options.php:2226 admin/views/Options.php:2383
2104
+ #: admin/views/Options.php:2558 admin/views/Options.php:2764
2105
+ #: admin/views/Options.php:2784 admin/views/Options.php:3062
2106
+ #: admin/views/Options.php:3082 admin/views/Options.php:3300
2107
+ #: admin/views/Options.php:3320
2108
  msgid "Descending"
2109
  msgstr ""
2110
 
2111
+ #: admin/views/Options.php:1336 admin/views/Options.php:1562
2112
+ #: admin/views/Options.php:1796 admin/views/Options.php:1991
2113
+ #: admin/views/Options.php:2229 admin/views/Options.php:2386
2114
+ #: admin/views/Options.php:2561 admin/views/Options.php:2787
2115
+ #: admin/views/Options.php:3085 admin/views/Options.php:3323
2116
  msgid ""
2117
  "Select the parameter and order direction to sort the gallery images with. E."
2118
  "g. Title and Ascending."
2119
  msgstr ""
2120
 
2121
+ #: admin/views/Options.php:1341 admin/views/Options.php:1567
2122
+ #: admin/views/Options.php:1801 admin/views/Options.php:2234
2123
+ #: admin/views/Options.php:2391 admin/views/Options.php:2792
2124
+ #: admin/views/Options.php:3090 admin/views/Options.php:3328
2125
  msgid "Show search box"
2126
  msgstr ""
2127
 
2128
+ #: admin/views/Options.php:1346 admin/views/Options.php:1572
2129
+ #: admin/views/Options.php:1806 admin/views/Options.php:2239
2130
+ #: admin/views/Options.php:2396 admin/views/Options.php:2797
2131
+ #: admin/views/Options.php:3095 admin/views/Options.php:3333
2132
  msgid ""
2133
  "Enable this option to display a search box with your gallery or gallery "
2134
  "group."
2135
  msgstr ""
2136
 
2137
+ #: admin/views/Options.php:1351 admin/views/Options.php:1577
2138
+ #: admin/views/Options.php:1811 admin/views/Options.php:2244
2139
+ #: admin/views/Options.php:2401 admin/views/Options.php:2802
2140
+ #: admin/views/Options.php:3100 admin/views/Options.php:3338
2141
  msgid "Add placeholder to search"
2142
  msgstr ""
2143
 
2144
+ #: admin/views/Options.php:1359 admin/views/Options.php:1585
2145
+ #: admin/views/Options.php:1819 admin/views/Options.php:2252
2146
+ #: admin/views/Options.php:2409 admin/views/Options.php:2810
2147
+ #: admin/views/Options.php:3108 admin/views/Options.php:3346
2148
  msgid "Search box maximum width"
2149
  msgstr ""
2150
 
2151
+ #: admin/views/Options.php:1367 admin/views/Options.php:1593
2152
+ #: admin/views/Options.php:1827 admin/views/Options.php:2260
2153
+ #: admin/views/Options.php:2417 admin/views/Options.php:2818
2154
+ #: admin/views/Options.php:3116 admin/views/Options.php:3354
2155
  msgid "Show \"Order by\" dropdown list"
2156
  msgstr ""
2157
 
2158
+ #: admin/views/Options.php:1372 admin/views/Options.php:1598
2159
+ #: admin/views/Options.php:1832 admin/views/Options.php:2265
2160
+ #: admin/views/Options.php:2422 admin/views/Options.php:2823
2161
+ #: admin/views/Options.php:3121 admin/views/Options.php:3359
2162
  msgid ""
2163
  "Activate this dropdown box to let users browse your gallery images with "
2164
  "different ordering options."
2165
  msgstr ""
2166
 
2167
+ #: admin/views/Options.php:1377 admin/views/Options.php:1603
2168
+ #: admin/views/Options.php:1837 admin/views/Options.php:2270
2169
+ #: admin/views/Options.php:2427 admin/views/Options.php:2828
2170
+ #: admin/views/Options.php:3126 admin/views/Options.php:3364
2171
  msgid "Show tag box"
2172
  msgstr "Derece Show"
2173
 
2174
+ #: admin/views/Options.php:1382 admin/views/Options.php:1608
2175
+ #: admin/views/Options.php:1842 admin/views/Options.php:2275
2176
+ #: admin/views/Options.php:2432 admin/views/Options.php:2833
2177
+ #: admin/views/Options.php:3131 admin/views/Options.php:3369
2178
  msgid ""
2179
  "Enable Tag Box to allow users to filter the gallery images by their tags."
2180
  msgstr ""
2181
 
2182
+ #: admin/views/Options.php:1389 admin/views/Options.php:1615
2183
+ #: admin/views/Options.php:1849 admin/views/Options.php:2282
2184
+ #: admin/views/Options.php:2439 admin/views/Options.php:2611
2185
+ #: admin/views/Options.php:2860
2186
  msgid "Show gallery title"
2187
  msgstr ""
2188
 
2189
+ #: admin/views/Options.php:1394 admin/views/Options.php:1620
2190
+ #: admin/views/Options.php:1854 admin/views/Options.php:2287
2191
+ #: admin/views/Options.php:2444 admin/views/Options.php:2616
2192
  msgid ""
2193
  "Allow users to see the titles of your galleries by enabling this setting."
2194
  msgstr ""
2195
 
2196
+ #: admin/views/Options.php:1399 admin/views/Options.php:1625
2197
+ #: admin/views/Options.php:1859 admin/views/Options.php:2292
2198
+ #: admin/views/Options.php:2449 admin/views/Options.php:2622
2199
  msgid "Show gallery description"
2200
  msgstr ""
2201
 
2202
+ #: admin/views/Options.php:1404 admin/views/Options.php:1630
2203
+ #: admin/views/Options.php:1864 admin/views/Options.php:2297
2204
+ #: admin/views/Options.php:2454 admin/views/Options.php:2627
2205
  msgid "Display the descriptions of your galleries by activating this option."
2206
  msgstr ""
2207
 
2208
+ #: admin/views/Options.php:1409 admin/views/Options.php:1635
2209
+ #: admin/views/Options.php:1869 admin/views/Options.php:2059
2210
+ #: admin/views/Options.php:2191 admin/views/Options.php:2459
2211
+ #: admin/views/Options.php:2632 admin/views/Options.php:2919
2212
+ #: admin/views/Options.php:3158 admin/views/Options.php:3454
2213
  msgid "Show image title"
2214
  msgstr ""
2215
 
2216
+ #: admin/views/Options.php:1411 admin/views/Options.php:1461
2217
+ #: admin/views/Options.php:1637 admin/views/Options.php:1688
2218
+ #: admin/views/Options.php:1871 admin/views/Options.php:1910
2219
+ #: admin/views/Options.php:2862 admin/views/Options.php:2922
2220
+ #: admin/views/Options.php:2964 admin/views/Options.php:3160
2221
+ #: admin/views/Options.php:3190 admin/views/Options.php:3457
2222
+ #: admin/views/Options.php:3499
2223
  msgid "Show on hover"
2224
  msgstr "Bilgi göster"
2225
 
2226
+ #: admin/views/Options.php:1412 admin/views/Options.php:1462
2227
+ #: admin/views/Options.php:1638 admin/views/Options.php:2863
2228
+ #: admin/views/Options.php:2924 admin/views/Options.php:2965
2229
+ #: admin/views/Options.php:3161 admin/views/Options.php:3459
2230
+ #: admin/views/Options.php:3500
2231
  msgid "Always show"
2232
  msgstr ""
2233
 
2234
+ #: admin/views/Options.php:1413 admin/views/Options.php:1463
2235
+ #: admin/views/Options.php:1639 admin/views/Options.php:1689
2236
+ #: admin/views/Options.php:1872 admin/views/Options.php:1911
2237
+ #: admin/views/Options.php:2864 admin/views/Options.php:2926
2238
+ #: admin/views/Options.php:2966 admin/views/Options.php:3162
2239
+ #: admin/views/Options.php:3191 admin/views/Options.php:3461
2240
+ #: admin/views/Options.php:3501
2241
  msgid "Don't show"
2242
  msgstr ""
2243
 
2244
+ #: admin/views/Options.php:1415 admin/views/Options.php:1641
2245
+ #: admin/views/Options.php:1874 admin/views/Options.php:2928
2246
+ #: admin/views/Options.php:3164 admin/views/Options.php:3463
2247
  msgid "Choose to show/hide titles of images, or display them on hover."
2248
  msgstr ""
2249
 
2250
+ #: admin/views/Options.php:1420 admin/views/Options.php:1646
2251
+ msgid "Show image descriptions"
2252
+ msgstr "Yorumları göster"
2253
+
2254
+ #: admin/views/Options.php:1425 admin/views/Options.php:1651
2255
+ msgid "Enable this setting to display descriptions under images."
2256
+ msgstr ""
2257
+
2258
+ #: admin/views/Options.php:1430 admin/views/Options.php:1657
2259
+ #: admin/views/Options.php:1879 admin/views/Options.php:2933
2260
+ #: admin/views/Options.php:3468
2261
  msgid "Show Play icon on video thumbnails"
2262
  msgstr ""
2263
 
2264
+ #: admin/views/Options.php:1435 admin/views/Options.php:1662
2265
+ #: admin/views/Options.php:1884 admin/views/Options.php:2938
2266
+ #: admin/views/Options.php:3473
2267
  msgid "Activate this option to add a Play button on thumbnails of videos."
2268
  msgstr ""
2269
 
2270
+ #: admin/views/Options.php:1440 admin/views/Options.php:1667
2271
+ #: admin/views/Options.php:1889 admin/views/Options.php:2162
2272
+ #: admin/views/Options.php:2302 admin/views/Options.php:2481
2273
+ #: admin/views/Options.php:2654 admin/views/Options.php:2943
2274
+ #: admin/views/Options.php:3169 admin/views/Options.php:3478
2275
  msgid "Enable bulk download button"
2276
  msgstr ""
2277
 
2278
+ #: admin/views/Options.php:1445 admin/views/Options.php:1672
2279
+ #: admin/views/Options.php:1894 admin/views/Options.php:2167
2280
+ #: admin/views/Options.php:2307 admin/views/Options.php:2486
2281
+ #: admin/views/Options.php:2659 admin/views/Options.php:2948
2282
+ #: admin/views/Options.php:3174 admin/views/Options.php:3483
2283
  msgid ""
2284
  "Activate this setting to let users download all images of your gallery with "
2285
  "a click."
2286
  msgstr ""
2287
 
2288
+ #: admin/views/Options.php:1449 admin/views/Options.php:1676
2289
+ #: admin/views/Options.php:1898 admin/views/Options.php:2171
2290
+ #: admin/views/Options.php:2311 admin/views/Options.php:2490
2291
+ #: admin/views/Options.php:2663 admin/views/Options.php:2952
2292
+ #: admin/views/Options.php:3178 admin/views/Options.php:3487
2293
  msgid ""
2294
  "Photo Gallery Export will not work correctly, as ZipArchive PHP extension is "
2295
  "disabled on your website. Please contact your hosting provider and ask them "
2296
  "to enable it."
2297
  msgstr ""
2298
 
2299
+ #: admin/views/Options.php:1459 admin/views/Options.php:1686
2300
+ #: admin/views/Options.php:1908 admin/views/Options.php:2962
2301
+ #: admin/views/Options.php:3188 admin/views/Options.php:3497
2302
  msgid "Show ecommerce icon"
2303
  msgstr "Yorumları göster"
2304
 
2305
+ #: admin/views/Options.php:1465 admin/views/Options.php:1691
2306
+ #: admin/views/Options.php:1913 admin/views/Options.php:2968
2307
+ #: admin/views/Options.php:3193 admin/views/Options.php:3503
2308
  msgid "Choose to show/hide ecommerce icon, or display them on hover."
2309
  msgstr ""
2310
 
2311
+ #: admin/views/Options.php:1491 admin/views/Options.php:1735
2312
  msgid "Thumbnail size"
2313
  msgstr ""
2314
 
2315
+ #: admin/views/Options.php:1495 admin/views/Options.php:1739
2316
  msgid ""
2317
  "The default size of thumbnails which will display on published galleries."
2318
  msgstr ""
2319
 
2320
+ #: admin/views/Options.php:1501 admin/views/Shortcode.php:2265
2321
  msgid "Number of image rows"
2322
  msgstr ""
2323
 
2324
+ #: admin/views/Options.php:1505
2325
  msgid ""
2326
  "Set the maximum number of image columns (or rows) in galleries. Note, that "
2327
  "the parent container needs to be large enough to display all columns."
2328
  msgstr ""
2329
 
2330
+ #: admin/views/Options.php:1703 admin/views/Options.php:2887
2331
+ #: admin/views/Options.php:3422
 
 
 
 
 
 
 
 
2332
  msgid "Mosaic gallery type"
2333
  msgstr "Galeri boş"
2334
 
2335
+ #: admin/views/Options.php:1705 admin/views/Options.php:2889
2336
+ #: admin/views/Options.php:3424
2337
  msgid "Vertical"
2338
  msgstr ""
2339
 
2340
+ #: admin/views/Options.php:1706 admin/views/Options.php:2890
2341
+ #: admin/views/Options.php:3425
2342
  msgid "Horizontal"
2343
  msgstr ""
2344
 
2345
+ #: admin/views/Options.php:1708 admin/views/Options.php:2892
2346
+ #: admin/views/Options.php:3427
2347
  msgid "Select the type of Mosaic galleries, Vertical or Horizontal."
2348
  msgstr ""
2349
 
2350
+ #: admin/views/Options.php:1714 admin/views/Options.php:2898
2351
+ #: admin/views/Options.php:3433
2352
  msgid "Resizable mosaic"
2353
  msgstr ""
2354
 
2355
+ #: admin/views/Options.php:1719 admin/views/Options.php:2903
2356
+ #: admin/views/Options.php:3438
2357
  msgid ""
2358
  "If this setting is enabled, Photo Gallery resizes all thumbnail images on "
2359
  "Mosaic galleries, without modifying their initial display."
2360
  msgstr ""
2361
 
2362
+ #: admin/views/Options.php:1725 admin/views/Options.php:2909
2363
+ #: admin/views/Options.php:3444
2364
  msgid "Width of mosaic galleries"
2365
  msgstr ""
2366
 
2367
+ #: admin/views/Options.php:1729 admin/views/Options.php:2913
2368
+ #: admin/views/Options.php:3448
2369
  msgid ""
2370
  "The total width of mosaic galleries as a percentage of container's width."
2371
  msgstr ""
2372
 
2373
+ #: admin/views/Options.php:1925
2374
  msgid "Slideshow effect"
2375
  msgstr ""
2376
 
2377
+ #: admin/views/Options.php:1932 admin/views/Options.php:3570
2378
  #: admin/views/WidgetSlideshow.php:105
2379
  msgid "This effect is disabled in free version."
2380
  msgstr ""
2381
 
2382
+ #: admin/views/Options.php:1939
2383
  msgid "Select the animation effect for your slideshow."
2384
  msgstr ""
2385
 
2386
+ #: admin/views/Options.php:1944 admin/views/Options.php:3582
2387
  msgid "Effect duration"
2388
  msgstr ""
2389
 
2390
+ #: admin/views/Options.php:1948
2391
  msgid "Set the duration of your slideshow animation effect."
2392
  msgstr ""
2393
 
2394
+ #: admin/views/Options.php:1953 admin/views/Options.php:2577
2395
+ #: admin/views/Options.php:3602
2396
  msgid "Time interval"
2397
  msgstr ""
2398
 
2399
+ #: admin/views/Options.php:1957
2400
  msgid ""
2401
  "Specify the time interval between slides in Photo Gallery's Slideshow view."
2402
  msgstr ""
2403
 
2404
+ #: admin/views/Options.php:1962
2405
  msgid "Slideshow dimensions"
2406
  msgstr ""
2407
 
2408
+ #: admin/views/Options.php:1967
2409
  msgid "Set the default dimensions of your slideshow galleries."
2410
  msgstr ""
2411
 
2412
+ #: admin/views/Options.php:1996 admin/views/Options.php:2566
2413
  msgid "Enable autoplay"
2414
  msgstr ""
2415
 
2416
+ #: admin/views/Options.php:2001
2417
  msgid "Activate this option to autoplay slideshow galleries."
2418
  msgstr ""
2419
 
2420
+ #: admin/views/Options.php:2006
2421
  msgid "Enable shuffle"
2422
  msgstr ""
2423
 
2424
+ #: admin/views/Options.php:2011
2425
  msgid "The slideshow images will be shuffled in case this setting is enabled."
2426
  msgstr ""
2427
 
2428
+ #: admin/views/Options.php:2016 admin/views/Options.php:3634
2429
  msgid "Enable control buttons"
2430
  msgstr ""
2431
 
2432
+ #: admin/views/Options.php:2021
2433
  msgid "Enable this option to show control buttons on your slideshow galleries."
2434
  msgstr ""
2435
 
2436
+ #: admin/views/Options.php:2026 admin/views/Options.php:3759
2437
  msgid "Show Next / Previous buttons"
2438
  msgstr ""
2439
 
2440
+ #: admin/views/Options.php:2028 admin/views/Options.php:3761
2441
  msgid "On hover"
2442
  msgstr ""
2443
 
2444
+ #: admin/views/Options.php:2029 admin/views/Options.php:3762
2445
  msgid "Always"
2446
  msgstr ""
2447
 
2448
+ #: admin/views/Options.php:2031
2449
  msgid ""
2450
  "Display Next/Previous buttons on your slideshow galleries activating this "
2451
  "setting."
2452
  msgstr ""
2453
 
2454
+ #: admin/views/Options.php:2038
2455
  msgid "Enable slideshow filmstrip"
2456
  msgstr ""
2457
 
2458
+ #: admin/views/Options.php:2043
2459
  msgid ""
2460
  "Add a filmstrip with image thumbnails to your slideshow galleries by "
2461
  "enabling this option."
2462
  msgstr ""
2463
 
2464
+ #: admin/views/Options.php:2049
2465
  msgid "Slideshow filmstrip size"
2466
  msgstr ""
2467
 
2468
+ #: admin/views/Options.php:2053 admin/views/Options.php:3626
2469
  msgid ""
2470
  "Set the size of your filmstrip. If the filmstrip is horizontal, this "
2471
  "indicates its height, whereas for vertical filmstrips it sets the width."
2472
  msgstr ""
2473
 
2474
+ #: admin/views/Options.php:2064
2475
  msgid "Enable this setting to display titles of images in Slideshow view."
2476
  msgstr ""
2477
 
2478
+ #: admin/views/Options.php:2069
2479
  msgid "Title position"
2480
  msgstr ""
2481
 
2482
+ #: admin/views/Options.php:2091
2483
  msgid "Set the position of image titles in Slideshow view."
2484
  msgstr ""
2485
 
2486
+ #: admin/views/Options.php:2096
2487
  msgid "Full width title"
2488
  msgstr ""
2489
 
2490
+ #: admin/views/Options.php:2101
2491
  msgid "Display image title based on the slideshow dimensions."
2492
  msgstr ""
2493
 
2494
+ #: admin/views/Options.php:2106 admin/views/Options.php:2200
2495
+ #: admin/views/Options.php:2470
2496
  msgid "Show image description"
2497
  msgstr "Yorumları göster"
2498
 
2499
+ #: admin/views/Options.php:2111
2500
  msgid "Enable this setting to show descriptions of images in Slideshow view."
2501
  msgstr ""
2502
 
2503
+ #: admin/views/Options.php:2116
2504
  msgid "Description position"
2505
  msgstr ""
2506
 
2507
+ #: admin/views/Options.php:2138
2508
  msgid "Set the position of image descriptions in Slideshow view."
2509
  msgstr ""
2510
 
2511
+ #: admin/views/Options.php:2143
2512
  msgid "Enable slideshow Music"
2513
  msgstr ""
2514
 
2515
+ #: admin/views/Options.php:2148
2516
  msgid ""
2517
  "Enabling this option, you can have music playing along with your slideshow."
2518
  msgstr ""
2519
 
2520
+ #: admin/views/Options.php:2153
2521
  msgid "Audio URL"
2522
  msgstr ""
2523
 
2524
+ #: admin/views/Options.php:2157
2525
  msgid ""
2526
  "Provide the absolute URL of the audio file you would like to play with your "
2527
  "slideshow."
2528
  msgstr ""
2529
 
2530
+ #: admin/views/Options.php:2182 admin/views/Options.php:2322
2531
  msgid "Image width"
2532
  msgstr ""
2533
 
2534
+ #: admin/views/Options.php:2186
2535
  msgid "Specify the default width of images in Image Browser view."
2536
  msgstr ""
2537
 
2538
+ #: admin/views/Options.php:2205
2539
  msgid "Enable this setting to display titles of images in Image Browser view."
2540
  msgstr ""
2541
 
2542
+ #: admin/views/Options.php:2326
2543
  msgid "Specify the default width of images in Blog Style view."
2544
  msgstr ""
2545
 
2546
+ #: admin/views/Options.php:2352
2547
  msgid "Select the number of images displayed per page in Blog Style view."
2548
  msgstr ""
2549
 
2550
+ #: admin/views/Options.php:2464
2551
  msgid "Enable this setting to display titles of images in Blog Style view."
2552
  msgstr ""
2553
 
2554
+ #: admin/views/Options.php:2475
2555
  msgid "Enable this setting to show descriptions of images in Blog Style view."
2556
  msgstr ""
2557
 
2558
+ #: admin/views/Options.php:2501
2559
  msgid "Max. number of images"
2560
  msgstr ""
2561
 
2562
+ #: admin/views/Options.php:2505
2563
  msgid "Set the maximum number of images that are shown with Carousel display."
2564
  msgstr ""
2565
 
2566
+ #: admin/views/Options.php:2516
2567
  msgid "Specify the dimensions of carousel images in pixels."
2568
  msgstr ""
2569
 
2570
+ #: admin/views/Options.php:2522
2571
  msgid "Carousel ratio"
2572
  msgstr ""
2573
 
2574
+ #: admin/views/Options.php:2526
2575
  msgid ""
2576
  "This option defines the proportion of dimensions between neighboring images "
2577
  "in the carousel."
2578
  msgstr ""
2579
 
2580
+ #: admin/views/Options.php:2532
2581
  msgid "Fixed width"
2582
  msgstr ""
2583
 
2584
+ #: admin/views/Options.php:2536
2585
  msgid "Specify the fixed width of Carousel gallery container."
2586
  msgstr ""
2587
 
2588
+ #: admin/views/Options.php:2571
2589
  msgid "Activate this option to autoplay Carousel galleries."
2590
  msgstr ""
2591
 
2592
+ #: admin/views/Options.php:2581
2593
  msgid ""
2594
  "Specify the time interval between rotations in Photo Gallery's Carousel view."
2595
  msgstr ""
2596
 
2597
+ #: admin/views/Options.php:2587
 
 
 
 
 
 
2598
  msgid "Container fit"
2599
  msgstr ""
2600
 
2601
+ #: admin/views/Options.php:2592
2602
  msgid ""
2603
  "Enabling this setting fits the images inside their container on Carousel "
2604
  "galleries with fixed width."
2605
  msgstr ""
2606
 
2607
+ #: admin/views/Options.php:2598
2608
  msgid "Next/Previous buttons"
2609
  msgstr ""
2610
 
2611
+ #: admin/views/Options.php:2603
2612
  msgid ""
2613
  "Enable this setting to display Next/Previous buttons on your galleries with "
2614
  "Carousel view."
2615
  msgstr ""
2616
 
2617
+ #: admin/views/Options.php:2637
2618
+ msgid ""
2619
+ "Display image titles in Photo Gallery Carousel view by activating this "
2620
+ "option."
2621
+ msgstr ""
2622
+
2623
+ #: admin/views/Options.php:2643
2624
  msgid "Play/Pause buttons"
2625
  msgstr ""
2626
 
2627
+ #: admin/views/Options.php:2648
2628
  msgid "Activate this to show Play/Pause buttons on your Carousel galleries."
2629
  msgstr ""
2630
 
2631
+ #: admin/views/Options.php:2680 admin/views/Options.php:2980
2632
  msgid "Number of gallery group columns"
2633
  msgstr ""
2634
 
2635
+ #: admin/views/Options.php:2684 admin/views/Options.php:2984
2636
  msgid ""
2637
  "Set the maximum number of columns in gallery groups. Note, that the parent "
2638
  "container needs to be large enough to display all columns."
2639
  msgstr ""
2640
 
2641
+ #: admin/views/Options.php:2689 admin/views/Options.php:3225
2642
  msgid "Gallery group thumbnail dimensions"
2643
  msgstr ""
2644
 
2645
+ #: admin/views/Options.php:2694 admin/views/Options.php:2993
2646
+ #: admin/views/Options.php:3230
2647
  msgid "Specify the dimensions of thumbnails in gallery groups."
2648
  msgstr ""
2649
 
2650
+ #: admin/views/Options.php:2733 admin/views/Options.php:3031
2651
+ #: admin/views/Options.php:3269
2652
  msgid "Gallery groups per page"
2653
  msgstr "Galeri boş"
2654
 
2655
+ #: admin/views/Options.php:2737 admin/views/Options.php:3035
2656
+ #: admin/views/Options.php:3273
2657
  msgid ""
2658
  "Specify the number of galleries/gallery groups to display per page. Setting "
2659
  "this option to 0 shows all items."
2660
  msgstr ""
2661
 
2662
+ #: admin/views/Options.php:2753 admin/views/Options.php:3051
2663
+ #: admin/views/Options.php:3289
2664
  msgid "Order Gallery group by"
2665
  msgstr "Galeri boş"
2666
 
2667
+ #: admin/views/Options.php:2767 admin/views/Options.php:3065
2668
+ #: admin/views/Options.php:3303
2669
  msgid ""
2670
  "Select the parameter and order direction to sort the gallery group images "
2671
  "with. E.g. Title and Ascending."
2672
  msgstr ""
2673
 
2674
+ #: admin/views/Options.php:2770 admin/views/Options.php:3068
2675
+ #: admin/views/Options.php:3307
2676
  msgid "Order images by"
2677
  msgstr "Sipariş"
2678
 
2679
+ #: admin/views/Options.php:2840 admin/views/Options.php:3138
2680
+ #: admin/views/Options.php:3376
2681
  msgid "Show gallery group or gallery title"
2682
  msgstr ""
2683
 
2684
+ #: admin/views/Options.php:2845 admin/views/Options.php:3143
2685
+ #: admin/views/Options.php:3381
2686
  msgid ""
2687
  "Display the title of displayed gallery or gallery group by enabling this "
2688
  "setting."
2689
  msgstr ""
2690
 
2691
+ #: admin/views/Options.php:2850 admin/views/Options.php:3148
2692
+ #: admin/views/Options.php:3386
2693
  msgid "Show gallery group or gallery description"
2694
  msgstr ""
2695
 
2696
+ #: admin/views/Options.php:2855 admin/views/Options.php:3153
2697
+ #: admin/views/Options.php:3391
2698
  msgid ""
2699
  "Display the description of displayed gallery or gallery group by enabling "
2700
  "this setting."
2701
  msgstr ""
2702
 
2703
+ #: admin/views/Options.php:2866
2704
  msgid ""
2705
  "Choose to show/hide titles of galleries/gallery groups, or display them on "
2706
  "hover."
2707
  msgstr ""
2708
 
2709
+ #: admin/views/Options.php:2871 admin/views/Options.php:3406
2710
  msgid "Gallery view type"
2711
  msgstr "Galeri boş"
2712
 
2713
+ #: admin/views/Options.php:2881 admin/views/Options.php:3416
2714
  msgid ""
2715
  "Choose the display type for gallery groups, Thumbnails, Masonry, Mosaic, "
2716
  "Slideshow, Image browser, Blog style or Carousel."
2717
  msgstr ""
2718
 
2719
+ #: admin/views/Options.php:2989
2720
  msgid "Gallery group thumbnail width"
2721
  msgstr "Galeri boş"
2722
 
2723
+ #: admin/views/Options.php:3007
2724
  msgid "Thumbnail width"
2725
  msgstr ""
2726
 
2727
+ #: admin/views/Options.php:3205
2728
  msgid "Extended gallery group height"
2729
  msgstr ""
2730
 
2731
+ #: admin/views/Options.php:3209
2732
  msgid "Set the height of blocks in Extended gallery groups."
2733
  msgstr ""
2734
 
2735
+ #: admin/views/Options.php:3214
2736
  msgid "Number of columns"
2737
  msgstr ""
2738
 
2739
+ #: admin/views/Options.php:3216
2740
  msgid "1 column"
2741
  msgstr ""
2742
 
2743
+ #: admin/views/Options.php:3217
2744
  msgid "2 column"
2745
  msgstr ""
2746
 
2747
+ #: admin/views/Options.php:3218
2748
  msgid "3 column"
2749
  msgstr ""
2750
 
2751
+ #: admin/views/Options.php:3220
2752
  msgid "Set the maximum number of columns."
2753
  msgstr ""
2754
 
2755
+ #: admin/views/Options.php:3396
2756
  msgid "Show extended gallery group description"
2757
  msgstr ""
2758
 
2759
+ #: admin/views/Options.php:3401
2760
  msgid ""
2761
  "Enable this option to show descriptions of galleries/gallery groups in "
2762
  "Extended view."
2763
  msgstr ""
2764
 
2765
+ #: admin/views/Options.php:3543
2766
  msgid "Full-width lightbox"
2767
  msgstr ""
2768
 
2769
+ #: admin/views/Options.php:3548
2770
  msgid "Image lightbox will appear full-width if this setting is activated."
2771
  msgstr ""
2772
 
2773
+ #: admin/views/Options.php:3553
2774
  msgid "Lightbox dimensions"
2775
  msgstr ""
2776
 
2777
+ #: admin/views/Options.php:3558
2778
  msgid "Set the dimensions of image lightbox."
2779
  msgstr ""
2780
 
2781
+ #: admin/views/Options.php:3563
2782
  msgid "Lightbox effect"
2783
  msgstr ""
2784
 
2785
+ #: admin/views/Options.php:3577
2786
  msgid "Select the animation effect for image lightbox."
2787
  msgstr ""
2788
 
2789
+ #: admin/views/Options.php:3586
2790
  msgid "Set the duration of lightbox animation effect."
2791
  msgstr ""
2792
 
2793
+ #: admin/views/Options.php:3587
2794
  msgid ""
2795
  "Note, that the value of Effect Duration can not be greater than 1/4 of Time "
2796
  "Interval."
2797
  msgstr ""
2798
 
2799
+ #: admin/views/Options.php:3592
2800
  msgid "Lightbox autoplay"
2801
  msgstr ""
2802
 
2803
+ #: admin/views/Options.php:3597
2804
  msgid "Activate this option to autoplay images in gallery lightbox."
2805
  msgstr ""
2806
 
2807
+ #: admin/views/Options.php:3606
2808
  msgid "Specify the time interval of autoplay in Photo Gallery lightbox."
2809
  msgstr ""
2810
 
2811
+ #: admin/views/Options.php:3611
2812
  msgid "Enable filmstrip"
2813
  msgstr ""
2814
 
2815
+ #: admin/views/Options.php:3616
2816
  msgid ""
2817
  "Add a filmstrip with image thumbnails to the lightbox of your galleries."
2818
  msgstr ""
2819
 
2820
+ #: admin/views/Options.php:3622
2821
  msgid "Filmstrip size"
2822
  msgstr ""
2823
 
2824
+ #: admin/views/Options.php:3665
2825
  msgid "Enable this option to show control buttons on Photo Gallery lightbox."
2826
  msgstr ""
2827
 
2828
+ #: admin/views/Options.php:3670
2829
  msgid "Enable fullscreen button"
2830
  msgstr "Tam Ekran çıkın"
2831
 
2832
+ #: admin/views/Options.php:3675
2833
  msgid ""
2834
  "Activate this setting to add Fullscreen button to lightbox control buttons."
2835
  msgstr ""
2836
 
2837
+ #: admin/views/Options.php:3680
2838
  msgid "Enable comments"
2839
  msgstr "Yorumları göster"
2840
 
2841
+ #: admin/views/Options.php:3689
2842
  msgid ""
2843
  "Let users to leave comments on images by enabling comments section of "
2844
  "lightbox."
2845
  msgstr ""
2846
 
2847
+ #: admin/views/Options.php:3695
2848
  msgid "Show Email for comments"
2849
  msgstr "Yorumları göster"
2850
 
2851
+ #: admin/views/Options.php:3700
2852
  msgid ""
2853
  "Activate this option to display email address field in comments section."
2854
  msgstr ""
2855
 
2856
+ #: admin/views/Options.php:3706
2857
  msgid "Show Captcha for comments"
2858
  msgstr "Yorumları göster"
2859
 
2860
+ #: admin/views/Options.php:3711
2861
  msgid ""
2862
  "Enable this setting to place Captcha word verification in comments section."
2863
  msgstr ""
2864
 
2865
+ #: admin/views/Options.php:3712
2866
+ msgid "Note, this option cannot be used with GDPR compliance."
2867
+ msgstr ""
2868
+
2869
+ #: admin/views/Options.php:3718
2870
  msgid "Enable comments moderation"
2871
  msgstr "Yorumunuz ılımlılık bekliyor"
2872
 
2873
+ #: admin/views/Options.php:3723
2874
  msgid "Moderate each comment left on images by activating this setting."
2875
  msgstr ""
2876
 
2877
+ #: admin/views/Options.php:3729
2878
  msgid "Show image info"
2879
  msgstr "Yorumları göster"
2880
 
2881
+ #: admin/views/Options.php:3734
2882
  msgid ""
2883
  "Activate this setting to show Info button among lightbox control buttons."
2884
  msgstr ""
2885
 
2886
+ #: admin/views/Options.php:3739
2887
  msgid "Display info by default"
2888
  msgstr ""
2889
 
2890
+ #: admin/views/Options.php:3744
2891
  msgid ""
2892
  "Enabling this option will let you show image title and description on "
2893
  "lightbox by default."
2894
  msgstr ""
2895
 
2896
+ #: admin/views/Options.php:3749
2897
  msgid "Full width info"
2898
  msgstr ""
2899
 
2900
+ #: admin/views/Options.php:3754
2901
  msgid ""
2902
  "Display info box with the full width of the lightbox by enabling this option."
2903
  msgstr ""
2904
 
2905
+ #: admin/views/Options.php:3764
2906
  msgid ""
2907
  "Choose to display Next/Previous buttons of Photo Gallery lightbox on hover "
2908
  "or always."
2909
  msgstr ""
2910
 
2911
+ #: admin/views/Options.php:3769
2912
  msgid "Display views counter"
2913
  msgstr ""
2914
 
2915
+ #: admin/views/Options.php:3774
2916
  msgid "Show the number of views, when a gallery image was opened in lightbox."
2917
  msgstr ""
2918
 
2919
+ #: admin/views/Options.php:3780
2920
  msgid "Enable rating"
2921
  msgstr "Gizle derece"
2922
 
2923
+ #: admin/views/Options.php:3785
2924
  msgid ""
2925
  "Allow users to rate your images by adding rating feature to Photo Gallery "
2926
  "lightbox."
2927
  msgstr ""
2928
 
2929
+ #: admin/views/Options.php:3793
2930
  msgid "Show Display Original Image button"
2931
  msgstr ""
2932
 
2933
+ #: admin/views/Options.php:3798
2934
  msgid ""
2935
  "Let users view original versions of your images by enabling this button."
2936
  msgstr ""
2937
 
2938
+ #: admin/views/Options.php:3803
2939
  msgid "Show download button"
2940
  msgstr ""
2941
 
2942
+ #: admin/views/Options.php:3808
2943
  msgid ""
2944
  "This option will allow users to download gallery images while viewing them "
2945
  "in lightbox."
2946
  msgstr ""
2947
 
2948
+ #: admin/views/Options.php:3813
2949
  msgid "Show image counter"
2950
  msgstr "Yorumları göster"
2951
 
2952
+ #: admin/views/Options.php:3818
2953
  msgid "Enable this option to display image counter on Photo Gallery lightbox."
2954
  msgstr ""
2955
 
2956
+ #: admin/views/Options.php:3823
2957
  msgid "Enable looping"
2958
  msgstr "Gizle derece"
2959
 
2960
+ #: admin/views/Options.php:3828
2961
  msgid ""
2962
  "Activate looping to start lightbox navigation from the beginning when users "
2963
  "reach its last image."
2964
  msgstr ""
2965
 
2966
+ #: admin/views/Options.php:3833
2967
  msgid "Enable"
2968
  msgstr ""
2969
 
2970
+ #: admin/views/Options.php:3838
2971
  msgid "Display AddThis on Photo Gallery lightbox by activating this option."
2972
  msgstr ""
2973
 
2974
+ #: admin/views/Options.php:3844
2975
  msgid "profile ID"
2976
  msgstr ""
2977
 
2978
+ #: admin/views/Options.php:3848
2979
  msgid "Provide the ID of your profile to connect to AddThis."
2980
  msgstr ""
2981
 
2982
+ #: admin/views/Options.php:3848
2983
  #, php-format
2984
  msgid "Create an account %s."
2985
  msgstr ""
2986
 
2987
+ #: admin/views/Options.php:3848 admin/views/Shortcode.php:336
2988
  msgid "here"
2989
  msgstr ""
2990
 
2991
+ #: admin/views/Options.php:3854
2992
  msgid "Show Facebook button"
2993
  msgstr "Facebook'ta paylaşın"
2994
 
2995
+ #: admin/views/Options.php:3859
2996
  msgid ""
2997
  "Enabling this setting will add Facebook sharing button to Photo Gallery "
2998
  "lightbox."
2999
  msgstr ""
3000
 
3001
+ #: admin/views/Options.php:3865
3002
  msgid "Show Twitter button"
3003
  msgstr "Twitter'da paylaşın"
3004
 
3005
+ #: admin/views/Options.php:3870
3006
  msgid "Enable this setting to add Tweet button to Photo Gallery lightbox."
3007
  msgstr ""
3008
 
3009
+ #: admin/views/Options.php:3876
3010
  msgid "Show Pinterest button"
3011
  msgstr "Pinterest Share on"
3012
 
3013
+ #: admin/views/Options.php:3881
3014
  msgid "Activate Pin button of Photo Gallery lightbox by enabling this setting."
3015
  msgstr ""
3016
 
3017
+ #: admin/views/Options.php:3887
3018
  msgid "Show Tumblr button"
3019
  msgstr "Tumblr Share on"
3020
 
3021
+ #: admin/views/Options.php:3892
3022
  msgid ""
3023
  "Allow users to share images on Tumblr from Photo Gallery lightbox by "
3024
  "activating this setting."
3025
  msgstr ""
3026
 
3027
+ #: admin/views/Options.php:3901
3028
  msgid "Show Ecommerce button"
3029
  msgstr "Yorumları göster"
3030
 
3031
+ #: admin/views/Options.php:3906
3032
  msgid "Enable this option to display ecommerce icon on Photo Gallery lightbox"
3033
  msgstr ""
3034
 
3041
  msgid "Rating"
3042
  msgstr ""
3043
 
3044
+ #: admin/views/Shortcode.php:148 admin/views/Shortcode.php:214
3045
+ msgid "View type"
3046
+ msgstr ""
3047
+
3048
+ #: admin/views/Shortcode.php:280
3049
  msgid "Select the gallery to display."
3050
  msgstr ""
3051
 
3052
+ #: admin/views/Shortcode.php:283
3053
  msgid "Gallery Group"
3054
  msgstr "Galeri boş"
3055
 
3056
+ #: admin/views/Shortcode.php:294
3057
  msgid "Select the gallery group to display."
3058
  msgstr ""
3059
 
3060
+ #: admin/views/Shortcode.php:300
3061
  msgid "Tag"
3062
  msgstr ""
3063
 
3064
+ #: admin/views/Shortcode.php:312
3065
  msgid "Filter gallery images by this tag."
3066
  msgstr "Bu galeride resim yok."
3067
 
3068
+ #: admin/views/Shortcode.php:317
3069
  msgid "Theme"
3070
  msgstr ""
3071
 
3072
+ #: admin/views/Shortcode.php:329
3073
  msgid "Choose the theme for your gallery."
3074
  msgstr ""
3075
 
3076
+ #: admin/views/Shortcode.php:335
3077
  msgid "Use default options"
3078
  msgstr ""
3079
 
3080
+ #: admin/views/Shortcode.php:336
3081
  msgid ""
3082
  "Mark this option to use default settings configured in Photo Gallery Options."
3083
  msgstr ""
3084
 
3085
+ #: admin/views/Shortcode.php:336
3086
  #, php-format
3087
  msgid "You can change the default options %s."
3088
  msgstr ""
3089
 
3090
+ #: admin/views/Shortcode.php:361
3091
  msgid "Action on image click"
3092
  msgstr ""
3093
 
3094
+ #: admin/views/Shortcode.php:371
3095
  msgid "Toggle panel"
3096
  msgstr ""
3097
 
3098
+ #: admin/views/Shortcode.php:507
3099
  msgid "Insert into post"
3100
  msgstr ""
3101
 
3102
+ #: admin/views/Shortcode.php:535
 
 
 
 
 
 
 
 
3103
  msgid "New shortcode"
3104
  msgstr ""
3105
 
3106
+ #: admin/views/Shortcode.php:544 admin/views/Shortcode.php:628
3107
  msgid "Generate"
3108
  msgstr ""
3109
 
3110
+ #: admin/views/Shortcode.php:546
3111
  msgid ""
3112
  "If you would like to edit an existing shortcode, use this dropdown box to "
3113
  "select it."
3114
  msgstr ""
3115
 
3116
+ #: admin/views/Shortcode.php:550
3117
  msgid "Shortcode"
3118
  msgstr ""
3119
 
3120
+ #: admin/views/Shortcode.php:552
3121
  msgid ""
3122
  "Add the selected gallery or gallery group to any WordPress page or post. "
3123
  "Simply copy the generated shortcode and paste it in the content of page/post "
3124
  "editor."
3125
  msgstr ""
3126
 
3127
+ #: admin/views/Shortcode.php:557
3128
  msgid "PHP function"
3129
  msgstr ""
3130
 
3131
+ #: admin/views/Shortcode.php:559
3132
  msgid ""
3133
  "Use generated PHP function to call the selected gallery or gallery group on "
3134
  "a custom PHP template."
3135
  msgstr ""
3136
 
3137
+ #: admin/views/Shortcode.php:646
3138
  msgid "There is no shortcode with such ID!"
3139
  msgstr ""
3140
 
3141
+ #: admin/views/Shortcode.php:2262
3142
  msgid "Image thumbnail width "
3143
  msgstr ""
3144
 
3145
+ #: admin/views/Shortcode.php:2264
3146
  msgid "Image thumbnail height"
3147
  msgstr ""
3148
 
3149
+ #: admin/views/Themes.php:28
3150
+ msgid "Photo Gallery Themes"
3151
+ msgstr "Facebook'ta paylaşın"
3152
+
3153
+ #: admin/views/Themes.php:39
3154
+ msgid "Build Fully Customized Gallery Views"
3155
+ msgstr ""
3156
+
3157
+ #: admin/views/Themes.php:44
3158
+ msgid "Unlimited options to completely customize every detail. "
3159
+ msgstr ""
3160
+
3161
+ #: admin/views/Themes.php:46
3162
+ msgid ""
3163
+ " Use default dark and light themes, or\n"
3164
+ " create new from scratch."
3165
+ msgstr ""
3166
+
3167
+ #: admin/views/Themes.php:53
3168
+ msgid "UPGRADE TO PREMIUM"
3169
+ msgstr ""
3170
+
3171
+ #: admin/views/Themes.php:182
3172
+ msgid "Add new theme"
3173
  msgstr ""
3174
 
3175
+ #: admin/views/Themes.php:337
3176
  msgid "Theme title"
3177
  msgstr "Derece Show"
3178
 
3179
+ #: admin/views/Themes.php:342
3180
+ msgid "Save"
3181
+ msgstr ""
3182
+
3183
+ #: admin/views/Themes.php:345
3184
  msgid "Reset to default theme"
3185
  msgstr ""
3186
 
3187
+ #: admin/views/Themes.php:373 admin/views/Themes.php:683
3188
+ #: admin/views/Themes.php:958 admin/views/Themes.php:1912
3189
+ #: admin/views/Themes.php:2803
3190
  msgid "Distance between pictures:"
3191
  msgstr ""
3192
 
3193
+ #: admin/views/Themes.php:379 admin/views/Themes.php:689
3194
+ #: admin/views/Themes.php:964 admin/views/Themes.php:1918
3195
+ #: admin/views/Themes.php:2809
3196
  msgid "Distance from container frame:"
3197
  msgstr ""
3198
 
3199
+ #: admin/views/Themes.php:385 admin/views/Themes.php:695
3200
+ #: admin/views/Themes.php:970 admin/views/Themes.php:1924
3201
+ #: admin/views/Themes.php:2815
3202
  msgid ""
3203
  "Enable this option to add distance between the parent container and the "
3204
  "thumbnails grid."
3205
  msgstr ""
3206
 
3207
+ #: admin/views/Themes.php:389 admin/views/Themes.php:1677
3208
+ #: admin/views/Themes.php:1928 admin/views/Themes.php:2427
3209
+ #: admin/views/Themes.php:3130 admin/views/Themes.php:4381
3210
  msgid "Padding:"
3211
  msgstr ""
3212
 
3213
+ #: admin/views/Themes.php:395 admin/views/Themes.php:699
3214
+ #: admin/views/Themes.php:974 admin/views/Themes.php:1684
3215
+ #: admin/views/Themes.php:1935 admin/views/Themes.php:2819
3216
+ #: admin/views/Themes.php:3170 admin/views/Themes.php:4331
3217
  msgid "Border width:"
3218
  msgstr ""
3219
 
3220
+ #: admin/views/Themes.php:401 admin/views/Themes.php:705
3221
+ #: admin/views/Themes.php:980 admin/views/Themes.php:1690
3222
+ #: admin/views/Themes.php:1941 admin/views/Themes.php:2825
3223
+ #: admin/views/Themes.php:3176 admin/views/Themes.php:4337
3224
  msgid "Border style:"
3225
  msgstr "Sipariş:"
3226
 
3227
+ #: admin/views/Themes.php:415 admin/views/Themes.php:719
3228
+ #: admin/views/Themes.php:994 admin/views/Themes.php:1704
3229
+ #: admin/views/Themes.php:1955 admin/views/Themes.php:2839
3230
+ #: admin/views/Themes.php:3190 admin/views/Themes.php:4351
3231
  msgid "Border color:"
3232
  msgstr ""
3233
 
3234
+ #: admin/views/Themes.php:421 admin/views/Themes.php:725
3235
+ #: admin/views/Themes.php:1000 admin/views/Themes.php:1710
3236
+ #: admin/views/Themes.php:1961 admin/views/Themes.php:2446
3237
+ #: admin/views/Themes.php:2845 admin/views/Themes.php:3196
3238
+ #: admin/views/Themes.php:4357
3239
  msgid "Border radius:"
3240
  msgstr ""
3241
 
3242
+ #: admin/views/Themes.php:424 admin/views/Themes.php:431
3243
+ #: admin/views/Themes.php:582 admin/views/Themes.php:589
3244
+ #: admin/views/Themes.php:644 admin/views/Themes.php:651
3245
+ #: admin/views/Themes.php:728 admin/views/Themes.php:866
3246
+ #: admin/views/Themes.php:919 admin/views/Themes.php:926
3247
+ #: admin/views/Themes.php:1003 admin/views/Themes.php:1143
3248
+ #: admin/views/Themes.php:1150 admin/views/Themes.php:1187
3249
+ #: admin/views/Themes.php:1194 admin/views/Themes.php:1310
3250
+ #: admin/views/Themes.php:1331 admin/views/Themes.php:1359
3251
+ #: admin/views/Themes.php:1393 admin/views/Themes.php:1449
3252
+ #: admin/views/Themes.php:1509 admin/views/Themes.php:1516
3253
+ #: admin/views/Themes.php:1552 admin/views/Themes.php:1559
3254
+ #: admin/views/Themes.php:1596 admin/views/Themes.php:1616
3255
+ #: admin/views/Themes.php:1673 admin/views/Themes.php:1680
3256
+ #: admin/views/Themes.php:1713 admin/views/Themes.php:1733
3257
+ #: admin/views/Themes.php:1789 admin/views/Themes.php:1796
3258
+ #: admin/views/Themes.php:1829 admin/views/Themes.php:1873
3259
+ #: admin/views/Themes.php:1880 admin/views/Themes.php:1931
3260
+ #: admin/views/Themes.php:1964 admin/views/Themes.php:1971
3261
+ #: admin/views/Themes.php:2120 admin/views/Themes.php:2127
3262
+ #: admin/views/Themes.php:2164 admin/views/Themes.php:2201
3263
+ #: admin/views/Themes.php:2208 admin/views/Themes.php:2281
3264
+ #: admin/views/Themes.php:2288 admin/views/Themes.php:2376
3265
+ #: admin/views/Themes.php:2416 admin/views/Themes.php:2423
3266
+ #: admin/views/Themes.php:2449 admin/views/Themes.php:2482
3267
+ #: admin/views/Themes.php:2543 admin/views/Themes.php:2576
3268
+ #: admin/views/Themes.php:2595 admin/views/Themes.php:2658
3269
+ #: admin/views/Themes.php:2763 admin/views/Themes.php:2770
3270
+ #: admin/views/Themes.php:2848 admin/views/Themes.php:2983
3271
+ #: admin/views/Themes.php:3020 admin/views/Themes.php:3057
3272
+ #: admin/views/Themes.php:3064 admin/views/Themes.php:3126
3273
+ #: admin/views/Themes.php:3133 admin/views/Themes.php:3140
3274
+ #: admin/views/Themes.php:3199 admin/views/Themes.php:3216
3275
+ #: admin/views/Themes.php:3261 admin/views/Themes.php:3326
3276
+ #: admin/views/Themes.php:3333 admin/views/Themes.php:3427
3277
+ #: admin/views/Themes.php:3481 admin/views/Themes.php:3514
3278
+ #: admin/views/Themes.php:3622 admin/views/Themes.php:3659
3279
+ #: admin/views/Themes.php:3703 admin/views/Themes.php:3736
3280
+ #: admin/views/Themes.php:3841 admin/views/Themes.php:3910
3281
+ #: admin/views/Themes.php:3917 admin/views/Themes.php:3924
3282
+ #: admin/views/Themes.php:4034 admin/views/Themes.php:4041
3283
+ #: admin/views/Themes.php:4048 admin/views/Themes.php:4205
3284
+ #: admin/views/Themes.php:4224 admin/views/Themes.php:4257
3285
+ #: admin/views/Themes.php:4360 admin/views/Themes.php:4377
3286
+ #: admin/views/Themes.php:4384 admin/views/Themes.php:4413
3287
+ #: admin/views/Themes.php:4574 admin/views/Themes.php:4663
3288
+ #: admin/views/Themes.php:4743 admin/views/Themes.php:4750
3289
  msgid "Use CSS type values."
3290
  msgstr ""
3291
 
3292
+ #: admin/views/Themes.php:428 admin/views/Themes.php:1968
3293
  msgid "Shadow:"
3294
  msgstr ""
3295
 
3296
+ #: admin/views/Themes.php:435 admin/views/Themes.php:732
3297
+ #: admin/views/Themes.php:1007 admin/views/Themes.php:1975
3298
+ #: admin/views/Themes.php:2852
3299
  msgid "Hover effect:"
3300
  msgstr ""
3301
 
3302
+ #: admin/views/Themes.php:449 admin/views/Themes.php:746
3303
+ #: admin/views/Themes.php:1021 admin/views/Themes.php:1989
3304
+ #: admin/views/Themes.php:2336 admin/views/Themes.php:2866
3305
  msgid "Hover effect value:"
3306
  msgstr ""
3307
 
3308
+ #: admin/views/Themes.php:452
3309
  msgid "E.g. Rotate: 10deg, Scale/Zoom: 1.5, Skew: 10deg."
3310
  msgstr ""
3311
 
3312
+ #: admin/views/Themes.php:456 admin/views/Themes.php:753
3313
+ #: admin/views/Themes.php:1028
3314
  msgid "Transition:"
3315
  msgstr ""
3316
 
3317
+ #: admin/views/Themes.php:476 admin/views/Themes.php:773
3318
+ #: admin/views/Themes.php:1047 admin/views/Themes.php:2015
3319
+ #: admin/views/Themes.php:2343 admin/views/Themes.php:2893
3320
  msgid "Thumbnail background color:"
3321
  msgstr ""
3322
 
3323
+ #: admin/views/Themes.php:483 admin/views/Themes.php:780
3324
+ #: admin/views/Themes.php:1053 admin/views/Themes.php:2021
3325
+ #: admin/views/Themes.php:2355
3326
+ msgid "Thumbnail background transparency:"
3327
  msgstr ""
3328
 
3329
+ #: admin/views/Themes.php:486 admin/views/Themes.php:493
3330
+ #: admin/views/Themes.php:506 admin/views/Themes.php:783
3331
+ #: admin/views/Themes.php:790 admin/views/Themes.php:803
3332
+ #: admin/views/Themes.php:1056 admin/views/Themes.php:1063
3333
+ #: admin/views/Themes.php:1076 admin/views/Themes.php:1253
3334
+ #: admin/views/Themes.php:1412 admin/views/Themes.php:1502
3335
+ #: admin/views/Themes.php:1545 admin/views/Themes.php:1609
3336
+ #: admin/views/Themes.php:1726 admin/views/Themes.php:2024
3337
+ #: admin/views/Themes.php:2031 admin/views/Themes.php:2044
3338
+ #: admin/views/Themes.php:2318 admin/views/Themes.php:2358
3339
+ #: admin/views/Themes.php:2442 admin/views/Themes.php:2903
3340
+ #: admin/views/Themes.php:2916 admin/views/Themes.php:3105
3341
+ #: admin/views/Themes.php:3274 admin/views/Themes.php:3374
3342
+ #: admin/views/Themes.php:3387 admin/views/Themes.php:3434
3343
+ #: admin/views/Themes.php:3461 admin/views/Themes.php:3755
3344
+ #: admin/views/Themes.php:3877 admin/views/Themes.php:4001
3345
+ #: admin/views/Themes.php:4397 admin/views/Themes.php:4492
3346
+ #: admin/views/Themes.php:4517 admin/views/Themes.php:4656
3347
  msgid "Value must be between 0 to 100."
3348
  msgstr ""
3349
 
3350
+ #: admin/views/Themes.php:490 admin/views/Themes.php:2028
3351
+ #: admin/views/Themes.php:2315 admin/views/Themes.php:2900
3352
+ msgid "Thumbnail transparency:"
3353
+ msgstr ""
3354
+
3355
+ #: admin/views/Themes.php:497 admin/views/Themes.php:1600
3356
+ #: admin/views/Themes.php:2035 admin/views/Themes.php:2907
3357
  msgid "Full background color:"
3358
  msgstr ""
3359
 
3360
+ #: admin/views/Themes.php:503 admin/views/Themes.php:1606
3361
+ #: admin/views/Themes.php:2041 admin/views/Themes.php:2913
3362
  msgid "Full background transparency:"
3363
  msgstr ""
3364
 
3365
+ #: admin/views/Themes.php:510 admin/views/Themes.php:807
3366
+ #: admin/views/Themes.php:1080 admin/views/Themes.php:1656
3367
+ #: admin/views/Themes.php:2048 admin/views/Themes.php:2920
3368
+ #: admin/views/Themes.php:3109 admin/views/Themes.php:4436
3369
  msgid "Alignment:"
3370
  msgstr ""
3371
 
3372
+ #: admin/views/Themes.php:534 admin/views/Themes.php:1747
3373
+ #: admin/views/Themes.php:2072
3374
  msgid "Title position:"
3375
  msgstr ""
3376
 
3377
+ #: admin/views/Themes.php:537 admin/views/Themes.php:1348
3378
+ #: admin/views/Themes.php:1750 admin/views/Themes.php:2075
3379
+ #: admin/views/Themes.php:3412 admin/views/Themes.php:3692
3380
+ #: admin/views/Themes.php:3780 admin/views/Themes.php:3848
3381
+ #: admin/views/Themes.php:3972 admin/views/Themes.php:4430
3382
  msgid "Top"
3383
  msgstr ""
3384
 
3385
+ #: admin/views/Themes.php:539 admin/views/Themes.php:1350
3386
+ #: admin/views/Themes.php:1752 admin/views/Themes.php:2077
3387
+ #: admin/views/Themes.php:3414 admin/views/Themes.php:3694
3388
+ #: admin/views/Themes.php:3782 admin/views/Themes.php:3850
3389
+ #: admin/views/Themes.php:3974 admin/views/Themes.php:4432
3390
  msgid "Bottom"
3391
  msgstr ""
3392
 
3393
+ #: admin/views/Themes.php:543 admin/views/Themes.php:827
3394
+ #: admin/views/Themes.php:1104 admin/views/Themes.php:2081
3395
+ #: admin/views/Themes.php:2625 admin/views/Themes.php:2944
3396
+ #: admin/views/Themes.php:4076 admin/views/Themes.php:4683
3397
  msgid "Title font size:"
3398
  msgstr ""
3399
 
3400
+ #: admin/views/Themes.php:549 admin/views/Themes.php:833
3401
+ #: admin/views/Themes.php:1110 admin/views/Themes.php:2087
3402
+ #: admin/views/Themes.php:2631 admin/views/Themes.php:2950
3403
+ #: admin/views/Themes.php:4052
3404
  msgid "Title font color:"
3405
  msgstr ""
3406
 
3407
+ #: admin/views/Themes.php:555 admin/views/Themes.php:839
3408
+ #: admin/views/Themes.php:1116 admin/views/Themes.php:2093
3409
+ #: admin/views/Themes.php:2956
3410
  msgid "Title font color (Show on hover):"
3411
  msgstr ""
3412
 
3413
+ #: admin/views/Themes.php:562 admin/views/Themes.php:846
3414
+ #: admin/views/Themes.php:1123 admin/views/Themes.php:1533
3415
+ #: admin/views/Themes.php:2100 admin/views/Themes.php:2638
3416
+ #: admin/views/Themes.php:2963 admin/views/Themes.php:4059
3417
  msgid "Title font family:"
3418
  msgstr ""
3419
 
3420
+ #: admin/views/Themes.php:565 admin/views/Themes.php:849
3421
+ #: admin/views/Themes.php:1126 admin/views/Themes.php:2103
3422
+ #: admin/views/Themes.php:2641 admin/views/Themes.php:2966
3423
+ #: admin/views/Themes.php:4062 admin/views/Themes.php:4695
3424
  msgid "Title font weight:"
3425
  msgstr ""
3426
 
3427
+ #: admin/views/Themes.php:579 admin/views/Themes.php:1140
3428
+ #: admin/views/Themes.php:2117 admin/views/Themes.php:2980
3429
  msgid "Title box shadow:"
3430
  msgstr ""
3431
 
3432
+ #: admin/views/Themes.php:586 admin/views/Themes.php:863
3433
+ #: admin/views/Themes.php:1147 admin/views/Themes.php:2124
3434
+ #: admin/views/Themes.php:2586 admin/views/Themes.php:4667
3435
  msgid "Title margin:"
3436
  msgstr ""
3437
 
3438
+ #: admin/views/Themes.php:593
3439
+ msgid "Thumb description font size:"
3440
+ msgstr ""
3441
+
3442
+ #: admin/views/Themes.php:600
3443
+ msgid "Thumb description font color:"
3444
+ msgstr ""
3445
+
3446
+ #: admin/views/Themes.php:607 admin/views/Themes.php:883
3447
+ #: admin/views/Themes.php:1576 admin/views/Themes.php:2701
3448
+ #: admin/views/Themes.php:4090
3449
+ msgid "Description font family:"
3450
+ msgstr ""
3451
+
3452
+ #: admin/views/Themes.php:610 admin/views/Themes.php:886
3453
+ #: admin/views/Themes.php:1154 admin/views/Themes.php:1839
3454
+ #: admin/views/Themes.php:2168 admin/views/Themes.php:2730
3455
+ #: admin/views/Themes.php:3024 admin/views/Themes.php:3292
3456
+ #: admin/views/Themes.php:4709
3457
  msgid "Gallery title/description font size:"
3458
  msgstr ""
3459
 
3460
+ #: admin/views/Themes.php:617 admin/views/Themes.php:892
3461
+ #: admin/views/Themes.php:1160 admin/views/Themes.php:1846
3462
+ #: admin/views/Themes.php:2174 admin/views/Themes.php:2736
3463
+ #: admin/views/Themes.php:3030 admin/views/Themes.php:3299
3464
+ #: admin/views/Themes.php:4716
3465
  msgid "Gallery title/description font color:"
3466
  msgstr ""
3467
 
3468
+ #: admin/views/Themes.php:624 admin/views/Themes.php:899
3469
+ #: admin/views/Themes.php:1167 admin/views/Themes.php:1853
3470
+ #: admin/views/Themes.php:2181 admin/views/Themes.php:2743
3471
+ #: admin/views/Themes.php:3037 admin/views/Themes.php:3306
3472
+ #: admin/views/Themes.php:4723
3473
  msgid "Gallery title/description font family:"
3474
  msgstr ""
3475
 
3476
+ #: admin/views/Themes.php:627 admin/views/Themes.php:902
3477
+ #: admin/views/Themes.php:1170 admin/views/Themes.php:1856
3478
+ #: admin/views/Themes.php:2184 admin/views/Themes.php:2746
3479
+ #: admin/views/Themes.php:3040 admin/views/Themes.php:3309
3480
+ #: admin/views/Themes.php:4726
3481
  msgid "Gallery title/description font weight:"
3482
  msgstr ""
3483
 
3484
+ #: admin/views/Themes.php:641 admin/views/Themes.php:916
3485
+ #: admin/views/Themes.php:1184 admin/views/Themes.php:1870
3486
+ #: admin/views/Themes.php:2198 admin/views/Themes.php:2760
3487
+ #: admin/views/Themes.php:3054 admin/views/Themes.php:3323
3488
+ #: admin/views/Themes.php:4740
3489
  msgid "Gallery title/description box shadow:"
3490
  msgstr ""
3491
 
3492
+ #: admin/views/Themes.php:648 admin/views/Themes.php:923
3493
+ #: admin/views/Themes.php:1191 admin/views/Themes.php:1877
3494
+ #: admin/views/Themes.php:2205 admin/views/Themes.php:2767
3495
+ #: admin/views/Themes.php:3061 admin/views/Themes.php:3330
3496
+ #: admin/views/Themes.php:4747
3497
  msgid "Gallery title/description margin:"
3498
  msgstr ""
3499
 
3500
+ #: admin/views/Themes.php:655 admin/views/Themes.php:930
3501
+ #: admin/views/Themes.php:1198 admin/views/Themes.php:1884
3502
+ #: admin/views/Themes.php:2212 admin/views/Themes.php:2774
3503
+ #: admin/views/Themes.php:3068 admin/views/Themes.php:3337
3504
+ #: admin/views/Themes.php:4754
3505
  msgid "Gallery title alignment:"
3506
  msgstr "Galeri boş:"
3507
 
3508
+ #: admin/views/Themes.php:749 admin/views/Themes.php:1024
3509
+ #: admin/views/Themes.php:1992 admin/views/Themes.php:2339
3510
+ #: admin/views/Themes.php:2869
3511
  msgid "E.g. Rotate: 10deg, Scale: 1.5, Skew: 10deg."
3512
  msgstr ""
3513
 
3514
+ #: admin/views/Themes.php:787 admin/views/Themes.php:1060
3515
  msgid "Transparency:"
3516
  msgstr ""
3517
 
3518
+ #: admin/views/Themes.php:794 admin/views/Themes.php:1067
3519
  msgid "Full Background color:"
3520
  msgstr ""
3521
 
3522
+ #: admin/views/Themes.php:800 admin/views/Themes.php:1073
3523
+ #: admin/views/Themes.php:1723 admin/views/Themes.php:2439
3524
+ #: admin/views/Themes.php:3102
3525
  msgid "Background transparency:"
3526
  msgstr ""
3527
 
3528
+ #: admin/views/Themes.php:870 admin/views/Themes.php:1563
3529
+ #: admin/views/Themes.php:2688 admin/views/Themes.php:4107
3530
  msgid "Description font size:"
3531
  msgstr ""
3532
 
3533
+ #: admin/views/Themes.php:876 admin/views/Themes.php:2694
3534
+ #: admin/views/Themes.php:4083
3535
  msgid "Description font color:"
3536
  msgstr ""
3537
 
3538
+ #: admin/views/Themes.php:1226 admin/views/Themes.php:1717
3539
+ #: admin/views/Themes.php:2433 admin/views/Themes.php:3096
3540
+ #: admin/views/Themes.php:4483
 
 
 
 
 
3541
  msgid "Background color:"
3542
  msgstr ""
3543
 
3544
+ #: admin/views/Themes.php:1232 admin/views/Themes.php:3638
3545
+ #: admin/views/Themes.php:4496
3546
  msgid "Right, left buttons size:"
3547
  msgstr ""
3548
 
3549
+ #: admin/views/Themes.php:1238 admin/views/Themes.php:4502
3550
  msgid "Play, pause buttons size:"
3551
  msgstr ""
3552
 
3553
+ #: admin/views/Themes.php:1244 admin/views/Themes.php:3226
3554
+ #: admin/views/Themes.php:4508
3555
  msgid "Buttons color:"
3556
  msgstr ""
3557
 
3558
+ #: admin/views/Themes.php:1250 admin/views/Themes.php:4514
3559
  msgid "Buttons transparency:"
3560
  msgstr ""
3561
 
3562
+ #: admin/views/Themes.php:1257 admin/views/Themes.php:4521
3563
  msgid "Buttons hover color:"
3564
  msgstr ""
3565
 
3566
+ #: admin/views/Themes.php:1263 admin/views/Themes.php:3632
3567
+ #: admin/views/Themes.php:4527
3568
  msgid "Right, left buttons width:"
3569
  msgstr ""
3570
 
3571
+ #: admin/views/Themes.php:1269 admin/views/Themes.php:3626
3572
+ #: admin/views/Themes.php:4533
3573
  msgid "Right, left buttons height:"
3574
  msgstr ""
3575
 
3576
+ #: admin/views/Themes.php:1275 admin/views/Themes.php:3607
3577
+ #: admin/views/Themes.php:4539
3578
  msgid "Right, left buttons background color:"
3579
  msgstr ""
3580
 
3581
+ #: admin/views/Themes.php:1281 admin/views/Themes.php:3663
3582
+ #: admin/views/Themes.php:4545
3583
  msgid "Right, left buttons border width:"
3584
  msgstr ""
3585
 
3586
+ #: admin/views/Themes.php:1287 admin/views/Themes.php:3669
3587
+ #: admin/views/Themes.php:4551
3588
  msgid "Right, left buttons border style:"
3589
  msgstr ""
3590
 
3591
+ #: admin/views/Themes.php:1301 admin/views/Themes.php:3683
3592
+ #: admin/views/Themes.php:4565
3593
  msgid "Right, left buttons border color:"
3594
  msgstr ""
3595
 
3596
+ #: admin/views/Themes.php:1307 admin/views/Themes.php:3656
3597
+ #: admin/views/Themes.php:4571
3598
  msgid "Right, left buttons border radius:"
3599
  msgstr ""
3600
 
3601
+ #: admin/views/Themes.php:1314 admin/views/Themes.php:3593
3602
+ #: admin/views/Themes.php:4578
3603
  msgid "Right, left buttons style:"
3604
  msgstr ""
3605
 
3606
+ #: admin/views/Themes.php:1328 admin/views/Themes.php:3619
3607
  msgid "Right, left buttons box shadow:"
3608
  msgstr ""
3609
 
3610
+ #: admin/views/Themes.php:1345
3611
  msgid "Filmstrip/Slider bullet position:"
3612
  msgstr ""
3613
 
3614
+ #: admin/views/Themes.php:1356
3615
  msgid "Filmstrip margin:"
3616
  msgstr ""
3617
 
3618
+ #: admin/views/Themes.php:1363
3619
  msgid "Filmstrip border width:"
3620
  msgstr ""
3621
 
3622
+ #: admin/views/Themes.php:1369
3623
  msgid "Filmstrip border style:"
3624
  msgstr ""
3625
 
3626
+ #: admin/views/Themes.php:1384
3627
  msgid "Filmstrip border color:"
3628
  msgstr ""
3629
 
3630
+ #: admin/views/Themes.php:1390
3631
  msgid "Filmstrip border radius:"
3632
  msgstr ""
3633
 
3634
+ #: admin/views/Themes.php:1397
3635
  msgid "Filmstrip active border width:"
3636
  msgstr ""
3637
 
3638
+ #: admin/views/Themes.php:1403
3639
  msgid "Filmstrip active border color:"
3640
  msgstr ""
3641
 
3642
+ #: admin/views/Themes.php:1409
3643
  msgid "Filmstrip deactive transparency: "
3644
  msgstr ""
3645
 
3646
+ #: admin/views/Themes.php:1416
3647
  msgid "Filmstrip right, left buttons background color: "
3648
  msgstr ""
3649
 
3650
+ #: admin/views/Themes.php:1422 admin/views/Themes.php:3765
3651
  msgid "Filmstrip right, left buttons color:"
3652
  msgstr ""
3653
 
3654
+ #: admin/views/Themes.php:1428 admin/views/Themes.php:3759
3655
  msgid "Filmstrip right, left buttons size:"
3656
  msgstr ""
3657
 
3658
+ #: admin/views/Themes.php:1434
3659
  msgid "Slider bullet width: "
3660
  msgstr ""
3661
 
3662
+ #: admin/views/Themes.php:1440
3663
  msgid "Slider bullet height:"
3664
  msgstr ""
3665
 
3666
+ #: admin/views/Themes.php:1446
3667
  msgid "Slider bullet border radius: "
3668
  msgstr ""
3669
 
3670
+ #: admin/views/Themes.php:1453
3671
  msgid "Slider bullet background color:"
3672
  msgstr ""
3673
 
3674
+ #: admin/views/Themes.php:1459
3675
  msgid "Slider bullet margin:"
3676
  msgstr ""
3677
 
3678
+ #: admin/views/Themes.php:1465
3679
  msgid "Slider bullet active background color: "
3680
  msgstr ""
3681
 
3682
+ #: admin/views/Themes.php:1471
3683
  msgid "Slider bullet active border width:"
3684
  msgstr ""
3685
 
3686
+ #: admin/views/Themes.php:1477
3687
  msgid "Slider bullet active border color: "
3688
  msgstr ""
3689
 
3690
+ #: admin/views/Themes.php:1493
3691
  msgid "Title background color: "
3692
  msgstr ""
3693
 
3694
+ #: admin/views/Themes.php:1499
3695
  msgid "Title transparency: "
3696
  msgstr ""
3697
 
3698
+ #: admin/views/Themes.php:1506 admin/views/Themes.php:4660
3699
  msgid "Title border radius:"
3700
  msgstr ""
3701
 
3702
+ #: admin/views/Themes.php:1513
3703
  msgid "Title padding: "
3704
  msgstr ""
3705
 
3706
+ #: admin/views/Themes.php:1520
3707
  msgid "Title font size: "
3708
  msgstr ""
3709
 
3710
+ #: admin/views/Themes.php:1526
3711
  msgid "Title color: "
3712
  msgstr ""
3713
 
3714
+ #: admin/views/Themes.php:1536 admin/views/Themes.php:1833
3715
  msgid "Description background color:"
3716
  msgstr ""
3717
 
3718
+ #: admin/views/Themes.php:1542
3719
  msgid "Description transparency:"
3720
  msgstr ""
3721
 
3722
+ #: admin/views/Themes.php:1549 admin/views/Themes.php:1826
3723
  msgid "Description border radius:"
3724
  msgstr ""
3725
 
3726
+ #: admin/views/Themes.php:1556 admin/views/Themes.php:1793
3727
+ #: admin/views/Themes.php:2655
3728
  msgid "Description padding:"
3729
  msgstr ""
3730
 
3731
+ #: admin/views/Themes.php:1569
3732
  msgid "Description color:"
3733
  msgstr ""
3734
 
3735
+ #: admin/views/Themes.php:1593
3736
  msgid "Full padding:"
3737
  msgstr ""
3738
 
3739
+ #: admin/views/Themes.php:1613
3740
  msgid "Full border radius:"
3741
  msgstr ""
3742
 
3743
+ #: admin/views/Themes.php:1620
3744
  msgid "Full border width:"
3745
  msgstr ""
3746
 
3747
+ #: admin/views/Themes.php:1626
3748
  msgid "Full border style:"
3749
  msgstr ""
3750
 
3751
+ #: admin/views/Themes.php:1640
3752
  msgid "Full border color:"
3753
  msgstr ""
3754
 
3755
+ #: admin/views/Themes.php:1670 admin/views/Themes.php:2420
3756
+ #: admin/views/Themes.php:3123 admin/views/Themes.php:4374
3757
  msgid "Margin:"
3758
  msgstr ""
3759
 
3760
+ #: admin/views/Themes.php:1730 admin/views/Themes.php:3137
3761
+ #: admin/views/Themes.php:4410
3762
  msgid "Box shadow:"
3763
  msgstr ""
3764
 
3765
+ #: admin/views/Themes.php:1756
3766
  msgid "Title alignment:"
3767
  msgstr ""
3768
 
3769
+ #: admin/views/Themes.php:1770 admin/views/Themes.php:3158
3770
+ #: admin/views/Themes.php:4301
3771
  msgid "Font size:"
3772
  msgstr ""
3773
 
3774
+ #: admin/views/Themes.php:1776 admin/views/Themes.php:3164
3775
+ #: admin/views/Themes.php:4307
3776
  msgid "Font color:"
3777
  msgstr ""
3778
 
3779
+ #: admin/views/Themes.php:1783 admin/views/Themes.php:3155
3780
+ #: admin/views/Themes.php:4314
3781
  msgid "Font family:"
3782
  msgstr ""
3783
 
3784
+ #: admin/views/Themes.php:1786
3785
  msgid "Description margin:"
3786
  msgstr ""
3787
 
3788
+ #: admin/views/Themes.php:1800 admin/views/Themes.php:2662
3789
  msgid "Description border width:"
3790
  msgstr ""
3791
 
3792
+ #: admin/views/Themes.php:1806 admin/views/Themes.php:2668
3793
  msgid "Description border style:"
3794
  msgstr ""
3795
 
3796
+ #: admin/views/Themes.php:1820 admin/views/Themes.php:2682
3797
  msgid "Description border color:"
3798
  msgstr ""
3799
 
3800
+ #: admin/views/Themes.php:1996 admin/views/Themes.php:2292
3801
+ #: admin/views/Themes.php:2873
3802
  msgid "Thumbnail transition:"
3803
  msgstr ""
3804
 
3805
+ #: admin/views/Themes.php:2131 admin/views/Themes.php:2987
3806
  msgid "Back Font size:"
3807
  msgstr ""
3808
 
3809
+ #: admin/views/Themes.php:2137 admin/views/Themes.php:2993
3810
  msgid "Back Font color:"
3811
  msgstr "Facebook'ta paylaşın:"
3812
 
3813
+ #: admin/views/Themes.php:2144 admin/views/Themes.php:3000
3814
  msgid "Back Font family:"
3815
  msgstr ""
3816
 
3817
+ #: admin/views/Themes.php:2147 admin/views/Themes.php:3003
3818
  msgid "Back Font weight:"
3819
  msgstr ""
3820
 
3821
+ #: admin/views/Themes.php:2161 admin/views/Themes.php:2479
3822
+ #: admin/views/Themes.php:3017
3823
  msgid "Back padding:"
3824
  msgstr ""
3825
 
3826
+ #: admin/views/Themes.php:2240
3827
  msgid "Thumbnail margin:"
3828
  msgstr ""
3829
 
3830
+ #: admin/views/Themes.php:2246
3831
  msgid "Thumbnail padding:"
3832
  msgstr ""
3833
 
3834
+ #: admin/views/Themes.php:2252
3835
  msgid "Thumbnail border width:"
3836
  msgstr ""
3837
 
3838
+ #: admin/views/Themes.php:2258
3839
  msgid "Thumbnail border style:"
3840
  msgstr ""
3841
 
3842
+ #: admin/views/Themes.php:2272
3843
  msgid "Thumbnail border color:"
3844
  msgstr ""
3845
 
3846
+ #: admin/views/Themes.php:2278
3847
  msgid "Thumbnail border radius:"
3848
  msgstr ""
3849
 
3850
+ #: admin/views/Themes.php:2285
3851
  msgid "Thumbnail box shadow:"
3852
  msgstr ""
3853
 
3854
+ #: admin/views/Themes.php:2301
3855
  msgid "Description alignment:"
3856
  msgstr ""
3857
 
3858
+ #: admin/views/Themes.php:2322
3859
  msgid "Thumbnail hover effect:"
3860
  msgstr ""
3861
 
3862
+ #: admin/views/Themes.php:2349
3863
  msgid "Thumbnails background color:"
3864
  msgstr ""
3865
 
3866
+ #: admin/views/Themes.php:2373
 
 
 
 
3867
  msgid "Thumbnail div padding:"
3868
  msgstr ""
3869
 
3870
+ #: admin/views/Themes.php:2380
3871
  msgid "Thumbnail div background color:"
3872
  msgstr ""
3873
 
3874
+ #: admin/views/Themes.php:2386
3875
  msgid "Thumbnail div border width:"
3876
  msgstr ""
3877
 
3878
+ #: admin/views/Themes.php:2393
3879
  msgid "humbnail div border style:"
3880
  msgstr ""
3881
 
3882
+ #: admin/views/Themes.php:2407
3883
  msgid "Thumbnail div border color:"
3884
  msgstr ""
3885
 
3886
+ #: admin/views/Themes.php:2413
3887
  msgid "Thumbnail div border radius:"
3888
  msgstr ""
3889
 
3890
+ #: admin/views/Themes.php:2453
3891
  msgid "Separator width:"
3892
  msgstr ""
3893
 
3894
+ #: admin/views/Themes.php:2459
3895
  msgid "Separator style:"
3896
  msgstr ""
3897
 
3898
+ #: admin/views/Themes.php:2473
3899
  msgid "Separator color:"
3900
  msgstr ""
3901
 
3902
+ #: admin/views/Themes.php:2486
3903
  msgid "Back font size:"
3904
  msgstr ""
3905
 
3906
+ #: admin/views/Themes.php:2492
3907
  msgid "Back font color:"
3908
  msgstr ""
3909
 
3910
+ #: admin/views/Themes.php:2499
3911
  msgid "Back font family:"
3912
  msgstr ""
3913
 
3914
+ #: admin/views/Themes.php:2502
3915
  msgid "Back font weight:"
3916
  msgstr ""
3917
 
3918
+ #: admin/views/Themes.php:2526
3919
  msgid "Title/description alignment:"
3920
  msgstr ""
3921
 
3922
+ #: admin/views/Themes.php:2540
3923
  msgid "Text div padding:"
3924
  msgstr ""
3925
 
3926
+ #: admin/views/Themes.php:2547
3927
  msgid "Text div border width:"
3928
  msgstr ""
3929
 
3930
+ #: admin/views/Themes.php:2553
3931
  msgid "Text border style:"
3932
  msgstr ""
3933
 
3934
+ #: admin/views/Themes.php:2567
3935
  msgid "Text border color:"
3936
  msgstr ""
3937
 
3938
+ #: admin/views/Themes.php:2573
3939
  msgid "Text div border radius:"
3940
  msgstr ""
3941
 
3942
+ #: admin/views/Themes.php:2580
3943
  msgid "Text background color:"
3944
  msgstr ""
3945
 
3946
+ #: admin/views/Themes.php:2592 admin/views/Themes.php:4673
3947
  msgid "Title padding:"
3948
  msgstr ""
3949
 
3950
+ #: admin/views/Themes.php:2599
3951
  msgid "Title border width:"
3952
  msgstr ""
3953
 
3954
+ #: admin/views/Themes.php:2605
3955
  msgid "Title border style:"
3956
  msgstr ""
3957
 
3958
+ #: admin/views/Themes.php:2619
3959
  msgid "Title border color:"
3960
  msgstr ""
3961
 
3962
+ #: admin/views/Themes.php:2704 admin/views/Themes.php:4093
3963
  msgid "Description font weight:"
3964
  msgstr ""
3965
 
3966
+ #: admin/views/Themes.php:2718
3967
  msgid "Description more size:"
3968
  msgstr ""
3969
 
3970
+ #: admin/views/Themes.php:2724
3971
  msgid "Description more color:"
3972
  msgstr ""
3973
 
3974
+ #: admin/views/Themes.php:3213
3975
  msgid "Buttons and title margin:"
3976
  msgstr ""
3977
 
3978
+ #: admin/views/Themes.php:3220
3979
  msgid "Buttons size:"
3980
  msgstr ""
3981
 
3982
+ #: admin/views/Themes.php:3232
3983
  msgid "Buttons and title border width:"
3984
  msgstr ""
3985
 
3986
+ #: admin/views/Themes.php:3238
3987
  msgid "Buttons and title border style:"
3988
  msgstr ""
3989
 
3990
+ #: admin/views/Themes.php:3252
3991
  msgid "Buttons and title border color:"
3992
  msgstr ""
3993
 
3994
+ #: admin/views/Themes.php:3258
3995
  msgid "Buttons and title border radius:"
3996
  msgstr ""
3997
 
3998
+ #: admin/views/Themes.php:3265
3999
  msgid "Buttons and title background color:"
4000
  msgstr ""
4001
 
4002
+ #: admin/views/Themes.php:3271
4003
  msgid "Buttons and title background transparency:"
4004
  msgstr ""
4005
 
4006
+ #: admin/views/Themes.php:3278
4007
  msgid "Buttons or title alignment:"
4008
  msgstr ""
4009
 
4010
+ #: admin/views/Themes.php:3365
4011
  msgid "Overlay background color:"
4012
  msgstr ""
4013
 
4014
+ #: admin/views/Themes.php:3371
4015
  msgid "Overlay background transparency:"
4016
  msgstr ""
4017
 
4018
+ #: admin/views/Themes.php:3378
4019
  msgid "Lightbox background color:"
4020
  msgstr ""
4021
 
4022
+ #: admin/views/Themes.php:3384
4023
  msgid "Lightbox background transparency:"
4024
  msgstr ""
4025
 
4026
+ #: admin/views/Themes.php:3391
4027
  msgid "Control buttons height:"
4028
  msgstr ""
4029
 
4030
+ #: admin/views/Themes.php:3397
4031
  msgid "Control buttons margin (top):"
4032
  msgstr ""
4033
 
4034
+ #: admin/views/Themes.php:3403
4035
  msgid "Control buttons margin (left):"
4036
  msgstr ""
4037
 
4038
+ #: admin/views/Themes.php:3409
4039
  msgid "Control buttons position:"
4040
  msgstr ""
4041
 
4042
+ #: admin/views/Themes.php:3418
4043
  msgid "Control buttons background color:"
4044
  msgstr ""
4045
 
4046
+ #: admin/views/Themes.php:3424
4047
  msgid "Control buttons container border radius:"
4048
  msgstr ""
4049
 
4050
+ #: admin/views/Themes.php:3431
4051
  msgid "Control buttons container background transparency:"
4052
  msgstr ""
4053
 
4054
+ #: admin/views/Themes.php:3438
4055
  msgid "Control buttons alignment:"
4056
  msgstr ""
4057
 
4058
+ #: admin/views/Themes.php:3452
4059
  msgid "Control buttons color:"
4060
  msgstr ""
4061
 
4062
+ #: admin/views/Themes.php:3458
4063
  msgid "Control buttons transparency:"
4064
  msgstr ""
4065
 
4066
+ #: admin/views/Themes.php:3465
4067
  msgid "Toggle button height:"
4068
  msgstr ""
4069
 
4070
+ #: admin/views/Themes.php:3471
4071
  msgid "Toggle button width:"
4072
  msgstr ""
4073
 
4074
+ #: admin/views/Themes.php:3477
4075
  msgid "Close button border radius:"
4076
  msgstr ""
4077
 
4078
+ #: admin/views/Themes.php:3485
4079
  msgid "Close button border width:"
4080
  msgstr ""
4081
 
4082
+ #: admin/views/Themes.php:3491
4083
  msgid "Close button border style:"
4084
  msgstr ""
4085
 
4086
+ #: admin/views/Themes.php:3505
4087
  msgid "Close button border color:"
4088
  msgstr ""
4089
 
4090
+ #: admin/views/Themes.php:3511
4091
  msgid "Close button box shadow:"
4092
  msgstr ""
4093
 
4094
+ #: admin/views/Themes.php:3518
4095
  msgid "Close button background color:"
4096
  msgstr ""
4097
 
4098
+ #: admin/views/Themes.php:3521 admin/views/Themes.php:3534
4099
+ #: admin/views/Themes.php:3541 admin/views/Themes.php:3548
4100
+ #: admin/views/Themes.php:3555
4101
  msgid "The option does not apply to Full-width lightbox."
4102
  msgstr ""
4103
 
4104
+ #: admin/views/Themes.php:3525
4105
  msgid "Close button transparency:"
4106
  msgstr ""
4107
 
4108
+ #: admin/views/Themes.php:3531
4109
  msgid "Close button width:"
4110
  msgstr ""
4111
 
4112
+ #: admin/views/Themes.php:3538
4113
  msgid "Close button height:"
4114
  msgstr ""
4115
 
4116
+ #: admin/views/Themes.php:3545
4117
  msgid "Close button top:"
4118
  msgstr ""
4119
 
4120
+ #: admin/views/Themes.php:3552
4121
  msgid "Close button right:"
4122
  msgstr ""
4123
 
4124
+ #: admin/views/Themes.php:3559
4125
  msgid "Close button size:"
4126
  msgstr ""
4127
 
4128
+ #: admin/views/Themes.php:3565
4129
  msgid "Close button color:"
4130
  msgstr ""
4131
 
4132
+ #: admin/views/Themes.php:3571
4133
  msgid "Fullscreen close button color:"
4134
  msgstr ""
4135
 
4136
+ #: admin/views/Themes.php:3577
4137
  msgid "Share buttons color:"
4138
  msgstr "Facebook'ta paylaşın:"
4139
 
4140
+ #: admin/views/Themes.php:3613
4141
  msgid "Right, left buttons transparency:"
4142
  msgstr ""
4143
 
4144
+ #: admin/views/Themes.php:3644
4145
  msgid "Right, left, close buttons hover color:"
4146
  msgstr ""
4147
 
4148
+ #: admin/views/Themes.php:3650
4149
  msgid "Right, left buttons color:"
4150
  msgstr ""
4151
 
4152
+ #: admin/views/Themes.php:3689
4153
  msgid "Filmstrip position:"
4154
  msgstr ""
4155
 
4156
+ #: admin/views/Themes.php:3700
4157
  msgid "Filmstrip thumbnail margin:"
4158
  msgstr ""
4159
 
4160
+ #: admin/views/Themes.php:3707
4161
  msgid "Filmstrip thumbnail border width:"
4162
  msgstr ""
4163
 
4164
+ #: admin/views/Themes.php:3713
4165
  msgid "Filmstrip thumbnail border style:"
4166
  msgstr ""
4167
 
4168
+ #: admin/views/Themes.php:3727
4169
  msgid "Filmstrip thumbnail border color:"
4170
  msgstr ""
4171
 
4172
+ #: admin/views/Themes.php:3733
4173
  msgid "Filmstrip thumbnail border radius:"
4174
  msgstr ""
4175
 
4176
+ #: admin/views/Themes.php:3740
4177
  msgid "Filmstrip thumbnail active border width:"
4178
  msgstr ""
4179
 
4180
+ #: admin/views/Themes.php:3746
4181
  msgid "Filmstrip thumbnail active border color:"
4182
  msgstr ""
4183
 
4184
+ #: admin/views/Themes.php:3752
4185
  msgid "Filmstrip thumbnail deactive transparency:"
4186
  msgstr ""
4187
 
4188
+ #: admin/views/Themes.php:3771
4189
  msgid "Filmstrip right, left button background color:"
4190
  msgstr ""
4191
 
4192
+ #: admin/views/Themes.php:3777
4193
  msgid "Rating position:"
4194
  msgstr ""
4195
 
4196
+ #: admin/views/Themes.php:3786
4197
  msgid "Rating alignment:"
4198
  msgstr ""
4199
 
4200
+ #: admin/views/Themes.php:3800
4201
  msgid "Rating icon:"
4202
  msgstr ""
4203
 
4204
+ #: admin/views/Themes.php:3814
4205
  msgid "Rating color:"
4206
  msgstr ""
4207
 
4208
+ #: admin/views/Themes.php:3820
4209
  msgid "Rating hover color:"
4210
  msgstr ""
4211
 
4212
+ #: admin/views/Themes.php:3826
4213
  msgid "Rating size:"
4214
  msgstr ""
4215
 
4216
+ #: admin/views/Themes.php:3832
4217
  msgid "Rating icon count:"
4218
  msgstr ""
4219
 
4220
+ #: admin/views/Themes.php:3838
4221
  msgid "Rating padding:"
4222
  msgstr ""
4223
 
4224
+ #: admin/views/Themes.php:3845
4225
  msgid "Hit counter position:"
4226
  msgstr ""
4227
 
4228
+ #: admin/views/Themes.php:3854
4229
  msgid "Hit counter alignment:"
4230
  msgstr ""
4231
 
4232
+ #: admin/views/Themes.php:3868
4233
  msgid "Hit counter background color:"
4234
  msgstr ""
4235
 
4236
+ #: admin/views/Themes.php:3874
4237
  msgid "Hit counter background transparency:"
4238
  msgstr ""
4239
 
4240
+ #: admin/views/Themes.php:3881
4241
  msgid "Hit counter border width:"
4242
  msgstr ""
4243
 
4244
+ #: admin/views/Themes.php:3887
4245
  msgid "Hit counter border style:"
4246
  msgstr ""
4247
 
4248
+ #: admin/views/Themes.php:3901
4249
  msgid "Hit counter border color:"
4250
  msgstr ""
4251
 
4252
+ #: admin/views/Themes.php:3907
4253
  msgid "Hit counter border radius:"
4254
  msgstr ""
4255
 
4256
+ #: admin/views/Themes.php:3914
4257
  msgid "Hit counter padding:"
4258
  msgstr ""
4259
 
4260
+ #: admin/views/Themes.php:3921
4261
  msgid "Hit counter margin:"
4262
  msgstr ""
4263
 
4264
+ #: admin/views/Themes.php:3928
4265
  msgid "Hit counter font color:"
4266
  msgstr ""
4267
 
4268
+ #: admin/views/Themes.php:3935
4269
  msgid "Hit counter font family:"
4270
  msgstr ""
4271
 
4272
+ #: admin/views/Themes.php:3938
4273
  msgid "Hit counter font weight:"
4274
  msgstr ""
4275
 
4276
+ #: admin/views/Themes.php:3952
4277
  msgid "Hit counter font size:"
4278
  msgstr ""
4279
 
4280
+ #: admin/views/Themes.php:3969
4281
  msgid "Info position:"
4282
  msgstr ""
4283
 
4284
+ #: admin/views/Themes.php:3978
4285
  msgid "Info alignment:"
4286
  msgstr ""
4287
 
4288
+ #: admin/views/Themes.php:3992
4289
  msgid "Info background color:"
4290
  msgstr ""
4291
 
4292
+ #: admin/views/Themes.php:3998
4293
  msgid "Info background transparency:"
4294
  msgstr ""
4295
 
4296
+ #: admin/views/Themes.php:4005
4297
  msgid "Info border width:"
4298
  msgstr ""
4299
 
4300
+ #: admin/views/Themes.php:4011
4301
  msgid "Info border style:"
4302
  msgstr ""
4303
 
4304
+ #: admin/views/Themes.php:4025
4305
  msgid "Info border color:"
4306
  msgstr ""
4307
 
4308
+ #: admin/views/Themes.php:4031
4309
  msgid "Info border radius:"
4310
  msgstr ""
4311
 
4312
+ #: admin/views/Themes.php:4038
4313
  msgid "Info padding:"
4314
  msgstr ""
4315
 
4316
+ #: admin/views/Themes.php:4045
4317
  msgid "Info margin:"
4318
  msgstr ""
4319
 
4320
+ #: admin/views/Themes.php:4114
4321
  msgid "Comments Width:"
4322
  msgstr "Yorum:"
4323
 
4324
+ #: admin/views/Themes.php:4120
4325
  msgid "Comments position:"
4326
  msgstr ""
4327
 
4328
+ #: admin/views/Themes.php:4129
4329
  msgid "Comments background color:"
4330
  msgstr ""
4331
 
4332
+ #: admin/views/Themes.php:4135
4333
  msgid "Comments font size:"
4334
  msgstr ""
4335
 
4336
+ #: admin/views/Themes.php:4141
4337
  msgid "Comments font color:"
4338
  msgstr ""
4339
 
4340
+ #: admin/views/Themes.php:4148
4341
  msgid "Comments font family:"
4342
  msgstr ""
4343
 
4344
+ #: admin/views/Themes.php:4151
4345
  msgid "Comments author font size:"
4346
  msgstr ""
4347
 
4348
+ #: admin/views/Themes.php:4158
4349
  msgid "Comments date font size:"
4350
  msgstr ""
4351
 
4352
+ #: admin/views/Themes.php:4164
4353
  msgid "Comments body font size:"
4354
  msgstr ""
4355
 
4356
+ #: admin/views/Themes.php:4170
4357
  msgid "Comment input border width:"
4358
  msgstr ""
4359
 
4360
+ #: admin/views/Themes.php:4176
4361
  msgid "omment input border style:"
4362
  msgstr ""
4363
 
4364
+ #: admin/views/Themes.php:4190
4365
  msgid "Comment input border color:"
4366
  msgstr ""
4367
 
4368
+ #: admin/views/Themes.php:4196
4369
  msgid "Comment input border radius:"
4370
  msgstr ""
4371
 
4372
+ #: admin/views/Themes.php:4202
4373
  msgid "Comment input padding:"
4374
  msgstr ""
4375
 
4376
+ #: admin/views/Themes.php:4209
4377
  msgid "Comment input background color:"
4378
  msgstr ""
4379
 
4380
+ #: admin/views/Themes.php:4215
4381
  msgid "Comment button background color:"
4382
  msgstr ""
4383
 
4384
+ #: admin/views/Themes.php:4221
4385
  msgid "Comment button padding:"
4386
  msgstr ""
4387
 
4388
+ #: admin/views/Themes.php:4228
4389
  msgid "Comment button border width:"
4390
  msgstr ""
4391
 
4392
+ #: admin/views/Themes.php:4234
4393
  msgid "Comment button border style:"
4394
  msgstr ""
4395
 
4396
+ #: admin/views/Themes.php:4248
4397
  msgid "Comment button border color:"
4398
  msgstr ""
4399
 
4400
+ #: admin/views/Themes.php:4254
4401
  msgid "omment button border radius:"
4402
  msgstr ""
4403
 
4404
+ #: admin/views/Themes.php:4261
4405
  msgid "Comment separator width:"
4406
  msgstr ""
4407
 
4408
+ #: admin/views/Themes.php:4267
4409
  msgid "Comment separator style:"
4410
  msgstr ""
4411
 
4412
+ #: admin/views/Themes.php:4281
4413
  msgid "Comment separator color:"
4414
  msgstr ""
4415
 
4416
+ #: admin/views/Themes.php:4317
4417
  msgid "Font weight:"
4418
  msgstr ""
4419
 
4420
+ #: admin/views/Themes.php:4388
4421
  msgid "Button background color:"
4422
  msgstr ""
4423
 
4424
+ #: admin/views/Themes.php:4394
4425
  msgid "Button background transparency:"
4426
  msgstr ""
4427
 
4428
+ #: admin/views/Themes.php:4401
4429
  msgid "Button transition:"
4430
  msgstr ""
4431
 
4432
+ #: admin/views/Themes.php:4427
4433
  msgid "Position:"
4434
  msgstr ""
4435
 
4436
+ #: admin/views/Themes.php:4450
4437
  msgid "Numbering:"
4438
  msgstr ""
4439
 
4440
+ #: admin/views/Themes.php:4459
4441
  msgid "Button text:"
4442
  msgstr ""
4443
 
4444
+ #: admin/views/Themes.php:4464
4445
  msgid "Arrow"
4446
  msgstr ""
4447
 
4448
+ #: admin/views/Themes.php:4465
4449
  msgid "Next, previous buttons values."
4450
  msgstr ""
4451
 
4452
+ #: admin/views/Themes.php:4489
4453
  msgid "Container opacity:"
4454
  msgstr ""
4455
 
4456
+ #: admin/views/Themes.php:4602
4457
  msgid "Carousel margin:"
4458
  msgstr ""
4459
 
4460
+ #: admin/views/Themes.php:4608
4461
  msgid "Image border width:"
4462
  msgstr ""
4463
 
4464
+ #: admin/views/Themes.php:4615
4465
  msgid "Image border style:"
4466
  msgstr ""
4467
 
4468
+ #: admin/views/Themes.php:4630
4469
  msgid "Image border color:"
4470
  msgstr ""
4471
 
4472
+ #: admin/views/Themes.php:4646
4473
  msgid "Title background color:"
4474
  msgstr ""
4475
 
4476
+ #: admin/views/Themes.php:4653
4477
  msgid "Title opacity:"
4478
  msgstr ""
4479
 
4480
+ #: admin/views/Themes.php:4681
4481
  msgid "Title Font family:"
4482
  msgstr ""
4483
 
4484
+ #: admin/views/Themes.php:4689
4485
  msgid "Title color:"
4486
  msgstr ""
4487
 
4548
  "You are About to Uninstall %s from WordPress. This Action Is Not Reversible."
4549
  msgstr ""
4550
 
4551
+ #: admin/views/Widget.php:97 photo-gallery.php:111
4552
  msgid "Photo Gallery"
4553
  msgstr ""
4554
 
4555
+ #: admin/views/Widget.php:114 admin/views/WidgetSlideshow.php:82
4556
  #: admin/views/WidgetTags.php:78
4557
  msgid "Title:"
4558
  msgstr ""
4559
 
4560
+ #: admin/views/Widget.php:118 admin/views/WidgetTags.php:82
4561
  msgid "Type:"
4562
  msgstr ""
4563
 
4564
+ #: admin/views/Widget.php:120
4565
  msgid "Gallery groups"
4566
  msgstr ""
4567
 
4568
+ #: admin/views/Widget.php:123 admin/views/WidgetSlideshow.php:86
4569
  msgid "Galleries:"
4570
  msgstr ""
4571
 
4572
+ #: admin/views/Widget.php:136
4573
  msgid "Gallery Type:"
4574
  msgstr "Galeri boş:"
4575
 
4576
+ #: admin/views/Widget.php:144
4577
  msgid "Gallery Groups:"
4578
  msgstr ""
4579
 
4580
+ #: admin/views/Widget.php:146
4581
  msgid "All Galleries"
4582
  msgstr ""
4583
 
4584
+ #: admin/views/Widget.php:157
4585
  msgid "Sort:"
4586
  msgstr ""
4587
 
4588
+ #: admin/views/Widget.php:159 frontend/views/view.php:673
4589
  msgid "First"
4590
  msgstr "İlk"
4591
 
4592
+ #: admin/views/Widget.php:160 frontend/views/view.php:676
4593
  msgid "Last"
4594
  msgstr "Son"
4595
 
4596
+ #: admin/views/Widget.php:164
4597
  msgid "Count:"
4598
  msgstr ""
4599
 
4600
+ #: admin/views/Widget.php:168 admin/views/WidgetSlideshow.php:131
4601
  #: admin/views/WidgetTags.php:105
4602
  msgid "Dimensions:"
4603
  msgstr ""
4604
 
4605
+ #: admin/views/Widget.php:173 admin/views/WidgetSlideshow.php:147
4606
  #: admin/views/WidgetTags.php:124
4607
  msgid "Themes:"
4608
  msgstr ""
4609
 
4610
+ #: admin/views/WidgetSlideshow.php:67 photo-gallery.php:1698
4611
  msgid "Photo Gallery Slideshow"
4612
  msgstr ""
4613
 
4639
  msgid "Time interval:"
4640
  msgstr ""
4641
 
4642
+ #: admin/views/WidgetTags.php:63 photo-gallery.php:1694
4643
  msgid "Photo Gallery Tags Cloud"
4644
  msgstr ""
4645
 
4695
  msgid "Installation failed, please try again."
4696
  msgstr ""
4697
 
4698
+ #: filemanager/controller.php:178
4699
  msgid "Directory already exists."
4700
  msgstr ""
4701
 
4702
+ #: filemanager/controller.php:276
4703
  msgid "File doesn't exist."
4704
  msgstr ""
4705
 
4706
+ #: filemanager/controller.php:280 filemanager/controller.php:339
4707
+ #: filemanager/controller.php:379
4708
  msgid "Can't rename the file."
4709
  msgstr ""
4710
 
4711
+ #: filemanager/controller.php:418
4712
  msgid "Some of the files couldn't be removed."
4713
  msgstr ""
4714
 
4715
+ #: filemanager/controller.php:529
4716
  msgid "Failed to copy some of the files."
4717
  msgstr ""
4718
 
4719
+ #: filemanager/controller.php:576
4720
  msgid "Failed to move some of the files."
4721
  msgstr ""
4722
 
4744
  msgid "Processing uploaded files..."
4745
  msgstr ""
4746
 
4747
+ #: filemanager/view.php:96
4748
  msgid "Up"
4749
  msgstr ""
4750
 
4751
+ #: filemanager/view.php:97
4752
  msgid "Make a directory"
4753
  msgstr ""
4754
 
4755
+ #: filemanager/view.php:98
4756
  msgid "Rename item"
4757
  msgstr ""
4758
 
4759
+ #: filemanager/view.php:100 framework/howto/data.php:168
4760
  msgid "Copy"
4761
  msgstr ""
4762
 
4763
+ #: filemanager/view.php:101
4764
  msgid "Cut"
4765
  msgstr ""
4766
 
4767
+ #: filemanager/view.php:102
4768
  msgid "Paste"
4769
  msgstr ""
4770
 
4771
+ #: filemanager/view.php:103
4772
  msgid "Remove items"
4773
  msgstr "Madde"
4774
 
4775
+ #: filemanager/view.php:105
4776
  msgid "Refresh"
4777
  msgstr ""
4778
 
4779
+ #: filemanager/view.php:109
4780
  msgid "View thumbs"
4781
  msgstr ""
4782
 
4783
+ #: filemanager/view.php:110
4784
  msgid "View list"
4785
  msgstr ""
4786
 
4787
+ #: filemanager/view.php:114
4788
  msgid "Upload files"
4789
  msgstr ""
4790
 
4791
+ #: filemanager/view.php:133
4792
  msgid "Order by:"
4793
  msgstr "Sipariş:"
4794
 
4795
+ #: filemanager/view.php:135
4796
  msgid "Click to sort by name"
4797
  msgstr ""
4798
 
4799
+ #: filemanager/view.php:151
4800
  msgid "Click to sort by size"
4801
  msgstr ""
4802
 
4803
+ #: filemanager/view.php:167
4804
  msgid "Click to sort by date modified"
4805
  msgstr ""
4806
 
4807
+ #: filemanager/view.php:170
4808
  msgid "Date modified"
4809
  msgstr ""
4810
 
4811
+ #: filemanager/view.php:201
4812
  msgid "No items found."
4813
  msgstr ""
4814
 
4815
+ #: filemanager/view.php:216
4816
  msgid "Add selected images to gallery"
4817
  msgstr "Bu galeride resim yok"
4818
 
4819
+ #: filemanager/view.php:231 frontend/views/view.php:265
4820
+ msgid "Back"
4821
+ msgstr "Geri"
4822
+
4823
+ #: filemanager/view.php:234
4824
  msgid "Thumbnail Max Dimensions:"
4825
  msgstr ""
4826
 
4827
+ #: filemanager/view.php:235
4828
  msgid "Thumbnail:"
4829
  msgstr ""
4830
 
4831
+ #: filemanager/view.php:240
 
 
 
 
4832
  msgid "Image Max Dimensions:"
4833
  msgstr ""
4834
 
4835
+ #: filemanager/view.php:241
4836
  msgid "Image:"
4837
  msgstr ""
4838
 
4839
+ #: filemanager/view.php:249
4840
  msgid "Drag files here"
4841
  msgstr ""
4842
 
4843
+ #: filemanager/view.php:249
4844
  msgid "Select Files"
4845
  msgstr ""
4846
 
4847
+ #: filemanager/view.php:268
4848
  msgid "No files to upload"
4849
  msgstr ""
4850
 
4851
+ #: filemanager/view.php:295
4852
  msgid "Uploaded"
4853
  msgstr ""
4854
 
4855
+ #: filemanager/view.php:296
4856
  msgid "Upload failed"
4857
  msgstr ""
4858
 
4859
+ #: filemanager/view.php:297
4860
  msgid ""
4861
  "There has been a problem while trying to upload the following images. Please "
4862
  "try to upload them again."
4863
  msgstr ""
4864
 
4865
+ #: filemanager/view.php:298
4866
  msgid "Allowed upload types JPG, JPEG, GIF, PNG, SVG."
4867
  msgstr ""
4868
 
4869
+ #: framework/WDWLibrary.php:87
4870
  msgid "Item successfully saved."
4871
  msgstr ""
4872
 
4873
+ #: framework/WDWLibrary.php:93 framework/WDWLibrary.php:196
4874
  msgid "Failed."
4875
  msgstr ""
4876
 
4877
+ #: framework/WDWLibrary.php:99
4878
  msgid "Item successfully deleted."
4879
  msgstr ""
4880
 
4881
+ #: framework/WDWLibrary.php:105
4882
  msgid "You can't delete default theme."
4883
  msgstr ""
4884
 
4885
+ #: framework/WDWLibrary.php:111
4886
  msgid "Items Successfully Deleted."
4887
  msgstr ""
4888
 
4889
+ #: framework/WDWLibrary.php:117
4890
  msgid "You must set watermark type from Options page."
4891
  msgstr ""
4892
 
4893
+ #: framework/WDWLibrary.php:123
4894
  msgid "The item is successfully set as default."
4895
  msgstr ""
4896
 
4897
+ #: framework/WDWLibrary.php:129
4898
  msgid "Options successfully saved."
4899
  msgstr ""
4900
 
4901
+ #: framework/WDWLibrary.php:135
4902
  msgid "Item successfully published."
4903
  msgstr ""
4904
 
4905
+ #: framework/WDWLibrary.php:141
4906
  msgid "Item successfully unpublished."
4907
  msgstr ""
4908
 
4909
+ #: framework/WDWLibrary.php:147
4910
  msgid "Item successfully duplicated."
4911
  msgstr ""
4912
 
4913
+ #: framework/WDWLibrary.php:154
4914
  msgid "Items Succesfully Unpublished."
4915
  msgstr ""
4916
 
4917
+ #: framework/WDWLibrary.php:160
4918
  msgid "Ordering Succesfully Saved."
4919
  msgstr ""
4920
 
4921
+ #: framework/WDWLibrary.php:166
4922
  msgid "A term with the name provided already exists."
4923
  msgstr ""
4924
 
4925
+ #: framework/WDWLibrary.php:172
4926
  msgid "Name field is required."
4927
  msgstr ""
4928
 
4929
+ #: framework/WDWLibrary.php:178
4930
  msgid "The slug must be unique."
4931
  msgstr ""
4932
 
4933
+ #: framework/WDWLibrary.php:184
4934
  msgid "Changes must be saved."
4935
  msgstr ""
4936
 
4937
+ #: framework/WDWLibrary.php:190
4938
  msgid "Theme successfully copied."
4939
  msgstr ""
4940
 
4941
+ #: framework/WDWLibrary.php:201
4942
  msgid "Items were reset successfully."
4943
  msgstr ""
4944
 
4945
+ #: framework/WDWLibrary.php:206
4946
  msgid "Watermark successfully set."
4947
  msgstr ""
4948
 
4949
+ #: framework/WDWLibrary.php:211
4950
  msgid "Items successfully rotated."
4951
  msgstr ""
4952
 
4953
+ #: framework/WDWLibrary.php:216
4954
  msgid "Items successfully recreated."
4955
  msgstr ""
4956
 
4957
+ #: framework/WDWLibrary.php:221
4958
  msgid "Items successfully resized."
4959
  msgstr ""
4960
 
4961
+ #: framework/WDWLibrary.php:226
4962
  msgid "Items successfully edited."
4963
  msgstr ""
4964
 
4965
+ #: framework/WDWLibrary.php:241
4966
+ msgid "All items are successfully duplicated."
4967
  msgstr ""
4968
 
4969
+ #: framework/WDWLibrary.php:293
4970
+ msgid "Click to sort by this item"
4971
  msgstr ""
4972
 
4973
+ #: framework/WDWLibrary.php:308
4974
+ msgid "Default sorting"
4975
+ msgstr "Varsayılan sıralama"
4976
+
4977
+ #: framework/WDWLibrary.php:309
4978
+ msgid "File name (Asc)"
4979
+ msgstr "Dosya adı (Asc)"
4980
+
4981
+ #: framework/WDWLibrary.php:310
4982
+ msgid "File name (Desc)"
4983
+ msgstr "Dosya adı (Azalan) "
4984
+
4985
+ #: framework/WDWLibrary.php:311
4986
+ msgid "Alt/Title (Asc)"
4987
+ msgstr "Alt / Başlık (Artan) "
4988
+
4989
+ #: framework/WDWLibrary.php:312
4990
+ msgid "Alt/Title (Desc)"
4991
+ msgstr "Alt / Başlık (Azalan)"
4992
+
4993
+ #: framework/WDWLibrary.php:313
4994
+ msgid "Description (Asc)"
4995
+ msgstr "Açıklama (Artan)"
4996
+
4997
+ #: framework/WDWLibrary.php:314
4998
+ msgid "Description (Desc)"
4999
+ msgstr "Açıklama (Azalan)"
5000
+
5001
+ #: framework/WDWLibrary.php:2309
5002
  #, php-format
5003
  msgid "No %s found."
5004
  msgstr ""
5005
 
5006
+ #: framework/WDWLibrary.php:2365
5007
  msgid "Gallery Tags"
5008
  msgstr "Galeri boş"
5009
 
5010
+ #: framework/WDWLibrary.php:2580
5011
  msgid "resized"
5012
  msgstr ""
5013
 
5014
+ #: framework/WDWLibrary.php:2584
5015
  msgid "Recreate thumbnail"
5016
  msgstr ""
5017
 
5018
+ #: framework/WDWLibrary.php:2585
5019
  msgid "recreated"
5020
  msgstr ""
5021
 
5022
+ #: framework/WDWLibrary.php:2589
5023
  msgid "Rotate left"
5024
  msgstr ""
5025
 
5026
+ #: framework/WDWLibrary.php:2590
5027
  msgid "rotated left"
5028
  msgstr "henüz değerlendirilmedi"
5029
 
5030
+ #: framework/WDWLibrary.php:2594
5031
  msgid "Rotate right"
5032
  msgstr ""
5033
 
5034
+ #: framework/WDWLibrary.php:2595
5035
  msgid "rotated right"
5036
  msgstr ""
5037
 
5038
+ #: framework/WDWLibrary.php:2600 framework/WDWLibrary.php:2613
5039
+ #: framework/WDWLibrary.php:2618 framework/WDWLibrary.php:2623
5040
+ #: framework/WDWLibrary.php:2628 framework/WDWLibrary.php:2651
5041
+ #: framework/WDWLibrary.php:2656
5042
  msgid "edited"
5043
  msgstr ""
5044
 
5045
+ #: framework/WDWLibrary.php:2605
5046
  msgid "reset"
5047
  msgstr "sıfırlayın"
5048
 
5049
+ #: framework/WDWLibrary.php:2612
5050
  msgid "Edit Alt/Title"
5051
  msgstr ""
5052
 
5053
+ #: framework/WDWLibrary.php:2617
5054
  msgid "Edit description"
5055
  msgstr ""
5056
 
5057
+ #: framework/WDWLibrary.php:2622
5058
  msgid "Edit redirect URL"
5059
  msgstr ""
5060
 
5061
+ #: framework/WDWLibrary.php:2627
5062
  msgid "Add/Remove tag"
5063
  msgstr "Madde"
5064
 
5065
+ #: framework/WDWLibrary.php:2650
5066
  msgid "Add pricelist"
5067
  msgstr ""
5068
 
5069
+ #: framework/WDWLibrary.php:2655
5070
  msgid "Remove pricelist"
5071
  msgstr ""
5072
 
5073
+ #: framework/WDWLibrary.php:2761
5074
  msgid "Photo Gallery Premium"
5075
  msgstr "Facebook'ta paylaşın"
5076
 
5077
+ #: framework/WDWLibrary.php:2764
5078
  msgid ""
5079
  "Get more stunning views with fully customizable themes, powerful lightbox "
5080
  "and much more."
5081
  msgstr ""
5082
 
5083
+ #: framework/WDWLibrary.php:2782
 
 
 
 
5084
  msgid "User guide"
5085
  msgstr ""
5086
 
5087
+ #: framework/WDWLibrary.php:2797 framework/WDWLibrary.php:2942
5088
+ #: framework/WDWLibrary.php:2956 photo-gallery.php:519 photo-gallery.php:1923
5089
  msgid "Ask a question"
5090
  msgstr ""
5091
 
5092
+ #: framework/WDWLibrary.php:2811
5093
  msgid "Forms"
5094
  msgstr ""
5095
 
5096
+ #: framework/WDWLibrary.php:2815 photo-gallery.php:509
5097
  msgid "Add-ons"
5098
  msgstr ""
5099
 
5100
+ #: framework/WDWLibrary.php:2819
5101
  msgid "Premium Version"
5102
  msgstr ""
5103
 
5104
+ #: framework/WDWLibrary.php:2819
5105
+ msgid "Upgrade"
5106
+ msgstr ""
5107
+
5108
+ #: framework/WDWLibrary.php:2938
5109
+ msgid "Unleash the full benefits and features"
5110
+ msgstr ""
5111
+
5112
+ #: framework/WDWLibrary.php:2939
5113
+ msgid "of the Premium Plugin"
5114
+ msgstr ""
5115
+
5116
+ #: framework/WDWLibrary.php:2940
5117
+ msgid "Upgrade Now"
5118
+ msgstr ""
5119
+
5120
+ #: framework/WDWLibrary.php:3067
5121
  msgid "All tags"
5122
  msgstr "Galeri boş"
5123
 
5124
+ #: framework/WDWLibraryEmbed.php:338 framework/WDWLibraryEmbed.php:347
5125
+ #: framework/WDWLibraryEmbed.php:349
5126
  msgid "The entered URL is incorrect. Please check the URL and try again."
5127
  msgstr ""
5128
 
5279
  msgid "How to use"
5280
  msgstr ""
5281
 
5282
+ #: framework/screen_recorder/screen_recorder.php:708
5283
+ msgid "Photo Gallery Data Sharing"
5284
+ msgstr "Facebook'ta paylaşın"
5285
+
5286
+ #: framework/screen_recorder/screen_recorder.php:709
5287
+ msgid "Disable access"
5288
+ msgstr ""
5289
+
5290
+ #: framework/screen_recorder/screen_recorder.php:709
5291
+ msgid "Enable access"
5292
+ msgstr "Yorumları göster"
5293
+
5294
+ #: framework/screen_recorder/screen_recorder.php:710
5295
+ msgid ""
5296
+ "Allow 10Web to collect data for the improvement of the Photo Gallery plugin. "
5297
+ "Your data will not be shared with 3rd parties and will be deleted after 30 "
5298
+ "days."
5299
+ msgstr ""
5300
+
5301
+ #: frontend/controllers/BWGControllerGalleryBox.php:75
5302
+ #: frontend/controllers/BWGControllerGalleryBox.php:80
5303
+ #: frontend/controllers/BWGControllerGalleryBox.php:89
5304
+ #: frontend/controllers/BWGControllerGalleryBox.php:97
5305
+ #: frontend/controllers/BWGControllerGalleryBox.php:107
5306
  #, php-format
5307
  msgid "The %s field is required."
5308
  msgstr ""
5309
 
5310
+ #: frontend/controllers/BWGControllerGalleryBox.php:84
5311
  #, php-format
5312
  msgid "The %s field must contain a valid email address."
5313
  msgstr "Bu, %s geçerli bir e-posta adresi değil."
5314
 
5315
+ #: frontend/controllers/BWGControllerGalleryBox.php:101
5316
  msgid "Incorrect Security code."
5317
  msgstr "Hatası. Yanlış Doğrulama Kodu."
5318
 
5319
+ #: frontend/controllers/controller.php:92
5320
  msgid "There is no album selected or the gallery was deleted."
5321
  msgstr "Orada Seçili galeri veya galeri silindi."
5322
 
5323
+ #: frontend/controllers/controller.php:280
5324
+ #: frontend/controllers/controller.php:314
5325
  msgid "There is no gallery selected or the gallery was deleted."
5326
  msgstr "Orada Seçili galeri veya galeri silindi."
5327
 
5328
+ #: frontend/views/BWGViewAlbum_compact_preview.php:77
5329
+ #: frontend/views/BWGViewAlbum_extended_preview.php:86
5330
+ #: frontend/views/BWGViewAlbum_masonry_preview.php:63
5331
  msgid "No results found."
5332
  msgstr ""
5333
 
5334
+ #: frontend/views/BWGViewAlbum_extended_preview.php:160
5335
+ #: frontend/views/BWGViewAlbum_extended_preview.php:163
5336
  msgid "More"
5337
  msgstr "Daha"
5338
 
5339
+ #: frontend/views/BWGViewAlbum_extended_preview.php:161
5340
  msgid "Hide"
5341
  msgstr "Gizle"
5342
 
5343
+ #: frontend/views/BWGViewBlog_style.php:145
5344
+ #: frontend/views/BWGViewGalleryBox.php:796
5345
  msgid "Show comments"
5346
  msgstr "Yorumları göster"
5347
 
5348
+ #: frontend/views/BWGViewBlog_style.php:151
5349
+ #: frontend/views/BWGViewBlog_style.php:152
5350
+ #: frontend/views/BWGViewGalleryBox.php:804
5351
+ #: frontend/views/BWGViewGalleryBox.php:805
5352
  msgid "Share on Facebook"
5353
  msgstr "Facebook'ta paylaşın"
5354
 
5355
+ #: frontend/views/BWGViewBlog_style.php:158
5356
+ #: frontend/views/BWGViewBlog_style.php:159
5357
+ #: frontend/views/BWGViewGalleryBox.php:811
5358
+ #: frontend/views/BWGViewGalleryBox.php:812
5359
  msgid "Share on Twitter"
5360
  msgstr "Twitter'da paylaşın"
5361
 
5362
+ #: frontend/views/BWGViewBlog_style.php:165
5363
+ #: frontend/views/BWGViewBlog_style.php:166
5364
+ #: frontend/views/BWGViewGalleryBox.php:818
5365
+ #: frontend/views/BWGViewGalleryBox.php:819
5366
  msgid "Share on Pinterest"
5367
  msgstr "Pinterest Share on"
5368
 
5369
+ #: frontend/views/BWGViewBlog_style.php:172
5370
+ #: frontend/views/BWGViewBlog_style.php:173
5371
+ #: frontend/views/BWGViewGalleryBox.php:825
5372
+ #: frontend/views/BWGViewGalleryBox.php:826
5373
  msgid "Share on Tumblr"
5374
  msgstr "Tumblr Share on"
5375
 
5376
+ #: frontend/views/BWGViewBlog_style.php:180
5377
  msgid "Show ecommerce"
5378
  msgstr "Yorumları göster"
5379
 
5381
  msgid "There are no images to download."
5382
  msgstr "Bu galeride resim yok."
5383
 
5384
+ #: frontend/views/BWGViewGalleryBox.php:645
5385
  msgid "The image has been deleted."
5386
  msgstr "Resim silindi."
5387
 
5388
+ #: frontend/views/BWGViewGalleryBox.php:784
5389
+ #: frontend/views/BWGViewThumbnails.php:41
5390
+ #: frontend/views/BWGViewThumbnails_masonry.php:51
5391
+ #: frontend/views/BWGViewThumbnails_mosaic.php:85 photo-gallery.php:1443
5392
+ #: photo-gallery.php:1446
5393
  msgid "Play"
5394
  msgstr "Oynayın"
5395
 
5396
+ #: frontend/views/BWGViewGalleryBox.php:788 photo-gallery.php:1436
5397
  msgid "Maximize"
5398
  msgstr "Özdeyiş"
5399
 
5400
+ #: frontend/views/BWGViewGalleryBox.php:792 photo-gallery.php:1437
5401
  msgid "Fullscreen"
5402
  msgstr "Fullscreen"
5403
 
5404
+ #: frontend/views/BWGViewGalleryBox.php:794 photo-gallery.php:1449
5405
  msgid "Show info"
5406
  msgstr "Bilgi göster"
5407
 
5408
+ #: frontend/views/BWGViewGalleryBox.php:798 photo-gallery.php:1451
5409
  msgid "Show rating"
5410
  msgstr "Derece Show"
5411
 
5412
+ #: frontend/views/BWGViewGalleryBox.php:833
5413
  msgid "Open image in original size."
5414
  msgstr "Orijinal boyutunda açık görüntüsü."
5415
 
5416
+ #: frontend/views/BWGViewGalleryBox.php:848
5417
  msgid "Download original image"
5418
  msgstr "Orijinal resim dosyasını indirin"
5419
 
5420
+ #: frontend/views/BWGViewGalleryBox.php:855
5421
+ #: frontend/views/BWGViewThumbnails.php:45
5422
+ #: frontend/views/BWGViewThumbnails_masonry.php:55
5423
+ #: frontend/views/BWGViewThumbnails_mosaic.php:103
5424
  msgid "Ecommerce"
5425
  msgstr ""
5426
 
5427
+ #: frontend/views/BWGViewGalleryBox.php:880
5428
  msgid "Hits: "
5429
  msgstr "Hits: "
5430
 
5431
+ #: frontend/views/BWGViewGalleryBox.php:900
5432
  msgid "Rated."
5433
  msgstr "Anma."
5434
 
5435
+ #: frontend/views/BWGViewGalleryBox.php:992 photo-gallery.php:1434
5436
  msgid "Hide Comments"
5437
  msgstr "Yorumlar gizle"
5438
 
5439
+ #: frontend/views/BWGViewGalleryBox.php:1013
5440
  msgid "Verification Code"
5441
  msgstr "Doğrulama Kodu"
5442
 
5443
+ #: frontend/views/BWGViewGalleryBox.php:1036
5444
  #, php-format
5445
  msgid ""
5446
  "I consent collecting this data and processing it according to %s of this "
5447
  "website."
5448
  msgstr ""
5449
 
5450
+ #: frontend/views/BWGViewGalleryBox.php:1037
5451
  #: wd/templates/display_subscribe.php:39
5452
  msgid "Privacy Policy"
5453
  msgstr ""
5454
 
5455
+ #: frontend/views/BWGViewGalleryBox.php:1046
5456
  msgid "Submit"
5457
  msgstr "Gönder"
5458
 
5459
+ #: frontend/views/BWGViewGalleryBox.php:1048
5460
  msgid "Your comment is awaiting moderation"
5461
  msgstr "Yorumunuz ılımlılık bekliyor"
5462
 
5463
+ #: frontend/views/BWGViewGalleryBox.php:1083 photo-gallery.php:1432
5464
  msgid "Hide Ecommerce"
5465
  msgstr "Yorumlar gizle"
5466
 
5467
+ #: frontend/views/BWGViewGalleryBox.php:1089
5468
+ #: frontend/views/BWGViewGalleryBox.php:1272
5469
  msgid "Add to cart"
5470
  msgstr ""
5471
 
5472
+ #: frontend/views/BWGViewGalleryBox.php:1092
5473
  msgid "items"
5474
  msgstr "madde"
5475
 
5476
+ #: frontend/views/BWGViewGalleryBox.php:1100
5477
  msgid "Prints and products"
5478
  msgstr ""
5479
 
5480
+ #: frontend/views/BWGViewGalleryBox.php:1107
5481
  msgid "Downloads"
5482
  msgstr ""
5483
 
5484
+ #: frontend/views/BWGViewGalleryBox.php:1121
5485
+ #: frontend/views/BWGViewGalleryBox.php:1233
5486
  msgid "Price"
5487
  msgstr ""
5488
 
5489
+ #: frontend/views/BWGViewGalleryBox.php:1141
5490
  msgid "Count"
5491
  msgstr ""
5492
 
5493
+ #: frontend/views/BWGViewGalleryBox.php:1221
5494
+ #: frontend/views/BWGViewGalleryBox.php:1265
5495
  msgid "Total"
5496
  msgstr ""
5497
 
5498
+ #: frontend/views/BWGViewGalleryBox.php:1232
5499
  msgid "Dimensions"
5500
  msgstr ""
5501
 
5502
+ #: frontend/views/BWGViewGalleryBox.php:1234
5503
  msgid "Choose"
5504
  msgstr ""
5505
 
5506
+ #: frontend/views/BWGViewGalleryBox.php:1273
5507
  msgid "View cart"
5508
  msgstr ""
5509
 
5510
+ #: frontend/views/BWGViewGalleryBox.php:1379
5511
  msgid "Delete Comment"
5512
  msgstr "Yorum silin"
5513
 
5514
+ #: frontend/views/BWGViewThumbnails.php:44
5515
+ #: frontend/views/BWGViewThumbnails_masonry.php:54
5516
+ #: frontend/views/BWGViewThumbnails_mosaic.php:102
5517
  msgid "Open"
5518
  msgstr ""
5519
 
5520
+ #: frontend/views/view.php:112 frontend/views/view.php:191
5521
  msgid "There are no images."
5522
  msgstr "Bu galeride resim yok."
5523
 
5524
+ #: frontend/views/view.php:115 frontend/views/view.php:194
5525
  msgid "No Images found."
5526
  msgstr "Yorumları göster."
5527
 
5528
+ #: frontend/views/view.php:341
5529
  msgid "Download gallery"
5530
  msgstr "Orijinal resim dosyasını indirin"
5531
 
5532
+ #: frontend/views/view.php:394 frontend/views/view.php:403
5533
+ #: photo-gallery.php:1439
5534
  msgid "SEARCH..."
5535
  msgstr ""
5536
 
5537
+ #: frontend/views/view.php:441
5538
  msgid "Order by Default"
5539
  msgstr "Sipariş"
5540
 
5541
+ #: frontend/views/view.php:668
5542
  msgid " item(s)"
5543
  msgstr " madde"
5544
 
5545
+ #: frontend/views/view.php:674
5546
  msgid "Previous"
5547
  msgstr "Önceki"
5548
 
5549
+ #: frontend/views/view.php:675
5550
  msgid "Next"
5551
  msgstr "Sonraki"
5552
 
5553
+ #: frontend/views/view.php:695
5554
  msgid "Go to the first page"
5555
  msgstr "İlk sayfaya git"
5556
 
5557
+ #: frontend/views/view.php:696
5558
  msgid "Go to the previous page"
5559
  msgstr "Önceki sayfaya git"
5560
 
5561
+ #: frontend/views/view.php:707
5562
  msgid "Go to the next page"
5563
  msgstr "Bir sonraki sayfaya gitmek"
5564
 
5565
+ #: frontend/views/view.php:708
5566
  msgid "Go to the last page"
5567
  msgstr "Son sayfaya gidin"
5568
 
5569
+ #: frontend/views/view.php:721
5570
  msgid "Load More..."
5571
  msgstr "Daha fazla yükle..."
5572
 
5578
  msgid "Dark"
5579
  msgstr ""
5580
 
5581
+ #: photo-gallery.php:290
5582
  msgid "Help"
5583
  msgstr ""
5584
 
5585
+ #: photo-gallery.php:337
5586
  msgid "10WEB Plugins"
5587
  msgstr ""
5588
 
5589
+ #: photo-gallery.php:358
5590
  msgid ""
5591
  "When you leave a comment on this site, we send your name, email\n"
5592
  " address, IP address and comment text to example.com. Example.com "
5594
  " not retain your personal data."
5595
  msgstr ""
5596
 
5597
+ #: photo-gallery.php:367
5598
  #, php-format
5599
  msgid "Select %s"
5600
  msgstr ""
5601
 
5602
+ #: photo-gallery.php:393
5603
  msgid "Nothing selected."
5604
  msgstr ""
5605
 
5606
+ #: photo-gallery.php:394
5607
  msgid "- Select -"
5608
  msgstr ""
5609
 
5610
+ #: photo-gallery.php:428
5611
  #, php-format
5612
  msgid ""
5613
  "Image edit functionality is not supported by your web host. We highly "
5615
  "library."
5616
  msgstr ""
5617
 
5618
+ #: photo-gallery.php:428
5619
  msgid "PHP GD"
5620
  msgstr ""
5621
 
5622
+ #: photo-gallery.php:429
5623
  #, php-format
5624
  msgid ""
5625
  "Without image editing functions, image thumbnails will not be created, thus "
5627
  "Gallery's features, e.g. %s, %s, and %s, will not be available."
5628
  msgstr ""
5629
 
5630
+ #: photo-gallery.php:429
5631
  msgid "crop"
5632
  msgstr ""
5633
 
5634
+ #: photo-gallery.php:429
5635
  msgid "edit"
5636
  msgstr ""
5637
 
5638
+ #: photo-gallery.php:429
 
 
5639
  msgid "rotate"
5640
  msgstr "Henüz değerlendirilmedi. "
5641
 
5642
+ #: photo-gallery.php:438
5643
  #, php-format
5644
  msgid ""
5645
  "Image edit functionality was just activated on your web host. Please go to "
5646
  "%s, navigate to %s tab and press %s button."
5647
  msgstr ""
5648
 
5649
+ #: photo-gallery.php:438
5650
  msgid "Options"
5651
  msgstr ""
5652
 
5653
+ #: photo-gallery.php:438
 
 
5654
  msgid "Options page"
5655
  msgstr "Önceki"
5656
 
5657
+ #: photo-gallery.php:482
5658
  msgid "Add Galleries/Images"
5659
  msgstr ""
5660
 
5661
+ #: photo-gallery.php:548
5662
  #, php-format
5663
  msgid "The controller %s file not exist."
5664
  msgstr ""
5665
 
5666
+ #: photo-gallery.php:553
5667
  #, php-format
5668
  msgid "The view %s file not exist."
5669
  msgstr ""
5670
 
5671
+ #: photo-gallery.php:569 photo-gallery.php:574
5672
  #, php-format
5673
  msgid "The %s class not exist."
5674
  msgstr ""
5675
 
5676
+ #: photo-gallery.php:622 photo-gallery.php:657
5677
  msgid "Do you want to delete selected items?"
5678
  msgstr ""
5679
 
5680
+ #: photo-gallery.php:623 photo-gallery.php:652
5681
  msgid "You must select at least one item."
5682
  msgstr ""
5683
 
5684
+ #: photo-gallery.php:624
5685
  msgid "Do you want to remove pricelist from selected items?"
5686
  msgstr ""
5687
 
5688
+ #: photo-gallery.php:626 photo-gallery.php:683
5689
+ msgid " view is<br>available in Premium Version"
5690
+ msgstr ""
5691
+
5692
+ #: photo-gallery.php:632 photo-gallery.php:1425
5693
  msgid "field is required."
5694
  msgstr ""
5695
 
5696
+ #: photo-gallery.php:633
5697
  msgid "You must select an image file."
5698
  msgstr ""
5699
 
5700
+ #: photo-gallery.php:634
5701
  msgid "You must select an audio file."
5702
  msgstr ""
5703
 
5704
+ #: photo-gallery.php:635
5705
  msgid ""
5706
  "You do not have Instagram access token. Sign in with Instagram in Options -> "
5707
  "Advanced tab -> Social. "
5708
  msgstr ""
5709
 
5710
+ #: photo-gallery.php:636
5711
  msgid ""
5712
  "You do not have Instagram CLIENT_ID. Input its value in Options->Embed "
5713
  "options."
5714
  msgstr ""
5715
 
5716
+ #: photo-gallery.php:637
5717
+ msgid "Instagram recent post number must be between 1 and 25."
5718
  msgstr ""
5719
 
5720
+ #: photo-gallery.php:638
5721
  msgid ""
5722
  "Gallery type cannot be changed, since it is not empty. In case you would "
5723
  "like to have Instagram gallery, please create a new one."
5724
  msgstr ""
5725
 
5726
+ #: photo-gallery.php:639
5727
  msgid "Please enter url to embed."
5728
  msgstr ""
5729
 
5730
+ #: photo-gallery.php:640
5731
  msgid "Error: cannot get response from the server."
5732
  msgstr ""
5733
 
5734
+ #: photo-gallery.php:641
5735
  msgid "Error: something wrong happened at the server."
5736
  msgstr ""
5737
 
5738
+ #: photo-gallery.php:642
5739
  msgid "Error"
5740
  msgstr ""
5741
 
5742
+ #: photo-gallery.php:644
5743
  msgid "Hide order column"
5744
  msgstr ""
5745
 
5746
+ #: photo-gallery.php:645
5747
  #, php-format
5748
  msgid "Selected %d item."
5749
  msgstr ""
5750
 
5751
+ #: photo-gallery.php:646
5752
  #, php-format
5753
  msgid "Selected %d items."
5754
  msgstr ""
5755
 
5756
+ #: photo-gallery.php:647
5757
  msgid "Items Succesfully Saved."
5758
  msgstr ""
5759
 
5760
+ #: photo-gallery.php:648
5761
  msgid "Item Succesfully Recovered."
5762
  msgstr ""
5763
 
5764
+ #: photo-gallery.php:649
5765
  msgid "Item Succesfully Published."
5766
  msgstr ""
5767
 
5768
+ #: photo-gallery.php:650
5769
  msgid "Item Succesfully Unpublished."
5770
  msgstr ""
5771
 
5772
+ #: photo-gallery.php:651
5773
  msgid "Item Succesfully Deleted."
5774
  msgstr ""
5775
 
5776
+ #: photo-gallery.php:653
5777
  msgid "Items Succesfully resized."
5778
  msgstr ""
5779
 
5780
+ #: photo-gallery.php:654
5781
  msgid "Watermarks Succesfully Set."
5782
  msgstr ""
5783
 
5784
+ #: photo-gallery.php:655
5785
  msgid "Items Succesfully Reset."
5786
  msgstr ""
5787
 
5788
+ #: photo-gallery.php:656
5789
  msgid "Save Tag"
5790
  msgstr ""
5791
 
5792
+ #: photo-gallery.php:658 photo-gallery.php:660
5793
  msgid ""
5794
  "This action will reset gallery type to mixed and will save that choice. You "
5795
  "cannot undo it."
5796
  msgstr ""
5797
 
5798
+ #: photo-gallery.php:659
5799
  msgid ""
5800
  "After pressing save/apply buttons, you cannot change gallery type back to "
5801
  "Instagram!"
5802
  msgstr ""
5803
 
5804
+ #: photo-gallery.php:661
5805
  msgid "Insert"
5806
  msgstr ""
5807
 
5808
+ #: photo-gallery.php:662
5809
  msgid "Failed to import images from media library"
5810
  msgstr ""
5811
 
5812
+ #: photo-gallery.php:663
5813
  msgid "Sorry, only jpg, jpeg, gif, png types are allowed."
5814
  msgstr ""
5815
 
5816
+ #: photo-gallery.php:667
5817
  msgid "Thumbnails successfully recreated."
5818
  msgstr ""
5819
 
5820
+ #: photo-gallery.php:668
5821
  msgid "All images are successfully reset."
5822
  msgstr ""
5823
 
5824
+ #: photo-gallery.php:1020
5825
  msgid "Insert Photo Gallery"
5826
  msgstr ""
5827
 
5828
+ #: photo-gallery.php:1022
5829
  msgid "Add Photo Gallery"
5830
  msgstr ""
5831
 
5832
+ #: photo-gallery.php:1426
5833
  msgid "This is not a valid email address."
5834
  msgstr "Bu, geçerli bir e-posta adresi değil."
5835
 
5836
+ #: photo-gallery.php:1427
5837
  msgid "There are no images matching your search."
5838
  msgstr "Aramanızı eşleşen görüntü yok."
5839
 
5840
+ #: photo-gallery.php:1428
5841
  msgid "Select Tag"
5842
  msgstr ""
5843
 
5844
+ #: photo-gallery.php:1429
5845
  msgid "Order By"
5846
  msgstr "Sipariş"
5847
 
5848
+ #: photo-gallery.php:1431
5849
  msgid "Show Ecommerce"
5850
  msgstr "Yorumları göster"
5851
 
5852
+ #: photo-gallery.php:1433
5853
  msgid "Show Comments"
5854
  msgstr "Yorumları Göster"
5855
 
5856
+ #: photo-gallery.php:1435
5857
  msgid "Restore"
5858
  msgstr "Restore"
5859
 
5860
+ #: photo-gallery.php:1438
5861
  msgid "Exit Fullscreen"
5862
  msgstr "Tam Ekran çıkın"
5863
 
5864
+ #: photo-gallery.php:1440
5865
  msgid "No tags found"
5866
  msgstr ""
5867
 
5868
+ #: photo-gallery.php:1441
5869
  msgid "All tags selected"
5870
  msgstr ""
5871
 
5872
+ #: photo-gallery.php:1442
5873
  msgid "tags selected"
5874
  msgstr ""
5875
 
5876
+ #: photo-gallery.php:1444 photo-gallery.php:1447
5877
  msgid "Pause"
5878
  msgstr "Pause"
5879
 
5880
+ #: photo-gallery.php:1448
5881
  msgid "Hide info"
5882
  msgstr "Bilgiyi sakla"
5883
 
5884
+ #: photo-gallery.php:1450
5885
  msgid "Hide rating"
5886
  msgstr "Gizle derece"
5887
 
5888
+ #: photo-gallery.php:1452
5889
  msgid "Ok"
5890
  msgstr ""
5891
 
5892
+ #: photo-gallery.php:1501
5893
  msgid ""
5894
  "Photo Gallery is a fully responsive gallery plugin with advanced "
5895
  "functionality. It allows having different image galleries for your posts and "
5897
  "gallery groups, and provide descriptions and tags."
5898
  msgstr ""
5899
 
5900
+ #: photo-gallery.php:1505
5901
  msgid "Easy Set-up and Management"
5902
  msgstr ""
5903
 
5904
+ #: photo-gallery.php:1506
5905
  msgid ""
5906
  "Create stunning, 100% responsive, SEO-friendly photo galleries in minutes. "
5907
  "Use the File Manager with single-step and easy-to-manage functionality to "
5909
  "use WordPress built in media uploader."
5910
  msgstr ""
5911
 
5912
+ #: photo-gallery.php:1509
5913
  msgid "Unlimited Photos and Albums"
5914
  msgstr ""
5915
 
5916
+ #: photo-gallery.php:1510
5917
  msgid ""
5918
  "The plugin allows creating unlimited number of galleries or gallery groups "
5919
  "and upload images in each gallery as many as you wish. Add single/ multiple "
5921
  "visual shortcodes for an easier management."
5922
  msgstr ""
5923
 
5924
+ #: photo-gallery.php:1513
5925
  msgid "Customizable"
5926
  msgstr ""
5927
 
5928
+ #: photo-gallery.php:1514
5929
  msgid ""
5930
  "The gallery plugin is easily customizable. You can edit themes changing "
5931
  "sizes and colors for different features. Specify the number of images to "
5933
  "thumbnail images by cropping, flipping and rotating them."
5934
  msgstr ""
5935
 
5936
+ #: photo-gallery.php:1517
5937
  msgid "10 View Options"
5938
  msgstr ""
5939
 
5940
+ #: photo-gallery.php:1518
5941
  msgid ""
5942
  "Photo Gallery plugin allows displaying galleries and gallery groups in 10 "
5943
  "elegant and beautiful views:, Thumbnails, Masonry, Mosaic, Slideshow, Image "
5945
  "Ecommerce."
5946
  msgstr ""
5947
 
5948
+ #: photo-gallery.php:1521
5949
  msgid "Audio and Video Support"
5950
  msgstr ""
5951
 
5952
+ #: photo-gallery.php:1522
5953
  msgid ""
5954
  "You can include both videos and images within a single gallery. WordPress "
5955
  "Photo Gallery Plugin supports YouTube and Vimeo videos within Galleries. "
5956
  "It's also possible to add audio tracks for the image slideshow."
5957
  msgstr ""
5958
 
5959
+ #: photo-gallery.php:1528
5960
  msgid "Installing"
5961
  msgstr ""
5962
 
5963
+ #: photo-gallery.php:1533
5964
  msgid "Creating/Editing Galleries"
5965
  msgstr ""
5966
 
5967
+ #: photo-gallery.php:1537
5968
  msgid "Instagram Gallery"
5969
  msgstr ""
5970
 
5971
+ #: photo-gallery.php:1543
5972
  msgid "Creating/Editing Tags"
5973
  msgstr ""
5974
 
5975
+ #: photo-gallery.php:1548
5976
  msgid "Creating/Editing Albums"
5977
  msgstr ""
5978
 
5979
+ #: photo-gallery.php:1553
5980
  msgid "Editing Options"
5981
  msgstr ""
5982
 
5983
+ #: photo-gallery.php:1557
5984
  msgid "Global Options"
5985
  msgstr ""
5986
 
5987
+ #: photo-gallery.php:1573
5988
  msgid "Album Options"
5989
  msgstr ""
5990
 
5991
+ #: photo-gallery.php:1581
5992
  msgid "Thumbnail Options"
5993
  msgstr ""
5994
 
5995
+ #: photo-gallery.php:1585
5996
  msgid "Image Options"
5997
  msgstr ""
5998
 
5999
+ #: photo-gallery.php:1589
6000
  msgid "Social Options"
6001
  msgstr ""
6002
 
6003
+ #: photo-gallery.php:1593
6004
  msgid "Carousel Options"
6005
  msgstr ""
6006
 
6007
+ #: photo-gallery.php:1599
6008
  msgid "Creating/Editing Themes"
6009
  msgstr ""
6010
 
6011
+ #: photo-gallery.php:1623
6012
  msgid "Compact Album"
6013
  msgstr ""
6014
 
6015
+ #: photo-gallery.php:1627
6016
  msgid "Masonry Album"
6017
  msgstr ""
6018
 
6019
+ #: photo-gallery.php:1631
6020
  msgid "Extended Album"
6021
  msgstr ""
6022
 
6023
+ #: photo-gallery.php:1643
6024
  msgid "Page Navigation"
6025
  msgstr ""
6026
 
6027
+ #: photo-gallery.php:1653
6028
  msgid "Generating Shortcode"
6029
  msgstr ""
6030
 
6031
+ #: photo-gallery.php:1658
6032
  msgid "Editing Comments"
6033
  msgstr "Yorumlar gizle"
6034
 
6035
+ #: photo-gallery.php:1663
6036
  msgid "Editing Ratings"
6037
  msgstr ""
6038
 
6039
+ #: photo-gallery.php:1668
6040
  msgid "Publishing the Created Photo Gallery"
6041
  msgstr ""
6042
 
6043
+ #: photo-gallery.php:1672
6044
  msgid "General Parameters"
6045
  msgstr ""
6046
 
6047
+ #: photo-gallery.php:1676
6048
  msgid "Lightbox Parameters"
6049
  msgstr ""
6050
 
6051
+ #: photo-gallery.php:1686
6052
  msgid "Publishing Photo Gallery Widgets"
6053
  msgstr ""
6054
 
6055
+ #: photo-gallery.php:1690
6056
  msgid "Tag Cloud"
6057
  msgstr ""
6058
 
6059
+ #: photo-gallery.php:1702
6060
  msgid "Photo Gallery Widget"
6061
  msgstr ""
6062
 
6063
+ #: photo-gallery.php:1773
6064
  msgid "Albums"
6065
  msgstr ""
6066
 
6067
+ #: photo-gallery.php:1788
6068
  msgid "Gallery tags"
6069
  msgstr "Galeri boş"
6070
 
6071
+ #: photo-gallery.php:1837
6072
  msgid "Photo gallery plugin autoupdate interval."
6073
  msgstr "Otomatik güncelleme aralığını eklentisi Fotoğraf galerisi."
6074
 
6075
+ #: photo-gallery.php:1880
6076
  #, php-format
6077
  msgid "Please update the %s add-on to start using."
6078
  msgstr ""
6079
 
6080
+ #: photo-gallery.php:1881
6081
  #, php-format
6082
  msgid "Please update the %s add-ons to start using."
6083
  msgstr ""
6084
 
6085
+ #: photo-gallery.php:1924
6086
  msgid "Rate"
6087
  msgstr "Anma"
6088
 
6089
+ #: wd/includes/deactivate.php:22
 
 
 
 
 
 
 
6090
  msgid "Technical problems / hard to use"
6091
  msgstr ""
6092
 
6093
+ #: wd/includes/deactivate.php:26
6094
  msgid "Free version is limited"
6095
  msgstr ""
6096
 
6097
+ #: wd/includes/deactivate.php:30
6098
  msgid "Upgrading to paid version"
6099
  msgstr ""
6100
 
6101
+ #: wd/includes/deactivate.php:34
6102
  msgid "Temporary deactivation"
6103
  msgstr ""
6104
 
6105
+ #: wd/includes/notices.php:208
6106
  msgid "Leave A Review?"
6107
  msgstr ""
6108
 
6109
+ #: wd/includes/notices.php:209
6110
  #, php-format
6111
  msgid ""
6112
  "We hope you've enjoyed using WordPress %s! Would you consider leaving us a "
6113
  "review on WordPress.org?"
6114
  msgstr ""
6115
 
6116
+ #: wd/includes/notices.php:210
6117
  msgid "Sure! I'd love to!"
6118
  msgstr ""
6119
 
6120
+ #: wd/includes/notices.php:211
6121
  msgid "I've already left a review"
6122
  msgstr ""
6123
 
6124
+ #: wd/includes/notices.php:212
6125
  msgid "Maybe Later"
6126
  msgstr ""
6127
 
6128
+ #: wd/includes/notices.php:213
6129
  msgid "Never show again"
6130
  msgstr ""
6131
 
6310
  msgid "Terms of Use"
6311
  msgstr ""
6312
 
6313
+ #: wd/wd.php:53 wd/wd.php:57
6314
  msgid "Premium"
6315
  msgstr ""
6316
 
6317
  #, fuzzy
6318
+ #~| msgid "Incorrect Security code."
6319
+ #~ msgid "Error, incorrect Security code."
6320
+ #~ msgstr "Hatası. Yanlış Doğrulama Kodu."
6321
 
6322
  #, fuzzy
6323
+ #~| msgid "Search"
6324
+ #~ msgid "March"
6325
+ #~ msgstr "Ara"
6326
 
6327
  #, fuzzy
6328
+ #~| msgid "Comments"
6329
+ #~ msgid "Cents"
6330
+ #~ msgstr "Yorum"
6331
 
6332
  #, fuzzy
6333
  #~| msgid "Album is empty."
6334
+ #~ msgid "Number of items per page:"
6335
  #~ msgstr "Albüm boş"
6336
 
6337
  #, fuzzy
6338
+ #~| msgid "Please enter a valid email."
6339
+ #~ msgid "Enter a valid value."
6340
+ #~ msgstr "Bu, geçerli bir e-posta adresi değil."
6341
+
6342
+ #, fuzzy
6343
+ #~| msgid "This is not a valid email address."
6344
+ #~ msgid "Enter a valid email address."
6345
+ #~ msgstr "Bu, geçerli bir e-posta adresi değil."
6346
+
6347
+ #, fuzzy
6348
+ #~| msgid "No Images found."
6349
+ #~ msgid "Nothing found."
6350
+ #~ msgstr "Yorumları göster."
6351
+
6352
+ #, fuzzy
6353
+ #~| msgid "The image has been deleted."
6354
+ #~ msgid "The captcha already has been created."
6355
+ #~ msgstr "Resim silindi."
6356
+
6357
+ #, fuzzy
6358
+ #~| msgid "The %s field must contain a valid email address."
6359
+ #~ msgid "This field is an input field that accepts an email address."
6360
+ #~ msgstr "Bu, %s geçerli bir e-posta adresi değil."
6361
+
6362
+ #, fuzzy
6363
+ #~| msgid "This is not a valid email address."
6364
+ #~ msgid "This is not a valid time value."
6365
+ #~ msgstr "Bu, geçerli bir e-posta adresi değil."
6366
+
6367
+ #, fuzzy
6368
+ #~| msgid "This is not a valid email address."
6369
+ #~ msgid "This is not a valid number value."
6370
+ #~ msgstr "Bu, geçerli bir e-posta adresi değil."
6371
+
6372
+ #, fuzzy
6373
+ #~| msgid "This is not a valid email address."
6374
+ #~ msgid "This is not a valid date value."
6375
+ #~ msgstr "Bu, geçerli bir e-posta adresi değil."
6376
+
6377
+ #, fuzzy
6378
+ #~| msgid "This is not a valid email address."
6379
+ #~ msgid "This is not a valid email address"
6380
+ #~ msgstr "Bu, geçerli bir e-posta adresi değil."
6381
+
6382
+ #, fuzzy
6383
+ #~| msgid "Delete"
6384
+ #~ msgid "Item Deleted."
6385
+ #~ msgstr "Yorum silin"
6386
+
6387
+ #, fuzzy
6388
+ #~| msgid "Delete"
6389
+ #~ msgid "Form Deleted."
6390
+ #~ msgstr "Yorum silin"
6391
+
6392
+ #, fuzzy
6393
+ #~| msgid "Search"
6394
+ #~ msgid "Search slider"
6395
+ #~ msgstr "Ara"
6396
+
6397
+ #, fuzzy
6398
+ #~| msgid "Hide info"
6399
+ #~ msgid "Slide Info"
6400
+ #~ msgstr "Bilgiyi sakla"
6401
+
6402
+ #, fuzzy
6403
+ #~| msgid "Next page"
6404
+ #~ msgid "Text Layer"
6405
+ #~ msgstr "Sonraki"
6406
+
6407
+ #, fuzzy
6408
+ #~| msgid "Preview"
6409
+ #~ msgid "Exit preview"
6410
+ #~ msgstr "Önceki"
6411
+
6412
+ #, fuzzy
6413
+ #~| msgid "Preview"
6414
+ #~ msgid "Preview slide"
6415
+ #~ msgstr "Önceki"
6416
+
6417
+ #, fuzzy
6418
+ #~| msgid "Hide"
6419
+ #~ msgid "Show/Hide"
6420
+ #~ msgstr "Gizle"
6421
+
6422
+ #, fuzzy
6423
+ #~| msgid "Show rating"
6424
+ #~ msgid "Show duration :"
6425
+ #~ msgstr "Derece Show"
6426
+
6427
+ #, fuzzy
6428
+ #~| msgid "Hide rating"
6429
+ #~ msgid "Hide duration :"
6430
+ #~ msgstr "Gizle derece"
6431
+
6432
+ #, fuzzy
6433
+ #~| msgid "Remove items"
6434
+ #~ msgid "Remove slide"
6435
+ #~ msgstr "Madde"
6436
+
6437
+ #, fuzzy
6438
+ #~| msgid "Go to the next page"
6439
+ #~ msgid "Open on the same page"
6440
+ #~ msgstr "Bir sonraki sayfaya gitmek"
6441
+
6442
+ #, fuzzy
6443
+ #~| msgid "Previous"
6444
+ #~ msgid "Open on new page"
6445
+ #~ msgstr "Önceki"
6446
+
6447
+ #, fuzzy
6448
+ #~| msgid "Open image in original size."
6449
+ #~ msgid "Open in main frame"
6450
+ #~ msgstr "Orijinal boyutunda açık görüntüsü."
6451
+
6452
+ #, fuzzy
6453
+ #~| msgid "First"
6454
+ #~ msgid "Fit"
6455
+ #~ msgstr "İlk"
6456
+
6457
+ #, fuzzy
6458
+ #~| msgid "Theme title"
6459
+ #~ msgid "Photo title"
6460
+ #~ msgstr "Derece Show"
6461
+
6462
+ #, fuzzy
6463
+ #~| msgid "Show image description"
6464
+ #~ msgid "Photo description"
6465
+ #~ msgstr "Yorumları göster"
6466
+
6467
+ #, fuzzy
6468
+ #~| msgid "Go to the next page"
6469
+ #~ msgid "Goto next slide"
6470
+ #~ msgstr "Bir sonraki sayfaya gitmek"
6471
+
6472
+ #, fuzzy
6473
+ #~| msgid "Go to the previous page"
6474
+ #~ msgid "Goto previous slide"
6475
+ #~ msgstr "Önceki sayfaya git"
6476
+
6477
+ #, fuzzy
6478
+ #~| msgid "Pause"
6479
+ #~ msgid "Pause timer"
6480
+ #~ msgstr "Pause"
6481
+
6482
+ #, fuzzy
6483
+ #~| msgid "Theme title"
6484
+ #~ msgid "Resume timer"
6485
+ #~ msgstr "Derece Show"
6486
+
6487
+ #, fuzzy
6488
+ #~| msgid "Select Image"
6489
+ #~ msgid "Select a Starter"
6490
+ #~ msgstr "Sıfırlayın"
6491
+
6492
+ #, fuzzy, php-format
6493
+ #~| msgid "Maximize"
6494
+ #~ msgid "Maximum size: %s"
6495
+ #~ msgstr "Özdeyiş"
6496
+
6497
+ #, fuzzy
6498
+ #~| msgid "Filename"
6499
+ #~ msgid "Empty filename"
6500
+ #~ msgstr "Dosya Adı"
6501
+
6502
+ #, fuzzy
6503
+ #~| msgid "Delete"
6504
+ #~ msgid "delete"
6505
+ #~ msgstr "Yorum silin"
6506
+
6507
+ #, fuzzy
6508
+ #~| msgid "Preview"
6509
+ #~ msgid "preview"
6510
+ #~ msgstr "Önceki"
6511
+
6512
+ #, fuzzy
6513
+ #~| msgid "No Images found."
6514
+ #~ msgid "No slider found."
6515
+ #~ msgstr "Yorumları göster."
6516
+
6517
+ #, fuzzy
6518
+ #~| msgid "Gallery Type:"
6519
+ #~ msgid "Slider Types"
6520
+ #~ msgstr "Galeri boş:"
6521
+
6522
+ #, fuzzy
6523
+ #~| msgid "Hide info"
6524
+ #~ msgid "Hide info table"
6525
+ #~ msgstr "Bilgiyi sakla"
6526
+
6527
+ #, fuzzy
6528
+ #~| msgid "Enable comments"
6529
+ #~ msgid "Enable cache?"
6530
+ #~ msgstr "Yorumları göster"
6531
+
6532
+ #, fuzzy
6533
+ #~| msgid "No Images found."
6534
+ #~ msgid "Not found."
6535
+ #~ msgstr "Yorumları göster."
6536
+
6537
+ #, fuzzy
6538
+ #~| msgid "Hide rating"
6539
+ #~ msgid "Slider Settings"
6540
+ #~ msgstr "Gizle derece"
6541
+
6542
+ #, fuzzy
6543
+ #~| msgid "Show Facebook button"
6544
+ #~ msgid "Facebook Settings"
6545
+ #~ msgstr "Facebook'ta paylaşın"
6546
+
6547
+ #, fuzzy
6548
+ #~| msgid "Show on hover"
6549
+ #~ msgid "Pause on hover"
6550
+ #~ msgstr "Bilgi göster"
6551
+
6552
+ #, fuzzy
6553
+ #~| msgid "Random"
6554
+ #~ msgid "Random order"
6555
+ #~ msgstr "Rasgele"
6556
+
6557
+ #, fuzzy
6558
+ #~| msgid "Hide rating"
6559
+ #~ msgid "Slide preloading"
6560
+ #~ msgstr "Gizle derece"
6561
+
6562
+ #, fuzzy
6563
+ #~| msgid "Back Font color:"
6564
+ #~ msgid "Background color :"
6565
+ #~ msgstr "Facebook'ta paylaşın:"
6566
+
6567
+ #, fuzzy
6568
+ #~| msgid "Show custom posts"
6569
+ #~ msgid "Slider custom styles :"
6570
+ #~ msgstr "Yorumları göster"
6571
+
6572
+ #, fuzzy
6573
+ #~| msgid "Backup"
6574
+ #~ msgid "Background"
6575
+ #~ msgstr "Geri"
6576
+
6577
+ #, fuzzy
6578
+ #~| msgid "Hide rating"
6579
+ #~ msgid "Slide duration :"
6580
+ #~ msgstr "Gizle derece"
6581
+
6582
+ #, fuzzy
6583
+ #~| msgid "Add Gallery Widget"
6584
+ #~ msgid "Add Master Slider"
6585
+ #~ msgstr "Galeri boş"
6586
+
6587
+ #, fuzzy
6588
+ #~| msgid "Theme title"
6589
+ #~ msgid "The post title"
6590
+ #~ msgstr "Derece Show"
6591
+
6592
+ #, fuzzy
6593
+ #~| msgid "Reset image"
6594
+ #~ msgid "Post image"
6595
+ #~ msgstr "Sıfırlayın"
6596
+
6597
+ #, fuzzy
6598
+ #~| msgid "Show image counter"
6599
+ #~ msgid "Post image source"
6600
+ #~ msgstr "Yorumları göster"
6601
+
6602
+ #, fuzzy
6603
+ #~| msgid "Enable comments"
6604
+ #~ msgid "Number of comments"
6605
+ #~ msgstr "Yorumları göster"
6606
+
6607
+ #, fuzzy
6608
+ #~| msgid "Editing Comments"
6609
+ #~ msgid "Rating Count"
6610
+ #~ msgstr "Yorumlar gizle"
6611
+
6612
+ #, fuzzy
6613
+ #~| msgid "Show rating"
6614
+ #~ msgid "rating"
6615
+ #~ msgstr "Derece Show"
6616
+
6617
+ #, fuzzy
6618
+ #~| msgid "Select Image"
6619
+ #~ msgid "Select Slider:"
6620
+ #~ msgstr "Sıfırlayın"
6621
+
6622
+ #, fuzzy
6623
+ #~| msgid "No Images found."
6624
+ #~ msgid "No slideshows found"
6625
+ #~ msgstr "Yorumları göster."
6626
+
6627
+ #, fuzzy
6628
+ #~| msgid "Delete"
6629
+ #~ msgid "Delete slide"
6630
+ #~ msgstr "Yorum silin"
6631
+
6632
+ #, fuzzy
6633
+ #~| msgid "Select Image"
6634
+ #~ msgid "Select replacement image"
6635
+ #~ msgstr "Sıfırlayın"
6636
+
6637
+ #, fuzzy
6638
+ #~| msgid "Select Image"
6639
+ #~ msgid "Select Slider"
6640
+ #~ msgstr "Sıfırlayın"
6641
+
6642
+ #, fuzzy
6643
+ #~| msgid "Preview"
6644
+ #~ msgid "Save & Preview"
6645
+ #~ msgstr "Önceki"
6646
+
6647
+ #, fuzzy
6648
+ #~| msgid "Random"
6649
+ #~ msgid "Box Random"
6650
+ #~ msgstr "Rasgele"
6651
+
6652
+ #, fuzzy
6653
+ #~| msgid "Go to the previous page"
6654
+ #~ msgid "Show the previous/next arrows"
6655
+ #~ msgstr "Önceki sayfaya git"
6656
+
6657
+ #, fuzzy
6658
+ #~| msgid "Hide rating"
6659
+ #~ msgid "Slide direction"
6660
+ #~ msgstr "Gizle derece"
6661
+
6662
+ #, fuzzy
6663
+ #~| msgid "Previous page"
6664
+ #~ msgid "Previous text"
6665
+ #~ msgstr "Önceki"
6666
+
6667
+ #, fuzzy
6668
+ #~| msgid "Next page"
6669
+ #~ msgid "Next text"
6670
+ #~ msgstr "Sonraki"
6671
+
6672
+ #, fuzzy
6673
+ #~| msgid "Previous"
6674
+ #~ msgid "Caption speed"
6675
+ #~ msgstr "Önceki"
6676
+
6677
+ #, fuzzy
6678
+ #~| msgid "Delete"
6679
+ #~ msgid "Delete Slider"
6680
+ #~ msgstr "Yorum silin"
6681
+
6682
+ #, fuzzy
6683
+ #~| msgid "All tags"
6684
+ #~ msgid "All Events"
6685
+ #~ msgstr "Galeri boş"
6686
+
6687
+ #, fuzzy
6688
+ #~| msgid "Reset image"
6689
+ #~ msgid "Choose Image"
6690
+ #~ msgstr "Sıfırlayın"
6691
+
6692
+ #, fuzzy
6693
+ #~| msgid "Enable rating"
6694
+ #~ msgid "enable "
6695
+ #~ msgstr "Gizle derece"
6696
+
6697
+ #, fuzzy
6698
+ #~| msgid "Size"
6699
+ #~ msgid "Size:"
6700
+ #~ msgstr "Boyut"
6701
+
6702
+ #, fuzzy
6703
+ #~| msgid "All tags"
6704
+ #~ msgid "All Languages"
6705
+ #~ msgstr "Galeri boş"
6706
+
6707
+ #, fuzzy
6708
+ #~| msgid "Load More..."
6709
+ #~ msgid "Loading Preview..."
6710
+ #~ msgstr "Daha fazla yükle..."
6711
+
6712
+ #, fuzzy
6713
+ #~| msgid "You have already rated."
6714
+ #~ msgid "Purchase Code already registered!"
6715
+ #~ msgstr "Zaten puan var. "
6716
+
6717
+ #, fuzzy
6718
+ #~| msgid "Back"
6719
+ #~ msgid "Go Back"
6720
+ #~ msgstr "Geri"
6721
+
6722
+ #, fuzzy
6723
+ #~| msgid "The image has been deleted."
6724
+ #~ msgid "The slider deleted"
6725
+ #~ msgstr "Resim silindi."
6726
+
6727
+ #, fuzzy
6728
+ #~| msgid "Preview"
6729
+ #~ msgid "Pre"
6730
+ #~ msgstr "Önceki"
6731
+
6732
+ #, fuzzy
6733
+ #~| msgid "Not rated yet."
6734
+ #~ msgid "State"
6735
+ #~ msgstr "Henüz değerlendirilmedi. "
6736
+
6737
+ #, fuzzy
6738
+ #~| msgid "Enable rating"
6739
+ #~ msgid "Enable Link"
6740
+ #~ msgstr "Gizle derece"
6741
+
6742
+ #, fuzzy
6743
+ #~| msgid "Hide info"
6744
+ #~ msgid "Slide Link"
6745
+ #~ msgstr "Bilgiyi sakla"
6746
+
6747
+ #, fuzzy
6748
+ #~| msgid "Previous page"
6749
+ #~ msgid "-- Previous Slide --"
6750
+ #~ msgstr "Önceki"
6751
+
6752
+ #, fuzzy
6753
+ #~| msgid "Gallery title"
6754
+ #~ msgid "Slider Title"
6755
+ #~ msgstr "Galeri boş"
6756
+
6757
+ #, fuzzy
6758
+ #~| msgid "Fullscreen"
6759
+ #~ msgid "Full Screen"
6760
+ #~ msgstr "Fullscreen"
6761
+
6762
+ #, fuzzy
6763
+ #~| msgid "Exit Fullscreen"
6764
+ #~ msgid "Min. Fullscreen Height"
6765
+ #~ msgstr "Tam Ekran çıkın"
6766
+
6767
+ #, fuzzy
6768
+ #~| msgid "Fullscreen"
6769
+ #~ msgid "FullScreen Align"
6770
+ #~ msgstr "Fullscreen"
6771
+
6772
+ #, fuzzy
6773
+ #~| msgid "Enable Google fonts"
6774
+ #~ msgid "Load Google Font"
6775
+ #~ msgstr "Yorumları göster"
6776
+
6777
+ #, fuzzy
6778
+ #~| msgid "Enable Google fonts"
6779
+ #~ msgid "Google Font"
6780
+ #~ msgstr "Yorumları göster"
6781
+
6782
+ #, fuzzy
6783
+ #~| msgid "Go to the next page"
6784
+ #~ msgid "Position on the page"
6785
+ #~ msgstr "Bir sonraki sayfaya gitmek"
6786
+
6787
+ #, fuzzy
6788
+ #~| msgid "Show image info"
6789
+ #~ msgid "Show Timer Line"
6790
+ #~ msgstr "Yorumları göster"
6791
+
6792
+ #, fuzzy
6793
+ #~| msgid "Back Font color:"
6794
+ #~ msgid "Background color"
6795
+ #~ msgstr "Facebook'ta paylaşın:"
6796
+
6797
+ #, fuzzy
6798
+ #~| msgid "Show on hover"
6799
+ #~ msgid "Stop On Hover"
6800
+ #~ msgstr "Bilgi göster"
6801
+
6802
+ #, fuzzy
6803
+ #~| msgid "Delete"
6804
+ #~ msgid "Delete Slide"
6805
+ #~ msgstr "Yorum silin"
6806
+
6807
+ #, fuzzy
6808
+ #~| msgid "Preview"
6809
+ #~ msgid "Preview Slide"
6810
+ #~ msgstr "Önceki"
6811
+
6812
+ #, fuzzy
6813
+ #~| msgid "Please enter a valid email."
6814
+ #~ msgid "Please enter your "
6815
+ #~ msgstr "Bu, geçerli bir e-posta adresi değil."
6816
+
6817
+ #, fuzzy
6818
+ #~| msgid "Previous"
6819
+ #~ msgid " this page."
6820
+ #~ msgstr "Önceki"
6821
+
6822
+ #, fuzzy
6823
+ #~| msgid "Hide rating"
6824
+ #~ msgid "Video Settings"
6825
+ #~ msgstr "Gizle derece"
6826
+
6827
+ #, fuzzy
6828
+ #~| msgid "Hide Comments"
6829
+ #~ msgid "Hide Controls:"
6830
+ #~ msgstr "Yorumlar gizle"
6831
+
6832
+ #, fuzzy
6833
+ #~| msgid "Preview"
6834
+ #~ msgid "Preview Image"
6835
+ #~ msgstr "Önceki"
6836
+
6837
+ #, fuzzy
6838
+ #~| msgid "Add Gallery Widget"
6839
+ #~ msgid "Add Layer: Video"
6840
+ #~ msgstr "Galeri boş"
6841
+
6842
+ #, fuzzy
6843
+ #~| msgid "Delete"
6844
+ #~ msgid "Delete Layer"
6845
+ #~ msgstr "Yorum silin"
6846
+
6847
+ #, fuzzy
6848
+ #~| msgid "Random"
6849
+ #~ msgid "Randomize"
6850
+ #~ msgstr "Rasgele"
6851
+
6852
+ #, fuzzy
6853
+ #~| msgid "Hide rating"
6854
+ #~ msgid "updating"
6855
+ #~ msgstr "Gizle derece"
6856
+
6857
+ #, fuzzy
6858
+ #~| msgid "Previous page"
6859
+ #~ msgid "Previous Slide"
6860
+ #~ msgstr "Önceki"
6861
+
6862
+ #, fuzzy
6863
+ #~| msgid "Next page"
6864
+ #~ msgid "Next Slide"
6865
+ #~ msgstr "Sonraki"
6866
+
6867
+ #, fuzzy
6868
+ #~| msgid "Preview"
6869
+ #~ msgid "Preview Slider"
6870
+ #~ msgstr "Önceki"
6871
+
6872
+ #, fuzzy
6873
+ #~| msgid "No Images found."
6874
+ #~ msgid "No Sliders Found"
6875
+ #~ msgstr "Yorumları göster."
6876
+
6877
+ #, fuzzy
6878
+ #~| msgid "Theme title"
6879
+ #~ msgid "theme html"
6880
+ #~ msgstr "Derece Show"
6881
+
6882
+ #, fuzzy
6883
+ #~| msgid "Pause"
6884
+ #~ msgid "use"
6885
+ #~ msgstr "Pause"
6886
+
6887
+ #, fuzzy
6888
+ #~| msgid "Select Image"
6889
+ #~ msgid "Select Slide Image"
6890
+ #~ msgstr "Sıfırlayın"
6891
+
6892
+ #, fuzzy
6893
+ #~| msgid "No Images found."
6894
+ #~ msgid "No Slides Found"
6895
+ #~ msgstr "Yorumları göster."
6896
+
6897
+ #, fuzzy
6898
+ #~| msgid "Delete"
6899
+ #~ msgid "Delete_layout"
6900
+ #~ msgstr "Yorum silin"
6901
+
6902
+ #, fuzzy
6903
+ #~| msgid "Default"
6904
+ #~ msgid "Default_layouts"
6905
+ #~ msgstr "Standart"
6906
+
6907
+ #, fuzzy
6908
+ #~| msgid "items"
6909
+ #~ msgid "Add_item"
6910
+ #~ msgstr "madde"
6911
+
6912
+ #, fuzzy
6913
+ #~| msgid "Delete"
6914
+ #~ msgid "Delete_slides"
6915
+ #~ msgstr "Yorum silin"
6916
+
6917
+ #, fuzzy
6918
+ #~| msgid "or"
6919
+ #~ msgid "for"
6920
+ #~ msgstr "daha"
6921
+
6922
+ #, fuzzy
6923
+ #~| msgid "Search"
6924
+ #~ msgid "Search_by_tag"
6925
+ #~ msgstr "Ara"
6926
+
6927
+ #, fuzzy
6928
+ #~| msgid "Photo Gallery Premium"
6929
+ #~ msgid "Photo Gallery Facebook"
6930
+ #~ msgstr "Facebook'ta paylaşın"
6931
+
6932
+ #, fuzzy
6933
+ #~| msgid "Gallery group"
6934
+ #~ msgid "Gallery/Gallery group"
6935
+ #~ msgstr "Galeri boş"
6936
+
6937
+ #, fuzzy
6938
+ #~| msgid "Gallery view type"
6939
+ #~ msgid "Select the gallery view type."
6940
+ #~ msgstr "Galeri boş"
6941
+
6942
+ #, fuzzy
6943
+ #~| msgid "Download gallery"
6944
+ #~ msgid "Edit gallery"
6945
+ #~ msgstr "Orijinal resim dosyasını indirin"
6946
+
6947
+ #, fuzzy
6948
+ #~| msgid "Order Gallery group by"
6949
+ #~ msgid "Select the gallery group type."
6950
+ #~ msgstr "Galeri boş"
6951
+
6952
+ #, fuzzy
6953
+ #~| msgid "Gallery group"
6954
+ #~ msgid "Edit gallery group"
6955
+ #~ msgstr "Galeri boş"
6956
+
6957
+ #~ msgid "Gallery defaults"
6958
+ #~ msgstr "Galeri boş"
6959
+
6960
+ #~ msgid "Gallery Group defaults"
6961
+ #~ msgstr "Galeri boş"
6962
+
6963
+ #, fuzzy
6964
+ #~| msgid "Ordering"
6965
+ #~ msgid "Order"
6966
+ #~ msgstr "Sipariş"
6967
+
6968
+ #, fuzzy
6969
+ #~| msgid "Ordering"
6970
+ #~ msgid "Order direction"
6971
+ #~ msgstr "Sipariş"
6972
+
6973
+ #, fuzzy
6974
+ #~| msgid "Show image descriptions"
6975
+ #~ msgid "Show image descriptions in Vertical Masonry"
6976
+ #~ msgstr "Yorumları göster"
6977
+
6978
+ #, fuzzy
6979
+ #~| msgid "Show Facebook button"
6980
+ #~ msgid "Show Google+ button"
6981
+ #~ msgstr "Facebook'ta paylaşın"
6982
+
6983
+ #, fuzzy
6984
+ #~| msgid "Gallery title alignment:"
6985
+ #~ msgid "Gallery title/description alignment:"
6986
+ #~ msgstr "Galeri boş:"
6987
+
6988
+ #, fuzzy
6989
+ #~| msgid "Gallery title alignment:"
6990
+ #~ msgid "Thumbnail alignment:"
6991
+ #~ msgstr "Galeri boş:"
6992
+
6993
+ #, fuzzy
6994
+ #~| msgid "Hide info"
6995
+ #~ msgid "Edit info"
6996
+ #~ msgstr "Bilgiyi sakla"
6997
 
6998
  #~ msgid "There is no theme selected or the theme was deleted."
6999
  #~ msgstr "Orada seçilmiş hiçbir tema veya tema silindi."
7000
 
 
 
 
7001
  #~ msgid "Album is empty."
7002
  #~ msgstr "Albüm boş"
7003
 
 
 
 
7004
  #~ msgid "Share on Google+"
7005
  #~ msgstr "Google+ paylaşın."
7006
 
7015
 
7016
  #~ msgid "You have already rated."
7017
  #~ msgstr "Zaten puan var. "
7018
+
7019
+ #, fuzzy
7020
+ #~| msgid "Show Comments"
7021
+ #~ msgid "how Comments"
7022
+ #~ msgstr "Yorumları Göster"
7023
+
7024
+ #, fuzzy
7025
+ #~| msgid "Show more details"
7026
+ #~ msgid "More details"
7027
+ #~ msgstr "Yorumları göster"
7028
+
7029
+ #, fuzzy
7030
+ #~| msgid "Show comments"
7031
+ #~ msgid "Show Percents "
7032
+ #~ msgstr "Yorumları göster"
7033
+
7034
+ #, fuzzy
7035
+ #~| msgid "Show rating"
7036
+ #~ msgid "Show Creation Dates "
7037
+ #~ msgstr "Derece Show"
7038
+
7039
+ #, fuzzy
7040
+ #~| msgid "Select Image"
7041
+ #~ msgid "Select Date: from"
7042
+ #~ msgstr "Sıfırlayın"
7043
+
7044
+ #, fuzzy
7045
+ #~| msgid "There are no images in this gallery."
7046
+ #~ msgid "The gallery images view type in the gallery group."
7047
+ #~ msgstr "Bu galeride resim yok."
7048
+
7049
+ #, fuzzy
7050
+ #~| msgid "Load More..."
7051
+ #~ msgid "Load more"
7052
+ #~ msgstr "Daha fazla yükle..."
7053
+
7054
+ #, fuzzy
7055
+ #~| msgid "Album is empty."
7056
+ #~ msgid "Album title"
7057
+ #~ msgstr "Albüm boş"
7058
+
7059
+ #, fuzzy
7060
+ #~| msgid "Album is empty."
7061
+ #~ msgid "Album view type"
7062
+ #~ msgstr "Albüm boş"
7063
+
7064
+ #~ msgid "There is no album selected or the album was deleted."
7065
+ #~ msgstr "Orada seçilmiş bir albüm veya albüm silindi."
7066
+
7067
+ #~ msgid "Gallery is empty."
7068
+ #~ msgstr "Galeri boş."
photo-gallery.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: Photo Gallery
4
  * Plugin URI: https://10web.io/plugins/wordpress-photo-gallery/?utm_source=photo_gallery&utm_medium=free_plugin
5
  * Description: This plugin is a fully responsive gallery plugin with advanced functionality. It allows having different image galleries for your posts and pages. You can create unlimited number of galleries, combine them into albums, and provide descriptions and tags.
6
- * Version: 1.5.68
7
  * Author: Photo Gallery Team
8
  * Author URI: https://10web.io/plugins/?utm_source=photo_gallery&utm_medium=free_plugin
9
  * License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
@@ -105,8 +105,8 @@ final class BWG {
105
  $this->plugin_url = plugins_url(plugin_basename(dirname(__FILE__)));
106
  $this->front_url = $this->plugin_url;
107
  $this->main_file = plugin_basename(__FILE__);
108
- $this->plugin_version = '1.5.68';
109
- $this->db_version = '1.5.68';
110
  $this->prefix = 'bwg';
111
  $this->nicename = __('Photo Gallery', $this->prefix);
112
  require_once($this->plugin_dir . '/framework/WDWLibrary.php');
@@ -707,10 +707,10 @@ final class BWG {
707
 
708
  // Get values for elementor widget.
709
  $params['gallery_type'] = WDWLibrary::get('gallery_type', 'thumbnails');
710
- $params['gallery_id'] = WDWLibrary::get('gallery_id', 0);
711
- $params['tag'] = WDWLibrary::get('tag', 0);
712
- $params['album_id'] = WDWLibrary::get('album_id', 0);
713
- $params['theme_id'] = WDWLibrary::get('theme_id', 0);
714
  $params['current_url'] = WDWLibrary::get('current_url', NULL);
715
  $params['ajax'] = TRUE;
716
 
3
  * Plugin Name: Photo Gallery
4
  * Plugin URI: https://10web.io/plugins/wordpress-photo-gallery/?utm_source=photo_gallery&utm_medium=free_plugin
5
  * Description: This plugin is a fully responsive gallery plugin with advanced functionality. It allows having different image galleries for your posts and pages. You can create unlimited number of galleries, combine them into albums, and provide descriptions and tags.
6
+ * Version: 1.5.69
7
  * Author: Photo Gallery Team
8
  * Author URI: https://10web.io/plugins/?utm_source=photo_gallery&utm_medium=free_plugin
9
  * License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
105
  $this->plugin_url = plugins_url(plugin_basename(dirname(__FILE__)));
106
  $this->front_url = $this->plugin_url;
107
  $this->main_file = plugin_basename(__FILE__);
108
+ $this->plugin_version = '1.5.69';
109
+ $this->db_version = '1.5.69';
110
  $this->prefix = 'bwg';
111
  $this->nicename = __('Photo Gallery', $this->prefix);
112
  require_once($this->plugin_dir . '/framework/WDWLibrary.php');
707
 
708
  // Get values for elementor widget.
709
  $params['gallery_type'] = WDWLibrary::get('gallery_type', 'thumbnails');
710
+ $params['gallery_id'] = WDWLibrary::get('gallery_id', 0, 'intval');
711
+ $params['tag'] = WDWLibrary::get('tag', 0, 'intval');
712
+ $params['album_id'] = WDWLibrary::get('album_id', 0, 'intval');
713
+ $params['theme_id'] = WDWLibrary::get('theme_id', 0, 'intval');
714
  $params['current_url'] = WDWLibrary::get('current_url', NULL);
715
  $params['ajax'] = TRUE;
716
 
readme.txt CHANGED
@@ -2,8 +2,8 @@
2
  Contributors: webdorado,wdsupport,photogallerysupport,10web
3
  Tags: gallery, photo gallery, image gallery, responsive gallery, wordpress gallery plugin, photo albums, gallery slider, gallery lightbox, wordpress photo gallery plugin, fullscreen gallery, watermarking, video gallery
4
  Requires at least: 4.6
5
- Tested up to: 5.6
6
- Stable tag: 1.5.68
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
@@ -282,6 +282,15 @@ Choose whether to display random or the first/last specific number of images.
282
 
283
  == Changelog ==
284
 
 
 
 
 
 
 
 
 
 
285
  = 1.5.68 =
286
  * Added: Possibility to allow users with none administrator role to edit themes, tags, options.
287
  * Fixed: XSS vulnerability.
2
  Contributors: webdorado,wdsupport,photogallerysupport,10web
3
  Tags: gallery, photo gallery, image gallery, responsive gallery, wordpress gallery plugin, photo albums, gallery slider, gallery lightbox, wordpress photo gallery plugin, fullscreen gallery, watermarking, video gallery
4
  Requires at least: 4.6
5
+ Tested up to: 5.7
6
+ Stable tag: 1.5.69
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
282
 
283
  == Changelog ==
284
 
285
+ = 1.5.69 =
286
+ * Added: Possibility to set Embed YouTube video starting time and to show related videos from your channel.
287
+ * Fixed: XSS vulnerability.
288
+ * Fixed: Scroll bar styles in comments.
289
+ * Fixed: Thumbnails alignment in uploader.
290
+ * Fixed: Remove I button to show image title/description for image with empty title/description in lightbox.
291
+ * Fixed: Update preview images after the gallery content has been removed.
292
+ * Fixed: Message after deleting images with bulk action.
293
+
294
  = 1.5.68 =
295
  * Added: Possibility to allow users with none administrator role to edit themes, tags, options.
296
  * Fixed: XSS vulnerability.