Photo Gallery by WD – Responsive Photo Gallery - Version 1.5.42

Version Description

  • Added: Shortcode options to Elementor widget.
  • Added: Possibility to add image description to thumbnail view.
  • Added: Possibility to upload svg files.
  • Fixed: Masonry layout with Lazy load.
  • Fixed: Title styles for masonry.
  • Fixed: Gallery group load with enabled dynamic URLs.
  • Fixed: Notice on lightbox opening from widget.
  • Fixed: Image thumbnails dimensions for Google photos.
  • Fixed: XML Sitemap for Gallery Groups.
Download this release

Release Info

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

Code changes from version 1.5.41 to 1.5.42

admin/controllers/Albums.php CHANGED
@@ -202,7 +202,7 @@ class AlbumsController_bwg {
202
  'action' => 'addImages',
203
  'bwg_width' => '800',
204
  'bwg_height' => '550',
205
- 'extensions' => 'jpg,jpeg,png,gif',
206
  'callback' => 'bwg_add_preview_image',
207
  BWG()->nonce => wp_create_nonce('addImages'),
208
  'TB_iframe' => '1',
202
  'action' => 'addImages',
203
  'bwg_width' => '800',
204
  'bwg_height' => '550',
205
+ 'extensions' => 'jpg,jpeg,png,gif,svg',
206
  'callback' => 'bwg_add_preview_image',
207
  BWG()->nonce => wp_create_nonce('addImages'),
208
  'TB_iframe' => '1',
admin/controllers/Galleries.php CHANGED
@@ -287,7 +287,7 @@ class GalleriesController_bwg {
287
  'action' => 'addImages',
288
  'bwg_width' => '800',
289
  'bwg_height' => '550',
290
- 'extensions' => 'jpg,jpeg,png,gif',
291
  'callback' => 'bwg_add_preview_image',
292
  BWG()->nonce => wp_create_nonce('addImages'),
293
  'TB_iframe' => '1',
@@ -296,7 +296,7 @@ class GalleriesController_bwg {
296
  'action' => 'addImages',
297
  'bwg_width' => '1150',
298
  'bwg_height' => '800',
299
- 'extensions' => 'jpg,jpeg,png,gif',
300
  'callback' => 'bwg_add_image',
301
  BWG()->nonce => wp_create_nonce('addImages'),
302
  'TB_iframe' => '1',
287
  'action' => 'addImages',
288
  'bwg_width' => '800',
289
  'bwg_height' => '550',
290
+ 'extensions' => 'jpg,jpeg,png,gif,svg',
291
  'callback' => 'bwg_add_preview_image',
292
  BWG()->nonce => wp_create_nonce('addImages'),
293
  'TB_iframe' => '1',
296
  'action' => 'addImages',
297
  'bwg_width' => '1150',
298
  'bwg_height' => '800',
299
+ 'extensions' => 'jpg,jpeg,png,gif,svg',
300
  'callback' => 'bwg_add_image',
301
  BWG()->nonce => wp_create_nonce('addImages'),
302
  'TB_iframe' => '1',
admin/controllers/Options.php CHANGED
@@ -8,11 +8,11 @@ class OptionsController_bwg {
8
  public function __construct() {
9
  $this->model = new OptionsModel_bwg();
10
  $this->view = new OptionsView_bwg();
11
- $this->page = WDWLibrary::get('page');
12
  }
13
 
14
  public function execute() {
15
- $task = WDWLibrary::get('task');
16
  if($task != ''){
17
  check_admin_referer(BWG()->nonce, BWG()->nonce);
18
  }
@@ -46,9 +46,9 @@ class OptionsController_bwg {
46
  'serif' => 'Serif',
47
  );
48
  $params['page_title'] = __('Edit options', BWG()->prefix);
49
- $params['active_tab'] = WDWLibrary::get('active_tab', 0);
50
- $params['gallery_type'] = WDWLibrary::get('gallery_type', 'thumbnails');
51
- $params['album_type'] = WDWLibrary::get('album_type', 'album_compact_preview');
52
  $params['gallery_types_name'] = array(
53
  'thumbnails' => __('Thumbnails', BWG()->prefix),
54
  'thumbnails_masonry' => __('Masonry', BWG()->prefix),
@@ -80,7 +80,7 @@ class OptionsController_bwg {
80
  public function display($params = array()) {
81
  $row = new WD_BWG_Options();
82
  // Set Instagram access token.
83
- $instagram_access_token = WDWLibrary::get('access_token');
84
  if ( $instagram_access_token ) {
85
  ob_end_clean();
86
  $success = $this->model->set_instagram_access_token($instagram_access_token);
@@ -151,12 +151,12 @@ class OptionsController_bwg {
151
 
152
  public function save_db() {
153
  $row = new WD_BWG_Options();
154
- if (isset($_POST['old_images_directory'])) {
155
- $row->old_images_directory = esc_html(stripslashes($_POST['old_images_directory']));
156
  }
157
 
158
- if (isset($_POST['images_directory'])) {
159
- $row->images_directory = esc_html(stripslashes($_POST['images_directory']));
160
  if (!is_dir(ABSPATH . $row->images_directory) || (is_dir(ABSPATH . $row->images_directory . '/photo-gallery') && $row->old_images_directory && $row->old_images_directory != $row->images_directory)) {
161
  if (!is_dir(ABSPATH . $row->images_directory)) {
162
  echo WDWLibrary::message_id(0, __('Uploads directory doesn\'t exist. Old value is restored.', BWG()->prefix), 'error');
@@ -179,16 +179,18 @@ class OptionsController_bwg {
179
 
180
  foreach ($row as $name => $value) {
181
  if ($name == 'autoupdate_interval') {
182
- $autoupdate_interval = (isset($_POST['autoupdate_interval_hour']) && isset($_POST['autoupdate_interval_min']) ? ((int) $_POST['autoupdate_interval_hour'] * 60 + (int) $_POST['autoupdate_interval_min']) : null);
 
 
183
  /*minimum autoupdate interval is 1 min*/
184
  $row->autoupdate_interval = isset($autoupdate_interval) && $autoupdate_interval >= 1 ? $autoupdate_interval : 30;
185
  }
186
- else if ($name != 'images_directory' && isset($_POST[$name])) {
187
- $row->$name = esc_html(stripslashes($_POST[$name]));
188
  }
189
  }
190
  $save = update_option('wd_bwg_options', json_encode($row), 'no');
191
- if (isset($_POST['recreate']) && $_POST['recreate'] == "resize_image_thumb") {
192
  $this->resize_image_thumb();
193
  echo WDWLibrary::message_id(0, __('All thumbnails are successfully recreated.', BWG()->prefix));
194
  }
@@ -219,23 +221,23 @@ class OptionsController_bwg {
219
  }
220
 
221
  public function image_set_watermark($params = array()) {
222
- $limitstart = WDWLibrary::get('limitstart');
223
 
224
  /* Update options only first time of the loop */
225
  if ( $limitstart == 0 ) {
226
  $update_options = array(
227
- 'built_in_watermark_type' => WDWLibrary::get('built_in_watermark_type'),
228
- 'built_in_watermark_position' => WDWLibrary::get('built_in_watermark_position')
229
  );
230
  if ( $update_options['built_in_watermark_type'] == 'text' ){
231
  $update_options['built_in_watermark_text'] = WDWLibrary::get('built_in_watermark_text', '', 'sanitize_text_field');
232
- $update_options['built_in_watermark_font_size'] = WDWLibrary::get('built_in_watermark_font_size');
233
- $update_options['built_in_watermark_font'] = WDWLibrary::get('built_in_watermark_font');
234
- $update_options['built_in_watermark_color'] = WDWLibrary::get('built_in_watermark_color');
235
  }
236
  else {
237
- $update_options['built_in_watermark_size'] = WDWLibrary::get('built_in_watermark_size');
238
- $update_options['built_in_watermark_url'] = WDWLibrary::get('built_in_watermark_url');
239
  }
240
  $this->model->update_options_by_key( $update_options );
241
  }
@@ -261,15 +263,15 @@ class OptionsController_bwg {
261
  }
262
 
263
  public function image_recover_all($params = array()) {
264
- $limitstart = WDWLibrary::get('limitstart');
265
  WDWLibrary::bwg_image_recover_all(0, $limitstart);
266
  }
267
 
268
  public function resize_image_thumb($params = array()) {
269
  global $wpdb;
270
- $max_width = WDWLibrary::get('img_option_width');
271
- $max_height = WDWLibrary::get('img_option_height');
272
- $limitstart = WDWLibrary::get('limitstart');
273
 
274
  /* Update options only first time of the loop */
275
  if ( $limitstart == 0 ) {
8
  public function __construct() {
9
  $this->model = new OptionsModel_bwg();
10
  $this->view = new OptionsView_bwg();
11
+ $this->page = WDWLibrary::get('page', '', 'sanitize_text_field');
12
  }
13
 
14
  public function execute() {
15
+ $task = WDWLibrary::get('task', '', 'sanitize_text_field');
16
  if($task != ''){
17
  check_admin_referer(BWG()->nonce, BWG()->nonce);
18
  }
46
  'serif' => 'Serif',
47
  );
48
  $params['page_title'] = __('Edit options', BWG()->prefix);
49
+ $params['active_tab'] = WDWLibrary::get('active_tab', 0, 'intval');
50
+ $params['gallery_type'] = WDWLibrary::get('gallery_type', 'thumbnails', 'sanitize_text_field');
51
+ $params['album_type'] = WDWLibrary::get('album_type', 'album_compact_preview', 'sanitize_text_field');
52
  $params['gallery_types_name'] = array(
53
  'thumbnails' => __('Thumbnails', BWG()->prefix),
54
  'thumbnails_masonry' => __('Masonry', BWG()->prefix),
80
  public function display($params = array()) {
81
  $row = new WD_BWG_Options();
82
  // Set Instagram access token.
83
+ $instagram_access_token = WDWLibrary::get('access_token', '', 'sanitize_text_field');
84
  if ( $instagram_access_token ) {
85
  ob_end_clean();
86
  $success = $this->model->set_instagram_access_token($instagram_access_token);
151
 
152
  public function save_db() {
153
  $row = new WD_BWG_Options();
154
+ if ( WDWLibrary::get('old_images_directory', '', 'sanitize_text_field') ) {
155
+ $row->old_images_directory = WDWLibrary::get('old_images_directory', '', 'sanitize_text_field');
156
  }
157
 
158
+ if ( WDWLibrary::get('images_directory', '', 'sanitize_text_field') ) {
159
+ $row->images_directory = WDWLibrary::get('images_directory', '', 'sanitize_text_field');
160
  if (!is_dir(ABSPATH . $row->images_directory) || (is_dir(ABSPATH . $row->images_directory . '/photo-gallery') && $row->old_images_directory && $row->old_images_directory != $row->images_directory)) {
161
  if (!is_dir(ABSPATH . $row->images_directory)) {
162
  echo WDWLibrary::message_id(0, __('Uploads directory doesn\'t exist. Old value is restored.', BWG()->prefix), 'error');
179
 
180
  foreach ($row as $name => $value) {
181
  if ($name == 'autoupdate_interval') {
182
+ $autoupdate_interval_hour = WDWLibrary::get('autoupdate_interval_hour', '', 'intval');
183
+ $autoupdate_interval_min = WDWLibrary::get('autoupdate_interval_min','', 'intval');
184
+ $autoupdate_interval = ($autoupdate_interval_hour != '' && $autoupdate_interval_min != '' ? ($autoupdate_interval_hour * 60 + $autoupdate_interval_min) : null);
185
  /*minimum autoupdate interval is 1 min*/
186
  $row->autoupdate_interval = isset($autoupdate_interval) && $autoupdate_interval >= 1 ? $autoupdate_interval : 30;
187
  }
188
+ else if ( $name != 'images_directory' ) {
189
+ $row->$name = WDWLibrary::get($name, $row->$name, 'sanitize_text_field');
190
  }
191
  }
192
  $save = update_option('wd_bwg_options', json_encode($row), 'no');
193
+ if ( WDWLibrary::get('recreate', '', 'sanitize_text_field') == "resize_image_thumb" ) {
194
  $this->resize_image_thumb();
195
  echo WDWLibrary::message_id(0, __('All thumbnails are successfully recreated.', BWG()->prefix));
196
  }
221
  }
222
 
223
  public function image_set_watermark($params = array()) {
224
+ $limitstart = WDWLibrary::get('limitstart', '', 'intval');
225
 
226
  /* Update options only first time of the loop */
227
  if ( $limitstart == 0 ) {
228
  $update_options = array(
229
+ 'built_in_watermark_type' => WDWLibrary::get('built_in_watermark_type', '', 'sanitize_text_field'),
230
+ 'built_in_watermark_position' => WDWLibrary::get('built_in_watermark_position', '', 'sanitize_text_field')
231
  );
232
  if ( $update_options['built_in_watermark_type'] == 'text' ){
233
  $update_options['built_in_watermark_text'] = WDWLibrary::get('built_in_watermark_text', '', 'sanitize_text_field');
234
+ $update_options['built_in_watermark_font_size'] = WDWLibrary::get('built_in_watermark_font_size', '', 'intval');
235
+ $update_options['built_in_watermark_font'] = WDWLibrary::get('built_in_watermark_font', '', 'sanitize_text_field');
236
+ $update_options['built_in_watermark_color'] = WDWLibrary::get('built_in_watermark_color', '', 'sanitize_text_field');
237
  }
238
  else {
239
+ $update_options['built_in_watermark_size'] = WDWLibrary::get('built_in_watermark_size', '', 'intval');
240
+ $update_options['built_in_watermark_url'] = WDWLibrary::get('built_in_watermark_url', '', 'esc_url');
241
  }
242
  $this->model->update_options_by_key( $update_options );
243
  }
263
  }
264
 
265
  public function image_recover_all($params = array()) {
266
+ $limitstart = WDWLibrary::get('limitstart', '', 'intval');
267
  WDWLibrary::bwg_image_recover_all(0, $limitstart);
268
  }
269
 
270
  public function resize_image_thumb($params = array()) {
271
  global $wpdb;
272
+ $max_width = WDWLibrary::get('img_option_width', '', 'intval');
273
+ $max_height = WDWLibrary::get('img_option_height', '', 'intval');
274
+ $limitstart = WDWLibrary::get('limitstart', '', 'intval');
275
 
276
  /* Update options only first time of the loop */
277
  if ( $limitstart == 0 ) {
admin/controllers/Shortcode.php CHANGED
@@ -26,6 +26,7 @@ class ShortcodeController_bwg {
26
  $params = array();
27
  $params['gutenberg_callback'] = WDWLibrary::get('callback', 0);
28
  $params['gutenberg_id'] = WDWLibrary::get('edit', 0);
 
29
  $params['from_menu'] = $this->from_menu;
30
  $params['gallery_rows'] = WDWLibrary::get_galleries();
31
  $params['album_rows'] = WDWLibrary::get_gallery_groups();
@@ -60,8 +61,9 @@ class ShortcodeController_bwg {
60
  if ($tagtext) {
61
  /* clear tags */
62
  $tagtext = " ".sanitize_text_field($tagtext);
63
-
64
  $id = ((isset($_POST['currrent_id'])) ? (int) esc_html(stripslashes($_POST['currrent_id'])) : 0);
 
65
  $insert = ((isset($_POST['bwg_insert'])) ? (int) esc_html(stripslashes($_POST['bwg_insert'])) : 0);
66
  if (!$insert) {
67
  $wpdb->update($wpdb->prefix . 'bwg_shortcode', array(
26
  $params = array();
27
  $params['gutenberg_callback'] = WDWLibrary::get('callback', 0);
28
  $params['gutenberg_id'] = WDWLibrary::get('edit', 0);
29
+ $params['elementor_callback'] = WDWLibrary::get('elementor_callback', 0);
30
  $params['from_menu'] = $this->from_menu;
31
  $params['gallery_rows'] = WDWLibrary::get_galleries();
32
  $params['album_rows'] = WDWLibrary::get_gallery_groups();
61
  if ($tagtext) {
62
  /* clear tags */
63
  $tagtext = " ".sanitize_text_field($tagtext);
64
+
65
  $id = ((isset($_POST['currrent_id'])) ? (int) esc_html(stripslashes($_POST['currrent_id'])) : 0);
66
+
67
  $insert = ((isset($_POST['bwg_insert'])) ? (int) esc_html(stripslashes($_POST['bwg_insert'])) : 0);
68
  if (!$insert) {
69
  $wpdb->update($wpdb->prefix . 'bwg_shortcode', array(
admin/controllers/elementorWidget.php CHANGED
@@ -1,6 +1,8 @@
1
  <?php
2
 
3
  class BWGElementor extends \Elementor\Widget_Base {
 
 
4
  /**
5
  * Get widget name.
6
  *
@@ -16,6 +18,21 @@ class BWGElementor extends \Elementor\Widget_Base {
16
  * @return string Widget title.
17
  */
18
  public function get_title() {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
19
  return __('Gallery', BWG()->prefix);
20
  }
21
 
@@ -41,181 +58,61 @@ class BWGElementor extends \Elementor\Widget_Base {
41
  * Register widget controls.
42
  */
43
  protected function _register_controls() {
44
- if(BWG()->is_pro){
45
- $bwg_gallery_view_type_options = array(
46
- 'thumbnails' => __('Thumbnails', BWG()->prefix),
47
- 'thumbnails_masonry' => __('Masonry', BWG()->prefix),
48
- 'thumbnails_mosaic' => __('Mosaic', BWG()->prefix),
49
- 'slideshow' => __('Slideshow', BWG()->prefix),
50
- 'image_browser' => __('Image browser', BWG()->prefix),
51
- 'blog_style' => __('Blog style', BWG()->prefix),
52
- 'carousel' => __('Carousel', BWG()->prefix),
53
- );
54
- $bwg_gallery_group_view_type_options = array(
55
- 'album_compact_preview' => __('Compact', BWG()->prefix),
56
- 'album_masonry_preview' => __('Masonry', BWG()->prefix),
57
- 'album_extended_preview' => __('Extended', BWG()->prefix),
58
- );
59
- }else{
60
- $bwg_gallery_view_type_options = array(
61
- 'thumbnails' => __('Thumbnails', BWG()->prefix),
62
- 'slideshow' => __('Slideshow', BWG()->prefix),
63
- 'image_browser' => __('Image browser', BWG()->prefix),
64
- );
65
- $bwg_gallery_group_view_type_options = array(
66
- 'album_compact_preview' => __('Compact', BWG()->prefix),
67
- 'album_extended_preview' => __('Extended', BWG()->prefix),
68
- );
69
- }
70
- $bwg_view_type = add_query_arg(array( 'page' => 'options_' . BWG()->prefix, 'active_tab' => 1, 'gallery_type'=>'thumbnails' ), admin_url('admin.php'));
71
- $bwg_group_view_type = add_query_arg(array( 'page' => 'options_' . BWG()->prefix, 'active_tab' => 2, 'album_type'=>'album_compact_preview' ), admin_url('admin.php'));
72
- $bwg_edit_link = add_query_arg(array( 'page' => 'galleries_' . BWG()->prefix ), admin_url('admin.php'));
73
- $bwd_tag_link= add_query_arg(array( 'taxonomy' => BWG()->prefix . '_tag' ), admin_url('edit-tags.php'));
74
- $bwd_theme_link = add_query_arg(array( 'page' => 'themes_' . BWG()->prefix ), admin_url('admin.php'));
75
- $bwd_group_link = add_query_arg(array( 'page' => 'albums_' . BWG()->prefix ), admin_url('admin.php'));
76
- $default_theme = WDWLibrary::get_default_theme();
77
- if(isset($default_theme) && intval($default_theme)>0){
78
- $bwd_theme_link = add_query_arg(array( 'page' => 'themes_' . BWG()->prefix, 'task'=>'edit','current_id'=> $default_theme), admin_url('admin.php'));
79
- }
80
- if($this->get_id() !== null){
81
- $settings = $this->get_init_settings();
82
- }
83
- if(isset($settings) && is_array($settings)){
84
- if(isset($settings["bwg_gallery_view_type"])){
85
- $bwg_view_type = add_query_arg(array( 'page' => 'options_' . BWG()->prefix, 'active_tab' => 1, 'gallery_type'=>$settings["bwg_gallery_view_type"] ), admin_url('admin.php'));
86
- }
87
- if(isset($settings["bwg_gallery_group_view_type"])){
88
- $bwg_group_view_type = add_query_arg(array( 'page' => 'options_' . BWG()->prefix, 'active_tab' => 2, 'album_type'=>$settings["bwg_gallery_group_view_type"] ), admin_url('admin.php'));
89
- }
90
- if(isset($settings["bwg_galleries"]) && $settings["bwg_galleries"] !== "0"){
91
- $bwg_galleries_id = intval($settings["bwg_galleries"]);
92
- $bwg_edit_link = add_query_arg(array( 'page' => 'galleries_' . BWG()->prefix, 'task'=>'edit', 'current_id'=> $bwg_galleries_id), admin_url('admin.php'));
93
- }
94
- if(isset($settings["bwg_tags"]) && $settings["bwg_tags"] !== "0"){
95
- $bwg_tags_id = intval($settings["bwg_tags"]);
96
- $bwd_tag_link= add_query_arg(array( 'taxonomy' => BWG()->prefix . '_tag', 'tag_ID'=> $bwg_tags_id), admin_url('term.php'));
97
 
98
- }
99
- if(isset($settings["bwg_theme"]) && $settings["bwg_theme"] !== "0"){
100
- $bwg_theme_id = intval($settings["bwg_theme"]);
101
- $bwd_theme_link = add_query_arg(array( 'page' => 'themes_' . BWG()->prefix, 'task'=>'edit','current_id'=> $bwg_theme_id), admin_url('admin.php'));
102
-
103
- }
104
- if(isset($settings["bwg_gallery_group"]) && $settings["bwg_gallery_group"] !== "0"){
105
- $bwg_group_id = intval($settings["bwg_gallery_group"]);
106
- $bwd_group_link = add_query_arg(array( 'page' => 'albums_' . BWG()->prefix, 'task'=>'edit', 'current_id'=>$bwg_group_id ), admin_url('admin.php'));
107
- }
108
  }
109
-
110
-
111
  $this->start_controls_section(
112
  'bwg_general',
113
  [
114
  'label' => __('General', BWG()->prefix),
115
  ]
116
  );
 
117
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
118
  $this->add_control(
119
- 'bwg_view_type_tabs',
120
  [
121
- 'label' => __('Gallery/Gallery group', BWG()->prefix),
 
 
 
 
 
122
  'type' => \Elementor\Controls_Manager::CHOOSE,
123
- 'label_block' => true,
124
- 'toggle' => false,
125
- 'default' => 'gallery',
126
  'options' => [
127
- 'gallery' => [
128
- 'title' => __('Gallery', BWG()->prefix),
129
- 'icon' => 'fa fa-square',
130
- ],
131
- 'gallery_group' => [
132
- 'title' => __('Gallery group', BWG()->prefix),
133
- 'icon' => 'fa fa-th-large',
134
- ],
135
  ],
 
136
  ]
137
  );
138
-
139
  $this->add_control(
140
- 'bwg_gallery_view_type',
141
  [
142
- 'label_block' => true,
143
- 'description' => __('Select the gallery view type.', BWG()->prefix) . '<a target="_blank" href="' . $bwg_view_type . '">' . __('Edit options', BWG()->prefix) . '</a>',
144
- 'type' => \Elementor\Controls_Manager::SELECT,
145
- 'default' => 'thumbnails',
146
- 'options' => $bwg_gallery_view_type_options,
147
- 'condition' => [
148
- 'bwg_view_type_tabs' => 'gallery',
149
  ],
150
- ]
151
- );
152
-
153
- $this->add_control(
154
- 'bwg_galleries',
155
- [
156
- 'label' => __('Gallery', BWG()->prefix),
157
- 'label_block' => true,
158
- 'description' => __('Select the gallery to display.', BWG()->prefix) . '<a target="_blank" href="' . $bwg_edit_link . '">' . __('Edit gallery', BWG()->prefix) . '</a>',
159
- 'type' => \Elementor\Controls_Manager::SELECT,
160
- 'default' => 0,
161
- 'options' => WDWLibrary::get_galleries(),
162
- 'condition' => [
163
- 'bwg_view_type_tabs' => 'gallery',
164
- ],
165
- ]
166
- );
167
- $this->add_control(
168
- 'bwg_tags',
169
- [
170
- 'label' => __('Tag', BWG()->prefix),
171
- 'label_block' => true,
172
- 'description' => __('Filter gallery images by this tag.', BWG()->prefix) . '<a target="_blank" href="' .$bwd_tag_link . '">' . __('Edit tag', BWG()->prefix) . '</a>',
173
- 'type' => \Elementor\Controls_Manager::SELECT,
174
- 'default' => 0,
175
- 'options' => WDWLibrary::get_tags(),
176
- 'condition' => [
177
- 'bwg_view_type_tabs' => 'gallery',
178
- ],
179
- ]
180
- );
181
-
182
- $this->add_control(
183
- 'bwg_gallery_group_view_type',
184
- [
185
- 'label_block' => true,
186
- 'description' => __('Select the gallery group type.', BWG()->prefix) . '<a target="_blank" href="' . $bwg_group_view_type . '">' . __('Edit options', BWG()->prefix) . '</a>',
187
- 'type' => \Elementor\Controls_Manager::SELECT,
188
- 'default' => 'album_compact_preview',
189
- 'options' => $bwg_gallery_group_view_type_options,
190
- 'condition' => [
191
- 'bwg_view_type_tabs' => 'gallery_group',
192
- ],
193
- ]
194
- );
195
- $this->add_control(
196
- 'bwg_gallery_group',
197
- [
198
- 'label' => __('Gallery group', BWG()->prefix),
199
- 'label_block' => true,
200
- 'description' => __('Select the gallery group to display.', BWG()->prefix) . '<a target="_blank" href="' . $bwd_group_link . '">' . __('Edit gallery group', BWG()->prefix) . '</a>',
201
- 'type' => \Elementor\Controls_Manager::SELECT,
202
- 'default' => 0,
203
- 'options' => WDWLibrary::get_gallery_groups(),
204
- 'condition' => [
205
- 'bwg_view_type_tabs' => 'gallery_group',
206
- ],
207
- ]
208
- );
209
-
210
- $this->add_control(
211
- 'bwg_theme',
212
- [
213
- 'label' => __('Theme', BWG()->prefix),
214
- 'label_block' => true,
215
- 'description' => (BWG()->is_pro ? __('Choose the theme for your gallery.', BWG()->prefix) . '<a target="_blank" href="' . $bwd_theme_link . '">' . __('Edit theme', BWG()->prefix). '</a>' : __('You can\'t edit theme in free version.', BWG()->prefix)),
216
- 'type' => \Elementor\Controls_Manager::SELECT,
217
- 'default' => WDWLibrary::get_default_theme(),
218
- 'options' => WDWLibrary::get_theme_rows_data(),
219
  ]
220
  );
221
 
@@ -228,23 +125,13 @@ class BWGElementor extends \Elementor\Widget_Base {
228
  protected function render() {
229
  $settings = $this->get_settings_for_display();
230
  $params = array();
231
-
232
- if ( $settings['bwg_view_type_tabs'] === 'gallery' ) {
233
- $params['gallery_type'] = $settings['bwg_gallery_view_type'];
234
- $params['gallery_id'] = $settings['bwg_galleries'];
235
- $params['tag'] = $settings['bwg_tags'];
236
- }
237
- elseif ( $settings['bwg_view_type_tabs'] === 'gallery_group' ) {
238
- $params['gallery_type'] = $settings['bwg_gallery_group_view_type'];
239
- $params['album_id'] = $settings['bwg_gallery_group'];
240
- }
241
- $params['theme_id'] = $settings['bwg_theme'];
242
 
243
  if ( doing_filter('wd_seo_sitemap_images') || doing_filter('wpseo_sitemap_urlimages') ) {
244
- WDWSitemap::instance()->shortcode($params);
245
  }
246
  else {
247
- echo BWG()->shortcode($params);
248
  }
249
  }
250
  }
1
  <?php
2
 
3
  class BWGElementor extends \Elementor\Widget_Base {
4
+
5
+ public $shortcode_id=[];
6
  /**
7
  * Get widget name.
8
  *
18
  * @return string Widget title.
19
  */
20
  public function get_title() {
21
+ ?>
22
+ <style>
23
+ .elementor-control-bwg_view_type_shortcode .elementor-control-input-wrapper,
24
+ .elementor-control-bwg_elementor_shortcode input {
25
+ visibility: hidden;
26
+ }
27
+ .elementor-control-bwg_elementor_shortcode input {
28
+ height: 0;
29
+ }
30
+ .elementor-control a.bwg-shortcode-btn {
31
+ text-decoration: none;
32
+ border-bottom:none;
33
+ }
34
+ </style>
35
+ <?php
36
  return __('Gallery', BWG()->prefix);
37
  }
38
 
58
  * Register widget controls.
59
  */
60
  protected function _register_controls() {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
61
 
62
+ if($this->get_id() !== null){
63
+ $settings = $this->get_settings();
 
 
 
 
 
 
 
 
64
  }
 
 
65
  $this->start_controls_section(
66
  'bwg_general',
67
  [
68
  'label' => __('General', BWG()->prefix),
69
  ]
70
  );
71
+ $url = add_query_arg(array('action' => 'shortcode_bwg','elementor_callback' => 1, 'TB_iframe' => '1'), admin_url('admin-ajax.php'));
72
 
73
+ $this->shortcode_id[$this->get_id()] = !empty($settings["bwg_view_type_shortcode"]) ? $settings["bwg_view_type_shortcode"] : '';
74
+
75
+ ?>
76
+ <style>
77
+ .elementor-control-bwg_view_type_shortcode .elementor-control-input-wrapper,
78
+ .elementor-control-bwg_elementor_shortcode input {
79
+ visibility: hidden;
80
+ }
81
+ .elementor-control-bwg_elementor_shortcode input {
82
+ height: 0;
83
+ }
84
+ .elementor-control a.bwg-shortcode-btn {
85
+ text-decoration: none;
86
+ border-bottom:none;
87
+ }
88
+ </style>
89
+ <?php
90
  $this->add_control(
91
+ 'bwg_view_type_shortcode',
92
  [
93
+ 'label' => '<a onclick="if ( typeof tb_click == \'function\' && ( jQuery(this).parent().attr(\'id\') && jQuery(this).parent().attr(\'id\').indexOf(\'elementor\') !== -1 || typeof bwg_check_ready == \'function\') ) {
94
+ tb_click.call(this);
95
+ bwg_create_loading_block();
96
+ bwg_set_shortcode_popup_dimensions(); } return false;" href="'.$url.'" class="bwg-shortcode-btn button">
97
+ <img src="'.BWG()->plugin_url .'/images/tw-gb/photo-gallery.svg" alt="Photo Gallery" style="height: 36px; width: 36px;">
98
+ </a>',
99
  'type' => \Elementor\Controls_Manager::CHOOSE,
 
 
 
100
  'options' => [
101
+ 'gallery',
102
+ 'gallery1'
 
 
 
 
 
 
103
  ],
104
+ 'description'=>'Click on icon to add/edit gallery.'
105
  ]
106
  );
 
107
  $this->add_control(
108
+ 'bwg_elementor_shortcode',
109
  [
110
+ 'type' => \Elementor\Controls_Manager::HIDDEN,
111
+ 'dynamic' => [
112
+ 'active' => true,
 
 
 
 
113
  ],
114
+ 'placeholder' => __( '', 'elementor' ),
115
+ 'default' => __( '', 'elementor' ),
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
116
  ]
117
  );
118
 
125
  protected function render() {
126
  $settings = $this->get_settings_for_display();
127
  $params = array();
128
+ $params['id'] = isset($settings['bwg_view_type_shortcode']) ? $settings['bwg_view_type_shortcode'] : 0;
 
 
 
 
 
 
 
 
 
 
129
 
130
  if ( doing_filter('wd_seo_sitemap_images') || doing_filter('wpseo_sitemap_urlimages') ) {
131
+ WDWSitemap::instance()->shortcode();
132
  }
133
  else {
134
+ echo BWG()->shortcode($params);
135
  }
136
  }
137
  }
admin/models/Galleries.php CHANGED
@@ -445,7 +445,7 @@ class GalleriesModel_bwg {
445
  continue;
446
  }
447
  $thumb_url = WDWLibrary::get('thumb_url_' . $image_id, '');
448
- $description = str_replace(array('\\', '\t'), '', WDWLibrary::get('image_description_' . $image_id, 'wp_filter_post_kses'));
449
  $alt = str_replace(array('\\', '\t'), '', WDWLibrary::get('image_alt_text_' . $image_id, '', 'wp_filter_post_kses'));
450
  $alt = preg_replace("/<a[^>]*>|<\/a>/", '', $alt);
451
  $date = WDWLibrary::get('input_date_modified_' . $image_id, '');
@@ -502,8 +502,8 @@ class GalleriesModel_bwg {
502
  $image_id = $new_image_id;
503
  }
504
  else {
505
- if($data['resolution_thumb'] == '') {
506
- unset($data['resolution_thumb']);
507
  }
508
  $save = $wpdb->update($wpdb->prefix . 'bwg_image', $data, array( 'id' => $image_id ));
509
  }
@@ -859,6 +859,7 @@ class GalleriesModel_bwg {
859
  $where .= ' AND `filename` LIKE "%' . $search . '%"';
860
  }
861
  $images_data = $wpdb->get_results( 'SELECT id, image_url, thumb_url, resolution_thumb FROM `' . $wpdb->prefix . 'bwg_image` WHERE ' . $where );
 
862
  @ini_set('memory_limit', '-1');
863
  foreach ( $images_data as $image_data ) {
864
  $image_data->image_url = stripcslashes($image_data->image_url);
@@ -920,7 +921,10 @@ class GalleriesModel_bwg {
920
  }
921
  }
922
  $resolution_thumb = isset($image_data->resolution_thumb) ? $image_data->resolution_thumb : '';
923
- if($resolution_thumb != '') {
 
 
 
924
  $res = explode('x', $resolution_thumb);
925
  $resolution_thumb = $res[1] . "x" . $res[0];
926
  WDWLibrary::update_thumb_dimansions($resolution_thumb,"id = $image_data->id");
445
  continue;
446
  }
447
  $thumb_url = WDWLibrary::get('thumb_url_' . $image_id, '');
448
+ $description = str_replace(array('\\', '\t'), '', WDWLibrary::get('image_description_' . $image_id, '', 'wp_filter_post_kses'));
449
  $alt = str_replace(array('\\', '\t'), '', WDWLibrary::get('image_alt_text_' . $image_id, '', 'wp_filter_post_kses'));
450
  $alt = preg_replace("/<a[^>]*>|<\/a>/", '', $alt);
451
  $date = WDWLibrary::get('input_date_modified_' . $image_id, '');
502
  $image_id = $new_image_id;
503
  }
504
  else {
505
+ if ( WDWLibrary::get('ajax_task', '') == 'image_rotate_right' || WDWLibrary::get('ajax_task', '') == 'image_rotate_left' || $data['resolution_thumb'] == '' ) {
506
+ unset($data['resolution_thumb']);
507
  }
508
  $save = $wpdb->update($wpdb->prefix . 'bwg_image', $data, array( 'id' => $image_id ));
509
  }
859
  $where .= ' AND `filename` LIKE "%' . $search . '%"';
860
  }
861
  $images_data = $wpdb->get_results( 'SELECT id, image_url, thumb_url, resolution_thumb FROM `' . $wpdb->prefix . 'bwg_image` WHERE ' . $where );
862
+
863
  @ini_set('memory_limit', '-1');
864
  foreach ( $images_data as $image_data ) {
865
  $image_data->image_url = stripcslashes($image_data->image_url);
921
  }
922
  }
923
  $resolution_thumb = isset($image_data->resolution_thumb) ? $image_data->resolution_thumb : '';
924
+ if ( $resolution_thumb == '' ) {
925
+ $resolution_thumb = WDWLibrary::get_thumb_size( $image_data->thumb_url );
926
+ }
927
+ if ($resolution_thumb != '') {
928
  $res = explode('x', $resolution_thumb);
929
  $resolution_thumb = $res[1] . "x" . $res[0];
930
  WDWLibrary::update_thumb_dimansions($resolution_thumb,"id = $image_data->id");
admin/views/Editimage.php CHANGED
@@ -782,7 +782,9 @@ class EditimageView_bwg {
782
  @ini_restore('memory_limit');
783
  if ( !empty($edit_type) ) {
784
  $resolution_thumb = WDWLibrary::get_thumb_size( $image_data->thumb_url );
785
- WDWLibrary::update_thumb_dimansions($resolution_thumb,"id = $image_id");
 
 
786
 
787
  $where = ' `id` = ' . $image_id;
788
  $updated_image = WDWLibrary::update_image_modified_date( $where );
782
  @ini_restore('memory_limit');
783
  if ( !empty($edit_type) ) {
784
  $resolution_thumb = WDWLibrary::get_thumb_size( $image_data->thumb_url );
785
+ if ( $resolution_thumb != '' ) {
786
+ WDWLibrary::update_thumb_dimansions($resolution_thumb, "id = $image_id");
787
+ }
788
 
789
  $where = ' `id` = ' . $image_id;
790
  $updated_image = WDWLibrary::update_image_modified_date( $where );
admin/views/Galleries.php CHANGED
@@ -719,11 +719,13 @@ class GalleriesView_bwg extends AdminView_bwg {
719
  <?php }
720
  ?>
721
  </strong>
722
- <?php if( !$is_google_photos) { ?>
 
 
723
  <div class="row-actions">
724
- <span class="wd-image-actions <?php echo ( !$is_embed && ( $params['gallery_type'] == '' ) ? '' : ' wd-hide' ); ?>"><a class="<?php echo (BWG()->is_demo || !BWG()->wp_editor_exists ? '' : 'thickbox thickbox-preview'); ?>" href="<?php echo (BWG()->is_demo ? 'javascript:alert(\'' . addslashes(__('This option is disabled in demo.', BWG()->prefix)) . '\');' : (BWG()->wp_editor_exists ? $edit_link : 'javascript:alert(\'' . addslashes(__('Image edit functionality is not supported by your web host.', BWG()->prefix)) . '\');')); ?>"><?php _e('Edit', BWG()->prefix); ?></a> |</span>
725
- <span class="wd-image-actions <?php echo ( !$is_embed && ( $params['gallery_type'] == '' ) ? '' : ' wd-hide' ); ?>"><a class="<?php echo (BWG()->is_demo || !BWG()->wp_editor_exists ? '' : 'thickbox thickbox-preview'); ?>" href="<?php echo (BWG()->is_demo ? 'javascript:alert(\'' . addslashes(__('This option is disabled in demo.', BWG()->prefix)) . '\');' : (BWG()->wp_editor_exists ? $crop_link : 'javascript:alert(\'' . addslashes(__('Image edit functionality is not supported by your web host.', BWG()->prefix)) . '\');')); ?>"><?php _e('Crop Thumbnail', BWG()->prefix); ?></a> |</span>
726
- <span class="wd-image-actions <?php echo ( !$is_embed && ( $params['gallery_type'] == '' ) ? '' : ' wd-hide' ); ?>"><a onclick="<?php echo (BWG()->is_demo ? 'alert(\'' . addslashes(__('This option is disabled in demo.', BWG()->prefix)) . '\');' : 'if (confirm(\'' . addslashes(__('Do you want to reset the image?', BWG()->prefix)) . '\')) { spider_set_input_value(\'ajax_task\', \'image_reset\'); spider_set_input_value(\'image_current_id\', \'' . $row->id . '\'); spider_ajax_save(\'bwg_gallery\'); } return false;'); ?>"><?php _e('Reset', BWG()->prefix); ?></a> |</span>
727
  <span><a onclick="spider_set_input_value('ajax_task', 'image_<?php echo $row->published ? 'unpublish' : 'publish'; ?>');
728
  spider_set_input_value('image_current_id', '<?php echo $row->id; ?>');
729
  spider_ajax_save('bwg_gallery');"><?php echo($row->published ? __('Unpublish', BWG()->prefix) : __('Publish', BWG()->prefix)); ?></a> |</span>
719
  <?php }
720
  ?>
721
  </strong>
722
+ <?php if( !$is_google_photos) {
723
+ $svg_check = strpos(strtolower($row->filetype), 'svg') > -1 ? true : false;
724
+ ?>
725
  <div class="row-actions">
726
+ <span class="wd-image-actions <?php echo ( !$svg_check && !$is_embed && ( $params['gallery_type'] == '' ) ? '' : ' wd-hide' ); ?>"><a class="<?php echo (BWG()->is_demo || !BWG()->wp_editor_exists ? '' : 'thickbox thickbox-preview'); ?>" href="<?php echo (BWG()->is_demo ? 'javascript:alert(\'' . addslashes(__('This option is disabled in demo.', BWG()->prefix)) . '\');' : (BWG()->wp_editor_exists ? $edit_link : 'javascript:alert(\'' . addslashes(__('Image edit functionality is not supported by your web host.', BWG()->prefix)) . '\');')); ?>"><?php _e('Edit', BWG()->prefix); ?></a> |</span>
727
+ <span class="wd-image-actions <?php echo ( !$svg_check && !$is_embed && ( $params['gallery_type'] == '' ) ? '' : ' wd-hide' ); ?>"><a class="<?php echo (BWG()->is_demo || !BWG()->wp_editor_exists ? '' : 'thickbox thickbox-preview'); ?>" href="<?php echo (BWG()->is_demo ? 'javascript:alert(\'' . addslashes(__('This option is disabled in demo.', BWG()->prefix)) . '\');' : (BWG()->wp_editor_exists ? $crop_link : 'javascript:alert(\'' . addslashes(__('Image edit functionality is not supported by your web host.', BWG()->prefix)) . '\');')); ?>"><?php _e('Crop Thumbnail', BWG()->prefix); ?></a> |</span>
728
+ <span class="wd-image-actions <?php echo ( !$svg_check && !$is_embed && ( $params['gallery_type'] == '' ) ? '' : ' wd-hide' ); ?>"><a onclick="<?php echo (BWG()->is_demo ? 'alert(\'' . addslashes(__('This option is disabled in demo.', BWG()->prefix)) . '\');' : 'if (confirm(\'' . addslashes(__('Do you want to reset the image?', BWG()->prefix)) . '\')) { spider_set_input_value(\'ajax_task\', \'image_reset\'); spider_set_input_value(\'image_current_id\', \'' . $row->id . '\'); spider_ajax_save(\'bwg_gallery\'); } return false;'); ?>"><?php _e('Reset', BWG()->prefix); ?></a> |</span>
729
  <span><a onclick="spider_set_input_value('ajax_task', 'image_<?php echo $row->published ? 'unpublish' : 'publish'; ?>');
730
  spider_set_input_value('image_current_id', '<?php echo $row->id; ?>');
731
  spider_ajax_save('bwg_gallery');"><?php echo($row->published ? __('Unpublish', BWG()->prefix) : __('Publish', BWG()->prefix)); ?></a> |</span>
admin/views/Options.php CHANGED
@@ -9,7 +9,7 @@ class OptionsView_bwg extends AdminView_bwg {
9
  wp_admin_css('thickbox');
10
  wp_enqueue_style(BWG()->prefix . '_tables');
11
  wp_enqueue_script(BWG()->prefix . '_jscolor');
12
- if (isset($_GET['bwg_start_tour']) && $_GET['bwg_start_tour'] == '1') {
13
  update_user_meta(get_current_user_id(), 'bwg_photo_gallery', '1');
14
  WDWLibrary::spider_redirect('admin.php?page=options_bwg');
15
  }
@@ -27,7 +27,7 @@ class OptionsView_bwg extends AdminView_bwg {
27
 
28
  public function body($params = array()) {
29
  $row = $params['row'];
30
- $instagram_return_url = $params['instagram_return_url'];
31
  $instagram_reset_href = $params['instagram_reset_href'];
32
  $options_url_ajax = $params['options_url_ajax'];
33
  $imgcount = $params['imgcount'];
@@ -688,7 +688,7 @@ class OptionsView_bwg extends AdminView_bwg {
688
  <label class="wd-label" for="watermark_url"><?php _e('Advertisement URL', BWG()->prefix); ?></label>
689
  <div>
690
  <?php
691
- $query_url = add_query_arg(array('action' => 'addImages', 'width' => '800', 'height' => '550', 'extensions' => 'jpg,jpeg,png,gif', 'callback' => 'bwg_add_watermark_image'), admin_url('admin-ajax.php'));
692
  $query_url = wp_nonce_url( $query_url, 'addImages', 'bwg_nonce' );
693
  $query_url = add_query_arg(array('TB_iframe' => '1'), $query_url );
694
  ?>
@@ -1045,7 +1045,7 @@ class OptionsView_bwg extends AdminView_bwg {
1045
  bwg_pagination_description(jQuery('#album_masonry_enable_page_<?php echo $row->album_masonry_enable_page; ?>'));
1046
  bwg_pagination_description(jQuery('#album_extended_enable_page_<?php echo $row->album_extended_enable_page; ?>'));
1047
  });
1048
- <?php if ( WDWLibrary::get('instagram_token') || WDWLibrary::get('code') ) { ?>
1049
  jQuery(window).load(function() {
1050
  var advanced_tab_index = 4;
1051
  jQuery( ".bwg_tabs" ).tabs({ active: advanced_tab_index });
@@ -1239,6 +1239,16 @@ class OptionsView_bwg extends AdminView_bwg {
1239
  <p class="description"><?php _e('Choose to show/hide titles of images, or display them on hover.', BWG()->prefix); ?></p>
1240
  </div>
1241
  </div>
 
 
 
 
 
 
 
 
 
 
1242
  <div class="wd-box-content wd-width-100">
1243
  <div class="wd-group">
1244
  <label class="wd-label"><?php _e('Show Play icon on video thumbnails', BWG()->prefix); ?></label>
9
  wp_admin_css('thickbox');
10
  wp_enqueue_style(BWG()->prefix . '_tables');
11
  wp_enqueue_script(BWG()->prefix . '_jscolor');
12
+ if ( WDWLibrary::get('bwg_start_tour','', 'sanitize_text_field') ) {
13
  update_user_meta(get_current_user_id(), 'bwg_photo_gallery', '1');
14
  WDWLibrary::spider_redirect('admin.php?page=options_bwg');
15
  }
27
 
28
  public function body($params = array()) {
29
  $row = $params['row'];
30
+ $instagram_return_url = $params['instagram_return_url'];
31
  $instagram_reset_href = $params['instagram_reset_href'];
32
  $options_url_ajax = $params['options_url_ajax'];
33
  $imgcount = $params['imgcount'];
688
  <label class="wd-label" for="watermark_url"><?php _e('Advertisement URL', BWG()->prefix); ?></label>
689
  <div>
690
  <?php
691
+ $query_url = add_query_arg(array('action' => 'addImages', 'width' => '800', 'height' => '550', 'extensions' => 'jpg,jpeg,png,gif,svg', 'callback' => 'bwg_add_watermark_image'), admin_url('admin-ajax.php'));
692
  $query_url = wp_nonce_url( $query_url, 'addImages', 'bwg_nonce' );
693
  $query_url = add_query_arg(array('TB_iframe' => '1'), $query_url );
694
  ?>
1045
  bwg_pagination_description(jQuery('#album_masonry_enable_page_<?php echo $row->album_masonry_enable_page; ?>'));
1046
  bwg_pagination_description(jQuery('#album_extended_enable_page_<?php echo $row->album_extended_enable_page; ?>'));
1047
  });
1048
+ <?php if ( WDWLibrary::get('instagram_token', '', 'sanitize_text_field') || WDWLibrary::get('code', '', 'sanitize_text_field') ) { ?>
1049
  jQuery(window).load(function() {
1050
  var advanced_tab_index = 4;
1051
  jQuery( ".bwg_tabs" ).tabs({ active: advanced_tab_index });
1239
  <p class="description"><?php _e('Choose to show/hide titles of images, or display them on hover.', BWG()->prefix); ?></p>
1240
  </div>
1241
  </div>
1242
+ <div class="wd-box-content wd-width-100">
1243
+ <div class="wd-group">
1244
+ <label class="wd-label"><?php _e('Show image descriptions', BWG()->prefix); ?></label>
1245
+ <div class="bwg-flex">
1246
+ <input type="radio" name="show_thumb_description" id="thumb_desc_1" value="1" <?php if ($row->show_thumb_description) echo 'checked="checked"'; ?> /><label for="thumb_desc_1" class="wd-radio-label"><?php _e('Yes', BWG()->prefix); ?></label>
1247
+ <input type="radio" name="show_thumb_description" id="thumb_desc_0" value="0" <?php if (!$row->show_thumb_description) echo 'checked="checked"'; ?> /><label for="thumb_desc_0" class="wd-radio-label"><?php _e('No', BWG()->prefix); ?></label>
1248
+ </div>
1249
+ <p class="description"><?php _e('Enable this setting to display descriptions under images.', BWG()->prefix); ?></p>
1250
+ </div>
1251
+ </div>
1252
  <div class="wd-box-content wd-width-100">
1253
  <div class="wd-group">
1254
  <label class="wd-label"><?php _e('Show Play icon on video thumbnails', BWG()->prefix); ?></label>
admin/views/Shortcode.php CHANGED
@@ -422,7 +422,7 @@ class ShortcodeView_bwg extends AdminView_bwg {
422
  <div class="media-frame-toolbar">
423
  <div class="media-toolbar">
424
  <div class="media-toolbar-primary search-form">
425
- <button class="button media-button button-primary button-large media-button-insert button-hero" type="button" id="insert" name="insert" onClick="bwg_insert_shortcode('');"><?php _e('Insert into post', BWG()->prefix); ?></button>
426
  </div>
427
  <?php if ( !BWG()->is_pro ) { ?>
428
  <div class="media-toolbar-primary search-form" style="float: left;">
@@ -509,25 +509,32 @@ class ShortcodeView_bwg extends AdminView_bwg {
509
  var bwg_insert = 1;
510
  <?php
511
  if ($params['gutenberg_callback']) {
512
- if ($params['gutenberg_id'] == 0) {
513
- ?>
514
- var content = '';
515
- <?php
516
- }
517
- else {
518
- ?>
519
- var content = '[Best_Wordpress_Gallery id="<?php echo $params['gutenberg_id']; ?>"]';
520
- <?php
521
- }
522
- }
523
- elseif (!$from_menu) { ?>
 
 
 
 
 
 
 
524
  var content;
525
- if (top.tinyMCE.activeEditor && !top.tinyMCE.activeEditor.hidden && top.tinyMCE.activeEditor.selection) {
526
- content = top.tinyMCE.activeEditor.selection.getContent();
527
- }
528
- else {
529
- content = bwg_get_textarea_selection(top.wpActiveEditor);
530
- }
531
  <?php } else { ?>
532
  var content = jQuery("#bwg_shortcode").val();
533
  <?php } ?>
@@ -655,6 +662,12 @@ class ShortcodeView_bwg extends AdminView_bwg {
655
  else {
656
  jQuery("#image_title_show_hover_2").attr('checked', 'checked');
657
  }
 
 
 
 
 
 
658
  if (short_code['play_icon'] == 1) {
659
  jQuery("#play_icon_yes").attr('checked', 'checked');
660
  }
@@ -854,11 +867,8 @@ class ShortcodeView_bwg extends AdminView_bwg {
854
  if (short_code['image_title'] == 'hover') {
855
  jQuery("#mosaic_image_title_show_hover_1").attr('checked', 'checked');
856
  }
857
- else if (short_code['image_title'] == 'show') {
858
- jQuery("#mosaic_image_title_show_hover_0").attr('checked', 'checked');
859
- }
860
  else {
861
- jQuery("#mosaic_image_title_show_hover_2").attr('checked', 'checked');
862
  }
863
  if (short_code['play_icon'] == 1) {
864
  jQuery("#mosaic_play_icon_yes").attr('checked', 'checked');
@@ -1638,27 +1648,38 @@ class ShortcodeView_bwg extends AdminView_bwg {
1638
 
1639
  // Get shortcodes attributes.
1640
  function get_params(module_name) {
1641
- <?php if ($params['gutenberg_callback']) {
1642
- if ( $params['gutenberg_id'] == 0) {
1643
- ?>
1644
- return false;
1645
- <?php
1646
- }
1647
- ?>
1648
- var short_code_attr = new Array();
1649
- short_code_attr['id'] = <?php echo (int) $params['gutenberg_id']; ?>;
1650
- return short_code_attr;
1651
  <?php
1652
- }
1653
- elseif (!$from_menu) { ?>
1654
- var selected_text;
1655
- if (top.tinyMCE.activeEditor && !top.tinyMCE.activeEditor.hidden && top.tinyMCE.activeEditor.selection) {
1656
- selected_text = top.tinyMCE.activeEditor.selection.getContent();
1657
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1658
  else {
1659
- selected_text = bwg_get_textarea_selection(top.wpActiveEditor);
1660
  }
1661
- <?php } else { ?>
 
1662
  var shortcode_val = jQuery("#shortcode").val();
1663
  var selected_text = shortcode_val ? '[Best_Wordpress_Gallery id="' + shortcode_val + '"]' : '';
1664
  <?php } ?>
@@ -1706,6 +1727,7 @@ class ShortcodeView_bwg extends AdminView_bwg {
1706
  var title = "";
1707
  var short_code = '[Best_Wordpress_Gallery';
1708
  var tagtext = ' gallery_type="' + gallery_type + '" theme_id="' + theme + '"';
 
1709
  tagtext += ' use_option_defaults="' + use_options_defaults + '"';
1710
  switch (gallery_type) {
1711
  case 'thumbnails': {
@@ -1728,6 +1750,7 @@ class ShortcodeView_bwg extends AdminView_bwg {
1728
  tagtext += ' showthumbs_name="' + jQuery("input[name=showthumbs_name]:checked").val() + '"';
1729
  tagtext += ' show_gallery_description="' + jQuery("input[name=show_gallery_description]:checked").val() + '"';
1730
  tagtext += ' image_title="' + jQuery("input[name=image_title_show_hover]:checked").val() + '"';
 
1731
  tagtext += ' play_icon="' + jQuery("input[name=play_icon]:checked").val() + '"';
1732
  tagtext += ' gallery_download="' + jQuery("input[name=gallery_download]:checked").val() + '"';
1733
  tagtext += ' ecommerce_icon="' + jQuery("input[name=ecommerce_icon_show_hover]:checked").val() + '"';
@@ -1754,7 +1777,7 @@ class ShortcodeView_bwg extends AdminView_bwg {
1754
  tagtext += ' show_tag_box="' + jQuery("input[name=masonry_show_tag_box]:checked").val() + '"';
1755
  tagtext += ' showthumbs_name="' + jQuery("input[name=masonry_show_gallery_title]:checked").val() + '"';
1756
  tagtext += ' image_title="' + jQuery("input[name=masonry_image_title]:checked").val() + '"';
1757
- tagtext += ' show_gallery_description="' + jQuery("input[name=masonry_show_gallery_description]:checked").val() + '"';
1758
  tagtext += ' play_icon="' + jQuery("input[name=masonry_play_icon]:checked").val() + '"';
1759
  tagtext += ' gallery_download="' + jQuery("input[name=masonry_gallery_download]:checked").val() + '"';
1760
  tagtext += ' ecommerce_icon="' + jQuery("input[name=masonry_ecommerce_icon_show_hover]:checked").val() + '"';
@@ -1891,7 +1914,7 @@ class ShortcodeView_bwg extends AdminView_bwg {
1891
  tagtext += ' compuct_album_images_per_page="' + jQuery("#album_images_per_page").val() + '"';
1892
  tagtext += ' all_album_sort_by="' + jQuery("#compact_album_sort_by").val() + '"';
1893
  tagtext += ' all_album_order_by="' + jQuery("#compact_album_order_by").val() + '"';
1894
- tagtext += ' sort_by="' + jQuery("#album_sort_by").val() + '"';
1895
  tagtext += ' order_by="' + jQuery("#album_order_by").val() + '"';
1896
  tagtext += ' show_search_box="' + jQuery("input[name=album_show_search_box]:checked").val() + '"';
1897
  tagtext += ' placeholder="' + jQuery("#album_placeholder").val() + '"';
@@ -1921,9 +1944,9 @@ class ShortcodeView_bwg extends AdminView_bwg {
1921
  tagtext += ' masonry_album_enable_page="' + jQuery("input[name=album_masonry_enable_page]:checked").val() + '"';
1922
  tagtext += ' masonry_albums_per_page="' + jQuery("#albums_masonry_per_page").val() + '"';
1923
  tagtext += ' masonry_album_images_per_page="' + jQuery("#album_masonry_images_per_page").val() + '"';
1924
- tagtext += ' all_album_sort_by="' + jQuery("#masonry_album_sort_by").val() + '"';
1925
  tagtext += ' all_album_order_by="' + jQuery("#masonry_album_order_by").val() + '"';
1926
- tagtext += ' sort_by="' + jQuery("#album_masonry_sort_by").val() + '"';
1927
  tagtext += ' order_by="' + jQuery("#album_masonry_order_by").val() + '"';
1928
  tagtext += ' show_search_box="' + jQuery("input[name=album_masonry_show_search_box]:checked").val() + '"';
1929
  tagtext += ' placeholder="' + jQuery("#album_masonry_placeholder").val() + '"';
@@ -2054,13 +2077,19 @@ class ShortcodeView_bwg extends AdminView_bwg {
2054
  post_data
2055
  ).success(function (data, textStatus, errorThrown) {
2056
  if (top.tinymce.isIE && content) {
2057
- // IE and Update.
2058
- var all_content = top.tinyMCE.activeEditor.getContent();
2059
- all_content = all_content.replace('<p></p><p>[Best_Wordpress_Gallery', '<p>[Best_Wordpress_Gallery');
2060
- top.tinyMCE.activeEditor.setContent(all_content.replace(content, '[Best_Wordpress_Gallery id="' + shortcode_id + '"' + title + ']'));
 
 
 
 
 
 
2061
  }
2062
  else {
2063
- top.send_to_editor(short_code);
2064
  }
2065
  top.tinyMCE.execCommand('mceRepaint');
2066
  /* Close shortcode editor after insert.*/
@@ -2089,7 +2118,7 @@ class ShortcodeView_bwg extends AdminView_bwg {
2089
  <?php
2090
  if ( $params['gutenberg_callback'] ) {
2091
  ?>
2092
- window.parent.window.jQuery(".edit-post-layout__content").css({"z-index":"0","overflow":"auto"});
2093
  window.parent['<?php echo $params['gutenberg_callback']; ?>'](content, shortcode_id);
2094
  return;
2095
  <?php
422
  <div class="media-frame-toolbar">
423
  <div class="media-toolbar">
424
  <div class="media-toolbar-primary search-form">
425
+ <button class="button media-button button-primary button-large media-button-insert button-hero" type="button" id="insert" name="insert" <?php if($params['elementor_callback']) { ?> data-callback="elementor" <?php } ?> onClick="bwg_insert_shortcode('');"><?php _e('Insert into post', BWG()->prefix); ?></button>
426
  </div>
427
  <?php if ( !BWG()->is_pro ) { ?>
428
  <div class="media-toolbar-primary search-form" style="float: left;">
509
  var bwg_insert = 1;
510
  <?php
511
  if ($params['gutenberg_callback']) {
512
+ if ($params['gutenberg_id'] == 0) {
513
+ ?>
514
+ var content = '';
515
+ <?php
516
+ }
517
+ else {
518
+ ?>
519
+ var content = '[Best_Wordpress_Gallery id="<?php echo $params['gutenberg_id']; ?>"]';
520
+ <?php
521
+ }
522
+ } elseif ( $params['elementor_callback'] ) {
523
+ ?>
524
+ if(jQuery(".elementor-control-bwg_elementor_shortcode input", window.parent.document).val() == "") {
525
+ var content = '';
526
+ } else {
527
+ var content = 'elementor_callback';
528
+ }
529
+ <?php
530
+ } elseif (!$from_menu) { ?>
531
  var content;
532
+ if (top.tinyMCE.activeEditor && !top.tinyMCE.activeEditor.hidden && top.tinyMCE.activeEditor.selection) {
533
+ content = top.tinyMCE.activeEditor.selection.getContent();
534
+ }
535
+ else {
536
+ content = bwg_get_textarea_selection(top.wpActiveEditor);
537
+ }
538
  <?php } else { ?>
539
  var content = jQuery("#bwg_shortcode").val();
540
  <?php } ?>
662
  else {
663
  jQuery("#image_title_show_hover_2").attr('checked', 'checked');
664
  }
665
+ if( short_code['show_thumb_description'] == 1 ) {
666
+ jQuery("#thumb_desc_1").attr('checked', 'checked');
667
+ }
668
+ else {
669
+ jQuery("#thumb_desc_0").attr('checked', 'checked');
670
+ }
671
  if (short_code['play_icon'] == 1) {
672
  jQuery("#play_icon_yes").attr('checked', 'checked');
673
  }
867
  if (short_code['image_title'] == 'hover') {
868
  jQuery("#mosaic_image_title_show_hover_1").attr('checked', 'checked');
869
  }
 
 
 
870
  else {
871
+ jQuery("#mosaic_image_title_show_hover_0").attr('checked', 'checked');
872
  }
873
  if (short_code['play_icon'] == 1) {
874
  jQuery("#mosaic_play_icon_yes").attr('checked', 'checked');
1648
 
1649
  // Get shortcodes attributes.
1650
  function get_params(module_name) {
 
 
 
 
 
 
 
 
 
 
1651
  <?php
1652
+ if ($params['gutenberg_callback']) {
1653
+ if ( $params['gutenberg_id'] == 0) {
1654
+ ?>
1655
+ return false;
1656
+ <?php
1657
+ }
1658
+ ?>
1659
+
1660
+ var short_code_attr = new Array();
1661
+ short_code_attr['id'] = <?php echo (int) $params['gutenberg_id']; ?>;
1662
+ return short_code_attr;
1663
+ <?php
1664
+ } elseif ($params['elementor_callback']) {
1665
+ ?>
1666
+ var el_shortcode_id = new Array();
1667
+ el_shortcode_id['id'] = jQuery('.elementor-control-bwg_elementor_shortcode input', window.parent.document).val();
1668
+ if( el_shortcode_id['id'] != "" && parseInt(el_shortcode_id['id'])){
1669
+ return el_shortcode_id;
1670
+ }
1671
+ return false;
1672
+ <?php
1673
+ } elseif (!$from_menu) { ?>
1674
+ var selected_text;
1675
+ if (top.tinyMCE.activeEditor && !top.tinyMCE.activeEditor.hidden && top.tinyMCE.activeEditor.selection) {
1676
+ selected_text = top.tinyMCE.activeEditor.selection.getContent();
1677
+ }
1678
  else {
1679
+ selected_text = bwg_get_textarea_selection(top.wpActiveEditor);
1680
  }
1681
+ <?php
1682
+ } else { ?>
1683
  var shortcode_val = jQuery("#shortcode").val();
1684
  var selected_text = shortcode_val ? '[Best_Wordpress_Gallery id="' + shortcode_val + '"]' : '';
1685
  <?php } ?>
1727
  var title = "";
1728
  var short_code = '[Best_Wordpress_Gallery';
1729
  var tagtext = ' gallery_type="' + gallery_type + '" theme_id="' + theme + '"';
1730
+ var curr = jQuery(this);
1731
  tagtext += ' use_option_defaults="' + use_options_defaults + '"';
1732
  switch (gallery_type) {
1733
  case 'thumbnails': {
1750
  tagtext += ' showthumbs_name="' + jQuery("input[name=showthumbs_name]:checked").val() + '"';
1751
  tagtext += ' show_gallery_description="' + jQuery("input[name=show_gallery_description]:checked").val() + '"';
1752
  tagtext += ' image_title="' + jQuery("input[name=image_title_show_hover]:checked").val() + '"';
1753
+ tagtext += ' show_thumb_description="' + jQuery("input[name=show_thumb_description]:checked").val() + '"';
1754
  tagtext += ' play_icon="' + jQuery("input[name=play_icon]:checked").val() + '"';
1755
  tagtext += ' gallery_download="' + jQuery("input[name=gallery_download]:checked").val() + '"';
1756
  tagtext += ' ecommerce_icon="' + jQuery("input[name=ecommerce_icon_show_hover]:checked").val() + '"';
1777
  tagtext += ' show_tag_box="' + jQuery("input[name=masonry_show_tag_box]:checked").val() + '"';
1778
  tagtext += ' showthumbs_name="' + jQuery("input[name=masonry_show_gallery_title]:checked").val() + '"';
1779
  tagtext += ' image_title="' + jQuery("input[name=masonry_image_title]:checked").val() + '"';
1780
+ tagtext += ' show_gallery_description="' + jQuery("input[name=masonry_show_gallery_description]:checked").val() + '"';
1781
  tagtext += ' play_icon="' + jQuery("input[name=masonry_play_icon]:checked").val() + '"';
1782
  tagtext += ' gallery_download="' + jQuery("input[name=masonry_gallery_download]:checked").val() + '"';
1783
  tagtext += ' ecommerce_icon="' + jQuery("input[name=masonry_ecommerce_icon_show_hover]:checked").val() + '"';
1914
  tagtext += ' compuct_album_images_per_page="' + jQuery("#album_images_per_page").val() + '"';
1915
  tagtext += ' all_album_sort_by="' + jQuery("#compact_album_sort_by").val() + '"';
1916
  tagtext += ' all_album_order_by="' + jQuery("#compact_album_order_by").val() + '"';
1917
+ tagtext += ' sort_by="' + jQuery("#album_sort_by").val() + '"';
1918
  tagtext += ' order_by="' + jQuery("#album_order_by").val() + '"';
1919
  tagtext += ' show_search_box="' + jQuery("input[name=album_show_search_box]:checked").val() + '"';
1920
  tagtext += ' placeholder="' + jQuery("#album_placeholder").val() + '"';
1944
  tagtext += ' masonry_album_enable_page="' + jQuery("input[name=album_masonry_enable_page]:checked").val() + '"';
1945
  tagtext += ' masonry_albums_per_page="' + jQuery("#albums_masonry_per_page").val() + '"';
1946
  tagtext += ' masonry_album_images_per_page="' + jQuery("#album_masonry_images_per_page").val() + '"';
1947
+ tagtext += ' all_album_sort_by="' + jQuery("#masonry_album_sort_by").val() + '"';
1948
  tagtext += ' all_album_order_by="' + jQuery("#masonry_album_order_by").val() + '"';
1949
+ tagtext += ' sort_by="' + jQuery("#album_masonry_sort_by").val() + '"';
1950
  tagtext += ' order_by="' + jQuery("#album_masonry_order_by").val() + '"';
1951
  tagtext += ' show_search_box="' + jQuery("input[name=album_masonry_show_search_box]:checked").val() + '"';
1952
  tagtext += ' placeholder="' + jQuery("#album_masonry_placeholder").val() + '"';
2077
  post_data
2078
  ).success(function (data, textStatus, errorThrown) {
2079
  if (top.tinymce.isIE && content) {
2080
+ // IE and Update.
2081
+ var all_content = top.tinyMCE.activeEditor.getContent();
2082
+ all_content = all_content.replace('<p></p><p>[Best_Wordpress_Gallery', '<p>[Best_Wordpress_Gallery');
2083
+ top.tinyMCE.activeEditor.setContent(all_content.replace(content, '[Best_Wordpress_Gallery id="' + shortcode_id + '"' + title + ']'));
2084
+ } else if( typeof jQuery("#insert").attr('data-callback') != "undefined" && jQuery("#insert").attr('data-callback').length ) {
2085
+ window.parent.jQuery('.elementor-control-bwg_elementor_shortcode input').val(shortcode_id).trigger("input");
2086
+ jQuery('.elementor-control-bwg_view_type_shortcode input', window.parent.document).val("temp");
2087
+ jQuery(".elementor-control-bwg_view_type_shortcode .elementor-choices-label", window.parent.document).trigger('click');
2088
+ jQuery('.elementor-control-bwg_view_type_shortcode input', window.parent.document).val(shortcode_id);
2089
+ jQuery(".elementor-control-bwg_view_type_shortcode .elementor-choices-label", window.parent.document).trigger('click');
2090
  }
2091
  else {
2092
+ top.send_to_editor(short_code);
2093
  }
2094
  top.tinyMCE.execCommand('mceRepaint');
2095
  /* Close shortcode editor after insert.*/
2118
  <?php
2119
  if ( $params['gutenberg_callback'] ) {
2120
  ?>
2121
+ window.parent.window.jQuery(".edit-post-layout__content").css({"z-index":"0","overflow":"auto"});
2122
  window.parent['<?php echo $params['gutenberg_callback']; ?>'](content, shortcode_id);
2123
  return;
2124
  <?php
admin/views/Themes.php CHANGED
@@ -6,6 +6,7 @@ class ThemesView_bwg extends AdminView_bwg {
6
  public function __construct() {
7
  parent::__construct();
8
  wp_enqueue_script(BWG()->prefix . '_jscolor');
 
9
  }
10
 
11
  /**
@@ -140,6 +141,48 @@ class ThemesView_bwg extends AdminView_bwg {
140
  <?php
141
  }
142
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
143
  /**
144
  * Edit.
145
  *
@@ -389,29 +432,11 @@ class ThemesView_bwg extends AdminView_bwg {
389
  <input type="text" name="thumb_title_font_color_hover" id="thumb_title_font_color_hover" value="<?php echo $row->thumb_title_font_color_hover; ?>" class="color" />
390
  </td>
391
  </tr>
392
- <tr>
393
- <td class="spider_label"><label for="thumb_title_font_style"><?php echo __('Title font family:', BWG()->prefix); ?> </label></td>
394
- <td>
395
- <select name="thumb_title_font_style" id="thumb_title_font_style">
396
- <?php
397
- $is_google_fonts = (in_array($row->thumb_title_font_style, $google_fonts)) ? true : false;
398
- $thumb_font_families = ($is_google_fonts == true) ? $google_fonts : $font_families;
399
- foreach ($thumb_font_families as $key => $font_family) {
400
- ?>
401
- <option value="<?php echo $key; ?>" <?php echo (($row->thumb_title_font_style == $key) ? 'selected="selected"' : ''); ?>><?php echo $font_family; ?></option>
402
- <?php
403
- }
404
- ?>
405
- </select>
406
- <div>
407
- <input type="radio" name="thumb_title_google_fonts" id="thumb_title_google_fonts1" onchange="bwg_change_fonts('thumb_title_font_style', jQuery(this).attr('id'))" value="1" <?php if ($is_google_fonts == true) echo 'checked="checked"'; ?> />
408
- <label for="thumb_title_google_fonts1" id="thumb_title_google_fonts1_lbl"><?php echo __('Google fonts', BWG()->prefix); ?></label>
409
- <input type="radio" name="thumb_title_google_fonts" id="thumb_title_google_fonts0" onchange="bwg_change_fonts('thumb_title_font_style', '')" value="0" <?php if ($is_google_fonts == false) echo 'checked="checked"'; ?> />
410
- <label for="thumb_title_google_fonts0" id="thumb_title_google_fonts0_lbl"><?php echo __('Default', BWG()->prefix); ?></label>
411
- </div>
412
- </td>
413
- </tr>
414
- <tr>
415
  <td class="spider_label"><label for="thumb_title_font_weight"><?php echo __('Title font weight:', BWG()->prefix); ?> </label></td>
416
  <td>
417
  <select name="thumb_title_font_weight" id="thumb_title_font_weight">
@@ -439,7 +464,24 @@ class ThemesView_bwg extends AdminView_bwg {
439
  <div class="spider_description"><?php echo __('Use CSS type values.', BWG()->prefix); ?></div>
440
  </td>
441
  </tr>
442
- <tr>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
443
  <td class="spider_label"><label for="thumb_gal_title_font_size"><?php echo __('Gallery title/description font size:', BWG()->prefix); ?> </label></td>
444
  <td>
445
  <input type="text" name="thumb_gal_title_font_size" id="thumb_gal_title_font_size" value="<?php echo
@@ -452,29 +494,11 @@ class ThemesView_bwg extends AdminView_bwg {
452
  <input type="text" name="thumb_gal_title_font_color" id="thumb_gal_title_font_color" value="<?php echo $row->thumb_gal_title_font_color; ?>" class="color" />
453
  </td>
454
  </tr>
455
- <tr>
456
- <td class="spider_label"><label for="thumb_gal_title_font_style"><?php echo __('Gallery title/description font family:', BWG()->prefix); ?> </label></td>
457
- <td>
458
- <select name="thumb_gal_title_font_style" id="thumb_gal_title_font_style">
459
- <?php
460
- $is_google_fonts = (in_array($row->thumb_gal_title_font_style, $google_fonts)) ? true : false;
461
- $thumb_gal_font_families = ($is_google_fonts == true) ? $google_fonts : $font_families;
462
- foreach ($thumb_gal_font_families as $key => $font_family) {
463
- ?>
464
- <option value="<?php echo $key; ?>" <?php echo (($row->thumb_gal_title_font_style == $key) ? 'selected="selected"' : ''); ?>><?php echo $font_family; ?></option>
465
- <?php
466
- }
467
- ?>
468
- </select>
469
- <div>
470
- <input type="radio" name="thumb_gal_title_google_fonts" id="thumb_gal_title_google_fonts1" onchange="bwg_change_fonts('thumb_gal_title_font_style', jQuery(this).attr('id'))" value="1" <?php if ($is_google_fonts == true) echo 'checked="checked"'; ?> />
471
- <label for="thumb_gal_title_google_fonts1" id="thumb_gal_title_google_fonts1_lbl"><?php echo __('Google fonts', BWG()->prefix); ?></label>
472
- <input type="radio" name="thumb_gal_title_google_fonts" id="thumb_gal_title_google_fonts0" onchange="bwg_change_fonts('thumb_gal_title_font_style', '')" value="0" <?php if ($is_google_fonts == false) echo 'checked="checked"'; ?> />
473
- <label for="thumb_gal_title_google_fonts0" id="thumb_gal_title_google_fonts0_lbl"><?php echo __('Default', BWG()->prefix); ?></label>
474
- </div>
475
- </td>
476
- </tr>
477
- <tr>
478
  <td class="spider_label"><label for="thumb_gal_title_font_weight"><?php echo __('Gallery title/description font weight:', BWG()->prefix); ?> </label></td>
479
  <td>
480
  <select name="thumb_gal_title_font_weight" id="thumb_gal_title_font_weight">
@@ -685,28 +709,10 @@ class ThemesView_bwg extends AdminView_bwg {
685
  <input type="text" name="masonry_thumb_title_font_color_hover" id="masonry_thumb_title_font_color_hover" value="<?php echo $row->masonry_thumb_title_font_color_hover; ?>" class="color" />
686
  </td>
687
  </tr>
688
- <tr>
689
- <td class="spider_label"><label for="masonry_thumb_title_font_style"><?php echo __('Title font family:', BWG()->prefix); ?> </label></td>
690
- <td>
691
- <select name="masonry_thumb_title_font_style" id="masonry_thumb_title_font_style">
692
- <?php
693
- $is_google_fonts = (in_array($row->thumb_title_font_style, $google_fonts)) ? true : false;
694
- $thumb_font_families = ($is_google_fonts == true) ? $google_fonts : $font_families;
695
- foreach ($thumb_font_families as $key => $font_family) {
696
- ?>
697
- <option value="<?php echo $key; ?>" <?php echo (($row->thumb_title_font_style == $key) ? 'selected="selected"' : ''); ?>><?php echo $font_family; ?></option>
698
- <?php
699
- }
700
- ?>
701
- </select>
702
- <div>
703
- <input type="radio" name="masonry_thumb_title_google_fonts" id="masonry_thumb_title_google_fonts1" onchange="bwg_change_fonts('masonry_thumb_title_font_style', jQuery(this).attr('id'))" value="1" <?php if ($is_google_fonts == true) echo 'checked="checked"'; ?> />
704
- <label for="masonry_thumb_title_google_fonts1"><?php echo __('Google fonts', BWG()->prefix); ?></label>
705
- <input type="radio" name="masonry_thumb_title_google_fonts" id="masonry_thumb_title_google_fonts0" onchange="bwg_change_fonts('masonry_thumb_title_font_style', '')" value="0" <?php if ($is_google_fonts == false) echo 'checked="checked"'; ?> />
706
- <label for="masonry_thumb_title_google_fonts0"><?php echo __('Default', BWG()->prefix); ?></label>
707
- </div>
708
- </td>
709
- </tr>
710
  <tr>
711
  <td class="spider_label"><label for="masonry_thumb_title_font_weight"><?php echo __('Title font weight:', BWG()->prefix); ?> </label></td>
712
  <td>
@@ -740,28 +746,10 @@ class ThemesView_bwg extends AdminView_bwg {
740
  <input type="text" name="masonry_description_color" id="masonry_description_color" value="<?php echo $row->masonry_description_color; ?>" class="color" />
741
  </td>
742
  </tr>
743
- <tr>
744
- <td class="spider_label"><label for="masonry_description_font_style"><?php echo __('Description font family:', BWG()->prefix); ?> </label></td>
745
- <td>
746
- <select name="masonry_description_font_style" id="masonry_description_font_style">
747
- <?php
748
- $is_google_fonts = (in_array($row->masonry_description_font_style, $google_fonts)) ? true : false;
749
- $masonry_font_families = ($is_google_fonts == true) ? $google_fonts : $font_families;
750
- foreach ($masonry_font_families as $key => $font_family) {
751
- ?>
752
- <option value="<?php echo $key; ?>" <?php echo (($row->masonry_description_font_style == $key) ? 'selected="selected"' : ''); ?>><?php echo $font_family; ?></option>
753
- <?php
754
- }
755
- ?>
756
- </select>
757
- <div>
758
- <input type="radio" name="masonry_description_google_fonts" id="masonry_description_google_fonts1" onchange="bwg_change_fonts('masonry_description_font_style', jQuery(this).attr('id'))" value="1" <?php if ($is_google_fonts == true) echo 'checked="checked"'; ?> />
759
- <label for="masonry_description_google_fonts1" id="masonry_description_google_fonts1_lbl"><?php echo __('Google fonts', BWG()->prefix); ?></label>
760
- <input type="radio" name="masonry_description_google_fonts" id="masonry_description_google_fonts0" onchange="bwg_change_fonts('masonry_description_font_style', '')" value="0" <?php if ($is_google_fonts == false) echo 'checked="checked"'; ?> />
761
- <label for="masonry_description_google_fonts0" id="masonry_description_google_fonts0_lbl"><?php echo __('Default', BWG()->prefix); ?></label>
762
- </div>
763
- </td>
764
- </tr>
765
  <tr>
766
  <td class="spider_label"><label for="masonry_thumb_gal_title_font_size"><?php echo __('Gallery title/description font size:', BWG()->prefix); ?> </label></td>
767
  <td>
@@ -774,28 +762,10 @@ class ThemesView_bwg extends AdminView_bwg {
774
  <input type="text" name="masonry_thumb_gal_title_font_color" id="masonry_thumb_gal_title_font_color" value="<?php echo $row->masonry_thumb_gal_title_font_color; ?>" class="color" />
775
  </td>
776
  </tr>
777
- <tr>
778
- <td class="spider_label"><label for="masonry_thumb_gal_title_font_style"><?php echo __('Gallery title/description font family:', BWG()->prefix); ?> </label></td>
779
- <td>
780
- <select name="masonry_thumb_gal_title_font_style" id="masonry_thumb_gal_title_font_style">
781
- <?php
782
- $is_google_fonts = (in_array($row->masonry_thumb_gal_title_font_style, $google_fonts)) ? true : false;
783
- $masonry_thumb_gal_font_families = ($is_google_fonts == true) ? $google_fonts : $font_families;
784
- foreach ($masonry_thumb_gal_font_families as $key => $font_family) {
785
- ?>
786
- <option value="<?php echo $key; ?>" <?php echo (($row->masonry_thumb_gal_title_font_style == $key) ? 'selected="selected"' : ''); ?>><?php echo $font_family; ?></option>
787
- <?php
788
- }
789
- ?>
790
- </select>
791
- <div>
792
- <input type="radio" name="masonry_thumb_gal_title_google_fonts" id="masonry_thumb_gal_title_google_fonts1" onchange="bwg_change_fonts('masonry_thumb_gal_title_font_style', jQuery(this).attr('id'))" value="1" <?php if ($is_google_fonts == true) echo 'checked="checked"'; ?> />
793
- <label for="masonry_thumb_gal_title_google_fonts1" id="masonry_thumb_gal_title_google_fonts1_lbl"><?php echo __('Google fonts', BWG()->prefix); ?></label>
794
- <input type="radio" name="masonry_thumb_gal_title_google_fonts" id="masonry_thumb_gal_title_google_fonts0" onchange="bwg_change_fonts('masonry_thumb_gal_title_font_style', '')" value="0" <?php if ($is_google_fonts == false) echo 'checked="checked"'; ?> />
795
- <label for="masonry_thumb_gal_title_google_fonts0" id="masonry_thumb_gal_title_google_fonts0_lbl"><?php echo __('Default', BWG()->prefix); ?></label>
796
- </div>
797
- </td>
798
- </tr>
799
  <tr>
800
  <td class="spider_label"><label for="masonry_thumb_gal_title_font_weight"><?php echo __('Gallery title/description font weight:', BWG()->prefix); ?> </label></td>
801
  <td>
@@ -1003,34 +973,16 @@ class ThemesView_bwg extends AdminView_bwg {
1003
  <input type="text" name="mosaic_thumb_title_font_color" id="mosaic_thumb_title_font_color" value="<?php echo $row->mosaic_thumb_title_font_color; ?>" class="color" />
1004
  </td>
1005
  </tr>
1006
- <tr>
1007
- <td class="spider_label"><label for="mosaic_thumb_title_font_color_hover"><?php echo __('Title font color (Show on hover):', BWG()->prefix); ?> </label></td>
1008
- <td>
1009
- <input type="text" name="mosaic_thumb_title_font_color_hover" id="mosaic_thumb_title_font_color_hover" value="<?php echo $row->mosaic_thumb_title_font_color_hover; ?>" class="color" />
1010
- </td>
1011
- </tr>
1012
- <tr>
1013
- <td class="spider_label"><label for="mosaic_thumb_title_font_style"><?php echo __('Title font family:', BWG()->prefix); ?> </label></td>
1014
- <td>
1015
- <select name="mosaic_thumb_title_font_style" id="mosaic_thumb_title_font_style">
1016
- <?php
1017
- $is_google_fonts = (in_array($row->mosaic_thumb_title_font_style, $google_fonts)) ? true : false;
1018
- $mosaic_font_families = ($is_google_fonts == true) ? $google_fonts : $font_families;
1019
- foreach ($mosaic_font_families as $key => $font_family) {
1020
- ?>
1021
- <option value="<?php echo $key; ?>" <?php echo (($row->mosaic_thumb_title_font_style == $key) ? 'selected="selected"' : ''); ?>><?php echo $font_family; ?></option>
1022
- <?php
1023
- }
1024
- ?>
1025
- </select>
1026
- <div>
1027
- <input type="radio" name="mosaic_thumb_title_google_fonts" id="mosaic_thumb_title_google_fonts1" onchange="bwg_change_fonts('mosaic_thumb_title_font_style', jQuery(this).attr('id'))" value="1" <?php if ($is_google_fonts == true) echo 'checked="checked"'; ?> />
1028
- <label for="mosaic_thumb_title_google_fonts1" id="mosaic_thumb_title_google_fonts1_lbl"><?php echo __('Google fonts', BWG()->prefix); ?></label>
1029
- <input type="radio" name="mosaic_thumb_title_google_fonts" id="mosaic_thumb_title_google_fonts0" onchange="bwg_change_fonts('mosaic_thumb_title_font_style', '')" value="0" <?php if ($is_google_fonts == false) echo 'checked="checked"'; ?> />
1030
- <label for="mosaic_thumb_title_google_fonts0" id="mosaic_thumb_title_google_fonts0_lbl"><?php echo __('Default', BWG()->prefix); ?></label>
1031
- </div>
1032
- </td>
1033
- </tr>
1034
  <tr>
1035
  <td class="spider_label"><label for="mosaic_thumb_title_font_weight"><?php echo __('Title font weight:', BWG()->prefix); ?> </label></td>
1036
  <td>
@@ -1071,29 +1023,11 @@ class ThemesView_bwg extends AdminView_bwg {
1071
  <input type="text" name="mosaic_thumb_gal_title_font_color" id="mosaic_thumb_gal_title_font_color" value="<?php echo $row->mosaic_thumb_gal_title_font_color; ?>" class="color" />
1072
  </td>
1073
  </tr>
1074
- <tr>
1075
- <td class="spider_label"><label for="mosaic_thumb_gal_title_font_style"><?php echo __('Gallery title/description font family:', BWG()->prefix); ?> </label></td>
1076
- <td>
1077
- <select name="mosaic_thumb_gal_title_font_style" id="mosaic_thumb_gal_title_font_style">
1078
- <?php
1079
- $is_google_fonts = (in_array($row->mosaic_thumb_gal_title_font_style, $google_fonts)) ? true : false;
1080
- $mosaic_thumb_font_families = ($is_google_fonts == true) ? $google_fonts : $font_families;
1081
- foreach ($mosaic_thumb_font_families as $key => $font_family) {
1082
- ?>
1083
- <option value="<?php echo $key; ?>" <?php echo (($row->mosaic_thumb_gal_title_font_style == $key) ? 'selected="selected"' : ''); ?>><?php echo $font_family; ?></option>
1084
- <?php
1085
- }
1086
- ?>
1087
- </select>
1088
- <div>
1089
- <input type="radio" name="mosaic_thumb_gal_title_google_fonts" id="mosaic_thumb_gal_title_google_fonts1" onchange="bwg_change_fonts('mosaic_thumb_gal_title_font_style', jQuery(this).attr('id'))" value="1" <?php if ($is_google_fonts == true) echo 'checked="checked"'; ?> />
1090
- <label for="mosaic_thumb_gal_title_google_fonts1" id="mosaic_thumb_gal_title_google_fonts1_lbl"><?php echo __('Google fonts', BWG()->prefix); ?></label>
1091
- <input type="radio" name="mosaic_thumb_gal_title_google_fonts" id="mosaic_thumb_gal_title_google_fonts0" onchange="bwg_change_fonts('mosaic_thumb_gal_title_font_style', '')" value="0" <?php if ($is_google_fonts == false) echo 'checked="checked"'; ?> />
1092
- <label for="mosaic_thumb_gal_title_google_fonts0" id="mosaic_thumb_gal_title_google_fonts0_lbl"><?php echo __('Default', BWG()->prefix); ?></label>
1093
- </div>
1094
- </td>
1095
- </tr>
1096
- <tr>
1097
  <td class="spider_label"><label for="mosaic_thumb_gal_title_font_weight"><?php echo __('Gallery title/description font weight:', BWG()->prefix); ?> </label></td>
1098
  <td>
1099
  <select name="mosaic_thumb_gal_title_font_weight" id="mosaic_thumb_gal_title_font_weight">
@@ -1455,28 +1389,10 @@ class ThemesView_bwg extends AdminView_bwg {
1455
  <input type="text" name="slideshow_title_color" id="slideshow_title_color" value="<?php echo $row->slideshow_title_color; ?>" class="color"/>
1456
  </td>
1457
  </tr>
1458
- <tr>
1459
- <td class="spider_label"><label for="slideshow_title_font"><?php echo __('Title font family:', BWG()->prefix); ?> </label></td>
1460
- <td>
1461
- <select name="slideshow_title_font" id="slideshow_title_font">
1462
- <?php
1463
- $is_google_fonts = (in_array($row->slideshow_title_font, $google_fonts)) ? true : false;
1464
- $slideshow_title_font_families = ($is_google_fonts == true) ? $google_fonts : $font_families;
1465
- foreach ($slideshow_title_font_families as $key => $font_family) {
1466
- ?>
1467
- <option value="<?php echo $key; ?>" <?php echo (($row->slideshow_title_font == $key) ? 'selected="selected"' : ''); ?>><?php echo $font_family; ?></option>
1468
- <?php
1469
- }
1470
- ?>
1471
- </select>
1472
- <div>
1473
- <input type="radio" name="slideshow_title_google_fonts" id="slideshow_title_google_fonts1" onchange="bwg_change_fonts('slideshow_title_font', jQuery(this).attr('id'))" value="1" <?php if ($is_google_fonts == true) echo 'checked="checked"'; ?> />
1474
- <label for="slideshow_title_google_fonts1" id="slideshow_title_google_fonts1_lbl"><?php echo __('Google fonts', BWG()->prefix); ?></label>
1475
- <input type="radio" name="slideshow_title_google_fonts" id="slideshow_title_google_fonts0" onchange="bwg_change_fonts('slideshow_title_font', '')" value="0" <?php if ($is_google_fonts == false) echo 'checked="checked"'; ?> />
1476
- <label for="slideshow_title_google_fonts0" id="slideshow_title_google_fonts0_lbl"><?php echo __('Default', BWG()->prefix); ?></label>
1477
- </div>
1478
- </td>
1479
- </tr>
1480
  <tr>
1481
  <td class="spider_label"><label for="slideshow_description_background_color"><?php echo __('Description background color:', BWG()->prefix); ?> </label></td>
1482
  <td>
@@ -1516,28 +1432,10 @@ class ThemesView_bwg extends AdminView_bwg {
1516
  <input type="text" name="slideshow_description_color" id="slideshow_description_color" value="<?php echo $row->slideshow_description_color; ?>" class="color"/>
1517
  </td>
1518
  </tr>
1519
- <tr>
1520
- <td class="spider_label"><label for="slideshow_description_font"><?php echo __('Description font family:', BWG()->prefix); ?> </label></td>
1521
- <td>
1522
- <select name="slideshow_description_font" id="slideshow_description_font">
1523
- <?php
1524
- $is_google_fonts = (in_array($row->slideshow_description_font, $google_fonts) ) ? true : false;
1525
- $slideshow_description_font_families = ($is_google_fonts == true) ? $google_fonts : $font_families;
1526
- foreach ($slideshow_description_font_families as $key => $font_family) {
1527
- ?>
1528
- <option value="<?php echo $key; ?>" <?php echo (($row->slideshow_description_font == $key) ? 'selected="selected"' : ''); ?>><?php echo $font_family; ?></option>
1529
- <?php
1530
- }
1531
- ?>
1532
- </select>
1533
- <div>
1534
- <input type="radio" name="slideshow_description_google_fonts" id="slideshow_description_google_fonts1" onchange="bwg_change_fonts('slideshow_description_font', jQuery(this).attr('id'))" value="1" <?php if ($is_google_fonts == true) echo 'checked="checked"'; ?> />
1535
- <label for="slideshow_description_google_fonts1" id="slideshow_description_google_fonts1_lbl"><?php echo __('Google fonts', BWG()->prefix); ?></label>
1536
- <input type="radio" name="slideshow_description_google_fonts" id="slideshow_description_google_fonts0" onchange="bwg_change_fonts('slideshow_description_font', '')" value="0" <?php if ($is_google_fonts == false) echo 'checked="checked"'; ?> />
1537
- <label for="slideshow_description_google_fonts0" id="slideshow_description_google_fonts0_lbl"><?php echo __('Default', BWG()->prefix); ?></label>
1538
- </div>
1539
- </td>
1540
- </tr>
1541
  </tbody>
1542
  </table>
1543
  </div>
@@ -1741,29 +1639,11 @@ class ThemesView_bwg extends AdminView_bwg {
1741
  <input type="text" name="image_browser_img_font_color" id="image_browser_img_font_color" value="<?php echo $row->image_browser_img_font_color; ?>" class="color" />
1742
  </td>
1743
  </tr>
1744
- <tr>
1745
- <td class="spider_label"><label for="image_browser_img_font_family"><?php echo __('Font family:', BWG()->prefix); ?> </label></td>
1746
- <td>
1747
- <select name="image_browser_img_font_family" id="image_browser_img_font_family">
1748
- <?php
1749
- $is_google_fonts = (in_array($row->image_browser_img_font_family, $google_fonts)) ? true : false;
1750
- $image_browser_font_families = ($is_google_fonts == true) ? $google_fonts : $font_families;
1751
- foreach ($image_browser_font_families as $key => $font_family) {
1752
- ?>
1753
- <option value="<?php echo $key; ?>" <?php echo (($row->image_browser_img_font_family == $key) ? 'selected="selected"' : ''); ?>><?php echo $font_family; ?></option>
1754
- <?php
1755
- }
1756
- ?>
1757
- </select>
1758
- <div>
1759
- <input type="radio" name="image_browser_img_google_fonts" id="image_browser_img_google_fonts1" onchange="bwg_change_fonts('image_browser_img_font_family', jQuery(this).attr('id'))" value="1" <?php if ($is_google_fonts == true) echo 'checked="checked"'; ?> />
1760
- <label for="image_browser_img_google_fonts1" id="image_browser_img_google_fonts1_lbl"><?php echo __('Google fonts', BWG()->prefix); ?></label>
1761
- <input type="radio" name="image_browser_img_google_fonts" id="image_browser_img_google_fonts0" onchange="bwg_change_fonts('image_browser_img_font_family', '')" value="0" <?php if ($is_google_fonts == false) echo 'checked="checked"'; ?> />
1762
- <label for="image_browser_img_google_fonts0" id="image_browser_img_google_fonts0_lbl"><?php echo __('Default', BWG()->prefix); ?></label>
1763
- </div>
1764
- </td>
1765
- </tr>
1766
- <tr>
1767
  <td class="spider_label"><label for="image_browser_image_description_margin"><?php echo __('Description margin:', BWG()->prefix); ?> </label></td>
1768
  <td>
1769
  <input type="text" name="image_browser_image_description_margin" id="image_browser_image_description_margin" value="<?php echo $row->image_browser_image_description_margin; ?>" class="spider_char_input" />
@@ -1829,28 +1709,10 @@ class ThemesView_bwg extends AdminView_bwg {
1829
  <input type="text" name="image_browser_gal_title_font_color" id="image_browser_gal_title_font_color" value="<?php echo $row->image_browser_gal_title_font_color; ?>" class="color" />
1830
  </td>
1831
  </tr>
1832
- <tr>
1833
- <td class="spider_label"><label for="image_browser_gal_title_font_style"><?php echo __('Gallery title/description font family:', BWG()->prefix); ?> </label></td>
1834
- <td>
1835
- <select name="image_browser_gal_title_font_style" id="image_browser_gal_title_font_style">
1836
- <?php
1837
- $is_google_fonts = (in_array($row->image_browser_gal_title_font_style, $google_fonts)) ? true : false;
1838
- $image_browser_gal_font_families = ($is_google_fonts == true) ? $google_fonts : $font_families;
1839
- foreach ($image_browser_gal_font_families as $key => $font_family) {
1840
- ?>
1841
- <option value="<?php echo $key; ?>" <?php echo (($row->image_browser_gal_title_font_style == $key) ? 'selected="selected"' : ''); ?>><?php echo $font_family; ?></option>
1842
- <?php
1843
- }
1844
- ?>
1845
- </select>
1846
- <div>
1847
- <input type="radio" name="image_browser_gal_title_google_fonts" id="image_browser_gal_title_google_fonts1" onchange="bwg_change_fonts('image_browser_gal_title_font_style', jQuery(this).attr('id'))" value="1" <?php if ($is_google_fonts == true) echo 'checked="checked"'; ?> />
1848
- <label for="image_browser_gal_title_google_fonts1" id="image_browser_gal_title_google_fonts1_lbl"><?php echo __('Google fonts', BWG()->prefix); ?></label>
1849
- <input type="radio" name="image_browser_gal_title_google_fonts" id="image_browser_gal_title_google_fonts0" onchange="bwg_change_fonts('image_browser_gal_title_font_style', '')" value="0" <?php if ($is_google_fonts == false) echo 'checked="checked"'; ?> />
1850
- <label for="image_browser_gal_title_google_fonts0" id="image_browser_gal_title_google_fonts0_lbl"><?php echo __('Default', BWG()->prefix); ?></label>
1851
- </div>
1852
- </td>
1853
- </tr>
1854
  <tr>
1855
  <td class="spider_label"><label for="image_browser_gal_title_font_weight"><?php echo __('Gallery title/description font weight:', BWG()->prefix); ?> </label></td>
1856
  <td>
@@ -2087,29 +1949,11 @@ class ThemesView_bwg extends AdminView_bwg {
2087
  <input type="text" name="album_compact_title_font_color_hover" id="album_compact_title_font_color_hover" value="<?php echo $row->album_compact_title_font_color_hover; ?>" class="color" />
2088
  </td>
2089
  </tr>
2090
- <tr>
2091
- <td class="spider_label"><label for="album_compact_title_font_style"><?php echo __('Title font family:', BWG()->prefix); ?> </label></td>
2092
- <td>
2093
- <select name="album_compact_title_font_style" id="album_compact_title_font_style">
2094
- <?php
2095
- $is_google_fonts = (in_array($row->album_compact_title_font_style, $google_fonts) ) ? true : false;
2096
- $album_compact_title_font_families = ($is_google_fonts == true) ? $google_fonts : $font_families;
2097
- foreach ($album_compact_title_font_families as $key => $font_family) {
2098
- ?>
2099
- <option value="<?php echo $key; ?>" <?php echo (($row->album_compact_title_font_style == $key) ? 'selected="selected"' : ''); ?>><?php echo $font_family; ?></option>
2100
- <?php
2101
- }
2102
- ?>
2103
- </select>
2104
- <div>
2105
- <input type="radio" name="album_compact_title_google_fonts" id="album_compact_title_google_fonts1" onchange="bwg_change_fonts('album_compact_title_font_style', jQuery(this).attr('id'))" value="1" <?php if ($is_google_fonts == true) echo 'checked="checked"'; ?> />
2106
- <label for="album_compact_title_google_fonts1" id="album_compact_title_google_fonts1_lbl"><?php echo __('Google fonts', BWG()->prefix); ?></label>
2107
- <input type="radio" name="album_compact_title_google_fonts" id="album_compact_title_google_fonts0" onchange="bwg_change_fonts('album_compact_title_font_style', '')" value="0" <?php if ($is_google_fonts == false) echo 'checked="checked"'; ?> />
2108
- <label for="album_compact_title_google_fonts0" id="album_compact_title_google_fonts0_lbl"><?php echo __('Default', BWG()->prefix); ?></label>
2109
- </div>
2110
- </td>
2111
- </tr>
2112
- <tr>
2113
  <td class="spider_label"><label for="album_compact_title_font_weight"><?php echo __('Title font weight:', BWG()->prefix); ?> </label></td>
2114
  <td>
2115
  <select name="album_compact_title_font_weight" id="album_compact_title_font_weight">
@@ -2149,28 +1993,10 @@ class ThemesView_bwg extends AdminView_bwg {
2149
  <input type="text" name="album_compact_back_font_color" id="album_compact_back_font_color" value="<?php echo $row->album_compact_back_font_color; ?>" class="color" />
2150
  </td>
2151
  </tr>
2152
- <tr>
2153
- <td class="spider_label"><label for="album_compact_back_font_style"><?php echo __('Back Font family:', BWG()->prefix); ?> </label></td>
2154
- <td>
2155
- <select name="album_compact_back_font_style" id="album_compact_back_font_style">
2156
- <?php
2157
- $is_google_fonts = (in_array($row->album_compact_back_font_style, $google_fonts) ) ? true : false;
2158
- $album_compact_back_font_families = ($is_google_fonts == true) ? $google_fonts : $font_families;
2159
- foreach ($album_compact_back_font_families as $key => $font_family) {
2160
- ?>
2161
- <option value="<?php echo $key; ?>" <?php echo (($row->album_compact_back_font_style == $key) ? 'selected="selected"' : ''); ?>><?php echo $font_family; ?></option>
2162
- <?php
2163
- }
2164
- ?>
2165
- </select>
2166
- <div>
2167
- <input type="radio" name="album_compact_back_google_fonts" id="album_compact_back_google_fonts1" onchange="bwg_change_fonts('album_compact_back_font_style', jQuery(this).attr('id'))" value="1" <?php if ($is_google_fonts == true) echo 'checked="checked"'; ?> />
2168
- <label for="album_compact_back_google_fonts1" id="album_compact_back_google_fonts1_lbl"><?php echo __('Google fonts', BWG()->prefix); ?></label>
2169
- <input type="radio" name="album_compact_back_google_fonts" id="album_compact_back_google_fonts0" onchange="bwg_change_fonts('album_compact_back_font_style', '')" value="0" <?php if ($is_google_fonts == false) echo 'checked="checked"'; ?> />
2170
- <label for="album_compact_back_google_fonts0" id="album_compact_back_google_fonts0_lbl"><?php echo __('Default', BWG()->prefix); ?></label>
2171
- </div>
2172
- </td>
2173
- </tr>
2174
  <tr>
2175
  <td class="spider_label"><label for="album_compact_back_font_weight"><?php echo __('Back Font weight:', BWG()->prefix); ?> </label></td>
2176
  <td>
@@ -2204,28 +2030,10 @@ class ThemesView_bwg extends AdminView_bwg {
2204
  <input type="text" name="album_compact_gal_title_font_color" id="album_compact_gal_title_font_color" value="<?php echo $row->album_compact_gal_title_font_color; ?>" class="color" />
2205
  </td>
2206
  </tr>
2207
- <tr>
2208
- <td class="spider_label"><label for="album_compact_gal_title_font_style"><?php echo __('Gallery title/description font family:', BWG()->prefix); ?> </label></td>
2209
- <td>
2210
- <select name="album_compact_gal_title_font_style" id="album_compact_gal_title_font_style">
2211
- <?php
2212
- $is_google_fonts = (in_array($row->album_compact_gal_title_font_style, $google_fonts)) ? true : false;
2213
- $album_compact_gal_font_families = ($is_google_fonts == true) ? $google_fonts : $font_families;
2214
- foreach ($album_compact_gal_font_families as $key => $font_family) {
2215
- ?>
2216
- <option value="<?php echo $key; ?>" <?php echo (($row->album_compact_gal_title_font_style == $key) ? 'selected="selected"' : ''); ?>><?php echo $font_family; ?></option>
2217
- <?php
2218
- }
2219
- ?>
2220
- </select>
2221
- <div>
2222
- <input type="radio" name="album_compact_gal_title_google_fonts" id="album_compact_gal_title_google_fonts1" onchange="bwg_change_fonts('album_compact_gal_title_font_style', jQuery(this).attr('id'))" value="1" <?php if ($is_google_fonts == true) echo 'checked="checked"'; ?> />
2223
- <label for="album_compact_gal_title_google_fonts1" id="album_compact_gal_google_fonts1_lbl"><?php echo __('Google fonts', BWG()->prefix); ?></label>
2224
- <input type="radio" name="album_compact_gal_title_google_fonts" id="album_compact_gal_google_fonts0" onchange="bwg_change_fonts('album_compact_gal_title_font_style', '')" value="0" <?php if ($is_google_fonts == false) echo 'checked="checked"'; ?> />
2225
- <label for="album_compact_gal_google_fonts0" id="album_compact_gal_google_fonts0_lbl"><?php echo __('Default', BWG()->prefix); ?></label>
2226
- </div>
2227
- </td>
2228
- </tr>
2229
  <tr>
2230
  <td class="spider_label"><label for="album_compact_gal_title_font_weight"><?php echo __('Gallery title/description font weight:', BWG()->prefix); ?> </label></td>
2231
  <td>
@@ -2540,28 +2348,10 @@ class ThemesView_bwg extends AdminView_bwg {
2540
  <input type="text" name="album_extended_back_font_color" id="album_extended_back_font_color" value="<?php echo $row->album_extended_back_font_color; ?>" class="color"/>
2541
  </td>
2542
  </tr>
2543
- <tr>
2544
- <td class="spider_label"><label for="album_extended_back_font_style"><?php echo __('Back font family:', BWG()->prefix); ?> </label></td>
2545
- <td>
2546
- <select name="album_extended_back_font_style" id="album_extended_back_font_style">
2547
- <?php
2548
- $is_google_fonts = (in_array($row->album_extended_back_font_style, $google_fonts) ) ? true : false;
2549
- $album_extended_back_font_families = ($is_google_fonts == true) ? $google_fonts : $font_families;
2550
- foreach ($album_extended_back_font_families as $key => $font_family) {
2551
- ?>
2552
- <option value="<?php echo $key; ?>" <?php echo (($row->album_extended_back_font_style == $key) ? 'selected="selected"' : ''); ?>><?php echo $font_family; ?></option>
2553
- <?php
2554
- }
2555
- ?>
2556
- </select>
2557
- <div>
2558
- <input type="radio" name="album_extended_back_google_fonts" id="album_extended_back_google_fonts1" onchange="bwg_change_fonts('album_extended_back_font_style', jQuery(this).attr('id'))" value="1" <?php if ($is_google_fonts == true) echo 'checked="checked"'; ?> />
2559
- <label for="album_extended_back_google_fonts1" id="album_extended_back_google_fonts1_lbl"><?php echo __('Google fonts', BWG()->prefix); ?></label>
2560
- <input type="radio" name="album_extended_back_google_fonts" id="album_extended_back_google_fonts0" onchange="bwg_change_fonts('album_extended_back_font_style', '')" value="0" <?php if ($is_google_fonts == false) echo 'checked="checked"'; ?> />
2561
- <label for="album_extended_back_google_fonts0" id="album_extended_back_google_fonts0_lbl"><?php echo __('Default', BWG()->prefix); ?></label>
2562
- </div>
2563
- </td>
2564
- </tr>
2565
  <tr>
2566
  <td class="spider_label"><label for="album_extended_back_font_weight"><?php echo __('Back font weight:', BWG()->prefix); ?> </label></td>
2567
  <td>
@@ -2697,28 +2487,10 @@ class ThemesView_bwg extends AdminView_bwg {
2697
  <input type="text" name="album_extended_title_font_color" id="album_extended_title_font_color" value="<?php echo $row->album_extended_title_font_color; ?>" class="color"/>
2698
  </td>
2699
  </tr>
2700
- <tr>
2701
- <td class="spider_label"><label for="album_extended_title_font_style"><?php echo __('Title font family:', BWG()->prefix); ?> </label></td>
2702
- <td>
2703
- <select name="album_extended_title_font_style" id="album_extended_title_font_style">
2704
- <?php
2705
- $is_google_fonts = (in_array($row->album_extended_title_font_style, $google_fonts)) ? true : false;
2706
- $album_extended_title_font_families = ($is_google_fonts == true) ? $google_fonts : $font_families;
2707
- foreach ($album_extended_title_font_families as $key => $font_family) {
2708
- ?>
2709
- <option value="<?php echo $key; ?>" <?php echo (($row->album_extended_title_font_style == $key) ? 'selected="selected"' : ''); ?>><?php echo $font_family; ?></option>
2710
- <?php
2711
- }
2712
- ?>
2713
- </select>
2714
- <div>
2715
- <input type="radio" name="album_extended_title_google_fonts" id="album_extended_title_google_fonts1" onchange="bwg_change_fonts('album_extended_title_font_style', jQuery(this).attr('id'))" value="1" <?php if ($is_google_fonts == true) echo 'checked="checked"'; ?> />
2716
- <label for="album_extended_title_google_fonts1" id="album_extended_title_google_fonts1_lbl"><?php echo __('Google fonts', BWG()->prefix); ?></label>
2717
- <input type="radio" name="album_extended_title_google_fonts" id="album_extended_title_google_fonts0" onchange="bwg_change_fonts('album_extended_title_font_style', '')" value="0" <?php if ($is_google_fonts == false) echo 'checked="checked"'; ?> />
2718
- <label for="album_extended_title_google_fonts0" id="album_extended_title_google_fonts0_lbl"><?php echo __('Default', BWG()->prefix); ?></label>
2719
- </div>
2720
- </td>
2721
- </tr>
2722
  <tr>
2723
  <td class="spider_label"><label for="album_extended_title_font_weight"><?php echo __('Title font weight:', BWG()->prefix); ?> </label></td>
2724
  <td>
@@ -2778,28 +2550,10 @@ class ThemesView_bwg extends AdminView_bwg {
2778
  <input type="text" name="album_extended_desc_font_color" id="album_extended_desc_font_color" value="<?php echo $row->album_extended_desc_font_color; ?>" class="color"/>
2779
  </td>
2780
  </tr>
2781
- <tr>
2782
- <td class="spider_label"><label for="album_extended_desc_font_style"><?php echo __('Description font family:', BWG()->prefix); ?> </label></td>
2783
- <td>
2784
- <select name="album_extended_desc_font_style" id="album_extended_desc_font_style">
2785
- <?php
2786
- $is_google_fonts = (in_array($row->album_extended_desc_font_style, $google_fonts)) ? true : false;
2787
- $album_extended_desc_font_families = ($is_google_fonts == true) ? $google_fonts : $font_families;
2788
- foreach ($album_extended_desc_font_families as $key => $font_family) {
2789
- ?>
2790
- <option value="<?php echo $key; ?>" <?php echo (($row->album_extended_desc_font_style == $key) ? 'selected="selected"' : ''); ?>><?php echo $font_family; ?></option>
2791
- <?php
2792
- }
2793
- ?>
2794
- </select>
2795
- <div>
2796
- <input type="radio" name="album_extended_desc_google_fonts" id="album_extended_desc_google_fonts1" onchange="bwg_change_fonts('album_extended_desc_font_style', jQuery(this).attr('id'))" value="1" <?php if ($is_google_fonts == true) echo 'checked="checked"'; ?> />
2797
- <label for="album_extended_desc_google_fonts1" id="album_extended_desc_google_fonts1_lbl"><?php echo __('Google fonts', BWG()->prefix); ?></label>
2798
- <input type="radio" name="album_extended_desc_google_fonts" id="album_extended_desc_google_fonts0" onchange="bwg_change_fonts('album_extended_desc_font_style', '')" value="0" <?php if ($is_google_fonts == false) echo 'checked="checked"'; ?> />
2799
- <label for="album_extended_desc_google_fonts0" id="album_extended_desc_google_fonts0_lbl"><?php echo __('Default', BWG()->prefix); ?></label>
2800
- </div>
2801
- </td>
2802
- </tr>
2803
  <tr>
2804
  <td class="spider_label"><label for="album_extended_desc_font_weight"><?php echo __('Description font weight:', BWG()->prefix); ?> </label></td>
2805
  <td>
@@ -2838,28 +2592,10 @@ class ThemesView_bwg extends AdminView_bwg {
2838
  <input type="text" name="album_extended_gal_title_font_color" id="album_extended_gal_title_font_color" value="<?php echo $row->album_extended_gal_title_font_color; ?>" class="color" />
2839
  </td>
2840
  </tr>
2841
- <tr>
2842
- <td class="spider_label"><label for="album_extended_gal_title_font_style"><?php echo __('Gallery title/description font family:', BWG()->prefix); ?> </label></td>
2843
- <td>
2844
- <select name="album_extended_gal_title_font_style" id="album_extended_gal_title_font_style">
2845
- <?php
2846
- $is_google_fonts = (in_array($row->album_extended_gal_title_font_style, $google_fonts)) ? true : false;
2847
- $album_extended_gal_font_families = ($is_google_fonts == true) ? $google_fonts : $font_families;
2848
- foreach ($album_extended_gal_font_families as $key => $font_family) {
2849
- ?>
2850
- <option value="<?php echo $key; ?>" <?php echo (($row->album_extended_gal_title_font_style == $key) ? 'selected="selected"' : ''); ?>><?php echo $font_family; ?></option>
2851
- <?php
2852
- }
2853
- ?>
2854
- </select>
2855
- <div>
2856
- <input type="radio" name="album_extended_gal_title_google_fonts" id="album_extended_gal_title_google_fonts1" onchange="bwg_change_fonts('album_extended_gal_title_font_style', jQuery(this).attr('id'))" value="1" <?php if ($is_google_fonts == true) echo 'checked="checked"'; ?> />
2857
- <label for="album_extended_gal_title_google_fonts1" id="album_extended_gal_title_google_fonts1_lbl"><?php echo __('Google fonts', BWG()->prefix); ?></label>
2858
- <input type="radio" name="album_extended_gal_title_google_fonts" id="album_extended_gal_title_google_fonts0" onchange="bwg_change_fonts('album_extended_gal_title_font_style', '')" value="0" <?php if ($is_google_fonts == false) echo 'checked="checked"'; ?> />
2859
- <label for="album_extended_gal_title_google_fonts0" id="album_extended_gal_title_google_fonts0_lbl"><?php echo __('Default', BWG()->prefix); ?></label>
2860
- </div>
2861
- </td>
2862
- </tr>
2863
  <tr>
2864
  <td class="spider_label"><label for="album_extended_gal_title_font_weight"><?php echo __('Gallery title/description font weight:', BWG()->prefix); ?> </label></td>
2865
  <td>
@@ -3076,28 +2812,10 @@ class ThemesView_bwg extends AdminView_bwg {
3076
  <input type="text" name="album_masonry_thumb_title_font_color_hover" id="album_masonry_thumb_title_font_color_hover" value="<?php echo $row->album_masonry_thumb_title_font_color_hover; ?>" class="color" />
3077
  </td>
3078
  </tr>
3079
- <tr>
3080
- <td class="spider_label"><label for="album_masonry_title_font_style"><?php echo __('Title font family:', BWG()->prefix); ?> </label></td>
3081
- <td>
3082
- <select name="album_masonry_title_font_style" id="album_masonry_title_font_style">
3083
- <?php
3084
- $is_google_fonts = (in_array($row->album_masonry_title_font_style, $google_fonts)) ? true : false;
3085
- $album_masonry_title_font_families = ($is_google_fonts == true) ? $google_fonts : $font_families;
3086
- foreach ($album_masonry_title_font_families as $key => $font_family) {
3087
- ?>
3088
- <option value="<?php echo $key; ?>" <?php echo (($row->album_masonry_title_font_style == $key) ? 'selected="selected"' : ''); ?>><?php echo $font_family; ?></option>
3089
- <?php
3090
- }
3091
- ?>
3092
- </select>
3093
- <div>
3094
- <input type="radio" name="album_masonry_title_google_fonts" id="album_masonry_title_google_fonts1" onchange="bwg_change_fonts('album_masonry_title_font_style', jQuery(this).attr('id'))" value="1" <?php if ($is_google_fonts == true) echo 'checked="checked"'; ?> />
3095
- <label for="album_masonry_title_google_fonts1" id="album_masonry_title_google_fonts1_lbl"><?php echo __('Google fonts', BWG()->prefix); ?></label>
3096
- <input type="radio" name="album_masonry_title_google_fonts" id="album_masonry_title_google_fonts0" onchange="bwg_change_fonts('album_masonry_title_font_style', '')" value="0" <?php if ($is_google_fonts == false) echo 'checked="checked"'; ?> />
3097
- <label for="album_masonry_title_google_fonts0" id="album_masonry_title_google_fonts0_lbl"><?php echo __('Default', BWG()->prefix); ?></label>
3098
- </div>
3099
- </td>
3100
- </tr>
3101
  <tr>
3102
  <td class="spider_label"><label for="album_masonry_title_font_weight"><?php echo __('Title font weight:', BWG()->prefix); ?> </label></td>
3103
  <td>
@@ -3131,28 +2849,10 @@ class ThemesView_bwg extends AdminView_bwg {
3131
  <input type="text" name="album_masonry_back_font_color" id="album_masonry_back_font_color" value="<?php echo $row->album_masonry_back_font_color; ?>" class="color" />
3132
  </td>
3133
  </tr>
3134
- <tr>
3135
- <td class="spider_label"><label for="album_masonry_back_font_style"><?php echo __('Back Font family:', BWG()->prefix); ?> </label></td>
3136
- <td>
3137
- <select name="album_masonry_back_font_style" id="album_masonry_back_font_style">
3138
- <?php
3139
- $is_google_fonts = (in_array($row->album_masonry_back_font_style, $google_fonts)) ? true : false;
3140
- $album_masonry_back_font_families = ($is_google_fonts == true) ? $google_fonts : $font_families;
3141
- foreach ($album_masonry_back_font_families as $key => $font_family) {
3142
- ?>
3143
- <option value="<?php echo $key; ?>" <?php echo (($row->album_masonry_back_font_style == $key) ? 'selected="selected"' : ''); ?>><?php echo $font_family; ?></option>
3144
- <?php
3145
- }
3146
- ?>
3147
- </select>
3148
- <div>
3149
- <input type="radio" name="album_masonry_back_google_fonts" id="album_masonry_back_google_fonts1" onchange="bwg_change_fonts('album_masonry_back_font_style', jQuery(this).attr('id'))" value="1" <?php if ($is_google_fonts == true) echo 'checked="checked"'; ?> />
3150
- <label for="album_masonry_back_google_fonts1" id="album_masonry_back_google_fonts1_lbl"><?php echo __('Google fonts', BWG()->prefix); ?></label>
3151
- <input type="radio" name="album_masonry_back_google_fonts" id="album_masonry_back_google_fonts0" onchange="bwg_change_fonts('album_masonry_back_font_style', '')" value="0" <?php if ($is_google_fonts == false) echo 'checked="checked"'; ?> />
3152
- <label for="album_masonry_back_google_fonts0" id="album_masonry_back_google_fonts0_lbl"><?php echo __('Default', BWG()->prefix); ?></label>
3153
- </div>
3154
- </td>
3155
- </tr>
3156
  <tr>
3157
  <td class="spider_label"><label for="album_masonry_back_font_weight"><?php echo __('Back Font weight:', BWG()->prefix); ?> </label></td>
3158
  <td>
@@ -3186,28 +2886,10 @@ class ThemesView_bwg extends AdminView_bwg {
3186
  <input type="text" name="album_masonry_gal_title_font_color" id="album_masonry_gal_title_font_color" value="<?php echo $row->album_masonry_gal_title_font_color; ?>" class="color" />
3187
  </td>
3188
  </tr>
3189
- <tr>
3190
- <td class="spider_label"><label for="album_masonry_gal_title_font_style"><?php echo __('Gallery title/description font family:', BWG()->prefix); ?> </label></td>
3191
- <td>
3192
- <select name="album_masonry_gal_title_font_style" id="album_masonry_gal_title_font_style">
3193
- <?php
3194
- $is_google_fonts = (in_array($row->album_masonry_gal_title_font_style, $google_fonts)) ? true : false;
3195
- $album_masonry_gal_font_families = ($is_google_fonts == true) ? $google_fonts : $font_families;
3196
- foreach ($album_masonry_gal_font_families as $key => $font_family) {
3197
- ?>
3198
- <option value="<?php echo $key; ?>" <?php echo (($row->album_masonry_gal_title_font_style == $key) ? 'selected="selected"' : ''); ?>><?php echo $font_family; ?></option>
3199
- <?php
3200
- }
3201
- ?>
3202
- </select>
3203
- <div>
3204
- <input type="radio" name="album_masonry_gal_title_google_fonts" id="album_masonry_gal_title_google_fonts1" onchange="bwg_change_fonts('album_masonry_gal_title_font_style', jQuery(this).attr('id'))" value="1" <?php if ($is_google_fonts == true) echo 'checked="checked"'; ?> />
3205
- <label for="album_masonry_gal_title_google_fonts1" id="album_masonry_gal_title_google_fonts1_lbl"><?php echo __('Google fonts', BWG()->prefix); ?></label>
3206
- <input type="radio" name="album_masonry_gal_title_google_fonts" id="album_masonry_gal_title_google_fonts0" onchange="bwg_change_fonts('album_masonry_gal_title_font_style', '')" value="0" <?php if ($is_google_fonts == false) echo 'checked="checked"'; ?> />
3207
- <label for="album_masonry_gal_title_google_fonts0" id="album_masonry_gal_title_google_fonts0_lbl"><?php echo __('Default', BWG()->prefix); ?></label>
3208
- </div>
3209
- </td>
3210
- </tr>
3211
  <tr>
3212
  <td class="spider_label"><label for="album_masonry_gal_title_font_weight"><?php echo __('Gallery title/description font weight:', BWG()->prefix); ?> </label></td>
3213
  <td>
@@ -3322,29 +3004,11 @@ class ThemesView_bwg extends AdminView_bwg {
3322
  <div class="wd-box-content">
3323
  <table style="clear:both;">
3324
  <tbody>
3325
- <tr>
3326
- <td class="spider_label"><label for="blog_style_img_font_family"><?php echo __('Font family:', BWG()->prefix); ?> </label></td>
3327
- <td>
3328
- <select name="blog_style_img_font_family" id="blog_style_img_font_family">
3329
- <?php
3330
- $is_google_fonts = (in_array($row->blog_style_img_font_family, $google_fonts)) ? true : false;
3331
- $blog_style_img_font_families = ($is_google_fonts == true) ? $google_fonts : $font_families;
3332
- foreach ($blog_style_img_font_families as $key => $font_family) {
3333
- ?>
3334
- <option value="<?php echo $key; ?>" <?php echo (($row->blog_style_img_font_family == $key) ? 'selected="selected"' : ''); ?>><?php echo $font_family; ?></option>
3335
- <?php
3336
- }
3337
- ?>
3338
- </select>
3339
- <div>
3340
- <input type="radio" name="blog_style_img_google_fonts" id="blog_style_img_google_fonts1" onchange="bwg_change_fonts('blog_style_img_font_family', jQuery(this).attr('id'))" value="1" <?php if ($is_google_fonts == true) echo 'checked="checked"'; ?> />
3341
- <label for="blog_style_img_google_fonts1" id="blog_style_img_google_fonts1_lbl"><?php echo __('Google fonts', BWG()->prefix); ?></label>
3342
- <input type="radio" name="blog_style_img_google_fonts" id="blog_style_img_google_fonts0" onchange="bwg_change_fonts('blog_style_img_font_family', '')" value="0" <?php if ($is_google_fonts == false) echo 'checked="checked"'; ?> />
3343
- <label for="blog_style_img_google_fonts0" id="blog_style_img_google_fonts0_lbl"><?php echo __('Default', BWG()->prefix); ?></label>
3344
- </div>
3345
- </td>
3346
- </tr>
3347
- <tr>
3348
  <td class="spider_label"><label for="blog_style_img_font_size"><?php echo __('Font size:', BWG()->prefix); ?> </label></td>
3349
  <td>
3350
  <input type="text" name="blog_style_img_font_size" id="blog_style_img_font_size" value="<?php echo $row->blog_style_img_font_size; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
@@ -3491,28 +3155,10 @@ class ThemesView_bwg extends AdminView_bwg {
3491
  <input type="text" name="blog_style_gal_title_font_color" id="blog_style_gal_title_font_color" value="<?php echo $row->blog_style_gal_title_font_color; ?>" class="color" />
3492
  </td>
3493
  </tr>
3494
- <tr>
3495
- <td class="spider_label"><label for="blog_style_gal_title_font_style"><?php echo __('Gallery title/description font family:', BWG()->prefix); ?> </label></td>
3496
- <td>
3497
- <select name="blog_style_gal_title_font_style" id="blog_style_gal_title_font_style">
3498
- <?php
3499
- $is_google_fonts = (in_array($row->blog_style_gal_title_font_style, $google_fonts)) ? true : false;
3500
- $blog_style_gal_font_families = ($is_google_fonts == true) ? $google_fonts : $font_families;
3501
- foreach ($blog_style_gal_font_families as $key => $font_family) {
3502
- ?>
3503
- <option value="<?php echo $key; ?>" <?php echo (($row->blog_style_gal_title_font_style == $key) ? 'selected="selected"' : ''); ?>><?php echo $font_family; ?></option>
3504
- <?php
3505
- }
3506
- ?>
3507
- </select>
3508
- <div>
3509
- <input type="radio" name="blog_style_gal_title_google_fonts" id="blog_style_gal_title_google_fonts1" onchange="bwg_change_fonts('blog_style_gal_title_font_style', jQuery(this).attr('id'))" value="1" <?php if ($is_google_fonts == true) echo 'checked="checked"'; ?> />
3510
- <label for="blog_style_gal_title_google_fonts1" id="blog_style_gal_title_google_fonts1_lbl"><?php echo __('Google fonts', BWG()->prefix); ?></label>
3511
- <input type="radio" name="blog_style_gal_title_google_fonts" id="blog_style_gal_title_google_fonts0" onchange="bwg_change_fonts('blog_style_gal_title_font_style', '')" value="0" <?php if ($is_google_fonts == false) echo 'checked="checked"'; ?> />
3512
- <label for="blog_style_gal_title_google_fonts0" id="blog_style_gal_title_google_fonts0_lbl"><?php echo __('Default', BWG()->prefix); ?></label>
3513
- </div>
3514
- </td>
3515
- </tr>
3516
  <tr>
3517
  <td class="spider_label"><label for="blog_style_gal_title_font_weight"><?php echo __('Gallery title/description font weight:', BWG()->prefix); ?> </label></td>
3518
  <td>
@@ -4138,29 +3784,11 @@ class ThemesView_bwg extends AdminView_bwg {
4138
  <input type="text" name="lightbox_hit_color" id="lightbox_hit_color" value="<?php echo $row->lightbox_hit_color; ?>" class="color"/>
4139
  </td>
4140
  </tr>
4141
- <tr>
4142
- <td class="spider_label"><label for="lightbox_hit_font_style"><?php echo __('Hit counter font family:', BWG()->prefix); ?> </label></td>
4143
- <td>
4144
- <select name="lightbox_hit_font_style" id="lightbox_hit_font_style">
4145
- <?php
4146
- $is_google_fonts = (in_array($row->lightbox_hit_font_style, $google_fonts)) ? true : false;
4147
- $lightbox_hit_font_families = ($is_google_fonts == true) ? $google_fonts : $font_families;
4148
- foreach ($lightbox_hit_font_families as $key => $font_family) {
4149
- ?>
4150
- <option value="<?php echo $key; ?>" <?php echo (($row->lightbox_hit_font_style == $key) ? 'selected="selected"' : ''); ?>><?php echo $font_family; ?></option>
4151
- <?php
4152
- }
4153
- ?>
4154
- </select>
4155
- <div>
4156
- <input type="radio" name="lightbox_hit_google_fonts" id="lightbox_hit_google_fonts1" onchange="bwg_change_fonts('lightbox_hit_font_style', jQuery(this).attr('id'))" value="1" <?php if ($is_google_fonts == true) echo 'checked="checked"'; ?> />
4157
- <label for="lightbox_hit_google_fonts1" id="lightbox_hit_google_fonts1_lbl"><?php echo __('Google fonts', BWG()->prefix); ?></label>
4158
- <input type="radio" name="lightbox_hit_google_fonts" id="lightbox_hit_google_fonts0" onchange="bwg_change_fonts('lightbox_hit_font_style', '')" value="0" <?php if ($is_google_fonts == false) echo 'checked="checked"'; ?> />
4159
- <label for="lightbox_hit_google_fonts0" id="lightbox_hit_google_fonts0_lbl"><?php echo __('Default', BWG()->prefix); ?></label>
4160
- </div>
4161
- </td>
4162
- </tr>
4163
- <tr>
4164
  <td class="spider_label"><label for="lightbox_hit_font_weight"><?php echo __('Hit counter font weight:', BWG()->prefix); ?> </label></td>
4165
  <td>
4166
  <select name="lightbox_hit_font_weight" id="lightbox_hit_font_weight">
@@ -4280,29 +3908,11 @@ class ThemesView_bwg extends AdminView_bwg {
4280
  <input type="text" name="lightbox_title_color" id="lightbox_title_color" value="<?php echo $row->lightbox_title_color; ?>" class="color"/>
4281
  </td>
4282
  </tr>
4283
- <tr>
4284
- <td class="spider_label"><label for="lightbox_title_font_style"><?php echo __('Title font family:', BWG()->prefix); ?> </label></td>
4285
- <td>
4286
- <select name="lightbox_title_font_style" id="lightbox_title_font_style">
4287
- <?php
4288
- $is_google_fonts = (in_array($row->lightbox_title_font_style, $google_fonts) ) ? true : false;
4289
- $lightbox_title_font_families = ($is_google_fonts == true) ? $google_fonts : $font_families;
4290
- foreach ($lightbox_title_font_families as $key => $font_family) {
4291
- ?>
4292
- <option value="<?php echo $key; ?>" <?php echo (($row->lightbox_title_font_style == $key) ? 'selected="selected"' : ''); ?>><?php echo $font_family; ?></option>
4293
- <?php
4294
- }
4295
- ?>
4296
- </select>
4297
- <div>
4298
- <input type="radio" name="lightbox_title_google_fonts" id="lightbox_title_google_fonts1" onchange="bwg_change_fonts('lightbox_title_font_style', jQuery(this).attr('id'))" value="1" <?php if ($is_google_fonts == true) echo 'checked="checked"'; ?> />
4299
- <label for="lightbox_title_google_fonts1" id="lightbox_title_google_fonts1_lbl"><?php echo __('Google fonts', BWG()->prefix); ?></label>
4300
- <input type="radio" name="lightbox_title_google_fonts" id="lightbox_title_google_fonts0" onchange="bwg_change_fonts('lightbox_title_font_style', '')" value="0" <?php if ($is_google_fonts == false) echo 'checked="checked"'; ?> />
4301
- <label for="lightbox_title_google_fonts0" id="lightbox_title_google_fonts0_lbl"><?php echo __('Default', BWG()->prefix); ?></label>
4302
- </div>
4303
- </td>
4304
- </tr>
4305
- <tr>
4306
  <td class="spider_label"><label for="lightbox_title_font_weight"><?php echo __('Title font weight:', BWG()->prefix); ?> </label></td>
4307
  <td>
4308
  <select name="lightbox_title_font_weight" id="lightbox_title_font_weight">
@@ -4329,28 +3939,10 @@ class ThemesView_bwg extends AdminView_bwg {
4329
  <input type="text" name="lightbox_description_color" id="lightbox_description_color" value="<?php echo $row->lightbox_description_color; ?>" class="color"/>
4330
  </td>
4331
  </tr>
4332
- <tr>
4333
- <td class="spider_label"><label for="lightbox_description_font_style"><?php echo __('Description font family:', BWG()->prefix); ?> </label></td>
4334
- <td>
4335
- <select name="lightbox_description_font_style" id="lightbox_description_font_style">
4336
- <?php
4337
- $is_google_fonts = (in_array($row->lightbox_description_font_style, $google_fonts)) ? true : false;
4338
- $lightbox_description_font_families = ($is_google_fonts == true) ? $google_fonts : $font_families;
4339
- foreach ($lightbox_description_font_families as $key => $font_family) {
4340
- ?>
4341
- <option value="<?php echo $key; ?>" <?php echo (($row->lightbox_description_font_style == $key) ? 'selected="selected"' : ''); ?>><?php echo $font_family; ?></option>
4342
- <?php
4343
- }
4344
- ?>
4345
- </select>
4346
- <div>
4347
- <input type="radio" name="lightbox_description_google_fonts" id="lightbox_description_google_fonts1" onchange="bwg_change_fonts('lightbox_description_font_style', jQuery(this).attr('id'))" value="1" <?php if ($is_google_fonts == true) echo 'checked="checked"'; ?> />
4348
- <label for="lightbox_description_google_fonts1" id="lightbox_description_google_fonts1_lbl"><?php echo __('Google fonts', BWG()->prefix); ?></label>
4349
- <input type="radio" name="lightbox_description_google_fonts" id="lightbox_description_google_fonts0" onchange="bwg_change_fonts('lightbox_description_font_style', '')" value="0" <?php if ($is_google_fonts == false) echo 'checked="checked"'; ?> />
4350
- <label for="lightbox_description_google_fonts0" id="lightbox_description_google_fonts0_lbl"><?php echo __('Default', BWG()->prefix); ?></label>
4351
- </div>
4352
- </td>
4353
- </tr>
4354
  <tr>
4355
  <td class="spider_label"><label for="lightbox_description_font_weight"><?php echo __('Description font weight:', BWG()->prefix); ?> </label></td>
4356
  <td>
@@ -4406,26 +3998,8 @@ class ThemesView_bwg extends AdminView_bwg {
4406
  </td>
4407
  </tr>
4408
  <tr id="lightbox_comment15">
4409
- <td class="spider_label"><label for="lightbox_comment_font_style"><?php echo __('Comments font family:', BWG()->prefix); ?> </label></td>
4410
- <td>
4411
- <select name="lightbox_comment_font_style" id="lightbox_comment_font_style">
4412
- <?php
4413
- $is_google_fonts = (in_array($row->lightbox_comment_font_style, $google_fonts)) ? true : false;
4414
- $lightbox_comment_font_families = ($is_google_fonts == true) ? $google_fonts : $font_families;
4415
- foreach ($lightbox_comment_font_families as $key => $font_family) {
4416
- ?>
4417
- <option value="<?php echo $key; ?>" <?php echo (($row->lightbox_comment_font_style == $key) ? 'selected="selected"' : ''); ?>><?php echo $font_family; ?></option>
4418
- <?php
4419
- }
4420
- ?>
4421
- </select>
4422
- <div>
4423
- <input type="radio" name="lightbox_comment_google_fonts" id="lightbox_comment_google_fonts1" onchange="bwg_change_fonts('lightbox_comment_font_style', jQuery(this).attr('id'))" value="1" <?php if ($is_google_fonts == true) echo 'checked="checked"'; ?> />
4424
- <label for="lightbox_comment_google_fonts1" id="lightbox_comment_google_fonts1_lbl"><?php echo __('Google fonts', BWG()->prefix); ?></label>
4425
- <input type="radio" name="lightbox_comment_google_fonts" id="lightbox_comment_google_fonts0" onchange="bwg_change_fonts('lightbox_comment_font_style', '')" value="0" <?php if ($is_google_fonts == false) echo 'checked="checked"'; ?> />
4426
- <label for="lightbox_comment_google_fonts0" id="lightbox_comment_google_fonts0_lbl"><?php echo __('Default', BWG()->prefix); ?></label>
4427
- </div>
4428
- </td>
4429
  </tr>
4430
  <tr id="lightbox_comment10">
4431
  <td class="spider_label"><label for="lightbox_comment_author_font_size"><?php echo __('Comments author font size:', BWG()->prefix); ?> </label>
@@ -4590,26 +4164,8 @@ class ThemesView_bwg extends AdminView_bwg {
4590
  </td>
4591
  </tr>
4592
  <tr>
4593
- <td class="spider_label"><label for="page_nav_font_style"><?php echo __('Font family:', BWG()->prefix); ?> </label></td>
4594
- <td>
4595
- <select name="page_nav_font_style" id="page_nav_font_style">
4596
- <?php
4597
- $is_google_fonts = (in_array($row->page_nav_font_style, $google_fonts)) ? true : false;
4598
- $page_nav_font_families = ($is_google_fonts == true) ? $google_fonts : $font_families;
4599
- foreach ($page_nav_font_families as $key => $font_family) {
4600
- ?>
4601
- <option value="<?php echo $key; ?>" <?php echo (($row->page_nav_font_style == $key) ? 'selected="selected"' : ''); ?>><?php echo $font_family; ?></option>
4602
- <?php
4603
- }
4604
- ?>
4605
- </select>
4606
- <div>
4607
- <input type="radio" name="page_nav_google_fonts" id="page_nav_google_fonts1" onchange="bwg_change_fonts('page_nav_font_style', jQuery(this).attr('id'))" value="1" <?php if ($is_google_fonts == true) echo 'checked="checked"'; ?> />
4608
- <label for="page_nav_google_fonts1" id="page_nav_google_fonts1_lbl"><?php echo __('Google fonts', BWG()->prefix); ?></label>
4609
- <input type="radio" name="page_nav_google_fonts" id="page_nav_google_fonts0" onchange="bwg_change_fonts('page_nav_font_style', '')" value="0" <?php if ($is_google_fonts == false) echo 'checked="checked"'; ?> />
4610
- <label for="page_nav_google_fonts0" id="page_nav_google_fonts0_lbl"><?php echo __('Default', BWG()->prefix); ?></label>
4611
- </div>
4612
- </td>
4613
  </tr>
4614
  <tr>
4615
  <td class="spider_label"><label for="page_nav_font_weight"><?php echo __('Font weight:', BWG()->prefix); ?> </label></td>
@@ -4974,28 +4530,10 @@ class ThemesView_bwg extends AdminView_bwg {
4974
  </td>
4975
  </tr>
4976
  <tr>
4977
- <tr>
4978
- <td class="spider_label"><label for="carousel_font_family"><?php echo __('Title Font family:', BWG()->prefix); ?> </label></td>
4979
- <td>
4980
- <select name="carousel_font_family" id="carousel_font_family">
4981
- <?php
4982
- $is_google_fonts = (in_array($row->carousel_font_family, $google_fonts)) ? true : false;
4983
- $carousel_font_families = ($is_google_fonts == true) ? $google_fonts : $font_families;
4984
- foreach ($carousel_font_families as $key => $font_family) {
4985
- ?>
4986
- <option value="<?php echo $key; ?>" <?php echo (($row->carousel_font_family == $key) ? 'selected="selected"' : ''); ?>><?php echo $font_family; ?></option>
4987
- <?php
4988
- }
4989
- ?>
4990
- </select>
4991
- <div>
4992
- <input type="radio" name="carousel_google_fonts" id="carousel_google_fonts1" onchange="bwg_change_fonts('carousel_font_family', jQuery(this).attr('id'))" value="1" <?php if ($is_google_fonts == true) echo 'checked="checked"'; ?> />
4993
- <label for="carousel_google_fonts1" id="carousel_google_fonts1_lbl"><?php echo __('Google fonts', BWG()->prefix); ?></label>
4994
- <input type="radio" name="carousel_google_fonts" id="carousel_google_fonts0" onchange="bwg_change_fonts('carousel_font_family', '')" value="0" <?php if ($is_google_fonts == false) echo 'checked="checked"'; ?> />
4995
- <label for="carousel_google_fonts0" id="carousel_google_fonts0_lbl"><?php echo __('Default', BWG()->prefix); ?></label>
4996
- </div>
4997
- </td>
4998
- </tr>
4999
  <td class="spider_label"><label for="carousel_caption_p_font_size"><?php echo __('Title font size:', BWG()->prefix); ?> </label></td>
5000
  <td>
5001
  <input type="text" name="carousel_caption_p_font_size" id="carousel_caption_p_font_size" value="<?php echo $row->carousel_caption_p_font_size; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)" /> px
6
  public function __construct() {
7
  parent::__construct();
8
  wp_enqueue_script(BWG()->prefix . '_jscolor');
9
+ wp_enqueue_script(BWG()->prefix . '_fontselect');
10
  }
11
 
12
  /**
141
  <?php
142
  }
143
 
144
+ /**
145
+ *
146
+ * Generate row for font styles google fonts
147
+ */
148
+ public function font_style_row( $saved_style, $font_style, $label_text, $radio_name) {
149
+ $google_fonts = WDWLibrary::get_google_fonts();
150
+ $font_families = array(
151
+ 'arial' => 'Arial',
152
+ 'lucida grande' => 'Lucida grande',
153
+ 'segoe ui' => 'Segoe ui',
154
+ 'tahoma' => 'Tahoma',
155
+ 'trebuchet ms' => 'Trebuchet ms',
156
+ 'verdana' => 'Verdana',
157
+ 'cursive' =>'Cursive',
158
+ 'fantasy' => 'Fantasy',
159
+ 'monospace' => 'Monospace',
160
+ 'serif' => 'Serif',
161
+ );
162
+ $is_google_fonts = (in_array($saved_style, $google_fonts)) ? true : false;
163
+ ?>
164
+ <td class="spider_label"><label for="<?php $font_style ?>"><?php echo $label_text ?> </label></td>
165
+ <td>
166
+ <input value="<?php echo $is_google_fonts ? $saved_style : 'Ubuntu'; ?>" name="<?php echo $font_style; ?>" id="<?php echo $font_style; ?>" class="google_font" type="text">
167
+ <select name="<?php echo $font_style . '_default'; ?>" id="<?php echo $font_style . '_default'; ?>" class="default-font" style="display:<?php echo $is_google_fonts ? 'none' : 'block'; ?>; font-family:<?php echo $saved_style; ?>" >
168
+ <?php
169
+ foreach ( $font_families as $key => $font_family ) {
170
+ ?>
171
+ <option value="<?php echo $key; ?>" <?php echo (($saved_style == $key) ? 'selected="selected"' : ''); ?> style="font-family:<?php echo $font_family; ?>"><?php echo $font_family; ?></option>
172
+ <?php
173
+ }
174
+ ?>
175
+ </select>
176
+ <div class="radio_google_fonts">
177
+ <input type="radio" name="<?php echo $radio_name; ?>" id="<?php echo $radio_name . '1'; ?>" onchange="bwg_change_fonts('<?php echo $font_style; ?>', jQuery(this).attr('id'))" value="1" <?php if ($is_google_fonts == true) echo 'checked="checked"'; ?> />
178
+ <label for="<?php echo $radio_name . '1'; ?>" id="<?php echo $radio_name . '1_lbl'; ?>"><?php echo __('Google fonts', BWG()->prefix); ?></label>
179
+ <input type="radio" name="<?php echo $radio_name; ?>" id="<?php echo $radio_name . '0'; ?>" onchange="bwg_change_fonts('<?php echo $font_style; ?>', jQuery(this).attr('id') )" value="0" <?php if ($is_google_fonts == false) echo 'checked="checked"'; ?> />
180
+ <label for="<?php echo $radio_name . '0'; ?>" id="<?php echo $radio_name . '0_lbl'; ?>"><?php echo __('Default', BWG()->prefix); ?></label>
181
+ </div>
182
+ </td>
183
+ <?php
184
+ }
185
+
186
  /**
187
  * Edit.
188
  *
432
  <input type="text" name="thumb_title_font_color_hover" id="thumb_title_font_color_hover" value="<?php echo $row->thumb_title_font_color_hover; ?>" class="color" />
433
  </td>
434
  </tr>
435
+ <tr>
436
+ <!--generate font style with google fonts -->
437
+ <?php $this->font_style_row( $row->thumb_title_font_style, 'thumb_title_font_style', __('Title font family:', BWG()->prefix), 'thumb_title_google_fonts' ); ?>
438
+ </tr>
439
+ <tr>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
440
  <td class="spider_label"><label for="thumb_title_font_weight"><?php echo __('Title font weight:', BWG()->prefix); ?> </label></td>
441
  <td>
442
  <select name="thumb_title_font_weight" id="thumb_title_font_weight">
464
  <div class="spider_description"><?php echo __('Use CSS type values.', BWG()->prefix); ?></div>
465
  </td>
466
  </tr>
467
+ <tr>
468
+ <td class="spider_label"><label for="thumb_description_font_size"><?php echo __('Thumb description font size:', BWG()->prefix); ?> </label></td>
469
+ <td>
470
+ <input type="text" name="thumb_description_font_size" id="thumb_description_font_size" value="<?php echo
471
+ $row->thumb_description_font_size; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
472
+ </td>
473
+ </tr>
474
+ <tr>
475
+ <td class="spider_label"><label for="thumb_description_font_color"><?php echo __('Thumb description font color:', BWG()->prefix); ?> </label></td>
476
+ <td>
477
+ <input type="text" name="thumb_description_font_color" id="thumb_description_font_color" value="<?php echo $row->thumb_description_font_color; ?>" class="color" />
478
+ </td>
479
+ </tr>
480
+ <tr>
481
+ <!--generate font style with google fonts -->
482
+ <?php $this->font_style_row( $row->thumb_description_font_style, 'thumb_description_font_style', __('Description font family:', BWG()->prefix), 'thumb_description_google_fonts' ); ?>
483
+ </tr>
484
+ <tr>
485
  <td class="spider_label"><label for="thumb_gal_title_font_size"><?php echo __('Gallery title/description font size:', BWG()->prefix); ?> </label></td>
486
  <td>
487
  <input type="text" name="thumb_gal_title_font_size" id="thumb_gal_title_font_size" value="<?php echo
494
  <input type="text" name="thumb_gal_title_font_color" id="thumb_gal_title_font_color" value="<?php echo $row->thumb_gal_title_font_color; ?>" class="color" />
495
  </td>
496
  </tr>
497
+ <tr>
498
+ <!--generate font style with google fonts -->
499
+ <?php $this->font_style_row( $row->thumb_gal_title_font_style, 'thumb_gal_title_font_style', __('Gallery title/description font family:', BWG()->prefix), 'thumb_gal_title_google_fonts' ); ?>
500
+ </tr>
501
+ <tr>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
502
  <td class="spider_label"><label for="thumb_gal_title_font_weight"><?php echo __('Gallery title/description font weight:', BWG()->prefix); ?> </label></td>
503
  <td>
504
  <select name="thumb_gal_title_font_weight" id="thumb_gal_title_font_weight">
709
  <input type="text" name="masonry_thumb_title_font_color_hover" id="masonry_thumb_title_font_color_hover" value="<?php echo $row->masonry_thumb_title_font_color_hover; ?>" class="color" />
710
  </td>
711
  </tr>
712
+ <tr>
713
+ <!--generate font style with google fonts -->
714
+ <?php $this->font_style_row( $row->masonry_thumb_title_font_style, 'masonry_thumb_title_font_style', __('Title font family:', BWG()->prefix), 'masonry_thumb_title_google_fonts' ); ?>
715
+ </tr>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
716
  <tr>
717
  <td class="spider_label"><label for="masonry_thumb_title_font_weight"><?php echo __('Title font weight:', BWG()->prefix); ?> </label></td>
718
  <td>
746
  <input type="text" name="masonry_description_color" id="masonry_description_color" value="<?php echo $row->masonry_description_color; ?>" class="color" />
747
  </td>
748
  </tr>
749
+ <tr>
750
+ <!--generate font style with google fonts -->
751
+ <?php $this->font_style_row( $row->masonry_description_font_style, 'masonry_description_font_style', __('Description font family:', BWG()->prefix), 'masonry_description_google_fonts' ); ?>
752
+ </tr>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
753
  <tr>
754
  <td class="spider_label"><label for="masonry_thumb_gal_title_font_size"><?php echo __('Gallery title/description font size:', BWG()->prefix); ?> </label></td>
755
  <td>
762
  <input type="text" name="masonry_thumb_gal_title_font_color" id="masonry_thumb_gal_title_font_color" value="<?php echo $row->masonry_thumb_gal_title_font_color; ?>" class="color" />
763
  </td>
764
  </tr>
765
+ <tr>
766
+ <!--generate font style with google fonts -->
767
+ <?php $this->font_style_row( $row->masonry_thumb_gal_title_font_style, 'masonry_thumb_gal_title_font_style', __('Gallery title/description font family:', BWG()->prefix), 'masonry_thumb_gal_title_google_fonts' ); ?>
768
+ </tr>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
769
  <tr>
770
  <td class="spider_label"><label for="masonry_thumb_gal_title_font_weight"><?php echo __('Gallery title/description font weight:', BWG()->prefix); ?> </label></td>
771
  <td>
973
  <input type="text" name="mosaic_thumb_title_font_color" id="mosaic_thumb_title_font_color" value="<?php echo $row->mosaic_thumb_title_font_color; ?>" class="color" />
974
  </td>
975
  </tr>
976
+ <tr>
977
+ <td class="spider_label"><label for="mosaic_thumb_title_font_color_hover"><?php echo __('Title font color (Show on hover):', BWG()->prefix); ?> </label></td>
978
+ <td>
979
+ <input type="text" name="mosaic_thumb_title_font_color_hover" id="mosaic_thumb_title_font_color_hover" value="<?php echo $row->mosaic_thumb_title_font_color_hover; ?>" class="color" />
980
+ </td>
981
+ </tr>
982
+ <tr>
983
+ <!--generate font style with google fonts -->
984
+ <?php $this->font_style_row( $row->mosaic_thumb_title_font_style, 'mosaic_thumb_title_font_style', __('Title font family:', BWG()->prefix), 'mosaic_thumb_title_google_fonts' ); ?>
985
+ </tr>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
986
  <tr>
987
  <td class="spider_label"><label for="mosaic_thumb_title_font_weight"><?php echo __('Title font weight:', BWG()->prefix); ?> </label></td>
988
  <td>
1023
  <input type="text" name="mosaic_thumb_gal_title_font_color" id="mosaic_thumb_gal_title_font_color" value="<?php echo $row->mosaic_thumb_gal_title_font_color; ?>" class="color" />
1024
  </td>
1025
  </tr>
1026
+ <tr>
1027
+ <!--generate font style with google fonts -->
1028
+ <?php $this->font_style_row( $row->mosaic_thumb_gal_title_font_style, 'mosaic_thumb_gal_title_font_style', __('Gallery title/description font family:', BWG()->prefix), 'mosaic_thumb_gal_title_google_fonts' ); ?>
1029
+ </tr>
1030
+ <tr>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1031
  <td class="spider_label"><label for="mosaic_thumb_gal_title_font_weight"><?php echo __('Gallery title/description font weight:', BWG()->prefix); ?> </label></td>
1032
  <td>
1033
  <select name="mosaic_thumb_gal_title_font_weight" id="mosaic_thumb_gal_title_font_weight">
1389
  <input type="text" name="slideshow_title_color" id="slideshow_title_color" value="<?php echo $row->slideshow_title_color; ?>" class="color"/>
1390
  </td>
1391
  </tr>
1392
+ <tr>
1393
+ <!--generate font style with google fonts -->
1394
+ <?php $this->font_style_row( $row->slideshow_title_font, 'slideshow_title_font', __('Title font family:', BWG()->prefix), 'slideshow_title_google_fonts' ); ?>
1395
+ </tr>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1396
  <tr>
1397
  <td class="spider_label"><label for="slideshow_description_background_color"><?php echo __('Description background color:', BWG()->prefix); ?> </label></td>
1398
  <td>
1432
  <input type="text" name="slideshow_description_color" id="slideshow_description_color" value="<?php echo $row->slideshow_description_color; ?>" class="color"/>
1433
  </td>
1434
  </tr>
1435
+ <tr>
1436
+ <!--generate font style with google fonts -->
1437
+ <?php $this->font_style_row( $row->slideshow_description_font, 'slideshow_description_font', __('Description font family:', BWG()->prefix), 'slideshow_description_google_fonts' ); ?>
1438
+ </tr>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1439
  </tbody>
1440
  </table>
1441
  </div>
1639
  <input type="text" name="image_browser_img_font_color" id="image_browser_img_font_color" value="<?php echo $row->image_browser_img_font_color; ?>" class="color" />
1640
  </td>
1641
  </tr>
1642
+ <tr>
1643
+ <!--generate font style with google fonts -->
1644
+ <?php $this->font_style_row( $row->image_browser_img_font_family, 'image_browser_img_font_family', __('Font family:', BWG()->prefix), 'image_browser_img_google_fonts' ); ?>
1645
+ </tr>
1646
+ <tr>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1647
  <td class="spider_label"><label for="image_browser_image_description_margin"><?php echo __('Description margin:', BWG()->prefix); ?> </label></td>
1648
  <td>
1649
  <input type="text" name="image_browser_image_description_margin" id="image_browser_image_description_margin" value="<?php echo $row->image_browser_image_description_margin; ?>" class="spider_char_input" />
1709
  <input type="text" name="image_browser_gal_title_font_color" id="image_browser_gal_title_font_color" value="<?php echo $row->image_browser_gal_title_font_color; ?>" class="color" />
1710
  </td>
1711
  </tr>
1712
+ <tr>
1713
+ <!--generate font style with google fonts -->
1714
+ <?php $this->font_style_row( $row->image_browser_gal_title_font_style, 'image_browser_gal_title_font_style', __('Gallery title/description font family:', BWG()->prefix), 'image_browser_gal_title_google_fonts' ); ?>
1715
+ </tr>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1716
  <tr>
1717
  <td class="spider_label"><label for="image_browser_gal_title_font_weight"><?php echo __('Gallery title/description font weight:', BWG()->prefix); ?> </label></td>
1718
  <td>
1949
  <input type="text" name="album_compact_title_font_color_hover" id="album_compact_title_font_color_hover" value="<?php echo $row->album_compact_title_font_color_hover; ?>" class="color" />
1950
  </td>
1951
  </tr>
1952
+ <tr>
1953
+ <!--generate font style with google fonts -->
1954
+ <?php $this->font_style_row( $row->album_compact_title_font_style, 'album_compact_title_font_style', __('Title font family:', BWG()->prefix), 'album_compact_title_google_fonts' ); ?>
1955
+ </tr>
1956
+ <tr>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1957
  <td class="spider_label"><label for="album_compact_title_font_weight"><?php echo __('Title font weight:', BWG()->prefix); ?> </label></td>
1958
  <td>
1959
  <select name="album_compact_title_font_weight" id="album_compact_title_font_weight">
1993
  <input type="text" name="album_compact_back_font_color" id="album_compact_back_font_color" value="<?php echo $row->album_compact_back_font_color; ?>" class="color" />
1994
  </td>
1995
  </tr>
1996
+ <tr>
1997
+ <!--generate font style with google fonts -->
1998
+ <?php $this->font_style_row( $row->album_compact_back_font_style, 'album_compact_back_font_style', __('Back Font family:', BWG()->prefix), 'album_compact_back_google_fonts' ); ?>
1999
+ </tr>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2000
  <tr>
2001
  <td class="spider_label"><label for="album_compact_back_font_weight"><?php echo __('Back Font weight:', BWG()->prefix); ?> </label></td>
2002
  <td>
2030
  <input type="text" name="album_compact_gal_title_font_color" id="album_compact_gal_title_font_color" value="<?php echo $row->album_compact_gal_title_font_color; ?>" class="color" />
2031
  </td>
2032
  </tr>
2033
+ <tr>
2034
+ <!--generate font style with google fonts -->
2035
+ <?php $this->font_style_row( $row->album_compact_gal_title_font_style, 'album_compact_gal_title_font_style', __('Gallery title/description font family:', BWG()->prefix), 'album_compact_gal_title_google_fonts' ); ?>
2036
+ </tr>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2037
  <tr>
2038
  <td class="spider_label"><label for="album_compact_gal_title_font_weight"><?php echo __('Gallery title/description font weight:', BWG()->prefix); ?> </label></td>
2039
  <td>
2348
  <input type="text" name="album_extended_back_font_color" id="album_extended_back_font_color" value="<?php echo $row->album_extended_back_font_color; ?>" class="color"/>
2349
  </td>
2350
  </tr>
2351
+ <tr>
2352
+ <!--generate font style with google fonts -->
2353
+ <?php $this->font_style_row( $row->album_extended_back_font_style, 'album_extended_back_font_style', __('Back font family:', BWG()->prefix), 'album_extended_back_google_fonts' ); ?>
2354
+ </tr>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2355
  <tr>
2356
  <td class="spider_label"><label for="album_extended_back_font_weight"><?php echo __('Back font weight:', BWG()->prefix); ?> </label></td>
2357
  <td>
2487
  <input type="text" name="album_extended_title_font_color" id="album_extended_title_font_color" value="<?php echo $row->album_extended_title_font_color; ?>" class="color"/>
2488
  </td>
2489
  </tr>
2490
+ <tr>
2491
+ <!--generate font style with google fonts -->
2492
+ <?php $this->font_style_row( $row->album_extended_title_font_style, 'album_extended_title_font_style', __('Title font family:', BWG()->prefix), 'album_extended_title_google_fonts' ); ?>
2493
+ </tr>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2494
  <tr>
2495
  <td class="spider_label"><label for="album_extended_title_font_weight"><?php echo __('Title font weight:', BWG()->prefix); ?> </label></td>
2496
  <td>
2550
  <input type="text" name="album_extended_desc_font_color" id="album_extended_desc_font_color" value="<?php echo $row->album_extended_desc_font_color; ?>" class="color"/>
2551
  </td>
2552
  </tr>
2553
+ <tr>
2554
+ <!--generate font style with google fonts -->
2555
+ <?php $this->font_style_row( $row->album_extended_desc_font_style, 'album_extended_desc_font_style', __('Description font family:', BWG()->prefix), 'album_extended_desc_google_fonts' ); ?>
2556
+ </tr>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2557
  <tr>
2558
  <td class="spider_label"><label for="album_extended_desc_font_weight"><?php echo __('Description font weight:', BWG()->prefix); ?> </label></td>
2559
  <td>
2592
  <input type="text" name="album_extended_gal_title_font_color" id="album_extended_gal_title_font_color" value="<?php echo $row->album_extended_gal_title_font_color; ?>" class="color" />
2593
  </td>
2594
  </tr>
2595
+ <tr>
2596
+ <!--generate font style with google fonts -->
2597
+ <?php $this->font_style_row( $row->album_extended_gal_title_font_style, 'album_extended_gal_title_font_style', __('Gallery title/description font family:', BWG()->prefix), 'album_extended_gal_title_google_fonts' ); ?>
2598
+ </tr>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2599
  <tr>
2600
  <td class="spider_label"><label for="album_extended_gal_title_font_weight"><?php echo __('Gallery title/description font weight:', BWG()->prefix); ?> </label></td>
2601
  <td>
2812
  <input type="text" name="album_masonry_thumb_title_font_color_hover" id="album_masonry_thumb_title_font_color_hover" value="<?php echo $row->album_masonry_thumb_title_font_color_hover; ?>" class="color" />
2813
  </td>
2814
  </tr>
2815
+ <tr>
2816
+ <!--generate font style with google fonts -->
2817
+ <?php $this->font_style_row( $row->album_masonry_title_font_style, 'album_masonry_title_font_style', __('Title font family:', BWG()->prefix), 'album_masonry_title_google_fonts' ); ?>
2818
+ </tr>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2819
  <tr>
2820
  <td class="spider_label"><label for="album_masonry_title_font_weight"><?php echo __('Title font weight:', BWG()->prefix); ?> </label></td>
2821
  <td>
2849
  <input type="text" name="album_masonry_back_font_color" id="album_masonry_back_font_color" value="<?php echo $row->album_masonry_back_font_color; ?>" class="color" />
2850
  </td>
2851
  </tr>
2852
+ <tr>
2853
+ <!--generate font style with google fonts -->
2854
+ <?php $this->font_style_row( $row->album_masonry_back_font_style, 'album_masonry_back_font_style', __('Back Font family:', BWG()->prefix), 'album_masonry_back_google_fonts' ); ?>
2855
+ </tr>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2856
  <tr>
2857
  <td class="spider_label"><label for="album_masonry_back_font_weight"><?php echo __('Back Font weight:', BWG()->prefix); ?> </label></td>
2858
  <td>
2886
  <input type="text" name="album_masonry_gal_title_font_color" id="album_masonry_gal_title_font_color" value="<?php echo $row->album_masonry_gal_title_font_color; ?>" class="color" />
2887
  </td>
2888
  </tr>
2889
+ <tr>
2890
+ <!--generate font style with google fonts -->
2891
+ <?php $this->font_style_row( $row->album_masonry_gal_title_font_style, 'album_masonry_gal_title_font_style', __('Gallery title/description font family:', BWG()->prefix), 'album_masonry_gal_title_google_fonts' ); ?>
2892
+ </tr>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2893
  <tr>
2894
  <td class="spider_label"><label for="album_masonry_gal_title_font_weight"><?php echo __('Gallery title/description font weight:', BWG()->prefix); ?> </label></td>
2895
  <td>
3004
  <div class="wd-box-content">
3005
  <table style="clear:both;">
3006
  <tbody>
3007
+ <tr>
3008
+ <!--generate font style with google fonts -->
3009
+ <?php $this->font_style_row( $row->blog_style_img_font_family, 'blog_style_img_font_family', __('Font family:', BWG()->prefix), 'blog_style_img_google_fonts' ); ?>
3010
+ </tr>
3011
+ <tr>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3012
  <td class="spider_label"><label for="blog_style_img_font_size"><?php echo __('Font size:', BWG()->prefix); ?> </label></td>
3013
  <td>
3014
  <input type="text" name="blog_style_img_font_size" id="blog_style_img_font_size" value="<?php echo $row->blog_style_img_font_size; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
3155
  <input type="text" name="blog_style_gal_title_font_color" id="blog_style_gal_title_font_color" value="<?php echo $row->blog_style_gal_title_font_color; ?>" class="color" />
3156
  </td>
3157
  </tr>
3158
+ <tr>
3159
+ <!--generate font style with google fonts -->
3160
+ <?php $this->font_style_row( $row->blog_style_gal_title_font_style, 'blog_style_gal_title_font_style', __('Gallery title/description font family:', BWG()->prefix), 'blog_style_gal_title_google_fonts' ); ?>
3161
+ </tr>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3162
  <tr>
3163
  <td class="spider_label"><label for="blog_style_gal_title_font_weight"><?php echo __('Gallery title/description font weight:', BWG()->prefix); ?> </label></td>
3164
  <td>
3784
  <input type="text" name="lightbox_hit_color" id="lightbox_hit_color" value="<?php echo $row->lightbox_hit_color; ?>" class="color"/>
3785
  </td>
3786
  </tr>
3787
+ <tr>
3788
+ <!--generate font style with google fonts -->
3789
+ <?php $this->font_style_row( $row->lightbox_hit_font_style, 'lightbox_hit_font_style', __('Hit counter font family:', BWG()->prefix), 'lightbox_hit_google_fonts' ); ?>
3790
+ </tr>
3791
+ <tr>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3792
  <td class="spider_label"><label for="lightbox_hit_font_weight"><?php echo __('Hit counter font weight:', BWG()->prefix); ?> </label></td>
3793
  <td>
3794
  <select name="lightbox_hit_font_weight" id="lightbox_hit_font_weight">
3908
  <input type="text" name="lightbox_title_color" id="lightbox_title_color" value="<?php echo $row->lightbox_title_color; ?>" class="color"/>
3909
  </td>
3910
  </tr>
3911
+ <tr>
3912
+ <!--generate font style with google fonts -->
3913
+ <?php $this->font_style_row( $row->lightbox_title_font_style, 'lightbox_title_font_style', __('Title font family:', BWG()->prefix), 'lightbox_title_google_fonts' ); ?>
3914
+ </tr>
3915
+ <tr>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3916
  <td class="spider_label"><label for="lightbox_title_font_weight"><?php echo __('Title font weight:', BWG()->prefix); ?> </label></td>
3917
  <td>
3918
  <select name="lightbox_title_font_weight" id="lightbox_title_font_weight">
3939
  <input type="text" name="lightbox_description_color" id="lightbox_description_color" value="<?php echo $row->lightbox_description_color; ?>" class="color"/>
3940
  </td>
3941
  </tr>
3942
+ <tr>
3943
+ <!--generate font style with google fonts -->
3944
+ <?php $this->font_style_row( $row->lightbox_description_font_style, 'lightbox_description_font_style', __('Description font family:', BWG()->prefix), 'lightbox_description_google_fonts' ); ?>
3945
+ </tr>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3946
  <tr>
3947
  <td class="spider_label"><label for="lightbox_description_font_weight"><?php echo __('Description font weight:', BWG()->prefix); ?> </label></td>
3948
  <td>
3998
  </td>
3999
  </tr>
4000
  <tr id="lightbox_comment15">
4001
+ <!--generate font style with google fonts -->
4002
+ <?php $this->font_style_row( $row->lightbox_comment_font_style, 'lightbox_comment_font_style', __('Comments font family:', BWG()->prefix), 'lightbox_comment_google_fonts' ); ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4003
  </tr>
4004
  <tr id="lightbox_comment10">
4005
  <td class="spider_label"><label for="lightbox_comment_author_font_size"><?php echo __('Comments author font size:', BWG()->prefix); ?> </label>
4164
  </td>
4165
  </tr>
4166
  <tr>
4167
+ <!--generate font style with google fonts -->
4168
+ <?php $this->font_style_row( $row->page_nav_font_style, 'page_nav_font_style', __('Font family:', BWG()->prefix), 'page_nav_google_fonts' ); ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4169
  </tr>
4170
  <tr>
4171
  <td class="spider_label"><label for="page_nav_font_weight"><?php echo __('Font weight:', BWG()->prefix); ?> </label></td>
4530
  </td>
4531
  </tr>
4532
  <tr>
4533
+ <tr>
4534
+ <!--generate font style with google fonts -->
4535
+ <?php $this->font_style_row( $row->carousel_font_family, 'carousel_font_family', __('Title Font family:', BWG()->prefix), 'carousel_google_fonts' ); ?>
4536
+ </tr>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4537
  <td class="spider_label"><label for="carousel_caption_p_font_size"><?php echo __('Title font size:', BWG()->prefix); ?> </label></td>
4538
  <td>
4539
  <input type="text" name="carousel_caption_p_font_size" id="carousel_caption_p_font_size" value="<?php echo $row->carousel_caption_p_font_size; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)" /> px
admin/views/Widget.php CHANGED
@@ -20,7 +20,7 @@ class WidgetView_bwg {
20
  $show = (!empty($instance['show']) ? $instance['show'] : "random");
21
  $sort_by = 'order';
22
  if ($show == 'random') {
23
- $sort_by = 'RAND()';
24
  }
25
  $order_by = 'ASC';
26
  if ($show == 'last') {
@@ -183,23 +183,23 @@ class WidgetView_bwg {
183
  </select>
184
  </p>
185
  <script>
186
- function bwg_change_type(event, obj) {
187
- var div = jQuery(obj).closest("div");
188
- if (jQuery(jQuery(div).find(".sel_gallery")[0]).prop("checked")) {
189
- jQuery(jQuery(div).find("#p_galleries")).css("display", "");
190
- jQuery(jQuery(div).find("#p_albums")).css("display", "none");
191
- jQuery(obj).nextAll(".bwg_hidden").first().attr("value", "gallery");
192
- jQuery(jQuery(div).find("#view_type_container")).css("display", "block");
193
- jQuery(jQuery(div).find("#view_type_container")).next("p.description").css("display", "block");
194
- }
195
- else {
196
- jQuery(jQuery(div).find("#p_galleries")).css("display", "none");
197
- jQuery(jQuery(div).find("#p_albums")).css("display", "");
198
- jQuery(obj).nextAll(".bwg_hidden").first().attr("value", "album");
199
- jQuery(jQuery(div).find("#view_type_container")).css("display", "none");
200
- jQuery(jQuery(div).find("#view_type_container")).next("p.description").css("display", "none");
201
- }
202
- }
203
  </script>
204
  <?php
205
  }
20
  $show = (!empty($instance['show']) ? $instance['show'] : "random");
21
  $sort_by = 'order';
22
  if ($show == 'random') {
23
+ $sort_by = 'random';
24
  }
25
  $order_by = 'ASC';
26
  if ($show == 'last') {
183
  </select>
184
  </p>
185
  <script>
186
+ function bwg_change_type(event, obj) {
187
+ var div = jQuery(obj).closest("div");
188
+ if (jQuery(jQuery(div).find(".sel_gallery")[0]).prop("checked")) {
189
+ jQuery(jQuery(div).find("#p_galleries")).css("display", "");
190
+ jQuery(jQuery(div).find("#p_albums")).css("display", "none");
191
+ jQuery(obj).nextAll(".bwg_hidden").first().attr("value", "gallery");
192
+ jQuery(jQuery(div).find("#view_type_container")).css("display", "block");
193
+ jQuery(jQuery(div).find("#view_type_container")).next("p.description").css("display", "block");
194
+ }
195
+ else {
196
+ jQuery(jQuery(div).find("#p_galleries")).css("display", "none");
197
+ jQuery(jQuery(div).find("#p_albums")).css("display", "");
198
+ jQuery(obj).nextAll(".bwg_hidden").first().attr("value", "album");
199
+ jQuery(jQuery(div).find("#view_type_container")).css("display", "none");
200
+ jQuery(jQuery(div).find("#view_type_container")).next("p.description").css("display", "none");
201
+ }
202
+ }
203
  </script>
204
  <?php
205
  }
css/bwg_frontend.css CHANGED
@@ -595,7 +595,7 @@ div[id^="bwg_container"] .bwg-border-box * {
595
  }
596
  .bwg_container {
597
  position: relative;
598
- margin: 20px 0;
599
  }
600
 
601
  .bwg_inst_play_btn_cont,
@@ -1472,6 +1472,10 @@ body .bwg_thumbnail.bwg_container .search_line.bwg-search-line-responsive .SumoS
1472
  display: inline-block;
1473
  }
1474
 
 
 
 
 
1475
  .bwg_popup_embed {
1476
  width: 100%;
1477
  height: 100%;
595
  }
596
  .bwg_container {
597
  position: relative;
598
+ margin: 20px auto;
599
  }
600
 
601
  .bwg_inst_play_btn_cont,
1472
  display: inline-block;
1473
  }
1474
 
1475
+ #bwg_popup_image img {
1476
+ display: inline-block;
1477
+ }
1478
+
1479
  .bwg_popup_embed {
1480
  width: 100%;
1481
  height: 100%;
css/bwg_tables.css CHANGED
@@ -2325,4 +2325,27 @@ li.tabs {
2325
 
2326
  .wd-notice.notice {
2327
  margin-top: 25px;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2328
  }
2325
 
2326
  .wd-notice.notice {
2327
  margin-top: 25px;
2328
+ }
2329
+
2330
+ .font-select>a div {
2331
+ background: none;
2332
+ background-image: none;
2333
+ border-left:none;
2334
+ }
2335
+
2336
+ .font-select>a, .font-select-active>a {
2337
+ background: none;
2338
+ background-image: none;
2339
+ }
2340
+
2341
+ .font-select .fs-drop {
2342
+ width: 100%;
2343
+ }
2344
+
2345
+ .font-select .fs-results {
2346
+ width: 98%;
2347
+ }
2348
+
2349
+ .font-select,.font-select .fs-results li {
2350
+ font-size: 14px;
2351
  }
css/styles.min.css CHANGED
@@ -1 +1 @@
1
- div[id^=bwg_container] p{padding:0!important;margin:0!important}div[id^=bwg_container] img{box-shadow:none!important}div[id^=bwg_container] *{margin:0}div[id^=bwg_container] .SumoSelect.open>.CaptionCont,div[id^=bwg_container] .SumoSelect:focus>.CaptionCont,div[id^=bwg_container] .SumoSelect:hover>.CaptionCont,div[id^=bwg_container] .SumoSelect>.CaptionCont{border:none;box-shadow:none}#bwg_tag_wrap{background-color:#fff;width:100%;font-family:inherit;margin:0 -5px 20px 0;z-index:200;position:relative}.bwg_search_loupe_container,.bwg_search_reset_container{font-size:18px;color:#ccc;cursor:pointer;position:relative}#bwg_tag_container p{text-align:center}#bwg_tag_container{border:1px solid #ccc;box-shadow:0 0 3px 1px #ccc;border-radius:4px;width:256px;float:right}#spider_popup_wrap a{border:none;box-shadow:none}div[id^=bwg_container].bwg_container .bwg-a{border:none;box-shadow:none!important;outline:0;font-size:0;cursor:pointer;text-decoration:none}div[id^=bwg_container] div[id^=bwg_container] .bwg_img_clear{max-height:none!important;max-width:none!important;padding:0!important}.tag_cloud_link{font-size:inherit!important}@media print{#spider_popup_left,#spider_popup_right,.bwg_image_info,[class^=bwg_slideshow_title_text_],[id^=bwg_slideshow_play_pause_],[id^=spider_slideshow_left_],[id^=spider_slideshow_right_]{background:0 0}}.bwg_spider_popup_loading,.footer-list-block .bwp_gallery .bwg_spider_popup_loading,.footer-list-block .bwp_gallery_tags .bwg_spider_popup_loading{background-image:url(../images/ajax_loader.png);background-color:rgba(0,0,0,0);background-repeat:no-repeat;background-position:0 0;background-size:30px 30px;border:none!important;display:none;height:30px;left:50%;margin-left:-20px;margin-top:-20px;overflow:hidden;position:fixed;top:50%;width:30px;z-index:10102}.bwg_filmstrip_thumbnail_img{max-width:none!important}.dashicons-arrow-down-alt2:before{content:"\f347";height:100%;display:inline-block}.footer-list-block .bwp_gallery .spider_popup_overlay,.footer-list-block .bwp_gallery_tags .spider_popup_overlay,.spider_popup_overlay{cursor:pointer;display:none;height:100%;left:0;position:fixed;top:0;width:100%;z-index:10100}.bwp_gallery_tags div[id^=bwg_container] li{border:none}.spider_popup_close,.spider_popup_close_fullscreen{-moz-box-sizing:content-box!important;box-sizing:content-box!important;cursor:pointer;display:table;line-height:0;position:absolute;z-index:11100}#spider_popup_left{left:0}#spider_popup_right{right:0}#spider_popup_left:hover,#spider_popup_right:hover{visibility:visible}#spider_popup_left:hover span{left:20px}#spider_popup_right:hover span{left:auto;right:20px}#spider_popup_left,#spider_popup_right{background:transparent url(../images/blank.gif) repeat scroll 0 0;bottom:35%;cursor:pointer;display:inline;height:30%;outline:medium none;position:absolute;width:35%;z-index:10130}#bwg_image_container #spider_popup_left,#bwg_image_container #spider_popup_right{width:25%}#spider_popup_left-ico,#spider_popup_right-ico{-moz-box-sizing:border-box;box-sizing:border-box;cursor:pointer;display:table;line-height:0;margin-top:-15px;position:absolute;top:50%;z-index:10135}.bwg_captcha_refresh{background-image:url(../images/captcha_refresh.png);background-position:center center;background-repeat:no-repeat;background-size:100% 100%;border-width:0;cursor:pointer;display:inline-block;height:20px;width:20px;margin:0;padding:0;vertical-align:middle}.bwg_captcha_input{vertical-align:middle;width:75px!important}.bwg_captcha_img{cursor:pointer;margin:0 5px 0 5px;vertical-align:middle}.bwg_comment_error{color:red;display:block}.bwg_comment_waiting_message{display:none}.bwg_image_hit_container1,.bwg_image_info_container1,.bwg_image_rate_container1{height:100%;margin:0 auto;position:absolute;width:100%}.bwg_image_rate_container1{display:none}.bwg_image_hit_container2,.bwg_image_info_container2,.bwg_image_rate_container2{display:table;height:100%;margin:0 auto;position:absolute;width:100%}.bwg_image_hit_spun,.bwg_image_info_spun,.bwg_image_rate_spun{display:table-cell;height:100%;left:0;top:0;width:100%;overflow:hidden;position:relative}.bwg_image_hit,.bwg_image_info,.bwg_image_rate{display:inline-block;position:relative;text-decoration:none;word-wrap:break-word;z-index:11}.bwg_image_rate{z-index:999!important}@media screen and (max-width:465px){.bwg_ctrl_btn_container{height:auto!important}}.bwg_search_container_1{display:inline-block;width:100%;text-align:right;margin:0 5px 20px 0;background-color:rgba(0,0,0,0)}.bwg_search_container_2{display:inline-block;position:relative;border-radius:4px;box-shadow:0 0 3px 1px #ccc;background-color:#fff;border:1px solid #ccc;max-width:100%}div[id^=bwg_search_container_1_] div[id^=bwg_search_container_2_] .bwg_search_input_container{display:block;margin-right:45px}div[id^=bwg_search_container_1_] div[id^=bwg_search_container_2_] .bwg_search_loupe_container{display:inline-block;margin-right:1px;vertical-align:middle;float:right}div[id^=bwg_search_container_1_] div[id^=bwg_search_container_2_] .bwg_search_reset_container{margin-right:5px;vertical-align:middle;float:right}.bwg_thumbnail div[id^=bwg_search_container_1_] div[id^=bwg_search_container_2_] .bwg_reset,.bwg_thumbnail div[id^=bwg_search_container_1_] div[id^=bwg_search_container_2_] .bwg_search{display:block;font-size:10px;color:#323a45;cursor:pointer;line-height:inherit!important}.bwg_thumbnail div[id^=bwg_search_container_1_] div[id^=bwg_search_container_2_] .bwg_search{font-size:12px}div[id^=bwg_search_container_1_] div[id^=bwg_search_container_2_] .bwg_search_input,div[id^=bwg_search_container_1_] div[id^=bwg_search_container_2_] .bwg_search_input:focus{color:#070707;outline:0;border:none;box-shadow:none;background:0 0;padding:3px 5px;font-family:inherit;width:100%}.bwg_order_cont .SumoSelect{background-color:#fff;border:1px solid #ccc;box-shadow:0 0 3px 1px #ccc;border-radius:4px;height:initial;max-width:100%;padding:0 10px}.SumoSelect>.optWrapper>.options li.opt{border:none;text-align:left}.bwg_order_cont .SumoSelect .CaptionCont{text-align:left}.bwg_order_cont{background-color:rgba(0,0,0,0);display:block;text-align:right;width:100%;margin:0 5px 20px 0}#bwg_tag_container .SumoSelect,.bwg_order_cont .SumoSelect{display:inline-table}#bwg_tag_container .SumoSelect ul.options,.bwg_order_cont .SumoSelect ul.options{margin:0;padding:0!important}#bwg_tag_container .SumoSelect li,.bwg_order_cont .SumoSelect li{list-style:none}#bwg_tag_container .SumoSelect.open .search-txt{padding:0 8px;height:100%}#bwg_tag_container .SumoSelect>.optWrapper>.options li label{margin:0}.bwg_order_label{border:none;box-shadow:none;color:#bbb;font-family:inherit;font-weight:700;outline:0}.bwg_order{background-color:#fff;border:1px solid #ccc;box-shadow:0 0 3px 1px #ccc;border-radius:4px;height:initial;max-width:100%;text-align:left}.wd_error{color:#ccc;font-size:initial}div[id^=bwg_container] .bwg_download_gallery{text-align:right;margin-top:10px}div[id^=bwg_container] .bwg_download_gallery a{color:#4a4a4a;font-size:25px;text-decoration:none}div[id^=bwg_container] .bwg_download_gallery a:hover{color:#7d7d7d}div[id^=bwg_container] .bwg-border-box *{-moz-box-sizing:border-box;box-sizing:border-box}.bwg-flex{display:flex}.bwg-width-100{width:100%;max-width:100%}.bwg-flex-column{flex-direction:column}.bwg-flex-row{flex-direction:row;flex-wrap:wrap}.bwg-container{font-size:0;width:100%;max-width:100%;display:flex;flex-direction:row;flex-wrap:wrap}.bwg-item{display:flex;flex-direction:column;cursor:pointer}.bwg-item0{overflow:hidden;z-index:100}.bwg-item0:hover{background:0 0!important;backface-visibility:hidden;-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;opacity:1;z-index:102;position:relative}.bwg-item1{overflow:hidden;width:100%;position:relative}.bwg-item2{top:0;left:0;bottom:0;right:0;width:100%;height:100%}.bwg-item2{position:absolute}.bwg-ecommerce1,.bwg-title1{opacity:1;text-align:center;width:100%}.bwg-ecommerce1{text-align:right}.bwg-title2{width:100%;word-wrap:break-word}.bwg-item0:hover .bwg-ecommerce1,.bwg-item0:hover .bwg-title1{left:0!important;opacity:1!important}.bwg-play-icon1{display:flex;height:100%;opacity:1;position:absolute;top:0;width:100%;z-index:100;justify-content:center;align-content:center;flex-direction:column;text-align:center}.bwg_loading_div_1{position:absolute;width:100%;height:100%;z-index:115;text-align:center;vertical-align:middle;top:0}.bwg_load_more_ajax_loading{width:100%;z-index:115;text-align:center;vertical-align:middle;position:relative;height:30px}.bwg_loading_div_2{display:table;vertical-align:middle;width:100%;height:100%;background-color:#fff;opacity:.95}.bwg_loading_div_3{display:table-cell;text-align:center;position:relative;vertical-align:middle}.bwg_spider_ajax_loading{border:none!important;display:inline-block;text-align:center;position:relative;vertical-align:middle;background-image:url(../images/ajax_loader.png);float:none;width:30px;height:30px;background-size:30px 30px}.bwg-hidden{visibility:hidden}.bwg_container{position:relative;margin:20px 0}.bwg_inst_play_btn_cont,.bwg_inst_play_btn_cont .bwg_inst_play{display:block}.hidden{display:none}.bwg-loading{width:100%;height:100%;opacity:.95;position:absolute;background-color:#fff;background-image:url(../images/ajax_loader.png);background-position:center;background-repeat:no-repeat;background-size:50px;z-index:100100;top:0;left:0}#bwg_download{display:inline-block}#bwg_download.hidden{display:none}.bwg_thumbnail.bwg_container .search_line{min-height:50px;-webkit-box-shadow:0 5px 7px -5px rgba(0,0,0,.16);-moz-box-shadow:0 5px 7px -5px rgba(0,0,0,.16);box-shadow:0 5px 7px -5px rgba(0,0,0,.16);margin-bottom:10px;display:inline-block;width:100%}.bwg_thumbnail.bwg_container .search_line #bwg_tag_wrap,.bwg_thumbnail.bwg_container .search_line .bwg_order_cont,.bwg_thumbnail.bwg_container .search_line .bwg_search_container_1{float:left;display:table-cell;text-align:left;vertical-align:middle}.bwg_thumbnail.bwg_container .search_line #bwg_tag_wrap #bwg_tag_container,.bwg_thumbnail.bwg_container .search_line .bwg_order_cont select{border:.5px solid rgba(0,0,0,.15);box-shadow:none;border-radius:15px}.bwg_thumbnail.bwg_container .search_line .bwg_order_cont,.bwg_thumbnail.bwg_container .search_line .search_tags_container{width:25%;min-width:120px;max-width:180px;margin-right:20px;margin-bottom:10px;border:.5px solid rgba(0,0,0,.15);box-shadow:none;border-radius:15px;float:left;height:30px;padding:0;cursor:pointer;background:#fff}.bwg_thumbnail.bwg_container .search_line .bwg_order_cont select,.bwg_thumbnail.bwg_container .search_line .placeholder,.bwg_thumbnail.bwg_container .search_line .search-txt,.bwg_thumbnail.bwg_container .search_line .select-all,.bwg_thumbnail.bwg_container .search_line.SumoSelect .opt label{color:#323a45;font-size:12px;text-transform:uppercase;font-weight:400;font-family:Ubuntu;margin:0;border:none}.bwg_thumbnail.bwg_container .search_line .select-all label{margin-bottom:0;line-height:13px}.bwg_thumbnail.bwg_container .search_line .SumoSelect ul.options:not(:empty){padding:15px 0 0 10px!important}.bwg_thumbnail.bwg_container .search_line .SumoSelect{padding:0 10px;width:initial;height:inherit;cursor:pointer;display:block;border:none;box-shadow:none;border-radius:0;max-width:100%;background-color:transparent;line-height:inherit;vertical-align:bottom}.bwg_thumbnail.bwg_container .search_line .bwg_search_input_container{height:30px;text-align:center;font-size:12px;font-family:Ubuntu;border-radius:15px;text-align:left;width:calc(100%);margin:0;overflow:hidden}.bwg_thumbnail div[id^=bwg_search_container_1_] div[id^=bwg_search_container_2_] .bwg_search_input,.bwg_thumbnail div[id^=bwg_search_container_1_] div[id^=bwg_search_container_2_] .bwg_search_input:focus{height:30px;padding:0 10px;text-align:center;font-size:12px;font-family:Ubuntu;border-radius:15px;text-align:left;width:calc(100% - 64px);display:inline-table}.bwg_thumbnail.bwg_container .search_line .CaptionCont span{display:block!important;vertical-align:middle;color:#323a45!important;font-size:12px;text-transform:uppercase;font-family:Ubuntu;cursor:pointer;line-height:29px;max-width:calc(100% - 20px)}.bwg_thumbnail .search_tags{cursor:pointer}.bwg_thumbnail.bwg_container .search_line .SumoSelect .select-all>span,.bwg_thumbnail.bwg_container .search_line .SumoSelect>.optWrapper.multiple>.options li.opt span{margin-left:-35px}.bwg_thumbnail.bwg_container .search_line .SumoSelect>.optWrapper.multiple>.options li.opt{padding-left:25px}.bwg_thumbnail .bwg_search_input::-webkit-input-placeholder{color:#ccc;font-size:12px;text-transform:uppercase;font-family:Ubuntu}.bwg_thumbnail .bwg_search_input::-moz-placeholder{color:#ccc;font-size:12px;text-transform:uppercase;text-align:left;font-family:Ubuntu;line-height:30px}.bwg_thumbnail .bwg_search_input:-ms-input-placeholder{color:#ccc;font-size:12px;text-transform:uppercase;text-align:left;font-family:Ubuntu}.bwg_thumbnail .bwg_search_input:-moz-placeholder{color:#ccc;font-size:12px;text-transform:uppercase;text-align:left;font-family:Ubuntu}.bwg_thumbnail .search-txt::-webkit-input-placeholder{text-align:left;color:#323a45;opacity:.5;font-size:12px!important}.bwg_thumbnail .search-txt::-moz-placeholder{text-align:left;color:#323a45;opacity:.5;font-size:12px!important}.bwg_thumbnail .search-txt::-ms-input-placeholder{text-align:left;color:#323a45;opacity:.5;font-size:12px}.bwg_thumbnail .search-txt:-ms-input-placeholder{text-align:left;color:#323a45;opacity:.5;font-size:12px}.bwg_thumbnail .search-txt:-moz-placeholder{text-align:left;color:#323a45;opacity:.5;font-size:12px}.bwg_thumbnail .bwg_search_input_container .search_placeholder_title{width:calc(100% - 20px);height:29px;text-align:center;display:inline-block;background:#fff;position:absolute;top:.5px;left:10px;white-space:nowrap;border-radius:15px;color:#4e4e4e;text-transform:uppercase;overflow:hidden}.bwg_thumbnail .bwg_search_input_container .search_placeholder_title span{line-height:28px}.bwg_thumbnail.bwg_container .search_line .bwg_search_loupe_container{line-height:29px;display:inline-block;top:0;margin-right:10px;vertical-align:middle;float:none;padding-top:0;font-size:12px;font-family:Ubuntug}.bwg_thumbnail.bwg_container .search_line .bwg_search_loupe_container1{margin-left:0;float:left;top:0;line-height:30px;width:auto;height:30px;margin-left:10px}.bwg_thumbnail.bwg_container .search_line .bwg_search_reset_container{right:0;top:0;line-height:30px;width:11px;height:30px;margin-right:10px}.bwg_thumbnail.bwg_container .search_line .bwg_search_container_1{float:right;width:30%;min-width:120px}.bwg_thumbnail.bwg_container .search_line .bwg_search_container_1 .bwg_search_container_2{width:100%!important;float:right}.bwg_thumbnail.bwg_container .search_line .SumoSelect .select-all{padding:0 0 3px 35px!important;height:13px;line-height:13px;margin-bottom:15px!important}.bwg_thumbnail.bwg_container .search_line .SumoSelect>.optWrapper>.options li.opt{margin-bottom:15px;padding:0;list-style:none;color:#323a45;font-size:12px;text-transform:uppercase;font-family:Ubuntu;line-height:12px}.bwg_thumbnail.bwg_container .search_line .SumoSelect>.optWrapper.multiple>.MultiControls>p.btnCancel,.bwg_thumbnail.bwg_container .search_line .SumoSelect>.optWrapper.multiple>.MultiControls>p.btnOk{font-family:Ubuntu;font-size:12px;line-height:12px}.bwg_thumbnail.bwg_container .search_line .SumoSelect>.optWrapper.multiple>.MultiControls>p:hover{background:0 0}.bwg_thumbnail.bwg_container .search_line .SumoSelect>.optWrapper>.options li.opt label{color:#323a45;font-size:12px;text-transform:uppercase;font-family:Ubuntu;font-weight:400;margin-bottom:0}.bwg_thumbnail.bwg_container .search_line .SumoSelect>.CaptionCont{height:inherit;border:transparent;background:inherit;width:100%;cursor:pointer;max-height:calc(100% - 2px)}.bwg_thumbnail.bwg_container .search_line .SumoSelect>.CaptionCont>label{margin:0;line-height:100%;cursor:pointer;width:20px}.bwg_thumbnail.bwg_container .search_line .SumoSelect>.CaptionCont>label>i{line-height:100%;height:100%}.bwg_thumbnail.bwg_container .search_line .SumoSelect>.CaptionCont>label>i.closed:before,.bwg_thumbnail.bwg_container .search_line .SumoSelect>.CaptionCont>label>i.opened:before{color:#323a45;font-size:10px;line-height:30px}.bwg_thumbnail.bwg_container .search_line .bwg_reset{position:absolute}.bwg_thumbnail.bwg_container .search_line .no-match{font-family:Ubuntu;font-size:12px;color:#323a45;padding:5px 25px!important;text-align:center}.bwg_thumbnail.bwg_container .search_line .search-txt{border:transparent;background:0 0;padding:4px 0!important;height:100%}.bwg_thumbnail.bwg_container .search_line .search-txt:focus{box-shadow:none}.bwg_thumbnail.bwg_container .search_line .bwg_order.SumoUnder{display:none}.bwg_slideshow_image_container{position:absolute}.bwg_slideshow_image_container>div>div{display:table;margin:0 auto}div[id^=bwg_container1_] div[id^=bwg_container2_] div[class^=bwg_slide_container_] img[id^=bwg_slideshow_image_]{display:inline-block}.bwg_thumbnail #bwg_tag_container p{text-align:left}.bwg_thumbnail .bwg_search_container_2{display:inline-block;position:relative;border-radius:4px;background-color:#fff;max-width:100%;box-shadow:none;border:.5px solid rgba(0,0,0,.15);border-radius:15px}.bwg_thumbnail .bwg_order_cont{background-color:rgba(0,0,0,0);display:block;text-align:right;width:100%;margin:0 5px 20px 5px}.bwg_thumbnail div[id^=bwg_search_container_1_] div[id^=bwg_search_container_2_] .bwg_search_input_container{display:block;text-align:center}.bwg_thumbnail .SumoSelect>.optWrapper>.options li.opt:hover{background-color:transparent}.bwg-zoom-effect .bwg-zoom-effect-overlay{position:absolute;top:0;left:0;width:100%;height:100%;overflow:hidden;opacity:0;-webkit-transition:all .45s ease-in-out;transition:all .45s ease-in-out}.bwg-zoom-effect:hover .bwg-zoom-effect-overlay{opacity:1}.bwg-zoom-effect img{-webkit-transition:all .3s;transition:all .3s}.bwg-zoom-effect .bwg-title1{-webkit-transition:all .3s ease-in-out;transition:all .3s ease-in-out}.bwg_container div[id^=bwg_container2_] img{height:initial}.bwg-masonry-vertical{flex-direction:column}.bwg-masonry-horizontal{flex-direction:row}.bwg-masonry-horizontal-parent{overflow-x:scroll;overflow-y:hidden}.bwg-masonry-horizontal-container{width:fit-content}.bwg-item.bwg-empty-item{border:0!important;padding:0!important}.bwg-background{background-color:rgba(0,0,0,0);position:relative;width:100%}.bwg-background .wd_error{color:#323a45;font-weight:700}div[id^=bwg_container] .bwg-carousel{margin:0 auto}.bwg_carousel_preload{background-image:url(../images/ajax_loader.png);background-size:50px!important;background-repeat:no-repeat;background-color:#fff;background-position:center}.bwg_container.bwg_carousel *{-moz-user-select:none;-khtml-user-select:none;-webkit-user-select:none;-ms-user-select:none;user-select:none}.bwg_container.bwg_carousel [id^=bwg_container2_] *{-moz-user-select:none;-khtml-user-select:none;-webkit-user-select:none;-ms-user-select:none;user-select:none}.bwg_container.bwg_carousel [id^=bwg_container2_] [class^=bwg_carousel_watermark_]{position:relative;z-index:15}.bwg_container.bwg_carousel [id^=bwg_container2_] [class^=bwg_carousel_image_container_]{display:inline-block;position:absolute;text-align:center;vertical-align:middle}.bwg_container.bwg_carousel [id^=bwg_container2_] [class^=bwg_carousel_watermark_container_]{display:table-cell;margin:0 auto;position:relative;vertical-align:middle}.bwg_container.bwg_carousel [id^=bwg_container2_] [class^=bwg_carousel_watermark_container_] div{display:table;margin:0 auto}.bwg_container.bwg_carousel [id^=bwg_container2_] [class^=bwg_carousel_watermark_spun_]{display:table-cell;overflow:hidden;position:relative}.bwg_container.bwg_carousel [id^=bwg_container2_] [class^=bwg_carousel_watermark_image_]{padding:0!important;display:inline-block;float:none!important;margin:4px!important;position:relative;z-index:15}.bwg_container.bwg_carousel [id^=bwg_container2_] [class^=bwg_carousel_watermark_text_],.bwg_container.bwg_carousel [id^=bwg_container2_] [class^=bwg_carousel_watermark_text_]:hover{text-decoration:none;margin:4px;display:block;position:relative;z-index:17}.bwg_container.bwg_carousel [id^=bwg_container2_] .bwg_carousel-cont-child{max-width:100%;position:relative;overflow:hidden;height:100%;width:100%}.bwg_container.bwg_carousel [id^=bwg_container2_] .bwg-carousel-image{border:0;position:absolute;display:block;max-width:none;padding:0!important;margin:0!important;float:none!important;vertical-align:middle;height:100%;width:100%;background-position:center center;background-repeat:no-repeat;background-size:cover;vertical-align:middle}.bwg_container.bwg_carousel [id^=bwg_container2_] .bwg-carousel{position:relative;max-width:100%;width:100%}.bwg_container.bwg_carousel [id^=bwg_container2_] [class^=bwg_carousel-feature]{position:absolute;display:block;overflow:hidden;cursor:pointer}.bwg_container.bwg_carousel [id^=bwg_container2_] [class^=bwg_carousel-feature] [class^=bwg_carousel-caption] [class^=bwg_carousel_title_text_]{text-decoration:none;position:absolute;z-index:15;display:inline-block;width:75%;top:0;text-align:center;word-wrap:break-word;word-break:break-word}.bwg_container.bwg_carousel [id^=bwg_container2_] [id^=bwg_carousel-left],.bwg_container.bwg_carousel [id^=bwg_container2_] [id^=bwg_carousel-right]{bottom:38%;cursor:pointer;display:inline;height:30%;outline:medium none;position:absolute;width:0%;z-index:13;visibility:visible}.bwg_container.bwg_carousel [id^=bwg_container2_] [id^=bwg_carousel-right]{right:0;left:auto;z-index:999}.bwg_container.bwg_carousel [id^=bwg_container2_] [id^=bwg_carousel-left]{left:20px;z-index:999}.bwg_container.bwg_carousel [id^=bwg_container2_] [class^=bwg_video_hide]{width:100%;height:100%;position:absolute;z-index:22}.bwg_container.bwg_carousel [id^=bwg_container2_] [id^=spider_carousel_left-ico_] span,.bwg_container.bwg_carousel [id^=bwg_container2_] [id^=spider_carousel_right-ico_] span{display:table-cell;text-align:center;vertical-align:middle;z-index:13}.bwg_container.bwg_carousel [id^=bwg_container2_] [id^=spider_carousel_left-ico_],.bwg_container.bwg_carousel [id^=bwg_container2_] [id^=spider_carousel_right-ico_]{z-index:13;-moz-box-sizing:content-box;box-sizing:content-box;cursor:pointer;display:inline-table;line-height:0;margin-top:-15px;position:absolute;top:55%}.bwg_container.bwg_carousel [id^=bwg_container2_] [id^=spider_carousel_left-ico_]:hover,.bwg_container.bwg_carousel [id^=bwg_container2_] [id^=spider_carousel_right-ico_]:hover{cursor:pointer}.bwg_container.bwg_carousel [id^=bwg_container2_] [id^=bwg_carousel_play_pause_]{bottom:0;cursor:pointer;display:inline-table;outline:medium none;position:absolute;height:inherit;width:30%;left:35%;z-index:13}.bwg_container.bwg_carousel .bwg_carousel_play_pause:hover .bwg_carousel_play_pause-ico{display:inline-block!important}.bwg_container.bwg_carousel [id^=bwg_container2_] [id^=bwg_carousel_play_pause_]:hover span{position:relative;z-index:13}.bwg_container.bwg_carousel [id^=bwg_container2_] [id^=bwg_carousel_play_pause_] span{display:table-cell;text-align:center;vertical-align:middle}.bwg_container.bwg_carousel [id^=bwg_container2_] .bwg_carousel_play_pause-ico{display:none!important;cursor:pointer;position:relative;z-index:13}.bwg_container.bwg_carousel [id^=bwg_container2_] .bwg_carousel_play_pause-ico:hover{display:inline-block;position:relative;z-index:13}.bwg_container.bwg_carousel [id^=bwg_container2_] [class^=bwg_carousel_embed_]{padding:0!important;float:none!important;width:100%;height:100%;vertical-align:middle;position:relative;display:table;background-color:#000;text-align:center}.bwg_container.bwg_carousel [id^=bwg_container2_] [class^=bwg_carousel_embed_video_]{padding:0!important;margin:0!important;float:none!important;vertical-align:middle;position:relative;display:table-cell;background-color:#000;text-align:center}.bwg_thumbnail.bwg_container{padding:0 1px}.bwg_thumbnail.bwg_container .search_line.bwg-search-line-responsive{display:inline-block}body .bwg_thumbnail.bwg_container .search_line.bwg-search-line-responsive .bwg_order_cont,body .bwg_thumbnail.bwg_container .search_line.bwg-search-line-responsive .bwg_search_container_1,body .bwg_thumbnail.bwg_container .search_line.bwg-search-line-responsive .search_tags_container{width:100%;margin:0 0 10px 0;text-align:center;max-width:100%}.search_line .SumoSelect>.optWrapper.multiple.isFloating{padding-bottom:26px}.bwg_container.bwg_blog_style .fluid-width-video-wrapper,.bwg_container.bwg_carousel .fluid-width-video-wrapper,.bwg_container.bwg_image_browser .fluid-width-video-wrapper{width:100%;position:unset!important;padding:0!important}.bwg_inst_play_btn_cont{width:100%;height:100%;position:absolute;z-index:1;cursor:pointer;top:0}.bwg_inst_play{position:absolute;width:50px;height:50px;background-position:center center;background-repeat:no-repeat;background-size:cover;transition:background-image .2s ease-out;-ms-transition:background-image .2s ease-out;-moz-transition:background-image .2s ease-out;-webkit-transition:background-image .2s ease-out;top:0;left:0;right:0;bottom:0;margin:auto}.bwg_inst_play:hover{background-position:center center;background-repeat:no-repeat;background-size:cover}.spider_popup_wrap *{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}.spider_popup_wrap{display:inline-block;left:50%;outline:medium none;position:fixed;text-align:center;top:50%;z-index:100000}.bwg_popup_image{width:auto;vertical-align:middle;display:inline-block}.bwg_popup_embed{width:100%;height:100%;vertical-align:middle;text-align:center;display:table}.bwg_btn_container{bottom:0;left:0;overflow:hidden;position:absolute;right:0;top:0}.bwg_toggle_btn{margin:0;padding:0}.bwg_ctrl_btn_container{position:absolute;width:100%;z-index:10150}.bwg_toggle_container{cursor:pointer;left:50%;line-height:0;position:absolute;text-align:center;z-index:10150}#spider_popup_left-ico span,#spider_popup_right-ico span,.spider_popup_close span{display:table-cell;text-align:center;vertical-align:middle}.bwg_image_wrap{height:inherit;display:table;position:absolute;text-align:center;width:inherit}.bwg_image_wrap *{-moz-user-select:none;-khtml-user-select:none;-webkit-user-select:none;-ms-user-select:none;user-select:none}.bwg_comment_wrap,.bwg_ecommerce_wrap{bottom:0;left:0;overflow:hidden;position:absolute;right:0;top:0;z-index:-1}.bwg_comment_container,.bwg_ecommerce_container{-moz-box-sizing:border-box;height:100%;overflow:hidden;position:absolute;top:0;z-index:10103}#bwg_ecommerce{padding:10px}.bwg_ecommerce_body{background:0 0!important;border:none!important}.pge_tabs{list-style-type:none;margin:0;padding:0;background:0 0!important}.pge_tabs li a,.pge_tabs li a:hover,.pge_tabs li.pge_active a{text-decoration:none;display:block;width:100%;outline:0!important;padding:8px 5px!important;font-weight:700;font-size:13px}.pge_add_to_cart a{padding:5px 10px;text-decoration:none!important;display:block}.pge_add_to_cart{margin:5px 0 15px}.pge_add_to_cart_title{font-size:17px;padding:5px}.pge_add_to_cart div:first-child{float:left}.pge_add_to_cart div:last-child{float:right;margin-top:4px}.pge_add_to_cart:after,.pge_tabs:after{clear:both;content:"";display:table}#downloads table tr td,#downloads table tr th{padding:6px 10px!important;text-transform:none!important}.bwg_comments input[type=submit],.bwg_ecommerce_panel input[type=button]{cursor:pointer;font-size:15px;width:100%;margin-bottom:5px}.bwg_comments,.bwg_ecommerce_panel{bottom:0;height:100%;left:0;overflow-x:hidden;overflow-y:auto;position:absolute;top:0;width:100%;z-index:10101}.bwg_comments{height:100%}.bwg_comment_body_p,.bwg_comments p{margin:5px!important;text-align:left;word-wrap:break-word;word-break:break-all}.bwg_ecommerce_panel p{padding:5px!important;text-align:left;word-wrap:break-word;word-break:break-all;margin:0!important}.bwg_comments .bwg-submit-disabled{opacity:.5}.bwg_comments textarea{height:120px;resize:vertical}.bwg_comment_delete_btn{color:#7a7a7a;cursor:pointer;float:right;font-size:14px;margin:2px}.bwg_comments_close,.bwg_ecommerce_close{cursor:pointer;line-height:0;position:relative;font-size:13px;margin:5px;z-index:10150}.bwg_ecommerce_panel a:hover{text-decoration:underline}.bwg_comment_textarea::-webkit-scrollbar{width:4px}.bwg_comment_textarea::-webkit-scrollbar-thumb{background-color:rgba(255,255,255,.55);border-radius:2px}.bwg_comment_textarea::-webkit-scrollbar-thumb:hover{background-color:#d9d9d9}.bwg_ctrl_btn_container a,.bwg_ctrl_btn_container a:hover{text-decoration:none}.bwg_facebook:hover{color:#3b5998}.bwg_twitter:hover{color:#4099fb}.bwg_pinterest:hover{color:#cb2027}.bwg_tumblr:hover{color:#2f5070}.bwg_image_container{display:table;position:absolute;text-align:center;vertical-align:middle;width:100%}.bwg_filmstrip_container{position:absolute;z-index:10150}.bwg_filmstrip{overflow:hidden;position:absolute;z-index:10106}.bwg_filmstrip_thumbnails{margin:0 auto;overflow:hidden;position:relative}.bwg_filmstrip_thumbnail{position:relative;background:0 0;float:left;cursor:pointer;overflow:hidden}.bwg_filmstrip_thumbnail .bwg_filmstrip_thumbnail_img_wrap{overflow:hidden}.bwg_thumb_active{opacity:1}.bwg_filmstrip_thumbnail_img{display:block;opacity:1}.bwg_filmstrip_left{cursor:pointer;vertical-align:middle;z-index:10106;line-height:0}.bwg_filmstrip_right{cursor:pointer;vertical-align:middle;z-index:10106;line-height:0}.bwg_none_selectable{-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.bwg_watermark_container{display:table-cell;margin:0 auto;position:relative;vertical-align:middle}.bwg_watermark_container>div{display:table;margin:0 auto}.bwg_watermark_spun{display:table-cell;overflow:hidden;position:relative}.bwg_watermark_image{margin:4px;position:relative;z-index:10141}.bwg_watermark_text,.bwg_watermark_text:hover{text-decoration:none;margin:4px;position:relative;z-index:10141}.bwg_slide_container{display:table-cell;position:absolute;vertical-align:middle;width:100%;height:100%}.bwg_slide_bg{margin:0 auto;width:inherit;height:inherit}.bwg_slider{height:inherit;width:inherit}.bwg_popup_image_spun{height:inherit;display:table-cell;opacity:1;position:absolute;vertical-align:middle;width:inherit;z-index:2}.bwg_popup_image_second_spun{width:inherit;height:inherit;display:table-cell;opacity:0;position:absolute;vertical-align:middle;z-index:1}.bwg_grid{display:none;height:100%;overflow:hidden;position:absolute;width:100%}.bwg_gridlet{opacity:1;position:absolute}.bwg_image_info::-webkit-scrollbar{width:4px}.bwg_image_info::-webkit-scrollbar-thumb{background-color:rgba(255,255,255,.55);border-radius:2px}.bwg_image_info::-webkit-scrollbar-thumb:hover{background-color:#d9d9d9}#bwg_rate_form .bwg_hint{margin:0 5px;display:none}.bwg_star{display:inline-block;width:unset!important}.bwg_image_count_container{left:0;line-height:1;position:absolute;vertical-align:middle}#bwg_comment_form label{display:block;font-weight:700;margin-top:17px;text-transform:uppercase}#bwg_comment_form .bwg-privacy-policy-box label{text-transform:unset;word-break:break-word}.bwg_popup_image_spun .bwg_popup_image_spun1{width:inherit;height:inherit}.bwg_popup_image_spun1 .bwg_popup_image_spun2{vertical-align:middle;text-align:center;height:100%}#embed_conteiner{table-layout:fixed;height:100%}#opacity_div{background-color:rgba(255,255,255,.2);position:absolute;z-index:10150}#loading_div{text-align:center;position:relative;vertical-align:middle;z-index:10170;float:none;width:30px;height:30px;background-size:30px 30px;background-repeat:no-repeat;background-position:50% 50%}#ecommerce_ajax_loading{position:absolute}#ecommerce_opacity_div{display:none;background-color:rgba(255,255,255,.2);position:absolute;z-index:10150}#ecommerce_loading_div{display:none;text-align:center;position:relative;vertical-align:middle;z-index:10170;float:none;width:30px;height:30px;background-size:30px 30px;background-repeat:no-repeat;background-position:50% 50%}.bwg_ecommerce_panel.bwg_popup_sidebar_panel.bwg_popup_sidebar{text-align:left}#ajax_loading{position:absolute}@media (max-width:480px){.bwg_image_count_container{display:none}.bwg_image_title,.bwg_image_title *{font-size:12px}.bwg_image_description,.bwg_image_description *{font-size:10px}}div[id^=bwg_container1_] div[id^=bwg_container2_] div[class^=bwg_slideshow_image_wrap_] *{box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box}div[id^=bwg_container1_] div[id^=bwg_container2_] div[class^=bwg_slideshow_image_wrap_]{border-collapse:collapse;display:table;position:relative;text-align:center;margin:auto}div[id^=bwg_container1_] div[id^=bwg_container2_] img[class^=bwg_slideshow_image_]{display:inline-block;padding:0!important;margin:0!important;float:none!important;vertical-align:middle}div[id^=bwg_container1_] div[id^=bwg_container2_] span[class^=bwg_slideshow_embed_]{padding:0!important;margin:0!important;float:none!important;vertical-align:middle;display:inline-block;text-align:center}div[id^=bwg_container1_] div[id^=bwg_container2_] img[class^=bwg_slideshow_watermark_]{position:relative;z-index:15}div[id^=bwg_container1_] div[id^=bwg_container2_] span.bwg_slideshow_play_pause{bottom:0;cursor:pointer;display:table;height:inherit;outline:medium none;position:absolute;width:30%;left:35%;z-index:13}div[id^=bwg_container1_] div[id^=bwg_container2_] span.bwg_slideshow_play_pause:hover span[id^=bwg_slideshow_play_pause-ico_]{display:inline-block!important}div[id^=bwg_container1_] div[id^=bwg_container2_] span.bwg_slideshow_play_pause:hover span{position:relative;z-index:13}div[id^=bwg_container1_] div[id^=bwg_container2_] span.bwg_slideshow_play_pause span{display:table-cell;text-align:center;vertical-align:middle;z-index:13}div[id^=bwg_container1_] div[id^=bwg_container2_] span[id^=bwg_slideshow_play_pause-ico_]{display:none!important;cursor:pointer;position:relative;z-index:13}div[id^=bwg_container1_] div[id^=bwg_container2_] span[id^=bwg_slideshow_play_pause-ico_]:hover{display:inline-block;position:relative;z-index:13}div[id^=bwg_container1_] div[id^=bwg_container2_] a[id^=spider_slideshow_left_],div[id^=bwg_container1_] div[id^=bwg_container2_] a[id^=spider_slideshow_right_]{bottom:35%;cursor:pointer;display:inline;height:30%;outline:medium none;position:absolute;width:35%;z-index:13}div[id^=bwg_container1_] div[id^=bwg_container2_] a[id^=spider_slideshow_left_]{left:0}div[id^=bwg_container1_] div[id^=bwg_container2_] a[id^=spider_slideshow_right_]{right:0}div[id^=bwg_container1_] div[id^=bwg_container2_] a[id^=spider_slideshow_left_]:hover,div[id^=bwg_container1_] div[id^=bwg_container2_] a[id^=spider_slideshow_right_]:hover{visibility:visible}div[id^=bwg_container1_] div[id^=bwg_container2_] a[id^=spider_slideshow_left_]:hover,div[id^=bwg_container1_] div[id^=bwg_container2_] a[id^=spider_slideshow_right_]:hover{visibility:visible}div[id^=bwg_container1_] div[id^=bwg_container2_] a[id^=spider_slideshow_right_]:hover span{left:auto!important;right:20px!important}div[id^=bwg_container1_] div[id^=bwg_container2_] a[id^=spider_slideshow_left_]:hover span{left:20px!important}div[id^=bwg_container1_] div[id^=bwg_container2_] span[id^=spider_slideshow_left-ico_] span,div[id^=bwg_container1_] div[id^=bwg_container2_] span[id^=spider_slideshow_right-ico_] span{display:table-cell;text-align:center;vertical-align:middle;z-index:13}div[id^=bwg_container1_] div[id^=bwg_container2_] span[id^=spider_slideshow_left-ico_],div[id^=bwg_container1_] div[id^=bwg_container2_] span[id^=spider_slideshow_right-ico_]{z-index:13;-moz-box-sizing:content-box;box-sizing:content-box;cursor:pointer;display:table;line-height:0;margin-top:-15px;position:absolute;top:50%}div[id^=bwg_container1_] div[id^=bwg_container2_] span[id^=spider_slideshow_left-ico_]:hover,div[id^=bwg_container1_] div[id^=bwg_container2_] span[id^=spider_slideshow_right-ico_]:hover{cursor:pointer}div[id^=bwg_container1_] div[id^=bwg_container2_] div[class^=bwg_slideshow_image_container_]{display:table;position:absolute;text-align:center;vertical-align:middle}div[id^=bwg_container1_] div[id^=bwg_container2_] div[class^=bwg_slideshow_filmstrip_container_]{position:absolute}div[id^=bwg_container1_] div[id^=bwg_container2_] .bwg_slideshow_filmstrip{overflow:hidden;position:absolute}div[id^=bwg_container1_] div[id^=bwg_container2_] div[class^=bwg_slideshow_filmstrip_thumbnails_]{margin:0 auto;overflow:hidden;position:relative}div[id^=bwg_container1_] div[id^=bwg_container2_] div[class^=bwg_slideshow_filmstrip_thumbnail_]{position:relative;background:0 0;cursor:pointer;float:left;overflow:hidden}div[id^=bwg_container1_] div[id^=bwg_container2_] div[class^=bwg_slideshow_thumb_active_]{opacity:1}div[id^=bwg_container1_] div[id^=bwg_container2_] img[class^=bwg_slideshow_filmstrip_thumbnail_img_]{display:block;opacity:1;padding:0!important}div[id^=bwg_container1_] div[id^=bwg_container2_] div[class^=bwg_slideshow_filmstrip_left_]{cursor:pointer;vertical-align:middle}div[id^=bwg_container1_] div[id^=bwg_container2_] div[class^=bwg_slideshow_filmstrip_right_]{cursor:pointer;vertical-align:middle}div[id^=bwg_container1_] div[id^=bwg_container2_] a[class^=bwg_none_selectable_]{-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}div[id^=bwg_container1_] div[id^=bwg_container2_] div[class^=bwg_slideshow_watermark_container_]{display:table-cell;margin:0 auto;position:relative;vertical-align:middle}div[id^=bwg_container1_] div[id^=bwg_container2_] span[class^=bwg_slideshow_watermark_spun_]{display:table-cell;overflow:hidden;position:relative}div[id^=bwg_container1_] div[id^=bwg_container2_] span[class^=bwg_slideshow_title_spun_]{display:table-cell;overflow:hidden;position:relative}div[id^=bwg_container1_] div[id^=bwg_container2_] span[class^=bwg_slideshow_description_spun_]{display:table-cell;overflow:hidden;position:relative}div[id^=bwg_container1_] div[id^=bwg_container2_] img[class^=bwg_slideshow_watermark_image_]{padding:0!important;float:none!important;margin:4px!important;position:relative;z-index:15}div[id^=bwg_container1_] div[id^=bwg_container2_] a[class^=bwg_slideshow_watermark_text_],div[id^=bwg_container1_] div[id^=bwg_container2_] a[class^=bwg_slideshow_watermark_text_]:hover{text-decoration:none;margin:4px;position:relative;z-index:15}div[id^=bwg_container1_] div[id^=bwg_container2_] div[class^=bwg_slideshow_title_text_]{text-decoration:none;position:relative;z-index:11;display:inline-block;word-wrap:break-word;word-break:break-word}div[id^=bwg_container1_] div[id^=bwg_container2_] div[class^=bwg_slideshow_description_text_]{text-decoration:none;position:relative;z-index:15;margin:5px;display:inline-block;word-wrap:break-word;word-break:break-word}div[id^=bwg_container1_] div[id^=bwg_container2_] div[class^=bwg_slide_container_]{display:table-cell;margin:0 auto;position:absolute;vertical-align:middle;width:100%;height:100%}div[id^=bwg_container1_] div[id^=bwg_container2_] div[class^=bwg_slide_bg_]{margin:0 auto;width:inherit;height:inherit}div[id^=bwg_container1_] div[id^=bwg_container2_] div[class^=bwg_slider_]{height:inherit;width:inherit}div[id^=bwg_container1_] div[id^=bwg_container2_] span[class^=bwg_slideshow_image_spun_]{width:inherit;height:inherit;display:table-cell;opacity:1;position:absolute;vertical-align:middle;z-index:2}div[id^=bwg_container1_] div[id^=bwg_container2_] span[class^=bwg_slideshow_image_second_spun_]{width:inherit;height:inherit;display:table-cell;opacity:0;position:absolute;vertical-align:middle;z-index:1}div[id^=bwg_container1_] div[id^=bwg_container2_] span[class^=bwg_grid_]{display:none;height:100%;overflow:hidden;position:absolute;width:100%}div[id^=bwg_container1_] div[id^=bwg_container2_] span[class^=bwg_gridlet_]{opacity:1;position:absolute}div[id^=bwg_container1_] div[id^=bwg_container2_] span[class^=bwg_slideshow_dots_]{display:inline-block;position:relative;cursor:pointer;overflow:hidden;z-index:17}div[id^=bwg_container1_] div[id^=bwg_container2_] div[class^=bwg_slideshow_dots_container_]{display:block;overflow:hidden;position:absolute;z-index:17}div[id^=bwg_container1_] div[id^=bwg_container2_] div[class^=bwg_slideshow_dots_thumbnails_]{left:0;font-size:0;margin:0 auto;overflow:hidden;position:relative}div[id^=bwg_container1_] div[id^=bwg_container2_] span[class^=bwg_slideshow_dots_active_]{opacity:1}div[id^=bwg_container1_] div[id^=bwg_container2_] span[class^=bwg_slideshow_image_spun1_]{display:table;width:inherit;height:inherit}div[id^=bwg_container1_] div[id^=bwg_container2_] span[class^=bwg_slideshow_image_spun2_]{display:table-cell;vertical-align:middle;text-align:center}div[id^=bwg_container1_] div[id^=bwg_container2_] span[class^=bwg_mosaic_play_icon_spun_]{display:flex;height:100%;opacity:1;position:absolute;top:0;width:100%;z-index:100;justify-content:center;align-content:center;flex-direction:column;text-align:center;left:0}.lazy_loader{background-image:url(../images/ajax_loader.png);background-size:30px 30px;background-repeat:no-repeat;background-position:50% 50%}#bwg_thumbnails_masonry_0{overflow:hidden}
1
+ div[id^=bwg_container] p{padding:0!important;margin:0!important}div[id^=bwg_container] img{box-shadow:none!important}div[id^=bwg_container] *{margin:0}div[id^=bwg_container] .SumoSelect.open>.CaptionCont,div[id^=bwg_container] .SumoSelect:focus>.CaptionCont,div[id^=bwg_container] .SumoSelect:hover>.CaptionCont,div[id^=bwg_container] .SumoSelect>.CaptionCont{border:none;box-shadow:none}#bwg_tag_wrap{background-color:#fff;width:100%;font-family:inherit;margin:0 -5px 20px 0;z-index:200;position:relative}.bwg_search_loupe_container,.bwg_search_reset_container{font-size:18px;color:#ccc;cursor:pointer;position:relative}#bwg_tag_container p{text-align:center}#bwg_tag_container{border:1px solid #ccc;box-shadow:0 0 3px 1px #ccc;border-radius:4px;width:256px;float:right}#spider_popup_wrap a{border:none;box-shadow:none}div[id^=bwg_container].bwg_container .bwg-a{border:none;box-shadow:none!important;outline:0;font-size:0;cursor:pointer;text-decoration:none}div[id^=bwg_container] div[id^=bwg_container] .bwg_img_clear{max-height:none!important;max-width:none!important;padding:0!important}.tag_cloud_link{font-size:inherit!important}@media print{#spider_popup_left,#spider_popup_right,.bwg_image_info,[class^=bwg_slideshow_title_text_],[id^=bwg_slideshow_play_pause_],[id^=spider_slideshow_left_],[id^=spider_slideshow_right_]{background:0 0}}.bwg_spider_popup_loading,.footer-list-block .bwp_gallery .bwg_spider_popup_loading,.footer-list-block .bwp_gallery_tags .bwg_spider_popup_loading{background-image:url(../images/ajax_loader.png);background-color:rgba(0,0,0,0);background-repeat:no-repeat;background-position:0 0;background-size:30px 30px;border:none!important;display:none;height:30px;left:50%;margin-left:-20px;margin-top:-20px;overflow:hidden;position:fixed;top:50%;width:30px;z-index:10102}.bwg_filmstrip_thumbnail_img{max-width:none!important}.dashicons-arrow-down-alt2:before{content:"\f347";height:100%;display:inline-block}.footer-list-block .bwp_gallery .spider_popup_overlay,.footer-list-block .bwp_gallery_tags .spider_popup_overlay,.spider_popup_overlay{cursor:pointer;display:none;height:100%;left:0;position:fixed;top:0;width:100%;z-index:10100}.bwp_gallery_tags div[id^=bwg_container] li{border:none}.spider_popup_close,.spider_popup_close_fullscreen{-moz-box-sizing:content-box!important;box-sizing:content-box!important;cursor:pointer;display:table;line-height:0;position:absolute;z-index:11100}#spider_popup_left{left:0}#spider_popup_right{right:0}#spider_popup_left:hover,#spider_popup_right:hover{visibility:visible}#spider_popup_left:hover span{left:20px}#spider_popup_right:hover span{left:auto;right:20px}#spider_popup_left,#spider_popup_right{background:transparent url(../images/blank.gif) repeat scroll 0 0;bottom:35%;cursor:pointer;display:inline;height:30%;outline:medium none;position:absolute;width:35%;z-index:10130}#bwg_image_container #spider_popup_left,#bwg_image_container #spider_popup_right{width:25%}#spider_popup_left-ico,#spider_popup_right-ico{-moz-box-sizing:border-box;box-sizing:border-box;cursor:pointer;display:table;line-height:0;margin-top:-15px;position:absolute;top:50%;z-index:10135}.bwg_captcha_refresh{background-image:url(../images/captcha_refresh.png);background-position:center center;background-repeat:no-repeat;background-size:100% 100%;border-width:0;cursor:pointer;display:inline-block;height:20px;width:20px;margin:0;padding:0;vertical-align:middle}.bwg_captcha_input{vertical-align:middle;width:75px!important}.bwg_captcha_img{cursor:pointer;margin:0 5px 0 5px;vertical-align:middle}.bwg_comment_error{color:red;display:block}.bwg_comment_waiting_message{display:none}.bwg_image_hit_container1,.bwg_image_info_container1,.bwg_image_rate_container1{height:100%;margin:0 auto;position:absolute;width:100%}.bwg_image_rate_container1{display:none}.bwg_image_hit_container2,.bwg_image_info_container2,.bwg_image_rate_container2{display:table;height:100%;margin:0 auto;position:absolute;width:100%}.bwg_image_hit_spun,.bwg_image_info_spun,.bwg_image_rate_spun{display:table-cell;height:100%;left:0;top:0;width:100%;overflow:hidden;position:relative}.bwg_image_hit,.bwg_image_info,.bwg_image_rate{display:inline-block;position:relative;text-decoration:none;word-wrap:break-word;z-index:11}.bwg_image_rate{z-index:999!important}@media screen and (max-width:465px){.bwg_ctrl_btn_container{height:auto!important}}.bwg_search_container_1{display:inline-block;width:100%;text-align:right;margin:0 5px 20px 0;background-color:rgba(0,0,0,0)}.bwg_search_container_2{display:inline-block;position:relative;border-radius:4px;box-shadow:0 0 3px 1px #ccc;background-color:#fff;border:1px solid #ccc;max-width:100%}div[id^=bwg_search_container_1_] div[id^=bwg_search_container_2_] .bwg_search_input_container{display:block;margin-right:45px}div[id^=bwg_search_container_1_] div[id^=bwg_search_container_2_] .bwg_search_loupe_container{display:inline-block;margin-right:1px;vertical-align:middle;float:right}div[id^=bwg_search_container_1_] div[id^=bwg_search_container_2_] .bwg_search_reset_container{margin-right:5px;vertical-align:middle;float:right}.bwg_thumbnail div[id^=bwg_search_container_1_] div[id^=bwg_search_container_2_] .bwg_reset,.bwg_thumbnail div[id^=bwg_search_container_1_] div[id^=bwg_search_container_2_] .bwg_search{display:block;font-size:10px;color:#323a45;cursor:pointer;line-height:inherit!important}.bwg_thumbnail div[id^=bwg_search_container_1_] div[id^=bwg_search_container_2_] .bwg_search{font-size:12px}div[id^=bwg_search_container_1_] div[id^=bwg_search_container_2_] .bwg_search_input,div[id^=bwg_search_container_1_] div[id^=bwg_search_container_2_] .bwg_search_input:focus{color:#070707;outline:0;border:none;box-shadow:none;background:0 0;padding:3px 5px;font-family:inherit;width:100%}.bwg_order_cont .SumoSelect{background-color:#fff;border:1px solid #ccc;box-shadow:0 0 3px 1px #ccc;border-radius:4px;height:initial;max-width:100%;padding:0 10px}.SumoSelect>.optWrapper>.options li.opt{border:none;text-align:left}.bwg_order_cont .SumoSelect .CaptionCont{text-align:left}.bwg_order_cont{background-color:rgba(0,0,0,0);display:block;text-align:right;width:100%;margin:0 5px 20px 0}#bwg_tag_container .SumoSelect,.bwg_order_cont .SumoSelect{display:inline-table}#bwg_tag_container .SumoSelect ul.options,.bwg_order_cont .SumoSelect ul.options{margin:0;padding:0!important}#bwg_tag_container .SumoSelect li,.bwg_order_cont .SumoSelect li{list-style:none}#bwg_tag_container .SumoSelect.open .search-txt{padding:0 8px;height:100%}#bwg_tag_container .SumoSelect>.optWrapper>.options li label{margin:0}.bwg_order_label{border:none;box-shadow:none;color:#bbb;font-family:inherit;font-weight:700;outline:0}.bwg_order{background-color:#fff;border:1px solid #ccc;box-shadow:0 0 3px 1px #ccc;border-radius:4px;height:initial;max-width:100%;text-align:left}.wd_error{color:#ccc;font-size:initial}div[id^=bwg_container] .bwg_download_gallery{text-align:right;margin-top:10px}div[id^=bwg_container] .bwg_download_gallery a{color:#4a4a4a;font-size:25px;text-decoration:none}div[id^=bwg_container] .bwg_download_gallery a:hover{color:#7d7d7d}div[id^=bwg_container] .bwg-border-box *{-moz-box-sizing:border-box;box-sizing:border-box}.bwg-flex{display:flex}.bwg-width-100{width:100%;max-width:100%}.bwg-flex-column{flex-direction:column}.bwg-flex-row{flex-direction:row;flex-wrap:wrap}.bwg-container{font-size:0;width:100%;max-width:100%;display:flex;flex-direction:row;flex-wrap:wrap}.bwg-item{display:flex;flex-direction:column;cursor:pointer}.bwg-item0{overflow:hidden;z-index:100}.bwg-item0:hover{background:0 0!important;backface-visibility:hidden;-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;opacity:1;z-index:102;position:relative}.bwg-item1{overflow:hidden;width:100%;position:relative}.bwg-item2{top:0;left:0;bottom:0;right:0;width:100%;height:100%}.bwg-item2{position:absolute}.bwg-ecommerce1,.bwg-title1{opacity:1;text-align:center;width:100%}.bwg-ecommerce1{text-align:right}.bwg-title2{width:100%;word-wrap:break-word}.bwg-item0:hover .bwg-ecommerce1,.bwg-item0:hover .bwg-title1{left:0!important;opacity:1!important}.bwg-play-icon1{display:flex;height:100%;opacity:1;position:absolute;top:0;width:100%;z-index:100;justify-content:center;align-content:center;flex-direction:column;text-align:center}.bwg_loading_div_1{position:absolute;width:100%;height:100%;z-index:115;text-align:center;vertical-align:middle;top:0}.bwg_load_more_ajax_loading{width:100%;z-index:115;text-align:center;vertical-align:middle;position:relative;height:30px}.bwg_loading_div_2{display:table;vertical-align:middle;width:100%;height:100%;background-color:#fff;opacity:.95}.bwg_loading_div_3{display:table-cell;text-align:center;position:relative;vertical-align:middle}.bwg_spider_ajax_loading{border:none!important;display:inline-block;text-align:center;position:relative;vertical-align:middle;background-image:url(../images/ajax_loader.png);float:none;width:30px;height:30px;background-size:30px 30px}.bwg-hidden{visibility:hidden}.bwg_container{position:relative;margin:20px auto}.bwg_inst_play_btn_cont,.bwg_inst_play_btn_cont .bwg_inst_play{display:block}.hidden{display:none}.bwg-loading{width:100%;height:100%;opacity:.95;position:absolute;background-color:#fff;background-image:url(../images/ajax_loader.png);background-position:center;background-repeat:no-repeat;background-size:50px;z-index:100100;top:0;left:0}#bwg_download{display:inline-block}#bwg_download.hidden{display:none}.bwg_thumbnail.bwg_container .search_line{min-height:50px;-webkit-box-shadow:0 5px 7px -5px rgba(0,0,0,.16);-moz-box-shadow:0 5px 7px -5px rgba(0,0,0,.16);box-shadow:0 5px 7px -5px rgba(0,0,0,.16);margin-bottom:10px;display:inline-block;width:100%}.bwg_thumbnail.bwg_container .search_line #bwg_tag_wrap,.bwg_thumbnail.bwg_container .search_line .bwg_order_cont,.bwg_thumbnail.bwg_container .search_line .bwg_search_container_1{float:left;display:table-cell;text-align:left;vertical-align:middle}.bwg_thumbnail.bwg_container .search_line #bwg_tag_wrap #bwg_tag_container,.bwg_thumbnail.bwg_container .search_line .bwg_order_cont select{border:.5px solid rgba(0,0,0,.15);box-shadow:none;border-radius:15px}.bwg_thumbnail.bwg_container .search_line .bwg_order_cont,.bwg_thumbnail.bwg_container .search_line .search_tags_container{width:25%;min-width:120px;max-width:180px;margin-right:20px;margin-bottom:10px;border:.5px solid rgba(0,0,0,.15);box-shadow:none;border-radius:15px;float:left;height:30px;padding:0;cursor:pointer;background:#fff}.bwg_thumbnail.bwg_container .search_line .bwg_order_cont select,.bwg_thumbnail.bwg_container .search_line .placeholder,.bwg_thumbnail.bwg_container .search_line .search-txt,.bwg_thumbnail.bwg_container .search_line .select-all,.bwg_thumbnail.bwg_container .search_line.SumoSelect .opt label{color:#323a45;font-size:12px;text-transform:uppercase;font-weight:400;font-family:Ubuntu;margin:0;border:none}.bwg_thumbnail.bwg_container .search_line .select-all label{margin-bottom:0;line-height:13px}.bwg_thumbnail.bwg_container .search_line .SumoSelect ul.options:not(:empty){padding:15px 0 0 10px!important}.bwg_thumbnail.bwg_container .search_line .SumoSelect{padding:0 10px;width:initial;height:inherit;cursor:pointer;display:block;border:none;box-shadow:none;border-radius:0;max-width:100%;background-color:transparent;line-height:inherit;vertical-align:bottom}.bwg_thumbnail.bwg_container .search_line .bwg_search_input_container{height:30px;text-align:center;font-size:12px;font-family:Ubuntu;border-radius:15px;text-align:left;width:calc(100%);margin:0;overflow:hidden}.bwg_thumbnail div[id^=bwg_search_container_1_] div[id^=bwg_search_container_2_] .bwg_search_input,.bwg_thumbnail div[id^=bwg_search_container_1_] div[id^=bwg_search_container_2_] .bwg_search_input:focus{height:30px;padding:0 10px;text-align:center;font-size:12px;font-family:Ubuntu;border-radius:15px;text-align:left;width:calc(100% - 64px);display:inline-table}.bwg_thumbnail.bwg_container .search_line .CaptionCont span{display:block!important;vertical-align:middle;color:#323a45!important;font-size:12px;text-transform:uppercase;font-family:Ubuntu;cursor:pointer;line-height:29px;max-width:calc(100% - 20px)}.bwg_thumbnail .search_tags{cursor:pointer}.bwg_thumbnail.bwg_container .search_line .SumoSelect .select-all>span,.bwg_thumbnail.bwg_container .search_line .SumoSelect>.optWrapper.multiple>.options li.opt span{margin-left:-35px}.bwg_thumbnail.bwg_container .search_line .SumoSelect>.optWrapper.multiple>.options li.opt{padding-left:25px}.bwg_thumbnail .bwg_search_input::-webkit-input-placeholder{color:#ccc;font-size:12px;text-transform:uppercase;font-family:Ubuntu}.bwg_thumbnail .bwg_search_input::-moz-placeholder{color:#ccc;font-size:12px;text-transform:uppercase;text-align:left;font-family:Ubuntu;line-height:30px}.bwg_thumbnail .bwg_search_input:-ms-input-placeholder{color:#ccc;font-size:12px;text-transform:uppercase;text-align:left;font-family:Ubuntu}.bwg_thumbnail .bwg_search_input:-moz-placeholder{color:#ccc;font-size:12px;text-transform:uppercase;text-align:left;font-family:Ubuntu}.bwg_thumbnail .search-txt::-webkit-input-placeholder{text-align:left;color:#323a45;opacity:.5;font-size:12px!important}.bwg_thumbnail .search-txt::-moz-placeholder{text-align:left;color:#323a45;opacity:.5;font-size:12px!important}.bwg_thumbnail .search-txt::-ms-input-placeholder{text-align:left;color:#323a45;opacity:.5;font-size:12px}.bwg_thumbnail .search-txt:-ms-input-placeholder{text-align:left;color:#323a45;opacity:.5;font-size:12px}.bwg_thumbnail .search-txt:-moz-placeholder{text-align:left;color:#323a45;opacity:.5;font-size:12px}.bwg_thumbnail .bwg_search_input_container .search_placeholder_title{width:calc(100% - 20px);height:29px;text-align:center;display:inline-block;background:#fff;position:absolute;top:.5px;left:10px;white-space:nowrap;border-radius:15px;color:#4e4e4e;text-transform:uppercase;overflow:hidden}.bwg_thumbnail .bwg_search_input_container .search_placeholder_title span{line-height:28px}.bwg_thumbnail.bwg_container .search_line .bwg_search_loupe_container{line-height:29px;display:inline-block;top:0;margin-right:10px;vertical-align:middle;float:none;padding-top:0;font-size:12px;font-family:Ubuntug}.bwg_thumbnail.bwg_container .search_line .bwg_search_loupe_container1{margin-left:0;float:left;top:0;line-height:30px;width:auto;height:30px;margin-left:10px}.bwg_thumbnail.bwg_container .search_line .bwg_search_reset_container{right:0;top:0;line-height:30px;width:11px;height:30px;margin-right:10px}.bwg_thumbnail.bwg_container .search_line .bwg_search_container_1{float:right;width:30%;min-width:120px}.bwg_thumbnail.bwg_container .search_line .bwg_search_container_1 .bwg_search_container_2{width:100%!important;float:right}.bwg_thumbnail.bwg_container .search_line .SumoSelect .select-all{padding:0 0 3px 35px!important;height:13px;line-height:13px;margin-bottom:15px!important}.bwg_thumbnail.bwg_container .search_line .SumoSelect>.optWrapper>.options li.opt{margin-bottom:15px;padding:0;list-style:none;color:#323a45;font-size:12px;text-transform:uppercase;font-family:Ubuntu;line-height:12px}.bwg_thumbnail.bwg_container .search_line .SumoSelect>.optWrapper.multiple>.MultiControls>p.btnCancel,.bwg_thumbnail.bwg_container .search_line .SumoSelect>.optWrapper.multiple>.MultiControls>p.btnOk{font-family:Ubuntu;font-size:12px;line-height:12px}.bwg_thumbnail.bwg_container .search_line .SumoSelect>.optWrapper.multiple>.MultiControls>p:hover{background:0 0}.bwg_thumbnail.bwg_container .search_line .SumoSelect>.optWrapper>.options li.opt label{color:#323a45;font-size:12px;text-transform:uppercase;font-family:Ubuntu;font-weight:400;margin-bottom:0}.bwg_thumbnail.bwg_container .search_line .SumoSelect>.CaptionCont{height:inherit;border:transparent;background:inherit;width:100%;cursor:pointer;max-height:calc(100% - 2px)}.bwg_thumbnail.bwg_container .search_line .SumoSelect>.CaptionCont>label{margin:0;line-height:100%;cursor:pointer;width:20px}.bwg_thumbnail.bwg_container .search_line .SumoSelect>.CaptionCont>label>i{line-height:100%;height:100%}.bwg_thumbnail.bwg_container .search_line .SumoSelect>.CaptionCont>label>i.closed:before,.bwg_thumbnail.bwg_container .search_line .SumoSelect>.CaptionCont>label>i.opened:before{color:#323a45;font-size:10px;line-height:30px}.bwg_thumbnail.bwg_container .search_line .bwg_reset{position:absolute}.bwg_thumbnail.bwg_container .search_line .no-match{font-family:Ubuntu;font-size:12px;color:#323a45;padding:5px 25px!important;text-align:center}.bwg_thumbnail.bwg_container .search_line .search-txt{border:transparent;background:0 0;padding:4px 0!important;height:100%}.bwg_thumbnail.bwg_container .search_line .search-txt:focus{box-shadow:none}.bwg_thumbnail.bwg_container .search_line .bwg_order.SumoUnder{display:none}.bwg_slideshow_image_container{position:absolute}.bwg_slideshow_image_container>div>div{display:table;margin:0 auto}div[id^=bwg_container1_] div[id^=bwg_container2_] div[class^=bwg_slide_container_] img[id^=bwg_slideshow_image_]{display:inline-block}.bwg_thumbnail #bwg_tag_container p{text-align:left}.bwg_thumbnail .bwg_search_container_2{display:inline-block;position:relative;border-radius:4px;background-color:#fff;max-width:100%;box-shadow:none;border:.5px solid rgba(0,0,0,.15);border-radius:15px}.bwg_thumbnail .bwg_order_cont{background-color:rgba(0,0,0,0);display:block;text-align:right;width:100%;margin:0 5px 20px 5px}.bwg_thumbnail div[id^=bwg_search_container_1_] div[id^=bwg_search_container_2_] .bwg_search_input_container{display:block;text-align:center}.bwg_thumbnail .SumoSelect>.optWrapper>.options li.opt:hover{background-color:transparent}.bwg-zoom-effect .bwg-zoom-effect-overlay{position:absolute;top:0;left:0;width:100%;height:100%;overflow:hidden;opacity:0;-webkit-transition:all .45s ease-in-out;transition:all .45s ease-in-out}.bwg-zoom-effect:hover .bwg-zoom-effect-overlay{opacity:1}.bwg-zoom-effect img{-webkit-transition:all .3s;transition:all .3s}.bwg-zoom-effect .bwg-title1{-webkit-transition:all .3s ease-in-out;transition:all .3s ease-in-out}.bwg_container div[id^=bwg_container2_] img{height:initial}.bwg-masonry-vertical{flex-direction:column}.bwg-masonry-horizontal{flex-direction:row}.bwg-masonry-horizontal-parent{overflow-x:scroll;overflow-y:hidden}.bwg-masonry-horizontal-container{width:fit-content}.bwg-item.bwg-empty-item{border:0!important;padding:0!important}.bwg-background{background-color:rgba(0,0,0,0);position:relative;width:100%}.bwg-background .wd_error{color:#323a45;font-weight:700}div[id^=bwg_container] .bwg-carousel{margin:0 auto}.bwg_carousel_preload{background-image:url(../images/ajax_loader.png);background-size:50px!important;background-repeat:no-repeat;background-color:#fff;background-position:center}.bwg_container.bwg_carousel *{-moz-user-select:none;-khtml-user-select:none;-webkit-user-select:none;-ms-user-select:none;user-select:none}.bwg_container.bwg_carousel [id^=bwg_container2_] *{-moz-user-select:none;-khtml-user-select:none;-webkit-user-select:none;-ms-user-select:none;user-select:none}.bwg_container.bwg_carousel [id^=bwg_container2_] [class^=bwg_carousel_watermark_]{position:relative;z-index:15}.bwg_container.bwg_carousel [id^=bwg_container2_] [class^=bwg_carousel_image_container_]{display:inline-block;position:absolute;text-align:center;vertical-align:middle}.bwg_container.bwg_carousel [id^=bwg_container2_] [class^=bwg_carousel_watermark_container_]{display:table-cell;margin:0 auto;position:relative;vertical-align:middle}.bwg_container.bwg_carousel [id^=bwg_container2_] [class^=bwg_carousel_watermark_container_] div{display:table;margin:0 auto}.bwg_container.bwg_carousel [id^=bwg_container2_] [class^=bwg_carousel_watermark_spun_]{display:table-cell;overflow:hidden;position:relative}.bwg_container.bwg_carousel [id^=bwg_container2_] [class^=bwg_carousel_watermark_image_]{padding:0!important;display:inline-block;float:none!important;margin:4px!important;position:relative;z-index:15}.bwg_container.bwg_carousel [id^=bwg_container2_] [class^=bwg_carousel_watermark_text_],.bwg_container.bwg_carousel [id^=bwg_container2_] [class^=bwg_carousel_watermark_text_]:hover{text-decoration:none;margin:4px;display:block;position:relative;z-index:17}.bwg_container.bwg_carousel [id^=bwg_container2_] .bwg_carousel-cont-child{max-width:100%;position:relative;overflow:hidden;height:100%;width:100%}.bwg_container.bwg_carousel [id^=bwg_container2_] .bwg-carousel-image{border:0;position:absolute;display:block;max-width:none;padding:0!important;margin:0!important;float:none!important;vertical-align:middle;height:100%;width:100%;background-position:center center;background-repeat:no-repeat;background-size:cover;vertical-align:middle}.bwg_container.bwg_carousel [id^=bwg_container2_] .bwg-carousel{position:relative;max-width:100%;width:100%}.bwg_container.bwg_carousel [id^=bwg_container2_] [class^=bwg_carousel-feature]{position:absolute;display:block;overflow:hidden;cursor:pointer}.bwg_container.bwg_carousel [id^=bwg_container2_] [class^=bwg_carousel-feature] [class^=bwg_carousel-caption] [class^=bwg_carousel_title_text_]{text-decoration:none;position:absolute;z-index:15;display:inline-block;width:75%;top:0;text-align:center;word-wrap:break-word;word-break:break-word}.bwg_container.bwg_carousel [id^=bwg_container2_] [id^=bwg_carousel-left],.bwg_container.bwg_carousel [id^=bwg_container2_] [id^=bwg_carousel-right]{bottom:38%;cursor:pointer;display:inline;height:30%;outline:medium none;position:absolute;width:0%;z-index:13;visibility:visible}.bwg_container.bwg_carousel [id^=bwg_container2_] [id^=bwg_carousel-right]{right:0;left:auto;z-index:999}.bwg_container.bwg_carousel [id^=bwg_container2_] [id^=bwg_carousel-left]{left:20px;z-index:999}.bwg_container.bwg_carousel [id^=bwg_container2_] [class^=bwg_video_hide]{width:100%;height:100%;position:absolute;z-index:22}.bwg_container.bwg_carousel [id^=bwg_container2_] [id^=spider_carousel_left-ico_] span,.bwg_container.bwg_carousel [id^=bwg_container2_] [id^=spider_carousel_right-ico_] span{display:table-cell;text-align:center;vertical-align:middle;z-index:13}.bwg_container.bwg_carousel [id^=bwg_container2_] [id^=spider_carousel_left-ico_],.bwg_container.bwg_carousel [id^=bwg_container2_] [id^=spider_carousel_right-ico_]{z-index:13;-moz-box-sizing:content-box;box-sizing:content-box;cursor:pointer;display:inline-table;line-height:0;margin-top:-15px;position:absolute;top:55%}.bwg_container.bwg_carousel [id^=bwg_container2_] [id^=spider_carousel_left-ico_]:hover,.bwg_container.bwg_carousel [id^=bwg_container2_] [id^=spider_carousel_right-ico_]:hover{cursor:pointer}.bwg_container.bwg_carousel [id^=bwg_container2_] [id^=bwg_carousel_play_pause_]{bottom:0;cursor:pointer;display:inline-table;outline:medium none;position:absolute;height:inherit;width:30%;left:35%;z-index:13}.bwg_container.bwg_carousel .bwg_carousel_play_pause:hover .bwg_carousel_play_pause-ico{display:inline-block!important}.bwg_container.bwg_carousel [id^=bwg_container2_] [id^=bwg_carousel_play_pause_]:hover span{position:relative;z-index:13}.bwg_container.bwg_carousel [id^=bwg_container2_] [id^=bwg_carousel_play_pause_] span{display:table-cell;text-align:center;vertical-align:middle}.bwg_container.bwg_carousel [id^=bwg_container2_] .bwg_carousel_play_pause-ico{display:none!important;cursor:pointer;position:relative;z-index:13}.bwg_container.bwg_carousel [id^=bwg_container2_] .bwg_carousel_play_pause-ico:hover{display:inline-block;position:relative;z-index:13}.bwg_container.bwg_carousel [id^=bwg_container2_] [class^=bwg_carousel_embed_]{padding:0!important;float:none!important;width:100%;height:100%;vertical-align:middle;position:relative;display:table;background-color:#000;text-align:center}.bwg_container.bwg_carousel [id^=bwg_container2_] [class^=bwg_carousel_embed_video_]{padding:0!important;margin:0!important;float:none!important;vertical-align:middle;position:relative;display:table-cell;background-color:#000;text-align:center}.bwg_thumbnail.bwg_container{padding:0 1px}.bwg_thumbnail.bwg_container .search_line.bwg-search-line-responsive{display:inline-block}body .bwg_thumbnail.bwg_container .search_line.bwg-search-line-responsive .bwg_order_cont,body .bwg_thumbnail.bwg_container .search_line.bwg-search-line-responsive .bwg_search_container_1,body .bwg_thumbnail.bwg_container .search_line.bwg-search-line-responsive .search_tags_container{width:100%;margin:0 0 10px 0;text-align:center;max-width:100%}.search_line .SumoSelect>.optWrapper.multiple.isFloating{padding-bottom:26px}.bwg_container.bwg_blog_style .fluid-width-video-wrapper,.bwg_container.bwg_carousel .fluid-width-video-wrapper,.bwg_container.bwg_image_browser .fluid-width-video-wrapper{width:100%;position:unset!important;padding:0!important}.bwg_inst_play_btn_cont{width:100%;height:100%;position:absolute;z-index:1;cursor:pointer;top:0}.bwg_inst_play{position:absolute;width:50px;height:50px;background-position:center center;background-repeat:no-repeat;background-size:cover;transition:background-image .2s ease-out;-ms-transition:background-image .2s ease-out;-moz-transition:background-image .2s ease-out;-webkit-transition:background-image .2s ease-out;top:0;left:0;right:0;bottom:0;margin:auto}.bwg_inst_play:hover{background-position:center center;background-repeat:no-repeat;background-size:cover}.spider_popup_wrap *{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}.spider_popup_wrap{display:inline-block;left:50%;outline:medium none;position:fixed;text-align:center;top:50%;z-index:100000}.bwg_popup_image{width:auto;vertical-align:middle;display:inline-block}#bwg_popup_image img{display:inline-block}.bwg_popup_embed{width:100%;height:100%;vertical-align:middle;text-align:center;display:table}.bwg_btn_container{bottom:0;left:0;overflow:hidden;position:absolute;right:0;top:0}.bwg_toggle_btn{margin:0;padding:0}.bwg_ctrl_btn_container{position:absolute;width:100%;z-index:10150}.bwg_toggle_container{cursor:pointer;left:50%;line-height:0;position:absolute;text-align:center;z-index:10150}#spider_popup_left-ico span,#spider_popup_right-ico span,.spider_popup_close span{display:table-cell;text-align:center;vertical-align:middle}.bwg_image_wrap{height:inherit;display:table;position:absolute;text-align:center;width:inherit}.bwg_image_wrap *{-moz-user-select:none;-khtml-user-select:none;-webkit-user-select:none;-ms-user-select:none;user-select:none}.bwg_comment_wrap,.bwg_ecommerce_wrap{bottom:0;left:0;overflow:hidden;position:absolute;right:0;top:0;z-index:-1}.bwg_comment_container,.bwg_ecommerce_container{-moz-box-sizing:border-box;height:100%;overflow:hidden;position:absolute;top:0;z-index:10103}#bwg_ecommerce{padding:10px}.bwg_ecommerce_body{background:0 0!important;border:none!important}.pge_tabs{list-style-type:none;margin:0;padding:0;background:0 0!important}.pge_tabs li a,.pge_tabs li a:hover,.pge_tabs li.pge_active a{text-decoration:none;display:block;width:100%;outline:0!important;padding:8px 5px!important;font-weight:700;font-size:13px}.pge_add_to_cart a{padding:5px 10px;text-decoration:none!important;display:block}.pge_add_to_cart{margin:5px 0 15px}.pge_add_to_cart_title{font-size:17px;padding:5px}.pge_add_to_cart div:first-child{float:left}.pge_add_to_cart div:last-child{float:right;margin-top:4px}.pge_add_to_cart:after,.pge_tabs:after{clear:both;content:"";display:table}#downloads table tr td,#downloads table tr th{padding:6px 10px!important;text-transform:none!important}.bwg_comments input[type=submit],.bwg_ecommerce_panel input[type=button]{cursor:pointer;font-size:15px;width:100%;margin-bottom:5px}.bwg_comments,.bwg_ecommerce_panel{bottom:0;height:100%;left:0;overflow-x:hidden;overflow-y:auto;position:absolute;top:0;width:100%;z-index:10101}.bwg_comments{height:100%}.bwg_comment_body_p,.bwg_comments p{margin:5px!important;text-align:left;word-wrap:break-word;word-break:break-all}.bwg_ecommerce_panel p{padding:5px!important;text-align:left;word-wrap:break-word;word-break:break-all;margin:0!important}.bwg_comments .bwg-submit-disabled{opacity:.5}.bwg_comments textarea{height:120px;resize:vertical}.bwg_comment_delete_btn{color:#7a7a7a;cursor:pointer;float:right;font-size:14px;margin:2px}.bwg_comments_close,.bwg_ecommerce_close{cursor:pointer;line-height:0;position:relative;font-size:13px;margin:5px;z-index:10150}.bwg_ecommerce_panel a:hover{text-decoration:underline}.bwg_comment_textarea::-webkit-scrollbar{width:4px}.bwg_comment_textarea::-webkit-scrollbar-thumb{background-color:rgba(255,255,255,.55);border-radius:2px}.bwg_comment_textarea::-webkit-scrollbar-thumb:hover{background-color:#d9d9d9}.bwg_ctrl_btn_container a,.bwg_ctrl_btn_container a:hover{text-decoration:none}.bwg_facebook:hover{color:#3b5998}.bwg_twitter:hover{color:#4099fb}.bwg_pinterest:hover{color:#cb2027}.bwg_tumblr:hover{color:#2f5070}.bwg_image_container{display:table;position:absolute;text-align:center;vertical-align:middle;width:100%}.bwg_filmstrip_container{position:absolute;z-index:10150}.bwg_filmstrip{overflow:hidden;position:absolute;z-index:10106}.bwg_filmstrip_thumbnails{margin:0 auto;overflow:hidden;position:relative}.bwg_filmstrip_thumbnail{position:relative;background:0 0;float:left;cursor:pointer;overflow:hidden}.bwg_filmstrip_thumbnail .bwg_filmstrip_thumbnail_img_wrap{overflow:hidden}.bwg_thumb_active{opacity:1}.bwg_filmstrip_thumbnail_img{display:block;opacity:1}.bwg_filmstrip_left{cursor:pointer;vertical-align:middle;z-index:10106;line-height:0}.bwg_filmstrip_right{cursor:pointer;vertical-align:middle;z-index:10106;line-height:0}.bwg_none_selectable{-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.bwg_watermark_container{display:table-cell;margin:0 auto;position:relative;vertical-align:middle}.bwg_watermark_container>div{display:table;margin:0 auto}.bwg_watermark_spun{display:table-cell;overflow:hidden;position:relative}.bwg_watermark_image{margin:4px;position:relative;z-index:10141}.bwg_watermark_text,.bwg_watermark_text:hover{text-decoration:none;margin:4px;position:relative;z-index:10141}.bwg_slide_container{display:table-cell;position:absolute;vertical-align:middle;width:100%;height:100%}.bwg_slide_bg{margin:0 auto;width:inherit;height:inherit}.bwg_slider{height:inherit;width:inherit}.bwg_popup_image_spun{height:inherit;display:table-cell;opacity:1;position:absolute;vertical-align:middle;width:inherit;z-index:2}.bwg_popup_image_second_spun{width:inherit;height:inherit;display:table-cell;opacity:0;position:absolute;vertical-align:middle;z-index:1}.bwg_grid{display:none;height:100%;overflow:hidden;position:absolute;width:100%}.bwg_gridlet{opacity:1;position:absolute}.bwg_image_info::-webkit-scrollbar{width:4px}.bwg_image_info::-webkit-scrollbar-thumb{background-color:rgba(255,255,255,.55);border-radius:2px}.bwg_image_info::-webkit-scrollbar-thumb:hover{background-color:#d9d9d9}#bwg_rate_form .bwg_hint{margin:0 5px;display:none}.bwg_star{display:inline-block;width:unset!important}.bwg_image_count_container{left:0;line-height:1;position:absolute;vertical-align:middle}#bwg_comment_form label{display:block;font-weight:700;margin-top:17px;text-transform:uppercase}#bwg_comment_form .bwg-privacy-policy-box label{text-transform:unset;word-break:break-word}.bwg_popup_image_spun .bwg_popup_image_spun1{width:inherit;height:inherit}.bwg_popup_image_spun1 .bwg_popup_image_spun2{vertical-align:middle;text-align:center;height:100%}#embed_conteiner{table-layout:fixed;height:100%}#opacity_div{background-color:rgba(255,255,255,.2);position:absolute;z-index:10150}#loading_div{text-align:center;position:relative;vertical-align:middle;z-index:10170;float:none;width:30px;height:30px;background-size:30px 30px;background-repeat:no-repeat;background-position:50% 50%}#ecommerce_ajax_loading{position:absolute}#ecommerce_opacity_div{display:none;background-color:rgba(255,255,255,.2);position:absolute;z-index:10150}#ecommerce_loading_div{display:none;text-align:center;position:relative;vertical-align:middle;z-index:10170;float:none;width:30px;height:30px;background-size:30px 30px;background-repeat:no-repeat;background-position:50% 50%}.bwg_ecommerce_panel.bwg_popup_sidebar_panel.bwg_popup_sidebar{text-align:left}#ajax_loading{position:absolute}@media (max-width:480px){.bwg_image_count_container{display:none}.bwg_image_title,.bwg_image_title *{font-size:12px}.bwg_image_description,.bwg_image_description *{font-size:10px}}div[id^=bwg_container1_] div[id^=bwg_container2_] div[class^=bwg_slideshow_image_wrap_] *{box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box}div[id^=bwg_container1_] div[id^=bwg_container2_] div[class^=bwg_slideshow_image_wrap_]{border-collapse:collapse;display:table;position:relative;text-align:center;margin:auto}div[id^=bwg_container1_] div[id^=bwg_container2_] img[class^=bwg_slideshow_image_]{display:inline-block;padding:0!important;margin:0!important;float:none!important;vertical-align:middle}div[id^=bwg_container1_] div[id^=bwg_container2_] span[class^=bwg_slideshow_embed_]{padding:0!important;margin:0!important;float:none!important;vertical-align:middle;display:inline-block;text-align:center}div[id^=bwg_container1_] div[id^=bwg_container2_] img[class^=bwg_slideshow_watermark_]{position:relative;z-index:15}div[id^=bwg_container1_] div[id^=bwg_container2_] span.bwg_slideshow_play_pause{bottom:0;cursor:pointer;display:table;height:inherit;outline:medium none;position:absolute;width:30%;left:35%;z-index:13}div[id^=bwg_container1_] div[id^=bwg_container2_] span.bwg_slideshow_play_pause:hover span[id^=bwg_slideshow_play_pause-ico_]{display:inline-block!important}div[id^=bwg_container1_] div[id^=bwg_container2_] span.bwg_slideshow_play_pause:hover span{position:relative;z-index:13}div[id^=bwg_container1_] div[id^=bwg_container2_] span.bwg_slideshow_play_pause span{display:table-cell;text-align:center;vertical-align:middle;z-index:13}div[id^=bwg_container1_] div[id^=bwg_container2_] span[id^=bwg_slideshow_play_pause-ico_]{display:none!important;cursor:pointer;position:relative;z-index:13}div[id^=bwg_container1_] div[id^=bwg_container2_] span[id^=bwg_slideshow_play_pause-ico_]:hover{display:inline-block;position:relative;z-index:13}div[id^=bwg_container1_] div[id^=bwg_container2_] a[id^=spider_slideshow_left_],div[id^=bwg_container1_] div[id^=bwg_container2_] a[id^=spider_slideshow_right_]{bottom:35%;cursor:pointer;display:inline;height:30%;outline:medium none;position:absolute;width:35%;z-index:13}div[id^=bwg_container1_] div[id^=bwg_container2_] a[id^=spider_slideshow_left_]{left:0}div[id^=bwg_container1_] div[id^=bwg_container2_] a[id^=spider_slideshow_right_]{right:0}div[id^=bwg_container1_] div[id^=bwg_container2_] a[id^=spider_slideshow_left_]:hover,div[id^=bwg_container1_] div[id^=bwg_container2_] a[id^=spider_slideshow_right_]:hover{visibility:visible}div[id^=bwg_container1_] div[id^=bwg_container2_] a[id^=spider_slideshow_left_]:hover,div[id^=bwg_container1_] div[id^=bwg_container2_] a[id^=spider_slideshow_right_]:hover{visibility:visible}div[id^=bwg_container1_] div[id^=bwg_container2_] a[id^=spider_slideshow_right_]:hover span{left:auto!important;right:20px!important}div[id^=bwg_container1_] div[id^=bwg_container2_] a[id^=spider_slideshow_left_]:hover span{left:20px!important}div[id^=bwg_container1_] div[id^=bwg_container2_] span[id^=spider_slideshow_left-ico_] span,div[id^=bwg_container1_] div[id^=bwg_container2_] span[id^=spider_slideshow_right-ico_] span{display:table-cell;text-align:center;vertical-align:middle;z-index:13}div[id^=bwg_container1_] div[id^=bwg_container2_] span[id^=spider_slideshow_left-ico_],div[id^=bwg_container1_] div[id^=bwg_container2_] span[id^=spider_slideshow_right-ico_]{z-index:13;-moz-box-sizing:content-box;box-sizing:content-box;cursor:pointer;display:table;line-height:0;margin-top:-15px;position:absolute;top:50%}div[id^=bwg_container1_] div[id^=bwg_container2_] span[id^=spider_slideshow_left-ico_]:hover,div[id^=bwg_container1_] div[id^=bwg_container2_] span[id^=spider_slideshow_right-ico_]:hover{cursor:pointer}div[id^=bwg_container1_] div[id^=bwg_container2_] div[class^=bwg_slideshow_image_container_]{display:table;position:absolute;text-align:center;vertical-align:middle}div[id^=bwg_container1_] div[id^=bwg_container2_] div[class^=bwg_slideshow_filmstrip_container_]{position:absolute}div[id^=bwg_container1_] div[id^=bwg_container2_] .bwg_slideshow_filmstrip{overflow:hidden;position:absolute}div[id^=bwg_container1_] div[id^=bwg_container2_] div[class^=bwg_slideshow_filmstrip_thumbnails_]{margin:0 auto;overflow:hidden;position:relative}div[id^=bwg_container1_] div[id^=bwg_container2_] div[class^=bwg_slideshow_filmstrip_thumbnail_]{position:relative;background:0 0;cursor:pointer;float:left;overflow:hidden}div[id^=bwg_container1_] div[id^=bwg_container2_] div[class^=bwg_slideshow_thumb_active_]{opacity:1}div[id^=bwg_container1_] div[id^=bwg_container2_] img[class^=bwg_slideshow_filmstrip_thumbnail_img_]{display:block;opacity:1;padding:0!important}div[id^=bwg_container1_] div[id^=bwg_container2_] div[class^=bwg_slideshow_filmstrip_left_]{cursor:pointer;vertical-align:middle}div[id^=bwg_container1_] div[id^=bwg_container2_] div[class^=bwg_slideshow_filmstrip_right_]{cursor:pointer;vertical-align:middle}div[id^=bwg_container1_] div[id^=bwg_container2_] a[class^=bwg_none_selectable_]{-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}div[id^=bwg_container1_] div[id^=bwg_container2_] div[class^=bwg_slideshow_watermark_container_]{display:table-cell;margin:0 auto;position:relative;vertical-align:middle}div[id^=bwg_container1_] div[id^=bwg_container2_] span[class^=bwg_slideshow_watermark_spun_]{display:table-cell;overflow:hidden;position:relative}div[id^=bwg_container1_] div[id^=bwg_container2_] span[class^=bwg_slideshow_title_spun_]{display:table-cell;overflow:hidden;position:relative}div[id^=bwg_container1_] div[id^=bwg_container2_] span[class^=bwg_slideshow_description_spun_]{display:table-cell;overflow:hidden;position:relative}div[id^=bwg_container1_] div[id^=bwg_container2_] img[class^=bwg_slideshow_watermark_image_]{padding:0!important;float:none!important;margin:4px!important;position:relative;z-index:15}div[id^=bwg_container1_] div[id^=bwg_container2_] a[class^=bwg_slideshow_watermark_text_],div[id^=bwg_container1_] div[id^=bwg_container2_] a[class^=bwg_slideshow_watermark_text_]:hover{text-decoration:none;margin:4px;position:relative;z-index:15}div[id^=bwg_container1_] div[id^=bwg_container2_] div[class^=bwg_slideshow_title_text_]{text-decoration:none;position:relative;z-index:11;display:inline-block;word-wrap:break-word;word-break:break-word}div[id^=bwg_container1_] div[id^=bwg_container2_] div[class^=bwg_slideshow_description_text_]{text-decoration:none;position:relative;z-index:15;margin:5px;display:inline-block;word-wrap:break-word;word-break:break-word}div[id^=bwg_container1_] div[id^=bwg_container2_] div[class^=bwg_slide_container_]{display:table-cell;margin:0 auto;position:absolute;vertical-align:middle;width:100%;height:100%}div[id^=bwg_container1_] div[id^=bwg_container2_] div[class^=bwg_slide_bg_]{margin:0 auto;width:inherit;height:inherit}div[id^=bwg_container1_] div[id^=bwg_container2_] div[class^=bwg_slider_]{height:inherit;width:inherit}div[id^=bwg_container1_] div[id^=bwg_container2_] span[class^=bwg_slideshow_image_spun_]{width:inherit;height:inherit;display:table-cell;opacity:1;position:absolute;vertical-align:middle;z-index:2}div[id^=bwg_container1_] div[id^=bwg_container2_] span[class^=bwg_slideshow_image_second_spun_]{width:inherit;height:inherit;display:table-cell;opacity:0;position:absolute;vertical-align:middle;z-index:1}div[id^=bwg_container1_] div[id^=bwg_container2_] span[class^=bwg_grid_]{display:none;height:100%;overflow:hidden;position:absolute;width:100%}div[id^=bwg_container1_] div[id^=bwg_container2_] span[class^=bwg_gridlet_]{opacity:1;position:absolute}div[id^=bwg_container1_] div[id^=bwg_container2_] span[class^=bwg_slideshow_dots_]{display:inline-block;position:relative;cursor:pointer;overflow:hidden;z-index:17}div[id^=bwg_container1_] div[id^=bwg_container2_] div[class^=bwg_slideshow_dots_container_]{display:block;overflow:hidden;position:absolute;z-index:17}div[id^=bwg_container1_] div[id^=bwg_container2_] div[class^=bwg_slideshow_dots_thumbnails_]{left:0;font-size:0;margin:0 auto;overflow:hidden;position:relative}div[id^=bwg_container1_] div[id^=bwg_container2_] span[class^=bwg_slideshow_dots_active_]{opacity:1}div[id^=bwg_container1_] div[id^=bwg_container2_] span[class^=bwg_slideshow_image_spun1_]{display:table;width:inherit;height:inherit}div[id^=bwg_container1_] div[id^=bwg_container2_] span[class^=bwg_slideshow_image_spun2_]{display:table-cell;vertical-align:middle;text-align:center}div[id^=bwg_container1_] div[id^=bwg_container2_] span[class^=bwg_mosaic_play_icon_spun_]{display:flex;height:100%;opacity:1;position:absolute;top:0;width:100%;z-index:100;justify-content:center;align-content:center;flex-direction:column;text-align:center;left:0}.lazy_loader{background-image:url(../images/ajax_loader.png);background-size:30px 30px;background-repeat:no-repeat;background-position:50% 50%}#bwg_thumbnails_masonry_0{overflow:hidden}
filemanager/UploadHandler.php CHANGED
@@ -23,7 +23,7 @@ $controller = new FilemanagerController();
23
  $upload_handler = new bwg_UploadHandler(array(
24
  'upload_dir' => $controller->uploads_dir . (isset($_GET['dir']) ? str_replace('\\', '', ($_GET['dir'])) : '/'),
25
  'upload_url' => $controller->uploads_url,
26
- 'accept_file_types' => '/\.(gif|jpe?g|png|aac|m4a|f4a|oga|ogg|mp3|zip)$/i',
27
  ));
28
 
29
  class bwg_UploadHandler {
@@ -81,7 +81,7 @@ class bwg_UploadHandler {
81
  // Enable to provide file downloads via GET requests to the PHP script:
82
  'download_via_php' => FALSE,
83
  // Defines which files can be displayed inline when downloaded:
84
- 'inline_file_types' => '/\.(gif|jpe?g|png)$/i',
85
  // Defines which files (based on their names) are accepted for upload:
86
  'accept_file_types' => '/.+$/i',
87
  // The php.ini settings upload_max_filesize and post_max_size
@@ -128,6 +128,7 @@ class bwg_UploadHandler {
128
  if ( $options ) {
129
  $this->options = array_merge($this->options, $options);
130
  }
 
131
  if ( $error_messages ) {
132
  $this->error_messages = array_merge($this->error_messages, $error_messages);
133
  }
@@ -289,6 +290,7 @@ class bwg_UploadHandler {
289
  else {
290
  $new_file_path = $file_path;
291
  }
 
292
  $success = WDWLibrary::resize_image($file_path, $new_file_path, $options['max_width'], $options['max_height']);
293
 
294
  return $success;
@@ -424,7 +426,7 @@ class bwg_UploadHandler {
424
  $name = str_replace('.', '-', microtime(TRUE));
425
  }
426
  // Add missing file extension for known image types:
427
- if ( strpos($name, '.') === FALSE && preg_match('/^image\/(gif|jpe?g|png)/', $type, $matches) ) {
428
  $name .= '.' . $matches[1];
429
  }
430
 
@@ -443,7 +445,8 @@ class bwg_UploadHandler {
443
  if ( !function_exists('exif_read_data') ) {
444
  return FALSE;
445
  }
446
- $file_path = BWG()->upload_dir . $file->path . $file->name;
 
447
  $exif = @exif_read_data($file_path);
448
  if ( $exif === FALSE ) {
449
  return;
@@ -497,23 +500,26 @@ class bwg_UploadHandler {
497
 
498
  protected function handle_image_file( $file_path, $file ) {
499
  $failed_versions = array();
500
- foreach ( $this->options['image_versions'] as $version => $options ) {
501
- if ( $this->create_scaled_image($file->name, $version, $options) ) {
502
- if ( $version === '' && $this->options['orient_image'] ) {
503
- // Rotate only base size image (not thumb and original).
504
- $this->orient_image($file);
505
- }
506
- if ( !empty($version) ) {
507
- $file->{$version . '_url'} = $this->get_download_url($file, $version);
 
 
 
 
 
508
  }
509
  else {
510
- $file->size = $this->get_file_size($file_path, TRUE);
511
  }
512
  }
513
- else {
514
- $failed_versions[] = $version;
515
- }
516
- }
517
  switch ( count($failed_versions) ) {
518
  case 0:
519
  break;
@@ -533,7 +539,16 @@ class bwg_UploadHandler {
533
  $file->size = (int) ($file->size / 1024) . ' KB';
534
  // ini_set('allow_url_fopen',1);
535
  $image_info = @getimagesize(htmlspecialchars_decode($file->url, ENT_COMPAT | ENT_QUOTES));
536
- $file->resolution = $image_info[0] . ' x ' . $image_info[1] . ' px';
 
 
 
 
 
 
 
 
 
537
  $meta = WDWLibrary::read_image_metadata($file->dir . '/.original/' . $file->name);
538
  $file->alt = (BWG()->options->read_metadata && $meta['title']) ? $meta['title'] : str_replace("_", " ", $file->filename);
539
  $file->credit = !empty($meta['credit']) ? $meta['credit'] : '';
@@ -558,7 +573,7 @@ class bwg_UploadHandler {
558
  $OnlyFileName = $zip->getNameIndex($i);
559
  $FullFileName = $zip->statIndex($i);
560
  if ( !($FullFileName['name'][strlen($FullFileName['name']) - 1] == "/") ) {
561
- if ( !preg_match('#\.(gif|jpe?g|png|bmp|mp4|flv|webm|ogg|mp3|wav|pdf|ini|txt)$#i', $OnlyFileName) ) {
562
  $allow_extract = FALSE;
563
  }
564
  }
@@ -653,11 +668,17 @@ class bwg_UploadHandler {
653
  mkdir($upload_dir, $this->options['mkdir_mode'], TRUE);
654
  }
655
  $file_path = $this->get_upload_path($file->name);
 
656
  copy($basedir . '/' . $uploaded_file, $file_path);
657
- if ( $this->options['max_width'] && $this->options['max_height'] ) {
 
658
  // Media library Upload.
659
  $this->create_scaled_image($file->name, 'main', $this->options);
 
 
 
660
  }
 
661
  list($img_width) = @getimagesize(htmlspecialchars_decode($file_path, ENT_COMPAT | ENT_QUOTES));
662
  if ( is_int($img_width) ) {
663
  $this->handle_image_file($file_path, $file);
@@ -672,23 +693,36 @@ class bwg_UploadHandler {
672
  $file->url = '/' . $this->options['media_library_folder'] . $file->name;
673
  $file->thumb = $this->options['upload_url'] . '/' . $this->options['media_library_folder'] . 'thumb/' . $file->name;
674
  $file->thumb_url = '/' . $this->options['media_library_folder'] . 'thumb/' . $file->name;
 
675
  $file_size_kb = (int) (filesize($file_path) / 1024);
676
  $file->size = $file_size_kb . ' KB';
677
  $file->date_modified = date('Y-m-d H:i:s', filemtime($file_path));
678
  $image_info = @getimagesize(htmlspecialchars_decode($file_path, ENT_COMPAT | ENT_QUOTES));
679
- $file->resolution = $image_info[0] . ' x ' . $image_info[1] . ' px';
680
- $file->resolution_thumb = WDWLibrary::get_thumb_size($file->thumb_url);
 
 
 
 
 
 
 
 
 
 
 
 
681
  if ( BWG()->options->read_metadata ) {
682
  $meta = WDWLibrary::read_image_metadata($upload_dir . '.original/' . $file->name);
683
- $file->credit = $meta['credit'];
684
- $file->aperture = $meta['aperture'];
685
- $file->camera = $meta['camera'];
686
- $file->caption = $meta['caption'];
687
- $file->iso = $meta['iso'];
688
- $file->orientation = $meta['orientation'];
689
- $file->copyright = $meta['copyright'];
690
  $file->alt = $meta['title'] ? $meta['title'] : $file->filename;
691
- $file->tags = $meta['tags'];
692
  }
693
  }
694
  else {
@@ -726,6 +760,7 @@ class bwg_UploadHandler {
726
  // Non-multipart uploads (PUT method support)
727
  file_put_contents($file_path, fopen('php://input', 'r'), $append_file ? FILE_APPEND : 0);
728
  }
 
729
  $file_size = $this->get_file_size($file_path, $append_file);
730
  if ( $file_size === $file->size ) {
731
  if ( $this->options['max_width'] && $this->options['max_height'] ) {
@@ -734,7 +769,7 @@ class bwg_UploadHandler {
734
  }
735
  $file->url = $this->get_download_url($file);
736
  list($img_width, $img_height) = @getimagesize(htmlspecialchars_decode($file_path, ENT_COMPAT | ENT_QUOTES));
737
- if ( is_int($img_width) ) {
738
  $file->error = FALSE;
739
  $this->handle_image_file($file_path, $file);
740
  }
@@ -755,6 +790,19 @@ class bwg_UploadHandler {
755
  return $file;
756
  }
757
 
 
 
 
 
 
 
 
 
 
 
 
 
 
758
  protected function readfile( $file_path ) {
759
  return readfile($file_path);
760
  }
@@ -806,6 +854,8 @@ class bwg_UploadHandler {
806
  return 'image/png';
807
  case 'gif':
808
  return 'image/gif';
 
 
809
  default:
810
  return '';
811
  }
@@ -1024,21 +1074,35 @@ class bwg_UploadHandler {
1024
  $data['alt'] = isset($info->alt) ? $info->alt : '';
1025
  $data['thumb'] = isset($info->name) ? 'thumb/' . $info->name : '';
1026
  $data['size'] = isset($info->size) ? $info->size : '';
1027
- $data['resolution'] = isset($info->resolution) ? $info->resolution : '';
1028
- $resolution_thumb = WDWLibrary::get_thumb_size("/".$data['thumb']);
1029
- if($resolution_thumb == '') {
1030
- $temp = explode(" ",$data['resolution']);
1031
- $resolution_thumb = $temp[0]."x".$temp[2];
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1032
  }
1033
- $data['resolution_thumb'] = $resolution_thumb;
1034
- $data['credit'] = isset($info->credit) ? $this->mime_decode($info->credit, $iconv_mime_decode_function_exist) : '';
1035
- $data['aperture'] = isset($info->aperture) ? $this->mime_decode($info->aperture, $iconv_mime_decode_function_exist) : '';
1036
- $data['camera'] = isset($info->camera) ? $this->mime_decode($info->camera, $iconv_mime_decode_function_exist) : '';
1037
- $data['caption'] = isset($info->caption) ? $this->mime_decode($info->caption, $iconv_mime_decode_function_exist) : '';
1038
- $data['iso'] = isset($info->iso) ? $this->mime_decode($info->iso, $iconv_mime_decode_function_exist) : '';
1039
- $data['orientation'] = isset($info->orientation) ? $info->orientation : '';
1040
- $data['copyright'] = isset($info->copyright) ? $this->mime_decode($info->copyright, $iconv_mime_decode_function_exist) : '';
1041
- $data['tags'] = isset($info->tags) ? $this->mime_decode($info->tags, $iconv_mime_decode_function_exist) : '';
1042
 
1043
  return $data;
1044
  }
23
  $upload_handler = new bwg_UploadHandler(array(
24
  'upload_dir' => $controller->uploads_dir . (isset($_GET['dir']) ? str_replace('\\', '', ($_GET['dir'])) : '/'),
25
  'upload_url' => $controller->uploads_url,
26
+ 'accept_file_types' => '/\.(gif|jpe?g|png|svg|aac|m4a|f4a|oga|ogg|mp3|zip)$/i',
27
  ));
28
 
29
  class bwg_UploadHandler {
81
  // Enable to provide file downloads via GET requests to the PHP script:
82
  'download_via_php' => FALSE,
83
  // Defines which files can be displayed inline when downloaded:
84
+ 'inline_file_types' => '/\.(gif|jpe?g|png|svg)$/i',
85
  // Defines which files (based on their names) are accepted for upload:
86
  'accept_file_types' => '/.+$/i',
87
  // The php.ini settings upload_max_filesize and post_max_size
128
  if ( $options ) {
129
  $this->options = array_merge($this->options, $options);
130
  }
131
+
132
  if ( $error_messages ) {
133
  $this->error_messages = array_merge($this->error_messages, $error_messages);
134
  }
290
  else {
291
  $new_file_path = $file_path;
292
  }
293
+
294
  $success = WDWLibrary::resize_image($file_path, $new_file_path, $options['max_width'], $options['max_height']);
295
 
296
  return $success;
426
  $name = str_replace('.', '-', microtime(TRUE));
427
  }
428
  // Add missing file extension for known image types:
429
+ if ( strpos($name, '.') === FALSE && preg_match('/^image\/(gif|jpe?g|png|svg)/', $type, $matches) ) {
430
  $name .= '.' . $matches[1];
431
  }
432
 
445
  if ( !function_exists('exif_read_data') ) {
446
  return FALSE;
447
  }
448
+ $path = isset($file->path) ? $file->path : "/";
449
+ $file_path = BWG()->upload_dir . $path . $file->name;
450
  $exif = @exif_read_data($file_path);
451
  if ( $exif === FALSE ) {
452
  return;
500
 
501
  protected function handle_image_file( $file_path, $file ) {
502
  $failed_versions = array();
503
+
504
+ foreach ( $this->options['image_versions'] as $version => $options ) {
505
+ if ( $this->create_scaled_image($file->name, $version, $options) ) {
506
+ if ( $version === '' && $this->options['orient_image'] ) {
507
+ // Rotate only base size image (not thumb and original).
508
+ $this->orient_image($file);
509
+ }
510
+ if ( !empty($version) ) {
511
+ $file->{$version . '_url'} = $this->get_download_url($file, $version);
512
+ }
513
+ else {
514
+ $file->size = $this->get_file_size($file_path, TRUE);
515
+ }
516
  }
517
  else {
518
+ $failed_versions[] = $version;
519
  }
520
  }
521
+
522
+
 
 
523
  switch ( count($failed_versions) ) {
524
  case 0:
525
  break;
539
  $file->size = (int) ($file->size / 1024) . ' KB';
540
  // ini_set('allow_url_fopen',1);
541
  $image_info = @getimagesize(htmlspecialchars_decode($file->url, ENT_COMPAT | ENT_QUOTES));
542
+ if ( $file->type == 'svg') {
543
+ $size = $this->get_svg_size($file->dir.$file->name);
544
+ if( !empty($size) ) {
545
+ $file->resolution = $size['width'] . " x " . $size['height'] . " px ";
546
+ } else {
547
+ $file->resolution = "";
548
+ }
549
+ } else {
550
+ $file->resolution = $image_info[0] . ' x ' . $image_info[1] . ' px';
551
+ }
552
  $meta = WDWLibrary::read_image_metadata($file->dir . '/.original/' . $file->name);
553
  $file->alt = (BWG()->options->read_metadata && $meta['title']) ? $meta['title'] : str_replace("_", " ", $file->filename);
554
  $file->credit = !empty($meta['credit']) ? $meta['credit'] : '';
573
  $OnlyFileName = $zip->getNameIndex($i);
574
  $FullFileName = $zip->statIndex($i);
575
  if ( !($FullFileName['name'][strlen($FullFileName['name']) - 1] == "/") ) {
576
+ if ( !preg_match('#\.(gif|jpe?g|png|svg|bmp|mp4|flv|webm|ogg|mp3|wav|pdf|ini|txt)$#i', $OnlyFileName) ) {
577
  $allow_extract = FALSE;
578
  }
579
  }
668
  mkdir($upload_dir, $this->options['mkdir_mode'], TRUE);
669
  }
670
  $file_path = $this->get_upload_path($file->name);
671
+
672
  copy($basedir . '/' . $uploaded_file, $file_path);
673
+
674
+ if ( $this->options['max_width'] && $this->options['max_height'] && $type != 'svg' ) {
675
  // Media library Upload.
676
  $this->create_scaled_image($file->name, 'main', $this->options);
677
+ } else {
678
+ $thumb_path = $this->get_upload_path($file->name, 'thumb');
679
+ copy($basedir . '/' . $uploaded_file, $thumb_path);
680
  }
681
+
682
  list($img_width) = @getimagesize(htmlspecialchars_decode($file_path, ENT_COMPAT | ENT_QUOTES));
683
  if ( is_int($img_width) ) {
684
  $this->handle_image_file($file_path, $file);
693
  $file->url = '/' . $this->options['media_library_folder'] . $file->name;
694
  $file->thumb = $this->options['upload_url'] . '/' . $this->options['media_library_folder'] . 'thumb/' . $file->name;
695
  $file->thumb_url = '/' . $this->options['media_library_folder'] . 'thumb/' . $file->name;
696
+
697
  $file_size_kb = (int) (filesize($file_path) / 1024);
698
  $file->size = $file_size_kb . ' KB';
699
  $file->date_modified = date('Y-m-d H:i:s', filemtime($file_path));
700
  $image_info = @getimagesize(htmlspecialchars_decode($file_path, ENT_COMPAT | ENT_QUOTES));
701
+
702
+ if ( $type == 'svg' ) {
703
+ $size = $this->get_svg_size($file->dir.$file->name);
704
+ if( !empty($size) ) {
705
+ $file->resolution = $size['width'] . " x " . $size['height'] . " px ";
706
+ $file->resolution_thumb = $size['width'] . "x" . $size['height'];
707
+ } else {
708
+ $file->resolution = "";
709
+ $file->resolution_thumb = "";
710
+ }
711
+ } else {
712
+ $file->resolution = $image_info[0] . ' x ' . $image_info[1] . ' px';
713
+ $file->resolution_thumb = WDWLibrary::get_thumb_size($file->thumb_url);
714
+ }
715
  if ( BWG()->options->read_metadata ) {
716
  $meta = WDWLibrary::read_image_metadata($upload_dir . '.original/' . $file->name);
717
+ $file->credit = isset($meta['credit']) ? $meta['credit'] : "";
718
+ $file->aperture = isset($meta['aperture']) ? $meta['aperture'] : "";
719
+ $file->camera = isset($meta['camera']) ? $meta['camera'] : "";
720
+ $file->caption = isset($meta['caption']) ? $meta['caption'] : "";
721
+ $file->iso = isset($meta['iso']) ? $meta['iso'] : "";
722
+ $file->orientation = isset($meta['orientation']) ? $meta['orientation'] : "";
723
+ $file->copyright = isset($meta['copyright']) ? $meta['copyright'] : "";
724
  $file->alt = $meta['title'] ? $meta['title'] : $file->filename;
725
+ $file->tags = isset($meta['tags']) ? $meta['tags'] : "";
726
  }
727
  }
728
  else {
760
  // Non-multipart uploads (PUT method support)
761
  file_put_contents($file_path, fopen('php://input', 'r'), $append_file ? FILE_APPEND : 0);
762
  }
763
+
764
  $file_size = $this->get_file_size($file_path, $append_file);
765
  if ( $file_size === $file->size ) {
766
  if ( $this->options['max_width'] && $this->options['max_height'] ) {
769
  }
770
  $file->url = $this->get_download_url($file);
771
  list($img_width, $img_height) = @getimagesize(htmlspecialchars_decode($file_path, ENT_COMPAT | ENT_QUOTES));
772
+ if ( is_int($img_width) || $type == "image/svg+xml" ) {
773
  $file->error = FALSE;
774
  $this->handle_image_file($file_path, $file);
775
  }
790
  return $file;
791
  }
792
 
793
+ public function get_svg_size( $image ) {
794
+
795
+ $xml = simplexml_load_file($image);
796
+ $attr = $xml->attributes();
797
+
798
+ $size = [
799
+ 'width' => json_decode($attr->width),
800
+ 'height'=> json_decode($attr->height),
801
+ ];
802
+
803
+ return $size;
804
+ }
805
+
806
  protected function readfile( $file_path ) {
807
  return readfile($file_path);
808
  }
854
  return 'image/png';
855
  case 'gif':
856
  return 'image/gif';
857
+ case 'svg':
858
+ return 'image/svg';
859
  default:
860
  return '';
861
  }
1074
  $data['alt'] = isset($info->alt) ? $info->alt : '';
1075
  $data['thumb'] = isset($info->name) ? 'thumb/' . $info->name : '';
1076
  $data['size'] = isset($info->size) ? $info->size : '';
1077
+
1078
+ if ( $data['type'] == 'svg') {
1079
+ $size = $this->get_svg_size($info->dir.$data['name']);
1080
+ if( !empty($size['width']) && !empty($size['height']) ) {
1081
+ $data['resolution'] = $size['width'] . " x " . $size['height'] . " px ";
1082
+ $data['resolution_thumb'] = $size['width'] . "x" . $size['height'];
1083
+ } else {
1084
+ $data['resolution'] = WDWLibrary::get('upload_img_width') . " x " . WDWLibrary::get('upload_img_height') . " px ";
1085
+ $data['resolution_thumb'] = WDWLibrary::get('upload_thumb_width') . "x" . WDWLibrary::get('upload_thumb_height');
1086
+ }
1087
+ } else {
1088
+ $data['resolution'] = isset($info->resolution) ? $info->resolution : '';
1089
+ $resolution_thumb = WDWLibrary::get_thumb_size("/" . $data['thumb']);
1090
+ if ( $resolution_thumb == '' && !empty($data['resolution']) ) {
1091
+ $temp = explode(" ", $data['resolution']);
1092
+ $resolution_thumb = $temp[0] . "x" . $temp[2];
1093
+ }
1094
+ $data['resolution_thumb'] = $resolution_thumb;
1095
+
1096
+ $data['credit'] = isset($info->credit) ? $this->mime_decode($info->credit, $iconv_mime_decode_function_exist) : '';
1097
+ $data['aperture'] = isset($info->aperture) ? $this->mime_decode($info->aperture, $iconv_mime_decode_function_exist) : '';
1098
+ $data['camera'] = isset($info->camera) ? $this->mime_decode($info->camera, $iconv_mime_decode_function_exist) : '';
1099
+ $data['caption'] = isset($info->caption) ? $this->mime_decode($info->caption, $iconv_mime_decode_function_exist) : '';
1100
+ $data['iso'] = isset($info->iso) ? $this->mime_decode($info->iso, $iconv_mime_decode_function_exist) : '';
1101
+ $data['orientation'] = isset($info->orientation) ? $info->orientation : '';
1102
+ $data['copyright'] = isset($info->copyright) ? $this->mime_decode($info->copyright, $iconv_mime_decode_function_exist) : '';
1103
+ $data['tags'] = isset($info->tags) ? $this->mime_decode($info->tags, $iconv_mime_decode_function_exist) : '';
1104
+
1105
  }
 
 
 
 
 
 
 
 
 
1106
 
1107
  return $data;
1108
  }
filemanager/model.php CHANGED
@@ -49,12 +49,12 @@ class FilemanagerModel {
49
  $dir = $params['dir'];
50
  $orderby = $params['orderby'];
51
  $order = $params['order'];
52
- if ( $orderby != 'size' && $orderby != 'name' ) {
53
- $orderby = 'date_modified';
54
- }
55
- if ( $order != 'asc' ) {
56
- $order = 'desc';
57
- }
58
  $search = $params['search'];
59
  $page_num = $params['page_num'];
60
  $page_per = $params['page_per'];
@@ -106,6 +106,7 @@ class FilemanagerModel {
106
  case 'png':
107
  case 'bmp':
108
  case 'gif':
 
109
  return true;
110
  break;
111
  }
@@ -154,12 +155,12 @@ class FilemanagerModel {
154
  $search = $params['search'];
155
  $orderby = $params['orderby'];
156
  $order = $params['order'];
157
- if ( $orderby != 'size' && $orderby != 'name' ) {
158
- $orderby = 'date_modified';
159
- }
160
- if ( $order != 'asc' ) {
161
- $order = 'desc';
162
- }
163
 
164
  $query = ' SELECT * FROM `' . $wpdb->prefix . 'bwg_file_paths`';
165
  $query .= ' WHERE `path` = "' . $dir . '"';
49
  $dir = $params['dir'];
50
  $orderby = $params['orderby'];
51
  $order = $params['order'];
52
+ if ( $orderby != 'size' && $orderby != 'name' ) {
53
+ $orderby = 'date_modified';
54
+ }
55
+ if ( $order != 'asc' ) {
56
+ $order = 'desc';
57
+ }
58
  $search = $params['search'];
59
  $page_num = $params['page_num'];
60
  $page_per = $params['page_per'];
106
  case 'png':
107
  case 'bmp':
108
  case 'gif':
109
+ case 'svg':
110
  return true;
111
  break;
112
  }
155
  $search = $params['search'];
156
  $orderby = $params['orderby'];
157
  $order = $params['order'];
158
+ if ( $orderby != 'size' && $orderby != 'name' ) {
159
+ $orderby = 'date_modified';
160
+ }
161
+ if ( $order != 'asc' ) {
162
+ $order = 'desc';
163
+ }
164
 
165
  $query = ' SELECT * FROM `' . $wpdb->prefix . 'bwg_file_paths`';
166
  $query .= ' WHERE `path` = "' . $dir . '"';
filemanager/view.php CHANGED
@@ -292,7 +292,7 @@ class FilemanagerView {
292
  'uploaded' : '<?php _e('Uploaded', BWG()->prefix); ?>',
293
  'upload_failed' : '<?php _e('Upload failed', BWG()->prefix); ?>',
294
  'upload_problem': '<?php _e('There has been a problem while trying to upload the following images. Please try to upload them again.', BWG()->prefix); ?>',
295
- 'allowed_upload_types' : '<?php _e('Allowed upload types JPG, JPEG, GIF, PNG.', BWG()->prefix); ?>'
296
  };
297
  last_uploaded = [];
298
  jQuery(document).ready(function () {
@@ -312,7 +312,7 @@ class FilemanagerView {
312
  dataType: "json",
313
  dropZone: jQuery("#uploader_hitter"),
314
  limitConcurrentUploads: 10, // upload step by step
315
- acceptFileTypes: /(\.|\/)(jpe?g|gif|png)$/i,
316
  submit: function (e, data) {
317
  localStorage.removeItem( "bwg_selected_images" );
318
  isUploading = true;
@@ -379,7 +379,7 @@ class FilemanagerView {
379
  fail: function (e, data) {
380
  if ( data.textStatus == 'error' ) {
381
  var filename = data.files[0].name;
382
- var regex = /\.(jpe?g|png|gif)$/i;
383
  if ( ! regex.test(filename) ) {
384
  allowed_files.push(filename);
385
  errorFiles['allowed'] = allowed_files;
292
  'uploaded' : '<?php _e('Uploaded', BWG()->prefix); ?>',
293
  'upload_failed' : '<?php _e('Upload failed', BWG()->prefix); ?>',
294
  'upload_problem': '<?php _e('There has been a problem while trying to upload the following images. Please try to upload them again.', BWG()->prefix); ?>',
295
+ 'allowed_upload_types' : '<?php _e('Allowed upload types JPG, JPEG, GIF, PNG, SVG.', BWG()->prefix); ?>'
296
  };
297
  last_uploaded = [];
298
  jQuery(document).ready(function () {
312
  dataType: "json",
313
  dropZone: jQuery("#uploader_hitter"),
314
  limitConcurrentUploads: 10, // upload step by step
315
+ acceptFileTypes: /(\.|\/)(jpe?g|gif|png|svg)$/i,
316
  submit: function (e, data) {
317
  localStorage.removeItem( "bwg_selected_images" );
318
  isUploading = true;
379
  fail: function (e, data) {
380
  if ( data.textStatus == 'error' ) {
381
  var filename = data.files[0].name;
382
+ var regex = /\.(jpe?g|png|gif|svg)$/i;
383
  if ( ! regex.test(filename) ) {
384
  allowed_files.push(filename);
385
  errorFiles['allowed'] = allowed_files;
framework/BWGOptions.php CHANGED
@@ -46,6 +46,7 @@ class WD_BWG_Options {
46
  public $showthumbs_name = 0;
47
  public $show_gallery_description = 0;
48
  public $image_title_show_hover = 'hover';
 
49
  public $play_icon = 1;
50
  public $gallery_download = 0;
51
  public $ecommerce_icon_show_hover = 'none';
46
  public $showthumbs_name = 0;
47
  public $show_gallery_description = 0;
48
  public $image_title_show_hover = 'hover';
49
+ public $show_thumb_description = 0;
50
  public $play_icon = 1;
51
  public $gallery_download = 0;
52
  public $ecommerce_icon_show_hover = 'none';
framework/WDWLibrary.php CHANGED
@@ -35,7 +35,6 @@ class WDWLibrary {
35
  self::validate_data($value, 0, $callback);
36
  }
37
 
38
-
39
  return $value;
40
  }
41
 
@@ -875,6 +874,26 @@ class WDWLibrary {
875
  return $url;
876
  }
877
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
878
  public static function get_used_google_fonts($theme = null, $shortcode = null) {
879
  global $wpdb;
880
 
@@ -1863,6 +1882,7 @@ class WDWLibrary {
1863
  $defaults['showthumbs_name'] = self::get_option_value('showthumbs_name', 'showthumbs_name', 'showthumbs_name', $use_option_defaults, $params);
1864
  $defaults['show_gallery_description'] = self::get_option_value('show_gallery_description', 'show_gallery_description', 'show_gallery_description', $use_option_defaults, $params);
1865
  $defaults['image_title'] = self::get_option_value('image_title', 'image_title', 'image_title_show_hover', $from || $use_option_defaults, $params);
 
1866
  $defaults['play_icon'] = self::get_option_value('play_icon', 'play_icon', 'play_icon', $use_option_defaults, $params);
1867
  $defaults['gallery_download'] = self::get_option_value('gallery_download', 'gallery_download', 'gallery_download', $use_option_defaults, $params);
1868
  $defaults['ecommerce_icon'] = self::get_option_value('ecommerce_icon_show_hover', 'ecommerce_icon', 'ecommerce_icon_show_hover', $use_option_defaults, $params);
@@ -2511,6 +2531,7 @@ class WDWLibrary {
2511
  case 'jpeg':
2512
  case 'gif':
2513
  case 'png':
 
2514
  return TRUE;
2515
  break;
2516
  }
@@ -2587,7 +2608,7 @@ class WDWLibrary {
2587
  $show_content = $show_content && !BWG()->is_pro;
2588
  $support_forum_link = 'https://wordpress.org/support/plugin/photo-gallery/#new-post';
2589
  $premium_link = BWG()->plugin_link . BWG()->utm_source;
2590
- wp_enqueue_style(BWG()->prefix . '- roboto');
2591
  wp_enqueue_style(BWG()->prefix . '-pricing');
2592
  ob_start();
2593
  ?>
@@ -2818,20 +2839,23 @@ class WDWLibrary {
2818
  }
2819
 
2820
  /**
2821
- * Pre.
2822
- *
2823
- * @param bool $data
2824
- * @param bool $e
2825
  */
2826
- public static function pre( $data = FALSE, $e = FALSE ) {
2827
- $bt = debug_backtrace();
2828
- $caller = array_shift($bt);
2829
- print "<pre><xmp>";
2830
- print_r($data);
2831
- print "\r\n Called in : " . $caller['file'] . ", At line:" . $caller['line'];
2832
- echo "</xmp></pre>\n";
2833
- if ( $e ) {
2834
- exit;
2835
- }
 
 
 
 
 
2836
  }
2837
  }
35
  self::validate_data($value, 0, $callback);
36
  }
37
 
 
38
  return $value;
39
  }
40
 
874
  return $url;
875
  }
876
 
877
+ /**
878
+ * Get all google fonts used in themes and options.
879
+ *
880
+ * @return string
881
+ */
882
+ public static function get_all_google_fonts() {
883
+ global $wpdb;
884
+
885
+ $url = '';
886
+ $google_fonts = self::get_google_fonts();
887
+ if ( !empty( $google_fonts )){
888
+ $query = implode("|", str_replace(' ', '+', $google_fonts));
889
+
890
+ $url = 'https://fonts.googleapis.com/css?family=' . $query;
891
+ $url .= '&subset=greek,latin,greek-ext,vietnamese,cyrillic-ext,latin-ext,cyrillic';
892
+ }
893
+
894
+ return $url;
895
+ }
896
+
897
  public static function get_used_google_fonts($theme = null, $shortcode = null) {
898
  global $wpdb;
899
 
1882
  $defaults['showthumbs_name'] = self::get_option_value('showthumbs_name', 'showthumbs_name', 'showthumbs_name', $use_option_defaults, $params);
1883
  $defaults['show_gallery_description'] = self::get_option_value('show_gallery_description', 'show_gallery_description', 'show_gallery_description', $use_option_defaults, $params);
1884
  $defaults['image_title'] = self::get_option_value('image_title', 'image_title', 'image_title_show_hover', $from || $use_option_defaults, $params);
1885
+ $defaults['show_thumb_description'] = self::get_option_value('show_thumb_description', 'show_thumb_description', 'show_thumb_description', $use_option_defaults, $params);
1886
  $defaults['play_icon'] = self::get_option_value('play_icon', 'play_icon', 'play_icon', $use_option_defaults, $params);
1887
  $defaults['gallery_download'] = self::get_option_value('gallery_download', 'gallery_download', 'gallery_download', $use_option_defaults, $params);
1888
  $defaults['ecommerce_icon'] = self::get_option_value('ecommerce_icon_show_hover', 'ecommerce_icon', 'ecommerce_icon_show_hover', $use_option_defaults, $params);
2531
  case 'jpeg':
2532
  case 'gif':
2533
  case 'png':
2534
+ case 'svg':
2535
  return TRUE;
2536
  break;
2537
  }
2608
  $show_content = $show_content && !BWG()->is_pro;
2609
  $support_forum_link = 'https://wordpress.org/support/plugin/photo-gallery/#new-post';
2610
  $premium_link = BWG()->plugin_link . BWG()->utm_source;
2611
+ wp_enqueue_style(BWG()->prefix . '-roboto');
2612
  wp_enqueue_style(BWG()->prefix . '-pricing');
2613
  ob_start();
2614
  ?>
2839
  }
2840
 
2841
  /**
2842
+ * Get gallery allowed types.
2843
+ * @return array
 
 
2844
  */
2845
+ public static function get_gallery_allowed_types() {
2846
+ $types = array(
2847
+ 'thumbnails',
2848
+ 'thumbnails_masonry',
2849
+ 'thumbnails_mosaic',
2850
+ 'slideshow',
2851
+ 'image_browser',
2852
+ 'blog_style',
2853
+ 'carousel',
2854
+ 'album_compact_preview',
2855
+ 'album_masonry_preview',
2856
+ 'album_extended_preview'
2857
+ );
2858
+
2859
+ return $types;
2860
  }
2861
  }
framework/WDWSitemap.php CHANGED
@@ -58,7 +58,6 @@ final class WDWSitemap {
58
 
59
  // 'gallery_type' is the only parameter not being checked.
60
  // Checking for incomplete shortcodes.
61
- // TODO: Gallery group types are commented till the bug with Yoast sitemap is fixed.
62
  $gallery_allowed_types = array(
63
  'thumbnails',
64
  'thumbnails_masonry',
@@ -67,9 +66,9 @@ final class WDWSitemap {
67
  'image_browser',
68
  'blog_style',
69
  'carousel',
70
- /*'album_compact_preview',
71
  'album_masonry_preview',
72
- 'album_extended_preview',*/
73
  );
74
  if ( isset($params['gallery_type']) && in_array($params['gallery_type'], $gallery_allowed_types) ) {
75
  $pairs = WDWLibrary::get_shortcode_option_params( $params );
58
 
59
  // 'gallery_type' is the only parameter not being checked.
60
  // Checking for incomplete shortcodes.
 
61
  $gallery_allowed_types = array(
62
  'thumbnails',
63
  'thumbnails_masonry',
66
  'image_browser',
67
  'blog_style',
68
  'carousel',
69
+ 'album_compact_preview',
70
  'album_masonry_preview',
71
+ 'album_extended_preview',
72
  );
73
  if ( isset($params['gallery_type']) && in_array($params['gallery_type'], $gallery_allowed_types) ) {
74
  $pairs = WDWLibrary::get_shortcode_option_params( $params );
framework/WD_BWG_Theme.php CHANGED
@@ -523,6 +523,9 @@ class WD_BWG_Theme {
523
  public $thumb_title_font_style = "Ubuntu";
524
  public $thumb_title_font_weight = "bold";
525
  public $thumb_title_margin = "2px";
 
 
 
526
  public $thumb_title_pos = "bottom";
527
  public $thumb_title_shadow = "";
528
  public $thumb_transition = 1;
523
  public $thumb_title_font_style = "Ubuntu";
524
  public $thumb_title_font_weight = "bold";
525
  public $thumb_title_margin = "2px";
526
+ public $thumb_description_font_color = "323A45";
527
+ public $thumb_description_font_style = "Ubuntu";
528
+ public $thumb_description_font_size = 12;
529
  public $thumb_title_pos = "bottom";
530
  public $thumb_title_shadow = "";
531
  public $thumb_transition = 1;
framework/howto/howto.php CHANGED
@@ -5,12 +5,12 @@ wp_print_scripts('jquery-ui-tabs');
5
  <link href="https://fonts.googleapis.com/css?family=Ubuntu:300,400,500,700" rel="stylesheet">
6
  <script>
7
  function wd_how_to_use() {
8
- jQuery('#wd_howto_container').toggleClass('bwg-hidden');
9
  jQuery('body').toggleClass('wd-howto-disable-scroll');
10
  }
11
  function wd_toggle_mobile_menu() {
12
  jQuery('.wd-howto-menu').toggleClass('wd-howto-menu-opened');
13
- jQuery('.wd-howto-menu-overlay').toggleClass('bwg-hidden');
14
  }
15
  jQuery(document).ready(function () {
16
  jQuery('#wd_howto_wrap').tabs({
@@ -21,7 +21,7 @@ wp_print_scripts('jquery-ui-tabs');
21
  }
22
  });
23
  jQuery(document).keyup(function(e) {
24
- if ( e.keyCode == 27 && !jQuery('#wd_howto_container').hasClass('bwg-hidden') ) {
25
  wd_how_to_use();
26
  }
27
  });
@@ -331,10 +331,10 @@ wp_print_scripts('jquery-ui-tabs');
331
  float: right;
332
  }
333
  </style>
334
- <div id="wd_howto_container" class="bwg-hidden">
335
  <div class="wd-howto-overlay" onclick="wd_how_to_use(); return false;"></div>
336
  <div id="wd_howto_wrap" class="wd-howto-wrap">
337
- <div class="wd-howto-menu-overlay bwg-hidden" onclick="wd_toggle_mobile_menu()"></div>
338
  <div class="wd-howto-menu">
339
  <div class="wd-howto-title"><?php _e('How to ...', BWG()->prefix); ?></div>
340
  <ul>
5
  <link href="https://fonts.googleapis.com/css?family=Ubuntu:300,400,500,700" rel="stylesheet">
6
  <script>
7
  function wd_how_to_use() {
8
+ jQuery('#wd_howto_container').toggleClass('hidden');
9
  jQuery('body').toggleClass('wd-howto-disable-scroll');
10
  }
11
  function wd_toggle_mobile_menu() {
12
  jQuery('.wd-howto-menu').toggleClass('wd-howto-menu-opened');
13
+ jQuery('.wd-howto-menu-overlay').toggleClass('hidden');
14
  }
15
  jQuery(document).ready(function () {
16
  jQuery('#wd_howto_wrap').tabs({
21
  }
22
  });
23
  jQuery(document).keyup(function(e) {
24
+ if ( e.keyCode == 27 && !jQuery('#wd_howto_container').hasClass('hidden') ) {
25
  wd_how_to_use();
26
  }
27
  });
331
  float: right;
332
  }
333
  </style>
334
+ <div id="wd_howto_container" class="hidden">
335
  <div class="wd-howto-overlay" onclick="wd_how_to_use(); return false;"></div>
336
  <div id="wd_howto_wrap" class="wd-howto-wrap">
337
+ <div class="wd-howto-menu-overlay hidden" onclick="wd_toggle_mobile_menu()"></div>
338
  <div class="wd-howto-menu">
339
  <div class="wd-howto-title"><?php _e('How to ...', BWG()->prefix); ?></div>
340
  <ul>
frontend/controllers/controller.php CHANGED
@@ -94,6 +94,9 @@ class BWGControllerSite {
94
  echo WDWLibrary::message(__('There is no album selected or the gallery was deleted.', BWG()->prefix), 'wd_error');
95
  return;
96
  }
 
 
 
97
 
98
  // Disable features for album.
99
  $params['gallery_download'] = FALSE;
@@ -136,7 +139,8 @@ class BWGControllerSite {
136
  $params['items_per_page'] = array('images_per_page' => $params['images_per_page'], 'load_more_image_count' => $params['load_more_image_count']);
137
  $album_gallery_rows = $this->model->get_alb_gals_row($bwg, $params['album_gallery_id'], $params['images_per_page'], $params['album_sort_by'], $params['album_order_by'], $params['image_enable_page'], $from);
138
  $params['album_gallery_rows'] = $album_gallery_rows;
139
- } else { // Gallery views (thumbnail/masonry/mosaic).
 
140
  /* Set parameters for gallery view from album shortcode.*/
141
  /* album used all parmas for view */
142
  if (isset($params['compuct_album_image_thumb_width'])) { // Compact album view.
@@ -279,7 +283,13 @@ class BWGControllerSite {
279
  $params['gallery_row'] = $gallery_row;
280
  }
281
 
 
 
 
282
  $params['image_rows'] = $this->model->get_image_rows_data($params['gallery_id'], $bwg, $params['type'], 'bwg_tag_id_bwg_' . $params['gallery_type'] . '_' . $bwg, $params['tag'], $params['images_per_page'], $params['load_more_image_count'], $params['sort_by'], $params['order_by']);
 
 
 
283
  // Disable Jetpack Photon module for gallery images.
284
  $this->thumb_urls = $params['image_rows']['thumb_urls'];
285
  if (class_exists('Jetpack') && Jetpack::is_module_active('photon')) {
@@ -288,7 +298,8 @@ class BWGControllerSite {
288
 
289
  $params['tags_rows'] = $this->model->get_tags_rows_data($params['gallery_id']);
290
  }
291
- } else { // View type gallery.
 
292
  $params['view_type'] = 'gallery';
293
  $params['album_view_type'] = '';
294
  $params['album_gallery_id'] = 0;
@@ -320,6 +331,7 @@ class BWGControllerSite {
320
  $params['load_more_image_count'] = (isset($params['blog_style_load_more_image_count']) && ($params['image_enable_page'] == 2)) ? $params['blog_style_load_more_image_count'] : $params['images_per_page'];
321
  $params['items_per_page'] = array('images_per_page' => $params['images_per_page'], 'load_more_image_count' => $params['load_more_image_count']);
322
  }
 
323
 
324
  if ('xml_sitemap' == $from_shortcode) {
325
  $params['images_per_page'] = 0;
@@ -351,8 +363,8 @@ class BWGControllerSite {
351
  'order_by' => $params['order_by'], // For widgets.
352
  'current_url' => urlencode( $params['current_url'] ),
353
  );
354
- $params['params_array'] = $params_array;
355
 
 
356
  $params['theme_row'] = $theme_row;
357
 
358
  $this->display($params, $from_shortcode, $bwg);
94
  echo WDWLibrary::message(__('There is no album selected or the gallery was deleted.', BWG()->prefix), 'wd_error');
95
  return;
96
  }
97
+ if ('xml_sitemap' == $from_shortcode) {
98
+ return $this->model->get_image_rows_data_from_album($album_row->id);
99
+ }
100
 
101
  // Disable features for album.
102
  $params['gallery_download'] = FALSE;
139
  $params['items_per_page'] = array('images_per_page' => $params['images_per_page'], 'load_more_image_count' => $params['load_more_image_count']);
140
  $album_gallery_rows = $this->model->get_alb_gals_row($bwg, $params['album_gallery_id'], $params['images_per_page'], $params['album_sort_by'], $params['album_order_by'], $params['image_enable_page'], $from);
141
  $params['album_gallery_rows'] = $album_gallery_rows;
142
+ }
143
+ else { // Gallery views (thumbnail/masonry/mosaic).
144
  /* Set parameters for gallery view from album shortcode.*/
145
  /* album used all parmas for view */
146
  if (isset($params['compuct_album_image_thumb_width'])) { // Compact album view.
283
  $params['gallery_row'] = $gallery_row;
284
  }
285
 
286
+ if ('xml_sitemap' == $from_shortcode) {
287
+ $params['images_per_page'] = 0;
288
+ }
289
  $params['image_rows'] = $this->model->get_image_rows_data($params['gallery_id'], $bwg, $params['type'], 'bwg_tag_id_bwg_' . $params['gallery_type'] . '_' . $bwg, $params['tag'], $params['images_per_page'], $params['load_more_image_count'], $params['sort_by'], $params['order_by']);
290
+ if ('xml_sitemap' == $from_shortcode) {
291
+ return $params['image_rows']['images'];
292
+ }
293
  // Disable Jetpack Photon module for gallery images.
294
  $this->thumb_urls = $params['image_rows']['thumb_urls'];
295
  if (class_exists('Jetpack') && Jetpack::is_module_active('photon')) {
298
 
299
  $params['tags_rows'] = $this->model->get_tags_rows_data($params['gallery_id']);
300
  }
301
+ }
302
+ else { // View type gallery.
303
  $params['view_type'] = 'gallery';
304
  $params['album_view_type'] = '';
305
  $params['album_gallery_id'] = 0;
331
  $params['load_more_image_count'] = (isset($params['blog_style_load_more_image_count']) && ($params['image_enable_page'] == 2)) ? $params['blog_style_load_more_image_count'] : $params['images_per_page'];
332
  $params['items_per_page'] = array('images_per_page' => $params['images_per_page'], 'load_more_image_count' => $params['load_more_image_count']);
333
  }
334
+ $params['masonry_hor_ver'] = (isset($params['masonry_hor_ver']) && $params['masonry_hor_ver'] == 'horizontal') ? 'horizontal' : 'vertical';
335
 
336
  if ('xml_sitemap' == $from_shortcode) {
337
  $params['images_per_page'] = 0;
363
  'order_by' => $params['order_by'], // For widgets.
364
  'current_url' => urlencode( $params['current_url'] ),
365
  );
 
366
 
367
+ $params['params_array'] = $params_array;
368
  $params['theme_row'] = $theme_row;
369
 
370
  $this->display($params, $from_shortcode, $bwg);
frontend/models/model.php CHANGED
@@ -179,6 +179,18 @@ class BWGModelSite {
179
  return array( 'images' => $images, 'page_nav' => $page_nav, 'thumb_urls' => $thumb_urls );
180
  }
181
 
 
 
 
 
 
 
 
 
 
 
 
 
182
  public function get_tags_rows_data($gallery_id) {
183
  global $wpdb;
184
  $row = $wpdb->get_results('Select t1.* FROM ' . $wpdb->prefix . 'terms AS t1 LEFT JOIN ' . $wpdb->prefix . 'term_taxonomy AS t2 ON t1.term_id = t2.term_id' . ($gallery_id ? ' LEFT JOIN (SELECT DISTINCT tag_id , gallery_id FROM ' . $wpdb->prefix . 'bwg_image_tag) AS t3 ON t1.term_id=t3.tag_id' : '') . ' WHERE taxonomy="bwg_tag"' . ($gallery_id ? ' AND t3.gallery_id="' . $gallery_id . '"' : '') . ' ORDER BY t1.name ASC');
179
  return array( 'images' => $images, 'page_nav' => $page_nav, 'thumb_urls' => $thumb_urls );
180
  }
181
 
182
+ /**
183
+ * Get images from Gallery Group for XML Sitemap.
184
+ * Selecting only first level Galleries to avoid unnecessarily big data.
185
+ * Inner Gallery Groups data will not be included in sitemap.
186
+ */
187
+ public function get_image_rows_data_from_album($album_id) {
188
+ global $wpdb;
189
+ $where = $album_id ? 'image.gallery_id IN (SELECT alb_gal_id FROM `' . $wpdb->prefix . 'bwg_album_gallery` as albgal WHERE albgal.album_id=' . ((int)$album_id) . ' AND (SELECT gal.published from `' . $wpdb->prefix . 'bwg_gallery` as gal WHERE gal.id=albgal.alb_gal_id))' : '(SELECT gal.published from `' . $wpdb->prefix . 'bwg_gallery` as gal WHERE gal.id=image.gallery_id)=1';
190
+ $query = 'SELECT image.* FROM `' . $wpdb->prefix . 'bwg_image` as image WHERE image.published=1 AND ' . $where;
191
+ return $wpdb->get_results($query);
192
+ }
193
+
194
  public function get_tags_rows_data($gallery_id) {
195
  global $wpdb;
196
  $row = $wpdb->get_results('Select t1.* FROM ' . $wpdb->prefix . 'terms AS t1 LEFT JOIN ' . $wpdb->prefix . 'term_taxonomy AS t2 ON t1.term_id = t2.term_id' . ($gallery_id ? ' LEFT JOIN (SELECT DISTINCT tag_id , gallery_id FROM ' . $wpdb->prefix . 'bwg_image_tag) AS t3 ON t1.term_id=t3.tag_id' : '') . ' WHERE taxonomy="bwg_tag"' . ($gallery_id ? ' AND t3.gallery_id="' . $gallery_id . '"' : '') . ' ORDER BY t1.name ASC');
frontend/views/BWGViewAlbum_compact_preview.php CHANGED
@@ -93,10 +93,12 @@ class BWGViewAlbum_compact_preview extends BWGViewSite {
93
  $image_thumb_width = $resolution_th[0];
94
  $image_thumb_height = $resolution_th[1];
95
  }
 
 
96
  ?>
97
  <div class="bwg-item">
98
  <a class="bwg-a <?php echo $from !== "widget" ? 'bwg-album ' : ''; ?>bwg_album_<?php echo $bwg; ?>"
99
- <?php echo (BWG()->options->enable_seo && $from !== "widget" ? "href='" . esc_url($href) . "'" : ""); ?>
100
  <?php echo $from === "widget" ? 'href="' . $row->permalink . '"' : ''; ?>
101
  data-container_id="<?php echo $params['container_id']; ?>"
102
  data-def_type="<?php echo $row->def_type; ?>"
93
  $image_thumb_width = $resolution_th[0];
94
  $image_thumb_height = $resolution_th[1];
95
  }
96
+ $enable_seo = (int) BWG()->options->enable_seo;
97
+ $enable_dynamic_url = (int) BWG()->options->front_ajax;
98
  ?>
99
  <div class="bwg-item">
100
  <a class="bwg-a <?php echo $from !== "widget" ? 'bwg-album ' : ''; ?>bwg_album_<?php echo $bwg; ?>"
101
+ <?php echo ( ($enable_seo || $enable_dynamic_url) && $from !== "widget" ? "href='" . esc_url($href) . "'" : ""); ?>
102
  <?php echo $from === "widget" ? 'href="' . $row->permalink . '"' : ''; ?>
103
  data-container_id="<?php echo $params['container_id']; ?>"
104
  data-def_type="<?php echo $row->def_type; ?>"
frontend/views/BWGViewAlbum_extended_preview.php CHANGED
@@ -5,7 +5,7 @@ class BWGViewAlbum_extended_preview extends BWGViewSite {
5
 
6
  public function display( $params = array(), $bwg = 0 ) {
7
  /* Gallery view class.*/
8
- $gallery_type = 'Thumbnails';
9
  if ( $params['gallery_view_type'] == 'masonry' ) {
10
  $gallery_type = 'Thumbnails_masonry';
11
  }
@@ -15,13 +15,13 @@ class BWGViewAlbum_extended_preview extends BWGViewSite {
15
  elseif ( $params['gallery_view_type'] == 'mosaic' ) {
16
  $gallery_type = 'Thumbnails_mosaic';
17
  }
18
- elseif ( $params['gallery_view_type'] == 'slideshow' ) {
19
- $gallery_type = 'Slideshow';
20
- }
21
- elseif ( $params['gallery_view_type'] == 'image_browser' ) {
22
- $gallery_type = 'Image_browser';
23
- }
24
- elseif ( $params['gallery_view_type'] == 'blog_style' ) {
25
  $gallery_type = 'Blog_style';
26
  }
27
  elseif ( $params['gallery_view_type'] == 'carousel' ) {
@@ -103,11 +103,13 @@ class BWGViewAlbum_extended_preview extends BWGViewSite {
103
  $image_thumb_width = $resolution_th[0];
104
  $image_thumb_height = $resolution_th[1];
105
  }
 
 
106
  ?>
107
  <div class="bwg-extended-item">
108
  <div class="bwg-extended-item0">
109
  <a class="bwg-a bwg-album bwg_album_<?php echo $bwg; ?>"
110
- <?php echo(BWG()->options->enable_seo ? "href='" . esc_url($href) . "'" : ""); ?>
111
  style="font-size: 0;"
112
  data-bwg="<?php echo $bwg; ?>"
113
  data-container_id="<?php echo $params['container_id']; ?>"
@@ -133,7 +135,7 @@ class BWGViewAlbum_extended_preview extends BWGViewSite {
133
  if ( $row->name ) {
134
  ?>
135
  <a class="bwg-album bwg_album_<?php echo $bwg; ?>"
136
- <?php echo (BWG()->options->enable_seo ? "href='" . esc_url($href) . "'" : ""); ?>
137
  data-bwg="<?php echo $bwg; ?>"
138
  data-container_id="<?php echo $params['container_id']; ?>"
139
  data-alb_gal_id="<?php echo(($params['album_gallery_id'] != 0) ? $row->alb_gal_id : $row->id); ?>"
@@ -274,7 +276,7 @@ class BWGViewAlbum_extended_preview extends BWGViewSite {
274
  font-weight: <?php echo $theme_row->album_extended_desc_font_weight; ?>;
275
  font-family: <?php echo $theme_row->album_extended_desc_font_style; ?>;
276
  }
277
- #bwg_container1_<?php echo $bwg; ?> #bwg_container2_<?php echo $bwg; ?> .bwg-container-<?php echo $bwg; ?>.bwg-album-extended .bwg_description_spun1_<?php echo $bwg; ?> {
278
  border: <?php echo $theme_row->album_extended_desc_span_border_width; ?>px <?php echo $theme_row->album_extended_desc_span_border_style; ?> #<?php echo $theme_row->album_extended_desc_span_border_color; ?>;
279
  display: inline-block;
280
  color: #<?php echo $theme_row->album_extended_desc_font_color; ?>;
5
 
6
  public function display( $params = array(), $bwg = 0 ) {
7
  /* Gallery view class.*/
8
+ $gallery_type = 'Thumbnails';
9
  if ( $params['gallery_view_type'] == 'masonry' ) {
10
  $gallery_type = 'Thumbnails_masonry';
11
  }
15
  elseif ( $params['gallery_view_type'] == 'mosaic' ) {
16
  $gallery_type = 'Thumbnails_mosaic';
17
  }
18
+ elseif ( $params['gallery_view_type'] == 'slideshow' ) {
19
+ $gallery_type = 'Slideshow';
20
+ }
21
+ elseif ( $params['gallery_view_type'] == 'image_browser' ) {
22
+ $gallery_type = 'Image_browser';
23
+ }
24
+ elseif ( $params['gallery_view_type'] == 'blog_style' ) {
25
  $gallery_type = 'Blog_style';
26
  }
27
  elseif ( $params['gallery_view_type'] == 'carousel' ) {
103
  $image_thumb_width = $resolution_th[0];
104
  $image_thumb_height = $resolution_th[1];
105
  }
106
+ $enable_seo = (int) BWG()->options->enable_seo;
107
+ $enable_dynamic_url = (int) BWG()->options->front_ajax;
108
  ?>
109
  <div class="bwg-extended-item">
110
  <div class="bwg-extended-item0">
111
  <a class="bwg-a bwg-album bwg_album_<?php echo $bwg; ?>"
112
+ <?php echo ( ($enable_seo || $enable_dynamic_url ) ? "href='" . esc_url($href) . "'" : ""); ?>
113
  style="font-size: 0;"
114
  data-bwg="<?php echo $bwg; ?>"
115
  data-container_id="<?php echo $params['container_id']; ?>"
135
  if ( $row->name ) {
136
  ?>
137
  <a class="bwg-album bwg_album_<?php echo $bwg; ?>"
138
+ <?php echo ( ($enable_seo || $enable_dynamic_url) ? "href='" . esc_url($href) . "'" : ""); ?>
139
  data-bwg="<?php echo $bwg; ?>"
140
  data-container_id="<?php echo $params['container_id']; ?>"
141
  data-alb_gal_id="<?php echo(($params['album_gallery_id'] != 0) ? $row->alb_gal_id : $row->id); ?>"
276
  font-weight: <?php echo $theme_row->album_extended_desc_font_weight; ?>;
277
  font-family: <?php echo $theme_row->album_extended_desc_font_style; ?>;
278
  }
279
+ #bwg_container1_<?php echo $bwg; ?> #bwg_container2_<?php echo $bwg; ?> .bwg-container-<?php echo $bwg; ?>.bwg-album-extended .bwg_description_spun1_<?php echo $bwg; ?> .bwg_description_short_<?php echo $bwg; ?> p {
280
  border: <?php echo $theme_row->album_extended_desc_span_border_width; ?>px <?php echo $theme_row->album_extended_desc_span_border_style; ?> #<?php echo $theme_row->album_extended_desc_span_border_color; ?>;
281
  display: inline-block;
282
  color: #<?php echo $theme_row->album_extended_desc_font_color; ?>;
frontend/views/BWGViewGalleryBox.php CHANGED
@@ -54,14 +54,14 @@ class BWGViewGalleryBox {
54
  $image_right_click = isset(BWG()->options->image_right_click) ? BWG()->options->image_right_click : 0;
55
 
56
  require_once BWG()->plugin_dir . "/frontend/models/model.php";
57
- $model_site = new BWGModelSite();
58
  $theme_row = $model_site->get_theme_row_data($theme_id);
59
 
60
  $filmstrip_direction = 'horizontal';
61
  if ($theme_row->lightbox_filmstrip_pos == 'right' || $theme_row->lightbox_filmstrip_pos == 'left') {
62
  $filmstrip_direction = 'vertical';
63
  }
64
- $image_filmstrip_height = 0;
65
  $image_filmstrip_width = 0;
66
  if ( $params['popup_enable_filmstrip'] ) {
67
  if ( $filmstrip_direction == 'horizontal' ) {
@@ -108,6 +108,7 @@ class BWGViewGalleryBox {
108
  $params_array['watermark_width'] = $params['watermark_width'];
109
  $params_array['watermark_height'] = $params['watermark_height'];
110
  }
 
111
  $popup_url = add_query_arg(array($params_array), admin_url('admin-ajax.php'));
112
 
113
  $filmstrip_thumb_margin = trim($theme_row->lightbox_filmstrip_thumb_margin);
@@ -117,34 +118,34 @@ class BWGViewGalleryBox {
117
  $filmstrip_thumb_margin_right = 0;
118
  $filmstrip_thumb_margin_bottom = 0;
119
  $filmstrip_thumb_margin_left = 0;
120
- if ( count($margins_split) == 1 ) {
121
- $filmstrip_thumb_margin_top = (int) $margins_split[0];
122
- $filmstrip_thumb_margin_right = (int) $margins_split[0];
123
- $filmstrip_thumb_margin_bottom = (int) $margins_split[0];
124
- $filmstrip_thumb_margin_left = (int) $margins_split[0];
125
- }
126
- if ( count($margins_split) == 2 ) {
127
- $filmstrip_thumb_margin_top = (int) $margins_split[0];
128
- $filmstrip_thumb_margin_right = (int) $margins_split[1];
129
- $filmstrip_thumb_margin_bottom = (int) $margins_split[0];
130
- $filmstrip_thumb_margin_left = (int) $margins_split[1];
131
- }
132
- if ( count($margins_split) == 3 ) {
133
- $filmstrip_thumb_margin_top = (int) $margins_split[0];
134
- $filmstrip_thumb_margin_right = (int) $margins_split[1];
135
- $filmstrip_thumb_margin_bottom = (int) $margins_split[2];
136
- $filmstrip_thumb_margin_left = (int) $margins_split[1];
137
- }
138
- if ( count($margins_split) == 4 ) {
139
- $filmstrip_thumb_margin_top = (int) $margins_split[0];
140
- $filmstrip_thumb_margin_right = (int) $margins_split[1];
141
- $filmstrip_thumb_margin_bottom = (int) $margins_split[2];
142
- $filmstrip_thumb_margin_left = (int) $margins_split[3];
143
- }
144
- $filmstrip_thumb_top_bottom_space = $filmstrip_thumb_margin_top + $filmstrip_thumb_margin_bottom;
145
- $filmstrip_thumb_right_left_space = $filmstrip_thumb_margin_right + $filmstrip_thumb_margin_left;
146
- $all_images_top_bottom_space = count($image_rows) * $filmstrip_thumb_top_bottom_space;
147
- $all_images_right_left_space = count($image_rows) * $filmstrip_thumb_right_left_space;
148
  $rgb_bwg_image_info_bg_color = WDWLibrary::spider_hex2rgb($theme_row->lightbox_info_bg_color);
149
  $rgb_bwg_image_hit_bg_color = WDWLibrary::spider_hex2rgb($theme_row->lightbox_hit_bg_color);
150
  $rgb_lightbox_ctrl_cont_bg_color = WDWLibrary::spider_hex2rgb($theme_row->lightbox_ctrl_cont_bg_color);
@@ -186,7 +187,6 @@ class BWGViewGalleryBox {
186
  }
187
  .spider_popup_wrap {
188
  background-color: rgba(<?php echo $lightbox_bg_color['red']; ?>, <?php echo $lightbox_bg_color['green']; ?>, <?php echo $lightbox_bg_color['blue']; ?>, <?php echo number_format($lightbox_bg_transparent/ 100, 2, ".", ""); ?>);
189
-
190
  }
191
  .bwg_popup_image {
192
  max-width: <?php echo $params['popup_width'] - ($filmstrip_direction == 'vertical' ? $image_filmstrip_width : 0); ?>px;
@@ -368,10 +368,10 @@ class BWGViewGalleryBox {
368
  color: #<?php echo $theme_row->lightbox_comment_bg_color; ?>;
369
  padding: <?php echo $theme_row->lightbox_comment_button_padding; ?>;
370
  }
371
- .bwg_comments .bwg-submit-disabled:hover {
372
- padding: <?php echo $theme_row->lightbox_comment_button_padding; ?> !important;
373
- border-radius: <?php echo $theme_row->lightbox_comment_button_border_radius; ?> !important;
374
- }
375
  .bwg_comments input[type="text"],
376
  .bwg_comments textarea,
377
  .bwg_ecommerce_panel input[type="text"],
@@ -763,7 +763,7 @@ class BWGViewGalleryBox {
763
  <div id="bwg_image_container" class="bwg_image_container">
764
  <?php
765
  echo $this->loading();
766
- $share_url = '';
767
  if ($params['popup_enable_ctrl_btn']) {
768
  $share_url = add_query_arg(array('curr_url' => urlencode($current_url), 'image_id' => $current_image_id), WDWLibrary::get_share_page()) . '#bwg' . $gallery_id . '/' . $current_image_id;
769
  ?>
54
  $image_right_click = isset(BWG()->options->image_right_click) ? BWG()->options->image_right_click : 0;
55
 
56
  require_once BWG()->plugin_dir . "/frontend/models/model.php";
57
+ $model_site = new BWGModelSite();
58
  $theme_row = $model_site->get_theme_row_data($theme_id);
59
 
60
  $filmstrip_direction = 'horizontal';
61
  if ($theme_row->lightbox_filmstrip_pos == 'right' || $theme_row->lightbox_filmstrip_pos == 'left') {
62
  $filmstrip_direction = 'vertical';
63
  }
64
+ $image_filmstrip_height = 0;
65
  $image_filmstrip_width = 0;
66
  if ( $params['popup_enable_filmstrip'] ) {
67
  if ( $filmstrip_direction == 'horizontal' ) {
108
  $params_array['watermark_width'] = $params['watermark_width'];
109
  $params_array['watermark_height'] = $params['watermark_height'];
110
  }
111
+
112
  $popup_url = add_query_arg(array($params_array), admin_url('admin-ajax.php'));
113
 
114
  $filmstrip_thumb_margin = trim($theme_row->lightbox_filmstrip_thumb_margin);
118
  $filmstrip_thumb_margin_right = 0;
119
  $filmstrip_thumb_margin_bottom = 0;
120
  $filmstrip_thumb_margin_left = 0;
121
+ if ( count($margins_split) == 1 ) {
122
+ $filmstrip_thumb_margin_top = (int) $margins_split[0];
123
+ $filmstrip_thumb_margin_right = (int) $margins_split[0];
124
+ $filmstrip_thumb_margin_bottom = (int) $margins_split[0];
125
+ $filmstrip_thumb_margin_left = (int) $margins_split[0];
126
+ }
127
+ if ( count($margins_split) == 2 ) {
128
+ $filmstrip_thumb_margin_top = (int) $margins_split[0];
129
+ $filmstrip_thumb_margin_right = (int) $margins_split[1];
130
+ $filmstrip_thumb_margin_bottom = (int) $margins_split[0];
131
+ $filmstrip_thumb_margin_left = (int) $margins_split[1];
132
+ }
133
+ if ( count($margins_split) == 3 ) {
134
+ $filmstrip_thumb_margin_top = (int) $margins_split[0];
135
+ $filmstrip_thumb_margin_right = (int) $margins_split[1];
136
+ $filmstrip_thumb_margin_bottom = (int) $margins_split[2];
137
+ $filmstrip_thumb_margin_left = (int) $margins_split[1];
138
+ }
139
+ if ( count($margins_split) == 4 ) {
140
+ $filmstrip_thumb_margin_top = (int) $margins_split[0];
141
+ $filmstrip_thumb_margin_right = (int) $margins_split[1];
142
+ $filmstrip_thumb_margin_bottom = (int) $margins_split[2];
143
+ $filmstrip_thumb_margin_left = (int) $margins_split[3];
144
+ }
145
+ $filmstrip_thumb_top_bottom_space = $filmstrip_thumb_margin_top + $filmstrip_thumb_margin_bottom;
146
+ $filmstrip_thumb_right_left_space = $filmstrip_thumb_margin_right + $filmstrip_thumb_margin_left;
147
+ $all_images_top_bottom_space = count($image_rows) * $filmstrip_thumb_top_bottom_space;
148
+ $all_images_right_left_space = count($image_rows) * $filmstrip_thumb_right_left_space;
149
  $rgb_bwg_image_info_bg_color = WDWLibrary::spider_hex2rgb($theme_row->lightbox_info_bg_color);
150
  $rgb_bwg_image_hit_bg_color = WDWLibrary::spider_hex2rgb($theme_row->lightbox_hit_bg_color);
151
  $rgb_lightbox_ctrl_cont_bg_color = WDWLibrary::spider_hex2rgb($theme_row->lightbox_ctrl_cont_bg_color);
187
  }
188
  .spider_popup_wrap {
189
  background-color: rgba(<?php echo $lightbox_bg_color['red']; ?>, <?php echo $lightbox_bg_color['green']; ?>, <?php echo $lightbox_bg_color['blue']; ?>, <?php echo number_format($lightbox_bg_transparent/ 100, 2, ".", ""); ?>);
 
190
  }
191
  .bwg_popup_image {
192
  max-width: <?php echo $params['popup_width'] - ($filmstrip_direction == 'vertical' ? $image_filmstrip_width : 0); ?>px;
368
  color: #<?php echo $theme_row->lightbox_comment_bg_color; ?>;
369
  padding: <?php echo $theme_row->lightbox_comment_button_padding; ?>;
370
  }
371
+ .bwg_comments .bwg-submit-disabled:hover {
372
+ padding: <?php echo $theme_row->lightbox_comment_button_padding; ?> !important;
373
+ border-radius: <?php echo $theme_row->lightbox_comment_button_border_radius; ?> !important;
374
+ }
375
  .bwg_comments input[type="text"],
376
  .bwg_comments textarea,
377
  .bwg_ecommerce_panel input[type="text"],
763
  <div id="bwg_image_container" class="bwg_image_container">
764
  <?php
765
  echo $this->loading();
766
+ $share_url = '';
767
  if ($params['popup_enable_ctrl_btn']) {
768
  $share_url = add_query_arg(array('curr_url' => urlencode($current_url), 'image_id' => $current_image_id), WDWLibrary::get_share_page()) . '#bwg' . $gallery_id . '/' . $current_image_id;
769
  ?>
frontend/views/BWGViewSlideshow.php CHANGED
@@ -240,6 +240,13 @@ public function display($params = array(), $bwg = 0) {
240
  $image_thumb_height = $slideshow_filmstrip_height;
241
  }
242
  }
 
 
 
 
 
 
 
243
  $scale = max($slideshow_filmstrip_width / $image_thumb_width, $slideshow_filmstrip_height / $image_thumb_height);
244
  $image_thumb_width *= $scale;
245
  $image_thumb_height *= $scale;
240
  $image_thumb_height = $slideshow_filmstrip_height;
241
  }
242
  }
243
+ if ( is_null($image_thumb_width) || is_null($image_thumb_height) ) {
244
+ $res = explode('x', $image_row->resolution_thumb);
245
+ if ( !empty($res) && isset($res[1]) ) {
246
+ $image_thumb_width = $res[0];
247
+ $image_thumb_height = $res[1];
248
+ }
249
+ }
250
  $scale = max($slideshow_filmstrip_width / $image_thumb_width, $slideshow_filmstrip_height / $image_thumb_height);
251
  $image_thumb_width *= $scale;
252
  $image_thumb_height *= $scale;
frontend/views/BWGViewThumbnails.php CHANGED
@@ -41,6 +41,7 @@ class BWGViewThumbnails extends BWGViewSite {
41
  $data_image_id = '';
42
  $href = '';
43
  $title = '<div class="bwg-title1"><div class="bwg-title2">' . ($image_row->alt ? htmlspecialchars_decode($image_row->alt, ENT_COMPAT | ENT_QUOTES) : '&nbsp;') . '</div></div>';
 
44
  $play_icon = '<div class="bwg-play-icon1"><i title="' . __('Play', BWG()->prefix) . '" class="bwg-icon-play bwg-title2 bwg-play-icon2"></i></div>';
45
  $ecommerce_icon = '<div class="bwg-ecommerce1"><div class="bwg-ecommerce2">';
46
  if ( $image_row->pricelist_id ) {
@@ -71,7 +72,6 @@ class BWGViewThumbnails extends BWGViewSite {
71
  $image_thumb_width = $resolution_th[0];
72
  $image_thumb_height = $resolution_th[1];
73
  }
74
-
75
  ?>
76
  <div class="bwg-item">
77
  <a class="bwg-a<?php echo $class; ?>" <?php echo $data_image_id; ?><?php echo $href; ?>>
@@ -96,6 +96,8 @@ class BWGViewThumbnails extends BWGViewSite {
96
  </div>
97
  <?php if ( function_exists('BWGEC') && $params['ecommerce_icon'] == 'show' ) { echo $ecommerce_icon; } ?>
98
  <?php if ( $params['image_title'] == 'show' && $theme_row->thumb_title_pos == 'bottom' ) { echo $title; } ?>
 
 
99
  </a>
100
  </div>
101
  <?php
@@ -258,6 +260,13 @@ class BWGViewThumbnails extends BWGViewSite {
258
  text-shadow: <?php echo $theme_row->thumb_title_shadow; ?>;
259
  max-height: 100%;
260
  }
 
 
 
 
 
 
 
261
  #bwg_container1_<?php echo $bwg; ?> #bwg_container2_<?php echo $bwg; ?> .bwg-container-<?php echo $bwg; ?>.bwg-standard-thumbnails .bwg-play-icon2 {
262
  font-size: <?php echo 2 * $theme_row->thumb_title_font_size; ?>px;
263
  }
41
  $data_image_id = '';
42
  $href = '';
43
  $title = '<div class="bwg-title1"><div class="bwg-title2">' . ($image_row->alt ? htmlspecialchars_decode($image_row->alt, ENT_COMPAT | ENT_QUOTES) : '&nbsp;') . '</div></div>';
44
+ $description = '<div class="bwg-thumb-description bwg_thumb_description_0"><span>' . ($image_row->description ? htmlspecialchars_decode($image_row->description, ENT_COMPAT | ENT_QUOTES) : '') . '</span></div>';
45
  $play_icon = '<div class="bwg-play-icon1"><i title="' . __('Play', BWG()->prefix) . '" class="bwg-icon-play bwg-title2 bwg-play-icon2"></i></div>';
46
  $ecommerce_icon = '<div class="bwg-ecommerce1"><div class="bwg-ecommerce2">';
47
  if ( $image_row->pricelist_id ) {
72
  $image_thumb_width = $resolution_th[0];
73
  $image_thumb_height = $resolution_th[1];
74
  }
 
75
  ?>
76
  <div class="bwg-item">
77
  <a class="bwg-a<?php echo $class; ?>" <?php echo $data_image_id; ?><?php echo $href; ?>>
96
  </div>
97
  <?php if ( function_exists('BWGEC') && $params['ecommerce_icon'] == 'show' ) { echo $ecommerce_icon; } ?>
98
  <?php if ( $params['image_title'] == 'show' && $theme_row->thumb_title_pos == 'bottom' ) { echo $title; } ?>
99
+ <?php
100
+ if ( $params['show_thumb_description'] ) { echo $description; } ?>
101
  </a>
102
  </div>
103
  <?php
260
  text-shadow: <?php echo $theme_row->thumb_title_shadow; ?>;
261
  max-height: 100%;
262
  }
263
+ #bwg_container1_<?php echo $bwg; ?> #bwg_container2_<?php echo $bwg; ?> .bwg-container-<?php echo $bwg; ?>.bwg-standard-thumbnails .bwg-thumb-description span {
264
+ color: #<?php echo $theme_row->thumb_description_font_color; ?>;
265
+ font-family: <?php echo $theme_row->thumb_description_font_style; ?>;
266
+ font-size: <?php echo $theme_row->thumb_description_font_size; ?>px;
267
+ max-height: 100%;
268
+ word-wrap: break-word;
269
+ }
270
  #bwg_container1_<?php echo $bwg; ?> #bwg_container2_<?php echo $bwg; ?> .bwg-container-<?php echo $bwg; ?>.bwg-standard-thumbnails .bwg-play-icon2 {
271
  font-size: <?php echo 2 * $theme_row->thumb_title_font_size; ?>px;
272
  }
js/bwg.js CHANGED
@@ -1,4 +1,25 @@
1
  jQuery(document).ready(function () {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  /* press ESC hide loading. */
3
  jQuery(document).keyup(function(e) {
4
  if ( e.keyCode == 27 ) {
@@ -1449,18 +1470,15 @@ function bwg_get_embed_info(input_id) {
1449
  }
1450
 
1451
  function bwg_change_fonts(cont, google_fonts) {
1452
- var fonts;
1453
- if (jQuery("#" + google_fonts).is(":checked") == true) {
1454
- fonts = bwg.google_fonts;
1455
  }
1456
  else {
1457
- fonts = {'arial' : 'Arial', 'lucida grande' : 'Lucida grande', 'segoe ui' : 'Segoe ui', 'tahoma' : 'Tahoma', 'trebuchet ms' : 'Trebuchet ms', 'verdana' : 'Verdana', 'cursive' : 'Cursive', 'fantasy' : 'Fantasy', 'monospace' : 'Monospace', 'serif' : 'Serif'};
 
 
1458
  }
1459
- var fonts_option = "";
1460
- for (var i in fonts) {
1461
- fonts_option += '<option value="' + i + '">' + fonts[i] + '</option>';
1462
- }
1463
- jQuery("#" + cont).html(fonts_option);
1464
  }
1465
 
1466
  /**
@@ -1772,8 +1790,14 @@ function bwg_add_image(files) {
1772
  var is_direct_url = files[i]['filetype'].indexOf("DIRECT_URL_") > -1 ? true : false;
1773
  var is_facebook_post = files[i]['filetype'].indexOf("_FACEBOOK_POST") > -1 ? 1 : 0;
1774
  var fb_post_url = (is_facebook_post) ? files[i]['filename'] : '';
1775
- var instagram_post_width = files[i]['resolution'].split('x')[0].trim();
1776
- var instagram_post_height = files[i]['resolution'].split('x')[1].trim();
 
 
 
 
 
 
1777
  var html = jQuery(".wd-template").clone().html();
1778
  // Google Photos add-on is active.
1779
  if ( gallery_type == 'google_photos' ) {
@@ -1788,6 +1812,11 @@ function bwg_add_image(files) {
1788
  jQuery('.wd-template').find('#image_description_tempid').prop("disabled", true);
1789
  html = jQuery(".wd-template").clone().html();
1790
  }
 
 
 
 
 
1791
  var name = files[i]['name'].substr(0, files[i]['name'].lastIndexOf('.')) || files[i]['name'];
1792
  var filename = files[i]['filename'];
1793
  if ( name != "" ) {
1
  jQuery(document).ready(function () {
2
+ /* Change google font for <select>. */
3
+ if( jQuery('.google_font').length ) {
4
+ jQuery('.google_font').each(function() {
5
+ var bwg_google_font = jQuery(this);
6
+ bwg_google_font.fontselect();
7
+ input_name = jQuery(this).closest('td').find('.radio_google_fonts').children('input').attr('name');
8
+ data_view = input_name + '0';
9
+ if (jQuery("#" + data_view).is(":checked")) {
10
+ bwg_google_font.next('.font-select').hide();
11
+ jQuery('#' + input_name).show();
12
+ }
13
+ else {
14
+ bwg_google_font.next('.font-select').show();
15
+ jQuery('#' + input_name).hide();
16
+ }
17
+ })
18
+ }
19
+ jQuery('.default-font').on( 'change', function() {
20
+ jQuery(this).css({'font-family':jQuery(this).val()});
21
+ } );
22
+
23
  /* press ESC hide loading. */
24
  jQuery(document).keyup(function(e) {
25
  if ( e.keyCode == 27 ) {
1470
  }
1471
 
1472
  function bwg_change_fonts(cont, google_fonts) {
1473
+ if (jQuery("#" + google_fonts ).val() == 1 ) {
1474
+ jQuery('#' + cont).next('.font-select').show();
1475
+ jQuery('#' + cont + '_default').hide();
1476
  }
1477
  else {
1478
+ jQuery('#' + cont).next('.font-select').hide();
1479
+ jQuery('#' + cont + '_default').show();
1480
+ jQuery('#' + cont + '_default').css({'font-family':jQuery('#' + cont + '_default').val()});
1481
  }
 
 
 
 
 
1482
  }
1483
 
1484
  /**
1790
  var is_direct_url = files[i]['filetype'].indexOf("DIRECT_URL_") > -1 ? true : false;
1791
  var is_facebook_post = files[i]['filetype'].indexOf("_FACEBOOK_POST") > -1 ? 1 : 0;
1792
  var fb_post_url = (is_facebook_post) ? files[i]['filename'] : '';
1793
+ if ( typeof files[i]['resolution'] != "undefined" ) {
1794
+ var instagram_post_width = files[i]['resolution'].split('x')[0].trim();
1795
+ var instagram_post_height = files[i]['resolution'].split('x')[1].trim();
1796
+ }
1797
+ else {
1798
+ var instagram_post_width = "";
1799
+ var instagram_post_height = "";
1800
+ }
1801
  var html = jQuery(".wd-template").clone().html();
1802
  // Google Photos add-on is active.
1803
  if ( gallery_type == 'google_photos' ) {
1812
  jQuery('.wd-template').find('#image_description_tempid').prop("disabled", true);
1813
  html = jQuery(".wd-template").clone().html();
1814
  }
1815
+
1816
+ if ( files[i]['filetype'] == 'SVG' ) {
1817
+ jQuery('#images_table').find('.wd-image-actions').remove();
1818
+ html = jQuery(".wd-template").clone().html();
1819
+ }
1820
  var name = files[i]['name'].substr(0, files[i]['name'].lastIndexOf('.')) || files[i]['name'];
1821
  var filename = files[i]['filename'];
1822
  if ( name != "" ) {
js/bwg_frontend.js CHANGED
@@ -1755,6 +1755,8 @@ function bwg_ajax(form_id, current_view, id, album_gallery_id, cur_album_id, typ
1755
  }
1756
  /* For all views. */
1757
  bwg_document_ready();
 
 
1758
  bwg_mosaic_ajax(current_view, mosaic_loaded);
1759
  var no_data = bwg_all_thumnails_loaded(".bwg-container-" + current_view);
1760
  if ( no_data ) {
1755
  }
1756
  /* For all views. */
1757
  bwg_document_ready();
1758
+ bwg_carousel_ready();
1759
+ bwg_carousel_onload();
1760
  bwg_mosaic_ajax(current_view, mosaic_loaded);
1761
  var no_data = bwg_all_thumnails_loaded(".bwg-container-" + current_view);
1762
  if ( no_data ) {
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(document).ready(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")||(39===e.keyCode?bwg_change_image(parseInt(jQuery("#bwg_current_image_key").val()),parseInt(jQuery("#bwg_current_image_key").val())+1):37===e.keyCode?bwg_change_image(parseInt(jQuery("#bwg_current_image_key").val()),parseInt(jQuery("#bwg_current_image_key").val())-1):27===e.keyCode?spider_destroypopup(1e3):32===e.keyCode&&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, .bwg_popup_image").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_hasalreadyreceivedpopup(_)||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)}),spider_receivedpopup(e,t))}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_hasalreadyreceivedpopup(e){return-1<document.cookie.indexOf(e)&&delete document.cookie[document.cookie.indexOf(e)],!1}function spider_receivedpopup(e,t){var i=new Date;i.setDate(i.getDate()+t),document.cookie=e+"=true;expires="+i.toUTCString()+";path=/"}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.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=jQuery("#bwg_tag_id_"+_).val();s=s||0;var o=1==i?"&open_ecommerce=1":"",l=jQuery("#bwg_search_input_"+_).val(),g=jQuery("#bwg_order_"+_).val()?"&filtersortby="+jQuery("#bwg_order_"+_).val():"";l=l||"",void 0!==a&&(r+="&gallery_id="+a);var n="",w=jQuery("#bwg_blog_style_share_buttons_"+e).attr("data-open-comment");void 0!==w&&!1!==w&&(n="&open_comment=1"),spider_createpopup(r+"&bwg_random_seed="+jQuery("#bwg_random_seed_"+_).val()+"&image_id="+e+"&filter_tag="+s+o+n+"&filter_search_name="+l+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_"),g=-1<r[a].filetype.indexOf("INSTAGRAM_POST"),n=-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%;">'+(n?'<div class="bwg_inst_play_btn_cont" onclick="bwg_play_instagram_video(this)" ><div class="bwg_inst_play"></div></div>':" "),g){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(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",r[a].image_url):(jQuery("#bwg_fullsize_image").attr("href",gallery_box_data.site_url+r[a].image_url),jQuery("#bwg_download").attr("href",gallery_box_data.site_url+r[a].thumb_url.replace("/thumb/","/.original/")));var e=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].image_url));i=i.replace(/%252F/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"),0==r[a].comment_count?jQuery("#bwg_added_comments").hide():(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()})}}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(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[e]&&0!=gallery_box_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 g=o-parseFloat(s+_);else g=o+parseFloat(s+_);jQuery(e).closest(".image_selected_parameter").find(".already_selected_values").val(g)}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+=" >",""!=i&&(l+='<video style="width:auto !important; height:auto !important; max-width:100% !important; max-height:100% !important; margin:0 !important;" controls><source src="'+i+'" 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+=" >",""!=i&&(l+='<img src="//instagram.com/p/'+i+'/media/?size=l" 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+=" >",""!=i&&(l+='<iframe class="inner_instagram_iframe_'+obj_class+'" src="//instagr.am/p/'+i+'/embed/?enablejsapi=1" style="max-width:100% !important; max-height:100% !important; width:100%; height:100%; margin:0; display:table-cell; vertical-align:middle;"frameborder="0" scrolling="no" allowtransparency="false" allowfullscreen></iframe>'),r+=l+="</div>";break;case"EMBED_OEMBED_FACEBOOK_IMAGE":var g="<span ";for(attr in a)/src/i.test(attr)||""!=attr&&""!=a[attr]&&(g+=" "+attr+'="'+a[attr]+'"');g+=" >",""!=i&&(g+='<img src="'+t+'" style=" max-width:100% !important; max-height:100% !important; width:auto; height:100%;">'),r+=g+="</span>";break;case"EMBED_OEMBED_FACEBOOK_VIDEO":var n="<div ";for(attr in a)/src/i.test(attr)||""!=attr&&""!=a[attr]&&(n+=" "+attr+'="'+a[attr]+'"');n+=" >",""!=i&&(n+='<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+=n+="</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=jQuery.parseJSON(e),response_JSON){if("error"==response_JSON[0])return alert("Error: "+jQuery.parseJSON(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_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(){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=[],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(){bwg_params_carousel[t].carousel.prev()}),jQuery("#spider_carousel_right-ico_"+t).on("click",function(){bwg_params_carousel[t].carousel.next()}),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].bwg_currentlyMoving=!1,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].bwg_currentlyMoving=!0,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),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_carousel_watermark(e),bwg_carousel_params(e),bwg_container_loaded(e)})}function bwg_carousel_params(t){var e=jQuery("#bwg_container1_"+t).parent().width(),i=1;e<bwg_params_carousel[t].carousel_r_width?i=e/bwg_params_carousel[t].carousel_r_width:e=bwg_params_carousel[t].carousel_r_width,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*i),e.width((e.height()-96)*e.attr("data-width")/e.attr("data-height")+16)):(e.width(bwg_params_carousel[t].image_width*i),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*i,height:bwg_params_carousel[t].image_height*i}),jQuery(".bwg_carousel_watermark_text_"+t+", .bwg_carousel_watermark_text_"+t+":hover").css({fontSize:e*(bwg_params_carousel[t].watermark_font_size/bwg_params_carousel[t].image_width)*i}),jQuery(".bwg_carousel-image "+t).css({width:bwg_params_carousel[t].image_width*i,height:bwg_params_carousel[t].image_height*i}),jQuery(".bwg_carousel_watermark_container_"+t).css({width:bwg_params_carousel[t].image_width*i,height:bwg_params_carousel[t].image_height*i}),jQuery(".bwg_carousel_embed_video_"+t).css({width:bwg_params_carousel[t].image_width*i,height:bwg_params_carousel[t].image_height*i}),jQuery(".bwg_carousel_watermark_spun_"+t).css({width:bwg_params_carousel[t].image_width*i,height:bwg_params_carousel[t].image_height*i}),jQuery(".bwg_carousel-container"+t).css({width:e,height:bwg_params_carousel[t].image_height*i}),jQuery(".bwg_video_hide"+t).css({width:bwg_params_carousel[t].image_width*i,height:bwg_params_carousel[t].image_height*i}),bwg_params_carousel[t].carousel=jQuery("#bwg_carousel"+t).featureCarousel({containerWidth:e*i,containerHeight:bwg_params_carousel[t].image_height*i,fit_containerWidth:bwg_params_carousel[t].carousel_fit_containerWidth,largeFeatureWidth:bwg_params_carousel[t].image_width*i,largeFeatureHeight:bwg_params_carousel[t].image_height*i,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_container_loaded(e){jQuery("#gal_front_form_"+e).removeClass("bwg-hidden"),jQuery("#ajax_loading_"+e).addClass("bwg-hidden")}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")),g=parseInt(o.css("margin-right"));o.css({width:"calc("+s+"% - "+(l+g)+"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=jQuery(e);if(t.find(".bwg-empty-item").remove(),"horizontal"==t.data("masonry-type")){var a=t.data("thumbnail-height"),r=t.data("max-count"),_=[];for(i=0;i<r;i++)_.push(0);t.find(".bwg-item").each(function(){var e=_.indexOf(Math.min.apply(Math,_));jQuery(this).css({height:a,order:e+1}),_[e]+=jQuery(this)[0].getBoundingClientRect().width});var s=Math.max.apply(Math,_);for(t.width(s),i=0;i<r;i++)_[i]<s&&t.append(jQuery('<div class="bwg-item bwg-empty-item"></div>').css({height:a,order:i+1,width:s-_[i]}))}else{t.removeAttr("style");s=t.width();var o=t.data("thumbnail-width"),l=(r=t.data("max-count"),parseInt(s/o)+("0"==t.data("resizable-thumbnails")?0:1));r<l&&(l=r);var g=t.find(".bwg-item").length;g<l&&(l=g);var n,w,b=100/l,u=[];for(i=0;i<l;i++)u.push(0);t.find(".bwg-item").each(function(){var e=u.indexOf(Math.min.apply(Math,u));if(jQuery(this).css({width:b+"%",order:e+1}),0<jQuery(this).find("img").attr("data-width").length&&0<jQuery(this).find("img").attr("data-height").length){w=jQuery(this).find("img").data("width")/jQuery(this).find("img").data("height"),n=jQuery(this).width()/w;var t=+(jQuery(this).find("a>.bwg-title1").height()+jQuery(this).find("a>.bwg-masonry-thumb-description").height());jQuery(this).height(n+t)}u[e]+=jQuery(this)[0].getBoundingClientRect().height});var d=Math.max.apply(Math,u);for(i=0;i<l;i++)u[i]<d&&t.append(jQuery('<div class="bwg-item bwg-empty-item"></div>').css({width:b+"%",order:i+1,height:d-u[i]}));t.outerWidth(l*o),t.height(d)}bwg_container_loaded(t.data("bwg"))}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,g=0,n=[];n[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,n[e]=g,w[g]++):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[g]?e!==c.length-2?(b=row_cum_width2,n[e]=g,w[g]++,w[++g]=0,b=0):(b=row_cum_width2,n[e]=g,w[g]++):(w[++g]=1,n[e]=g,b=row_cum_width2-b):(b=row_cum_width2,n[e]=g,w[g]++)});for(var u=[],d=[],h=0;h<=g;h++)u[h]=1,d[h]=l;for(h=0;h<=g;h++)b=0,c.each(function(e){n[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<=g;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[n[e]]),c.eq(e).height(i*u[n[e]]),c.eq(e).parent().css({top:p[n[e]],left:m[n[e]]}),m[n[e]]+=t*u[n[e]]+2*r,S[n[e]]=e}),jQuery("#"+i).height(p[g]+d[g]-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){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(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(r,e,_){jQuery(".bwg-mosaic-thumb-span").on("mouseenter",function(){var e=jQuery(this).children(".bwg_mosaic_thumb_"+r).width(),t=jQuery(this).children(".bwg_mosaic_thumb_"+r).height();jQuery(this).find(".bwg_mosaic_title_spun1_"+r).width(e);var i=jQuery(this).find(".bwg_mosaic_title_spun1_"+r).width(),a=jQuery(this).find(".bwg_mosaic_title_spun1_"+r).height();jQuery(this).find(".bwg_mosaic_title_spun1_"+r).css({top:_+.5*t-.5*a<0?_:_+.5*t-.5*a,left:_+.5*e-.5*i,opacity:1,"max-height":"calc(100% - "+2*_+"px)",overflow:"hidden"})}),jQuery(".bwg-mosaic-thumb-span").on("mouseleave",function(){jQuery(this).find(".bwg_mosaic_title_spun1_"+r).css({top:0,left:-1e4,opacity:0,padding:e.attr("data-title-margin"),"max-height":"calc(100% - "+2*_+"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(".bwg-album").off("click").on("click",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(".bwg_lightbox .bwg-item0, .bwg_lightbox .bwg_slide, .bwg_lightbox .bwg-carousel-image, .bwg_lightbox .bwg-title1").on("click",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('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 13!=(t.which||t.keyCode)||(jQuery(e).closest(".bwg_search_container_1").find(".bwg_search").trigger("click"),!1)}function bwg_ajax(t,i,a,r,e,_,s,o,l,g,n){if("1"!=bwg_objectsL10n.front_ajax||!0===g){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 w=jQuery("#"+t).data("ajax-url"),b=0;if(void 0===g)g=!1;var u=jQuery("#page_number_"+i).val(),d=jQuery("#bwg_search_input_"+i).val(),h={},m=jQuery("#bwg_album_breadcrumb_"+i).val();if(m&&!0!==g){var p=JSON.parse(m);if("back"==r){p.splice(-1,1);var c=p.slice(-1)[0];r=c.id,u=c.page,h["action_"+i]="back"}else"numeric"===g||s?(p.splice(-1,1),p.push({id:r,page:u,search:d})):(p.push({id:r,page:1}),u=1);h["bwg_album_breadcrumb_"+i]=JSON.stringify(p)}if(h.gallery_type=jQuery("#"+t).data("gallery-type"),h.gallery_id=jQuery("#"+t).data("gallery-id"),h.tag=jQuery("#"+t).data("tag"),h.album_id=jQuery("#"+t).data("album-id"),h.theme_id=jQuery("#"+t).data("theme-id"),h.shortcode_id=jQuery("#"+t).data("shortcode-id"),h.bwg=i,h.current_url=encodeURI(jQuery("#bwg_container1_"+i).data("current-url")),s&&(u=1),void 0===o||""==o)o="";if(void 0===n||""==n)n="";if(void 0===l||""==l)l=jQuery(".bwg_order_"+i).val();if(h["page_number_"+i]=u,h["bwg_load_more_"+i]=jQuery("#bwg_load_more_"+i).val(),h["album_gallery_id_"+i]=r,h["type_"+i]=_,h["title_"+i]=o,h["description_"+i]=n,h["sortImagesByValue_"+i]=l,0<jQuery("#bwg_search_input_"+i).length&&(h["bwg_search_"+i]=jQuery("#bwg_search_input_"+i).val()),void 0!==h["bwg_album_breadcrumb_"+i]){var y=jQuery.parseJSON(h["bwg_album_breadcrumb_"+i]);jQuery.each(y,function(e,t){h["bwg_search_"+i]="",r==t.id&&(h["bwg_search_"+i]=t.search)})}return h["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:w,data:h,success:function(e){jQuery(e).find(".bwg_masonry_thumb_spun_"+i+" img").length,b=jQuery(e).find(".bwg_mosaic_thumb_spun_"+i+" img").length,!0===g?(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()):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_mosaic_ajax(i,b),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(h["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){var f=jQuery("#bwg_search_input_"+i).val(),j=window.location.href,Q="",v=jQuery("#bwg_tag_id_"+i).val();if(""!==window.location.hash&&(j=j.replace("#","")),""!==f&&void 0!==f?!1!==(Q=bwg_add_url_parameter(Q=bwg_remove_url_parameter("page_number_"+i,j),"bwg_search_"+i,f))&&(j=Q):!1!==(Q=bwg_remove_url_parameter("bwg_search_"+i,j))&&(j=Q),void 0!==l&&""!==l&&!1!==(Q=bwg_add_url_parameter(j,"sort_by_"+i,l))&&(j=Q),null!=v&&0<v.length){var x="",k=v.split(",");jQuery.each(k,function(e){var t=",";e===k.length-1&&(t=""),x+=k[e]+t}),""!==x&&!1!==(Q=bwg_add_url_parameter(j,"filter_tag_"+i,x))&&(j=Q)}else!1!==(Q=bwg_remove_url_parameter("filter_tag_"+i,Q))&&(j=Q);window.location.href=j}else window.history.back()}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,g,n){var w,b=!1,u="";if(void 0!==n&&""!==n){b=!0,bwg_params[n].bwg_trans_in_progress=!0,u="_"+n,w=bwg_params[n].bwg_transition_duration;bwg_params[n].event_stack}else w=bwg_transition_duration;if(!bwg_testBrowser_cssTransitions(n))return bwg_fallback(o,l,g,n);if(!bwg_testBrowser_cssTransforms3d(n))return bwg_fallback3d(o,l,g,n);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(n),bwg_params[n].bwg_trans_in_progress=!1;var e=bwg_params[n].data,t=bwg_params[n].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,n)}bwg_change_watermark_container()}b?(jQuery(".bwg_slideshow_filmstrip_thumbnail_"+n).removeClass("bwg_slideshow_thumb_active_"+n).addClass("bwg_slideshow_thumb_deactive_"+n),jQuery("#bwg_filmstrip_thumbnail_"+bwg_params[n].bwg_current_key+"_"+n).removeClass("bwg_slideshow_thumb_deactive_"+n).addClass("bwg_slideshow_thumb_active_"+n),jQuery(".bwg_slideshow_dots_"+n).removeClass("bwg_slideshow_dots_active_"+n).addClass("bwg_slideshow_dots_deactive_"+n),jQuery("#bwg_dots_"+bwg_params[n].bwg_current_key+"_"+n).removeClass("bwg_slideshow_dots_deactive_"+n).addClass("bwg_slideshow_dots_active_"+n),jQuery(".bwg_slide_bg_"+n).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({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 g=Math.min(0,Math.max(e-jQuery(".bwg_filmstrip_thumbnails").width(),l+e/2));else if("height"==gallery_box_data.width_or_height)g=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,g=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,g=Math.min(0,Math.max(e-jQuery(".bwg_slideshow_filmstrip_thumbnails"+r).height(),l+e/2));0<g+o&&(o=0),0<g+s&&(s=0),"left"==a?jQuery(".bwg"+_+"_filmstrip_thumbnails"+r).animate({left:g+o},{duration:500,complete:function(){bwg_filmstrip_arrows(t)}}):jQuery(".bwg"+_+"_filmstrip_thumbnails"+r).animate({top:g+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":"",g=void 0!==e&&""!==e?bwg_params[e].outerWidth_or_outerHeight:gallery_box_data.outerWidth_or_outerHeight,n=void 0!==e&&""!==e?bwg_params[e].left_or_top:gallery_box_data.left_or_top;i="outerWidth"==g?(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"==n?(a=jQuery(".bwg"+l+"_thumb_active"+o).position().left,r="outerWidth"==g?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"==g?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"==n?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"==n?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_"),g=-1<i[t].filetype.indexOf("INSTAGRAM_POST"),n=-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">',n&&(u+='<span class="bwg_inst_play_btn_cont" onclick="bwg_play_instagram_video(this)"><span class="bwg_inst_play"></span></span>'),g){var d=0,h=0;w<b+88?d=(h=w)-88:h=(d=b)+88,u+=spider_display_embed(i[t].filetype,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,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(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(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(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_slideshow_image_wrap_"+e).parent().width(),i=bwg_params[e].data;if(t>=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 a="horizontal"==bwg_params[e].filmstrip_direction?"width: "+bwg_params[e].image_width:"height: "+bwg_params[e].image_height,r="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:a}),jQuery(".bwg_slideshow_filmstrip_"+e).css({cssText:r}),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:t}),jQuery(".bwg_slideshow_image_wrap_"+e).css({height:t*bwg_params[e].image_height/bwg_params[e].image_width}),jQuery(".bwg_slideshow_image_container_"+e).css({width:t-("horizontal"==bwg_params[e].filmstrip_direction?0:bwg_params[e].slideshow_filmstrip_width)}),jQuery(".bwg_slideshow_image_container_"+e).css({height:t*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: "+(t-("horizontal"==bwg_params[e].filmstrip_direction?0:bwg_params[e].slideshow_filmstrip_width))+"px !important; max-height: "+(t*(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: "+(t-("horizontal"==bwg_params[e].filmstrip_direction?0:bwg_params[e].slideshow_filmstrip_width))+"px !important; height: "+(t*(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:t}),jQuery(".bwg_slideshow_filmstrip_"+e).css({width:t-40})):(jQuery(".bwg_slideshow_filmstrip_container_"+e).css({height:t*bwg_params[e].image_height/bwg_params[e].image_width}),jQuery(".bwg_slideshow_filmstrip_"+e).css({height:t*bwg_params[e].image_height/bwg_params[e].image_width-40})),jQuery(".bwg_slideshow_dots_container_"+e).css({width:t}),jQuery("#bwg_slideshow_play_pause-ico_"+e).css({fontSize:t*bwg_params[e].slideshow_play_pause_btn_size/bwg_params[e].image_width}),jQuery(".bwg_slideshow_watermark_image_"+e).css({maxWidth:t*bwg_params[e].watermark_width/bwg_params[e].image_width,maxHeight:t*bwg_params[e].watermark_height/bwg_params[e].image_width}),jQuery(".bwg_slideshow_watermark_text_"+e+", .bwg_slideshow_watermark_text_"+e+":hover").css({fontSize:t*bwg_params[e].watermark_font_size/bwg_params[e].image_width}),jQuery(".bwg_slideshow_title_text_"+e).css({fontSize:2*t*bwg_params[e].slideshow_title_font_size/bwg_params[e].image_width}),jQuery(".bwg_slideshow_description_text_"+e).css({fontSize:2*t*bwg_params[e].slideshow_description_font_size/bwg_params[e].image_width}),jQuery(".bwg_slideshow_image_"+e).css({display:"inline-block"});i[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(document).ready(function(){bwg_main_ready(),jQuery(".bwg_container").each(function(){var e=!1;if(0<jQuery(this).find(".wd_error").length&&(e=!0),!e){var t=0;jQuery(this).on("visibility",function(){var e=jQuery(this);setInterval(function(){e.is(":hidden")?1==t&&(t=0,bwg_slideshow_blur()):0==t&&(t=1,bwg_main_ready(),bwg_slideshow_focus())},300)}).trigger("visibility")}})}),jQuery(window).on("resize",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()}),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(document).ready(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")||(39===e.keyCode?bwg_change_image(parseInt(jQuery("#bwg_current_image_key").val()),parseInt(jQuery("#bwg_current_image_key").val())+1):37===e.keyCode?bwg_change_image(parseInt(jQuery("#bwg_current_image_key").val()),parseInt(jQuery("#bwg_current_image_key").val())-1):27===e.keyCode?spider_destroypopup(1e3):32===e.keyCode&&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, .bwg_popup_image").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_hasalreadyreceivedpopup(_)||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)}),spider_receivedpopup(e,t))}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_hasalreadyreceivedpopup(e){return-1<document.cookie.indexOf(e)&&delete document.cookie[document.cookie.indexOf(e)],!1}function spider_receivedpopup(e,t){var i=new Date;i.setDate(i.getDate()+t),document.cookie=e+"=true;expires="+i.toUTCString()+";path=/"}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.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=jQuery("#bwg_tag_id_"+_).val();s=s||0;var o=1==i?"&open_ecommerce=1":"",l=jQuery("#bwg_search_input_"+_).val(),g=jQuery("#bwg_order_"+_).val()?"&filtersortby="+jQuery("#bwg_order_"+_).val():"";l=l||"",void 0!==a&&(r+="&gallery_id="+a);var n="",w=jQuery("#bwg_blog_style_share_buttons_"+e).attr("data-open-comment");void 0!==w&&!1!==w&&(n="&open_comment=1"),spider_createpopup(r+"&bwg_random_seed="+jQuery("#bwg_random_seed_"+_).val()+"&image_id="+e+"&filter_tag="+s+o+n+"&filter_search_name="+l+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_"),g=-1<r[a].filetype.indexOf("INSTAGRAM_POST"),n=-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%;">'+(n?'<div class="bwg_inst_play_btn_cont" onclick="bwg_play_instagram_video(this)" ><div class="bwg_inst_play"></div></div>':" "),g){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(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",r[a].image_url):(jQuery("#bwg_fullsize_image").attr("href",gallery_box_data.site_url+r[a].image_url),jQuery("#bwg_download").attr("href",gallery_box_data.site_url+r[a].thumb_url.replace("/thumb/","/.original/")));var e=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].image_url));i=i.replace(/%252F/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"),0==r[a].comment_count?jQuery("#bwg_added_comments").hide():(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()})}}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(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[e]&&0!=gallery_box_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 g=o-parseFloat(s+_);else g=o+parseFloat(s+_);jQuery(e).closest(".image_selected_parameter").find(".already_selected_values").val(g)}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+=" >",""!=i&&(l+='<video style="width:auto !important; height:auto !important; max-width:100% !important; max-height:100% !important; margin:0 !important;" controls><source src="'+i+'" 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+=" >",""!=i&&(l+='<img src="//instagram.com/p/'+i+'/media/?size=l" 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+=" >",""!=i&&(l+='<iframe class="inner_instagram_iframe_'+obj_class+'" src="//instagr.am/p/'+i+'/embed/?enablejsapi=1" style="max-width:100% !important; max-height:100% !important; width:100%; height:100%; margin:0; display:table-cell; vertical-align:middle;"frameborder="0" scrolling="no" allowtransparency="false" allowfullscreen></iframe>'),r+=l+="</div>";break;case"EMBED_OEMBED_FACEBOOK_IMAGE":var g="<span ";for(attr in a)/src/i.test(attr)||""!=attr&&""!=a[attr]&&(g+=" "+attr+'="'+a[attr]+'"');g+=" >",""!=i&&(g+='<img src="'+t+'" style=" max-width:100% !important; max-height:100% !important; width:auto; height:100%;">'),r+=g+="</span>";break;case"EMBED_OEMBED_FACEBOOK_VIDEO":var n="<div ";for(attr in a)/src/i.test(attr)||""!=attr&&""!=a[attr]&&(n+=" "+attr+'="'+a[attr]+'"');n+=" >",""!=i&&(n+='<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+=n+="</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=jQuery.parseJSON(e),response_JSON){if("error"==response_JSON[0])return alert("Error: "+jQuery.parseJSON(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_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(){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=[],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(){bwg_params_carousel[t].carousel.prev()}),jQuery("#spider_carousel_right-ico_"+t).on("click",function(){bwg_params_carousel[t].carousel.next()}),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].bwg_currentlyMoving=!1,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].bwg_currentlyMoving=!0,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),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_carousel_watermark(e),bwg_carousel_params(e),bwg_container_loaded(e)})}function bwg_carousel_params(t){var e=jQuery("#bwg_container1_"+t).parent().width(),i=1;e<bwg_params_carousel[t].carousel_r_width?i=e/bwg_params_carousel[t].carousel_r_width:e=bwg_params_carousel[t].carousel_r_width,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*i),e.width((e.height()-96)*e.attr("data-width")/e.attr("data-height")+16)):(e.width(bwg_params_carousel[t].image_width*i),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*i,height:bwg_params_carousel[t].image_height*i}),jQuery(".bwg_carousel_watermark_text_"+t+", .bwg_carousel_watermark_text_"+t+":hover").css({fontSize:e*(bwg_params_carousel[t].watermark_font_size/bwg_params_carousel[t].image_width)*i}),jQuery(".bwg_carousel-image "+t).css({width:bwg_params_carousel[t].image_width*i,height:bwg_params_carousel[t].image_height*i}),jQuery(".bwg_carousel_watermark_container_"+t).css({width:bwg_params_carousel[t].image_width*i,height:bwg_params_carousel[t].image_height*i}),jQuery(".bwg_carousel_embed_video_"+t).css({width:bwg_params_carousel[t].image_width*i,height:bwg_params_carousel[t].image_height*i}),jQuery(".bwg_carousel_watermark_spun_"+t).css({width:bwg_params_carousel[t].image_width*i,height:bwg_params_carousel[t].image_height*i}),jQuery(".bwg_carousel-container"+t).css({width:e,height:bwg_params_carousel[t].image_height*i}),jQuery(".bwg_video_hide"+t).css({width:bwg_params_carousel[t].image_width*i,height:bwg_params_carousel[t].image_height*i}),bwg_params_carousel[t].carousel=jQuery("#bwg_carousel"+t).featureCarousel({containerWidth:e*i,containerHeight:bwg_params_carousel[t].image_height*i,fit_containerWidth:bwg_params_carousel[t].carousel_fit_containerWidth,largeFeatureWidth:bwg_params_carousel[t].image_width*i,largeFeatureHeight:bwg_params_carousel[t].image_height*i,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_container_loaded(e){jQuery("#gal_front_form_"+e).removeClass("bwg-hidden"),jQuery("#ajax_loading_"+e).addClass("bwg-hidden")}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")),g=parseInt(o.css("margin-right"));o.css({width:"calc("+s+"% - "+(l+g)+"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=jQuery(e);if(t.find(".bwg-empty-item").remove(),"horizontal"==t.data("masonry-type")){var a=t.data("thumbnail-height"),r=t.data("max-count"),_=[];for(i=0;i<r;i++)_.push(0);t.find(".bwg-item").each(function(){var e=_.indexOf(Math.min.apply(Math,_));jQuery(this).css({height:a,order:e+1}),_[e]+=jQuery(this)[0].getBoundingClientRect().width});var s=Math.max.apply(Math,_);for(t.width(s),i=0;i<r;i++)_[i]<s&&t.append(jQuery('<div class="bwg-item bwg-empty-item"></div>').css({height:a,order:i+1,width:s-_[i]}))}else{t.removeAttr("style");s=t.width();var o=t.data("thumbnail-width"),l=(r=t.data("max-count"),parseInt(s/o)+("0"==t.data("resizable-thumbnails")?0:1));r<l&&(l=r);var g=t.find(".bwg-item").length;g<l&&(l=g);var n,w,b=100/l,u=[];for(i=0;i<l;i++)u.push(0);t.find(".bwg-item").each(function(){var e=u.indexOf(Math.min.apply(Math,u));if(jQuery(this).css({width:b+"%",order:e+1}),0<jQuery(this).find("img").attr("data-width").length&&0<jQuery(this).find("img").attr("data-height").length){w=jQuery(this).find("img").data("width")/jQuery(this).find("img").data("height"),n=jQuery(this).width()/w;var t=+(jQuery(this).find("a>.bwg-title1").height()+jQuery(this).find("a>.bwg-masonry-thumb-description").height());jQuery(this).height(n+t)}u[e]+=jQuery(this)[0].getBoundingClientRect().height});var d=Math.max.apply(Math,u);for(i=0;i<l;i++)u[i]<d&&t.append(jQuery('<div class="bwg-item bwg-empty-item"></div>').css({width:b+"%",order:i+1,height:d-u[i]}));t.outerWidth(l*o),t.height(d)}bwg_container_loaded(t.data("bwg"))}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,g=0,n=[];n[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,n[e]=g,w[g]++):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[g]?e!==c.length-2?(b=row_cum_width2,n[e]=g,w[g]++,w[++g]=0,b=0):(b=row_cum_width2,n[e]=g,w[g]++):(w[++g]=1,n[e]=g,b=row_cum_width2-b):(b=row_cum_width2,n[e]=g,w[g]++)});for(var u=[],d=[],h=0;h<=g;h++)u[h]=1,d[h]=l;for(h=0;h<=g;h++)b=0,c.each(function(e){n[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<=g;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[n[e]]),c.eq(e).height(i*u[n[e]]),c.eq(e).parent().css({top:p[n[e]],left:m[n[e]]}),m[n[e]]+=t*u[n[e]]+2*r,S[n[e]]=e}),jQuery("#"+i).height(p[g]+d[g]-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){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(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(r,e,_){jQuery(".bwg-mosaic-thumb-span").on("mouseenter",function(){var e=jQuery(this).children(".bwg_mosaic_thumb_"+r).width(),t=jQuery(this).children(".bwg_mosaic_thumb_"+r).height();jQuery(this).find(".bwg_mosaic_title_spun1_"+r).width(e);var i=jQuery(this).find(".bwg_mosaic_title_spun1_"+r).width(),a=jQuery(this).find(".bwg_mosaic_title_spun1_"+r).height();jQuery(this).find(".bwg_mosaic_title_spun1_"+r).css({top:_+.5*t-.5*a<0?_:_+.5*t-.5*a,left:_+.5*e-.5*i,opacity:1,"max-height":"calc(100% - "+2*_+"px)",overflow:"hidden"})}),jQuery(".bwg-mosaic-thumb-span").on("mouseleave",function(){jQuery(this).find(".bwg_mosaic_title_spun1_"+r).css({top:0,left:-1e4,opacity:0,padding:e.attr("data-title-margin"),"max-height":"calc(100% - "+2*_+"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(".bwg-album").off("click").on("click",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(".bwg_lightbox .bwg-item0, .bwg_lightbox .bwg_slide, .bwg_lightbox .bwg-carousel-image, .bwg_lightbox .bwg-title1").on("click",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('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 13!=(t.which||t.keyCode)||(jQuery(e).closest(".bwg_search_container_1").find(".bwg_search").trigger("click"),!1)}function bwg_ajax(t,i,a,r,e,_,s,o,l,g,n){if("1"!=bwg_objectsL10n.front_ajax||!0===g){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 w=jQuery("#"+t).data("ajax-url"),b=0;if(void 0===g)g=!1;var u=jQuery("#page_number_"+i).val(),d=jQuery("#bwg_search_input_"+i).val(),h={},m=jQuery("#bwg_album_breadcrumb_"+i).val();if(m&&!0!==g){var p=JSON.parse(m);if("back"==r){p.splice(-1,1);var c=p.slice(-1)[0];r=c.id,u=c.page,h["action_"+i]="back"}else"numeric"===g||s?(p.splice(-1,1),p.push({id:r,page:u,search:d})):(p.push({id:r,page:1}),u=1);h["bwg_album_breadcrumb_"+i]=JSON.stringify(p)}if(h.gallery_type=jQuery("#"+t).data("gallery-type"),h.gallery_id=jQuery("#"+t).data("gallery-id"),h.tag=jQuery("#"+t).data("tag"),h.album_id=jQuery("#"+t).data("album-id"),h.theme_id=jQuery("#"+t).data("theme-id"),h.shortcode_id=jQuery("#"+t).data("shortcode-id"),h.bwg=i,h.current_url=encodeURI(jQuery("#bwg_container1_"+i).data("current-url")),s&&(u=1),void 0===o||""==o)o="";if(void 0===n||""==n)n="";if(void 0===l||""==l)l=jQuery(".bwg_order_"+i).val();if(h["page_number_"+i]=u,h["bwg_load_more_"+i]=jQuery("#bwg_load_more_"+i).val(),h["album_gallery_id_"+i]=r,h["type_"+i]=_,h["title_"+i]=o,h["description_"+i]=n,h["sortImagesByValue_"+i]=l,0<jQuery("#bwg_search_input_"+i).length&&(h["bwg_search_"+i]=jQuery("#bwg_search_input_"+i).val()),void 0!==h["bwg_album_breadcrumb_"+i]){var y=jQuery.parseJSON(h["bwg_album_breadcrumb_"+i]);jQuery.each(y,function(e,t){h["bwg_search_"+i]="",r==t.id&&(h["bwg_search_"+i]=t.search)})}return h["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:w,data:h,success:function(e){jQuery(e).find(".bwg_masonry_thumb_spun_"+i+" img").length,b=jQuery(e).find(".bwg_mosaic_thumb_spun_"+i+" img").length,!0===g?(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()):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_mosaic_ajax(i,b),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(h["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){var f=jQuery("#bwg_search_input_"+i).val(),j=window.location.href,Q="",v=jQuery("#bwg_tag_id_"+i).val();if(""!==window.location.hash&&(j=j.replace("#","")),""!==f&&void 0!==f?!1!==(Q=bwg_add_url_parameter(Q=bwg_remove_url_parameter("page_number_"+i,j),"bwg_search_"+i,f))&&(j=Q):!1!==(Q=bwg_remove_url_parameter("bwg_search_"+i,j))&&(j=Q),void 0!==l&&""!==l&&!1!==(Q=bwg_add_url_parameter(j,"sort_by_"+i,l))&&(j=Q),null!=v&&0<v.length){var x="",k=v.split(",");jQuery.each(k,function(e){var t=",";e===k.length-1&&(t=""),x+=k[e]+t}),""!==x&&!1!==(Q=bwg_add_url_parameter(j,"filter_tag_"+i,x))&&(j=Q)}else!1!==(Q=bwg_remove_url_parameter("filter_tag_"+i,Q))&&(j=Q);window.location.href=j}else window.history.back()}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,g,n){var w,b=!1,u="";if(void 0!==n&&""!==n){b=!0,bwg_params[n].bwg_trans_in_progress=!0,u="_"+n,w=bwg_params[n].bwg_transition_duration;bwg_params[n].event_stack}else w=bwg_transition_duration;if(!bwg_testBrowser_cssTransitions(n))return bwg_fallback(o,l,g,n);if(!bwg_testBrowser_cssTransforms3d(n))return bwg_fallback3d(o,l,g,n);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(n),bwg_params[n].bwg_trans_in_progress=!1;var e=bwg_params[n].data,t=bwg_params[n].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,n)}bwg_change_watermark_container()}b?(jQuery(".bwg_slideshow_filmstrip_thumbnail_"+n).removeClass("bwg_slideshow_thumb_active_"+n).addClass("bwg_slideshow_thumb_deactive_"+n),jQuery("#bwg_filmstrip_thumbnail_"+bwg_params[n].bwg_current_key+"_"+n).removeClass("bwg_slideshow_thumb_deactive_"+n).addClass("bwg_slideshow_thumb_active_"+n),jQuery(".bwg_slideshow_dots_"+n).removeClass("bwg_slideshow_dots_active_"+n).addClass("bwg_slideshow_dots_deactive_"+n),jQuery("#bwg_dots_"+bwg_params[n].bwg_current_key+"_"+n).removeClass("bwg_slideshow_dots_deactive_"+n).addClass("bwg_slideshow_dots_active_"+n),jQuery(".bwg_slide_bg_"+n).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({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 g=Math.min(0,Math.max(e-jQuery(".bwg_filmstrip_thumbnails").width(),l+e/2));else if("height"==gallery_box_data.width_or_height)g=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,g=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,g=Math.min(0,Math.max(e-jQuery(".bwg_slideshow_filmstrip_thumbnails"+r).height(),l+e/2));0<g+o&&(o=0),0<g+s&&(s=0),"left"==a?jQuery(".bwg"+_+"_filmstrip_thumbnails"+r).animate({left:g+o},{duration:500,complete:function(){bwg_filmstrip_arrows(t)}}):jQuery(".bwg"+_+"_filmstrip_thumbnails"+r).animate({top:g+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":"",g=void 0!==e&&""!==e?bwg_params[e].outerWidth_or_outerHeight:gallery_box_data.outerWidth_or_outerHeight,n=void 0!==e&&""!==e?bwg_params[e].left_or_top:gallery_box_data.left_or_top;i="outerWidth"==g?(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"==n?(a=jQuery(".bwg"+l+"_thumb_active"+o).position().left,r="outerWidth"==g?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"==g?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"==n?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"==n?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_"),g=-1<i[t].filetype.indexOf("INSTAGRAM_POST"),n=-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">',n&&(u+='<span class="bwg_inst_play_btn_cont" onclick="bwg_play_instagram_video(this)"><span class="bwg_inst_play"></span></span>'),g){var d=0,h=0;w<b+88?d=(h=w)-88:h=(d=b)+88,u+=spider_display_embed(i[t].filetype,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,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(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(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(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_slideshow_image_wrap_"+e).parent().width(),i=bwg_params[e].data;if(t>=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 a="horizontal"==bwg_params[e].filmstrip_direction?"width: "+bwg_params[e].image_width:"height: "+bwg_params[e].image_height,r="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:a}),jQuery(".bwg_slideshow_filmstrip_"+e).css({cssText:r}),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:t}),jQuery(".bwg_slideshow_image_wrap_"+e).css({height:t*bwg_params[e].image_height/bwg_params[e].image_width}),jQuery(".bwg_slideshow_image_container_"+e).css({width:t-("horizontal"==bwg_params[e].filmstrip_direction?0:bwg_params[e].slideshow_filmstrip_width)}),jQuery(".bwg_slideshow_image_container_"+e).css({height:t*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: "+(t-("horizontal"==bwg_params[e].filmstrip_direction?0:bwg_params[e].slideshow_filmstrip_width))+"px !important; max-height: "+(t*(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: "+(t-("horizontal"==bwg_params[e].filmstrip_direction?0:bwg_params[e].slideshow_filmstrip_width))+"px !important; height: "+(t*(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:t}),jQuery(".bwg_slideshow_filmstrip_"+e).css({width:t-40})):(jQuery(".bwg_slideshow_filmstrip_container_"+e).css({height:t*bwg_params[e].image_height/bwg_params[e].image_width}),jQuery(".bwg_slideshow_filmstrip_"+e).css({height:t*bwg_params[e].image_height/bwg_params[e].image_width-40})),jQuery(".bwg_slideshow_dots_container_"+e).css({width:t}),jQuery("#bwg_slideshow_play_pause-ico_"+e).css({fontSize:t*bwg_params[e].slideshow_play_pause_btn_size/bwg_params[e].image_width}),jQuery(".bwg_slideshow_watermark_image_"+e).css({maxWidth:t*bwg_params[e].watermark_width/bwg_params[e].image_width,maxHeight:t*bwg_params[e].watermark_height/bwg_params[e].image_width}),jQuery(".bwg_slideshow_watermark_text_"+e+", .bwg_slideshow_watermark_text_"+e+":hover").css({fontSize:t*bwg_params[e].watermark_font_size/bwg_params[e].image_width}),jQuery(".bwg_slideshow_title_text_"+e).css({fontSize:2*t*bwg_params[e].slideshow_title_font_size/bwg_params[e].image_width}),jQuery(".bwg_slideshow_description_text_"+e).css({fontSize:2*t*bwg_params[e].slideshow_description_font_size/bwg_params[e].image_width}),jQuery(".bwg_slideshow_image_"+e).css({display:"inline-block"});i[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(document).ready(function(){bwg_main_ready(),jQuery(".bwg_container").each(function(){var e=!1;if(0<jQuery(this).find(".wd_error").length&&(e=!0),!e){var t=0;jQuery(this).on("visibility",function(){var e=jQuery(this);setInterval(function(){e.is(":hidden")?1==t&&(t=0,bwg_slideshow_blur()):0==t&&(t=1,bwg_main_ready(),bwg_slideshow_focus())},300)}).trigger("visibility")}})}),jQuery(window).on("resize",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()}),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-af.mo CHANGED
Binary file
languages/bwg-af.po CHANGED
@@ -1,15 +1,15 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: bwg\n"
4
- "POT-Creation-Date: 2018-01-24 10:29+0400\n"
5
- "PO-Revision-Date: 2018-01-24 10:41+0400\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: af\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 2.0.5\n"
13
  "X-Poedit-Basepath: ..\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
  "X-Poedit-KeywordsList: __;_e;_x\n"
@@ -26,80 +26,74 @@ msgid ""
26
  msgstr ""
27
 
28
  #: addons/addons.php:13
29
- #, fuzzy
30
- #| msgid "Share on Facebook"
31
- msgid "Photo Gallery Facebook"
32
- msgstr "Deel op Facebook"
33
 
34
  #: addons/addons.php:15
35
  msgid ""
36
- "Photo Gallery Facebook is an add-on, which helps to display Facebook photos "
37
- "and videos within Photo Gallery plugin. You can create Facebook-only "
38
- "galleries, embed individual images and videos or include Facebook albums "
39
- "within mixed type albums."
40
  msgstr ""
41
 
42
  #: addons/addons.php:20
43
- msgid "NextGen Gallery Import to Photo Gallery"
44
  msgstr ""
45
 
46
  #: addons/addons.php:22
47
  msgid ""
48
- "This addon integrates NextGen with Photo Gallery allowing to import images "
49
- "and related data from NextGen to use with Photo Gallery"
 
50
  msgstr ""
51
 
52
  #: addons/addons.php:27
53
- msgid "Photo Gallery Export / Import"
54
  msgstr ""
55
 
56
  #: addons/addons.php:29
57
- msgid ""
58
- "Photo Gallery Export/Import helps to move created galleries and gallery "
59
- "groups from one site to another. This way you can save the gallery/album "
60
- "options and manual modifications."
61
  msgstr ""
62
 
63
- #: addons/addons.php:38
64
  msgid "Photo Gallery Add-ons"
65
  msgstr ""
66
 
67
- #: addons/addons.php:71
68
  msgid "GET THIS ADD ON"
69
  msgstr ""
70
 
71
- #: admin/controllers/AddTags.php:53 admin/views/Galleries.php:641
72
- #: admin/views/Galleries.php:763 photo-gallery.php:260
73
  msgid "Tags"
74
  msgstr ""
75
 
76
  #: admin/controllers/Albums.php:38 admin/controllers/Comments.php:40
77
- #: admin/controllers/Galleries.php:33 admin/controllers/Galleries.php:80
78
- #: admin/views/Albums.php:103 admin/views/Albums.php:179
79
- #: admin/views/Comments.php:106 admin/views/Galleries.php:108
80
- #: admin/views/Galleries.php:203 admin/views/Galleries.php:726
81
  msgid "Publish"
82
  msgstr ""
83
 
84
  #: admin/controllers/Albums.php:39 admin/controllers/Comments.php:41
85
- #: admin/controllers/Galleries.php:34 admin/controllers/Galleries.php:81
86
  msgid "published"
87
  msgstr ""
88
 
89
  #: admin/controllers/Albums.php:42 admin/controllers/Comments.php:44
90
- #: admin/controllers/Galleries.php:37 admin/controllers/Galleries.php:84
91
- #: admin/views/Albums.php:103 admin/views/Comments.php:106
92
- #: admin/views/Galleries.php:108 admin/views/Galleries.php:726
93
  msgid "Unpublish"
94
  msgstr ""
95
 
96
  #: admin/controllers/Albums.php:43 admin/controllers/Comments.php:45
97
- #: admin/controllers/Galleries.php:38 admin/controllers/Galleries.php:85
98
  msgid "unpublished"
99
  msgstr ""
100
 
101
  #: admin/controllers/Albums.php:46 admin/controllers/Themes.php:39
102
- #: admin/views/Albums.php:104 admin/views/Themes.php:100
103
  msgid "Duplicate"
104
  msgstr ""
105
 
@@ -108,23 +102,23 @@ msgid "duplicate"
108
  msgstr ""
109
 
110
  #: admin/controllers/Albums.php:50 admin/controllers/Comments.php:48
111
- #: admin/controllers/Galleries.php:41 admin/controllers/Galleries.php:88
112
- #: admin/controllers/Ratings.php:41 admin/controllers/Themes.php:43
113
- #: admin/views/Albums.php:105 admin/views/Comments.php:109
114
- #: admin/views/Galleries.php:109 admin/views/Galleries.php:733
115
- #: admin/views/Ratings.php:84 admin/views/Themes.php:101
116
  #, fuzzy
117
  #| msgid "Delete Comment"
118
  msgid "Delete"
119
  msgstr "Verwyder Kommentaar"
120
 
121
  #: admin/controllers/Albums.php:51 admin/controllers/Comments.php:49
122
- #: admin/controllers/Galleries.php:42 admin/controllers/Galleries.php:89
123
- #: admin/controllers/Ratings.php:42 admin/controllers/Themes.php:44
124
  msgid "deleted"
125
  msgstr ""
126
 
127
- #: admin/controllers/Albums.php:93 photo-gallery.php:257
128
  msgid "Gallery Groups"
129
  msgstr ""
130
 
@@ -132,413 +126,303 @@ msgstr ""
132
  msgid "Galleries / Gallery groups"
133
  msgstr ""
134
 
135
- #: admin/controllers/Comments.php:93 photo-gallery.php:268
136
  #, fuzzy
137
  #| msgid "Comment"
138
  msgid "Comments"
139
  msgstr "Kommentaar lewer nie"
140
 
141
- #: admin/controllers/Comments.php:129 admin/controllers/Ratings.php:134
142
  msgid "Filter by gallery"
143
  msgstr ""
144
 
145
- #: admin/controllers/Comments.php:133 admin/controllers/Ratings.php:138
146
  msgid "Filter by image"
147
  msgstr ""
148
 
149
- #: admin/controllers/Galleries.php:48 admin/views/Galleries.php:565
150
- msgid "Resize"
151
- msgstr ""
152
-
153
- #: admin/controllers/Galleries.php:49
154
- msgid "resized"
155
- msgstr ""
156
-
157
- #: admin/controllers/Galleries.php:52
158
- msgid "Recreate thumbnail"
159
- msgstr ""
160
 
161
- #: admin/controllers/Galleries.php:53
162
- msgid "recreated"
163
  msgstr ""
164
 
165
- #: admin/controllers/Galleries.php:56
166
- msgid "Rotate left"
167
  msgstr ""
168
 
169
- #: admin/controllers/Galleries.php:57
170
  #, fuzzy
171
- #| msgid "Not rated yet."
172
- msgid "rotated left"
173
- msgstr "Nog nie gegradeer nie"
174
 
175
- #: admin/controllers/Galleries.php:60
176
- msgid "Rotate right"
177
  msgstr ""
178
 
179
- #: admin/controllers/Galleries.php:61
180
- msgid "rotated right"
 
 
181
  msgstr ""
182
 
183
- #: admin/controllers/Galleries.php:64 admin/views/Options.php:1617
184
- msgid "Set watermark"
 
 
 
 
 
 
185
  msgstr ""
186
 
187
- #: admin/controllers/Galleries.php:65 admin/controllers/Galleries.php:73
188
- #: admin/controllers/Galleries.php:77
189
- msgid "edited"
 
 
190
  msgstr ""
191
 
192
- #: admin/controllers/Galleries.php:68 admin/views/Galleries.php:723
193
- #: admin/views/Themes.php:185 framework/WDWLibrary.php:317
194
- #: framework/WDWLibrary.php:495 framework/WDWLibrary.php:814
195
- #: framework/WDWLibrary.php:849
196
- msgid "Reset"
197
- msgstr "Herstel"
198
-
199
- #: admin/controllers/Galleries.php:69
200
- #, fuzzy
201
- #| msgid "Reset"
202
- msgid "reset"
203
- msgstr "Herstel"
204
-
205
- #: admin/controllers/Galleries.php:72 admin/views/Albums.php:102
206
- #: admin/views/Galleries.php:107 admin/views/Galleries.php:716
207
- #: admin/views/Themes.php:99
208
- msgid "Edit"
209
  msgstr ""
210
 
211
- #: admin/controllers/Galleries.php:76 admin/views/Galleries.php:781
212
- msgid "Add tag"
 
 
 
213
  msgstr ""
214
 
215
- #: admin/controllers/Galleries.php:137 photo-gallery.php:1478
216
- #, fuzzy
217
- #| msgid "Gallery is empty."
218
- msgid "Galleries"
219
- msgstr "Gallery is leeg."
220
-
221
- #: admin/controllers/Galleries.php:437 admin/controllers/Options.php:191
222
- msgid "Item Succesfully Saved."
223
  msgstr ""
224
 
225
- #: admin/controllers/Galleries.php:441
226
- msgid ""
227
- " Selected pricelist item longest dimension greater than some original images "
228
- "dimensions."
 
229
  msgstr ""
230
 
231
- #: admin/controllers/Galleries.php:471 admin/views/Galleries.php:749
232
- msgid ""
233
- "Selected pricelist item longest dimension greater than some original images "
234
- "dimensions."
235
  msgstr ""
236
 
237
- #: admin/controllers/Options.php:62
238
- msgid "Edit options"
 
239
  msgstr ""
240
 
241
- #: admin/controllers/Options.php:106
242
  msgid "Default values restored. Changes must be saved."
243
  msgstr ""
244
 
245
- #: admin/controllers/Options.php:137
246
  msgid "Uploads directory doesn't exist. Old value is restored."
247
  msgstr ""
248
 
249
- #: admin/controllers/Options.php:140
250
  msgid ""
251
  "Warning: \"photo-gallery\" folder already exists in uploads directory. Old "
252
  "value is restored."
253
  msgstr ""
254
 
255
- #: admin/controllers/Options.php:180
256
  msgid "All thumbnails are successfully recreated."
257
  msgstr ""
258
 
259
- #: admin/controllers/Options.php:207
260
- msgid "All images are successfully watermarked."
261
- msgstr ""
262
-
263
- #: admin/controllers/Options.php:212
264
- msgid "All images are successfully reset."
265
- msgstr ""
266
-
267
- #: admin/controllers/Ratings.php:86 photo-gallery.php:271
268
- msgid "Ratings"
269
- msgstr ""
270
-
271
- #: admin/controllers/Shortcode.php:36 admin/controllers/Themes.php:279
272
- #: admin/controllers/Themes.php:317 admin/controllers/WidgetSlideshow.php:44
273
- #: admin/views/Options.php:1497 admin/views/Options.php:1641
274
- #: admin/views/Shortcode.php:1387
275
- msgid "None"
276
- msgstr ""
277
-
278
- #: admin/controllers/Shortcode.php:37 admin/controllers/WidgetSlideshow.php:45
279
- msgid "Cube Horizontal"
280
- msgstr ""
281
-
282
- #: admin/controllers/Shortcode.php:38 admin/controllers/WidgetSlideshow.php:46
283
- msgid "Cube Vertical"
284
- msgstr ""
285
-
286
- #: admin/controllers/Shortcode.php:39 admin/controllers/WidgetSlideshow.php:47
287
- msgid "Fade"
288
- msgstr ""
289
-
290
- #: admin/controllers/Shortcode.php:40 admin/controllers/WidgetSlideshow.php:48
291
- msgid "Slice Horizontal"
292
- msgstr ""
293
-
294
- #: admin/controllers/Shortcode.php:41 admin/controllers/WidgetSlideshow.php:49
295
- msgid "Slice Vertical"
296
- msgstr ""
297
-
298
- #: admin/controllers/Shortcode.php:42 admin/controllers/WidgetSlideshow.php:50
299
- msgid "Slide Horizontal"
300
- msgstr ""
301
-
302
- #: admin/controllers/Shortcode.php:43 admin/controllers/WidgetSlideshow.php:51
303
- msgid "Slide Vertical"
304
- msgstr ""
305
-
306
- #: admin/controllers/Shortcode.php:44 admin/controllers/WidgetSlideshow.php:52
307
- msgid "Scale Out"
308
- msgstr ""
309
-
310
- #: admin/controllers/Shortcode.php:45 admin/controllers/WidgetSlideshow.php:53
311
- msgid "Scale In"
312
- msgstr ""
313
-
314
- #: admin/controllers/Shortcode.php:46 admin/controllers/WidgetSlideshow.php:54
315
- msgid "Block Scale"
316
- msgstr ""
317
-
318
- #: admin/controllers/Shortcode.php:47 admin/controllers/WidgetSlideshow.php:55
319
- msgid "Kaleidoscope"
320
- msgstr ""
321
-
322
- #: admin/controllers/Shortcode.php:48 admin/controllers/WidgetSlideshow.php:56
323
- msgid "Fan"
324
- msgstr ""
325
-
326
- #: admin/controllers/Shortcode.php:49 admin/controllers/WidgetSlideshow.php:57
327
- msgid "Blind Horizontal"
328
- msgstr ""
329
-
330
- #: admin/controllers/Shortcode.php:50 admin/controllers/WidgetSlideshow.php:58
331
- msgid "Blind Vertical"
332
- msgstr ""
333
-
334
- #: admin/controllers/Shortcode.php:51 admin/controllers/WidgetSlideshow.php:59
335
- #: admin/views/Shortcode.php:615 admin/views/Widget.php:156
336
- #: framework/WDWLibrary.php:891
337
- msgid "Random"
338
- msgstr "Random"
339
-
340
- #: admin/controllers/Shortcode.php:55 admin/views/Shortcode.php:74
341
- #: photo-gallery.php:1326
342
- msgid "Thumbnails"
343
- msgstr ""
344
-
345
- #: admin/controllers/Shortcode.php:56 admin/controllers/Shortcode.php:65
346
- #: admin/controllers/Themes.php:265 admin/views/Options.php:456
347
- #: admin/views/Options.php:462 admin/views/Options.php:1017
348
- #: admin/views/Shortcode.php:82 admin/views/Shortcode.php:152
349
- #: admin/views/Shortcode.php:344 admin/views/Shortcode.php:1012
350
- #: admin/views/Shortcode.php:1061 admin/views/Widget.php:136
351
- #: photo-gallery.php:1330
352
- msgid "Masonry"
353
- msgstr ""
354
-
355
- #: admin/controllers/Shortcode.php:57 admin/controllers/Themes.php:266
356
- #: admin/views/Options.php:493 admin/views/Options.php:511
357
- #: admin/views/Options.php:1018 admin/views/Shortcode.php:91
358
- #: admin/views/Shortcode.php:359 admin/views/Shortcode.php:1013
359
- #: admin/views/Shortcode.php:1019 admin/views/Shortcode.php:1062
360
- #: admin/views/Shortcode.php:1068 photo-gallery.php:1334
361
- msgid "Mosaic"
362
- msgstr ""
363
-
364
- #: admin/controllers/Shortcode.php:58 admin/controllers/Themes.php:267
365
- #: admin/views/Options.php:651 admin/views/Shortcode.php:100
366
- #: photo-gallery.php:1300 photo-gallery.php:1338
367
- msgid "Slideshow"
368
- msgstr ""
369
-
370
- #: admin/controllers/Shortcode.php:59 admin/views/Options.php:540
371
- #: admin/views/Shortcode.php:106 photo-gallery.php:1342
372
- msgid "Image Browser"
373
  msgstr ""
374
 
375
- #: admin/controllers/Shortcode.php:60 admin/views/Options.php:583
376
- #: admin/views/Shortcode.php:112 photo-gallery.php:1358
377
- msgid "Blog Style"
378
  msgstr ""
379
 
380
- #: admin/controllers/Shortcode.php:61 admin/controllers/Themes.php:275
381
- #: admin/views/Options.php:866 admin/views/Shortcode.php:121
382
- #: photo-gallery.php:1370
383
- msgid "Carousel"
384
  msgstr ""
385
 
386
- #: admin/controllers/Shortcode.php:64 admin/views/Shortcode.php:146
387
- msgid "Compact"
388
  msgstr ""
389
 
390
- #: admin/controllers/Shortcode.php:66 admin/views/Shortcode.php:161
391
- msgid "Extended"
392
  msgstr ""
393
 
394
  #: admin/controllers/Themes.php:40
395
  msgid "duplicated"
396
  msgstr ""
397
 
398
- #: admin/controllers/Themes.php:88 photo-gallery.php:264
399
  msgid "Themes"
400
  msgstr ""
401
 
402
- #: admin/controllers/Themes.php:264 admin/views/Options.php:1016
403
- #: admin/views/Shortcode.php:1011 admin/views/Shortcode.php:1060
404
- #: admin/views/Widget.php:135
405
  msgid "Thumbnail"
406
  msgstr ""
407
 
408
- #: admin/controllers/Themes.php:268
409
  msgid "Image browser"
410
  msgstr ""
411
 
412
- #: admin/controllers/Themes.php:269
413
  msgid "Compact album"
414
  msgstr ""
415
 
416
- #: admin/controllers/Themes.php:270
417
  msgid "Masonry album"
418
  msgstr ""
419
 
420
- #: admin/controllers/Themes.php:271
421
  msgid "Extended album"
422
  msgstr ""
423
 
424
- #: admin/controllers/Themes.php:272
425
  msgid "Blog style"
426
  msgstr ""
427
 
428
- #: admin/controllers/Themes.php:273 admin/views/Options.php:78
429
- #: admin/views/Shortcode.php:1115 admin/views/WidgetTags.php:98
430
- #: photo-gallery.php:1292 photo-gallery.php:1362
431
  msgid "Lightbox"
432
  msgstr ""
433
 
434
- #: admin/controllers/Themes.php:274
435
  msgid "Navigation"
436
  msgstr ""
437
 
438
- #: admin/controllers/Themes.php:280
 
 
 
 
 
 
 
 
 
439
  msgid "Solid"
440
  msgstr ""
441
 
442
- #: admin/controllers/Themes.php:281
443
  msgid "Dotted"
444
  msgstr ""
445
 
446
- #: admin/controllers/Themes.php:282
447
  msgid "Dashed"
448
  msgstr ""
449
 
450
- #: admin/controllers/Themes.php:283 admin/controllers/Themes.php:326
451
  msgid "Double"
452
  msgstr ""
453
 
454
- #: admin/controllers/Themes.php:284
455
  msgid "Groove"
456
  msgstr ""
457
 
458
- #: admin/controllers/Themes.php:285
459
  msgid "Ridge"
460
  msgstr ""
461
 
462
- #: admin/controllers/Themes.php:286
463
  msgid "Inset"
464
  msgstr ""
465
 
466
- #: admin/controllers/Themes.php:287
467
  msgid "Outset"
468
  msgstr ""
469
 
470
- #: admin/controllers/Themes.php:305 admin/views/Themes.php:1161
471
- #: admin/views/Themes.php:3721 admin/views/Themes.php:4203
472
  msgid "Left"
473
  msgstr ""
474
 
475
- #: admin/controllers/Themes.php:306
476
  msgid "Center"
477
  msgstr ""
478
 
479
- #: admin/controllers/Themes.php:307 admin/views/Themes.php:1159
480
- #: admin/views/Themes.php:3719 admin/views/Themes.php:4205
481
  msgid "Right"
482
  msgstr ""
483
 
484
- #: admin/controllers/Themes.php:311
485
  msgid "Lighter"
486
  msgstr ""
487
 
488
- #: admin/controllers/Themes.php:312
489
  msgid "Normal"
490
  msgstr ""
491
 
492
- #: admin/controllers/Themes.php:313
493
  msgid "Bold"
494
  msgstr ""
495
 
496
- #: admin/controllers/Themes.php:318
497
  msgid "Rotate"
498
  msgstr ""
499
 
500
- #: admin/controllers/Themes.php:319
501
  msgid "Scale"
502
  msgstr ""
503
 
504
- #: admin/controllers/Themes.php:320
505
  msgid "Skew"
506
  msgstr ""
507
 
508
- #: admin/controllers/Themes.php:324
509
- msgid "Chevron"
510
  msgstr ""
511
 
512
- #: admin/controllers/Themes.php:325
513
  msgid "Angle"
514
  msgstr ""
515
 
516
- #: admin/controllers/Themes.php:330
 
 
 
 
517
  msgid "Star"
518
  msgstr ""
519
 
520
- #: admin/controllers/Themes.php:331
521
  msgid "Bell"
522
  msgstr ""
523
 
524
- #: admin/controllers/Themes.php:332
525
  msgid "Circle"
526
  msgstr ""
527
 
528
- #: admin/controllers/Themes.php:333
529
  msgid "Flag"
530
  msgstr ""
531
 
532
- #: admin/controllers/Themes.php:334
533
  msgid "Heart"
534
  msgstr ""
535
 
536
- #: admin/controllers/Themes.php:335
537
  msgid "Square"
538
  msgstr ""
539
 
540
- #: admin/controllers/Uninstall.php:46 admin/controllers/Uninstall.php:86
541
- #: admin/views/Options.php:332
542
  #, php-format
543
  msgid "Uninstall %s"
544
  msgstr ""
@@ -551,4349 +435,5512 @@ msgstr ""
551
  msgid "Add Photo Gallery slideshow to Your widget area."
552
  msgstr ""
553
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
554
  #: admin/controllers/WidgetTags.php:14
555
  msgid "Add Photo Gallery Tags dynamic cloud to Your widget area."
556
  msgstr ""
557
 
558
- #: admin/models/Comments.php:61 admin/models/Ratings.php:81
 
 
 
 
 
 
 
 
 
 
 
 
559
  msgid "All galleries"
560
  msgstr ""
561
 
562
- #: admin/models/Comments.php:75 admin/models/Ratings.php:100
 
563
  msgid "All images"
564
  msgstr ""
565
 
566
- #: admin/views/AddTags.php:65 admin/views/Albums.php:50
567
- #: admin/views/Comments.php:61 admin/views/Themes.php:72
 
 
 
 
 
 
568
  msgid "Select all"
569
  msgstr ""
570
 
571
- #: admin/views/AddTags.php:68 admin/views/AddTags.php:86
572
- #: admin/views/Albums.php:89 admin/views/Comments.php:64
573
- #: admin/views/Comments.php:87 admin/views/Galleries.php:51
574
- #: admin/views/Galleries.php:54 admin/views/Galleries.php:94
575
- #: frontend/views/BWGViewGalleryBox.php:1425
576
- #: frontend/views/BWGViewGalleryBox.php:1453
577
- #: frontend/views/BWGViewGalleryBox.php:1460
578
- #: frontend/views/BWGViewGalleryBox.php:1569
579
- #: frontend/views/BWGViewGalleryBox.php:1684
580
  msgid "Name"
581
  msgstr "Noem"
582
 
583
- #: admin/views/AddTags.php:107
 
 
 
 
 
 
584
  msgid "Add to image"
585
  msgstr ""
586
 
587
- #: admin/views/AdminView.php:94
588
  msgid "Add New"
589
  msgstr ""
590
 
591
- #: admin/views/AdminView.php:164 framework/WDWLibrary.php:316
592
- #: framework/WDWLibrary.php:494 framework/WDWLibrary.php:817
593
- #: framework/WDWLibrary.php:846 photo-gallery.php:1009
594
  msgid "Search"
595
  msgstr "Soek"
596
 
597
- #: admin/views/AdminView.php:226
598
  #, fuzzy
599
  #| msgid "First"
600
  msgid "First page"
601
  msgstr "Eerste"
602
 
603
- #: admin/views/AdminView.php:227
604
  #, fuzzy
605
  #| msgid "Previous"
606
  msgid "Previous page"
607
  msgstr "Vorige"
608
 
609
- #: admin/views/AdminView.php:232
610
  msgid "Current Page"
611
  msgstr ""
612
 
613
- #: admin/views/AdminView.php:235 framework/WDWLibrary.php:447
614
- #: framework/WDWLibrary.php:596 framework/WDWLibrary.php:679
615
  msgid "of"
616
  msgstr "van"
617
 
618
- #: admin/views/AdminView.php:248
619
  #, fuzzy
620
  #| msgid "Next"
621
  msgid "Next page"
622
  msgstr "Volgende"
623
 
624
- #: admin/views/AdminView.php:249
625
  #, fuzzy
626
  #| msgid "Last"
627
  msgid "Last page"
628
  msgstr "Duur"
629
 
630
- #: admin/views/AdminView.php:281 filemanager/view.php:248
631
  msgid "Select All"
632
  msgstr ""
633
 
634
- #: admin/views/AdminView.php:286
635
  msgid "Select bulk action"
636
  msgstr ""
637
 
638
- #: admin/views/AdminView.php:288
639
  msgid "Bulk Actions"
640
  msgstr ""
641
 
642
- #: admin/views/AdminView.php:297
 
 
 
 
 
 
 
 
643
  msgid "Apply"
644
  msgstr ""
645
 
646
- #: admin/views/Albums.php:53 admin/views/Albumsgalleries.php:77
647
- #: admin/views/Albumsgalleries.php:101 admin/views/Shortcode.php:609
648
- #: admin/views/Themes.php:75 admin/views/Themes.php:94
 
 
 
 
 
 
 
 
649
  msgid "Title"
650
  msgstr ""
651
 
652
- #: admin/views/Albums.php:54 admin/views/Albums.php:112
653
- #: admin/views/Albums.php:255 admin/views/Galleries.php:56
654
- #: admin/views/Galleries.php:117 admin/views/Galleries.php:305
655
  msgid "Author"
656
  msgstr ""
657
 
658
- #: admin/views/Albums.php:98 admin/views/Albums.php:345
659
- #: admin/views/Albumsgalleries.php:110 admin/views/Comments.php:99
660
- #: admin/views/Galleries.php:103 admin/views/Galleries.php:712
661
  msgid "Unpublished"
662
  msgstr ""
663
 
664
- #: admin/views/Albums.php:105 admin/views/Comments.php:109
665
- #: admin/views/Galleries.php:109 admin/views/Galleries.php:727
666
- #: admin/views/Ratings.php:84 admin/views/Themes.php:101
 
 
 
 
 
 
667
  msgid "Do you want to delete selected item?"
668
  msgstr ""
669
 
670
- #: admin/views/Albums.php:106 admin/views/Albums.php:182
671
- #: admin/views/Galleries.php:110 admin/views/Galleries.php:207
672
  #, fuzzy
673
  #| msgid "Previous"
674
  msgid "Preview"
675
  msgstr "Vorige"
676
 
677
- #: admin/views/Albums.php:109 admin/views/Albumsgalleries.php:114
678
- #: admin/views/Comments.php:112 admin/views/Galleries.php:113
679
- #: admin/views/Galleries.php:736 admin/views/Ratings.php:87
680
- #: admin/views/Themes.php:104
681
  #, fuzzy
682
  #| msgid "Show comments"
683
  msgid "Show more details"
684
  msgstr "Wys kommentaar"
685
 
686
- #: admin/views/Albums.php:166
687
  msgid "Gallery Group Title"
688
  msgstr ""
689
 
690
- #: admin/views/Albums.php:173 admin/views/Albums.php:295
691
- #: admin/views/Galleries.php:195 admin/views/Galleries.php:265
692
- msgid "How to use"
693
- msgstr ""
694
-
695
- #: admin/views/Albums.php:179 admin/views/Galleries.php:203
696
- #: admin/views/Galleries.php:575 admin/views/Shortcode.php:1631
697
- #: admin/views/Shortcode.php:2888 admin/views/Themes.php:175
698
  msgid "Update"
699
  msgstr ""
700
 
701
- #: admin/views/Albums.php:193 admin/views/Galleries.php:228
702
- msgid "Preview image"
 
 
 
 
703
  msgstr ""
704
 
705
- #: admin/views/Albums.php:195 admin/views/Galleries.php:232
 
 
 
 
 
 
 
 
706
  msgid "Add Preview Image"
707
  msgstr ""
708
 
709
- #: admin/views/Albums.php:196 admin/views/Albums.php:238
710
- #: admin/views/Galleries.php:235 admin/views/Galleries.php:490
711
- #: filemanager/view.php:256
712
  msgid "Add"
713
  msgstr ""
714
 
715
- #: admin/views/Albums.php:204 admin/views/Galleries.php:245
716
- msgid "Published"
 
 
717
  msgstr ""
718
 
719
- #: admin/views/Albums.php:206 admin/views/Galleries.php:247
720
- #: admin/views/Options.php:132 admin/views/Options.php:157
721
- #: admin/views/Options.php:166 admin/views/Options.php:175
722
- #: admin/views/Options.php:193 admin/views/Options.php:202
723
- #: admin/views/Options.php:211 admin/views/Options.php:220
724
- #: admin/views/Options.php:233 admin/views/Options.php:243
725
- #: admin/views/Options.php:252 admin/views/Options.php:262
726
- #: admin/views/Options.php:290 admin/views/Options.php:301
727
- #: admin/views/Options.php:312 admin/views/Options.php:352
728
- #: admin/views/Options.php:415 admin/views/Options.php:424
729
- #: admin/views/Options.php:433 admin/views/Options.php:442
730
- #: admin/views/Options.php:476 admin/views/Options.php:523
731
- #: admin/views/Options.php:558 admin/views/Options.php:567
732
- #: admin/views/Options.php:612 admin/views/Options.php:623
733
- #: admin/views/Options.php:634 admin/views/Options.php:702
734
- #: admin/views/Options.php:711 admin/views/Options.php:720
735
- #: admin/views/Options.php:740 admin/views/Options.php:759
736
- #: admin/views/Options.php:795 admin/views/Options.php:805
737
- #: admin/views/Options.php:841 admin/views/Options.php:922
738
- #: admin/views/Options.php:932 admin/views/Options.php:942
739
- #: admin/views/Options.php:952 admin/views/Options.php:962
740
- #: admin/views/Options.php:982 admin/views/Options.php:1007
741
- #: admin/views/Options.php:1040 admin/views/Options.php:1084
742
- #: admin/views/Options.php:1129 admin/views/Options.php:1146
743
- #: admin/views/Options.php:1165 admin/views/Options.php:1188
744
- #: admin/views/Options.php:1210 admin/views/Options.php:1219
745
- #: admin/views/Options.php:1228 admin/views/Options.php:1237
746
- #: admin/views/Options.php:1258 admin/views/Options.php:1268
747
- #: admin/views/Options.php:1278 admin/views/Options.php:1287
748
- #: admin/views/Options.php:1296 admin/views/Options.php:1305
749
- #: admin/views/Options.php:1314 admin/views/Options.php:1334
750
- #: admin/views/Options.php:1346 admin/views/Options.php:1358
751
- #: admin/views/Options.php:1368 admin/views/Options.php:1378
752
- #: admin/views/Options.php:1388 admin/views/Options.php:1398
753
- #: admin/views/Options.php:1408 admin/views/Options.php:1421
754
- #: admin/views/Shortcode.php:375 admin/views/Shortcode.php:419
755
- #: admin/views/Shortcode.php:559 admin/views/Shortcode.php:566
756
- #: admin/views/Shortcode.php:582 admin/views/Shortcode.php:589
757
- #: admin/views/Shortcode.php:637 admin/views/Shortcode.php:644
758
- #: admin/views/Shortcode.php:651 admin/views/Shortcode.php:676
759
- #: admin/views/Shortcode.php:693 admin/views/Shortcode.php:727
760
- #: admin/views/Shortcode.php:771 admin/views/Shortcode.php:815
761
- #: admin/views/Shortcode.php:843 admin/views/Shortcode.php:850
762
- #: admin/views/Shortcode.php:857 admin/views/Shortcode.php:865
763
- #: admin/views/Shortcode.php:880 admin/views/Shortcode.php:887
764
- #: admin/views/Shortcode.php:919 admin/views/Shortcode.php:927
765
- #: admin/views/Shortcode.php:959 admin/views/Shortcode.php:975
766
- #: admin/views/Shortcode.php:982 admin/views/Shortcode.php:989
767
- #: admin/views/Shortcode.php:996 admin/views/Shortcode.php:1035
768
- #: admin/views/Shortcode.php:1084 admin/views/Shortcode.php:1129
769
- #: admin/views/Shortcode.php:1139 admin/views/Shortcode.php:1181
770
- #: admin/views/Shortcode.php:1197 admin/views/Shortcode.php:1215
771
- #: admin/views/Shortcode.php:1222 admin/views/Shortcode.php:1231
772
- #: admin/views/Shortcode.php:1239 admin/views/Shortcode.php:1247
773
- #: admin/views/Shortcode.php:1254 admin/views/Shortcode.php:1262
774
- #: admin/views/Shortcode.php:1270 admin/views/Shortcode.php:1282
775
- #: admin/views/Shortcode.php:1290 admin/views/Shortcode.php:1298
776
- #: admin/views/Shortcode.php:1306 admin/views/Shortcode.php:1314
777
- #: admin/views/Shortcode.php:1325 admin/views/Shortcode.php:1352
778
- #: admin/views/Shortcode.php:1369 admin/views/Shortcode.php:1378
779
- #: admin/views/Themes.php:282 admin/views/Themes.php:631
780
- #: admin/views/Themes.php:878 admin/views/Themes.php:1872
781
- #: admin/views/Themes.php:2209 admin/views/Themes.php:2831
782
- #: admin/views/Themes.php:4520 admin/views/Themes.php:4569
783
- #: admin/views/Uninstall.php:96 admin/views/WidgetSlideshow.php:115
784
- #: admin/views/WidgetSlideshow.php:121 admin/views/WidgetSlideshow.php:127
785
- #: admin/views/WidgetTags.php:91 admin/views/WidgetTags.php:113
786
- #: wd/includes/overview.php:227 wd/includes/overview.php:234
787
- #: wd/includes/overview.php:241 wd/includes/overview.php:251
788
- msgid "Yes"
789
  msgstr ""
790
 
791
- #: admin/views/Albums.php:208 admin/views/Galleries.php:249
792
- #: admin/views/Options.php:133 admin/views/Options.php:158
793
- #: admin/views/Options.php:167 admin/views/Options.php:176
794
- #: admin/views/Options.php:194 admin/views/Options.php:203
795
- #: admin/views/Options.php:212 admin/views/Options.php:221
796
  #: admin/views/Options.php:234 admin/views/Options.php:244
797
- #: admin/views/Options.php:253 admin/views/Options.php:263
798
- #: admin/views/Options.php:291 admin/views/Options.php:302
799
- #: admin/views/Options.php:313 admin/views/Options.php:353
800
- #: admin/views/Options.php:416 admin/views/Options.php:425
801
- #: admin/views/Options.php:434 admin/views/Options.php:443
802
- #: admin/views/Options.php:477 admin/views/Options.php:524
803
- #: admin/views/Options.php:559 admin/views/Options.php:568
804
- #: admin/views/Options.php:613 admin/views/Options.php:624
805
- #: admin/views/Options.php:635 admin/views/Options.php:703
806
- #: admin/views/Options.php:712 admin/views/Options.php:721
807
- #: admin/views/Options.php:741 admin/views/Options.php:760
808
- #: admin/views/Options.php:796 admin/views/Options.php:806
809
- #: admin/views/Options.php:842 admin/views/Options.php:923
810
- #: admin/views/Options.php:933 admin/views/Options.php:943
811
- #: admin/views/Options.php:953 admin/views/Options.php:963
812
- #: admin/views/Options.php:983 admin/views/Options.php:1008
813
- #: admin/views/Options.php:1041 admin/views/Options.php:1085
814
- #: admin/views/Options.php:1130 admin/views/Options.php:1147
815
- #: admin/views/Options.php:1166 admin/views/Options.php:1202
816
- #: admin/views/Options.php:1211 admin/views/Options.php:1220
817
- #: admin/views/Options.php:1229 admin/views/Options.php:1238
818
- #: admin/views/Options.php:1259 admin/views/Options.php:1269
819
- #: admin/views/Options.php:1279 admin/views/Options.php:1288
820
- #: admin/views/Options.php:1297 admin/views/Options.php:1306
821
- #: admin/views/Options.php:1315 admin/views/Options.php:1335
822
- #: admin/views/Options.php:1349 admin/views/Options.php:1359
823
- #: admin/views/Options.php:1369 admin/views/Options.php:1379
824
- #: admin/views/Options.php:1389 admin/views/Options.php:1399
825
- #: admin/views/Options.php:1409 admin/views/Options.php:1422
826
- #: admin/views/Shortcode.php:376 admin/views/Shortcode.php:420
827
- #: admin/views/Shortcode.php:560 admin/views/Shortcode.php:567
828
- #: admin/views/Shortcode.php:583 admin/views/Shortcode.php:590
829
- #: admin/views/Shortcode.php:638 admin/views/Shortcode.php:645
830
- #: admin/views/Shortcode.php:652 admin/views/Shortcode.php:677
831
- #: admin/views/Shortcode.php:694 admin/views/Shortcode.php:728
832
- #: admin/views/Shortcode.php:772 admin/views/Shortcode.php:816
833
- #: admin/views/Shortcode.php:844 admin/views/Shortcode.php:851
834
- #: admin/views/Shortcode.php:858 admin/views/Shortcode.php:866
835
- #: admin/views/Shortcode.php:881 admin/views/Shortcode.php:888
836
- #: admin/views/Shortcode.php:920 admin/views/Shortcode.php:928
837
- #: admin/views/Shortcode.php:960 admin/views/Shortcode.php:976
838
- #: admin/views/Shortcode.php:983 admin/views/Shortcode.php:990
839
- #: admin/views/Shortcode.php:997 admin/views/Shortcode.php:1036
840
- #: admin/views/Shortcode.php:1085 admin/views/Shortcode.php:1130
841
- #: admin/views/Shortcode.php:1140 admin/views/Shortcode.php:1182
842
- #: admin/views/Shortcode.php:1198 admin/views/Shortcode.php:1216
843
- #: admin/views/Shortcode.php:1223 admin/views/Shortcode.php:1232
844
- #: admin/views/Shortcode.php:1240 admin/views/Shortcode.php:1248
845
- #: admin/views/Shortcode.php:1255 admin/views/Shortcode.php:1263
846
- #: admin/views/Shortcode.php:1271 admin/views/Shortcode.php:1283
847
- #: admin/views/Shortcode.php:1291 admin/views/Shortcode.php:1299
848
- #: admin/views/Shortcode.php:1307 admin/views/Shortcode.php:1315
849
- #: admin/views/Shortcode.php:1326 admin/views/Shortcode.php:1353
850
- #: admin/views/Shortcode.php:1370 admin/views/Shortcode.php:1379
851
- #: admin/views/Themes.php:284 admin/views/Themes.php:633
852
- #: admin/views/Themes.php:880 admin/views/Themes.php:1874
853
- #: admin/views/Themes.php:2211 admin/views/Themes.php:2833
854
- #: admin/views/Themes.php:4522 admin/views/Themes.php:4571
855
- #: admin/views/WidgetSlideshow.php:116 admin/views/WidgetSlideshow.php:122
856
- #: admin/views/WidgetSlideshow.php:128 admin/views/WidgetTags.php:92
857
- #: admin/views/WidgetTags.php:114 wd/includes/overview.php:229
858
- #: wd/includes/overview.php:236 wd/includes/overview.php:243
859
- #: wd/includes/overview.php:246 wd/includes/overview.php:251
860
- msgid "No"
861
- msgstr ""
862
-
863
- #: admin/views/Albums.php:219
864
- msgid "Galleries and Gallery Groups"
865
  msgstr ""
866
 
867
- #: admin/views/Albums.php:247 admin/views/Albums.php:291
868
- #: admin/views/Galleries.php:219 admin/views/Galleries.php:261
869
- #: admin/views/Galleries.php:294 admin/views/Options.php:452
870
- #: admin/views/Options.php:489 admin/views/Options.php:536
871
- #: admin/views/Options.php:579 admin/views/Options.php:647
872
- #: admin/views/Options.php:862 admin/views/Shortcode.php:266
873
- #: admin/views/Shortcode.php:1111
874
- msgid "Toggle panel:"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
875
  msgstr ""
876
 
877
- #: admin/views/Albums.php:251 admin/views/Galleries.php:298
878
- #: admin/views/Options.php:81 admin/views/Shortcode.php:1344
879
  msgid "Advanced"
880
  msgstr ""
881
 
882
- #: admin/views/Albums.php:259 admin/views/Galleries.php:309
883
  msgid "Slug"
884
  msgstr ""
885
 
886
- #: admin/views/Albums.php:264 admin/views/Galleries.php:314
887
- #: admin/views/Galleries.php:635 admin/views/Galleries.php:742
888
- #: frontend/views/BWGViewGalleryBox.php:1584
889
  msgid "Description"
890
  msgstr ""
891
 
892
- #: admin/views/Albums.php:300 admin/views/Galleries.php:270
893
- msgid "Page or Post editor"
894
- msgstr ""
895
-
896
- #: admin/views/Albums.php:301 admin/views/Galleries.php:271
897
- msgid "Insert it into an existing post with the button."
898
- msgstr ""
899
-
900
- #: admin/views/Albums.php:302 admin/views/Galleries.php:272
901
- msgid "Post editor"
902
- msgstr ""
903
-
904
- #: admin/views/Albums.php:305 admin/views/Galleries.php:275
905
- msgid "PHP code"
906
- msgstr ""
907
-
908
- #: admin/views/Albums.php:306 admin/views/Galleries.php:276
909
- msgid "Copy and paste the PHP code into your template file."
910
- msgstr ""
911
-
912
- #: admin/views/Albums.php:310 admin/views/Albums.php:312
913
- #: admin/views/Galleries.php:280 admin/views/Galleries.php:282
914
- msgid "Widget"
915
- msgstr ""
916
-
917
- #: admin/views/Albums.php:311 admin/views/Galleries.php:281
918
- msgid "Insert as Widget."
919
  msgstr ""
920
 
921
- #: admin/views/Albums.php:336 admin/views/Galleries.php:689
 
922
  msgid "Drag to re-order"
923
  msgstr ""
924
 
925
- #: admin/views/Albums.php:344
926
  msgid "Remove"
927
  msgstr ""
928
 
929
- #: admin/views/Albumsgalleries.php:78 admin/views/Albumsgalleries.php:117
930
- #: admin/views/Galleries.php:708 admin/views/Shortcode.php:613
 
 
 
 
 
931
  msgid "Type"
932
  msgstr ""
933
 
934
- #: admin/views/Albumsgalleries.php:118 admin/views/Options.php:75
935
- #: admin/views/Shortcode.php:66 admin/views/Shortcode.php:270
936
  #, fuzzy
937
  #| msgid "Gallery is empty."
938
  msgid "Gallery group"
939
  msgstr "Gallery is leeg."
940
 
941
- #: admin/views/Albumsgalleries.php:118 admin/views/Options.php:72
942
- #: admin/views/Shortcode.php:63 admin/views/Shortcode.php:192
943
- #: admin/views/Shortcode.php:270 admin/views/Widget.php:117
944
- msgid "Gallery"
945
- msgstr ""
946
-
947
- #: admin/views/Albumsgalleries.php:136
948
  msgid "Add to Gallery Group"
949
  msgstr ""
950
 
951
- #: admin/views/Comments.php:67 admin/views/Comments.php:118
952
- #: frontend/views/BWGViewGalleryBox.php:1431
953
- #: frontend/views/BWGViewGalleryBox.php:1453
954
- #: frontend/views/BWGViewGalleryBox.php:1460
955
  msgid "Email"
956
  msgstr "E-pos "
957
 
958
- #: admin/views/Comments.php:70 admin/views/Comments.php:124
959
- #: frontend/views/BWGViewGalleryBox.php:1438
960
- #: frontend/views/BWGViewGalleryBox.php:1453
961
- #: frontend/views/BWGViewGalleryBox.php:1460
962
  msgid "Comment"
963
  msgstr "Kommentaar lewer nie"
964
 
965
- #: admin/views/Editimage.php:196
966
- msgid "You can't crop this type of image."
 
 
 
 
 
 
 
967
  msgstr ""
968
 
969
- #: admin/views/Editimage.php:277
970
- msgid "The thumbnail successfully croped."
971
  msgstr ""
972
 
973
- #: admin/views/Editimage.php:282
974
  msgid "Select the area for the thumbnail."
975
  msgstr ""
976
 
977
- #: admin/views/Editimage.php:287
978
  msgid "Keep aspect ratio"
979
  msgstr ""
980
 
981
- #: admin/views/Editimage.php:785
 
 
 
 
 
 
 
 
982
  msgid "Grayscale"
983
  msgstr ""
984
 
985
- #: admin/views/Editimage.php:789
986
  msgid "Negative"
987
  msgstr ""
988
 
989
- #: admin/views/Editimage.php:793
990
  msgid "Removal"
991
  msgstr ""
992
 
993
- #: admin/views/Editimage.php:797
994
  msgid "Sepia"
995
  msgstr ""
996
 
997
- #: admin/views/Editimage.php:801
998
  msgid "Slate"
999
  msgstr ""
1000
 
1001
- #: admin/views/Editimage.php:805
1002
  msgid "Saturate"
1003
  msgstr ""
1004
 
1005
- #: admin/views/Editimage.php:809 admin/views/Galleries.php:718
1006
  msgid "Do you want to reset the image?"
1007
  msgstr ""
1008
 
1009
- #: admin/views/Editimage.php:811
1010
  #, fuzzy
1011
  #| msgid "Reset"
1012
  msgid "Reset image"
1013
  msgstr "Herstel"
1014
 
1015
- #: admin/views/Editimage.php:838
1016
  msgid "Brightness"
1017
  msgstr ""
1018
 
1019
- #: admin/views/Editimage.php:840 admin/views/Editimage.php:866
1020
  msgid "Press for result"
1021
  msgstr ""
1022
 
1023
- #: admin/views/Editimage.php:864
1024
  msgid "Contrast"
1025
  msgstr ""
1026
 
1027
- #: admin/views/Galleries.php:55 admin/views/Galleries.php:116
 
 
 
 
1028
  msgid "Images count"
1029
  msgstr ""
1030
 
1031
- #: admin/views/Galleries.php:188
1032
  #, fuzzy
1033
  #| msgid "Gallery is empty."
1034
  msgid "Gallery title"
1035
  msgstr "Gallery is leeg."
1036
 
1037
- #: admin/views/Galleries.php:223
1038
- msgid "Basic"
 
 
1039
  msgstr ""
1040
 
1041
- #: admin/views/Galleries.php:340
1042
  msgid "Gallery content type"
1043
  msgstr ""
1044
 
1045
- #: admin/views/Galleries.php:343
1046
- msgid "Mixed"
1047
- msgstr ""
1048
-
1049
- #: admin/views/Galleries.php:346
1050
- msgid "Instagram only"
1051
  msgstr ""
1052
 
1053
- #: admin/views/Galleries.php:349 admin/views/Options.php:1474
1054
- #, fuzzy
1055
- #| msgid "Share on Facebook"
1056
- msgid "Facebook"
1057
- msgstr "Deel op Facebook"
1058
-
1059
- #: admin/views/Galleries.php:357
1060
- msgid "Instagram username"
1061
  msgstr ""
1062
 
1063
- #: admin/views/Galleries.php:361
1064
  msgid "Number of Instagram recent posts to add to gallery"
1065
  msgstr ""
1066
 
1067
- #: admin/views/Galleries.php:365
1068
  msgid "Instagram embed type"
1069
  msgstr ""
1070
 
1071
- #: admin/views/Galleries.php:367 admin/views/Galleries.php:540
1072
  msgid "Content"
1073
  msgstr ""
1074
 
1075
- #: admin/views/Galleries.php:369 admin/views/Galleries.php:542
1076
  msgid "Whole post"
1077
  msgstr ""
1078
 
1079
- #: admin/views/Galleries.php:372
1080
  #, fuzzy
1081
  #| msgid "Photo gallery plugin autoupdate interval."
1082
  msgid "Gallery autoupdate option"
1083
  msgstr "Photo gallery plugin autoupdate interval."
1084
 
1085
- #: admin/views/Galleries.php:374
1086
  msgid "No update"
1087
  msgstr ""
1088
 
1089
- #: admin/views/Galleries.php:376
1090
  msgid "Add new media, keep old ones published."
1091
  msgstr ""
1092
 
1093
- #: admin/views/Galleries.php:378
1094
  msgid "Add new media, unpublish old ones."
1095
  msgstr ""
1096
 
1097
- #: admin/views/Galleries.php:381
1098
  msgid "Add Instagram Gallery"
1099
  msgstr ""
1100
 
1101
- #: admin/views/Galleries.php:390 admin/views/Options.php:1481
1102
  msgid "Photo Gallery Facebook Integration"
1103
  msgstr ""
1104
 
1105
- #: admin/views/Galleries.php:391 admin/views/Options.php:1482
1106
  #, php-format
1107
  msgid "Please install %s add-on to use this feature."
1108
  msgstr ""
1109
 
1110
- #: admin/views/Galleries.php:415 admin/views/Galleries.php:418
1111
  msgid "Add Images"
1112
  msgstr ""
1113
 
1114
- #: admin/views/Galleries.php:420
1115
  msgid "Import from Media Library"
1116
  msgstr ""
1117
 
1118
- #: admin/views/Galleries.php:427 admin/views/Galleries.php:429
1119
  msgid "Embed Media"
1120
  msgstr ""
1121
 
1122
- #: admin/views/Galleries.php:430 admin/views/Galleries.php:432
1123
  msgid "Social Bulk Embed"
1124
  msgstr ""
1125
 
1126
- #: admin/views/Galleries.php:435
1127
- msgid "Optimize Images"
1128
- msgstr ""
1129
-
1130
- #: admin/views/Galleries.php:452
1131
- msgid "Pricelist"
1132
- msgstr ""
1133
-
1134
- #: admin/views/Galleries.php:453
1135
- msgid "Add pricelist"
1136
  msgstr ""
1137
 
1138
- #: admin/views/Galleries.php:454
1139
- msgid "Remove pricelist"
1140
  msgstr ""
1141
 
1142
- #: admin/views/Galleries.php:471
1143
- msgid ""
1144
- "Enter YouTube, Vimeo, Instagram, Flickr or Dailymotion URL here."
1145
  msgstr ""
1146
 
1147
- #: admin/views/Galleries.php:472 admin/views/Galleries.php:510
1148
  msgid "Add to gallery"
1149
  msgstr ""
1150
 
1151
- #: admin/views/Galleries.php:473 admin/views/Galleries.php:509
1152
- #: admin/views/Galleries.php:566 admin/views/Galleries.php:576
1153
- #: filemanager/view.php:262 filemanager/view.php:263
1154
- #: wd/templates/display_deactivation_popup.php:23
1155
  msgid "Cancel"
1156
  msgstr ""
1157
 
1158
- #: admin/views/Galleries.php:480
1159
  msgid "<b>Youtube</b> URL example:"
1160
  msgstr ""
1161
 
1162
- #: admin/views/Galleries.php:484
1163
  msgid "<b>Vimeo</b> URL example:"
1164
  msgstr ""
1165
 
1166
- #: admin/views/Galleries.php:488
1167
  msgid "<b>Instagram</b> URL example:"
1168
  msgstr ""
1169
 
1170
- #: admin/views/Galleries.php:490
1171
  msgid "post"
1172
  msgstr ""
1173
 
1174
- #: admin/views/Galleries.php:490
1175
  msgid ""
1176
  "to the end of URL if you want to embed the whole Instagram post, not only "
1177
  "its content."
1178
  msgstr ""
1179
 
1180
- #: admin/views/Galleries.php:498
1181
  msgid "<b>Flickr</b> URL example:"
1182
  msgstr ""
1183
 
1184
- #: admin/views/Galleries.php:502
1185
  msgid "<b>Dailymotion</b> URL example:"
1186
  msgstr ""
1187
 
1188
- #: admin/views/Galleries.php:521
1189
  msgid "username:"
1190
  msgstr ""
1191
 
1192
- #: admin/views/Galleries.php:529
1193
  msgid "Number of Instagram recent posts to add to gallery:"
1194
  msgstr ""
1195
 
1196
- #: admin/views/Galleries.php:537
1197
  msgid "embed type:"
1198
  msgstr ""
1199
 
1200
- #: admin/views/Galleries.php:556
1201
  msgid "Resize images to: "
1202
  msgstr ""
1203
 
1204
- #: admin/views/Galleries.php:559
1205
  msgid "The maximum size of resized image."
1206
  msgstr ""
1207
 
1208
- #: admin/views/Galleries.php:580
 
 
 
 
1209
  msgid "Alt/Title: "
1210
  msgstr ""
1211
 
1212
- #: admin/views/Galleries.php:587
 
 
 
 
 
 
 
 
 
1213
  msgid "Redirect URL: "
1214
  msgstr ""
1215
 
1216
- #: admin/views/Galleries.php:594
 
 
 
 
1217
  msgid "Description: "
1218
  msgstr ""
1219
 
1220
- #: admin/views/Galleries.php:613
 
 
 
 
1221
  #, fuzzy
1222
  #| msgid "You have already rated."
1223
  msgid "You have unsaved changes."
1224
  msgstr "Jy het reeds gegradeer"
1225
 
1226
- #: admin/views/Galleries.php:626 photo-gallery.php:395
 
 
 
 
 
 
1227
  #, fuzzy
1228
  #| msgid "Show comments"
1229
  msgid "Show order column"
1230
  msgstr "Wys kommentaar"
1231
 
1232
- #: admin/views/Galleries.php:629 admin/views/Galleries.php:696
1233
- #: admin/views/Shortcode.php:611 framework/WDWLibrary.php:889
1234
- msgid "Filename"
1235
- msgstr "lêernaam"
1236
-
1237
- #: admin/views/Galleries.php:633 admin/views/Options.php:1501
1238
- #: admin/views/Options.php:1645 admin/views/Ratings.php:57
1239
- #: admin/views/Ratings.php:74 admin/views/Shortcode.php:1389
1240
- #: admin/views/WidgetTags.php:86
1241
- msgid "Image"
1242
  msgstr ""
1243
 
1244
- #: admin/views/Galleries.php:634 admin/views/Galleries.php:739
1245
- msgid "Alt/Title"
1246
- msgstr ""
 
 
1247
 
1248
- #: admin/views/Galleries.php:638 admin/views/Galleries.php:758
1249
- msgid "Redirect URL"
1250
- msgstr ""
 
 
 
 
 
 
1251
 
1252
- #: admin/views/Galleries.php:705
1253
- msgid "Date modified"
 
 
 
1254
  msgstr ""
1255
 
1256
- #: admin/views/Galleries.php:706 admin/views/Shortcode.php:614
 
 
 
 
 
1257
  msgid "Resolution"
1258
  msgstr ""
1259
 
1260
- #: admin/views/Galleries.php:707 admin/views/Shortcode.php:612
1261
- #: framework/WDWLibrary.php:890
 
 
 
 
 
1262
  msgid "Size"
1263
  msgstr "grootte"
1264
 
1265
- #: admin/views/Galleries.php:717
1266
- msgid "Crop"
 
 
1267
  msgstr ""
1268
 
1269
- #: admin/views/Galleries.php:772
1270
- msgid "Remove tag"
1271
  msgstr ""
1272
 
1273
- #: admin/views/Options.php:44 admin/views/Themes.php:175
1274
- msgid "Save"
 
 
 
 
 
 
1275
  msgstr ""
1276
 
1277
- #: admin/views/Options.php:50
1278
- msgid "Reset all options"
1279
  msgstr ""
1280
 
1281
- #: admin/views/Options.php:51 admin/views/Themes.php:180
1282
- msgid "Do you want to reset to default?"
1283
  msgstr ""
1284
 
1285
- #: admin/views/Options.php:69
1286
- msgid "General"
 
 
 
1287
  msgstr ""
1288
 
1289
- #: admin/views/Options.php:90
1290
- msgid "Images directory"
1291
  msgstr ""
1292
 
1293
- #: admin/views/Options.php:95
 
 
 
 
1294
  msgid ""
1295
- "Input an existing directory inside the Wordpress directory to store uploaded "
1296
- "images.<br />Old directory content will be moved to the new one."
1297
  msgstr ""
1298
 
1299
- #: admin/views/Options.php:100 admin/views/Options.php:899
1300
- msgid "Image dimensions"
1301
  msgstr ""
1302
 
1303
- #: admin/views/Options.php:105
1304
- msgid "The maximum size of the uploaded image (0 for original size)."
 
 
 
 
 
 
 
1305
  msgstr ""
1306
 
1307
- #: admin/views/Options.php:110
1308
- msgid "Generated thumbnail dimensions"
1309
  msgstr ""
1310
 
1311
- #: admin/views/Options.php:114
1312
- msgid "Recreate"
1313
  msgstr ""
1314
 
1315
- #: admin/views/Options.php:116
1316
  msgid ""
1317
- "The maximum size of the generated thumbnail. Its dimensions should be larger "
1318
- "than the ones of the frontend thumbnail."
 
1319
  msgstr ""
1320
 
1321
- #: admin/views/Options.php:121
1322
- msgid "Image quality"
1323
  msgstr ""
1324
 
1325
- #: admin/views/Options.php:125
1326
- msgid "Set the quality of gallery images. Provide a value from 0 to 100%."
1327
  msgstr ""
1328
 
1329
- #: admin/views/Options.php:130 admin/views/Shortcode.php:1351
1330
- msgid "Show search box"
1331
  msgstr ""
1332
 
1333
- #: admin/views/Options.php:139
1334
- msgid "Add placeholder to search"
1335
  msgstr ""
1336
 
1337
- #: admin/views/Options.php:147 admin/views/Shortcode.php:1358
1338
- msgid "Search box width"
 
 
 
 
 
 
 
 
 
 
 
 
1339
  msgstr ""
1340
 
1341
- #: admin/views/Options.php:155 admin/views/Shortcode.php:1377
1342
- msgid "Show \"Order by\" dropdown list"
1343
  msgstr ""
1344
 
1345
- #: admin/views/Options.php:164 admin/views/Shortcode.php:1368
1346
- #, fuzzy
1347
- #| msgid "Show rating"
1348
- msgid "Show tag box"
1349
- msgstr "Wys gradering"
1350
 
1351
- #: admin/views/Options.php:173
1352
- msgid "Preload images"
 
 
 
1353
  msgstr ""
1354
 
1355
- #: admin/views/Options.php:182
1356
- msgid "Count of images"
1357
  msgstr ""
1358
 
1359
- #: admin/views/Options.php:186
1360
- msgid "Count of images to preload (0 for all)."
1361
  msgstr ""
1362
 
1363
- #: admin/views/Options.php:191
1364
- msgid "Show/hide custom post types"
1365
  msgstr ""
1366
 
1367
- #: admin/views/Options.php:200
1368
- msgid "Show/hide comments for custom post types"
1369
  msgstr ""
1370
 
1371
- #: admin/views/Options.php:209
1372
- msgid "Include styles/scripts in necessary pages only"
1373
  msgstr ""
1374
 
1375
- #: admin/views/Options.php:218
1376
- msgid "Enable bulk download button"
1377
  msgstr ""
1378
 
1379
- #: admin/views/Options.php:223
 
 
 
 
1380
  msgid ""
1381
- "If enabled,it will be possible to download entire gallery with a single "
1382
- "button."
1383
  msgstr ""
1384
 
1385
- #: admin/views/Options.php:231
1386
- msgid "Right click protection"
1387
  msgstr ""
1388
 
1389
- #: admin/views/Options.php:236
1390
- msgid "Disable image right click possibility."
1391
  msgstr ""
1392
 
1393
- #: admin/views/Options.php:241
1394
- msgid "Enable html editor"
 
 
1395
  msgstr ""
1396
 
1397
- #: admin/views/Options.php:250
1398
- msgid "Enable href attribute"
1399
  msgstr ""
1400
 
1401
- #: admin/views/Options.php:255
1402
- msgid "Disable this option only if it conflicts with your theme."
1403
  msgstr ""
1404
 
1405
- #: admin/views/Options.php:260
1406
- msgid "Meta auto-fill"
1407
  msgstr ""
1408
 
1409
- #: admin/views/Options.php:265
1410
  msgid ""
1411
- "Enabling this option the meta description of the image will be automatically "
1412
- "filled in image description field."
1413
  msgstr ""
1414
 
1415
- #: admin/views/Options.php:270
1416
- msgid "Roles"
1417
  msgstr ""
1418
 
1419
- #: admin/views/Options.php:282
1420
  msgid ""
1421
- "Choose a user type who can add/edit galleries, images, gallery groups and "
1422
- "tags."
1423
  msgstr ""
1424
 
1425
- #: admin/views/Options.php:288
1426
- #, fuzzy
1427
- #| msgid "Gallery is empty."
1428
- msgid "Gallery role"
1429
- msgstr "Gallery is leeg."
1430
-
1431
- #: admin/views/Options.php:293
1432
- msgid "Only author can change a gallery."
1433
  msgstr ""
1434
 
1435
- #: admin/views/Options.php:299
1436
- msgid "Gallery group role"
 
 
 
1437
  msgstr ""
1438
 
1439
- #: admin/views/Options.php:304
1440
- msgid "Only author can change an gallery group."
1441
  msgstr ""
1442
 
1443
- #: admin/views/Options.php:310
1444
- msgid "Image role"
1445
  msgstr ""
1446
 
1447
- #: admin/views/Options.php:315
1448
- msgid "Only author can change an image."
1449
- msgstr ""
 
 
1450
 
1451
- #: admin/views/Options.php:321 admin/views/Options.php:324
1452
- #: photo-gallery.php:283
1453
- msgid "Generate Shortcode"
 
1454
  msgstr ""
1455
 
1456
- #: admin/views/Options.php:327
1457
- msgid "Generate or edit a shortcode."
1458
  msgstr ""
1459
 
1460
- #: admin/views/Options.php:335 photo-gallery.php:282
1461
- msgid "Uninstall"
1462
  msgstr ""
1463
 
1464
- #: admin/views/Options.php:350
1465
- msgid "Open in a new window"
 
 
 
 
 
 
 
1466
  msgstr ""
1467
 
1468
- #: admin/views/Options.php:359
1469
- msgid "Number of image columns"
1470
  msgstr ""
1471
 
1472
- #: admin/views/Options.php:367 admin/views/Options.php:599
1473
- #: admin/views/Shortcode.php:409 admin/views/Shortcode.php:666
1474
- #: admin/views/Shortcode.php:717 admin/views/Shortcode.php:761
1475
- #: admin/views/Shortcode.php:805
1476
- msgid "Images per page"
1477
  msgstr ""
1478
 
1479
- #: admin/views/Options.php:375
1480
- msgid "Frontend thumbnail dimensions"
1481
  msgstr ""
1482
 
1483
- #: admin/views/Options.php:380
1484
- msgid ""
1485
- "The default size of the thumbnail which will be displayed in the website."
1486
  msgstr ""
1487
 
1488
- #: admin/views/Options.php:387
1489
- msgid "Show image title"
1490
  msgstr ""
1491
 
1492
- #: admin/views/Options.php:389 admin/views/Options.php:402
1493
- #: admin/views/Options.php:1030 admin/views/Shortcode.php:431
1494
- #: admin/views/Shortcode.php:872 admin/views/Shortcode.php:1003
1495
- #: admin/views/Shortcode.php:1052 admin/views/Shortcode.php:1101
1496
- #, fuzzy
1497
- #| msgid "Show info"
1498
- msgid "Show on hover"
1499
- msgstr "Wys info"
1500
 
1501
- #: admin/views/Options.php:390 admin/views/Options.php:403
1502
- #: admin/views/Options.php:1031 admin/views/Shortcode.php:433
1503
- #: admin/views/Shortcode.php:873 admin/views/Shortcode.php:1004
1504
- #: admin/views/Shortcode.php:1053 admin/views/Shortcode.php:1102
1505
- msgid "Always show"
1506
  msgstr ""
1507
 
1508
- #: admin/views/Options.php:391 admin/views/Options.php:404
1509
- #: admin/views/Options.php:1032 admin/views/Shortcode.php:435
1510
- #: admin/views/Shortcode.php:874 admin/views/Shortcode.php:1005
1511
- #: admin/views/Shortcode.php:1054 admin/views/Shortcode.php:1103
1512
- msgid "Don't show"
1513
  msgstr ""
1514
 
1515
- #: admin/views/Options.php:400
1516
  #, fuzzy
1517
  #| msgid "Show comments"
1518
- msgid "Show ecommerce icon"
1519
  msgstr "Wys kommentaar"
1520
 
1521
- #: admin/views/Options.php:413
1522
- msgid "Enable image pagination"
 
1523
  msgstr ""
1524
 
1525
- #: admin/views/Options.php:422
1526
- msgid "Show gallery name"
1527
- msgstr ""
 
 
1528
 
1529
- #: admin/views/Options.php:431 admin/views/Shortcode.php:864
1530
- msgid "Show gallery description"
 
 
1531
  msgstr ""
1532
 
1533
- #: admin/views/Options.php:440
1534
- msgid "Play icon over the video thumbnail"
1535
  msgstr ""
1536
 
1537
- #: admin/views/Options.php:464 admin/views/Options.php:513
1538
- #: admin/views/Shortcode.php:349 admin/views/Shortcode.php:364
1539
- #: admin/views/Shortcode.php:1024 admin/views/Shortcode.php:1073
1540
- msgid "Vertical"
1541
  msgstr ""
1542
 
1543
- #: admin/views/Options.php:465 admin/views/Options.php:514
1544
- #: admin/views/Shortcode.php:354 admin/views/Shortcode.php:369
1545
- #: admin/views/Shortcode.php:1029 admin/views/Shortcode.php:1078
1546
- msgid "Horizontal"
1547
  msgstr ""
1548
 
1549
- #: admin/views/Options.php:474
1550
- msgid "Show description in Vertical Masonry view"
 
 
1551
  msgstr ""
1552
 
1553
- #: admin/views/Options.php:499 admin/views/Shortcode.php:382
1554
- #: admin/views/Shortcode.php:1042 admin/views/Shortcode.php:1091
1555
- msgid "Total width of mosaic"
1556
  msgstr ""
1557
 
1558
- #: admin/views/Options.php:503 admin/views/Options.php:593
1559
- #: admin/views/Options.php:615 admin/views/Options.php:626
1560
- msgid "Width of mosaic as a percentage of container's width."
 
1561
  msgstr ""
1562
 
1563
- #: admin/views/Options.php:521 admin/views/Shortcode.php:374
1564
- #: admin/views/Shortcode.php:1034 admin/views/Shortcode.php:1083
1565
- msgid "Resizable mosaic"
1566
  msgstr ""
1567
 
1568
- #: admin/views/Options.php:546 admin/views/Options.php:589
1569
- #: admin/views/Shortcode.php:549 admin/views/Shortcode.php:572
1570
- msgid "Image width"
 
1571
  msgstr ""
1572
 
1573
- #: admin/views/Options.php:556 admin/views/Options.php:610
1574
- #: admin/views/Options.php:757 admin/views/Options.php:920
1575
- #: admin/views/Shortcode.php:558 admin/views/Shortcode.php:581
1576
- msgid "Enable image title"
1577
  msgstr ""
1578
 
1579
- #: admin/views/Options.php:565 admin/views/Options.php:621
1580
- #: admin/views/Options.php:803 admin/views/Shortcode.php:565
1581
- #: admin/views/Shortcode.php:588
1582
- msgid "Enable image description"
1583
  msgstr ""
1584
 
1585
- #: admin/views/Options.php:632 admin/views/Options.php:1005
1586
- #: admin/views/Shortcode.php:418 admin/views/Shortcode.php:675
1587
- #: admin/views/Shortcode.php:726 admin/views/Shortcode.php:770
1588
- #: admin/views/Shortcode.php:814
1589
- msgid "Enable pagination"
1590
  msgstr ""
1591
 
1592
- #: admin/views/Options.php:657
1593
- msgid "Slideshow effect"
 
 
 
1594
  msgstr ""
1595
 
1596
- #: admin/views/Options.php:664 admin/views/Options.php:1108
1597
- #: admin/views/WidgetSlideshow.php:106
1598
- msgid "This effect is disabled in free version."
1599
  msgstr ""
1600
 
1601
- #: admin/views/Options.php:675 admin/views/Options.php:1119
1602
- #: admin/views/Shortcode.php:290 admin/views/Shortcode.php:1171
1603
- msgid "Effect duration"
1604
  msgstr ""
1605
 
1606
- #: admin/views/Options.php:683 admin/views/Options.php:872
1607
- #: admin/views/Options.php:1136 admin/views/Shortcode.php:299
1608
- #: admin/views/Shortcode.php:699 admin/views/Shortcode.php:1187
1609
- msgid "Time interval"
1610
  msgstr ""
1611
 
1612
- #: admin/views/Options.php:691 admin/views/Shortcode.php:308
1613
- msgid "Slideshow dimensions"
 
 
 
 
 
 
1614
  msgstr ""
1615
 
1616
- #: admin/views/Options.php:700 admin/views/Options.php:930
1617
- msgid "Enable autoplay"
1618
  msgstr ""
1619
 
1620
- #: admin/views/Options.php:709
1621
- msgid "Enable shuffle"
 
 
1622
  msgstr ""
1623
 
1624
- #: admin/views/Options.php:718 admin/views/Options.php:1173
1625
- #: admin/views/Shortcode.php:643 admin/views/Shortcode.php:1221
1626
- msgid "Enable control buttons"
1627
  msgstr ""
1628
 
1629
- #: admin/views/Options.php:727 admin/views/Options.php:1247
1630
- msgid "Show Next / Previous buttons"
 
 
1631
  msgstr ""
1632
 
1633
- #: admin/views/Options.php:729 admin/views/Options.php:1249
1634
- msgid "On hover"
1635
  msgstr ""
1636
 
1637
- #: admin/views/Options.php:730 admin/views/Options.php:1250
1638
- msgid "Always"
 
 
1639
  msgstr ""
1640
 
1641
- #: admin/views/Options.php:738 admin/views/Shortcode.php:650
1642
- msgid "Enable slideshow filmstrip"
1643
- msgstr ""
1644
-
1645
- #: admin/views/Options.php:748
1646
- msgid "Slideshow filmstrip size"
1647
- msgstr ""
1648
-
1649
- #: admin/views/Options.php:766
1650
- msgid "Title position"
1651
- msgstr ""
1652
-
1653
- #: admin/views/Options.php:788
1654
- msgid "Image title position on slideshow"
1655
  msgstr ""
1656
 
1657
- #: admin/views/Options.php:793 admin/views/Shortcode.php:918
1658
- msgid "Full width title"
 
 
1659
  msgstr ""
1660
 
1661
- #: admin/views/Options.php:798 admin/views/Shortcode.php:921
1662
- msgid "Display image title based on the slideshow dimensions."
1663
  msgstr ""
1664
 
1665
- #: admin/views/Options.php:812
1666
- msgid "Description position"
1667
  msgstr ""
1668
 
1669
- #: admin/views/Options.php:834
1670
- msgid "Image description position on slideshow"
1671
  msgstr ""
1672
 
1673
- #: admin/views/Options.php:839
1674
- msgid "Enable slideshow Music"
 
 
1675
  msgstr ""
1676
 
1677
- #: admin/views/Options.php:848 admin/views/Shortcode.php:965
1678
- msgid "Music url"
1679
- msgstr ""
 
 
1680
 
1681
- #: admin/views/Options.php:852
1682
- msgid "Only"
 
 
1683
  msgstr ""
1684
 
1685
- #: admin/views/Options.php:852
1686
- msgid "formats are supported."
1687
- msgstr ""
 
 
1688
 
1689
- #: admin/views/Options.php:881
1690
- msgid "Max. number of images"
 
 
1691
  msgstr ""
1692
 
1693
- #: admin/views/Options.php:890 admin/views/Shortcode.php:336
1694
- msgid "Carousel image ratio"
1695
  msgstr ""
1696
 
1697
- #: admin/views/Options.php:909 admin/views/Shortcode.php:595
1698
- msgid "Fixed width"
 
 
1699
  msgstr ""
1700
 
1701
- #: admin/views/Options.php:940 admin/views/Shortcode.php:981
1702
- msgid "Container fit"
1703
  msgstr ""
1704
 
1705
- #: admin/views/Options.php:950 admin/views/Shortcode.php:988
1706
- msgid "Next/Previous buttons"
1707
  msgstr ""
1708
 
1709
- #: admin/views/Options.php:960 admin/views/Shortcode.php:995
1710
- msgid "Play/Pause button"
 
 
1711
  msgstr ""
1712
 
1713
- #: admin/views/Options.php:980
1714
- msgid "Show gallery group/gallery name"
1715
  msgstr ""
1716
 
1717
- #: admin/views/Options.php:989
1718
- msgid "Number of gallery group columns"
1719
  msgstr ""
1720
 
1721
- #: admin/views/Options.php:997
1722
- #, fuzzy
1723
- #| msgid "Gallery is empty."
1724
- msgid "Gallery groups per page"
1725
- msgstr "Gallery is leeg."
1726
-
1727
- #: admin/views/Options.php:1014
1728
- #, fuzzy
1729
- #| msgid "Gallery is empty."
1730
- msgid "Gallery group view type"
1731
- msgstr "Gallery is leeg."
1732
-
1733
- #: admin/views/Options.php:1020
1734
  #, fuzzy
1735
- #| msgid "There are no images in this gallery."
1736
- msgid "The gallery images view type in the gallery group."
1737
- msgstr "Daar is geen foto's in die gallery."
1738
 
1739
- #: admin/views/Options.php:1028
 
1740
  #, fuzzy
1741
- #| msgid "Show rating"
1742
- msgid "Show title"
1743
- msgstr "Wys gradering"
1744
 
1745
- #: admin/views/Options.php:1038
1746
- msgid "Enable extended gallery group description"
 
1747
  msgstr ""
1748
 
1749
- #: admin/views/Options.php:1047
1750
- msgid "Gallery group thumbnail dimensions:"
1751
  msgstr ""
1752
 
1753
- #: admin/views/Options.php:1056
1754
- msgid "Extended gallery group height:"
1755
  msgstr ""
1756
 
1757
- #: admin/views/Options.php:1072 admin/views/Shortcode.php:1120
1758
- msgid "Image click action"
1759
  msgstr ""
1760
 
1761
- #: admin/views/Options.php:1074 admin/views/Shortcode.php:1121
1762
- msgid "Open lightbox"
1763
  msgstr ""
1764
 
1765
- #: admin/views/Options.php:1075 admin/views/Shortcode.php:1122
1766
- msgid "Redirect to url"
1767
  msgstr ""
1768
 
1769
- #: admin/views/Options.php:1076 admin/views/Shortcode.php:1123
1770
- msgid "Do Nothing"
1771
  msgstr ""
1772
 
1773
- #: admin/views/Options.php:1082 admin/views/Shortcode.php:1138
1774
- msgid "Full width lightbox"
1775
  msgstr ""
1776
 
1777
- #: admin/views/Options.php:1087 admin/views/Shortcode.php:1141
1778
- msgid "Enable full width feature for the lightbox."
1779
  msgstr ""
1780
 
1781
- #: admin/views/Options.php:1092 admin/views/Shortcode.php:1146
1782
- msgid "Lightbox dimensions"
1783
  msgstr ""
1784
 
1785
- #: admin/views/Options.php:1101 admin/views/Shortcode.php:1156
1786
- msgid "Lightbox effect"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1787
  msgstr ""
1788
 
1789
- #: admin/views/Options.php:1127 admin/views/Shortcode.php:1180
1790
- msgid "Lightbox autoplay"
1791
- msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1792
 
1793
- #: admin/views/Options.php:1144
1794
- msgid "Enable filmstrip"
1795
  msgstr ""
1796
 
1797
- #: admin/views/Options.php:1154 admin/views/Shortcode.php:1204
1798
- msgid "Filmstrip size"
1799
  msgstr ""
1800
 
1801
- #: admin/views/Options.php:1163 admin/views/Shortcode.php:1214
1802
- msgid "Display hit counter"
1803
  msgstr ""
1804
 
1805
- #: admin/views/Options.php:1208 admin/views/Shortcode.php:1230
1806
- #, fuzzy
1807
- #| msgid "Exit Fullscreen"
1808
- msgid "Enable fullscreen"
1809
- msgstr "Verlaat Volskerm"
1810
 
1811
- #: admin/views/Options.php:1217 admin/views/Shortcode.php:1238
1812
- #, fuzzy
1813
- #| msgid "Hide info"
1814
- msgid "Enable info"
1815
- msgstr "Steek info"
1816
 
1817
- #: admin/views/Options.php:1226 admin/views/Shortcode.php:1246
1818
- msgid "Display info by default"
1819
  msgstr ""
1820
 
1821
- #: admin/views/Options.php:1235 admin/views/Shortcode.php:1253
1822
- msgid "Full width info"
1823
  msgstr ""
1824
 
1825
- #: admin/views/Options.php:1240 admin/views/Shortcode.php:1256
1826
- msgid "Display image information based on the lightbox dimensions."
1827
  msgstr ""
1828
 
1829
- #: admin/views/Options.php:1256
1830
- msgid "Enable Email for comments"
1831
  msgstr ""
1832
 
1833
- #: admin/views/Options.php:1266
1834
- msgid "Enable Captcha for comments"
1835
  msgstr ""
1836
 
1837
- #: admin/views/Options.php:1276
1838
- msgid "Enable original image display button"
 
1839
  msgstr ""
1840
 
1841
- #: admin/views/Options.php:1285
1842
- msgid "Enable download button"
1843
  msgstr ""
1844
 
1845
- #: admin/views/Options.php:1294
1846
- #, fuzzy
1847
- #| msgid "Show comments"
1848
- msgid "Show images count"
1849
- msgstr "Wys kommentaar"
1850
 
1851
- #: admin/views/Options.php:1303
1852
- msgid "Enable loop"
1853
  msgstr ""
1854
 
1855
- #: admin/views/Options.php:1312
1856
- msgid "Enable"
1857
  msgstr ""
1858
 
1859
- #: admin/views/Options.php:1322
1860
- msgid "profile id"
1861
  msgstr ""
1862
 
1863
- #: admin/views/Options.php:1326
1864
- #, php-format
1865
- msgid "Create an account %s."
1866
  msgstr ""
1867
 
1868
- #: admin/views/Options.php:1326 admin/views/Shortcode.php:260
1869
- msgid "here"
1870
  msgstr ""
1871
 
1872
- #: admin/views/Options.php:1332 admin/views/Shortcode.php:1261
1873
- #, fuzzy
1874
- #| msgid "Hide rating"
1875
- msgid "Enable rating"
1876
- msgstr "Steek gradering"
1877
 
1878
- #: admin/views/Options.php:1342 admin/views/Shortcode.php:1269
1879
- #, fuzzy
1880
- #| msgid "Show comments"
1881
- msgid "Enable comments"
1882
- msgstr "Wys kommentaar"
1883
 
1884
- #: admin/views/Options.php:1356
1885
- #, fuzzy
1886
- #| msgid "Your comment is awaiting moderation"
1887
- msgid "Enable comments moderation"
1888
- msgstr "Jou opmerking is wag moderering"
1889
 
1890
- #: admin/views/Options.php:1366 admin/views/Shortcode.php:1281
1891
- msgid "Enable Facebook button"
1892
  msgstr ""
1893
 
1894
- #: admin/views/Options.php:1376 admin/views/Shortcode.php:1289
1895
- msgid "Enable Twitter button"
1896
  msgstr ""
1897
 
1898
- #: admin/views/Options.php:1386 admin/views/Shortcode.php:1297
1899
- msgid "Enable Google+ button"
 
1900
  msgstr ""
1901
 
1902
- #: admin/views/Options.php:1396 admin/views/Shortcode.php:1305
1903
- msgid "Enable Pinterest button"
1904
  msgstr ""
1905
 
1906
- #: admin/views/Options.php:1406 admin/views/Shortcode.php:1313
1907
- msgid "Enable Tumblr button"
1908
  msgstr ""
1909
 
1910
- #: admin/views/Options.php:1419 admin/views/Shortcode.php:1324
1911
- msgid "Enable Ecommerce button"
1912
  msgstr ""
1913
 
1914
- #: admin/views/Options.php:1438
1915
- #, fuzzy
1916
- #| msgid "Photo gallery plugin autoupdate interval."
1917
- msgid "Gallery autoupdate interval"
1918
- msgstr "Photo gallery plugin autoupdate interval."
1919
 
1920
- #: admin/views/Options.php:1441
1921
- msgid "hour"
1922
  msgstr ""
1923
 
1924
- #: admin/views/Options.php:1443
1925
- msgid "min"
1926
  msgstr ""
1927
 
1928
- #: admin/views/Options.php:1445
1929
- msgid "Minimum 1 min."
 
1930
  msgstr ""
1931
 
1932
- #: admin/views/Options.php:1451
1933
- msgid "Instagram"
 
 
 
1934
  msgstr ""
1935
 
1936
- #: admin/views/Options.php:1459
1937
- msgid "Sign in with Instagram"
 
 
1938
  msgstr ""
1939
 
1940
- #: admin/views/Options.php:1464
 
1941
  msgid ""
1942
- "Are you sure you want to reset access token, after resetting it you will "
1943
- "need to log in with Instagram again for using plugin"
1944
  msgstr ""
1945
 
1946
- #: admin/views/Options.php:1466
1947
- msgid "Sign out with Instagram"
 
 
 
1948
  msgstr ""
1949
 
1950
- #: admin/views/Options.php:1489 photo-gallery.php:1284
1951
- msgid "Watermark"
 
 
 
1952
  msgstr ""
1953
 
1954
- #: admin/views/Options.php:1494
1955
- msgid "Watermark type"
 
 
 
 
 
 
 
 
 
 
 
 
1956
  msgstr ""
1957
 
1958
- #: admin/views/Options.php:1499 admin/views/Options.php:1643
1959
- #: admin/views/Shortcode.php:1388 admin/views/Themes.php:4578
1960
- #: admin/views/WidgetTags.php:85
1961
- msgid "Text"
 
1962
  msgstr ""
1963
 
1964
- #: admin/views/Options.php:1507
1965
- msgid "Watermark url"
 
 
 
 
 
1966
  msgstr ""
1967
 
1968
- #: admin/views/Options.php:1518 admin/views/Options.php:1664
1969
- msgid "Add Image"
 
 
 
 
 
1970
  msgstr ""
1971
 
1972
- #: admin/views/Options.php:1521
1973
- msgid "Only .png format is supported."
 
 
 
 
 
1974
  msgstr ""
1975
 
1976
- #: admin/views/Options.php:1526
1977
- msgid "Watermark text"
 
 
 
1978
  msgstr ""
1979
 
1980
- #: admin/views/Options.php:1534
1981
- msgid "Watermark size"
 
 
 
 
1982
  msgstr ""
1983
 
1984
- #: admin/views/Options.php:1538
1985
- msgid "Enter size of watermark in percents according to image."
 
1986
  msgstr ""
1987
 
1988
- #: admin/views/Options.php:1543
1989
- msgid "Watermark font size"
 
1990
  msgstr ""
1991
 
1992
- #: admin/views/Options.php:1551
1993
- msgid "Watermark font style"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1994
  msgstr ""
1995
 
1996
- #: admin/views/Options.php:1579
1997
- msgid "Watermark color"
 
 
 
 
 
 
1998
  msgstr ""
1999
 
2000
- #: admin/views/Options.php:1587
2001
- msgid "Watermark opacity"
 
 
 
 
 
 
2002
  msgstr ""
2003
 
2004
- #: admin/views/Options.php:1591
2005
- msgid "Opacity value must be in the range of 0 to 100."
 
 
 
2006
  msgstr ""
2007
 
2008
- #: admin/views/Options.php:1596
2009
- msgid "Watermark position"
 
 
 
 
 
2010
  msgstr ""
2011
 
2012
- #: admin/views/Options.php:1619
2013
- msgid "Set Watermark"
 
 
 
2014
  msgstr ""
2015
 
2016
- #: admin/views/Options.php:1620
2017
- msgid "Reset watermark"
 
 
 
2018
  msgstr ""
2019
 
2020
- #: admin/views/Options.php:1622
2021
- msgid "Reset Watermark"
 
 
 
2022
  msgstr ""
2023
 
2024
- #: admin/views/Options.php:1633 photo-gallery.php:1288 photo-gallery.php:1403
2025
- msgid "Advertisement"
 
 
 
 
 
2026
  msgstr ""
2027
 
2028
- #: admin/views/Options.php:1638
2029
- msgid "Advertisement type"
 
 
 
 
 
 
 
 
 
 
 
 
 
2030
  msgstr ""
2031
 
2032
- #: admin/views/Options.php:1651 admin/views/Shortcode.php:1402
2033
- msgid "Advertisement url"
 
 
2034
  msgstr ""
2035
 
2036
- #: admin/views/Options.php:1667
 
 
2037
  msgid ""
2038
- "Enter absolute image file url or add file from Options page. (.jpg,.jpeg,."
2039
- "png,.gif formats are supported)"
2040
  msgstr ""
2041
 
2042
- #: admin/views/Options.php:1672 admin/views/Shortcode.php:1409
2043
- msgid "Advertisement text"
 
 
2044
  msgstr ""
2045
 
2046
- #: admin/views/Options.php:1680 admin/views/Shortcode.php:1395
2047
- msgid "Advertisement link"
 
 
2048
  msgstr ""
2049
 
2050
- #: admin/views/Options.php:1684
2051
- msgid "Enter a URL to open when the advertisement banner is clicked."
 
 
 
 
2052
  msgstr ""
2053
 
2054
- #: admin/views/Options.php:1689 admin/views/Shortcode.php:1446
2055
- msgid "Advertisement dimensions"
2056
- msgstr ""
 
 
 
 
 
 
 
 
2057
 
2058
- #: admin/views/Options.php:1694 admin/views/Shortcode.php:1451
2059
- msgid "Maximum values for watermark image width and height."
 
 
 
 
2060
  msgstr ""
2061
 
2062
- #: admin/views/Options.php:1699 admin/views/Shortcode.php:1438
2063
- msgid "Advertisement font size"
 
 
 
 
 
 
2064
  msgstr ""
2065
 
2066
- #: admin/views/Options.php:1707 admin/views/Shortcode.php:1417
2067
- msgid "Advertisement font style"
 
 
2068
  msgstr ""
2069
 
2070
- #: admin/views/Options.php:1722 admin/views/Shortcode.php:1431
2071
- #: admin/views/Themes.php:386 admin/views/Themes.php:449
2072
- #: admin/views/Themes.php:664 admin/views/Themes.php:698
2073
- #: admin/views/Themes.php:911 admin/views/Themes.php:973
2074
- #: admin/views/Themes.php:1357 admin/views/Themes.php:1418
2075
- #: admin/views/Themes.php:1643 admin/views/Themes.php:1731
2076
- #: admin/views/Themes.php:1974 admin/views/Themes.php:2036
2077
- #: admin/views/Themes.php:2091 admin/views/Themes.php:2427
2078
- #: admin/views/Themes.php:2570 admin/views/Themes.php:2651
2079
- #: admin/views/Themes.php:2711 admin/views/Themes.php:2918
2080
- #: admin/views/Themes.php:2973 admin/views/Themes.php:3028
2081
- #: admin/views/Themes.php:3164 admin/views/Themes.php:3333
2082
- #: admin/views/Themes.php:3975 admin/views/Themes.php:4117
2083
- #: admin/views/Themes.php:4166 admin/views/Themes.php:4242
2084
- #: admin/views/Themes.php:4426 admin/views/Themes.php:4811
2085
- msgid "Google fonts"
2086
  msgstr ""
2087
 
2088
- #: admin/views/Options.php:1724 admin/views/Shortcode.php:1433
2089
- #: admin/views/Themes.php:76 admin/views/Themes.php:107
2090
- #: admin/views/Themes.php:388 admin/views/Themes.php:451
2091
- #: admin/views/Themes.php:666 admin/views/Themes.php:700
2092
- #: admin/views/Themes.php:913 admin/views/Themes.php:975
2093
- #: admin/views/Themes.php:1359 admin/views/Themes.php:1420
2094
- #: admin/views/Themes.php:1645 admin/views/Themes.php:1733
2095
- #: admin/views/Themes.php:1976 admin/views/Themes.php:2038
2096
- #: admin/views/Themes.php:2093 admin/views/Themes.php:2429
2097
- #: admin/views/Themes.php:2572 admin/views/Themes.php:2653
2098
- #: admin/views/Themes.php:2713 admin/views/Themes.php:2920
2099
- #: admin/views/Themes.php:2975 admin/views/Themes.php:3030
2100
- #: admin/views/Themes.php:3166 admin/views/Themes.php:3335
2101
- #: admin/views/Themes.php:3977 admin/views/Themes.php:4119
2102
- #: admin/views/Themes.php:4168 admin/views/Themes.php:4244
2103
- #: admin/views/Themes.php:4428 admin/views/Themes.php:4813
2104
- #: framework/WDWLibrary.php:888
2105
- msgid "Default"
2106
- msgstr "verstek"
2107
 
2108
- #: admin/views/Options.php:1730 admin/views/Shortcode.php:1456
2109
- msgid "Advertisement color"
 
 
 
 
2110
  msgstr ""
2111
 
2112
- #: admin/views/Options.php:1738 admin/views/Shortcode.php:1464
2113
- msgid "Advertisement opacity"
 
 
 
 
 
 
2114
  msgstr ""
2115
 
2116
- #: admin/views/Options.php:1742 admin/views/Shortcode.php:1468
2117
- #: admin/views/Themes.php:309 admin/views/Themes.php:322
2118
- #: admin/views/Themes.php:565 admin/views/Themes.php:578
2119
- #: admin/views/Themes.php:813 admin/views/Themes.php:826
2120
- #: admin/views/Themes.php:1063 admin/views/Themes.php:1222
2121
- #: admin/views/Themes.php:1312 admin/views/Themes.php:1373
2122
- #: admin/views/Themes.php:1455 admin/views/Themes.php:1572
2123
- #: admin/views/Themes.php:1897 admin/views/Themes.php:1910
2124
- #: admin/views/Themes.php:2232 admin/views/Themes.php:2272
2125
- #: admin/views/Themes.php:2356 admin/views/Themes.php:2850
2126
- #: admin/views/Themes.php:2863 admin/views/Themes.php:3100
2127
- #: admin/views/Themes.php:3287 admin/views/Themes.php:3405
2128
- #: admin/views/Themes.php:3418 admin/views/Themes.php:3465
2129
- #: admin/views/Themes.php:3492 admin/views/Themes.php:3781
2130
- #: admin/views/Themes.php:3903 admin/views/Themes.php:4045
2131
- #: admin/views/Themes.php:4513 admin/views/Themes.php:4608
2132
- #: admin/views/Themes.php:4633 admin/views/Themes.php:4772
2133
- msgid "Value must be between 0 to 100."
2134
  msgstr ""
2135
 
2136
- #: admin/views/Options.php:1747 admin/views/Shortcode.php:1473
2137
- msgid "Advertisement position"
 
 
 
 
 
 
 
 
 
 
2138
  msgstr ""
2139
 
2140
- #: admin/views/Ratings.php:40 admin/views/Ratings.php:59
2141
- #: admin/views/Ratings.php:91
2142
- msgid "IP"
2143
  msgstr ""
2144
 
2145
- #: admin/views/Ratings.php:58 admin/views/Ratings.php:90
2146
- msgid "Rating"
 
2147
  msgstr ""
2148
 
2149
- #: admin/views/Ratings.php:60 admin/views/Ratings.php:92
2150
- #: admin/views/Shortcode.php:610
2151
- msgid "Date"
2152
  msgstr ""
2153
 
2154
- #: admin/views/Shortcode.php:129 admin/views/Shortcode.php:166
2155
- msgid "View type"
 
 
2156
  msgstr ""
2157
 
2158
- #: admin/views/Shortcode.php:183
2159
- msgid "This view is not available in free version."
 
 
 
 
 
 
2160
  msgstr ""
2161
 
2162
- #: admin/views/Shortcode.php:195
2163
- msgid "All Galleries"
 
 
 
 
 
 
 
 
2164
  msgstr ""
2165
 
2166
- #: admin/views/Shortcode.php:207
2167
- msgid "Album"
 
2168
  msgstr ""
2169
 
2170
- #: admin/views/Shortcode.php:210
2171
- msgid "Select Album"
 
2172
  msgstr ""
2173
 
2174
- #: admin/views/Shortcode.php:219
2175
- msgid "The selected album expanded content will be displayed."
 
2176
  msgstr ""
2177
 
2178
- #: admin/views/Shortcode.php:225
2179
- msgid "Tag"
 
 
 
2180
  msgstr ""
2181
 
2182
- #: admin/views/Shortcode.php:228
2183
- msgid "All Tags"
 
2184
  msgstr ""
2185
 
2186
- #: admin/views/Shortcode.php:242
2187
- msgid "Theme"
 
 
2188
  msgstr ""
2189
 
2190
- #: admin/views/Shortcode.php:259
2191
- msgid "Use default options"
2192
  msgstr ""
2193
 
2194
- #: admin/views/Shortcode.php:260
2195
- #, php-format
2196
- msgid "You can change the default options %s."
2197
  msgstr ""
2198
 
2199
- #: admin/views/Shortcode.php:276
2200
- msgid "Slideshow Effect"
2201
  msgstr ""
2202
 
2203
- #: admin/views/Shortcode.php:294 admin/views/Shortcode.php:303
2204
- #: admin/views/Shortcode.php:703 admin/views/Shortcode.php:1175
2205
- #: admin/views/Shortcode.php:1191
2206
- msgid "Interval between two images."
2207
  msgstr ""
2208
 
2209
- #: admin/views/Shortcode.php:313
2210
- msgid "Maximum values for slideshow width and height."
2211
  msgstr ""
2212
 
2213
- #: admin/views/Shortcode.php:318
2214
- msgid "Max. number of carousel images"
 
2215
  msgstr ""
2216
 
2217
- #: admin/views/Shortcode.php:326
2218
- msgid "Carousel dimensions"
 
2219
  msgstr ""
2220
 
2221
- #: admin/views/Shortcode.php:331 admin/views/Shortcode.php:599
2222
- msgid "Maximum values for carousel width and height."
2223
  msgstr ""
2224
 
2225
- #: admin/views/Shortcode.php:346 admin/views/Shortcode.php:361
2226
- #: admin/views/Shortcode.php:1021
2227
- msgid "Image thumbnail width:"
2228
  msgstr ""
2229
 
2230
- #: admin/views/Shortcode.php:350 admin/views/Shortcode.php:365
2231
- #: admin/views/Shortcode.php:1025
2232
- msgid "Max. number of image columns: "
2233
  msgstr ""
2234
 
2235
- #: admin/views/Shortcode.php:377 admin/views/Shortcode.php:1037
2236
- #: admin/views/Shortcode.php:1086
2237
- msgid ""
2238
- "Mosaic thumbnails do not have fixed size, but are proportional to the width "
2239
- "of the parent container. This option keeps thumbs to look nice when viewed "
2240
- "with very large or very small screen. Prevents zooming of thumbs."
2241
  msgstr ""
2242
 
2243
- #: admin/views/Shortcode.php:386 admin/views/Shortcode.php:1046
2244
- #: admin/views/Shortcode.php:1095
2245
- msgid "Percentage of container's width."
2246
  msgstr ""
2247
 
2248
- #: admin/views/Shortcode.php:391 admin/views/Shortcode.php:539
2249
- msgid "Image Thumbnail dimensions"
2250
  msgstr ""
2251
 
2252
- #: admin/views/Shortcode.php:396
2253
- msgid "Maximum values for thumbnail dimension."
2254
  msgstr ""
2255
 
2256
- #: admin/views/Shortcode.php:401 admin/views/Shortcode.php:461
2257
- #: admin/views/Shortcode.php:496 admin/views/Shortcode.php:531
2258
- msgid "Max. number of image columns"
2259
  msgstr ""
2260
 
2261
- #: admin/views/Shortcode.php:413 admin/views/Shortcode.php:670
2262
- #: admin/views/Shortcode.php:721 admin/views/Shortcode.php:765
2263
- #: admin/views/Shortcode.php:809
2264
- msgid ""
2265
- "If you want to display all images you should leave it blank or insert 0."
2266
  msgstr ""
2267
 
2268
- #: admin/views/Shortcode.php:421 admin/views/Shortcode.php:729
2269
- #: admin/views/Shortcode.php:773 admin/views/Shortcode.php:817
2270
- #, fuzzy
2271
- #| msgid "Load More..."
2272
- msgid "Load More"
2273
- msgstr "Laai meer..."
2274
-
2275
- #: admin/views/Shortcode.php:422 admin/views/Shortcode.php:679
2276
- #: admin/views/Shortcode.php:730 admin/views/Shortcode.php:774
2277
- #: admin/views/Shortcode.php:818
2278
- msgid "Scroll Load"
2279
  msgstr ""
2280
 
2281
- #: admin/views/Shortcode.php:430
2282
- msgid "Ecommerce icon"
2283
  msgstr ""
2284
 
2285
- #: admin/views/Shortcode.php:443 admin/views/Shortcode.php:479
2286
- msgid "Max. number of album columns"
 
 
2287
  msgstr ""
2288
 
2289
- #: admin/views/Shortcode.php:451
2290
- msgid "Album Thumbnail dimensions"
2291
  msgstr ""
2292
 
2293
- #: admin/views/Shortcode.php:456 admin/views/Shortcode.php:526
2294
- msgid "Maximum values for album thumb width and height."
 
 
2295
  msgstr ""
2296
 
2297
- #: admin/views/Shortcode.php:469
2298
- msgid "Image thumbnail dimensions"
2299
  msgstr ""
2300
 
2301
- #: admin/views/Shortcode.php:474 admin/views/Shortcode.php:544
2302
- msgid "Maximum values for thumbnail width and height."
 
 
2303
  msgstr ""
2304
 
2305
- #: admin/views/Shortcode.php:487
2306
- msgid "Album Thumbnail width"
2307
  msgstr ""
2308
 
2309
- #: admin/views/Shortcode.php:491
2310
- msgid "Maximum value for album thumbnail width."
2311
  msgstr ""
2312
 
2313
- #: admin/views/Shortcode.php:504
2314
- msgid "Image thumbnail width"
2315
  msgstr ""
2316
 
2317
- #: admin/views/Shortcode.php:508
2318
- msgid "Maximum value for thumbnail width."
2319
  msgstr ""
2320
 
2321
- #: admin/views/Shortcode.php:513
2322
- msgid "Album row height"
2323
  msgstr ""
2324
 
2325
- #: admin/views/Shortcode.php:521
2326
- msgid "Album thumbnail dimensions"
 
 
 
 
 
 
 
2327
  msgstr ""
2328
 
2329
- #: admin/views/Shortcode.php:553 admin/views/Shortcode.php:576
2330
- msgid "Maximum value for image width."
2331
  msgstr ""
2332
 
2333
- #: admin/views/Shortcode.php:606
2334
- msgid "Sort images by"
2335
  msgstr ""
2336
 
2337
- #: admin/views/Shortcode.php:608
2338
- #, fuzzy
2339
- #| msgid "Order by: "
2340
- msgid "Order"
2341
- msgstr "Om deur"
2342
 
2343
- #: admin/views/Shortcode.php:621
2344
- msgid "Order images"
 
2345
  msgstr ""
2346
 
2347
- #: admin/views/Shortcode.php:622
2348
- msgid "Ascending"
2349
  msgstr ""
2350
 
2351
- #: admin/views/Shortcode.php:623
2352
- msgid "Descending"
 
 
2353
  msgstr ""
2354
 
2355
- #: admin/views/Shortcode.php:628 admin/views/Shortcode.php:684
2356
- #: admin/views/Shortcode.php:744 admin/views/Shortcode.php:788
2357
- #: admin/views/Shortcode.php:832
2358
- msgid "Images per load"
2359
  msgstr ""
2360
 
2361
- #: admin/views/Shortcode.php:636 admin/views/Shortcode.php:692
2362
- msgid "Enable Autoplay"
2363
  msgstr ""
2364
 
2365
- #: admin/views/Shortcode.php:653
2366
- msgid "Enable slideshow filmstrip view."
2367
  msgstr ""
2368
 
2369
- #: admin/views/Shortcode.php:658
2370
- msgid "Slideshow Filmstrip size"
2371
  msgstr ""
2372
 
2373
- #: admin/views/Shortcode.php:678
2374
- #, fuzzy
2375
- #| msgid "Load More..."
2376
- msgid "Load more"
2377
- msgstr "Laai meer..."
2378
 
2379
- #: admin/views/Shortcode.php:708 admin/views/Shortcode.php:752
2380
- #: admin/views/Shortcode.php:796
2381
- #, fuzzy
2382
- #| msgid "Album is empty."
2383
- msgid "Albums per page"
2384
- msgstr "Album is leeg."
2385
 
2386
- #: admin/views/Shortcode.php:712 admin/views/Shortcode.php:739
2387
- #: admin/views/Shortcode.php:756 admin/views/Shortcode.php:783
2388
- #: admin/views/Shortcode.php:800 admin/views/Shortcode.php:827
2389
- msgid ""
2390
- "If you want to display all albums you should leave it blank or insert 0."
2391
  msgstr ""
2392
 
2393
- #: admin/views/Shortcode.php:735 admin/views/Shortcode.php:779
2394
- #: admin/views/Shortcode.php:823
2395
- msgid "Albums per load"
2396
  msgstr ""
2397
 
2398
- #: admin/views/Shortcode.php:842
2399
- msgid "Show gallery title"
2400
  msgstr ""
2401
 
2402
- #: admin/views/Shortcode.php:849
2403
- msgid "Show album title"
2404
  msgstr ""
2405
 
2406
- #: admin/views/Shortcode.php:856
2407
- msgid "Enable album description"
2408
  msgstr ""
2409
 
2410
- #: admin/views/Shortcode.php:859
2411
  msgid ""
2412
- "If you disable description only the title of the album will be displayed."
 
2413
  msgstr ""
2414
 
2415
- #: admin/views/Shortcode.php:871 admin/views/Shortcode.php:1051
2416
- #: admin/views/Shortcode.php:1100
2417
- msgid "Image title"
2418
  msgstr ""
2419
 
2420
- #: admin/views/Shortcode.php:879
2421
- msgid "Enable Shuffle"
2422
  msgstr ""
2423
 
2424
- #: admin/views/Shortcode.php:886 admin/views/Shortcode.php:974
2425
- msgid "Enable Image Title"
2426
  msgstr ""
2427
 
2428
- #: admin/views/Shortcode.php:893
2429
- msgid "Title Position"
 
2430
  msgstr ""
2431
 
2432
- #: admin/views/Shortcode.php:913
2433
- msgid "Image title position on slideshow."
 
 
2434
  msgstr ""
2435
 
2436
- #: admin/views/Shortcode.php:926
2437
- msgid "Enable Image Description"
2438
  msgstr ""
2439
 
2440
- #: admin/views/Shortcode.php:933
2441
- msgid "Description Position"
 
 
2442
  msgstr ""
2443
 
2444
- #: admin/views/Shortcode.php:952
2445
- msgid "Image description position on slideshow."
2446
  msgstr ""
2447
 
2448
- #: admin/views/Shortcode.php:958
2449
- msgid "Enable Slideshow Music"
 
 
2450
  msgstr ""
2451
 
2452
- #: admin/views/Shortcode.php:969
2453
- msgid "Enter absolute audio file url or add file from Options page."
2454
  msgstr ""
2455
 
2456
- #: admin/views/Shortcode.php:1002
2457
- #, fuzzy
2458
- #| msgid "Album is empty."
2459
- msgid "Album title"
2460
- msgstr "Album is leeg."
2461
-
2462
- #: admin/views/Shortcode.php:1010 admin/views/Shortcode.php:1059
2463
- #, fuzzy
2464
- #| msgid "Album is empty."
2465
- msgid "Album view type"
2466
- msgstr "Album is leeg."
2467
-
2468
- #: admin/views/Shortcode.php:1014 admin/views/Shortcode.php:1063
2469
- msgid "The gallery images view type in the album."
2470
  msgstr ""
2471
 
2472
- #: admin/views/Shortcode.php:1070 admin/views/Shortcode.php:2910
2473
- msgid "Image thumbnail width: "
2474
  msgstr ""
2475
 
2476
- #: admin/views/Shortcode.php:1074 admin/views/Shortcode.php:2911
2477
- msgid "Max. number of image columns:"
 
 
2478
  msgstr ""
2479
 
2480
- #: admin/views/Shortcode.php:1128
2481
- msgid "Open in new window"
2482
  msgstr ""
2483
 
2484
- #: admin/views/Shortcode.php:1131
2485
- msgid "Open new window when redirecting."
 
2486
  msgstr ""
2487
 
2488
- #: admin/views/Shortcode.php:1151
2489
- msgid "Maximum values for lightbox width and height."
2490
- msgstr ""
 
 
 
2491
 
2492
- #: admin/views/Shortcode.php:1166
2493
- msgid "Lightbox slideshow effect."
 
 
 
2494
  msgstr ""
2495
 
2496
- #: admin/views/Shortcode.php:1196
2497
- msgid "Enable filmstrip in lightbox"
 
 
 
 
 
 
 
 
 
 
2498
  msgstr ""
2499
 
2500
- #: admin/views/Shortcode.php:1199
2501
- msgid "Enable filmstrip view for images."
 
 
 
 
 
 
 
 
2502
  msgstr ""
2503
 
2504
- #: admin/views/Shortcode.php:1224
2505
- msgid "Enable control buttons in lightbox."
 
 
 
2506
  msgstr ""
2507
 
2508
- #: admin/views/Shortcode.php:1233
2509
- msgid "Enable fullscreen view for images."
 
2510
  msgstr ""
2511
 
2512
- #: admin/views/Shortcode.php:1241
2513
- msgid "Enable title, description for images."
 
 
 
2514
  msgstr ""
2515
 
2516
- #: admin/views/Shortcode.php:1264
2517
- msgid "Enable rating for images."
 
 
2518
  msgstr ""
2519
 
2520
- #: admin/views/Shortcode.php:1272
2521
- msgid "Enable comments for images."
 
 
 
 
 
 
 
 
2522
  msgstr ""
2523
 
2524
- #: admin/views/Shortcode.php:1284
2525
- msgid "Enable Facebook share button for images."
 
 
 
 
 
 
2526
  msgstr ""
2527
 
2528
- #: admin/views/Shortcode.php:1292
2529
- msgid "Enable Twitter share button for images."
2530
  msgstr ""
2531
 
2532
- #: admin/views/Shortcode.php:1300
2533
- msgid "Enable Google+ share button for images."
2534
  msgstr ""
2535
 
2536
- #: admin/views/Shortcode.php:1308
2537
- msgid "Enable Pinterest share button for images."
2538
  msgstr ""
2539
 
2540
- #: admin/views/Shortcode.php:1316
2541
- msgid "Enable Tumblr share button for images."
2542
  msgstr ""
2543
 
2544
- #: admin/views/Shortcode.php:1327
2545
- msgid "Enable Ecommerce for images."
2546
  msgstr ""
2547
 
2548
- #: admin/views/Shortcode.php:1340
2549
- msgid "Toggle panel"
2550
  msgstr ""
2551
 
2552
- #: admin/views/Shortcode.php:1386
2553
- msgid "Advertisement type:"
2554
  msgstr ""
2555
 
2556
- #: admin/views/Shortcode.php:1397
2557
- msgid "Enter absolute url."
2558
  msgstr ""
2559
 
2560
- #: admin/views/Shortcode.php:1404
2561
- msgid "Enter absolute image file url or add file from Options page."
 
 
2562
  msgstr ""
2563
 
2564
- #: admin/views/Shortcode.php:1507
2565
- msgid "Insert into post"
2566
  msgstr ""
2567
 
2568
- #: admin/views/Shortcode.php:1532
2569
- msgid "New shortcode"
2570
  msgstr ""
2571
 
2572
- #: admin/views/Shortcode.php:1541 admin/views/Shortcode.php:1604
2573
- msgid "Generate"
2574
  msgstr ""
2575
 
2576
- #: admin/views/Shortcode.php:1546
2577
- msgid "Shortcode"
2578
  msgstr ""
2579
 
2580
- #: admin/views/Shortcode.php:1552
2581
- msgid "PHP function"
2582
  msgstr ""
2583
 
2584
- #: admin/views/Shortcode.php:1618
2585
- msgid "There is no shortcode with such ID!"
2586
  msgstr ""
2587
 
2588
- #: admin/views/Shortcode.php:2909
2589
- msgid "Image thumbnail dimensions:"
2590
  msgstr ""
2591
 
2592
- #: admin/views/Shortcode.php:2912
2593
- msgid "Image thumbnail height:"
 
 
2594
  msgstr ""
2595
 
2596
- #: admin/views/Shortcode.php:2913
2597
- msgid "Number of image rows:"
2598
  msgstr ""
2599
 
2600
- #: admin/views/Themes.php:18
2601
- msgid "You can't change theme parameters in free version."
2602
  msgstr ""
2603
 
2604
- #: admin/views/Themes.php:170
2605
- msgid "Theme Name"
2606
  msgstr ""
2607
 
2608
- #: admin/views/Themes.php:178
2609
- msgid "Reset to default theme"
2610
  msgstr ""
2611
 
2612
- #: admin/views/Themes.php:206 admin/views/Themes.php:1516
2613
- #: admin/views/Themes.php:1801 admin/views/Themes.php:2334
2614
- #: admin/views/Themes.php:3118 admin/views/Themes.php:4490
2615
- msgid "Margin:"
2616
  msgstr ""
2617
 
2618
- #: admin/views/Themes.php:212 admin/views/Themes.php:512
2619
- #: admin/views/Themes.php:761 admin/views/Themes.php:1523
2620
- #: admin/views/Themes.php:1794 admin/views/Themes.php:2341
2621
- #: admin/views/Themes.php:3125 admin/views/Themes.php:4497
2622
- msgid "Padding:"
2623
  msgstr ""
2624
 
2625
- #: admin/views/Themes.php:218 admin/views/Themes.php:518
2626
- #: admin/views/Themes.php:767 admin/views/Themes.php:1530
2627
- #: admin/views/Themes.php:1808 admin/views/Themes.php:2774
2628
- #: admin/views/Themes.php:3183 admin/views/Themes.php:4447
2629
- msgid "Border width:"
2630
  msgstr ""
2631
 
2632
- #: admin/views/Themes.php:224 admin/views/Themes.php:524
2633
- #: admin/views/Themes.php:773 admin/views/Themes.php:1536
2634
- #: admin/views/Themes.php:1814 admin/views/Themes.php:2780
2635
- #: admin/views/Themes.php:3189 admin/views/Themes.php:4453
2636
  #, fuzzy
2637
- #| msgid "Order by: "
2638
- msgid "Border style:"
2639
- msgstr "Om deur"
2640
 
2641
- #: admin/views/Themes.php:238 admin/views/Themes.php:538
2642
- #: admin/views/Themes.php:787 admin/views/Themes.php:1550
2643
- #: admin/views/Themes.php:1828 admin/views/Themes.php:2794
2644
- #: admin/views/Themes.php:3203 admin/views/Themes.php:4467
2645
- msgid "Border color:"
2646
  msgstr ""
2647
 
2648
- #: admin/views/Themes.php:244 admin/views/Themes.php:544
2649
- #: admin/views/Themes.php:793 admin/views/Themes.php:1556
2650
- #: admin/views/Themes.php:1834 admin/views/Themes.php:2360
2651
- #: admin/views/Themes.php:2800 admin/views/Themes.php:3209
2652
- #: admin/views/Themes.php:4473
2653
- msgid "Border radius:"
2654
- msgstr ""
2655
 
2656
- #: admin/views/Themes.php:247 admin/views/Themes.php:254
2657
- #: admin/views/Themes.php:410 admin/views/Themes.php:417
2658
- #: admin/views/Themes.php:473 admin/views/Themes.php:480
2659
- #: admin/views/Themes.php:547 admin/views/Themes.php:722
2660
- #: admin/views/Themes.php:729 admin/views/Themes.php:796
2661
- #: admin/views/Themes.php:935 admin/views/Themes.php:942
2662
- #: admin/views/Themes.php:997 admin/views/Themes.php:1004
2663
- #: admin/views/Themes.php:1120 admin/views/Themes.php:1141
2664
- #: admin/views/Themes.php:1169 admin/views/Themes.php:1203
2665
- #: admin/views/Themes.php:1259 admin/views/Themes.php:1319
2666
- #: admin/views/Themes.php:1326 admin/views/Themes.php:1380
2667
- #: admin/views/Themes.php:1387 admin/views/Themes.php:1442
2668
- #: admin/views/Themes.php:1462 admin/views/Themes.php:1519
2669
- #: admin/views/Themes.php:1526 admin/views/Themes.php:1559
2670
- #: admin/views/Themes.php:1579 admin/views/Themes.php:1653
2671
- #: admin/views/Themes.php:1660 admin/views/Themes.php:1693
2672
- #: admin/views/Themes.php:1755 admin/views/Themes.php:1762
2673
- #: admin/views/Themes.php:1797 admin/views/Themes.php:1804
2674
- #: admin/views/Themes.php:1837 admin/views/Themes.php:1844
2675
- #: admin/views/Themes.php:1998 admin/views/Themes.php:2005
2676
- #: admin/views/Themes.php:2060 admin/views/Themes.php:2115
2677
- #: admin/views/Themes.php:2122 admin/views/Themes.php:2195
2678
- #: admin/views/Themes.php:2202 admin/views/Themes.php:2290
2679
- #: admin/views/Themes.php:2330 admin/views/Themes.php:2337
2680
- #: admin/views/Themes.php:2363 admin/views/Themes.php:2396
2681
- #: admin/views/Themes.php:2461 admin/views/Themes.php:2494
2682
- #: admin/views/Themes.php:2513 admin/views/Themes.php:2594
2683
- #: admin/views/Themes.php:2735 admin/views/Themes.php:2742
2684
- #: admin/views/Themes.php:2803 admin/views/Themes.php:2942
2685
- #: admin/views/Themes.php:2997 admin/views/Themes.php:3052
2686
- #: admin/views/Themes.php:3059 admin/views/Themes.php:3121
2687
- #: admin/views/Themes.php:3128 admin/views/Themes.php:3135
2688
- #: admin/views/Themes.php:3212 admin/views/Themes.php:3229
2689
- #: admin/views/Themes.php:3274 admin/views/Themes.php:3357
2690
- #: admin/views/Themes.php:3364 admin/views/Themes.php:3458
2691
- #: admin/views/Themes.php:3512 admin/views/Themes.php:3545
2692
- #: admin/views/Themes.php:3648 admin/views/Themes.php:3685
2693
- #: admin/views/Themes.php:3729 admin/views/Themes.php:3762
2694
- #: admin/views/Themes.php:3867 admin/views/Themes.php:3936
2695
- #: admin/views/Themes.php:3943 admin/views/Themes.php:3950
2696
- #: admin/views/Themes.php:4078 admin/views/Themes.php:4085
2697
- #: admin/views/Themes.php:4092 admin/views/Themes.php:4303
2698
- #: admin/views/Themes.php:4322 admin/views/Themes.php:4355
2699
- #: admin/views/Themes.php:4476 admin/views/Themes.php:4493
2700
- #: admin/views/Themes.php:4500 admin/views/Themes.php:4529
2701
- #: admin/views/Themes.php:4690 admin/views/Themes.php:4779
2702
- msgid "Use CSS type values."
2703
  msgstr ""
2704
 
2705
- #: admin/views/Themes.php:251 admin/views/Themes.php:1841
2706
- msgid "Shadow:"
2707
- msgstr ""
 
 
2708
 
2709
- #: admin/views/Themes.php:258 admin/views/Themes.php:607
2710
- #: admin/views/Themes.php:854 admin/views/Themes.php:1848
2711
- #: admin/views/Themes.php:2807
2712
- msgid "Hover effect:"
2713
  msgstr ""
2714
 
2715
- #: admin/views/Themes.php:272 admin/views/Themes.php:621
2716
- #: admin/views/Themes.php:868 admin/views/Themes.php:1862
2717
- #: admin/views/Themes.php:2250 admin/views/Themes.php:2821
2718
- msgid "Hover effect value:"
2719
- msgstr ""
2720
 
2721
- #: admin/views/Themes.php:275 admin/views/Themes.php:624
2722
- #: admin/views/Themes.php:871 admin/views/Themes.php:1865
2723
- #: admin/views/Themes.php:2253 admin/views/Themes.php:2824
2724
- msgid "E.g. Rotate: 10deg, Scale: 1.5, Skew: 10deg."
2725
  msgstr ""
2726
 
2727
- #: admin/views/Themes.php:279 admin/views/Themes.php:628
2728
- #: admin/views/Themes.php:875
2729
- msgid "Transition:"
2730
- msgstr ""
 
2731
 
2732
- #: admin/views/Themes.php:299 admin/views/Themes.php:1888
2733
- #: admin/views/Themes.php:2257
2734
- msgid "Thumbnail background color:"
2735
  msgstr ""
2736
 
2737
- #: admin/views/Themes.php:306 admin/views/Themes.php:1894
2738
- #: admin/views/Themes.php:2229 admin/views/Themes.php:2847
2739
- msgid "Thumbnail transparency:"
2740
- msgstr ""
 
2741
 
2742
- #: admin/views/Themes.php:313 admin/views/Themes.php:1446
2743
- #: admin/views/Themes.php:1901 admin/views/Themes.php:2854
2744
- msgid "Full background color:"
2745
  msgstr ""
2746
 
2747
- #: admin/views/Themes.php:319 admin/views/Themes.php:1452
2748
- #: admin/views/Themes.php:1907 admin/views/Themes.php:2860
2749
- msgid "Full background transparency:"
2750
  msgstr ""
2751
 
2752
- #: admin/views/Themes.php:326 admin/views/Themes.php:582
2753
- #: admin/views/Themes.php:830 admin/views/Themes.php:1502
2754
- #: admin/views/Themes.php:1914 admin/views/Themes.php:2867
2755
- #: admin/views/Themes.php:3104 admin/views/Themes.php:4552
2756
- msgid "Alignment:"
2757
  msgstr ""
2758
 
2759
- #: admin/views/Themes.php:350 admin/views/Themes.php:1593
2760
- #: admin/views/Themes.php:1938
2761
- msgid "Title position:"
2762
  msgstr ""
2763
 
2764
- #: admin/views/Themes.php:353 admin/views/Themes.php:1158
2765
- #: admin/views/Themes.php:1596 admin/views/Themes.php:1941
2766
- #: admin/views/Themes.php:3443 admin/views/Themes.php:3718
2767
- #: admin/views/Themes.php:3806 admin/views/Themes.php:3874
2768
- #: admin/views/Themes.php:4016 admin/views/Themes.php:4546
2769
- msgid "Top"
2770
  msgstr ""
2771
 
2772
- #: admin/views/Themes.php:355 admin/views/Themes.php:1160
2773
- #: admin/views/Themes.php:1598 admin/views/Themes.php:1943
2774
- #: admin/views/Themes.php:3445 admin/views/Themes.php:3720
2775
- #: admin/views/Themes.php:3808 admin/views/Themes.php:3876
2776
- #: admin/views/Themes.php:4018 admin/views/Themes.php:4548
2777
- msgid "Bottom"
2778
  msgstr ""
2779
 
2780
- #: admin/views/Themes.php:359 admin/views/Themes.php:884
2781
- #: admin/views/Themes.php:1947 admin/views/Themes.php:2543
2782
- #: admin/views/Themes.php:2891 admin/views/Themes.php:4138
2783
- #: admin/views/Themes.php:4817
2784
- msgid "Title font size:"
2785
  msgstr ""
2786
 
2787
- #: admin/views/Themes.php:365 admin/views/Themes.php:890
2788
- #: admin/views/Themes.php:1953 admin/views/Themes.php:2549
2789
- #: admin/views/Themes.php:2897 admin/views/Themes.php:4096
2790
- msgid "Title font color:"
2791
  msgstr ""
2792
 
2793
- #: admin/views/Themes.php:371 admin/views/Themes.php:896
2794
- #: admin/views/Themes.php:1342 admin/views/Themes.php:1959
2795
- #: admin/views/Themes.php:2555 admin/views/Themes.php:2903
2796
- #: admin/views/Themes.php:4102
2797
- msgid "Title font family:"
2798
- msgstr ""
2799
 
2800
- #: admin/views/Themes.php:393 admin/views/Themes.php:918
2801
- #: admin/views/Themes.php:1981 admin/views/Themes.php:2577
2802
- #: admin/views/Themes.php:2925 admin/views/Themes.php:4124
2803
- #: admin/views/Themes.php:4829
2804
- msgid "Title font weight:"
2805
  msgstr ""
2806
 
2807
- #: admin/views/Themes.php:407 admin/views/Themes.php:932
2808
- #: admin/views/Themes.php:1995 admin/views/Themes.php:2939
2809
- msgid "Title box shadow:"
2810
  msgstr ""
2811
 
2812
- #: admin/views/Themes.php:414 admin/views/Themes.php:939
2813
- #: admin/views/Themes.php:2002 admin/views/Themes.php:2504
2814
- #: admin/views/Themes.php:4783
2815
- msgid "Title margin:"
2816
  msgstr ""
2817
 
2818
- #: admin/views/Themes.php:421 admin/views/Themes.php:671
2819
- #: admin/views/Themes.php:946 admin/views/Themes.php:1703
2820
- #: admin/views/Themes.php:2064 admin/views/Themes.php:2684
2821
- #: admin/views/Themes.php:3001 admin/views/Themes.php:3305
2822
- msgid "Gallery title/description font size:"
2823
  msgstr ""
2824
 
2825
- #: admin/views/Themes.php:428 admin/views/Themes.php:677
2826
- #: admin/views/Themes.php:952 admin/views/Themes.php:1710
2827
- #: admin/views/Themes.php:2070 admin/views/Themes.php:2690
2828
- #: admin/views/Themes.php:3007 admin/views/Themes.php:3312
2829
- msgid "Gallery title/description font color:"
2830
  msgstr ""
2831
 
2832
- #: admin/views/Themes.php:434 admin/views/Themes.php:683
2833
- #: admin/views/Themes.php:958 admin/views/Themes.php:1716
2834
- #: admin/views/Themes.php:2076 admin/views/Themes.php:2696
2835
- #: admin/views/Themes.php:3013 admin/views/Themes.php:3318
2836
- msgid "Gallery title/description font family:"
2837
- msgstr ""
2838
 
2839
- #: admin/views/Themes.php:456 admin/views/Themes.php:705
2840
- #: admin/views/Themes.php:980 admin/views/Themes.php:1738
2841
- #: admin/views/Themes.php:2098 admin/views/Themes.php:2718
2842
- #: admin/views/Themes.php:3035 admin/views/Themes.php:3340
2843
- msgid "Gallery title/description font weight:"
2844
  msgstr ""
2845
 
2846
- #: admin/views/Themes.php:470 admin/views/Themes.php:719
2847
- #: admin/views/Themes.php:994 admin/views/Themes.php:1752
2848
- #: admin/views/Themes.php:2112 admin/views/Themes.php:2732
2849
- #: admin/views/Themes.php:3049 admin/views/Themes.php:3354
2850
- msgid "Gallery title/description box shadow:"
2851
- msgstr ""
2852
 
2853
- #: admin/views/Themes.php:477 admin/views/Themes.php:726
2854
- #: admin/views/Themes.php:1001 admin/views/Themes.php:1759
2855
- #: admin/views/Themes.php:2119 admin/views/Themes.php:2739
2856
- #: admin/views/Themes.php:3056 admin/views/Themes.php:3361
2857
- msgid "Gallery title/description margin:"
2858
  msgstr ""
2859
 
2860
- #: admin/views/Themes.php:484 admin/views/Themes.php:733
2861
- #: admin/views/Themes.php:1008 admin/views/Themes.php:1766
2862
- #: admin/views/Themes.php:2126 admin/views/Themes.php:2746
2863
- #: admin/views/Themes.php:3063 admin/views/Themes.php:3368
2864
- msgid "Gallery title/description alignment:"
2865
  msgstr ""
2866
 
2867
- #: admin/views/Themes.php:562 admin/views/Themes.php:810
2868
- msgid "Transparency:"
2869
  msgstr ""
2870
 
2871
- #: admin/views/Themes.php:569 admin/views/Themes.php:817
2872
- #: admin/views/Themes.php:1036 admin/views/Themes.php:1563
2873
- #: admin/views/Themes.php:2347 admin/views/Themes.php:3091
2874
- #: admin/views/Themes.php:4599
2875
- msgid "Background color:"
2876
  msgstr ""
2877
 
2878
- #: admin/views/Themes.php:575 admin/views/Themes.php:823
2879
- #: admin/views/Themes.php:1569 admin/views/Themes.php:2353
2880
- #: admin/views/Themes.php:3097
2881
- msgid "Background transparency:"
2882
  msgstr ""
2883
 
2884
- #: admin/views/Themes.php:637 admin/views/Themes.php:1391
2885
- #: admin/views/Themes.php:2624 admin/views/Themes.php:4187
2886
- msgid "Description font size:"
2887
  msgstr ""
2888
 
2889
- #: admin/views/Themes.php:643 admin/views/Themes.php:2630
2890
- #: admin/views/Themes.php:4145
2891
- msgid "Description font color:"
2892
  msgstr ""
2893
 
2894
- #: admin/views/Themes.php:649 admin/views/Themes.php:1403
2895
- #: admin/views/Themes.php:2636 admin/views/Themes.php:4151
2896
- msgid "Description font family:"
2897
- msgstr ""
 
2898
 
2899
- #: admin/views/Themes.php:1042 admin/views/Themes.php:3664
2900
- #: admin/views/Themes.php:4612
2901
- msgid "Right, left buttons size:"
 
2902
  msgstr ""
2903
 
2904
- #: admin/views/Themes.php:1048 admin/views/Themes.php:4618
2905
- msgid "Play, pause buttons size:"
2906
- msgstr ""
 
 
2907
 
2908
- #: admin/views/Themes.php:1054 admin/views/Themes.php:3239
2909
- #: admin/views/Themes.php:4624
2910
- msgid "Buttons color:"
2911
  msgstr ""
2912
 
2913
- #: admin/views/Themes.php:1060 admin/views/Themes.php:4630
2914
- msgid "Buttons transparency:"
2915
- msgstr ""
 
 
2916
 
2917
- #: admin/views/Themes.php:1067 admin/views/Themes.php:4637
2918
- msgid "Buttons hover color:"
2919
  msgstr ""
2920
 
2921
- #: admin/views/Themes.php:1073 admin/views/Themes.php:3658
2922
- #: admin/views/Themes.php:4643
2923
- msgid "Right, left buttons width:"
2924
- msgstr ""
 
2925
 
2926
- #: admin/views/Themes.php:1079 admin/views/Themes.php:3652
2927
- #: admin/views/Themes.php:4649
2928
- msgid "Right, left buttons height:"
 
2929
  msgstr ""
2930
 
2931
- #: admin/views/Themes.php:1085 admin/views/Themes.php:3633
2932
- #: admin/views/Themes.php:4655
2933
- msgid "Right, left buttons background color:"
2934
- msgstr ""
 
2935
 
2936
- #: admin/views/Themes.php:1091 admin/views/Themes.php:3689
2937
- #: admin/views/Themes.php:4661
2938
- msgid "Right, left buttons border width:"
2939
  msgstr ""
2940
 
2941
- #: admin/views/Themes.php:1097 admin/views/Themes.php:3695
2942
- #: admin/views/Themes.php:4667
2943
- msgid "Right, left buttons border style:"
2944
  msgstr ""
2945
 
2946
- #: admin/views/Themes.php:1111 admin/views/Themes.php:3709
2947
- #: admin/views/Themes.php:4681
2948
- msgid "Right, left buttons border color:"
2949
  msgstr ""
2950
 
2951
- #: admin/views/Themes.php:1117 admin/views/Themes.php:3682
2952
- #: admin/views/Themes.php:4687
2953
- msgid "Right, left buttons border radius:"
2954
  msgstr ""
2955
 
2956
- #: admin/views/Themes.php:1124 admin/views/Themes.php:3619
2957
- #: admin/views/Themes.php:4694
2958
- msgid "Right, left buttons style:"
2959
- msgstr ""
 
2960
 
2961
- #: admin/views/Themes.php:1138 admin/views/Themes.php:3645
2962
- msgid "Right, left buttons box shadow:"
2963
  msgstr ""
2964
 
2965
- #: admin/views/Themes.php:1155
2966
- msgid "Filmstrip/Slider bullet position:"
2967
  msgstr ""
2968
 
2969
- #: admin/views/Themes.php:1166
2970
- msgid "Filmstrip margin:"
2971
- msgstr ""
 
 
2972
 
2973
- #: admin/views/Themes.php:1173
2974
- msgid "Filmstrip border width:"
2975
  msgstr ""
2976
 
2977
- #: admin/views/Themes.php:1179
2978
- msgid "Filmstrip border style:"
2979
  msgstr ""
2980
 
2981
- #: admin/views/Themes.php:1194
2982
- msgid "Filmstrip border color:"
2983
  msgstr ""
2984
 
2985
- #: admin/views/Themes.php:1200
2986
- msgid "Filmstrip border radius:"
 
2987
  msgstr ""
2988
 
2989
- #: admin/views/Themes.php:1207
2990
- msgid "Filmstrip active border width:"
 
2991
  msgstr ""
2992
 
2993
- #: admin/views/Themes.php:1213
2994
- msgid "Filmstrip active border color:"
2995
  msgstr ""
2996
 
2997
- #: admin/views/Themes.php:1219
2998
- msgid "Filmstrip deactive transparency: "
2999
  msgstr ""
3000
 
3001
- #: admin/views/Themes.php:1226
3002
- msgid "Filmstrip right, left buttons background color: "
3003
  msgstr ""
3004
 
3005
- #: admin/views/Themes.php:1232 admin/views/Themes.php:3791
3006
- msgid "Filmstrip right, left buttons color:"
3007
  msgstr ""
3008
 
3009
- #: admin/views/Themes.php:1238 admin/views/Themes.php:3785
3010
- msgid "Filmstrip right, left buttons size:"
3011
  msgstr ""
3012
 
3013
- #: admin/views/Themes.php:1244
3014
- msgid "Slider bullet width: "
3015
  msgstr ""
3016
 
3017
- #: admin/views/Themes.php:1250
3018
- msgid "Slider bullet height:"
3019
  msgstr ""
3020
 
3021
- #: admin/views/Themes.php:1256
3022
- msgid "Slider bullet border radius: "
 
 
3023
  msgstr ""
3024
 
3025
- #: admin/views/Themes.php:1263
3026
- msgid "Slider bullet background color:"
3027
  msgstr ""
3028
 
3029
- #: admin/views/Themes.php:1269
3030
- msgid "Slider bullet margin:"
 
 
 
3031
  msgstr ""
3032
 
3033
- #: admin/views/Themes.php:1275
3034
- msgid "Slider bullet active background color: "
3035
  msgstr ""
3036
 
3037
- #: admin/views/Themes.php:1281
3038
- msgid "Slider bullet active border width:"
 
 
3039
  msgstr ""
3040
 
3041
- #: admin/views/Themes.php:1287
3042
- msgid "Slider bullet active border color: "
3043
  msgstr ""
3044
 
3045
- #: admin/views/Themes.php:1303
3046
- msgid "Title background color: "
3047
  msgstr ""
3048
 
3049
- #: admin/views/Themes.php:1309
3050
- msgid "Title transparency: "
3051
  msgstr ""
3052
 
3053
- #: admin/views/Themes.php:1316 admin/views/Themes.php:4776
3054
- msgid "Title border radius:"
3055
  msgstr ""
3056
 
3057
- #: admin/views/Themes.php:1323
3058
- msgid "Title padding: "
3059
- msgstr ""
 
 
3060
 
3061
- #: admin/views/Themes.php:1330
3062
- msgid "Title font size: "
3063
  msgstr ""
3064
 
3065
- #: admin/views/Themes.php:1336
3066
- msgid "Title color: "
 
 
3067
  msgstr ""
3068
 
3069
- #: admin/views/Themes.php:1364 admin/views/Themes.php:1697
3070
- msgid "Description background color:"
 
 
3071
  msgstr ""
3072
 
3073
- #: admin/views/Themes.php:1370
3074
- msgid "Description transparency:"
 
 
 
 
3075
  msgstr ""
3076
 
3077
- #: admin/views/Themes.php:1377 admin/views/Themes.php:1690
3078
- msgid "Description border radius:"
 
 
3079
  msgstr ""
3080
 
3081
- #: admin/views/Themes.php:1384 admin/views/Themes.php:1657
3082
- #: admin/views/Themes.php:2591
3083
- msgid "Description padding:"
 
 
3084
  msgstr ""
3085
 
3086
- #: admin/views/Themes.php:1397
3087
- msgid "Description color:"
3088
- msgstr ""
 
 
 
 
 
3089
 
3090
- #: admin/views/Themes.php:1439
3091
- msgid "Full padding:"
 
 
 
3092
  msgstr ""
3093
 
3094
- #: admin/views/Themes.php:1459
3095
- msgid "Full border radius:"
 
 
 
 
3096
  msgstr ""
3097
 
3098
- #: admin/views/Themes.php:1466
3099
- msgid "Full border width:"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3100
  msgstr ""
3101
 
3102
- #: admin/views/Themes.php:1472
3103
- msgid "Full border style:"
3104
  msgstr ""
3105
 
3106
- #: admin/views/Themes.php:1486
3107
- msgid "Full border color:"
 
 
3108
  msgstr ""
3109
 
3110
- #: admin/views/Themes.php:1576 admin/views/Themes.php:3132
3111
- #: admin/views/Themes.php:4526
3112
- msgid "Box shadow:"
 
3113
  msgstr ""
3114
 
3115
- #: admin/views/Themes.php:1602
3116
- msgid "Title alignment:"
3117
  msgstr ""
3118
 
3119
- #: admin/views/Themes.php:1616 admin/views/Themes.php:2009
3120
- #: admin/views/Themes.php:2946 admin/views/Themes.php:3171
3121
- #: admin/views/Themes.php:4399
3122
- msgid "Font size:"
3123
  msgstr ""
3124
 
3125
- #: admin/views/Themes.php:1622 admin/views/Themes.php:2015
3126
- #: admin/views/Themes.php:2952 admin/views/Themes.php:3177
3127
- #: admin/views/Themes.php:4405
3128
- msgid "Font color:"
3129
  msgstr ""
3130
 
3131
- #: admin/views/Themes.php:1628 admin/views/Themes.php:2021
3132
- #: admin/views/Themes.php:2958 admin/views/Themes.php:3149
3133
- #: admin/views/Themes.php:4411
3134
- msgid "Font family:"
3135
  msgstr ""
3136
 
3137
- #: admin/views/Themes.php:1650
3138
- msgid "Description margin:"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3139
  msgstr ""
3140
 
3141
- #: admin/views/Themes.php:1664 admin/views/Themes.php:2598
3142
- msgid "Description border width:"
 
3143
  msgstr ""
3144
 
3145
- #: admin/views/Themes.php:1670 admin/views/Themes.php:2604
3146
- msgid "Description border style:"
 
3147
  msgstr ""
3148
 
3149
- #: admin/views/Themes.php:1684 admin/views/Themes.php:2618
3150
- msgid "Description border color:"
 
 
 
3151
  msgstr ""
3152
 
3153
- #: admin/views/Themes.php:1869 admin/views/Themes.php:2206
3154
- #: admin/views/Themes.php:2828
3155
- msgid "Thumbnail transition:"
3156
  msgstr ""
3157
 
3158
- #: admin/views/Themes.php:2043 admin/views/Themes.php:2980
3159
- #: admin/views/Themes.php:4433
3160
- msgid "Font weight:"
 
 
 
3161
  msgstr ""
3162
 
3163
- #: admin/views/Themes.php:2057 admin/views/Themes.php:2393
3164
- #: admin/views/Themes.php:2994
3165
- msgid "Back padding:"
 
 
 
3166
  msgstr ""
3167
 
3168
- #: admin/views/Themes.php:2154
3169
- msgid "Thumbnail margin:"
 
 
 
3170
  msgstr ""
3171
 
3172
- #: admin/views/Themes.php:2160
3173
- msgid "Thumbnail padding:"
 
 
 
3174
  msgstr ""
3175
 
3176
- #: admin/views/Themes.php:2166
3177
- msgid "Thumbnail border width:"
 
 
3178
  msgstr ""
3179
 
3180
- #: admin/views/Themes.php:2172
3181
- msgid "Thumbnail border style:"
 
 
 
3182
  msgstr ""
3183
 
3184
- #: admin/views/Themes.php:2186
3185
- msgid "Thumbnail border color:"
 
 
 
3186
  msgstr ""
3187
 
3188
- #: admin/views/Themes.php:2192
3189
- msgid "Thumbnail border radius:"
 
3190
  msgstr ""
3191
 
3192
- #: admin/views/Themes.php:2199
3193
- msgid "Thumbnail box shadow:"
 
 
3194
  msgstr ""
3195
 
3196
- #: admin/views/Themes.php:2215
3197
- msgid "Thumbnail alignment:"
 
 
 
3198
  msgstr ""
3199
 
3200
- #: admin/views/Themes.php:2236
3201
- msgid "Thumbnail hover effect:"
 
 
 
3202
  msgstr ""
3203
 
3204
- #: admin/views/Themes.php:2263
3205
- msgid "Thumbnails background color:"
 
 
 
3206
  msgstr ""
3207
 
3208
- #: admin/views/Themes.php:2269
3209
- msgid "Thumbnail background transparency:"
 
 
 
3210
  msgstr ""
3211
 
3212
- #: admin/views/Themes.php:2287
3213
- msgid "Thumbnail div padding:"
 
 
 
3214
  msgstr ""
3215
 
3216
- #: admin/views/Themes.php:2294
3217
- msgid "Thumbnail div background color:"
 
 
 
3218
  msgstr ""
3219
 
3220
- #: admin/views/Themes.php:2300
3221
- msgid "Thumbnail div border width:"
3222
- msgstr ""
 
 
 
 
 
3223
 
3224
- #: admin/views/Themes.php:2307
3225
- msgid "humbnail div border style:"
 
 
3226
  msgstr ""
3227
 
3228
- #: admin/views/Themes.php:2321
3229
- msgid "Thumbnail div border color:"
3230
  msgstr ""
3231
 
3232
- #: admin/views/Themes.php:2327
3233
- msgid "Thumbnail div border radius:"
3234
  msgstr ""
3235
 
3236
- #: admin/views/Themes.php:2367
3237
- msgid "Separator width:"
 
 
3238
  msgstr ""
3239
 
3240
- #: admin/views/Themes.php:2373
3241
- msgid "Separator style:"
 
3242
  msgstr ""
3243
 
3244
- #: admin/views/Themes.php:2387
3245
- msgid "Separator color:"
 
3246
  msgstr ""
3247
 
3248
- #: admin/views/Themes.php:2400
3249
- msgid "Back font size:"
 
3250
  msgstr ""
3251
 
3252
- #: admin/views/Themes.php:2406
3253
- msgid "Back font color:"
 
 
3254
  msgstr ""
3255
 
3256
- #: admin/views/Themes.php:2412
3257
- msgid "Back font family:"
 
3258
  msgstr ""
3259
 
3260
- #: admin/views/Themes.php:2434
3261
- msgid "Back font weight:"
3262
  msgstr ""
3263
 
3264
- #: admin/views/Themes.php:2458
3265
- msgid "Text div padding:"
 
3266
  msgstr ""
3267
 
3268
- #: admin/views/Themes.php:2465
3269
- msgid "Text div border width:"
3270
  msgstr ""
3271
 
3272
- #: admin/views/Themes.php:2471
3273
- msgid "Text border style:"
3274
  msgstr ""
3275
 
3276
- #: admin/views/Themes.php:2485
3277
- msgid "Text border color:"
 
3278
  msgstr ""
3279
 
3280
- #: admin/views/Themes.php:2491
3281
- msgid "Text div border radius:"
 
3282
  msgstr ""
3283
 
3284
- #: admin/views/Themes.php:2498
3285
- msgid "Text background color:"
 
3286
  msgstr ""
3287
 
3288
- #: admin/views/Themes.php:2510 admin/views/Themes.php:4789
3289
- msgid "Title padding:"
 
3290
  msgstr ""
3291
 
3292
- #: admin/views/Themes.php:2517
3293
- msgid "Title border width:"
 
3294
  msgstr ""
3295
 
3296
- #: admin/views/Themes.php:2523
3297
- msgid "Title border style:"
 
3298
  msgstr ""
3299
 
3300
- #: admin/views/Themes.php:2537
3301
- msgid "Title border color:"
 
3302
  msgstr ""
3303
 
3304
- #: admin/views/Themes.php:2658 admin/views/Themes.php:4173
3305
- msgid "Description font weight:"
 
3306
  msgstr ""
3307
 
3308
- #: admin/views/Themes.php:2672
3309
- msgid "Description more size:"
3310
  msgstr ""
3311
 
3312
- #: admin/views/Themes.php:2678
3313
- msgid "Description more color:"
3314
  msgstr ""
3315
 
3316
- #: admin/views/Themes.php:3226
3317
- msgid "Buttons and title margin:"
3318
  msgstr ""
3319
 
3320
- #: admin/views/Themes.php:3233
3321
- msgid "Buttons size:"
3322
  msgstr ""
3323
 
3324
- #: admin/views/Themes.php:3245
3325
- msgid "Buttons and title border width:"
3326
  msgstr ""
3327
 
3328
- #: admin/views/Themes.php:3251
3329
- msgid "Buttons and title border style:"
3330
  msgstr ""
3331
 
3332
- #: admin/views/Themes.php:3265
3333
- msgid "Buttons and title border color:"
3334
  msgstr ""
3335
 
3336
- #: admin/views/Themes.php:3271
3337
- msgid "Buttons and title border radius:"
3338
  msgstr ""
3339
 
3340
- #: admin/views/Themes.php:3278
3341
- msgid "Buttons and title background color:"
3342
  msgstr ""
3343
 
3344
- #: admin/views/Themes.php:3284
3345
- msgid "Buttons and title background transparency:"
3346
  msgstr ""
3347
 
3348
- #: admin/views/Themes.php:3291
3349
- msgid "Buttons or title alignment:"
3350
  msgstr ""
3351
 
3352
- #: admin/views/Themes.php:3396
3353
- msgid "Overlay background color:"
3354
  msgstr ""
3355
 
3356
- #: admin/views/Themes.php:3402
3357
- msgid "Overlay background transparency:"
3358
  msgstr ""
3359
 
3360
- #: admin/views/Themes.php:3409
3361
- msgid "Lightbox background color:"
3362
  msgstr ""
3363
 
3364
- #: admin/views/Themes.php:3415
3365
- msgid "Lightbox background transparency:"
3366
  msgstr ""
3367
 
3368
- #: admin/views/Themes.php:3422
3369
- msgid "Control buttons height:"
3370
  msgstr ""
3371
 
3372
- #: admin/views/Themes.php:3428
3373
- msgid "Control buttons margin (top):"
3374
  msgstr ""
3375
 
3376
- #: admin/views/Themes.php:3434
3377
- msgid "Control buttons margin (left):"
3378
  msgstr ""
3379
 
3380
- #: admin/views/Themes.php:3440
3381
- msgid "Control buttons position:"
3382
  msgstr ""
3383
 
3384
- #: admin/views/Themes.php:3449
3385
- msgid "Control buttons background color:"
3386
  msgstr ""
3387
 
3388
- #: admin/views/Themes.php:3455
3389
- msgid "Control buttons container border radius:"
3390
  msgstr ""
3391
 
3392
- #: admin/views/Themes.php:3462
3393
- msgid "Control buttons container background transparency:"
3394
  msgstr ""
3395
 
3396
- #: admin/views/Themes.php:3469
3397
- msgid "Control buttons alignment:"
3398
  msgstr ""
3399
 
3400
- #: admin/views/Themes.php:3483
3401
- msgid "Control buttons color:"
3402
  msgstr ""
3403
 
3404
- #: admin/views/Themes.php:3489
3405
- msgid "Control buttons transparency:"
3406
  msgstr ""
3407
 
3408
- #: admin/views/Themes.php:3496
3409
- msgid "Toggle button height:"
3410
  msgstr ""
3411
 
3412
- #: admin/views/Themes.php:3502
3413
- msgid "Toggle button width:"
3414
  msgstr ""
3415
 
3416
- #: admin/views/Themes.php:3508
3417
- msgid "Close button border radius:"
3418
  msgstr ""
3419
 
3420
- #: admin/views/Themes.php:3516
3421
- msgid "Close button border width:"
3422
  msgstr ""
3423
 
3424
- #: admin/views/Themes.php:3522
3425
- msgid "Close button border style:"
3426
  msgstr ""
3427
 
3428
- #: admin/views/Themes.php:3536
3429
- msgid "Close button border color:"
 
3430
  msgstr ""
3431
 
3432
- #: admin/views/Themes.php:3542
3433
- msgid "Close button box shadow:"
3434
  msgstr ""
3435
 
3436
- #: admin/views/Themes.php:3549
3437
- msgid "Close button background color:"
3438
  msgstr ""
3439
 
3440
- #: admin/views/Themes.php:3555
3441
- msgid "Close button transparency:"
3442
  msgstr ""
3443
 
3444
- #: admin/views/Themes.php:3561
3445
- msgid "Close button width:"
3446
  msgstr ""
3447
 
3448
- #: admin/views/Themes.php:3567
3449
- msgid "Close button height:"
3450
  msgstr ""
3451
 
3452
- #: admin/views/Themes.php:3573
3453
- msgid "Close button top:"
3454
  msgstr ""
3455
 
3456
- #: admin/views/Themes.php:3579
3457
- msgid "Close button right:"
 
3458
  msgstr ""
3459
 
3460
- #: admin/views/Themes.php:3585
3461
- msgid "Close button size:"
 
3462
  msgstr ""
3463
 
3464
- #: admin/views/Themes.php:3591
3465
- msgid "Close button color:"
3466
  msgstr ""
3467
 
3468
- #: admin/views/Themes.php:3597
3469
- msgid "Fullscreen close button color:"
 
3470
  msgstr ""
3471
 
3472
- #: admin/views/Themes.php:3603
3473
- #, fuzzy
3474
- #| msgid "Share on Facebook"
3475
- msgid "Share buttons color:"
3476
- msgstr "Deel op Facebook"
3477
-
3478
- #: admin/views/Themes.php:3639
3479
- msgid "Right, left buttons transparency:"
3480
  msgstr ""
3481
 
3482
- #: admin/views/Themes.php:3670
3483
- msgid "Right, left, close buttons hover color:"
 
3484
  msgstr ""
3485
 
3486
- #: admin/views/Themes.php:3676
3487
- msgid "Right, left buttons color:"
3488
  msgstr ""
3489
 
3490
- #: admin/views/Themes.php:3715
3491
- msgid "Filmstrip position:"
3492
  msgstr ""
3493
 
3494
- #: admin/views/Themes.php:3726
3495
- msgid "Filmstrip thumbnail margin:"
3496
  msgstr ""
3497
 
3498
- #: admin/views/Themes.php:3733
3499
- msgid "Filmstrip thumbnail border width:"
3500
  msgstr ""
3501
 
3502
- #: admin/views/Themes.php:3739
3503
- msgid "Filmstrip thumbnail border style:"
 
3504
  msgstr ""
3505
 
3506
- #: admin/views/Themes.php:3753
3507
- msgid "Filmstrip thumbnail border color:"
3508
  msgstr ""
3509
 
3510
- #: admin/views/Themes.php:3759
3511
- msgid "Filmstrip thumbnail border radius:"
3512
- msgstr ""
 
 
3513
 
3514
- #: admin/views/Themes.php:3766
3515
- msgid "Filmstrip thumbnail active border width:"
3516
  msgstr ""
3517
 
3518
- #: admin/views/Themes.php:3772
3519
- msgid "Filmstrip thumbnail active border color:"
3520
  msgstr ""
3521
 
3522
- #: admin/views/Themes.php:3778
3523
- msgid "Filmstrip thumbnail deactive transparency:"
 
3524
  msgstr ""
3525
 
3526
- #: admin/views/Themes.php:3797
3527
- msgid "Filmstrip right, left button background color:"
3528
  msgstr ""
3529
 
3530
- #: admin/views/Themes.php:3803
3531
- msgid "Rating position:"
3532
  msgstr ""
3533
 
3534
- #: admin/views/Themes.php:3812
3535
- msgid "Rating alignment:"
3536
  msgstr ""
3537
 
3538
- #: admin/views/Themes.php:3826
3539
- msgid "Rating icon:"
3540
  msgstr ""
3541
 
3542
- #: admin/views/Themes.php:3840
3543
- msgid "Rating color:"
3544
  msgstr ""
3545
 
3546
- #: admin/views/Themes.php:3846
3547
- msgid "Rating hover color:"
3548
  msgstr ""
3549
 
3550
- #: admin/views/Themes.php:3852
3551
- msgid "Rating size:"
3552
  msgstr ""
3553
 
3554
- #: admin/views/Themes.php:3858
3555
- msgid "Rating icon count:"
3556
  msgstr ""
3557
 
3558
- #: admin/views/Themes.php:3864
3559
- msgid "Rating padding:"
3560
  msgstr ""
3561
 
3562
- #: admin/views/Themes.php:3871
3563
- msgid "Hit counter position:"
3564
  msgstr ""
3565
 
3566
- #: admin/views/Themes.php:3880
3567
- msgid "Hit counter alignment:"
3568
  msgstr ""
3569
 
3570
- #: admin/views/Themes.php:3894
3571
- msgid "Hit counter background color:"
3572
  msgstr ""
3573
 
3574
- #: admin/views/Themes.php:3900
3575
- msgid "Hit counter background transparency:"
3576
  msgstr ""
3577
 
3578
- #: admin/views/Themes.php:3907
3579
- msgid "Hit counter border width:"
3580
  msgstr ""
3581
 
3582
- #: admin/views/Themes.php:3913
3583
- msgid "Hit counter border style:"
3584
  msgstr ""
3585
 
3586
- #: admin/views/Themes.php:3927
3587
- msgid "Hit counter border color:"
3588
  msgstr ""
3589
 
3590
- #: admin/views/Themes.php:3933
3591
- msgid "Hit counter border radius:"
3592
  msgstr ""
3593
 
3594
- #: admin/views/Themes.php:3940
3595
- msgid "Hit counter padding:"
3596
  msgstr ""
3597
 
3598
- #: admin/views/Themes.php:3947
3599
- msgid "Hit counter margin:"
3600
  msgstr ""
3601
 
3602
- #: admin/views/Themes.php:3954
3603
- msgid "Hit counter font color:"
3604
  msgstr ""
3605
 
3606
- #: admin/views/Themes.php:3960
3607
- msgid "Hit counter font family:"
3608
  msgstr ""
3609
 
3610
- #: admin/views/Themes.php:3982
3611
- msgid "Hit counter font weight:"
3612
  msgstr ""
3613
 
3614
- #: admin/views/Themes.php:3996
3615
- msgid "Hit counter font size:"
3616
  msgstr ""
3617
 
3618
- #: admin/views/Themes.php:4013
3619
- msgid "Info position:"
3620
  msgstr ""
3621
 
3622
- #: admin/views/Themes.php:4022
3623
- msgid "Info alignment:"
3624
  msgstr ""
3625
 
3626
- #: admin/views/Themes.php:4036
3627
- msgid "Info background color:"
3628
  msgstr ""
3629
 
3630
- #: admin/views/Themes.php:4042
3631
- msgid "Info background transparency:"
3632
  msgstr ""
3633
 
3634
- #: admin/views/Themes.php:4049
3635
- msgid "Info border width:"
3636
  msgstr ""
3637
 
3638
- #: admin/views/Themes.php:4055
3639
- msgid "Info border style:"
3640
  msgstr ""
3641
 
3642
- #: admin/views/Themes.php:4069
3643
- msgid "Info border color:"
3644
  msgstr ""
3645
 
3646
- #: admin/views/Themes.php:4075
3647
- msgid "Info border radius:"
3648
  msgstr ""
3649
 
3650
- #: admin/views/Themes.php:4082
3651
- msgid "Info padding:"
3652
  msgstr ""
3653
 
3654
- #: admin/views/Themes.php:4089
3655
- msgid "Info margin:"
3656
  msgstr ""
3657
 
3658
- #: admin/views/Themes.php:4194
3659
- #, fuzzy
3660
- #| msgid "Comment"
3661
- msgid "Comments Width:"
3662
- msgstr "Kommentaar lewer nie"
3663
-
3664
- #: admin/views/Themes.php:4200
3665
- msgid "Comments position:"
3666
  msgstr ""
3667
 
3668
- #: admin/views/Themes.php:4209
3669
- msgid "Comments background color:"
3670
  msgstr ""
3671
 
3672
- #: admin/views/Themes.php:4215
3673
- msgid "Comments font size:"
3674
  msgstr ""
3675
 
3676
- #: admin/views/Themes.php:4221
3677
- msgid "Comments font color:"
3678
  msgstr ""
3679
 
3680
- #: admin/views/Themes.php:4227
3681
- msgid "Comments font family:"
3682
  msgstr ""
3683
 
3684
- #: admin/views/Themes.php:4249
3685
- msgid "Comments author font size:"
3686
  msgstr ""
3687
 
3688
- #: admin/views/Themes.php:4256
3689
- msgid "Comments date font size:"
3690
  msgstr ""
3691
 
3692
- #: admin/views/Themes.php:4262
3693
- msgid "Comments body font size:"
3694
  msgstr ""
3695
 
3696
- #: admin/views/Themes.php:4268
3697
- msgid "Comment input border width:"
3698
  msgstr ""
3699
 
3700
- #: admin/views/Themes.php:4274
3701
- msgid "omment input border style:"
3702
  msgstr ""
3703
 
3704
- #: admin/views/Themes.php:4288
3705
- msgid "Comment input border color:"
3706
  msgstr ""
3707
 
3708
- #: admin/views/Themes.php:4294
3709
- msgid "Comment input border radius:"
3710
  msgstr ""
3711
 
3712
- #: admin/views/Themes.php:4300
3713
- msgid "Comment input padding:"
3714
  msgstr ""
3715
 
3716
- #: admin/views/Themes.php:4307
3717
- msgid "Comment input background color:"
3718
  msgstr ""
3719
 
3720
- #: admin/views/Themes.php:4313
3721
- msgid "Comment button background color:"
3722
  msgstr ""
3723
 
3724
- #: admin/views/Themes.php:4319
3725
- msgid "Comment button padding:"
3726
  msgstr ""
3727
 
3728
- #: admin/views/Themes.php:4326
3729
- msgid "Comment button border width:"
3730
  msgstr ""
3731
 
3732
- #: admin/views/Themes.php:4332
3733
- msgid "Comment button border style:"
3734
  msgstr ""
3735
 
3736
- #: admin/views/Themes.php:4346
3737
- msgid "Comment button border color:"
3738
  msgstr ""
3739
 
3740
- #: admin/views/Themes.php:4352
3741
- msgid "omment button border radius:"
3742
  msgstr ""
3743
 
3744
- #: admin/views/Themes.php:4359
3745
- msgid "Comment separator width:"
3746
  msgstr ""
3747
 
3748
- #: admin/views/Themes.php:4365
3749
- msgid "Comment separator style:"
3750
  msgstr ""
3751
 
3752
- #: admin/views/Themes.php:4379
3753
- msgid "Comment separator color:"
3754
  msgstr ""
3755
 
3756
- #: admin/views/Themes.php:4504
3757
- msgid "Button background color:"
3758
  msgstr ""
3759
 
3760
- #: admin/views/Themes.php:4510
3761
- msgid "Button background transparency:"
3762
  msgstr ""
3763
 
3764
- #: admin/views/Themes.php:4517
3765
- msgid "Button transition:"
3766
  msgstr ""
3767
 
3768
- #: admin/views/Themes.php:4543
3769
- msgid "Position:"
3770
  msgstr ""
3771
 
3772
- #: admin/views/Themes.php:4566
3773
- msgid "Numbering:"
3774
  msgstr ""
3775
 
3776
- #: admin/views/Themes.php:4575
3777
- msgid "Button text:"
3778
  msgstr ""
3779
 
3780
- #: admin/views/Themes.php:4580
3781
- msgid "Arrow"
3782
  msgstr ""
3783
 
3784
- #: admin/views/Themes.php:4581
3785
- msgid "Next, previous buttons values."
3786
  msgstr ""
3787
 
3788
- #: admin/views/Themes.php:4605
3789
- msgid "Container opacity:"
3790
  msgstr ""
3791
 
3792
- #: admin/views/Themes.php:4718
3793
- msgid "Carousel margin:"
3794
  msgstr ""
3795
 
3796
- #: admin/views/Themes.php:4724
3797
- msgid "Image border width:"
3798
  msgstr ""
3799
 
3800
- #: admin/views/Themes.php:4731
3801
- msgid "Image border style:"
3802
  msgstr ""
3803
 
3804
- #: admin/views/Themes.php:4746
3805
- msgid "Image border color:"
3806
  msgstr ""
3807
 
3808
- #: admin/views/Themes.php:4762
3809
- msgid "Title background color:"
 
 
3810
  msgstr ""
3811
 
3812
- #: admin/views/Themes.php:4769
3813
- msgid "Title opacity:"
3814
  msgstr ""
3815
 
3816
- #: admin/views/Themes.php:4796
3817
- msgid "Title Font family:"
3818
  msgstr ""
3819
 
3820
- #: admin/views/Themes.php:4823
3821
- msgid "Title color:"
3822
  msgstr ""
3823
 
3824
- #: admin/views/Uninstall.php:41
3825
- #, php-format
3826
- msgid ""
3827
- "%s to Finish the Uninstallation and %s will be Deactivated Automatically."
3828
  msgstr ""
3829
 
3830
- #: admin/views/Uninstall.php:41
3831
- msgid "Click Here"
3832
  msgstr ""
3833
 
3834
- #: admin/views/Uninstall.php:50
3835
- msgid "support team"
3836
  msgstr ""
3837
 
3838
- #: admin/views/Uninstall.php:51 wd/templates/display_overview_support.php:41
3839
- msgid "Contact us"
3840
  msgstr ""
3841
 
3842
- #: admin/views/Uninstall.php:52
3843
- #, php-format
3844
- msgid ""
3845
- "Before uninstalling the plugin, please Contact our %s. We'll do our best to "
3846
- "help you out with your issue. We value each and every user and value what's "
3847
- "right for our users in everything we do.<br />\n"
3848
- " However, if anyway you have made a decision to uninstall the plugin, "
3849
- "please take a minute to %s and tell what you didn't like for our plugins "
3850
- "further improvement and development. Thank you !!!"
3851
  msgstr ""
3852
 
3853
- #: admin/views/Uninstall.php:56
3854
- #, php-format
3855
- msgid ""
3856
- "Deactivating %s plugin does not remove any data that may have been created. "
3857
- "To completely remove this plugin, you can uninstall it here."
3858
- msgstr ""
3859
 
3860
- #: admin/views/Uninstall.php:59
3861
- msgid "WARNING:"
3862
  msgstr ""
3863
 
3864
- #: admin/views/Uninstall.php:60
3865
- msgid ""
3866
- "Once uninstalled, this can't be undone. You should use a Database Backup "
3867
- "plugin of WordPress to back up all the data first."
3868
  msgstr ""
3869
 
3870
- #: admin/views/Uninstall.php:63
3871
- msgid "The following Database Tables will be deleted:"
3872
  msgstr ""
3873
 
3874
- #: admin/views/Uninstall.php:68
3875
- msgid "Database Tables"
3876
  msgstr ""
3877
 
3878
- #: admin/views/Uninstall.php:86
3879
- msgid "Delete the folder containing uploaded images."
3880
  msgstr ""
3881
 
3882
- #: admin/views/Uninstall.php:92
3883
- #, php-format
3884
- msgid "Do you really want to uninstall %s?"
3885
  msgstr ""
3886
 
3887
- #: admin/views/Uninstall.php:102
3888
- msgid "UNINSTALL"
3889
  msgstr ""
3890
 
3891
- #: admin/views/Uninstall.php:104
3892
- #, php-format
3893
- msgid ""
3894
- "You are About to Uninstall %s from WordPress. This Action Is Not Reversible."
3895
  msgstr ""
3896
 
3897
- #: admin/views/Widget.php:98 photo-gallery.php:88
3898
- msgid "Photo Gallery"
3899
  msgstr ""
3900
 
3901
- #: admin/views/Widget.php:112 admin/views/WidgetSlideshow.php:83
3902
- #: admin/views/WidgetTags.php:80
3903
- msgid "Title:"
3904
  msgstr ""
3905
 
3906
- #: admin/views/Widget.php:116 admin/views/WidgetTags.php:84
3907
- msgid "Type:"
3908
  msgstr ""
3909
 
3910
- #: admin/views/Widget.php:118
3911
- msgid "Gallery groups"
3912
  msgstr ""
3913
 
3914
- #: admin/views/Widget.php:121 admin/views/WidgetSlideshow.php:87
3915
- msgid "Galleries:"
3916
  msgstr ""
3917
 
3918
- #: admin/views/Widget.php:123 admin/views/Widget.php:144
3919
- #: admin/views/WidgetSlideshow.php:89
3920
- msgid "Select"
3921
  msgstr ""
3922
 
3923
- #: admin/views/Widget.php:134
3924
- #, fuzzy
3925
- #| msgid "Gallery is empty."
3926
- msgid "Gallery Type:"
3927
- msgstr "Gallery is leeg."
3928
 
3929
- #: admin/views/Widget.php:142
3930
- msgid "Gallery Groups:"
3931
  msgstr ""
3932
 
3933
- #: admin/views/Widget.php:155
3934
- msgid "Sort:"
3935
  msgstr ""
3936
 
3937
- #: admin/views/Widget.php:157 framework/WDWLibrary.php:655
3938
- msgid "First"
3939
- msgstr "Eerste"
3940
 
3941
- #: admin/views/Widget.php:158 framework/WDWLibrary.php:658
3942
- msgid "Last"
3943
- msgstr "Duur"
3944
 
3945
- #: admin/views/Widget.php:162
3946
- msgid "Count:"
3947
  msgstr ""
3948
 
3949
- #: admin/views/Widget.php:166 admin/views/WidgetSlideshow.php:132
3950
- #: admin/views/WidgetTags.php:107
3951
- msgid "Dimensions:"
3952
  msgstr ""
3953
 
3954
- #: admin/views/Widget.php:171 admin/views/WidgetSlideshow.php:148
3955
- #: admin/views/WidgetTags.php:126
3956
- msgid "Themes:"
3957
  msgstr ""
3958
 
3959
- #: admin/views/WidgetSlideshow.php:68 photo-gallery.php:1421
3960
- msgid "Photo Gallery Slideshow"
3961
  msgstr ""
3962
 
3963
- #: admin/views/WidgetSlideshow.php:100
3964
- msgid "Slideshow effect:"
3965
  msgstr ""
3966
 
3967
- #: admin/views/WidgetSlideshow.php:114
3968
- msgid "Enable shuffle:"
3969
  msgstr ""
3970
 
3971
- #: admin/views/WidgetSlideshow.php:120
3972
- msgid "Enable autoplay:"
3973
  msgstr ""
3974
 
3975
- #: admin/views/WidgetSlideshow.php:126
3976
- msgid "Enable control buttons:"
3977
  msgstr ""
3978
 
3979
- #: admin/views/WidgetSlideshow.php:137
3980
- msgid "Filmstrip height:"
3981
  msgstr ""
3982
 
3983
- #: admin/views/WidgetSlideshow.php:144
3984
- msgid "Time interval:"
3985
  msgstr ""
3986
 
3987
- #: admin/views/WidgetTags.php:65 photo-gallery.php:1417
3988
- msgid "Photo Gallery Tags Cloud"
3989
  msgstr ""
3990
 
3991
- #: admin/views/WidgetTags.php:90
3992
- msgid "Show Tag Names:"
3993
  msgstr ""
3994
 
3995
- #: admin/views/WidgetTags.php:96
3996
- msgid "Open in:"
3997
  msgstr ""
3998
 
3999
- #: admin/views/WidgetTags.php:97
4000
- msgid "Page"
4001
  msgstr ""
4002
 
4003
- #: admin/views/WidgetTags.php:102
4004
- msgid "Number:"
4005
  msgstr ""
4006
 
4007
- #: admin/views/WidgetTags.php:104
4008
- msgid "0 for all."
4009
  msgstr ""
4010
 
4011
- #: admin/views/WidgetTags.php:112
4012
- msgid "Transparent Background:"
4013
  msgstr ""
4014
 
4015
- #: admin/views/WidgetTags.php:118
4016
- msgid "Background Color:"
4017
  msgstr ""
4018
 
4019
- #: admin/views/WidgetTags.php:122
4020
- msgid "Text Color:"
4021
  msgstr ""
4022
 
4023
- #: filemanager/controller.php:66
4024
- msgid "Directory already exists."
4025
  msgstr ""
4026
 
4027
- #: filemanager/controller.php:113
4028
- msgid "File doesn't exist."
4029
  msgstr ""
4030
 
4031
- #: filemanager/controller.php:117 filemanager/controller.php:130
4032
- #: filemanager/controller.php:150
4033
- msgid "Can't rename the file."
4034
  msgstr ""
4035
 
4036
- #: filemanager/controller.php:187
4037
- msgid "Some of the files couldn't be removed."
4038
  msgstr ""
4039
 
4040
- #: filemanager/controller.php:274
4041
- msgid "Failed to copy some of the files."
4042
  msgstr ""
4043
 
4044
- #: filemanager/controller.php:296
4045
- msgid "Failed to move some of the files."
4046
  msgstr ""
4047
 
4048
- #: filemanager/view.php:53
4049
- msgid "File loading failed"
4050
  msgstr ""
4051
 
4052
- #: filemanager/view.php:55
4053
- msgid "Are you sure you want to permanently remove selected items?"
 
 
 
 
 
 
4054
  msgstr ""
4055
 
4056
- #: filemanager/view.php:56
4057
- msgid "This will cancel uploads. Continue?"
4058
  msgstr ""
4059
 
4060
- #: filemanager/view.php:58
4061
- msgid "Enter directory name"
4062
  msgstr ""
4063
 
4064
- #: filemanager/view.php:59
4065
- msgid "Enter new name"
4066
  msgstr ""
4067
 
4068
- #: filemanager/view.php:60
4069
- msgid "Processing uploaded files..."
4070
  msgstr ""
4071
 
4072
- #: filemanager/view.php:98
4073
- msgid "Up"
4074
  msgstr ""
4075
 
4076
- #: filemanager/view.php:99
4077
- msgid "Make a directory"
4078
  msgstr ""
4079
 
4080
- #: filemanager/view.php:100
4081
- msgid "Rename item"
4082
  msgstr ""
4083
 
4084
- #: filemanager/view.php:102
4085
- msgid "Copy"
4086
  msgstr ""
4087
 
4088
- #: filemanager/view.php:103
4089
- msgid "Cut"
4090
  msgstr ""
4091
 
4092
- #: filemanager/view.php:104
4093
- msgid "Paste"
4094
  msgstr ""
4095
 
4096
- #: filemanager/view.php:105
4097
- #, fuzzy
4098
- #| msgid " item(s)"
4099
- msgid "Remove items"
4100
- msgstr "item(s)"
4101
 
4102
- #: filemanager/view.php:109
4103
- msgid "View thumbs"
4104
  msgstr ""
4105
 
4106
- #: filemanager/view.php:110
4107
- msgid "View list"
4108
  msgstr ""
4109
 
4110
- #: filemanager/view.php:114
4111
- msgid "Upload files"
4112
  msgstr ""
4113
 
4114
- #: filemanager/view.php:128
4115
- msgid "To change upload directory go to Options page."
4116
  msgstr ""
4117
 
4118
- #: filemanager/view.php:140
4119
- #, fuzzy
4120
- #| msgid "Order by: "
4121
- msgid "Order by:"
4122
- msgstr "Om deur"
4123
 
4124
- #: filemanager/view.php:142
4125
- msgid "Click to sort by name"
4126
  msgstr ""
4127
 
4128
- #: filemanager/view.php:154
4129
- msgid "Click to sort by size"
4130
  msgstr ""
4131
 
4132
- #: filemanager/view.php:166
4133
- msgid "Click to sort by date modified"
4134
  msgstr ""
4135
 
4136
- #: filemanager/view.php:256
4137
- #, fuzzy
4138
- #| msgid "There are no images in this gallery."
4139
- msgid "Add selected images to gallery"
4140
- msgstr "Daar is geen foto's in die gallery."
4141
 
4142
- #: filemanager/view.php:272
4143
- msgid "Thumbnail Maximum Dimensions:"
4144
  msgstr ""
4145
 
4146
- #: filemanager/view.php:273
4147
- msgid "Thumbnail:"
4148
  msgstr ""
4149
 
4150
- #: filemanager/view.php:278 frontend/views/BWGViewAlbum_compact_preview.php:243
4151
- #: frontend/views/BWGViewAlbum_extended_preview.php:236
4152
- #: frontend/views/BWGViewAlbum_masonry_preview.php:201
4153
- #: frontend/views/BWGViewAlbum_masonry_preview.php:238
4154
- msgid "Back"
4155
- msgstr "Terug"
4156
 
4157
- #: filemanager/view.php:281
4158
- msgid "Image Maximum Dimensions:"
4159
  msgstr ""
4160
 
4161
- #: filemanager/view.php:282
4162
- msgid "Image:"
4163
  msgstr ""
4164
 
4165
- #: filemanager/view.php:290
4166
- msgid "Drag files here or click the button below"
4167
  msgstr ""
4168
 
4169
- #: filemanager/view.php:290
4170
- msgid "to upload files"
4171
  msgstr ""
4172
 
4173
- #: filemanager/view.php:354
4174
- msgid "No files to upload"
4175
  msgstr ""
4176
 
4177
- #: framework/WDWLibrary.php:61
4178
- msgid "Item successfully saved."
4179
  msgstr ""
4180
 
4181
- #: framework/WDWLibrary.php:67 framework/WDWLibrary.php:172
4182
- msgid "Failed."
4183
  msgstr ""
4184
 
4185
- #: framework/WDWLibrary.php:73
4186
- msgid "Item successfully deleted."
4187
  msgstr ""
4188
 
4189
- #: framework/WDWLibrary.php:79
4190
- msgid "You can't delete default theme."
4191
  msgstr ""
4192
 
4193
- #: framework/WDWLibrary.php:85
4194
- msgid "Items Successfully Deleted."
4195
  msgstr ""
4196
 
4197
- #: framework/WDWLibrary.php:99
4198
- msgid "The item is successfully set as default."
4199
  msgstr ""
4200
 
4201
- #: framework/WDWLibrary.php:105
4202
- msgid "Options successfully saved."
4203
  msgstr ""
4204
 
4205
- #: framework/WDWLibrary.php:111
4206
- msgid "Item successfully published."
4207
  msgstr ""
4208
 
4209
- #: framework/WDWLibrary.php:117
4210
- msgid "Item successfully unpublished."
4211
  msgstr ""
4212
 
4213
- #: framework/WDWLibrary.php:123
4214
- msgid "Item successfully duplicated."
4215
  msgstr ""
4216
 
4217
- #: framework/WDWLibrary.php:130
4218
- msgid "Items Succesfully Unpublished."
4219
  msgstr ""
4220
 
4221
- #: framework/WDWLibrary.php:136
4222
- msgid "Ordering Succesfully Saved."
4223
  msgstr ""
4224
 
4225
- #: framework/WDWLibrary.php:142
4226
- msgid "A term with the name provided already exists."
4227
  msgstr ""
4228
 
4229
- #: framework/WDWLibrary.php:148
4230
- msgid "Name field is required."
4231
  msgstr ""
4232
 
4233
- #: framework/WDWLibrary.php:154
4234
- msgid "The slug must be unique."
 
 
 
 
 
 
 
4235
  msgstr ""
4236
 
4237
- #: framework/WDWLibrary.php:160
4238
- msgid "Changes must be saved."
 
 
 
4239
  msgstr ""
4240
 
4241
- #: framework/WDWLibrary.php:166
4242
- msgid "Theme successfully copied."
4243
  msgstr ""
4244
 
4245
- #: framework/WDWLibrary.php:177
4246
- msgid "Items were reset successfully."
 
 
4247
  msgstr ""
4248
 
4249
- #: framework/WDWLibrary.php:182
4250
- msgid "Watermark successfully set."
4251
  msgstr ""
4252
 
4253
- #: framework/WDWLibrary.php:187
4254
- msgid "Items successfully rotated."
4255
  msgstr ""
4256
 
4257
- #: framework/WDWLibrary.php:192
4258
- msgid "Items successfully recreated."
4259
  msgstr ""
4260
 
4261
- #: framework/WDWLibrary.php:197
4262
- msgid "Items successfully resized."
 
4263
  msgstr ""
4264
 
4265
- #: framework/WDWLibrary.php:202
4266
- msgid "Items successfully edited."
4267
  msgstr ""
4268
 
4269
- #: framework/WDWLibrary.php:253
4270
- msgid "Click to sort by this item"
 
 
4271
  msgstr ""
4272
 
4273
- #: framework/WDWLibrary.php:418 framework/WDWLibrary.php:567
4274
- #: photo-gallery.php:398
4275
- msgid "item"
4276
  msgstr ""
4277
 
4278
- #: framework/WDWLibrary.php:650
4279
- msgid " item(s)"
4280
- msgstr "item(s)"
 
4281
 
4282
- #: framework/WDWLibrary.php:656
4283
- msgid "Previous"
4284
- msgstr "Vorige"
4285
 
4286
- #: framework/WDWLibrary.php:657
4287
- msgid "Next"
4288
- msgstr "Volgende"
4289
 
4290
- #: framework/WDWLibrary.php:676
4291
- msgid "Go to the first page"
4292
- msgstr "Gaan na die eerste bladsy"
4293
 
4294
- #: framework/WDWLibrary.php:677
4295
- msgid "Go to the previous page"
4296
- msgstr "Gaan na die vorige bladsy"
 
 
4297
 
4298
- #: framework/WDWLibrary.php:683
4299
- msgid "Go to the next page"
4300
- msgstr "Gaan na die volgende bladsy"
4301
 
4302
- #: framework/WDWLibrary.php:684
4303
- msgid "Go to the last page"
4304
- msgstr "Gaan na die laaste bladsy"
4305
 
4306
- #: framework/WDWLibrary.php:696
4307
- msgid "Load More..."
4308
- msgstr "Laai meer..."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4309
 
4310
- #: framework/WDWLibrary.php:886
4311
- msgid "Order by: "
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4312
  msgstr "Om deur"
4313
 
4314
- #: framework/WDWLibrary.php:1972
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4315
  #, php-format
4316
  msgid "No %s found."
4317
  msgstr ""
4318
 
4319
- #: framework/WDWLibrary.php:2012
4320
  #, fuzzy
4321
  #| msgid "Gallery is empty."
4322
  msgid "Gallery Tags"
4323
  msgstr "Gallery is leeg."
4324
 
4325
- #: frontend/views/BWGViewAlbum_compact_preview.php:23
4326
- #: frontend/views/BWGViewAlbum_extended_preview.php:19
4327
- #: frontend/views/BWGViewAlbum_masonry_preview.php:19
4328
- #: frontend/views/BWGViewBlog_style.php:19
4329
- #: frontend/views/BWGViewCarousel.php:47
4330
- #: frontend/views/BWGViewImage_browser.php:19
4331
- #: frontend/views/BWGViewSlideshow.php:15
4332
- #: frontend/views/BWGViewThumbnails.php:29
4333
- #: frontend/views/BWGViewThumbnails_masonry.php:28
4334
- #: frontend/views/BWGViewThumbnails_mosaic.php:31
4335
- msgid "There is no theme selected or the theme was deleted."
4336
- msgstr "Daar is geen tema gekies of die tema is verwyder."
4337
-
4338
- #: frontend/views/BWGViewAlbum_compact_preview.php:51
4339
- #: frontend/views/BWGViewAlbum_compact_preview.php:91
4340
- #: frontend/views/BWGViewAlbum_extended_preview.php:47
4341
- #: frontend/views/BWGViewAlbum_extended_preview.php:84
4342
- #: frontend/views/BWGViewAlbum_masonry_preview.php:47
4343
- #: frontend/views/BWGViewAlbum_masonry_preview.php:86
4344
- msgid "There is no album selected or the album was deleted."
4345
- msgstr "Daar is geen album gekies of die album is verwyder."
4346
-
4347
- #: frontend/views/BWGViewAlbum_compact_preview.php:77
4348
- #: frontend/views/BWGViewAlbum_extended_preview.php:71
4349
- #: frontend/views/BWGViewAlbum_masonry_preview.php:73
4350
- #: frontend/views/BWGViewBlog_style.php:55
4351
- #: frontend/views/BWGViewCarousel.php:66
4352
- #: frontend/views/BWGViewImage_browser.php:36
4353
- #: frontend/views/BWGViewSlideshow.php:94
4354
- #: frontend/views/BWGViewThumbnails.php:76
4355
- #: frontend/views/BWGViewThumbnails_masonry.php:74
4356
- #: frontend/views/BWGViewThumbnails_mosaic.php:78
4357
- msgid "There are no images in this gallery."
4358
- msgstr "Daar is geen foto's in die gallery."
4359
 
4360
- #: frontend/views/BWGViewAlbum_compact_preview.php:266
4361
- #: frontend/views/BWGViewAlbum_extended_preview.php:264
4362
- #: frontend/views/BWGViewAlbum_masonry_preview.php:255
4363
- msgid "Album is empty."
4364
- msgstr "Album is leeg."
4365
 
4366
- #: frontend/views/BWGViewAlbum_compact_preview.php:384
4367
- #: frontend/views/BWGViewAlbum_extended_preview.php:247
4368
- #: frontend/views/BWGViewAlbum_masonry_preview.php:326 photo-gallery.php:1005
4369
- msgid "There are no images matching your search."
4370
- msgstr "Daar is geen beelde wat ooreenstem met jou soektog."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4371
 
4372
- #: frontend/views/BWGViewAlbum_compact_preview.php:389
4373
- #: frontend/views/BWGViewAlbum_extended_preview.php:252
4374
- #: frontend/views/BWGViewAlbum_masonry_preview.php:331
4375
- msgid "Gallery is empty."
4376
  msgstr "Gallery is leeg."
4377
 
4378
- #: frontend/views/BWGViewAlbum_compact_preview.php:453
4379
- #: frontend/views/BWGViewAlbum_compact_preview.php:531
4380
- #: frontend/views/BWGViewAlbum_extended_preview.php:439
4381
- #: frontend/views/BWGViewAlbum_extended_preview.php:514
4382
- #: frontend/views/BWGViewCarousel.php:236
4383
- #: frontend/views/BWGViewGalleryBox.php:1134
4384
- #: frontend/views/BWGViewGalleryBox.php:3620
4385
- #: frontend/views/BWGViewSlideshow.php:1351
4386
- #: frontend/views/BWGViewThumbnails.php:218
4387
- #: frontend/views/BWGViewThumbnails_mosaic.php:174
4388
- msgid "Play"
4389
- msgstr "Speel"
4390
 
4391
- #: frontend/views/BWGViewAlbum_compact_preview.php:471
4392
- #: frontend/views/BWGViewAlbum_compact_preview.php:497
4393
- #: frontend/views/BWGViewAlbum_extended_preview.php:456
4394
- #: frontend/views/BWGViewAlbum_extended_preview.php:481
4395
- #: frontend/views/BWGViewAlbum_masonry_preview.php:346
4396
- #: frontend/views/BWGViewThumbnails.php:235
4397
- #: frontend/views/BWGViewThumbnails.php:260
4398
- #: frontend/views/BWGViewThumbnails_masonry.php:168
4399
- #: frontend/views/BWGViewThumbnails_mosaic.php:191
4400
- msgid "Open"
4401
  msgstr ""
4402
 
4403
- #: frontend/views/BWGViewAlbum_compact_preview.php:472
4404
- #: frontend/views/BWGViewAlbum_compact_preview.php:498
4405
- #: frontend/views/BWGViewAlbum_extended_preview.php:457
4406
- #: frontend/views/BWGViewAlbum_extended_preview.php:482
4407
- #: frontend/views/BWGViewAlbum_masonry_preview.php:347
4408
- #: frontend/views/BWGViewGalleryBox.php:1218
4409
- #: frontend/views/BWGViewThumbnails.php:236
4410
- #: frontend/views/BWGViewThumbnails.php:261
4411
- #: frontend/views/BWGViewThumbnails_masonry.php:169
4412
- #: frontend/views/BWGViewThumbnails_mosaic.php:192
4413
- msgid "Ecommerce"
 
4414
  msgstr ""
4415
 
4416
- #: frontend/views/BWGViewAlbum_compact_preview.php:1013
4417
- #: frontend/views/BWGViewAlbum_extended_preview.php:1037
4418
- #: frontend/views/BWGViewAlbum_masonry_preview.php:459
4419
- #: frontend/views/BWGViewBlog_style.php:388
4420
- #: frontend/views/BWGViewCarousel.php:393
4421
- #: frontend/views/BWGViewImage_browser.php:345
4422
- #: frontend/views/BWGViewSlideshow.php:494
4423
- #: frontend/views/BWGViewThumbnails.php:280
4424
- #: frontend/views/BWGViewThumbnails_masonry.php:314
4425
- #: frontend/views/BWGViewThumbnails_mosaic.php:602
 
 
 
 
 
 
 
 
 
 
 
 
 
4426
  #, fuzzy
4427
- #| msgid "Download original image"
4428
- msgid "Download gallery"
4429
- msgstr "Aflaai oorspronklike beeld"
4430
 
4431
- #: frontend/views/BWGViewAlbum_extended_preview.php:366
4432
- #: frontend/views/BWGViewAlbum_extended_preview.php:546
4433
- msgid "More"
4434
- msgstr "Meer"
 
 
4435
 
4436
- #: frontend/views/BWGViewAlbum_extended_preview.php:541
4437
- msgid "Hide"
4438
- msgstr "Verberg"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4439
 
4440
- #: frontend/views/BWGViewBlog_style.php:37
4441
- #: frontend/views/BWGViewCarousel.php:53
4442
- #: frontend/views/BWGViewImage_browser.php:24
4443
- #: frontend/views/BWGViewSlideshow.php:80
4444
- #: frontend/views/BWGViewThumbnails.php:60
4445
- #: frontend/views/BWGViewThumbnails_masonry.php:55
4446
- #: frontend/views/BWGViewThumbnails_mosaic.php:60
4447
  msgid "There is no gallery selected or the gallery was deleted."
4448
  msgstr "Daar is geen gallery gekies of die gallery is verwyder."
4449
 
4450
- #: frontend/views/BWGViewBlog_style.php:52
4451
- #: frontend/views/BWGViewCarousel.php:62
4452
- #: frontend/views/BWGViewImage_browser.php:33
4453
- #: frontend/views/BWGViewSlideshow.php:90
4454
- #: frontend/views/BWGViewThumbnails.php:73
4455
- #: frontend/views/BWGViewThumbnails_masonry.php:71
4456
- #: frontend/views/BWGViewThumbnails_mosaic.php:75
4457
- #, fuzzy
4458
- #| msgid "There are no images in this gallery."
4459
- msgid "There are no images."
4460
- msgstr "Daar is geen foto's in die gallery."
 
 
 
4461
 
4462
- #: frontend/views/BWGViewBlog_style.php:311
4463
- #: frontend/views/BWGViewGalleryBox.php:1146
4464
  msgid "Show comments"
4465
  msgstr "Wys kommentaar"
4466
 
4467
- #: frontend/views/BWGViewBlog_style.php:317
4468
- #: frontend/views/BWGViewBlog_style.php:318
4469
- #: frontend/views/BWGViewGalleryBox.php:1154
4470
- #: frontend/views/BWGViewGalleryBox.php:1155
4471
  msgid "Share on Facebook"
4472
  msgstr "Deel op Facebook"
4473
 
4474
- #: frontend/views/BWGViewBlog_style.php:324
4475
- #: frontend/views/BWGViewBlog_style.php:325
4476
- #: frontend/views/BWGViewGalleryBox.php:1161
4477
- #: frontend/views/BWGViewGalleryBox.php:1162
4478
  msgid "Share on Twitter"
4479
  msgstr "Deel op Twitter"
4480
 
4481
- #: frontend/views/BWGViewBlog_style.php:331
4482
- #: frontend/views/BWGViewBlog_style.php:332
4483
- #: frontend/views/BWGViewGalleryBox.php:1168
4484
- #: frontend/views/BWGViewGalleryBox.php:1169
4485
- msgid "Share on Google+"
4486
- msgstr "Deel op Google+"
4487
-
4488
- #: frontend/views/BWGViewBlog_style.php:338
4489
- #: frontend/views/BWGViewBlog_style.php:339
4490
- #: frontend/views/BWGViewGalleryBox.php:1175
4491
- #: frontend/views/BWGViewGalleryBox.php:1176
4492
  msgid "Share on Pinterest"
4493
  msgstr "Deel op Pinterest"
4494
 
4495
- #: frontend/views/BWGViewBlog_style.php:345
4496
- #: frontend/views/BWGViewBlog_style.php:346
4497
- #: frontend/views/BWGViewGalleryBox.php:1182
4498
- #: frontend/views/BWGViewGalleryBox.php:1183
4499
  msgid "Share on Tumblr"
4500
  msgstr "Deel op Tumblr"
4501
 
4502
- #: frontend/views/BWGViewBlog_style.php:353
4503
  #, fuzzy
4504
  #| msgid "Show comments"
4505
  msgid "Show ecommerce"
4506
  msgstr "Wys kommentaar"
4507
 
4508
- #: frontend/views/BWGViewCarousel.php:224
4509
- #: frontend/views/BWGViewCarousel.php:230
4510
- #: frontend/views/BWGViewGalleryBox.php:3614
4511
- #: frontend/views/BWGViewGalleryBox.php:3629
4512
- #: frontend/views/BWGViewSlideshow.php:1342
4513
- #: frontend/views/BWGViewSlideshow.php:1360
4514
- msgid "Pause"
4515
- msgstr "Breek"
4516
-
4517
- #: frontend/views/BWGViewDownload_gallery.php:37
4518
  #, fuzzy
4519
  #| msgid "There are no images in this gallery."
4520
  msgid "There are no images to download."
4521
  msgstr "Daar is geen foto's in die gallery."
4522
 
4523
- #: frontend/views/BWGViewGalleryBox.php:1020
4524
  msgid "The image has been deleted."
4525
  msgstr "Die beeld is verwyder"
4526
 
4527
- #: frontend/views/BWGViewGalleryBox.php:1138
4528
- #: frontend/views/BWGViewGalleryBox.php:2760
4529
- #: frontend/views/BWGViewGalleryBox.php:3449
4530
- #: frontend/views/BWGViewGalleryBox.php:3545
 
 
 
 
 
4531
  msgid "Maximize"
4532
  msgstr "Maksimeer"
4533
 
4534
- #: frontend/views/BWGViewGalleryBox.php:1142
4535
- #: frontend/views/BWGViewGalleryBox.php:2762
4536
- #: frontend/views/BWGViewGalleryBox.php:3547
4537
  msgid "Fullscreen"
4538
  msgstr "Volskerm"
4539
 
4540
- #: frontend/views/BWGViewGalleryBox.php:1144
4541
- #: frontend/views/BWGViewGalleryBox.php:3225
4542
  msgid "Show info"
4543
  msgstr "Wys info"
4544
 
4545
- #: frontend/views/BWGViewGalleryBox.php:1148
4546
- #: frontend/views/BWGViewGalleryBox.php:3236
4547
  msgid "Show rating"
4548
  msgstr "Wys gradering"
4549
 
4550
- #: frontend/views/BWGViewGalleryBox.php:1190
4551
  msgid "Open image in original size."
4552
  msgstr "Open beeld in die oorspronklike grootte"
4553
 
4554
- #: frontend/views/BWGViewGalleryBox.php:1211
4555
  msgid "Download original image"
4556
  msgstr "Aflaai oorspronklike beeld"
4557
 
4558
- #: frontend/views/BWGViewGalleryBox.php:1243
 
 
 
 
 
 
 
4559
  msgid "Hits: "
4560
  msgstr "Hits: "
4561
 
4562
- #: frontend/views/BWGViewGalleryBox.php:1254
4563
  msgid "Rated."
4564
  msgstr "Gegradeer."
4565
 
4566
- #: frontend/views/BWGViewGalleryBox.php:1258
4567
- #: frontend/views/BWGViewGalleryBox.php:1275
4568
- msgid "Not rated yet."
4569
- msgstr "Nog nie gegradeer nie"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4570
 
4571
- #: frontend/views/BWGViewGalleryBox.php:1261
4572
- #: frontend/views/BWGViewGalleryBox.php:1297
4573
- msgid "Votes: "
4574
- msgstr "stemme"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4575
 
4576
- #: frontend/views/BWGViewGalleryBox.php:1295
4577
- msgid "Cancel your rating."
4578
- msgstr "Die styl van jou gradering"
 
4579
 
4580
- #: frontend/views/BWGViewGalleryBox.php:1297
4581
- msgid "You have already rated."
4582
- msgstr "Jy het reeds gegradeer"
 
 
4583
 
4584
- #: frontend/views/BWGViewGalleryBox.php:1406
4585
- msgid "Error. Incorrect Verification Code."
4586
- msgstr "Fout. Verkeerde Bevestigingskode."
4587
 
4588
- #: frontend/views/BWGViewGalleryBox.php:1413 photo-gallery.php:1004
4589
- msgid "This is not a valid email address."
4590
- msgstr "Dit is nie 'n geldige e-posadres."
4591
 
4592
- #: frontend/views/BWGViewGalleryBox.php:1421
4593
- #: frontend/views/BWGViewGalleryBox.php:3009
4594
- msgid "Hide Comments"
4595
- msgstr "Steek kommentaar"
4596
 
4597
- #: frontend/views/BWGViewGalleryBox.php:1443
4598
- msgid "Verification Code"
4599
- msgstr "Bevestigingskode"
4600
 
4601
- #: frontend/views/BWGViewGalleryBox.php:1466
4602
- msgid "Submit"
4603
- msgstr "Stuur"
4604
 
4605
- #: frontend/views/BWGViewGalleryBox.php:1467
4606
- msgid "Your comment is awaiting moderation"
4607
- msgstr "Jou opmerking is wag moderering"
4608
 
4609
- #: frontend/views/BWGViewGalleryBox.php:1496
4610
- msgid "Delete Comment"
4611
- msgstr "Verwyder Kommentaar"
4612
 
4613
- #: frontend/views/BWGViewGalleryBox.php:1531
4614
- #: frontend/views/BWGViewGalleryBox.php:3043
4615
- #, fuzzy
4616
- #| msgid "Hide Comments"
4617
- msgid "Hide Ecommerce"
4618
- msgstr "Steek kommentaar"
4619
 
4620
- #: frontend/views/BWGViewGalleryBox.php:1538
4621
- #: frontend/views/BWGViewGalleryBox.php:1726
4622
- msgid "Add to cart"
4623
  msgstr ""
4624
 
4625
- #: frontend/views/BWGViewGalleryBox.php:1541
4626
- #, fuzzy
4627
- #| msgid " item(s)"
4628
- msgid "items"
4629
- msgstr "item(s)"
4630
-
4631
- #: frontend/views/BWGViewGalleryBox.php:1551
4632
- msgid "Prints and products"
4633
  msgstr ""
4634
 
4635
- #: frontend/views/BWGViewGalleryBox.php:1558
4636
- msgid "Downloads"
4637
  msgstr ""
4638
 
4639
- #: frontend/views/BWGViewGalleryBox.php:1573
4640
- #: frontend/views/BWGViewGalleryBox.php:1686
4641
- msgid "Price"
4642
  msgstr ""
4643
 
4644
- #: frontend/views/BWGViewGalleryBox.php:1593
4645
- msgid "Count"
 
 
 
 
4646
  msgstr ""
4647
 
4648
- #: frontend/views/BWGViewGalleryBox.php:1673
4649
- #: frontend/views/BWGViewGalleryBox.php:1717
4650
- msgid "Total"
4651
  msgstr ""
4652
 
4653
- #: frontend/views/BWGViewGalleryBox.php:1683
4654
- msgid "Choose"
4655
  msgstr ""
4656
 
4657
- #: frontend/views/BWGViewGalleryBox.php:1685
4658
- msgid "Dimensions"
4659
  msgstr ""
4660
 
4661
- #: frontend/views/BWGViewGalleryBox.php:1727
4662
- msgid "View cart"
 
 
 
 
4663
  msgstr ""
4664
 
4665
- #: frontend/views/BWGViewGalleryBox.php:1909
4666
- msgid "Please select at least one item"
4667
  msgstr ""
4668
 
4669
- #: frontend/views/BWGViewGalleryBox.php:1944
4670
- msgid "Please select Prints and products or Downloads"
 
 
 
 
4671
  msgstr ""
4672
 
4673
- #: frontend/views/BWGViewGalleryBox.php:2668
4674
- #: frontend/views/BWGViewGalleryBox.php:2991
4675
- #: frontend/views/BWGViewGalleryBox.php:3035
4676
- #, fuzzy
4677
- #| msgid "Show comments"
4678
- msgid "Show Ecommerce"
4679
- msgstr "Wys kommentaar"
4680
-
4681
- #: frontend/views/BWGViewGalleryBox.php:3000
4682
- #: frontend/views/BWGViewGalleryBox.php:3028
4683
- msgid "Show Comments"
4684
- msgstr "Wys kommentaar"
4685
-
4686
- #: frontend/views/BWGViewGalleryBox.php:3212
4687
- msgid "Hide info"
4688
- msgstr "Steek info"
4689
-
4690
- #: frontend/views/BWGViewGalleryBox.php:3232
4691
- msgid "Hide rating"
4692
- msgstr "Steek gradering"
4693
-
4694
- #: frontend/views/BWGViewGalleryBox.php:3486
4695
- #: frontend/views/BWGViewGalleryBox.php:3695
4696
- msgid "Restore"
4697
- msgstr "Herstel"
4698
-
4699
- #: frontend/views/BWGViewGalleryBox.php:3600
4700
- msgid "Exit Fullscreen"
4701
- msgstr "Verlaat Volskerm"
4702
-
4703
- #: insert.php:1152
4704
- msgid "Theme 1"
4705
  msgstr ""
4706
 
4707
- #: insert.php:1158
4708
- msgid "Theme 2"
4709
  msgstr ""
4710
 
4711
- #: photo-gallery.php:97
4712
- msgid "This option is disabled in free version."
4713
- msgstr ""
 
 
4714
 
4715
- #: photo-gallery.php:254
4716
- msgid "Add Galleries/Images"
 
 
 
4717
  msgstr ""
4718
 
4719
- #: photo-gallery.php:262
4720
  msgid "Options"
4721
  msgstr ""
4722
 
4723
- #: photo-gallery.php:275
4724
- msgid "Pro Version"
4725
- msgstr ""
 
 
4726
 
4727
- #: photo-gallery.php:280
4728
- msgid "Add-ons"
4729
  msgstr ""
4730
 
4731
- #: photo-gallery.php:308
4732
  #, php-format
4733
  msgid "The controller %s file not exist."
4734
  msgstr ""
4735
 
4736
- #: photo-gallery.php:313
4737
  #, php-format
4738
  msgid "The view %s file not exist."
4739
  msgstr ""
4740
 
4741
- #: photo-gallery.php:329 photo-gallery.php:334
4742
  #, php-format
4743
  msgid "The %s class not exist."
4744
  msgstr ""
4745
 
4746
- #: photo-gallery.php:376 photo-gallery.php:409
4747
  msgid "Do you want to delete selected items?"
4748
  msgstr ""
4749
 
4750
- #: photo-gallery.php:377 photo-gallery.php:404
4751
  msgid "You must select at least one item."
4752
  msgstr ""
4753
 
4754
- #: photo-gallery.php:384 photo-gallery.php:1003
 
 
 
 
4755
  msgid "field is required."
4756
  msgstr ""
4757
 
4758
- #: photo-gallery.php:385
4759
  msgid "You must select an image file."
4760
  msgstr ""
4761
 
4762
- #: photo-gallery.php:386
4763
  msgid "You must select an audio file."
4764
  msgstr ""
4765
 
4766
- #: photo-gallery.php:387
4767
  msgid ""
4768
  "You do not have Instagram access token. Sign in with Instagram in Options -> "
4769
- "Advanced tab. "
4770
  msgstr ""
4771
 
4772
- #: photo-gallery.php:388
4773
  msgid ""
4774
  "You do not have Instagram CLIENT_ID. Input its value in Options->Embed "
4775
  "options."
4776
  msgstr ""
4777
 
4778
- #: photo-gallery.php:389
4779
  msgid "Instagram recent post number must be between 1 and 33."
4780
  msgstr ""
4781
 
4782
- #: photo-gallery.php:390
4783
- msgid "The gallery is not empty. Please delete all the images first."
 
 
4784
  msgstr ""
4785
 
4786
- #: photo-gallery.php:391
4787
  msgid "Please enter url to embed."
4788
  msgstr ""
4789
 
4790
- #: photo-gallery.php:392
4791
  msgid "Error: cannot get response from the server."
4792
  msgstr ""
4793
 
4794
- #: photo-gallery.php:393
4795
  msgid "Error: something wrong happened at the server."
4796
  msgstr ""
4797
 
4798
- #: photo-gallery.php:394
4799
  msgid "Error"
4800
  msgstr ""
4801
 
4802
- #: photo-gallery.php:396
4803
  msgid "Hide order column"
4804
  msgstr ""
4805
 
4806
- #: photo-gallery.php:397
4807
- msgid "Selected"
 
 
 
 
 
 
4808
  msgstr ""
4809
 
4810
- #: photo-gallery.php:399
4811
  msgid "Items Succesfully Saved."
4812
  msgstr ""
4813
 
4814
- #: photo-gallery.php:400
4815
  msgid "Item Succesfully Recovered."
4816
  msgstr ""
4817
 
4818
- #: photo-gallery.php:401
4819
  msgid "Item Succesfully Published."
4820
  msgstr ""
4821
 
4822
- #: photo-gallery.php:402
4823
  msgid "Item Succesfully Unpublished."
4824
  msgstr ""
4825
 
4826
- #: photo-gallery.php:403
4827
  msgid "Item Succesfully Deleted."
4828
  msgstr ""
4829
 
4830
- #: photo-gallery.php:405
4831
  msgid "Items Succesfully resized."
4832
  msgstr ""
4833
 
4834
- #: photo-gallery.php:406
4835
  msgid "Watermarks Succesfully Set."
4836
  msgstr ""
4837
 
4838
- #: photo-gallery.php:407
4839
  msgid "Items Succesfully Reset."
4840
  msgstr ""
4841
 
4842
- #: photo-gallery.php:408
4843
  msgid "Save Tag"
4844
  msgstr ""
4845
 
4846
- #: photo-gallery.php:410 photo-gallery.php:412
4847
  msgid ""
4848
  "This action will reset gallery type to mixed and will save that choice. You "
4849
  "cannot undo it."
4850
  msgstr ""
4851
 
4852
- #: photo-gallery.php:411
4853
  msgid ""
4854
  "After pressing save/apply buttons, you cannot change gallery type back to "
4855
  "Instagram!"
4856
  msgstr ""
4857
 
4858
- #: photo-gallery.php:413
4859
  msgid "Insert"
4860
  msgstr ""
4861
 
4862
- #: photo-gallery.php:414
4863
  msgid "Failed to import images from media library"
4864
  msgstr ""
4865
 
4866
- #: photo-gallery.php:710
 
 
 
 
 
 
 
 
 
 
 
 
4867
  msgid "Insert Photo Gallery"
4868
  msgstr ""
4869
 
4870
- #: photo-gallery.php:712
4871
  msgid "Add Photo Gallery"
4872
  msgstr ""
4873
 
4874
- #: photo-gallery.php:1008
 
 
 
 
 
 
 
 
4875
  msgid "Select Tag"
4876
  msgstr ""
4877
 
4878
- #: photo-gallery.php:1177
4879
- #, php-format
4880
- msgid "This section allows you to %s."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4881
  msgstr ""
4882
 
4883
- #: photo-gallery.php:1179
4884
- msgid "Read More in User Manual"
4885
  msgstr ""
4886
 
4887
- #: photo-gallery.php:1185
4888
- msgid "Upgrade to paid version"
4889
  msgstr ""
4890
 
4891
- #: photo-gallery.php:1196 photo-gallery.php:1640
4892
- #: wd/templates/display_overview_user_guide.php:33
4893
- msgid "Support Forum"
 
 
 
 
 
 
 
 
 
 
 
4894
  msgstr ""
4895
 
4896
- #: photo-gallery.php:1224
4897
  msgid ""
4898
  "Photo Gallery is a fully responsive gallery plugin with advanced "
4899
  "functionality. It allows having different image galleries for your posts and "
@@ -4901,11 +5948,11 @@ msgid ""
4901
  "gallery groups, and provide descriptions and tags."
4902
  msgstr ""
4903
 
4904
- #: photo-gallery.php:1228
4905
  msgid "Easy Set-up and Management"
4906
  msgstr ""
4907
 
4908
- #: photo-gallery.php:1229
4909
  msgid ""
4910
  "Create stunning, 100% responsive, SEO-friendly photo galleries in minutes. "
4911
  "Use the File Manager with single-step and easy-to-manage functionality to "
@@ -4913,11 +5960,11 @@ msgid ""
4913
  "use WordPress built in media uploader."
4914
  msgstr ""
4915
 
4916
- #: photo-gallery.php:1232
4917
  msgid "Unlimited Photos and Albums"
4918
  msgstr ""
4919
 
4920
- #: photo-gallery.php:1233
4921
  msgid ""
4922
  "The plugin allows creating unlimited number of galleries or gallery groups "
4923
  "and upload images in each gallery as many as you wish. Add single/ multiple "
@@ -4925,11 +5972,11 @@ msgid ""
4925
  "visual shortcodes for an easier management."
4926
  msgstr ""
4927
 
4928
- #: photo-gallery.php:1236
4929
  msgid "Customizable"
4930
  msgstr ""
4931
 
4932
- #: photo-gallery.php:1237
4933
  msgid ""
4934
  "The gallery plugin is easily customizable. You can edit themes changing "
4935
  "sizes and colors for different features. Specify the number of images to "
@@ -4937,11 +5984,11 @@ msgid ""
4937
  "thumbnail images by cropping, flipping and rotating them."
4938
  msgstr ""
4939
 
4940
- #: photo-gallery.php:1240
4941
  msgid "10 View Options"
4942
  msgstr ""
4943
 
4944
- #: photo-gallery.php:1241
4945
  msgid ""
4946
  "Photo Gallery plugin allows displaying galleries and gallery groups in 10 "
4947
  "elegant and beautiful views:, Thumbnails, Masonry, Mosaic, Slideshow, Image "
@@ -4949,209 +5996,173 @@ msgid ""
4949
  "Ecommerce."
4950
  msgstr ""
4951
 
4952
- #: photo-gallery.php:1244
4953
  msgid "Audio and Video Support"
4954
  msgstr ""
4955
 
4956
- #: photo-gallery.php:1245
4957
  msgid ""
4958
  "You can include both videos and images within a single gallery. WordPress "
4959
  "Photo Gallery Plugin supports YouTube and Vimeo videos within Galleries. "
4960
- "Its also possible to add audio tracks for the image slideshow."
4961
  msgstr ""
4962
 
4963
- #: photo-gallery.php:1251
4964
  msgid "Installing"
4965
  msgstr ""
4966
 
4967
- #: photo-gallery.php:1256
4968
  msgid "Creating/Editing Galleries"
4969
  msgstr ""
4970
 
4971
- #: photo-gallery.php:1260
4972
  msgid "Instagram Gallery"
4973
  msgstr ""
4974
 
4975
- #: photo-gallery.php:1266
4976
  msgid "Creating/Editing Tags"
4977
  msgstr ""
4978
 
4979
- #: photo-gallery.php:1271
4980
  msgid "Creating/Editing Albums"
4981
  msgstr ""
4982
 
4983
- #: photo-gallery.php:1276
4984
  msgid "Editing Options"
4985
  msgstr ""
4986
 
4987
- #: photo-gallery.php:1280
4988
  msgid "Global Options"
4989
  msgstr ""
4990
 
4991
- #: photo-gallery.php:1296
4992
  msgid "Album Options"
4993
  msgstr ""
4994
 
4995
- #: photo-gallery.php:1304
4996
  msgid "Thumbnail Options"
4997
  msgstr ""
4998
 
4999
- #: photo-gallery.php:1308
5000
  msgid "Image Options"
5001
  msgstr ""
5002
 
5003
- #: photo-gallery.php:1312
5004
  msgid "Social Options"
5005
  msgstr ""
5006
 
5007
- #: photo-gallery.php:1316
5008
  msgid "Carousel Options"
5009
  msgstr ""
5010
 
5011
- #: photo-gallery.php:1322
5012
  msgid "Creating/Editing Themes"
5013
  msgstr ""
5014
 
5015
- #: photo-gallery.php:1346
5016
  msgid "Compact Album"
5017
  msgstr ""
5018
 
5019
- #: photo-gallery.php:1350
5020
  msgid "Masonry Album"
5021
  msgstr ""
5022
 
5023
- #: photo-gallery.php:1354
5024
  msgid "Extended Album"
5025
  msgstr ""
5026
 
5027
- #: photo-gallery.php:1366
5028
  msgid "Page Navigation"
5029
  msgstr ""
5030
 
5031
- #: photo-gallery.php:1376
5032
  msgid "Generating Shortcode"
5033
  msgstr ""
5034
 
5035
- #: photo-gallery.php:1381
5036
  #, fuzzy
5037
  #| msgid "Hide Comments"
5038
  msgid "Editing Comments"
5039
  msgstr "Steek kommentaar"
5040
 
5041
- #: photo-gallery.php:1386
5042
  msgid "Editing Ratings"
5043
  msgstr ""
5044
 
5045
- #: photo-gallery.php:1391
5046
  msgid "Publishing the Created Photo Gallery"
5047
  msgstr ""
5048
 
5049
- #: photo-gallery.php:1395
5050
  msgid "General Parameters"
5051
  msgstr ""
5052
 
5053
- #: photo-gallery.php:1399
5054
  msgid "Lightbox Parameters"
5055
  msgstr ""
5056
 
5057
- #: photo-gallery.php:1409
5058
  msgid "Publishing Photo Gallery Widgets"
5059
  msgstr ""
5060
 
5061
- #: photo-gallery.php:1413
5062
  msgid "Tag Cloud"
5063
  msgstr ""
5064
 
5065
- #: photo-gallery.php:1425
5066
  msgid "Photo Gallery Widget"
5067
  msgstr ""
5068
 
5069
- #: photo-gallery.php:1492
5070
  msgid "Albums"
5071
  msgstr ""
5072
 
5073
- #: photo-gallery.php:1506
5074
  #, fuzzy
5075
  #| msgid "Gallery is empty."
5076
  msgid "Gallery tags"
5077
  msgstr "Gallery is leeg."
5078
 
5079
- #: photo-gallery.php:1555
5080
  msgid "Photo gallery plugin autoupdate interval."
5081
  msgstr "Photo gallery plugin autoupdate interval."
5082
 
5083
- #: photo-gallery.php:1598
5084
  #, php-format
5085
  msgid "Please update the %s add-on to start using."
5086
  msgstr ""
5087
 
5088
- #: photo-gallery.php:1599
5089
  #, php-format
5090
  msgid "Please update the %s add-ons to start using."
5091
  msgstr ""
5092
 
5093
- #: photo-gallery.php:1641
5094
  #, fuzzy
5095
  #| msgid "Rated."
5096
  msgid "Rate"
5097
  msgstr "Gegradeer."
5098
 
5099
- #: photo-gallery.php:1716
5100
  #, php-format
5101
  msgid ""
5102
- "%s advises: Install brand new %s plugin to optimize your website images "
5103
- "quickly and easily."
5104
- msgstr ""
5105
-
5106
- #: photo-gallery.php:1716
5107
- msgid "More details"
5108
- msgstr ""
5109
-
5110
- #: photo-gallery.php:1716
5111
- msgid "Image Optimizer WD"
5112
  msgstr ""
5113
 
5114
- #: photo-gallery.php:1721
5115
- msgid "Activate"
5116
- msgstr ""
5117
-
5118
- #: photo-gallery.php:1722 photo-gallery.php:1729
5119
- msgid "Optimize now"
5120
- msgstr ""
5121
-
5122
- #: photo-gallery.php:1723
5123
- msgid "Activation failed, please try again."
5124
- msgstr ""
5125
-
5126
- #: photo-gallery.php:1727
5127
- msgid "Install"
5128
- msgstr ""
5129
-
5130
- #: photo-gallery.php:1728
5131
- msgid "Activation"
5132
- msgstr ""
5133
-
5134
- #: photo-gallery.php:1730
5135
- msgid "Installation failed, please try again."
5136
- msgstr ""
5137
-
5138
- #: wd/includes/deactivate.php:35
5139
  msgid "Technical problems / hard to use"
5140
  msgstr ""
5141
 
5142
- #: wd/includes/deactivate.php:39
5143
  msgid "Free version is limited"
5144
  msgstr ""
5145
 
5146
- #: wd/includes/deactivate.php:43
5147
- msgid "Premium is expensive"
5148
- msgstr ""
5149
-
5150
- #: wd/includes/deactivate.php:47
5151
  msgid "Upgrading to paid version"
5152
  msgstr ""
5153
 
5154
- #: wd/includes/deactivate.php:51
5155
  msgid "Temporary deactivation"
5156
  msgstr ""
5157
 
@@ -5182,288 +6193,243 @@ msgstr ""
5182
  msgid "Never show again"
5183
  msgstr ""
5184
 
5185
- #: wd/includes/overview.php:27
5186
- msgid "Welcome"
 
 
5187
  msgstr ""
5188
 
5189
- #: wd/includes/overview.php:31
5190
- msgid "User Guide"
5191
  msgstr ""
5192
 
5193
- #: wd/includes/overview.php:35
5194
- msgid "Deals"
5195
  msgstr ""
5196
 
5197
- #: wd/includes/overview.php:39
5198
- msgid "Support"
 
5199
  msgstr ""
5200
 
5201
- #: wd/includes/overview.php:43
5202
- msgid "Submit Your Idea"
5203
  msgstr ""
5204
 
5205
- #: wd/includes/overview.php:47
5206
- msgid "Forum"
5207
  msgstr ""
5208
 
5209
- #: wd/includes/overview.php:79
5210
- msgid "Wordpress form builder plugin"
5211
  msgstr ""
5212
 
5213
- #: wd/includes/overview.php:80
5214
  msgid ""
5215
- "Form Maker is a modern and advanced tool for creating WordPress forms easily "
5216
- "and fast."
5217
  msgstr ""
5218
 
5219
- #: wd/includes/overview.php:85
5220
- msgid "WordPress Photo Gallery plugin"
5221
  msgstr ""
5222
 
5223
- #: wd/includes/overview.php:86
5224
  msgid ""
5225
- "Photo Gallery is a fully responsive WordPress Gallery plugin with advanced "
5226
- "functionality."
5227
  msgstr ""
5228
 
5229
- #: wd/includes/overview.php:91
5230
- msgid "WordPress calendar plugin"
5231
  msgstr ""
5232
 
5233
- #: wd/includes/overview.php:92
5234
  msgid ""
5235
- "Organize and publish your events in an easy and elegant way using Event "
5236
- "Calendar WD."
5237
  msgstr ""
5238
 
5239
- #: wd/includes/overview.php:97
5240
- msgid "WD Google Maps plugin"
5241
- msgstr ""
 
 
5242
 
5243
- #: wd/includes/overview.php:98
5244
  msgid ""
5245
- "Google Maps WD is an intuitive tool for creating Google maps with advanced "
5246
- "markers, custom layers and overlays for your website."
5247
  msgstr ""
5248
 
5249
- #: wd/includes/overview.php:103
5250
- msgid "WordPress slider plugin"
5251
  msgstr ""
5252
 
5253
- #: wd/includes/overview.php:104
5254
  msgid ""
5255
- "Create responsive, highly configurable sliders with various effects for your "
5256
- "WordPress site."
5257
  msgstr ""
5258
 
5259
- #: wd/includes/overview.php:109
5260
- msgid "WordPress event calendar plugin"
5261
  msgstr ""
5262
 
5263
- #: wd/includes/overview.php:110
5264
  msgid ""
5265
- "Spider Event Calendar is a highly configurable product which allows you to "
5266
- "have multiple organized events."
5267
  msgstr ""
5268
 
5269
- #: wd/includes/overview.php:115
5270
- msgid "WordPress Instagram Feed plugin"
5271
  msgstr ""
5272
 
5273
- #: wd/includes/overview.php:116
5274
  msgid ""
5275
- "WD Instagram Feed is a user-friendly tool for displaying user or hashtag-"
5276
- "based feeds on your website."
5277
- msgstr ""
5278
-
5279
- #: wd/includes/overview.php:169
5280
- msgid "Not set"
5281
- msgstr ""
5282
-
5283
- #: wd/includes/overview.php:174
5284
- msgid "On"
5285
- msgstr ""
5286
-
5287
- #: wd/includes/overview.php:176
5288
- msgid "Off"
5289
- msgstr ""
5290
-
5291
- #: wd/includes/overview.php:185 wd/includes/overview.php:193
5292
- #: wd/includes/overview.php:200 wd/includes/overview.php:207
5293
- #: wd/includes/overview.php:215 wd/includes/overview.php:222
5294
- msgid "N/A"
5295
  msgstr ""
5296
 
5297
- #: wd/includes/overview.php:220
5298
- msgid " MByte"
5299
  msgstr ""
5300
 
5301
- #: wd/includes/subscribe.php:43
5302
- msgid "Your name &"
 
 
5303
  msgstr ""
5304
 
5305
- #: wd/includes/subscribe.php:44
5306
- msgid "Email address"
5307
  msgstr ""
5308
 
5309
- #: wd/includes/subscribe.php:48
5310
- msgid "Site URL"
5311
- msgstr ""
 
 
5312
 
5313
- #: wd/includes/subscribe.php:49
5314
- msgid "Wordpress version"
5315
  msgstr ""
5316
 
5317
- #: wd/includes/subscribe.php:53
5318
- msgid "List of plugins"
5319
  msgstr ""
5320
 
5321
- #: wd/templates/display_deactivation_popup.php:8
5322
- msgid ""
5323
- "Please let us know why you are deactivating. Your answer will help us to "
5324
- "serve you better"
5325
  msgstr ""
5326
 
5327
- #: wd/templates/display_deactivation_popup.php:21
5328
- msgid "Deactivate"
5329
  msgstr ""
5330
 
5331
- #: wd/templates/display_deactivation_popup.php:22
5332
- msgid "Submit and deactivate"
5333
  msgstr ""
5334
 
5335
- #: wd/templates/display_overview.php:6
5336
- #, php-format
5337
- msgid "Welcome to %s"
5338
  msgstr ""
5339
 
5340
- #: wd/templates/display_overview.php:8
5341
- #, php-format
5342
- msgid "CONGRATS! You've successfully installed %s WordPress plugin."
5343
  msgstr ""
5344
 
5345
- #: wd/templates/display_overview_deals.php:12
5346
  #, php-format
5347
- msgid "Get %s"
5348
- msgstr ""
5349
-
5350
- #: wd/templates/display_overview_deals.php:13
5351
- msgid "plugins"
5352
- msgstr ""
5353
-
5354
- #: wd/templates/display_overview_deals.php:14
5355
- #: wd/templates/display_overview_deals.php:58
5356
- msgid "for"
5357
- msgstr ""
5358
-
5359
- #: wd/templates/display_overview_deals.php:14
5360
- #: wd/templates/display_overview_deals.php:58
5361
- msgid "only"
5362
- msgstr ""
5363
-
5364
- #: wd/templates/display_overview_deals.php:16
5365
- msgid "Save 80%"
5366
  msgstr ""
5367
 
5368
- #: wd/templates/display_overview_deals.php:35
5369
- msgid "Download"
5370
  msgstr ""
5371
 
5372
- #: wd/templates/display_overview_deals.php:45
5373
- msgid "Get all plugins"
5374
  msgstr ""
5375
 
5376
- #: wd/templates/display_overview_deals.php:57
5377
- msgid "Get all 11 themes"
5378
  msgstr ""
5379
 
5380
- #: wd/templates/display_overview_deals.php:60
5381
- msgid "Save 70%"
5382
  msgstr ""
5383
 
5384
- #: wd/templates/display_overview_deals.php:77
5385
- msgid "Find out more"
5386
  msgstr ""
5387
 
5388
- #: wd/templates/display_overview_support.php:3
5389
- #, php-format
5390
  msgid ""
5391
- "You may contact us by filling in this form or by email %s any time you need "
5392
- "professional support or have any questions. You can also fill in the form to "
5393
- "leave your comments or feedback."
5394
- msgstr ""
5395
-
5396
- #: wd/templates/display_overview_support.php:6
5397
- msgid "Site Details"
5398
  msgstr ""
5399
 
5400
- #: wd/templates/display_overview_support.php:8
5401
- msgid ""
5402
- "When contacting support, consider copying and pasting this information in "
5403
- "your support request."
5404
  msgstr ""
5405
 
5406
- #: wd/templates/display_overview_support.php:10
5407
- msgid "It helps us troubleshoot more quickly."
5408
  msgstr ""
5409
 
5410
- #: wd/templates/display_overview_support.php:17
5411
- msgid "Copy to Clipboard"
5412
- msgstr ""
 
5413
 
5414
- #: wd/templates/display_overview_support.php:20
5415
- msgid "Server Settings"
5416
- msgstr ""
 
5417
 
5418
- #: wd/templates/display_overview_support.php:26
5419
- msgid "Graphic Library"
5420
- msgstr ""
 
5421
 
5422
- #: wd/templates/display_overview_user_guide.php:26
5423
- msgid "Demo"
5424
- msgstr ""
 
5425
 
5426
- #: wd/templates/display_overview_user_guide.php:36
5427
- msgid "FAQ"
5428
- msgstr ""
 
5429
 
5430
- #: wd/templates/display_overview_user_guide.php:40
5431
- msgid "Addons"
5432
- msgstr ""
5433
 
5434
- #: wd/templates/display_overview_welcome.php:18
5435
- msgid "Run Install Wizard "
5436
- msgstr ""
5437
 
5438
- #: wd/templates/display_overview_welcome.php:26
5439
- msgid "More features"
5440
- msgstr ""
5441
 
5442
- #: wd/templates/display_subscribe.php:9
5443
- msgid "Hi there"
5444
- msgstr ""
5445
 
5446
- #: wd/templates/display_subscribe.php:11
5447
- #, php-format
5448
- msgid ""
5449
- "Allow %s to collect some usage data. This will allow you to get more out of "
5450
- "your plugin experience - get awesome customer support, receive exclusive "
5451
- "deals and discounts on premium products and more. You can choose to skip "
5452
- "this step, %s will still work just fine."
5453
- msgstr ""
5454
 
5455
- #: wd/templates/display_subscribe.php:19
5456
- msgid "What data is being collected?"
5457
- msgstr ""
5458
 
5459
- #: wd/templates/display_subscribe.php:36
5460
- msgid "Privacy Policy"
5461
- msgstr ""
5462
 
5463
- #: wd/templates/display_subscribe.php:42
5464
- msgid "Terms of Use"
5465
- msgstr ""
5466
 
5467
- #: wd/wd.php:72
5468
- msgid "Overview"
5469
- msgstr ""
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: bwg\n"
4
+ "POT-Creation-Date: 2019-11-06 12:40+0400\n"
5
+ "PO-Revision-Date: 2019-11-06 12:40+0400\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: af\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 2.2.4\n"
13
  "X-Poedit-Basepath: ..\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
  "X-Poedit-KeywordsList: __;_e;_x\n"
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
  msgstr ""
103
 
104
  #: admin/controllers/Albums.php:50 admin/controllers/Comments.php:48
105
+ #: admin/controllers/Galleries.php:42 admin/controllers/Ratings.php:41
106
+ #: admin/controllers/Themes.php:43 admin/views/Albums.php:113
107
+ #: admin/views/Comments.php:112 admin/views/Galleries.php:119
108
+ #: admin/views/Galleries.php:738 admin/views/Ratings.php:84
109
+ #: admin/views/Themes.php:106 framework/WDWLibrary.php:2485
110
  #, fuzzy
111
  #| msgid "Delete Comment"
112
  msgid "Delete"
113
  msgstr "Verwyder Kommentaar"
114
 
115
  #: admin/controllers/Albums.php:51 admin/controllers/Comments.php:49
116
+ #: admin/controllers/Galleries.php:43 admin/controllers/Ratings.php:42
117
+ #: admin/controllers/Themes.php:44 framework/WDWLibrary.php:2486
118
  msgid "deleted"
119
  msgstr ""
120
 
121
+ #: admin/controllers/Albums.php:95 photo-gallery.php:464
122
  msgid "Gallery Groups"
123
  msgstr ""
124
 
126
  msgid "Galleries / Gallery groups"
127
  msgstr ""
128
 
129
+ #: admin/controllers/Comments.php:91 photo-gallery.php:475
130
  #, fuzzy
131
  #| msgid "Comment"
132
  msgid "Comments"
133
  msgstr "Kommentaar lewer nie"
134
 
135
+ #: admin/controllers/Comments.php:127 admin/controllers/Ratings.php:133
136
  msgid "Filter by gallery"
137
  msgstr ""
138
 
139
+ #: admin/controllers/Comments.php:131 admin/controllers/Ratings.php:137
140
  msgid "Filter by image"
141
  msgstr ""
142
 
143
+ #: admin/controllers/Galleries.php:93 photo-gallery.php:1740
144
+ #, fuzzy
145
+ #| msgid "Gallery is empty."
146
+ msgid "Galleries"
147
+ msgstr "Gallery is leeg."
 
 
 
 
 
 
148
 
149
+ #: admin/controllers/Galleries.php:343
150
+ msgid "Mixed"
151
  msgstr ""
152
 
153
+ #: admin/controllers/Galleries.php:343
154
+ msgid "Instagram only"
155
  msgstr ""
156
 
157
+ #: admin/controllers/Galleries.php:345 admin/views/Options.php:581
158
  #, fuzzy
159
+ #| msgid "Share on Facebook"
160
+ msgid "Facebook"
161
+ msgstr "Deel op Facebook"
162
 
163
+ #: admin/controllers/Options.php:48
164
+ msgid "Edit options"
165
  msgstr ""
166
 
167
+ #: admin/controllers/Options.php:53 admin/controllers/Shortcode.php:40
168
+ #: admin/views/Options.php:375 admin/views/Shortcode.php:68
169
+ #: admin/views/Shortcode.php:430 photo-gallery.php:1585
170
+ msgid "Thumbnails"
171
  msgstr ""
172
 
173
+ #: admin/controllers/Options.php:54 admin/controllers/Options.php:63
174
+ #: admin/controllers/Shortcode.php:41 admin/controllers/Shortcode.php:50
175
+ #: admin/controllers/Themes.php:263 admin/views/Options.php:383
176
+ #: admin/views/Options.php:473 admin/views/Options.php:2681
177
+ #: admin/views/Options.php:3220 admin/views/Shortcode.php:76
178
+ #: admin/views/Shortcode.php:146 admin/views/Widget.php:139
179
+ #: photo-gallery.php:1589
180
+ msgid "Masonry"
181
  msgstr ""
182
 
183
+ #: admin/controllers/Options.php:55 admin/controllers/Shortcode.php:42
184
+ #: admin/controllers/Themes.php:264 admin/views/Options.php:392
185
+ #: admin/views/Options.php:2682 admin/views/Options.php:3221
186
+ #: admin/views/Shortcode.php:85 photo-gallery.php:1593
187
+ msgid "Mosaic"
188
  msgstr ""
189
 
190
+ #: admin/controllers/Options.php:56 admin/controllers/Shortcode.php:43
191
+ #: admin/controllers/Themes.php:265 admin/views/Options.php:401
192
+ #: admin/views/Options.php:2683 admin/views/Options.php:3222
193
+ #: admin/views/Shortcode.php:94 photo-gallery.php:1559 photo-gallery.php:1597
194
+ msgid "Slideshow"
 
 
 
 
 
 
 
 
 
 
 
 
195
  msgstr ""
196
 
197
+ #: admin/controllers/Options.php:57 admin/controllers/Shortcode.php:44
198
+ #: admin/views/Options.php:407 admin/views/Options.php:2684
199
+ #: admin/views/Options.php:3223 admin/views/Shortcode.php:100
200
+ #: photo-gallery.php:1601
201
+ msgid "Image Browser"
202
  msgstr ""
203
 
204
+ #: admin/controllers/Options.php:58 admin/controllers/Shortcode.php:45
205
+ #: admin/views/Options.php:413 admin/views/Options.php:2685
206
+ #: admin/views/Options.php:3224 admin/views/Shortcode.php:106
207
+ #: photo-gallery.php:1617
208
+ msgid "Blog Style"
 
 
 
209
  msgstr ""
210
 
211
+ #: admin/controllers/Options.php:59 admin/controllers/Shortcode.php:46
212
+ #: admin/controllers/Themes.php:273 admin/views/Options.php:422
213
+ #: admin/views/Options.php:2686 admin/views/Options.php:3225
214
+ #: admin/views/Shortcode.php:115 photo-gallery.php:1629
215
+ msgid "Carousel"
216
  msgstr ""
217
 
218
+ #: admin/controllers/Options.php:62 admin/controllers/Shortcode.php:49
219
+ #: admin/views/Options.php:467 admin/views/Shortcode.php:140
220
+ msgid "Compact"
 
221
  msgstr ""
222
 
223
+ #: admin/controllers/Options.php:64 admin/controllers/Shortcode.php:51
224
+ #: admin/views/Options.php:482 admin/views/Shortcode.php:155
225
+ msgid "Extended"
226
  msgstr ""
227
 
228
+ #: admin/controllers/Options.php:130
229
  msgid "Default values restored. Changes must be saved."
230
  msgstr ""
231
 
232
+ #: admin/controllers/Options.php:162
233
  msgid "Uploads directory doesn't exist. Old value is restored."
234
  msgstr ""
235
 
236
+ #: admin/controllers/Options.php:165
237
  msgid ""
238
  "Warning: \"photo-gallery\" folder already exists in uploads directory. Old "
239
  "value is restored."
240
  msgstr ""
241
 
242
+ #: admin/controllers/Options.php:195
243
  msgid "All thumbnails are successfully recreated."
244
  msgstr ""
245
 
246
+ #: admin/controllers/Options.php:208
247
+ msgid "Item Succesfully Saved."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
248
  msgstr ""
249
 
250
+ #: admin/controllers/Options.php:248 framework/WDWLibrary.php:218
251
+ msgid ""
252
+ "http:// wrapper is disabled in the server configuration by allow_url_fopen=0."
253
  msgstr ""
254
 
255
+ #: admin/controllers/Options.php:254 framework/WDWLibrary.php:213
256
+ msgid "Watermark could not be set. The image URL is incorrect."
 
 
257
  msgstr ""
258
 
259
+ #: admin/controllers/Options.php:258
260
+ msgid "All images are successfully watermarked."
261
  msgstr ""
262
 
263
+ #: admin/controllers/Ratings.php:86 photo-gallery.php:478
264
+ msgid "Ratings"
265
  msgstr ""
266
 
267
  #: admin/controllers/Themes.php:40
268
  msgid "duplicated"
269
  msgstr ""
270
 
271
+ #: admin/controllers/Themes.php:88 photo-gallery.php:471
272
  msgid "Themes"
273
  msgstr ""
274
 
275
+ #: admin/controllers/Themes.php:262 admin/views/Options.php:2680
276
+ #: admin/views/Options.php:3219 admin/views/Widget.php:138
 
277
  msgid "Thumbnail"
278
  msgstr ""
279
 
280
+ #: admin/controllers/Themes.php:266
281
  msgid "Image browser"
282
  msgstr ""
283
 
284
+ #: admin/controllers/Themes.php:267
285
  msgid "Compact album"
286
  msgstr ""
287
 
288
+ #: admin/controllers/Themes.php:268
289
  msgid "Masonry album"
290
  msgstr ""
291
 
292
+ #: admin/controllers/Themes.php:269
293
  msgid "Extended album"
294
  msgstr ""
295
 
296
+ #: admin/controllers/Themes.php:270
297
  msgid "Blog style"
298
  msgstr ""
299
 
300
+ #: admin/controllers/Themes.php:271 admin/views/WidgetTags.php:96
301
+ #: photo-gallery.php:1551 photo-gallery.php:1621
 
302
  msgid "Lightbox"
303
  msgstr ""
304
 
305
+ #: admin/controllers/Themes.php:272
306
  msgid "Navigation"
307
  msgstr ""
308
 
309
+ #: admin/controllers/Themes.php:277 admin/controllers/Themes.php:316
310
+ #: admin/controllers/Themes.php:323 admin/controllers/WidgetSlideshow.php:44
311
+ #: admin/views/Options.php:677 admin/views/Options.php:830
312
+ #: admin/views/Options.php:1060 admin/views/Options.php:1108
313
+ #: admin/views/Options.php:1326 admin/views/Options.php:1562
314
+ #: admin/views/Options.php:2156 admin/views/Shortcode.php:299
315
+ msgid "None"
316
+ msgstr ""
317
+
318
+ #: admin/controllers/Themes.php:278
319
  msgid "Solid"
320
  msgstr ""
321
 
322
+ #: admin/controllers/Themes.php:279
323
  msgid "Dotted"
324
  msgstr ""
325
 
326
+ #: admin/controllers/Themes.php:280
327
  msgid "Dashed"
328
  msgstr ""
329
 
330
+ #: admin/controllers/Themes.php:281 admin/controllers/Themes.php:333
331
  msgid "Double"
332
  msgstr ""
333
 
334
+ #: admin/controllers/Themes.php:282
335
  msgid "Groove"
336
  msgstr ""
337
 
338
+ #: admin/controllers/Themes.php:283
339
  msgid "Ridge"
340
  msgstr ""
341
 
342
+ #: admin/controllers/Themes.php:284
343
  msgid "Inset"
344
  msgstr ""
345
 
346
+ #: admin/controllers/Themes.php:285
347
  msgid "Outset"
348
  msgstr ""
349
 
350
+ #: admin/controllers/Themes.php:303 admin/views/Themes.php:1278
351
+ #: admin/views/Themes.php:3903 admin/views/Themes.php:4385
352
  msgid "Left"
353
  msgstr ""
354
 
355
+ #: admin/controllers/Themes.php:304
356
  msgid "Center"
357
  msgstr ""
358
 
359
+ #: admin/controllers/Themes.php:305 admin/views/Themes.php:1276
360
+ #: admin/views/Themes.php:3901 admin/views/Themes.php:4387
361
  msgid "Right"
362
  msgstr ""
363
 
364
+ #: admin/controllers/Themes.php:309
365
  msgid "Lighter"
366
  msgstr ""
367
 
368
+ #: admin/controllers/Themes.php:310
369
  msgid "Normal"
370
  msgstr ""
371
 
372
+ #: admin/controllers/Themes.php:311
373
  msgid "Bold"
374
  msgstr ""
375
 
376
+ #: admin/controllers/Themes.php:317 admin/controllers/Themes.php:324
377
  msgid "Rotate"
378
  msgstr ""
379
 
380
+ #: admin/controllers/Themes.php:318 admin/controllers/Themes.php:325
381
  msgid "Scale"
382
  msgstr ""
383
 
384
+ #: admin/controllers/Themes.php:319 admin/controllers/Themes.php:327
385
  msgid "Skew"
386
  msgstr ""
387
 
388
+ #: admin/controllers/Themes.php:326
389
+ msgid "Zoom"
390
  msgstr ""
391
 
392
+ #: admin/controllers/Themes.php:331
393
  msgid "Angle"
394
  msgstr ""
395
 
396
+ #: admin/controllers/Themes.php:332
397
+ msgid "Chevron"
398
+ msgstr ""
399
+
400
+ #: admin/controllers/Themes.php:337
401
  msgid "Star"
402
  msgstr ""
403
 
404
+ #: admin/controllers/Themes.php:338
405
  msgid "Bell"
406
  msgstr ""
407
 
408
+ #: admin/controllers/Themes.php:339
409
  msgid "Circle"
410
  msgstr ""
411
 
412
+ #: admin/controllers/Themes.php:340
413
  msgid "Flag"
414
  msgstr ""
415
 
416
+ #: admin/controllers/Themes.php:341
417
  msgid "Heart"
418
  msgstr ""
419
 
420
+ #: admin/controllers/Themes.php:342
421
  msgid "Square"
422
  msgstr ""
423
 
424
+ #: admin/controllers/Uninstall.php:59 admin/controllers/Uninstall.php:100
425
+ #: admin/views/Options.php:351
426
  #, php-format
427
  msgid "Uninstall %s"
428
  msgstr ""
435
  msgid "Add Photo Gallery slideshow to Your widget area."
436
  msgstr ""
437
 
438
+ #: admin/controllers/WidgetSlideshow.php:45 admin/views/Options.php:1061
439
+ msgid "Cube Horizontal"
440
+ msgstr ""
441
+
442
+ #: admin/controllers/WidgetSlideshow.php:46 admin/views/Options.php:1062
443
+ msgid "Cube Vertical"
444
+ msgstr ""
445
+
446
+ #: admin/controllers/WidgetSlideshow.php:47 admin/views/Options.php:1063
447
+ msgid "Fade"
448
+ msgstr ""
449
+
450
+ #: admin/controllers/WidgetSlideshow.php:48 admin/views/Options.php:1064
451
+ msgid "Slice Horizontal"
452
+ msgstr ""
453
+
454
+ #: admin/controllers/WidgetSlideshow.php:49 admin/views/Options.php:1065
455
+ msgid "Slice Vertical"
456
+ msgstr ""
457
+
458
+ #: admin/controllers/WidgetSlideshow.php:50 admin/views/Options.php:1066
459
+ msgid "Slide Horizontal"
460
+ msgstr ""
461
+
462
+ #: admin/controllers/WidgetSlideshow.php:51 admin/views/Options.php:1067
463
+ msgid "Slide Vertical"
464
+ msgstr ""
465
+
466
+ #: admin/controllers/WidgetSlideshow.php:52 admin/views/Options.php:1068
467
+ msgid "Scale Out"
468
+ msgstr ""
469
+
470
+ #: admin/controllers/WidgetSlideshow.php:53 admin/views/Options.php:1069
471
+ msgid "Scale In"
472
+ msgstr ""
473
+
474
+ #: admin/controllers/WidgetSlideshow.php:54 admin/views/Options.php:1070
475
+ msgid "Block Scale"
476
+ msgstr ""
477
+
478
+ #: admin/controllers/WidgetSlideshow.php:55 admin/views/Options.php:1071
479
+ msgid "Kaleidoscope"
480
+ msgstr ""
481
+
482
+ #: admin/controllers/WidgetSlideshow.php:56 admin/views/Options.php:1072
483
+ msgid "Fan"
484
+ msgstr ""
485
+
486
+ #: admin/controllers/WidgetSlideshow.php:57 admin/views/Options.php:1073
487
+ msgid "Blind Horizontal"
488
+ msgstr ""
489
+
490
+ #: admin/controllers/WidgetSlideshow.php:58 admin/views/Options.php:1074
491
+ msgid "Blind Vertical"
492
+ msgstr ""
493
+
494
+ #: admin/controllers/WidgetSlideshow.php:59 admin/views/Options.php:1075
495
+ #: admin/views/Options.php:1151 admin/views/Options.php:1369
496
+ #: admin/views/Options.php:1605 admin/views/Options.php:1802
497
+ #: admin/views/Options.php:2042 admin/views/Options.php:2201
498
+ #: admin/views/Options.php:2378 admin/views/Options.php:2563
499
+ #: admin/views/Options.php:2585 admin/views/Options.php:2863
500
+ #: admin/views/Options.php:2885 admin/views/Options.php:3103
501
+ #: admin/views/Options.php:3125 admin/views/Widget.php:159
502
+ #: frontend/views/view.php:433
503
+ msgid "Random"
504
+ msgstr "Random"
505
+
506
  #: admin/controllers/WidgetTags.php:14
507
  msgid "Add Photo Gallery Tags dynamic cloud to Your widget area."
508
  msgstr ""
509
 
510
+ #: admin/controllers/elementorWidget.php:36 admin/views/Albumsgalleries.php:119
511
+ #: admin/views/Shortcode.php:57 admin/views/Shortcode.php:186
512
+ #: admin/views/Shortcode.php:264 admin/views/Widget.php:120
513
+ msgid "Gallery"
514
+ msgstr ""
515
+
516
+ #: admin/controllers/elementorWidget.php:68 admin/views/Options.php:74
517
+ #: photo-gallery.php:417
518
+ msgid "General"
519
+ msgstr ""
520
+
521
+ #: admin/models/Comments.php:62 admin/models/Ratings.php:81
522
+ #: framework/WDWLibrary.php:2751
523
  msgid "All galleries"
524
  msgstr ""
525
 
526
+ #: admin/models/Comments.php:76 admin/models/Ratings.php:100
527
+ #: admin/views/Widget.php:126 framework/WDWLibrary.php:2732
528
  msgid "All images"
529
  msgstr ""
530
 
531
+ #: admin/models/Galleries.php:1220 admin/views/Galleries.php:760
532
+ msgid ""
533
+ "Selected pricelist item longest dimension greater than some original images "
534
+ "dimensions."
535
+ msgstr ""
536
+
537
+ #: admin/views/AddTags.php:66 admin/views/Albums.php:58
538
+ #: admin/views/Comments.php:65 admin/views/Themes.php:77 photo-gallery.php:1436
539
  msgid "Select all"
540
  msgstr ""
541
 
542
+ #: admin/views/AddTags.php:69 admin/views/AddTags.php:87
543
+ #: admin/views/Comments.php:69 admin/views/Comments.php:90
544
+ #: filemanager/view.php:135 frontend/views/BWGViewGalleryBox.php:994
545
+ #: frontend/views/BWGViewGalleryBox.php:1112
546
+ #: frontend/views/BWGViewGalleryBox.php:1226
 
 
 
 
547
  msgid "Name"
548
  msgstr "Noem"
549
 
550
+ #: admin/views/AddTags.php:108
551
+ #, fuzzy
552
+ #| msgid "Reset"
553
+ msgid "Remove from image"
554
+ msgstr "Herstel"
555
+
556
+ #: admin/views/AddTags.php:109
557
  msgid "Add to image"
558
  msgstr ""
559
 
560
+ #: admin/views/AdminView.php:95
561
  msgid "Add New"
562
  msgstr ""
563
 
564
+ #: admin/views/AdminView.php:198 framework/WDWLibrary.php:349
565
+ #: framework/WDWLibrary.php:527 photo-gallery.php:1412
 
566
  msgid "Search"
567
  msgstr "Soek"
568
 
569
+ #: admin/views/AdminView.php:260
570
  #, fuzzy
571
  #| msgid "First"
572
  msgid "First page"
573
  msgstr "Eerste"
574
 
575
+ #: admin/views/AdminView.php:261
576
  #, fuzzy
577
  #| msgid "Previous"
578
  msgid "Previous page"
579
  msgstr "Vorige"
580
 
581
+ #: admin/views/AdminView.php:266
582
  msgid "Current Page"
583
  msgstr ""
584
 
585
+ #: admin/views/AdminView.php:269 framework/WDWLibrary.php:480
586
+ #: framework/WDWLibrary.php:629 frontend/views/view.php:663
587
  msgid "of"
588
  msgstr "van"
589
 
590
+ #: admin/views/AdminView.php:282
591
  #, fuzzy
592
  #| msgid "Next"
593
  msgid "Next page"
594
  msgstr "Volgende"
595
 
596
+ #: admin/views/AdminView.php:283
597
  #, fuzzy
598
  #| msgid "Last"
599
  msgid "Last page"
600
  msgstr "Duur"
601
 
602
+ #: admin/views/AdminView.php:315 filemanager/view.php:205
603
  msgid "Select All"
604
  msgstr ""
605
 
606
+ #: admin/views/AdminView.php:320
607
  msgid "Select bulk action"
608
  msgstr ""
609
 
610
+ #: admin/views/AdminView.php:322
611
  msgid "Bulk Actions"
612
  msgstr ""
613
 
614
+ #: admin/views/AdminView.php:331 admin/views/Galleries.php:398
615
+ #: admin/views/Galleries.php:726 admin/views/Galleries.php:727
616
+ #: admin/views/Galleries.php:728 admin/views/Options.php:157
617
+ #: admin/views/Options.php:957 admin/views/Options.php:960
618
+ #: filemanager/view.php:66
619
+ msgid "This option is disabled in demo."
620
+ msgstr ""
621
+
622
+ #: admin/views/AdminView.php:331
623
  msgid "Apply"
624
  msgstr ""
625
 
626
+ #: admin/views/Albums.php:61 admin/views/Albums.php:97
627
+ #: admin/views/Albumsgalleries.php:78 admin/views/Albumsgalleries.php:102
628
+ #: admin/views/Galleries.php:60 admin/views/Galleries.php:63
629
+ #: admin/views/Galleries.php:104 admin/views/Options.php:1145
630
+ #: admin/views/Options.php:1363 admin/views/Options.php:1599
631
+ #: admin/views/Options.php:1796 admin/views/Options.php:2036
632
+ #: admin/views/Options.php:2195 admin/views/Options.php:2372
633
+ #: admin/views/Options.php:2562 admin/views/Options.php:2579
634
+ #: admin/views/Options.php:2862 admin/views/Options.php:2879
635
+ #: admin/views/Options.php:3102 admin/views/Options.php:3119
636
+ #: admin/views/Themes.php:80 admin/views/Themes.php:99
637
  msgid "Title"
638
  msgstr ""
639
 
640
+ #: admin/views/Albums.php:62 admin/views/Albums.php:120
641
+ #: admin/views/Albums.php:241 admin/views/Galleries.php:65
642
+ #: admin/views/Galleries.php:127 admin/views/Galleries.php:281
643
  msgid "Author"
644
  msgstr ""
645
 
646
+ #: admin/views/Albums.php:106 admin/views/Albums.php:333
647
+ #: admin/views/Albumsgalleries.php:111 admin/views/Comments.php:102
648
+ #: admin/views/Galleries.php:113 admin/views/Galleries.php:718
649
  msgid "Unpublished"
650
  msgstr ""
651
 
652
+ #: admin/views/Albums.php:110 admin/views/Editimage.php:325
653
+ #: admin/views/Galleries.php:117 admin/views/Galleries.php:726
654
+ #: admin/views/Themes.php:104
655
+ msgid "Edit"
656
+ msgstr ""
657
+
658
+ #: admin/views/Albums.php:113 admin/views/Comments.php:112
659
+ #: admin/views/Galleries.php:119 admin/views/Galleries.php:732
660
+ #: admin/views/Ratings.php:84 admin/views/Themes.php:106
661
  msgid "Do you want to delete selected item?"
662
  msgstr ""
663
 
664
+ #: admin/views/Albums.php:114 admin/views/Albums.php:186
665
+ #: admin/views/Galleries.php:120 admin/views/Galleries.php:217
666
  #, fuzzy
667
  #| msgid "Previous"
668
  msgid "Preview"
669
  msgstr "Vorige"
670
 
671
+ #: admin/views/Albums.php:117 admin/views/Albumsgalleries.php:115
672
+ #: admin/views/Comments.php:115 admin/views/Galleries.php:123
673
+ #: admin/views/Galleries.php:742 admin/views/Ratings.php:87
674
+ #: admin/views/Themes.php:109
675
  #, fuzzy
676
  #| msgid "Show comments"
677
  msgid "Show more details"
678
  msgstr "Wys kommentaar"
679
 
680
+ #: admin/views/Albums.php:174
681
  msgid "Gallery Group Title"
682
  msgstr ""
683
 
684
+ #: admin/views/Albums.php:183 admin/views/Galleries.php:213
685
+ #: admin/views/Shortcode.php:576 admin/views/Shortcode.php:2126
686
+ #: admin/views/Themes.php:181
 
 
 
 
 
687
  msgid "Update"
688
  msgstr ""
689
 
690
+ #: admin/views/Albums.php:197 admin/views/Albums.php:233
691
+ #: admin/views/Galleries.php:229 admin/views/Galleries.php:270
692
+ #: admin/views/Options.php:528 admin/views/Options.php:596
693
+ #: admin/views/Options.php:664 admin/views/Shortcode.php:260
694
+ #: admin/views/Shortcode.php:275
695
+ msgid "Toggle panel:"
696
  msgstr ""
697
 
698
+ #: admin/views/Albums.php:201 admin/views/Galleries.php:233
699
+ msgid "Basic"
700
+ msgstr ""
701
+
702
+ #: admin/views/Albums.php:206 admin/views/Galleries.php:238
703
+ msgid "Preview image"
704
+ msgstr ""
705
+
706
+ #: admin/views/Albums.php:208 admin/views/Galleries.php:242
707
  msgid "Add Preview Image"
708
  msgstr ""
709
 
710
+ #: admin/views/Albums.php:209 admin/views/Albums.php:296
711
+ #: admin/views/Galleries.php:245 admin/views/Galleries.php:446
712
+ #: filemanager/view.php:213
713
  msgid "Add"
714
  msgstr ""
715
 
716
+ #: admin/views/Albums.php:214
717
+ msgid ""
718
+ "Add a preview image, which will be displayed as the cover image of the "
719
+ "gallery group when it is published in a parent gallery group."
720
  msgstr ""
721
 
722
+ #: admin/views/Albums.php:218 admin/views/Galleries.php:255
723
+ msgid "Published"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
724
  msgstr ""
725
 
726
+ #: admin/views/Albums.php:220 admin/views/Galleries.php:257
727
+ #: admin/views/Options.php:134 admin/views/Options.php:175
728
+ #: admin/views/Options.php:185 admin/views/Options.php:195
729
+ #: admin/views/Options.php:214 admin/views/Options.php:224
 
730
  #: admin/views/Options.php:234 admin/views/Options.php:244
731
+ #: admin/views/Options.php:256 admin/views/Options.php:267
732
+ #: admin/views/Options.php:277 admin/views/Options.php:287
733
+ #: admin/views/Options.php:297 admin/views/Options.php:307
734
+ #: admin/views/Options.php:317 admin/views/Options.php:335
735
+ #: admin/views/Options.php:341 admin/views/Options.php:628
736
+ #: admin/views/Options.php:639 admin/views/Options.php:650
737
+ #: admin/views/Options.php:1167 admin/views/Options.php:1193
738
+ #: admin/views/Options.php:1203 admin/views/Options.php:1215
739
+ #: admin/views/Options.php:1225 admin/views/Options.php:1246
740
+ #: admin/views/Options.php:1256 admin/views/Options.php:1385
741
+ #: admin/views/Options.php:1411 admin/views/Options.php:1421
742
+ #: admin/views/Options.php:1433 admin/views/Options.php:1443
743
+ #: admin/views/Options.php:1464 admin/views/Options.php:1475
744
+ #: admin/views/Options.php:1485 admin/views/Options.php:1532
745
+ #: admin/views/Options.php:1621 admin/views/Options.php:1647
746
+ #: admin/views/Options.php:1657 admin/views/Options.php:1669
747
+ #: admin/views/Options.php:1679 admin/views/Options.php:1699
748
+ #: admin/views/Options.php:1709 admin/views/Options.php:1818
749
+ #: admin/views/Options.php:1828 admin/views/Options.php:1838
750
+ #: admin/views/Options.php:1860 admin/views/Options.php:1881
751
+ #: admin/views/Options.php:1918 admin/views/Options.php:1928
752
+ #: admin/views/Options.php:1965 admin/views/Options.php:1984
753
+ #: admin/views/Options.php:2013 admin/views/Options.php:2022
754
+ #: admin/views/Options.php:2058 admin/views/Options.php:2084
755
+ #: admin/views/Options.php:2094 admin/views/Options.php:2106
756
+ #: admin/views/Options.php:2116 admin/views/Options.php:2126
757
+ #: admin/views/Options.php:2217 admin/views/Options.php:2243
758
+ #: admin/views/Options.php:2253 admin/views/Options.php:2265
759
+ #: admin/views/Options.php:2275 admin/views/Options.php:2285
760
+ #: admin/views/Options.php:2296 admin/views/Options.php:2307
761
+ #: admin/views/Options.php:2394 admin/views/Options.php:2417
762
+ #: admin/views/Options.php:2428 admin/views/Options.php:2439
763
+ #: admin/views/Options.php:2450 admin/views/Options.php:2461
764
+ #: admin/views/Options.php:2601 admin/views/Options.php:2627
765
+ #: admin/views/Options.php:2637 admin/views/Options.php:2649
766
+ #: admin/views/Options.php:2659 admin/views/Options.php:2707
767
+ #: admin/views/Options.php:2742 admin/views/Options.php:2752
768
+ #: admin/views/Options.php:2901 admin/views/Options.php:2927
769
+ #: admin/views/Options.php:2937 admin/views/Options.php:2949
770
+ #: admin/views/Options.php:2959 admin/views/Options.php:2980
771
+ #: admin/views/Options.php:3141 admin/views/Options.php:3167
772
+ #: admin/views/Options.php:3177 admin/views/Options.php:3189
773
+ #: admin/views/Options.php:3199 admin/views/Options.php:3209
774
+ #: admin/views/Options.php:3246 admin/views/Options.php:3281
775
+ #: admin/views/Options.php:3291 admin/views/Options.php:3345
776
+ #: admin/views/Options.php:3356 admin/views/Options.php:3405
777
+ #: admin/views/Options.php:3424 admin/views/Options.php:3460
778
+ #: admin/views/Options.php:3483 admin/views/Options.php:3495
779
+ #: admin/views/Options.php:3508 admin/views/Options.php:3519
780
+ #: admin/views/Options.php:3530 admin/views/Options.php:3541
781
+ #: admin/views/Options.php:3551 admin/views/Options.php:3561
782
+ #: admin/views/Options.php:3581 admin/views/Options.php:3592
783
+ #: admin/views/Options.php:3605 admin/views/Options.php:3615
784
+ #: admin/views/Options.php:3625 admin/views/Options.php:3635
785
+ #: admin/views/Options.php:3645 admin/views/Options.php:3666
786
+ #: admin/views/Options.php:3677 admin/views/Options.php:3688
787
+ #: admin/views/Options.php:3699 admin/views/Options.php:3713
788
+ #: admin/views/Themes.php:221 admin/views/Themes.php:298
789
+ #: admin/views/Themes.php:543 admin/views/Themes.php:607
790
+ #: admin/views/Themes.php:865 admin/views/Themes.php:929
791
+ #: admin/views/Themes.php:1920 admin/views/Themes.php:1998
792
+ #: admin/views/Themes.php:2341 admin/views/Themes.php:2930
793
+ #: admin/views/Themes.php:2994 admin/views/Themes.php:4702
794
+ #: admin/views/Themes.php:4751 admin/views/Uninstall.php:77
795
+ #: admin/views/WidgetSlideshow.php:114 admin/views/WidgetSlideshow.php:120
796
+ #: admin/views/WidgetSlideshow.php:126 admin/views/WidgetTags.php:89
797
+ #: admin/views/WidgetTags.php:111
798
+ msgid "Yes"
799
  msgstr ""
800
 
801
+ #: admin/views/Albums.php:222 admin/views/Galleries.php:259
802
+ #: admin/views/Options.php:135 admin/views/Options.php:176
803
+ #: admin/views/Options.php:186 admin/views/Options.php:196
804
+ #: admin/views/Options.php:215 admin/views/Options.php:225
805
+ #: admin/views/Options.php:235 admin/views/Options.php:245
806
+ #: admin/views/Options.php:257 admin/views/Options.php:268
807
+ #: admin/views/Options.php:278 admin/views/Options.php:288
808
+ #: admin/views/Options.php:298 admin/views/Options.php:308
809
+ #: admin/views/Options.php:318 admin/views/Options.php:336
810
+ #: admin/views/Options.php:342 admin/views/Options.php:629
811
+ #: admin/views/Options.php:640 admin/views/Options.php:651
812
+ #: admin/views/Options.php:1168 admin/views/Options.php:1194
813
+ #: admin/views/Options.php:1204 admin/views/Options.php:1216
814
+ #: admin/views/Options.php:1226 admin/views/Options.php:1247
815
+ #: admin/views/Options.php:1257 admin/views/Options.php:1386
816
+ #: admin/views/Options.php:1412 admin/views/Options.php:1422
817
+ #: admin/views/Options.php:1434 admin/views/Options.php:1444
818
+ #: admin/views/Options.php:1465 admin/views/Options.php:1476
819
+ #: admin/views/Options.php:1486 admin/views/Options.php:1533
820
+ #: admin/views/Options.php:1622 admin/views/Options.php:1648
821
+ #: admin/views/Options.php:1658 admin/views/Options.php:1670
822
+ #: admin/views/Options.php:1680 admin/views/Options.php:1700
823
+ #: admin/views/Options.php:1710 admin/views/Options.php:1819
824
+ #: admin/views/Options.php:1829 admin/views/Options.php:1839
825
+ #: admin/views/Options.php:1861 admin/views/Options.php:1882
826
+ #: admin/views/Options.php:1919 admin/views/Options.php:1929
827
+ #: admin/views/Options.php:1966 admin/views/Options.php:1985
828
+ #: admin/views/Options.php:2014 admin/views/Options.php:2023
829
+ #: admin/views/Options.php:2059 admin/views/Options.php:2085
830
+ #: admin/views/Options.php:2095 admin/views/Options.php:2107
831
+ #: admin/views/Options.php:2117 admin/views/Options.php:2127
832
+ #: admin/views/Options.php:2218 admin/views/Options.php:2244
833
+ #: admin/views/Options.php:2254 admin/views/Options.php:2266
834
+ #: admin/views/Options.php:2276 admin/views/Options.php:2286
835
+ #: admin/views/Options.php:2297 admin/views/Options.php:2308
836
+ #: admin/views/Options.php:2395 admin/views/Options.php:2418
837
+ #: admin/views/Options.php:2429 admin/views/Options.php:2440
838
+ #: admin/views/Options.php:2451 admin/views/Options.php:2462
839
+ #: admin/views/Options.php:2525 admin/views/Options.php:2602
840
+ #: admin/views/Options.php:2628 admin/views/Options.php:2638
841
+ #: admin/views/Options.php:2650 admin/views/Options.php:2660
842
+ #: admin/views/Options.php:2708 admin/views/Options.php:2743
843
+ #: admin/views/Options.php:2753 admin/views/Options.php:2825
844
+ #: admin/views/Options.php:2902 admin/views/Options.php:2928
845
+ #: admin/views/Options.php:2938 admin/views/Options.php:2950
846
+ #: admin/views/Options.php:2960 admin/views/Options.php:2981
847
+ #: admin/views/Options.php:3065 admin/views/Options.php:3142
848
+ #: admin/views/Options.php:3168 admin/views/Options.php:3178
849
+ #: admin/views/Options.php:3190 admin/views/Options.php:3200
850
+ #: admin/views/Options.php:3210 admin/views/Options.php:3247
851
+ #: admin/views/Options.php:3282 admin/views/Options.php:3292
852
+ #: admin/views/Options.php:3346 admin/views/Options.php:3357
853
+ #: admin/views/Options.php:3406 admin/views/Options.php:3425
854
+ #: admin/views/Options.php:3474 admin/views/Options.php:3484
855
+ #: admin/views/Options.php:3498 admin/views/Options.php:3509
856
+ #: admin/views/Options.php:3520 admin/views/Options.php:3531
857
+ #: admin/views/Options.php:3542 admin/views/Options.php:3552
858
+ #: admin/views/Options.php:3562 admin/views/Options.php:3582
859
+ #: admin/views/Options.php:3593 admin/views/Options.php:3606
860
+ #: admin/views/Options.php:3616 admin/views/Options.php:3626
861
+ #: admin/views/Options.php:3636 admin/views/Options.php:3646
862
+ #: admin/views/Options.php:3667 admin/views/Options.php:3678
863
+ #: admin/views/Options.php:3689 admin/views/Options.php:3700
864
+ #: admin/views/Options.php:3714 admin/views/Themes.php:223
865
+ #: admin/views/Themes.php:300 admin/views/Themes.php:545
866
+ #: admin/views/Themes.php:609 admin/views/Themes.php:867
867
+ #: admin/views/Themes.php:931 admin/views/Themes.php:1922
868
+ #: admin/views/Themes.php:2000 admin/views/Themes.php:2343
869
+ #: admin/views/Themes.php:2932 admin/views/Themes.php:2996
870
+ #: admin/views/Themes.php:4704 admin/views/Themes.php:4753
871
+ #: admin/views/WidgetSlideshow.php:115 admin/views/WidgetSlideshow.php:121
872
+ #: admin/views/WidgetSlideshow.php:127 admin/views/WidgetTags.php:90
873
+ #: admin/views/WidgetTags.php:112
874
+ msgid "No"
875
  msgstr ""
876
 
877
+ #: admin/views/Albums.php:237 admin/views/Galleries.php:274
878
+ #: admin/views/Options.php:86 admin/views/Shortcode.php:293
879
  msgid "Advanced"
880
  msgstr ""
881
 
882
+ #: admin/views/Albums.php:245 admin/views/Galleries.php:285
883
  msgid "Slug"
884
  msgstr ""
885
 
886
+ #: admin/views/Albums.php:250 admin/views/Galleries.php:290
887
+ #: admin/views/Galleries.php:752 frontend/views/BWGViewGalleryBox.php:1127
 
888
  msgid "Description"
889
  msgstr ""
890
 
891
+ #: admin/views/Albums.php:277
892
+ msgid "Galleries and Gallery Groups"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
893
  msgstr ""
894
 
895
+ #: admin/views/Albums.php:324 admin/views/Galleries.php:97
896
+ #: admin/views/Galleries.php:694
897
  msgid "Drag to re-order"
898
  msgstr ""
899
 
900
+ #: admin/views/Albums.php:332
901
  msgid "Remove"
902
  msgstr ""
903
 
904
+ #: admin/views/Albumsgalleries.php:79 admin/views/Albumsgalleries.php:118
905
+ #: admin/views/Galleries.php:714 admin/views/Options.php:1149
906
+ #: admin/views/Options.php:1367 admin/views/Options.php:1603
907
+ #: admin/views/Options.php:1800 admin/views/Options.php:2040
908
+ #: admin/views/Options.php:2199 admin/views/Options.php:2376
909
+ #: admin/views/Options.php:2583 admin/views/Options.php:2883
910
+ #: admin/views/Options.php:3123
911
  msgid "Type"
912
  msgstr ""
913
 
914
+ #: admin/views/Albumsgalleries.php:119 admin/views/Shortcode.php:60
915
+ #: admin/views/Shortcode.php:264
916
  #, fuzzy
917
  #| msgid "Gallery is empty."
918
  msgid "Gallery group"
919
  msgstr "Gallery is leeg."
920
 
921
+ #: admin/views/Albumsgalleries.php:137
 
 
 
 
 
 
922
  msgid "Add to Gallery Group"
923
  msgstr ""
924
 
925
+ #: admin/views/Comments.php:70 admin/views/Comments.php:118
926
+ #: frontend/views/BWGViewGalleryBox.php:1000
 
 
927
  msgid "Email"
928
  msgstr "E-pos "
929
 
930
+ #: admin/views/Comments.php:71 admin/views/Comments.php:121
931
+ #: frontend/views/BWGViewGalleryBox.php:1005
 
 
932
  msgid "Comment"
933
  msgstr "Kommentaar lewer nie"
934
 
935
+ #: admin/views/Comments.php:72 admin/views/Comments.php:124
936
+ #: admin/views/Galleries.php:711 admin/views/Options.php:1146
937
+ #: admin/views/Options.php:1364 admin/views/Options.php:1600
938
+ #: admin/views/Options.php:1797 admin/views/Options.php:2037
939
+ #: admin/views/Options.php:2196 admin/views/Options.php:2373
940
+ #: admin/views/Options.php:2580 admin/views/Options.php:2880
941
+ #: admin/views/Options.php:3120 admin/views/Ratings.php:60
942
+ #: admin/views/Ratings.php:92 frontend/views/view.php:424
943
+ msgid "Date"
944
  msgstr ""
945
 
946
+ #: admin/views/Editimage.php:215
947
+ msgid "You can't crop this type of image."
948
  msgstr ""
949
 
950
+ #: admin/views/Editimage.php:295
951
  msgid "Select the area for the thumbnail."
952
  msgstr ""
953
 
954
+ #: admin/views/Editimage.php:300
955
  msgid "Keep aspect ratio"
956
  msgstr ""
957
 
958
+ #: admin/views/Editimage.php:311
959
+ msgid "Crop"
960
+ msgstr ""
961
+
962
+ #: admin/views/Editimage.php:321
963
+ msgid "The thumbnail was successfully cropped."
964
+ msgstr ""
965
+
966
+ #: admin/views/Editimage.php:803
967
  msgid "Grayscale"
968
  msgstr ""
969
 
970
+ #: admin/views/Editimage.php:807
971
  msgid "Negative"
972
  msgstr ""
973
 
974
+ #: admin/views/Editimage.php:811
975
  msgid "Removal"
976
  msgstr ""
977
 
978
+ #: admin/views/Editimage.php:815
979
  msgid "Sepia"
980
  msgstr ""
981
 
982
+ #: admin/views/Editimage.php:819
983
  msgid "Slate"
984
  msgstr ""
985
 
986
+ #: admin/views/Editimage.php:823
987
  msgid "Saturate"
988
  msgstr ""
989
 
990
+ #: admin/views/Editimage.php:827 admin/views/Galleries.php:728
991
  msgid "Do you want to reset the image?"
992
  msgstr ""
993
 
994
+ #: admin/views/Editimage.php:829
995
  #, fuzzy
996
  #| msgid "Reset"
997
  msgid "Reset image"
998
  msgstr "Herstel"
999
 
1000
+ #: admin/views/Editimage.php:855
1001
  msgid "Brightness"
1002
  msgstr ""
1003
 
1004
+ #: admin/views/Editimage.php:857 admin/views/Editimage.php:882
1005
  msgid "Press for result"
1006
  msgstr ""
1007
 
1008
+ #: admin/views/Editimage.php:880
1009
  msgid "Contrast"
1010
  msgstr ""
1011
 
1012
+ #: admin/views/Galleries.php:58 admin/views/Galleries.php:622
1013
+ msgid "Drag&Drop"
1014
+ msgstr ""
1015
+
1016
+ #: admin/views/Galleries.php:64 admin/views/Galleries.php:126
1017
  msgid "Images count"
1018
  msgstr ""
1019
 
1020
+ #: admin/views/Galleries.php:200
1021
  #, fuzzy
1022
  #| msgid "Gallery is empty."
1023
  msgid "Gallery title"
1024
  msgstr "Gallery is leeg."
1025
 
1026
+ #: admin/views/Galleries.php:252
1027
+ msgid ""
1028
+ "Add a preview image, which will be displayed as the cover image of the "
1029
+ "gallery when it is published in a gallery group."
1030
  msgstr ""
1031
 
1032
+ #: admin/views/Galleries.php:316
1033
  msgid "Gallery content type"
1034
  msgstr ""
1035
 
1036
+ #: admin/views/Galleries.php:330
1037
+ msgid ""
1038
+ "Select the type of gallery content. Mixed galleries can include all "
1039
+ "supported items. Alternatively, you can showcase images from one specific "
1040
+ "source only."
 
1041
  msgstr ""
1042
 
1043
+ #: admin/views/Galleries.php:332
1044
+ msgid ""
1045
+ "Gallery type cannot be changed, as it is not empty. If you would like to "
1046
+ "show images from another source, please create a new gallery."
 
 
 
 
1047
  msgstr ""
1048
 
1049
+ #: admin/views/Galleries.php:338
1050
  msgid "Number of Instagram recent posts to add to gallery"
1051
  msgstr ""
1052
 
1053
+ #: admin/views/Galleries.php:342
1054
  msgid "Instagram embed type"
1055
  msgstr ""
1056
 
1057
+ #: admin/views/Galleries.php:344 admin/views/Galleries.php:496
1058
  msgid "Content"
1059
  msgstr ""
1060
 
1061
+ #: admin/views/Galleries.php:346 admin/views/Galleries.php:498
1062
  msgid "Whole post"
1063
  msgstr ""
1064
 
1065
+ #: admin/views/Galleries.php:349
1066
  #, fuzzy
1067
  #| msgid "Photo gallery plugin autoupdate interval."
1068
  msgid "Gallery autoupdate option"
1069
  msgstr "Photo gallery plugin autoupdate interval."
1070
 
1071
+ #: admin/views/Galleries.php:351
1072
  msgid "No update"
1073
  msgstr ""
1074
 
1075
+ #: admin/views/Galleries.php:353
1076
  msgid "Add new media, keep old ones published."
1077
  msgstr ""
1078
 
1079
+ #: admin/views/Galleries.php:355
1080
  msgid "Add new media, unpublish old ones."
1081
  msgstr ""
1082
 
1083
+ #: admin/views/Galleries.php:358
1084
  msgid "Add Instagram Gallery"
1085
  msgstr ""
1086
 
1087
+ #: admin/views/Galleries.php:367
1088
  msgid "Photo Gallery Facebook Integration"
1089
  msgstr ""
1090
 
1091
+ #: admin/views/Galleries.php:368
1092
  #, php-format
1093
  msgid "Please install %s add-on to use this feature."
1094
  msgstr ""
1095
 
1096
+ #: admin/views/Galleries.php:395 admin/views/Galleries.php:396
1097
  msgid "Add Images"
1098
  msgstr ""
1099
 
1100
+ #: admin/views/Galleries.php:398
1101
  msgid "Import from Media Library"
1102
  msgstr ""
1103
 
1104
+ #: admin/views/Galleries.php:405 admin/views/Galleries.php:407
1105
  msgid "Embed Media"
1106
  msgstr ""
1107
 
1108
+ #: admin/views/Galleries.php:408 admin/views/Galleries.php:410
1109
  msgid "Social Bulk Embed"
1110
  msgstr ""
1111
 
1112
+ #: admin/views/Galleries.php:410 photo-gallery.php:108
1113
+ msgid "This option is disabled in free version."
 
 
 
 
 
 
 
 
1114
  msgstr ""
1115
 
1116
+ #: admin/views/Galleries.php:413
1117
+ msgid "Optimize Images"
1118
  msgstr ""
1119
 
1120
+ #: admin/views/Galleries.php:429
1121
+ msgid "Enter YouTube, Vimeo, Instagram, Flickr or Dailymotion URL here."
 
1122
  msgstr ""
1123
 
1124
+ #: admin/views/Galleries.php:430 admin/views/Galleries.php:466
1125
  msgid "Add to gallery"
1126
  msgstr ""
1127
 
1128
+ #: admin/views/Galleries.php:431 admin/views/Galleries.php:465
1129
+ #: admin/views/Galleries.php:522 admin/views/Galleries.php:543
1130
+ #: admin/views/Galleries.php:562 admin/views/Galleries.php:582
1131
+ #: filemanager/view.php:218 filemanager/view.php:219 photo-gallery.php:1435
1132
  msgid "Cancel"
1133
  msgstr ""
1134
 
1135
+ #: admin/views/Galleries.php:436
1136
  msgid "<b>Youtube</b> URL example:"
1137
  msgstr ""
1138
 
1139
+ #: admin/views/Galleries.php:440
1140
  msgid "<b>Vimeo</b> URL example:"
1141
  msgstr ""
1142
 
1143
+ #: admin/views/Galleries.php:444
1144
  msgid "<b>Instagram</b> URL example:"
1145
  msgstr ""
1146
 
1147
+ #: admin/views/Galleries.php:446
1148
  msgid "post"
1149
  msgstr ""
1150
 
1151
+ #: admin/views/Galleries.php:446
1152
  msgid ""
1153
  "to the end of URL if you want to embed the whole Instagram post, not only "
1154
  "its content."
1155
  msgstr ""
1156
 
1157
+ #: admin/views/Galleries.php:454
1158
  msgid "<b>Flickr</b> URL example:"
1159
  msgstr ""
1160
 
1161
+ #: admin/views/Galleries.php:458
1162
  msgid "<b>Dailymotion</b> URL example:"
1163
  msgstr ""
1164
 
1165
+ #: admin/views/Galleries.php:477
1166
  msgid "username:"
1167
  msgstr ""
1168
 
1169
+ #: admin/views/Galleries.php:485
1170
  msgid "Number of Instagram recent posts to add to gallery:"
1171
  msgstr ""
1172
 
1173
+ #: admin/views/Galleries.php:493
1174
  msgid "embed type:"
1175
  msgstr ""
1176
 
1177
+ #: admin/views/Galleries.php:512
1178
  msgid "Resize images to: "
1179
  msgstr ""
1180
 
1181
+ #: admin/views/Galleries.php:515
1182
  msgid "The maximum size of resized image."
1183
  msgstr ""
1184
 
1185
+ #: admin/views/Galleries.php:521 framework/WDWLibrary.php:2422
1186
+ msgid "Resize"
1187
+ msgstr ""
1188
+
1189
+ #: admin/views/Galleries.php:532
1190
  msgid "Alt/Title: "
1191
  msgstr ""
1192
 
1193
+ #: admin/views/Galleries.php:535
1194
+ msgid "Leave blank and click to \"Save changes\" to delete Alt/Titles."
1195
+ msgstr ""
1196
+
1197
+ #: admin/views/Galleries.php:542 admin/views/Galleries.php:561
1198
+ #: admin/views/Galleries.php:581
1199
+ msgid "Save changes"
1200
+ msgstr ""
1201
+
1202
+ #: admin/views/Galleries.php:551
1203
  msgid "Redirect URL: "
1204
  msgstr ""
1205
 
1206
+ #: admin/views/Galleries.php:554
1207
+ msgid "Leave blank and click to \"Save changes\" to delete Redirect URLs."
1208
+ msgstr ""
1209
+
1210
+ #: admin/views/Galleries.php:570
1211
  msgid "Description: "
1212
  msgstr ""
1213
 
1214
+ #: admin/views/Galleries.php:573
1215
+ msgid "Leave blank and click to \"Save changes\" to delete Descriptions."
1216
+ msgstr ""
1217
+
1218
+ #: admin/views/Galleries.php:599
1219
  #, fuzzy
1220
  #| msgid "You have already rated."
1221
  msgid "You have unsaved changes."
1222
  msgstr "Jy het reeds gegradeer"
1223
 
1224
+ #: admin/views/Galleries.php:604
1225
+ msgid ""
1226
+ "This sorting does not affect the published galleries. You can change the "
1227
+ "ordering on frontend by editing gallery shortcode or Photo Gallery Options."
1228
+ msgstr ""
1229
+
1230
+ #: admin/views/Galleries.php:621 photo-gallery.php:616
1231
  #, fuzzy
1232
  #| msgid "Show comments"
1233
  msgid "Show order column"
1234
  msgstr "Wys kommentaar"
1235
 
1236
+ #: admin/views/Galleries.php:623
1237
+ msgid "Numerate"
 
 
 
 
 
 
 
 
1238
  msgstr ""
1239
 
1240
+ #: admin/views/Galleries.php:629
1241
+ #, fuzzy
1242
+ #| msgid "Order by: "
1243
+ msgid "Ordering"
1244
+ msgstr "Om deur"
1245
 
1246
+ #: admin/views/Galleries.php:635 admin/views/Galleries.php:702
1247
+ #: admin/views/Options.php:1147 admin/views/Options.php:1365
1248
+ #: admin/views/Options.php:1601 admin/views/Options.php:1798
1249
+ #: admin/views/Options.php:2038 admin/views/Options.php:2197
1250
+ #: admin/views/Options.php:2374 admin/views/Options.php:2581
1251
+ #: admin/views/Options.php:2881 admin/views/Options.php:3121
1252
+ #: frontend/views/view.php:427
1253
+ msgid "Filename"
1254
+ msgstr "lêernaam"
1255
 
1256
+ #: admin/views/Galleries.php:640 admin/views/Options.php:681
1257
+ #: admin/views/Options.php:834 admin/views/Ratings.php:57
1258
+ #: admin/views/Ratings.php:74 admin/views/Shortcode.php:301
1259
+ #: admin/views/WidgetTags.php:84
1260
+ msgid "Image"
1261
  msgstr ""
1262
 
1263
+ #: admin/views/Galleries.php:712 admin/views/Options.php:1150
1264
+ #: admin/views/Options.php:1368 admin/views/Options.php:1604
1265
+ #: admin/views/Options.php:1801 admin/views/Options.php:2041
1266
+ #: admin/views/Options.php:2200 admin/views/Options.php:2377
1267
+ #: admin/views/Options.php:2584 admin/views/Options.php:2884
1268
+ #: admin/views/Options.php:3124
1269
  msgid "Resolution"
1270
  msgstr ""
1271
 
1272
+ #: admin/views/Galleries.php:713 admin/views/Options.php:1148
1273
+ #: admin/views/Options.php:1366 admin/views/Options.php:1602
1274
+ #: admin/views/Options.php:1799 admin/views/Options.php:2039
1275
+ #: admin/views/Options.php:2198 admin/views/Options.php:2375
1276
+ #: admin/views/Options.php:2582 admin/views/Options.php:2882
1277
+ #: admin/views/Options.php:3122 filemanager/view.php:151
1278
+ #: frontend/views/view.php:430
1279
  msgid "Size"
1280
  msgstr "grootte"
1281
 
1282
+ #: admin/views/Galleries.php:726 admin/views/Galleries.php:727
1283
+ #: admin/views/Options.php:157 admin/views/Options.php:957
1284
+ #: admin/views/Options.php:960
1285
+ msgid "Image edit functionality is not supported by your web host."
1286
  msgstr ""
1287
 
1288
+ #: admin/views/Galleries.php:727
1289
+ msgid "Crop Thumbnail"
1290
  msgstr ""
1291
 
1292
+ #: admin/views/Galleries.php:728 admin/views/Themes.php:191
1293
+ #: framework/WDWLibrary.php:350 framework/WDWLibrary.php:528
1294
+ #: framework/WDWLibrary.php:2447 frontend/views/view.php:377
1295
+ msgid "Reset"
1296
+ msgstr "Herstel"
1297
+
1298
+ #: admin/views/Galleries.php:748
1299
+ msgid "Alt/Title"
1300
  msgstr ""
1301
 
1302
+ #: admin/views/Galleries.php:770
1303
+ msgid "Redirect URL"
1304
  msgstr ""
1305
 
1306
+ #: admin/views/Galleries.php:774
1307
+ msgid "Options > General"
1308
  msgstr ""
1309
 
1310
+ #: admin/views/Galleries.php:775
1311
+ #, php-format
1312
+ msgid ""
1313
+ "To activate this feature, go to %s, then set \"Image click action\" to "
1314
+ "\"Redirect to URL\". Please use absolute URLs when specifying the links."
1315
  msgstr ""
1316
 
1317
+ #: admin/views/Galleries.php:793
1318
+ msgid "Remove tag"
1319
  msgstr ""
1320
 
1321
+ #: admin/views/Galleries.php:803
1322
+ msgid "Add tag"
1323
+ msgstr ""
1324
+
1325
+ #: admin/views/LibSubscribe.php:12
1326
  msgid ""
1327
+ "Hey! I know how hard and time-consuming creating a well-structured gallery "
1328
+ "can be."
1329
  msgstr ""
1330
 
1331
+ #: admin/views/LibSubscribe.php:19
1332
+ msgid "Name is required."
1333
  msgstr ""
1334
 
1335
+ #: admin/views/LibSubscribe.php:20
1336
+ #, fuzzy
1337
+ #| msgid "This is not a valid email address."
1338
+ msgid "Please enter a valid email."
1339
+ msgstr "Dit is nie 'n geldige e-posadres."
1340
+
1341
+ #: admin/views/LibSubscribe.php:62
1342
+ msgid ""
1343
+ "So, I handcrafted a step-by-step ebook to make it super easy for you. Enjoy "
1344
  msgstr ""
1345
 
1346
+ #: admin/views/LibSubscribe.php:69
1347
+ msgid "NAME"
1348
  msgstr ""
1349
 
1350
+ #: admin/views/LibSubscribe.php:74
1351
+ msgid "EMAIL ADDRESS"
1352
  msgstr ""
1353
 
1354
+ #: admin/views/LibSubscribe.php:78
1355
  msgid ""
1356
+ "Keep in mind that submitting this form will allow 10Web to store your name, "
1357
+ "email, and site URL. Being GDPR-compliant, we won’t ever share your info "
1358
+ "with third parties..."
1359
  msgstr ""
1360
 
1361
+ #: admin/views/LibSubscribe.php:83 wd/templates/display_subscribe.php:29
1362
+ msgid "Skip"
1363
  msgstr ""
1364
 
1365
+ #: admin/views/Options.php:47 admin/views/Themes.php:181
1366
+ msgid "Save"
1367
  msgstr ""
1368
 
1369
+ #: admin/views/Options.php:53
1370
+ msgid "Reset all options"
1371
  msgstr ""
1372
 
1373
+ #: admin/views/Options.php:54 admin/views/Themes.php:186
1374
+ msgid "Do you want to reset to default?"
1375
  msgstr ""
1376
 
1377
+ #: admin/views/Options.php:77
1378
+ #, fuzzy
1379
+ #| msgid "Gallery is empty."
1380
+ msgid "Gallery defaults"
1381
+ msgstr "Gallery is leeg."
1382
+
1383
+ #: admin/views/Options.php:80
1384
+ #, fuzzy
1385
+ #| msgid "Gallery is empty."
1386
+ msgid "Gallery Group defaults"
1387
+ msgstr "Gallery is leeg."
1388
+
1389
+ #: admin/views/Options.php:83
1390
+ msgid "Lightbox defaults"
1391
  msgstr ""
1392
 
1393
+ #: admin/views/Options.php:89 photo-gallery.php:1543
1394
+ msgid "Watermark"
1395
  msgstr ""
1396
 
1397
+ #: admin/views/Options.php:109
1398
+ msgid "Images directory"
1399
+ msgstr ""
 
 
1400
 
1401
+ #: admin/views/Options.php:114
1402
+ msgid ""
1403
+ "Provide the path of an existing folder inside the WordPress directory of "
1404
+ "your website to store uploaded images.<br />The content of the previous "
1405
+ "directory will be moved to the new one."
1406
  msgstr ""
1407
 
1408
+ #: admin/views/Options.php:122 admin/views/Options.php:3333
1409
+ msgid "Image click action"
1410
  msgstr ""
1411
 
1412
+ #: admin/views/Options.php:124 admin/views/Options.php:3335
1413
+ msgid "Open lightbox"
1414
  msgstr ""
1415
 
1416
+ #: admin/views/Options.php:125 admin/views/Options.php:3336
1417
+ msgid "Redirect to url"
1418
  msgstr ""
1419
 
1420
+ #: admin/views/Options.php:126 admin/views/Options.php:3337
1421
+ msgid "Do Nothing"
1422
  msgstr ""
1423
 
1424
+ #: admin/views/Options.php:128 admin/views/Options.php:3339
1425
+ msgid "Select the action which runs after clicking on gallery thumbnails."
1426
  msgstr ""
1427
 
1428
+ #: admin/views/Options.php:132 admin/views/Options.php:3343
1429
+ msgid "Open in a new window"
1430
  msgstr ""
1431
 
1432
+ #: admin/views/Options.php:142 admin/views/Options.php:2335
1433
+ msgid "Image dimensions"
1434
+ msgstr ""
1435
+
1436
+ #: admin/views/Options.php:147
1437
  msgid ""
1438
+ "Specify the maximum dimensions of uploaded images (set 0 for original size)."
 
1439
  msgstr ""
1440
 
1441
+ #: admin/views/Options.php:152
1442
+ msgid "Generated thumbnail dimensions"
1443
  msgstr ""
1444
 
1445
+ #: admin/views/Options.php:157 photo-gallery.php:417
1446
+ msgid "Recreate"
1447
  msgstr ""
1448
 
1449
+ #: admin/views/Options.php:159
1450
+ msgid ""
1451
+ "Specify the maximum dimensions of generated thumbnails. They must be larger "
1452
+ "than frontend thumbnail dimensions."
1453
  msgstr ""
1454
 
1455
+ #: admin/views/Options.php:164
1456
+ msgid "Image quality"
1457
  msgstr ""
1458
 
1459
+ #: admin/views/Options.php:168
1460
+ msgid "Set the quality of gallery images. Provide a value from 0 to 100%."
1461
  msgstr ""
1462
 
1463
+ #: admin/views/Options.php:173
1464
+ msgid "Resizable thumbnails"
1465
  msgstr ""
1466
 
1467
+ #: admin/views/Options.php:178
1468
  msgid ""
1469
+ "Enable this option to allow resizing gallery thumbnails on smaller screens."
 
1470
  msgstr ""
1471
 
1472
+ #: admin/views/Options.php:183
1473
+ msgid "Lazy load"
1474
  msgstr ""
1475
 
1476
+ #: admin/views/Options.php:188
1477
  msgid ""
1478
+ "Enable this option to activate lazy loading for images and improve the "
1479
+ "loading speed on your galleries."
1480
  msgstr ""
1481
 
1482
+ #: admin/views/Options.php:193
1483
+ msgid "Preload images"
 
 
 
 
 
 
1484
  msgstr ""
1485
 
1486
+ #: admin/views/Options.php:198
1487
+ msgid ""
1488
+ "If this setting is enabled, Photo Gallery loads a specific number of images "
1489
+ "before opening lightbox. This lets you showcase images without loading "
1490
+ "delays, providing better user experience."
1491
  msgstr ""
1492
 
1493
+ #: admin/views/Options.php:203
1494
+ msgid "Number of preloaded images"
1495
  msgstr ""
1496
 
1497
+ #: admin/views/Options.php:207
1498
+ msgid "Specify the number of images to preload, e.g. 5 (set 0 for all)."
1499
  msgstr ""
1500
 
1501
+ #: admin/views/Options.php:212
1502
+ #, fuzzy
1503
+ #| msgid "Show comments"
1504
+ msgid "Show custom posts"
1505
+ msgstr "Wys kommentaar"
1506
 
1507
+ #: admin/views/Options.php:217
1508
+ msgid ""
1509
+ "Activate this setting to display Photo Gallery custom posts with new menu "
1510
+ "items under WordPress admin menu."
1511
  msgstr ""
1512
 
1513
+ #: admin/views/Options.php:222
1514
+ msgid "Discourage Search Engine Visibility"
1515
  msgstr ""
1516
 
1517
+ #: admin/views/Options.php:227
1518
+ msgid "Discourage search engines from indexing Photo Gallery custom posts."
1519
  msgstr ""
1520
 
1521
+ #: admin/views/Options.php:232
1522
+ #, fuzzy
1523
+ #| msgid "Show comments"
1524
+ msgid "Show comments for custom posts"
1525
+ msgstr "Wys kommentaar"
1526
+
1527
+ #: admin/views/Options.php:237
1528
+ msgid ""
1529
+ "Use this setting to show or hide comments under Photo Gallery custom posts."
1530
  msgstr ""
1531
 
1532
+ #: admin/views/Options.php:242
1533
+ msgid "Use AND operator for tag filtering"
1534
  msgstr ""
1535
 
1536
+ #: admin/views/Options.php:247
1537
+ msgid ""
1538
+ "Enable this option to filter images with AND operator. In this case, the "
1539
+ "filter results must have all selected tags in the Tag Box."
 
1540
  msgstr ""
1541
 
1542
+ #: admin/views/Options.php:254
1543
+ msgid "Save IP "
1544
  msgstr ""
1545
 
1546
+ #: admin/views/Options.php:259
1547
+ msgid "Disable saving user IP address when rating the images."
 
1548
  msgstr ""
1549
 
1550
+ #: admin/views/Options.php:265
1551
+ msgid "Right-click protection"
1552
  msgstr ""
1553
 
1554
+ #: admin/views/Options.php:270
1555
+ msgid "Switch off right-click on your gallery images by enabling this setting."
1556
+ msgstr ""
 
 
 
 
 
1557
 
1558
+ #: admin/views/Options.php:275
1559
+ msgid "Include styles/scripts on gallery pages only"
 
 
 
1560
  msgstr ""
1561
 
1562
+ #: admin/views/Options.php:280
1563
+ msgid ""
1564
+ "If this option is enabled, CSS and Javascript files of Photo Gallery will "
1565
+ "only load on pages with galleries and gallery groups."
 
1566
  msgstr ""
1567
 
1568
+ #: admin/views/Options.php:285
1569
  #, fuzzy
1570
  #| msgid "Show comments"
1571
+ msgid "Enable Google fonts"
1572
  msgstr "Wys kommentaar"
1573
 
1574
+ #: admin/views/Options.php:290
1575
+ msgid ""
1576
+ "If this option is disabled, Google fonts will not be included in your pages."
1577
  msgstr ""
1578
 
1579
+ #: admin/views/Options.php:295
1580
+ #, fuzzy
1581
+ #| msgid "Hide info"
1582
+ msgid "Enable HTML editor"
1583
+ msgstr "Steek info"
1584
 
1585
+ #: admin/views/Options.php:300
1586
+ msgid ""
1587
+ "Description text boxes of Photo Gallery will use TinyMCE editor, in case "
1588
+ "this setting is enabled."
1589
  msgstr ""
1590
 
1591
+ #: admin/views/Options.php:305
1592
+ msgid "Enable href attribute"
1593
  msgstr ""
1594
 
1595
+ #: admin/views/Options.php:310
1596
+ msgid "Disable this option only if Photo Gallery conflicts with your theme."
 
 
1597
  msgstr ""
1598
 
1599
+ #: admin/views/Options.php:315
1600
+ msgid "Auto-fill metadata"
 
 
1601
  msgstr ""
1602
 
1603
+ #: admin/views/Options.php:320
1604
+ msgid ""
1605
+ "Enabling this option will let the plugin fill in meta descriptions of photos "
1606
+ "into Image Description option automatically."
1607
  msgstr ""
1608
 
1609
+ #: admin/views/Options.php:325 admin/views/Options.php:328
1610
+ #: photo-gallery.php:491
1611
+ msgid "Generate Shortcode"
1612
  msgstr ""
1613
 
1614
+ #: admin/views/Options.php:331
1615
+ msgid ""
1616
+ "Generate or edit Photo Gallery shortcodes that are used to publish galleries "
1617
+ "or gallery groups."
1618
  msgstr ""
1619
 
1620
+ #: admin/views/Options.php:334
1621
+ msgid "Enable dynamic URLs for galleries and gallery groups"
 
1622
  msgstr ""
1623
 
1624
+ #: admin/views/Options.php:337
1625
+ msgid ""
1626
+ "Enable this option to browse galleries and gallery groups, as well as search "
1627
+ "results and tagged images with dynamic links."
1628
  msgstr ""
1629
 
1630
+ #: admin/views/Options.php:340
1631
+ msgid "Developer mode"
 
 
1632
  msgstr ""
1633
 
1634
+ #: admin/views/Options.php:343
1635
+ msgid ""
1636
+ "Do not use minified JS and CSS files. Enable this option if You need to "
1637
+ "debug JS or CSS issues."
1638
  msgstr ""
1639
 
1640
+ #: admin/views/Options.php:354 photo-gallery.php:490
1641
+ msgid "Uninstall"
 
 
 
1642
  msgstr ""
1643
 
1644
+ #: admin/views/Options.php:357
1645
+ msgid ""
1646
+ "Note, that uninstalling Photo Gallery will completely remove all galleries, "
1647
+ "gallery groups and other data on the plugin. Please make sure you don't have "
1648
+ "any important information before you proceed."
1649
  msgstr ""
1650
 
1651
+ #: admin/views/Options.php:430 admin/views/Options.php:487
1652
+ #: admin/views/Shortcode.php:123 admin/views/Shortcode.php:160
1653
+ msgid "View type"
1654
  msgstr ""
1655
 
1656
+ #: admin/views/Options.php:447 admin/views/Options.php:504
1657
+ #: admin/views/Shortcode.php:177
1658
+ msgid "This view is not available in free version."
1659
  msgstr ""
1660
 
1661
+ #: admin/views/Options.php:532
1662
+ msgid "Social"
 
 
1663
  msgstr ""
1664
 
1665
+ #: admin/views/Options.php:538
1666
+ #, fuzzy
1667
+ #| msgid "Photo gallery plugin autoupdate interval."
1668
+ msgid "Gallery autoupdate interval"
1669
+ msgstr "Photo gallery plugin autoupdate interval."
1670
+
1671
+ #: admin/views/Options.php:541
1672
+ msgid "hour"
1673
  msgstr ""
1674
 
1675
+ #: admin/views/Options.php:543
1676
+ msgid "min"
1677
  msgstr ""
1678
 
1679
+ #: admin/views/Options.php:545
1680
+ msgid ""
1681
+ "Set the interval when Instagram galleries will be updated, and will display "
1682
+ "new posts of your Instagram or Facebook account."
1683
  msgstr ""
1684
 
1685
+ #: admin/views/Options.php:551
1686
+ msgid "Instagram"
 
1687
  msgstr ""
1688
 
1689
+ #: admin/views/Options.php:557
1690
+ msgid ""
1691
+ "Press this button to sign in to your Instagram account. In this case, access "
1692
+ "token will be added automatically."
1693
  msgstr ""
1694
 
1695
+ #: admin/views/Options.php:561
1696
+ msgid "Sign in with Instagram"
1697
  msgstr ""
1698
 
1699
+ #: admin/views/Options.php:563
1700
+ msgid ""
1701
+ "Press this button to sign in to your Instagram account. This lets you "
1702
+ "incorporate Instagram API to your website."
1703
  msgstr ""
1704
 
1705
+ #: admin/views/Options.php:566
1706
+ msgid ""
1707
+ "Press this button to sign out from your Instagram account. The access token "
1708
+ "will reset."
 
 
 
 
 
 
 
 
 
 
1709
  msgstr ""
1710
 
1711
+ #: admin/views/Options.php:568
1712
+ msgid ""
1713
+ "Are you sure you want to reset access token, after resetting it you will "
1714
+ "need to log in with Instagram again for using plugin"
1715
  msgstr ""
1716
 
1717
+ #: admin/views/Options.php:570
1718
+ msgid "Sign out from Instagram"
1719
  msgstr ""
1720
 
1721
+ #: admin/views/Options.php:572
1722
+ msgid "Press this button to sign out from your Instagram account."
1723
  msgstr ""
1724
 
1725
+ #: admin/views/Options.php:600 admin/views/Options.php:606
1726
+ msgid "Roles"
1727
  msgstr ""
1728
 
1729
+ #: admin/views/Options.php:618
1730
+ msgid ""
1731
+ "Choose a WordPress user role which can add and edit galleries, images, "
1732
+ "gallery groups and tags."
1733
  msgstr ""
1734
 
1735
+ #: admin/views/Options.php:626
1736
+ #, fuzzy
1737
+ #| msgid "Gallery is empty."
1738
+ msgid "Gallery role restrictions"
1739
+ msgstr "Gallery is leeg."
1740
 
1741
+ #: admin/views/Options.php:631
1742
+ msgid ""
1743
+ "Enable this setting to restrict authors from modifying galleries created by "
1744
+ "other users."
1745
  msgstr ""
1746
 
1747
+ #: admin/views/Options.php:637
1748
+ #, fuzzy
1749
+ #| msgid "Gallery is empty."
1750
+ msgid "Gallery group restrictions"
1751
+ msgstr "Gallery is leeg."
1752
 
1753
+ #: admin/views/Options.php:642
1754
+ msgid ""
1755
+ "Enabling this option will restrict authors from modifying galleries groups "
1756
+ "created by other users."
1757
  msgstr ""
1758
 
1759
+ #: admin/views/Options.php:648
1760
+ msgid "Image role restrictions"
1761
  msgstr ""
1762
 
1763
+ #: admin/views/Options.php:653
1764
+ msgid ""
1765
+ "Enable this setting to restrict authors from modifying images added by other "
1766
+ "users."
1767
  msgstr ""
1768
 
1769
+ #: admin/views/Options.php:668 photo-gallery.php:1547 photo-gallery.php:1662
1770
+ msgid "Advertisement"
1771
  msgstr ""
1772
 
1773
+ #: admin/views/Options.php:674 admin/views/Shortcode.php:298
1774
+ msgid "Advertisement type"
1775
  msgstr ""
1776
 
1777
+ #: admin/views/Options.php:679 admin/views/Options.php:832
1778
+ #: admin/views/Shortcode.php:300 admin/views/Themes.php:4760
1779
+ #: admin/views/WidgetTags.php:83
1780
+ msgid "Text"
1781
  msgstr ""
1782
 
1783
+ #: admin/views/Options.php:683 admin/views/Shortcode.php:302
1784
+ msgid "Add Text or Image advertisement to your images with this option."
1785
  msgstr ""
1786
 
1787
+ #: admin/views/Options.php:688 admin/views/Shortcode.php:315
1788
+ msgid "Advertisement URL"
1789
  msgstr ""
1790
 
1791
+ #: admin/views/Options.php:696 admin/views/Options.php:698
1792
+ #: admin/views/Options.php:849 admin/views/Options.php:851
 
 
 
 
 
 
 
 
 
 
 
1793
  #, fuzzy
1794
+ #| msgid "Reset"
1795
+ msgid "Select Image"
1796
+ msgstr "Herstel"
1797
 
1798
+ #: admin/views/Options.php:700 admin/views/Options.php:853
1799
+ #: filemanager/view.php:246
1800
  #, fuzzy
1801
+ #| msgid "More"
1802
+ msgid "or"
1803
+ msgstr "Meer"
1804
 
1805
+ #: admin/views/Options.php:703 admin/views/Shortcode.php:317
1806
+ msgid ""
1807
+ "Provide the absolute URL of the image you would like to use as advertisement."
1808
  msgstr ""
1809
 
1810
+ #: admin/views/Options.php:708 admin/views/Shortcode.php:322
1811
+ msgid "Advertisement text"
1812
  msgstr ""
1813
 
1814
+ #: admin/views/Options.php:712 admin/views/Shortcode.php:324
1815
+ msgid "Write the text to add to images as advertisement."
1816
  msgstr ""
1817
 
1818
+ #: admin/views/Options.php:717 admin/views/Shortcode.php:308
1819
+ msgid "Advertisement link"
1820
  msgstr ""
1821
 
1822
+ #: admin/views/Options.php:721 admin/views/Shortcode.php:310
1823
+ msgid "Provide the link to be added to advertisement on images."
1824
  msgstr ""
1825
 
1826
+ #: admin/views/Options.php:726 admin/views/Shortcode.php:362
1827
+ msgid "Advertisement dimensions"
1828
  msgstr ""
1829
 
1830
+ #: admin/views/Options.php:731 admin/views/Shortcode.php:367
1831
+ msgid "Select the dimensions of the advertisement image."
1832
  msgstr ""
1833
 
1834
+ #: admin/views/Options.php:736 admin/views/Shortcode.php:353
1835
+ msgid "Advertisement font size"
1836
  msgstr ""
1837
 
1838
+ #: admin/views/Options.php:740 admin/views/Shortcode.php:357
1839
+ msgid "Specify the font size of the advertisement text."
1840
  msgstr ""
1841
 
1842
+ #: admin/views/Options.php:745 admin/views/Shortcode.php:331
1843
+ msgid "Advertisement font style"
1844
  msgstr ""
1845
 
1846
+ #: admin/views/Options.php:760 admin/views/Shortcode.php:345
1847
+ #: admin/views/Themes.php:408 admin/views/Themes.php:471
1848
+ #: admin/views/Themes.php:704 admin/views/Themes.php:759
1849
+ #: admin/views/Themes.php:793 admin/views/Themes.php:1028
1850
+ #: admin/views/Themes.php:1090 admin/views/Themes.php:1474
1851
+ #: admin/views/Themes.php:1535 admin/views/Themes.php:1760
1852
+ #: admin/views/Themes.php:1848 admin/views/Themes.php:2106
1853
+ #: admin/views/Themes.php:2168 admin/views/Themes.php:2223
1854
+ #: admin/views/Themes.php:2559 admin/views/Themes.php:2716
1855
+ #: admin/views/Themes.php:2797 admin/views/Themes.php:2857
1856
+ #: admin/views/Themes.php:3095 admin/views/Themes.php:3150
1857
+ #: admin/views/Themes.php:3205 admin/views/Themes.php:3341
1858
+ #: admin/views/Themes.php:3510 admin/views/Themes.php:4157
1859
+ #: admin/views/Themes.php:4299 admin/views/Themes.php:4348
1860
+ #: admin/views/Themes.php:4424 admin/views/Themes.php:4608
1861
+ #: admin/views/Themes.php:4993
1862
+ msgid "Google fonts"
1863
  msgstr ""
1864
 
1865
+ #: admin/views/Options.php:762 admin/views/Options.php:1144
1866
+ #: admin/views/Options.php:1362 admin/views/Options.php:1598
1867
+ #: admin/views/Options.php:1795 admin/views/Options.php:2035
1868
+ #: admin/views/Options.php:2194 admin/views/Options.php:2371
1869
+ #: admin/views/Options.php:2561 admin/views/Options.php:2578
1870
+ #: admin/views/Options.php:2861 admin/views/Options.php:2878
1871
+ #: admin/views/Options.php:3101 admin/views/Options.php:3118
1872
+ #: admin/views/Shortcode.php:347 admin/views/Themes.php:81
1873
+ #: admin/views/Themes.php:112 admin/views/Themes.php:410
1874
+ #: admin/views/Themes.php:473 admin/views/Themes.php:706
1875
+ #: admin/views/Themes.php:761 admin/views/Themes.php:795
1876
+ #: admin/views/Themes.php:1030 admin/views/Themes.php:1092
1877
+ #: admin/views/Themes.php:1476 admin/views/Themes.php:1537
1878
+ #: admin/views/Themes.php:1762 admin/views/Themes.php:1850
1879
+ #: admin/views/Themes.php:2108 admin/views/Themes.php:2170
1880
+ #: admin/views/Themes.php:2225 admin/views/Themes.php:2561
1881
+ #: admin/views/Themes.php:2718 admin/views/Themes.php:2799
1882
+ #: admin/views/Themes.php:2859 admin/views/Themes.php:3097
1883
+ #: admin/views/Themes.php:3152 admin/views/Themes.php:3207
1884
+ #: admin/views/Themes.php:3343 admin/views/Themes.php:3512
1885
+ #: admin/views/Themes.php:4159 admin/views/Themes.php:4301
1886
+ #: admin/views/Themes.php:4350 admin/views/Themes.php:4426
1887
+ #: admin/views/Themes.php:4610 admin/views/Themes.php:4995
1888
+ msgid "Default"
1889
+ msgstr "verstek"
1890
 
1891
+ #: admin/views/Options.php:764 admin/views/Shortcode.php:348
1892
+ msgid "Select the font family of the advertisement text."
1893
  msgstr ""
1894
 
1895
+ #: admin/views/Options.php:769 admin/views/Shortcode.php:372
1896
+ msgid "Advertisement color"
1897
  msgstr ""
1898
 
1899
+ #: admin/views/Options.php:773 admin/views/Shortcode.php:374
1900
+ msgid "Choose the color for the advertisement text on images."
1901
  msgstr ""
1902
 
1903
+ #: admin/views/Options.php:778 admin/views/Shortcode.php:381
1904
+ msgid "Advertisement opacity"
1905
+ msgstr ""
 
 
1906
 
1907
+ #: admin/views/Options.php:782 admin/views/Shortcode.php:385
1908
+ msgid ""
1909
+ "Specify the opacity of the advertisement. The value must be between 0 to 100."
1910
+ msgstr ""
 
1911
 
1912
+ #: admin/views/Options.php:787 admin/views/Shortcode.php:390
1913
+ msgid "Advertisement position"
1914
  msgstr ""
1915
 
1916
+ #: admin/views/Options.php:810 admin/views/Shortcode.php:410
1917
+ msgid "Mark the position where the advertisement should appear on images."
1918
  msgstr ""
1919
 
1920
+ #: admin/views/Options.php:827
1921
+ msgid "Watermark type"
1922
  msgstr ""
1923
 
1924
+ #: admin/views/Options.php:836
1925
+ msgid "Add Text or Image watermark to your images with this option."
1926
  msgstr ""
1927
 
1928
+ #: admin/views/Options.php:841
1929
+ msgid "Watermark URL"
1930
  msgstr ""
1931
 
1932
+ #: admin/views/Options.php:856
1933
+ msgid ""
1934
+ "Provide the absolute URL of the image you would like to use as watermark."
1935
  msgstr ""
1936
 
1937
+ #: admin/views/Options.php:856
1938
+ msgid "Only .png format is supported."
1939
  msgstr ""
1940
 
1941
+ #: admin/views/Options.php:861
1942
+ msgid "Watermark text"
1943
+ msgstr ""
 
 
1944
 
1945
+ #: admin/views/Options.php:865
1946
+ msgid "Provide the text to add to images as watermark."
1947
  msgstr ""
1948
 
1949
+ #: admin/views/Options.php:870
1950
+ msgid "Watermark size"
1951
  msgstr ""
1952
 
1953
+ #: admin/views/Options.php:874
1954
+ msgid "Specify the size of watermark on images in percent."
1955
  msgstr ""
1956
 
1957
+ #: admin/views/Options.php:879
1958
+ msgid "Watermark font size"
 
1959
  msgstr ""
1960
 
1961
+ #: admin/views/Options.php:883
1962
+ msgid "Specify the font size of the watermark text."
1963
  msgstr ""
1964
 
1965
+ #: admin/views/Options.php:888
1966
+ msgid "Watermark font style"
1967
+ msgstr ""
 
 
1968
 
1969
+ #: admin/views/Options.php:912
1970
+ msgid "Select the font family of the watermark text."
1971
+ msgstr ""
 
 
1972
 
1973
+ #: admin/views/Options.php:917
1974
+ msgid "Watermark color"
1975
+ msgstr ""
 
 
1976
 
1977
+ #: admin/views/Options.php:921
1978
+ msgid "Choose the color for the watermark text on images."
1979
  msgstr ""
1980
 
1981
+ #: admin/views/Options.php:926
1982
+ msgid "Watermark opacity"
1983
  msgstr ""
1984
 
1985
+ #: admin/views/Options.php:930
1986
+ msgid ""
1987
+ "Specify the opacity of the watermark. The value must be between 0 to 100."
1988
  msgstr ""
1989
 
1990
+ #: admin/views/Options.php:935
1991
+ msgid "Watermark position"
1992
  msgstr ""
1993
 
1994
+ #: admin/views/Options.php:956 framework/WDWLibrary.php:2442
1995
+ msgid "Set watermark"
1996
  msgstr ""
1997
 
1998
+ #: admin/views/Options.php:958
1999
+ msgid "Set Watermark"
2000
  msgstr ""
2001
 
2002
+ #: admin/views/Options.php:959
2003
+ msgid "Reset watermark"
2004
+ msgstr ""
 
 
2005
 
2006
+ #: admin/views/Options.php:961
2007
+ msgid "Reset Watermark"
2008
  msgstr ""
2009
 
2010
+ #: admin/views/Options.php:963
2011
+ msgid "Mark the position where the watermark should appear on images."
2012
  msgstr ""
2013
 
2014
+ #: admin/views/Options.php:1087 admin/views/Options.php:2513
2015
+ #: admin/views/Options.php:3053 admin/views/Shortcode.php:2152
2016
+ msgid "Thumbnail dimensions"
2017
  msgstr ""
2018
 
2019
+ #: admin/views/Options.php:1092 admin/views/Options.php:2518
2020
+ #: admin/views/Options.php:2818 admin/views/Options.php:3058
2021
+ msgid ""
2022
+ "The default dimensions of thumbnails which will display on published "
2023
+ "galleries."
2024
  msgstr ""
2025
 
2026
+ #: admin/views/Options.php:1097 admin/views/Options.php:1314
2027
+ #: admin/views/Options.php:2504 admin/views/Options.php:2805
2028
+ #: admin/views/Options.php:3044 admin/views/Shortcode.php:2154
2029
+ msgid "Number of image columns"
2030
  msgstr ""
2031
 
2032
+ #: admin/views/Options.php:1101 admin/views/Options.php:2508
2033
+ #: admin/views/Options.php:2809 admin/views/Options.php:3048
2034
  msgid ""
2035
+ "Set the maximum number of image columns in galleries. Note, that the parent "
2036
+ "container needs to be large enough to display all columns."
2037
  msgstr ""
2038
 
2039
+ #: admin/views/Options.php:1106 admin/views/Options.php:1324
2040
+ #: admin/views/Options.php:1560 admin/views/Options.php:2154
2041
+ #: admin/views/Options.php:2523 admin/views/Options.php:2823
2042
+ #: admin/views/Options.php:3063
2043
+ msgid "Pagination"
2044
  msgstr ""
2045
 
2046
+ #: admin/views/Options.php:1109 admin/views/Options.php:1327
2047
+ #: admin/views/Options.php:1563 admin/views/Options.php:2157
2048
+ #: admin/views/Options.php:2526 admin/views/Options.php:2826
2049
+ #: admin/views/Options.php:3066
2050
+ msgid "Simple"
2051
  msgstr ""
2052
 
2053
+ #: admin/views/Options.php:1110 admin/views/Options.php:1328
2054
+ #: admin/views/Options.php:1564 admin/views/Options.php:2158
2055
+ #: admin/views/Options.php:2527 admin/views/Options.php:2827
2056
+ #: admin/views/Options.php:3067
2057
+ #, fuzzy
2058
+ #| msgid "Load More..."
2059
+ msgid "Load More"
2060
+ msgstr "Laai meer..."
2061
+
2062
+ #: admin/views/Options.php:1111 admin/views/Options.php:1329
2063
+ #: admin/views/Options.php:1565 admin/views/Options.php:2159
2064
+ #: admin/views/Options.php:2528 admin/views/Options.php:2828
2065
+ #: admin/views/Options.php:3068
2066
+ msgid "Scroll Load"
2067
  msgstr ""
2068
 
2069
+ #: admin/views/Options.php:1113 admin/views/Options.php:1331
2070
+ #: admin/views/Options.php:1567 admin/views/Options.php:2161
2071
+ #: admin/views/Options.php:2530 admin/views/Options.php:2830
2072
+ #: admin/views/Options.php:3070
2073
+ msgid "This option removes all types of pagination from your galleries."
2074
  msgstr ""
2075
 
2076
+ #: admin/views/Options.php:1114 admin/views/Options.php:1332
2077
+ #: admin/views/Options.php:1568 admin/views/Options.php:2162
2078
+ #: admin/views/Options.php:2531 admin/views/Options.php:2831
2079
+ #: admin/views/Options.php:3071
2080
+ msgid ""
2081
+ "Activating this option will add page numbers and next/previous buttons to "
2082
+ "your galleries."
2083
  msgstr ""
2084
 
2085
+ #: admin/views/Options.php:1115 admin/views/Options.php:1333
2086
+ #: admin/views/Options.php:1569 admin/views/Options.php:2163
2087
+ #: admin/views/Options.php:2532 admin/views/Options.php:2832
2088
+ #: admin/views/Options.php:3072
2089
+ msgid ""
2090
+ "Adding a Load More button, you can let users display a new set of images "
2091
+ "from your galleries."
2092
  msgstr ""
2093
 
2094
+ #: admin/views/Options.php:1116 admin/views/Options.php:1334
2095
+ #: admin/views/Options.php:1570 admin/views/Options.php:2164
2096
+ #: admin/views/Options.php:2533 admin/views/Options.php:2833
2097
+ #: admin/views/Options.php:3073
2098
+ msgid ""
2099
+ "With this option, users can load new images of your galleries simply by "
2100
+ "scrolling down."
2101
  msgstr ""
2102
 
2103
+ #: admin/views/Options.php:1121 admin/views/Options.php:1339
2104
+ #: admin/views/Options.php:1575 admin/views/Options.php:2170
2105
+ #: admin/views/Options.php:2547 admin/views/Options.php:2847
2106
+ #: admin/views/Options.php:3087
2107
+ msgid "Images per page"
2108
  msgstr ""
2109
 
2110
+ #: admin/views/Options.php:1125 admin/views/Options.php:1343
2111
+ #: admin/views/Options.php:1579 admin/views/Options.php:2551
2112
+ #: admin/views/Options.php:2851 admin/views/Options.php:3091
2113
+ msgid ""
2114
+ "Specify the number of images to display per page on galleries. Setting this "
2115
+ "option to 0 shows all items."
2116
  msgstr ""
2117
 
2118
+ #: admin/views/Options.php:1130 admin/views/Options.php:1348
2119
+ #: admin/views/Options.php:1584 admin/views/Options.php:2180
2120
+ msgid "Images per load"
2121
  msgstr ""
2122
 
2123
+ #: admin/views/Options.php:1134 admin/views/Options.php:1352
2124
+ #: admin/views/Options.php:1588 admin/views/Options.php:2184
2125
+ msgid "Specify the number of images to display per load on galleries."
2126
  msgstr ""
2127
 
2128
+ #: admin/views/Options.php:1142 admin/views/Options.php:1359
2129
+ #: admin/views/Options.php:1595 admin/views/Options.php:1792
2130
+ #: admin/views/Options.php:2032 admin/views/Options.php:2191
2131
+ #: admin/views/Options.php:2368
2132
+ #, fuzzy
2133
+ #| msgid "Order by: "
2134
+ msgid "Order by"
2135
+ msgstr "Om deur"
2136
+
2137
+ #: admin/views/Options.php:1156 admin/views/Options.php:1374
2138
+ #: admin/views/Options.php:1610 admin/views/Options.php:1807
2139
+ #: admin/views/Options.php:2047 admin/views/Options.php:2206
2140
+ #: admin/views/Options.php:2383 admin/views/Options.php:2568
2141
+ #: admin/views/Options.php:2590 admin/views/Options.php:2868
2142
+ #: admin/views/Options.php:2890 admin/views/Options.php:3108
2143
+ #: admin/views/Options.php:3130
2144
+ msgid "Ascending"
2145
  msgstr ""
2146
 
2147
+ #: admin/views/Options.php:1157 admin/views/Options.php:1375
2148
+ #: admin/views/Options.php:1611 admin/views/Options.php:1808
2149
+ #: admin/views/Options.php:2048 admin/views/Options.php:2207
2150
+ #: admin/views/Options.php:2384 admin/views/Options.php:2569
2151
+ #: admin/views/Options.php:2591 admin/views/Options.php:2869
2152
+ #: admin/views/Options.php:2891 admin/views/Options.php:3109
2153
+ #: admin/views/Options.php:3131
2154
+ msgid "Descending"
2155
  msgstr ""
2156
 
2157
+ #: admin/views/Options.php:1160 admin/views/Options.php:1378
2158
+ #: admin/views/Options.php:1614 admin/views/Options.php:1811
2159
+ #: admin/views/Options.php:2051 admin/views/Options.php:2210
2160
+ #: admin/views/Options.php:2387 admin/views/Options.php:2594
2161
+ #: admin/views/Options.php:2894 admin/views/Options.php:3134
2162
+ msgid ""
2163
+ "Select the parameter and order direction to sort the gallery images with. E."
2164
+ "g. Title and Ascending."
2165
  msgstr ""
2166
 
2167
+ #: admin/views/Options.php:1165 admin/views/Options.php:1383
2168
+ #: admin/views/Options.php:1619 admin/views/Options.php:2056
2169
+ #: admin/views/Options.php:2215 admin/views/Options.php:2599
2170
+ #: admin/views/Options.php:2899 admin/views/Options.php:3139
2171
+ msgid "Show search box"
2172
  msgstr ""
2173
 
2174
+ #: admin/views/Options.php:1170 admin/views/Options.php:1388
2175
+ #: admin/views/Options.php:1624 admin/views/Options.php:2061
2176
+ #: admin/views/Options.php:2220 admin/views/Options.php:2604
2177
+ #: admin/views/Options.php:2904 admin/views/Options.php:3144
2178
+ msgid ""
2179
+ "Enable this option to display a search box with your gallery or gallery "
2180
+ "group."
2181
  msgstr ""
2182
 
2183
+ #: admin/views/Options.php:1175 admin/views/Options.php:1393
2184
+ #: admin/views/Options.php:1629 admin/views/Options.php:2066
2185
+ #: admin/views/Options.php:2225 admin/views/Options.php:2609
2186
+ #: admin/views/Options.php:2909 admin/views/Options.php:3149
2187
+ msgid "Add placeholder to search"
2188
  msgstr ""
2189
 
2190
+ #: admin/views/Options.php:1183 admin/views/Options.php:1401
2191
+ #: admin/views/Options.php:1637 admin/views/Options.php:2074
2192
+ #: admin/views/Options.php:2233 admin/views/Options.php:2617
2193
+ #: admin/views/Options.php:2917 admin/views/Options.php:3157
2194
+ msgid "Search box maximum width"
2195
  msgstr ""
2196
 
2197
+ #: admin/views/Options.php:1191 admin/views/Options.php:1409
2198
+ #: admin/views/Options.php:1645 admin/views/Options.php:2082
2199
+ #: admin/views/Options.php:2241 admin/views/Options.php:2625
2200
+ #: admin/views/Options.php:2925 admin/views/Options.php:3165
2201
+ msgid "Show \"Order by\" dropdown list"
2202
  msgstr ""
2203
 
2204
+ #: admin/views/Options.php:1196 admin/views/Options.php:1414
2205
+ #: admin/views/Options.php:1650 admin/views/Options.php:2087
2206
+ #: admin/views/Options.php:2246 admin/views/Options.php:2630
2207
+ #: admin/views/Options.php:2930 admin/views/Options.php:3170
2208
+ msgid ""
2209
+ "Activate this dropdown box to let users browse your gallery images with "
2210
+ "different ordering options."
2211
  msgstr ""
2212
 
2213
+ #: admin/views/Options.php:1201 admin/views/Options.php:1419
2214
+ #: admin/views/Options.php:1655 admin/views/Options.php:2092
2215
+ #: admin/views/Options.php:2251 admin/views/Options.php:2635
2216
+ #: admin/views/Options.php:2935 admin/views/Options.php:3175
2217
+ #, fuzzy
2218
+ #| msgid "Show rating"
2219
+ msgid "Show tag box"
2220
+ msgstr "Wys gradering"
2221
+
2222
+ #: admin/views/Options.php:1206 admin/views/Options.php:1424
2223
+ #: admin/views/Options.php:1660 admin/views/Options.php:2097
2224
+ #: admin/views/Options.php:2256 admin/views/Options.php:2640
2225
+ #: admin/views/Options.php:2940 admin/views/Options.php:3180
2226
+ msgid ""
2227
+ "Enable Tag Box to allow users to filter the gallery images by their tags."
2228
  msgstr ""
2229
 
2230
+ #: admin/views/Options.php:1213 admin/views/Options.php:1431
2231
+ #: admin/views/Options.php:1667 admin/views/Options.php:2104
2232
+ #: admin/views/Options.php:2263 admin/views/Options.php:2667
2233
+ msgid "Show gallery title"
2234
  msgstr ""
2235
 
2236
+ #: admin/views/Options.php:1218 admin/views/Options.php:1436
2237
+ #: admin/views/Options.php:1672 admin/views/Options.php:2109
2238
+ #: admin/views/Options.php:2268
2239
  msgid ""
2240
+ "Allow users to see the titles of your galleries by enabling this setting."
 
2241
  msgstr ""
2242
 
2243
+ #: admin/views/Options.php:1223 admin/views/Options.php:1441
2244
+ #: admin/views/Options.php:1677 admin/views/Options.php:2114
2245
+ #: admin/views/Options.php:2273
2246
+ msgid "Show gallery description"
2247
  msgstr ""
2248
 
2249
+ #: admin/views/Options.php:1228 admin/views/Options.php:1446
2250
+ #: admin/views/Options.php:1682 admin/views/Options.php:2119
2251
+ #: admin/views/Options.php:2278
2252
+ msgid "Display the descriptions of your galleries by activating this option."
2253
  msgstr ""
2254
 
2255
+ #: admin/views/Options.php:1233 admin/views/Options.php:1451
2256
+ #: admin/views/Options.php:1687 admin/views/Options.php:1879
2257
+ #: admin/views/Options.php:2011 admin/views/Options.php:2283
2258
+ #: admin/views/Options.php:2415 admin/views/Options.php:2726
2259
+ #: admin/views/Options.php:2967 admin/views/Options.php:3265
2260
+ msgid "Show image title"
2261
  msgstr ""
2262
 
2263
+ #: admin/views/Options.php:1235 admin/views/Options.php:1275
2264
+ #: admin/views/Options.php:1453 admin/views/Options.php:1504
2265
+ #: admin/views/Options.php:1689 admin/views/Options.php:1728
2266
+ #: admin/views/Options.php:2669 admin/views/Options.php:2729
2267
+ #: admin/views/Options.php:2771 admin/views/Options.php:2969
2268
+ #: admin/views/Options.php:2999 admin/views/Options.php:3268
2269
+ #: admin/views/Options.php:3310
2270
+ #, fuzzy
2271
+ #| msgid "Show info"
2272
+ msgid "Show on hover"
2273
+ msgstr "Wys info"
2274
 
2275
+ #: admin/views/Options.php:1236 admin/views/Options.php:1276
2276
+ #: admin/views/Options.php:1454 admin/views/Options.php:2670
2277
+ #: admin/views/Options.php:2731 admin/views/Options.php:2772
2278
+ #: admin/views/Options.php:2970 admin/views/Options.php:3270
2279
+ #: admin/views/Options.php:3311
2280
+ msgid "Always show"
2281
  msgstr ""
2282
 
2283
+ #: admin/views/Options.php:1237 admin/views/Options.php:1277
2284
+ #: admin/views/Options.php:1455 admin/views/Options.php:1505
2285
+ #: admin/views/Options.php:1690 admin/views/Options.php:1729
2286
+ #: admin/views/Options.php:2671 admin/views/Options.php:2733
2287
+ #: admin/views/Options.php:2773 admin/views/Options.php:2971
2288
+ #: admin/views/Options.php:3000 admin/views/Options.php:3272
2289
+ #: admin/views/Options.php:3312
2290
+ msgid "Don't show"
2291
  msgstr ""
2292
 
2293
+ #: admin/views/Options.php:1239 admin/views/Options.php:1457
2294
+ #: admin/views/Options.php:1692 admin/views/Options.php:2735
2295
+ #: admin/views/Options.php:2973 admin/views/Options.php:3274
2296
+ msgid "Choose to show/hide titles of images, or display them on hover."
2297
  msgstr ""
2298
 
2299
+ #: admin/views/Options.php:1244 admin/views/Options.php:1473
2300
+ #: admin/views/Options.php:1697 admin/views/Options.php:2740
2301
+ #: admin/views/Options.php:3279
2302
+ msgid "Show Play icon on video thumbnails"
 
 
 
 
 
 
 
 
 
 
 
 
2303
  msgstr ""
2304
 
2305
+ #: admin/views/Options.php:1249 admin/views/Options.php:1478
2306
+ #: admin/views/Options.php:1702 admin/views/Options.php:2745
2307
+ #: admin/views/Options.php:3284
2308
+ msgid "Activate this option to add a Play button on thumbnails of videos."
2309
+ msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2310
 
2311
+ #: admin/views/Options.php:1254 admin/views/Options.php:1483
2312
+ #: admin/views/Options.php:1707 admin/views/Options.php:1982
2313
+ #: admin/views/Options.php:2124 admin/views/Options.php:2305
2314
+ #: admin/views/Options.php:2459 admin/views/Options.php:2750
2315
+ #: admin/views/Options.php:2978 admin/views/Options.php:3289
2316
+ msgid "Enable bulk download button"
2317
  msgstr ""
2318
 
2319
+ #: admin/views/Options.php:1259 admin/views/Options.php:1488
2320
+ #: admin/views/Options.php:1712 admin/views/Options.php:1987
2321
+ #: admin/views/Options.php:2129 admin/views/Options.php:2310
2322
+ #: admin/views/Options.php:2464 admin/views/Options.php:2755
2323
+ #: admin/views/Options.php:2983 admin/views/Options.php:3294
2324
+ msgid ""
2325
+ "Activate this setting to let users download all images of your gallery with "
2326
+ "a click."
2327
  msgstr ""
2328
 
2329
+ #: admin/views/Options.php:1263 admin/views/Options.php:1492
2330
+ #: admin/views/Options.php:1716 admin/views/Options.php:1991
2331
+ #: admin/views/Options.php:2133 admin/views/Options.php:2314
2332
+ #: admin/views/Options.php:2468 admin/views/Options.php:2759
2333
+ #: admin/views/Options.php:2987 admin/views/Options.php:3298
2334
+ msgid ""
2335
+ "Photo Gallery Export will not work correctly, as ZipArchive PHP extension is "
2336
+ "disabled on your website. Please contact your hosting provider and ask them "
2337
+ "to enable it."
 
 
 
 
 
 
 
 
 
2338
  msgstr ""
2339
 
2340
+ #: admin/views/Options.php:1273 admin/views/Options.php:1502
2341
+ #: admin/views/Options.php:1726 admin/views/Options.php:2769
2342
+ #: admin/views/Options.php:2997 admin/views/Options.php:3308
2343
+ #, fuzzy
2344
+ #| msgid "Show comments"
2345
+ msgid "Show ecommerce icon"
2346
+ msgstr "Wys kommentaar"
2347
+
2348
+ #: admin/views/Options.php:1279 admin/views/Options.php:1507
2349
+ #: admin/views/Options.php:1731 admin/views/Options.php:2775
2350
+ #: admin/views/Options.php:3002 admin/views/Options.php:3314
2351
+ msgid "Choose to show/hide ecommerce icon, or display them on hover."
2352
  msgstr ""
2353
 
2354
+ #: admin/views/Options.php:1305 admin/views/Options.php:1551
2355
+ msgid "Thumbnail size"
 
2356
  msgstr ""
2357
 
2358
+ #: admin/views/Options.php:1309 admin/views/Options.php:1555
2359
+ msgid ""
2360
+ "The default size of thumbnails which will display on published galleries."
2361
  msgstr ""
2362
 
2363
+ #: admin/views/Options.php:1315 admin/views/Shortcode.php:2156
2364
+ msgid "Number of image rows"
 
2365
  msgstr ""
2366
 
2367
+ #: admin/views/Options.php:1319
2368
+ msgid ""
2369
+ "Set the maximum number of image columns (or rows) in galleries. Note, that "
2370
+ "the parent container needs to be large enough to display all columns."
2371
  msgstr ""
2372
 
2373
+ #: admin/views/Options.php:1462
2374
+ #, fuzzy
2375
+ #| msgid "Show comments"
2376
+ msgid "Show image descriptions"
2377
+ msgstr "Wys kommentaar"
2378
+
2379
+ #: admin/views/Options.php:1467
2380
+ msgid "Enable this setting to display descriptions under images."
2381
  msgstr ""
2382
 
2383
+ #: admin/views/Options.php:1519 admin/views/Options.php:2694
2384
+ #: admin/views/Options.php:3233
2385
+ #, fuzzy
2386
+ #| msgid "Gallery is empty."
2387
+ msgid "Mosaic gallery type"
2388
+ msgstr "Gallery is leeg."
2389
+
2390
+ #: admin/views/Options.php:1521 admin/views/Options.php:2696
2391
+ #: admin/views/Options.php:3235
2392
+ msgid "Vertical"
2393
  msgstr ""
2394
 
2395
+ #: admin/views/Options.php:1522 admin/views/Options.php:2697
2396
+ #: admin/views/Options.php:3236
2397
+ msgid "Horizontal"
2398
  msgstr ""
2399
 
2400
+ #: admin/views/Options.php:1524 admin/views/Options.php:2699
2401
+ #: admin/views/Options.php:3238
2402
+ msgid "Select the type of Mosaic galleries, Vertical or Horizontal."
2403
  msgstr ""
2404
 
2405
+ #: admin/views/Options.php:1530 admin/views/Options.php:2705
2406
+ #: admin/views/Options.php:3244
2407
+ msgid "Resizable mosaic"
2408
  msgstr ""
2409
 
2410
+ #: admin/views/Options.php:1535 admin/views/Options.php:2710
2411
+ #: admin/views/Options.php:3249
2412
+ msgid ""
2413
+ "If this setting is enabled, Photo Gallery resizes all thumbnail images on "
2414
+ "Mosaic galleries, without modifying their initial display."
2415
  msgstr ""
2416
 
2417
+ #: admin/views/Options.php:1541 admin/views/Options.php:2716
2418
+ #: admin/views/Options.php:3255
2419
+ msgid "Width of mosaic galleries"
2420
  msgstr ""
2421
 
2422
+ #: admin/views/Options.php:1545 admin/views/Options.php:2720
2423
+ #: admin/views/Options.php:3259
2424
+ msgid ""
2425
+ "The total width of mosaic galleries as a percentage of container's width."
2426
  msgstr ""
2427
 
2428
+ #: admin/views/Options.php:1743
2429
+ msgid "Slideshow effect"
2430
  msgstr ""
2431
 
2432
+ #: admin/views/Options.php:1750 admin/views/Options.php:3381
2433
+ #: admin/views/WidgetSlideshow.php:105
2434
+ msgid "This effect is disabled in free version."
2435
  msgstr ""
2436
 
2437
+ #: admin/views/Options.php:1757
2438
+ msgid "Select the animation effect for your slideshow."
2439
  msgstr ""
2440
 
2441
+ #: admin/views/Options.php:1762 admin/views/Options.php:3393
2442
+ msgid "Effect duration"
 
 
2443
  msgstr ""
2444
 
2445
+ #: admin/views/Options.php:1766
2446
+ msgid "Set the duration of your slideshow animation effect."
2447
  msgstr ""
2448
 
2449
+ #: admin/views/Options.php:1771 admin/views/Options.php:2403
2450
+ #: admin/views/Options.php:3413
2451
+ msgid "Time interval"
2452
  msgstr ""
2453
 
2454
+ #: admin/views/Options.php:1775
2455
+ msgid ""
2456
+ "Specify the time interval between slides in Photo Gallery's Slideshow view."
2457
  msgstr ""
2458
 
2459
+ #: admin/views/Options.php:1780
2460
+ msgid "Slideshow dimensions"
2461
  msgstr ""
2462
 
2463
+ #: admin/views/Options.php:1785
2464
+ msgid "Set the default dimensions of your slideshow galleries."
 
2465
  msgstr ""
2466
 
2467
+ #: admin/views/Options.php:1816 admin/views/Options.php:2392
2468
+ msgid "Enable autoplay"
 
2469
  msgstr ""
2470
 
2471
+ #: admin/views/Options.php:1821
2472
+ msgid "Activate this option to autoplay slideshow galleries."
 
 
 
 
2473
  msgstr ""
2474
 
2475
+ #: admin/views/Options.php:1826
2476
+ msgid "Enable shuffle"
 
2477
  msgstr ""
2478
 
2479
+ #: admin/views/Options.php:1831
2480
+ msgid "The slideshow images will be shuffled in case this setting is enabled."
2481
  msgstr ""
2482
 
2483
+ #: admin/views/Options.php:1836 admin/views/Options.php:3445
2484
+ msgid "Enable control buttons"
2485
  msgstr ""
2486
 
2487
+ #: admin/views/Options.php:1841
2488
+ msgid "Enable this option to show control buttons on your slideshow galleries."
 
2489
  msgstr ""
2490
 
2491
+ #: admin/views/Options.php:1846 admin/views/Options.php:3569
2492
+ msgid "Show Next / Previous buttons"
 
 
 
2493
  msgstr ""
2494
 
2495
+ #: admin/views/Options.php:1848 admin/views/Options.php:3571
2496
+ msgid "On hover"
 
 
 
 
 
 
 
 
 
2497
  msgstr ""
2498
 
2499
+ #: admin/views/Options.php:1849 admin/views/Options.php:3572
2500
+ msgid "Always"
2501
  msgstr ""
2502
 
2503
+ #: admin/views/Options.php:1851
2504
+ msgid ""
2505
+ "Display Next/Previous buttons on your slideshow galleries activating this "
2506
+ "setting."
2507
  msgstr ""
2508
 
2509
+ #: admin/views/Options.php:1858
2510
+ msgid "Enable slideshow filmstrip"
2511
  msgstr ""
2512
 
2513
+ #: admin/views/Options.php:1863
2514
+ msgid ""
2515
+ "Add a filmstrip with image thumbnails to your slideshow galleries by "
2516
+ "enabling this option."
2517
  msgstr ""
2518
 
2519
+ #: admin/views/Options.php:1869
2520
+ msgid "Slideshow filmstrip size"
2521
  msgstr ""
2522
 
2523
+ #: admin/views/Options.php:1873 admin/views/Options.php:3437
2524
+ msgid ""
2525
+ "Set the size of your filmstrip. If the filmstrip is horizontal, this "
2526
+ "indicates its height, whereas for vertical filmstrips it sets the width."
2527
  msgstr ""
2528
 
2529
+ #: admin/views/Options.php:1884
2530
+ msgid "Enable this setting to display titles of images in Slideshow view."
2531
  msgstr ""
2532
 
2533
+ #: admin/views/Options.php:1889
2534
+ msgid "Title position"
2535
  msgstr ""
2536
 
2537
+ #: admin/views/Options.php:1911
2538
+ msgid "Set the position of image titles in Slideshow view."
2539
  msgstr ""
2540
 
2541
+ #: admin/views/Options.php:1916
2542
+ msgid "Full width title"
2543
  msgstr ""
2544
 
2545
+ #: admin/views/Options.php:1921
2546
+ msgid "Display image title based on the slideshow dimensions."
2547
  msgstr ""
2548
 
2549
+ #: admin/views/Options.php:1926 admin/views/Options.php:2020
2550
+ #: admin/views/Options.php:2294
2551
+ #, fuzzy
2552
+ #| msgid "Show comments"
2553
+ msgid "Show image description"
2554
+ msgstr "Wys kommentaar"
2555
+
2556
+ #: admin/views/Options.php:1931
2557
+ msgid "Enable this setting to show descriptions of images in Slideshow view."
2558
  msgstr ""
2559
 
2560
+ #: admin/views/Options.php:1936
2561
+ msgid "Description position"
2562
  msgstr ""
2563
 
2564
+ #: admin/views/Options.php:1958
2565
+ msgid "Set the position of image descriptions in Slideshow view."
2566
  msgstr ""
2567
 
2568
+ #: admin/views/Options.php:1963
2569
+ msgid "Enable slideshow Music"
2570
+ msgstr ""
 
 
2571
 
2572
+ #: admin/views/Options.php:1968
2573
+ msgid ""
2574
+ "Enabling this option, you can have music playing along with your slideshow."
2575
  msgstr ""
2576
 
2577
+ #: admin/views/Options.php:1973
2578
+ msgid "Audio URL"
2579
  msgstr ""
2580
 
2581
+ #: admin/views/Options.php:1977
2582
+ msgid ""
2583
+ "Provide the absolute URL of the audio file you would like to play with your "
2584
+ "slideshow."
2585
  msgstr ""
2586
 
2587
+ #: admin/views/Options.php:2002 admin/views/Options.php:2144
2588
+ msgid "Image width"
 
 
2589
  msgstr ""
2590
 
2591
+ #: admin/views/Options.php:2006
2592
+ msgid "Specify the default width of images in Image Browser view."
2593
  msgstr ""
2594
 
2595
+ #: admin/views/Options.php:2025
2596
+ msgid "Enable this setting to display titles of images in Image Browser view."
2597
  msgstr ""
2598
 
2599
+ #: admin/views/Options.php:2148
2600
+ msgid "Specify the default width of images in Blog Style view."
2601
  msgstr ""
2602
 
2603
+ #: admin/views/Options.php:2174
2604
+ msgid "Select the number of images displayed per page in Blog Style view."
2605
+ msgstr ""
 
 
2606
 
2607
+ #: admin/views/Options.php:2288
2608
+ msgid "Enable this setting to display titles of images in Blog Style view."
2609
+ msgstr ""
 
 
 
2610
 
2611
+ #: admin/views/Options.php:2299
2612
+ msgid "Enable this setting to show descriptions of images in Blog Style view."
 
 
 
2613
  msgstr ""
2614
 
2615
+ #: admin/views/Options.php:2325
2616
+ msgid "Max. number of images"
 
2617
  msgstr ""
2618
 
2619
+ #: admin/views/Options.php:2329
2620
+ msgid "Set the maximum number of images that are shown with Carousel display."
2621
  msgstr ""
2622
 
2623
+ #: admin/views/Options.php:2340
2624
+ msgid "Specify the dimensions of carousel images in pixels."
2625
  msgstr ""
2626
 
2627
+ #: admin/views/Options.php:2346
2628
+ msgid "Carousel ratio"
2629
  msgstr ""
2630
 
2631
+ #: admin/views/Options.php:2350
2632
  msgid ""
2633
+ "This option defines the proportion of dimensions between neighboring images "
2634
+ "in the carousel."
2635
  msgstr ""
2636
 
2637
+ #: admin/views/Options.php:2356
2638
+ msgid "Fixed width"
 
2639
  msgstr ""
2640
 
2641
+ #: admin/views/Options.php:2360
2642
+ msgid "Specify the fixed width of Carousel gallery container."
2643
  msgstr ""
2644
 
2645
+ #: admin/views/Options.php:2397
2646
+ msgid "Activate this option to autoplay Carousel galleries."
2647
  msgstr ""
2648
 
2649
+ #: admin/views/Options.php:2407
2650
+ msgid ""
2651
+ "Specify the time interval between rotations in Photo Gallery's Carousel view."
2652
  msgstr ""
2653
 
2654
+ #: admin/views/Options.php:2420
2655
+ msgid ""
2656
+ "Display image titles in Photo Gallery Carousel view by activating this "
2657
+ "option."
2658
  msgstr ""
2659
 
2660
+ #: admin/views/Options.php:2426
2661
+ msgid "Container fit"
2662
  msgstr ""
2663
 
2664
+ #: admin/views/Options.php:2431
2665
+ msgid ""
2666
+ "Enabling this setting fits the images inside their container on Carousel "
2667
+ "galleries with fixed width."
2668
  msgstr ""
2669
 
2670
+ #: admin/views/Options.php:2437
2671
+ msgid "Next/Previous buttons"
2672
  msgstr ""
2673
 
2674
+ #: admin/views/Options.php:2442
2675
+ msgid ""
2676
+ "Enable this setting to display Next/Previous buttons on your galleries with "
2677
+ "Carousel view."
2678
  msgstr ""
2679
 
2680
+ #: admin/views/Options.php:2448
2681
+ msgid "Play/Pause buttons"
2682
  msgstr ""
2683
 
2684
+ #: admin/views/Options.php:2453
2685
+ msgid "Activate this to show Play/Pause buttons on your Carousel galleries."
 
 
 
 
 
 
 
 
 
 
 
 
2686
  msgstr ""
2687
 
2688
+ #: admin/views/Options.php:2485 admin/views/Options.php:2787
2689
+ msgid "Number of gallery group columns"
2690
  msgstr ""
2691
 
2692
+ #: admin/views/Options.php:2489 admin/views/Options.php:2791
2693
+ msgid ""
2694
+ "Set the maximum number of columns in gallery groups. Note, that the parent "
2695
+ "container needs to be large enough to display all columns."
2696
  msgstr ""
2697
 
2698
+ #: admin/views/Options.php:2494 admin/views/Options.php:3034
2699
+ msgid "Gallery group thumbnail dimensions"
2700
  msgstr ""
2701
 
2702
+ #: admin/views/Options.php:2499 admin/views/Options.php:2800
2703
+ #: admin/views/Options.php:3039
2704
+ msgid "Specify the dimensions of thumbnails in gallery groups."
2705
  msgstr ""
2706
 
2707
+ #: admin/views/Options.php:2538 admin/views/Options.php:2838
2708
+ #: admin/views/Options.php:3078
2709
+ #, fuzzy
2710
+ #| msgid "Gallery is empty."
2711
+ msgid "Gallery groups per page"
2712
+ msgstr "Gallery is leeg."
2713
 
2714
+ #: admin/views/Options.php:2542 admin/views/Options.php:2842
2715
+ #: admin/views/Options.php:3082
2716
+ msgid ""
2717
+ "Specify the number of galleries/gallery groups to display per page. Setting "
2718
+ "this option to 0 shows all items."
2719
  msgstr ""
2720
 
2721
+ #: admin/views/Options.php:2558 admin/views/Options.php:2858
2722
+ #: admin/views/Options.php:3098
2723
+ #, fuzzy
2724
+ #| msgid "Gallery is empty."
2725
+ msgid "Order Gallery group by"
2726
+ msgstr "Gallery is leeg."
2727
+
2728
+ #: admin/views/Options.php:2572 admin/views/Options.php:2872
2729
+ #: admin/views/Options.php:3112
2730
+ msgid ""
2731
+ "Select the parameter and order direction to sort the gallery group images "
2732
+ "with. E.g. Title and Ascending."
2733
  msgstr ""
2734
 
2735
+ #: admin/views/Options.php:2575 admin/views/Options.php:2875
2736
+ #: admin/views/Options.php:3116
2737
+ #, fuzzy
2738
+ #| msgid "Order by: "
2739
+ msgid "Order images by"
2740
+ msgstr "Om deur"
2741
+
2742
+ #: admin/views/Options.php:2647 admin/views/Options.php:2947
2743
+ #: admin/views/Options.php:3187
2744
+ msgid "Show gallery group or gallery title"
2745
  msgstr ""
2746
 
2747
+ #: admin/views/Options.php:2652 admin/views/Options.php:2952
2748
+ #: admin/views/Options.php:3192
2749
+ msgid ""
2750
+ "Display the title of displayed gallery or gallery group by enabling this "
2751
+ "setting."
2752
  msgstr ""
2753
 
2754
+ #: admin/views/Options.php:2657 admin/views/Options.php:2957
2755
+ #: admin/views/Options.php:3197
2756
+ msgid "Show gallery group or gallery description"
2757
  msgstr ""
2758
 
2759
+ #: admin/views/Options.php:2662 admin/views/Options.php:2962
2760
+ #: admin/views/Options.php:3202
2761
+ msgid ""
2762
+ "Display the description of displayed gallery or gallery group by enabling "
2763
+ "this setting."
2764
  msgstr ""
2765
 
2766
+ #: admin/views/Options.php:2673
2767
+ msgid ""
2768
+ "Choose to show/hide titles of galleries/gallery groups, or display them on "
2769
+ "hover."
2770
  msgstr ""
2771
 
2772
+ #: admin/views/Options.php:2678 admin/views/Options.php:3217
2773
+ #, fuzzy
2774
+ #| msgid "Gallery is empty."
2775
+ msgid "Gallery view type"
2776
+ msgstr "Gallery is leeg."
2777
+
2778
+ #: admin/views/Options.php:2688 admin/views/Options.php:3227
2779
+ msgid ""
2780
+ "Choose the display type for gallery groups, Thumbnails, Masonry, Mosaic, "
2781
+ "Slideshow, Image browser, Blog style or Carousel."
2782
  msgstr ""
2783
 
2784
+ #: admin/views/Options.php:2796
2785
+ #, fuzzy
2786
+ #| msgid "Gallery is empty."
2787
+ msgid "Gallery group thumbnail width"
2788
+ msgstr "Gallery is leeg."
2789
+
2790
+ #: admin/views/Options.php:2814
2791
+ msgid "Thumbnail width"
2792
  msgstr ""
2793
 
2794
+ #: admin/views/Options.php:3014
2795
+ msgid "Extended gallery group height"
2796
  msgstr ""
2797
 
2798
+ #: admin/views/Options.php:3018
2799
+ msgid "Set the height of blocks in Extended gallery groups."
2800
  msgstr ""
2801
 
2802
+ #: admin/views/Options.php:3023
2803
+ msgid "Number of columns"
2804
  msgstr ""
2805
 
2806
+ #: admin/views/Options.php:3025
2807
+ msgid "1 column"
2808
  msgstr ""
2809
 
2810
+ #: admin/views/Options.php:3026
2811
+ msgid "2 column"
2812
  msgstr ""
2813
 
2814
+ #: admin/views/Options.php:3027
2815
+ msgid "3 column"
2816
  msgstr ""
2817
 
2818
+ #: admin/views/Options.php:3029
2819
+ msgid "Set the maximum number of columns."
2820
  msgstr ""
2821
 
2822
+ #: admin/views/Options.php:3207
2823
+ msgid "Show extended gallery group description"
2824
  msgstr ""
2825
 
2826
+ #: admin/views/Options.php:3212
2827
+ msgid ""
2828
+ "Enable this option to show descriptions of galleries/gallery groups in "
2829
+ "Extended view."
2830
  msgstr ""
2831
 
2832
+ #: admin/views/Options.php:3354
2833
+ msgid "Full-width lightbox"
2834
  msgstr ""
2835
 
2836
+ #: admin/views/Options.php:3359
2837
+ msgid "Image lightbox will appear full-width if this setting is activated."
2838
  msgstr ""
2839
 
2840
+ #: admin/views/Options.php:3364
2841
+ msgid "Lightbox dimensions"
2842
  msgstr ""
2843
 
2844
+ #: admin/views/Options.php:3369
2845
+ msgid "Set the dimensions of image lightbox."
2846
  msgstr ""
2847
 
2848
+ #: admin/views/Options.php:3374
2849
+ msgid "Lightbox effect"
2850
  msgstr ""
2851
 
2852
+ #: admin/views/Options.php:3388
2853
+ msgid "Select the animation effect for image lightbox."
2854
  msgstr ""
2855
 
2856
+ #: admin/views/Options.php:3397
2857
+ msgid "Set the duration of lightbox animation effect."
2858
  msgstr ""
2859
 
2860
+ #: admin/views/Options.php:3398
2861
+ msgid ""
2862
+ "Note, that the value of Effect Duration can not be greater than 1/4 of Time "
2863
+ "Interval."
2864
  msgstr ""
2865
 
2866
+ #: admin/views/Options.php:3403
2867
+ msgid "Lightbox autoplay"
2868
  msgstr ""
2869
 
2870
+ #: admin/views/Options.php:3408
2871
+ msgid "Activate this option to autoplay images in gallery lightbox."
2872
  msgstr ""
2873
 
2874
+ #: admin/views/Options.php:3417
2875
+ msgid "Specify the time interval of autoplay in Photo Gallery lightbox."
2876
  msgstr ""
2877
 
2878
+ #: admin/views/Options.php:3422
2879
+ msgid "Enable filmstrip"
2880
  msgstr ""
2881
 
2882
+ #: admin/views/Options.php:3427
2883
+ msgid ""
2884
+ "Add a filmstrip with image thumbnails to the lightbox of your galleries."
 
2885
  msgstr ""
2886
 
2887
+ #: admin/views/Options.php:3433
2888
+ msgid "Filmstrip size"
 
 
 
2889
  msgstr ""
2890
 
2891
+ #: admin/views/Options.php:3476
2892
+ msgid "Enable this option to show control buttons on Photo Gallery lightbox."
 
 
 
2893
  msgstr ""
2894
 
2895
+ #: admin/views/Options.php:3481
 
 
 
2896
  #, fuzzy
2897
+ #| msgid "Exit Fullscreen"
2898
+ msgid "Enable fullscreen button"
2899
+ msgstr "Verlaat Volskerm"
2900
 
2901
+ #: admin/views/Options.php:3486
2902
+ msgid ""
2903
+ "Activate this setting to add Fullscreen button to lightbox control buttons."
 
 
2904
  msgstr ""
2905
 
2906
+ #: admin/views/Options.php:3491
2907
+ #, fuzzy
2908
+ #| msgid "Show comments"
2909
+ msgid "Enable comments"
2910
+ msgstr "Wys kommentaar"
 
 
2911
 
2912
+ #: admin/views/Options.php:3500
2913
+ msgid ""
2914
+ "Let users to leave comments on images by enabling comments section of "
2915
+ "lightbox."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2916
  msgstr ""
2917
 
2918
+ #: admin/views/Options.php:3506
2919
+ #, fuzzy
2920
+ #| msgid "Show comments"
2921
+ msgid "Show Email for comments"
2922
+ msgstr "Wys kommentaar"
2923
 
2924
+ #: admin/views/Options.php:3511
2925
+ msgid ""
2926
+ "Activate this option to display email address field in comments section."
 
2927
  msgstr ""
2928
 
2929
+ #: admin/views/Options.php:3517
2930
+ #, fuzzy
2931
+ #| msgid "Show comments"
2932
+ msgid "Show Captcha for comments"
2933
+ msgstr "Wys kommentaar"
2934
 
2935
+ #: admin/views/Options.php:3522
2936
+ msgid ""
2937
+ "Enable this setting to place Captcha word verification in comments section."
 
2938
  msgstr ""
2939
 
2940
+ #: admin/views/Options.php:3528
2941
+ #, fuzzy
2942
+ #| msgid "Your comment is awaiting moderation"
2943
+ msgid "Enable comments moderation"
2944
+ msgstr "Jou opmerking is wag moderering"
2945
 
2946
+ #: admin/views/Options.php:3533
2947
+ msgid "Moderate each comment left on images by activating this setting."
 
2948
  msgstr ""
2949
 
2950
+ #: admin/views/Options.php:3539
2951
+ #, fuzzy
2952
+ #| msgid "Show comments"
2953
+ msgid "Show image info"
2954
+ msgstr "Wys kommentaar"
2955
 
2956
+ #: admin/views/Options.php:3544
2957
+ msgid ""
2958
+ "Activate this setting to show Info button among lightbox control buttons."
2959
  msgstr ""
2960
 
2961
+ #: admin/views/Options.php:3549
2962
+ msgid "Display info by default"
 
2963
  msgstr ""
2964
 
2965
+ #: admin/views/Options.php:3554
2966
+ msgid ""
2967
+ "Enabling this option will let you show image title and description on "
2968
+ "lightbox by default."
 
2969
  msgstr ""
2970
 
2971
+ #: admin/views/Options.php:3559
2972
+ msgid "Full width info"
 
2973
  msgstr ""
2974
 
2975
+ #: admin/views/Options.php:3564
2976
+ msgid ""
2977
+ "Display info box with the full width of the lightbox by enabling this option."
 
 
 
2978
  msgstr ""
2979
 
2980
+ #: admin/views/Options.php:3574
2981
+ msgid ""
2982
+ "Choose to display Next/Previous buttons of Photo Gallery lightbox on hover "
2983
+ "or always."
 
 
2984
  msgstr ""
2985
 
2986
+ #: admin/views/Options.php:3579
2987
+ msgid "Display views counter"
 
 
 
2988
  msgstr ""
2989
 
2990
+ #: admin/views/Options.php:3584
2991
+ msgid "Show the number of views, when a gallery image was opened in lightbox."
 
 
2992
  msgstr ""
2993
 
2994
+ #: admin/views/Options.php:3590
2995
+ #, fuzzy
2996
+ #| msgid "Hide rating"
2997
+ msgid "Enable rating"
2998
+ msgstr "Steek gradering"
 
2999
 
3000
+ #: admin/views/Options.php:3595
3001
+ msgid ""
3002
+ "Allow users to rate your images by adding rating feature to Photo Gallery "
3003
+ "lightbox."
 
3004
  msgstr ""
3005
 
3006
+ #: admin/views/Options.php:3603
3007
+ msgid "Show Display Original Image button"
 
3008
  msgstr ""
3009
 
3010
+ #: admin/views/Options.php:3608
3011
+ msgid ""
3012
+ "Let users view original versions of your images by enabling this button."
 
3013
  msgstr ""
3014
 
3015
+ #: admin/views/Options.php:3613
3016
+ msgid "Show download button"
 
 
 
3017
  msgstr ""
3018
 
3019
+ #: admin/views/Options.php:3618
3020
+ msgid ""
3021
+ "This option will allow users to download gallery images while viewing them "
3022
+ "in lightbox."
 
3023
  msgstr ""
3024
 
3025
+ #: admin/views/Options.php:3623
3026
+ #, fuzzy
3027
+ #| msgid "Show comments"
3028
+ msgid "Show image counter"
3029
+ msgstr "Wys kommentaar"
 
3030
 
3031
+ #: admin/views/Options.php:3628
3032
+ msgid "Enable this option to display image counter on Photo Gallery lightbox."
 
 
 
3033
  msgstr ""
3034
 
3035
+ #: admin/views/Options.php:3633
3036
+ #, fuzzy
3037
+ #| msgid "Hide rating"
3038
+ msgid "Enable looping"
3039
+ msgstr "Steek gradering"
 
3040
 
3041
+ #: admin/views/Options.php:3638
3042
+ msgid ""
3043
+ "Activate looping to start lightbox navigation from the beginning when users "
3044
+ "reach its last image."
 
3045
  msgstr ""
3046
 
3047
+ #: admin/views/Options.php:3643
3048
+ msgid "Enable"
 
 
 
3049
  msgstr ""
3050
 
3051
+ #: admin/views/Options.php:3648
3052
+ msgid "Display AddThis on Photo Gallery lightbox by activating this option."
3053
  msgstr ""
3054
 
3055
+ #: admin/views/Options.php:3654
3056
+ msgid "profile ID"
 
 
 
3057
  msgstr ""
3058
 
3059
+ #: admin/views/Options.php:3658
3060
+ msgid "Provide the ID of your profile to connect to AddThis."
 
 
3061
  msgstr ""
3062
 
3063
+ #: admin/views/Options.php:3658
3064
+ #, php-format
3065
+ msgid "Create an account %s."
3066
  msgstr ""
3067
 
3068
+ #: admin/views/Options.php:3658 admin/views/Shortcode.php:254
3069
+ msgid "here"
 
3070
  msgstr ""
3071
 
3072
+ #: admin/views/Options.php:3664
3073
+ #, fuzzy
3074
+ #| msgid "Share on Facebook"
3075
+ msgid "Show Facebook button"
3076
+ msgstr "Deel op Facebook"
3077
 
3078
+ #: admin/views/Options.php:3669
3079
+ msgid ""
3080
+ "Enabling this setting will add Facebook sharing button to Photo Gallery "
3081
+ "lightbox."
3082
  msgstr ""
3083
 
3084
+ #: admin/views/Options.php:3675
3085
+ #, fuzzy
3086
+ #| msgid "Share on Twitter"
3087
+ msgid "Show Twitter button"
3088
+ msgstr "Deel op Twitter"
3089
 
3090
+ #: admin/views/Options.php:3680
3091
+ msgid "Enable this setting to add Tweet button to Photo Gallery lightbox."
 
3092
  msgstr ""
3093
 
3094
+ #: admin/views/Options.php:3686
3095
+ #, fuzzy
3096
+ #| msgid "Share on Pinterest"
3097
+ msgid "Show Pinterest button"
3098
+ msgstr "Deel op Pinterest"
3099
 
3100
+ #: admin/views/Options.php:3691
3101
+ msgid "Activate Pin button of Photo Gallery lightbox by enabling this setting."
3102
  msgstr ""
3103
 
3104
+ #: admin/views/Options.php:3697
3105
+ #, fuzzy
3106
+ #| msgid "Share on Tumblr"
3107
+ msgid "Show Tumblr button"
3108
+ msgstr "Deel op Tumblr"
3109
 
3110
+ #: admin/views/Options.php:3702
3111
+ msgid ""
3112
+ "Allow users to share images on Tumblr from Photo Gallery lightbox by "
3113
+ "activating this setting."
3114
  msgstr ""
3115
 
3116
+ #: admin/views/Options.php:3711
3117
+ #, fuzzy
3118
+ #| msgid "Show comments"
3119
+ msgid "Show Ecommerce button"
3120
+ msgstr "Wys kommentaar"
3121
 
3122
+ #: admin/views/Options.php:3716
3123
+ msgid "Enable this option to display ecommerce icon on Photo Gallery lightbox"
 
3124
  msgstr ""
3125
 
3126
+ #: admin/views/Ratings.php:40 admin/views/Ratings.php:59
3127
+ #: admin/views/Ratings.php:91
3128
+ msgid "IP"
3129
  msgstr ""
3130
 
3131
+ #: admin/views/Ratings.php:58 admin/views/Ratings.php:90
3132
+ msgid "Rating"
 
3133
  msgstr ""
3134
 
3135
+ #: admin/views/Shortcode.php:198
3136
+ msgid "Select the gallery to display."
 
3137
  msgstr ""
3138
 
3139
+ #: admin/views/Shortcode.php:201
3140
+ #, fuzzy
3141
+ #| msgid "Gallery is empty."
3142
+ msgid "Gallery Group"
3143
+ msgstr "Gallery is leeg."
3144
 
3145
+ #: admin/views/Shortcode.php:212
3146
+ msgid "Select the gallery group to display."
3147
  msgstr ""
3148
 
3149
+ #: admin/views/Shortcode.php:218
3150
+ msgid "Tag"
3151
  msgstr ""
3152
 
3153
+ #: admin/views/Shortcode.php:230
3154
+ #, fuzzy
3155
+ #| msgid "There are no images in this gallery."
3156
+ msgid "Filter gallery images by this tag."
3157
+ msgstr "Daar is geen foto's in die gallery."
3158
 
3159
+ #: admin/views/Shortcode.php:235
3160
+ msgid "Theme"
3161
  msgstr ""
3162
 
3163
+ #: admin/views/Shortcode.php:247
3164
+ msgid "Choose the theme for your gallery."
3165
  msgstr ""
3166
 
3167
+ #: admin/views/Shortcode.php:253
3168
+ msgid "Use default options"
3169
  msgstr ""
3170
 
3171
+ #: admin/views/Shortcode.php:254
3172
+ msgid ""
3173
+ "Mark this option to use default settings configured in Photo Gallery Options."
3174
  msgstr ""
3175
 
3176
+ #: admin/views/Shortcode.php:254
3177
+ #, php-format
3178
+ msgid "You can change the default options %s."
3179
  msgstr ""
3180
 
3181
+ #: admin/views/Shortcode.php:279
3182
+ msgid "Action on image click"
3183
  msgstr ""
3184
 
3185
+ #: admin/views/Shortcode.php:289
3186
+ msgid "Toggle panel"
3187
  msgstr ""
3188
 
3189
+ #: admin/views/Shortcode.php:425
3190
+ msgid "Insert into post"
3191
  msgstr ""
3192
 
3193
+ #: admin/views/Shortcode.php:430
3194
+ msgid "Please see "
3195
  msgstr ""
3196
 
3197
+ #: admin/views/Shortcode.php:430
3198
+ msgid "View in Premium version"
3199
  msgstr ""
3200
 
3201
+ #: admin/views/Shortcode.php:452
3202
+ msgid "New shortcode"
3203
  msgstr ""
3204
 
3205
+ #: admin/views/Shortcode.php:461 admin/views/Shortcode.php:545
3206
+ msgid "Generate"
3207
  msgstr ""
3208
 
3209
+ #: admin/views/Shortcode.php:463
3210
+ msgid ""
3211
+ "If you would like to edit an existing shortcode, use this dropdown box to "
3212
+ "select it."
3213
  msgstr ""
3214
 
3215
+ #: admin/views/Shortcode.php:467
3216
+ msgid "Shortcode"
3217
  msgstr ""
3218
 
3219
+ #: admin/views/Shortcode.php:469
3220
+ msgid ""
3221
+ "Add the selected gallery or gallery group to any WordPress page or post. "
3222
+ "Simply copy the generated shortcode and paste it in the content of page/post "
3223
+ "editor."
3224
  msgstr ""
3225
 
3226
+ #: admin/views/Shortcode.php:474
3227
+ msgid "PHP function"
3228
  msgstr ""
3229
 
3230
+ #: admin/views/Shortcode.php:476
3231
+ msgid ""
3232
+ "Use generated PHP function to call the selected gallery or gallery group on "
3233
+ "a custom PHP template."
3234
  msgstr ""
3235
 
3236
+ #: admin/views/Shortcode.php:563
3237
+ msgid "There is no shortcode with such ID!"
3238
  msgstr ""
3239
 
3240
+ #: admin/views/Shortcode.php:2153
3241
+ msgid "Image thumbnail width "
3242
  msgstr ""
3243
 
3244
+ #: admin/views/Shortcode.php:2155
3245
+ msgid "Image thumbnail height"
3246
  msgstr ""
3247
 
3248
+ #: admin/views/Themes.php:22
3249
+ msgid "You can't change theme parameters in free version."
3250
  msgstr ""
3251
 
3252
+ #: admin/views/Themes.php:176
3253
+ #, fuzzy
3254
+ #| msgid "Show rating"
3255
+ msgid "Theme title"
3256
+ msgstr "Wys gradering"
3257
 
3258
+ #: admin/views/Themes.php:184
3259
+ msgid "Reset to default theme"
3260
  msgstr ""
3261
 
3262
+ #: admin/views/Themes.php:212 admin/views/Themes.php:534
3263
+ #: admin/views/Themes.php:856 admin/views/Themes.php:1911
3264
+ #: admin/views/Themes.php:2921
3265
+ msgid "Distance between pictures:"
3266
  msgstr ""
3267
 
3268
+ #: admin/views/Themes.php:218 admin/views/Themes.php:540
3269
+ #: admin/views/Themes.php:862 admin/views/Themes.php:1917
3270
+ #: admin/views/Themes.php:2927
3271
+ msgid "Distance from container frame:"
3272
  msgstr ""
3273
 
3274
+ #: admin/views/Themes.php:224 admin/views/Themes.php:546
3275
+ #: admin/views/Themes.php:868 admin/views/Themes.php:1923
3276
+ #: admin/views/Themes.php:2933
3277
+ msgid ""
3278
+ "Enable this option to add distance between the parent container and the "
3279
+ "thumbnails grid."
3280
  msgstr ""
3281
 
3282
+ #: admin/views/Themes.php:228 admin/views/Themes.php:1640
3283
+ #: admin/views/Themes.php:1927 admin/views/Themes.php:2473
3284
+ #: admin/views/Themes.php:3302 admin/views/Themes.php:4679
3285
+ msgid "Padding:"
3286
  msgstr ""
3287
 
3288
+ #: admin/views/Themes.php:234 admin/views/Themes.php:550
3289
+ #: admin/views/Themes.php:872 admin/views/Themes.php:1647
3290
+ #: admin/views/Themes.php:1934 admin/views/Themes.php:2937
3291
+ #: admin/views/Themes.php:3360 admin/views/Themes.php:4629
3292
+ msgid "Border width:"
3293
  msgstr ""
3294
 
3295
+ #: admin/views/Themes.php:240 admin/views/Themes.php:556
3296
+ #: admin/views/Themes.php:878 admin/views/Themes.php:1653
3297
+ #: admin/views/Themes.php:1940 admin/views/Themes.php:2943
3298
+ #: admin/views/Themes.php:3366 admin/views/Themes.php:4635
3299
+ #, fuzzy
3300
+ #| msgid "Order by: "
3301
+ msgid "Border style:"
3302
+ msgstr "Om deur"
3303
 
3304
+ #: admin/views/Themes.php:254 admin/views/Themes.php:570
3305
+ #: admin/views/Themes.php:892 admin/views/Themes.php:1667
3306
+ #: admin/views/Themes.php:1954 admin/views/Themes.php:2957
3307
+ #: admin/views/Themes.php:3380 admin/views/Themes.php:4649
3308
+ msgid "Border color:"
3309
  msgstr ""
3310
 
3311
+ #: admin/views/Themes.php:260 admin/views/Themes.php:576
3312
+ #: admin/views/Themes.php:898 admin/views/Themes.php:1673
3313
+ #: admin/views/Themes.php:1960 admin/views/Themes.php:2492
3314
+ #: admin/views/Themes.php:2963 admin/views/Themes.php:3386
3315
+ #: admin/views/Themes.php:4655
3316
+ msgid "Border radius:"
3317
  msgstr ""
3318
 
3319
+ #: admin/views/Themes.php:263 admin/views/Themes.php:270
3320
+ #: admin/views/Themes.php:432 admin/views/Themes.php:439
3321
+ #: admin/views/Themes.php:495 admin/views/Themes.php:502
3322
+ #: admin/views/Themes.php:579 admin/views/Themes.php:728
3323
+ #: admin/views/Themes.php:817 admin/views/Themes.php:824
3324
+ #: admin/views/Themes.php:901 admin/views/Themes.php:1052
3325
+ #: admin/views/Themes.php:1059 admin/views/Themes.php:1114
3326
+ #: admin/views/Themes.php:1121 admin/views/Themes.php:1237
3327
+ #: admin/views/Themes.php:1258 admin/views/Themes.php:1286
3328
+ #: admin/views/Themes.php:1320 admin/views/Themes.php:1376
3329
+ #: admin/views/Themes.php:1436 admin/views/Themes.php:1443
3330
+ #: admin/views/Themes.php:1497 admin/views/Themes.php:1504
3331
+ #: admin/views/Themes.php:1559 admin/views/Themes.php:1579
3332
+ #: admin/views/Themes.php:1636 admin/views/Themes.php:1643
3333
+ #: admin/views/Themes.php:1676 admin/views/Themes.php:1696
3334
+ #: admin/views/Themes.php:1770 admin/views/Themes.php:1777
3335
+ #: admin/views/Themes.php:1810 admin/views/Themes.php:1872
3336
+ #: admin/views/Themes.php:1879 admin/views/Themes.php:1930
3337
+ #: admin/views/Themes.php:1963 admin/views/Themes.php:1970
3338
+ #: admin/views/Themes.php:2130 admin/views/Themes.php:2137
3339
+ #: admin/views/Themes.php:2192 admin/views/Themes.php:2247
3340
+ #: admin/views/Themes.php:2254 admin/views/Themes.php:2327
3341
+ #: admin/views/Themes.php:2334 admin/views/Themes.php:2422
3342
+ #: admin/views/Themes.php:2462 admin/views/Themes.php:2469
3343
+ #: admin/views/Themes.php:2495 admin/views/Themes.php:2528
3344
+ #: admin/views/Themes.php:2607 admin/views/Themes.php:2640
3345
+ #: admin/views/Themes.php:2659 admin/views/Themes.php:2740
3346
+ #: admin/views/Themes.php:2881 admin/views/Themes.php:2888
3347
+ #: admin/views/Themes.php:2966 admin/views/Themes.php:3119
3348
+ #: admin/views/Themes.php:3174 admin/views/Themes.php:3229
3349
+ #: admin/views/Themes.php:3236 admin/views/Themes.php:3298
3350
+ #: admin/views/Themes.php:3305 admin/views/Themes.php:3312
3351
+ #: admin/views/Themes.php:3389 admin/views/Themes.php:3406
3352
+ #: admin/views/Themes.php:3451 admin/views/Themes.php:3534
3353
+ #: admin/views/Themes.php:3541 admin/views/Themes.php:3635
3354
+ #: admin/views/Themes.php:3689 admin/views/Themes.php:3722
3355
+ #: admin/views/Themes.php:3830 admin/views/Themes.php:3867
3356
+ #: admin/views/Themes.php:3911 admin/views/Themes.php:3944
3357
+ #: admin/views/Themes.php:4049 admin/views/Themes.php:4118
3358
+ #: admin/views/Themes.php:4125 admin/views/Themes.php:4132
3359
+ #: admin/views/Themes.php:4260 admin/views/Themes.php:4267
3360
+ #: admin/views/Themes.php:4274 admin/views/Themes.php:4485
3361
+ #: admin/views/Themes.php:4504 admin/views/Themes.php:4537
3362
+ #: admin/views/Themes.php:4658 admin/views/Themes.php:4675
3363
+ #: admin/views/Themes.php:4682 admin/views/Themes.php:4711
3364
+ #: admin/views/Themes.php:4872 admin/views/Themes.php:4961
3365
+ msgid "Use CSS type values."
3366
  msgstr ""
3367
 
3368
+ #: admin/views/Themes.php:267 admin/views/Themes.php:1967
3369
+ msgid "Shadow:"
3370
  msgstr ""
3371
 
3372
+ #: admin/views/Themes.php:274 admin/views/Themes.php:583
3373
+ #: admin/views/Themes.php:905 admin/views/Themes.php:1974
3374
+ #: admin/views/Themes.php:2970
3375
+ msgid "Hover effect:"
3376
  msgstr ""
3377
 
3378
+ #: admin/views/Themes.php:288 admin/views/Themes.php:597
3379
+ #: admin/views/Themes.php:919 admin/views/Themes.php:1988
3380
+ #: admin/views/Themes.php:2382 admin/views/Themes.php:2984
3381
+ msgid "Hover effect value:"
3382
  msgstr ""
3383
 
3384
+ #: admin/views/Themes.php:291
3385
+ msgid "E.g. Rotate: 10deg, Scale/Zoom: 1.5, Skew: 10deg."
3386
  msgstr ""
3387
 
3388
+ #: admin/views/Themes.php:295 admin/views/Themes.php:604
3389
+ #: admin/views/Themes.php:926
3390
+ msgid "Transition:"
 
3391
  msgstr ""
3392
 
3393
+ #: admin/views/Themes.php:315 admin/views/Themes.php:624
3394
+ #: admin/views/Themes.php:2014 admin/views/Themes.php:2389
3395
+ #: admin/views/Themes.php:3011
3396
+ msgid "Thumbnail background color:"
3397
  msgstr ""
3398
 
3399
+ #: admin/views/Themes.php:322 admin/views/Themes.php:2020
3400
+ #: admin/views/Themes.php:2361 admin/views/Themes.php:3018
3401
+ msgid "Thumbnail transparency:"
 
3402
  msgstr ""
3403
 
3404
+ #: admin/views/Themes.php:325 admin/views/Themes.php:338
3405
+ #: admin/views/Themes.php:634 admin/views/Themes.php:647
3406
+ #: admin/views/Themes.php:954 admin/views/Themes.php:967
3407
+ #: admin/views/Themes.php:1180 admin/views/Themes.php:1339
3408
+ #: admin/views/Themes.php:1429 admin/views/Themes.php:1490
3409
+ #: admin/views/Themes.php:1572 admin/views/Themes.php:1689
3410
+ #: admin/views/Themes.php:2023 admin/views/Themes.php:2036
3411
+ #: admin/views/Themes.php:2364 admin/views/Themes.php:2404
3412
+ #: admin/views/Themes.php:2488 admin/views/Themes.php:3021
3413
+ #: admin/views/Themes.php:3034 admin/views/Themes.php:3277
3414
+ #: admin/views/Themes.php:3464 admin/views/Themes.php:3582
3415
+ #: admin/views/Themes.php:3595 admin/views/Themes.php:3642
3416
+ #: admin/views/Themes.php:3669 admin/views/Themes.php:3963
3417
+ #: admin/views/Themes.php:4085 admin/views/Themes.php:4227
3418
+ #: admin/views/Themes.php:4695 admin/views/Themes.php:4790
3419
+ #: admin/views/Themes.php:4815 admin/views/Themes.php:4954
3420
+ msgid "Value must be between 0 to 100."
3421
  msgstr ""
3422
 
3423
+ #: admin/views/Themes.php:329 admin/views/Themes.php:1563
3424
+ #: admin/views/Themes.php:2027 admin/views/Themes.php:3025
3425
+ msgid "Full background color:"
3426
  msgstr ""
3427
 
3428
+ #: admin/views/Themes.php:335 admin/views/Themes.php:1569
3429
+ #: admin/views/Themes.php:2033 admin/views/Themes.php:3031
3430
+ msgid "Full background transparency:"
3431
  msgstr ""
3432
 
3433
+ #: admin/views/Themes.php:342 admin/views/Themes.php:651
3434
+ #: admin/views/Themes.php:971 admin/views/Themes.php:1619
3435
+ #: admin/views/Themes.php:2040 admin/views/Themes.php:3038
3436
+ #: admin/views/Themes.php:3281 admin/views/Themes.php:4734
3437
+ msgid "Alignment:"
3438
  msgstr ""
3439
 
3440
+ #: admin/views/Themes.php:366 admin/views/Themes.php:1710
3441
+ #: admin/views/Themes.php:2064
3442
+ msgid "Title position:"
3443
  msgstr ""
3444
 
3445
+ #: admin/views/Themes.php:369 admin/views/Themes.php:1275
3446
+ #: admin/views/Themes.php:1713 admin/views/Themes.php:2067
3447
+ #: admin/views/Themes.php:3620 admin/views/Themes.php:3900
3448
+ #: admin/views/Themes.php:3988 admin/views/Themes.php:4056
3449
+ #: admin/views/Themes.php:4198 admin/views/Themes.php:4728
3450
+ msgid "Top"
3451
  msgstr ""
3452
 
3453
+ #: admin/views/Themes.php:371 admin/views/Themes.php:1277
3454
+ #: admin/views/Themes.php:1715 admin/views/Themes.php:2069
3455
+ #: admin/views/Themes.php:3622 admin/views/Themes.php:3902
3456
+ #: admin/views/Themes.php:3990 admin/views/Themes.php:4058
3457
+ #: admin/views/Themes.php:4200 admin/views/Themes.php:4730
3458
+ msgid "Bottom"
3459
  msgstr ""
3460
 
3461
+ #: admin/views/Themes.php:375 admin/views/Themes.php:671
3462
+ #: admin/views/Themes.php:995 admin/views/Themes.php:2073
3463
+ #: admin/views/Themes.php:2689 admin/views/Themes.php:3062
3464
+ #: admin/views/Themes.php:4320 admin/views/Themes.php:4999
3465
+ msgid "Title font size:"
3466
  msgstr ""
3467
 
3468
+ #: admin/views/Themes.php:381 admin/views/Themes.php:677
3469
+ #: admin/views/Themes.php:1001 admin/views/Themes.php:2079
3470
+ #: admin/views/Themes.php:2695 admin/views/Themes.php:3068
3471
+ #: admin/views/Themes.php:4278
3472
+ msgid "Title font color:"
3473
  msgstr ""
3474
 
3475
+ #: admin/views/Themes.php:387 admin/views/Themes.php:683
3476
+ #: admin/views/Themes.php:1007 admin/views/Themes.php:2085
3477
+ #: admin/views/Themes.php:3074
3478
+ msgid "Title font color (Show on hover):"
3479
  msgstr ""
3480
 
3481
+ #: admin/views/Themes.php:393 admin/views/Themes.php:689
3482
+ #: admin/views/Themes.php:1013 admin/views/Themes.php:1459
3483
+ #: admin/views/Themes.php:2091 admin/views/Themes.php:2701
3484
+ #: admin/views/Themes.php:3080 admin/views/Themes.php:4284
3485
+ msgid "Title font family:"
3486
  msgstr ""
3487
 
3488
+ #: admin/views/Themes.php:415 admin/views/Themes.php:711
3489
+ #: admin/views/Themes.php:1035 admin/views/Themes.php:2113
3490
+ #: admin/views/Themes.php:2723 admin/views/Themes.php:3102
3491
+ #: admin/views/Themes.php:4306 admin/views/Themes.php:5011
3492
+ msgid "Title font weight:"
3493
  msgstr ""
3494
 
3495
+ #: admin/views/Themes.php:429 admin/views/Themes.php:1049
3496
+ #: admin/views/Themes.php:2127 admin/views/Themes.php:3116
3497
+ msgid "Title box shadow:"
3498
  msgstr ""
3499
 
3500
+ #: admin/views/Themes.php:436 admin/views/Themes.php:725
3501
+ #: admin/views/Themes.php:1056 admin/views/Themes.php:2134
3502
+ #: admin/views/Themes.php:2650 admin/views/Themes.php:4965
3503
+ msgid "Title margin:"
3504
  msgstr ""
3505
 
3506
+ #: admin/views/Themes.php:443 admin/views/Themes.php:766
3507
+ #: admin/views/Themes.php:1063 admin/views/Themes.php:1820
3508
+ #: admin/views/Themes.php:2196 admin/views/Themes.php:2830
3509
+ #: admin/views/Themes.php:3178 admin/views/Themes.php:3482
3510
+ msgid "Gallery title/description font size:"
3511
  msgstr ""
3512
 
3513
+ #: admin/views/Themes.php:450 admin/views/Themes.php:772
3514
+ #: admin/views/Themes.php:1069 admin/views/Themes.php:1827
3515
+ #: admin/views/Themes.php:2202 admin/views/Themes.php:2836
3516
+ #: admin/views/Themes.php:3184 admin/views/Themes.php:3489
3517
+ msgid "Gallery title/description font color:"
3518
  msgstr ""
3519
 
3520
+ #: admin/views/Themes.php:456 admin/views/Themes.php:778
3521
+ #: admin/views/Themes.php:1075 admin/views/Themes.php:1833
3522
+ #: admin/views/Themes.php:2208 admin/views/Themes.php:2842
3523
+ #: admin/views/Themes.php:3190 admin/views/Themes.php:3495
3524
+ msgid "Gallery title/description font family:"
3525
  msgstr ""
3526
 
3527
+ #: admin/views/Themes.php:478 admin/views/Themes.php:800
3528
+ #: admin/views/Themes.php:1097 admin/views/Themes.php:1855
3529
+ #: admin/views/Themes.php:2230 admin/views/Themes.php:2864
3530
+ #: admin/views/Themes.php:3212 admin/views/Themes.php:3517
3531
+ msgid "Gallery title/description font weight:"
3532
  msgstr ""
3533
 
3534
+ #: admin/views/Themes.php:492 admin/views/Themes.php:814
3535
+ #: admin/views/Themes.php:1111 admin/views/Themes.php:1869
3536
+ #: admin/views/Themes.php:2244 admin/views/Themes.php:2878
3537
+ #: admin/views/Themes.php:3226 admin/views/Themes.php:3531
3538
+ msgid "Gallery title/description box shadow:"
3539
  msgstr ""
3540
 
3541
+ #: admin/views/Themes.php:499 admin/views/Themes.php:821
3542
+ #: admin/views/Themes.php:1118 admin/views/Themes.php:1876
3543
+ #: admin/views/Themes.php:2251 admin/views/Themes.php:2885
3544
+ #: admin/views/Themes.php:3233 admin/views/Themes.php:3538
3545
+ msgid "Gallery title/description margin:"
3546
  msgstr ""
3547
 
3548
+ #: admin/views/Themes.php:506 admin/views/Themes.php:828
3549
+ #: admin/views/Themes.php:1125 admin/views/Themes.php:1883
3550
+ #: admin/views/Themes.php:2258 admin/views/Themes.php:2892
3551
+ #: admin/views/Themes.php:3240 admin/views/Themes.php:3545
3552
+ #, fuzzy
3553
+ #| msgid "Gallery is empty."
3554
+ msgid "Gallery title alignment:"
3555
+ msgstr "Gallery is leeg."
3556
 
3557
+ #: admin/views/Themes.php:600 admin/views/Themes.php:922
3558
+ #: admin/views/Themes.php:1991 admin/views/Themes.php:2385
3559
+ #: admin/views/Themes.php:2987
3560
+ msgid "E.g. Rotate: 10deg, Scale: 1.5, Skew: 10deg."
3561
  msgstr ""
3562
 
3563
+ #: admin/views/Themes.php:631 admin/views/Themes.php:951
3564
+ msgid "Transparency:"
3565
  msgstr ""
3566
 
3567
+ #: admin/views/Themes.php:638 admin/views/Themes.php:958
3568
+ msgid "Full Background color:"
3569
  msgstr ""
3570
 
3571
+ #: admin/views/Themes.php:644 admin/views/Themes.php:964
3572
+ #: admin/views/Themes.php:1686 admin/views/Themes.php:2485
3573
+ #: admin/views/Themes.php:3274
3574
+ msgid "Background transparency:"
3575
  msgstr ""
3576
 
3577
+ #: admin/views/Themes.php:732 admin/views/Themes.php:1508
3578
+ #: admin/views/Themes.php:2770 admin/views/Themes.php:4369
3579
+ msgid "Description font size:"
3580
  msgstr ""
3581
 
3582
+ #: admin/views/Themes.php:738 admin/views/Themes.php:2776
3583
+ #: admin/views/Themes.php:4327
3584
+ msgid "Description font color:"
3585
  msgstr ""
3586
 
3587
+ #: admin/views/Themes.php:744 admin/views/Themes.php:1520
3588
+ #: admin/views/Themes.php:2782 admin/views/Themes.php:4333
3589
+ msgid "Description font family:"
3590
  msgstr ""
3591
 
3592
+ #: admin/views/Themes.php:945 admin/views/Themes.php:1153
3593
+ #: admin/views/Themes.php:1680 admin/views/Themes.php:2479
3594
+ #: admin/views/Themes.php:3268 admin/views/Themes.php:4781
3595
+ msgid "Background color:"
3596
  msgstr ""
3597
 
3598
+ #: admin/views/Themes.php:1159 admin/views/Themes.php:3846
3599
+ #: admin/views/Themes.php:4794
3600
+ msgid "Right, left buttons size:"
3601
  msgstr ""
3602
 
3603
+ #: admin/views/Themes.php:1165 admin/views/Themes.php:4800
3604
+ msgid "Play, pause buttons size:"
3605
  msgstr ""
3606
 
3607
+ #: admin/views/Themes.php:1171 admin/views/Themes.php:3416
3608
+ #: admin/views/Themes.php:4806
3609
+ msgid "Buttons color:"
3610
  msgstr ""
3611
 
3612
+ #: admin/views/Themes.php:1177 admin/views/Themes.php:4812
3613
+ msgid "Buttons transparency:"
3614
  msgstr ""
3615
 
3616
+ #: admin/views/Themes.php:1184 admin/views/Themes.php:4819
3617
+ msgid "Buttons hover color:"
3618
  msgstr ""
3619
 
3620
+ #: admin/views/Themes.php:1190 admin/views/Themes.php:3840
3621
+ #: admin/views/Themes.php:4825
3622
+ msgid "Right, left buttons width:"
3623
  msgstr ""
3624
 
3625
+ #: admin/views/Themes.php:1196 admin/views/Themes.php:3834
3626
+ #: admin/views/Themes.php:4831
3627
+ msgid "Right, left buttons height:"
3628
  msgstr ""
3629
 
3630
+ #: admin/views/Themes.php:1202 admin/views/Themes.php:3815
3631
+ #: admin/views/Themes.php:4837
3632
+ msgid "Right, left buttons background color:"
3633
  msgstr ""
3634
 
3635
+ #: admin/views/Themes.php:1208 admin/views/Themes.php:3871
3636
+ #: admin/views/Themes.php:4843
3637
+ msgid "Right, left buttons border width:"
3638
  msgstr ""
3639
 
3640
+ #: admin/views/Themes.php:1214 admin/views/Themes.php:3877
3641
+ #: admin/views/Themes.php:4849
3642
+ msgid "Right, left buttons border style:"
3643
  msgstr ""
3644
 
3645
+ #: admin/views/Themes.php:1228 admin/views/Themes.php:3891
3646
+ #: admin/views/Themes.php:4863
3647
+ msgid "Right, left buttons border color:"
3648
  msgstr ""
3649
 
3650
+ #: admin/views/Themes.php:1234 admin/views/Themes.php:3864
3651
+ #: admin/views/Themes.php:4869
3652
+ msgid "Right, left buttons border radius:"
3653
  msgstr ""
3654
 
3655
+ #: admin/views/Themes.php:1241 admin/views/Themes.php:3801
3656
+ #: admin/views/Themes.php:4876
3657
+ msgid "Right, left buttons style:"
3658
  msgstr ""
3659
 
3660
+ #: admin/views/Themes.php:1255 admin/views/Themes.php:3827
3661
+ msgid "Right, left buttons box shadow:"
3662
  msgstr ""
3663
 
3664
+ #: admin/views/Themes.php:1272
3665
+ msgid "Filmstrip/Slider bullet position:"
3666
  msgstr ""
3667
 
3668
+ #: admin/views/Themes.php:1283
3669
+ msgid "Filmstrip margin:"
3670
  msgstr ""
3671
 
3672
+ #: admin/views/Themes.php:1290
3673
+ msgid "Filmstrip border width:"
3674
  msgstr ""
3675
 
3676
+ #: admin/views/Themes.php:1296
3677
+ msgid "Filmstrip border style:"
3678
  msgstr ""
3679
 
3680
+ #: admin/views/Themes.php:1311
3681
+ msgid "Filmstrip border color:"
3682
  msgstr ""
3683
 
3684
+ #: admin/views/Themes.php:1317
3685
+ msgid "Filmstrip border radius:"
3686
  msgstr ""
3687
 
3688
+ #: admin/views/Themes.php:1324
3689
+ msgid "Filmstrip active border width:"
3690
  msgstr ""
3691
 
3692
+ #: admin/views/Themes.php:1330
3693
+ msgid "Filmstrip active border color:"
3694
  msgstr ""
3695
 
3696
+ #: admin/views/Themes.php:1336
3697
+ msgid "Filmstrip deactive transparency: "
3698
  msgstr ""
3699
 
3700
+ #: admin/views/Themes.php:1343
3701
+ msgid "Filmstrip right, left buttons background color: "
3702
  msgstr ""
3703
 
3704
+ #: admin/views/Themes.php:1349 admin/views/Themes.php:3973
3705
+ msgid "Filmstrip right, left buttons color:"
3706
  msgstr ""
3707
 
3708
+ #: admin/views/Themes.php:1355 admin/views/Themes.php:3967
3709
+ msgid "Filmstrip right, left buttons size:"
3710
  msgstr ""
3711
 
3712
+ #: admin/views/Themes.php:1361
3713
+ msgid "Slider bullet width: "
3714
  msgstr ""
3715
 
3716
+ #: admin/views/Themes.php:1367
3717
+ msgid "Slider bullet height:"
3718
  msgstr ""
3719
 
3720
+ #: admin/views/Themes.php:1373
3721
+ msgid "Slider bullet border radius: "
3722
  msgstr ""
3723
 
3724
+ #: admin/views/Themes.php:1380
3725
+ msgid "Slider bullet background color:"
3726
  msgstr ""
3727
 
3728
+ #: admin/views/Themes.php:1386
3729
+ msgid "Slider bullet margin:"
3730
  msgstr ""
3731
 
3732
+ #: admin/views/Themes.php:1392
3733
+ msgid "Slider bullet active background color: "
3734
  msgstr ""
3735
 
3736
+ #: admin/views/Themes.php:1398
3737
+ msgid "Slider bullet active border width:"
3738
  msgstr ""
3739
 
3740
+ #: admin/views/Themes.php:1404
3741
+ msgid "Slider bullet active border color: "
3742
  msgstr ""
3743
 
3744
+ #: admin/views/Themes.php:1420
3745
+ msgid "Title background color: "
3746
  msgstr ""
3747
 
3748
+ #: admin/views/Themes.php:1426
3749
+ msgid "Title transparency: "
3750
  msgstr ""
3751
 
3752
+ #: admin/views/Themes.php:1433 admin/views/Themes.php:4958
3753
+ msgid "Title border radius:"
3754
  msgstr ""
3755
 
3756
+ #: admin/views/Themes.php:1440
3757
+ msgid "Title padding: "
3758
  msgstr ""
3759
 
3760
+ #: admin/views/Themes.php:1447
3761
+ msgid "Title font size: "
3762
  msgstr ""
3763
 
3764
+ #: admin/views/Themes.php:1453
3765
+ msgid "Title color: "
3766
  msgstr ""
3767
 
3768
+ #: admin/views/Themes.php:1481 admin/views/Themes.php:1814
3769
+ msgid "Description background color:"
3770
  msgstr ""
3771
 
3772
+ #: admin/views/Themes.php:1487
3773
+ msgid "Description transparency:"
3774
  msgstr ""
3775
 
3776
+ #: admin/views/Themes.php:1494 admin/views/Themes.php:1807
3777
+ msgid "Description border radius:"
3778
  msgstr ""
3779
 
3780
+ #: admin/views/Themes.php:1501 admin/views/Themes.php:1774
3781
+ #: admin/views/Themes.php:2737
3782
+ msgid "Description padding:"
3783
  msgstr ""
3784
 
3785
+ #: admin/views/Themes.php:1514
3786
+ msgid "Description color:"
3787
  msgstr ""
3788
 
3789
+ #: admin/views/Themes.php:1556
3790
+ msgid "Full padding:"
3791
  msgstr ""
3792
 
3793
+ #: admin/views/Themes.php:1576
3794
+ msgid "Full border radius:"
3795
  msgstr ""
3796
 
3797
+ #: admin/views/Themes.php:1583
3798
+ msgid "Full border width:"
3799
  msgstr ""
3800
 
3801
+ #: admin/views/Themes.php:1589
3802
+ msgid "Full border style:"
3803
  msgstr ""
3804
 
3805
+ #: admin/views/Themes.php:1603
3806
+ msgid "Full border color:"
3807
  msgstr ""
3808
 
3809
+ #: admin/views/Themes.php:1633 admin/views/Themes.php:2466
3810
+ #: admin/views/Themes.php:3295 admin/views/Themes.php:4672
3811
+ msgid "Margin:"
3812
  msgstr ""
3813
 
3814
+ #: admin/views/Themes.php:1693 admin/views/Themes.php:3309
3815
+ #: admin/views/Themes.php:4708
3816
+ msgid "Box shadow:"
3817
  msgstr ""
3818
 
3819
+ #: admin/views/Themes.php:1719
3820
+ msgid "Title alignment:"
3821
  msgstr ""
3822
 
3823
+ #: admin/views/Themes.php:1733 admin/views/Themes.php:3348
3824
+ #: admin/views/Themes.php:4581
3825
+ msgid "Font size:"
3826
  msgstr ""
3827
 
3828
+ #: admin/views/Themes.php:1739 admin/views/Themes.php:3354
3829
+ #: admin/views/Themes.php:4587
3830
+ msgid "Font color:"
 
 
 
 
 
3831
  msgstr ""
3832
 
3833
+ #: admin/views/Themes.php:1745 admin/views/Themes.php:3326
3834
+ #: admin/views/Themes.php:4593
3835
+ msgid "Font family:"
3836
  msgstr ""
3837
 
3838
+ #: admin/views/Themes.php:1767
3839
+ msgid "Description margin:"
3840
  msgstr ""
3841
 
3842
+ #: admin/views/Themes.php:1781 admin/views/Themes.php:2744
3843
+ msgid "Description border width:"
3844
  msgstr ""
3845
 
3846
+ #: admin/views/Themes.php:1787 admin/views/Themes.php:2750
3847
+ msgid "Description border style:"
3848
  msgstr ""
3849
 
3850
+ #: admin/views/Themes.php:1801 admin/views/Themes.php:2764
3851
+ msgid "Description border color:"
3852
  msgstr ""
3853
 
3854
+ #: admin/views/Themes.php:1995 admin/views/Themes.php:2338
3855
+ #: admin/views/Themes.php:2991
3856
+ msgid "Thumbnail transition:"
3857
  msgstr ""
3858
 
3859
+ #: admin/views/Themes.php:2141 admin/views/Themes.php:3123
3860
+ msgid "Back Font size:"
3861
  msgstr ""
3862
 
3863
+ #: admin/views/Themes.php:2147 admin/views/Themes.php:3129
3864
+ #, fuzzy
3865
+ #| msgid "Share on Facebook"
3866
+ msgid "Back Font color:"
3867
+ msgstr "Deel op Facebook"
3868
 
3869
+ #: admin/views/Themes.php:2153 admin/views/Themes.php:3135
3870
+ msgid "Back Font family:"
3871
  msgstr ""
3872
 
3873
+ #: admin/views/Themes.php:2175 admin/views/Themes.php:3157
3874
+ msgid "Back Font weight:"
3875
  msgstr ""
3876
 
3877
+ #: admin/views/Themes.php:2189 admin/views/Themes.php:2525
3878
+ #: admin/views/Themes.php:3171
3879
+ msgid "Back padding:"
3880
  msgstr ""
3881
 
3882
+ #: admin/views/Themes.php:2286
3883
+ msgid "Thumbnail margin:"
3884
  msgstr ""
3885
 
3886
+ #: admin/views/Themes.php:2292
3887
+ msgid "Thumbnail padding:"
3888
  msgstr ""
3889
 
3890
+ #: admin/views/Themes.php:2298
3891
+ msgid "Thumbnail border width:"
3892
  msgstr ""
3893
 
3894
+ #: admin/views/Themes.php:2304
3895
+ msgid "Thumbnail border style:"
3896
  msgstr ""
3897
 
3898
+ #: admin/views/Themes.php:2318
3899
+ msgid "Thumbnail border color:"
3900
  msgstr ""
3901
 
3902
+ #: admin/views/Themes.php:2324
3903
+ msgid "Thumbnail border radius:"
3904
  msgstr ""
3905
 
3906
+ #: admin/views/Themes.php:2331
3907
+ msgid "Thumbnail box shadow:"
3908
  msgstr ""
3909
 
3910
+ #: admin/views/Themes.php:2347
3911
+ msgid "Description alignment:"
3912
  msgstr ""
3913
 
3914
+ #: admin/views/Themes.php:2368
3915
+ msgid "Thumbnail hover effect:"
3916
  msgstr ""
3917
 
3918
+ #: admin/views/Themes.php:2395
3919
+ msgid "Thumbnails background color:"
3920
  msgstr ""
3921
 
3922
+ #: admin/views/Themes.php:2401
3923
+ msgid "Thumbnail background transparency:"
3924
  msgstr ""
3925
 
3926
+ #: admin/views/Themes.php:2419
3927
+ msgid "Thumbnail div padding:"
3928
  msgstr ""
3929
 
3930
+ #: admin/views/Themes.php:2426
3931
+ msgid "Thumbnail div background color:"
3932
  msgstr ""
3933
 
3934
+ #: admin/views/Themes.php:2432
3935
+ msgid "Thumbnail div border width:"
3936
  msgstr ""
3937
 
3938
+ #: admin/views/Themes.php:2439
3939
+ msgid "humbnail div border style:"
3940
  msgstr ""
3941
 
3942
+ #: admin/views/Themes.php:2453
3943
+ msgid "Thumbnail div border color:"
3944
  msgstr ""
3945
 
3946
+ #: admin/views/Themes.php:2459
3947
+ msgid "Thumbnail div border radius:"
3948
  msgstr ""
3949
 
3950
+ #: admin/views/Themes.php:2499
3951
+ msgid "Separator width:"
3952
  msgstr ""
3953
 
3954
+ #: admin/views/Themes.php:2505
3955
+ msgid "Separator style:"
3956
  msgstr ""
3957
 
3958
+ #: admin/views/Themes.php:2519
3959
+ msgid "Separator color:"
3960
  msgstr ""
3961
 
3962
+ #: admin/views/Themes.php:2532
3963
+ msgid "Back font size:"
3964
  msgstr ""
3965
 
3966
+ #: admin/views/Themes.php:2538
3967
+ msgid "Back font color:"
3968
  msgstr ""
3969
 
3970
+ #: admin/views/Themes.php:2544
3971
+ msgid "Back font family:"
3972
  msgstr ""
3973
 
3974
+ #: admin/views/Themes.php:2566
3975
+ msgid "Back font weight:"
3976
  msgstr ""
3977
 
3978
+ #: admin/views/Themes.php:2590
3979
+ msgid "Title/description alignment:"
3980
  msgstr ""
3981
 
3982
+ #: admin/views/Themes.php:2604
3983
+ msgid "Text div padding:"
3984
  msgstr ""
3985
 
3986
+ #: admin/views/Themes.php:2611
3987
+ msgid "Text div border width:"
3988
  msgstr ""
3989
 
3990
+ #: admin/views/Themes.php:2617
3991
+ msgid "Text border style:"
3992
  msgstr ""
3993
 
3994
+ #: admin/views/Themes.php:2631
3995
+ msgid "Text border color:"
3996
  msgstr ""
3997
 
3998
+ #: admin/views/Themes.php:2637
3999
+ msgid "Text div border radius:"
4000
  msgstr ""
4001
 
4002
+ #: admin/views/Themes.php:2644
4003
+ msgid "Text background color:"
4004
  msgstr ""
4005
 
4006
+ #: admin/views/Themes.php:2656 admin/views/Themes.php:4971
4007
+ msgid "Title padding:"
4008
  msgstr ""
4009
 
4010
+ #: admin/views/Themes.php:2663
4011
+ msgid "Title border width:"
4012
  msgstr ""
4013
 
4014
+ #: admin/views/Themes.php:2669
4015
+ msgid "Title border style:"
 
 
 
 
 
 
4016
  msgstr ""
4017
 
4018
+ #: admin/views/Themes.php:2683
4019
+ msgid "Title border color:"
4020
  msgstr ""
4021
 
4022
+ #: admin/views/Themes.php:2804 admin/views/Themes.php:4355
4023
+ msgid "Description font weight:"
4024
  msgstr ""
4025
 
4026
+ #: admin/views/Themes.php:2818
4027
+ msgid "Description more size:"
4028
  msgstr ""
4029
 
4030
+ #: admin/views/Themes.php:2824
4031
+ msgid "Description more color:"
4032
  msgstr ""
4033
 
4034
+ #: admin/views/Themes.php:3403
4035
+ msgid "Buttons and title margin:"
4036
  msgstr ""
4037
 
4038
+ #: admin/views/Themes.php:3410
4039
+ msgid "Buttons size:"
4040
  msgstr ""
4041
 
4042
+ #: admin/views/Themes.php:3422
4043
+ msgid "Buttons and title border width:"
4044
  msgstr ""
4045
 
4046
+ #: admin/views/Themes.php:3428
4047
+ msgid "Buttons and title border style:"
4048
  msgstr ""
4049
 
4050
+ #: admin/views/Themes.php:3442
4051
+ msgid "Buttons and title border color:"
4052
  msgstr ""
4053
 
4054
+ #: admin/views/Themes.php:3448
4055
+ msgid "Buttons and title border radius:"
4056
  msgstr ""
4057
 
4058
+ #: admin/views/Themes.php:3455
4059
+ msgid "Buttons and title background color:"
4060
  msgstr ""
4061
 
4062
+ #: admin/views/Themes.php:3461
4063
+ msgid "Buttons and title background transparency:"
4064
  msgstr ""
4065
 
4066
+ #: admin/views/Themes.php:3468
4067
+ msgid "Buttons or title alignment:"
4068
  msgstr ""
4069
 
4070
+ #: admin/views/Themes.php:3573
4071
+ msgid "Overlay background color:"
4072
  msgstr ""
4073
 
4074
+ #: admin/views/Themes.php:3579
4075
+ msgid "Overlay background transparency:"
4076
  msgstr ""
4077
 
4078
+ #: admin/views/Themes.php:3586
4079
+ msgid "Lightbox background color:"
4080
  msgstr ""
4081
 
4082
+ #: admin/views/Themes.php:3592
4083
+ msgid "Lightbox background transparency:"
4084
  msgstr ""
4085
 
4086
+ #: admin/views/Themes.php:3599
4087
+ msgid "Control buttons height:"
4088
  msgstr ""
4089
 
4090
+ #: admin/views/Themes.php:3605
4091
+ msgid "Control buttons margin (top):"
4092
  msgstr ""
4093
 
4094
+ #: admin/views/Themes.php:3611
4095
+ msgid "Control buttons margin (left):"
4096
  msgstr ""
4097
 
4098
+ #: admin/views/Themes.php:3617
4099
+ msgid "Control buttons position:"
4100
  msgstr ""
4101
 
4102
+ #: admin/views/Themes.php:3626
4103
+ msgid "Control buttons background color:"
4104
  msgstr ""
4105
 
4106
+ #: admin/views/Themes.php:3632
4107
+ msgid "Control buttons container border radius:"
4108
  msgstr ""
4109
 
4110
+ #: admin/views/Themes.php:3639
4111
+ msgid "Control buttons container background transparency:"
4112
  msgstr ""
4113
 
4114
+ #: admin/views/Themes.php:3646
4115
+ msgid "Control buttons alignment:"
4116
  msgstr ""
4117
 
4118
+ #: admin/views/Themes.php:3660
4119
+ msgid "Control buttons color:"
4120
  msgstr ""
4121
 
4122
+ #: admin/views/Themes.php:3666
4123
+ msgid "Control buttons transparency:"
4124
  msgstr ""
4125
 
4126
+ #: admin/views/Themes.php:3673
4127
+ msgid "Toggle button height:"
4128
  msgstr ""
4129
 
4130
+ #: admin/views/Themes.php:3679
4131
+ msgid "Toggle button width:"
4132
  msgstr ""
4133
 
4134
+ #: admin/views/Themes.php:3685
4135
+ msgid "Close button border radius:"
4136
  msgstr ""
4137
 
4138
+ #: admin/views/Themes.php:3693
4139
+ msgid "Close button border width:"
4140
  msgstr ""
4141
 
4142
+ #: admin/views/Themes.php:3699
4143
+ msgid "Close button border style:"
4144
  msgstr ""
4145
 
4146
+ #: admin/views/Themes.php:3713
4147
+ msgid "Close button border color:"
4148
  msgstr ""
4149
 
4150
+ #: admin/views/Themes.php:3719
4151
+ msgid "Close button box shadow:"
4152
  msgstr ""
4153
 
4154
+ #: admin/views/Themes.php:3726
4155
+ msgid "Close button background color:"
4156
  msgstr ""
4157
 
4158
+ #: admin/views/Themes.php:3729 admin/views/Themes.php:3742
4159
+ #: admin/views/Themes.php:3749 admin/views/Themes.php:3756
4160
+ #: admin/views/Themes.php:3763
4161
+ msgid "The option does not apply to Full-width lightbox."
4162
  msgstr ""
4163
 
4164
+ #: admin/views/Themes.php:3733
4165
+ msgid "Close button transparency:"
4166
  msgstr ""
4167
 
4168
+ #: admin/views/Themes.php:3739
4169
+ msgid "Close button width:"
4170
  msgstr ""
4171
 
4172
+ #: admin/views/Themes.php:3746
4173
+ msgid "Close button height:"
4174
  msgstr ""
4175
 
4176
+ #: admin/views/Themes.php:3753
4177
+ msgid "Close button top:"
 
 
4178
  msgstr ""
4179
 
4180
+ #: admin/views/Themes.php:3760
4181
+ msgid "Close button right:"
4182
  msgstr ""
4183
 
4184
+ #: admin/views/Themes.php:3767
4185
+ msgid "Close button size:"
4186
  msgstr ""
4187
 
4188
+ #: admin/views/Themes.php:3773
4189
+ msgid "Close button color:"
4190
  msgstr ""
4191
 
4192
+ #: admin/views/Themes.php:3779
4193
+ msgid "Fullscreen close button color:"
 
 
 
 
 
 
 
4194
  msgstr ""
4195
 
4196
+ #: admin/views/Themes.php:3785
4197
+ #, fuzzy
4198
+ #| msgid "Share on Facebook"
4199
+ msgid "Share buttons color:"
4200
+ msgstr "Deel op Facebook"
 
4201
 
4202
+ #: admin/views/Themes.php:3821
4203
+ msgid "Right, left buttons transparency:"
4204
  msgstr ""
4205
 
4206
+ #: admin/views/Themes.php:3852
4207
+ msgid "Right, left, close buttons hover color:"
 
 
4208
  msgstr ""
4209
 
4210
+ #: admin/views/Themes.php:3858
4211
+ msgid "Right, left buttons color:"
4212
  msgstr ""
4213
 
4214
+ #: admin/views/Themes.php:3897
4215
+ msgid "Filmstrip position:"
4216
  msgstr ""
4217
 
4218
+ #: admin/views/Themes.php:3908
4219
+ msgid "Filmstrip thumbnail margin:"
4220
  msgstr ""
4221
 
4222
+ #: admin/views/Themes.php:3915
4223
+ msgid "Filmstrip thumbnail border width:"
 
4224
  msgstr ""
4225
 
4226
+ #: admin/views/Themes.php:3921
4227
+ msgid "Filmstrip thumbnail border style:"
4228
  msgstr ""
4229
 
4230
+ #: admin/views/Themes.php:3935
4231
+ msgid "Filmstrip thumbnail border color:"
 
 
4232
  msgstr ""
4233
 
4234
+ #: admin/views/Themes.php:3941
4235
+ msgid "Filmstrip thumbnail border radius:"
4236
  msgstr ""
4237
 
4238
+ #: admin/views/Themes.php:3948
4239
+ msgid "Filmstrip thumbnail active border width:"
 
4240
  msgstr ""
4241
 
4242
+ #: admin/views/Themes.php:3954
4243
+ msgid "Filmstrip thumbnail active border color:"
4244
  msgstr ""
4245
 
4246
+ #: admin/views/Themes.php:3960
4247
+ msgid "Filmstrip thumbnail deactive transparency:"
4248
  msgstr ""
4249
 
4250
+ #: admin/views/Themes.php:3979
4251
+ msgid "Filmstrip right, left button background color:"
4252
  msgstr ""
4253
 
4254
+ #: admin/views/Themes.php:3985
4255
+ msgid "Rating position:"
 
4256
  msgstr ""
4257
 
4258
+ #: admin/views/Themes.php:3994
4259
+ msgid "Rating alignment:"
4260
+ msgstr ""
 
 
4261
 
4262
+ #: admin/views/Themes.php:4008
4263
+ msgid "Rating icon:"
4264
  msgstr ""
4265
 
4266
+ #: admin/views/Themes.php:4022
4267
+ msgid "Rating color:"
4268
  msgstr ""
4269
 
4270
+ #: admin/views/Themes.php:4028
4271
+ msgid "Rating hover color:"
4272
+ msgstr ""
4273
 
4274
+ #: admin/views/Themes.php:4034
4275
+ msgid "Rating size:"
4276
+ msgstr ""
4277
 
4278
+ #: admin/views/Themes.php:4040
4279
+ msgid "Rating icon count:"
4280
  msgstr ""
4281
 
4282
+ #: admin/views/Themes.php:4046
4283
+ msgid "Rating padding:"
 
4284
  msgstr ""
4285
 
4286
+ #: admin/views/Themes.php:4053
4287
+ msgid "Hit counter position:"
 
4288
  msgstr ""
4289
 
4290
+ #: admin/views/Themes.php:4062
4291
+ msgid "Hit counter alignment:"
4292
  msgstr ""
4293
 
4294
+ #: admin/views/Themes.php:4076
4295
+ msgid "Hit counter background color:"
4296
  msgstr ""
4297
 
4298
+ #: admin/views/Themes.php:4082
4299
+ msgid "Hit counter background transparency:"
4300
  msgstr ""
4301
 
4302
+ #: admin/views/Themes.php:4089
4303
+ msgid "Hit counter border width:"
4304
  msgstr ""
4305
 
4306
+ #: admin/views/Themes.php:4095
4307
+ msgid "Hit counter border style:"
4308
  msgstr ""
4309
 
4310
+ #: admin/views/Themes.php:4109
4311
+ msgid "Hit counter border color:"
4312
  msgstr ""
4313
 
4314
+ #: admin/views/Themes.php:4115
4315
+ msgid "Hit counter border radius:"
4316
  msgstr ""
4317
 
4318
+ #: admin/views/Themes.php:4122
4319
+ msgid "Hit counter padding:"
4320
  msgstr ""
4321
 
4322
+ #: admin/views/Themes.php:4129
4323
+ msgid "Hit counter margin:"
4324
  msgstr ""
4325
 
4326
+ #: admin/views/Themes.php:4136
4327
+ msgid "Hit counter font color:"
4328
  msgstr ""
4329
 
4330
+ #: admin/views/Themes.php:4142
4331
+ msgid "Hit counter font family:"
4332
  msgstr ""
4333
 
4334
+ #: admin/views/Themes.php:4164
4335
+ msgid "Hit counter font weight:"
4336
  msgstr ""
4337
 
4338
+ #: admin/views/Themes.php:4178
4339
+ msgid "Hit counter font size:"
4340
  msgstr ""
4341
 
4342
+ #: admin/views/Themes.php:4195
4343
+ msgid "Info position:"
4344
  msgstr ""
4345
 
4346
+ #: admin/views/Themes.php:4204
4347
+ msgid "Info alignment:"
4348
  msgstr ""
4349
 
4350
+ #: admin/views/Themes.php:4218
4351
+ msgid "Info background color:"
4352
  msgstr ""
4353
 
4354
+ #: admin/views/Themes.php:4224
4355
+ msgid "Info background transparency:"
4356
  msgstr ""
4357
 
4358
+ #: admin/views/Themes.php:4231
4359
+ msgid "Info border width:"
4360
  msgstr ""
4361
 
4362
+ #: admin/views/Themes.php:4237
4363
+ msgid "Info border style:"
 
4364
  msgstr ""
4365
 
4366
+ #: admin/views/Themes.php:4251
4367
+ msgid "Info border color:"
4368
  msgstr ""
4369
 
4370
+ #: admin/views/Themes.php:4257
4371
+ msgid "Info border radius:"
4372
  msgstr ""
4373
 
4374
+ #: admin/views/Themes.php:4264
4375
+ msgid "Info padding:"
4376
  msgstr ""
4377
 
4378
+ #: admin/views/Themes.php:4271
4379
+ msgid "Info margin:"
4380
  msgstr ""
4381
 
4382
+ #: admin/views/Themes.php:4376
4383
+ #, fuzzy
4384
+ #| msgid "Comment"
4385
+ msgid "Comments Width:"
4386
+ msgstr "Kommentaar lewer nie"
4387
+
4388
+ #: admin/views/Themes.php:4382
4389
+ msgid "Comments position:"
4390
  msgstr ""
4391
 
4392
+ #: admin/views/Themes.php:4391
4393
+ msgid "Comments background color:"
4394
  msgstr ""
4395
 
4396
+ #: admin/views/Themes.php:4397
4397
+ msgid "Comments font size:"
4398
  msgstr ""
4399
 
4400
+ #: admin/views/Themes.php:4403
4401
+ msgid "Comments font color:"
4402
  msgstr ""
4403
 
4404
+ #: admin/views/Themes.php:4409
4405
+ msgid "Comments font family:"
4406
  msgstr ""
4407
 
4408
+ #: admin/views/Themes.php:4431
4409
+ msgid "Comments author font size:"
4410
  msgstr ""
4411
 
4412
+ #: admin/views/Themes.php:4438
4413
+ msgid "Comments date font size:"
4414
  msgstr ""
4415
 
4416
+ #: admin/views/Themes.php:4444
4417
+ msgid "Comments body font size:"
4418
  msgstr ""
4419
 
4420
+ #: admin/views/Themes.php:4450
4421
+ msgid "Comment input border width:"
4422
  msgstr ""
4423
 
4424
+ #: admin/views/Themes.php:4456
4425
+ msgid "omment input border style:"
4426
  msgstr ""
4427
 
4428
+ #: admin/views/Themes.php:4470
4429
+ msgid "Comment input border color:"
4430
  msgstr ""
4431
 
4432
+ #: admin/views/Themes.php:4476
4433
+ msgid "Comment input border radius:"
4434
+ msgstr ""
 
 
4435
 
4436
+ #: admin/views/Themes.php:4482
4437
+ msgid "Comment input padding:"
4438
  msgstr ""
4439
 
4440
+ #: admin/views/Themes.php:4489
4441
+ msgid "Comment input background color:"
4442
  msgstr ""
4443
 
4444
+ #: admin/views/Themes.php:4495
4445
+ msgid "Comment button background color:"
4446
  msgstr ""
4447
 
4448
+ #: admin/views/Themes.php:4501
4449
+ msgid "Comment button padding:"
4450
  msgstr ""
4451
 
4452
+ #: admin/views/Themes.php:4508
4453
+ msgid "Comment button border width:"
4454
+ msgstr ""
 
 
4455
 
4456
+ #: admin/views/Themes.php:4514
4457
+ msgid "Comment button border style:"
4458
  msgstr ""
4459
 
4460
+ #: admin/views/Themes.php:4528
4461
+ msgid "Comment button border color:"
4462
  msgstr ""
4463
 
4464
+ #: admin/views/Themes.php:4534
4465
+ msgid "omment button border radius:"
4466
  msgstr ""
4467
 
4468
+ #: admin/views/Themes.php:4541
4469
+ msgid "Comment separator width:"
4470
+ msgstr ""
 
 
4471
 
4472
+ #: admin/views/Themes.php:4547
4473
+ msgid "Comment separator style:"
4474
  msgstr ""
4475
 
4476
+ #: admin/views/Themes.php:4561
4477
+ msgid "Comment separator color:"
4478
  msgstr ""
4479
 
4480
+ #: admin/views/Themes.php:4615
4481
+ msgid "Font weight:"
4482
+ msgstr ""
 
 
 
4483
 
4484
+ #: admin/views/Themes.php:4686
4485
+ msgid "Button background color:"
4486
  msgstr ""
4487
 
4488
+ #: admin/views/Themes.php:4692
4489
+ msgid "Button background transparency:"
4490
  msgstr ""
4491
 
4492
+ #: admin/views/Themes.php:4699
4493
+ msgid "Button transition:"
4494
  msgstr ""
4495
 
4496
+ #: admin/views/Themes.php:4725
4497
+ msgid "Position:"
4498
  msgstr ""
4499
 
4500
+ #: admin/views/Themes.php:4748
4501
+ msgid "Numbering:"
4502
  msgstr ""
4503
 
4504
+ #: admin/views/Themes.php:4757
4505
+ msgid "Button text:"
4506
  msgstr ""
4507
 
4508
+ #: admin/views/Themes.php:4762
4509
+ msgid "Arrow"
4510
  msgstr ""
4511
 
4512
+ #: admin/views/Themes.php:4763
4513
+ msgid "Next, previous buttons values."
4514
  msgstr ""
4515
 
4516
+ #: admin/views/Themes.php:4787
4517
+ msgid "Container opacity:"
4518
  msgstr ""
4519
 
4520
+ #: admin/views/Themes.php:4900
4521
+ msgid "Carousel margin:"
4522
  msgstr ""
4523
 
4524
+ #: admin/views/Themes.php:4906
4525
+ msgid "Image border width:"
4526
  msgstr ""
4527
 
4528
+ #: admin/views/Themes.php:4913
4529
+ msgid "Image border style:"
4530
  msgstr ""
4531
 
4532
+ #: admin/views/Themes.php:4928
4533
+ msgid "Image border color:"
4534
  msgstr ""
4535
 
4536
+ #: admin/views/Themes.php:4944
4537
+ msgid "Title background color:"
4538
  msgstr ""
4539
 
4540
+ #: admin/views/Themes.php:4951
4541
+ msgid "Title opacity:"
4542
  msgstr ""
4543
 
4544
+ #: admin/views/Themes.php:4978
4545
+ msgid "Title Font family:"
4546
  msgstr ""
4547
 
4548
+ #: admin/views/Themes.php:5005
4549
+ msgid "Title color:"
4550
  msgstr ""
4551
 
4552
+ #: admin/views/Uninstall.php:31
4553
+ msgid "support team"
4554
  msgstr ""
4555
 
4556
+ #: admin/views/Uninstall.php:32
4557
+ msgid "Contact us"
4558
  msgstr ""
4559
 
4560
+ #: admin/views/Uninstall.php:33
4561
+ #, php-format
4562
+ msgid ""
4563
+ "Before uninstalling the plugin, please Contact our %s. We'll do our best to "
4564
+ "help you out with your issue. We value each and every user and value what's "
4565
+ "right for our users in everything we do.<br />\n"
4566
+ " However, if anyway you have made a decision to uninstall the plugin, "
4567
+ "please take a minute to %s and tell what you didn't like for our plugins "
4568
+ "further improvement and development. Thank you !!!"
4569
  msgstr ""
4570
 
4571
+ #: admin/views/Uninstall.php:37
4572
+ #, php-format
4573
+ msgid ""
4574
+ "Deactivating %s plugin does not remove any data that may have been created. "
4575
+ "To completely remove this plugin, you can uninstall it here."
4576
  msgstr ""
4577
 
4578
+ #: admin/views/Uninstall.php:40
4579
+ msgid "WARNING:"
4580
  msgstr ""
4581
 
4582
+ #: admin/views/Uninstall.php:41
4583
+ msgid ""
4584
+ "Once uninstalled, this can't be undone. You should use a Database Backup "
4585
+ "plugin of WordPress to back up all the data first."
4586
  msgstr ""
4587
 
4588
+ #: admin/views/Uninstall.php:44
4589
+ msgid "The following Database Tables will be deleted:"
4590
  msgstr ""
4591
 
4592
+ #: admin/views/Uninstall.php:49
4593
+ msgid "Database Tables"
4594
  msgstr ""
4595
 
4596
+ #: admin/views/Uninstall.php:67
4597
+ msgid "Delete the folder containing uploaded images."
4598
  msgstr ""
4599
 
4600
+ #: admin/views/Uninstall.php:73
4601
+ #, php-format
4602
+ msgid "Do you really want to uninstall %s?"
4603
  msgstr ""
4604
 
4605
+ #: admin/views/Uninstall.php:83
4606
+ msgid "UNINSTALL"
4607
  msgstr ""
4608
 
4609
+ #: admin/views/Uninstall.php:85
4610
+ #, php-format
4611
+ msgid ""
4612
+ "You are About to Uninstall %s from WordPress. This Action Is Not Reversible."
4613
  msgstr ""
4614
 
4615
+ #: admin/views/Widget.php:98 photo-gallery.php:92
4616
+ msgid "Photo Gallery"
 
4617
  msgstr ""
4618
 
4619
+ #: admin/views/Widget.php:115 admin/views/WidgetSlideshow.php:82
4620
+ #: admin/views/WidgetTags.php:78
4621
+ msgid "Title:"
4622
+ msgstr ""
4623
 
4624
+ #: admin/views/Widget.php:119 admin/views/WidgetTags.php:82
4625
+ msgid "Type:"
4626
+ msgstr ""
4627
 
4628
+ #: admin/views/Widget.php:121
4629
+ msgid "Gallery groups"
4630
+ msgstr ""
4631
 
4632
+ #: admin/views/Widget.php:124 admin/views/WidgetSlideshow.php:86
4633
+ msgid "Galleries:"
4634
+ msgstr ""
4635
 
4636
+ #: admin/views/Widget.php:137
4637
+ #, fuzzy
4638
+ #| msgid "Gallery is empty."
4639
+ msgid "Gallery Type:"
4640
+ msgstr "Gallery is leeg."
4641
 
4642
+ #: admin/views/Widget.php:145
4643
+ msgid "Gallery Groups:"
4644
+ msgstr ""
4645
 
4646
+ #: admin/views/Widget.php:147
4647
+ msgid "All Galleries"
4648
+ msgstr ""
4649
 
4650
+ #: admin/views/Widget.php:158
4651
+ msgid "Sort:"
4652
+ msgstr ""
4653
+
4654
+ #: admin/views/Widget.php:160 frontend/views/view.php:639
4655
+ msgid "First"
4656
+ msgstr "Eerste"
4657
+
4658
+ #: admin/views/Widget.php:161 frontend/views/view.php:642
4659
+ msgid "Last"
4660
+ msgstr "Duur"
4661
+
4662
+ #: admin/views/Widget.php:165
4663
+ msgid "Count:"
4664
+ msgstr ""
4665
+
4666
+ #: admin/views/Widget.php:169 admin/views/WidgetSlideshow.php:131
4667
+ #: admin/views/WidgetTags.php:105
4668
+ msgid "Dimensions:"
4669
+ msgstr ""
4670
+
4671
+ #: admin/views/Widget.php:174 admin/views/WidgetSlideshow.php:147
4672
+ #: admin/views/WidgetTags.php:124
4673
+ msgid "Themes:"
4674
+ msgstr ""
4675
+
4676
+ #: admin/views/WidgetSlideshow.php:67 photo-gallery.php:1680
4677
+ msgid "Photo Gallery Slideshow"
4678
+ msgstr ""
4679
+
4680
+ #: admin/views/WidgetSlideshow.php:88
4681
+ msgid "Select"
4682
+ msgstr ""
4683
+
4684
+ #: admin/views/WidgetSlideshow.php:99
4685
+ msgid "Slideshow effect:"
4686
+ msgstr ""
4687
+
4688
+ #: admin/views/WidgetSlideshow.php:113
4689
+ msgid "Enable shuffle:"
4690
+ msgstr ""
4691
+
4692
+ #: admin/views/WidgetSlideshow.php:119
4693
+ msgid "Enable autoplay:"
4694
+ msgstr ""
4695
+
4696
+ #: admin/views/WidgetSlideshow.php:125
4697
+ msgid "Enable control buttons:"
4698
+ msgstr ""
4699
+
4700
+ #: admin/views/WidgetSlideshow.php:136
4701
+ msgid "Filmstrip height:"
4702
+ msgstr ""
4703
+
4704
+ #: admin/views/WidgetSlideshow.php:143
4705
+ msgid "Time interval:"
4706
+ msgstr ""
4707
+
4708
+ #: admin/views/WidgetTags.php:63 photo-gallery.php:1676
4709
+ msgid "Photo Gallery Tags Cloud"
4710
+ msgstr ""
4711
+
4712
+ #: admin/views/WidgetTags.php:88
4713
+ msgid "Show Tag Names:"
4714
+ msgstr ""
4715
+
4716
+ #: admin/views/WidgetTags.php:94
4717
+ msgid "Open in:"
4718
+ msgstr ""
4719
+
4720
+ #: admin/views/WidgetTags.php:95
4721
+ msgid "Page"
4722
+ msgstr ""
4723
+
4724
+ #: admin/views/WidgetTags.php:100
4725
+ msgid "Number:"
4726
+ msgstr ""
4727
+
4728
+ #: admin/views/WidgetTags.php:102
4729
+ msgid "0 for all."
4730
+ msgstr ""
4731
+
4732
+ #: admin/views/WidgetTags.php:110
4733
+ msgid "Transparent Background:"
4734
+ msgstr ""
4735
+
4736
+ #: admin/views/WidgetTags.php:116
4737
+ msgid "Background Color:"
4738
+ msgstr ""
4739
+
4740
+ #: admin/views/WidgetTags.php:120
4741
+ msgid "Text Color:"
4742
+ msgstr ""
4743
+
4744
+ #: banner_class.php:374
4745
+ msgid "Activation"
4746
+ msgstr ""
4747
+
4748
+ #: banner_class.php:378
4749
+ msgid "Activate"
4750
+ msgstr ""
4751
+
4752
+ #: banner_class.php:378
4753
+ msgid "Install"
4754
+ msgstr ""
4755
+
4756
+ #: banner_class.php:382
4757
+ msgid "Activation failed, please try again."
4758
+ msgstr ""
4759
+
4760
+ #: banner_class.php:382
4761
+ msgid "Installation failed, please try again."
4762
+ msgstr ""
4763
+
4764
+ #: filemanager/controller.php:177
4765
+ msgid "Directory already exists."
4766
+ msgstr ""
4767
+
4768
+ #: filemanager/controller.php:263
4769
+ msgid "File doesn't exist."
4770
+ msgstr ""
4771
+
4772
+ #: filemanager/controller.php:267 filemanager/controller.php:300
4773
+ #: filemanager/controller.php:332
4774
+ msgid "Can't rename the file."
4775
+ msgstr ""
4776
+
4777
+ #: filemanager/controller.php:371
4778
+ msgid "Some of the files couldn't be removed."
4779
+ msgstr ""
4780
+
4781
+ #: filemanager/controller.php:481
4782
+ msgid "Failed to copy some of the files."
4783
+ msgstr ""
4784
+
4785
+ #: filemanager/controller.php:528
4786
+ msgid "Failed to move some of the files."
4787
+ msgstr ""
4788
+
4789
+ #: filemanager/view.php:70
4790
+ msgid "File loading failed"
4791
+ msgstr ""
4792
+
4793
+ #: filemanager/view.php:71
4794
+ msgid "Are you sure you want to permanently remove selected items?"
4795
+ msgstr ""
4796
+
4797
+ #: filemanager/view.php:72
4798
+ msgid "This will cancel uploads. Continue?"
4799
+ msgstr ""
4800
+
4801
+ #: filemanager/view.php:73
4802
+ msgid "Enter directory name"
4803
+ msgstr ""
4804
+
4805
+ #: filemanager/view.php:74
4806
+ msgid "Enter new name"
4807
+ msgstr ""
4808
+
4809
+ #: filemanager/view.php:75
4810
+ msgid "Processing uploaded files..."
4811
+ msgstr ""
4812
+
4813
+ #: filemanager/view.php:93
4814
+ msgid "Up"
4815
+ msgstr ""
4816
+
4817
+ #: filemanager/view.php:94
4818
+ msgid "Make a directory"
4819
+ msgstr ""
4820
+
4821
+ #: filemanager/view.php:95
4822
+ msgid "Rename item"
4823
+ msgstr ""
4824
+
4825
+ #: filemanager/view.php:97 framework/howto/data.php:168
4826
+ msgid "Copy"
4827
+ msgstr ""
4828
+
4829
+ #: filemanager/view.php:98
4830
+ msgid "Cut"
4831
+ msgstr ""
4832
+
4833
+ #: filemanager/view.php:99
4834
+ msgid "Paste"
4835
+ msgstr ""
4836
+
4837
+ #: filemanager/view.php:100
4838
+ #, fuzzy
4839
+ #| msgid " item(s)"
4840
+ msgid "Remove items"
4841
+ msgstr "item(s)"
4842
 
4843
+ #: filemanager/view.php:102
4844
+ msgid "Refresh"
4845
+ msgstr ""
4846
+
4847
+ #: filemanager/view.php:106
4848
+ msgid "View thumbs"
4849
+ msgstr ""
4850
+
4851
+ #: filemanager/view.php:107
4852
+ msgid "View list"
4853
+ msgstr ""
4854
+
4855
+ #: filemanager/view.php:111
4856
+ msgid "Upload files"
4857
+ msgstr ""
4858
+
4859
+ #: filemanager/view.php:130
4860
+ #, fuzzy
4861
+ #| msgid "Order by: "
4862
+ msgid "Order by:"
4863
  msgstr "Om deur"
4864
 
4865
+ #: filemanager/view.php:132
4866
+ msgid "Click to sort by name"
4867
+ msgstr ""
4868
+
4869
+ #: filemanager/view.php:148
4870
+ msgid "Click to sort by size"
4871
+ msgstr ""
4872
+
4873
+ #: filemanager/view.php:164
4874
+ msgid "Click to sort by date modified"
4875
+ msgstr ""
4876
+
4877
+ #: filemanager/view.php:167
4878
+ msgid "Date modified"
4879
+ msgstr ""
4880
+
4881
+ #: filemanager/view.php:198
4882
+ msgid "No items found."
4883
+ msgstr ""
4884
+
4885
+ #: filemanager/view.php:213
4886
+ #, fuzzy
4887
+ #| msgid "There are no images in this gallery."
4888
+ msgid "Add selected images to gallery"
4889
+ msgstr "Daar is geen foto's in die gallery."
4890
+
4891
+ #: filemanager/view.php:228
4892
+ msgid "Thumbnail Max Dimensions:"
4893
+ msgstr ""
4894
+
4895
+ #: filemanager/view.php:229
4896
+ msgid "Thumbnail:"
4897
+ msgstr ""
4898
+
4899
+ #: filemanager/view.php:234 frontend/views/view.php:241
4900
+ msgid "Back"
4901
+ msgstr "Terug"
4902
+
4903
+ #: filemanager/view.php:237
4904
+ msgid "Image Max Dimensions:"
4905
+ msgstr ""
4906
+
4907
+ #: filemanager/view.php:238
4908
+ msgid "Image:"
4909
+ msgstr ""
4910
+
4911
+ #: filemanager/view.php:246
4912
+ msgid "Drag files here"
4913
+ msgstr ""
4914
+
4915
+ #: filemanager/view.php:246
4916
+ msgid "Select Files"
4917
+ msgstr ""
4918
+
4919
+ #: filemanager/view.php:265
4920
+ msgid "No files to upload"
4921
+ msgstr ""
4922
+
4923
+ #: filemanager/view.php:292
4924
+ msgid "Uploaded"
4925
+ msgstr ""
4926
+
4927
+ #: filemanager/view.php:293
4928
+ msgid "Upload failed"
4929
+ msgstr ""
4930
+
4931
+ #: filemanager/view.php:294
4932
+ msgid ""
4933
+ "There has been a problem while trying to upload the following images. Please "
4934
+ "try to upload them again."
4935
+ msgstr ""
4936
+
4937
+ #: filemanager/view.php:295
4938
+ msgid "Allowed upload types JPG, JPEG, GIF, PNG, SVG."
4939
+ msgstr ""
4940
+
4941
+ #: framework/WDWLibrary.php:69
4942
+ msgid "Item successfully saved."
4943
+ msgstr ""
4944
+
4945
+ #: framework/WDWLibrary.php:75 framework/WDWLibrary.php:178
4946
+ msgid "Failed."
4947
+ msgstr ""
4948
+
4949
+ #: framework/WDWLibrary.php:81
4950
+ msgid "Item successfully deleted."
4951
+ msgstr ""
4952
+
4953
+ #: framework/WDWLibrary.php:87
4954
+ msgid "You can't delete default theme."
4955
+ msgstr ""
4956
+
4957
+ #: framework/WDWLibrary.php:93
4958
+ msgid "Items Successfully Deleted."
4959
+ msgstr ""
4960
+
4961
+ #: framework/WDWLibrary.php:99
4962
+ msgid "You must set watermark type from Options page."
4963
+ msgstr ""
4964
+
4965
+ #: framework/WDWLibrary.php:105
4966
+ msgid "The item is successfully set as default."
4967
+ msgstr ""
4968
+
4969
+ #: framework/WDWLibrary.php:111
4970
+ msgid "Options successfully saved."
4971
+ msgstr ""
4972
+
4973
+ #: framework/WDWLibrary.php:117
4974
+ msgid "Item successfully published."
4975
+ msgstr ""
4976
+
4977
+ #: framework/WDWLibrary.php:123
4978
+ msgid "Item successfully unpublished."
4979
+ msgstr ""
4980
+
4981
+ #: framework/WDWLibrary.php:129
4982
+ msgid "Item successfully duplicated."
4983
+ msgstr ""
4984
+
4985
+ #: framework/WDWLibrary.php:136
4986
+ msgid "Items Succesfully Unpublished."
4987
+ msgstr ""
4988
+
4989
+ #: framework/WDWLibrary.php:142
4990
+ msgid "Ordering Succesfully Saved."
4991
+ msgstr ""
4992
+
4993
+ #: framework/WDWLibrary.php:148
4994
+ msgid "A term with the name provided already exists."
4995
+ msgstr ""
4996
+
4997
+ #: framework/WDWLibrary.php:154
4998
+ msgid "Name field is required."
4999
+ msgstr ""
5000
+
5001
+ #: framework/WDWLibrary.php:160
5002
+ msgid "The slug must be unique."
5003
+ msgstr ""
5004
+
5005
+ #: framework/WDWLibrary.php:166
5006
+ msgid "Changes must be saved."
5007
+ msgstr ""
5008
+
5009
+ #: framework/WDWLibrary.php:172
5010
+ msgid "Theme successfully copied."
5011
+ msgstr ""
5012
+
5013
+ #: framework/WDWLibrary.php:183
5014
+ msgid "Items were reset successfully."
5015
+ msgstr ""
5016
+
5017
+ #: framework/WDWLibrary.php:188
5018
+ msgid "Watermark successfully set."
5019
+ msgstr ""
5020
+
5021
+ #: framework/WDWLibrary.php:193
5022
+ msgid "Items successfully rotated."
5023
+ msgstr ""
5024
+
5025
+ #: framework/WDWLibrary.php:198
5026
+ msgid "Items successfully recreated."
5027
+ msgstr ""
5028
+
5029
+ #: framework/WDWLibrary.php:203
5030
+ msgid "Items successfully resized."
5031
+ msgstr ""
5032
+
5033
+ #: framework/WDWLibrary.php:208
5034
+ msgid "Items successfully edited."
5035
+ msgstr ""
5036
+
5037
+ #: framework/WDWLibrary.php:269
5038
+ msgid "Click to sort by this item"
5039
+ msgstr ""
5040
+
5041
+ #: framework/WDWLibrary.php:451 framework/WDWLibrary.php:600
5042
+ msgid "item"
5043
+ msgstr ""
5044
+
5045
+ #: framework/WDWLibrary.php:2156
5046
  #, php-format
5047
  msgid "No %s found."
5048
  msgstr ""
5049
 
5050
+ #: framework/WDWLibrary.php:2212
5051
  #, fuzzy
5052
  #| msgid "Gallery is empty."
5053
  msgid "Gallery Tags"
5054
  msgstr "Gallery is leeg."
5055
 
5056
+ #: framework/WDWLibrary.php:2423
5057
+ msgid "resized"
5058
+ msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5059
 
5060
+ #: framework/WDWLibrary.php:2427
5061
+ msgid "Recreate thumbnail"
5062
+ msgstr ""
 
 
5063
 
5064
+ #: framework/WDWLibrary.php:2428
5065
+ msgid "recreated"
5066
+ msgstr ""
5067
+
5068
+ #: framework/WDWLibrary.php:2432
5069
+ msgid "Rotate left"
5070
+ msgstr ""
5071
+
5072
+ #: framework/WDWLibrary.php:2433
5073
+ #, fuzzy
5074
+ #| msgid "Not rated yet."
5075
+ msgid "rotated left"
5076
+ msgstr "Nog nie gegradeer nie"
5077
+
5078
+ #: framework/WDWLibrary.php:2437
5079
+ msgid "Rotate right"
5080
+ msgstr ""
5081
+
5082
+ #: framework/WDWLibrary.php:2438
5083
+ msgid "rotated right"
5084
+ msgstr ""
5085
+
5086
+ #: framework/WDWLibrary.php:2443 framework/WDWLibrary.php:2456
5087
+ #: framework/WDWLibrary.php:2461 framework/WDWLibrary.php:2466
5088
+ #: framework/WDWLibrary.php:2471 framework/WDWLibrary.php:2494
5089
+ #: framework/WDWLibrary.php:2499
5090
+ msgid "edited"
5091
+ msgstr ""
5092
+
5093
+ #: framework/WDWLibrary.php:2448
5094
+ #, fuzzy
5095
+ #| msgid "Reset"
5096
+ msgid "reset"
5097
+ msgstr "Herstel"
5098
+
5099
+ #: framework/WDWLibrary.php:2455
5100
+ msgid "Edit Alt/Title"
5101
+ msgstr ""
5102
+
5103
+ #: framework/WDWLibrary.php:2460
5104
+ msgid "Edit description"
5105
+ msgstr ""
5106
+
5107
+ #: framework/WDWLibrary.php:2465
5108
+ msgid "Edit redirect URL"
5109
+ msgstr ""
5110
+
5111
+ #: framework/WDWLibrary.php:2470
5112
+ #, fuzzy
5113
+ #| msgid " item(s)"
5114
+ msgid "Add/Remove tag"
5115
+ msgstr "item(s)"
5116
+
5117
+ #: framework/WDWLibrary.php:2493
5118
+ msgid "Add pricelist"
5119
+ msgstr ""
5120
+
5121
+ #: framework/WDWLibrary.php:2498
5122
+ msgid "Remove pricelist"
5123
+ msgstr ""
5124
+
5125
+ #: framework/WDWLibrary.php:2604
5126
+ #, fuzzy
5127
+ #| msgid "Share on Facebook"
5128
+ msgid "Photo Gallery Premium"
5129
+ msgstr "Deel op Facebook"
5130
+
5131
+ #: framework/WDWLibrary.php:2607
5132
+ msgid ""
5133
+ "Get more stunning views with fully customizable themes, powerful lightbox "
5134
+ "and much more."
5135
+ msgstr ""
5136
+
5137
+ #: framework/WDWLibrary.php:2611 framework/WDWLibrary.php:2662
5138
+ msgid "Upgrade"
5139
+ msgstr ""
5140
+
5141
+ #: framework/WDWLibrary.php:2625
5142
+ msgid "User guide"
5143
+ msgstr ""
5144
+
5145
+ #: framework/WDWLibrary.php:2640 photo-gallery.php:498 photo-gallery.php:1905
5146
+ msgid "Ask a question"
5147
+ msgstr ""
5148
+
5149
+ #: framework/WDWLibrary.php:2654
5150
+ msgid "Forms"
5151
+ msgstr ""
5152
+
5153
+ #: framework/WDWLibrary.php:2658 photo-gallery.php:488
5154
+ msgid "Add-ons"
5155
+ msgstr ""
5156
+
5157
+ #: framework/WDWLibrary.php:2662
5158
+ msgid "Premium Version"
5159
+ msgstr ""
5160
 
5161
+ #: framework/WDWLibrary.php:2796
5162
+ #, fuzzy
5163
+ #| msgid "Gallery is empty."
5164
+ msgid "All tags"
5165
  msgstr "Gallery is leeg."
5166
 
5167
+ #: framework/WDWLibraryEmbed.php:399 framework/WDWLibraryEmbed.php:408
5168
+ #: framework/WDWLibraryEmbed.php:410
5169
+ msgid "The entered URL is incorrect. Please check the URL and try again."
5170
+ msgstr ""
 
 
 
 
 
 
 
 
5171
 
5172
+ #: framework/howto/data.php:4
5173
+ msgid "How to insert Photo Gallery (shortcode) ?"
 
 
 
 
 
 
 
 
5174
  msgstr ""
5175
 
5176
+ #: framework/howto/data.php:8
5177
+ msgid "Click Add Photo Gallery Button"
5178
+ msgstr ""
5179
+
5180
+ #: framework/howto/data.php:9
5181
+ msgid ""
5182
+ "To add a gallery using shortcode, please find and click the \"Add Photo "
5183
+ "Gallery\" button in your post/page editor navigation."
5184
+ msgstr ""
5185
+
5186
+ #: framework/howto/data.php:14
5187
+ msgid "Configure and Insert"
5188
  msgstr ""
5189
 
5190
+ #: framework/howto/data.php:15
5191
+ msgid ""
5192
+ "In the pop-up, choose gallery view type, gallery, theme and configure other "
5193
+ "options for your gallery. Click Insert into post button to add the gallery "
5194
+ "to the post/page."
5195
+ msgstr ""
5196
+
5197
+ #: framework/howto/data.php:20 framework/howto/data.php:44
5198
+ #: framework/howto/data.php:94
5199
+ msgid "Congrats !"
5200
+ msgstr ""
5201
+
5202
+ #: framework/howto/data.php:21
5203
+ msgid ""
5204
+ "You've added a gallery to your post/page. Click on Photo Gallery icon again "
5205
+ "if you want to make changes to your gallery."
5206
+ msgstr ""
5207
+
5208
+ #: framework/howto/data.php:28
5209
+ msgid "How to insert Photo Gallery as widget ?"
5210
+ msgstr ""
5211
+
5212
+ #: framework/howto/data.php:32
5213
  #, fuzzy
5214
+ #| msgid "Gallery is empty."
5215
+ msgid "Add Gallery Widget"
5216
+ msgstr "Gallery is leeg."
5217
 
5218
+ #: framework/howto/data.php:33
5219
+ msgid ""
5220
+ "In your WordPress dashboard go to Appearance > Widgets. Find Photo Gallery "
5221
+ "Widget in the list, click and choose the area you want to display the "
5222
+ "gallery and click \"Add Widget button\"."
5223
+ msgstr ""
5224
 
5225
+ #: framework/howto/data.php:38
5226
+ msgid "Configure and Save"
5227
+ msgstr ""
5228
+
5229
+ #: framework/howto/data.php:39
5230
+ msgid ""
5231
+ "Configure gallery options on the right side of the page, including gallery/"
5232
+ "album you want to display, image count, dimensions and more. Click save to "
5233
+ "display the changes on your website."
5234
+ msgstr ""
5235
+
5236
+ #: framework/howto/data.php:45
5237
+ msgid ""
5238
+ "Great, you've added a gallery widget to your site. You can always go back to "
5239
+ "the widgets page on your dashboard to edit or delete the Photo Gallery "
5240
+ "Widget or add a new one."
5241
+ msgstr ""
5242
+
5243
+ #: framework/howto/data.php:52
5244
+ msgid "How to insert a shortcode in Gutenberg?"
5245
+ msgstr ""
5246
+
5247
+ #: framework/howto/data.php:56
5248
+ msgid "Click the Photo Gallery Button"
5249
+ msgstr ""
5250
+
5251
+ #: framework/howto/data.php:57
5252
+ msgid ""
5253
+ "Head to the page/post you want to insert a gallery in. In the Gutenberg "
5254
+ "editor, click “add block” then click the Photo Gallery button."
5255
+ msgstr ""
5256
+
5257
+ #: framework/howto/data.php:62
5258
+ msgid "Configure and Insert Gallery"
5259
+ msgstr ""
5260
+
5261
+ #: framework/howto/data.php:63
5262
+ msgid ""
5263
+ "From the window that follows, select which gallery to insert, its layout, "
5264
+ "and configure its options. Click “Insert Into Post” to add your selected "
5265
+ "gallery to the post/page."
5266
+ msgstr ""
5267
+
5268
+ #: framework/howto/data.php:68
5269
+ msgid "Congrats!"
5270
+ msgstr ""
5271
+
5272
+ #: framework/howto/data.php:69
5273
+ msgid ""
5274
+ "You’ve successfully inserted your gallery to your post/page. Click the Photo "
5275
+ "Gallery icon in your editor to make any further changes to your gallery."
5276
+ msgstr ""
5277
+
5278
+ #: framework/howto/data.php:78
5279
+ msgid "Advanced: PHP code"
5280
+ msgstr ""
5281
+
5282
+ #: framework/howto/data.php:79
5283
+ #, php-format
5284
+ msgid ""
5285
+ "%s This code should be inserted into a PHP file. This is a more advanced "
5286
+ "method of publishing and should be used in case you want the galleries to be "
5287
+ "integrated into your theme files ( for example in your website header or "
5288
+ "footer area ). You can't insert this code into your post / page editor."
5289
+ msgstr ""
5290
+
5291
+ #: framework/howto/data.php:79
5292
+ msgid "Attention:"
5293
+ msgstr ""
5294
+
5295
+ #: framework/howto/data.php:82
5296
+ msgid "Copy the Code"
5297
+ msgstr ""
5298
+
5299
+ #: framework/howto/data.php:83
5300
+ msgid "Copy the PHP code that appears below before proceeding to next step."
5301
+ msgstr ""
5302
+
5303
+ #: framework/howto/data.php:88
5304
+ msgid "Paste the Code"
5305
+ msgstr ""
5306
+
5307
+ #: framework/howto/data.php:89
5308
+ msgid ""
5309
+ "In your dashboard navigation go to Appearance > Editor. Choose the specific "
5310
+ "section you want the gallery to appear and paste the PHP code you copied in "
5311
+ "that section. Press Update File button to save the changes in the code."
5312
+ msgstr ""
5313
+
5314
+ #: framework/howto/data.php:95
5315
+ msgid ""
5316
+ "The Photo Gallery will now appear in the section of the site you’ve chosen."
5317
+ msgstr ""
5318
+
5319
+ #: framework/howto/howto.php:339 framework/howto/howto.php:357
5320
+ msgid "How to ..."
5321
+ msgstr ""
5322
+
5323
+ #: framework/howto/howto.php:409
5324
+ msgid "How to use"
5325
+ msgstr ""
5326
+
5327
+ #: frontend/controllers/BWGControllerGalleryBox.php:74
5328
+ #: frontend/controllers/BWGControllerGalleryBox.php:79
5329
+ #: frontend/controllers/BWGControllerGalleryBox.php:88
5330
+ #: frontend/controllers/BWGControllerGalleryBox.php:96
5331
+ #: frontend/controllers/BWGControllerGalleryBox.php:106
5332
+ #, php-format
5333
+ msgid "The %s field is required."
5334
+ msgstr ""
5335
+
5336
+ #: frontend/controllers/BWGControllerGalleryBox.php:83
5337
+ #, fuzzy, php-format
5338
+ #| msgid "This is not a valid email address."
5339
+ msgid "The %s field must contain a valid email address."
5340
+ msgstr "Dit is nie 'n geldige e-posadres."
5341
+
5342
+ #: frontend/controllers/BWGControllerGalleryBox.php:100
5343
+ #, fuzzy
5344
+ #| msgid "Error. Incorrect Verification Code."
5345
+ msgid "Incorrect Security code."
5346
+ msgstr "Fout. Verkeerde Bevestigingskode."
5347
+
5348
+ #: frontend/controllers/controller.php:94
5349
+ #, fuzzy
5350
+ #| msgid "There is no gallery selected or the gallery was deleted."
5351
+ msgid "There is no album selected or the gallery was deleted."
5352
+ msgstr "Daar is geen gallery gekies of die gallery is verwyder."
5353
 
5354
+ #: frontend/controllers/controller.php:276
5355
+ #: frontend/controllers/controller.php:304
 
 
 
 
 
5356
  msgid "There is no gallery selected or the gallery was deleted."
5357
  msgstr "Daar is geen gallery gekies of die gallery is verwyder."
5358
 
5359
+ #: frontend/views/BWGViewAlbum_compact_preview.php:78
5360
+ #: frontend/views/BWGViewAlbum_extended_preview.php:89
5361
+ #: frontend/views/BWGViewAlbum_masonry_preview.php:64
5362
+ msgid "No results found."
5363
+ msgstr ""
5364
+
5365
+ #: frontend/views/BWGViewAlbum_extended_preview.php:161
5366
+ #: frontend/views/BWGViewAlbum_extended_preview.php:164
5367
+ msgid "More"
5368
+ msgstr "Meer"
5369
+
5370
+ #: frontend/views/BWGViewAlbum_extended_preview.php:162
5371
+ msgid "Hide"
5372
+ msgstr "Verberg"
5373
 
5374
+ #: frontend/views/BWGViewBlog_style.php:149
5375
+ #: frontend/views/BWGViewGalleryBox.php:793
5376
  msgid "Show comments"
5377
  msgstr "Wys kommentaar"
5378
 
5379
+ #: frontend/views/BWGViewBlog_style.php:155
5380
+ #: frontend/views/BWGViewBlog_style.php:156
5381
+ #: frontend/views/BWGViewGalleryBox.php:801
5382
+ #: frontend/views/BWGViewGalleryBox.php:802
5383
  msgid "Share on Facebook"
5384
  msgstr "Deel op Facebook"
5385
 
5386
+ #: frontend/views/BWGViewBlog_style.php:162
5387
+ #: frontend/views/BWGViewBlog_style.php:163
5388
+ #: frontend/views/BWGViewGalleryBox.php:808
5389
+ #: frontend/views/BWGViewGalleryBox.php:809
5390
  msgid "Share on Twitter"
5391
  msgstr "Deel op Twitter"
5392
 
5393
+ #: frontend/views/BWGViewBlog_style.php:169
5394
+ #: frontend/views/BWGViewBlog_style.php:170
5395
+ #: frontend/views/BWGViewGalleryBox.php:815
5396
+ #: frontend/views/BWGViewGalleryBox.php:816
 
 
 
 
 
 
 
5397
  msgid "Share on Pinterest"
5398
  msgstr "Deel op Pinterest"
5399
 
5400
+ #: frontend/views/BWGViewBlog_style.php:176
5401
+ #: frontend/views/BWGViewBlog_style.php:177
5402
+ #: frontend/views/BWGViewGalleryBox.php:822
5403
+ #: frontend/views/BWGViewGalleryBox.php:823
5404
  msgid "Share on Tumblr"
5405
  msgstr "Deel op Tumblr"
5406
 
5407
+ #: frontend/views/BWGViewBlog_style.php:184
5408
  #, fuzzy
5409
  #| msgid "Show comments"
5410
  msgid "Show ecommerce"
5411
  msgstr "Wys kommentaar"
5412
 
5413
+ #: frontend/views/BWGViewDownload_gallery.php:53
 
 
 
 
 
 
 
 
 
5414
  #, fuzzy
5415
  #| msgid "There are no images in this gallery."
5416
  msgid "There are no images to download."
5417
  msgstr "Daar is geen foto's in die gallery."
5418
 
5419
+ #: frontend/views/BWGViewGalleryBox.php:642
5420
  msgid "The image has been deleted."
5421
  msgstr "Die beeld is verwyder"
5422
 
5423
+ #: frontend/views/BWGViewGalleryBox.php:781
5424
+ #: frontend/views/BWGViewThumbnails.php:45
5425
+ #: frontend/views/BWGViewThumbnails_masonry.php:56
5426
+ #: frontend/views/BWGViewThumbnails_mosaic.php:90 photo-gallery.php:1425
5427
+ #: photo-gallery.php:1428
5428
+ msgid "Play"
5429
+ msgstr "Speel"
5430
+
5431
+ #: frontend/views/BWGViewGalleryBox.php:785 photo-gallery.php:1418
5432
  msgid "Maximize"
5433
  msgstr "Maksimeer"
5434
 
5435
+ #: frontend/views/BWGViewGalleryBox.php:789 photo-gallery.php:1419
 
 
5436
  msgid "Fullscreen"
5437
  msgstr "Volskerm"
5438
 
5439
+ #: frontend/views/BWGViewGalleryBox.php:791 photo-gallery.php:1431
 
5440
  msgid "Show info"
5441
  msgstr "Wys info"
5442
 
5443
+ #: frontend/views/BWGViewGalleryBox.php:795 photo-gallery.php:1433
 
5444
  msgid "Show rating"
5445
  msgstr "Wys gradering"
5446
 
5447
+ #: frontend/views/BWGViewGalleryBox.php:830
5448
  msgid "Open image in original size."
5449
  msgstr "Open beeld in die oorspronklike grootte"
5450
 
5451
+ #: frontend/views/BWGViewGalleryBox.php:845
5452
  msgid "Download original image"
5453
  msgstr "Aflaai oorspronklike beeld"
5454
 
5455
+ #: frontend/views/BWGViewGalleryBox.php:852
5456
+ #: frontend/views/BWGViewThumbnails.php:49
5457
+ #: frontend/views/BWGViewThumbnails_masonry.php:60
5458
+ #: frontend/views/BWGViewThumbnails_mosaic.php:108
5459
+ msgid "Ecommerce"
5460
+ msgstr ""
5461
+
5462
+ #: frontend/views/BWGViewGalleryBox.php:877
5463
  msgid "Hits: "
5464
  msgstr "Hits: "
5465
 
5466
+ #: frontend/views/BWGViewGalleryBox.php:897
5467
  msgid "Rated."
5468
  msgstr "Gegradeer."
5469
 
5470
+ #: frontend/views/BWGViewGalleryBox.php:990 photo-gallery.php:1416
5471
+ msgid "Hide Comments"
5472
+ msgstr "Steek kommentaar"
5473
+
5474
+ #: frontend/views/BWGViewGalleryBox.php:1009
5475
+ msgid "Verification Code"
5476
+ msgstr "Bevestigingskode"
5477
+
5478
+ #: frontend/views/BWGViewGalleryBox.php:1032
5479
+ #, php-format
5480
+ msgid ""
5481
+ "I consent collecting this data and processing it according to %s of this "
5482
+ "website."
5483
+ msgstr ""
5484
+
5485
+ #: frontend/views/BWGViewGalleryBox.php:1033
5486
+ #: wd/templates/display_subscribe.php:39
5487
+ msgid "Privacy Policy"
5488
+ msgstr ""
5489
+
5490
+ #: frontend/views/BWGViewGalleryBox.php:1042
5491
+ msgid "Submit"
5492
+ msgstr "Stuur"
5493
+
5494
+ #: frontend/views/BWGViewGalleryBox.php:1044
5495
+ msgid "Your comment is awaiting moderation"
5496
+ msgstr "Jou opmerking is wag moderering"
5497
+
5498
+ #: frontend/views/BWGViewGalleryBox.php:1078 photo-gallery.php:1414
5499
+ #, fuzzy
5500
+ #| msgid "Hide Comments"
5501
+ msgid "Hide Ecommerce"
5502
+ msgstr "Steek kommentaar"
5503
+
5504
+ #: frontend/views/BWGViewGalleryBox.php:1084
5505
+ #: frontend/views/BWGViewGalleryBox.php:1267
5506
+ msgid "Add to cart"
5507
+ msgstr ""
5508
+
5509
+ #: frontend/views/BWGViewGalleryBox.php:1087
5510
+ #, fuzzy
5511
+ #| msgid " item(s)"
5512
+ msgid "items"
5513
+ msgstr "item(s)"
5514
+
5515
+ #: frontend/views/BWGViewGalleryBox.php:1095
5516
+ msgid "Prints and products"
5517
+ msgstr ""
5518
+
5519
+ #: frontend/views/BWGViewGalleryBox.php:1102
5520
+ msgid "Downloads"
5521
+ msgstr ""
5522
+
5523
+ #: frontend/views/BWGViewGalleryBox.php:1116
5524
+ #: frontend/views/BWGViewGalleryBox.php:1228
5525
+ msgid "Price"
5526
+ msgstr ""
5527
+
5528
+ #: frontend/views/BWGViewGalleryBox.php:1136
5529
+ msgid "Count"
5530
+ msgstr ""
5531
+
5532
+ #: frontend/views/BWGViewGalleryBox.php:1216
5533
+ #: frontend/views/BWGViewGalleryBox.php:1260
5534
+ msgid "Total"
5535
+ msgstr ""
5536
+
5537
+ #: frontend/views/BWGViewGalleryBox.php:1227
5538
+ msgid "Dimensions"
5539
+ msgstr ""
5540
+
5541
+ #: frontend/views/BWGViewGalleryBox.php:1229
5542
+ msgid "Choose"
5543
+ msgstr ""
5544
+
5545
+ #: frontend/views/BWGViewGalleryBox.php:1268
5546
+ msgid "View cart"
5547
+ msgstr ""
5548
+
5549
+ #: frontend/views/BWGViewGalleryBox.php:1374
5550
+ msgid "Delete Comment"
5551
+ msgstr "Verwyder Kommentaar"
5552
 
5553
+ #: frontend/views/BWGViewThumbnails.php:48
5554
+ #: frontend/views/BWGViewThumbnails_masonry.php:59
5555
+ #: frontend/views/BWGViewThumbnails_mosaic.php:107
5556
+ msgid "Open"
5557
+ msgstr ""
5558
+
5559
+ #: frontend/views/view.php:94 frontend/views/view.php:171
5560
+ #, fuzzy
5561
+ #| msgid "There are no images in this gallery."
5562
+ msgid "There are no images."
5563
+ msgstr "Daar is geen foto's in die gallery."
5564
+
5565
+ #: frontend/views/view.php:97 frontend/views/view.php:174
5566
+ #, fuzzy
5567
+ #| msgid "Show comments"
5568
+ msgid "No Images found."
5569
+ msgstr "Wys kommentaar"
5570
+
5571
+ #: frontend/views/view.php:317
5572
+ #, fuzzy
5573
+ #| msgid "Download original image"
5574
+ msgid "Download gallery"
5575
+ msgstr "Aflaai oorspronklike beeld"
5576
 
5577
+ #: frontend/views/view.php:373 frontend/views/view.php:382
5578
+ #: photo-gallery.php:1421
5579
+ msgid "SEARCH..."
5580
+ msgstr ""
5581
 
5582
+ #: frontend/views/view.php:421
5583
+ #, fuzzy
5584
+ #| msgid "Order by: "
5585
+ msgid "Order by Default"
5586
+ msgstr "Om deur"
5587
 
5588
+ #: frontend/views/view.php:634
5589
+ msgid " item(s)"
5590
+ msgstr "item(s)"
5591
 
5592
+ #: frontend/views/view.php:640
5593
+ msgid "Previous"
5594
+ msgstr "Vorige"
5595
 
5596
+ #: frontend/views/view.php:641
5597
+ msgid "Next"
5598
+ msgstr "Volgende"
 
5599
 
5600
+ #: frontend/views/view.php:660
5601
+ msgid "Go to the first page"
5602
+ msgstr "Gaan na die eerste bladsy"
5603
 
5604
+ #: frontend/views/view.php:661
5605
+ msgid "Go to the previous page"
5606
+ msgstr "Gaan na die vorige bladsy"
5607
 
5608
+ #: frontend/views/view.php:668
5609
+ msgid "Go to the next page"
5610
+ msgstr "Gaan na die volgende bladsy"
5611
 
5612
+ #: frontend/views/view.php:669
5613
+ msgid "Go to the last page"
5614
+ msgstr "Gaan na die laaste bladsy"
5615
 
5616
+ #: frontend/views/view.php:681
5617
+ msgid "Load More..."
5618
+ msgstr "Laai meer..."
 
 
 
5619
 
5620
+ #: insert.php:137
5621
+ msgid "Light"
 
5622
  msgstr ""
5623
 
5624
+ #: insert.php:144
5625
+ msgid "Dark"
 
 
 
 
 
 
5626
  msgstr ""
5627
 
5628
+ #: photo-gallery.php:270
5629
+ msgid "Help"
5630
  msgstr ""
5631
 
5632
+ #: photo-gallery.php:317
5633
+ msgid "10WEB Plugins"
 
5634
  msgstr ""
5635
 
5636
+ #: photo-gallery.php:338
5637
+ msgid ""
5638
+ "When you leave a comment on this site, we send your name, email\n"
5639
+ " address, IP address and comment text to example.com. Example.com "
5640
+ "does\n"
5641
+ " not retain your personal data."
5642
  msgstr ""
5643
 
5644
+ #: photo-gallery.php:347
5645
+ #, php-format
5646
+ msgid "Select %s"
5647
  msgstr ""
5648
 
5649
+ #: photo-gallery.php:372
5650
+ msgid "Nothing selected."
5651
  msgstr ""
5652
 
5653
+ #: photo-gallery.php:373
5654
+ msgid "- Select -"
5655
  msgstr ""
5656
 
5657
+ #: photo-gallery.php:407
5658
+ #, php-format
5659
+ msgid ""
5660
+ "Image edit functionality is not supported by your web host. We highly "
5661
+ "recommend you to contact your hosting provider and ask them to enable %s "
5662
+ "library."
5663
  msgstr ""
5664
 
5665
+ #: photo-gallery.php:407
5666
+ msgid "PHP GD"
5667
  msgstr ""
5668
 
5669
+ #: photo-gallery.php:408
5670
+ #, php-format
5671
+ msgid ""
5672
+ "Without image editing functions, image thumbnails will not be created, thus "
5673
+ "causing load time issues on published galleries. Furthermore, some of Photo "
5674
+ "Gallery's features, e.g. %s, %s, and %s, will not be available."
5675
  msgstr ""
5676
 
5677
+ #: photo-gallery.php:408
5678
+ msgid "crop"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5679
  msgstr ""
5680
 
5681
+ #: photo-gallery.php:408
5682
+ msgid "edit"
5683
  msgstr ""
5684
 
5685
+ #: photo-gallery.php:408
5686
+ #, fuzzy
5687
+ #| msgid "Not rated yet."
5688
+ msgid "rotate"
5689
+ msgstr "Nog nie gegradeer nie"
5690
 
5691
+ #: photo-gallery.php:417
5692
+ #, php-format
5693
+ msgid ""
5694
+ "Image edit functionality was just activated on your web host. Please go to "
5695
+ "%s, navigate to %s tab and press %s button."
5696
  msgstr ""
5697
 
5698
+ #: photo-gallery.php:417 photo-gallery.php:469
5699
  msgid "Options"
5700
  msgstr ""
5701
 
5702
+ #: photo-gallery.php:417
5703
+ #, fuzzy
5704
+ #| msgid "Previous"
5705
+ msgid "Options page"
5706
+ msgstr "Vorige"
5707
 
5708
+ #: photo-gallery.php:461
5709
+ msgid "Add Galleries/Images"
5710
  msgstr ""
5711
 
5712
+ #: photo-gallery.php:527
5713
  #, php-format
5714
  msgid "The controller %s file not exist."
5715
  msgstr ""
5716
 
5717
+ #: photo-gallery.php:532
5718
  #, php-format
5719
  msgid "The view %s file not exist."
5720
  msgstr ""
5721
 
5722
+ #: photo-gallery.php:548 photo-gallery.php:553
5723
  #, php-format
5724
  msgid "The %s class not exist."
5725
  msgstr ""
5726
 
5727
+ #: photo-gallery.php:596 photo-gallery.php:630
5728
  msgid "Do you want to delete selected items?"
5729
  msgstr ""
5730
 
5731
+ #: photo-gallery.php:597 photo-gallery.php:625
5732
  msgid "You must select at least one item."
5733
  msgstr ""
5734
 
5735
+ #: photo-gallery.php:598
5736
+ msgid "Do you want to remove pricelist from selected items?"
5737
+ msgstr ""
5738
+
5739
+ #: photo-gallery.php:605 photo-gallery.php:1407
5740
  msgid "field is required."
5741
  msgstr ""
5742
 
5743
+ #: photo-gallery.php:606
5744
  msgid "You must select an image file."
5745
  msgstr ""
5746
 
5747
+ #: photo-gallery.php:607
5748
  msgid "You must select an audio file."
5749
  msgstr ""
5750
 
5751
+ #: photo-gallery.php:608
5752
  msgid ""
5753
  "You do not have Instagram access token. Sign in with Instagram in Options -> "
5754
+ "Advanced tab -> Social. "
5755
  msgstr ""
5756
 
5757
+ #: photo-gallery.php:609
5758
  msgid ""
5759
  "You do not have Instagram CLIENT_ID. Input its value in Options->Embed "
5760
  "options."
5761
  msgstr ""
5762
 
5763
+ #: photo-gallery.php:610
5764
  msgid "Instagram recent post number must be between 1 and 33."
5765
  msgstr ""
5766
 
5767
+ #: photo-gallery.php:611
5768
+ msgid ""
5769
+ "Gallery type cannot be changed, since it is not empty. In case you would "
5770
+ "like to have Instagram gallery, please create a new one."
5771
  msgstr ""
5772
 
5773
+ #: photo-gallery.php:612
5774
  msgid "Please enter url to embed."
5775
  msgstr ""
5776
 
5777
+ #: photo-gallery.php:613
5778
  msgid "Error: cannot get response from the server."
5779
  msgstr ""
5780
 
5781
+ #: photo-gallery.php:614
5782
  msgid "Error: something wrong happened at the server."
5783
  msgstr ""
5784
 
5785
+ #: photo-gallery.php:615
5786
  msgid "Error"
5787
  msgstr ""
5788
 
5789
+ #: photo-gallery.php:617
5790
  msgid "Hide order column"
5791
  msgstr ""
5792
 
5793
+ #: photo-gallery.php:618
5794
+ #, php-format
5795
+ msgid "Selected %d item."
5796
+ msgstr ""
5797
+
5798
+ #: photo-gallery.php:619
5799
+ #, php-format
5800
+ msgid "Selected %d items."
5801
  msgstr ""
5802
 
5803
+ #: photo-gallery.php:620
5804
  msgid "Items Succesfully Saved."
5805
  msgstr ""
5806
 
5807
+ #: photo-gallery.php:621
5808
  msgid "Item Succesfully Recovered."
5809
  msgstr ""
5810
 
5811
+ #: photo-gallery.php:622
5812
  msgid "Item Succesfully Published."
5813
  msgstr ""
5814
 
5815
+ #: photo-gallery.php:623
5816
  msgid "Item Succesfully Unpublished."
5817
  msgstr ""
5818
 
5819
+ #: photo-gallery.php:624
5820
  msgid "Item Succesfully Deleted."
5821
  msgstr ""
5822
 
5823
+ #: photo-gallery.php:626
5824
  msgid "Items Succesfully resized."
5825
  msgstr ""
5826
 
5827
+ #: photo-gallery.php:627
5828
  msgid "Watermarks Succesfully Set."
5829
  msgstr ""
5830
 
5831
+ #: photo-gallery.php:628
5832
  msgid "Items Succesfully Reset."
5833
  msgstr ""
5834
 
5835
+ #: photo-gallery.php:629
5836
  msgid "Save Tag"
5837
  msgstr ""
5838
 
5839
+ #: photo-gallery.php:631 photo-gallery.php:633
5840
  msgid ""
5841
  "This action will reset gallery type to mixed and will save that choice. You "
5842
  "cannot undo it."
5843
  msgstr ""
5844
 
5845
+ #: photo-gallery.php:632
5846
  msgid ""
5847
  "After pressing save/apply buttons, you cannot change gallery type back to "
5848
  "Instagram!"
5849
  msgstr ""
5850
 
5851
+ #: photo-gallery.php:634
5852
  msgid "Insert"
5853
  msgstr ""
5854
 
5855
+ #: photo-gallery.php:635
5856
  msgid "Failed to import images from media library"
5857
  msgstr ""
5858
 
5859
+ #: photo-gallery.php:636
5860
+ msgid "Sorry, only jpg, jpeg, gif, png types are allowed."
5861
+ msgstr ""
5862
+
5863
+ #: photo-gallery.php:640
5864
+ msgid "Thumbnails successfully recreated."
5865
+ msgstr ""
5866
+
5867
+ #: photo-gallery.php:641
5868
+ msgid "All images are successfully reset."
5869
+ msgstr ""
5870
+
5871
+ #: photo-gallery.php:1002
5872
  msgid "Insert Photo Gallery"
5873
  msgstr ""
5874
 
5875
+ #: photo-gallery.php:1004
5876
  msgid "Add Photo Gallery"
5877
  msgstr ""
5878
 
5879
+ #: photo-gallery.php:1408
5880
+ msgid "This is not a valid email address."
5881
+ msgstr "Dit is nie 'n geldige e-posadres."
5882
+
5883
+ #: photo-gallery.php:1409
5884
+ msgid "There are no images matching your search."
5885
+ msgstr "Daar is geen beelde wat ooreenstem met jou soektog."
5886
+
5887
+ #: photo-gallery.php:1410
5888
  msgid "Select Tag"
5889
  msgstr ""
5890
 
5891
+ #: photo-gallery.php:1411
5892
+ #, fuzzy
5893
+ #| msgid "Order by: "
5894
+ msgid "Order By"
5895
+ msgstr "Om deur"
5896
+
5897
+ #: photo-gallery.php:1413
5898
+ #, fuzzy
5899
+ #| msgid "Show comments"
5900
+ msgid "Show Ecommerce"
5901
+ msgstr "Wys kommentaar"
5902
+
5903
+ #: photo-gallery.php:1415
5904
+ msgid "Show Comments"
5905
+ msgstr "Wys kommentaar"
5906
+
5907
+ #: photo-gallery.php:1417
5908
+ msgid "Restore"
5909
+ msgstr "Herstel"
5910
+
5911
+ #: photo-gallery.php:1420
5912
+ msgid "Exit Fullscreen"
5913
+ msgstr "Verlaat Volskerm"
5914
+
5915
+ #: photo-gallery.php:1422
5916
+ msgid "No tags found"
5917
  msgstr ""
5918
 
5919
+ #: photo-gallery.php:1423
5920
+ msgid "All tags selected"
5921
  msgstr ""
5922
 
5923
+ #: photo-gallery.php:1424
5924
+ msgid "tags selected"
5925
  msgstr ""
5926
 
5927
+ #: photo-gallery.php:1426 photo-gallery.php:1429
5928
+ msgid "Pause"
5929
+ msgstr "Breek"
5930
+
5931
+ #: photo-gallery.php:1430
5932
+ msgid "Hide info"
5933
+ msgstr "Steek info"
5934
+
5935
+ #: photo-gallery.php:1432
5936
+ msgid "Hide rating"
5937
+ msgstr "Steek gradering"
5938
+
5939
+ #: photo-gallery.php:1434
5940
+ msgid "Ok"
5941
  msgstr ""
5942
 
5943
+ #: photo-gallery.php:1483
5944
  msgid ""
5945
  "Photo Gallery is a fully responsive gallery plugin with advanced "
5946
  "functionality. It allows having different image galleries for your posts and "
5948
  "gallery groups, and provide descriptions and tags."
5949
  msgstr ""
5950
 
5951
+ #: photo-gallery.php:1487
5952
  msgid "Easy Set-up and Management"
5953
  msgstr ""
5954
 
5955
+ #: photo-gallery.php:1488
5956
  msgid ""
5957
  "Create stunning, 100% responsive, SEO-friendly photo galleries in minutes. "
5958
  "Use the File Manager with single-step and easy-to-manage functionality to "
5960
  "use WordPress built in media uploader."
5961
  msgstr ""
5962
 
5963
+ #: photo-gallery.php:1491
5964
  msgid "Unlimited Photos and Albums"
5965
  msgstr ""
5966
 
5967
+ #: photo-gallery.php:1492
5968
  msgid ""
5969
  "The plugin allows creating unlimited number of galleries or gallery groups "
5970
  "and upload images in each gallery as many as you wish. Add single/ multiple "
5972
  "visual shortcodes for an easier management."
5973
  msgstr ""
5974
 
5975
+ #: photo-gallery.php:1495
5976
  msgid "Customizable"
5977
  msgstr ""
5978
 
5979
+ #: photo-gallery.php:1496
5980
  msgid ""
5981
  "The gallery plugin is easily customizable. You can edit themes changing "
5982
  "sizes and colors for different features. Specify the number of images to "
5984
  "thumbnail images by cropping, flipping and rotating them."
5985
  msgstr ""
5986
 
5987
+ #: photo-gallery.php:1499
5988
  msgid "10 View Options"
5989
  msgstr ""
5990
 
5991
+ #: photo-gallery.php:1500
5992
  msgid ""
5993
  "Photo Gallery plugin allows displaying galleries and gallery groups in 10 "
5994
  "elegant and beautiful views:, Thumbnails, Masonry, Mosaic, Slideshow, Image "
5996
  "Ecommerce."
5997
  msgstr ""
5998
 
5999
+ #: photo-gallery.php:1503
6000
  msgid "Audio and Video Support"
6001
  msgstr ""
6002
 
6003
+ #: photo-gallery.php:1504
6004
  msgid ""
6005
  "You can include both videos and images within a single gallery. WordPress "
6006
  "Photo Gallery Plugin supports YouTube and Vimeo videos within Galleries. "
6007
+ "It's also possible to add audio tracks for the image slideshow."
6008
  msgstr ""
6009
 
6010
+ #: photo-gallery.php:1510
6011
  msgid "Installing"
6012
  msgstr ""
6013
 
6014
+ #: photo-gallery.php:1515
6015
  msgid "Creating/Editing Galleries"
6016
  msgstr ""
6017
 
6018
+ #: photo-gallery.php:1519
6019
  msgid "Instagram Gallery"
6020
  msgstr ""
6021
 
6022
+ #: photo-gallery.php:1525
6023
  msgid "Creating/Editing Tags"
6024
  msgstr ""
6025
 
6026
+ #: photo-gallery.php:1530
6027
  msgid "Creating/Editing Albums"
6028
  msgstr ""
6029
 
6030
+ #: photo-gallery.php:1535
6031
  msgid "Editing Options"
6032
  msgstr ""
6033
 
6034
+ #: photo-gallery.php:1539
6035
  msgid "Global Options"
6036
  msgstr ""
6037
 
6038
+ #: photo-gallery.php:1555
6039
  msgid "Album Options"
6040
  msgstr ""
6041
 
6042
+ #: photo-gallery.php:1563
6043
  msgid "Thumbnail Options"
6044
  msgstr ""
6045
 
6046
+ #: photo-gallery.php:1567
6047
  msgid "Image Options"
6048
  msgstr ""
6049
 
6050
+ #: photo-gallery.php:1571
6051
  msgid "Social Options"
6052
  msgstr ""
6053
 
6054
+ #: photo-gallery.php:1575
6055
  msgid "Carousel Options"
6056
  msgstr ""
6057
 
6058
+ #: photo-gallery.php:1581
6059
  msgid "Creating/Editing Themes"
6060
  msgstr ""
6061
 
6062
+ #: photo-gallery.php:1605
6063
  msgid "Compact Album"
6064
  msgstr ""
6065
 
6066
+ #: photo-gallery.php:1609
6067
  msgid "Masonry Album"
6068
  msgstr ""
6069
 
6070
+ #: photo-gallery.php:1613
6071
  msgid "Extended Album"
6072
  msgstr ""
6073
 
6074
+ #: photo-gallery.php:1625
6075
  msgid "Page Navigation"
6076
  msgstr ""
6077
 
6078
+ #: photo-gallery.php:1635
6079
  msgid "Generating Shortcode"
6080
  msgstr ""
6081
 
6082
+ #: photo-gallery.php:1640
6083
  #, fuzzy
6084
  #| msgid "Hide Comments"
6085
  msgid "Editing Comments"
6086
  msgstr "Steek kommentaar"
6087
 
6088
+ #: photo-gallery.php:1645
6089
  msgid "Editing Ratings"
6090
  msgstr ""
6091
 
6092
+ #: photo-gallery.php:1650
6093
  msgid "Publishing the Created Photo Gallery"
6094
  msgstr ""
6095
 
6096
+ #: photo-gallery.php:1654
6097
  msgid "General Parameters"
6098
  msgstr ""
6099
 
6100
+ #: photo-gallery.php:1658
6101
  msgid "Lightbox Parameters"
6102
  msgstr ""
6103
 
6104
+ #: photo-gallery.php:1668
6105
  msgid "Publishing Photo Gallery Widgets"
6106
  msgstr ""
6107
 
6108
+ #: photo-gallery.php:1672
6109
  msgid "Tag Cloud"
6110
  msgstr ""
6111
 
6112
+ #: photo-gallery.php:1684
6113
  msgid "Photo Gallery Widget"
6114
  msgstr ""
6115
 
6116
+ #: photo-gallery.php:1755
6117
  msgid "Albums"
6118
  msgstr ""
6119
 
6120
+ #: photo-gallery.php:1770
6121
  #, fuzzy
6122
  #| msgid "Gallery is empty."
6123
  msgid "Gallery tags"
6124
  msgstr "Gallery is leeg."
6125
 
6126
+ #: photo-gallery.php:1819
6127
  msgid "Photo gallery plugin autoupdate interval."
6128
  msgstr "Photo gallery plugin autoupdate interval."
6129
 
6130
+ #: photo-gallery.php:1862
6131
  #, php-format
6132
  msgid "Please update the %s add-on to start using."
6133
  msgstr ""
6134
 
6135
+ #: photo-gallery.php:1863
6136
  #, php-format
6137
  msgid "Please update the %s add-ons to start using."
6138
  msgstr ""
6139
 
6140
+ #: photo-gallery.php:1906
6141
  #, fuzzy
6142
  #| msgid "Rated."
6143
  msgid "Rate"
6144
  msgstr "Gegradeer."
6145
 
6146
+ #: photo-gallery.php:2013
6147
  #, php-format
6148
  msgid ""
6149
+ "%s Photo Gallery advises:%s %sCheck your website’s performance, optimize "
6150
+ "images and improve the speed in just minutes.%s"
 
 
 
 
 
 
 
 
6151
  msgstr ""
6152
 
6153
+ #: wd/includes/deactivate.php:37
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6154
  msgid "Technical problems / hard to use"
6155
  msgstr ""
6156
 
6157
+ #: wd/includes/deactivate.php:41
6158
  msgid "Free version is limited"
6159
  msgstr ""
6160
 
6161
+ #: wd/includes/deactivate.php:45
 
 
 
 
6162
  msgid "Upgrading to paid version"
6163
  msgstr ""
6164
 
6165
+ #: wd/includes/deactivate.php:49
6166
  msgid "Temporary deactivation"
6167
  msgstr ""
6168
 
6193
  msgid "Never show again"
6194
  msgstr ""
6195
 
6196
+ #: wd/templates/display_deactivation_popup.php:8
6197
+ msgid ""
6198
+ "Please let us know why you are deactivating. Your answer will help us to "
6199
+ "provide you support or sometimes offer discounts. (Optional)"
6200
  msgstr ""
6201
 
6202
+ #: wd/templates/display_deactivation_popup.php:22
6203
+ msgid "Skip and Deactivate"
6204
  msgstr ""
6205
 
6206
+ #: wd/templates/display_deactivation_popup.php:23
6207
+ msgid "Submit and Deactivate"
6208
  msgstr ""
6209
 
6210
+ #: wd/templates/display_overview.php:10 wd/templates/display_overview.php:119
6211
+ #, php-format
6212
+ msgid "Get Premium %s and Other Solutions Essential for Your WordPress Site."
6213
  msgstr ""
6214
 
6215
+ #: wd/templates/display_overview.php:13
6216
+ msgid "Try Free"
6217
  msgstr ""
6218
 
6219
+ #: wd/templates/display_overview.php:21 wd/templates/display_overview.php:81
6220
+ msgid "Premium "
6221
  msgstr ""
6222
 
6223
+ #: wd/templates/display_overview.php:27
6224
+ msgid "60+ pro plugins/Extensions"
6225
  msgstr ""
6226
 
6227
+ #: wd/templates/display_overview.php:28
6228
  msgid ""
6229
+ "Access 60+ plugins and extensions, including key plugins, such as gallery, "
6230
+ "form, slider, social plugins and more."
6231
  msgstr ""
6232
 
6233
+ #: wd/templates/display_overview.php:32
6234
+ msgid "Unified dashboard"
6235
  msgstr ""
6236
 
6237
+ #: wd/templates/display_overview.php:33
6238
  msgid ""
6239
+ "Manage your WordPress websites all in one place within a single dashboard. "
6240
+ "No need to switch between sites."
6241
  msgstr ""
6242
 
6243
+ #: wd/templates/display_overview.php:37
6244
+ msgid "Premium WordPress themes"
6245
  msgstr ""
6246
 
6247
+ #: wd/templates/display_overview.php:38
6248
  msgid ""
6249
+ "Professionally designed, responsive themes for your website. Build fully-"
6250
+ "functional, elegant websites effortlessly."
6251
  msgstr ""
6252
 
6253
+ #: wd/templates/display_overview.php:43
6254
+ #, fuzzy
6255
+ #| msgid "Back"
6256
+ msgid "Backup"
6257
+ msgstr "Terug"
6258
 
6259
+ #: wd/templates/display_overview.php:44
6260
  msgid ""
6261
+ "10Web cloud storage space. Easily and securely backup your website in our "
6262
+ "storage."
6263
  msgstr ""
6264
 
6265
+ #: wd/templates/display_overview.php:50
6266
+ msgid "SEO"
6267
  msgstr ""
6268
 
6269
+ #: wd/templates/display_overview.php:51
6270
  msgid ""
6271
+ "Improve search rankings of your WordPress site with a comprehensive search "
6272
+ "engine optimization solution."
6273
  msgstr ""
6274
 
6275
+ #: wd/templates/display_overview.php:56
6276
+ msgid "Security"
6277
  msgstr ""
6278
 
6279
+ #: wd/templates/display_overview.php:57
6280
  msgid ""
6281
+ "Protect your WordPress site from security issues and threats with a powerful "
6282
+ "security service coming soon to 10Web."
6283
  msgstr ""
6284
 
6285
+ #: wd/templates/display_overview.php:62
6286
+ msgid "Image optimization"
6287
  msgstr ""
6288
 
6289
+ #: wd/templates/display_overview.php:63
6290
  msgid ""
6291
+ "Automatically resize and compress all images on your website to save space "
6292
+ "and improve site speed."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6293
  msgstr ""
6294
 
6295
+ #: wd/templates/display_overview.php:68
6296
+ msgid "Hosting"
6297
  msgstr ""
6298
 
6299
+ #: wd/templates/display_overview.php:69
6300
+ msgid ""
6301
+ "We’ll soon be offering affordable hosting solution with WordPress-friendly "
6302
+ "features and great customer support."
6303
  msgstr ""
6304
 
6305
+ #: wd/templates/display_overview.php:73 wd/templates/display_overview.php:121
6306
+ msgid "Get free for 14 days"
6307
  msgstr ""
6308
 
6309
+ #: wd/templates/display_overview.php:75 wd/templates/display_overview.php:96
6310
+ #, fuzzy
6311
+ #| msgid "Load More..."
6312
+ msgid "Learn More"
6313
+ msgstr "Laai meer..."
6314
 
6315
+ #: wd/templates/display_overview.php:81
6316
+ msgid " features you get!"
6317
  msgstr ""
6318
 
6319
+ #: wd/templates/display_overview.php:94
6320
+ msgid "More great features of the plugin"
6321
  msgstr ""
6322
 
6323
+ #: wd/templates/display_overview.php:103
6324
+ msgid "Checkout how it works"
 
 
6325
  msgstr ""
6326
 
6327
+ #: wd/templates/display_overview.php:107
6328
+ msgid "Demo"
6329
  msgstr ""
6330
 
6331
+ #: wd/templates/display_overview.php:111
6332
+ msgid "User Guide"
6333
  msgstr ""
6334
 
6335
+ #: wd/templates/display_subscribe.php:5
6336
+ msgid "Hi there!"
 
6337
  msgstr ""
6338
 
6339
+ #: wd/templates/display_subscribe.php:6
6340
+ msgid "Allow 10Web to collect some usage data"
 
6341
  msgstr ""
6342
 
6343
+ #: wd/templates/display_subscribe.php:8
6344
  #, php-format
6345
+ msgid ""
6346
+ "This will allow you to get more out of your plugin experience - get awesome "
6347
+ "customer support, receive exclusive deals and discounts on premium products "
6348
+ "and more. You can choose to skip this step, %s will still work just fine."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6349
  msgstr ""
6350
 
6351
+ #: wd/templates/display_subscribe.php:11
6352
+ msgid "What data is being collected?"
6353
  msgstr ""
6354
 
6355
+ #: wd/templates/display_subscribe.php:15
6356
+ msgid "Your name & Email address"
6357
  msgstr ""
6358
 
6359
+ #: wd/templates/display_subscribe.php:19
6360
+ msgid "Site URL, Wordpress version"
6361
  msgstr ""
6362
 
6363
+ #: wd/templates/display_subscribe.php:23
6364
+ msgid "List of plugins"
6365
  msgstr ""
6366
 
6367
+ #: wd/templates/display_subscribe.php:27
6368
+ msgid "Allow & Continue"
6369
  msgstr ""
6370
 
6371
+ #: wd/templates/display_subscribe.php:33
 
6372
  msgid ""
6373
+ "We will not sell, share, or distribute your personal information to third "
6374
+ "parties."
 
 
 
 
 
6375
  msgstr ""
6376
 
6377
+ #: wd/templates/display_subscribe.php:45
6378
+ msgid "Terms of Use"
 
 
6379
  msgstr ""
6380
 
6381
+ #: wd/wd.php:72 wd/wd.php:76
6382
+ msgid "Premium"
6383
  msgstr ""
6384
 
6385
+ #, fuzzy
6386
+ #~| msgid "There are no images in this gallery."
6387
+ #~ msgid "The gallery images view type in the gallery group."
6388
+ #~ msgstr "Daar is geen foto's in die gallery."
6389
 
6390
+ #, fuzzy
6391
+ #~| msgid "Load More..."
6392
+ #~ msgid "Load more"
6393
+ #~ msgstr "Laai meer..."
6394
 
6395
+ #, fuzzy
6396
+ #~| msgid "Album is empty."
6397
+ #~ msgid "Albums per page"
6398
+ #~ msgstr "Album is leeg."
6399
 
6400
+ #, fuzzy
6401
+ #~| msgid "Album is empty."
6402
+ #~ msgid "Album title"
6403
+ #~ msgstr "Album is leeg."
6404
 
6405
+ #, fuzzy
6406
+ #~| msgid "Album is empty."
6407
+ #~ msgid "Album view type"
6408
+ #~ msgstr "Album is leeg."
6409
 
6410
+ #~ msgid "There is no theme selected or the theme was deleted."
6411
+ #~ msgstr "Daar is geen tema gekies of die tema is verwyder."
 
6412
 
6413
+ #~ msgid "There is no album selected or the album was deleted."
6414
+ #~ msgstr "Daar is geen album gekies of die album is verwyder."
 
6415
 
6416
+ #~ msgid "Album is empty."
6417
+ #~ msgstr "Album is leeg."
 
6418
 
6419
+ #~ msgid "Gallery is empty."
6420
+ #~ msgstr "Gallery is leeg."
 
6421
 
6422
+ #~ msgid "Share on Google+"
6423
+ #~ msgstr "Deel op Google+"
 
 
 
 
 
 
6424
 
6425
+ #~ msgid "Not rated yet."
6426
+ #~ msgstr "Nog nie gegradeer nie"
 
6427
 
6428
+ #~ msgid "Votes: "
6429
+ #~ msgstr "stemme"
 
6430
 
6431
+ #~ msgid "Cancel your rating."
6432
+ #~ msgstr "Die styl van jou gradering"
 
6433
 
6434
+ #~ msgid "You have already rated."
6435
+ #~ msgstr "Jy het reeds gegradeer"
 
languages/bwg-ar.mo CHANGED
Binary file
languages/bwg-ar.po CHANGED
@@ -1,15 +1,15 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: bwg\n"
4
- "POT-Creation-Date: 2018-01-24 10:40+0400\n"
5
- "PO-Revision-Date: 2018-01-24 10:41+0400\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: ar\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 2.0.5\n"
13
  "X-Poedit-Basepath: ..\n"
14
  "Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 "
15
  "&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n"
@@ -27,80 +27,74 @@ msgid ""
27
  msgstr ""
28
 
29
  #: addons/addons.php:13
30
- #, fuzzy
31
- #| msgid "Share on Facebook"
32
- msgid "Photo Gallery Facebook"
33
- msgstr "حصة في الفيسبوك"
34
 
35
  #: addons/addons.php:15
36
  msgid ""
37
- "Photo Gallery Facebook is an add-on, which helps to display Facebook photos "
38
- "and videos within Photo Gallery plugin. You can create Facebook-only "
39
- "galleries, embed individual images and videos or include Facebook albums "
40
- "within mixed type albums."
41
  msgstr ""
42
 
43
  #: addons/addons.php:20
44
- msgid "NextGen Gallery Import to Photo Gallery"
45
  msgstr ""
46
 
47
  #: addons/addons.php:22
48
  msgid ""
49
- "This addon integrates NextGen with Photo Gallery allowing to import images "
50
- "and related data from NextGen to use with Photo Gallery"
 
51
  msgstr ""
52
 
53
  #: addons/addons.php:27
54
- msgid "Photo Gallery Export / Import"
55
  msgstr ""
56
 
57
  #: addons/addons.php:29
58
- msgid ""
59
- "Photo Gallery Export/Import helps to move created galleries and gallery "
60
- "groups from one site to another. This way you can save the gallery/album "
61
- "options and manual modifications."
62
  msgstr ""
63
 
64
- #: addons/addons.php:38
65
  msgid "Photo Gallery Add-ons"
66
  msgstr ""
67
 
68
- #: addons/addons.php:71
69
  msgid "GET THIS ADD ON"
70
  msgstr ""
71
 
72
- #: admin/controllers/AddTags.php:53 admin/views/Galleries.php:641
73
- #: admin/views/Galleries.php:763 photo-gallery.php:260
74
  msgid "Tags"
75
  msgstr ""
76
 
77
  #: admin/controllers/Albums.php:38 admin/controllers/Comments.php:40
78
- #: admin/controllers/Galleries.php:33 admin/controllers/Galleries.php:80
79
- #: admin/views/Albums.php:103 admin/views/Albums.php:179
80
- #: admin/views/Comments.php:106 admin/views/Galleries.php:108
81
- #: admin/views/Galleries.php:203 admin/views/Galleries.php:726
82
  msgid "Publish"
83
  msgstr ""
84
 
85
  #: admin/controllers/Albums.php:39 admin/controllers/Comments.php:41
86
- #: admin/controllers/Galleries.php:34 admin/controllers/Galleries.php:81
87
  msgid "published"
88
  msgstr ""
89
 
90
  #: admin/controllers/Albums.php:42 admin/controllers/Comments.php:44
91
- #: admin/controllers/Galleries.php:37 admin/controllers/Galleries.php:84
92
- #: admin/views/Albums.php:103 admin/views/Comments.php:106
93
- #: admin/views/Galleries.php:108 admin/views/Galleries.php:726
94
  msgid "Unpublish"
95
  msgstr ""
96
 
97
  #: admin/controllers/Albums.php:43 admin/controllers/Comments.php:45
98
- #: admin/controllers/Galleries.php:38 admin/controllers/Galleries.php:85
99
  msgid "unpublished"
100
  msgstr ""
101
 
102
  #: admin/controllers/Albums.php:46 admin/controllers/Themes.php:39
103
- #: admin/views/Albums.php:104 admin/views/Themes.php:100
104
  msgid "Duplicate"
105
  msgstr ""
106
 
@@ -109,23 +103,23 @@ msgid "duplicate"
109
  msgstr ""
110
 
111
  #: admin/controllers/Albums.php:50 admin/controllers/Comments.php:48
112
- #: admin/controllers/Galleries.php:41 admin/controllers/Galleries.php:88
113
- #: admin/controllers/Ratings.php:41 admin/controllers/Themes.php:43
114
- #: admin/views/Albums.php:105 admin/views/Comments.php:109
115
- #: admin/views/Galleries.php:109 admin/views/Galleries.php:733
116
- #: admin/views/Ratings.php:84 admin/views/Themes.php:101
117
  #, fuzzy
118
  #| msgid "Delete Comment"
119
  msgid "Delete"
120
  msgstr "حذف تعليق"
121
 
122
  #: admin/controllers/Albums.php:51 admin/controllers/Comments.php:49
123
- #: admin/controllers/Galleries.php:42 admin/controllers/Galleries.php:89
124
- #: admin/controllers/Ratings.php:42 admin/controllers/Themes.php:44
125
  msgid "deleted"
126
  msgstr ""
127
 
128
- #: admin/controllers/Albums.php:93 photo-gallery.php:257
129
  msgid "Gallery Groups"
130
  msgstr ""
131
 
@@ -133,413 +127,303 @@ msgstr ""
133
  msgid "Galleries / Gallery groups"
134
  msgstr ""
135
 
136
- #: admin/controllers/Comments.php:93 photo-gallery.php:268
137
  #, fuzzy
138
  #| msgid "Comment"
139
  msgid "Comments"
140
  msgstr "التعليق"
141
 
142
- #: admin/controllers/Comments.php:129 admin/controllers/Ratings.php:134
143
  msgid "Filter by gallery"
144
  msgstr ""
145
 
146
- #: admin/controllers/Comments.php:133 admin/controllers/Ratings.php:138
147
  msgid "Filter by image"
148
  msgstr ""
149
 
150
- #: admin/controllers/Galleries.php:48 admin/views/Galleries.php:565
151
- msgid "Resize"
152
- msgstr ""
153
-
154
- #: admin/controllers/Galleries.php:49
155
- msgid "resized"
156
- msgstr ""
157
-
158
- #: admin/controllers/Galleries.php:52
159
- msgid "Recreate thumbnail"
160
- msgstr ""
161
 
162
- #: admin/controllers/Galleries.php:53
163
- msgid "recreated"
164
  msgstr ""
165
 
166
- #: admin/controllers/Galleries.php:56
167
- msgid "Rotate left"
168
  msgstr ""
169
 
170
- #: admin/controllers/Galleries.php:57
171
  #, fuzzy
172
- #| msgid "Not rated yet."
173
- msgid "rotated left"
174
- msgstr "غير مصنفة حتى الآن."
175
 
176
- #: admin/controllers/Galleries.php:60
177
- msgid "Rotate right"
178
  msgstr ""
179
 
180
- #: admin/controllers/Galleries.php:61
181
- msgid "rotated right"
 
 
182
  msgstr ""
183
 
184
- #: admin/controllers/Galleries.php:64 admin/views/Options.php:1617
185
- msgid "Set watermark"
 
 
 
 
 
 
186
  msgstr ""
187
 
188
- #: admin/controllers/Galleries.php:65 admin/controllers/Galleries.php:73
189
- #: admin/controllers/Galleries.php:77
190
- msgid "edited"
 
 
191
  msgstr ""
192
 
193
- #: admin/controllers/Galleries.php:68 admin/views/Galleries.php:723
194
- #: admin/views/Themes.php:185 framework/WDWLibrary.php:317
195
- #: framework/WDWLibrary.php:495 framework/WDWLibrary.php:814
196
- #: framework/WDWLibrary.php:849
197
- msgid "Reset"
198
- msgstr "إعادة تعيين"
199
-
200
- #: admin/controllers/Galleries.php:69
201
- #, fuzzy
202
- #| msgid "Reset"
203
- msgid "reset"
204
- msgstr "إعادة تعيين"
205
-
206
- #: admin/controllers/Galleries.php:72 admin/views/Albums.php:102
207
- #: admin/views/Galleries.php:107 admin/views/Galleries.php:716
208
- #: admin/views/Themes.php:99
209
- msgid "Edit"
210
  msgstr ""
211
 
212
- #: admin/controllers/Galleries.php:76 admin/views/Galleries.php:781
213
- msgid "Add tag"
 
 
 
214
  msgstr ""
215
 
216
- #: admin/controllers/Galleries.php:137 photo-gallery.php:1478
217
- #, fuzzy
218
- #| msgid "Gallery is empty."
219
- msgid "Galleries"
220
- msgstr "  معرض فارغة"
221
-
222
- #: admin/controllers/Galleries.php:437 admin/controllers/Options.php:191
223
- msgid "Item Succesfully Saved."
224
  msgstr ""
225
 
226
- #: admin/controllers/Galleries.php:441
227
- msgid ""
228
- " Selected pricelist item longest dimension greater than some original images "
229
- "dimensions."
 
230
  msgstr ""
231
 
232
- #: admin/controllers/Galleries.php:471 admin/views/Galleries.php:749
233
- msgid ""
234
- "Selected pricelist item longest dimension greater than some original images "
235
- "dimensions."
236
  msgstr ""
237
 
238
- #: admin/controllers/Options.php:62
239
- msgid "Edit options"
 
240
  msgstr ""
241
 
242
- #: admin/controllers/Options.php:106
243
  msgid "Default values restored. Changes must be saved."
244
  msgstr ""
245
 
246
- #: admin/controllers/Options.php:137
247
  msgid "Uploads directory doesn't exist. Old value is restored."
248
  msgstr ""
249
 
250
- #: admin/controllers/Options.php:140
251
  msgid ""
252
  "Warning: \"photo-gallery\" folder already exists in uploads directory. Old "
253
  "value is restored."
254
  msgstr ""
255
 
256
- #: admin/controllers/Options.php:180
257
  msgid "All thumbnails are successfully recreated."
258
  msgstr ""
259
 
260
- #: admin/controllers/Options.php:207
261
- msgid "All images are successfully watermarked."
262
- msgstr ""
263
-
264
- #: admin/controllers/Options.php:212
265
- msgid "All images are successfully reset."
266
- msgstr ""
267
-
268
- #: admin/controllers/Ratings.php:86 photo-gallery.php:271
269
- msgid "Ratings"
270
- msgstr ""
271
-
272
- #: admin/controllers/Shortcode.php:36 admin/controllers/Themes.php:279
273
- #: admin/controllers/Themes.php:317 admin/controllers/WidgetSlideshow.php:44
274
- #: admin/views/Options.php:1497 admin/views/Options.php:1641
275
- #: admin/views/Shortcode.php:1387
276
- msgid "None"
277
- msgstr ""
278
-
279
- #: admin/controllers/Shortcode.php:37 admin/controllers/WidgetSlideshow.php:45
280
- msgid "Cube Horizontal"
281
- msgstr ""
282
-
283
- #: admin/controllers/Shortcode.php:38 admin/controllers/WidgetSlideshow.php:46
284
- msgid "Cube Vertical"
285
- msgstr ""
286
-
287
- #: admin/controllers/Shortcode.php:39 admin/controllers/WidgetSlideshow.php:47
288
- msgid "Fade"
289
- msgstr ""
290
-
291
- #: admin/controllers/Shortcode.php:40 admin/controllers/WidgetSlideshow.php:48
292
- msgid "Slice Horizontal"
293
- msgstr ""
294
-
295
- #: admin/controllers/Shortcode.php:41 admin/controllers/WidgetSlideshow.php:49
296
- msgid "Slice Vertical"
297
- msgstr ""
298
-
299
- #: admin/controllers/Shortcode.php:42 admin/controllers/WidgetSlideshow.php:50
300
- msgid "Slide Horizontal"
301
- msgstr ""
302
-
303
- #: admin/controllers/Shortcode.php:43 admin/controllers/WidgetSlideshow.php:51
304
- msgid "Slide Vertical"
305
- msgstr ""
306
-
307
- #: admin/controllers/Shortcode.php:44 admin/controllers/WidgetSlideshow.php:52
308
- msgid "Scale Out"
309
- msgstr ""
310
-
311
- #: admin/controllers/Shortcode.php:45 admin/controllers/WidgetSlideshow.php:53
312
- msgid "Scale In"
313
- msgstr ""
314
-
315
- #: admin/controllers/Shortcode.php:46 admin/controllers/WidgetSlideshow.php:54
316
- msgid "Block Scale"
317
- msgstr ""
318
-
319
- #: admin/controllers/Shortcode.php:47 admin/controllers/WidgetSlideshow.php:55
320
- msgid "Kaleidoscope"
321
- msgstr ""
322
-
323
- #: admin/controllers/Shortcode.php:48 admin/controllers/WidgetSlideshow.php:56
324
- msgid "Fan"
325
- msgstr ""
326
-
327
- #: admin/controllers/Shortcode.php:49 admin/controllers/WidgetSlideshow.php:57
328
- msgid "Blind Horizontal"
329
- msgstr ""
330
-
331
- #: admin/controllers/Shortcode.php:50 admin/controllers/WidgetSlideshow.php:58
332
- msgid "Blind Vertical"
333
- msgstr ""
334
-
335
- #: admin/controllers/Shortcode.php:51 admin/controllers/WidgetSlideshow.php:59
336
- #: admin/views/Shortcode.php:615 admin/views/Widget.php:156
337
- #: framework/WDWLibrary.php:891
338
- msgid "Random"
339
- msgstr "عشوائية"
340
-
341
- #: admin/controllers/Shortcode.php:55 admin/views/Shortcode.php:74
342
- #: photo-gallery.php:1326
343
- msgid "Thumbnails"
344
- msgstr ""
345
-
346
- #: admin/controllers/Shortcode.php:56 admin/controllers/Shortcode.php:65
347
- #: admin/controllers/Themes.php:265 admin/views/Options.php:456
348
- #: admin/views/Options.php:462 admin/views/Options.php:1017
349
- #: admin/views/Shortcode.php:82 admin/views/Shortcode.php:152
350
- #: admin/views/Shortcode.php:344 admin/views/Shortcode.php:1012
351
- #: admin/views/Shortcode.php:1061 admin/views/Widget.php:136
352
- #: photo-gallery.php:1330
353
- msgid "Masonry"
354
- msgstr ""
355
-
356
- #: admin/controllers/Shortcode.php:57 admin/controllers/Themes.php:266
357
- #: admin/views/Options.php:493 admin/views/Options.php:511
358
- #: admin/views/Options.php:1018 admin/views/Shortcode.php:91
359
- #: admin/views/Shortcode.php:359 admin/views/Shortcode.php:1013
360
- #: admin/views/Shortcode.php:1019 admin/views/Shortcode.php:1062
361
- #: admin/views/Shortcode.php:1068 photo-gallery.php:1334
362
- msgid "Mosaic"
363
- msgstr ""
364
-
365
- #: admin/controllers/Shortcode.php:58 admin/controllers/Themes.php:267
366
- #: admin/views/Options.php:651 admin/views/Shortcode.php:100
367
- #: photo-gallery.php:1300 photo-gallery.php:1338
368
- msgid "Slideshow"
369
- msgstr ""
370
-
371
- #: admin/controllers/Shortcode.php:59 admin/views/Options.php:540
372
- #: admin/views/Shortcode.php:106 photo-gallery.php:1342
373
- msgid "Image Browser"
374
  msgstr ""
375
 
376
- #: admin/controllers/Shortcode.php:60 admin/views/Options.php:583
377
- #: admin/views/Shortcode.php:112 photo-gallery.php:1358
378
- msgid "Blog Style"
379
  msgstr ""
380
 
381
- #: admin/controllers/Shortcode.php:61 admin/controllers/Themes.php:275
382
- #: admin/views/Options.php:866 admin/views/Shortcode.php:121
383
- #: photo-gallery.php:1370
384
- msgid "Carousel"
385
  msgstr ""
386
 
387
- #: admin/controllers/Shortcode.php:64 admin/views/Shortcode.php:146
388
- msgid "Compact"
389
  msgstr ""
390
 
391
- #: admin/controllers/Shortcode.php:66 admin/views/Shortcode.php:161
392
- msgid "Extended"
393
  msgstr ""
394
 
395
  #: admin/controllers/Themes.php:40
396
  msgid "duplicated"
397
  msgstr ""
398
 
399
- #: admin/controllers/Themes.php:88 photo-gallery.php:264
400
  msgid "Themes"
401
  msgstr ""
402
 
403
- #: admin/controllers/Themes.php:264 admin/views/Options.php:1016
404
- #: admin/views/Shortcode.php:1011 admin/views/Shortcode.php:1060
405
- #: admin/views/Widget.php:135
406
  msgid "Thumbnail"
407
  msgstr ""
408
 
409
- #: admin/controllers/Themes.php:268
410
  msgid "Image browser"
411
  msgstr ""
412
 
413
- #: admin/controllers/Themes.php:269
414
  msgid "Compact album"
415
  msgstr ""
416
 
417
- #: admin/controllers/Themes.php:270
418
  msgid "Masonry album"
419
  msgstr ""
420
 
421
- #: admin/controllers/Themes.php:271
422
  msgid "Extended album"
423
  msgstr ""
424
 
425
- #: admin/controllers/Themes.php:272
426
  msgid "Blog style"
427
  msgstr ""
428
 
429
- #: admin/controllers/Themes.php:273 admin/views/Options.php:78
430
- #: admin/views/Shortcode.php:1115 admin/views/WidgetTags.php:98
431
- #: photo-gallery.php:1292 photo-gallery.php:1362
432
  msgid "Lightbox"
433
  msgstr ""
434
 
435
- #: admin/controllers/Themes.php:274
436
  msgid "Navigation"
437
  msgstr ""
438
 
439
- #: admin/controllers/Themes.php:280
 
 
 
 
 
 
 
 
 
440
  msgid "Solid"
441
  msgstr ""
442
 
443
- #: admin/controllers/Themes.php:281
444
  msgid "Dotted"
445
  msgstr ""
446
 
447
- #: admin/controllers/Themes.php:282
448
  msgid "Dashed"
449
  msgstr ""
450
 
451
- #: admin/controllers/Themes.php:283 admin/controllers/Themes.php:326
452
  msgid "Double"
453
  msgstr ""
454
 
455
- #: admin/controllers/Themes.php:284
456
  msgid "Groove"
457
  msgstr ""
458
 
459
- #: admin/controllers/Themes.php:285
460
  msgid "Ridge"
461
  msgstr ""
462
 
463
- #: admin/controllers/Themes.php:286
464
  msgid "Inset"
465
  msgstr ""
466
 
467
- #: admin/controllers/Themes.php:287
468
  msgid "Outset"
469
  msgstr ""
470
 
471
- #: admin/controllers/Themes.php:305 admin/views/Themes.php:1161
472
- #: admin/views/Themes.php:3721 admin/views/Themes.php:4203
473
  msgid "Left"
474
  msgstr ""
475
 
476
- #: admin/controllers/Themes.php:306
477
  msgid "Center"
478
  msgstr ""
479
 
480
- #: admin/controllers/Themes.php:307 admin/views/Themes.php:1159
481
- #: admin/views/Themes.php:3719 admin/views/Themes.php:4205
482
  msgid "Right"
483
  msgstr ""
484
 
485
- #: admin/controllers/Themes.php:311
486
  msgid "Lighter"
487
  msgstr ""
488
 
489
- #: admin/controllers/Themes.php:312
490
  msgid "Normal"
491
  msgstr ""
492
 
493
- #: admin/controllers/Themes.php:313
494
  msgid "Bold"
495
  msgstr ""
496
 
497
- #: admin/controllers/Themes.php:318
498
  msgid "Rotate"
499
  msgstr ""
500
 
501
- #: admin/controllers/Themes.php:319
502
  msgid "Scale"
503
  msgstr ""
504
 
505
- #: admin/controllers/Themes.php:320
506
  msgid "Skew"
507
  msgstr ""
508
 
509
- #: admin/controllers/Themes.php:324
510
- msgid "Chevron"
511
  msgstr ""
512
 
513
- #: admin/controllers/Themes.php:325
514
  msgid "Angle"
515
  msgstr ""
516
 
517
- #: admin/controllers/Themes.php:330
 
 
 
 
518
  msgid "Star"
519
  msgstr ""
520
 
521
- #: admin/controllers/Themes.php:331
522
  msgid "Bell"
523
  msgstr ""
524
 
525
- #: admin/controllers/Themes.php:332
526
  msgid "Circle"
527
  msgstr ""
528
 
529
- #: admin/controllers/Themes.php:333
530
  msgid "Flag"
531
  msgstr ""
532
 
533
- #: admin/controllers/Themes.php:334
534
  msgid "Heart"
535
  msgstr ""
536
 
537
- #: admin/controllers/Themes.php:335
538
  msgid "Square"
539
  msgstr ""
540
 
541
- #: admin/controllers/Uninstall.php:46 admin/controllers/Uninstall.php:86
542
- #: admin/views/Options.php:332
543
  #, php-format
544
  msgid "Uninstall %s"
545
  msgstr ""
@@ -552,4349 +436,5512 @@ msgstr ""
552
  msgid "Add Photo Gallery slideshow to Your widget area."
553
  msgstr ""
554
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
555
  #: admin/controllers/WidgetTags.php:14
556
  msgid "Add Photo Gallery Tags dynamic cloud to Your widget area."
557
  msgstr ""
558
 
559
- #: admin/models/Comments.php:61 admin/models/Ratings.php:81
 
 
 
 
 
 
 
 
 
 
 
 
560
  msgid "All galleries"
561
  msgstr ""
562
 
563
- #: admin/models/Comments.php:75 admin/models/Ratings.php:100
 
564
  msgid "All images"
565
  msgstr ""
566
 
567
- #: admin/views/AddTags.php:65 admin/views/Albums.php:50
568
- #: admin/views/Comments.php:61 admin/views/Themes.php:72
 
 
 
 
 
 
569
  msgid "Select all"
570
  msgstr ""
571
 
572
- #: admin/views/AddTags.php:68 admin/views/AddTags.php:86
573
- #: admin/views/Albums.php:89 admin/views/Comments.php:64
574
- #: admin/views/Comments.php:87 admin/views/Galleries.php:51
575
- #: admin/views/Galleries.php:54 admin/views/Galleries.php:94
576
- #: frontend/views/BWGViewGalleryBox.php:1425
577
- #: frontend/views/BWGViewGalleryBox.php:1453
578
- #: frontend/views/BWGViewGalleryBox.php:1460
579
- #: frontend/views/BWGViewGalleryBox.php:1569
580
- #: frontend/views/BWGViewGalleryBox.php:1684
581
  msgid "Name"
582
  msgstr "الاسم"
583
 
584
- #: admin/views/AddTags.php:107
 
 
 
 
 
 
585
  msgid "Add to image"
586
  msgstr ""
587
 
588
- #: admin/views/AdminView.php:94
589
  msgid "Add New"
590
  msgstr ""
591
 
592
- #: admin/views/AdminView.php:164 framework/WDWLibrary.php:316
593
- #: framework/WDWLibrary.php:494 framework/WDWLibrary.php:817
594
- #: framework/WDWLibrary.php:846 photo-gallery.php:1009
595
  msgid "Search"
596
  msgstr "البحث"
597
 
598
- #: admin/views/AdminView.php:226
599
  #, fuzzy
600
  #| msgid "First"
601
  msgid "First page"
602
  msgstr " أولا"
603
 
604
- #: admin/views/AdminView.php:227
605
  #, fuzzy
606
  #| msgid "Previous"
607
  msgid "Previous page"
608
  msgstr "  السابقة"
609
 
610
- #: admin/views/AdminView.php:232
611
  msgid "Current Page"
612
  msgstr ""
613
 
614
- #: admin/views/AdminView.php:235 framework/WDWLibrary.php:447
615
- #: framework/WDWLibrary.php:596 framework/WDWLibrary.php:679
616
  msgid "of"
617
  msgstr "  من"
618
 
619
- #: admin/views/AdminView.php:248
620
  #, fuzzy
621
  #| msgid "Next"
622
  msgid "Next page"
623
  msgstr "المقبل"
624
 
625
- #: admin/views/AdminView.php:249
626
  #, fuzzy
627
  #| msgid "Last"
628
  msgid "Last page"
629
  msgstr "آخر"
630
 
631
- #: admin/views/AdminView.php:281 filemanager/view.php:248
632
  msgid "Select All"
633
  msgstr ""
634
 
635
- #: admin/views/AdminView.php:286
636
  msgid "Select bulk action"
637
  msgstr ""
638
 
639
- #: admin/views/AdminView.php:288
640
  msgid "Bulk Actions"
641
  msgstr ""
642
 
643
- #: admin/views/AdminView.php:297
 
 
 
 
 
 
 
 
644
  msgid "Apply"
645
  msgstr ""
646
 
647
- #: admin/views/Albums.php:53 admin/views/Albumsgalleries.php:77
648
- #: admin/views/Albumsgalleries.php:101 admin/views/Shortcode.php:609
649
- #: admin/views/Themes.php:75 admin/views/Themes.php:94
 
 
 
 
 
 
 
 
650
  msgid "Title"
651
  msgstr ""
652
 
653
- #: admin/views/Albums.php:54 admin/views/Albums.php:112
654
- #: admin/views/Albums.php:255 admin/views/Galleries.php:56
655
- #: admin/views/Galleries.php:117 admin/views/Galleries.php:305
656
  msgid "Author"
657
  msgstr ""
658
 
659
- #: admin/views/Albums.php:98 admin/views/Albums.php:345
660
- #: admin/views/Albumsgalleries.php:110 admin/views/Comments.php:99
661
- #: admin/views/Galleries.php:103 admin/views/Galleries.php:712
662
  msgid "Unpublished"
663
  msgstr ""
664
 
665
- #: admin/views/Albums.php:105 admin/views/Comments.php:109
666
- #: admin/views/Galleries.php:109 admin/views/Galleries.php:727
667
- #: admin/views/Ratings.php:84 admin/views/Themes.php:101
 
 
 
 
 
 
668
  msgid "Do you want to delete selected item?"
669
  msgstr ""
670
 
671
- #: admin/views/Albums.php:106 admin/views/Albums.php:182
672
- #: admin/views/Galleries.php:110 admin/views/Galleries.php:207
673
  #, fuzzy
674
  #| msgid "Previous"
675
  msgid "Preview"
676
  msgstr "  السابقة"
677
 
678
- #: admin/views/Albums.php:109 admin/views/Albumsgalleries.php:114
679
- #: admin/views/Comments.php:112 admin/views/Galleries.php:113
680
- #: admin/views/Galleries.php:736 admin/views/Ratings.php:87
681
- #: admin/views/Themes.php:104
682
  #, fuzzy
683
  #| msgid "Show comments"
684
  msgid "Show more details"
685
  msgstr "تظهر التعليقات"
686
 
687
- #: admin/views/Albums.php:166
688
  msgid "Gallery Group Title"
689
  msgstr ""
690
 
691
- #: admin/views/Albums.php:173 admin/views/Albums.php:295
692
- #: admin/views/Galleries.php:195 admin/views/Galleries.php:265
693
- msgid "How to use"
694
- msgstr ""
695
-
696
- #: admin/views/Albums.php:179 admin/views/Galleries.php:203
697
- #: admin/views/Galleries.php:575 admin/views/Shortcode.php:1631
698
- #: admin/views/Shortcode.php:2888 admin/views/Themes.php:175
699
  msgid "Update"
700
  msgstr ""
701
 
702
- #: admin/views/Albums.php:193 admin/views/Galleries.php:228
703
- msgid "Preview image"
 
 
 
 
704
  msgstr ""
705
 
706
- #: admin/views/Albums.php:195 admin/views/Galleries.php:232
 
 
 
 
 
 
 
 
707
  msgid "Add Preview Image"
708
  msgstr ""
709
 
710
- #: admin/views/Albums.php:196 admin/views/Albums.php:238
711
- #: admin/views/Galleries.php:235 admin/views/Galleries.php:490
712
- #: filemanager/view.php:256
713
  msgid "Add"
714
  msgstr ""
715
 
716
- #: admin/views/Albums.php:204 admin/views/Galleries.php:245
717
- msgid "Published"
 
 
718
  msgstr ""
719
 
720
- #: admin/views/Albums.php:206 admin/views/Galleries.php:247
721
- #: admin/views/Options.php:132 admin/views/Options.php:157
722
- #: admin/views/Options.php:166 admin/views/Options.php:175
723
- #: admin/views/Options.php:193 admin/views/Options.php:202
724
- #: admin/views/Options.php:211 admin/views/Options.php:220
725
- #: admin/views/Options.php:233 admin/views/Options.php:243
726
- #: admin/views/Options.php:252 admin/views/Options.php:262
727
- #: admin/views/Options.php:290 admin/views/Options.php:301
728
- #: admin/views/Options.php:312 admin/views/Options.php:352
729
- #: admin/views/Options.php:415 admin/views/Options.php:424
730
- #: admin/views/Options.php:433 admin/views/Options.php:442
731
- #: admin/views/Options.php:476 admin/views/Options.php:523
732
- #: admin/views/Options.php:558 admin/views/Options.php:567
733
- #: admin/views/Options.php:612 admin/views/Options.php:623
734
- #: admin/views/Options.php:634 admin/views/Options.php:702
735
- #: admin/views/Options.php:711 admin/views/Options.php:720
736
- #: admin/views/Options.php:740 admin/views/Options.php:759
737
- #: admin/views/Options.php:795 admin/views/Options.php:805
738
- #: admin/views/Options.php:841 admin/views/Options.php:922
739
- #: admin/views/Options.php:932 admin/views/Options.php:942
740
- #: admin/views/Options.php:952 admin/views/Options.php:962
741
- #: admin/views/Options.php:982 admin/views/Options.php:1007
742
- #: admin/views/Options.php:1040 admin/views/Options.php:1084
743
- #: admin/views/Options.php:1129 admin/views/Options.php:1146
744
- #: admin/views/Options.php:1165 admin/views/Options.php:1188
745
- #: admin/views/Options.php:1210 admin/views/Options.php:1219
746
- #: admin/views/Options.php:1228 admin/views/Options.php:1237
747
- #: admin/views/Options.php:1258 admin/views/Options.php:1268
748
- #: admin/views/Options.php:1278 admin/views/Options.php:1287
749
- #: admin/views/Options.php:1296 admin/views/Options.php:1305
750
- #: admin/views/Options.php:1314 admin/views/Options.php:1334
751
- #: admin/views/Options.php:1346 admin/views/Options.php:1358
752
- #: admin/views/Options.php:1368 admin/views/Options.php:1378
753
- #: admin/views/Options.php:1388 admin/views/Options.php:1398
754
- #: admin/views/Options.php:1408 admin/views/Options.php:1421
755
- #: admin/views/Shortcode.php:375 admin/views/Shortcode.php:419
756
- #: admin/views/Shortcode.php:559 admin/views/Shortcode.php:566
757
- #: admin/views/Shortcode.php:582 admin/views/Shortcode.php:589
758
- #: admin/views/Shortcode.php:637 admin/views/Shortcode.php:644
759
- #: admin/views/Shortcode.php:651 admin/views/Shortcode.php:676
760
- #: admin/views/Shortcode.php:693 admin/views/Shortcode.php:727
761
- #: admin/views/Shortcode.php:771 admin/views/Shortcode.php:815
762
- #: admin/views/Shortcode.php:843 admin/views/Shortcode.php:850
763
- #: admin/views/Shortcode.php:857 admin/views/Shortcode.php:865
764
- #: admin/views/Shortcode.php:880 admin/views/Shortcode.php:887
765
- #: admin/views/Shortcode.php:919 admin/views/Shortcode.php:927
766
- #: admin/views/Shortcode.php:959 admin/views/Shortcode.php:975
767
- #: admin/views/Shortcode.php:982 admin/views/Shortcode.php:989
768
- #: admin/views/Shortcode.php:996 admin/views/Shortcode.php:1035
769
- #: admin/views/Shortcode.php:1084 admin/views/Shortcode.php:1129
770
- #: admin/views/Shortcode.php:1139 admin/views/Shortcode.php:1181
771
- #: admin/views/Shortcode.php:1197 admin/views/Shortcode.php:1215
772
- #: admin/views/Shortcode.php:1222 admin/views/Shortcode.php:1231
773
- #: admin/views/Shortcode.php:1239 admin/views/Shortcode.php:1247
774
- #: admin/views/Shortcode.php:1254 admin/views/Shortcode.php:1262
775
- #: admin/views/Shortcode.php:1270 admin/views/Shortcode.php:1282
776
- #: admin/views/Shortcode.php:1290 admin/views/Shortcode.php:1298
777
- #: admin/views/Shortcode.php:1306 admin/views/Shortcode.php:1314
778
- #: admin/views/Shortcode.php:1325 admin/views/Shortcode.php:1352
779
- #: admin/views/Shortcode.php:1369 admin/views/Shortcode.php:1378
780
- #: admin/views/Themes.php:282 admin/views/Themes.php:631
781
- #: admin/views/Themes.php:878 admin/views/Themes.php:1872
782
- #: admin/views/Themes.php:2209 admin/views/Themes.php:2831
783
- #: admin/views/Themes.php:4520 admin/views/Themes.php:4569
784
- #: admin/views/Uninstall.php:96 admin/views/WidgetSlideshow.php:115
785
- #: admin/views/WidgetSlideshow.php:121 admin/views/WidgetSlideshow.php:127
786
- #: admin/views/WidgetTags.php:91 admin/views/WidgetTags.php:113
787
- #: wd/includes/overview.php:227 wd/includes/overview.php:234
788
- #: wd/includes/overview.php:241 wd/includes/overview.php:251
789
- msgid "Yes"
790
  msgstr ""
791
 
792
- #: admin/views/Albums.php:208 admin/views/Galleries.php:249
793
- #: admin/views/Options.php:133 admin/views/Options.php:158
794
- #: admin/views/Options.php:167 admin/views/Options.php:176
795
- #: admin/views/Options.php:194 admin/views/Options.php:203
796
- #: admin/views/Options.php:212 admin/views/Options.php:221
797
  #: admin/views/Options.php:234 admin/views/Options.php:244
798
- #: admin/views/Options.php:253 admin/views/Options.php:263
799
- #: admin/views/Options.php:291 admin/views/Options.php:302
800
- #: admin/views/Options.php:313 admin/views/Options.php:353
801
- #: admin/views/Options.php:416 admin/views/Options.php:425
802
- #: admin/views/Options.php:434 admin/views/Options.php:443
803
- #: admin/views/Options.php:477 admin/views/Options.php:524
804
- #: admin/views/Options.php:559 admin/views/Options.php:568
805
- #: admin/views/Options.php:613 admin/views/Options.php:624
806
- #: admin/views/Options.php:635 admin/views/Options.php:703
807
- #: admin/views/Options.php:712 admin/views/Options.php:721
808
- #: admin/views/Options.php:741 admin/views/Options.php:760
809
- #: admin/views/Options.php:796 admin/views/Options.php:806
810
- #: admin/views/Options.php:842 admin/views/Options.php:923
811
- #: admin/views/Options.php:933 admin/views/Options.php:943
812
- #: admin/views/Options.php:953 admin/views/Options.php:963
813
- #: admin/views/Options.php:983 admin/views/Options.php:1008
814
- #: admin/views/Options.php:1041 admin/views/Options.php:1085
815
- #: admin/views/Options.php:1130 admin/views/Options.php:1147
816
- #: admin/views/Options.php:1166 admin/views/Options.php:1202
817
- #: admin/views/Options.php:1211 admin/views/Options.php:1220
818
- #: admin/views/Options.php:1229 admin/views/Options.php:1238
819
- #: admin/views/Options.php:1259 admin/views/Options.php:1269
820
- #: admin/views/Options.php:1279 admin/views/Options.php:1288
821
- #: admin/views/Options.php:1297 admin/views/Options.php:1306
822
- #: admin/views/Options.php:1315 admin/views/Options.php:1335
823
- #: admin/views/Options.php:1349 admin/views/Options.php:1359
824
- #: admin/views/Options.php:1369 admin/views/Options.php:1379
825
- #: admin/views/Options.php:1389 admin/views/Options.php:1399
826
- #: admin/views/Options.php:1409 admin/views/Options.php:1422
827
- #: admin/views/Shortcode.php:376 admin/views/Shortcode.php:420
828
- #: admin/views/Shortcode.php:560 admin/views/Shortcode.php:567
829
- #: admin/views/Shortcode.php:583 admin/views/Shortcode.php:590
830
- #: admin/views/Shortcode.php:638 admin/views/Shortcode.php:645
831
- #: admin/views/Shortcode.php:652 admin/views/Shortcode.php:677
832
- #: admin/views/Shortcode.php:694 admin/views/Shortcode.php:728
833
- #: admin/views/Shortcode.php:772 admin/views/Shortcode.php:816
834
- #: admin/views/Shortcode.php:844 admin/views/Shortcode.php:851
835
- #: admin/views/Shortcode.php:858 admin/views/Shortcode.php:866
836
- #: admin/views/Shortcode.php:881 admin/views/Shortcode.php:888
837
- #: admin/views/Shortcode.php:920 admin/views/Shortcode.php:928
838
- #: admin/views/Shortcode.php:960 admin/views/Shortcode.php:976
839
- #: admin/views/Shortcode.php:983 admin/views/Shortcode.php:990
840
- #: admin/views/Shortcode.php:997 admin/views/Shortcode.php:1036
841
- #: admin/views/Shortcode.php:1085 admin/views/Shortcode.php:1130
842
- #: admin/views/Shortcode.php:1140 admin/views/Shortcode.php:1182
843
- #: admin/views/Shortcode.php:1198 admin/views/Shortcode.php:1216
844
- #: admin/views/Shortcode.php:1223 admin/views/Shortcode.php:1232
845
- #: admin/views/Shortcode.php:1240 admin/views/Shortcode.php:1248
846
- #: admin/views/Shortcode.php:1255 admin/views/Shortcode.php:1263
847
- #: admin/views/Shortcode.php:1271 admin/views/Shortcode.php:1283
848
- #: admin/views/Shortcode.php:1291 admin/views/Shortcode.php:1299
849
- #: admin/views/Shortcode.php:1307 admin/views/Shortcode.php:1315
850
- #: admin/views/Shortcode.php:1326 admin/views/Shortcode.php:1353
851
- #: admin/views/Shortcode.php:1370 admin/views/Shortcode.php:1379
852
- #: admin/views/Themes.php:284 admin/views/Themes.php:633
853
- #: admin/views/Themes.php:880 admin/views/Themes.php:1874
854
- #: admin/views/Themes.php:2211 admin/views/Themes.php:2833
855
- #: admin/views/Themes.php:4522 admin/views/Themes.php:4571
856
- #: admin/views/WidgetSlideshow.php:116 admin/views/WidgetSlideshow.php:122
857
- #: admin/views/WidgetSlideshow.php:128 admin/views/WidgetTags.php:92
858
- #: admin/views/WidgetTags.php:114 wd/includes/overview.php:229
859
- #: wd/includes/overview.php:236 wd/includes/overview.php:243
860
- #: wd/includes/overview.php:246 wd/includes/overview.php:251
861
- msgid "No"
862
- msgstr ""
863
-
864
- #: admin/views/Albums.php:219
865
- msgid "Galleries and Gallery Groups"
866
  msgstr ""
867
 
868
- #: admin/views/Albums.php:247 admin/views/Albums.php:291
869
- #: admin/views/Galleries.php:219 admin/views/Galleries.php:261
870
- #: admin/views/Galleries.php:294 admin/views/Options.php:452
871
- #: admin/views/Options.php:489 admin/views/Options.php:536
872
- #: admin/views/Options.php:579 admin/views/Options.php:647
873
- #: admin/views/Options.php:862 admin/views/Shortcode.php:266
874
- #: admin/views/Shortcode.php:1111
875
- msgid "Toggle panel:"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
876
  msgstr ""
877
 
878
- #: admin/views/Albums.php:251 admin/views/Galleries.php:298
879
- #: admin/views/Options.php:81 admin/views/Shortcode.php:1344
880
  msgid "Advanced"
881
  msgstr ""
882
 
883
- #: admin/views/Albums.php:259 admin/views/Galleries.php:309
884
  msgid "Slug"
885
  msgstr ""
886
 
887
- #: admin/views/Albums.php:264 admin/views/Galleries.php:314
888
- #: admin/views/Galleries.php:635 admin/views/Galleries.php:742
889
- #: frontend/views/BWGViewGalleryBox.php:1584
890
  msgid "Description"
891
  msgstr ""
892
 
893
- #: admin/views/Albums.php:300 admin/views/Galleries.php:270
894
- msgid "Page or Post editor"
895
- msgstr ""
896
-
897
- #: admin/views/Albums.php:301 admin/views/Galleries.php:271
898
- msgid "Insert it into an existing post with the button."
899
- msgstr ""
900
-
901
- #: admin/views/Albums.php:302 admin/views/Galleries.php:272
902
- msgid "Post editor"
903
- msgstr ""
904
-
905
- #: admin/views/Albums.php:305 admin/views/Galleries.php:275
906
- msgid "PHP code"
907
- msgstr ""
908
-
909
- #: admin/views/Albums.php:306 admin/views/Galleries.php:276
910
- msgid "Copy and paste the PHP code into your template file."
911
- msgstr ""
912
-
913
- #: admin/views/Albums.php:310 admin/views/Albums.php:312
914
- #: admin/views/Galleries.php:280 admin/views/Galleries.php:282
915
- msgid "Widget"
916
- msgstr ""
917
-
918
- #: admin/views/Albums.php:311 admin/views/Galleries.php:281
919
- msgid "Insert as Widget."
920
  msgstr ""
921
 
922
- #: admin/views/Albums.php:336 admin/views/Galleries.php:689
 
923
  msgid "Drag to re-order"
924
  msgstr ""
925
 
926
- #: admin/views/Albums.php:344
927
  msgid "Remove"
928
  msgstr ""
929
 
930
- #: admin/views/Albumsgalleries.php:78 admin/views/Albumsgalleries.php:117
931
- #: admin/views/Galleries.php:708 admin/views/Shortcode.php:613
 
 
 
 
 
932
  msgid "Type"
933
  msgstr ""
934
 
935
- #: admin/views/Albumsgalleries.php:118 admin/views/Options.php:75
936
- #: admin/views/Shortcode.php:66 admin/views/Shortcode.php:270
937
  #, fuzzy
938
  #| msgid "Gallery is empty."
939
  msgid "Gallery group"
940
  msgstr "  معرض فارغة"
941
 
942
- #: admin/views/Albumsgalleries.php:118 admin/views/Options.php:72
943
- #: admin/views/Shortcode.php:63 admin/views/Shortcode.php:192
944
- #: admin/views/Shortcode.php:270 admin/views/Widget.php:117
945
- msgid "Gallery"
946
- msgstr ""
947
-
948
- #: admin/views/Albumsgalleries.php:136
949
  msgid "Add to Gallery Group"
950
  msgstr ""
951
 
952
- #: admin/views/Comments.php:67 admin/views/Comments.php:118
953
- #: frontend/views/BWGViewGalleryBox.php:1431
954
- #: frontend/views/BWGViewGalleryBox.php:1453
955
- #: frontend/views/BWGViewGalleryBox.php:1460
956
  msgid "Email"
957
  msgstr "مينا "
958
 
959
- #: admin/views/Comments.php:70 admin/views/Comments.php:124
960
- #: frontend/views/BWGViewGalleryBox.php:1438
961
- #: frontend/views/BWGViewGalleryBox.php:1453
962
- #: frontend/views/BWGViewGalleryBox.php:1460
963
  msgid "Comment"
964
  msgstr "التعليق"
965
 
966
- #: admin/views/Editimage.php:196
967
- msgid "You can't crop this type of image."
 
 
 
 
 
 
 
968
  msgstr ""
969
 
970
- #: admin/views/Editimage.php:277
971
- msgid "The thumbnail successfully croped."
972
  msgstr ""
973
 
974
- #: admin/views/Editimage.php:282
975
  msgid "Select the area for the thumbnail."
976
  msgstr ""
977
 
978
- #: admin/views/Editimage.php:287
979
  msgid "Keep aspect ratio"
980
  msgstr ""
981
 
982
- #: admin/views/Editimage.php:785
 
 
 
 
 
 
 
 
983
  msgid "Grayscale"
984
  msgstr ""
985
 
986
- #: admin/views/Editimage.php:789
987
  msgid "Negative"
988
  msgstr ""
989
 
990
- #: admin/views/Editimage.php:793
991
  msgid "Removal"
992
  msgstr ""
993
 
994
- #: admin/views/Editimage.php:797
995
  msgid "Sepia"
996
  msgstr ""
997
 
998
- #: admin/views/Editimage.php:801
999
  msgid "Slate"
1000
  msgstr ""
1001
 
1002
- #: admin/views/Editimage.php:805
1003
  msgid "Saturate"
1004
  msgstr ""
1005
 
1006
- #: admin/views/Editimage.php:809 admin/views/Galleries.php:718
1007
  msgid "Do you want to reset the image?"
1008
  msgstr ""
1009
 
1010
- #: admin/views/Editimage.php:811
1011
  #, fuzzy
1012
  #| msgid "Reset"
1013
  msgid "Reset image"
1014
  msgstr "إعادة تعيين"
1015
 
1016
- #: admin/views/Editimage.php:838
1017
  msgid "Brightness"
1018
  msgstr ""
1019
 
1020
- #: admin/views/Editimage.php:840 admin/views/Editimage.php:866
1021
  msgid "Press for result"
1022
  msgstr ""
1023
 
1024
- #: admin/views/Editimage.php:864
1025
  msgid "Contrast"
1026
  msgstr ""
1027
 
1028
- #: admin/views/Galleries.php:55 admin/views/Galleries.php:116
 
 
 
 
1029
  msgid "Images count"
1030
  msgstr ""
1031
 
1032
- #: admin/views/Galleries.php:188
1033
  #, fuzzy
1034
  #| msgid "Gallery is empty."
1035
  msgid "Gallery title"
1036
  msgstr "  معرض فارغة"
1037
 
1038
- #: admin/views/Galleries.php:223
1039
- msgid "Basic"
 
 
1040
  msgstr ""
1041
 
1042
- #: admin/views/Galleries.php:340
1043
  msgid "Gallery content type"
1044
  msgstr ""
1045
 
1046
- #: admin/views/Galleries.php:343
1047
- msgid "Mixed"
1048
- msgstr ""
1049
-
1050
- #: admin/views/Galleries.php:346
1051
- msgid "Instagram only"
1052
  msgstr ""
1053
 
1054
- #: admin/views/Galleries.php:349 admin/views/Options.php:1474
1055
- #, fuzzy
1056
- #| msgid "Share on Facebook"
1057
- msgid "Facebook"
1058
- msgstr "حصة في الفيسبوك"
1059
-
1060
- #: admin/views/Galleries.php:357
1061
- msgid "Instagram username"
1062
  msgstr ""
1063
 
1064
- #: admin/views/Galleries.php:361
1065
  msgid "Number of Instagram recent posts to add to gallery"
1066
  msgstr ""
1067
 
1068
- #: admin/views/Galleries.php:365
1069
  msgid "Instagram embed type"
1070
  msgstr ""
1071
 
1072
- #: admin/views/Galleries.php:367 admin/views/Galleries.php:540
1073
  msgid "Content"
1074
  msgstr ""
1075
 
1076
- #: admin/views/Galleries.php:369 admin/views/Galleries.php:542
1077
  msgid "Whole post"
1078
  msgstr ""
1079
 
1080
- #: admin/views/Galleries.php:372
1081
  #, fuzzy
1082
  #| msgid "Photo gallery plugin autoupdate interval."
1083
  msgid "Gallery autoupdate option"
1084
  msgstr "معرض الصور المساعد الفاصل الزمني للتحديث التلقائي."
1085
 
1086
- #: admin/views/Galleries.php:374
1087
  msgid "No update"
1088
  msgstr ""
1089
 
1090
- #: admin/views/Galleries.php:376
1091
  msgid "Add new media, keep old ones published."
1092
  msgstr ""
1093
 
1094
- #: admin/views/Galleries.php:378
1095
  msgid "Add new media, unpublish old ones."
1096
  msgstr ""
1097
 
1098
- #: admin/views/Galleries.php:381
1099
  msgid "Add Instagram Gallery"
1100
  msgstr ""
1101
 
1102
- #: admin/views/Galleries.php:390 admin/views/Options.php:1481
1103
  msgid "Photo Gallery Facebook Integration"
1104
  msgstr ""
1105
 
1106
- #: admin/views/Galleries.php:391 admin/views/Options.php:1482
1107
  #, php-format
1108
  msgid "Please install %s add-on to use this feature."
1109
  msgstr ""
1110
 
1111
- #: admin/views/Galleries.php:415 admin/views/Galleries.php:418
1112
  msgid "Add Images"
1113
  msgstr ""
1114
 
1115
- #: admin/views/Galleries.php:420
1116
  msgid "Import from Media Library"
1117
  msgstr ""
1118
 
1119
- #: admin/views/Galleries.php:427 admin/views/Galleries.php:429
1120
  msgid "Embed Media"
1121
  msgstr ""
1122
 
1123
- #: admin/views/Galleries.php:430 admin/views/Galleries.php:432
1124
  msgid "Social Bulk Embed"
1125
  msgstr ""
1126
 
1127
- #: admin/views/Galleries.php:435
1128
- msgid "Optimize Images"
1129
- msgstr ""
1130
-
1131
- #: admin/views/Galleries.php:452
1132
- msgid "Pricelist"
1133
- msgstr ""
1134
-
1135
- #: admin/views/Galleries.php:453
1136
- msgid "Add pricelist"
1137
  msgstr ""
1138
 
1139
- #: admin/views/Galleries.php:454
1140
- msgid "Remove pricelist"
1141
  msgstr ""
1142
 
1143
- #: admin/views/Galleries.php:471
1144
- msgid ""
1145
- "Enter YouTube, Vimeo, Instagram, Flickr or Dailymotion URL here."
1146
  msgstr ""
1147
 
1148
- #: admin/views/Galleries.php:472 admin/views/Galleries.php:510
1149
  msgid "Add to gallery"
1150
  msgstr ""
1151
 
1152
- #: admin/views/Galleries.php:473 admin/views/Galleries.php:509
1153
- #: admin/views/Galleries.php:566 admin/views/Galleries.php:576
1154
- #: filemanager/view.php:262 filemanager/view.php:263
1155
- #: wd/templates/display_deactivation_popup.php:23
1156
  msgid "Cancel"
1157
  msgstr ""
1158
 
1159
- #: admin/views/Galleries.php:480
1160
  msgid "<b>Youtube</b> URL example:"
1161
  msgstr ""
1162
 
1163
- #: admin/views/Galleries.php:484
1164
  msgid "<b>Vimeo</b> URL example:"
1165
  msgstr ""
1166
 
1167
- #: admin/views/Galleries.php:488
1168
  msgid "<b>Instagram</b> URL example:"
1169
  msgstr ""
1170
 
1171
- #: admin/views/Galleries.php:490
1172
  msgid "post"
1173
  msgstr ""
1174
 
1175
- #: admin/views/Galleries.php:490
1176
  msgid ""
1177
  "to the end of URL if you want to embed the whole Instagram post, not only "
1178
  "its content."
1179
  msgstr ""
1180
 
1181
- #: admin/views/Galleries.php:498
1182
  msgid "<b>Flickr</b> URL example:"
1183
  msgstr ""
1184
 
1185
- #: admin/views/Galleries.php:502
1186
  msgid "<b>Dailymotion</b> URL example:"
1187
  msgstr ""
1188
 
1189
- #: admin/views/Galleries.php:521
1190
  msgid "username:"
1191
  msgstr ""
1192
 
1193
- #: admin/views/Galleries.php:529
1194
  msgid "Number of Instagram recent posts to add to gallery:"
1195
  msgstr ""
1196
 
1197
- #: admin/views/Galleries.php:537
1198
  msgid "embed type:"
1199
  msgstr ""
1200
 
1201
- #: admin/views/Galleries.php:556
1202
  msgid "Resize images to: "
1203
  msgstr ""
1204
 
1205
- #: admin/views/Galleries.php:559
1206
  msgid "The maximum size of resized image."
1207
  msgstr ""
1208
 
1209
- #: admin/views/Galleries.php:580
 
 
 
 
1210
  msgid "Alt/Title: "
1211
  msgstr ""
1212
 
1213
- #: admin/views/Galleries.php:587
 
 
 
 
 
 
 
 
 
1214
  msgid "Redirect URL: "
1215
  msgstr ""
1216
 
1217
- #: admin/views/Galleries.php:594
 
 
 
 
1218
  msgid "Description: "
1219
  msgstr ""
1220
 
1221
- #: admin/views/Galleries.php:613
 
 
 
 
1222
  #, fuzzy
1223
  #| msgid "You have already rated."
1224
  msgid "You have unsaved changes."
1225
  msgstr "لقد تقييما بالفعل"
1226
 
1227
- #: admin/views/Galleries.php:626 photo-gallery.php:395
 
 
 
 
 
 
1228
  #, fuzzy
1229
  #| msgid "Show comments"
1230
  msgid "Show order column"
1231
  msgstr "تظهر التعليقات"
1232
 
1233
- #: admin/views/Galleries.php:629 admin/views/Galleries.php:696
1234
- #: admin/views/Shortcode.php:611 framework/WDWLibrary.php:889
1235
- msgid "Filename"
1236
- msgstr "اسم الملف"
1237
-
1238
- #: admin/views/Galleries.php:633 admin/views/Options.php:1501
1239
- #: admin/views/Options.php:1645 admin/views/Ratings.php:57
1240
- #: admin/views/Ratings.php:74 admin/views/Shortcode.php:1389
1241
- #: admin/views/WidgetTags.php:86
1242
- msgid "Image"
1243
  msgstr ""
1244
 
1245
- #: admin/views/Galleries.php:634 admin/views/Galleries.php:739
1246
- msgid "Alt/Title"
1247
- msgstr ""
 
 
1248
 
1249
- #: admin/views/Galleries.php:638 admin/views/Galleries.php:758
1250
- msgid "Redirect URL"
1251
- msgstr ""
 
 
 
 
 
 
1252
 
1253
- #: admin/views/Galleries.php:705
1254
- msgid "Date modified"
 
 
 
1255
  msgstr ""
1256
 
1257
- #: admin/views/Galleries.php:706 admin/views/Shortcode.php:614
 
 
 
 
 
1258
  msgid "Resolution"
1259
  msgstr ""
1260
 
1261
- #: admin/views/Galleries.php:707 admin/views/Shortcode.php:612
1262
- #: framework/WDWLibrary.php:890
 
 
 
 
 
1263
  msgid "Size"
1264
  msgstr "حجم"
1265
 
1266
- #: admin/views/Galleries.php:717
1267
- msgid "Crop"
 
 
1268
  msgstr ""
1269
 
1270
- #: admin/views/Galleries.php:772
1271
- msgid "Remove tag"
1272
  msgstr ""
1273
 
1274
- #: admin/views/Options.php:44 admin/views/Themes.php:175
1275
- msgid "Save"
 
 
 
 
 
 
1276
  msgstr ""
1277
 
1278
- #: admin/views/Options.php:50
1279
- msgid "Reset all options"
1280
  msgstr ""
1281
 
1282
- #: admin/views/Options.php:51 admin/views/Themes.php:180
1283
- msgid "Do you want to reset to default?"
1284
  msgstr ""
1285
 
1286
- #: admin/views/Options.php:69
1287
- msgid "General"
 
 
 
1288
  msgstr ""
1289
 
1290
- #: admin/views/Options.php:90
1291
- msgid "Images directory"
1292
  msgstr ""
1293
 
1294
- #: admin/views/Options.php:95
 
 
 
 
1295
  msgid ""
1296
- "Input an existing directory inside the Wordpress directory to store uploaded "
1297
- "images.<br />Old directory content will be moved to the new one."
1298
  msgstr ""
1299
 
1300
- #: admin/views/Options.php:100 admin/views/Options.php:899
1301
- msgid "Image dimensions"
1302
  msgstr ""
1303
 
1304
- #: admin/views/Options.php:105
1305
- msgid "The maximum size of the uploaded image (0 for original size)."
 
 
 
 
 
 
 
1306
  msgstr ""
1307
 
1308
- #: admin/views/Options.php:110
1309
- msgid "Generated thumbnail dimensions"
1310
  msgstr ""
1311
 
1312
- #: admin/views/Options.php:114
1313
- msgid "Recreate"
1314
  msgstr ""
1315
 
1316
- #: admin/views/Options.php:116
1317
  msgid ""
1318
- "The maximum size of the generated thumbnail. Its dimensions should be larger "
1319
- "than the ones of the frontend thumbnail."
 
1320
  msgstr ""
1321
 
1322
- #: admin/views/Options.php:121
1323
- msgid "Image quality"
1324
  msgstr ""
1325
 
1326
- #: admin/views/Options.php:125
1327
- msgid "Set the quality of gallery images. Provide a value from 0 to 100%."
1328
  msgstr ""
1329
 
1330
- #: admin/views/Options.php:130 admin/views/Shortcode.php:1351
1331
- msgid "Show search box"
1332
  msgstr ""
1333
 
1334
- #: admin/views/Options.php:139
1335
- msgid "Add placeholder to search"
1336
  msgstr ""
1337
 
1338
- #: admin/views/Options.php:147 admin/views/Shortcode.php:1358
1339
- msgid "Search box width"
 
 
 
 
 
 
 
 
 
 
 
 
1340
  msgstr ""
1341
 
1342
- #: admin/views/Options.php:155 admin/views/Shortcode.php:1377
1343
- msgid "Show \"Order by\" dropdown list"
1344
  msgstr ""
1345
 
1346
- #: admin/views/Options.php:164 admin/views/Shortcode.php:1368
1347
- #, fuzzy
1348
- #| msgid "Show rating"
1349
- msgid "Show tag box"
1350
- msgstr "تظهر التصنيف"
1351
 
1352
- #: admin/views/Options.php:173
1353
- msgid "Preload images"
 
 
 
1354
  msgstr ""
1355
 
1356
- #: admin/views/Options.php:182
1357
- msgid "Count of images"
1358
  msgstr ""
1359
 
1360
- #: admin/views/Options.php:186
1361
- msgid "Count of images to preload (0 for all)."
1362
  msgstr ""
1363
 
1364
- #: admin/views/Options.php:191
1365
- msgid "Show/hide custom post types"
1366
  msgstr ""
1367
 
1368
- #: admin/views/Options.php:200
1369
- msgid "Show/hide comments for custom post types"
1370
  msgstr ""
1371
 
1372
- #: admin/views/Options.php:209
1373
- msgid "Include styles/scripts in necessary pages only"
1374
  msgstr ""
1375
 
1376
- #: admin/views/Options.php:218
1377
- msgid "Enable bulk download button"
1378
  msgstr ""
1379
 
1380
- #: admin/views/Options.php:223
 
 
 
 
1381
  msgid ""
1382
- "If enabled,it will be possible to download entire gallery with a single "
1383
- "button."
1384
  msgstr ""
1385
 
1386
- #: admin/views/Options.php:231
1387
- msgid "Right click protection"
1388
  msgstr ""
1389
 
1390
- #: admin/views/Options.php:236
1391
- msgid "Disable image right click possibility."
1392
  msgstr ""
1393
 
1394
- #: admin/views/Options.php:241
1395
- msgid "Enable html editor"
 
 
1396
  msgstr ""
1397
 
1398
- #: admin/views/Options.php:250
1399
- msgid "Enable href attribute"
1400
  msgstr ""
1401
 
1402
- #: admin/views/Options.php:255
1403
- msgid "Disable this option only if it conflicts with your theme."
1404
  msgstr ""
1405
 
1406
- #: admin/views/Options.php:260
1407
- msgid "Meta auto-fill"
1408
  msgstr ""
1409
 
1410
- #: admin/views/Options.php:265
1411
  msgid ""
1412
- "Enabling this option the meta description of the image will be automatically "
1413
- "filled in image description field."
1414
  msgstr ""
1415
 
1416
- #: admin/views/Options.php:270
1417
- msgid "Roles"
1418
  msgstr ""
1419
 
1420
- #: admin/views/Options.php:282
1421
  msgid ""
1422
- "Choose a user type who can add/edit galleries, images, gallery groups and "
1423
- "tags."
1424
  msgstr ""
1425
 
1426
- #: admin/views/Options.php:288
1427
- #, fuzzy
1428
- #| msgid "Gallery is empty."
1429
- msgid "Gallery role"
1430
- msgstr "  معرض فارغة"
1431
-
1432
- #: admin/views/Options.php:293
1433
- msgid "Only author can change a gallery."
1434
  msgstr ""
1435
 
1436
- #: admin/views/Options.php:299
1437
- msgid "Gallery group role"
 
 
 
1438
  msgstr ""
1439
 
1440
- #: admin/views/Options.php:304
1441
- msgid "Only author can change an gallery group."
1442
  msgstr ""
1443
 
1444
- #: admin/views/Options.php:310
1445
- msgid "Image role"
1446
  msgstr ""
1447
 
1448
- #: admin/views/Options.php:315
1449
- msgid "Only author can change an image."
1450
- msgstr ""
 
 
1451
 
1452
- #: admin/views/Options.php:321 admin/views/Options.php:324
1453
- #: photo-gallery.php:283
1454
- msgid "Generate Shortcode"
 
1455
  msgstr ""
1456
 
1457
- #: admin/views/Options.php:327
1458
- msgid "Generate or edit a shortcode."
1459
  msgstr ""
1460
 
1461
- #: admin/views/Options.php:335 photo-gallery.php:282
1462
- msgid "Uninstall"
1463
  msgstr ""
1464
 
1465
- #: admin/views/Options.php:350
1466
- msgid "Open in a new window"
 
 
 
 
 
 
 
1467
  msgstr ""
1468
 
1469
- #: admin/views/Options.php:359
1470
- msgid "Number of image columns"
1471
  msgstr ""
1472
 
1473
- #: admin/views/Options.php:367 admin/views/Options.php:599
1474
- #: admin/views/Shortcode.php:409 admin/views/Shortcode.php:666
1475
- #: admin/views/Shortcode.php:717 admin/views/Shortcode.php:761
1476
- #: admin/views/Shortcode.php:805
1477
- msgid "Images per page"
1478
  msgstr ""
1479
 
1480
- #: admin/views/Options.php:375
1481
- msgid "Frontend thumbnail dimensions"
1482
  msgstr ""
1483
 
1484
- #: admin/views/Options.php:380
1485
- msgid ""
1486
- "The default size of the thumbnail which will be displayed in the website."
1487
  msgstr ""
1488
 
1489
- #: admin/views/Options.php:387
1490
- msgid "Show image title"
1491
  msgstr ""
1492
 
1493
- #: admin/views/Options.php:389 admin/views/Options.php:402
1494
- #: admin/views/Options.php:1030 admin/views/Shortcode.php:431
1495
- #: admin/views/Shortcode.php:872 admin/views/Shortcode.php:1003
1496
- #: admin/views/Shortcode.php:1052 admin/views/Shortcode.php:1101
1497
- #, fuzzy
1498
- #| msgid "Show info"
1499
- msgid "Show on hover"
1500
- msgstr "تظهر المعلومات"
1501
 
1502
- #: admin/views/Options.php:390 admin/views/Options.php:403
1503
- #: admin/views/Options.php:1031 admin/views/Shortcode.php:433
1504
- #: admin/views/Shortcode.php:873 admin/views/Shortcode.php:1004
1505
- #: admin/views/Shortcode.php:1053 admin/views/Shortcode.php:1102
1506
- msgid "Always show"
1507
  msgstr ""
1508
 
1509
- #: admin/views/Options.php:391 admin/views/Options.php:404
1510
- #: admin/views/Options.php:1032 admin/views/Shortcode.php:435
1511
- #: admin/views/Shortcode.php:874 admin/views/Shortcode.php:1005
1512
- #: admin/views/Shortcode.php:1054 admin/views/Shortcode.php:1103
1513
- msgid "Don't show"
1514
  msgstr ""
1515
 
1516
- #: admin/views/Options.php:400
1517
  #, fuzzy
1518
  #| msgid "Show comments"
1519
- msgid "Show ecommerce icon"
1520
  msgstr "تظهر التعليقات"
1521
 
1522
- #: admin/views/Options.php:413
1523
- msgid "Enable image pagination"
 
1524
  msgstr ""
1525
 
1526
- #: admin/views/Options.php:422
1527
- msgid "Show gallery name"
1528
- msgstr ""
 
 
1529
 
1530
- #: admin/views/Options.php:431 admin/views/Shortcode.php:864
1531
- msgid "Show gallery description"
 
 
1532
  msgstr ""
1533
 
1534
- #: admin/views/Options.php:440
1535
- msgid "Play icon over the video thumbnail"
1536
  msgstr ""
1537
 
1538
- #: admin/views/Options.php:464 admin/views/Options.php:513
1539
- #: admin/views/Shortcode.php:349 admin/views/Shortcode.php:364
1540
- #: admin/views/Shortcode.php:1024 admin/views/Shortcode.php:1073
1541
- msgid "Vertical"
1542
  msgstr ""
1543
 
1544
- #: admin/views/Options.php:465 admin/views/Options.php:514
1545
- #: admin/views/Shortcode.php:354 admin/views/Shortcode.php:369
1546
- #: admin/views/Shortcode.php:1029 admin/views/Shortcode.php:1078
1547
- msgid "Horizontal"
1548
  msgstr ""
1549
 
1550
- #: admin/views/Options.php:474
1551
- msgid "Show description in Vertical Masonry view"
 
 
1552
  msgstr ""
1553
 
1554
- #: admin/views/Options.php:499 admin/views/Shortcode.php:382
1555
- #: admin/views/Shortcode.php:1042 admin/views/Shortcode.php:1091
1556
- msgid "Total width of mosaic"
1557
  msgstr ""
1558
 
1559
- #: admin/views/Options.php:503 admin/views/Options.php:593
1560
- #: admin/views/Options.php:615 admin/views/Options.php:626
1561
- msgid "Width of mosaic as a percentage of container's width."
 
1562
  msgstr ""
1563
 
1564
- #: admin/views/Options.php:521 admin/views/Shortcode.php:374
1565
- #: admin/views/Shortcode.php:1034 admin/views/Shortcode.php:1083
1566
- msgid "Resizable mosaic"
1567
  msgstr ""
1568
 
1569
- #: admin/views/Options.php:546 admin/views/Options.php:589
1570
- #: admin/views/Shortcode.php:549 admin/views/Shortcode.php:572
1571
- msgid "Image width"
 
1572
  msgstr ""
1573
 
1574
- #: admin/views/Options.php:556 admin/views/Options.php:610
1575
- #: admin/views/Options.php:757 admin/views/Options.php:920
1576
- #: admin/views/Shortcode.php:558 admin/views/Shortcode.php:581
1577
- msgid "Enable image title"
1578
  msgstr ""
1579
 
1580
- #: admin/views/Options.php:565 admin/views/Options.php:621
1581
- #: admin/views/Options.php:803 admin/views/Shortcode.php:565
1582
- #: admin/views/Shortcode.php:588
1583
- msgid "Enable image description"
1584
  msgstr ""
1585
 
1586
- #: admin/views/Options.php:632 admin/views/Options.php:1005
1587
- #: admin/views/Shortcode.php:418 admin/views/Shortcode.php:675
1588
- #: admin/views/Shortcode.php:726 admin/views/Shortcode.php:770
1589
- #: admin/views/Shortcode.php:814
1590
- msgid "Enable pagination"
1591
  msgstr ""
1592
 
1593
- #: admin/views/Options.php:657
1594
- msgid "Slideshow effect"
 
 
 
1595
  msgstr ""
1596
 
1597
- #: admin/views/Options.php:664 admin/views/Options.php:1108
1598
- #: admin/views/WidgetSlideshow.php:106
1599
- msgid "This effect is disabled in free version."
1600
  msgstr ""
1601
 
1602
- #: admin/views/Options.php:675 admin/views/Options.php:1119
1603
- #: admin/views/Shortcode.php:290 admin/views/Shortcode.php:1171
1604
- msgid "Effect duration"
1605
  msgstr ""
1606
 
1607
- #: admin/views/Options.php:683 admin/views/Options.php:872
1608
- #: admin/views/Options.php:1136 admin/views/Shortcode.php:299
1609
- #: admin/views/Shortcode.php:699 admin/views/Shortcode.php:1187
1610
- msgid "Time interval"
1611
  msgstr ""
1612
 
1613
- #: admin/views/Options.php:691 admin/views/Shortcode.php:308
1614
- msgid "Slideshow dimensions"
 
 
 
 
 
 
1615
  msgstr ""
1616
 
1617
- #: admin/views/Options.php:700 admin/views/Options.php:930
1618
- msgid "Enable autoplay"
1619
  msgstr ""
1620
 
1621
- #: admin/views/Options.php:709
1622
- msgid "Enable shuffle"
 
 
1623
  msgstr ""
1624
 
1625
- #: admin/views/Options.php:718 admin/views/Options.php:1173
1626
- #: admin/views/Shortcode.php:643 admin/views/Shortcode.php:1221
1627
- msgid "Enable control buttons"
1628
  msgstr ""
1629
 
1630
- #: admin/views/Options.php:727 admin/views/Options.php:1247
1631
- msgid "Show Next / Previous buttons"
 
 
1632
  msgstr ""
1633
 
1634
- #: admin/views/Options.php:729 admin/views/Options.php:1249
1635
- msgid "On hover"
1636
  msgstr ""
1637
 
1638
- #: admin/views/Options.php:730 admin/views/Options.php:1250
1639
- msgid "Always"
 
 
1640
  msgstr ""
1641
 
1642
- #: admin/views/Options.php:738 admin/views/Shortcode.php:650
1643
- msgid "Enable slideshow filmstrip"
1644
- msgstr ""
1645
-
1646
- #: admin/views/Options.php:748
1647
- msgid "Slideshow filmstrip size"
1648
- msgstr ""
1649
-
1650
- #: admin/views/Options.php:766
1651
- msgid "Title position"
1652
- msgstr ""
1653
-
1654
- #: admin/views/Options.php:788
1655
- msgid "Image title position on slideshow"
1656
  msgstr ""
1657
 
1658
- #: admin/views/Options.php:793 admin/views/Shortcode.php:918
1659
- msgid "Full width title"
 
 
1660
  msgstr ""
1661
 
1662
- #: admin/views/Options.php:798 admin/views/Shortcode.php:921
1663
- msgid "Display image title based on the slideshow dimensions."
1664
  msgstr ""
1665
 
1666
- #: admin/views/Options.php:812
1667
- msgid "Description position"
1668
  msgstr ""
1669
 
1670
- #: admin/views/Options.php:834
1671
- msgid "Image description position on slideshow"
1672
  msgstr ""
1673
 
1674
- #: admin/views/Options.php:839
1675
- msgid "Enable slideshow Music"
 
 
1676
  msgstr ""
1677
 
1678
- #: admin/views/Options.php:848 admin/views/Shortcode.php:965
1679
- msgid "Music url"
1680
- msgstr ""
 
 
1681
 
1682
- #: admin/views/Options.php:852
1683
- msgid "Only"
 
 
1684
  msgstr ""
1685
 
1686
- #: admin/views/Options.php:852
1687
- msgid "formats are supported."
1688
- msgstr ""
 
 
1689
 
1690
- #: admin/views/Options.php:881
1691
- msgid "Max. number of images"
 
 
1692
  msgstr ""
1693
 
1694
- #: admin/views/Options.php:890 admin/views/Shortcode.php:336
1695
- msgid "Carousel image ratio"
1696
  msgstr ""
1697
 
1698
- #: admin/views/Options.php:909 admin/views/Shortcode.php:595
1699
- msgid "Fixed width"
 
 
1700
  msgstr ""
1701
 
1702
- #: admin/views/Options.php:940 admin/views/Shortcode.php:981
1703
- msgid "Container fit"
1704
  msgstr ""
1705
 
1706
- #: admin/views/Options.php:950 admin/views/Shortcode.php:988
1707
- msgid "Next/Previous buttons"
1708
  msgstr ""
1709
 
1710
- #: admin/views/Options.php:960 admin/views/Shortcode.php:995
1711
- msgid "Play/Pause button"
 
 
1712
  msgstr ""
1713
 
1714
- #: admin/views/Options.php:980
1715
- msgid "Show gallery group/gallery name"
1716
  msgstr ""
1717
 
1718
- #: admin/views/Options.php:989
1719
- msgid "Number of gallery group columns"
1720
  msgstr ""
1721
 
1722
- #: admin/views/Options.php:997
1723
- #, fuzzy
1724
- #| msgid "Gallery is empty."
1725
- msgid "Gallery groups per page"
1726
- msgstr "  معرض فارغة"
1727
-
1728
- #: admin/views/Options.php:1014
1729
- #, fuzzy
1730
- #| msgid "Gallery is empty."
1731
- msgid "Gallery group view type"
1732
- msgstr "  معرض فارغة"
1733
-
1734
- #: admin/views/Options.php:1020
1735
  #, fuzzy
1736
- #| msgid "There are no images in this gallery."
1737
- msgid "The gallery images view type in the gallery group."
1738
- msgstr "ا توجد صور في هذا الألبوم"
1739
 
1740
- #: admin/views/Options.php:1028
 
1741
  #, fuzzy
1742
- #| msgid "Show rating"
1743
- msgid "Show title"
1744
- msgstr "تظهر التصنيف"
1745
 
1746
- #: admin/views/Options.php:1038
1747
- msgid "Enable extended gallery group description"
 
1748
  msgstr ""
1749
 
1750
- #: admin/views/Options.php:1047
1751
- msgid "Gallery group thumbnail dimensions:"
1752
  msgstr ""
1753
 
1754
- #: admin/views/Options.php:1056
1755
- msgid "Extended gallery group height:"
1756
  msgstr ""
1757
 
1758
- #: admin/views/Options.php:1072 admin/views/Shortcode.php:1120
1759
- msgid "Image click action"
1760
  msgstr ""
1761
 
1762
- #: admin/views/Options.php:1074 admin/views/Shortcode.php:1121
1763
- msgid "Open lightbox"
1764
  msgstr ""
1765
 
1766
- #: admin/views/Options.php:1075 admin/views/Shortcode.php:1122
1767
- msgid "Redirect to url"
1768
  msgstr ""
1769
 
1770
- #: admin/views/Options.php:1076 admin/views/Shortcode.php:1123
1771
- msgid "Do Nothing"
1772
  msgstr ""
1773
 
1774
- #: admin/views/Options.php:1082 admin/views/Shortcode.php:1138
1775
- msgid "Full width lightbox"
1776
  msgstr ""
1777
 
1778
- #: admin/views/Options.php:1087 admin/views/Shortcode.php:1141
1779
- msgid "Enable full width feature for the lightbox."
1780
  msgstr ""
1781
 
1782
- #: admin/views/Options.php:1092 admin/views/Shortcode.php:1146
1783
- msgid "Lightbox dimensions"
1784
  msgstr ""
1785
 
1786
- #: admin/views/Options.php:1101 admin/views/Shortcode.php:1156
1787
- msgid "Lightbox effect"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1788
  msgstr ""
1789
 
1790
- #: admin/views/Options.php:1127 admin/views/Shortcode.php:1180
1791
- msgid "Lightbox autoplay"
1792
- msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1793
 
1794
- #: admin/views/Options.php:1144
1795
- msgid "Enable filmstrip"
1796
  msgstr ""
1797
 
1798
- #: admin/views/Options.php:1154 admin/views/Shortcode.php:1204
1799
- msgid "Filmstrip size"
1800
  msgstr ""
1801
 
1802
- #: admin/views/Options.php:1163 admin/views/Shortcode.php:1214
1803
- msgid "Display hit counter"
1804
  msgstr ""
1805
 
1806
- #: admin/views/Options.php:1208 admin/views/Shortcode.php:1230
1807
- #, fuzzy
1808
- #| msgid "Exit Fullscreen"
1809
- msgid "Enable fullscreen"
1810
- msgstr "خروج ملء الشاشة"
1811
 
1812
- #: admin/views/Options.php:1217 admin/views/Shortcode.php:1238
1813
- #, fuzzy
1814
- #| msgid "Hide info"
1815
- msgid "Enable info"
1816
- msgstr "إخفاء المعلومات"
1817
 
1818
- #: admin/views/Options.php:1226 admin/views/Shortcode.php:1246
1819
- msgid "Display info by default"
1820
  msgstr ""
1821
 
1822
- #: admin/views/Options.php:1235 admin/views/Shortcode.php:1253
1823
- msgid "Full width info"
1824
  msgstr ""
1825
 
1826
- #: admin/views/Options.php:1240 admin/views/Shortcode.php:1256
1827
- msgid "Display image information based on the lightbox dimensions."
1828
  msgstr ""
1829
 
1830
- #: admin/views/Options.php:1256
1831
- msgid "Enable Email for comments"
1832
  msgstr ""
1833
 
1834
- #: admin/views/Options.php:1266
1835
- msgid "Enable Captcha for comments"
1836
  msgstr ""
1837
 
1838
- #: admin/views/Options.php:1276
1839
- msgid "Enable original image display button"
 
1840
  msgstr ""
1841
 
1842
- #: admin/views/Options.php:1285
1843
- msgid "Enable download button"
1844
  msgstr ""
1845
 
1846
- #: admin/views/Options.php:1294
1847
- #, fuzzy
1848
- #| msgid "Show comments"
1849
- msgid "Show images count"
1850
- msgstr "تظهر التعليقات"
1851
 
1852
- #: admin/views/Options.php:1303
1853
- msgid "Enable loop"
1854
  msgstr ""
1855
 
1856
- #: admin/views/Options.php:1312
1857
- msgid "Enable"
1858
  msgstr ""
1859
 
1860
- #: admin/views/Options.php:1322
1861
- msgid "profile id"
1862
  msgstr ""
1863
 
1864
- #: admin/views/Options.php:1326
1865
- #, php-format
1866
- msgid "Create an account %s."
1867
  msgstr ""
1868
 
1869
- #: admin/views/Options.php:1326 admin/views/Shortcode.php:260
1870
- msgid "here"
1871
  msgstr ""
1872
 
1873
- #: admin/views/Options.php:1332 admin/views/Shortcode.php:1261
1874
- #, fuzzy
1875
- #| msgid "Hide rating"
1876
- msgid "Enable rating"
1877
- msgstr "اخفاء تصنيف"
1878
 
1879
- #: admin/views/Options.php:1342 admin/views/Shortcode.php:1269
1880
- #, fuzzy
1881
- #| msgid "Show comments"
1882
- msgid "Enable comments"
1883
- msgstr "تظهر التعليقات"
1884
 
1885
- #: admin/views/Options.php:1356
1886
- #, fuzzy
1887
- #| msgid "Your comment is awaiting moderation"
1888
- msgid "Enable comments moderation"
1889
- msgstr "تعليقك ينتظر الاعتدال"
1890
 
1891
- #: admin/views/Options.php:1366 admin/views/Shortcode.php:1281
1892
- msgid "Enable Facebook button"
1893
  msgstr ""
1894
 
1895
- #: admin/views/Options.php:1376 admin/views/Shortcode.php:1289
1896
- msgid "Enable Twitter button"
1897
  msgstr ""
1898
 
1899
- #: admin/views/Options.php:1386 admin/views/Shortcode.php:1297
1900
- msgid "Enable Google+ button"
 
1901
  msgstr ""
1902
 
1903
- #: admin/views/Options.php:1396 admin/views/Shortcode.php:1305
1904
- msgid "Enable Pinterest button"
1905
  msgstr ""
1906
 
1907
- #: admin/views/Options.php:1406 admin/views/Shortcode.php:1313
1908
- msgid "Enable Tumblr button"
1909
  msgstr ""
1910
 
1911
- #: admin/views/Options.php:1419 admin/views/Shortcode.php:1324
1912
- msgid "Enable Ecommerce button"
1913
  msgstr ""
1914
 
1915
- #: admin/views/Options.php:1438
1916
- #, fuzzy
1917
- #| msgid "Photo gallery plugin autoupdate interval."
1918
- msgid "Gallery autoupdate interval"
1919
- msgstr "معرض الصور المساعد الفاصل الزمني للتحديث التلقائي."
1920
 
1921
- #: admin/views/Options.php:1441
1922
- msgid "hour"
1923
  msgstr ""
1924
 
1925
- #: admin/views/Options.php:1443
1926
- msgid "min"
1927
  msgstr ""
1928
 
1929
- #: admin/views/Options.php:1445
1930
- msgid "Minimum 1 min."
 
1931
  msgstr ""
1932
 
1933
- #: admin/views/Options.php:1451
1934
- msgid "Instagram"
 
 
 
1935
  msgstr ""
1936
 
1937
- #: admin/views/Options.php:1459
1938
- msgid "Sign in with Instagram"
 
 
1939
  msgstr ""
1940
 
1941
- #: admin/views/Options.php:1464
 
1942
  msgid ""
1943
- "Are you sure you want to reset access token, after resetting it you will "
1944
- "need to log in with Instagram again for using plugin"
1945
  msgstr ""
1946
 
1947
- #: admin/views/Options.php:1466
1948
- msgid "Sign out with Instagram"
 
 
 
1949
  msgstr ""
1950
 
1951
- #: admin/views/Options.php:1489 photo-gallery.php:1284
1952
- msgid "Watermark"
 
 
 
1953
  msgstr ""
1954
 
1955
- #: admin/views/Options.php:1494
1956
- msgid "Watermark type"
 
 
 
 
 
 
 
 
 
 
 
 
1957
  msgstr ""
1958
 
1959
- #: admin/views/Options.php:1499 admin/views/Options.php:1643
1960
- #: admin/views/Shortcode.php:1388 admin/views/Themes.php:4578
1961
- #: admin/views/WidgetTags.php:85
1962
- msgid "Text"
 
1963
  msgstr ""
1964
 
1965
- #: admin/views/Options.php:1507
1966
- msgid "Watermark url"
 
 
 
 
 
1967
  msgstr ""
1968
 
1969
- #: admin/views/Options.php:1518 admin/views/Options.php:1664
1970
- msgid "Add Image"
 
 
 
 
 
1971
  msgstr ""
1972
 
1973
- #: admin/views/Options.php:1521
1974
- msgid "Only .png format is supported."
 
 
 
 
 
1975
  msgstr ""
1976
 
1977
- #: admin/views/Options.php:1526
1978
- msgid "Watermark text"
 
 
 
1979
  msgstr ""
1980
 
1981
- #: admin/views/Options.php:1534
1982
- msgid "Watermark size"
 
 
 
 
1983
  msgstr ""
1984
 
1985
- #: admin/views/Options.php:1538
1986
- msgid "Enter size of watermark in percents according to image."
 
1987
  msgstr ""
1988
 
1989
- #: admin/views/Options.php:1543
1990
- msgid "Watermark font size"
 
1991
  msgstr ""
1992
 
1993
- #: admin/views/Options.php:1551
1994
- msgid "Watermark font style"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1995
  msgstr ""
1996
 
1997
- #: admin/views/Options.php:1579
1998
- msgid "Watermark color"
 
 
 
 
 
 
1999
  msgstr ""
2000
 
2001
- #: admin/views/Options.php:1587
2002
- msgid "Watermark opacity"
 
 
 
 
 
 
2003
  msgstr ""
2004
 
2005
- #: admin/views/Options.php:1591
2006
- msgid "Opacity value must be in the range of 0 to 100."
 
 
 
2007
  msgstr ""
2008
 
2009
- #: admin/views/Options.php:1596
2010
- msgid "Watermark position"
 
 
 
 
 
2011
  msgstr ""
2012
 
2013
- #: admin/views/Options.php:1619
2014
- msgid "Set Watermark"
 
 
 
2015
  msgstr ""
2016
 
2017
- #: admin/views/Options.php:1620
2018
- msgid "Reset watermark"
 
 
 
2019
  msgstr ""
2020
 
2021
- #: admin/views/Options.php:1622
2022
- msgid "Reset Watermark"
 
 
 
2023
  msgstr ""
2024
 
2025
- #: admin/views/Options.php:1633 photo-gallery.php:1288 photo-gallery.php:1403
2026
- msgid "Advertisement"
 
 
 
 
 
2027
  msgstr ""
2028
 
2029
- #: admin/views/Options.php:1638
2030
- msgid "Advertisement type"
 
 
 
 
 
 
 
 
 
 
 
 
 
2031
  msgstr ""
2032
 
2033
- #: admin/views/Options.php:1651 admin/views/Shortcode.php:1402
2034
- msgid "Advertisement url"
 
 
2035
  msgstr ""
2036
 
2037
- #: admin/views/Options.php:1667
 
 
2038
  msgid ""
2039
- "Enter absolute image file url or add file from Options page. (.jpg,.jpeg,."
2040
- "png,.gif formats are supported)"
2041
  msgstr ""
2042
 
2043
- #: admin/views/Options.php:1672 admin/views/Shortcode.php:1409
2044
- msgid "Advertisement text"
 
 
2045
  msgstr ""
2046
 
2047
- #: admin/views/Options.php:1680 admin/views/Shortcode.php:1395
2048
- msgid "Advertisement link"
 
 
2049
  msgstr ""
2050
 
2051
- #: admin/views/Options.php:1684
2052
- msgid "Enter a URL to open when the advertisement banner is clicked."
 
 
 
 
2053
  msgstr ""
2054
 
2055
- #: admin/views/Options.php:1689 admin/views/Shortcode.php:1446
2056
- msgid "Advertisement dimensions"
2057
- msgstr ""
 
 
 
 
 
 
 
 
2058
 
2059
- #: admin/views/Options.php:1694 admin/views/Shortcode.php:1451
2060
- msgid "Maximum values for watermark image width and height."
 
 
 
 
2061
  msgstr ""
2062
 
2063
- #: admin/views/Options.php:1699 admin/views/Shortcode.php:1438
2064
- msgid "Advertisement font size"
 
 
 
 
 
 
2065
  msgstr ""
2066
 
2067
- #: admin/views/Options.php:1707 admin/views/Shortcode.php:1417
2068
- msgid "Advertisement font style"
 
 
2069
  msgstr ""
2070
 
2071
- #: admin/views/Options.php:1722 admin/views/Shortcode.php:1431
2072
- #: admin/views/Themes.php:386 admin/views/Themes.php:449
2073
- #: admin/views/Themes.php:664 admin/views/Themes.php:698
2074
- #: admin/views/Themes.php:911 admin/views/Themes.php:973
2075
- #: admin/views/Themes.php:1357 admin/views/Themes.php:1418
2076
- #: admin/views/Themes.php:1643 admin/views/Themes.php:1731
2077
- #: admin/views/Themes.php:1974 admin/views/Themes.php:2036
2078
- #: admin/views/Themes.php:2091 admin/views/Themes.php:2427
2079
- #: admin/views/Themes.php:2570 admin/views/Themes.php:2651
2080
- #: admin/views/Themes.php:2711 admin/views/Themes.php:2918
2081
- #: admin/views/Themes.php:2973 admin/views/Themes.php:3028
2082
- #: admin/views/Themes.php:3164 admin/views/Themes.php:3333
2083
- #: admin/views/Themes.php:3975 admin/views/Themes.php:4117
2084
- #: admin/views/Themes.php:4166 admin/views/Themes.php:4242
2085
- #: admin/views/Themes.php:4426 admin/views/Themes.php:4811
2086
- msgid "Google fonts"
2087
  msgstr ""
2088
 
2089
- #: admin/views/Options.php:1724 admin/views/Shortcode.php:1433
2090
- #: admin/views/Themes.php:76 admin/views/Themes.php:107
2091
- #: admin/views/Themes.php:388 admin/views/Themes.php:451
2092
- #: admin/views/Themes.php:666 admin/views/Themes.php:700
2093
- #: admin/views/Themes.php:913 admin/views/Themes.php:975
2094
- #: admin/views/Themes.php:1359 admin/views/Themes.php:1420
2095
- #: admin/views/Themes.php:1645 admin/views/Themes.php:1733
2096
- #: admin/views/Themes.php:1976 admin/views/Themes.php:2038
2097
- #: admin/views/Themes.php:2093 admin/views/Themes.php:2429
2098
- #: admin/views/Themes.php:2572 admin/views/Themes.php:2653
2099
- #: admin/views/Themes.php:2713 admin/views/Themes.php:2920
2100
- #: admin/views/Themes.php:2975 admin/views/Themes.php:3030
2101
- #: admin/views/Themes.php:3166 admin/views/Themes.php:3335
2102
- #: admin/views/Themes.php:3977 admin/views/Themes.php:4119
2103
- #: admin/views/Themes.php:4168 admin/views/Themes.php:4244
2104
- #: admin/views/Themes.php:4428 admin/views/Themes.php:4813
2105
- #: framework/WDWLibrary.php:888
2106
- msgid "Default"
2107
- msgstr "افتراضي"
2108
 
2109
- #: admin/views/Options.php:1730 admin/views/Shortcode.php:1456
2110
- msgid "Advertisement color"
 
 
 
 
2111
  msgstr ""
2112
 
2113
- #: admin/views/Options.php:1738 admin/views/Shortcode.php:1464
2114
- msgid "Advertisement opacity"
 
 
 
 
 
 
2115
  msgstr ""
2116
 
2117
- #: admin/views/Options.php:1742 admin/views/Shortcode.php:1468
2118
- #: admin/views/Themes.php:309 admin/views/Themes.php:322
2119
- #: admin/views/Themes.php:565 admin/views/Themes.php:578
2120
- #: admin/views/Themes.php:813 admin/views/Themes.php:826
2121
- #: admin/views/Themes.php:1063 admin/views/Themes.php:1222
2122
- #: admin/views/Themes.php:1312 admin/views/Themes.php:1373
2123
- #: admin/views/Themes.php:1455 admin/views/Themes.php:1572
2124
- #: admin/views/Themes.php:1897 admin/views/Themes.php:1910
2125
- #: admin/views/Themes.php:2232 admin/views/Themes.php:2272
2126
- #: admin/views/Themes.php:2356 admin/views/Themes.php:2850
2127
- #: admin/views/Themes.php:2863 admin/views/Themes.php:3100
2128
- #: admin/views/Themes.php:3287 admin/views/Themes.php:3405
2129
- #: admin/views/Themes.php:3418 admin/views/Themes.php:3465
2130
- #: admin/views/Themes.php:3492 admin/views/Themes.php:3781
2131
- #: admin/views/Themes.php:3903 admin/views/Themes.php:4045
2132
- #: admin/views/Themes.php:4513 admin/views/Themes.php:4608
2133
- #: admin/views/Themes.php:4633 admin/views/Themes.php:4772
2134
- msgid "Value must be between 0 to 100."
2135
  msgstr ""
2136
 
2137
- #: admin/views/Options.php:1747 admin/views/Shortcode.php:1473
2138
- msgid "Advertisement position"
 
 
 
 
 
 
 
 
 
 
2139
  msgstr ""
2140
 
2141
- #: admin/views/Ratings.php:40 admin/views/Ratings.php:59
2142
- #: admin/views/Ratings.php:91
2143
- msgid "IP"
2144
  msgstr ""
2145
 
2146
- #: admin/views/Ratings.php:58 admin/views/Ratings.php:90
2147
- msgid "Rating"
 
2148
  msgstr ""
2149
 
2150
- #: admin/views/Ratings.php:60 admin/views/Ratings.php:92
2151
- #: admin/views/Shortcode.php:610
2152
- msgid "Date"
2153
  msgstr ""
2154
 
2155
- #: admin/views/Shortcode.php:129 admin/views/Shortcode.php:166
2156
- msgid "View type"
 
 
2157
  msgstr ""
2158
 
2159
- #: admin/views/Shortcode.php:183
2160
- msgid "This view is not available in free version."
 
 
 
 
 
 
2161
  msgstr ""
2162
 
2163
- #: admin/views/Shortcode.php:195
2164
- msgid "All Galleries"
 
 
 
 
 
 
 
 
2165
  msgstr ""
2166
 
2167
- #: admin/views/Shortcode.php:207
2168
- msgid "Album"
 
2169
  msgstr ""
2170
 
2171
- #: admin/views/Shortcode.php:210
2172
- msgid "Select Album"
 
2173
  msgstr ""
2174
 
2175
- #: admin/views/Shortcode.php:219
2176
- msgid "The selected album expanded content will be displayed."
 
2177
  msgstr ""
2178
 
2179
- #: admin/views/Shortcode.php:225
2180
- msgid "Tag"
 
 
 
2181
  msgstr ""
2182
 
2183
- #: admin/views/Shortcode.php:228
2184
- msgid "All Tags"
 
2185
  msgstr ""
2186
 
2187
- #: admin/views/Shortcode.php:242
2188
- msgid "Theme"
 
 
2189
  msgstr ""
2190
 
2191
- #: admin/views/Shortcode.php:259
2192
- msgid "Use default options"
2193
  msgstr ""
2194
 
2195
- #: admin/views/Shortcode.php:260
2196
- #, php-format
2197
- msgid "You can change the default options %s."
2198
  msgstr ""
2199
 
2200
- #: admin/views/Shortcode.php:276
2201
- msgid "Slideshow Effect"
2202
  msgstr ""
2203
 
2204
- #: admin/views/Shortcode.php:294 admin/views/Shortcode.php:303
2205
- #: admin/views/Shortcode.php:703 admin/views/Shortcode.php:1175
2206
- #: admin/views/Shortcode.php:1191
2207
- msgid "Interval between two images."
2208
  msgstr ""
2209
 
2210
- #: admin/views/Shortcode.php:313
2211
- msgid "Maximum values for slideshow width and height."
2212
  msgstr ""
2213
 
2214
- #: admin/views/Shortcode.php:318
2215
- msgid "Max. number of carousel images"
 
2216
  msgstr ""
2217
 
2218
- #: admin/views/Shortcode.php:326
2219
- msgid "Carousel dimensions"
 
2220
  msgstr ""
2221
 
2222
- #: admin/views/Shortcode.php:331 admin/views/Shortcode.php:599
2223
- msgid "Maximum values for carousel width and height."
2224
  msgstr ""
2225
 
2226
- #: admin/views/Shortcode.php:346 admin/views/Shortcode.php:361
2227
- #: admin/views/Shortcode.php:1021
2228
- msgid "Image thumbnail width:"
2229
  msgstr ""
2230
 
2231
- #: admin/views/Shortcode.php:350 admin/views/Shortcode.php:365
2232
- #: admin/views/Shortcode.php:1025
2233
- msgid "Max. number of image columns: "
2234
  msgstr ""
2235
 
2236
- #: admin/views/Shortcode.php:377 admin/views/Shortcode.php:1037
2237
- #: admin/views/Shortcode.php:1086
2238
- msgid ""
2239
- "Mosaic thumbnails do not have fixed size, but are proportional to the width "
2240
- "of the parent container. This option keeps thumbs to look nice when viewed "
2241
- "with very large or very small screen. Prevents zooming of thumbs."
2242
  msgstr ""
2243
 
2244
- #: admin/views/Shortcode.php:386 admin/views/Shortcode.php:1046
2245
- #: admin/views/Shortcode.php:1095
2246
- msgid "Percentage of container's width."
2247
  msgstr ""
2248
 
2249
- #: admin/views/Shortcode.php:391 admin/views/Shortcode.php:539
2250
- msgid "Image Thumbnail dimensions"
2251
  msgstr ""
2252
 
2253
- #: admin/views/Shortcode.php:396
2254
- msgid "Maximum values for thumbnail dimension."
2255
  msgstr ""
2256
 
2257
- #: admin/views/Shortcode.php:401 admin/views/Shortcode.php:461
2258
- #: admin/views/Shortcode.php:496 admin/views/Shortcode.php:531
2259
- msgid "Max. number of image columns"
2260
  msgstr ""
2261
 
2262
- #: admin/views/Shortcode.php:413 admin/views/Shortcode.php:670
2263
- #: admin/views/Shortcode.php:721 admin/views/Shortcode.php:765
2264
- #: admin/views/Shortcode.php:809
2265
- msgid ""
2266
- "If you want to display all images you should leave it blank or insert 0."
2267
  msgstr ""
2268
 
2269
- #: admin/views/Shortcode.php:421 admin/views/Shortcode.php:729
2270
- #: admin/views/Shortcode.php:773 admin/views/Shortcode.php:817
2271
- #, fuzzy
2272
- #| msgid "Load More..."
2273
- msgid "Load More"
2274
- msgstr "حمل أكثر..."
2275
-
2276
- #: admin/views/Shortcode.php:422 admin/views/Shortcode.php:679
2277
- #: admin/views/Shortcode.php:730 admin/views/Shortcode.php:774
2278
- #: admin/views/Shortcode.php:818
2279
- msgid "Scroll Load"
2280
  msgstr ""
2281
 
2282
- #: admin/views/Shortcode.php:430
2283
- msgid "Ecommerce icon"
2284
  msgstr ""
2285
 
2286
- #: admin/views/Shortcode.php:443 admin/views/Shortcode.php:479
2287
- msgid "Max. number of album columns"
 
 
2288
  msgstr ""
2289
 
2290
- #: admin/views/Shortcode.php:451
2291
- msgid "Album Thumbnail dimensions"
2292
  msgstr ""
2293
 
2294
- #: admin/views/Shortcode.php:456 admin/views/Shortcode.php:526
2295
- msgid "Maximum values for album thumb width and height."
 
 
2296
  msgstr ""
2297
 
2298
- #: admin/views/Shortcode.php:469
2299
- msgid "Image thumbnail dimensions"
2300
  msgstr ""
2301
 
2302
- #: admin/views/Shortcode.php:474 admin/views/Shortcode.php:544
2303
- msgid "Maximum values for thumbnail width and height."
 
 
2304
  msgstr ""
2305
 
2306
- #: admin/views/Shortcode.php:487
2307
- msgid "Album Thumbnail width"
2308
  msgstr ""
2309
 
2310
- #: admin/views/Shortcode.php:491
2311
- msgid "Maximum value for album thumbnail width."
2312
  msgstr ""
2313
 
2314
- #: admin/views/Shortcode.php:504
2315
- msgid "Image thumbnail width"
2316
  msgstr ""
2317
 
2318
- #: admin/views/Shortcode.php:508
2319
- msgid "Maximum value for thumbnail width."
2320
  msgstr ""
2321
 
2322
- #: admin/views/Shortcode.php:513
2323
- msgid "Album row height"
2324
  msgstr ""
2325
 
2326
- #: admin/views/Shortcode.php:521
2327
- msgid "Album thumbnail dimensions"
 
 
 
 
 
 
 
2328
  msgstr ""
2329
 
2330
- #: admin/views/Shortcode.php:553 admin/views/Shortcode.php:576
2331
- msgid "Maximum value for image width."
2332
  msgstr ""
2333
 
2334
- #: admin/views/Shortcode.php:606
2335
- msgid "Sort images by"
2336
  msgstr ""
2337
 
2338
- #: admin/views/Shortcode.php:608
2339
- #, fuzzy
2340
- #| msgid "Order by: "
2341
- msgid "Order"
2342
- msgstr "ترتيب حسب"
2343
 
2344
- #: admin/views/Shortcode.php:621
2345
- msgid "Order images"
 
2346
  msgstr ""
2347
 
2348
- #: admin/views/Shortcode.php:622
2349
- msgid "Ascending"
2350
  msgstr ""
2351
 
2352
- #: admin/views/Shortcode.php:623
2353
- msgid "Descending"
 
 
2354
  msgstr ""
2355
 
2356
- #: admin/views/Shortcode.php:628 admin/views/Shortcode.php:684
2357
- #: admin/views/Shortcode.php:744 admin/views/Shortcode.php:788
2358
- #: admin/views/Shortcode.php:832
2359
- msgid "Images per load"
2360
  msgstr ""
2361
 
2362
- #: admin/views/Shortcode.php:636 admin/views/Shortcode.php:692
2363
- msgid "Enable Autoplay"
2364
  msgstr ""
2365
 
2366
- #: admin/views/Shortcode.php:653
2367
- msgid "Enable slideshow filmstrip view."
2368
  msgstr ""
2369
 
2370
- #: admin/views/Shortcode.php:658
2371
- msgid "Slideshow Filmstrip size"
2372
  msgstr ""
2373
 
2374
- #: admin/views/Shortcode.php:678
2375
- #, fuzzy
2376
- #| msgid "Load More..."
2377
- msgid "Load more"
2378
- msgstr "حمل أكثر..."
2379
 
2380
- #: admin/views/Shortcode.php:708 admin/views/Shortcode.php:752
2381
- #: admin/views/Shortcode.php:796
2382
- #, fuzzy
2383
- #| msgid "Album is empty."
2384
- msgid "Albums per page"
2385
- msgstr "  الألبوم فارغ"
2386
 
2387
- #: admin/views/Shortcode.php:712 admin/views/Shortcode.php:739
2388
- #: admin/views/Shortcode.php:756 admin/views/Shortcode.php:783
2389
- #: admin/views/Shortcode.php:800 admin/views/Shortcode.php:827
2390
- msgid ""
2391
- "If you want to display all albums you should leave it blank or insert 0."
2392
  msgstr ""
2393
 
2394
- #: admin/views/Shortcode.php:735 admin/views/Shortcode.php:779
2395
- #: admin/views/Shortcode.php:823
2396
- msgid "Albums per load"
2397
  msgstr ""
2398
 
2399
- #: admin/views/Shortcode.php:842
2400
- msgid "Show gallery title"
2401
  msgstr ""
2402
 
2403
- #: admin/views/Shortcode.php:849
2404
- msgid "Show album title"
2405
  msgstr ""
2406
 
2407
- #: admin/views/Shortcode.php:856
2408
- msgid "Enable album description"
2409
  msgstr ""
2410
 
2411
- #: admin/views/Shortcode.php:859
2412
  msgid ""
2413
- "If you disable description only the title of the album will be displayed."
 
2414
  msgstr ""
2415
 
2416
- #: admin/views/Shortcode.php:871 admin/views/Shortcode.php:1051
2417
- #: admin/views/Shortcode.php:1100
2418
- msgid "Image title"
2419
  msgstr ""
2420
 
2421
- #: admin/views/Shortcode.php:879
2422
- msgid "Enable Shuffle"
2423
  msgstr ""
2424
 
2425
- #: admin/views/Shortcode.php:886 admin/views/Shortcode.php:974
2426
- msgid "Enable Image Title"
2427
  msgstr ""
2428
 
2429
- #: admin/views/Shortcode.php:893
2430
- msgid "Title Position"
 
2431
  msgstr ""
2432
 
2433
- #: admin/views/Shortcode.php:913
2434
- msgid "Image title position on slideshow."
 
 
2435
  msgstr ""
2436
 
2437
- #: admin/views/Shortcode.php:926
2438
- msgid "Enable Image Description"
2439
  msgstr ""
2440
 
2441
- #: admin/views/Shortcode.php:933
2442
- msgid "Description Position"
 
 
2443
  msgstr ""
2444
 
2445
- #: admin/views/Shortcode.php:952
2446
- msgid "Image description position on slideshow."
2447
  msgstr ""
2448
 
2449
- #: admin/views/Shortcode.php:958
2450
- msgid "Enable Slideshow Music"
 
 
2451
  msgstr ""
2452
 
2453
- #: admin/views/Shortcode.php:969
2454
- msgid "Enter absolute audio file url or add file from Options page."
2455
  msgstr ""
2456
 
2457
- #: admin/views/Shortcode.php:1002
2458
- #, fuzzy
2459
- #| msgid "Album is empty."
2460
- msgid "Album title"
2461
- msgstr "  الألبوم فارغ"
2462
-
2463
- #: admin/views/Shortcode.php:1010 admin/views/Shortcode.php:1059
2464
- #, fuzzy
2465
- #| msgid "Album is empty."
2466
- msgid "Album view type"
2467
- msgstr "  الألبوم فارغ"
2468
-
2469
- #: admin/views/Shortcode.php:1014 admin/views/Shortcode.php:1063
2470
- msgid "The gallery images view type in the album."
2471
  msgstr ""
2472
 
2473
- #: admin/views/Shortcode.php:1070 admin/views/Shortcode.php:2910
2474
- msgid "Image thumbnail width: "
2475
  msgstr ""
2476
 
2477
- #: admin/views/Shortcode.php:1074 admin/views/Shortcode.php:2911
2478
- msgid "Max. number of image columns:"
 
 
2479
  msgstr ""
2480
 
2481
- #: admin/views/Shortcode.php:1128
2482
- msgid "Open in new window"
2483
  msgstr ""
2484
 
2485
- #: admin/views/Shortcode.php:1131
2486
- msgid "Open new window when redirecting."
 
2487
  msgstr ""
2488
 
2489
- #: admin/views/Shortcode.php:1151
2490
- msgid "Maximum values for lightbox width and height."
2491
- msgstr ""
 
 
 
2492
 
2493
- #: admin/views/Shortcode.php:1166
2494
- msgid "Lightbox slideshow effect."
 
 
 
2495
  msgstr ""
2496
 
2497
- #: admin/views/Shortcode.php:1196
2498
- msgid "Enable filmstrip in lightbox"
 
 
 
 
 
 
 
 
 
 
2499
  msgstr ""
2500
 
2501
- #: admin/views/Shortcode.php:1199
2502
- msgid "Enable filmstrip view for images."
 
 
 
 
 
 
 
 
2503
  msgstr ""
2504
 
2505
- #: admin/views/Shortcode.php:1224
2506
- msgid "Enable control buttons in lightbox."
 
 
 
2507
  msgstr ""
2508
 
2509
- #: admin/views/Shortcode.php:1233
2510
- msgid "Enable fullscreen view for images."
 
2511
  msgstr ""
2512
 
2513
- #: admin/views/Shortcode.php:1241
2514
- msgid "Enable title, description for images."
 
 
 
2515
  msgstr ""
2516
 
2517
- #: admin/views/Shortcode.php:1264
2518
- msgid "Enable rating for images."
 
 
2519
  msgstr ""
2520
 
2521
- #: admin/views/Shortcode.php:1272
2522
- msgid "Enable comments for images."
 
 
 
 
 
 
 
 
2523
  msgstr ""
2524
 
2525
- #: admin/views/Shortcode.php:1284
2526
- msgid "Enable Facebook share button for images."
 
 
 
 
 
 
2527
  msgstr ""
2528
 
2529
- #: admin/views/Shortcode.php:1292
2530
- msgid "Enable Twitter share button for images."
2531
  msgstr ""
2532
 
2533
- #: admin/views/Shortcode.php:1300
2534
- msgid "Enable Google+ share button for images."
2535
  msgstr ""
2536
 
2537
- #: admin/views/Shortcode.php:1308
2538
- msgid "Enable Pinterest share button for images."
2539
  msgstr ""
2540
 
2541
- #: admin/views/Shortcode.php:1316
2542
- msgid "Enable Tumblr share button for images."
2543
  msgstr ""
2544
 
2545
- #: admin/views/Shortcode.php:1327
2546
- msgid "Enable Ecommerce for images."
2547
  msgstr ""
2548
 
2549
- #: admin/views/Shortcode.php:1340
2550
- msgid "Toggle panel"
2551
  msgstr ""
2552
 
2553
- #: admin/views/Shortcode.php:1386
2554
- msgid "Advertisement type:"
2555
  msgstr ""
2556
 
2557
- #: admin/views/Shortcode.php:1397
2558
- msgid "Enter absolute url."
2559
  msgstr ""
2560
 
2561
- #: admin/views/Shortcode.php:1404
2562
- msgid "Enter absolute image file url or add file from Options page."
 
 
2563
  msgstr ""
2564
 
2565
- #: admin/views/Shortcode.php:1507
2566
- msgid "Insert into post"
2567
  msgstr ""
2568
 
2569
- #: admin/views/Shortcode.php:1532
2570
- msgid "New shortcode"
2571
  msgstr ""
2572
 
2573
- #: admin/views/Shortcode.php:1541 admin/views/Shortcode.php:1604
2574
- msgid "Generate"
2575
  msgstr ""
2576
 
2577
- #: admin/views/Shortcode.php:1546
2578
- msgid "Shortcode"
2579
  msgstr ""
2580
 
2581
- #: admin/views/Shortcode.php:1552
2582
- msgid "PHP function"
2583
  msgstr ""
2584
 
2585
- #: admin/views/Shortcode.php:1618
2586
- msgid "There is no shortcode with such ID!"
2587
  msgstr ""
2588
 
2589
- #: admin/views/Shortcode.php:2909
2590
- msgid "Image thumbnail dimensions:"
2591
  msgstr ""
2592
 
2593
- #: admin/views/Shortcode.php:2912
2594
- msgid "Image thumbnail height:"
 
 
2595
  msgstr ""
2596
 
2597
- #: admin/views/Shortcode.php:2913
2598
- msgid "Number of image rows:"
2599
  msgstr ""
2600
 
2601
- #: admin/views/Themes.php:18
2602
- msgid "You can't change theme parameters in free version."
2603
  msgstr ""
2604
 
2605
- #: admin/views/Themes.php:170
2606
- msgid "Theme Name"
2607
  msgstr ""
2608
 
2609
- #: admin/views/Themes.php:178
2610
- msgid "Reset to default theme"
2611
  msgstr ""
2612
 
2613
- #: admin/views/Themes.php:206 admin/views/Themes.php:1516
2614
- #: admin/views/Themes.php:1801 admin/views/Themes.php:2334
2615
- #: admin/views/Themes.php:3118 admin/views/Themes.php:4490
2616
- msgid "Margin:"
2617
  msgstr ""
2618
 
2619
- #: admin/views/Themes.php:212 admin/views/Themes.php:512
2620
- #: admin/views/Themes.php:761 admin/views/Themes.php:1523
2621
- #: admin/views/Themes.php:1794 admin/views/Themes.php:2341
2622
- #: admin/views/Themes.php:3125 admin/views/Themes.php:4497
2623
- msgid "Padding:"
2624
  msgstr ""
2625
 
2626
- #: admin/views/Themes.php:218 admin/views/Themes.php:518
2627
- #: admin/views/Themes.php:767 admin/views/Themes.php:1530
2628
- #: admin/views/Themes.php:1808 admin/views/Themes.php:2774
2629
- #: admin/views/Themes.php:3183 admin/views/Themes.php:4447
2630
- msgid "Border width:"
2631
  msgstr ""
2632
 
2633
- #: admin/views/Themes.php:224 admin/views/Themes.php:524
2634
- #: admin/views/Themes.php:773 admin/views/Themes.php:1536
2635
- #: admin/views/Themes.php:1814 admin/views/Themes.php:2780
2636
- #: admin/views/Themes.php:3189 admin/views/Themes.php:4453
2637
  #, fuzzy
2638
- #| msgid "Order by: "
2639
- msgid "Border style:"
2640
- msgstr "ترتيب حسب"
2641
 
2642
- #: admin/views/Themes.php:238 admin/views/Themes.php:538
2643
- #: admin/views/Themes.php:787 admin/views/Themes.php:1550
2644
- #: admin/views/Themes.php:1828 admin/views/Themes.php:2794
2645
- #: admin/views/Themes.php:3203 admin/views/Themes.php:4467
2646
- msgid "Border color:"
2647
  msgstr ""
2648
 
2649
- #: admin/views/Themes.php:244 admin/views/Themes.php:544
2650
- #: admin/views/Themes.php:793 admin/views/Themes.php:1556
2651
- #: admin/views/Themes.php:1834 admin/views/Themes.php:2360
2652
- #: admin/views/Themes.php:2800 admin/views/Themes.php:3209
2653
- #: admin/views/Themes.php:4473
2654
- msgid "Border radius:"
2655
- msgstr ""
2656
 
2657
- #: admin/views/Themes.php:247 admin/views/Themes.php:254
2658
- #: admin/views/Themes.php:410 admin/views/Themes.php:417
2659
- #: admin/views/Themes.php:473 admin/views/Themes.php:480
2660
- #: admin/views/Themes.php:547 admin/views/Themes.php:722
2661
- #: admin/views/Themes.php:729 admin/views/Themes.php:796
2662
- #: admin/views/Themes.php:935 admin/views/Themes.php:942
2663
- #: admin/views/Themes.php:997 admin/views/Themes.php:1004
2664
- #: admin/views/Themes.php:1120 admin/views/Themes.php:1141
2665
- #: admin/views/Themes.php:1169 admin/views/Themes.php:1203
2666
- #: admin/views/Themes.php:1259 admin/views/Themes.php:1319
2667
- #: admin/views/Themes.php:1326 admin/views/Themes.php:1380
2668
- #: admin/views/Themes.php:1387 admin/views/Themes.php:1442
2669
- #: admin/views/Themes.php:1462 admin/views/Themes.php:1519
2670
- #: admin/views/Themes.php:1526 admin/views/Themes.php:1559
2671
- #: admin/views/Themes.php:1579 admin/views/Themes.php:1653
2672
- #: admin/views/Themes.php:1660 admin/views/Themes.php:1693
2673
- #: admin/views/Themes.php:1755 admin/views/Themes.php:1762
2674
- #: admin/views/Themes.php:1797 admin/views/Themes.php:1804
2675
- #: admin/views/Themes.php:1837 admin/views/Themes.php:1844
2676
- #: admin/views/Themes.php:1998 admin/views/Themes.php:2005
2677
- #: admin/views/Themes.php:2060 admin/views/Themes.php:2115
2678
- #: admin/views/Themes.php:2122 admin/views/Themes.php:2195
2679
- #: admin/views/Themes.php:2202 admin/views/Themes.php:2290
2680
- #: admin/views/Themes.php:2330 admin/views/Themes.php:2337
2681
- #: admin/views/Themes.php:2363 admin/views/Themes.php:2396
2682
- #: admin/views/Themes.php:2461 admin/views/Themes.php:2494
2683
- #: admin/views/Themes.php:2513 admin/views/Themes.php:2594
2684
- #: admin/views/Themes.php:2735 admin/views/Themes.php:2742
2685
- #: admin/views/Themes.php:2803 admin/views/Themes.php:2942
2686
- #: admin/views/Themes.php:2997 admin/views/Themes.php:3052
2687
- #: admin/views/Themes.php:3059 admin/views/Themes.php:3121
2688
- #: admin/views/Themes.php:3128 admin/views/Themes.php:3135
2689
- #: admin/views/Themes.php:3212 admin/views/Themes.php:3229
2690
- #: admin/views/Themes.php:3274 admin/views/Themes.php:3357
2691
- #: admin/views/Themes.php:3364 admin/views/Themes.php:3458
2692
- #: admin/views/Themes.php:3512 admin/views/Themes.php:3545
2693
- #: admin/views/Themes.php:3648 admin/views/Themes.php:3685
2694
- #: admin/views/Themes.php:3729 admin/views/Themes.php:3762
2695
- #: admin/views/Themes.php:3867 admin/views/Themes.php:3936
2696
- #: admin/views/Themes.php:3943 admin/views/Themes.php:3950
2697
- #: admin/views/Themes.php:4078 admin/views/Themes.php:4085
2698
- #: admin/views/Themes.php:4092 admin/views/Themes.php:4303
2699
- #: admin/views/Themes.php:4322 admin/views/Themes.php:4355
2700
- #: admin/views/Themes.php:4476 admin/views/Themes.php:4493
2701
- #: admin/views/Themes.php:4500 admin/views/Themes.php:4529
2702
- #: admin/views/Themes.php:4690 admin/views/Themes.php:4779
2703
- msgid "Use CSS type values."
2704
  msgstr ""
2705
 
2706
- #: admin/views/Themes.php:251 admin/views/Themes.php:1841
2707
- msgid "Shadow:"
2708
- msgstr ""
 
 
2709
 
2710
- #: admin/views/Themes.php:258 admin/views/Themes.php:607
2711
- #: admin/views/Themes.php:854 admin/views/Themes.php:1848
2712
- #: admin/views/Themes.php:2807
2713
- msgid "Hover effect:"
2714
  msgstr ""
2715
 
2716
- #: admin/views/Themes.php:272 admin/views/Themes.php:621
2717
- #: admin/views/Themes.php:868 admin/views/Themes.php:1862
2718
- #: admin/views/Themes.php:2250 admin/views/Themes.php:2821
2719
- msgid "Hover effect value:"
2720
- msgstr ""
2721
 
2722
- #: admin/views/Themes.php:275 admin/views/Themes.php:624
2723
- #: admin/views/Themes.php:871 admin/views/Themes.php:1865
2724
- #: admin/views/Themes.php:2253 admin/views/Themes.php:2824
2725
- msgid "E.g. Rotate: 10deg, Scale: 1.5, Skew: 10deg."
2726
  msgstr ""
2727
 
2728
- #: admin/views/Themes.php:279 admin/views/Themes.php:628
2729
- #: admin/views/Themes.php:875
2730
- msgid "Transition:"
2731
- msgstr ""
 
2732
 
2733
- #: admin/views/Themes.php:299 admin/views/Themes.php:1888
2734
- #: admin/views/Themes.php:2257
2735
- msgid "Thumbnail background color:"
2736
  msgstr ""
2737
 
2738
- #: admin/views/Themes.php:306 admin/views/Themes.php:1894
2739
- #: admin/views/Themes.php:2229 admin/views/Themes.php:2847
2740
- msgid "Thumbnail transparency:"
2741
- msgstr ""
 
2742
 
2743
- #: admin/views/Themes.php:313 admin/views/Themes.php:1446
2744
- #: admin/views/Themes.php:1901 admin/views/Themes.php:2854
2745
- msgid "Full background color:"
2746
  msgstr ""
2747
 
2748
- #: admin/views/Themes.php:319 admin/views/Themes.php:1452
2749
- #: admin/views/Themes.php:1907 admin/views/Themes.php:2860
2750
- msgid "Full background transparency:"
2751
  msgstr ""
2752
 
2753
- #: admin/views/Themes.php:326 admin/views/Themes.php:582
2754
- #: admin/views/Themes.php:830 admin/views/Themes.php:1502
2755
- #: admin/views/Themes.php:1914 admin/views/Themes.php:2867
2756
- #: admin/views/Themes.php:3104 admin/views/Themes.php:4552
2757
- msgid "Alignment:"
2758
  msgstr ""
2759
 
2760
- #: admin/views/Themes.php:350 admin/views/Themes.php:1593
2761
- #: admin/views/Themes.php:1938
2762
- msgid "Title position:"
2763
  msgstr ""
2764
 
2765
- #: admin/views/Themes.php:353 admin/views/Themes.php:1158
2766
- #: admin/views/Themes.php:1596 admin/views/Themes.php:1941
2767
- #: admin/views/Themes.php:3443 admin/views/Themes.php:3718
2768
- #: admin/views/Themes.php:3806 admin/views/Themes.php:3874
2769
- #: admin/views/Themes.php:4016 admin/views/Themes.php:4546
2770
- msgid "Top"
2771
  msgstr ""
2772
 
2773
- #: admin/views/Themes.php:355 admin/views/Themes.php:1160
2774
- #: admin/views/Themes.php:1598 admin/views/Themes.php:1943
2775
- #: admin/views/Themes.php:3445 admin/views/Themes.php:3720
2776
- #: admin/views/Themes.php:3808 admin/views/Themes.php:3876
2777
- #: admin/views/Themes.php:4018 admin/views/Themes.php:4548
2778
- msgid "Bottom"
2779
  msgstr ""
2780
 
2781
- #: admin/views/Themes.php:359 admin/views/Themes.php:884
2782
- #: admin/views/Themes.php:1947 admin/views/Themes.php:2543
2783
- #: admin/views/Themes.php:2891 admin/views/Themes.php:4138
2784
- #: admin/views/Themes.php:4817
2785
- msgid "Title font size:"
2786
  msgstr ""
2787
 
2788
- #: admin/views/Themes.php:365 admin/views/Themes.php:890
2789
- #: admin/views/Themes.php:1953 admin/views/Themes.php:2549
2790
- #: admin/views/Themes.php:2897 admin/views/Themes.php:4096
2791
- msgid "Title font color:"
2792
  msgstr ""
2793
 
2794
- #: admin/views/Themes.php:371 admin/views/Themes.php:896
2795
- #: admin/views/Themes.php:1342 admin/views/Themes.php:1959
2796
- #: admin/views/Themes.php:2555 admin/views/Themes.php:2903
2797
- #: admin/views/Themes.php:4102
2798
- msgid "Title font family:"
2799
- msgstr ""
2800
 
2801
- #: admin/views/Themes.php:393 admin/views/Themes.php:918
2802
- #: admin/views/Themes.php:1981 admin/views/Themes.php:2577
2803
- #: admin/views/Themes.php:2925 admin/views/Themes.php:4124
2804
- #: admin/views/Themes.php:4829
2805
- msgid "Title font weight:"
2806
  msgstr ""
2807
 
2808
- #: admin/views/Themes.php:407 admin/views/Themes.php:932
2809
- #: admin/views/Themes.php:1995 admin/views/Themes.php:2939
2810
- msgid "Title box shadow:"
2811
  msgstr ""
2812
 
2813
- #: admin/views/Themes.php:414 admin/views/Themes.php:939
2814
- #: admin/views/Themes.php:2002 admin/views/Themes.php:2504
2815
- #: admin/views/Themes.php:4783
2816
- msgid "Title margin:"
2817
  msgstr ""
2818
 
2819
- #: admin/views/Themes.php:421 admin/views/Themes.php:671
2820
- #: admin/views/Themes.php:946 admin/views/Themes.php:1703
2821
- #: admin/views/Themes.php:2064 admin/views/Themes.php:2684
2822
- #: admin/views/Themes.php:3001 admin/views/Themes.php:3305
2823
- msgid "Gallery title/description font size:"
2824
  msgstr ""
2825
 
2826
- #: admin/views/Themes.php:428 admin/views/Themes.php:677
2827
- #: admin/views/Themes.php:952 admin/views/Themes.php:1710
2828
- #: admin/views/Themes.php:2070 admin/views/Themes.php:2690
2829
- #: admin/views/Themes.php:3007 admin/views/Themes.php:3312
2830
- msgid "Gallery title/description font color:"
2831
  msgstr ""
2832
 
2833
- #: admin/views/Themes.php:434 admin/views/Themes.php:683
2834
- #: admin/views/Themes.php:958 admin/views/Themes.php:1716
2835
- #: admin/views/Themes.php:2076 admin/views/Themes.php:2696
2836
- #: admin/views/Themes.php:3013 admin/views/Themes.php:3318
2837
- msgid "Gallery title/description font family:"
2838
- msgstr ""
2839
 
2840
- #: admin/views/Themes.php:456 admin/views/Themes.php:705
2841
- #: admin/views/Themes.php:980 admin/views/Themes.php:1738
2842
- #: admin/views/Themes.php:2098 admin/views/Themes.php:2718
2843
- #: admin/views/Themes.php:3035 admin/views/Themes.php:3340
2844
- msgid "Gallery title/description font weight:"
2845
  msgstr ""
2846
 
2847
- #: admin/views/Themes.php:470 admin/views/Themes.php:719
2848
- #: admin/views/Themes.php:994 admin/views/Themes.php:1752
2849
- #: admin/views/Themes.php:2112 admin/views/Themes.php:2732
2850
- #: admin/views/Themes.php:3049 admin/views/Themes.php:3354
2851
- msgid "Gallery title/description box shadow:"
2852
- msgstr ""
2853
 
2854
- #: admin/views/Themes.php:477 admin/views/Themes.php:726
2855
- #: admin/views/Themes.php:1001 admin/views/Themes.php:1759
2856
- #: admin/views/Themes.php:2119 admin/views/Themes.php:2739
2857
- #: admin/views/Themes.php:3056 admin/views/Themes.php:3361
2858
- msgid "Gallery title/description margin:"
2859
  msgstr ""
2860
 
2861
- #: admin/views/Themes.php:484 admin/views/Themes.php:733
2862
- #: admin/views/Themes.php:1008 admin/views/Themes.php:1766
2863
- #: admin/views/Themes.php:2126 admin/views/Themes.php:2746
2864
- #: admin/views/Themes.php:3063 admin/views/Themes.php:3368
2865
- msgid "Gallery title/description alignment:"
2866
  msgstr ""
2867
 
2868
- #: admin/views/Themes.php:562 admin/views/Themes.php:810
2869
- msgid "Transparency:"
2870
  msgstr ""
2871
 
2872
- #: admin/views/Themes.php:569 admin/views/Themes.php:817
2873
- #: admin/views/Themes.php:1036 admin/views/Themes.php:1563
2874
- #: admin/views/Themes.php:2347 admin/views/Themes.php:3091
2875
- #: admin/views/Themes.php:4599
2876
- msgid "Background color:"
2877
  msgstr ""
2878
 
2879
- #: admin/views/Themes.php:575 admin/views/Themes.php:823
2880
- #: admin/views/Themes.php:1569 admin/views/Themes.php:2353
2881
- #: admin/views/Themes.php:3097
2882
- msgid "Background transparency:"
2883
  msgstr ""
2884
 
2885
- #: admin/views/Themes.php:637 admin/views/Themes.php:1391
2886
- #: admin/views/Themes.php:2624 admin/views/Themes.php:4187
2887
- msgid "Description font size:"
2888
  msgstr ""
2889
 
2890
- #: admin/views/Themes.php:643 admin/views/Themes.php:2630
2891
- #: admin/views/Themes.php:4145
2892
- msgid "Description font color:"
2893
  msgstr ""
2894
 
2895
- #: admin/views/Themes.php:649 admin/views/Themes.php:1403
2896
- #: admin/views/Themes.php:2636 admin/views/Themes.php:4151
2897
- msgid "Description font family:"
2898
- msgstr ""
 
2899
 
2900
- #: admin/views/Themes.php:1042 admin/views/Themes.php:3664
2901
- #: admin/views/Themes.php:4612
2902
- msgid "Right, left buttons size:"
 
2903
  msgstr ""
2904
 
2905
- #: admin/views/Themes.php:1048 admin/views/Themes.php:4618
2906
- msgid "Play, pause buttons size:"
2907
- msgstr ""
 
 
2908
 
2909
- #: admin/views/Themes.php:1054 admin/views/Themes.php:3239
2910
- #: admin/views/Themes.php:4624
2911
- msgid "Buttons color:"
2912
  msgstr ""
2913
 
2914
- #: admin/views/Themes.php:1060 admin/views/Themes.php:4630
2915
- msgid "Buttons transparency:"
2916
- msgstr ""
 
 
2917
 
2918
- #: admin/views/Themes.php:1067 admin/views/Themes.php:4637
2919
- msgid "Buttons hover color:"
2920
  msgstr ""
2921
 
2922
- #: admin/views/Themes.php:1073 admin/views/Themes.php:3658
2923
- #: admin/views/Themes.php:4643
2924
- msgid "Right, left buttons width:"
2925
- msgstr ""
 
2926
 
2927
- #: admin/views/Themes.php:1079 admin/views/Themes.php:3652
2928
- #: admin/views/Themes.php:4649
2929
- msgid "Right, left buttons height:"
 
2930
  msgstr ""
2931
 
2932
- #: admin/views/Themes.php:1085 admin/views/Themes.php:3633
2933
- #: admin/views/Themes.php:4655
2934
- msgid "Right, left buttons background color:"
2935
- msgstr ""
 
2936
 
2937
- #: admin/views/Themes.php:1091 admin/views/Themes.php:3689
2938
- #: admin/views/Themes.php:4661
2939
- msgid "Right, left buttons border width:"
2940
  msgstr ""
2941
 
2942
- #: admin/views/Themes.php:1097 admin/views/Themes.php:3695
2943
- #: admin/views/Themes.php:4667
2944
- msgid "Right, left buttons border style:"
2945
  msgstr ""
2946
 
2947
- #: admin/views/Themes.php:1111 admin/views/Themes.php:3709
2948
- #: admin/views/Themes.php:4681
2949
- msgid "Right, left buttons border color:"
2950
  msgstr ""
2951
 
2952
- #: admin/views/Themes.php:1117 admin/views/Themes.php:3682
2953
- #: admin/views/Themes.php:4687
2954
- msgid "Right, left buttons border radius:"
2955
  msgstr ""
2956
 
2957
- #: admin/views/Themes.php:1124 admin/views/Themes.php:3619
2958
- #: admin/views/Themes.php:4694
2959
- msgid "Right, left buttons style:"
2960
- msgstr ""
 
2961
 
2962
- #: admin/views/Themes.php:1138 admin/views/Themes.php:3645
2963
- msgid "Right, left buttons box shadow:"
2964
  msgstr ""
2965
 
2966
- #: admin/views/Themes.php:1155
2967
- msgid "Filmstrip/Slider bullet position:"
2968
  msgstr ""
2969
 
2970
- #: admin/views/Themes.php:1166
2971
- msgid "Filmstrip margin:"
2972
- msgstr ""
 
 
2973
 
2974
- #: admin/views/Themes.php:1173
2975
- msgid "Filmstrip border width:"
2976
  msgstr ""
2977
 
2978
- #: admin/views/Themes.php:1179
2979
- msgid "Filmstrip border style:"
2980
  msgstr ""
2981
 
2982
- #: admin/views/Themes.php:1194
2983
- msgid "Filmstrip border color:"
2984
  msgstr ""
2985
 
2986
- #: admin/views/Themes.php:1200
2987
- msgid "Filmstrip border radius:"
 
2988
  msgstr ""
2989
 
2990
- #: admin/views/Themes.php:1207
2991
- msgid "Filmstrip active border width:"
 
2992
  msgstr ""
2993
 
2994
- #: admin/views/Themes.php:1213
2995
- msgid "Filmstrip active border color:"
2996
  msgstr ""
2997
 
2998
- #: admin/views/Themes.php:1219
2999
- msgid "Filmstrip deactive transparency: "
3000
  msgstr ""
3001
 
3002
- #: admin/views/Themes.php:1226
3003
- msgid "Filmstrip right, left buttons background color: "
3004
  msgstr ""
3005
 
3006
- #: admin/views/Themes.php:1232 admin/views/Themes.php:3791
3007
- msgid "Filmstrip right, left buttons color:"
3008
  msgstr ""
3009
 
3010
- #: admin/views/Themes.php:1238 admin/views/Themes.php:3785
3011
- msgid "Filmstrip right, left buttons size:"
3012
  msgstr ""
3013
 
3014
- #: admin/views/Themes.php:1244
3015
- msgid "Slider bullet width: "
3016
  msgstr ""
3017
 
3018
- #: admin/views/Themes.php:1250
3019
- msgid "Slider bullet height:"
3020
  msgstr ""
3021
 
3022
- #: admin/views/Themes.php:1256
3023
- msgid "Slider bullet border radius: "
 
 
3024
  msgstr ""
3025
 
3026
- #: admin/views/Themes.php:1263
3027
- msgid "Slider bullet background color:"
3028
  msgstr ""
3029
 
3030
- #: admin/views/Themes.php:1269
3031
- msgid "Slider bullet margin:"
 
 
 
3032
  msgstr ""
3033
 
3034
- #: admin/views/Themes.php:1275
3035
- msgid "Slider bullet active background color: "
3036
  msgstr ""
3037
 
3038
- #: admin/views/Themes.php:1281
3039
- msgid "Slider bullet active border width:"
 
 
3040
  msgstr ""
3041
 
3042
- #: admin/views/Themes.php:1287
3043
- msgid "Slider bullet active border color: "
3044
  msgstr ""
3045
 
3046
- #: admin/views/Themes.php:1303
3047
- msgid "Title background color: "
3048
  msgstr ""
3049
 
3050
- #: admin/views/Themes.php:1309
3051
- msgid "Title transparency: "
3052
  msgstr ""
3053
 
3054
- #: admin/views/Themes.php:1316 admin/views/Themes.php:4776
3055
- msgid "Title border radius:"
3056
  msgstr ""
3057
 
3058
- #: admin/views/Themes.php:1323
3059
- msgid "Title padding: "
3060
- msgstr ""
 
 
3061
 
3062
- #: admin/views/Themes.php:1330
3063
- msgid "Title font size: "
3064
  msgstr ""
3065
 
3066
- #: admin/views/Themes.php:1336
3067
- msgid "Title color: "
 
 
3068
  msgstr ""
3069
 
3070
- #: admin/views/Themes.php:1364 admin/views/Themes.php:1697
3071
- msgid "Description background color:"
 
 
3072
  msgstr ""
3073
 
3074
- #: admin/views/Themes.php:1370
3075
- msgid "Description transparency:"
 
 
 
 
3076
  msgstr ""
3077
 
3078
- #: admin/views/Themes.php:1377 admin/views/Themes.php:1690
3079
- msgid "Description border radius:"
 
 
3080
  msgstr ""
3081
 
3082
- #: admin/views/Themes.php:1384 admin/views/Themes.php:1657
3083
- #: admin/views/Themes.php:2591
3084
- msgid "Description padding:"
 
 
3085
  msgstr ""
3086
 
3087
- #: admin/views/Themes.php:1397
3088
- msgid "Description color:"
3089
- msgstr ""
 
 
 
 
 
3090
 
3091
- #: admin/views/Themes.php:1439
3092
- msgid "Full padding:"
 
 
 
3093
  msgstr ""
3094
 
3095
- #: admin/views/Themes.php:1459
3096
- msgid "Full border radius:"
 
 
 
 
3097
  msgstr ""
3098
 
3099
- #: admin/views/Themes.php:1466
3100
- msgid "Full border width:"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3101
  msgstr ""
3102
 
3103
- #: admin/views/Themes.php:1472
3104
- msgid "Full border style:"
3105
  msgstr ""
3106
 
3107
- #: admin/views/Themes.php:1486
3108
- msgid "Full border color:"
 
 
3109
  msgstr ""
3110
 
3111
- #: admin/views/Themes.php:1576 admin/views/Themes.php:3132
3112
- #: admin/views/Themes.php:4526
3113
- msgid "Box shadow:"
 
3114
  msgstr ""
3115
 
3116
- #: admin/views/Themes.php:1602
3117
- msgid "Title alignment:"
3118
  msgstr ""
3119
 
3120
- #: admin/views/Themes.php:1616 admin/views/Themes.php:2009
3121
- #: admin/views/Themes.php:2946 admin/views/Themes.php:3171
3122
- #: admin/views/Themes.php:4399
3123
- msgid "Font size:"
3124
  msgstr ""
3125
 
3126
- #: admin/views/Themes.php:1622 admin/views/Themes.php:2015
3127
- #: admin/views/Themes.php:2952 admin/views/Themes.php:3177
3128
- #: admin/views/Themes.php:4405
3129
- msgid "Font color:"
3130
  msgstr ""
3131
 
3132
- #: admin/views/Themes.php:1628 admin/views/Themes.php:2021
3133
- #: admin/views/Themes.php:2958 admin/views/Themes.php:3149
3134
- #: admin/views/Themes.php:4411
3135
- msgid "Font family:"
3136
  msgstr ""
3137
 
3138
- #: admin/views/Themes.php:1650
3139
- msgid "Description margin:"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3140
  msgstr ""
3141
 
3142
- #: admin/views/Themes.php:1664 admin/views/Themes.php:2598
3143
- msgid "Description border width:"
 
3144
  msgstr ""
3145
 
3146
- #: admin/views/Themes.php:1670 admin/views/Themes.php:2604
3147
- msgid "Description border style:"
 
3148
  msgstr ""
3149
 
3150
- #: admin/views/Themes.php:1684 admin/views/Themes.php:2618
3151
- msgid "Description border color:"
 
 
 
3152
  msgstr ""
3153
 
3154
- #: admin/views/Themes.php:1869 admin/views/Themes.php:2206
3155
- #: admin/views/Themes.php:2828
3156
- msgid "Thumbnail transition:"
3157
  msgstr ""
3158
 
3159
- #: admin/views/Themes.php:2043 admin/views/Themes.php:2980
3160
- #: admin/views/Themes.php:4433
3161
- msgid "Font weight:"
 
 
 
3162
  msgstr ""
3163
 
3164
- #: admin/views/Themes.php:2057 admin/views/Themes.php:2393
3165
- #: admin/views/Themes.php:2994
3166
- msgid "Back padding:"
 
 
 
3167
  msgstr ""
3168
 
3169
- #: admin/views/Themes.php:2154
3170
- msgid "Thumbnail margin:"
 
 
 
3171
  msgstr ""
3172
 
3173
- #: admin/views/Themes.php:2160
3174
- msgid "Thumbnail padding:"
 
 
 
3175
  msgstr ""
3176
 
3177
- #: admin/views/Themes.php:2166
3178
- msgid "Thumbnail border width:"
 
 
3179
  msgstr ""
3180
 
3181
- #: admin/views/Themes.php:2172
3182
- msgid "Thumbnail border style:"
 
 
 
3183
  msgstr ""
3184
 
3185
- #: admin/views/Themes.php:2186
3186
- msgid "Thumbnail border color:"
 
 
 
3187
  msgstr ""
3188
 
3189
- #: admin/views/Themes.php:2192
3190
- msgid "Thumbnail border radius:"
 
3191
  msgstr ""
3192
 
3193
- #: admin/views/Themes.php:2199
3194
- msgid "Thumbnail box shadow:"
 
 
3195
  msgstr ""
3196
 
3197
- #: admin/views/Themes.php:2215
3198
- msgid "Thumbnail alignment:"
 
 
 
3199
  msgstr ""
3200
 
3201
- #: admin/views/Themes.php:2236
3202
- msgid "Thumbnail hover effect:"
 
 
 
3203
  msgstr ""
3204
 
3205
- #: admin/views/Themes.php:2263
3206
- msgid "Thumbnails background color:"
 
 
 
3207
  msgstr ""
3208
 
3209
- #: admin/views/Themes.php:2269
3210
- msgid "Thumbnail background transparency:"
 
 
 
3211
  msgstr ""
3212
 
3213
- #: admin/views/Themes.php:2287
3214
- msgid "Thumbnail div padding:"
 
 
 
3215
  msgstr ""
3216
 
3217
- #: admin/views/Themes.php:2294
3218
- msgid "Thumbnail div background color:"
 
 
 
3219
  msgstr ""
3220
 
3221
- #: admin/views/Themes.php:2300
3222
- msgid "Thumbnail div border width:"
3223
- msgstr ""
 
 
 
 
 
3224
 
3225
- #: admin/views/Themes.php:2307
3226
- msgid "humbnail div border style:"
 
 
3227
  msgstr ""
3228
 
3229
- #: admin/views/Themes.php:2321
3230
- msgid "Thumbnail div border color:"
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: bwg\n"
4
+ "POT-Creation-Date: 2019-11-06 12:40+0400\n"
5
+ "PO-Revision-Date: 2019-11-06 12:40+0400\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: ar\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 2.2.4\n"
13
  "X-Poedit-Basepath: ..\n"
14
  "Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 "
15
  "&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n"
27
  msgstr ""
28
 
29
  #: addons/addons.php:13
30
+ msgid "NextGen Gallery Import to Photo Gallery"
31
+ msgstr ""
 
 
32
 
33
  #: addons/addons.php:15
34
  msgid ""
35
+ "This addon integrates NextGen with Photo Gallery allowing to import images "
36
+ "and related data from NextGen to use with Photo Gallery"
 
 
37
  msgstr ""
38
 
39
  #: addons/addons.php:20
40
+ msgid "Photo Gallery Export / Import"
41
  msgstr ""
42
 
43
  #: addons/addons.php:22
44
  msgid ""
45
+ "Photo Gallery Export/Import helps to move created galleries and gallery "
46
+ "groups from one site to another. This way you can save the gallery/album "
47
+ "options and manual modifications."
48
  msgstr ""
49
 
50
  #: addons/addons.php:27
51
+ msgid "Photo Gallery Google Photos Integration"
52
  msgstr ""
53
 
54
  #: addons/addons.php:29
55
+ msgid "Link and display your Google Photos albums in one click."
 
 
 
56
  msgstr ""
57
 
58
+ #: addons/addons.php:39
59
  msgid "Photo Gallery Add-ons"
60
  msgstr ""
61
 
62
+ #: addons/addons.php:72
63
  msgid "GET THIS ADD ON"
64
  msgstr ""
65
 
66
+ #: admin/controllers/AddTags.php:53 admin/views/Galleries.php:782
67
+ #: photo-gallery.php:467
68
  msgid "Tags"
69
  msgstr ""
70
 
71
  #: admin/controllers/Albums.php:38 admin/controllers/Comments.php:40
72
+ #: admin/controllers/Galleries.php:34 admin/views/Albums.php:111
73
+ #: admin/views/Albums.php:183 admin/views/Comments.php:109
74
+ #: admin/views/Galleries.php:118 admin/views/Galleries.php:213
75
+ #: admin/views/Galleries.php:731 framework/WDWLibrary.php:2475
76
  msgid "Publish"
77
  msgstr ""
78
 
79
  #: admin/controllers/Albums.php:39 admin/controllers/Comments.php:41
80
+ #: admin/controllers/Galleries.php:35 framework/WDWLibrary.php:2476
81
  msgid "published"
82
  msgstr ""
83
 
84
  #: admin/controllers/Albums.php:42 admin/controllers/Comments.php:44
85
+ #: admin/controllers/Galleries.php:38 admin/views/Albums.php:111
86
+ #: admin/views/Comments.php:109 admin/views/Galleries.php:118
87
+ #: admin/views/Galleries.php:731 framework/WDWLibrary.php:2480
88
  msgid "Unpublish"
89
  msgstr ""
90
 
91
  #: admin/controllers/Albums.php:43 admin/controllers/Comments.php:45
92
+ #: admin/controllers/Galleries.php:39 framework/WDWLibrary.php:2481
93
  msgid "unpublished"
94
  msgstr ""
95
 
96
  #: admin/controllers/Albums.php:46 admin/controllers/Themes.php:39
97
+ #: admin/views/Albums.php:112 admin/views/Themes.php:105
98
  msgid "Duplicate"
99
  msgstr ""
100
 
103
  msgstr ""
104
 
105
  #: admin/controllers/Albums.php:50 admin/controllers/Comments.php:48
106
+ #: admin/controllers/Galleries.php:42 admin/controllers/Ratings.php:41
107
+ #: admin/controllers/Themes.php:43 admin/views/Albums.php:113
108
+ #: admin/views/Comments.php:112 admin/views/Galleries.php:119
109
+ #: admin/views/Galleries.php:738 admin/views/Ratings.php:84
110
+ #: admin/views/Themes.php:106 framework/WDWLibrary.php:2485
111
  #, fuzzy
112
  #| msgid "Delete Comment"
113
  msgid "Delete"
114
  msgstr "حذف تعليق"
115
 
116
  #: admin/controllers/Albums.php:51 admin/controllers/Comments.php:49
117
+ #: admin/controllers/Galleries.php:43 admin/controllers/Ratings.php:42
118
+ #: admin/controllers/Themes.php:44 framework/WDWLibrary.php:2486
119
  msgid "deleted"
120
  msgstr ""
121
 
122
+ #: admin/controllers/Albums.php:95 photo-gallery.php:464
123
  msgid "Gallery Groups"
124
  msgstr ""
125
 
127
  msgid "Galleries / Gallery groups"
128
  msgstr ""
129
 
130
+ #: admin/controllers/Comments.php:91 photo-gallery.php:475
131
  #, fuzzy
132
  #| msgid "Comment"
133
  msgid "Comments"
134
  msgstr "التعليق"
135
 
136
+ #: admin/controllers/Comments.php:127 admin/controllers/Ratings.php:133
137
  msgid "Filter by gallery"
138
  msgstr ""
139
 
140
+ #: admin/controllers/Comments.php:131 admin/controllers/Ratings.php:137
141
  msgid "Filter by image"
142
  msgstr ""
143
 
144
+ #: admin/controllers/Galleries.php:93 photo-gallery.php:1740
145
+ #, fuzzy
146
+ #| msgid "Gallery is empty."
147
+ msgid "Galleries"
148
+ msgstr "  معرض فارغة"
 
 
 
 
 
 
149
 
150
+ #: admin/controllers/Galleries.php:343
151
+ msgid "Mixed"
152
  msgstr ""
153
 
154
+ #: admin/controllers/Galleries.php:343
155
+ msgid "Instagram only"
156
  msgstr ""
157
 
158
+ #: admin/controllers/Galleries.php:345 admin/views/Options.php:581
159
  #, fuzzy
160
+ #| msgid "Share on Facebook"
161
+ msgid "Facebook"
162
+ msgstr "حصة في الفيسبوك"
163
 
164
+ #: admin/controllers/Options.php:48
165
+ msgid "Edit options"
166
  msgstr ""
167
 
168
+ #: admin/controllers/Options.php:53 admin/controllers/Shortcode.php:40
169
+ #: admin/views/Options.php:375 admin/views/Shortcode.php:68
170
+ #: admin/views/Shortcode.php:430 photo-gallery.php:1585
171
+ msgid "Thumbnails"
172
  msgstr ""
173
 
174
+ #: admin/controllers/Options.php:54 admin/controllers/Options.php:63
175
+ #: admin/controllers/Shortcode.php:41 admin/controllers/Shortcode.php:50
176
+ #: admin/controllers/Themes.php:263 admin/views/Options.php:383
177
+ #: admin/views/Options.php:473 admin/views/Options.php:2681
178
+ #: admin/views/Options.php:3220 admin/views/Shortcode.php:76
179
+ #: admin/views/Shortcode.php:146 admin/views/Widget.php:139
180
+ #: photo-gallery.php:1589
181
+ msgid "Masonry"
182
  msgstr ""
183
 
184
+ #: admin/controllers/Options.php:55 admin/controllers/Shortcode.php:42
185
+ #: admin/controllers/Themes.php:264 admin/views/Options.php:392
186
+ #: admin/views/Options.php:2682 admin/views/Options.php:3221
187
+ #: admin/views/Shortcode.php:85 photo-gallery.php:1593
188
+ msgid "Mosaic"
189
  msgstr ""
190
 
191
+ #: admin/controllers/Options.php:56 admin/controllers/Shortcode.php:43
192
+ #: admin/controllers/Themes.php:265 admin/views/Options.php:401
193
+ #: admin/views/Options.php:2683 admin/views/Options.php:3222
194
+ #: admin/views/Shortcode.php:94 photo-gallery.php:1559 photo-gallery.php:1597
195
+ msgid "Slideshow"
 
 
 
 
 
 
 
 
 
 
 
 
196
  msgstr ""
197
 
198
+ #: admin/controllers/Options.php:57 admin/controllers/Shortcode.php:44
199
+ #: admin/views/Options.php:407 admin/views/Options.php:2684
200
+ #: admin/views/Options.php:3223 admin/views/Shortcode.php:100
201
+ #: photo-gallery.php:1601
202
+ msgid "Image Browser"
203
  msgstr ""
204
 
205
+ #: admin/controllers/Options.php:58 admin/controllers/Shortcode.php:45
206
+ #: admin/views/Options.php:413 admin/views/Options.php:2685
207
+ #: admin/views/Options.php:3224 admin/views/Shortcode.php:106
208
+ #: photo-gallery.php:1617
209
+ msgid "Blog Style"
 
 
 
210
  msgstr ""
211
 
212
+ #: admin/controllers/Options.php:59 admin/controllers/Shortcode.php:46
213
+ #: admin/controllers/Themes.php:273 admin/views/Options.php:422
214
+ #: admin/views/Options.php:2686 admin/views/Options.php:3225
215
+ #: admin/views/Shortcode.php:115 photo-gallery.php:1629
216
+ msgid "Carousel"
217
  msgstr ""
218
 
219
+ #: admin/controllers/Options.php:62 admin/controllers/Shortcode.php:49
220
+ #: admin/views/Options.php:467 admin/views/Shortcode.php:140
221
+ msgid "Compact"
 
222
  msgstr ""
223
 
224
+ #: admin/controllers/Options.php:64 admin/controllers/Shortcode.php:51
225
+ #: admin/views/Options.php:482 admin/views/Shortcode.php:155
226
+ msgid "Extended"
227
  msgstr ""
228
 
229
+ #: admin/controllers/Options.php:130
230
  msgid "Default values restored. Changes must be saved."
231
  msgstr ""
232
 
233
+ #: admin/controllers/Options.php:162
234
  msgid "Uploads directory doesn't exist. Old value is restored."
235
  msgstr ""
236
 
237
+ #: admin/controllers/Options.php:165
238
  msgid ""
239
  "Warning: \"photo-gallery\" folder already exists in uploads directory. Old "
240
  "value is restored."
241
  msgstr ""
242
 
243
+ #: admin/controllers/Options.php:195
244
  msgid "All thumbnails are successfully recreated."
245
  msgstr ""
246
 
247
+ #: admin/controllers/Options.php:208
248
+ msgid "Item Succesfully Saved."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
249
  msgstr ""
250
 
251
+ #: admin/controllers/Options.php:248 framework/WDWLibrary.php:218
252
+ msgid ""
253
+ "http:// wrapper is disabled in the server configuration by allow_url_fopen=0."
254
  msgstr ""
255
 
256
+ #: admin/controllers/Options.php:254 framework/WDWLibrary.php:213
257
+ msgid "Watermark could not be set. The image URL is incorrect."
 
 
258
  msgstr ""
259
 
260
+ #: admin/controllers/Options.php:258
261
+ msgid "All images are successfully watermarked."
262
  msgstr ""
263
 
264
+ #: admin/controllers/Ratings.php:86 photo-gallery.php:478
265
+ msgid "Ratings"
266
  msgstr ""
267
 
268
  #: admin/controllers/Themes.php:40
269
  msgid "duplicated"
270
  msgstr ""
271
 
272
+ #: admin/controllers/Themes.php:88 photo-gallery.php:471
273
  msgid "Themes"
274
  msgstr ""
275
 
276
+ #: admin/controllers/Themes.php:262 admin/views/Options.php:2680
277
+ #: admin/views/Options.php:3219 admin/views/Widget.php:138
 
278
  msgid "Thumbnail"
279
  msgstr ""
280
 
281
+ #: admin/controllers/Themes.php:266
282
  msgid "Image browser"
283
  msgstr ""
284
 
285
+ #: admin/controllers/Themes.php:267
286
  msgid "Compact album"
287
  msgstr ""
288
 
289
+ #: admin/controllers/Themes.php:268
290
  msgid "Masonry album"
291
  msgstr ""
292
 
293
+ #: admin/controllers/Themes.php:269
294
  msgid "Extended album"
295
  msgstr ""
296
 
297
+ #: admin/controllers/Themes.php:270
298
  msgid "Blog style"
299
  msgstr ""
300
 
301
+ #: admin/controllers/Themes.php:271 admin/views/WidgetTags.php:96
302
+ #: photo-gallery.php:1551 photo-gallery.php:1621
 
303
  msgid "Lightbox"
304
  msgstr ""
305
 
306
+ #: admin/controllers/Themes.php:272
307
  msgid "Navigation"
308
  msgstr ""
309
 
310
+ #: admin/controllers/Themes.php:277 admin/controllers/Themes.php:316
311
+ #: admin/controllers/Themes.php:323 admin/controllers/WidgetSlideshow.php:44
312
+ #: admin/views/Options.php:677 admin/views/Options.php:830
313
+ #: admin/views/Options.php:1060 admin/views/Options.php:1108
314
+ #: admin/views/Options.php:1326 admin/views/Options.php:1562
315
+ #: admin/views/Options.php:2156 admin/views/Shortcode.php:299
316
+ msgid "None"
317
+ msgstr ""
318
+
319
+ #: admin/controllers/Themes.php:278
320
  msgid "Solid"
321
  msgstr ""
322
 
323
+ #: admin/controllers/Themes.php:279
324
  msgid "Dotted"
325
  msgstr ""
326
 
327
+ #: admin/controllers/Themes.php:280
328
  msgid "Dashed"
329
  msgstr ""
330
 
331
+ #: admin/controllers/Themes.php:281 admin/controllers/Themes.php:333
332
  msgid "Double"
333
  msgstr ""
334
 
335
+ #: admin/controllers/Themes.php:282
336
  msgid "Groove"
337
  msgstr ""
338
 
339
+ #: admin/controllers/Themes.php:283
340
  msgid "Ridge"
341
  msgstr ""
342
 
343
+ #: admin/controllers/Themes.php:284
344
  msgid "Inset"
345
  msgstr ""
346
 
347
+ #: admin/controllers/Themes.php:285
348
  msgid "Outset"
349
  msgstr ""
350
 
351
+ #: admin/controllers/Themes.php:303 admin/views/Themes.php:1278
352
+ #: admin/views/Themes.php:3903 admin/views/Themes.php:4385
353
  msgid "Left"
354
  msgstr ""
355
 
356
+ #: admin/controllers/Themes.php:304
357
  msgid "Center"
358
  msgstr ""
359
 
360
+ #: admin/controllers/Themes.php:305 admin/views/Themes.php:1276
361
+ #: admin/views/Themes.php:3901 admin/views/Themes.php:4387
362
  msgid "Right"
363
  msgstr ""
364
 
365
+ #: admin/controllers/Themes.php:309
366
  msgid "Lighter"
367
  msgstr ""
368
 
369
+ #: admin/controllers/Themes.php:310
370
  msgid "Normal"
371
  msgstr ""
372
 
373
+ #: admin/controllers/Themes.php:311
374
  msgid "Bold"
375
  msgstr ""
376
 
377
+ #: admin/controllers/Themes.php:317 admin/controllers/Themes.php:324
378
  msgid "Rotate"
379
  msgstr ""
380
 
381
+ #: admin/controllers/Themes.php:318 admin/controllers/Themes.php:325
382
  msgid "Scale"
383
  msgstr ""
384
 
385
+ #: admin/controllers/Themes.php:319 admin/controllers/Themes.php:327
386
  msgid "Skew"
387
  msgstr ""
388
 
389
+ #: admin/controllers/Themes.php:326
390
+ msgid "Zoom"
391
  msgstr ""
392
 
393
+ #: admin/controllers/Themes.php:331
394
  msgid "Angle"
395
  msgstr ""
396
 
397
+ #: admin/controllers/Themes.php:332
398
+ msgid "Chevron"
399
+ msgstr ""
400
+
401
+ #: admin/controllers/Themes.php:337
402
  msgid "Star"
403
  msgstr ""
404
 
405
+ #: admin/controllers/Themes.php:338
406
  msgid "Bell"
407
  msgstr ""
408
 
409
+ #: admin/controllers/Themes.php:339
410
  msgid "Circle"
411
  msgstr ""
412
 
413
+ #: admin/controllers/Themes.php:340
414
  msgid "Flag"
415
  msgstr ""
416
 
417
+ #: admin/controllers/Themes.php:341
418
  msgid "Heart"
419
  msgstr ""
420
 
421
+ #: admin/controllers/Themes.php:342
422
  msgid "Square"
423
  msgstr ""
424
 
425
+ #: admin/controllers/Uninstall.php:59 admin/controllers/Uninstall.php:100
426
+ #: admin/views/Options.php:351
427
  #, php-format
428
  msgid "Uninstall %s"
429
  msgstr ""
436
  msgid "Add Photo Gallery slideshow to Your widget area."
437
  msgstr ""
438
 
439
+ #: admin/controllers/WidgetSlideshow.php:45 admin/views/Options.php:1061
440
+ msgid "Cube Horizontal"
441
+ msgstr ""
442
+
443
+ #: admin/controllers/WidgetSlideshow.php:46 admin/views/Options.php:1062
444
+ msgid "Cube Vertical"
445
+ msgstr ""
446
+
447
+ #: admin/controllers/WidgetSlideshow.php:47 admin/views/Options.php:1063
448
+ msgid "Fade"
449
+ msgstr ""
450
+
451
+ #: admin/controllers/WidgetSlideshow.php:48 admin/views/Options.php:1064
452
+ msgid "Slice Horizontal"
453
+ msgstr ""
454
+
455
+ #: admin/controllers/WidgetSlideshow.php:49 admin/views/Options.php:1065
456
+ msgid "Slice Vertical"
457
+ msgstr ""
458
+
459
+ #: admin/controllers/WidgetSlideshow.php:50 admin/views/Options.php:1066
460
+ msgid "Slide Horizontal"
461
+ msgstr ""
462
+
463
+ #: admin/controllers/WidgetSlideshow.php:51 admin/views/Options.php:1067
464
+ msgid "Slide Vertical"
465
+ msgstr ""
466
+
467
+ #: admin/controllers/WidgetSlideshow.php:52 admin/views/Options.php:1068
468
+ msgid "Scale Out"
469
+ msgstr ""
470
+
471
+ #: admin/controllers/WidgetSlideshow.php:53 admin/views/Options.php:1069
472
+ msgid "Scale In"
473
+ msgstr ""
474
+
475
+ #: admin/controllers/WidgetSlideshow.php:54 admin/views/Options.php:1070
476
+ msgid "Block Scale"
477
+ msgstr ""
478
+
479
+ #: admin/controllers/WidgetSlideshow.php:55 admin/views/Options.php:1071
480
+ msgid "Kaleidoscope"
481
+ msgstr ""
482
+
483
+ #: admin/controllers/WidgetSlideshow.php:56 admin/views/Options.php:1072
484
+ msgid "Fan"
485
+ msgstr ""
486
+
487
+ #: admin/controllers/WidgetSlideshow.php:57 admin/views/Options.php:1073
488
+ msgid "Blind Horizontal"
489
+ msgstr ""
490
+
491
+ #: admin/controllers/WidgetSlideshow.php:58 admin/views/Options.php:1074
492
+ msgid "Blind Vertical"
493
+ msgstr ""
494
+
495
+ #: admin/controllers/WidgetSlideshow.php:59 admin/views/Options.php:1075
496
+ #: admin/views/Options.php:1151 admin/views/Options.php:1369
497
+ #: admin/views/Options.php:1605 admin/views/Options.php:1802
498
+ #: admin/views/Options.php:2042 admin/views/Options.php:2201
499
+ #: admin/views/Options.php:2378 admin/views/Options.php:2563
500
+ #: admin/views/Options.php:2585 admin/views/Options.php:2863
501
+ #: admin/views/Options.php:2885 admin/views/Options.php:3103
502
+ #: admin/views/Options.php:3125 admin/views/Widget.php:159
503
+ #: frontend/views/view.php:433
504
+ msgid "Random"
505
+ msgstr "عشوائية"
506
+
507
  #: admin/controllers/WidgetTags.php:14
508
  msgid "Add Photo Gallery Tags dynamic cloud to Your widget area."
509
  msgstr ""
510
 
511
+ #: admin/controllers/elementorWidget.php:36 admin/views/Albumsgalleries.php:119
512
+ #: admin/views/Shortcode.php:57 admin/views/Shortcode.php:186
513
+ #: admin/views/Shortcode.php:264 admin/views/Widget.php:120
514
+ msgid "Gallery"
515
+ msgstr ""
516
+
517
+ #: admin/controllers/elementorWidget.php:68 admin/views/Options.php:74
518
+ #: photo-gallery.php:417
519
+ msgid "General"
520
+ msgstr ""
521
+
522
+ #: admin/models/Comments.php:62 admin/models/Ratings.php:81
523
+ #: framework/WDWLibrary.php:2751
524
  msgid "All galleries"
525
  msgstr ""
526
 
527
+ #: admin/models/Comments.php:76 admin/models/Ratings.php:100
528
+ #: admin/views/Widget.php:126 framework/WDWLibrary.php:2732
529
  msgid "All images"
530
  msgstr ""
531
 
532
+ #: admin/models/Galleries.php:1220 admin/views/Galleries.php:760
533
+ msgid ""
534
+ "Selected pricelist item longest dimension greater than some original images "
535
+ "dimensions."
536
+ msgstr ""
537
+
538
+ #: admin/views/AddTags.php:66 admin/views/Albums.php:58
539
+ #: admin/views/Comments.php:65 admin/views/Themes.php:77 photo-gallery.php:1436
540
  msgid "Select all"
541
  msgstr ""
542
 
543
+ #: admin/views/AddTags.php:69 admin/views/AddTags.php:87
544
+ #: admin/views/Comments.php:69 admin/views/Comments.php:90
545
+ #: filemanager/view.php:135 frontend/views/BWGViewGalleryBox.php:994
546
+ #: frontend/views/BWGViewGalleryBox.php:1112
547
+ #: frontend/views/BWGViewGalleryBox.php:1226
 
 
 
 
548
  msgid "Name"
549
  msgstr "الاسم"
550
 
551
+ #: admin/views/AddTags.php:108
552
+ #, fuzzy
553
+ #| msgid "Reset"
554
+ msgid "Remove from image"
555
+ msgstr "إعادة تعيين"
556
+
557
+ #: admin/views/AddTags.php:109
558
  msgid "Add to image"
559
  msgstr ""
560
 
561
+ #: admin/views/AdminView.php:95
562
  msgid "Add New"
563
  msgstr ""
564
 
565
+ #: admin/views/AdminView.php:198 framework/WDWLibrary.php:349
566
+ #: framework/WDWLibrary.php:527 photo-gallery.php:1412
 
567
  msgid "Search"
568
  msgstr "البحث"
569
 
570
+ #: admin/views/AdminView.php:260
571
  #, fuzzy
572
  #| msgid "First"
573
  msgid "First page"
574
  msgstr " أولا"
575
 
576
+ #: admin/views/AdminView.php:261
577
  #, fuzzy
578
  #| msgid "Previous"
579
  msgid "Previous page"
580
  msgstr "  السابقة"
581
 
582
+ #: admin/views/AdminView.php:266
583
  msgid "Current Page"
584
  msgstr ""
585
 
586
+ #: admin/views/AdminView.php:269 framework/WDWLibrary.php:480
587
+ #: framework/WDWLibrary.php:629 frontend/views/view.php:663
588
  msgid "of"
589
  msgstr "  من"
590
 
591
+ #: admin/views/AdminView.php:282
592
  #, fuzzy
593
  #| msgid "Next"
594
  msgid "Next page"
595
  msgstr "المقبل"
596
 
597
+ #: admin/views/AdminView.php:283
598
  #, fuzzy
599
  #| msgid "Last"
600
  msgid "Last page"
601
  msgstr "آخر"
602
 
603
+ #: admin/views/AdminView.php:315 filemanager/view.php:205
604
  msgid "Select All"
605
  msgstr ""
606
 
607
+ #: admin/views/AdminView.php:320
608
  msgid "Select bulk action"
609
  msgstr ""
610
 
611
+ #: admin/views/AdminView.php:322
612
  msgid "Bulk Actions"
613
  msgstr ""
614
 
615
+ #: admin/views/AdminView.php:331 admin/views/Galleries.php:398
616
+ #: admin/views/Galleries.php:726 admin/views/Galleries.php:727
617
+ #: admin/views/Galleries.php:728 admin/views/Options.php:157
618
+ #: admin/views/Options.php:957 admin/views/Options.php:960
619
+ #: filemanager/view.php:66
620
+ msgid "This option is disabled in demo."
621
+ msgstr ""
622
+
623
+ #: admin/views/AdminView.php:331
624
  msgid "Apply"
625
  msgstr ""
626
 
627
+ #: admin/views/Albums.php:61 admin/views/Albums.php:97
628
+ #: admin/views/Albumsgalleries.php:78 admin/views/Albumsgalleries.php:102
629
+ #: admin/views/Galleries.php:60 admin/views/Galleries.php:63
630
+ #: admin/views/Galleries.php:104 admin/views/Options.php:1145
631
+ #: admin/views/Options.php:1363 admin/views/Options.php:1599
632
+ #: admin/views/Options.php:1796 admin/views/Options.php:2036
633
+ #: admin/views/Options.php:2195 admin/views/Options.php:2372
634
+ #: admin/views/Options.php:2562 admin/views/Options.php:2579
635
+ #: admin/views/Options.php:2862 admin/views/Options.php:2879
636
+ #: admin/views/Options.php:3102 admin/views/Options.php:3119
637
+ #: admin/views/Themes.php:80 admin/views/Themes.php:99
638
  msgid "Title"
639
  msgstr ""
640
 
641
+ #: admin/views/Albums.php:62 admin/views/Albums.php:120
642
+ #: admin/views/Albums.php:241 admin/views/Galleries.php:65
643
+ #: admin/views/Galleries.php:127 admin/views/Galleries.php:281
644
  msgid "Author"
645
  msgstr ""
646
 
647
+ #: admin/views/Albums.php:106 admin/views/Albums.php:333
648
+ #: admin/views/Albumsgalleries.php:111 admin/views/Comments.php:102
649
+ #: admin/views/Galleries.php:113 admin/views/Galleries.php:718
650
  msgid "Unpublished"
651
  msgstr ""
652
 
653
+ #: admin/views/Albums.php:110 admin/views/Editimage.php:325
654
+ #: admin/views/Galleries.php:117 admin/views/Galleries.php:726
655
+ #: admin/views/Themes.php:104
656
+ msgid "Edit"
657
+ msgstr ""
658
+
659
+ #: admin/views/Albums.php:113 admin/views/Comments.php:112
660
+ #: admin/views/Galleries.php:119 admin/views/Galleries.php:732
661
+ #: admin/views/Ratings.php:84 admin/views/Themes.php:106
662
  msgid "Do you want to delete selected item?"
663
  msgstr ""
664
 
665
+ #: admin/views/Albums.php:114 admin/views/Albums.php:186
666
+ #: admin/views/Galleries.php:120 admin/views/Galleries.php:217
667
  #, fuzzy
668
  #| msgid "Previous"
669
  msgid "Preview"
670
  msgstr "  السابقة"
671
 
672
+ #: admin/views/Albums.php:117 admin/views/Albumsgalleries.php:115
673
+ #: admin/views/Comments.php:115 admin/views/Galleries.php:123
674
+ #: admin/views/Galleries.php:742 admin/views/Ratings.php:87
675
+ #: admin/views/Themes.php:109
676
  #, fuzzy
677
  #| msgid "Show comments"
678
  msgid "Show more details"
679
  msgstr "تظهر التعليقات"
680
 
681
+ #: admin/views/Albums.php:174
682
  msgid "Gallery Group Title"
683
  msgstr ""
684
 
685
+ #: admin/views/Albums.php:183 admin/views/Galleries.php:213
686
+ #: admin/views/Shortcode.php:576 admin/views/Shortcode.php:2126
687
+ #: admin/views/Themes.php:181
 
 
 
 
 
688
  msgid "Update"
689
  msgstr ""
690
 
691
+ #: admin/views/Albums.php:197 admin/views/Albums.php:233
692
+ #: admin/views/Galleries.php:229 admin/views/Galleries.php:270
693
+ #: admin/views/Options.php:528 admin/views/Options.php:596
694
+ #: admin/views/Options.php:664 admin/views/Shortcode.php:260
695
+ #: admin/views/Shortcode.php:275
696
+ msgid "Toggle panel:"
697
  msgstr ""
698
 
699
+ #: admin/views/Albums.php:201 admin/views/Galleries.php:233
700
+ msgid "Basic"
701
+ msgstr ""
702
+
703
+ #: admin/views/Albums.php:206 admin/views/Galleries.php:238
704
+ msgid "Preview image"
705
+ msgstr ""
706
+
707
+ #: admin/views/Albums.php:208 admin/views/Galleries.php:242
708
  msgid "Add Preview Image"
709
  msgstr ""
710
 
711
+ #: admin/views/Albums.php:209 admin/views/Albums.php:296
712
+ #: admin/views/Galleries.php:245 admin/views/Galleries.php:446
713
+ #: filemanager/view.php:213
714
  msgid "Add"
715
  msgstr ""
716
 
717
+ #: admin/views/Albums.php:214
718
+ msgid ""
719
+ "Add a preview image, which will be displayed as the cover image of the "
720
+ "gallery group when it is published in a parent gallery group."
721
  msgstr ""
722
 
723
+ #: admin/views/Albums.php:218 admin/views/Galleries.php:255
724
+ msgid "Published"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
725
  msgstr ""
726
 
727
+ #: admin/views/Albums.php:220 admin/views/Galleries.php:257
728
+ #: admin/views/Options.php:134 admin/views/Options.php:175
729
+ #: admin/views/Options.php:185 admin/views/Options.php:195
730
+ #: admin/views/Options.php:214 admin/views/Options.php:224
 
731
  #: admin/views/Options.php:234 admin/views/Options.php:244
732
+ #: admin/views/Options.php:256 admin/views/Options.php:267
733
+ #: admin/views/Options.php:277 admin/views/Options.php:287
734
+ #: admin/views/Options.php:297 admin/views/Options.php:307
735
+ #: admin/views/Options.php:317 admin/views/Options.php:335
736
+ #: admin/views/Options.php:341 admin/views/Options.php:628
737
+ #: admin/views/Options.php:639 admin/views/Options.php:650
738
+ #: admin/views/Options.php:1167 admin/views/Options.php:1193
739
+ #: admin/views/Options.php:1203 admin/views/Options.php:1215
740
+ #: admin/views/Options.php:1225 admin/views/Options.php:1246
741
+ #: admin/views/Options.php:1256 admin/views/Options.php:1385
742
+ #: admin/views/Options.php:1411 admin/views/Options.php:1421
743
+ #: admin/views/Options.php:1433 admin/views/Options.php:1443
744
+ #: admin/views/Options.php:1464 admin/views/Options.php:1475
745
+ #: admin/views/Options.php:1485 admin/views/Options.php:1532
746
+ #: admin/views/Options.php:1621 admin/views/Options.php:1647
747
+ #: admin/views/Options.php:1657 admin/views/Options.php:1669
748
+ #: admin/views/Options.php:1679 admin/views/Options.php:1699
749
+ #: admin/views/Options.php:1709 admin/views/Options.php:1818
750
+ #: admin/views/Options.php:1828 admin/views/Options.php:1838
751
+ #: admin/views/Options.php:1860 admin/views/Options.php:1881
752
+ #: admin/views/Options.php:1918 admin/views/Options.php:1928
753
+ #: admin/views/Options.php:1965 admin/views/Options.php:1984
754
+ #: admin/views/Options.php:2013 admin/views/Options.php:2022
755
+ #: admin/views/Options.php:2058 admin/views/Options.php:2084
756
+ #: admin/views/Options.php:2094 admin/views/Options.php:2106
757
+ #: admin/views/Options.php:2116 admin/views/Options.php:2126
758
+ #: admin/views/Options.php:2217 admin/views/Options.php:2243
759
+ #: admin/views/Options.php:2253 admin/views/Options.php:2265
760
+ #: admin/views/Options.php:2275 admin/views/Options.php:2285
761
+ #: admin/views/Options.php:2296 admin/views/Options.php:2307
762
+ #: admin/views/Options.php:2394 admin/views/Options.php:2417
763
+ #: admin/views/Options.php:2428 admin/views/Options.php:2439
764
+ #: admin/views/Options.php:2450 admin/views/Options.php:2461
765
+ #: admin/views/Options.php:2601 admin/views/Options.php:2627
766
+ #: admin/views/Options.php:2637 admin/views/Options.php:2649
767
+ #: admin/views/Options.php:2659 admin/views/Options.php:2707
768
+ #: admin/views/Options.php:2742 admin/views/Options.php:2752
769
+ #: admin/views/Options.php:2901 admin/views/Options.php:2927
770
+ #: admin/views/Options.php:2937 admin/views/Options.php:2949
771
+ #: admin/views/Options.php:2959 admin/views/Options.php:2980
772
+ #: admin/views/Options.php:3141 admin/views/Options.php:3167
773
+ #: admin/views/Options.php:3177 admin/views/Options.php:3189
774
+ #: admin/views/Options.php:3199 admin/views/Options.php:3209
775
+ #: admin/views/Options.php:3246 admin/views/Options.php:3281
776
+ #: admin/views/Options.php:3291 admin/views/Options.php:3345
777
+ #: admin/views/Options.php:3356 admin/views/Options.php:3405
778
+ #: admin/views/Options.php:3424 admin/views/Options.php:3460
779
+ #: admin/views/Options.php:3483 admin/views/Options.php:3495
780
+ #: admin/views/Options.php:3508 admin/views/Options.php:3519
781
+ #: admin/views/Options.php:3530 admin/views/Options.php:3541
782
+ #: admin/views/Options.php:3551 admin/views/Options.php:3561
783
+ #: admin/views/Options.php:3581 admin/views/Options.php:3592
784
+ #: admin/views/Options.php:3605 admin/views/Options.php:3615
785
+ #: admin/views/Options.php:3625 admin/views/Options.php:3635
786
+ #: admin/views/Options.php:3645 admin/views/Options.php:3666
787
+ #: admin/views/Options.php:3677 admin/views/Options.php:3688
788
+ #: admin/views/Options.php:3699 admin/views/Options.php:3713
789
+ #: admin/views/Themes.php:221 admin/views/Themes.php:298
790
+ #: admin/views/Themes.php:543 admin/views/Themes.php:607
791
+ #: admin/views/Themes.php:865 admin/views/Themes.php:929
792
+ #: admin/views/Themes.php:1920 admin/views/Themes.php:1998
793
+ #: admin/views/Themes.php:2341 admin/views/Themes.php:2930
794
+ #: admin/views/Themes.php:2994 admin/views/Themes.php:4702
795
+ #: admin/views/Themes.php:4751 admin/views/Uninstall.php:77
796
+ #: admin/views/WidgetSlideshow.php:114 admin/views/WidgetSlideshow.php:120
797
+ #: admin/views/WidgetSlideshow.php:126 admin/views/WidgetTags.php:89
798
+ #: admin/views/WidgetTags.php:111
799
+ msgid "Yes"
800
  msgstr ""
801
 
802
+ #: admin/views/Albums.php:222 admin/views/Galleries.php:259
803
+ #: admin/views/Options.php:135 admin/views/Options.php:176
804
+ #: admin/views/Options.php:186 admin/views/Options.php:196
805
+ #: admin/views/Options.php:215 admin/views/Options.php:225
806
+ #: admin/views/Options.php:235 admin/views/Options.php:245
807
+ #: admin/views/Options.php:257 admin/views/Options.php:268
808
+ #: admin/views/Options.php:278 admin/views/Options.php:288
809
+ #: admin/views/Options.php:298 admin/views/Options.php:308
810
+ #: admin/views/Options.php:318 admin/views/Options.php:336
811
+ #: admin/views/Options.php:342 admin/views/Options.php:629
812
+ #: admin/views/Options.php:640 admin/views/Options.php:651
813
+ #: admin/views/Options.php:1168 admin/views/Options.php:1194
814
+ #: admin/views/Options.php:1204 admin/views/Options.php:1216
815
+ #: admin/views/Options.php:1226 admin/views/Options.php:1247
816
+ #: admin/views/Options.php:1257 admin/views/Options.php:1386
817
+ #: admin/views/Options.php:1412 admin/views/Options.php:1422
818
+ #: admin/views/Options.php:1434 admin/views/Options.php:1444
819
+ #: admin/views/Options.php:1465 admin/views/Options.php:1476
820
+ #: admin/views/Options.php:1486 admin/views/Options.php:1533
821
+ #: admin/views/Options.php:1622 admin/views/Options.php:1648
822
+ #: admin/views/Options.php:1658 admin/views/Options.php:1670
823
+ #: admin/views/Options.php:1680 admin/views/Options.php:1700
824
+ #: admin/views/Options.php:1710 admin/views/Options.php:1819
825
+ #: admin/views/Options.php:1829 admin/views/Options.php:1839
826
+ #: admin/views/Options.php:1861 admin/views/Options.php:1882
827
+ #: admin/views/Options.php:1919 admin/views/Options.php:1929
828
+ #: admin/views/Options.php:1966 admin/views/Options.php:1985
829
+ #: admin/views/Options.php:2014 admin/views/Options.php:2023
830
+ #: admin/views/Options.php:2059 admin/views/Options.php:2085
831
+ #: admin/views/Options.php:2095 admin/views/Options.php:2107
832
+ #: admin/views/Options.php:2117 admin/views/Options.php:2127
833
+ #: admin/views/Options.php:2218 admin/views/Options.php:2244
834
+ #: admin/views/Options.php:2254 admin/views/Options.php:2266
835
+ #: admin/views/Options.php:2276 admin/views/Options.php:2286
836
+ #: admin/views/Options.php:2297 admin/views/Options.php:2308
837
+ #: admin/views/Options.php:2395 admin/views/Options.php:2418
838
+ #: admin/views/Options.php:2429 admin/views/Options.php:2440
839
+ #: admin/views/Options.php:2451 admin/views/Options.php:2462
840
+ #: admin/views/Options.php:2525 admin/views/Options.php:2602
841
+ #: admin/views/Options.php:2628 admin/views/Options.php:2638
842
+ #: admin/views/Options.php:2650 admin/views/Options.php:2660
843
+ #: admin/views/Options.php:2708 admin/views/Options.php:2743
844
+ #: admin/views/Options.php:2753 admin/views/Options.php:2825
845
+ #: admin/views/Options.php:2902 admin/views/Options.php:2928
846
+ #: admin/views/Options.php:2938 admin/views/Options.php:2950
847
+ #: admin/views/Options.php:2960 admin/views/Options.php:2981
848
+ #: admin/views/Options.php:3065 admin/views/Options.php:3142
849
+ #: admin/views/Options.php:3168 admin/views/Options.php:3178
850
+ #: admin/views/Options.php:3190 admin/views/Options.php:3200
851
+ #: admin/views/Options.php:3210 admin/views/Options.php:3247
852
+ #: admin/views/Options.php:3282 admin/views/Options.php:3292
853
+ #: admin/views/Options.php:3346 admin/views/Options.php:3357
854
+ #: admin/views/Options.php:3406 admin/views/Options.php:3425
855
+ #: admin/views/Options.php:3474 admin/views/Options.php:3484
856
+ #: admin/views/Options.php:3498 admin/views/Options.php:3509
857
+ #: admin/views/Options.php:3520 admin/views/Options.php:3531
858
+ #: admin/views/Options.php:3542 admin/views/Options.php:3552
859
+ #: admin/views/Options.php:3562 admin/views/Options.php:3582
860
+ #: admin/views/Options.php:3593 admin/views/Options.php:3606
861
+ #: admin/views/Options.php:3616 admin/views/Options.php:3626
862
+ #: admin/views/Options.php:3636 admin/views/Options.php:3646
863
+ #: admin/views/Options.php:3667 admin/views/Options.php:3678
864
+ #: admin/views/Options.php:3689 admin/views/Options.php:3700
865
+ #: admin/views/Options.php:3714 admin/views/Themes.php:223
866
+ #: admin/views/Themes.php:300 admin/views/Themes.php:545
867
+ #: admin/views/Themes.php:609 admin/views/Themes.php:867
868
+ #: admin/views/Themes.php:931 admin/views/Themes.php:1922
869
+ #: admin/views/Themes.php:2000 admin/views/Themes.php:2343
870
+ #: admin/views/Themes.php:2932 admin/views/Themes.php:2996
871
+ #: admin/views/Themes.php:4704 admin/views/Themes.php:4753
872
+ #: admin/views/WidgetSlideshow.php:115 admin/views/WidgetSlideshow.php:121
873
+ #: admin/views/WidgetSlideshow.php:127 admin/views/WidgetTags.php:90
874
+ #: admin/views/WidgetTags.php:112
875
+ msgid "No"
876
  msgstr ""
877
 
878
+ #: admin/views/Albums.php:237 admin/views/Galleries.php:274
879
+ #: admin/views/Options.php:86 admin/views/Shortcode.php:293
880
  msgid "Advanced"
881
  msgstr ""
882
 
883
+ #: admin/views/Albums.php:245 admin/views/Galleries.php:285
884
  msgid "Slug"
885
  msgstr ""
886
 
887
+ #: admin/views/Albums.php:250 admin/views/Galleries.php:290
888
+ #: admin/views/Galleries.php:752 frontend/views/BWGViewGalleryBox.php:1127
 
889
  msgid "Description"
890
  msgstr ""
891
 
892
+ #: admin/views/Albums.php:277
893
+ msgid "Galleries and Gallery Groups"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
894
  msgstr ""
895
 
896
+ #: admin/views/Albums.php:324 admin/views/Galleries.php:97
897
+ #: admin/views/Galleries.php:694
898
  msgid "Drag to re-order"
899
  msgstr ""
900
 
901
+ #: admin/views/Albums.php:332
902
  msgid "Remove"
903
  msgstr ""
904
 
905
+ #: admin/views/Albumsgalleries.php:79 admin/views/Albumsgalleries.php:118
906
+ #: admin/views/Galleries.php:714 admin/views/Options.php:1149
907
+ #: admin/views/Options.php:1367 admin/views/Options.php:1603
908
+ #: admin/views/Options.php:1800 admin/views/Options.php:2040
909
+ #: admin/views/Options.php:2199 admin/views/Options.php:2376
910
+ #: admin/views/Options.php:2583 admin/views/Options.php:2883
911
+ #: admin/views/Options.php:3123
912
  msgid "Type"
913
  msgstr ""
914
 
915
+ #: admin/views/Albumsgalleries.php:119 admin/views/Shortcode.php:60
916
+ #: admin/views/Shortcode.php:264
917
  #, fuzzy
918
  #| msgid "Gallery is empty."
919
  msgid "Gallery group"
920
  msgstr "  معرض فارغة"
921
 
922
+ #: admin/views/Albumsgalleries.php:137
 
 
 
 
 
 
923
  msgid "Add to Gallery Group"
924
  msgstr ""
925
 
926
+ #: admin/views/Comments.php:70 admin/views/Comments.php:118
927
+ #: frontend/views/BWGViewGalleryBox.php:1000
 
 
928
  msgid "Email"
929
  msgstr "مينا "
930
 
931
+ #: admin/views/Comments.php:71 admin/views/Comments.php:121
932
+ #: frontend/views/BWGViewGalleryBox.php:1005
 
 
933
  msgid "Comment"
934
  msgstr "التعليق"
935
 
936
+ #: admin/views/Comments.php:72 admin/views/Comments.php:124
937
+ #: admin/views/Galleries.php:711 admin/views/Options.php:1146
938
+ #: admin/views/Options.php:1364 admin/views/Options.php:1600
939
+ #: admin/views/Options.php:1797 admin/views/Options.php:2037
940
+ #: admin/views/Options.php:2196 admin/views/Options.php:2373
941
+ #: admin/views/Options.php:2580 admin/views/Options.php:2880
942
+ #: admin/views/Options.php:3120 admin/views/Ratings.php:60
943
+ #: admin/views/Ratings.php:92 frontend/views/view.php:424
944
+ msgid "Date"
945
  msgstr ""
946
 
947
+ #: admin/views/Editimage.php:215
948
+ msgid "You can't crop this type of image."
949
  msgstr ""
950
 
951
+ #: admin/views/Editimage.php:295
952
  msgid "Select the area for the thumbnail."
953
  msgstr ""
954
 
955
+ #: admin/views/Editimage.php:300
956
  msgid "Keep aspect ratio"
957
  msgstr ""
958
 
959
+ #: admin/views/Editimage.php:311
960
+ msgid "Crop"
961
+ msgstr ""
962
+
963
+ #: admin/views/Editimage.php:321
964
+ msgid "The thumbnail was successfully cropped."
965
+ msgstr ""
966
+
967
+ #: admin/views/Editimage.php:803
968
  msgid "Grayscale"
969
  msgstr ""
970
 
971
+ #: admin/views/Editimage.php:807
972
  msgid "Negative"
973
  msgstr ""
974
 
975
+ #: admin/views/Editimage.php:811
976
  msgid "Removal"
977
  msgstr ""
978
 
979
+ #: admin/views/Editimage.php:815
980
  msgid "Sepia"
981
  msgstr ""
982
 
983
+ #: admin/views/Editimage.php:819
984
  msgid "Slate"
985
  msgstr ""
986
 
987
+ #: admin/views/Editimage.php:823
988
  msgid "Saturate"
989
  msgstr ""
990
 
991
+ #: admin/views/Editimage.php:827 admin/views/Galleries.php:728
992
  msgid "Do you want to reset the image?"
993
  msgstr ""
994
 
995
+ #: admin/views/Editimage.php:829
996
  #, fuzzy
997
  #| msgid "Reset"
998
  msgid "Reset image"
999
  msgstr "إعادة تعيين"
1000
 
1001
+ #: admin/views/Editimage.php:855
1002
  msgid "Brightness"
1003
  msgstr ""
1004
 
1005
+ #: admin/views/Editimage.php:857 admin/views/Editimage.php:882
1006
  msgid "Press for result"
1007
  msgstr ""
1008
 
1009
+ #: admin/views/Editimage.php:880
1010
  msgid "Contrast"
1011
  msgstr ""
1012
 
1013
+ #: admin/views/Galleries.php:58 admin/views/Galleries.php:622
1014
+ msgid "Drag&Drop"
1015
+ msgstr ""
1016
+
1017
+ #: admin/views/Galleries.php:64 admin/views/Galleries.php:126
1018
  msgid "Images count"
1019
  msgstr ""
1020
 
1021
+ #: admin/views/Galleries.php:200
1022
  #, fuzzy
1023
  #| msgid "Gallery is empty."
1024
  msgid "Gallery title"
1025
  msgstr "  معرض فارغة"
1026
 
1027
+ #: admin/views/Galleries.php:252
1028
+ msgid ""
1029
+ "Add a preview image, which will be displayed as the cover image of the "
1030
+ "gallery when it is published in a gallery group."
1031
  msgstr ""
1032
 
1033
+ #: admin/views/Galleries.php:316
1034
  msgid "Gallery content type"
1035
  msgstr ""
1036
 
1037
+ #: admin/views/Galleries.php:330
1038
+ msgid ""
1039
+ "Select the type of gallery content. Mixed galleries can include all "
1040
+ "supported items. Alternatively, you can showcase images from one specific "
1041
+ "source only."
 
1042
  msgstr ""
1043
 
1044
+ #: admin/views/Galleries.php:332
1045
+ msgid ""
1046
+ "Gallery type cannot be changed, as it is not empty. If you would like to "
1047
+ "show images from another source, please create a new gallery."
 
 
 
 
1048
  msgstr ""
1049
 
1050
+ #: admin/views/Galleries.php:338
1051
  msgid "Number of Instagram recent posts to add to gallery"
1052
  msgstr ""
1053
 
1054
+ #: admin/views/Galleries.php:342
1055
  msgid "Instagram embed type"
1056
  msgstr ""
1057
 
1058
+ #: admin/views/Galleries.php:344 admin/views/Galleries.php:496
1059
  msgid "Content"
1060
  msgstr ""
1061
 
1062
+ #: admin/views/Galleries.php:346 admin/views/Galleries.php:498
1063
  msgid "Whole post"
1064
  msgstr ""
1065
 
1066
+ #: admin/views/Galleries.php:349
1067
  #, fuzzy
1068
  #| msgid "Photo gallery plugin autoupdate interval."
1069
  msgid "Gallery autoupdate option"
1070
  msgstr "معرض الصور المساعد الفاصل الزمني للتحديث التلقائي."
1071
 
1072
+ #: admin/views/Galleries.php:351
1073
  msgid "No update"
1074
  msgstr ""
1075
 
1076
+ #: admin/views/Galleries.php:353
1077
  msgid "Add new media, keep old ones published."
1078
  msgstr ""
1079
 
1080
+ #: admin/views/Galleries.php:355
1081
  msgid "Add new media, unpublish old ones."
1082
  msgstr ""
1083
 
1084
+ #: admin/views/Galleries.php:358
1085
  msgid "Add Instagram Gallery"
1086
  msgstr ""
1087
 
1088
+ #: admin/views/Galleries.php:367
1089
  msgid "Photo Gallery Facebook Integration"
1090
  msgstr ""
1091
 
1092
+ #: admin/views/Galleries.php:368
1093
  #, php-format
1094
  msgid "Please install %s add-on to use this feature."
1095
  msgstr ""
1096
 
1097
+ #: admin/views/Galleries.php:395 admin/views/Galleries.php:396
1098
  msgid "Add Images"
1099
  msgstr ""
1100
 
1101
+ #: admin/views/Galleries.php:398
1102
  msgid "Import from Media Library"
1103
  msgstr ""
1104
 
1105
+ #: admin/views/Galleries.php:405 admin/views/Galleries.php:407
1106
  msgid "Embed Media"
1107
  msgstr ""
1108
 
1109
+ #: admin/views/Galleries.php:408 admin/views/Galleries.php:410
1110
  msgid "Social Bulk Embed"
1111
  msgstr ""
1112
 
1113
+ #: admin/views/Galleries.php:410 photo-gallery.php:108
1114
+ msgid "This option is disabled in free version."
 
 
 
 
 
 
 
 
1115
  msgstr ""
1116
 
1117
+ #: admin/views/Galleries.php:413
1118
+ msgid "Optimize Images"
1119
  msgstr ""
1120
 
1121
+ #: admin/views/Galleries.php:429
1122
+ msgid "Enter YouTube, Vimeo, Instagram, Flickr or Dailymotion URL here."
 
1123
  msgstr ""
1124
 
1125
+ #: admin/views/Galleries.php:430 admin/views/Galleries.php:466
1126
  msgid "Add to gallery"
1127
  msgstr ""
1128
 
1129
+ #: admin/views/Galleries.php:431 admin/views/Galleries.php:465
1130
+ #: admin/views/Galleries.php:522 admin/views/Galleries.php:543
1131
+ #: admin/views/Galleries.php:562 admin/views/Galleries.php:582
1132
+ #: filemanager/view.php:218 filemanager/view.php:219 photo-gallery.php:1435
1133
  msgid "Cancel"
1134
  msgstr ""
1135
 
1136
+ #: admin/views/Galleries.php:436
1137
  msgid "<b>Youtube</b> URL example:"
1138
  msgstr ""
1139
 
1140
+ #: admin/views/Galleries.php:440
1141
  msgid "<b>Vimeo</b> URL example:"
1142
  msgstr ""
1143
 
1144
+ #: admin/views/Galleries.php:444
1145
  msgid "<b>Instagram</b> URL example:"
1146
  msgstr ""
1147
 
1148
+ #: admin/views/Galleries.php:446
1149
  msgid "post"
1150
  msgstr ""
1151
 
1152
+ #: admin/views/Galleries.php:446
1153
  msgid ""
1154
  "to the end of URL if you want to embed the whole Instagram post, not only "
1155
  "its content."
1156
  msgstr ""
1157
 
1158
+ #: admin/views/Galleries.php:454
1159
  msgid "<b>Flickr</b> URL example:"
1160
  msgstr ""
1161
 
1162
+ #: admin/views/Galleries.php:458
1163
  msgid "<b>Dailymotion</b> URL example:"
1164
  msgstr ""
1165
 
1166
+ #: admin/views/Galleries.php:477
1167
  msgid "username:"
1168
  msgstr ""
1169
 
1170
+ #: admin/views/Galleries.php:485
1171
  msgid "Number of Instagram recent posts to add to gallery:"
1172
  msgstr ""
1173
 
1174
+ #: admin/views/Galleries.php:493
1175
  msgid "embed type:"
1176
  msgstr ""
1177
 
1178
+ #: admin/views/Galleries.php:512
1179
  msgid "Resize images to: "
1180
  msgstr ""
1181
 
1182
+ #: admin/views/Galleries.php:515
1183
  msgid "The maximum size of resized image."
1184
  msgstr ""
1185
 
1186
+ #: admin/views/Galleries.php:521 framework/WDWLibrary.php:2422
1187
+ msgid "Resize"
1188
+ msgstr ""
1189
+
1190
+ #: admin/views/Galleries.php:532
1191
  msgid "Alt/Title: "
1192
  msgstr ""
1193
 
1194
+ #: admin/views/Galleries.php:535
1195
+ msgid "Leave blank and click to \"Save changes\" to delete Alt/Titles."
1196
+ msgstr ""
1197
+
1198
+ #: admin/views/Galleries.php:542 admin/views/Galleries.php:561
1199
+ #: admin/views/Galleries.php:581
1200
+ msgid "Save changes"
1201
+ msgstr ""
1202
+
1203
+ #: admin/views/Galleries.php:551
1204
  msgid "Redirect URL: "
1205
  msgstr ""
1206
 
1207
+ #: admin/views/Galleries.php:554
1208
+ msgid "Leave blank and click to \"Save changes\" to delete Redirect URLs."
1209
+ msgstr ""
1210
+
1211
+ #: admin/views/Galleries.php:570
1212
  msgid "Description: "
1213
  msgstr ""
1214
 
1215
+ #: admin/views/Galleries.php:573
1216
+ msgid "Leave blank and click to \"Save changes\" to delete Descriptions."
1217
+ msgstr ""
1218
+
1219
+ #: admin/views/Galleries.php:599
1220
  #, fuzzy
1221
  #| msgid "You have already rated."
1222
  msgid "You have unsaved changes."
1223
  msgstr "لقد تقييما بالفعل"
1224
 
1225
+ #: admin/views/Galleries.php:604
1226
+ msgid ""
1227
+ "This sorting does not affect the published galleries. You can change the "
1228
+ "ordering on frontend by editing gallery shortcode or Photo Gallery Options."
1229
+ msgstr ""
1230
+
1231
+ #: admin/views/Galleries.php:621 photo-gallery.php:616
1232
  #, fuzzy
1233
  #| msgid "Show comments"
1234
  msgid "Show order column"
1235
  msgstr "تظهر التعليقات"
1236
 
1237
+ #: admin/views/Galleries.php:623
1238
+ msgid "Numerate"
 
 
 
 
 
 
 
 
1239
  msgstr ""
1240
 
1241
+ #: admin/views/Galleries.php:629
1242
+ #, fuzzy
1243
+ #| msgid "Order by: "
1244
+ msgid "Ordering"
1245
+ msgstr "ترتيب حسب"
1246
 
1247
+ #: admin/views/Galleries.php:635 admin/views/Galleries.php:702
1248
+ #: admin/views/Options.php:1147 admin/views/Options.php:1365
1249
+ #: admin/views/Options.php:1601 admin/views/Options.php:1798
1250
+ #: admin/views/Options.php:2038 admin/views/Options.php:2197
1251
+ #: admin/views/Options.php:2374 admin/views/Options.php:2581
1252
+ #: admin/views/Options.php:2881 admin/views/Options.php:3121
1253
+ #: frontend/views/view.php:427
1254
+ msgid "Filename"
1255
+ msgstr "اسم الملف"
1256
 
1257
+ #: admin/views/Galleries.php:640 admin/views/Options.php:681
1258
+ #: admin/views/Options.php:834 admin/views/Ratings.php:57
1259
+ #: admin/views/Ratings.php:74 admin/views/Shortcode.php:301
1260
+ #: admin/views/WidgetTags.php:84
1261
+ msgid "Image"
1262
  msgstr ""
1263
 
1264
+ #: admin/views/Galleries.php:712 admin/views/Options.php:1150
1265
+ #: admin/views/Options.php:1368 admin/views/Options.php:1604
1266
+ #: admin/views/Options.php:1801 admin/views/Options.php:2041
1267
+ #: admin/views/Options.php:2200 admin/views/Options.php:2377
1268
+ #: admin/views/Options.php:2584 admin/views/Options.php:2884
1269
+ #: admin/views/Options.php:3124
1270
  msgid "Resolution"
1271
  msgstr ""
1272
 
1273
+ #: admin/views/Galleries.php:713 admin/views/Options.php:1148
1274
+ #: admin/views/Options.php:1366 admin/views/Options.php:1602
1275
+ #: admin/views/Options.php:1799 admin/views/Options.php:2039
1276
+ #: admin/views/Options.php:2198 admin/views/Options.php:2375
1277
+ #: admin/views/Options.php:2582 admin/views/Options.php:2882
1278
+ #: admin/views/Options.php:3122 filemanager/view.php:151
1279
+ #: frontend/views/view.php:430
1280
  msgid "Size"
1281
  msgstr "حجم"
1282
 
1283
+ #: admin/views/Galleries.php:726 admin/views/Galleries.php:727
1284
+ #: admin/views/Options.php:157 admin/views/Options.php:957
1285
+ #: admin/views/Options.php:960
1286
+ msgid "Image edit functionality is not supported by your web host."
1287
  msgstr ""
1288
 
1289
+ #: admin/views/Galleries.php:727
1290
+ msgid "Crop Thumbnail"
1291
  msgstr ""
1292
 
1293
+ #: admin/views/Galleries.php:728 admin/views/Themes.php:191
1294
+ #: framework/WDWLibrary.php:350 framework/WDWLibrary.php:528
1295
+ #: framework/WDWLibrary.php:2447 frontend/views/view.php:377
1296
+ msgid "Reset"
1297
+ msgstr "إعادة تعيين"
1298
+
1299
+ #: admin/views/Galleries.php:748
1300
+ msgid "Alt/Title"
1301
  msgstr ""
1302
 
1303
+ #: admin/views/Galleries.php:770
1304
+ msgid "Redirect URL"
1305
  msgstr ""
1306
 
1307
+ #: admin/views/Galleries.php:774
1308
+ msgid "Options > General"
1309
  msgstr ""
1310
 
1311
+ #: admin/views/Galleries.php:775
1312
+ #, php-format
1313
+ msgid ""
1314
+ "To activate this feature, go to %s, then set \"Image click action\" to "
1315
+ "\"Redirect to URL\". Please use absolute URLs when specifying the links."
1316
  msgstr ""
1317
 
1318
+ #: admin/views/Galleries.php:793
1319
+ msgid "Remove tag"
1320
  msgstr ""
1321
 
1322
+ #: admin/views/Galleries.php:803
1323
+ msgid "Add tag"
1324
+ msgstr ""
1325
+
1326
+ #: admin/views/LibSubscribe.php:12
1327
  msgid ""
1328
+ "Hey! I know how hard and time-consuming creating a well-structured gallery "
1329
+ "can be."
1330
  msgstr ""
1331
 
1332
+ #: admin/views/LibSubscribe.php:19
1333
+ msgid "Name is required."
1334
  msgstr ""
1335
 
1336
+ #: admin/views/LibSubscribe.php:20
1337
+ #, fuzzy
1338
+ #| msgid "This is not a valid email address."
1339
+ msgid "Please enter a valid email."
1340
+ msgstr "هذا ليس عنوان بريد إلكتروني صحيح."
1341
+
1342
+ #: admin/views/LibSubscribe.php:62
1343
+ msgid ""
1344
+ "So, I handcrafted a step-by-step ebook to make it super easy for you. Enjoy "
1345
  msgstr ""
1346
 
1347
+ #: admin/views/LibSubscribe.php:69
1348
+ msgid "NAME"
1349
  msgstr ""
1350
 
1351
+ #: admin/views/LibSubscribe.php:74
1352
+ msgid "EMAIL ADDRESS"
1353
  msgstr ""
1354
 
1355
+ #: admin/views/LibSubscribe.php:78
1356
  msgid ""
1357
+ "Keep in mind that submitting this form will allow 10Web to store your name, "
1358
+ "email, and site URL. Being GDPR-compliant, we won’t ever share your info "
1359
+ "with third parties..."
1360
  msgstr ""
1361
 
1362
+ #: admin/views/LibSubscribe.php:83 wd/templates/display_subscribe.php:29
1363
+ msgid "Skip"
1364
  msgstr ""
1365
 
1366
+ #: admin/views/Options.php:47 admin/views/Themes.php:181
1367
+ msgid "Save"
1368
  msgstr ""
1369
 
1370
+ #: admin/views/Options.php:53
1371
+ msgid "Reset all options"
1372
  msgstr ""
1373
 
1374
+ #: admin/views/Options.php:54 admin/views/Themes.php:186
1375
+ msgid "Do you want to reset to default?"
1376
  msgstr ""
1377
 
1378
+ #: admin/views/Options.php:77
1379
+ #, fuzzy
1380
+ #| msgid "Gallery is empty."
1381
+ msgid "Gallery defaults"
1382
+ msgstr "  معرض فارغة"
1383
+
1384
+ #: admin/views/Options.php:80
1385
+ #, fuzzy
1386
+ #| msgid "Gallery is empty."
1387
+ msgid "Gallery Group defaults"
1388
+ msgstr "  معرض فارغة"
1389
+
1390
+ #: admin/views/Options.php:83
1391
+ msgid "Lightbox defaults"
1392
  msgstr ""
1393
 
1394
+ #: admin/views/Options.php:89 photo-gallery.php:1543
1395
+ msgid "Watermark"
1396
  msgstr ""
1397
 
1398
+ #: admin/views/Options.php:109
1399
+ msgid "Images directory"
1400
+ msgstr ""
 
 
1401
 
1402
+ #: admin/views/Options.php:114
1403
+ msgid ""
1404
+ "Provide the path of an existing folder inside the WordPress directory of "
1405
+ "your website to store uploaded images.<br />The content of the previous "
1406
+ "directory will be moved to the new one."
1407
  msgstr ""
1408
 
1409
+ #: admin/views/Options.php:122 admin/views/Options.php:3333
1410
+ msgid "Image click action"
1411
  msgstr ""
1412
 
1413
+ #: admin/views/Options.php:124 admin/views/Options.php:3335
1414
+ msgid "Open lightbox"
1415
  msgstr ""
1416
 
1417
+ #: admin/views/Options.php:125 admin/views/Options.php:3336
1418
+ msgid "Redirect to url"
1419
  msgstr ""
1420
 
1421
+ #: admin/views/Options.php:126 admin/views/Options.php:3337
1422
+ msgid "Do Nothing"
1423
  msgstr ""
1424
 
1425
+ #: admin/views/Options.php:128 admin/views/Options.php:3339
1426
+ msgid "Select the action which runs after clicking on gallery thumbnails."
1427
  msgstr ""
1428
 
1429
+ #: admin/views/Options.php:132 admin/views/Options.php:3343
1430
+ msgid "Open in a new window"
1431
  msgstr ""
1432
 
1433
+ #: admin/views/Options.php:142 admin/views/Options.php:2335
1434
+ msgid "Image dimensions"
1435
+ msgstr ""
1436
+
1437
+ #: admin/views/Options.php:147
1438
  msgid ""
1439
+ "Specify the maximum dimensions of uploaded images (set 0 for original size)."
 
1440
  msgstr ""
1441
 
1442
+ #: admin/views/Options.php:152
1443
+ msgid "Generated thumbnail dimensions"
1444
  msgstr ""
1445
 
1446
+ #: admin/views/Options.php:157 photo-gallery.php:417
1447
+ msgid "Recreate"
1448
  msgstr ""
1449
 
1450
+ #: admin/views/Options.php:159
1451
+ msgid ""
1452
+ "Specify the maximum dimensions of generated thumbnails. They must be larger "
1453
+ "than frontend thumbnail dimensions."
1454
  msgstr ""
1455
 
1456
+ #: admin/views/Options.php:164
1457
+ msgid "Image quality"
1458
  msgstr ""
1459
 
1460
+ #: admin/views/Options.php:168
1461
+ msgid "Set the quality of gallery images. Provide a value from 0 to 100%."
1462
  msgstr ""
1463
 
1464
+ #: admin/views/Options.php:173
1465
+ msgid "Resizable thumbnails"
1466
  msgstr ""
1467
 
1468
+ #: admin/views/Options.php:178
1469
  msgid ""
1470
+ "Enable this option to allow resizing gallery thumbnails on smaller screens."
 
1471
  msgstr ""
1472
 
1473
+ #: admin/views/Options.php:183
1474
+ msgid "Lazy load"
1475
  msgstr ""
1476
 
1477
+ #: admin/views/Options.php:188
1478
  msgid ""
1479
+ "Enable this option to activate lazy loading for images and improve the "
1480
+ "loading speed on your galleries."
1481
  msgstr ""
1482
 
1483
+ #: admin/views/Options.php:193
1484
+ msgid "Preload images"
 
 
 
 
 
 
1485
  msgstr ""
1486
 
1487
+ #: admin/views/Options.php:198
1488
+ msgid ""
1489
+ "If this setting is enabled, Photo Gallery loads a specific number of images "
1490
+ "before opening lightbox. This lets you showcase images without loading "
1491
+ "delays, providing better user experience."
1492
  msgstr ""
1493
 
1494
+ #: admin/views/Options.php:203
1495
+ msgid "Number of preloaded images"
1496
  msgstr ""
1497
 
1498
+ #: admin/views/Options.php:207
1499
+ msgid "Specify the number of images to preload, e.g. 5 (set 0 for all)."
1500
  msgstr ""
1501
 
1502
+ #: admin/views/Options.php:212
1503
+ #, fuzzy
1504
+ #| msgid "Show comments"
1505
+ msgid "Show custom posts"
1506
+ msgstr "تظهر التعليقات"
1507
 
1508
+ #: admin/views/Options.php:217
1509
+ msgid ""
1510
+ "Activate this setting to display Photo Gallery custom posts with new menu "
1511
+ "items under WordPress admin menu."
1512
  msgstr ""
1513
 
1514
+ #: admin/views/Options.php:222
1515
+ msgid "Discourage Search Engine Visibility"
1516
  msgstr ""
1517
 
1518
+ #: admin/views/Options.php:227
1519
+ msgid "Discourage search engines from indexing Photo Gallery custom posts."
1520
  msgstr ""
1521
 
1522
+ #: admin/views/Options.php:232
1523
+ #, fuzzy
1524
+ #| msgid "Show comments"
1525
+ msgid "Show comments for custom posts"
1526
+ msgstr "تظهر التعليقات"
1527
+
1528
+ #: admin/views/Options.php:237
1529
+ msgid ""
1530
+ "Use this setting to show or hide comments under Photo Gallery custom posts."
1531
  msgstr ""
1532
 
1533
+ #: admin/views/Options.php:242
1534
+ msgid "Use AND operator for tag filtering"
1535
  msgstr ""
1536
 
1537
+ #: admin/views/Options.php:247
1538
+ msgid ""
1539
+ "Enable this option to filter images with AND operator. In this case, the "
1540
+ "filter results must have all selected tags in the Tag Box."
 
1541
  msgstr ""
1542
 
1543
+ #: admin/views/Options.php:254
1544
+ msgid "Save IP "
1545
  msgstr ""
1546
 
1547
+ #: admin/views/Options.php:259
1548
+ msgid "Disable saving user IP address when rating the images."
 
1549
  msgstr ""
1550
 
1551
+ #: admin/views/Options.php:265
1552
+ msgid "Right-click protection"
1553
  msgstr ""
1554
 
1555
+ #: admin/views/Options.php:270
1556
+ msgid "Switch off right-click on your gallery images by enabling this setting."
1557
+ msgstr ""
 
 
 
 
 
1558
 
1559
+ #: admin/views/Options.php:275
1560
+ msgid "Include styles/scripts on gallery pages only"
 
 
 
1561
  msgstr ""
1562
 
1563
+ #: admin/views/Options.php:280
1564
+ msgid ""
1565
+ "If this option is enabled, CSS and Javascript files of Photo Gallery will "
1566
+ "only load on pages with galleries and gallery groups."
 
1567
  msgstr ""
1568
 
1569
+ #: admin/views/Options.php:285
1570
  #, fuzzy
1571
  #| msgid "Show comments"
1572
+ msgid "Enable Google fonts"
1573
  msgstr "تظهر التعليقات"
1574
 
1575
+ #: admin/views/Options.php:290
1576
+ msgid ""
1577
+ "If this option is disabled, Google fonts will not be included in your pages."
1578
  msgstr ""
1579
 
1580
+ #: admin/views/Options.php:295
1581
+ #, fuzzy
1582
+ #| msgid "Hide info"
1583
+ msgid "Enable HTML editor"
1584
+ msgstr "إخفاء المعلومات"
1585
 
1586
+ #: admin/views/Options.php:300
1587
+ msgid ""
1588
+ "Description text boxes of Photo Gallery will use TinyMCE editor, in case "
1589
+ "this setting is enabled."
1590
  msgstr ""
1591
 
1592
+ #: admin/views/Options.php:305
1593
+ msgid "Enable href attribute"
1594
  msgstr ""
1595
 
1596
+ #: admin/views/Options.php:310
1597
+ msgid "Disable this option only if Photo Gallery conflicts with your theme."
 
 
1598
  msgstr ""
1599
 
1600
+ #: admin/views/Options.php:315
1601
+ msgid "Auto-fill metadata"
 
 
1602
  msgstr ""
1603
 
1604
+ #: admin/views/Options.php:320
1605
+ msgid ""
1606
+ "Enabling this option will let the plugin fill in meta descriptions of photos "
1607
+ "into Image Description option automatically."
1608
  msgstr ""
1609
 
1610
+ #: admin/views/Options.php:325 admin/views/Options.php:328
1611
+ #: photo-gallery.php:491
1612
+ msgid "Generate Shortcode"
1613
  msgstr ""
1614
 
1615
+ #: admin/views/Options.php:331
1616
+ msgid ""
1617
+ "Generate or edit Photo Gallery shortcodes that are used to publish galleries "
1618
+ "or gallery groups."
1619
  msgstr ""
1620
 
1621
+ #: admin/views/Options.php:334
1622
+ msgid "Enable dynamic URLs for galleries and gallery groups"
 
1623
  msgstr ""
1624
 
1625
+ #: admin/views/Options.php:337
1626
+ msgid ""
1627
+ "Enable this option to browse galleries and gallery groups, as well as search "
1628
+ "results and tagged images with dynamic links."
1629
  msgstr ""
1630
 
1631
+ #: admin/views/Options.php:340
1632
+ msgid "Developer mode"
 
 
1633
  msgstr ""
1634
 
1635
+ #: admin/views/Options.php:343
1636
+ msgid ""
1637
+ "Do not use minified JS and CSS files. Enable this option if You need to "
1638
+ "debug JS or CSS issues."
1639
  msgstr ""
1640
 
1641
+ #: admin/views/Options.php:354 photo-gallery.php:490
1642
+ msgid "Uninstall"
 
 
 
1643
  msgstr ""
1644
 
1645
+ #: admin/views/Options.php:357
1646
+ msgid ""
1647
+ "Note, that uninstalling Photo Gallery will completely remove all galleries, "
1648
+ "gallery groups and other data on the plugin. Please make sure you don't have "
1649
+ "any important information before you proceed."
1650
  msgstr ""
1651
 
1652
+ #: admin/views/Options.php:430 admin/views/Options.php:487
1653
+ #: admin/views/Shortcode.php:123 admin/views/Shortcode.php:160
1654
+ msgid "View type"
1655
  msgstr ""
1656
 
1657
+ #: admin/views/Options.php:447 admin/views/Options.php:504
1658
+ #: admin/views/Shortcode.php:177
1659
+ msgid "This view is not available in free version."
1660
  msgstr ""
1661
 
1662
+ #: admin/views/Options.php:532
1663
+ msgid "Social"
 
 
1664
  msgstr ""
1665
 
1666
+ #: admin/views/Options.php:538
1667
+ #, fuzzy
1668
+ #| msgid "Photo gallery plugin autoupdate interval."
1669
+ msgid "Gallery autoupdate interval"
1670
+ msgstr "معرض الصور المساعد الفاصل الزمني للتحديث التلقائي."
1671
+
1672
+ #: admin/views/Options.php:541
1673
+ msgid "hour"
1674
  msgstr ""
1675
 
1676
+ #: admin/views/Options.php:543
1677
+ msgid "min"
1678
  msgstr ""
1679
 
1680
+ #: admin/views/Options.php:545
1681
+ msgid ""
1682
+ "Set the interval when Instagram galleries will be updated, and will display "
1683
+ "new posts of your Instagram or Facebook account."
1684
  msgstr ""
1685
 
1686
+ #: admin/views/Options.php:551
1687
+ msgid "Instagram"
 
1688
  msgstr ""
1689
 
1690
+ #: admin/views/Options.php:557
1691
+ msgid ""
1692
+ "Press this button to sign in to your Instagram account. In this case, access "
1693
+ "token will be added automatically."
1694
  msgstr ""
1695
 
1696
+ #: admin/views/Options.php:561
1697
+ msgid "Sign in with Instagram"
1698
  msgstr ""
1699
 
1700
+ #: admin/views/Options.php:563
1701
+ msgid ""
1702
+ "Press this button to sign in to your Instagram account. This lets you "
1703
+ "incorporate Instagram API to your website."
1704
  msgstr ""
1705
 
1706
+ #: admin/views/Options.php:566
1707
+ msgid ""
1708
+ "Press this button to sign out from your Instagram account. The access token "
1709
+ "will reset."
 
 
 
 
 
 
 
 
 
 
1710
  msgstr ""
1711
 
1712
+ #: admin/views/Options.php:568
1713
+ msgid ""
1714
+ "Are you sure you want to reset access token, after resetting it you will "
1715
+ "need to log in with Instagram again for using plugin"
1716
  msgstr ""
1717
 
1718
+ #: admin/views/Options.php:570
1719
+ msgid "Sign out from Instagram"
1720
  msgstr ""
1721
 
1722
+ #: admin/views/Options.php:572
1723
+ msgid "Press this button to sign out from your Instagram account."
1724
  msgstr ""
1725
 
1726
+ #: admin/views/Options.php:600 admin/views/Options.php:606
1727
+ msgid "Roles"
1728
  msgstr ""
1729
 
1730
+ #: admin/views/Options.php:618
1731
+ msgid ""
1732
+ "Choose a WordPress user role which can add and edit galleries, images, "
1733
+ "gallery groups and tags."
1734
  msgstr ""
1735
 
1736
+ #: admin/views/Options.php:626
1737
+ #, fuzzy
1738
+ #| msgid "Gallery is empty."
1739
+ msgid "Gallery role restrictions"
1740
+ msgstr "  معرض فارغة"
1741
 
1742
+ #: admin/views/Options.php:631
1743
+ msgid ""
1744
+ "Enable this setting to restrict authors from modifying galleries created by "
1745
+ "other users."
1746
  msgstr ""
1747
 
1748
+ #: admin/views/Options.php:637
1749
+ #, fuzzy
1750
+ #| msgid "Gallery is empty."
1751
+ msgid "Gallery group restrictions"
1752
+ msgstr "  معرض فارغة"
1753
 
1754
+ #: admin/views/Options.php:642
1755
+ msgid ""
1756
+ "Enabling this option will restrict authors from modifying galleries groups "
1757
+ "created by other users."
1758
  msgstr ""
1759
 
1760
+ #: admin/views/Options.php:648
1761
+ msgid "Image role restrictions"
1762
  msgstr ""
1763
 
1764
+ #: admin/views/Options.php:653
1765
+ msgid ""
1766
+ "Enable this setting to restrict authors from modifying images added by other "
1767
+ "users."
1768
  msgstr ""
1769
 
1770
+ #: admin/views/Options.php:668 photo-gallery.php:1547 photo-gallery.php:1662
1771
+ msgid "Advertisement"
1772
  msgstr ""
1773
 
1774
+ #: admin/views/Options.php:674 admin/views/Shortcode.php:298
1775
+ msgid "Advertisement type"
1776
  msgstr ""
1777
 
1778
+ #: admin/views/Options.php:679 admin/views/Options.php:832
1779
+ #: admin/views/Shortcode.php:300 admin/views/Themes.php:4760
1780
+ #: admin/views/WidgetTags.php:83
1781
+ msgid "Text"
1782
  msgstr ""
1783
 
1784
+ #: admin/views/Options.php:683 admin/views/Shortcode.php:302
1785
+ msgid "Add Text or Image advertisement to your images with this option."
1786
  msgstr ""
1787
 
1788
+ #: admin/views/Options.php:688 admin/views/Shortcode.php:315
1789
+ msgid "Advertisement URL"
1790
  msgstr ""
1791
 
1792
+ #: admin/views/Options.php:696 admin/views/Options.php:698
1793
+ #: admin/views/Options.php:849 admin/views/Options.php:851
 
 
 
 
 
 
 
 
 
 
 
1794
  #, fuzzy
1795
+ #| msgid "Reset"
1796
+ msgid "Select Image"
1797
+ msgstr "إعادة تعيين"
1798
 
1799
+ #: admin/views/Options.php:700 admin/views/Options.php:853
1800
+ #: filemanager/view.php:246
1801
  #, fuzzy
1802
+ #| msgid "More"
1803
+ msgid "or"
1804
+ msgstr "أكثر"
1805
 
1806
+ #: admin/views/Options.php:703 admin/views/Shortcode.php:317
1807
+ msgid ""
1808
+ "Provide the absolute URL of the image you would like to use as advertisement."
1809
  msgstr ""
1810
 
1811
+ #: admin/views/Options.php:708 admin/views/Shortcode.php:322
1812
+ msgid "Advertisement text"
1813
  msgstr ""
1814
 
1815
+ #: admin/views/Options.php:712 admin/views/Shortcode.php:324
1816
+ msgid "Write the text to add to images as advertisement."
1817
  msgstr ""
1818
 
1819
+ #: admin/views/Options.php:717 admin/views/Shortcode.php:308
1820
+ msgid "Advertisement link"
1821
  msgstr ""
1822
 
1823
+ #: admin/views/Options.php:721 admin/views/Shortcode.php:310
1824
+ msgid "Provide the link to be added to advertisement on images."
1825
  msgstr ""
1826
 
1827
+ #: admin/views/Options.php:726 admin/views/Shortcode.php:362
1828
+ msgid "Advertisement dimensions"
1829
  msgstr ""
1830
 
1831
+ #: admin/views/Options.php:731 admin/views/Shortcode.php:367
1832
+ msgid "Select the dimensions of the advertisement image."
1833
  msgstr ""
1834
 
1835
+ #: admin/views/Options.php:736 admin/views/Shortcode.php:353
1836
+ msgid "Advertisement font size"
1837
  msgstr ""
1838
 
1839
+ #: admin/views/Options.php:740 admin/views/Shortcode.php:357
1840
+ msgid "Specify the font size of the advertisement text."
1841
  msgstr ""
1842
 
1843
+ #: admin/views/Options.php:745 admin/views/Shortcode.php:331
1844
+ msgid "Advertisement font style"
1845
  msgstr ""
1846
 
1847
+ #: admin/views/Options.php:760 admin/views/Shortcode.php:345
1848
+ #: admin/views/Themes.php:408 admin/views/Themes.php:471
1849
+ #: admin/views/Themes.php:704 admin/views/Themes.php:759
1850
+ #: admin/views/Themes.php:793 admin/views/Themes.php:1028
1851
+ #: admin/views/Themes.php:1090 admin/views/Themes.php:1474
1852
+ #: admin/views/Themes.php:1535 admin/views/Themes.php:1760
1853
+ #: admin/views/Themes.php:1848 admin/views/Themes.php:2106
1854
+ #: admin/views/Themes.php:2168 admin/views/Themes.php:2223
1855
+ #: admin/views/Themes.php:2559 admin/views/Themes.php:2716
1856
+ #: admin/views/Themes.php:2797 admin/views/Themes.php:2857
1857
+ #: admin/views/Themes.php:3095 admin/views/Themes.php:3150
1858
+ #: admin/views/Themes.php:3205 admin/views/Themes.php:3341
1859
+ #: admin/views/Themes.php:3510 admin/views/Themes.php:4157
1860
+ #: admin/views/Themes.php:4299 admin/views/Themes.php:4348
1861
+ #: admin/views/Themes.php:4424 admin/views/Themes.php:4608
1862
+ #: admin/views/Themes.php:4993
1863
+ msgid "Google fonts"
1864
  msgstr ""
1865
 
1866
+ #: admin/views/Options.php:762 admin/views/Options.php:1144
1867
+ #: admin/views/Options.php:1362 admin/views/Options.php:1598
1868
+ #: admin/views/Options.php:1795 admin/views/Options.php:2035
1869
+ #: admin/views/Options.php:2194 admin/views/Options.php:2371
1870
+ #: admin/views/Options.php:2561 admin/views/Options.php:2578
1871
+ #: admin/views/Options.php:2861 admin/views/Options.php:2878
1872
+ #: admin/views/Options.php:3101 admin/views/Options.php:3118
1873
+ #: admin/views/Shortcode.php:347 admin/views/Themes.php:81
1874
+ #: admin/views/Themes.php:112 admin/views/Themes.php:410
1875
+ #: admin/views/Themes.php:473 admin/views/Themes.php:706
1876
+ #: admin/views/Themes.php:761 admin/views/Themes.php:795
1877
+ #: admin/views/Themes.php:1030 admin/views/Themes.php:1092
1878
+ #: admin/views/Themes.php:1476 admin/views/Themes.php:1537
1879
+ #: admin/views/Themes.php:1762 admin/views/Themes.php:1850
1880
+ #: admin/views/Themes.php:2108 admin/views/Themes.php:2170
1881
+ #: admin/views/Themes.php:2225 admin/views/Themes.php:2561
1882
+ #: admin/views/Themes.php:2718 admin/views/Themes.php:2799
1883
+ #: admin/views/Themes.php:2859 admin/views/Themes.php:3097
1884
+ #: admin/views/Themes.php:3152 admin/views/Themes.php:3207
1885
+ #: admin/views/Themes.php:3343 admin/views/Themes.php:3512
1886
+ #: admin/views/Themes.php:4159 admin/views/Themes.php:4301
1887
+ #: admin/views/Themes.php:4350 admin/views/Themes.php:4426
1888
+ #: admin/views/Themes.php:4610 admin/views/Themes.php:4995
1889
+ msgid "Default"
1890
+ msgstr "افتراضي"
1891
 
1892
+ #: admin/views/Options.php:764 admin/views/Shortcode.php:348
1893
+ msgid "Select the font family of the advertisement text."
1894
  msgstr ""
1895
 
1896
+ #: admin/views/Options.php:769 admin/views/Shortcode.php:372
1897
+ msgid "Advertisement color"
1898
  msgstr ""
1899
 
1900
+ #: admin/views/Options.php:773 admin/views/Shortcode.php:374
1901
+ msgid "Choose the color for the advertisement text on images."
1902
  msgstr ""
1903
 
1904
+ #: admin/views/Options.php:778 admin/views/Shortcode.php:381
1905
+ msgid "Advertisement opacity"
1906
+ msgstr ""
 
 
1907
 
1908
+ #: admin/views/Options.php:782 admin/views/Shortcode.php:385
1909
+ msgid ""
1910
+ "Specify the opacity of the advertisement. The value must be between 0 to 100."
1911
+ msgstr ""
 
1912
 
1913
+ #: admin/views/Options.php:787 admin/views/Shortcode.php:390
1914
+ msgid "Advertisement position"
1915
  msgstr ""
1916
 
1917
+ #: admin/views/Options.php:810 admin/views/Shortcode.php:410
1918
+ msgid "Mark the position where the advertisement should appear on images."
1919
  msgstr ""
1920
 
1921
+ #: admin/views/Options.php:827
1922
+ msgid "Watermark type"
1923
  msgstr ""
1924
 
1925
+ #: admin/views/Options.php:836
1926
+ msgid "Add Text or Image watermark to your images with this option."
1927
  msgstr ""
1928
 
1929
+ #: admin/views/Options.php:841
1930
+ msgid "Watermark URL"
1931
  msgstr ""
1932
 
1933
+ #: admin/views/Options.php:856
1934
+ msgid ""
1935
+ "Provide the absolute URL of the image you would like to use as watermark."
1936
  msgstr ""
1937
 
1938
+ #: admin/views/Options.php:856
1939
+ msgid "Only .png format is supported."
1940
  msgstr ""
1941
 
1942
+ #: admin/views/Options.php:861
1943
+ msgid "Watermark text"
1944
+ msgstr ""
 
 
1945
 
1946
+ #: admin/views/Options.php:865
1947
+ msgid "Provide the text to add to images as watermark."
1948
  msgstr ""
1949
 
1950
+ #: admin/views/Options.php:870
1951
+ msgid "Watermark size"
1952
  msgstr ""
1953
 
1954
+ #: admin/views/Options.php:874
1955
+ msgid "Specify the size of watermark on images in percent."
1956
  msgstr ""
1957
 
1958
+ #: admin/views/Options.php:879
1959
+ msgid "Watermark font size"
 
1960
  msgstr ""
1961
 
1962
+ #: admin/views/Options.php:883
1963
+ msgid "Specify the font size of the watermark text."
1964
  msgstr ""
1965
 
1966
+ #: admin/views/Options.php:888
1967
+ msgid "Watermark font style"
1968
+ msgstr ""
 
 
1969
 
1970
+ #: admin/views/Options.php:912
1971
+ msgid "Select the font family of the watermark text."
1972
+ msgstr ""
 
 
1973
 
1974
+ #: admin/views/Options.php:917
1975
+ msgid "Watermark color"
1976
+ msgstr ""
 
 
1977
 
1978
+ #: admin/views/Options.php:921
1979
+ msgid "Choose the color for the watermark text on images."
1980
  msgstr ""
1981
 
1982
+ #: admin/views/Options.php:926
1983
+ msgid "Watermark opacity"
1984
  msgstr ""
1985
 
1986
+ #: admin/views/Options.php:930
1987
+ msgid ""
1988
+ "Specify the opacity of the watermark. The value must be between 0 to 100."
1989
  msgstr ""
1990
 
1991
+ #: admin/views/Options.php:935
1992
+ msgid "Watermark position"
1993
  msgstr ""
1994
 
1995
+ #: admin/views/Options.php:956 framework/WDWLibrary.php:2442
1996
+ msgid "Set watermark"
1997
  msgstr ""
1998
 
1999
+ #: admin/views/Options.php:958
2000
+ msgid "Set Watermark"
2001
  msgstr ""
2002
 
2003
+ #: admin/views/Options.php:959
2004
+ msgid "Reset watermark"
2005
+ msgstr ""
 
 
2006
 
2007
+ #: admin/views/Options.php:961
2008
+ msgid "Reset Watermark"
2009
  msgstr ""
2010
 
2011
+ #: admin/views/Options.php:963
2012
+ msgid "Mark the position where the watermark should appear on images."
2013
  msgstr ""
2014
 
2015
+ #: admin/views/Options.php:1087 admin/views/Options.php:2513
2016
+ #: admin/views/Options.php:3053 admin/views/Shortcode.php:2152
2017
+ msgid "Thumbnail dimensions"
2018
  msgstr ""
2019
 
2020
+ #: admin/views/Options.php:1092 admin/views/Options.php:2518
2021
+ #: admin/views/Options.php:2818 admin/views/Options.php:3058
2022
+ msgid ""
2023
+ "The default dimensions of thumbnails which will display on published "
2024
+ "galleries."
2025
  msgstr ""
2026
 
2027
+ #: admin/views/Options.php:1097 admin/views/Options.php:1314
2028
+ #: admin/views/Options.php:2504 admin/views/Options.php:2805
2029
+ #: admin/views/Options.php:3044 admin/views/Shortcode.php:2154
2030
+ msgid "Number of image columns"
2031
  msgstr ""
2032
 
2033
+ #: admin/views/Options.php:1101 admin/views/Options.php:2508
2034
+ #: admin/views/Options.php:2809 admin/views/Options.php:3048
2035
  msgid ""
2036
+ "Set the maximum number of image columns in galleries. Note, that the parent "
2037
+ "container needs to be large enough to display all columns."
2038
  msgstr ""
2039
 
2040
+ #: admin/views/Options.php:1106 admin/views/Options.php:1324
2041
+ #: admin/views/Options.php:1560 admin/views/Options.php:2154
2042
+ #: admin/views/Options.php:2523 admin/views/Options.php:2823
2043
+ #: admin/views/Options.php:3063
2044
+ msgid "Pagination"
2045
  msgstr ""
2046
 
2047
+ #: admin/views/Options.php:1109 admin/views/Options.php:1327
2048
+ #: admin/views/Options.php:1563 admin/views/Options.php:2157
2049
+ #: admin/views/Options.php:2526 admin/views/Options.php:2826
2050
+ #: admin/views/Options.php:3066
2051
+ msgid "Simple"
2052
  msgstr ""
2053
 
2054
+ #: admin/views/Options.php:1110 admin/views/Options.php:1328
2055
+ #: admin/views/Options.php:1564 admin/views/Options.php:2158
2056
+ #: admin/views/Options.php:2527 admin/views/Options.php:2827
2057
+ #: admin/views/Options.php:3067
2058
+ #, fuzzy
2059
+ #| msgid "Load More..."
2060
+ msgid "Load More"
2061
+ msgstr "حمل أكثر..."
2062
+
2063
+ #: admin/views/Options.php:1111 admin/views/Options.php:1329
2064
+ #: admin/views/Options.php:1565 admin/views/Options.php:2159
2065
+ #: admin/views/Options.php:2528 admin/views/Options.php:2828
2066
+ #: admin/views/Options.php:3068
2067
+ msgid "Scroll Load"
2068
  msgstr ""
2069
 
2070
+ #: admin/views/Options.php:1113 admin/views/Options.php:1331
2071
+ #: admin/views/Options.php:1567 admin/views/Options.php:2161
2072
+ #: admin/views/Options.php:2530 admin/views/Options.php:2830
2073
+ #: admin/views/Options.php:3070
2074
+ msgid "This option removes all types of pagination from your galleries."
2075
  msgstr ""
2076
 
2077
+ #: admin/views/Options.php:1114 admin/views/Options.php:1332
2078
+ #: admin/views/Options.php:1568 admin/views/Options.php:2162
2079
+ #: admin/views/Options.php:2531 admin/views/Options.php:2831
2080
+ #: admin/views/Options.php:3071
2081
+ msgid ""
2082
+ "Activating this option will add page numbers and next/previous buttons to "
2083
+ "your galleries."
2084
  msgstr ""
2085
 
2086
+ #: admin/views/Options.php:1115 admin/views/Options.php:1333
2087
+ #: admin/views/Options.php:1569 admin/views/Options.php:2163
2088
+ #: admin/views/Options.php:2532 admin/views/Options.php:2832
2089
+ #: admin/views/Options.php:3072
2090
+ msgid ""
2091
+ "Adding a Load More button, you can let users display a new set of images "
2092
+ "from your galleries."
2093
  msgstr ""
2094
 
2095
+ #: admin/views/Options.php:1116 admin/views/Options.php:1334
2096
+ #: admin/views/Options.php:1570 admin/views/Options.php:2164
2097
+ #: admin/views/Options.php:2533 admin/views/Options.php:2833
2098
+ #: admin/views/Options.php:3073
2099
+ msgid ""
2100
+ "With this option, users can load new images of your galleries simply by "
2101
+ "scrolling down."
2102
  msgstr ""
2103
 
2104
+ #: admin/views/Options.php:1121 admin/views/Options.php:1339
2105
+ #: admin/views/Options.php:1575 admin/views/Options.php:2170
2106
+ #: admin/views/Options.php:2547 admin/views/Options.php:2847
2107
+ #: admin/views/Options.php:3087
2108
+ msgid "Images per page"
2109
  msgstr ""
2110
 
2111
+ #: admin/views/Options.php:1125 admin/views/Options.php:1343
2112
+ #: admin/views/Options.php:1579 admin/views/Options.php:2551
2113
+ #: admin/views/Options.php:2851 admin/views/Options.php:3091
2114
+ msgid ""
2115
+ "Specify the number of images to display per page on galleries. Setting this "
2116
+ "option to 0 shows all items."
2117
  msgstr ""
2118
 
2119
+ #: admin/views/Options.php:1130 admin/views/Options.php:1348
2120
+ #: admin/views/Options.php:1584 admin/views/Options.php:2180
2121
+ msgid "Images per load"
2122
  msgstr ""
2123
 
2124
+ #: admin/views/Options.php:1134 admin/views/Options.php:1352
2125
+ #: admin/views/Options.php:1588 admin/views/Options.php:2184
2126
+ msgid "Specify the number of images to display per load on galleries."
2127
  msgstr ""
2128
 
2129
+ #: admin/views/Options.php:1142 admin/views/Options.php:1359
2130
+ #: admin/views/Options.php:1595 admin/views/Options.php:1792
2131
+ #: admin/views/Options.php:2032 admin/views/Options.php:2191
2132
+ #: admin/views/Options.php:2368
2133
+ #, fuzzy
2134
+ #| msgid "Order by: "
2135
+ msgid "Order by"
2136
+ msgstr "ترتيب حسب"
2137
+
2138
+ #: admin/views/Options.php:1156 admin/views/Options.php:1374
2139
+ #: admin/views/Options.php:1610 admin/views/Options.php:1807
2140
+ #: admin/views/Options.php:2047 admin/views/Options.php:2206
2141
+ #: admin/views/Options.php:2383 admin/views/Options.php:2568
2142
+ #: admin/views/Options.php:2590 admin/views/Options.php:2868
2143
+ #: admin/views/Options.php:2890 admin/views/Options.php:3108
2144
+ #: admin/views/Options.php:3130
2145
+ msgid "Ascending"
2146
  msgstr ""
2147
 
2148
+ #: admin/views/Options.php:1157 admin/views/Options.php:1375
2149
+ #: admin/views/Options.php:1611 admin/views/Options.php:1808
2150
+ #: admin/views/Options.php:2048 admin/views/Options.php:2207
2151
+ #: admin/views/Options.php:2384 admin/views/Options.php:2569
2152
+ #: admin/views/Options.php:2591 admin/views/Options.php:2869
2153
+ #: admin/views/Options.php:2891 admin/views/Options.php:3109
2154
+ #: admin/views/Options.php:3131
2155
+ msgid "Descending"
2156
  msgstr ""
2157
 
2158
+ #: admin/views/Options.php:1160 admin/views/Options.php:1378
2159
+ #: admin/views/Options.php:1614 admin/views/Options.php:1811
2160
+ #: admin/views/Options.php:2051 admin/views/Options.php:2210
2161
+ #: admin/views/Options.php:2387 admin/views/Options.php:2594
2162
+ #: admin/views/Options.php:2894 admin/views/Options.php:3134
2163
+ msgid ""
2164
+ "Select the parameter and order direction to sort the gallery images with. E."
2165
+ "g. Title and Ascending."
2166
  msgstr ""
2167
 
2168
+ #: admin/views/Options.php:1165 admin/views/Options.php:1383
2169
+ #: admin/views/Options.php:1619 admin/views/Options.php:2056
2170
+ #: admin/views/Options.php:2215 admin/views/Options.php:2599
2171
+ #: admin/views/Options.php:2899 admin/views/Options.php:3139
2172
+ msgid "Show search box"
2173
  msgstr ""
2174
 
2175
+ #: admin/views/Options.php:1170 admin/views/Options.php:1388
2176
+ #: admin/views/Options.php:1624 admin/views/Options.php:2061
2177
+ #: admin/views/Options.php:2220 admin/views/Options.php:2604
2178
+ #: admin/views/Options.php:2904 admin/views/Options.php:3144
2179
+ msgid ""
2180
+ "Enable this option to display a search box with your gallery or gallery "
2181
+ "group."
2182
  msgstr ""
2183
 
2184
+ #: admin/views/Options.php:1175 admin/views/Options.php:1393
2185
+ #: admin/views/Options.php:1629 admin/views/Options.php:2066
2186
+ #: admin/views/Options.php:2225 admin/views/Options.php:2609
2187
+ #: admin/views/Options.php:2909 admin/views/Options.php:3149
2188
+ msgid "Add placeholder to search"
2189
  msgstr ""
2190
 
2191
+ #: admin/views/Options.php:1183 admin/views/Options.php:1401
2192
+ #: admin/views/Options.php:1637 admin/views/Options.php:2074
2193
+ #: admin/views/Options.php:2233 admin/views/Options.php:2617
2194
+ #: admin/views/Options.php:2917 admin/views/Options.php:3157
2195
+ msgid "Search box maximum width"
2196
  msgstr ""
2197
 
2198
+ #: admin/views/Options.php:1191 admin/views/Options.php:1409
2199
+ #: admin/views/Options.php:1645 admin/views/Options.php:2082
2200
+ #: admin/views/Options.php:2241 admin/views/Options.php:2625
2201
+ #: admin/views/Options.php:2925 admin/views/Options.php:3165
2202
+ msgid "Show \"Order by\" dropdown list"
2203
  msgstr ""
2204
 
2205
+ #: admin/views/Options.php:1196 admin/views/Options.php:1414
2206
+ #: admin/views/Options.php:1650 admin/views/Options.php:2087
2207
+ #: admin/views/Options.php:2246 admin/views/Options.php:2630
2208
+ #: admin/views/Options.php:2930 admin/views/Options.php:3170
2209
+ msgid ""
2210
+ "Activate this dropdown box to let users browse your gallery images with "
2211
+ "different ordering options."
2212
  msgstr ""
2213
 
2214
+ #: admin/views/Options.php:1201 admin/views/Options.php:1419
2215
+ #: admin/views/Options.php:1655 admin/views/Options.php:2092
2216
+ #: admin/views/Options.php:2251 admin/views/Options.php:2635
2217
+ #: admin/views/Options.php:2935 admin/views/Options.php:3175
2218
+ #, fuzzy
2219
+ #| msgid "Show rating"
2220
+ msgid "Show tag box"
2221
+ msgstr "تظهر التصنيف"
2222
+
2223
+ #: admin/views/Options.php:1206 admin/views/Options.php:1424
2224
+ #: admin/views/Options.php:1660 admin/views/Options.php:2097
2225
+ #: admin/views/Options.php:2256 admin/views/Options.php:2640
2226
+ #: admin/views/Options.php:2940 admin/views/Options.php:3180
2227
+ msgid ""
2228
+ "Enable Tag Box to allow users to filter the gallery images by their tags."
2229
  msgstr ""
2230
 
2231
+ #: admin/views/Options.php:1213 admin/views/Options.php:1431
2232
+ #: admin/views/Options.php:1667 admin/views/Options.php:2104
2233
+ #: admin/views/Options.php:2263 admin/views/Options.php:2667
2234
+ msgid "Show gallery title"
2235
  msgstr ""
2236
 
2237
+ #: admin/views/Options.php:1218 admin/views/Options.php:1436
2238
+ #: admin/views/Options.php:1672 admin/views/Options.php:2109
2239
+ #: admin/views/Options.php:2268
2240
  msgid ""
2241
+ "Allow users to see the titles of your galleries by enabling this setting."
 
2242
  msgstr ""
2243
 
2244
+ #: admin/views/Options.php:1223 admin/views/Options.php:1441
2245
+ #: admin/views/Options.php:1677 admin/views/Options.php:2114
2246
+ #: admin/views/Options.php:2273
2247
+ msgid "Show gallery description"
2248
  msgstr ""
2249
 
2250
+ #: admin/views/Options.php:1228 admin/views/Options.php:1446
2251
+ #: admin/views/Options.php:1682 admin/views/Options.php:2119
2252
+ #: admin/views/Options.php:2278
2253
+ msgid "Display the descriptions of your galleries by activating this option."
2254
  msgstr ""
2255
 
2256
+ #: admin/views/Options.php:1233 admin/views/Options.php:1451
2257
+ #: admin/views/Options.php:1687 admin/views/Options.php:1879
2258
+ #: admin/views/Options.php:2011 admin/views/Options.php:2283
2259
+ #: admin/views/Options.php:2415 admin/views/Options.php:2726
2260
+ #: admin/views/Options.php:2967 admin/views/Options.php:3265
2261
+ msgid "Show image title"
2262
  msgstr ""
2263
 
2264
+ #: admin/views/Options.php:1235 admin/views/Options.php:1275
2265
+ #: admin/views/Options.php:1453 admin/views/Options.php:1504
2266
+ #: admin/views/Options.php:1689 admin/views/Options.php:1728
2267
+ #: admin/views/Options.php:2669 admin/views/Options.php:2729
2268
+ #: admin/views/Options.php:2771 admin/views/Options.php:2969
2269
+ #: admin/views/Options.php:2999 admin/views/Options.php:3268
2270
+ #: admin/views/Options.php:3310
2271
+ #, fuzzy
2272
+ #| msgid "Show info"
2273
+ msgid "Show on hover"
2274
+ msgstr "تظهر المعلومات"
2275
 
2276
+ #: admin/views/Options.php:1236 admin/views/Options.php:1276
2277
+ #: admin/views/Options.php:1454 admin/views/Options.php:2670
2278
+ #: admin/views/Options.php:2731 admin/views/Options.php:2772
2279
+ #: admin/views/Options.php:2970 admin/views/Options.php:3270
2280
+ #: admin/views/Options.php:3311
2281
+ msgid "Always show"
2282
  msgstr ""
2283
 
2284
+ #: admin/views/Options.php:1237 admin/views/Options.php:1277
2285
+ #: admin/views/Options.php:1455 admin/views/Options.php:1505
2286
+ #: admin/views/Options.php:1690 admin/views/Options.php:1729
2287
+ #: admin/views/Options.php:2671 admin/views/Options.php:2733
2288
+ #: admin/views/Options.php:2773 admin/views/Options.php:2971
2289
+ #: admin/views/Options.php:3000 admin/views/Options.php:3272
2290
+ #: admin/views/Options.php:3312
2291
+ msgid "Don't show"
2292
  msgstr ""
2293
 
2294
+ #: admin/views/Options.php:1239 admin/views/Options.php:1457
2295
+ #: admin/views/Options.php:1692 admin/views/Options.php:2735
2296
+ #: admin/views/Options.php:2973 admin/views/Options.php:3274
2297
+ msgid "Choose to show/hide titles of images, or display them on hover."
2298
  msgstr ""
2299
 
2300
+ #: admin/views/Options.php:1244 admin/views/Options.php:1473
2301
+ #: admin/views/Options.php:1697 admin/views/Options.php:2740
2302
+ #: admin/views/Options.php:3279
2303
+ msgid "Show Play icon on video thumbnails"
 
 
 
 
 
 
 
 
 
 
 
 
2304
  msgstr ""
2305
 
2306
+ #: admin/views/Options.php:1249 admin/views/Options.php:1478
2307
+ #: admin/views/Options.php:1702 admin/views/Options.php:2745
2308
+ #: admin/views/Options.php:3284
2309
+ msgid "Activate this option to add a Play button on thumbnails of videos."
2310
+ msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2311
 
2312
+ #: admin/views/Options.php:1254 admin/views/Options.php:1483
2313
+ #: admin/views/Options.php:1707 admin/views/Options.php:1982
2314
+ #: admin/views/Options.php:2124 admin/views/Options.php:2305
2315
+ #: admin/views/Options.php:2459 admin/views/Options.php:2750
2316
+ #: admin/views/Options.php:2978 admin/views/Options.php:3289
2317
+ msgid "Enable bulk download button"
2318
  msgstr ""
2319
 
2320
+ #: admin/views/Options.php:1259 admin/views/Options.php:1488
2321
+ #: admin/views/Options.php:1712 admin/views/Options.php:1987
2322
+ #: admin/views/Options.php:2129 admin/views/Options.php:2310
2323
+ #: admin/views/Options.php:2464 admin/views/Options.php:2755
2324
+ #: admin/views/Options.php:2983 admin/views/Options.php:3294
2325
+ msgid ""
2326
+ "Activate this setting to let users download all images of your gallery with "
2327
+ "a click."
2328
  msgstr ""
2329
 
2330
+ #: admin/views/Options.php:1263 admin/views/Options.php:1492
2331
+ #: admin/views/Options.php:1716 admin/views/Options.php:1991
2332
+ #: admin/views/Options.php:2133 admin/views/Options.php:2314
2333
+ #: admin/views/Options.php:2468 admin/views/Options.php:2759
2334
+ #: admin/views/Options.php:2987 admin/views/Options.php:3298
2335
+ msgid ""
2336
+ "Photo Gallery Export will not work correctly, as ZipArchive PHP extension is "
2337
+ "disabled on your website. Please contact your hosting provider and ask them "
2338
+ "to enable it."
 
 
 
 
 
 
 
 
 
2339
  msgstr ""
2340
 
2341
+ #: admin/views/Options.php:1273 admin/views/Options.php:1502
2342
+ #: admin/views/Options.php:1726 admin/views/Options.php:2769
2343
+ #: admin/views/Options.php:2997 admin/views/Options.php:3308
2344
+ #, fuzzy
2345
+ #| msgid "Show comments"
2346
+ msgid "Show ecommerce icon"
2347
+ msgstr "تظهر التعليقات"
2348
+
2349
+ #: admin/views/Options.php:1279 admin/views/Options.php:1507
2350
+ #: admin/views/Options.php:1731 admin/views/Options.php:2775
2351
+ #: admin/views/Options.php:3002 admin/views/Options.php:3314
2352
+ msgid "Choose to show/hide ecommerce icon, or display them on hover."
2353
  msgstr ""
2354
 
2355
+ #: admin/views/Options.php:1305 admin/views/Options.php:1551
2356
+ msgid "Thumbnail size"
 
2357
  msgstr ""
2358
 
2359
+ #: admin/views/Options.php:1309 admin/views/Options.php:1555
2360
+ msgid ""
2361
+ "The default size of thumbnails which will display on published galleries."
2362
  msgstr ""
2363
 
2364
+ #: admin/views/Options.php:1315 admin/views/Shortcode.php:2156
2365
+ msgid "Number of image rows"
 
2366
  msgstr ""
2367
 
2368
+ #: admin/views/Options.php:1319
2369
+ msgid ""
2370
+ "Set the maximum number of image columns (or rows) in galleries. Note, that "
2371
+ "the parent container needs to be large enough to display all columns."
2372
  msgstr ""
2373
 
2374
+ #: admin/views/Options.php:1462
2375
+ #, fuzzy
2376
+ #| msgid "Show comments"
2377
+ msgid "Show image descriptions"
2378
+ msgstr "تظهر التعليقات"
2379
+
2380
+ #: admin/views/Options.php:1467
2381
+ msgid "Enable this setting to display descriptions under images."
2382
  msgstr ""
2383
 
2384
+ #: admin/views/Options.php:1519 admin/views/Options.php:2694
2385
+ #: admin/views/Options.php:3233
2386
+ #, fuzzy
2387
+ #| msgid "Gallery is empty."
2388
+ msgid "Mosaic gallery type"
2389
+ msgstr "  معرض فارغة"
2390
+
2391
+ #: admin/views/Options.php:1521 admin/views/Options.php:2696
2392
+ #: admin/views/Options.php:3235
2393
+ msgid "Vertical"
2394
  msgstr ""
2395
 
2396
+ #: admin/views/Options.php:1522 admin/views/Options.php:2697
2397
+ #: admin/views/Options.php:3236
2398
+ msgid "Horizontal"
2399
  msgstr ""
2400
 
2401
+ #: admin/views/Options.php:1524 admin/views/Options.php:2699
2402
+ #: admin/views/Options.php:3238
2403
+ msgid "Select the type of Mosaic galleries, Vertical or Horizontal."
2404
  msgstr ""
2405
 
2406
+ #: admin/views/Options.php:1530 admin/views/Options.php:2705
2407
+ #: admin/views/Options.php:3244
2408
+ msgid "Resizable mosaic"
2409
  msgstr ""
2410
 
2411
+ #: admin/views/Options.php:1535 admin/views/Options.php:2710
2412
+ #: admin/views/Options.php:3249
2413
+ msgid ""
2414
+ "If this setting is enabled, Photo Gallery resizes all thumbnail images on "
2415
+ "Mosaic galleries, without modifying their initial display."
2416
  msgstr ""
2417
 
2418
+ #: admin/views/Options.php:1541 admin/views/Options.php:2716
2419
+ #: admin/views/Options.php:3255
2420
+ msgid "Width of mosaic galleries"
2421
  msgstr ""
2422
 
2423
+ #: admin/views/Options.php:1545 admin/views/Options.php:2720
2424
+ #: admin/views/Options.php:3259
2425
+ msgid ""
2426
+ "The total width of mosaic galleries as a percentage of container's width."
2427
  msgstr ""
2428
 
2429
+ #: admin/views/Options.php:1743
2430
+ msgid "Slideshow effect"
2431
  msgstr ""
2432
 
2433
+ #: admin/views/Options.php:1750 admin/views/Options.php:3381
2434
+ #: admin/views/WidgetSlideshow.php:105
2435
+ msgid "This effect is disabled in free version."
2436
  msgstr ""
2437
 
2438
+ #: admin/views/Options.php:1757
2439
+ msgid "Select the animation effect for your slideshow."
2440
  msgstr ""
2441
 
2442
+ #: admin/views/Options.php:1762 admin/views/Options.php:3393
2443
+ msgid "Effect duration"
 
 
2444
  msgstr ""
2445
 
2446
+ #: admin/views/Options.php:1766
2447
+ msgid "Set the duration of your slideshow animation effect."
2448
  msgstr ""
2449
 
2450
+ #: admin/views/Options.php:1771 admin/views/Options.php:2403
2451
+ #: admin/views/Options.php:3413
2452
+ msgid "Time interval"
2453
  msgstr ""
2454
 
2455
+ #: admin/views/Options.php:1775
2456
+ msgid ""
2457
+ "Specify the time interval between slides in Photo Gallery's Slideshow view."
2458
  msgstr ""
2459
 
2460
+ #: admin/views/Options.php:1780
2461
+ msgid "Slideshow dimensions"
2462
  msgstr ""
2463
 
2464
+ #: admin/views/Options.php:1785
2465
+ msgid "Set the default dimensions of your slideshow galleries."
 
2466
  msgstr ""
2467
 
2468
+ #: admin/views/Options.php:1816 admin/views/Options.php:2392
2469
+ msgid "Enable autoplay"
 
2470
  msgstr ""
2471
 
2472
+ #: admin/views/Options.php:1821
2473
+ msgid "Activate this option to autoplay slideshow galleries."
 
 
 
 
2474
  msgstr ""
2475
 
2476
+ #: admin/views/Options.php:1826
2477
+ msgid "Enable shuffle"
 
2478
  msgstr ""
2479
 
2480
+ #: admin/views/Options.php:1831
2481
+ msgid "The slideshow images will be shuffled in case this setting is enabled."
2482
  msgstr ""
2483
 
2484
+ #: admin/views/Options.php:1836 admin/views/Options.php:3445
2485
+ msgid "Enable control buttons"
2486
  msgstr ""
2487
 
2488
+ #: admin/views/Options.php:1841
2489
+ msgid "Enable this option to show control buttons on your slideshow galleries."
 
2490
  msgstr ""
2491
 
2492
+ #: admin/views/Options.php:1846 admin/views/Options.php:3569
2493
+ msgid "Show Next / Previous buttons"
 
 
 
2494
  msgstr ""
2495
 
2496
+ #: admin/views/Options.php:1848 admin/views/Options.php:3571
2497
+ msgid "On hover"
 
 
 
 
 
 
 
 
 
2498
  msgstr ""
2499
 
2500
+ #: admin/views/Options.php:1849 admin/views/Options.php:3572
2501
+ msgid "Always"
2502
  msgstr ""
2503
 
2504
+ #: admin/views/Options.php:1851
2505
+ msgid ""
2506
+ "Display Next/Previous buttons on your slideshow galleries activating this "
2507
+ "setting."
2508
  msgstr ""
2509
 
2510
+ #: admin/views/Options.php:1858
2511
+ msgid "Enable slideshow filmstrip"
2512
  msgstr ""
2513
 
2514
+ #: admin/views/Options.php:1863
2515
+ msgid ""
2516
+ "Add a filmstrip with image thumbnails to your slideshow galleries by "
2517
+ "enabling this option."
2518
  msgstr ""
2519
 
2520
+ #: admin/views/Options.php:1869
2521
+ msgid "Slideshow filmstrip size"
2522
  msgstr ""
2523
 
2524
+ #: admin/views/Options.php:1873 admin/views/Options.php:3437
2525
+ msgid ""
2526
+ "Set the size of your filmstrip. If the filmstrip is horizontal, this "
2527
+ "indicates its height, whereas for vertical filmstrips it sets the width."
2528
  msgstr ""
2529
 
2530
+ #: admin/views/Options.php:1884
2531
+ msgid "Enable this setting to display titles of images in Slideshow view."
2532
  msgstr ""
2533
 
2534
+ #: admin/views/Options.php:1889
2535
+ msgid "Title position"
2536
  msgstr ""
2537
 
2538
+ #: admin/views/Options.php:1911
2539
+ msgid "Set the position of image titles in Slideshow view."
2540
  msgstr ""
2541
 
2542
+ #: admin/views/Options.php:1916
2543
+ msgid "Full width title"
2544
  msgstr ""
2545
 
2546
+ #: admin/views/Options.php:1921
2547
+ msgid "Display image title based on the slideshow dimensions."
2548
  msgstr ""
2549
 
2550
+ #: admin/views/Options.php:1926 admin/views/Options.php:2020
2551
+ #: admin/views/Options.php:2294
2552
+ #, fuzzy
2553
+ #| msgid "Show comments"
2554
+ msgid "Show image description"
2555
+ msgstr "تظهر التعليقات"
2556
+
2557
+ #: admin/views/Options.php:1931
2558
+ msgid "Enable this setting to show descriptions of images in Slideshow view."
2559
  msgstr ""
2560
 
2561
+ #: admin/views/Options.php:1936
2562
+ msgid "Description position"
2563
  msgstr ""
2564
 
2565
+ #: admin/views/Options.php:1958
2566
+ msgid "Set the position of image descriptions in Slideshow view."
2567
  msgstr ""
2568
 
2569
+ #: admin/views/Options.php:1963
2570
+ msgid "Enable slideshow Music"
2571
+ msgstr ""
 
 
2572
 
2573
+ #: admin/views/Options.php:1968
2574
+ msgid ""
2575
+ "Enabling this option, you can have music playing along with your slideshow."
2576
  msgstr ""
2577
 
2578
+ #: admin/views/Options.php:1973
2579
+ msgid "Audio URL"
2580
  msgstr ""
2581
 
2582
+ #: admin/views/Options.php:1977
2583
+ msgid ""
2584
+ "Provide the absolute URL of the audio file you would like to play with your "
2585
+ "slideshow."
2586
  msgstr ""
2587
 
2588
+ #: admin/views/Options.php:2002 admin/views/Options.php:2144
2589
+ msgid "Image width"
 
 
2590
  msgstr ""
2591
 
2592
+ #: admin/views/Options.php:2006
2593
+ msgid "Specify the default width of images in Image Browser view."
2594
  msgstr ""
2595
 
2596
+ #: admin/views/Options.php:2025
2597
+ msgid "Enable this setting to display titles of images in Image Browser view."
2598
  msgstr ""
2599
 
2600
+ #: admin/views/Options.php:2148
2601
+ msgid "Specify the default width of images in Blog Style view."
2602
  msgstr ""
2603
 
2604
+ #: admin/views/Options.php:2174
2605
+ msgid "Select the number of images displayed per page in Blog Style view."
2606
+ msgstr ""
 
 
2607
 
2608
+ #: admin/views/Options.php:2288
2609
+ msgid "Enable this setting to display titles of images in Blog Style view."
2610
+ msgstr ""
 
 
 
2611
 
2612
+ #: admin/views/Options.php:2299
2613
+ msgid "Enable this setting to show descriptions of images in Blog Style view."
 
 
 
2614
  msgstr ""
2615
 
2616
+ #: admin/views/Options.php:2325
2617
+ msgid "Max. number of images"
 
2618
  msgstr ""
2619
 
2620
+ #: admin/views/Options.php:2329
2621
+ msgid "Set the maximum number of images that are shown with Carousel display."
2622
  msgstr ""
2623
 
2624
+ #: admin/views/Options.php:2340
2625
+ msgid "Specify the dimensions of carousel images in pixels."
2626
  msgstr ""
2627
 
2628
+ #: admin/views/Options.php:2346
2629
+ msgid "Carousel ratio"
2630
  msgstr ""
2631
 
2632
+ #: admin/views/Options.php:2350
2633
  msgid ""
2634
+ "This option defines the proportion of dimensions between neighboring images "
2635
+ "in the carousel."
2636
  msgstr ""
2637
 
2638
+ #: admin/views/Options.php:2356
2639
+ msgid "Fixed width"
 
2640
  msgstr ""
2641
 
2642
+ #: admin/views/Options.php:2360
2643
+ msgid "Specify the fixed width of Carousel gallery container."
2644
  msgstr ""
2645
 
2646
+ #: admin/views/Options.php:2397
2647
+ msgid "Activate this option to autoplay Carousel galleries."
2648
  msgstr ""
2649
 
2650
+ #: admin/views/Options.php:2407
2651
+ msgid ""
2652
+ "Specify the time interval between rotations in Photo Gallery's Carousel view."
2653
  msgstr ""
2654
 
2655
+ #: admin/views/Options.php:2420
2656
+ msgid ""
2657
+ "Display image titles in Photo Gallery Carousel view by activating this "
2658
+ "option."
2659
  msgstr ""
2660
 
2661
+ #: admin/views/Options.php:2426
2662
+ msgid "Container fit"
2663
  msgstr ""
2664
 
2665
+ #: admin/views/Options.php:2431
2666
+ msgid ""
2667
+ "Enabling this setting fits the images inside their container on Carousel "
2668
+ "galleries with fixed width."
2669
  msgstr ""
2670
 
2671
+ #: admin/views/Options.php:2437
2672
+ msgid "Next/Previous buttons"
2673
  msgstr ""
2674
 
2675
+ #: admin/views/Options.php:2442
2676
+ msgid ""
2677
+ "Enable this setting to display Next/Previous buttons on your galleries with "
2678
+ "Carousel view."
2679
  msgstr ""
2680
 
2681
+ #: admin/views/Options.php:2448
2682
+ msgid "Play/Pause buttons"
2683
  msgstr ""
2684
 
2685
+ #: admin/views/Options.php:2453
2686
+ msgid "Activate this to show Play/Pause buttons on your Carousel galleries."
 
 
 
 
 
 
 
 
 
 
 
 
2687
  msgstr ""
2688
 
2689
+ #: admin/views/Options.php:2485 admin/views/Options.php:2787
2690
+ msgid "Number of gallery group columns"
2691
  msgstr ""
2692
 
2693
+ #: admin/views/Options.php:2489 admin/views/Options.php:2791
2694
+ msgid ""
2695
+ "Set the maximum number of columns in gallery groups. Note, that the parent "
2696
+ "container needs to be large enough to display all columns."
2697
  msgstr ""
2698
 
2699
+ #: admin/views/Options.php:2494 admin/views/Options.php:3034
2700
+ msgid "Gallery group thumbnail dimensions"
2701
  msgstr ""
2702
 
2703
+ #: admin/views/Options.php:2499 admin/views/Options.php:2800
2704
+ #: admin/views/Options.php:3039
2705
+ msgid "Specify the dimensions of thumbnails in gallery groups."
2706
  msgstr ""
2707
 
2708
+ #: admin/views/Options.php:2538 admin/views/Options.php:2838
2709
+ #: admin/views/Options.php:3078
2710
+ #, fuzzy
2711
+ #| msgid "Gallery is empty."
2712
+ msgid "Gallery groups per page"
2713
+ msgstr "  معرض فارغة"
2714
 
2715
+ #: admin/views/Options.php:2542 admin/views/Options.php:2842
2716
+ #: admin/views/Options.php:3082
2717
+ msgid ""
2718
+ "Specify the number of galleries/gallery groups to display per page. Setting "
2719
+ "this option to 0 shows all items."
2720
  msgstr ""
2721
 
2722
+ #: admin/views/Options.php:2558 admin/views/Options.php:2858
2723
+ #: admin/views/Options.php:3098
2724
+ #, fuzzy
2725
+ #| msgid "Gallery is empty."
2726
+ msgid "Order Gallery group by"
2727
+ msgstr "  معرض فارغة"
2728
+
2729
+ #: admin/views/Options.php:2572 admin/views/Options.php:2872
2730
+ #: admin/views/Options.php:3112
2731
+ msgid ""
2732
+ "Select the parameter and order direction to sort the gallery group images "
2733
+ "with. E.g. Title and Ascending."
2734
  msgstr ""
2735
 
2736
+ #: admin/views/Options.php:2575 admin/views/Options.php:2875
2737
+ #: admin/views/Options.php:3116
2738
+ #, fuzzy
2739
+ #| msgid "Order by: "
2740
+ msgid "Order images by"
2741
+ msgstr "ترتيب حسب"
2742
+
2743
+ #: admin/views/Options.php:2647 admin/views/Options.php:2947
2744
+ #: admin/views/Options.php:3187
2745
+ msgid "Show gallery group or gallery title"
2746
  msgstr ""
2747
 
2748
+ #: admin/views/Options.php:2652 admin/views/Options.php:2952
2749
+ #: admin/views/Options.php:3192
2750
+ msgid ""
2751
+ "Display the title of displayed gallery or gallery group by enabling this "
2752
+ "setting."
2753
  msgstr ""
2754
 
2755
+ #: admin/views/Options.php:2657 admin/views/Options.php:2957
2756
+ #: admin/views/Options.php:3197
2757
+ msgid "Show gallery group or gallery description"
2758
  msgstr ""
2759
 
2760
+ #: admin/views/Options.php:2662 admin/views/Options.php:2962
2761
+ #: admin/views/Options.php:3202
2762
+ msgid ""
2763
+ "Display the description of displayed gallery or gallery group by enabling "
2764
+ "this setting."
2765
  msgstr ""
2766
 
2767
+ #: admin/views/Options.php:2673
2768
+ msgid ""
2769
+ "Choose to show/hide titles of galleries/gallery groups, or display them on "
2770
+ "hover."
2771
  msgstr ""
2772
 
2773
+ #: admin/views/Options.php:2678 admin/views/Options.php:3217
2774
+ #, fuzzy
2775
+ #| msgid "Gallery is empty."
2776
+ msgid "Gallery view type"
2777
+ msgstr "  معرض فارغة"
2778
+
2779
+ #: admin/views/Options.php:2688 admin/views/Options.php:3227
2780
+ msgid ""
2781
+ "Choose the display type for gallery groups, Thumbnails, Masonry, Mosaic, "
2782
+ "Slideshow, Image browser, Blog style or Carousel."
2783
  msgstr ""
2784
 
2785
+ #: admin/views/Options.php:2796
2786
+ #, fuzzy
2787
+ #| msgid "Gallery is empty."
2788
+ msgid "Gallery group thumbnail width"
2789
+ msgstr "  معرض فارغة"
2790
+
2791
+ #: admin/views/Options.php:2814
2792
+ msgid "Thumbnail width"
2793
  msgstr ""
2794
 
2795
+ #: admin/views/Options.php:3014
2796
+ msgid "Extended gallery group height"
2797
  msgstr ""
2798
 
2799
+ #: admin/views/Options.php:3018
2800
+ msgid "Set the height of blocks in Extended gallery groups."
2801
  msgstr ""
2802
 
2803
+ #: admin/views/Options.php:3023
2804
+ msgid "Number of columns"
2805
  msgstr ""
2806
 
2807
+ #: admin/views/Options.php:3025
2808
+ msgid "1 column"
2809
  msgstr ""
2810
 
2811
+ #: admin/views/Options.php:3026
2812
+ msgid "2 column"
2813
  msgstr ""
2814
 
2815
+ #: admin/views/Options.php:3027
2816
+ msgid "3 column"
2817
  msgstr ""
2818
 
2819
+ #: admin/views/Options.php:3029
2820
+ msgid "Set the maximum number of columns."
2821
  msgstr ""
2822
 
2823
+ #: admin/views/Options.php:3207
2824
+ msgid "Show extended gallery group description"
2825
  msgstr ""
2826
 
2827
+ #: admin/views/Options.php:3212
2828
+ msgid ""
2829
+ "Enable this option to show descriptions of galleries/gallery groups in "
2830
+ "Extended view."
2831
  msgstr ""
2832
 
2833
+ #: admin/views/Options.php:3354
2834
+ msgid "Full-width lightbox"
2835
  msgstr ""
2836
 
2837
+ #: admin/views/Options.php:3359
2838
+ msgid "Image lightbox will appear full-width if this setting is activated."
2839
  msgstr ""
2840
 
2841
+ #: admin/views/Options.php:3364
2842
+ msgid "Lightbox dimensions"
2843
  msgstr ""
2844
 
2845
+ #: admin/views/Options.php:3369
2846
+ msgid "Set the dimensions of image lightbox."
2847
  msgstr ""
2848
 
2849
+ #: admin/views/Options.php:3374
2850
+ msgid "Lightbox effect"
2851
  msgstr ""
2852
 
2853
+ #: admin/views/Options.php:3388
2854
+ msgid "Select the animation effect for image lightbox."
2855
  msgstr ""
2856
 
2857
+ #: admin/views/Options.php:3397
2858
+ msgid "Set the duration of lightbox animation effect."
2859
  msgstr ""
2860
 
2861
+ #: admin/views/Options.php:3398
2862
+ msgid ""
2863
+ "Note, that the value of Effect Duration can not be greater than 1/4 of Time "
2864
+ "Interval."
2865
  msgstr ""
2866
 
2867
+ #: admin/views/Options.php:3403
2868
+ msgid "Lightbox autoplay"
2869
  msgstr ""
2870
 
2871
+ #: admin/views/Options.php:3408
2872
+ msgid "Activate this option to autoplay images in gallery lightbox."
2873
  msgstr ""
2874
 
2875
+ #: admin/views/Options.php:3417
2876
+ msgid "Specify the time interval of autoplay in Photo Gallery lightbox."
2877
  msgstr ""
2878
 
2879
+ #: admin/views/Options.php:3422
2880
+ msgid "Enable filmstrip"
2881
  msgstr ""
2882
 
2883
+ #: admin/views/Options.php:3427
2884
+ msgid ""
2885
+ "Add a filmstrip with image thumbnails to the lightbox of your galleries."
 
2886
  msgstr ""
2887
 
2888
+ #: admin/views/Options.php:3433
2889
+ msgid "Filmstrip size"
 
 
 
2890
  msgstr ""
2891
 
2892
+ #: admin/views/Options.php:3476
2893
+ msgid "Enable this option to show control buttons on Photo Gallery lightbox."
 
 
 
2894
  msgstr ""
2895
 
2896
+ #: admin/views/Options.php:3481
 
 
 
2897
  #, fuzzy
2898
+ #| msgid "Exit Fullscreen"
2899
+ msgid "Enable fullscreen button"
2900
+ msgstr "خروج ملء الشاشة"
2901
 
2902
+ #: admin/views/Options.php:3486
2903
+ msgid ""
2904
+ "Activate this setting to add Fullscreen button to lightbox control buttons."
 
 
2905
  msgstr ""
2906
 
2907
+ #: admin/views/Options.php:3491
2908
+ #, fuzzy
2909
+ #| msgid "Show comments"
2910
+ msgid "Enable comments"
2911
+ msgstr "تظهر التعليقات"
 
 
2912
 
2913
+ #: admin/views/Options.php:3500
2914
+ msgid ""
2915
+ "Let users to leave comments on images by enabling comments section of "
2916
+ "lightbox."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2917
  msgstr ""
2918
 
2919
+ #: admin/views/Options.php:3506
2920
+ #, fuzzy
2921
+ #| msgid "Show comments"
2922
+ msgid "Show Email for comments"
2923
+ msgstr "تظهر التعليقات"
2924
 
2925
+ #: admin/views/Options.php:3511
2926
+ msgid ""
2927
+ "Activate this option to display email address field in comments section."
 
2928
  msgstr ""
2929
 
2930
+ #: admin/views/Options.php:3517
2931
+ #, fuzzy
2932
+ #| msgid "Show comments"
2933
+ msgid "Show Captcha for comments"
2934
+ msgstr "تظهر التعليقات"
2935
 
2936
+ #: admin/views/Options.php:3522
2937
+ msgid ""
2938
+ "Enable this setting to place Captcha word verification in comments section."
 
2939
  msgstr ""
2940
 
2941
+ #: admin/views/Options.php:3528
2942
+ #, fuzzy
2943
+ #| msgid "Your comment is awaiting moderation"
2944
+ msgid "Enable comments moderation"
2945
+ msgstr "تعليقك ينتظر الاعتدال"
2946
 
2947
+ #: admin/views/Options.php:3533
2948
+ msgid "Moderate each comment left on images by activating this setting."
 
2949
  msgstr ""
2950
 
2951
+ #: admin/views/Options.php:3539
2952
+ #, fuzzy
2953
+ #| msgid "Show comments"
2954
+ msgid "Show image info"
2955
+ msgstr "تظهر التعليقات"
2956
 
2957
+ #: admin/views/Options.php:3544
2958
+ msgid ""
2959
+ "Activate this setting to show Info button among lightbox control buttons."
2960
  msgstr ""
2961
 
2962
+ #: admin/views/Options.php:3549
2963
+ msgid "Display info by default"
 
2964
  msgstr ""
2965
 
2966
+ #: admin/views/Options.php:3554
2967
+ msgid ""
2968
+ "Enabling this option will let you show image title and description on "
2969
+ "lightbox by default."
 
2970
  msgstr ""
2971
 
2972
+ #: admin/views/Options.php:3559
2973
+ msgid "Full width info"
 
2974
  msgstr ""
2975
 
2976
+ #: admin/views/Options.php:3564
2977
+ msgid ""
2978
+ "Display info box with the full width of the lightbox by enabling this option."
 
 
 
2979
  msgstr ""
2980
 
2981
+ #: admin/views/Options.php:3574
2982
+ msgid ""
2983
+ "Choose to display Next/Previous buttons of Photo Gallery lightbox on hover "
2984
+ "or always."
 
 
2985
  msgstr ""
2986
 
2987
+ #: admin/views/Options.php:3579
2988
+ msgid "Display views counter"
 
 
 
2989
  msgstr ""
2990
 
2991
+ #: admin/views/Options.php:3584
2992
+ msgid "Show the number of views, when a gallery image was opened in lightbox."
 
 
2993
  msgstr ""
2994
 
2995
+ #: admin/views/Options.php:3590
2996
+ #, fuzzy
2997
+ #| msgid "Hide rating"
2998
+ msgid "Enable rating"
2999
+ msgstr "اخفاء تصنيف"
 
3000
 
3001
+ #: admin/views/Options.php:3595
3002
+ msgid ""
3003
+ "Allow users to rate your images by adding rating feature to Photo Gallery "
3004
+ "lightbox."
 
3005
  msgstr ""
3006
 
3007
+ #: admin/views/Options.php:3603
3008
+ msgid "Show Display Original Image button"
 
3009
  msgstr ""
3010
 
3011
+ #: admin/views/Options.php:3608
3012
+ msgid ""
3013
+ "Let users view original versions of your images by enabling this button."
 
3014
  msgstr ""
3015
 
3016
+ #: admin/views/Options.php:3613
3017
+ msgid "Show download button"
 
 
 
3018
  msgstr ""
3019
 
3020
+ #: admin/views/Options.php:3618
3021
+ msgid ""
3022
+ "This option will allow users to download gallery images while viewing them "
3023
+ "in lightbox."
 
3024
  msgstr ""
3025
 
3026
+ #: admin/views/Options.php:3623
3027
+ #, fuzzy
3028
+ #| msgid "Show comments"
3029
+ msgid "Show image counter"
3030
+ msgstr "تظهر التعليقات"
 
3031
 
3032
+ #: admin/views/Options.php:3628
3033
+ msgid "Enable this option to display image counter on Photo Gallery lightbox."
 
 
 
3034
  msgstr ""
3035
 
3036
+ #: admin/views/Options.php:3633
3037
+ #, fuzzy
3038
+ #| msgid "Hide rating"
3039
+ msgid "Enable looping"
3040
+ msgstr "اخفاء تصنيف"
 
3041
 
3042
+ #: admin/views/Options.php:3638
3043
+ msgid ""
3044
+ "Activate looping to start lightbox navigation from the beginning when users "
3045
+ "reach its last image."
 
3046
  msgstr ""
3047
 
3048
+ #: admin/views/Options.php:3643
3049
+ msgid "Enable"
 
 
 
3050
  msgstr ""
3051
 
3052
+ #: admin/views/Options.php:3648
3053
+ msgid "Display AddThis on Photo Gallery lightbox by activating this option."
3054
  msgstr ""
3055
 
3056
+ #: admin/views/Options.php:3654
3057
+ msgid "profile ID"
 
 
 
3058
  msgstr ""
3059
 
3060
+ #: admin/views/Options.php:3658
3061
+ msgid "Provide the ID of your profile to connect to AddThis."
 
 
3062
  msgstr ""
3063
 
3064
+ #: admin/views/Options.php:3658
3065
+ #, php-format
3066
+ msgid "Create an account %s."
3067
  msgstr ""
3068
 
3069
+ #: admin/views/Options.php:3658 admin/views/Shortcode.php:254
3070
+ msgid "here"
 
3071
  msgstr ""
3072
 
3073
+ #: admin/views/Options.php:3664
3074
+ #, fuzzy
3075
+ #| msgid "Share on Facebook"
3076
+ msgid "Show Facebook button"
3077
+ msgstr "حصة في الفيسبوك"
3078
 
3079
+ #: admin/views/Options.php:3669
3080
+ msgid ""
3081
+ "Enabling this setting will add Facebook sharing button to Photo Gallery "
3082
+ "lightbox."
3083
  msgstr ""
3084
 
3085
+ #: admin/views/Options.php:3675
3086
+ #, fuzzy
3087
+ #| msgid "Share on Twitter"
3088
+ msgid "Show Twitter button"
3089
+ msgstr "مشاركة على تويتر"
3090
 
3091
+ #: admin/views/Options.php:3680
3092
+ msgid "Enable this setting to add Tweet button to Photo Gallery lightbox."
 
3093
  msgstr ""
3094
 
3095
+ #: admin/views/Options.php:3686
3096
+ #, fuzzy
3097
+ #| msgid "Share on Pinterest"
3098
+ msgid "Show Pinterest button"
3099
+ msgstr "على حصة بينتيريست"
3100
 
3101
+ #: admin/views/Options.php:3691
3102
+ msgid "Activate Pin button of Photo Gallery lightbox by enabling this setting."
3103
  msgstr ""
3104
 
3105
+ #: admin/views/Options.php:3697
3106
+ #, fuzzy
3107
+ #| msgid "Share on Tumblr"
3108
+ msgid "Show Tumblr button"
3109
+ msgstr "نعرفكم على حصة"
3110
 
3111
+ #: admin/views/Options.php:3702
3112
+ msgid ""
3113
+ "Allow users to share images on Tumblr from Photo Gallery lightbox by "
3114
+ "activating this setting."
3115
  msgstr ""
3116
 
3117
+ #: admin/views/Options.php:3711
3118
+ #, fuzzy
3119
+ #| msgid "Show comments"
3120
+ msgid "Show Ecommerce button"
3121
+ msgstr "تظهر التعليقات"
3122
 
3123
+ #: admin/views/Options.php:3716
3124
+ msgid "Enable this option to display ecommerce icon on Photo Gallery lightbox"
 
3125
  msgstr ""
3126
 
3127
+ #: admin/views/Ratings.php:40 admin/views/Ratings.php:59
3128
+ #: admin/views/Ratings.php:91
3129
+ msgid "IP"
3130
  msgstr ""
3131
 
3132
+ #: admin/views/Ratings.php:58 admin/views/Ratings.php:90
3133
+ msgid "Rating"
 
3134
  msgstr ""
3135
 
3136
+ #: admin/views/Shortcode.php:198
3137
+ msgid "Select the gallery to display."
 
3138
  msgstr ""
3139
 
3140
+ #: admin/views/Shortcode.php:201
3141
+ #, fuzzy
3142
+ #| msgid "Gallery is empty."
3143
+ msgid "Gallery Group"
3144
+ msgstr "  معرض فارغة"
3145
 
3146
+ #: admin/views/Shortcode.php:212
3147
+ msgid "Select the gallery group to display."
3148
  msgstr ""
3149
 
3150
+ #: admin/views/Shortcode.php:218
3151
+ msgid "Tag"
3152
  msgstr ""
3153
 
3154
+ #: admin/views/Shortcode.php:230
3155
+ #, fuzzy
3156
+ #| msgid "There are no images in this gallery."
3157
+ msgid "Filter gallery images by this tag."
3158
+ msgstr "ا توجد صور في هذا الألبوم"
3159
 
3160
+ #: admin/views/Shortcode.php:235
3161
+ msgid "Theme"
3162
  msgstr ""
3163
 
3164
+ #: admin/views/Shortcode.php:247
3165
+ msgid "Choose the theme for your gallery."
3166
  msgstr ""
3167
 
3168
+ #: admin/views/Shortcode.php:253
3169
+ msgid "Use default options"
3170
  msgstr ""
3171
 
3172
+ #: admin/views/Shortcode.php:254
3173
+ msgid ""
3174
+ "Mark this option to use default settings configured in Photo Gallery Options."
3175
  msgstr ""
3176
 
3177
+ #: admin/views/Shortcode.php:254
3178
+ #, php-format
3179
+ msgid "You can change the default options %s."
3180
  msgstr ""
3181
 
3182
+ #: admin/views/Shortcode.php:279
3183
+ msgid "Action on image click"
3184
  msgstr ""
3185
 
3186
+ #: admin/views/Shortcode.php:289
3187
+ msgid "Toggle panel"
3188
  msgstr ""
3189
 
3190
+ #: admin/views/Shortcode.php:425
3191
+ msgid "Insert into post"
3192
  msgstr ""
3193
 
3194
+ #: admin/views/Shortcode.php:430
3195
+ msgid "Please see "
3196
  msgstr ""
3197
 
3198
+ #: admin/views/Shortcode.php:430
3199
+ msgid "View in Premium version"
3200
  msgstr ""
3201
 
3202
+ #: admin/views/Shortcode.php:452
3203
+ msgid "New shortcode"
3204
  msgstr ""
3205
 
3206
+ #: admin/views/Shortcode.php:461 admin/views/Shortcode.php:545
3207
+ msgid "Generate"
3208
  msgstr ""
3209
 
3210
+ #: admin/views/Shortcode.php:463
3211
+ msgid ""
3212
+ "If you would like to edit an existing shortcode, use this dropdown box to "
3213
+ "select it."
3214
  msgstr ""
3215
 
3216
+ #: admin/views/Shortcode.php:467
3217
+ msgid "Shortcode"
3218
  msgstr ""
3219
 
3220
+ #: admin/views/Shortcode.php:469
3221
+ msgid ""
3222
+ "Add the selected gallery or gallery group to any WordPress page or post. "
3223
+ "Simply copy the generated shortcode and paste it in the content of page/post "
3224
+ "editor."
3225
  msgstr ""
3226
 
3227
+ #: admin/views/Shortcode.php:474
3228
+ msgid "PHP function"
3229
  msgstr ""
3230
 
3231
+ #: admin/views/Shortcode.php:476
3232
+ msgid ""
3233
+ "Use generated PHP function to call the selected gallery or gallery group on "
3234
+ "a custom PHP template."
3235
  msgstr ""
3236
 
3237
+ #: admin/views/Shortcode.php:563
3238
+ msgid "There is no shortcode with such ID!"
3239
  msgstr ""
3240
 
3241
+ #: admin/views/Shortcode.php:2153
3242
+ msgid "Image thumbnail width "
3243
  msgstr ""
3244
 
3245
+ #: admin/views/Shortcode.php:2155
3246
+ msgid "Image thumbnail height"
3247
  msgstr ""
3248
 
3249
+ #: admin/views/Themes.php:22
3250
+ msgid "You can't change theme parameters in free version."
3251
  msgstr ""
3252
 
3253
+ #: admin/views/Themes.php:176
3254
+ #, fuzzy
3255
+ #| msgid "Show rating"
3256
+ msgid "Theme title"
3257
+ msgstr "تظهر التصنيف"
3258
 
3259
+ #: admin/views/Themes.php:184
3260
+ msgid "Reset to default theme"
3261
  msgstr ""
3262
 
3263
+ #: admin/views/Themes.php:212 admin/views/Themes.php:534
3264
+ #: admin/views/Themes.php:856 admin/views/Themes.php:1911
3265
+ #: admin/views/Themes.php:2921
3266
+ msgid "Distance between pictures:"
3267
  msgstr ""
3268
 
3269
+ #: admin/views/Themes.php:218 admin/views/Themes.php:540
3270
+ #: admin/views/Themes.php:862 admin/views/Themes.php:1917
3271
+ #: admin/views/Themes.php:2927
3272
+ msgid "Distance from container frame:"
3273
  msgstr ""
3274
 
3275
+ #: admin/views/Themes.php:224 admin/views/Themes.php:546
3276
+ #: admin/views/Themes.php:868 admin/views/Themes.php:1923
3277
+ #: admin/views/Themes.php:2933
3278
+ msgid ""
3279
+ "Enable this option to add distance between the parent container and the "
3280
+ "thumbnails grid."
3281
  msgstr ""
3282
 
3283
+ #: admin/views/Themes.php:228 admin/views/Themes.php:1640
3284
+ #: admin/views/Themes.php:1927 admin/views/Themes.php:2473
3285
+ #: admin/views/Themes.php:3302 admin/views/Themes.php:4679
3286
+ msgid "Padding:"
3287
  msgstr ""
3288
 
3289
+ #: admin/views/Themes.php:234 admin/views/Themes.php:550
3290
+ #: admin/views/Themes.php:872 admin/views/Themes.php:1647
3291
+ #: admin/views/Themes.php:1934 admin/views/Themes.php:2937
3292
+ #: admin/views/Themes.php:3360 admin/views/Themes.php:4629
3293
+ msgid "Border width:"
3294
  msgstr ""
3295
 
3296
+ #: admin/views/Themes.php:240 admin/views/Themes.php:556
3297
+ #: admin/views/Themes.php:878 admin/views/Themes.php:1653
3298
+ #: admin/views/Themes.php:1940 admin/views/Themes.php:2943
3299
+ #: admin/views/Themes.php:3366 admin/views/Themes.php:4635
3300
+ #, fuzzy
3301
+ #| msgid "Order by: "
3302
+ msgid "Border style:"
3303
+ msgstr "ترتيب حسب"
3304
 
3305
+ #: admin/views/Themes.php:254 admin/views/Themes.php:570
3306
+ #: admin/views/Themes.php:892 admin/views/Themes.php:1667
3307
+ #: admin/views/Themes.php:1954 admin/views/Themes.php:2957
3308
+ #: admin/views/Themes.php:3380 admin/views/Themes.php:4649
3309
+ msgid "Border color:"
3310
  msgstr ""
3311
 
3312
+ #: admin/views/Themes.php:260 admin/views/Themes.php:576
3313
+ #: admin/views/Themes.php:898 admin/views/Themes.php:1673
3314
+ #: admin/views/Themes.php:1960 admin/views/Themes.php:2492
3315
+ #: admin/views/Themes.php:2963 admin/views/Themes.php:3386
3316
+ #: admin/views/Themes.php:4655
3317
+ msgid "Border radius:"
3318
  msgstr ""
3319
 
3320
+ #: admin/views/Themes.php:263 admin/views/Themes.php:270
3321
+ #: admin/views/Themes.php:432 admin/views/Themes.php:439
3322
+ #: admin/views/Themes.php:495 admin/views/Themes.php:502
3323
+ #: admin/views/Themes.php:579 admin/views/Themes.php:728
3324
+ #: admin/views/Themes.php:817 admin/views/Themes.php:824
3325
+ #: admin/views/Themes.php:901 admin/views/Themes.php:1052
3326
+ #: admin/views/Themes.php:1059 admin/views/Themes.php:1114
3327
+ #: admin/views/Themes.php:1121 admin/views/Themes.php:1237
3328
+ #: admin/views/Themes.php:1258 admin/views/Themes.php:1286
3329
+ #: admin/views/Themes.php:1320 admin/views/Themes.php:1376
3330
+ #: admin/views/Themes.php:1436 admin/views/Themes.php:1443
3331
+ #: admin/views/Themes.php:1497 admin/views/Themes.php:1504
3332
+ #: admin/views/Themes.php:1559 admin/views/Themes.php:1579
3333
+ #: admin/views/Themes.php:1636 admin/views/Themes.php:1643
3334
+ #: admin/views/Themes.php:1676 admin/views/Themes.php:1696
3335
+ #: admin/views/Themes.php:1770 admin/views/Themes.php:1777
3336
+ #: admin/views/Themes.php:1810 admin/views/Themes.php:1872
3337
+ #: admin/views/Themes.php:1879 admin/views/Themes.php:1930
3338
+ #: admin/views/Themes.php:1963 admin/views/Themes.php:1970
3339
+ #: admin/views/Themes.php:2130 admin/views/Themes.php:2137
3340
+ #: admin/views/Themes.php:2192 admin/views/Themes.php:2247
3341
+ #: admin/views/Themes.php:2254 admin/views/Themes.php:2327
3342
+ #: admin/views/Themes.php:2334 admin/views/Themes.php:2422
3343
+ #: admin/views/Themes.php:2462 admin/views/Themes.php:2469
3344
+ #: admin/views/Themes.php:2495 admin/views/Themes.php:2528
3345
+ #: admin/views/Themes.php:2607 admin/views/Themes.php:2640
3346
+ #: admin/views/Themes.php:2659 admin/views/Themes.php:2740
3347
+ #: admin/views/Themes.php:2881 admin/views/Themes.php:2888
3348
+ #: admin/views/Themes.php:2966 admin/views/Themes.php:3119
3349
+ #: admin/views/Themes.php:3174 admin/views/Themes.php:3229
3350
+ #: admin/views/Themes.php:3236 admin/views/Themes.php:3298
3351
+ #: admin/views/Themes.php:3305 admin/views/Themes.php:3312
3352
+ #: admin/views/Themes.php:3389 admin/views/Themes.php:3406
3353
+ #: admin/views/Themes.php:3451 admin/views/Themes.php:3534
3354
+ #: admin/views/Themes.php:3541 admin/views/Themes.php:3635
3355
+ #: admin/views/Themes.php:3689 admin/views/Themes.php:3722
3356
+ #: admin/views/Themes.php:3830 admin/views/Themes.php:3867
3357
+ #: admin/views/Themes.php:3911 admin/views/Themes.php:3944
3358
+ #: admin/views/Themes.php:4049 admin/views/Themes.php:4118
3359
+ #: admin/views/Themes.php:4125 admin/views/Themes.php:4132
3360
+ #: admin/views/Themes.php:4260 admin/views/Themes.php:4267
3361
+ #: admin/views/Themes.php:4274 admin/views/Themes.php:4485
3362
+ #: admin/views/Themes.php:4504 admin/views/Themes.php:4537
3363
+ #: admin/views/Themes.php:4658 admin/views/Themes.php:4675
3364
+ #: admin/views/Themes.php:4682 admin/views/Themes.php:4711
3365
+ #: admin/views/Themes.php:4872 admin/views/Themes.php:4961
3366
+ msgid "Use CSS type values."
3367
  msgstr ""
3368
 
3369
+ #: admin/views/Themes.php:267 admin/views/Themes.php:1967
3370
+ msgid "Shadow:"
3371
  msgstr ""
3372
 
3373
+ #: admin/views/Themes.php:274 admin/views/Themes.php:583
3374
+ #: admin/views/Themes.php:905 admin/views/Themes.php:1974
3375
+ #: admin/views/Themes.php:2970
3376
+ msgid "Hover effect:"
3377
  msgstr ""
3378
 
3379
+ #: admin/views/Themes.php:288 admin/views/Themes.php:597
3380
+ #: admin/views/Themes.php:919 admin/views/Themes.php:1988
3381
+ #: admin/views/Themes.php:2382 admin/views/Themes.php:2984
3382
+ msgid "Hover effect value:"
3383
  msgstr ""
3384
 
3385
+ #: admin/views/Themes.php:291
3386
+ msgid "E.g. Rotate: 10deg, Scale/Zoom: 1.5, Skew: 10deg."
3387
  msgstr ""
3388
 
3389
+ #: admin/views/Themes.php:295 admin/views/Themes.php:604
3390
+ #: admin/views/Themes.php:926
3391
+ msgid "Transition:"
 
3392
  msgstr ""
3393
 
3394
+ #: admin/views/Themes.php:315 admin/views/Themes.php:624
3395
+ #: admin/views/Themes.php:2014 admin/views/Themes.php:2389
3396
+ #: admin/views/Themes.php:3011
3397
+ msgid "Thumbnail background color:"
3398
  msgstr ""
3399
 
3400
+ #: admin/views/Themes.php:322 admin/views/Themes.php:2020
3401
+ #: admin/views/Themes.php:2361 admin/views/Themes.php:3018
3402
+ msgid "Thumbnail transparency:"
 
3403
  msgstr ""
3404
 
3405
+ #: admin/views/Themes.php:325 admin/views/Themes.php:338
3406
+ #: admin/views/Themes.php:634 admin/views/Themes.php:647
3407
+ #: admin/views/Themes.php:954 admin/views/Themes.php:967
3408
+ #: admin/views/Themes.php:1180 admin/views/Themes.php:1339
3409
+ #: admin/views/Themes.php:1429 admin/views/Themes.php:1490
3410
+ #: admin/views/Themes.php:1572 admin/views/Themes.php:1689
3411
+ #: admin/views/Themes.php:2023 admin/views/Themes.php:2036
3412
+ #: admin/views/Themes.php:2364 admin/views/Themes.php:2404
3413
+ #: admin/views/Themes.php:2488 admin/views/Themes.php:3021
3414
+ #: admin/views/Themes.php:3034 admin/views/Themes.php:3277
3415
+ #: admin/views/Themes.php:3464 admin/views/Themes.php:3582
3416
+ #: admin/views/Themes.php:3595 admin/views/Themes.php:3642
3417
+ #: admin/views/Themes.php:3669 admin/views/Themes.php:3963
3418
+ #: admin/views/Themes.php:4085 admin/views/Themes.php:4227
3419
+ #: admin/views/Themes.php:4695 admin/views/Themes.php:4790
3420
+ #: admin/views/Themes.php:4815 admin/views/Themes.php:4954
3421
+ msgid "Value must be between 0 to 100."
3422
  msgstr ""
3423
 
3424
+ #: admin/views/Themes.php:329 admin/views/Themes.php:1563
3425
+ #: admin/views/Themes.php:2027 admin/views/Themes.php:3025
3426
+ msgid "Full background color:"
3427
  msgstr ""
3428
 
3429
+ #: admin/views/Themes.php:335 admin/views/Themes.php:1569
3430
+ #: admin/views/Themes.php:2033 admin/views/Themes.php:3031
3431
+ msgid "Full background transparency:"
3432
  msgstr ""
3433
 
3434
+ #: admin/views/Themes.php:342 admin/views/Themes.php:651
3435
+ #: admin/views/Themes.php:971 admin/views/Themes.php:1619
3436
+ #: admin/views/Themes.php:2040 admin/views/Themes.php:3038
3437
+ #: admin/views/Themes.php:3281 admin/views/Themes.php:4734
3438
+ msgid "Alignment:"
3439
  msgstr ""
3440
 
3441
+ #: admin/views/Themes.php:366 admin/views/Themes.php:1710
3442
+ #: admin/views/Themes.php:2064
3443
+ msgid "Title position:"
3444
  msgstr ""
3445
 
3446
+ #: admin/views/Themes.php:369 admin/views/Themes.php:1275
3447
+ #: admin/views/Themes.php:1713 admin/views/Themes.php:2067
3448
+ #: admin/views/Themes.php:3620 admin/views/Themes.php:3900
3449
+ #: admin/views/Themes.php:3988 admin/views/Themes.php:4056
3450
+ #: admin/views/Themes.php:4198 admin/views/Themes.php:4728
3451
+ msgid "Top"
3452
  msgstr ""
3453
 
3454
+ #: admin/views/Themes.php:371 admin/views/Themes.php:1277
3455
+ #: admin/views/Themes.php:1715 admin/views/Themes.php:2069
3456
+ #: admin/views/Themes.php:3622 admin/views/Themes.php:3902
3457
+ #: admin/views/Themes.php:3990 admin/views/Themes.php:4058
3458
+ #: admin/views/Themes.php:4200 admin/views/Themes.php:4730
3459
+ msgid "Bottom"
3460
  msgstr ""
3461
 
3462
+ #: admin/views/Themes.php:375 admin/views/Themes.php:671
3463
+ #: admin/views/Themes.php:995 admin/views/Themes.php:2073
3464
+ #: admin/views/Themes.php:2689 admin/views/Themes.php:3062
3465
+ #: admin/views/Themes.php:4320 admin/views/Themes.php:4999
3466
+ msgid "Title font size:"
3467
  msgstr ""
3468
 
3469
+ #: admin/views/Themes.php:381 admin/views/Themes.php:677
3470
+ #: admin/views/Themes.php:1001 admin/views/Themes.php:2079
3471
+ #: admin/views/Themes.php:2695 admin/views/Themes.php:3068
3472
+ #: admin/views/Themes.php:4278
3473
+ msgid "Title font color:"
3474
  msgstr ""
3475
 
3476
+ #: admin/views/Themes.php:387 admin/views/Themes.php:683
3477
+ #: admin/views/Themes.php:1007 admin/views/Themes.php:2085
3478
+ #: admin/views/Themes.php:3074
3479
+ msgid "Title font color (Show on hover):"
3480
  msgstr ""
3481
 
3482
+ #: admin/views/Themes.php:393 admin/views/Themes.php:689
3483
+ #: admin/views/Themes.php:1013 admin/views/Themes.php:1459
3484
+ #: admin/views/Themes.php:2091 admin/views/Themes.php:2701
3485
+ #: admin/views/Themes.php:3080 admin/views/Themes.php:4284
3486
+ msgid "Title font family:"
3487
  msgstr ""
3488
 
3489
+ #: admin/views/Themes.php:415 admin/views/Themes.php:711
3490
+ #: admin/views/Themes.php:1035 admin/views/Themes.php:2113
3491
+ #: admin/views/Themes.php:2723 admin/views/Themes.php:3102
3492
+ #: admin/views/Themes.php:4306 admin/views/Themes.php:5011
3493
+ msgid "Title font weight:"
3494
  msgstr ""
3495
 
3496
+ #: admin/views/Themes.php:429 admin/views/Themes.php:1049
3497
+ #: admin/views/Themes.php:2127 admin/views/Themes.php:3116
3498
+ msgid "Title box shadow:"
3499
  msgstr ""
3500
 
3501
+ #: admin/views/Themes.php:436 admin/views/Themes.php:725
3502
+ #: admin/views/Themes.php:1056 admin/views/Themes.php:2134
3503
+ #: admin/views/Themes.php:2650 admin/views/Themes.php:4965
3504
+ msgid "Title margin:"
3505
  msgstr ""
3506
 
3507
+ #: admin/views/Themes.php:443 admin/views/Themes.php:766
3508
+ #: admin/views/Themes.php:1063 admin/views/Themes.php:1820
3509
+ #: admin/views/Themes.php:2196 admin/views/Themes.php:2830
3510
+ #: admin/views/Themes.php:3178 admin/views/Themes.php:3482
3511
+ msgid "Gallery title/description font size:"
3512
  msgstr ""
3513
 
3514
+ #: admin/views/Themes.php:450 admin/views/Themes.php:772
3515
+ #: admin/views/Themes.php:1069 admin/views/Themes.php:1827
3516
+ #: admin/views/Themes.php:2202 admin/views/Themes.php:2836
3517
+ #: admin/views/Themes.php:3184 admin/views/Themes.php:3489
3518
+ msgid "Gallery title/description font color:"
3519
  msgstr ""
3520
 
3521
+ #: admin/views/Themes.php:456 admin/views/Themes.php:778
3522
+ #: admin/views/Themes.php:1075 admin/views/Themes.php:1833
3523
+ #: admin/views/Themes.php:2208 admin/views/Themes.php:2842
3524
+ #: admin/views/Themes.php:3190 admin/views/Themes.php:3495
3525
+ msgid "Gallery title/description font family:"
3526
  msgstr ""
3527
 
3528
+ #: admin/views/Themes.php:478 admin/views/Themes.php:800
3529
+ #: admin/views/Themes.php:1097 admin/views/Themes.php:1855
3530
+ #: admin/views/Themes.php:2230 admin/views/Themes.php:2864
3531
+ #: admin/views/Themes.php:3212 admin/views/Themes.php:3517
3532
+ msgid "Gallery title/description font weight:"
3533
  msgstr ""
3534
 
3535
+ #: admin/views/Themes.php:492 admin/views/Themes.php:814
3536
+ #: admin/views/Themes.php:1111 admin/views/Themes.php:1869
3537
+ #: admin/views/Themes.php:2244 admin/views/Themes.php:2878
3538
+ #: admin/views/Themes.php:3226 admin/views/Themes.php:3531
3539
+ msgid "Gallery title/description box shadow:"
3540
  msgstr ""
3541
 
3542
+ #: admin/views/Themes.php:499 admin/views/Themes.php:821
3543
+ #: admin/views/Themes.php:1118 admin/views/Themes.php:1876
3544
+ #: admin/views/Themes.php:2251 admin/views/Themes.php:2885
3545
+ #: admin/views/Themes.php:3233 admin/views/Themes.php:3538
3546
+ msgid "Gallery title/description margin:"
3547
  msgstr ""
3548
 
3549
+ #: admin/views/Themes.php:506 admin/views/Themes.php:828
3550
+ #: admin/views/Themes.php:1125 admin/views/Themes.php:1883
3551
+ #: admin/views/Themes.php:2258 admin/views/Themes.php:2892
3552
+ #: admin/views/Themes.php:3240 admin/views/Themes.php:3545
3553
+ #, fuzzy
3554
+ #| msgid "Gallery is empty."
3555
+ msgid "Gallery title alignment:"
3556
+ msgstr "  معرض فارغة"
3557
 
3558
+ #: admin/views/Themes.php:600 admin/views/Themes.php:922
3559
+ #: admin/views/Themes.php:1991 admin/views/Themes.php:2385
3560
+ #: admin/views/Themes.php:2987
3561
+ msgid "E.g. Rotate: 10deg, Scale: 1.5, Skew: 10deg."
3562
  msgstr ""
3563
 
3564
+ #: admin/views/Themes.php:631 admin/views/Themes.php:951