Photo Gallery by WD – Responsive Photo Gallery - Version 1.2.67

Version Description

  • Added: Backend translation.
  • Fixed: Pagination on tags page.
Download this release

Release Info

Developer webdorado
Plugin Icon 128x128 Photo Gallery by WD – Responsive Photo Gallery
Version 1.2.67
Comparing to
See all releases

Code changes from version 1.2.66 to 1.2.67

admin/controllers/BWGControllerGalleries_bwg.php CHANGED
@@ -724,7 +724,7 @@ class BWGControllerGalleries_bwg {
724
  }
725
 
726
  public function save() {
727
- echo WDWLibrary::message('Item Succesfully Saved.', 'updated');
728
  $this->display();
729
  }
730
 
@@ -865,10 +865,10 @@ class BWGControllerGalleries_bwg {
865
  ));
866
  }
867
  if ($save !== FALSE) {
868
- echo WDWLibrary::message('Item Succesfully Saved.', 'updated');
869
  }
870
  else {
871
- echo WDWLibrary::message('Error. Please install plugin again.', 'error');
872
  }
873
  }
874
 
@@ -891,7 +891,7 @@ class BWGControllerGalleries_bwg {
891
  $i++;
892
  }
893
  if ($flag) {
894
- echo WDWLibrary::message('Ordering Succesfully Saved.', 'updated');
895
  }
896
  }
897
  $this->display();
@@ -905,10 +905,10 @@ class BWGControllerGalleries_bwg {
905
  if ($wpdb->query($query)) {
906
  $wpdb->query($query_image);
907
  $wpdb->query($query_album_gallery);
908
- echo WDWLibrary::message('Item Succesfully Deleted.', 'updated');
909
  }
910
  else {
911
- echo WDWLibrary::message('Error. Please install plugin again.', 'error');
912
  }
913
  /* Delete corresponding posts and their meta.*/
914
  $query2 = "SELECT ID, post_content FROM " . $wpdb->posts . " WHERE post_type = 'bwg_gallery'";
@@ -938,10 +938,10 @@ class BWGControllerGalleries_bwg {
938
  }
939
  }
940
  if ($flag) {
941
- echo WDWLibrary::message('Items Succesfully Deleted.', 'updated');
942
  }
943
  else {
944
- echo WDWLibrary::message('You must select at least one item.', 'error');
945
  }
946
  $this->display();
947
  }
@@ -950,10 +950,10 @@ class BWGControllerGalleries_bwg {
950
  global $wpdb;
951
  $save = $wpdb->update($wpdb->prefix . 'bwg_gallery', array('published' => 1), array('id' => $id));
952
  if ($save !== FALSE) {
953
- echo WDWLibrary::message('Item Succesfully Published.', 'updated');
954
  }
955
  else {
956
- echo WDWLibrary::message('Error. Please install plugin again.', 'error');
957
  }
958
  $this->display();
959
  }
@@ -975,10 +975,10 @@ class BWGControllerGalleries_bwg {
975
  }
976
  }
977
  if ($flag) {
978
- echo WDWLibrary::message('Items Succesfully Published.', 'updated');
979
  }
980
  else {
981
- echo WDWLibrary::message('You must select at least one item.', 'error');
982
  }
983
  $this->display();
984
  }
@@ -987,10 +987,10 @@ class BWGControllerGalleries_bwg {
987
  global $wpdb;
988
  $save = $wpdb->update($wpdb->prefix . 'bwg_gallery', array('published' => 0), array('id' => $id));
989
  if ($save !== FALSE) {
990
- echo WDWLibrary::message('Item Succesfully Unpublished.', 'updated');
991
  }
992
  else {
993
- echo WDWLibrary::message('Error. Please install plugin again.', 'error');
994
  }
995
  $this->display();
996
  }
@@ -1012,10 +1012,10 @@ class BWGControllerGalleries_bwg {
1012
  }
1013
  }
1014
  if ($flag) {
1015
- echo WDWLibrary::message('Items Succesfully Unpublished.', 'updated');
1016
  }
1017
  else {
1018
- echo WDWLibrary::message('You must select at least one item.', 'error');
1019
  }
1020
  $this->display();
1021
  }
@@ -1094,10 +1094,10 @@ class BWGControllerGalleries_bwg {
1094
  }
1095
  }
1096
  if ($flag == false) {
1097
- echo WDWLibrary::message('You must select at least one item.', 'error');
1098
  }
1099
  else {
1100
- echo WDWLibrary::message('Thumb Succesfully Resized', 'updated');
1101
  }
1102
  }
1103
 
724
  }
725
 
726
  public function save() {
727
+ echo WDWLibrary::message(__('Item Succesfully Saved.', 'bwg_back'), 'updated');
728
  $this->display();
729
  }
730
 
865
  ));
866
  }
867
  if ($save !== FALSE) {
868
+ echo WDWLibrary::message(__('Item Succesfully Saved.', 'bwg_back'), 'updated');
869
  }
870
  else {
871
+ echo WDWLibrary::message(__('Error. Please install plugin again.', 'bwg_back'), 'error');
872
  }
873
  }
874
 
891
  $i++;
892
  }
893
  if ($flag) {
894
+ echo WDWLibrary::message(__('Ordering Succesfully Saved.', 'bwg_back'), 'updated');
895
  }
896
  }
897
  $this->display();
905
  if ($wpdb->query($query)) {
906
  $wpdb->query($query_image);
907
  $wpdb->query($query_album_gallery);
908
+ echo WDWLibrary::message(__('Item Succesfully Deleted.', 'bwg_back'), 'updated');
909
  }
910
  else {
911
+ echo WDWLibrary::message(__('Error. Please install plugin again.', 'bwg_back'), 'error');
912
  }
913
  /* Delete corresponding posts and their meta.*/
914
  $query2 = "SELECT ID, post_content FROM " . $wpdb->posts . " WHERE post_type = 'bwg_gallery'";
938
  }
939
  }
940
  if ($flag) {
941
+ echo WDWLibrary::message(__('Items Succesfully Deleted.', 'bwg_back'), 'updated');
942
  }
943
  else {
944
+ echo WDWLibrary::message(__('You must select at least one item.', 'bwg_back'), 'error');
945
  }
946
  $this->display();
947
  }
950
  global $wpdb;
951
  $save = $wpdb->update($wpdb->prefix . 'bwg_gallery', array('published' => 1), array('id' => $id));
952
  if ($save !== FALSE) {
953
+ echo WDWLibrary::message(__('Item Succesfully Published.', 'bwg_back'), 'updated');
954
  }
955
  else {
956
+ echo WDWLibrary::message(__('Error. Please install plugin again.', 'bwg_back'), 'error');
957
  }
958
  $this->display();
959
  }
975
  }
976
  }
977
  if ($flag) {
978
+ echo WDWLibrary::message(__('Items Succesfully Published.', 'bwg_back'), 'updated');
979
  }
980
  else {
981
+ echo WDWLibrary::message(__('You must select at least one item.', 'bwg_back'), 'error');
982
  }
983
  $this->display();
984
  }
987
  global $wpdb;
988
  $save = $wpdb->update($wpdb->prefix . 'bwg_gallery', array('published' => 0), array('id' => $id));
989
  if ($save !== FALSE) {
990
+ echo WDWLibrary::message(__('Item Succesfully Unpublished.', 'bwg_back'), 'updated');
991
  }
992
  else {
993
+ echo WDWLibrary::message(__('Error. Please install plugin again.', 'bwg_back'), 'error');
994
  }
995
  $this->display();
996
  }
1012
  }
1013
  }
1014
  if ($flag) {
1015
+ echo WDWLibrary::message(__('Items Succesfully Unpublished.', 'bwg_back'), 'updated');
1016
  }
1017
  else {
1018
+ echo WDWLibrary::message(__('You must select at least one item.', 'bwg_back'), 'error');
1019
  }
1020
  $this->display();
1021
  }
1094
  }
1095
  }
1096
  if ($flag == false) {
1097
+ echo WDWLibrary::message(__('You must select at least one item.', 'bwg_back'), 'error');
1098
  }
1099
  else {
1100
+ echo WDWLibrary::message(__('Thumb Succesfully Resized', 'bwg_back'), 'updated');
1101
  }
1102
  }
1103
 
admin/controllers/BWGControllerOptions_bwg.php CHANGED
@@ -381,7 +381,7 @@ class BWGControllerOptions_bwg {
381
  if (!is_dir(ABSPATH . $images_directory . '/photo-gallery')) {
382
  mkdir(ABSPATH . $images_directory . '/photo-gallery', 0777);
383
  }
384
- echo WDWLibrary::message('Item Succesfully Saved.', 'updated');
385
 
386
  }
387
  else {
381
  if (!is_dir(ABSPATH . $images_directory . '/photo-gallery')) {
382
  mkdir(ABSPATH . $images_directory . '/photo-gallery', 0777);
383
  }
384
+ echo WDWLibrary::message(__('Item Succesfully Saved.', 'bwg_back'), 'updated');
385
 
386
  }
387
  else {
admin/views/BWGViewAddAlbumsGalleries.php CHANGED
@@ -42,13 +42,13 @@ class BWGViewAddAlbumsGalleries {
42
  <script src="<?php echo WD_BWG_URL . '/js/bwg.js?ver='.wd_bwg_version(); ?>" type="text/javascript"></script>
43
  <form class="wrap wp-core-ui" id="albums_galleries_form" method="post" action="<?php echo add_query_arg(array('action' => 'addAlbumsGalleries', 'width' => '700', 'height' => '550', 'callback' => 'bwg_add_items', 'bwg_items_per_page'=>$per_page , 'TB_iframe' => '1'), admin_url('admin-ajax.php')); ?>" style="width:95%; margin: 0 auto;">
44
  <?php wp_nonce_field( 'addAlbumsGalleries', 'bwg_nonce' ); ?>
45
- <h2 style="width:200px;float:left">Albums/Galleries</h2>
46
  <a href="" class="thickbox thickbox-preview" id="content-add_media" title="Add Album/Gallery" onclick="spider_get_items(event);" style="float:right; padding: 9px 0px 4px 0">
47
  <img src="<?php echo WD_BWG_URL . '/images/add_but.png'; ?>" style="border:none;" />
48
  </a>
49
  <div class="tablenav top">
50
  <?php
51
- WDWLibrary::search('Name', $search_value, 'albums_galleries_form');
52
  WDWLibrary::html_page_nav($page_nav['total'],$pager++, $page_nav['limit'], 'albums_galleries_form', $per_page);
53
  ?>
54
  </div>
@@ -67,14 +67,14 @@ class BWGViewAddAlbumsGalleries {
67
  spider_set_input_value('order_by', 'is_album');
68
  spider_set_input_value('asc_or_desc', '<?php echo ((isset($_POST['asc_or_desc']) && isset($_POST['order_by']) && (esc_html(stripslashes($_POST['order_by'])) == 'is_album') && esc_html(stripslashes($_POST['asc_or_desc'])) == 'asc') ? 'desc' : 'asc'); ?>');
69
  spider_form_submit(event, 'albums_galleries_form')" href="">
70
- <span>Type</span><span class="sorting-indicator"></span>
71
  </a>
72
  </th>
73
  <th class="<?php if ($order_by == 'name') {echo $order_class;} ?>">
74
  <a onclick="spider_set_input_value('order_by', 'name');
75
  spider_set_input_value('asc_or_desc', '<?php echo ((isset($_POST['asc_or_desc']) && isset($_POST['order_by']) && (esc_html(stripslashes($_POST['order_by'])) == 'name') && esc_html(stripslashes($_POST['asc_or_desc'])) == 'asc') ? 'desc' : 'asc'); ?>');
76
  spider_form_submit(event, 'albums_galleries_form')" href="">
77
- <span>Name</span><span class="sorting-indicator"></span>
78
  </a>
79
  </th>
80
  </thead>
@@ -88,7 +88,7 @@ class BWGViewAddAlbumsGalleries {
88
  <tr id="tr_<?php echo $iterator; ?>" <?php echo $alternate; ?>>
89
  <td class="table_small_col check-column"><input id="check_<?php echo $iterator; ?>" name="check_<?php echo $iterator; ?>" type="checkbox" /></td>
90
  <td id="id_<?php echo $iterator; ?>" class="table_small_col"><?php echo $row_data->id; ?></td>
91
- <td id="url_<?php echo $iterator; ?>" class="table_medium_col_uncenter"><?php echo ($row_data->is_album ? "Album" : "Gallery") ; ?></td>
92
  <td>
93
  <a onclick="window.parent.bwg_add_items(['<?php echo $row_data->id?>'],['<?php echo htmlspecialchars(addslashes($row_data->name))?>'], ['<?php echo htmlspecialchars(addslashes($row_data->is_album))?>'])" id="a_<?php echo $iterator; ?>" style="cursor:pointer;">
94
  <?php echo $row_data->name?>
42
  <script src="<?php echo WD_BWG_URL . '/js/bwg.js?ver='.wd_bwg_version(); ?>" type="text/javascript"></script>
43
  <form class="wrap wp-core-ui" id="albums_galleries_form" method="post" action="<?php echo add_query_arg(array('action' => 'addAlbumsGalleries', 'width' => '700', 'height' => '550', 'callback' => 'bwg_add_items', 'bwg_items_per_page'=>$per_page , 'TB_iframe' => '1'), admin_url('admin-ajax.php')); ?>" style="width:95%; margin: 0 auto;">
44
  <?php wp_nonce_field( 'addAlbumsGalleries', 'bwg_nonce' ); ?>
45
+ <h2 style="width:200px;float:left"><?php _e("Albums/Galleries", 'bwg_back'); ?></h2>
46
  <a href="" class="thickbox thickbox-preview" id="content-add_media" title="Add Album/Gallery" onclick="spider_get_items(event);" style="float:right; padding: 9px 0px 4px 0">
47
  <img src="<?php echo WD_BWG_URL . '/images/add_but.png'; ?>" style="border:none;" />
48
  </a>
49
  <div class="tablenav top">
50
  <?php
51
+ WDWLibrary::search(__("Name", 'bwg_back'), $search_value, 'albums_galleries_form');
52
  WDWLibrary::html_page_nav($page_nav['total'],$pager++, $page_nav['limit'], 'albums_galleries_form', $per_page);
53
  ?>
54
  </div>
67
  spider_set_input_value('order_by', 'is_album');
68
  spider_set_input_value('asc_or_desc', '<?php echo ((isset($_POST['asc_or_desc']) && isset($_POST['order_by']) && (esc_html(stripslashes($_POST['order_by'])) == 'is_album') && esc_html(stripslashes($_POST['asc_or_desc'])) == 'asc') ? 'desc' : 'asc'); ?>');
69
  spider_form_submit(event, 'albums_galleries_form')" href="">
70
+ <span><?php _e("Type", 'bwg_back'); ?></span><span class="sorting-indicator"></span>
71
  </a>
72
  </th>
73
  <th class="<?php if ($order_by == 'name') {echo $order_class;} ?>">
74
  <a onclick="spider_set_input_value('order_by', 'name');
75
  spider_set_input_value('asc_or_desc', '<?php echo ((isset($_POST['asc_or_desc']) && isset($_POST['order_by']) && (esc_html(stripslashes($_POST['order_by'])) == 'name') && esc_html(stripslashes($_POST['asc_or_desc'])) == 'asc') ? 'desc' : 'asc'); ?>');
76
  spider_form_submit(event, 'albums_galleries_form')" href="">
77
+ <span><?php _e("Name", 'bwg_back'); ?></span><span class="sorting-indicator"></span>
78
  </a>
79
  </th>
80
  </thead>
88
  <tr id="tr_<?php echo $iterator; ?>" <?php echo $alternate; ?>>
89
  <td class="table_small_col check-column"><input id="check_<?php echo $iterator; ?>" name="check_<?php echo $iterator; ?>" type="checkbox" /></td>
90
  <td id="id_<?php echo $iterator; ?>" class="table_small_col"><?php echo $row_data->id; ?></td>
91
+ <td id="url_<?php echo $iterator; ?>" class="table_medium_col_uncenter"><?php echo ($row_data->is_album ? __("Album", 'bwg_back') : __("Gallery", 'bwg_back')) ; ?></td>
92
  <td>
93
  <a onclick="window.parent.bwg_add_items(['<?php echo $row_data->id?>'],['<?php echo htmlspecialchars(addslashes($row_data->name))?>'], ['<?php echo htmlspecialchars(addslashes($row_data->is_album))?>'])" id="a_<?php echo $iterator; ?>" style="cursor:pointer;">
94
  <?php echo $row_data->name?>
admin/views/BWGViewAddTags.php CHANGED
@@ -42,13 +42,13 @@ class BWGViewAddTags {
42
  <script src="<?php echo WD_BWG_URL . '/js/bwg.js?ver='.wd_bwg_version(); ?>" type="text/javascript"></script>
43
  <form class="wrap wp-core-ui" id="tags_form" method="post" action="<?php echo add_query_arg(array('action' => 'addTags', 'width' => '650', 'height' => '500', 'bwg_items_per_page'=>$per_page , 'TB_iframe' => '1'), admin_url('admin-ajax.php')); ?>" style="width:99%; margin: 0 auto;">
44
  <?php wp_nonce_field( 'addTags', 'bwg_nonce' ); ?>
45
- <h2 style="width:200px; float:left;">Tags</h2>
46
  <a href="" class="thickbox thickbox-preview" id="content-add_media" title="Add Tag" onclick="bwg_get_tags('<?php echo $image_id; ?>', event);" style="float:right; padding: 9px 0px 4px 0">
47
  <img src="<?php echo WD_BWG_URL . '/images/add_but.png'; ?>" style="border:none;" />
48
  </a>
49
  <div class="tablenav top">
50
  <?php
51
- WDWLibrary::search('Name', $search_value, 'tags_form');
52
  WDWLibrary::html_page_nav($page_nav['total'], $pager++, $page_nav['limit'], 'tags_form', $per_page);
53
  ?>
54
  </div>
@@ -65,14 +65,14 @@ class BWGViewAddTags {
65
  <a onclick="spider_set_input_value('order_by', 'name');
66
  spider_set_input_value('asc_or_desc', '<?php echo ((isset($_POST['asc_or_desc']) && isset($_POST['order_by']) && (esc_html(stripslashes($_POST['order_by'])) == 'name') && esc_html(stripslashes($_POST['asc_or_desc'])) == 'asc') ? 'desc' : 'asc'); ?>');
67
  spider_form_submit(event, 'tags_form')" href="">
68
- <span>Name</span><span class="sorting-indicator"></span>
69
  </a>
70
  </th>
71
  <th class="<?php if ($order_by == 'slug') {echo $order_class;} ?>">
72
  <a onclick="spider_set_input_value('order_by', 'slug');
73
  spider_set_input_value('asc_or_desc', '<?php echo ((isset($_POST['asc_or_desc']) && isset($_POST['order_by']) && (esc_html(stripslashes($_POST['order_by'])) == 'slug') && esc_html(stripslashes($_POST['asc_or_desc'])) == 'asc') ? 'desc' : 'asc'); ?>');
74
  spider_form_submit(event, 'tags_form')" href="">
75
- <span>Slug</span><span class="sorting-indicator"></span>
76
  </a>
77
  </th>
78
  </thead>
42
  <script src="<?php echo WD_BWG_URL . '/js/bwg.js?ver='.wd_bwg_version(); ?>" type="text/javascript"></script>
43
  <form class="wrap wp-core-ui" id="tags_form" method="post" action="<?php echo add_query_arg(array('action' => 'addTags', 'width' => '650', 'height' => '500', 'bwg_items_per_page'=>$per_page , 'TB_iframe' => '1'), admin_url('admin-ajax.php')); ?>" style="width:99%; margin: 0 auto;">
44
  <?php wp_nonce_field( 'addTags', 'bwg_nonce' ); ?>
45
+ <h2 style="width:200px; float:left;"><?php _e("Tags", 'bwg_back'); ?></h2>
46
  <a href="" class="thickbox thickbox-preview" id="content-add_media" title="Add Tag" onclick="bwg_get_tags('<?php echo $image_id; ?>', event);" style="float:right; padding: 9px 0px 4px 0">
47
  <img src="<?php echo WD_BWG_URL . '/images/add_but.png'; ?>" style="border:none;" />
48
  </a>
49
  <div class="tablenav top">
50
  <?php
51
+ WDWLibrary::search(__('Name', 'bwg_back'), $search_value, 'tags_form');
52
  WDWLibrary::html_page_nav($page_nav['total'], $pager++, $page_nav['limit'], 'tags_form', $per_page);
53
  ?>
54
  </div>
65
  <a onclick="spider_set_input_value('order_by', 'name');
66
  spider_set_input_value('asc_or_desc', '<?php echo ((isset($_POST['asc_or_desc']) && isset($_POST['order_by']) && (esc_html(stripslashes($_POST['order_by'])) == 'name') && esc_html(stripslashes($_POST['asc_or_desc'])) == 'asc') ? 'desc' : 'asc'); ?>');
67
  spider_form_submit(event, 'tags_form')" href="">
68
+ <span><?php _e("Name", 'bwg_back'); ?></span><span class="sorting-indicator"></span>
69
  </a>
70
  </th>
71
  <th class="<?php if ($order_by == 'slug') {echo $order_class;} ?>">
72
  <a onclick="spider_set_input_value('order_by', 'slug');
73
  spider_set_input_value('asc_or_desc', '<?php echo ((isset($_POST['asc_or_desc']) && isset($_POST['order_by']) && (esc_html(stripslashes($_POST['order_by'])) == 'slug') && esc_html(stripslashes($_POST['asc_or_desc'])) == 'asc') ? 'desc' : 'asc'); ?>');
74
  spider_form_submit(event, 'tags_form')" href="">
75
+ <span><?php _e("Slug", 'bwg_back'); ?></span><span class="sorting-indicator"></span>
76
  </a>
77
  </th>
78
  </thead>
admin/views/BWGViewAlbums_bwg.php CHANGED
@@ -37,8 +37,8 @@ class BWGViewAlbums_bwg {
37
  ?>
38
  <div style="clear: both; float: left; width: 99%;">
39
  <div style="float:left; font-size: 14px; font-weight: bold;">
40
- This section allows you to create, edit and delete albums.
41
- <a style="color: blue; text-decoration: none;" target="_blank" href="https://web-dorado.com/wordpress-gallery-guide-step-4.html">Read More in User Manual</a>
42
  </div>
43
  <div style="float: right; text-align: right;">
44
  <a style="text-decoration: none;" target="_blank" href="https://web-dorado.com/files/fromPhotoGallery.php">
@@ -50,29 +50,29 @@ class BWGViewAlbums_bwg {
50
  <?php wp_nonce_field( 'albums_bwg', 'bwg_nonce' ); ?>
51
  <span class="album-icon"></span>
52
  <h2>
53
- Albums
54
  <a href="" class="add-new-h2" onclick="spider_set_input_value('task', 'add');
55
- spider_form_submit(event, 'albums_form')">Add new</a>
56
  </h2>
57
- <div id="draganddrop" class="updated" style="display:none;"><strong><p>Changes made in this table should be saved.</p></strong></div>
58
  <div class="buttons_div">
59
  <span class="button-secondary non_selectable" onclick="spider_check_all_items()">
60
  <input type="checkbox" id="check_all_items" name="check_all_items" onclick="spider_check_all_items_checkbox()" style="margin: 0; vertical-align: middle;" />
61
- <span style="vertical-align: middle;">Select All</span>
62
  </span>
63
- <input id="show_hide_weights" class="button-secondary" type="button" onclick="spider_show_hide_weights();return false;" value="Hide order column" />
64
- <input class="button-secondary" type="submit" onclick="spider_set_input_value('task', 'save_order')" value="Save Order" />
65
- <input class="button-secondary" type="submit" onclick="spider_set_input_value('task', 'publish_all')" value="Publish" />
66
- <input class="button-secondary" type="submit" onclick="spider_set_input_value('task', 'unpublish_all')" value="Unpublish" />
67
- <input class="button-secondary" type="submit" onclick="if (confirm('Do you want to delete selected items?')) {
68
  spider_set_input_value('task', 'delete_all');
69
  } else {
70
  return false;
71
- }" value="Delete" />
72
  </div>
73
  <div class="tablenav top">
74
  <?php
75
- WDWLibrary::search('Name', $search_value, 'albums_form');
76
  WDWLibrary::html_page_nav($page_nav['total'],$pager++, $page_nav['limit'], 'albums_form', $per_page);
77
  ?>
78
  </div>
@@ -93,7 +93,7 @@ class BWGViewAlbums_bwg {
93
  spider_set_input_value('order_by', 'name');
94
  spider_set_input_value('asc_or_desc', '<?php echo ((isset($_POST['asc_or_desc']) && isset($_POST['order_by']) && (esc_html(stripslashes($_POST['order_by'])) == 'name') && esc_html(stripslashes($_POST['asc_or_desc'])) == 'asc') ? 'desc' : 'asc'); ?>');
95
  spider_form_submit(event, 'albums_form')" href="">
96
- <span>Name</span><span class="sorting-indicator"></span>
97
  </a>
98
  </th>
99
  <th class="<?php if ($order_by == 'slug') {echo $order_class;} ?>">
@@ -101,16 +101,16 @@ class BWGViewAlbums_bwg {
101
  spider_set_input_value('order_by', 'slug');
102
  spider_set_input_value('asc_or_desc', '<?php echo ((isset($_POST['asc_or_desc']) && isset($_POST['order_by']) && (esc_html(stripslashes($_POST['order_by'])) == 'slug') && esc_html(stripslashes($_POST['asc_or_desc'])) == 'asc') ? 'desc' : 'asc'); ?>');
103
  spider_form_submit(event, 'albums_form')" href="">
104
- <span>Slug</span><span class="sorting-indicator"></span>
105
  </a>
106
  </th>
107
- <th class="table_extra_large_col">Thumbnail</th>
108
  <th id="th_order" class="table_medium_col <?php if ($order_by == 'order') {echo $order_class;} ?>">
109
  <a onclick="spider_set_input_value('task', '');
110
  spider_set_input_value('order_by', 'order');
111
  spider_set_input_value('asc_or_desc', '<?php echo ((isset($_POST['asc_or_desc']) && isset($_POST['order_by']) && (esc_html(stripslashes($_POST['order_by'])) == 'order') && esc_html(stripslashes($_POST['asc_or_desc'])) == 'asc') ? 'desc' : 'asc'); ?>');
112
  spider_form_submit(event, 'albums_form')" href="">
113
- <span>Order</span><span class="sorting-indicator"></span>
114
  </a>
115
  </th>
116
  <th class="<?php if ($order_by == 'display_name') {echo $order_class;} ?>">
@@ -118,7 +118,7 @@ class BWGViewAlbums_bwg {
118
  spider_set_input_value('order_by', 'display_name');
119
  spider_set_input_value('asc_or_desc', '<?php echo ((isset($_POST['asc_or_desc']) && isset($_POST['order_by']) && (esc_html(stripslashes($_POST['order_by'])) == 'display_name') && esc_html(stripslashes($_POST['asc_or_desc'])) == 'asc') ? 'desc' : 'asc'); ?>');
120
  spider_form_submit(event, 'albums_form')" href="">
121
- <span>Author</span><span class="sorting-indicator"></span>
122
  </a>
123
  </th>
124
  <th class="table_big_col <?php if ($order_by == 'published') {echo $order_class;} ?>">
@@ -126,11 +126,11 @@ class BWGViewAlbums_bwg {
126
  spider_set_input_value('order_by', 'published');
127
  spider_set_input_value('asc_or_desc', '<?php echo ((isset($_POST['asc_or_desc']) && isset($_POST['order_by']) && (esc_html(stripslashes($_POST['order_by'])) == 'published') && esc_html(stripslashes($_POST['asc_or_desc'])) == 'asc') ? 'desc' : 'asc'); ?>');
128
  spider_form_submit(event, 'albums_form')" href="">
129
- <span>Published</span><span class="sorting-indicator"></span>
130
  </a>
131
  </th>
132
- <th class="table_big_col">Edit</th>
133
- <th class="table_big_col">Delete</th>
134
  </thead>
135
  <tbody id="tbody_arr">
136
  <?php
@@ -152,7 +152,7 @@ class BWGViewAlbums_bwg {
152
  <td class="table_small_col"><?php echo $row_data->id; ?></td>
153
  <td><a onclick="spider_set_input_value('task', 'edit');
154
  spider_set_input_value('current_id', '<?php echo $row_data->id; ?>');
155
- spider_form_submit(event, 'albums_form')" href="" title="Edit"><?php echo $row_data->name; ?></a></td>
156
  <td><?php echo $row_data->slug; ?></td>
157
  <td class="table_extra_large_col">
158
  <img title="<?php echo $row_data->name; ?>" style="border: 1px solid #CCCCCC; max-width:60px; max-height:60px;" src="<?php echo $preview_image; ?>">
@@ -162,10 +162,10 @@ class BWGViewAlbums_bwg {
162
  <td class="table_big_col"><a onclick="spider_set_input_value('task', '<?php echo $published; ?>');spider_set_input_value('current_id', '<?php echo $row_data->id; ?>');spider_form_submit(event, 'albums_form')" href=""><img src="<?php echo WD_BWG_URL . '/images/' . $published_image . '.png'; ?>"></img></a></td>
163
  <td class="table_big_col"><a onclick="spider_set_input_value('task', 'edit');
164
  spider_set_input_value('current_id', '<?php echo $row_data->id; ?>');
165
- spider_form_submit(event, 'albums_form')" href="">Edit</a></td>
166
  <td class="table_big_col"><a onclick="spider_set_input_value('task', 'delete');
167
  spider_set_input_value('current_id', '<?php echo $row_data->id; ?>');
168
- spider_form_submit(event, 'albums_form')" href="">Delete</a></td>
169
  </tr>
170
  <?php
171
  $ids_string .= $row_data->id . ',';
@@ -194,13 +194,13 @@ class BWGViewAlbums_bwg {
194
  public function edit($id) {
195
  global $WD_BWG_UPLOAD_DIR;
196
  $row = $this->model->get_row_data($id);
197
- $page_title = (($id != 0) ? 'Edit album ' . $row->name : 'Create new album');
198
  $per_page = $this->model->per_page();
199
  ?>
200
  <div style="clear: both; float: left; width: 99%;">
201
  <div style="float:left; font-size: 14px; font-weight: bold;">
202
- This section allows you to add/edit album.
203
- <a style="color: blue; text-decoration: none;" target="_blank" href="https://web-dorado.com/wordpress-gallery-guide-step-4.html">Read More in User Manual</a>
204
  </div>
205
  <div style="float: right; text-align: right;">
206
  <a style="text-decoration: none;" target="_blank" href="https://web-dorado.com/files/fromPhotoGallery.php">
@@ -268,22 +268,22 @@ class BWGViewAlbums_bwg {
268
  <span class="album-icon"></span>
269
  <h2><?php echo $page_title; ?></h2>
270
  <div style="float:right;">
271
- <input class="button-secondary" type="submit" onclick="if(spider_check_required('name', 'Name')){return false;};spider_set_input_value('task', 'save')" value="Save" />
272
- <input class="button-secondary" type="submit" onclick="if(spider_check_required('name', 'Name')){return false;};spider_set_input_value('task', 'apply')" value="Apply" />
273
- <input class="button-secondary" type="submit" onclick="spider_set_input_value('task', 'cancel')" value="Cancel" />
274
  </div>
275
  <table style="clear:both;">
276
  <tbody>
277
  <tr>
278
- <td class="spider_label"><label for="name">Name: <span style="color:#FF0000;">*</span> </label></td>
279
  <td><input type="text" id="name" name="name" value="<?php echo $row->name; ?>" size="39" /></td>
280
  </tr>
281
  <tr>
282
- <td class="spider_label"><label for="slug">Slug: </label></td>
283
  <td><input type="text" id="slug" name="slug" value="<?php echo $row->slug; ?>" size="39" /></td>
284
  </tr>
285
  <tr>
286
- <td class="spider_label"><label for="description">Description: </label></td>
287
  <td>
288
  <div style="width:500px;">
289
  <?php
@@ -302,20 +302,20 @@ class BWGViewAlbums_bwg {
302
  </td>
303
  </tr>
304
  <tr>
305
- <td class="spider_label"><label>Author: </label></td>
306
  <td><?php echo get_userdata($row->author)->display_name; ?></td>
307
  </tr>
308
  <tr>
309
- <td class="spider_label"><label for="published1">Published: </label></td>
310
  <td>
311
  <input type="radio" class="inputbox" id="published0" name="published" <?php echo (($row->published) ? '' : 'checked="checked"'); ?> value="0" >
312
- <label for="published0">No</label>
313
  <input type="radio" class="inputbox" id="published1" name="published" <?php echo (($row->published) ? 'checked="checked"' : ''); ?> value="1" >
314
- <label for="published1">Yes</label>
315
  </td>
316
  </tr>
317
  <tr>
318
- <td class="spider_label"><label for="url">Preview image: </label></td>
319
  <td>
320
  <?php
321
  $query_url = add_query_arg(array('action' => 'addImages', 'width' => '700', 'height' => '550', 'extensions' => 'jpg,jpeg,png,gif', 'callback' => 'bwg_add_preview_image'), admin_url('admin-ajax.php'));
@@ -330,7 +330,7 @@ class BWGViewAlbums_bwg {
330
  title="Add Preview Image"
331
  onclick="return false;"
332
  style="margin-bottom:5px; display:none;">
333
- Add Preview Image
334
  </a>
335
  <input type="hidden" id="preview_image" name="preview_image" value="<?php echo $row->preview_image; ?>" style="display:inline-block;"/>
336
  <img id="img_preview_image"
@@ -341,7 +341,7 @@ class BWGViewAlbums_bwg {
341
  </td>
342
  </tr>
343
  <tr>
344
- <td class="spider_label"><label for="content-add_media">Albums And Galleries: </label></td>
345
  <td>
346
  <?php
347
  $query_url = add_query_arg(array('action' => 'addAlbumsGalleries', 'album_id' => $id, 'width' => '700', 'height' => '550', 'bwg_items_per_page'=>$per_page ), admin_url('admin-ajax.php'));
@@ -351,7 +351,7 @@ class BWGViewAlbums_bwg {
351
 
352
  ?>
353
  <a href="<?php echo $query_url; ?>" class="button-primary thickbox thickbox-preview" id="content-add_media" title="Add Images" onclick="return false;" style="margin-bottom:5px;">
354
- Add Albums/Galleries
355
  </a>
356
  <?php $albums_galleries = $this->model->get_albums_galleries_rows_data($id) ?>
357
  <table id="table_albums_galleries" class="widefat spider_table" <?php echo (($albums_galleries) ? '' : 'style="display:none;"'); ?>>
@@ -363,7 +363,7 @@ class BWGViewAlbums_bwg {
363
  if ($alb_gal) {
364
  ?>
365
  <tr id="tr_<?php echo $alb_gal->id . ":" . $alb_gal->is_album . ":" . $alb_gal->alb_gal_id ?>" style="height:35px;">
366
- <td class="connectedSortable table_small_col" title="Drag to re-order"><div class="handle"></div></td>
367
  <td style="max-width:420px; min-width:400px;"><?php echo ($alb_gal->is_album ? 'Album: ' : 'Gallery: ') . $alb_gal->name; ?></td>
368
  <td class="table_small_col">
369
  <span class="spider_delete_img" onclick="spider_remove_row('tbody_albums_galleries', event, this)"/>
37
  ?>
38
  <div style="clear: both; float: left; width: 99%;">
39
  <div style="float:left; font-size: 14px; font-weight: bold;">
40
+ <?php _e("This section allows you to create, edit and delete albums.", 'bwg_back'); ?>
41
+ <a style="color: blue; text-decoration: none;" target="_blank" href="https://web-dorado.com/wordpress-gallery-guide-step-4.html"><?php _e("Read More in User Manual", 'bwg_back'); ?></a>
42
  </div>
43
  <div style="float: right; text-align: right;">
44
  <a style="text-decoration: none;" target="_blank" href="https://web-dorado.com/files/fromPhotoGallery.php">
50
  <?php wp_nonce_field( 'albums_bwg', 'bwg_nonce' ); ?>
51
  <span class="album-icon"></span>
52
  <h2>
53
+ <?php _e("Albums", 'bwg_back'); ?>
54
  <a href="" class="add-new-h2" onclick="spider_set_input_value('task', 'add');
55
+ spider_form_submit(event, 'albums_form')"><?php _e("Add new", 'bwg_back'); ?></a>
56
  </h2>
57
+ <div id="draganddrop" class="updated" style="display:none;"><strong><p><?php _e("Changes made in this table should be saved.", 'bwg_back'); ?></p></strong></div>
58
  <div class="buttons_div">
59
  <span class="button-secondary non_selectable" onclick="spider_check_all_items()">
60
  <input type="checkbox" id="check_all_items" name="check_all_items" onclick="spider_check_all_items_checkbox()" style="margin: 0; vertical-align: middle;" />
61
+ <span style="vertical-align: middle;"><?php _e("Select All", 'bwg_back'); ?></span>
62
  </span>
63
+ <input id="show_hide_weights" class="button-secondary" type="button" onclick="spider_show_hide_weights();return false;" value="<?php _e("Hide order column", 'bwg_back'); ?>" />
64
+ <input class="button-secondary" type="submit" onclick="spider_set_input_value('task', 'save_order')" value="<?php _e("Save Order", 'bwg_back'); ?>" />
65
+ <input class="button-secondary" type="submit" onclick="spider_set_input_value('task', 'publish_all')" value="<?php _e("Publish", 'bwg_back'); ?>" />
66
+ <input class="button-secondary" type="submit" onclick="spider_set_input_value('task', 'unpublish_all')" value="<?php _e("Unpublish", 'bwg_back'); ?>" />
67
+ <input class="button-secondary" type="submit" onclick="if (confirm('<?php _e("Do you want to delete selected items?", 'bwg_back'); ?>')) {
68
  spider_set_input_value('task', 'delete_all');
69
  } else {
70
  return false;
71
+ }" value="<?php _e("Delete", 'bwg_back'); ?>" />
72
  </div>
73
  <div class="tablenav top">
74
  <?php
75
+ WDWLibrary::search(__("Name", "bwg_back"), $search_value, 'albums_form');
76
  WDWLibrary::html_page_nav($page_nav['total'],$pager++, $page_nav['limit'], 'albums_form', $per_page);
77
  ?>
78
  </div>
93
  spider_set_input_value('order_by', 'name');
94
  spider_set_input_value('asc_or_desc', '<?php echo ((isset($_POST['asc_or_desc']) && isset($_POST['order_by']) && (esc_html(stripslashes($_POST['order_by'])) == 'name') && esc_html(stripslashes($_POST['asc_or_desc'])) == 'asc') ? 'desc' : 'asc'); ?>');
95
  spider_form_submit(event, 'albums_form')" href="">
96
+ <span><?php _e("Name", 'bwg_back'); ?></span><span class="sorting-indicator"></span>
97
  </a>
98
  </th>
99
  <th class="<?php if ($order_by == 'slug') {echo $order_class;} ?>">
101
  spider_set_input_value('order_by', 'slug');
102
  spider_set_input_value('asc_or_desc', '<?php echo ((isset($_POST['asc_or_desc']) && isset($_POST['order_by']) && (esc_html(stripslashes($_POST['order_by'])) == 'slug') && esc_html(stripslashes($_POST['asc_or_desc'])) == 'asc') ? 'desc' : 'asc'); ?>');
103
  spider_form_submit(event, 'albums_form')" href="">
104
+ <span><?php _e("Slug", 'bwg_back'); ?></span><span class="sorting-indicator"></span>
105
  </a>
106
  </th>
107
+ <th class="table_extra_large_col"><?php _e("Thumbnail", 'bwg_back'); ?></th>
108
  <th id="th_order" class="table_medium_col <?php if ($order_by == 'order') {echo $order_class;} ?>">
109
  <a onclick="spider_set_input_value('task', '');
110
  spider_set_input_value('order_by', 'order');
111
  spider_set_input_value('asc_or_desc', '<?php echo ((isset($_POST['asc_or_desc']) && isset($_POST['order_by']) && (esc_html(stripslashes($_POST['order_by'])) == 'order') && esc_html(stripslashes($_POST['asc_or_desc'])) == 'asc') ? 'desc' : 'asc'); ?>');
112
  spider_form_submit(event, 'albums_form')" href="">
113
+ <span><?php _e("Order", 'bwg_back'); ?></span><span class="sorting-indicator"></span>
114
  </a>
115
  </th>
116
  <th class="<?php if ($order_by == 'display_name') {echo $order_class;} ?>">
118
  spider_set_input_value('order_by', 'display_name');
119
  spider_set_input_value('asc_or_desc', '<?php echo ((isset($_POST['asc_or_desc']) && isset($_POST['order_by']) && (esc_html(stripslashes($_POST['order_by'])) == 'display_name') && esc_html(stripslashes($_POST['asc_or_desc'])) == 'asc') ? 'desc' : 'asc'); ?>');
120
  spider_form_submit(event, 'albums_form')" href="">
121
+ <span><?php _e("Author", 'bwg_back'); ?></span><span class="sorting-indicator"></span>
122
  </a>
123
  </th>
124
  <th class="table_big_col <?php if ($order_by == 'published') {echo $order_class;} ?>">
126
  spider_set_input_value('order_by', 'published');
127
  spider_set_input_value('asc_or_desc', '<?php echo ((isset($_POST['asc_or_desc']) && isset($_POST['order_by']) && (esc_html(stripslashes($_POST['order_by'])) == 'published') && esc_html(stripslashes($_POST['asc_or_desc'])) == 'asc') ? 'desc' : 'asc'); ?>');
128
  spider_form_submit(event, 'albums_form')" href="">
129
+ <span><?php _e("Published", 'bwg_back'); ?></span><span class="sorting-indicator"></span>
130
  </a>
131
  </th>
132
+ <th class="table_big_col"><?php _e("Edit", 'bwg_back'); ?></th>
133
+ <th class="table_big_col"><?php _e("Delete", 'bwg_back'); ?></th>
134
  </thead>
135
  <tbody id="tbody_arr">
136
  <?php
152
  <td class="table_small_col"><?php echo $row_data->id; ?></td>
153
  <td><a onclick="spider_set_input_value('task', 'edit');
154
  spider_set_input_value('current_id', '<?php echo $row_data->id; ?>');
155
+ spider_form_submit(event, 'albums_form')" href="" title="<?php _e("Edit", 'bwg_back'); ?>"><?php echo $row_data->name; ?></a></td>
156
  <td><?php echo $row_data->slug; ?></td>
157
  <td class="table_extra_large_col">
158
  <img title="<?php echo $row_data->name; ?>" style="border: 1px solid #CCCCCC; max-width:60px; max-height:60px;" src="<?php echo $preview_image; ?>">
162
  <td class="table_big_col"><a onclick="spider_set_input_value('task', '<?php echo $published; ?>');spider_set_input_value('current_id', '<?php echo $row_data->id; ?>');spider_form_submit(event, 'albums_form')" href=""><img src="<?php echo WD_BWG_URL . '/images/' . $published_image . '.png'; ?>"></img></a></td>
163
  <td class="table_big_col"><a onclick="spider_set_input_value('task', 'edit');
164
  spider_set_input_value('current_id', '<?php echo $row_data->id; ?>');
165
+ spider_form_submit(event, 'albums_form')" href=""><?php _e("Edit", 'bwg_back'); ?></a></td>
166
  <td class="table_big_col"><a onclick="spider_set_input_value('task', 'delete');
167
  spider_set_input_value('current_id', '<?php echo $row_data->id; ?>');
168
+ spider_form_submit(event, 'albums_form')" href=""><?php _e("Delete", 'bwg_back'); ?></a></td>
169
  </tr>
170
  <?php
171
  $ids_string .= $row_data->id . ',';
194
  public function edit($id) {
195
  global $WD_BWG_UPLOAD_DIR;
196
  $row = $this->model->get_row_data($id);
197
+ $page_title = (($id != 0) ? __('Edit album ',"bwg_back") . $row->name : __('Create new album',"bwg_back"));
198
  $per_page = $this->model->per_page();
199
  ?>
200
  <div style="clear: both; float: left; width: 99%;">
201
  <div style="float:left; font-size: 14px; font-weight: bold;">
202
+ <?php _e("This section allows you to add/edit album.", 'bwg_back'); ?>
203
+ <a style="color: blue; text-decoration: none;" target="_blank" href="https://web-dorado.com/wordpress-gallery-guide-step-4.html"><?php _e("Read More in User Manual", 'bwg_back'); ?></a>
204
  </div>
205
  <div style="float: right; text-align: right;">
206
  <a style="text-decoration: none;" target="_blank" href="https://web-dorado.com/files/fromPhotoGallery.php">
268
  <span class="album-icon"></span>
269
  <h2><?php echo $page_title; ?></h2>
270
  <div style="float:right;">
271
+ <input class="button-secondary" type="submit" onclick="if(spider_check_required('name', 'Name')){return false;};spider_set_input_value('task', 'save')" value="<?php _e("Save", 'bwg_back'); ?>" />
272
+ <input class="button-secondary" type="submit" onclick="if(spider_check_required('name', 'Name')){return false;};spider_set_input_value('task', 'apply')" value="<?php _e("Apply", 'bwg_back'); ?>" />
273
+ <input class="button-secondary" type="submit" onclick="spider_set_input_value('task', 'cancel')" value="<?php _e("Cancel", 'bwg_back'); ?>" />
274
  </div>
275
  <table style="clear:both;">
276
  <tbody>
277
  <tr>
278
+ <td class="spider_label"><label for="name"><?php _e("Name:", 'bwg_back'); ?> <span style="color:#FF0000;">*</span> </label></td>
279
  <td><input type="text" id="name" name="name" value="<?php echo $row->name; ?>" size="39" /></td>
280
  </tr>
281
  <tr>
282
+ <td class="spider_label"><label for="slug"><?php _e("Slug:", 'bwg_back'); ?> </label></td>
283
  <td><input type="text" id="slug" name="slug" value="<?php echo $row->slug; ?>" size="39" /></td>
284
  </tr>
285
  <tr>
286
+ <td class="spider_label"><label for="description"><?php _e("Description:", 'bwg_back'); ?> </label></td>
287
  <td>
288
  <div style="width:500px;">
289
  <?php
302
  </td>
303
  </tr>
304
  <tr>
305
+ <td class="spider_label"><label><?php _e("Author:", 'bwg_back'); ?> </label></td>
306
  <td><?php echo get_userdata($row->author)->display_name; ?></td>
307
  </tr>
308
  <tr>
309
+ <td class="spider_label"><label for="published1"><?php _e("Published:", 'bwg_back'); ?> </label></td>
310
  <td>
311
  <input type="radio" class="inputbox" id="published0" name="published" <?php echo (($row->published) ? '' : 'checked="checked"'); ?> value="0" >
312
+ <label for="published0"><?php _e("No", 'bwg_back'); ?></label>
313
  <input type="radio" class="inputbox" id="published1" name="published" <?php echo (($row->published) ? 'checked="checked"' : ''); ?> value="1" >
314
+ <label for="published1"><?php _e("Yes", 'bwg_back'); ?></label>
315
  </td>
316
  </tr>
317
  <tr>
318
+ <td class="spider_label"><label for="url"><?php _e("Preview image:", 'bwg_back'); ?> </label></td>
319
  <td>
320
  <?php
321
  $query_url = add_query_arg(array('action' => 'addImages', 'width' => '700', 'height' => '550', 'extensions' => 'jpg,jpeg,png,gif', 'callback' => 'bwg_add_preview_image'), admin_url('admin-ajax.php'));
330
  title="Add Preview Image"
331
  onclick="return false;"
332
  style="margin-bottom:5px; display:none;">
333
+ <?php _e("Add Preview Image", 'bwg_back'); ?>
334
  </a>
335
  <input type="hidden" id="preview_image" name="preview_image" value="<?php echo $row->preview_image; ?>" style="display:inline-block;"/>
336
  <img id="img_preview_image"
341
  </td>
342
  </tr>
343
  <tr>
344
+ <td class="spider_label"><label for="content-add_media"><?php _e("Albums And Galleries:", 'bwg_back'); ?> </label></td>
345
  <td>
346
  <?php
347
  $query_url = add_query_arg(array('action' => 'addAlbumsGalleries', 'album_id' => $id, 'width' => '700', 'height' => '550', 'bwg_items_per_page'=>$per_page ), admin_url('admin-ajax.php'));
351
 
352
  ?>
353
  <a href="<?php echo $query_url; ?>" class="button-primary thickbox thickbox-preview" id="content-add_media" title="Add Images" onclick="return false;" style="margin-bottom:5px;">
354
+ <?php _e("Add Albums/Galleries", 'bwg_back'); ?>
355
  </a>
356
  <?php $albums_galleries = $this->model->get_albums_galleries_rows_data($id) ?>
357
  <table id="table_albums_galleries" class="widefat spider_table" <?php echo (($albums_galleries) ? '' : 'style="display:none;"'); ?>>
363
  if ($alb_gal) {
364
  ?>
365
  <tr id="tr_<?php echo $alb_gal->id . ":" . $alb_gal->is_album . ":" . $alb_gal->alb_gal_id ?>" style="height:35px;">
366
+ <td class="connectedSortable table_small_col" title="<?php _e("Drag to re-order", 'bwg_back'); ?>"><div class="handle"></div></td>
367
  <td style="max-width:420px; min-width:400px;"><?php echo ($alb_gal->is_album ? 'Album: ' : 'Gallery: ') . $alb_gal->name; ?></td>
368
  <td class="table_small_col">
369
  <span class="spider_delete_img" onclick="spider_remove_row('tbody_albums_galleries', event, this)"/>
admin/views/BWGViewBWGShortcode.php CHANGED
@@ -31,22 +31,22 @@ class BWGViewBWGShortcode {
31
  $shortcodes = $this->model->get_shortcode_data();
32
  $shortcode_max_id = $this->model->get_shortcode_max_id();
33
  $effects = array(
34
- 'none' => 'None',
35
- 'cubeH' => 'Cube Horizontal',
36
- 'cubeV' => 'Cube Vertical',
37
- 'fade' => 'Fade',
38
- 'sliceH' => 'Slice Horizontal',
39
- 'sliceV' => 'Slice Vertical',
40
- 'slideH' => 'Slide Horizontal',
41
- 'slideV' => 'Slide Vertical',
42
- 'scaleOut' => 'Scale Out',
43
- 'scaleIn' => 'Scale In',
44
- 'blockScale' => 'Block Scale',
45
- 'kaleidoscope' => 'Kaleidoscope',
46
- 'fan' => 'Fan',
47
- 'blindH' => 'Blind Horizontal',
48
- 'blindV' => 'Blind Vertical',
49
- 'random' => 'Random',
50
  );
51
  $watermark_fonts = array(
52
  'arial' => 'Arial',
@@ -64,7 +64,7 @@ class BWGViewBWGShortcode {
64
  ?>
65
  <html xmlns="http://www.w3.org/1999/xhtml">
66
  <head>
67
- <title>Photo Gallery</title>
68
  <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
69
  <script language="javascript" type="text/javascript" src="<?php echo site_url(); ?>/wp-includes/js/tinymce/tiny_mce_popup.js"></script>
70
  <script language="javascript" type="text/javascript" src="<?php echo site_url(); ?>/wp-includes/js/tinymce/utils/mctabs.js"></script>
@@ -94,7 +94,7 @@ class BWGViewBWGShortcode {
94
  <ul>
95
  <li id="display_tab" class="current" role="tab" tabindex="0">
96
  <span>
97
- <a href="javascript:mcTabs.displayTab('display_tab','display_panel');" onMouseDown="return false;" tabindex="-1">Display</a>
98
  </span>
99
  </li>
100
  </ul>
@@ -113,43 +113,43 @@ class BWGViewBWGShortcode {
113
  ?>
114
  <div style="text-align:center; height:100px;">
115
  <span class="gallery_type" onClick="bwg_gallery_type('thumbnails')">
116
- <div style="text-align: center;"><input type="radio" id="thumbnails" name="gallery_type" value="thumbnails" /><label for="thumbnails">Thumbnails</label></div>
117
  <label for="thumbnails"><img src="<?php echo WD_BWG_URL . '/images/thumbnails.jpg'; ?>" /></label>
118
  </span>
119
- <span title="This view is disabled in free version." class="gallery_type">
120
- <div style="text-align: center;"><input disabled="disabled" type="radio" id="thumbnails_masonry" name="gallery_type" value="thumbnails_masonry" /><label class="spider_free_version_label" for="thumbnails_masonry">Masonry</label></div>
121
  <label><img style="opacity:0.5; filter: Alpha(opacity=50);" disabled="disabled" src="<?php echo WD_BWG_URL . '/images/thumbnails_masonry.jpg'; ?>" /></label>
122
  </span>
123
- <span title="This view is disabled in free version." class="gallery_type">
124
- <div style="text-align: center;"><input disabled="disabled" type="radio" id="thumbnails_mosaic" name="gallery_type" value="thumbnails_mosaic" /><label class="spider_free_version_label" for="thumbnails_mosaic">Mosaic</label></div>
125
  <label for="thumbnails_mosaic"><img style="opacity:0.5; filter: Alpha(opacity=50);" disabled="disabled" src="<?php echo WD_BWG_URL . '/images/thumbnails_mosaic.jpg'; ?>" /></label>
126
  </span>
127
  <span class="gallery_type" onClick="bwg_gallery_type('slideshow')">
128
- <div style="text-align: center;"><input type="radio" id="slideshow" name="gallery_type" value="slideshow" /><label for="slideshow">Slideshow</label></div>
129
  <label for="slideshow"><img src="<?php echo WD_BWG_URL . '/images/slideshow.jpg'; ?>" /></label>
130
  </span>
131
  <span class="gallery_type" onClick="bwg_gallery_type('image_browser')">
132
- <div style="text-align: center;"><input type="radio" id="image_browser" name="gallery_type" value="image_browser" /><label for="image_browser">Image Browser</label></div>
133
  <label for="image_browser"><img src="<?php echo WD_BWG_URL . '/images/image_browser.jpg'; ?>" /></label>
134
  </span>
135
  <span class="gallery_type" onClick="bwg_gallery_type('album_compact_preview')">
136
- <div style="text-align: center;"><input type="radio" id="album_compact_preview" name="gallery_type" value="album_compact_preview" /><label for="album_compact_preview">Compact Album</label></div>
137
  <label for="album_compact_preview"><img src="<?php echo WD_BWG_URL . '/images/album_compact_preview.jpg'; ?>" /></label>
138
  </span>
139
- <span title="This view is disabled in free version." class="gallery_type">
140
- <div style="text-align: center;"><input disabled="disabled" type="radio" id="album_masonry_preview" name="gallery_type" value="album_masonry_preview" /><label class="spider_free_version_label" for="album_masonry_preview">Masonry Album</label></div>
141
  <label for="album_masonry_preview"><img style="opacity:0.5; filter: Alpha(opacity=50);" disabled="disabled" src="<?php echo WD_BWG_URL . '/images/thumbnails_masonry.jpg'; ?>" /></label>
142
  </span>
143
  <span class="gallery_type" onClick="bwg_gallery_type('album_extended_preview')">
144
- <div style="text-align: center;"><input type="radio" id="album_extended_preview" name="gallery_type" value="album_extended_preview" /><label for="album_extended_preview">Extended Album</label></div>
145
  <label for="album_extended_preview"><img src="<?php echo WD_BWG_URL . '/images/album_extended_preview.jpg'; ?>" /></label>
146
  </span>
147
- <span title="This view is disabled in free version." class="gallery_type">
148
- <div style="text-align: center;"><input disabled="disabled" type="radio" id="blog_style" name="gallery_type" value="blog_style" /><label class="spider_free_version_label" for="blog_style">Blog Style</label></div>
149
  <label><img style="opacity:0.5; filter: Alpha(opacity=50);" disabled="disabled" src="<?php echo WD_BWG_URL . '/images/blog_style.jpg'; ?>" /></label>
150
  </span>
151
- <span title="This view is disabled in free version." class="gallery_type">
152
- <div style="text-align: center;"><input disabled="disabled" type="radio" id="carousel" name="gallery_type" value="carousel" /><label class="spider_free_version_label" for="carousel">Carousel</label></div>
153
  <label for="carousel"><img style="opacity:0.5; filter: Alpha(opacity=50);" disabled="disabled" src="<?php echo WD_BWG_URL . '/images/Carousel.png'; ?>" /></label>
154
  </span>
155
  </div>
@@ -158,10 +158,10 @@ class BWGViewBWGShortcode {
158
  <table>
159
  <tbody>
160
  <tr id="tr_theme">
161
- <td <?php echo (get_option("wd_bwg_theme_version") ? 'title="This option is disabled in free version." class="spider_label spider_free_version_label"' : 'class="spider_label"'); ?>><label for="theme">Theme: </label></td>
162
  <td>
163
  <select name="theme" id="theme" style="width:150px;" <?php echo (get_option("wd_bwg_theme_version") ? 'disabled="disabled"' : ''); ?>>
164
- <option value="0" selected="selected">Select Theme</option>
165
  <?php
166
  foreach ($theme_rows as $theme_row) {
167
  ?>
@@ -173,10 +173,10 @@ class BWGViewBWGShortcode {
173
  </td>
174
  </tr>
175
  <tr id="tr_gallery">
176
- <td class="spider_label"><label for="gallery">Gallery: </label></td>
177
  <td>
178
  <select name="gallery" id="gallery" style="width:150px;">
179
- <option value="0" selected="selected">Select Gallery</option>
180
  <?php
181
  foreach ($gallery_rows as $gallery_row) {
182
  ?>
@@ -188,10 +188,10 @@ class BWGViewBWGShortcode {
188
  </td>
189
  </tr>
190
  <tr id="tr_album">
191
- <td title="The selected album expanded content will be displayed." class="spider_label"><label for="album">Album: </label></td>
192
  <td>
193
  <select name="album" id="album" style="width:150px;">
194
- <option value="0" selected="selected">Select Album</option>
195
  <?php
196
  foreach ($album_rows as $album_row) {
197
  ?>
@@ -203,130 +203,130 @@ class BWGViewBWGShortcode {
203
  </td>
204
  </tr>
205
  <tr id="tr_sort_by">
206
- <td class="spider_label"><label for="sort_by">Sort images by: </label></td>
207
  <td>
208
  <select name="sort_by" id="sort_by" style="width:150px;">
209
- <option value="order" selected="selected">Order</option>
210
- <option value="alt">Title</option>
211
- <option value="date">Date</option>
212
- <option value="filename">Filename</option>
213
- <option value="size">Size</option>
214
- <option value="filetype">Type</option>
215
- <option value="resolution">Resolution</option>
216
- <option value="random">Random</option>
217
  </select>
218
  </td>
219
  </tr>
220
  <tr id="tr_order_by">
221
- <td class="spider_label"><label>Order images: </label></td>
222
  <td>
223
- <input type="radio" name="order_by" id="order_by_1" value="asc" checked="checked" /><label for="order_by_1">Ascending</label>
224
- <input type="radio" name="order_by" id="order_by_0" value="desc" /><label for="order_by_0">Descending</label>
225
  </td>
226
  </tr>
227
  <tr id="tr_show_search_box">
228
- <td class="spider_label"><label>Show search box: </label></td>
229
  <td>
230
- <input type="radio" name="show_search_box" id="show_search_box_1" value="1" <?php if ($option_row->show_search_box) echo 'checked="checked"'; ?> onchange="bwg_show_search_box()" /><label for="show_search_box_1">Yes</label>
231
- <input type="radio" name="show_search_box" id="show_search_box_0" value="0" <?php if (!$option_row->show_search_box) echo 'checked="checked"'; ?> onchange="bwg_show_search_box()" /><label for="show_search_box_0">No</label>
232
  </td>
233
  </tr>
234
  <tr id="tr_search_box_width">
235
- <td class="spider_label"><label for="search_box_width">Search box width: </label></td>
236
  <td><input type="text" name="search_box_width" id="search_box_width" value="<?php echo $option_row->search_box_width; ?>" class="spider_int_input" /> px</td>
237
  </tr>
238
  <tr id="tr_show_tag_box">
239
- <td class="spider_label"><label>Show tag box: </label></td>
240
  <td>
241
- <input type="radio" name="show_tag_box" id="show_tag_box_1" value="1" <?php if ($option_row->show_tag_box) echo 'checked="checked"'; ?> /><label for="show_tag_box_1">Yes</label>
242
- <input type="radio" name="show_tag_box" id="show_tag_box_0" value="0" <?php if (!$option_row->show_tag_box) echo 'checked="checked"'; ?> /><label for="show_search_box_0">No</label>
243
  </td>
244
  </tr>
245
  <tr id="tr_show_sort_images">
246
- <td class="spider_label"><label>Show "Order by" dropdown list: </label></td>
247
  <td>
248
- <input type="radio" name="show_sort_images" id="show_sort_images_1" value="1" <?php if ($option_row->show_sort_images) echo 'checked="checked"'; ?> onchange="" /><label for="show_sort_images_1">Yes</label>
249
- <input type="radio" name="show_sort_images" id="show_sort_images_0" value="0" <?php if (!$option_row->show_sort_images) echo 'checked="checked"'; ?> onchange="" /><label for="show_sort_images_0">No</label>
250
  </td>
251
  </tr>
252
  <!--Thumbnails, Masonry viewies-->
253
  <tr id="tr_masonry_hor_ver">
254
- <td class="spider_label"><label>Masonry: </label></td>
255
  <td>
256
  <input type="radio" name="masonry_hor_ver" id="masonry_ver" value="vertical" onclick="bwg_change_label('image_column_number_label', 'Number of image rows: ');
257
  bwg_change_label('thumb_width_height_label', 'Image thumbnail width: ');
258
  jQuery('#thumb_width').show();
259
  jQuery('#thumb_height').hide();
260
- jQuery('#thumb_width_height_separator').hide();" <?php echo ($option_row->masonry == 'vertical') ? 'checked' : ''; ?> /><label for="masonry_ver">Vertical</label>
261
- <input type="radio" name="masonry_hor_ver" id="masonry_hor" value="horizontal" onclick="bwg_change_label('image_column_number_label', 'Max. number of image columns: ');
262
  bwg_change_label('thumb_width_height_label', 'Image Thumbnail Height: ');
263
  jQuery('#thumb_width').hide();
264
  jQuery('#thumb_height').show();
265
- jQuery('#thumb_width_height_separator').hide();" <?php echo ($option_row->masonry == 'horizontal') ? 'checked' : ''; ?> /><label for="masonry_hor">Horizontal</label>
266
  </td>
267
  </tr>
268
  <!--Thumbnails, Mosaic viewies-->
269
  <tr id="tr_mosaic_hor_ver">
270
- <td class="spider_label"><label>Mosaic: </label></td>
271
  <td>
272
- <input type="radio" name="mosaic_hor_ver" id="mosaic_ver" value="vertical" onclick="bwg_change_label('image_column_number_label', 'Number of image rows: ');
273
- bwg_change_label('thumb_width_height_label', 'Image thumbnail width: ');
274
  jQuery('#thumb_width').show();
275
  jQuery('#thumb_height').hide();
276
- jQuery('#thumb_width_height_separator').hide();" <?php echo ($option_row->mosaic == 'vertical') ? 'checked' : ''; ?> /><label for="mosaic_ver">Vertical</label>
277
- <input type="radio" name="mosaic_hor_ver" id="mosaic_hor" value="horizontal" onclick="bwg_change_label('image_column_number_label', 'Max. number of image columns: ');
278
- bwg_change_label('thumb_width_height_label', 'Image Thumbnail Height: ');
279
  jQuery('#thumb_width').hide();
280
  jQuery('#thumb_height').show();
281
- jQuery('#thumb_width_height_separator').hide();" <?php echo ($option_row->mosaic == 'horizontal') ? 'checked' : ''; ?> /><label for="mosaic_hor">Horizontal</label>
282
 
283
 
284
  </td>
285
  </tr>
286
  <tr id="tr_resizable_mosaic">
287
- <td title="Mosaic thumbnails do not have fixed size, but are proportional to the width of the parent container. This option keeps thumbs to look nice when viewed with very large or very small screen. Prevents zooming of thumbs." class="spider_label"><label for="resizable_mosaic">Resizable mosaic</label></td>
288
  <td>
289
- <input type="radio" name="resizable_mosaic" id="resizable_mosaic_1" value="1" <?php echo ($option_row->resizable_mosaic == 1) ? 'checked' : ''; ?> /><label for="resizable_mosaic_1">Yes</label>
290
- <input type="radio" name="resizable_mosaic" id="resizable_mosaic_0" value="0" <?php echo ($option_row->resizable_mosaic == 0) ? 'checked' : ''; ?> /><label for="resizable_mosaic_0">No</label>
291
  <br />
292
  </td>
293
  </tr>
294
  <tr id="tr_mosaic_total_width">
295
- <td title="Percentage of container's width" class="spider_label"><label for="mosaic_total_width">Total width of mosaic: </label></td>
296
  <td><input type="text" name="mosaic_total_width" id="mosaic_total_width" value="<?php echo $option_row->mosaic_total_width; ?>" class="spider_int_input" /> %</td>
297
  </tr>
298
  <!--Thumbnails, Masonry and Mosaic viewies-->
299
  <tr id="tr_image_column_number">
300
- <td class="spider_label"><label id="image_column_number_label" for="image_column_number">Max. number of image columns: </label></td>
301
  <td><input type="text" name="image_column_number" id="image_column_number" value="<?php echo $option_row->image_column_number; ?>" class="spider_int_input" /></td>
302
  </tr>
303
  <tr id="tr_images_per_page">
304
- <td title="If you want to display all images you should leave it blank or insert 0." class="spider_label"><label for="images_per_page">Images per page: </label></td>
305
  <td><input type="text" name="images_per_page" id="images_per_page" value="<?php echo $option_row->images_per_page; ?>" class="spider_int_input" /></td>
306
  </tr>
307
  <tr id="tr_image_title_hover">
308
- <td class="spider_label"><label>Image title: </label></td>
309
  <td>
310
- <input type="radio" name="image_title" id="image_title_hover" value="hover" <?php echo ($option_row->image_title_show_hover == 'hover') ? 'checked' : ''; ?> /><label for="image_title_hover">Show on hover</label><br />
311
- <input type="radio" name="image_title" id="image_title_show" value="show" <?php echo ($option_row->image_title_show_hover == 'show') ? 'checked' : ''; ?> /><label for="image_title_show">Always show</label><br />
312
- <input type="radio" name="image_title" id="image_title_none" value="none" <?php echo ($option_row->image_title_show_hover == 'none') ? 'checked' : ''; ?> /><label for="image_title_none">Don't show</label>
313
  </td>
314
  </tr>
315
  <tr id="tr_image_enable_page">
316
- <td class="spider_label"><label>Enable pagination: </label></td>
317
  <td>
318
- <input type="radio" name="image_enable_page" class="hide_load_count" id="image_page_yes" value="1" <?php echo ($option_row->image_enable_page == '1') ? 'checked' : ''; ?> onchange="bwg_loadmore()"/><label for="image_page_yes">Yes</label>
319
- <input type="radio" name="image_enable_page" class="hide_load_count" id="image_page_no" value="0" <?php echo ($option_row->image_enable_page == '0') ? 'checked' : ''; ?> onchange="bwg_loadmore()"/><label for="image_page_no">No</label>
320
- <input type="radio" name="image_enable_page" id="image_page_loadmore" value="2" <?php echo ($option_row->image_enable_page == '2') ? 'checked' : ''; ?> onchange="bwg_loadmore()"/><label for="image_page_loadmore">Load More</label>
321
- <input type="radio" name="image_enable_page" id="image_page_scrol_load" value="3" <?php echo ($option_row->image_enable_page == '3') ? 'checked' : ''; ?> onchange="bwg_loadmore()"/><label for="image_page_scrol_load">Scroll Load</label>
322
  </td>
323
  </tr>
324
  <tr id="tr_load_more_image_count">
325
- <td class="spider_label"><label for="load_more_image_count">Images per load: </label></td>
326
  <td><input type="text" name="load_more_image_count" id="load_more_image_count" value="<?php echo $option_row->images_per_page; ?>" class="spider_int_input" /></td>
327
  </tr>
328
  <tr id="tr_thumb_width_height">
329
- <td title="Maximum values for thumbnail dimension." class="spider_label"><label id="thumb_width_height_label" for="thumb_width">Image Thumbnail dimensions: </label></td>
330
  <td>
331
  <input type="text" name="thumb_width" id="thumb_width" value="<?php echo $option_row->thumb_width; ?>" class="spider_int_input" /><span id="thumb_width_height_separator"> x </span>
332
  <input type="text" name="thumb_height" id="thumb_height" value="<?php echo $option_row->thumb_height; ?>" class="spider_int_input" /> px
@@ -335,271 +335,271 @@ class BWGViewBWGShortcode {
335
 
336
  <!--Compact Album view-->
337
  <tr id="tr_compuct_album_column_number">
338
- <td class="spider_label"><label for="compuct_album_column_number">Max. number of album columns: </label></td>
339
  <td><input type="text" name="compuct_album_column_number" id="compuct_album_column_number" value="<?php echo $option_row->album_column_number; ?>" class="spider_int_input" /></td>
340
  </tr>
341
  <tr id="tr_compuct_albums_per_page">
342
- <td title="If you want to display all albums you should leave it blank or insert 0." class="spider_label"><label for="compuct_albums_per_page">Albums per page: </label></td>
343
  <td><input type="text" name="compuct_albums_per_page" id="compuct_albums_per_page" value="<?php echo $option_row->albums_per_page; ?>" class="spider_int_input" /></td>
344
  </tr>
345
  <tr id="tr_compuct_album_title_hover">
346
- <td class="spider_label"><label>Album title: </label></td>
347
  <td>
348
- <input type="radio" name="compuct_album_title" id="compuct_album_title_hover" value="hover" <?php echo ($option_row->album_title_show_hover == 'hover') ? 'checked' : ''; ?> /><label for="compuct_album_title_hover">Show on hover</label><br />
349
- <input type="radio" name="compuct_album_title" id="compuct_album_title_show" value="show" <?php echo ($option_row->album_title_show_hover == 'show') ? 'checked' : ''; ?> /><label for="compuct_album_title_show">Always show</label><br />
350
- <input type="radio" name="compuct_album_title" id="compuct_album_title_none" value="none" <?php echo ($option_row->album_title_show_hover == 'none') ? 'checked' : ''; ?> /><label for="compuct_album_title_none">Don't show</label>
351
  </td>
352
  </tr>
353
  <tr id="tr_compuct_album_thumb_width_height">
354
- <td title="Maximum values for album thumb width and height." class="spider_label"><label for="compuct_album_thumb_width">Album Thumbnail dimensions: </label></td>
355
  <td>
356
  <input type="text" name="compuct_album_thumb_width" id="compuct_album_thumb_width" value="<?php echo $option_row->album_thumb_width; ?>" class="spider_int_input" /> x
357
  <input type="text" name="compuct_album_thumb_height" id="compuct_album_thumb_height" value="<?php echo $option_row->album_thumb_height; ?>" class="spider_int_input" /> px
358
  </td>
359
  </tr>
360
  <tr id="tr_compuct_album_view_type">
361
- <td title="The gallery images view type in the album.<br /><br />This option is disabled in free version." class="spider_label spider_free_version_label"><label>Album view type: </label></td>
362
  <td>
363
- <input disabled="disabled" type="radio" name="compuct_album_view_type" id="compuct_album_view_type_1" value="thumbnail" <?php if ($option_row->album_view_type == "thumbnail") echo 'checked="checked"'; ?> onchange="bwg_change_compuct_album_view_type()" /><label for="compuct_album_view_type_1">Thumbnail</label>
364
- <input disabled="disabled" type="radio" name="compuct_album_view_type" id="compuct_album_view_type_0" value="masonry" <?php if ($option_row->album_view_type == "masonry") echo 'checked="checked"'; ?> onchange="bwg_change_compuct_album_view_type()" /><label for="compuct_album_view_type_0">Masonry</label>
365
- <input disabled="disabled" type="radio" name="compuct_album_view_type" id="compuct_album_view_type_2" value="mosaic" <?php if ($option_row->album_view_type == "mosaic") echo 'checked="checked"'; ?> onchange="bwg_change_compuct_album_view_type()" /><label for="compuct_album_view_type_2">Mosaic</label>
366
  </td>
367
  </tr>
368
  <tr id="tr_compuct_album_mosaic_hor_ver">
369
- <td title="This option is disabled in free version." class="spider_label spider_free_version_label"><label>Mosaic: </label></td>
370
  <td>
371
- <input disabled="disabled" type="radio" name="compuct_album_mosaic_hor_ver" id="compuct_album_mosaic_ver" value="vertical" onclick="bwg_change_label('compuct_album_image_column_number', 'Number of image rows: ');
372
- bwg_change_label('compuct_album_image_thumb_dimensions', 'Image thumbnail width: ');
373
  jQuery('#compuct_album_image_thumb_width').show();
374
  jQuery('#compuct_album_image_thumb_height').hide();
375
- jQuery('#compuct_album_image_thumb_dimensions_x').hide();" <?php echo ($option_row->mosaic == 'vertical') ? 'checked' : ''; ?> /><label for="compuct_album_mosaic_ver">Vertical</label>
376
- <input disabled="disabled" type="radio" name="compuct_album_mosaic_hor_ver" id="compuct_album_mosaic_hor" value="horizontal" onclick="bwg_change_label('compuct_album_image_column_number', 'Max. number of image columns: ');
377
- bwg_change_label('compuct_album_image_thumb_dimensions', 'Image thumbnail height: ');
378
  jQuery('#compuct_album_image_thumb_width').hide();
379
  jQuery('#compuct_album_image_thumb_height').show();
380
- jQuery('#compuct_album_image_thumb_dimensions_x').hide();" <?php echo ($option_row->mosaic == 'horizontal') ? 'checked' : ''; ?> /><label for="compuct_album_mosaic_hor">Horizontal</label>
381
 
382
 
383
  </td>
384
  </tr>
385
  <tr id="tr_compuct_album_resizable_mosaic">
386
- <td title="Mosaic thumbnails do not have fixed size, but are proportional to the width of the parent container. This option keeps thumbs to look nice when viewed with very large or very small screen. Prevents zooming of thumbs.<br /><br />This option is disabled in free version." class="spider_label spider_free_version_label"><label for="compuct_album_resizable_mosaic">Resizable mosaic</label></td>
387
  <td>
388
- <input disabled="disabled" type="radio" name="compuct_album_resizable_mosaic" id="compuct_album_resizable_mosaic_1" value="1" <?php echo ($option_row->resizable_mosaic == 1) ? 'checked' : ''; ?> /><label for="compuct_album_resizable_mosaic_1">Yes</label>
389
- <input disabled="disabled" type="radio" name="compuct_album_resizable_mosaic" id="compuct_album_resizable_mosaic_0" value="0" <?php echo ($option_row->resizable_mosaic == 0) ? 'checked' : ''; ?> /><label for="compuct_album_resizable_mosaic_0">No</label>
390
  <br />
391
  </td>
392
  </tr>
393
  <tr id="tr_compuct_album_mosaic_total_width">
394
- <td title="Percentage of container's width" class="spider_label"><label for="compuct_album_mosaic_total_width">Total width of mosaic: </label></td>
395
- <td><input type="text" name="compuct_album_mosaic_total_width" id="compuct_album_mosaic_total_width" value="<?php echo $option_row->mosaic_total_width; ?>" class="spider_int_input" /> percent</td>
396
  </tr>
397
  <tr id="tr_compuct_album_image_column_number">
398
- <td class="spider_label"><label for="compuct_album_image_column_number">Max. number of image columns: </label></td>
399
  <td><input type="text" name="compuct_album_image_column_number" id="compuct_album_image_column_number" value="<?php echo $option_row->image_column_number; ?>" class="spider_int_input" /></td>
400
  </tr>
401
  <tr id="tr_compuct_album_images_per_page">
402
- <td title="If you want to display all images you should leave it blank or insert 0." class="spider_label"><label for="compuct_album_images_per_page">Images per page: </label></td>
403
  <td><input type="text" name="compuct_album_images_per_page" id="compuct_album_images_per_page" value="<?php echo $option_row->images_per_page; ?>" class="spider_int_input" /></td>
404
  </tr>
405
  <tr id="tr_compuct_album_image_title">
406
- <td class="spider_label"><label>Image title: </label></td>
407
  <td>
408
- <input type="radio" name="compuct_album_image_title" id="compuct_album_image_title_hover" value="hover" <?php echo ($option_row->image_title_show_hover == 'hover') ? 'checked' : ''; ?> /><label for="compuct_album_image_title_hover">Show on hover</label><br />
409
- <input type="radio" name="compuct_album_image_title" id="compuct_album_image_title_show" value="show" <?php echo ($option_row->image_title_show_hover == 'show') ? 'checked' : ''; ?> /><label for="compuct_album_image_title_show">Always show</label><br />
410
- <input type="radio" name="compuct_album_image_title" id="compuct_album_image_title_none" value="none" <?php echo ($option_row->image_title_show_hover == 'none') ? 'checked' : ''; ?> /><label for="compuct_album_image_title_none">Don't show</label>
411
  </td>
412
  </tr>
413
  <tr id="tr_compuct_album_image_thumb_width_height">
414
- <td title="Maximum values for thumbnail width and height." class="spider_label"><label for="compuct_album_image_thumb_width" id="compuct_album_image_thumb_dimensions">Image thumbnail dimensions: </label></td>
415
  <td>
416
  <input type="text" name="compuct_album_image_thumb_width" id="compuct_album_image_thumb_width" value="<?php echo $option_row->thumb_width; ?>" class="spider_int_input" /><span id="compuct_album_image_thumb_dimensions_x" > x </span>
417
  <input type="text" name="compuct_album_image_thumb_height" id="compuct_album_image_thumb_height" value="<?php echo $option_row->thumb_height; ?>" class="spider_int_input" /> px
418
  </td>
419
  </tr>
420
  <tr id="tr_compuct_album_enable_page">
421
- <td class="spider_label"><label>Enable pagination: </label></td>
422
  <td>
423
- <input type="radio" name="compuct_album_enable_page" class="hide_load_count" id="compuct_album_page_yes" value="1" <?php echo ($option_row->album_enable_page == '1') ? 'checked' : ''; ?> onchange="bwg_loadmore()"/><label for="compuct_album_page_yes">Yes</label>
424
- <input type="radio" name="compuct_album_enable_page" class="hide_load_count" id="compuct_album_page_no" value="0" <?php echo ($option_row->album_enable_page == '0') ? 'checked' : ''; ?> onchange="bwg_loadmore()" /><label for="compuct_album_page_no">No</label>
425
- <input type="radio" name="compuct_album_enable_page" id="compuct_album_page_loadmore" value="2" <?php echo ($option_row->album_enable_page == '2') ? 'checked' : ''; ?> onchange="bwg_loadmore()" /><label for="compuct_album_page_loadmore">Load More</label>
426
- <input type="radio" name="compuct_album_enable_page" id="compuct_album_page_scrol_load" value="3" <?php echo ($option_row->album_enable_page == '3') ? 'checked' : ''; ?> onchange="bwg_loadmore()" /><label for="compuct_album_page_scrol_load">Scroll Load</label>
427
  </td>
428
  </tr>
429
  <tr id="tr_compuct_albums_per_page_load_more">
430
- <td title="If you want to display all albums you should leave it blank or insert 0." class="spider_label"><label for="compuct_albums_per_page_load_more">Albums per load: </label></td>
431
  <td><input type="text" name="compuct_albums_per_page_load_more" id="compuct_albums_per_page_load_more" value="<?php echo $option_row->albums_per_page; ?>" class="spider_int_input" /></td>
432
  </tr>
433
  <tr id="tr_compuct_album_load_more_image_count">
434
- <td class="spider_label"><label for="compuct_album_load_more_image_count">Images per load: </label></td>
435
  <td><input type="text" name="compuct_album_load_more_image_count" id="compuct_album_load_more_image_count" value="<?php echo $option_row->images_per_page; ?>" class="spider_int_input" /></td>
436
  </tr>
437
 
438
  <!--Extended Album view-->
439
  <tr id="tr_extended_albums_per_page">
440
- <td title="If you want to display all albums you should leave it blank or insert 0." class="spider_label"><label for="extended_albums_per_page">Albums per page: </label></td>
441
  <td><input type="text" name="extended_albums_per_page" id="extended_albums_per_page" value="<?php echo $option_row->albums_per_page; ?>" class="spider_int_input" /></td>
442
  </tr>
443
  <tr id="tr_extended_album_height">
444
- <td class="spider_label"><label for="extended_album_height">Album row height: </label></td>
445
  <td><input type="text" name="extended_album_height" id="extended_album_height" value="<?php echo $option_row->extended_album_height; ?>" class="spider_int_input" /> px</td>
446
  </tr>
447
  <tr id="tr_extended_album_description_enable">
448
- <td title="If you disable description only the title of the album will be displayed." class="spider_label"><label>Enable album description: </label></td>
449
  <td>
450
- <input type="radio" name="extended_album_description_enable" id="extended_album_description_yes" value="1" <?php echo ($option_row->extended_album_description_enable) ? 'checked' : ''; ?> /><label for="extended_album_description_yes">Yes</label>
451
- <input type="radio" name="extended_album_description_enable" id="extended_album_description_no" value="0" <?php echo ($option_row->extended_album_description_enable) ? '' : 'checked'; ?> /><label for="extended_album_description_no">No</label>
452
  </td>
453
  </tr>
454
  <tr id="tr_extended_album_thumb_width_height">
455
- <td title="Maximum values for album thumb width and height." class="spider_label"><label for="extended_album_thumb_width">Album thumbnail dimensions: </label></td>
456
  <td>
457
  <input type="text" name="extended_album_thumb_width" id="extended_album_thumb_width" value="<?php echo $option_row->album_thumb_width; ?>" class="spider_int_input" /> x
458
  <input type="text" name="extended_album_thumb_height" id="extended_album_thumb_height" value="<?php echo $option_row->album_thumb_height; ?>" class="spider_int_input" /> px
459
  </td>
460
  </tr>
461
  <tr id="tr_extended_album_view_type">
462
- <td title="The gallery images view type in the album.<br /><br />This option is disabled in free version." class="spider_label spider_free_version_label"><label>Album view type: </label></td>
463
  <td>
464
- <input disabled="disabled" type="radio" name="extended_album_view_type" id="extended_album_view_type_1" value="thumbnail" <?php if ($option_row->album_view_type == "thumbnail") echo 'checked="checked"'; ?> onchange="bwg_change_extended_album_view_type()" /><label for="extended_album_view_type_1">Thumbnail</label>
465
- <input disabled="disabled" type="radio" name="extended_album_view_type" id="extended_album_view_type_0" value="masonry" <?php if ($option_row->album_view_type == "masonry") echo 'checked="checked"'; ?> onchange="bwg_change_extended_album_view_type()" /><label for="extended_album_view_type_0">Masonry</label>
466
- <input disabled="disabled" type="radio" name="extended_album_view_type" id="extended_album_view_type_2" value="mosaic" <?php if ($option_row->album_view_type == "mosaic") echo 'checked="checked"'; ?> onchange="bwg_change_extended_album_view_type()" /><label for="extended_album_view_type_2">Mosaic</label>
467
  </td>
468
  </tr>
469
  <tr id="tr_extended_album_mosaic_hor_ver">
470
- <td title="This option is disabled in free version." class="spider_label spider_free_version_label"><label>Mosaic: </label></td>
471
  <td>
472
  <input disabled="disabled" type="radio" name="extended_album_mosaic_hor_ver" id="extended_album_mosaic_ver" value="vertical" onclick="bwg_change_label('extended_album_image_column_number', 'Number of image rows: ');
473
- bwg_change_label('extended_album_image_thumb_dimensions', 'Image thumbnail width: ');
474
  jQuery('#extended_album_image_thumb_width').show();
475
  jQuery('#extended_album_image_thumb_height').hide();
476
- jQuery('#extended_album_image_thumb_dimensions_x').hide();" <?php echo ($option_row->mosaic == 'vertical') ? 'checked' : ''; ?> /><label for="extended_album_mosaic_ver">Vertical</label>
477
- <input disabled="disabled" type="radio" name="extended_album_mosaic_hor_ver" id="extended_album_mosaic_hor" value="horizontal" onclick="bwg_change_label('extended_album_image_column_number', 'Max. number of image columns: ');
478
- bwg_change_label('extended_album_image_thumb_dimensions', 'Image thumbnail height: ');
479
  jQuery('#extended_album_image_thumb_width').hide();
480
  jQuery('#extended_album_image_thumb_height').show();
481
- jQuery('#extended_album_image_thumb_dimensions_x').hide();" <?php echo ($option_row->mosaic == 'horizontal') ? 'checked' : ''; ?> /><label for="extended_album_mosaic_hor">Horizontal</label>
482
 
483
 
484
  </td>
485
  </tr>
486
  <tr id="tr_extended_album_resizable_mosaic">
487
- <td title="Mosaic thumbnails do not have fixed size, but are proportional to the width of the parent container. This option keeps thumbs to look nice when viewed with very large or very small screen. Prevents zooming of thumbs.<br /><br />This option is disabled in free version." class="spider_label spider_free_version_label"><label for="extended_album_resizable_mosaic">Resizable mosaic: </label></td>
488
  <td>
489
- <input disabled="disabled" type="radio" name="extended_album_resizable_mosaic" id="extended_album_resizable_mosaic_1" value="1" <?php echo ($option_row->resizable_mosaic == 1) ? 'checked' : ''; ?> /><label for="extended_album_resizable_mosaic_1">Yes</label>
490
- <input disabled="disabled" type="radio" name="extended_album_resizable_mosaic" id="extended_album_resizable_mosaic_0" value="0" <?php echo ($option_row->resizable_mosaic == 0) ? 'checked' : ''; ?> /><label for="extended_album_resizable_mosaic_0">No</label>
491
  <br />
492
  </td>
493
  </tr>
494
 
495
  <tr id="tr_extended_album_mosaic_total_width">
496
- <td title="Percentage of container's width" class="spider_label"><label for="extended_album_mosaic_total_width">Total width of mosaic: </label></td>
497
- <td><input type="text" name="extended_album_mosaic_total_width" id="extended_album_mosaic_total_width" value="<?php echo $option_row->mosaic_total_width; ?>" class="spider_int_input" /> percent</td>
498
  </tr>
499
  <tr id="tr_extended_album_image_column_number">
500
- <td class="spider_label"><label for="extended_album_image_column_number">Max. number of image columns: </label></td>
501
  <td><input type="text" name="extended_album_image_column_number" id="extended_album_image_column_number" value="<?php echo $option_row->image_column_number; ?>" class="spider_int_input" /></td>
502
  </tr>
503
  <tr id="tr_extended_album_images_per_page">
504
- <td title="If you want to display all images you should leave it blank or insert 0." class="spider_label"><label for="extended_album_images_per_page">Images per page: </label></td>
505
  <td><input type="text" name="extended_album_images_per_page" id="extended_album_images_per_page" value="<?php echo $option_row->images_per_page; ?>" class="spider_int_input" /></td>
506
  </tr>
507
  <tr id="tr_extended_album_image_title">
508
- <td class="spider_label"><label>Image title: </label></td>
509
  <td>
510
- <input type="radio" name="extended_album_image_title" id="extended_album_image_title_hover" value="hover" <?php echo ($option_row->image_title_show_hover == 'hover') ? 'checked' : ''; ?> /><label for="extended_album_image_title_hover">Show on hover</label><br />
511
- <input type="radio" name="extended_album_image_title" id="extended_album_image_title_show" value="show" <?php echo ($option_row->image_title_show_hover == 'show') ? 'checked' : ''; ?> /><label for="extended_album_image_title_show">Always show</label><br />
512
- <input type="radio" name="extended_album_image_title" id="extended_album_image_title_none" value="none" <?php echo ($option_row->image_title_show_hover == 'none') ? 'checked' : ''; ?> /><label for="extended_album_image_title_none">Don't show</label>
513
  </td>
514
  </tr>
515
  <tr id="tr_extended_album_image_thumb_width_height">
516
- <td title="Maximum values for thumbnail width and height." class="spider_label"><label for="extended_album_image_thumb_width" id="extended_album_image_thumb_dimensions">Image Thumbnail dimensions: </label></td>
517
  <td>
518
  <input type="text" name="extended_album_image_thumb_width" id="extended_album_image_thumb_width" value="<?php echo $option_row->thumb_width; ?>" class="spider_int_input" /><span id="extended_album_image_thumb_dimensions_x" > x </span>
519
  <input type="text" name="extended_album_image_thumb_height" id="extended_album_image_thumb_height" value="<?php echo $option_row->thumb_height; ?>" class="spider_int_input" /> px
520
  </td>
521
  </tr>
522
  <tr id="tr_extended_album_enable_page">
523
- <td class="spider_label"><label>Enable pagination: </label></td>
524
  <td>
525
- <input type="radio" name="extended_album_enable_page" id="extended_album_page_yes" value="1" <?php echo ($option_row->album_enable_page == '1') ? 'checked' : ''; ?> onchange="bwg_loadmore()"/><label for="extended_album_page_yes">Yes</label>
526
- <input type="radio" name="extended_album_enable_page" id="extended_album_page_no" value="0" <?php echo ($option_row->album_enable_page == '0') ? 'checked' : ''; ?> onchange="bwg_loadmore()"/><label for="extended_album_page_no">No</label>
527
- <input type="radio" name="extended_album_enable_page" id="extended_album_page_loadmore" value="2" <?php echo ($option_row->album_enable_page == '2') ? 'checked' : ''; ?> onchange="bwg_loadmore()"/><label for="extended_album_page_loadmore">Load More</label>
528
- <input type="radio" name="extended_album_enable_page" id="extended_album_page_scrol_load" value="3" <?php echo ($option_row->album_enable_page == '3') ? 'checked' : ''; ?> onchange="bwg_loadmore()"/><label for="extended_album_page_scrol_load">Scroll Load </label>
529
  </td>
530
  </tr>
531
  <tr id="tr_extended_albums_per_page_load_more">
532
- <td title="If you want to display all albums you should leave it blank or insert 0." class="spider_label"><label for="extended_albums_per_page_load_more">Albums per load: </label></td>
533
  <td><input type="text" name="extended_albums_per_page_load_more" id="extended_albums_per_page_load_more" value="<?php echo $option_row->albums_per_page; ?>" class="spider_int_input" /></td>
534
  </tr>
535
  <tr id="tr_extended_album_load_more_image_count">
536
- <td class="spider_label"><label for="extended_album_load_more_image_count">Images per load: </label></td>
537
  <td><input type="text" name="extended_album_load_more_image_count" id="extended_album_load_more_image_count" value="<?php echo $option_row->images_per_page; ?>" class="spider_int_input" /></td>
538
  </tr>
539
 
540
  <!--Image Browser view-->
541
  <tr id="tr_image_browser_width_height">
542
- <td title="Maximum value for image width." class="spider_label"><label for="image_browser_width">Image width: </label></td>
543
  <td>
544
  <input type="text" name="image_browser_width" id="image_browser_width" value="<?php echo $option_row->image_browser_width; ?>" class="spider_int_input" /> px
545
  </td>
546
  </tr>
547
  <tr id="tr_image_browser_title_enable">
548
- <td class="spider_label"><label>Enable image title: </label></td>
549
  <td>
550
- <input type="radio" name="image_browser_title_enable" id="image_browser_title_yes" value="1" <?php echo ($option_row->image_browser_title_enable) ? 'checked' : ''; ?> /><label for="image_browser_title_es">Yes</label>
551
- <input type="radio" name="image_browser_title_enable" id="image_browser_title_no" value="0" <?php echo ($option_row->image_browser_title_enable) ? '' : 'checked'; ?> /><label for="image_browser_title_no">No</label>
552
  </td>
553
  </tr>
554
  <tr id="tr_image_browser_description_enable">
555
- <td class="spider_label"><label>Enable image description: </label></td>
556
  <td>
557
- <input type="radio" name="image_browser_description_enable" id="image_browser_description_yes" value="1" <?php echo ($option_row->image_browser_description_enable) ? 'checked' : ''; ?> /><label for="image_browser_description_yes">Yes</label>
558
- <input type="radio" name="image_browser_description_enable" id="image_browser_description_no" value="0" <?php echo ($option_row->image_browser_description_enable) ? '' : 'checked'; ?> /><label for="image_browser_description_no">No</label>
559
  </td>
560
  </tr>
561
 
562
  <!--Blog Style view-->
563
  <tr id="tr_blog_style_width_height">
564
- <td title="Maximum value for image width." class="spider_label"><label for="blog_style_width">Image width: </label></td>
565
  <td>
566
  <input type="text" name="blog_style_width" id="blog_style_width" value="<?php echo $option_row->blog_style_width; ?>" class="spider_int_input" /> px
567
  </td>
568
  </tr>
569
  <tr id="tr_blog_style_title_enable">
570
- <td class="spider_label"><label>Enable image title: </label></td>
571
  <td>
572
- <input type="radio" name="blog_style_title_enable" id="blog_style_title_yes" value="1" <?php echo ($option_row->blog_style_title_enable) ? 'checked' : ''; ?> /><label for="blog_style_title_es">Yes</label>
573
- <input type="radio" name="blog_style_title_enable" id="blog_style_title_no" value="0" <?php echo ($option_row->blog_style_title_enable) ? '' : 'checked'; ?> /><label for="blog_style_title_no">No</label>
574
  </td>
575
  </tr>
576
  <tr id="tr_blog_style_images_per_page">
577
- <td title="If you want to display all images you should leave it blank or insert 0." class="spider_label"><label for="blog_style_images_per_page">Images per page: </label></td>
578
  <td><input type="text" name="blog_style_images_per_page" id="blog_style_images_per_page" value="<?php echo $option_row->blog_style_images_per_page; ?>" class="spider_int_input" /></td>
579
  </tr>
580
  <tr id="tr_blog_style_enable_page">
581
- <td class="spider_label"><label>Enable pagination: </label></td>
582
  <td>
583
- <input type="radio" name="blog_style_enable_page" id="blog_style_page_yes" value="1" <?php echo ($option_row->blog_style_enable_page == '1') ? 'checked' : ''; ?> onchange="bwg_loadmore()" /><label for="blog_style_page_yes">Yes</label>
584
- <input type="radio" name="blog_style_enable_page" id="blog_style_page_no" value="0" <?php echo ($option_row->blog_style_enable_page == '0') ? 'checked' : ''; ?> onchange="bwg_loadmore()" /><label for="blog_style_page_no">No</label>
585
  <input type="radio" name="blog_style_enable_page" id="blog_style_page_loadmore" value="2" <?php echo ($option_row->blog_style_enable_page == '2') ? 'checked' : ''; ?> onchange="bwg_loadmore()" /><label for="blog_style_page_loadmore">Load more</label>
586
- <input type="radio" name="blog_style_enable_page" id="blog_style_page_scrol_load" value="3" <?php echo ($option_row->blog_style_enable_page == '3') ? 'checked' : ''; ?> onchange="bwg_loadmore()" /><label for="blog_style_page_scrol_load">Scroll Load </label>
587
  </td>
588
  </tr>
589
  <tr id="tr_blog_style_load_more_image_count">
590
- <td class="spider_label"><label for="blog_style_load_more_image_count">Images per load: </label></td>
591
  <td><input type="text" name="blog_style_load_more_image_count" id="blog_style_load_more_image_count" value="<?php echo $option_row->blog_style_images_per_page; ?>" class="spider_int_input" /></td>
592
  </tr>
593
 
594
  <!--Slideshow view-->
595
  <tr id="tr_slideshow_effect">
596
- <td class="spider_label"><label for="slideshow_effect">Slideshow Effect: </label></td>
597
  <td>
598
  <select name="slideshow_effect" id="slideshow_effect" style="width:150px;">
599
  <?php
600
  foreach ($effects as $key => $effect) {
601
  ?>
602
- <option value="<?php echo $key; ?>" <?php echo ($key != 'none' && $key != 'fade') ? 'disabled="disabled" title="This effect is disabled in free version."' : ''; ?> <?php echo ($option_row->slideshow_type == $key) ? 'selected' : ''; ?>><?php echo $effect; ?></option>
603
  <?php
604
  }
605
  ?>
@@ -607,46 +607,46 @@ class BWGViewBWGShortcode {
607
  </td>
608
  </tr>
609
  <tr id="tr_slideshow_interval">
610
- <td title="Interval between two images." class="spider_label"><label for="slideshow_interval">Time interval: </label></td>
611
  <td><input type="text" name="slideshow_interval" id="slideshow_interval" value="<?php echo $option_row->slideshow_interval; ?>" class="spider_int_input" /> sec.</td>
612
  </tr>
613
  <tr id="tr_slideshow_width_height">
614
- <td title="Maximum values for slideshow width and height." class="spider_label"><label for="slideshow_width">Slideshow dimensions: </label></td>
615
  <td>
616
  <input type="text" name="slideshow_width" id="slideshow_width" value="<?php echo $option_row->slideshow_width; ?>" class="spider_int_input" /> x
617
  <input type="text" name="slideshow_height" id="slideshow_height" value="<?php echo $option_row->slideshow_height; ?>" class="spider_int_input" /> px
618
  </td>
619
  </tr>
620
  <tr id="tr_enable_slideshow_autoplay">
621
- <td class="spider_label"><label>Enable Autoplay: </label></td>
622
  <td>
623
- <input type="radio" name="enable_slideshow_autoplay" id="slideshow_autoplay_yes" value="1" <?php echo ($option_row->slideshow_enable_autoplay) ? 'checked' : ''; ?> /><label for="slideshow_autoplay_yes">Yes</label>
624
- <input type="radio" name="enable_slideshow_autoplay" id="slideshow_autoplay_no" value="0" <?php echo ($option_row->slideshow_enable_autoplay) ? '' : 'checked'; ?> /><label for="slideshow_autoplay_no">No</label>
625
  </td>
626
  </tr>
627
  <tr id="tr_enable_slideshow_shuffle">
628
- <td class="spider_label"><label>Enable Shuffle: </label></td>
629
  <td>
630
- <input type="radio" name="enable_slideshow_shuffle" id="slideshow_shuffle_yes" value="1" <?php echo ($option_row->slideshow_enable_shuffle) ? 'checked' : ''; ?> /><label for="slideshow_shuffle_yes">Yes</label>
631
- <input type="radio" name="enable_slideshow_shuffle" id="slideshow_shuffle_no" value="0" <?php echo ($option_row->slideshow_enable_shuffle) ? '' : 'checked'; ?> /><label for="slideshow_shuffle_no">No</label>
632
  </td>
633
  </tr>
634
  <tr id="tr_enable_slideshow_ctrl">
635
- <td class="spider_label"><label>Enable control buttons: </label></td>
636
  <td>
637
- <input type="radio" name="enable_slideshow_ctrl" id="slideshow_ctrl_yes" value="1" <?php echo ($option_row->slideshow_enable_ctrl) ? 'checked' : ''; ?> /><label for="slideshow_ctrl_yes">Yes</label>
638
- <input type="radio" name="enable_slideshow_ctrl" id="slideshow_ctrl_no" value="0" <?php echo ($option_row->slideshow_enable_ctrl) ? '' : 'checked'; ?> /><label for="slideshow_ctrl_no">No</label>
639
  </td>
640
  </tr>
641
  <tr id="tr_enable_slideshow_filmstrip">
642
- <td title="Enable slideshow filmstrip view<br /><br />This option is disabled in free version." class="spider_label spider_free_version_label"><label>Enable slideshow filmstrip: </label></td>
643
  <td>
644
- <input disabled="disabled" type="radio" name="enable_slideshow_filmstrip" id="slideshow_filmstrip_yes" value="1" onClick="bwg_enable_disable('', 'tr_slideshow_filmstrip_height', 'slideshow_filmstrip_yes')" <?php echo ($option_row->slideshow_enable_filmstrip) ? 'checked' : ''; ?> /><label for="slideshow_filmstrip_yes">Yes</label>
645
- <input disabled="disabled" type="radio" name="enable_slideshow_filmstrip" id="slideshow_filmstrip_no" value="0" onClick="bwg_enable_disable('none', 'tr_slideshow_filmstrip_height', 'slideshow_filmstrip_no')" <?php echo ($option_row->slideshow_enable_filmstrip) ? '' : 'checked'; ?> /><label for="slideshow_filmstrip_no">No</label>
646
  </td>
647
  </tr>
648
  <tr id="tr_slideshow_filmstrip_height">
649
- <td class="spider_label spider_free_version_label"><label for="slideshow_filmstrip_height">Slideshow Filmstrip size: </label></td>
650
  <td class="spider_free_version_label"><input disabled="disabled" type="text" name="slideshow_filmstrip_height" id="slideshow_filmstrip_height" value="<?php echo $option_row->slideshow_filmstrip_height; ?>" class="spider_int_input spider_free_version_label" /> px</td>
651
  </tr>
652
  </tbody>
@@ -657,14 +657,14 @@ class BWGViewBWGShortcode {
657
  <!--Slideshow view-->
658
  <tbody id="tbody_slideshow">
659
  <tr id="tr_slideshow_enable_title">
660
- <td class="spider_label"><label>Enable Image Title: </label></td>
661
  <td>
662
- <input type="radio" name="slideshow_enable_title" id="slideshow_title_yes" value="1" <?php echo ($option_row->slideshow_enable_title) ? 'checked' : ''; ?> onClick="bwg_enable_disable('', 'tr_slideshow_title_position', 'slideshow_title_yes')" /><label for="slideshow_title_yes">Yes</label>
663
- <input type="radio" name="slideshow_enable_title" id="slideshow_title_no" value="0" <?php echo ($option_row->slideshow_enable_title) ? '' : 'checked'; ?> onClick="bwg_enable_disable('none', 'tr_slideshow_title_position', 'slideshow_title_no')" /><label for="slideshow_title_no">No</label>
664
  </td>
665
  </tr>
666
  <tr id="tr_slideshow_title_position">
667
- <td title="Image title position on slideshow" class="spider_label"><label>Title Position: </label></td>
668
  <td>
669
  <table class="bws_position_table">
670
  <tbody>
@@ -688,23 +688,23 @@ class BWGViewBWGShortcode {
688
  </td>
689
  </tr>
690
  <tr id="tr_slideshow_full_width_title">
691
- <td title="Display image title based on the slideshow dimensions." class="spider_label">
692
- <label>Full width title:</label>
693
  </td>
694
  <td>
695
- <input type="radio" name="slideshow_title_full_width" id="slideshow_title_full_width_1" value="1" <?php if ($option_row->slideshow_title_full_width) echo 'checked="checked"'; ?> /><label for="slideshow_title_full_width_1">Yes</label>
696
- <input type="radio" name="slideshow_title_full_width" id="slideshow_title_full_width_0" value="0" <?php if (!$option_row->slideshow_title_full_width) echo 'checked="checked"'; ?> /><label for="slideshow_title_full_width_0">No</label>
697
  </td>
698
  </tr>
699
  <tr id="tr_slideshow_enable_description">
700
- <td class="spider_label"><label>Enable Image Description: </label></td>
701
  <td>
702
- <input type="radio" name="slideshow_enable_description" id="slideshow_description_yes" value="1" <?php echo ($option_row->slideshow_enable_description) ? 'checked' : ''; ?> onClick="bwg_enable_disable('', 'tr_slideshow_description_position', 'slideshow_description_yes')" /><label for="slideshow_description_yes">Yes</label>
703
- <input type="radio" name="slideshow_enable_description" id="slideshow_description_no" value="0" <?php echo ($option_row->slideshow_enable_description) ? '' : 'checked'; ?> onClick="bwg_enable_disable('none', 'tr_slideshow_description_position', 'slideshow_description_no')" /><label for="slideshow_description_no">No</label>
704
  </td>
705
  </tr>
706
  <tr id="tr_slideshow_description_position">
707
- <td title="Image description position on slideshow" class="spider_label"><label>Description Position: </label></td>
708
  <td>
709
  <table class="bws_position_table">
710
  <tbody>
@@ -728,15 +728,15 @@ class BWGViewBWGShortcode {
728
  </td>
729
  </tr>
730
  <tr id="tr_enable_slideshow_music">
731
- <td class="spider_label"><label>Enable Slideshow Music: </label></td>
732
  <td>
733
- <input type="radio" name="enable_slideshow_music" id="slideshow_music_yes" value="1" onClick="bwg_enable_disable('', 'tr_slideshow_music_url', 'slideshow_music_yes')" <?php echo ($option_row->slideshow_enable_music) ? 'checked' : ''; ?> /><label for="slideshow_music_yes">Yes</label>
734
- <input type="radio" name="enable_slideshow_music" id="slideshow_music_no" value="0" onClick="bwg_enable_disable('none', 'tr_slideshow_music_url', 'slideshow_music_no')" <?php echo ($option_row->slideshow_enable_music) ? '' : 'checked'; ?> /><label for="slideshow_music_no">No</label>
735
  </td>
736
  </tr>
737
  <tr id="tr_slideshow_music_url">
738
- <td title="Enter absolute audio file url or add file from Options page." class="spider_label">
739
- <label for="slideshow_music_url">Music url: </label>
740
  </td>
741
  <td>
742
  <input type="text" id="slideshow_music_url" name="slideshow_music_url" value="<?php echo $option_row->slideshow_audio_url; ?>" style="display:inline-block;" />
@@ -747,46 +747,46 @@ class BWGViewBWGShortcode {
747
  <!--Lightbox view-->
748
  <tbody id="tbody_popup_other">
749
  <tr id="tr_thumb_click_action">
750
- <td class="spider_label"><label>Thumb click action: </label></td>
751
  <td>
752
- <input type="radio" name="thumb_click_action" id="thumb_click_action_1" value="open_lightbox" <?php if ($option_row->thumb_click_action == 'open_lightbox') echo 'checked="checked"'; ?> onchange="bwg_thumb_click_action()" /><label for="thumb_click_action_1">Open lightbox</label><br />
753
- <input type="radio" name="thumb_click_action" id="thumb_click_action_2" value="redirect_to_url" <?php if ($option_row->thumb_click_action == 'redirect_to_url') echo 'checked="checked"'; ?> onchange="bwg_thumb_click_action()" /><label for="thumb_click_action_2">Redirect to url</label><br />
754
- <input type="radio" name="thumb_click_action" id="thumb_click_action_3" value="do_nothing" <?php if ($option_row->thumb_click_action == 'do_nothing') echo 'checked="checked"'; ?> onchange="bwg_thumb_click_action()" /><label for="thumb_click_action_3">Do Nothing</label>
755
  </td>
756
  </tr>
757
  <tr id="tr_thumb_link_target">
758
- <td title="Open new window when redirecting." class="spider_label"><label>Open in new window: </label></td>
759
  <td>
760
- <input type="radio" name="thumb_link_target" id="thumb_link_target_yes" value="1" <?php if ($option_row->thumb_link_target) echo 'checked="checked"'; ?> /><label for="thumb_link_target_yes">Yes</label>
761
- <input type="radio" name="thumb_link_target" id="thumb_link_target_no" value="0" <?php if (!$option_row->thumb_link_target) echo 'checked="checked"'; ?> /><label for="thumb_link_target_no">No</label>
762
  </td>
763
  </tr>
764
  </tbody>
765
  <tbody id="tbody_popup">
766
  <tr id="tr_popup_fullscreen">
767
- <td title="Enable full width feature for the lightbox." class="spider_label">
768
- <label>Full width lightbox:</label>
769
  </td>
770
  <td>
771
- <input type="radio" name="popup_fullscreen" id="popup_fullscreen_1" value="1" <?php if ($option_row->popup_fullscreen) echo 'checked="checked"'; ?> onchange="bwg_popup_fullscreen()" /><label for="popup_fullscreen_1">Yes</label>
772
- <input type="radio" name="popup_fullscreen" id="popup_fullscreen_0" value="0" <?php if (!$option_row->popup_fullscreen) echo 'checked="checked"'; ?> onchange="bwg_popup_fullscreen()" /><label for="popup_fullscreen_0">No</label>
773
  </td>
774
  </tr>
775
  <tr id="tr_popup_width_height">
776
- <td title="Maximum values for lightbox width and height." class="spider_label"><label for="popup_width">Lightbox dimensions: </label></td>
777
  <td>
778
  <input type="text" name="popup_width" id="popup_width" value="<?php echo $option_row->popup_width; ?>" class="spider_int_input" /> x
779
  <input type="text" name="popup_height" id="popup_height" value="<?php echo $option_row->popup_height; ?>" class="spider_int_input" /> px
780
  </td>
781
  </tr>
782
  <tr id="tr_popup_effect">
783
- <td title="Lightbox slideshow effect." class="spider_label"><label for="popup_effect">Lightbox effect: </label></td>
784
  <td>
785
  <select name="popup_effect" id="popup_effect" style="width:150px;">
786
  <?php
787
  foreach ($effects as $key => $effect) {
788
  ?>
789
- <option value="<?php echo $key; ?>" <?php echo ($key != 'none' && $key != 'fade') ? 'disabled="disabled" title="This effect is disabled in free version."' : ''; ?> <?php echo ($option_row->popup_type == $key) ? 'selected' : ''; ?>><?php echo $effect; ?></option>
790
  <?php
791
  }
792
  ?>
@@ -795,119 +795,119 @@ class BWGViewBWGShortcode {
795
  </tr>
796
  <tr id="tr_popup_autoplay">
797
  <td class="spider_label">
798
- <label>Lightbox autoplay: </label>
799
  </td>
800
  <td>
801
- <input type="radio" name="popup_autoplay" id="popup_autoplay_1" value="1" <?php if ($option_row->popup_autoplay) echo 'checked="checked"'; ?> /><label for="popup_autoplay_1">Yes</label>
802
- <input type="radio" name="popup_autoplay" id="popup_autoplay_0" value="0" <?php if (!$option_row->popup_autoplay) echo 'checked="checked"'; ?> /><label for="popup_autoplay_0">No</label>
803
  </td>
804
  </tr>
805
  <tr id="tr_popup_interval">
806
- <td title="Interval between two images." class="spider_label"><label for="popup_interval">Time interval: </label></td>
807
  <td><input type="text" name="popup_interval" id="popup_interval" value="<?php echo $option_row->popup_interval; ?>" class="spider_int_input" /> sec.</td>
808
  </tr>
809
  <tr id="tr_popup_enable_filmstrip">
810
- <td title="Enable filmstrip view for images<br /><br />This option is disabled in free version." class="spider_label spider_free_version_label"><label>Enable filmstrip in lightbox: </label></td>
811
  <td>
812
- <input disabled="disabled" type="radio" name="popup_enable_filmstrip" id="popup_filmstrip_yes" value="1" onClick="bwg_enable_disable('', 'tr_popup_filmstrip_height', 'popup_filmstrip_yes')" <?php echo ($option_row->popup_enable_filmstrip) ? 'checked' : ''; ?> /><label for="popup_filmstrip_yes">Yes</label>
813
- <input disabled="disabled" type="radio" name="popup_enable_filmstrip" id="popup_filmstrip_no" value="0" onClick="bwg_enable_disable('none', 'tr_popup_filmstrip_height', 'popup_filmstrip_no')" <?php echo ($option_row->popup_enable_filmstrip) ? '' : 'checked'; ?> /><label for="popup_filmstrip_no">No</label>
814
  </td>
815
  </tr>
816
  <tr id="tr_popup_filmstrip_height">
817
- <td title="This option is disabled in free version." class="spider_label spider_free_version_label"><label for="popup_filmstrip_height">Filmstrip size: </label></td>
818
  <td class="spider_free_version_label"><input disabled="disabled" type="text" name="popup_filmstrip_height" id="popup_filmstrip_height" value="<?php echo $option_row->popup_filmstrip_height; ?>" class="spider_int_input spider_free_version_label" /> px</td>
819
  </tr>
820
  <tr id="tr_popup_hit_counter">
821
- <td title="This option is disabled in free version." class="spider_label spider_free_version_label"><label>Display hit counter: </label></td>
822
  <td>
823
- <input disabled="disabled" type="radio" name="popup_hit_counter" id="popup_hit_counter_yes" value="1" <?php echo ($option_row->popup_hit_counter) ? 'checked' : ''; ?> /><label for="popup_hit_counter_yes">Yes</label>
824
- <input disabled="disabled" type="radio" name="popup_hit_counter" id="popup_hit_counter_no" value="0" <?php echo ($option_row->popup_hit_counter) ? '' : 'checked'; ?> /><label for="popup_hit_counter_no">No</label>
825
  </td>
826
  </tr>
827
  <tr id="tr_popup_enable_ctrl_btn">
828
- <td title="Enable control buttons in lightbox" class="spider_label"><label>Enable control buttons: </label></td>
829
  <td>
830
- <input type="radio" name="popup_enable_ctrl_btn" id="popup_ctrl_btn_yes" value="1" onClick="bwg_enable_disable('', 'tbody_popup_ctrl_btn', 'popup_ctrl_btn_yes');" <?php echo ($option_row->popup_enable_ctrl_btn) ? 'checked' : ''; ?> /><label for="popup_ctrl_btn_yes">Yes</label>
831
- <input type="radio" name="popup_enable_ctrl_btn" id="popup_ctrl_btn_no" value="0" onClick="bwg_enable_disable('none', 'tbody_popup_ctrl_btn', 'popup_ctrl_btn_no');" <?php echo ($option_row->popup_enable_ctrl_btn) ? '' : 'checked'; ?> /><label for="popup_ctrl_btn_no">No</label>
832
  </td>
833
  </tr>
834
  </tbody>
835
  <tbody id="tbody_popup_ctrl_btn">
836
  <tr id="tr_popup_enable_fullscreen">
837
- <td title="Enable fullscreen view for images" class="spider_label"><label>Enable fullscreen: </label></td>
838
  <td>
839
- <input type="radio" name="popup_enable_fullscreen" id="popup_fullscreen_yes" value="1" <?php echo ($option_row->popup_enable_fullscreen) ? 'checked' : ''; ?> /><label for="popup_fullscreen_yes">Yes</label>
840
- <input type="radio" name="popup_enable_fullscreen" id="popup_fullscreen_no" value="0" <?php echo ($option_row->popup_enable_fullscreen) ? '' : 'checked'; ?> /><label for="popup_fullscreen_no">No</label>
841
  </td>
842
  </tr>
843
  <tr id="tr_popup_enable_info">
844
- <td title="Enable title, description for images" class="spider_label"><label>Enable info: </label></td>
845
  <td>
846
- <input type="radio" name="popup_enable_info" id="popup_info_yes" value="1" <?php echo ($option_row->popup_enable_info) ? 'checked="checked"' : ''; ?> /><label for="popup_info_yes">Yes</label>
847
- <input type="radio" name="popup_enable_info" id="popup_info_no" value="0" <?php echo ($option_row->popup_enable_info) ? '' : 'checked="checked"'; ?> /><label for="popup_info_no">No</label>
848
  </td>
849
  </tr>
850
  <tr id="tr_popup_info_always_show">
851
- <td class="spider_label"><label>Display info by default: </label></td>
852
  <td>
853
- <input type="radio" name="popup_info_always_show" id="popup_info_always_show_yes" value="1" <?php echo ($option_row->popup_info_always_show) ? 'checked="checked"' : ''; ?> /><label for="popup_info_always_show_yes">Yes</label>
854
- <input type="radio" name="popup_info_always_show" id="popup_info_always_show_no" value="0" <?php echo ($option_row->popup_info_always_show) ? '' : 'checked="checked"'; ?> /><label for="popup_info_always_show_no">No</label>
855
  </td>
856
  </tr>
857
  <tr id="tr_popup_info_full_width">
858
- <td title="Display image information based on the lightbox dimensions." class="spider_label"><label>Full width info:</label></td>
859
  <td>
860
- <input type="radio" name="popup_info_full_width" id="popup_info_full_width_1" value="1" <?php if ($option_row->popup_info_full_width) echo 'checked="checked"'; ?> /><label for="popup_info_full_width_1">Yes</label>
861
- <input type="radio" name="popup_info_full_width" id="popup_info_full_width_0" value="0" <?php if (!$option_row->popup_info_full_width) echo 'checked="checked"'; ?> /><label for="popup_info_full_width_0">No</label>
862
  </td>
863
  </tr>
864
  <tr id="tr_popup_enable_rate">
865
- <td title="Enable rating for images<br /><br />This option is disabled in free version." class="spider_label spider_free_version_label"><label>Enable rating: </label></td>
866
  <td>
867
- <input disabled="disabled" type="radio" name="popup_enable_rate" id="popup_rate_yes" value="1" <?php echo ($option_row->popup_enable_rate) ? 'checked="checked"' : ''; ?> /><label for="popup_rate_yes">Yes</label>
868
- <input disabled="disabled" type="radio" name="popup_enable_rate" id="popup_rate_no" value="0" <?php echo ($option_row->popup_enable_rate) ? '' : 'checked="checked"'; ?> /><label for="popup_rate_no">No</label>
869
  </td>
870
  </tr>
871
  <tr id="tr_popup_enable_comment">
872
- <td title="Enable comments for images<br /><br />This option is disabled in free version." class="spider_label spider_free_version_label"><label>Enable comments: </label></td>
873
  <td>
874
- <input disabled="disabled" type="radio" name="popup_enable_comment" id="popup_comment_yes" value="1" <?php echo ($option_row->popup_enable_comment) ? 'checked' : ''; ?> /><label for="popup_comment_yes">Yes</label>
875
- <input disabled="disabled" type="radio" name="popup_enable_comment" id="popup_comment_no" value="0" <?php echo ($option_row->popup_enable_comment) ? '' : 'checked'; ?> /><label for="popup_comment_no">No</label>
876
  </td>
877
  </tr>
878
  <tr id="tr_popup_enable_facebook">
879
- <td title="Enable Facebook share button for images<br /><br />This option is disabled in free version." class="spider_label spider_free_version_label"><label>Enable Facebook button: </label></td>
880
  <td>
881
- <input disabled="disabled" type="radio" name="popup_enable_facebook" id="popup_facebook_yes" value="1" <?php echo ($option_row->popup_enable_facebook) ? 'checked' : ''; ?> /><label for="popup_facebook_yes">Yes</label>
882
- <input disabled="disabled" type="radio" name="popup_enable_facebook" id="popup_facebook_no" value="0" <?php echo ($option_row->popup_enable_facebook) ? '' : 'checked'; ?> /><label for="popup_facebook_no">No</label>
883
  </td>
884
  </tr>
885
  <tr id="tr_popup_enable_twitter">
886
- <td title="Enable Twitter share button for images<br /><br />This option is disabled in free version." class="spider_label spider_free_version_label"><label>Enable Twitter button: </label></td>
887
  <td>
888
- <input disabled="disabled" type="radio" name="popup_enable_twitter" id="popup_twitter_yes" value="1" <?php echo ($option_row->popup_enable_twitter) ? 'checked' : ''; ?> /><label for="popup_twitter_yes">Yes</label>
889
- <input disabled="disabled" type="radio" name="popup_enable_twitter" id="popup_twitter_no" value="0" <?php echo ($option_row->popup_enable_twitter) ? '' : 'checked'; ?> /><label for="popup_twitter_no">No</label>
890
  </td>
891
  </tr>
892
  <tr id="tr_popup_enable_google">
893
- <td title="Enable Google+ share button for images<br /><br />This option is disabled in free version." class="spider_label spider_free_version_label"><label>Enable Google+ button: </label></td>
894
  <td>
895
- <input disabled="disabled" type="radio" name="popup_enable_google" id="popup_google_yes" value="1" <?php echo ($option_row->popup_enable_google) ? 'checked' : ''; ?> /><label for="popup_google_yes">Yes</label>
896
- <input disabled="disabled" type="radio" name="popup_enable_google" id="popup_google_no" value="0" <?php echo ($option_row->popup_enable_google) ? '' : 'checked'; ?> /><label for="popup_google_no">No</label>
897
  </td>
898
  </tr>
899
  <tr id="tr_popup_enable_pinterest">
900
- <td title="Enable Pinterest share button for images<br /><br />This option is disabled in free version." class="spider_label spider_free_version_label"><label>Enable Pinterest button: </label></td>
901
  <td>
902
- <input disabled="disabled" type="radio" name="popup_enable_pinterest" id="popup_pinterest_yes" value="1" <?php echo ($option_row->popup_enable_pinterest) ? 'checked' : ''; ?> /><label for="popup_pinterest_yes">Yes</label>
903
- <input disabled="disabled" type="radio" name="popup_enable_pinterest" id="popup_pinterest_no" value="0" <?php echo ($option_row->popup_enable_pinterest) ? '' : 'checked'; ?> /><label for="popup_pinterest_no">No</label>
904
  </td>
905
  </tr>
906
  <tr id="tr_popup_enable_tumblr">
907
- <td title="Enable Tumblr share button for images<br /><br />This option is disabled in free version." class="spider_label spider_free_version_label"><label>Enable Tumblr button: </label></td>
908
  <td>
909
- <input disabled="disabled" type="radio" name="popup_enable_tumblr" id="popup_tumblr_yes" value="1" <?php echo ($option_row->popup_enable_tumblr) ? 'checked' : ''; ?> /><label for="popup_tumblr_yes">Yes</label>
910
- <input disabled="disabled" type="radio" name="popup_enable_tumblr" id="popup_tumblr_no" value="0" <?php echo ($option_row->popup_enable_tumblr) ? '' : 'checked'; ?> /><label for="popup_tumblr_no">No</label>
911
  </td>
912
  </tr>
913
  </tbody>
@@ -917,50 +917,50 @@ class BWGViewBWGShortcode {
917
  <table>
918
  <tbody>
919
  <tr id="tr_watermark_type">
920
- <td class="spider_label"><label>Advertisement Type: </label></td>
921
  <td>
922
- <input type="radio" name="watermark_type" id="watermark_type_none" value="none" onClick="bwg_watermark('watermark_type_none')" <?php echo ($option_row->watermark_type == 'none') ? 'checked' : ''; ?> /><label for="watermark_type_none">None</label>
923
- <input type="radio" name="watermark_type" id="watermark_type_text" value="text" onClick="bwg_watermark('watermark_type_text')" <?php echo ($option_row->watermark_type == 'text') ? 'checked' : ''; ?> /><label for="watermark_type_text">Text</label>
924
- <input type="radio" name="watermark_type" id="watermark_type_image" value="image" onClick="bwg_watermark('watermark_type_image')" <?php echo ($option_row->watermark_type == 'image') ? 'checked' : ''; ?> /><label for="watermark_type_image">Image</label>
925
  </td>
926
  </tr>
927
  <tr id="tr_watermark_link">
928
- <td title="Enter absolute url, e.g. http://www.example.com" class="spider_label">
929
- <label for="watermark_link">Advertisement link: </label>
930
  </td>
931
  <td>
932
  <input type="text" id="watermark_link" name="watermark_link" value="<?php echo $option_row->watermark_link; ?>" style="display:inline-block;" />
933
  </td>
934
  </tr>
935
  <tr id="tr_watermark_url">
936
- <td title="Enter absolute image file url or add file from Options page." class="spider_label">
937
- <label for="watermark_url">Advertisement url: </label>
938
  </td>
939
  <td>
940
  <input type="text" id="watermark_url" name="watermark_url" value="<?php echo $option_row->watermark_url; ?>" style="display:inline-block;" />
941
  </td>
942
  </tr>
943
  <tr id="tr_watermark_width_height">
944
- <td title="Maximum values for watermark image width and height." class="spider_label"><label for="watermark_width">Advertisement dimensions: </label></td>
945
  <td>
946
  <input type="text" name="watermark_width" id="watermark_width" value="<?php echo $option_row->watermark_width; ?>" class="spider_int_input" /> x
947
  <input type="text" name="watermark_height" id="watermark_height" value="<?php echo $option_row->watermark_height; ?>" class="spider_int_input" /> px
948
  </td>
949
  </tr>
950
  <tr id="tr_watermark_text">
951
- <td class="spider_label"><label for="watermark_text">Advertisement text: </label></td>
952
  <td>
953
  <input type="text" name="watermark_text" id="watermark_text" value="<?php echo $option_row->watermark_text; ?>" />
954
  </td>
955
  </tr>
956
  <tr id="tr_watermark_font_size">
957
- <td class="spider_label"><label for="watermark_font_size">Advertisement font size: </label></td>
958
  <td>
959
  <input type="text" name="watermark_font_size" id="watermark_font_size" value="<?php echo $option_row->watermark_font_size; ?>" class="spider_int_input" /> px
960
  </td>
961
  </tr>
962
  <tr id="tr_watermark_font">
963
- <td class="spider_label"><label for="watermark_font">Advertisement font style: </label></td>
964
  <td>
965
  <select name="watermark_font" id="watermark_font" style="width:150px;">
966
  <?php
@@ -974,19 +974,19 @@ class BWGViewBWGShortcode {
974
  </td>
975
  </tr>
976
  <tr id="tr_watermark_color">
977
- <td class="spider_label"><label for="watermark_color">Advertisement color: </label></td>
978
  <td>
979
  <input type="text" name="watermark_color" id="watermark_color" value="<?php echo $option_row->watermark_color; ?>" class="color" />
980
  </td>
981
  </tr>
982
  <tr id="tr_watermark_opacity">
983
- <td title="Value must be between 0 to 100." class="spider_label"><label for="watermark_opacity">Advertisement opacity: </label></td>
984
  <td>
985
  <input type="text" name="watermark_opacity" id="watermark_opacity" value="<?php echo $option_row->watermark_opacity; ?>" class="spider_int_input" /> %
986
  </td>
987
  </tr>
988
  <tr id="tr_watermark_position">
989
- <td class="spider_label"><label>Advertisement Position: </label></td>
990
  <td>
991
  <table class="bws_position_table">
992
  <tbody>
@@ -1019,11 +1019,11 @@ class BWGViewBWGShortcode {
1019
  </div>
1020
  <div class="mceActionPanel">
1021
  <div style="float:left;">
1022
- <a id="bwg_pro_version_link" class="button button-primary" target="_blank" style="line-height: 25px; padding: 0 5px; text-decoration: none; vertical-align: middle; width: inherit; float: left;" href="http://wpdemo.web-dorado.com/thumbnails-view-2/">Please see Pro <span id="bwg_pro_version">Thumbnail</span> View</a>
1023
  </div>
1024
  <div style="float:right;">
1025
- <input type="button" id="insert" name="insert" value="Insert" onClick="bwg_insert_shortcode('');" />
1026
- <input type="button" id="cancel" name="cancel" value="Cancel" onClick="tinyMCEPopup.close();" />
1027
  </div>
1028
  </div>
1029
  <?php
@@ -1040,16 +1040,16 @@ class BWGViewBWGShortcode {
1040
  ?>
1041
  <hr style="float: left; width: 100%;" />
1042
  <span style="float: left; width: 100%;">
1043
- <a id="bwg_pro_version_link" class="button button-primary" target="_blank" style="display: table; margin-bottom: 5px;" href="https://web-dorado.com/files/fromPhotoGallery.php">Please see Pro <span id="bwg_pro_version">Thumbnail</span> View</a>
1044
- <input type="button" class="button-primary" id="insert" name="insert" value="Generate" onclick="bwg_insert_shortcode('');" />
1045
- <input type="button" class="button-secondary" id="import" name="import" value="Import" onclick="bwg_update_shortcode()" />
1046
  <div>
1047
  <input type="text" size="55" id="bwg_shortcode" name="bwg_shortcode" value='<?php echo $tagtext; ?>' onclick="bwg_onKeyDown(event)" />
1048
- <b>Shortcode</b>
1049
  </div>
1050
  <div>
1051
  <input type="text" size="55" id="bwg_function" name="bwg_function" value="<?php echo $tagfunction; ?>" onclick="spider_select_value(this)" readonly="readonly" />
1052
- <b>PHP function</b>
1053
  </div>
1054
  </span>
1055
  </div>
@@ -1094,7 +1094,7 @@ class BWGViewBWGShortcode {
1094
  if (params['id']) {
1095
  shortcode_id = params['id'];
1096
  if(typeof shortcodes[shortcode_id] === 'undefined'){
1097
- alert("There is no shortcode with such ID!");
1098
  bwg_gallery_type('thumbnails');
1099
  return 0;
1100
  }
@@ -1829,6 +1829,10 @@ class BWGViewBWGShortcode {
1829
  jQuery(document).ready(function () {
1830
  bwg_loadmore();
1831
  });
 
 
 
 
1832
  </script>
1833
  </body>
1834
  </html>
31
  $shortcodes = $this->model->get_shortcode_data();
32
  $shortcode_max_id = $this->model->get_shortcode_max_id();
33
  $effects = array(
34
+ 'none' => __('None','bwg_back'),
35
+ 'cubeH' => __('Cube Horizontal','bwg_back'),
36
+ 'cubeV' => __('Cube Vertical','bwg_back'),
37
+ 'fade' => __('Fade','bwg_back'),
38
+ 'sliceH' => __('Slice Horizontal','bwg_back'),
39
+ 'sliceV' => __('Slice Vertical','bwg_back'),
40
+ 'slideH' => __('Slide Horizontal','bwg_back'),
41
+ 'slideV' => __('Slide Vertical','bwg_back'),
42
+ 'scaleOut' => __('Scale Out','bwg_back'),
43
+ 'scaleIn' => __('Scale In','bwg_back'),
44
+ 'blockScale' => __('Block Scale','bwg_back'),
45
+ 'kaleidoscope' => __('Kaleidoscope','bwg_back'),
46
+ 'fan' => __('Fan','bwg_back'),
47
+ 'blindH' => __('Blind Horizontal','bwg_back'),
48
+ 'blindV' => __('Blind Vertical','bwg_back'),
49
+ 'random' => __('Random','bwg_back'),
50
  );
51
  $watermark_fonts = array(
52
  'arial' => 'Arial',
64
  ?>
65
  <html xmlns="http://www.w3.org/1999/xhtml">
66
  <head>
67
+ <title><?php _e("Photo Gallery", 'bwg_back'); ?></title>
68
  <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
69
  <script language="javascript" type="text/javascript" src="<?php echo site_url(); ?>/wp-includes/js/tinymce/tiny_mce_popup.js"></script>
70
  <script language="javascript" type="text/javascript" src="<?php echo site_url(); ?>/wp-includes/js/tinymce/utils/mctabs.js"></script>
94
  <ul>
95
  <li id="display_tab" class="current" role="tab" tabindex="0">
96
  <span>
97
+ <a href="javascript:mcTabs.displayTab('display_tab','display_panel');" onMouseDown="return false;" tabindex="-1"><?php _e("Display", 'bwg_back'); ?></a>
98
  </span>
99
  </li>
100
  </ul>
113
  ?>
114
  <div style="text-align:center; height:100px;">
115
  <span class="gallery_type" onClick="bwg_gallery_type('thumbnails')">
116
+ <div style="text-align: center;"><input type="radio" id="thumbnails" name="gallery_type" value="thumbnails"/><label for="thumbnails"><?php _e("Thumbnails", 'bwg_back'); ?></label></div>
117
  <label for="thumbnails"><img src="<?php echo WD_BWG_URL . '/images/thumbnails.jpg'; ?>" /></label>
118
  </span>
119
+ <span title="<?php _e("This view is disabled in free version.", 'bwg_back'); ?>" class="gallery_type">
120
+ <div style="text-align: center;"><input disabled="disabled" type="radio" id="thumbnails_masonry" name="gallery_type" value="thumbnails_masonry" /><label class="spider_free_version_label" for="thumbnails_masonry"><?php _e("Masonry", 'bwg_back'); ?></label></div>
121
  <label><img style="opacity:0.5; filter: Alpha(opacity=50);" disabled="disabled" src="<?php echo WD_BWG_URL . '/images/thumbnails_masonry.jpg'; ?>" /></label>
122
  </span>
123
+ <span title="<?php _e("This view is disabled in free version.", 'bwg_back'); ?>" class="gallery_type">
124
+ <div style="text-align: center;"><input disabled="disabled" type="radio" id="thumbnails_mosaic" name="gallery_type" value="thumbnails_mosaic" /><label class="spider_free_version_label" for="thumbnails_mosaic"><?php _e("Mosaic", 'bwg_back'); ?></label></div>
125
  <label for="thumbnails_mosaic"><img style="opacity:0.5; filter: Alpha(opacity=50);" disabled="disabled" src="<?php echo WD_BWG_URL . '/images/thumbnails_mosaic.jpg'; ?>" /></label>
126
  </span>
127
  <span class="gallery_type" onClick="bwg_gallery_type('slideshow')">
128
+ <div style="text-align: center;"><input type="radio" id="slideshow" name="gallery_type" value="slideshow" /><label for="slideshow"><?php _e("Slideshow", 'bwg_back'); ?></label></div>
129
  <label for="slideshow"><img src="<?php echo WD_BWG_URL . '/images/slideshow.jpg'; ?>" /></label>
130
  </span>
131
  <span class="gallery_type" onClick="bwg_gallery_type('image_browser')">
132
+ <div style="text-align: center;"><input type="radio" id="image_browser" name="gallery_type" value="image_browser" /><label for="image_browser"><?php _e("Image Browser", 'bwg_back'); ?></label></div>
133
  <label for="image_browser"><img src="<?php echo WD_BWG_URL . '/images/image_browser.jpg'; ?>" /></label>
134
  </span>
135
  <span class="gallery_type" onClick="bwg_gallery_type('album_compact_preview')">
136
+ <div style="text-align: center;"><input type="radio" id="album_compact_preview" name="gallery_type" value="album_compact_preview" /><label for="album_compact_preview"><?php _e("Compact Album", 'bwg_back'); ?></label></div>
137
  <label for="album_compact_preview"><img src="<?php echo WD_BWG_URL . '/images/album_compact_preview.jpg'; ?>" /></label>
138
  </span>
139
+ <span title="<?php _e("This view is disabled in free version.", 'bwg_back'); ?>" class="gallery_type">
140
+ <div style="text-align: center;"><input disabled="disabled" type="radio" id="album_masonry_preview" name="gallery_type" value="album_masonry_preview" /><label class="spider_free_version_label" for="album_masonry_preview"><?php _e("Masonry Album", 'bwg_back'); ?></label></div>
141
  <label for="album_masonry_preview"><img style="opacity:0.5; filter: Alpha(opacity=50);" disabled="disabled" src="<?php echo WD_BWG_URL . '/images/thumbnails_masonry.jpg'; ?>" /></label>
142
  </span>
143
  <span class="gallery_type" onClick="bwg_gallery_type('album_extended_preview')">
144
+ <div style="text-align: center;"><input type="radio" id="album_extended_preview" name="gallery_type" value="album_extended_preview" /><label for="album_extended_preview"><?php _e("Extended Album", 'bwg_back'); ?></label></div>
145
  <label for="album_extended_preview"><img src="<?php echo WD_BWG_URL . '/images/album_extended_preview.jpg'; ?>" /></label>
146
  </span>
147
+ <span title="<?php _e('This view is disabled in free version.', 'bwg_back'); ?>" class="gallery_type">
148
+ <div style="text-align: center;"><input disabled="disabled" type="radio" id="blog_style" name="gallery_type" value="blog_style" /><label class="spider_free_version_label" for="blog_style"><?php _e("Blog Style", 'bwg_back'); ?></label></div>
149
  <label><img style="opacity:0.5; filter: Alpha(opacity=50);" disabled="disabled" src="<?php echo WD_BWG_URL . '/images/blog_style.jpg'; ?>" /></label>
150
  </span>
151
+ <span title="<?php _e('This view is disabled in free version.', 'bwg_back'); ?>" class="gallery_type">
152
+ <div style="text-align: center;"><input disabled="disabled" type="radio" id="carousel" name="gallery_type" value="carousel" /><label class="spider_free_version_label" for="carousel"><?php _e("Carousel", 'bwg_back'); ?></label></div>
153
  <label for="carousel"><img style="opacity:0.5; filter: Alpha(opacity=50);" disabled="disabled" src="<?php echo WD_BWG_URL . '/images/Carousel.png'; ?>" /></label>
154
  </span>
155
  </div>
158
  <table>
159
  <tbody>
160
  <tr id="tr_theme">
161
+ <td <?php echo (get_option("wd_bwg_theme_version") ? 'title="This option is disabled in free version." class="spider_label spider_free_version_label"' : 'class="spider_label"'); ?>><label for="theme"><?php _e("Theme:", 'bwg_back'); ?> </label></td>
162
  <td>
163
  <select name="theme" id="theme" style="width:150px;" <?php echo (get_option("wd_bwg_theme_version") ? 'disabled="disabled"' : ''); ?>>
164
+ <option value="0" selected="selected"><?php _e("Select Theme", 'bwg_back'); ?></option>
165
  <?php
166
  foreach ($theme_rows as $theme_row) {
167
  ?>
173
  </td>
174
  </tr>
175
  <tr id="tr_gallery">
176
+ <td class="spider_label"><label for="gallery"><?php _e("Gallery:", 'bwg_back'); ?> </label></td>
177
  <td>
178
  <select name="gallery" id="gallery" style="width:150px;">
179
+ <option value="0" selected="selected"><?php _e("Select Gallery", 'bwg_back'); ?></option>
180
  <?php
181
  foreach ($gallery_rows as $gallery_row) {
182
  ?>
188
  </td>
189
  </tr>
190
  <tr id="tr_album">
191
+ <td title="<?php _e('The selected album expanded content will be displayed.', 'bwg_back'); ?>" class="spider_label"><label for="album"><?php _e("Album:", 'bwg_back'); ?> </label></td>
192
  <td>
193
  <select name="album" id="album" style="width:150px;">
194
+ <option value="0" selected="selected"><?php _e("Select Album", 'bwg_back'); ?></option>
195
  <?php
196
  foreach ($album_rows as $album_row) {
197
  ?>
203
  </td>
204
  </tr>
205
  <tr id="tr_sort_by">
206
+ <td class="spider_label"><label for="sort_by"><?php _e("Sort images by:", 'bwg_back'); ?> </label></td>
207
  <td>
208
  <select name="sort_by" id="sort_by" style="width:150px;">
209
+ <option value="order" selected="selected"><?php _e("Order", 'bwg_back'); ?></option>
210
+ <option value="alt"><?php _e("Title", 'bwg_back'); ?></option>
211
+ <option value="date"><?php _e("Date", 'bwg_back'); ?></option>
212
+ <option value="filename"><?php _e("Filename", 'bwg_back'); ?></option>
213
+ <option value="size"><?php _e("Size", 'bwg_back'); ?></option>
214
+ <option value="filetype"><?php _e("Type", 'bwg_back'); ?></option>
215
+ <option value="resolution"><?php _e("Resolution", 'bwg_back'); ?></option>
216
+ <option value="random"><?php _e("Random", 'bwg_back'); ?></option>
217
  </select>
218
  </td>
219
  </tr>
220
  <tr id="tr_order_by">
221
+ <td class="spider_label"><label><?php _e("Order images", 'bwg_back'); ?>: </label></td>
222
  <td>
223
+ <input type="radio" name="order_by" id="order_by_1" value="asc" checked="checked" /><label for="order_by_1"><?php _e("Ascending", 'bwg_back'); ?></label>
224
+ <input type="radio" name="order_by" id="order_by_0" value="desc" /><label for="order_by_0"><?php _e("Descending", 'bwg_back'); ?></label>
225
  </td>
226
  </tr>
227
  <tr id="tr_show_search_box">
228
+ <td class="spider_label"><label><?php _e("Show search box:", 'bwg_back'); ?> </label></td>
229
  <td>
230
+ <input type="radio" name="show_search_box" id="show_search_box_1" value="1" <?php if ($option_row->show_search_box) echo 'checked="checked"'; ?> onchange="bwg_show_search_box()" /><label for="show_search_box_1"><?php _e("Yes", 'bwg_back'); ?></label>
231
+ <input type="radio" name="show_search_box" id="show_search_box_0" value="0" <?php if (!$option_row->show_search_box) echo 'checked="checked"'; ?> onchange="bwg_show_search_box()" /><label for="show_search_box_0"><?php _e('No', 'bwg_back'); ?></label>
232
  </td>
233
  </tr>
234
  <tr id="tr_search_box_width">
235
+ <td class="spider_label"><label for="search_box_width"><?php _e("Search box width:", 'bwg_back'); ?> </label></td>
236
  <td><input type="text" name="search_box_width" id="search_box_width" value="<?php echo $option_row->search_box_width; ?>" class="spider_int_input" /> px</td>
237
  </tr>
238
  <tr id="tr_show_tag_box">
239
+ <td class="spider_label"><label><?php _e("Show tag box:", 'bwg_back'); ?> </label></td>
240
  <td>
241
+ <input type="radio" name="show_tag_box" id="show_tag_box_1" value="1" <?php if ($option_row->show_tag_box) echo 'checked="checked"'; ?> /><label for="show_tag_box_1"><?php _e('Yes', 'bwg_back'); ?></label>
242
+ <input type="radio" name="show_tag_box" id="show_tag_box_0" value="0" <?php if (!$option_row->show_tag_box) echo 'checked="checked"'; ?> /><label for="show_search_box_0"><?php _e('No', 'bwg_back'); ?></label>
243
  </td>
244
  </tr>
245
  <tr id="tr_show_sort_images">
246
+ <td class="spider_label"><label><?php _e("Show 'Order by' dropdown list:", 'bwg_back'); ?> </label></td>
247
  <td>
248
+ <input type="radio" name="show_sort_images" id="show_sort_images_1" value="1" <?php if ($option_row->show_sort_images) echo 'checked="checked"'; ?> onchange="" /><label for="show_sort_images_1"><?php _e('Yes', 'bwg_back'); ?></label>
249
+ <input type="radio" name="show_sort_images" id="show_sort_images_0" value="0" <?php if (!$option_row->show_sort_images) echo 'checked="checked"'; ?> onchange="" /><label for="show_sort_images_0"><?php _e('No', 'bwg_back'); ?>;</label>
250
  </td>
251
  </tr>
252
  <!--Thumbnails, Masonry viewies-->
253
  <tr id="tr_masonry_hor_ver">
254
+ <td class="spider_label"><label><?php _e("Masonry:", 'bwg_back'); ?> </label></td>
255
  <td>
256
  <input type="radio" name="masonry_hor_ver" id="masonry_ver" value="vertical" onclick="bwg_change_label('image_column_number_label', 'Number of image rows: ');
257
  bwg_change_label('thumb_width_height_label', 'Image thumbnail width: ');
258
  jQuery('#thumb_width').show();
259
  jQuery('#thumb_height').hide();
260
+ jQuery('#thumb_width_height_separator').hide();" <?php echo ($option_row->masonry == 'vertical') ? 'checked' : ''; ?> /><label for="masonry_ver"><?php _e("Vertical", 'bwg_back'); ?></label>
261
+ <input type="radio" name="masonry_hor_ver" id="masonry_hor" value="horizontal" onclick="bwg_change_label('image_column_number_label', '<?php _e("Max. number of image columns: ", 'bwg_back'); ?>');
262
  bwg_change_label('thumb_width_height_label', 'Image Thumbnail Height: ');
263
  jQuery('#thumb_width').hide();
264
  jQuery('#thumb_height').show();
265
+ jQuery('#thumb_width_height_separator').hide();" <?php echo ($option_row->masonry == 'horizontal') ? 'checked' : ''; ?> /><label for="masonry_hor"><?php _e("Horizontal", 'bwg_back'); ?></label>
266
  </td>
267
  </tr>
268
  <!--Thumbnails, Mosaic viewies-->
269
  <tr id="tr_mosaic_hor_ver">
270
+ <td class="spider_label"><label><?php _e("Mosaic:", 'bwg_back'); ?> </label></td>
271
  <td>
272
+ <input type="radio" name="mosaic_hor_ver" id="mosaic_ver" value="vertical" onclick="bwg_change_label('image_column_number_label', '<?php _e("Number of image rows: ", 'bwg_back'); ?>');
273
+ bwg_change_label('thumb_width_height_label', '<?php _e("Image thumbnail width: ", 'bwg_back'); ?>');
274
  jQuery('#thumb_width').show();
275
  jQuery('#thumb_height').hide();
276
+ jQuery('#thumb_width_height_separator').hide();" <?php echo ($option_row->mosaic == 'vertical') ? 'checked' : ''; ?> /><label for="mosaic_ver"><?php _e("Vertical", 'bwg_back'); ?></label>
277
+ <input type="radio" name="mosaic_hor_ver" id="mosaic_hor" value="horizontal" onclick="bwg_change_label('image_column_number_label', '<?php _e("Max. number of image columns:", 'bwg_back'); ?> ');
278
+ bwg_change_label('thumb_width_height_label', '<?php _e("Image Thumbnail Height:", 'bwg_back'); ?> ');
279
  jQuery('#thumb_width').hide();
280
  jQuery('#thumb_height').show();
281
+ jQuery('#thumb_width_height_separator').hide();" <?php echo ($option_row->mosaic == 'horizontal') ? 'checked' : ''; ?> /><label for="mosaic_hor"><?php _e("Horizontal", 'bwg_back'); ?></label>
282
 
283
 
284
  </td>
285
  </tr>
286
  <tr id="tr_resizable_mosaic">
287
+ <td title="<?php _e('Mosaic thumbnails do not have fixed size, but are proportional to the width of the parent container. This option keeps thumbs to look nice when viewed with very large or very small screen. Prevents zooming of thumbs.', 'bwg_back'); ?>" class="spider_label"><label for="resizable_mosaic"><?php _e("Resizable mosaic", 'bwg_back'); ?></label></td>
288
  <td>
289
+ <input type="radio" name="resizable_mosaic" id="resizable_mosaic_1" value="1" <?php echo ($option_row->resizable_mosaic == 1) ? 'checked' : ''; ?> /><label for="resizable_mosaic_1"><?php _e('Yes', 'bwg_back'); ?></label>
290
+ <input type="radio" name="resizable_mosaic" id="resizable_mosaic_0" value="0" <?php echo ($option_row->resizable_mosaic == 0) ? 'checked' : ''; ?> /><label for="resizable_mosaic_0"><?php _e('No', 'bwg_back'); ?></label>
291
  <br />
292
  </td>
293
  </tr>
294
  <tr id="tr_mosaic_total_width">
295
+ <td title="<?php _e("Percentage of container's width", 'bwg_back'); ?>" class="spider_label"><label for="mosaic_total_width"><?php _e("Total width of mosaic:", 'bwg_back'); ?> </label></td>
296
  <td><input type="text" name="mosaic_total_width" id="mosaic_total_width" value="<?php echo $option_row->mosaic_total_width; ?>" class="spider_int_input" /> %</td>
297
  </tr>
298
  <!--Thumbnails, Masonry and Mosaic viewies-->
299
  <tr id="tr_image_column_number">
300
+ <td class="spider_label"><label id="image_column_number_label" for="image_column_number"><?php _e("Max. number of image columns:", 'bwg_back'); ?> </label></td>
301
  <td><input type="text" name="image_column_number" id="image_column_number" value="<?php echo $option_row->image_column_number; ?>" class="spider_int_input" /></td>
302
  </tr>
303
  <tr id="tr_images_per_page">
304
+ <td title="<?php _e('If you want to display all images you should leave it blank or insert 0.', 'bwg_back'); ?>" class="spider_label"><label for="images_per_page"><?php _e("Images per page:", 'bwg_back'); ?> </label></td>
305
  <td><input type="text" name="images_per_page" id="images_per_page" value="<?php echo $option_row->images_per_page; ?>" class="spider_int_input" /></td>
306
  </tr>
307
  <tr id="tr_image_title_hover">
308
+ <td class="spider_label"><label><?php _e("Image title:", 'bwg_back'); ?> </label></td>
309
  <td>
310
+ <input type="radio" name="image_title" id="image_title_hover" value="hover" <?php echo ($option_row->image_title_show_hover == 'hover') ? 'checked' : ''; ?> /><label for="image_title_hover"><?php _e("Show on hover", 'bwg_back'); ?></label><br />
311
+ <input type="radio" name="image_title" id="image_title_show" value="show" <?php echo ($option_row->image_title_show_hover == 'show') ? 'checked' : ''; ?> /><label for="image_title_show"><?php _e("Always show", 'bwg_back'); ?></label><br />
312
+ <input type="radio" name="image_title" id="image_title_none" value="none" <?php echo ($option_row->image_title_show_hover == 'none') ? 'checked' : ''; ?> /><label for="image_title_none"><?php _e("Don't show", 'bwg_back'); ?></label>
313
  </td>
314
  </tr>
315
  <tr id="tr_image_enable_page">
316
+ <td class="spider_label"><label><?php _e("Enable pagination:", 'bwg_back'); ?> </label></td>
317
  <td>
318
+ <input type="radio" name="image_enable_page" class="hide_load_count" id="image_page_yes" value="1" <?php echo ($option_row->image_enable_page == '1') ? 'checked' : ''; ?> onchange="bwg_loadmore()"/><label for="image_page_yes"><?php _e('Yes', 'bwg_back'); ?></label>
319
+ <input type="radio" name="image_enable_page" class="hide_load_count" id="image_page_no" value="0" <?php echo ($option_row->image_enable_page == '0') ? 'checked' : ''; ?> onchange="bwg_loadmore()"/><label for="image_page_no"><?php _e('No', 'bwg_back'); ?></label>
320
+ <input type="radio" name="image_enable_page" id="image_page_loadmore" value="2" <?php echo ($option_row->image_enable_page == '2') ? 'checked' : ''; ?> onchange="bwg_loadmore()"/><label for="image_page_loadmore"><?php _e("Load More", 'bwg_back'); ?></label>
321
+ <input type="radio" name="image_enable_page" id="image_page_scrol_load" value="3" <?php echo ($option_row->image_enable_page == '3') ? 'checked' : ''; ?> onchange="bwg_loadmore()"/><label for="image_page_scrol_load"><?php _e("Scroll Load", 'bwg_back'); ?></label>
322
  </td>
323
  </tr>
324
  <tr id="tr_load_more_image_count">
325
+ <td class="spider_label"><label for="load_more_image_count"><?php _e("Images per load:", 'bwg_back'); ?> </label></td>
326
  <td><input type="text" name="load_more_image_count" id="load_more_image_count" value="<?php echo $option_row->images_per_page; ?>" class="spider_int_input" /></td>
327
  </tr>
328
  <tr id="tr_thumb_width_height">
329
+ <td title="<?php _e('Maximum values for thumbnail dimension.', 'bwg_back'); ?>" class="spider_label"><label id="thumb_width_height_label" for="thumb_width"><?php _e("Image Thumbnail dimensions:", 'bwg_back'); ?> </label></td>
330
  <td>
331
  <input type="text" name="thumb_width" id="thumb_width" value="<?php echo $option_row->thumb_width; ?>" class="spider_int_input" /><span id="thumb_width_height_separator"> x </span>
332
  <input type="text" name="thumb_height" id="thumb_height" value="<?php echo $option_row->thumb_height; ?>" class="spider_int_input" /> px
335
 
336
  <!--Compact Album view-->
337
  <tr id="tr_compuct_album_column_number">
338
+ <td class="spider_label"><label for="compuct_album_column_number"><?php _e("Max. number of album columns:", 'bwg_back'); ?> </label></td>
339
  <td><input type="text" name="compuct_album_column_number" id="compuct_album_column_number" value="<?php echo $option_row->album_column_number; ?>" class="spider_int_input" /></td>
340
  </tr>
341
  <tr id="tr_compuct_albums_per_page">
342
+ <td title="<?php _e("If you want to display all albums you should leave it blank or insert 0.", 'bwg_back'); ?>" class="spider_label"><label for="compuct_albums_per_page"><?php _e("Albums per page:", 'bwg_back'); ?> </label></td>
343
  <td><input type="text" name="compuct_albums_per_page" id="compuct_albums_per_page" value="<?php echo $option_row->albums_per_page; ?>" class="spider_int_input" /></td>
344
  </tr>
345
  <tr id="tr_compuct_album_title_hover">
346
+ <td class="spider_label"><label><?php _e("Album title:", 'bwg_back'); ?> </label></td>
347
  <td>
348
+ <input type="radio" name="compuct_album_title" id="compuct_album_title_hover" value="hover" <?php echo ($option_row->album_title_show_hover == 'hover') ? 'checked' : ''; ?> /><label for="compuct_album_title_hover"><?php _e("Show on hover", 'bwg_back'); ?></label><br />
349
+ <input type="radio" name="compuct_album_title" id="compuct_album_title_show" value="show" <?php echo ($option_row->album_title_show_hover == 'show') ? 'checked' : ''; ?> /><label for="compuct_album_title_show"><?php _e("Always show", 'bwg_back'); ?></label><br />
350
+ <input type="radio" name="compuct_album_title" id="compuct_album_title_none" value="none" <?php echo ($option_row->album_title_show_hover == 'none') ? 'checked' : ''; ?> /><label for="compuct_album_title_none"><?php _e("Don't show", 'bwg_back'); ?></label>
351
  </td>
352
  </tr>
353
  <tr id="tr_compuct_album_thumb_width_height">
354
+ <td title="<?php _e("Maximum values for album thumb width and height.", 'bwg_back'); ?>" class="spider_label"><label for="compuct_album_thumb_width"><?php _e("Album Thumbnail dimensions:", 'bwg_back'); ?> </label></td>
355
  <td>
356
  <input type="text" name="compuct_album_thumb_width" id="compuct_album_thumb_width" value="<?php echo $option_row->album_thumb_width; ?>" class="spider_int_input" /> x
357
  <input type="text" name="compuct_album_thumb_height" id="compuct_album_thumb_height" value="<?php echo $option_row->album_thumb_height; ?>" class="spider_int_input" /> px
358
  </td>
359
  </tr>
360
  <tr id="tr_compuct_album_view_type">
361
+ <td title="<?php _e('The gallery images view type in the album.<br /><br />This option is disabled in free version.', 'bwg_back'); ?>" class="spider_label spider_free_version_label"><label><?php _e("Album view type:", 'bwg_back'); ?> </label></td>
362
  <td>
363
+ <input disabled="disabled" type="radio" name="compuct_album_view_type" id="compuct_album_view_type_1" value="thumbnail" <?php if ($option_row->album_view_type == "thumbnail") echo 'checked="checked"'; ?> onchange="bwg_change_compuct_album_view_type()" /><label for="compuct_album_view_type_1"><?php _e("Thumbnail", 'bwg_back'); ?></label>
364
+ <input disabled="disabled" type="radio" name="compuct_album_view_type" id="compuct_album_view_type_0" value="masonry" <?php if ($option_row->album_view_type == "masonry") echo 'checked="checked"'; ?> onchange="bwg_change_compuct_album_view_type()" /><label for="compuct_album_view_type_0"><?php _e("Masonry", 'bwg_back'); ?></label>
365
+ <input disabled="disabled" type="radio" name="compuct_album_view_type" id="compuct_album_view_type_2" value="mosaic" <?php if ($option_row->album_view_type == "mosaic") echo 'checked="checked"'; ?> onchange="bwg_change_compuct_album_view_type()" /><label for="compuct_album_view_type_2"><?php _e("Mosaic", 'bwg_back'); ?></label>
366
  </td>
367
  </tr>
368
  <tr id="tr_compuct_album_mosaic_hor_ver">
369
+ <td title="<?php _e('This option is disabled in free version.', 'bwg_back'); ?>" class="spider_label spider_free_version_label"><label><?php _e("Mosaic:", 'bwg_back'); ?> </label></td>
370
  <td>
371
+ <input disabled="disabled" type="radio" name="compuct_album_mosaic_hor_ver" id="compuct_album_mosaic_ver" value="vertical" onclick="bwg_change_label('compuct_album_image_column_number', '<?php _e("Number of image rows:", 'bwg_back'); ?> ');
372
+ bwg_change_label('compuct_album_image_thumb_dimensions', '<?php _e("Image thumbnail width:", 'bwg_back'); ?> ');
373
  jQuery('#compuct_album_image_thumb_width').show();
374
  jQuery('#compuct_album_image_thumb_height').hide();
375
+ jQuery('#compuct_album_image_thumb_dimensions_x').hide();" <?php echo ($option_row->mosaic == 'vertical') ? 'checked' : ''; ?> /><label for="compuct_album_mosaic_ver"><?php _e("Vertical", 'bwg_back'); ?></label>
376
+ <input disabled="disabled" type="radio" name="compuct_album_mosaic_hor_ver" id="compuct_album_mosaic_hor" value="horizontal" onclick="bwg_change_label('compuct_album_image_column_number', '<?php _e("Max. number of image columns:", 'bwg_back'); ?> ');
377
+ bwg_change_label('compuct_album_image_thumb_dimensions', '<?php _e("Image thumbnail height:", 'bwg_back'); ?> ');
378
  jQuery('#compuct_album_image_thumb_width').hide();
379
  jQuery('#compuct_album_image_thumb_height').show();
380
+ jQuery('#compuct_album_image_thumb_dimensions_x').hide();" <?php echo ($option_row->mosaic == 'horizontal') ? 'checked' : ''; ?> /><label for="compuct_album_mosaic_hor"><?php _e("Horizontal", 'bwg_back'); ?></label>
381
 
382
 
383
  </td>
384
  </tr>
385
  <tr id="tr_compuct_album_resizable_mosaic">
386
+ <td title="<?php _e("Mosaic thumbnails do not have fixed size, but are proportional to the width of the parent container. This option keeps thumbs to look nice when viewed with very large or very small screen. Prevents zooming of thumbs.<br /><br />This option is disabled in free version.", 'bwg_back'); ?>" class="spider_label spider_free_version_label"><label for="compuct_album_resizable_mosaic"><?php _e("Resizable mosaic", 'bwg_back'); ?></label></td>
387
  <td>
388
+ <input disabled="disabled" type="radio" name="compuct_album_resizable_mosaic" id="compuct_album_resizable_mosaic_1" value="1" <?php echo ($option_row->resizable_mosaic == 1) ? 'checked' : ''; ?> /><label for="compuct_album_resizable_mosaic_1"><?php _e('Yes', 'bwg_back'); ?></label>
389
+ <input disabled="disabled" type="radio" name="compuct_album_resizable_mosaic" id="compuct_album_resizable_mosaic_0" value="0" <?php echo ($option_row->resizable_mosaic == 0) ? 'checked' : ''; ?> /><label for="compuct_album_resizable_mosaic_0"><?php _e('No', 'bwg_back'); ?></label>
390
  <br />
391
  </td>
392
  </tr>
393
  <tr id="tr_compuct_album_mosaic_total_width">
394
+ <td title="<?php _e("Percentage of container's width", 'bwg_back'); ?>" class="spider_label"><label for="compuct_album_mosaic_total_width"><?php _e("Total width of mosaic:", 'bwg_back'); ?> </label></td>
395
+ <td><input type="text" name="compuct_album_mosaic_total_width" id="compuct_album_mosaic_total_width" value="<?php echo $option_row->mosaic_total_width; ?>" class="spider_int_input" /> <?php _e("percent", 'bwg_back'); ?></td>
396
  </tr>
397
  <tr id="tr_compuct_album_image_column_number">
398
+ <td class="spider_label"><label for="compuct_album_image_column_number"><?php _e("Max. number of image columns: ", 'bwg_back'); ?></label></td>
399
  <td><input type="text" name="compuct_album_image_column_number" id="compuct_album_image_column_number" value="<?php echo $option_row->image_column_number; ?>" class="spider_int_input" /></td>
400
  </tr>
401
  <tr id="tr_compuct_album_images_per_page">
402
+ <td title="<?php _e("If you want to display all images you should leave it blank or insert 0.", 'bwg_back'); ?>" class="spider_label"><label for="compuct_album_images_per_page"><?php _e("Images per page:", 'bwg_back'); ?> </label></td>
403
  <td><input type="text" name="compuct_album_images_per_page" id="compuct_album_images_per_page" value="<?php echo $option_row->images_per_page; ?>" class="spider_int_input" /></td>
404
  </tr>
405
  <tr id="tr_compuct_album_image_title">
406
+ <td class="spider_label"><label><?php _e("Image title:", 'bwg_back'); ?> </label></td>
407
  <td>
408
+ <input type="radio" name="compuct_album_image_title" id="compuct_album_image_title_hover" value="hover" <?php echo ($option_row->image_title_show_hover == 'hover') ? 'checked' : ''; ?> /><label for="compuct_album_image_title_hover"><?php _e("Show on hover", 'bwg_back'); ?></label><br />
409
+ <input type="radio" name="compuct_album_image_title" id="compuct_album_image_title_show" value="show" <?php echo ($option_row->image_title_show_hover == 'show') ? 'checked' : ''; ?> /><label for="compuct_album_image_title_show"><?php _e("Always show", 'bwg_back'); ?></label><br />
410
+ <input type="radio" name="compuct_album_image_title" id="compuct_album_image_title_none" value="none" <?php echo ($option_row->image_title_show_hover == 'none') ? 'checked' : ''; ?> /><label for="compuct_album_image_title_none"><?php _e("Don't show", 'bwg_back'); ?></label>
411
  </td>
412
  </tr>
413
  <tr id="tr_compuct_album_image_thumb_width_height">
414
+ <td title="<?php _e("Maximum values for thumbnail width and height.", 'bwg_back'); ?>" class="spider_label"><label for="compuct_album_image_thumb_width" id="compuct_album_image_thumb_dimensions"><?php _e("Image thumbnail dimensions: ", 'bwg_back'); ?></label></td>
415
  <td>
416
  <input type="text" name="compuct_album_image_thumb_width" id="compuct_album_image_thumb_width" value="<?php echo $option_row->thumb_width; ?>" class="spider_int_input" /><span id="compuct_album_image_thumb_dimensions_x" > x </span>
417
  <input type="text" name="compuct_album_image_thumb_height" id="compuct_album_image_thumb_height" value="<?php echo $option_row->thumb_height; ?>" class="spider_int_input" /> px
418
  </td>
419
  </tr>
420
  <tr id="tr_compuct_album_enable_page">
421
+ <td class="spider_label"><label><?php _e("Enable pagination:", 'bwg_back'); ?> </label></td>
422
  <td>
423
+ <input type="radio" name="compuct_album_enable_page" class="hide_load_count" id="compuct_album_page_yes" value="1" <?php echo ($option_row->album_enable_page == '1') ? 'checked' : ''; ?> onchange="bwg_loadmore()"/><label for="compuct_album_page_yes"><?php _e('Yes', 'bwg_back'); ?></label>
424
+ <input type="radio" name="compuct_album_enable_page" class="hide_load_count" id="compuct_album_page_no" value="0" <?php echo ($option_row->album_enable_page == '0') ? 'checked' : ''; ?> onchange="bwg_loadmore()" /><label for="compuct_album_page_no"><?php _e('No', 'bwg_back'); ?></label>
425
+ <input type="radio" name="compuct_album_enable_page" id="compuct_album_page_loadmore" value="2" <?php echo ($option_row->album_enable_page == '2') ? 'checked' : ''; ?> onchange="bwg_loadmore()" /><label for="compuct_album_page_loadmore"><?php _e("Load More", 'bwg_back'); ?></label>
426
+ <input type="radio" name="compuct_album_enable_page" id="compuct_album_page_scrol_load" value="3" <?php echo ($option_row->album_enable_page == '3') ? 'checked' : ''; ?> onchange="bwg_loadmore()" /><label for="compuct_album_page_scrol_load"><?php _e("Scroll Load", 'bwg_back'); ?></label>
427
  </td>
428
  </tr>
429
  <tr id="tr_compuct_albums_per_page_load_more">
430
+ <td title="<?php _e("If you want to display all albums you should leave it blank or insert 0.", 'bwg_back'); ?>" class="spider_label"><label for="compuct_albums_per_page_load_more"><?php _e("Albums per load:", 'bwg_back'); ?> </label></td>
431
  <td><input type="text" name="compuct_albums_per_page_load_more" id="compuct_albums_per_page_load_more" value="<?php echo $option_row->albums_per_page; ?>" class="spider_int_input" /></td>
432
  </tr>
433
  <tr id="tr_compuct_album_load_more_image_count">
434
+ <td class="spider_label"><label for="compuct_album_load_more_image_count"><?php _e("Images per load:", 'bwg_back'); ?> </label></td>
435
  <td><input type="text" name="compuct_album_load_more_image_count" id="compuct_album_load_more_image_count" value="<?php echo $option_row->images_per_page; ?>" class="spider_int_input" /></td>
436
  </tr>
437
 
438
  <!--Extended Album view-->
439
  <tr id="tr_extended_albums_per_page">
440
+ <td title="<?php _e("If you want to display all albums you should leave it blank or insert 0.", 'bwg_back'); ?>" class="spider_label"><label for="extended_albums_per_page"><?php _e("Albums per page:", 'bwg_back'); ?> </label></td>
441
  <td><input type="text" name="extended_albums_per_page" id="extended_albums_per_page" value="<?php echo $option_row->albums_per_page; ?>" class="spider_int_input" /></td>
442
  </tr>
443
  <tr id="tr_extended_album_height">
444
+ <td class="spider_label"><label for="extended_album_height"><?php _e("Album row height:", 'bwg_back'); ?> </label></td>
445
  <td><input type="text" name="extended_album_height" id="extended_album_height" value="<?php echo $option_row->extended_album_height; ?>" class="spider_int_input" /> px</td>
446
  </tr>
447
  <tr id="tr_extended_album_description_enable">
448
+ <td title="<?php _e("If you disable description only the title of the album will be displayed.", 'bwg_back'); ?>" class="spider_label"><label><?php _e("Enable album description:", 'bwg_back'); ?> </label></td>
449
  <td>
450
+ <input type="radio" name="extended_album_description_enable" id="extended_album_description_yes" value="1" <?php echo ($option_row->extended_album_description_enable) ? 'checked' : ''; ?> /><label for="extended_album_description_yes"><?php _e('Yes', 'bwg_back'); ?></label>
451
+ <input type="radio" name="extended_album_description_enable" id="extended_album_description_no" value="0" <?php echo ($option_row->extended_album_description_enable) ? '' : 'checked'; ?> /><label for="extended_album_description_no"><?php _e('No', 'bwg_back'); ?></label>
452
  </td>
453
  </tr>
454
  <tr id="tr_extended_album_thumb_width_height">
455
+ <td title="<?php _e("Maximum values for album thumb width and height.", 'bwg_back'); ?>" class="spider_label"><label for="extended_album_thumb_width"><?php _e("Album thumbnail dimensions:", 'bwg_back'); ?> </label></td>
456
  <td>
457
  <input type="text" name="extended_album_thumb_width" id="extended_album_thumb_width" value="<?php echo $option_row->album_thumb_width; ?>" class="spider_int_input" /> x
458
  <input type="text" name="extended_album_thumb_height" id="extended_album_thumb_height" value="<?php echo $option_row->album_thumb_height; ?>" class="spider_int_input" /> px
459
  </td>
460
  </tr>
461
  <tr id="tr_extended_album_view_type">
462
+ <td title="<?php _e("The gallery images view type in the album.", 'bwg_back'); ?><br /><br /><?php _e("This option is disabled in free version.", 'bwg_back'); ?>" class="spider_label spider_free_version_label"><label><?php _e("Album view type:", 'bwg_back'); ?> </label></td>
463
  <td>
464
+ <input disabled="disabled" type="radio" name="extended_album_view_type" id="extended_album_view_type_1" value="thumbnail" <?php if ($option_row->album_view_type == "thumbnail") echo 'checked="checked"'; ?> onchange="bwg_change_extended_album_view_type()" /><label for="extended_album_view_type_1"><?php _e("Thumbnail", 'bwg_back'); ?></label>
465
+ <input disabled="disabled" type="radio" name="extended_album_view_type" id="extended_album_view_type_0" value="masonry" <?php if ($option_row->album_view_type == "masonry") echo 'checked="checked"'; ?> onchange="bwg_change_extended_album_view_type()" /><label for="extended_album_view_type_0"><?php _e("Masonry", 'bwg_back'); ?></label>
466
+ <input disabled="disabled" type="radio" name="extended_album_view_type" id="extended_album_view_type_2" value="mosaic" <?php if ($option_row->album_view_type == "mosaic") echo 'checked="checked"'; ?> onchange="bwg_change_extended_album_view_type()" /><label for="extended_album_view_type_2"><?php _e("Mosaic", 'bwg_back'); ?></label>
467
  </td>
468
  </tr>
469
  <tr id="tr_extended_album_mosaic_hor_ver">
470
+ <td title="<?php _e("This option is disabled in free version.", 'bwg_back'); ?>" class="spider_label spider_free_version_label"><label><?php _e("Mosaic:", 'bwg_back'); ?> </label></td>
471
  <td>
472
  <input disabled="disabled" type="radio" name="extended_album_mosaic_hor_ver" id="extended_album_mosaic_ver" value="vertical" onclick="bwg_change_label('extended_album_image_column_number', 'Number of image rows: ');
473
+ bwg_change_label('extended_album_image_thumb_dimensions', '<?php _e("Image thumbnail width: ", 'bwg_back'); ?>');
474
  jQuery('#extended_album_image_thumb_width').show();
475
  jQuery('#extended_album_image_thumb_height').hide();
476
+ jQuery('#extended_album_image_thumb_dimensions_x').hide();" <?php echo ($option_row->mosaic == 'vertical') ? 'checked' : ''; ?> /><label for="extended_album_mosaic_ver"><?php _e("Vertical", 'bwg_back'); ?></label>
477
+ <input disabled="disabled" type="radio" name="extended_album_mosaic_hor_ver" id="extended_album_mosaic_hor" value="horizontal" onclick="bwg_change_label('extended_album_image_column_number', '<?php _e("Max. number of image columns:", 'bwg_back'); ?> ');
478
+ bwg_change_label('extended_album_image_thumb_dimensions', 'I<?php _e("mage thumbnail height: ", 'bwg_back'); ?>');
479
  jQuery('#extended_album_image_thumb_width').hide();
480
  jQuery('#extended_album_image_thumb_height').show();
481
+ jQuery('#extended_album_image_thumb_dimensions_x').hide();" <?php echo ($option_row->mosaic == 'horizontal') ? 'checked' : ''; ?> /><label for="extended_album_mosaic_hor"><?php _e("Horizontal", 'bwg_back'); ?></label>
482
 
483
 
484
  </td>
485
  </tr>
486
  <tr id="tr_extended_album_resizable_mosaic">
487
+ <td title="<?php _e("Mosaic thumbnails do not have fixed size, but are proportional to the width of the parent container. This option keeps thumbs to look nice when viewed with very large or very small screen. Prevents zooming of thumbs.<br /><br />This option is disabled in free version.", 'bwg_back'); ?>" class="spider_label spider_free_version_label"><label for="extended_album_resizable_mosaic"><?php _e("Resizable mosaic:", 'bwg_back'); ?> </label></td>
488
  <td>
489
+ <input disabled="disabled" type="radio" name="extended_album_resizable_mosaic" id="extended_album_resizable_mosaic_1" value="1" <?php echo ($option_row->resizable_mosaic == 1) ? 'checked' : ''; ?> /><label for="extended_album_resizable_mosaic_1"><?php _e('Yes', 'bwg_back'); ?></label>
490
+ <input disabled="disabled" type="radio" name="extended_album_resizable_mosaic" id="extended_album_resizable_mosaic_0" value="0" <?php echo ($option_row->resizable_mosaic == 0) ? 'checked' : ''; ?> /><label for="extended_album_resizable_mosaic_0"><?php _e('No', 'bwg_back'); ?></label>
491
  <br />
492
  </td>
493
  </tr>
494
 
495
  <tr id="tr_extended_album_mosaic_total_width">
496
+ <td title="<?php _e("Percentage of container's width", 'bwg_back'); ?>" class="spider_label"><label for="extended_album_mosaic_total_width"><?php _e("Total width of mosaic:", 'bwg_back'); ?> </label></td>
497
+ <td><input type="text" name="extended_album_mosaic_total_width" id="extended_album_mosaic_total_width" value="<?php echo $option_row->mosaic_total_width; ?>" class="spider_int_input" /> <?php _e("percent", 'bwg_back'); ?></td>
498
  </tr>
499
  <tr id="tr_extended_album_image_column_number">
500
+ <td class="spider_label"><label for="extended_album_image_column_number"><?php _e("Max. number of image columns:", 'bwg_back'); ?> </label></td>
501
  <td><input type="text" name="extended_album_image_column_number" id="extended_album_image_column_number" value="<?php echo $option_row->image_column_number; ?>" class="spider_int_input" /></td>
502
  </tr>
503
  <tr id="tr_extended_album_images_per_page">
504
+ <td title="<?php _e("If you want to display all images you should leave it blank or insert 0.", 'bwg_back'); ?>" class="spider_label"><label for="extended_album_images_per_page"><?php _e("Images per page:", 'bwg_back'); ?> </label></td>
505
  <td><input type="text" name="extended_album_images_per_page" id="extended_album_images_per_page" value="<?php echo $option_row->images_per_page; ?>" class="spider_int_input" /></td>
506
  </tr>
507
  <tr id="tr_extended_album_image_title">
508
+ <td class="spider_label"><label><?php _e("Image title:", 'bwg_back'); ?> </label></td>
509
  <td>
510
+ <input type="radio" name="extended_album_image_title" id="extended_album_image_title_hover" value="hover" <?php echo ($option_row->image_title_show_hover == 'hover') ? 'checked' : ''; ?> /><label for="extended_album_image_title_hover"><?php _e("Show on hover", 'bwg_back'); ?></label><br />
511
+ <input type="radio" name="extended_album_image_title" id="extended_album_image_title_show" value="show" <?php echo ($option_row->image_title_show_hover == 'show') ? 'checked' : ''; ?> /><label for="extended_album_image_title_show"><?php _e("Always show", 'bwg_back'); ?></label><br />
512
+ <input type="radio" name="extended_album_image_title" id="extended_album_image_title_none" value="none" <?php echo ($option_row->image_title_show_hover == 'none') ? 'checked' : ''; ?> /><label for="extended_album_image_title_none"><?php _e("Don't show", 'bwg_back'); ?></label>
513
  </td>
514
  </tr>
515
  <tr id="tr_extended_album_image_thumb_width_height">
516
+ <td title="<?php _e("Maximum values for thumbnail width and height.", 'bwg_back'); ?>" class="spider_label"><label for="extended_album_image_thumb_width" id="extended_album_image_thumb_dimensions"><?php _e("Image Thumbnail dimensions:", 'bwg_back'); ?> </label></td>
517
  <td>
518
  <input type="text" name="extended_album_image_thumb_width" id="extended_album_image_thumb_width" value="<?php echo $option_row->thumb_width; ?>" class="spider_int_input" /><span id="extended_album_image_thumb_dimensions_x" > x </span>
519
  <input type="text" name="extended_album_image_thumb_height" id="extended_album_image_thumb_height" value="<?php echo $option_row->thumb_height; ?>" class="spider_int_input" /> px
520
  </td>
521
  </tr>
522
  <tr id="tr_extended_album_enable_page">
523
+ <td class="spider_label"><label><?php _e("Enable pagination:", 'bwg_back'); ?> </label></td>
524
  <td>
525
+ <input type="radio" name="extended_album_enable_page" id="extended_album_page_yes" value="1" <?php echo ($option_row->album_enable_page == '1') ? 'checked' : ''; ?> onchange="bwg_loadmore()"/><label for="extended_album_page_yes"><?php _e('Yes', 'bwg_back'); ?></label>
526
+ <input type="radio" name="extended_album_enable_page" id="extended_album_page_no" value="0" <?php echo ($option_row->album_enable_page == '0') ? 'checked' : ''; ?> onchange="bwg_loadmore()"/><label for="extended_album_page_no"><?php _e('No', 'bwg_back'); ?></label>
527
+ <input type="radio" name="extended_album_enable_page" id="extended_album_page_loadmore" value="2" <?php echo ($option_row->album_enable_page == '2') ? 'checked' : ''; ?> onchange="bwg_loadmore()"/><label for="extended_album_page_loadmore"><?php _e("Load More", 'bwg_back'); ?></label>
528
+ <input type="radio" name="extended_album_enable_page" id="extended_album_page_scrol_load" value="3" <?php echo ($option_row->album_enable_page == '3') ? 'checked' : ''; ?> onchange="bwg_loadmore()"/><label for="extended_album_page_scrol_load"><?php _e("Scroll Load", 'bwg_back'); ?> </label>
529
  </td>
530
  </tr>
531
  <tr id="tr_extended_albums_per_page_load_more">
532
+ <td title="<?php _e("If you want to display all albums you should leave it blank or insert 0.", 'bwg_back'); ?>" class="spider_label"><label for="extended_albums_per_page_load_more"><?php _e("Albums per load:", 'bwg_back'); ?> </label></td>
533
  <td><input type="text" name="extended_albums_per_page_load_more" id="extended_albums_per_page_load_more" value="<?php echo $option_row->albums_per_page; ?>" class="spider_int_input" /></td>
534
  </tr>
535
  <tr id="tr_extended_album_load_more_image_count">
536
+ <td class="spider_label"><label for="extended_album_load_more_image_count"><?php _e("Images per load:", 'bwg_back'); ?> </label></td>
537
  <td><input type="text" name="extended_album_load_more_image_count" id="extended_album_load_more_image_count" value="<?php echo $option_row->images_per_page; ?>" class="spider_int_input" /></td>
538
  </tr>
539
 
540
  <!--Image Browser view-->
541
  <tr id="tr_image_browser_width_height">
542
+ <td title="<?php _e("Maximum value for image width.", 'bwg_back'); ?>" class="spider_label"><label for="image_browser_width"><?php _e("Image width: ", 'bwg_back'); ?></label></td>
543
  <td>
544
  <input type="text" name="image_browser_width" id="image_browser_width" value="<?php echo $option_row->image_browser_width; ?>" class="spider_int_input" /> px
545
  </td>
546
  </tr>
547
  <tr id="tr_image_browser_title_enable">
548
+ <td class="spider_label"><label><?php _e("Enable image title:", 'bwg_back'); ?> </label></td>
549
  <td>
550
+ <input type="radio" name="image_browser_title_enable" id="image_browser_title_yes" value="1" <?php echo ($option_row->image_browser_title_enable) ? 'checked' : ''; ?> /><label for="image_browser_title_es"><?php _e('Yes', 'bwg_back'); ?></label>
551
+ <input type="radio" name="image_browser_title_enable" id="image_browser_title_no" value="0" <?php echo ($option_row->image_browser_title_enable) ? '' : 'checked'; ?> /><label for="image_browser_title_no"><?php _e('No', 'bwg_back'); ?></label>
552
  </td>
553
  </tr>
554
  <tr id="tr_image_browser_description_enable">
555
+ <td class="spider_label"><label><?php _e("Enable image description:", 'bwg_back'); ?> </label></td>
556
  <td>
557
+ <input type="radio" name="image_browser_description_enable" id="image_browser_description_yes" value="1" <?php echo ($option_row->image_browser_description_enable) ? 'checked' : ''; ?> /><label for="image_browser_description_yes"><?php _e('Yes', 'bwg_back'); ?></label>
558
+ <input type="radio" name="image_browser_description_enable" id="image_browser_description_no" value="0" <?php echo ($option_row->image_browser_description_enable) ? '' : 'checked'; ?> /><label for="image_browser_description_no"><?php _e('No', 'bwg_back'); ?></label>
559
  </td>
560
  </tr>
561
 
562
  <!--Blog Style view-->
563
  <tr id="tr_blog_style_width_height">
564
+ <td title="<?php _e("Maximum value for image width.", 'bwg_back'); ?>" class="spider_label"><label for="blog_style_width"><?php _e("Image width:", 'bwg_back'); ?> </label></td>
565
  <td>
566
  <input type="text" name="blog_style_width" id="blog_style_width" value="<?php echo $option_row->blog_style_width; ?>" class="spider_int_input" /> px
567
  </td>
568
  </tr>
569
  <tr id="tr_blog_style_title_enable">
570
+ <td class="spider_label"><label><?php _e("Enable image title:", 'bwg_back'); ?> </label></td>
571
  <td>
572
+ <input type="radio" name="blog_style_title_enable" id="blog_style_title_yes" value="1" <?php echo ($option_row->blog_style_title_enable) ? 'checked' : ''; ?> /><label for="blog_style_title_es"><?php _e('Yes', 'bwg_back'); ?></label>
573
+ <input type="radio" name="blog_style_title_enable" id="blog_style_title_no" value="0" <?php echo ($option_row->blog_style_title_enable) ? '' : 'checked'; ?> /><label for="blog_style_title_no"><?php _e('No', 'bwg_back'); ?></label>
574
  </td>
575
  </tr>
576
  <tr id="tr_blog_style_images_per_page">
577
+ <td title="<?php _e("If you want to display all images you should leave it blank or insert 0.", 'bwg_back'); ?>" class="spider_label"><label for="blog_style_images_per_page"><?php _e("Images per page:", 'bwg_back'); ?> </label></td>
578
  <td><input type="text" name="blog_style_images_per_page" id="blog_style_images_per_page" value="<?php echo $option_row->blog_style_images_per_page; ?>" class="spider_int_input" /></td>
579
  </tr>
580
  <tr id="tr_blog_style_enable_page">
581
+ <td class="spider_label"><label><?php _e("Enable pagination:", 'bwg_back'); ?> </label></td>
582
  <td>
583
+ <input type="radio" name="blog_style_enable_page" id="blog_style_page_yes" value="1" <?php echo ($option_row->blog_style_enable_page == '1') ? 'checked' : ''; ?> onchange="bwg_loadmore()" /><label for="blog_style_page_yes"><?php _e('Yes', 'bwg_back'); ?></label>
584
+ <input type="radio" name="blog_style_enable_page" id="blog_style_page_no" value="0" <?php echo ($option_row->blog_style_enable_page == '0') ? 'checked' : ''; ?> onchange="bwg_loadmore()" /><label for="blog_style_page_no"><?php _e('No', 'bwg_back'); ?></label>
585
  <input type="radio" name="blog_style_enable_page" id="blog_style_page_loadmore" value="2" <?php echo ($option_row->blog_style_enable_page == '2') ? 'checked' : ''; ?> onchange="bwg_loadmore()" /><label for="blog_style_page_loadmore">Load more</label>
586
+ <input type="radio" name="blog_style_enable_page" id="blog_style_page_scrol_load" value="3" <?php echo ($option_row->blog_style_enable_page == '3') ? 'checked' : ''; ?> onchange="bwg_loadmore()" /><label for="blog_style_page_scrol_load"><?php _e("Scroll Load", 'bwg_back'); ?> </label>
587
  </td>
588
  </tr>
589
  <tr id="tr_blog_style_load_more_image_count">
590
+ <td class="spider_label"><label for="blog_style_load_more_image_count"><?php _e("Images per load:", 'bwg_back'); ?> </label></td>
591
  <td><input type="text" name="blog_style_load_more_image_count" id="blog_style_load_more_image_count" value="<?php echo $option_row->blog_style_images_per_page; ?>" class="spider_int_input" /></td>
592
  </tr>
593
 
594
  <!--Slideshow view-->
595
  <tr id="tr_slideshow_effect">
596
+ <td class="spider_label"><label for="slideshow_effect"><?php _e("Slideshow Effect:", 'bwg_back'); ?> </label></td>
597
  <td>
598
  <select name="slideshow_effect" id="slideshow_effect" style="width:150px;">
599
  <?php
600
  foreach ($effects as $key => $effect) {
601
  ?>
602
+ <option value="<?php echo $key; ?>" <?php echo ($key != 'none' && $key != 'fade') ? 'disabled="disabled" title="' . __("This effect is disabled in free version.","bwg_back") . '"' : ''; ?> <?php echo ($option_row->slideshow_type == $key) ? 'selected' : ''; ?>><?php echo __($effect,"bwg_back"); ?></option>
603
  <?php
604
  }
605
  ?>
607
  </td>
608
  </tr>
609
  <tr id="tr_slideshow_interval">
610
+ <td title="<?php _e("Interval between two images.", 'bwg_back'); ?>" class="spider_label"><label for="slideshow_interval"><?php _e("Time interval:", 'bwg_back'); ?> </label></td>
611
  <td><input type="text" name="slideshow_interval" id="slideshow_interval" value="<?php echo $option_row->slideshow_interval; ?>" class="spider_int_input" /> sec.</td>
612
  </tr>
613
  <tr id="tr_slideshow_width_height">
614
+ <td title="<?php _e("Maximum values for slideshow width and height.", 'bwg_back'); ?>" class="spider_label"><label for="slideshow_width"><?php _e("Slideshow dimensions:", 'bwg_back'); ?> </label></td>
615
  <td>
616
  <input type="text" name="slideshow_width" id="slideshow_width" value="<?php echo $option_row->slideshow_width; ?>" class="spider_int_input" /> x
617
  <input type="text" name="slideshow_height" id="slideshow_height" value="<?php echo $option_row->slideshow_height; ?>" class="spider_int_input" /> px
618
  </td>
619
  </tr>
620
  <tr id="tr_enable_slideshow_autoplay">
621
+ <td class="spider_label"><label><?php _e("Enable Autoplay:", 'bwg_back'); ?> </label></td>
622
  <td>
623
+ <input type="radio" name="enable_slideshow_autoplay" id="slideshow_autoplay_yes" value="1" <?php echo ($option_row->slideshow_enable_autoplay) ? 'checked' : ''; ?> /><label for="slideshow_autoplay_yes"><?php _e('Yes', 'bwg_back'); ?></label>
624
+ <input type="radio" name="enable_slideshow_autoplay" id="slideshow_autoplay_no" value="0" <?php echo ($option_row->slideshow_enable_autoplay) ? '' : 'checked'; ?> /><label for="slideshow_autoplay_no"><?php _e('No', 'bwg_back'); ?></label>
625
  </td>
626
  </tr>
627
  <tr id="tr_enable_slideshow_shuffle">
628
+ <td class="spider_label"><label><?php _e("Enable Shuffle:", 'bwg_back'); ?> </label></td>
629
  <td>
630
+ <input type="radio" name="enable_slideshow_shuffle" id="slideshow_shuffle_yes" value="1" <?php echo ($option_row->slideshow_enable_shuffle) ? 'checked' : ''; ?> /><label for="slideshow_shuffle_yes"><?php _e('Yes', 'bwg_back'); ?></label>
631
+ <input type="radio" name="enable_slideshow_shuffle" id="slideshow_shuffle_no" value="0" <?php echo ($option_row->slideshow_enable_shuffle) ? '' : 'checked'; ?> /><label for="slideshow_shuffle_no"><?php _e('No', 'bwg_back'); ?></label>
632
  </td>
633
  </tr>
634
  <tr id="tr_enable_slideshow_ctrl">
635
+ <td class="spider_label"><label><?php _e("Enable control buttons:", 'bwg_back'); ?> </label></td>
636
  <td>
637
+ <input type="radio" name="enable_slideshow_ctrl" id="slideshow_ctrl_yes" value="1" <?php echo ($option_row->slideshow_enable_ctrl) ? 'checked' : ''; ?> /><label for="slideshow_ctrl_yes"><?php _e('Yes', 'bwg_back'); ?></label>
638
+ <input type="radio" name="enable_slideshow_ctrl" id="slideshow_ctrl_no" value="0" <?php echo ($option_row->slideshow_enable_ctrl) ? '' : 'checked'; ?> /><label for="slideshow_ctrl_no"><?php _e('No', 'bwg_back'); ?></label>
639
  </td>
640
  </tr>
641
  <tr id="tr_enable_slideshow_filmstrip">
642
+ <td title="<?php _e("Enable slideshow filmstrip view", 'bwg_back'); ?><br /><br /><?php _e("This option is disabled in free version.", 'bwg_back'); ?>" class="spider_label spider_free_version_label"><label><?php _e("Enable slideshow filmstrip:", 'bwg_back'); ?> </label></td>
643
  <td>
644
+ <input disabled="disabled" type="radio" name="enable_slideshow_filmstrip" id="slideshow_filmstrip_yes" value="1" onClick="bwg_enable_disable('', 'tr_slideshow_filmstrip_height', 'slideshow_filmstrip_yes')" <?php echo ($option_row->slideshow_enable_filmstrip) ? 'checked' : ''; ?> /><label for="slideshow_filmstrip_yes"><?php _e('Yes', 'bwg_back'); ?></label>
645
+ <input disabled="disabled" type="radio" name="enable_slideshow_filmstrip" id="slideshow_filmstrip_no" value="0" onClick="bwg_enable_disable('none', 'tr_slideshow_filmstrip_height', 'slideshow_filmstrip_no')" <?php echo ($option_row->slideshow_enable_filmstrip) ? '' : 'checked'; ?> /><label for="slideshow_filmstrip_no"><?php _e('No', 'bwg_back'); ?></label>
646
  </td>
647
  </tr>
648
  <tr id="tr_slideshow_filmstrip_height">
649
+ <td class="spider_label spider_free_version_label"><label for="slideshow_filmstrip_height"><?php _e("Slideshow Filmstrip size:", 'bwg_back'); ?> </label></td>
650
  <td class="spider_free_version_label"><input disabled="disabled" type="text" name="slideshow_filmstrip_height" id="slideshow_filmstrip_height" value="<?php echo $option_row->slideshow_filmstrip_height; ?>" class="spider_int_input spider_free_version_label" /> px</td>
651
  </tr>
652
  </tbody>
657
  <!--Slideshow view-->
658
  <tbody id="tbody_slideshow">
659
  <tr id="tr_slideshow_enable_title">
660
+ <td class="spider_label"><label><?php _e("Enable Image Title:", 'bwg_back'); ?> </label></td>
661
  <td>
662
+ <input type="radio" name="slideshow_enable_title" id="slideshow_title_yes" value="1" <?php echo ($option_row->slideshow_enable_title) ? 'checked' : ''; ?> onClick="bwg_enable_disable('', 'tr_slideshow_title_position', 'slideshow_title_yes')" /><label for="slideshow_title_yes"><?php _e('Yes', 'bwg_back'); ?></label>
663
+ <input type="radio" name="slideshow_enable_title" id="slideshow_title_no" value="0" <?php echo ($option_row->slideshow_enable_title) ? '' : 'checked'; ?> onClick="bwg_enable_disable('none', 'tr_slideshow_title_position', 'slideshow_title_no')" /><label for="slideshow_title_no"><?php _e('No', 'bwg_back'); ?></label>
664
  </td>
665
  </tr>
666
  <tr id="tr_slideshow_title_position">
667
+ <td title="<?php _e("Image title position on slideshow", 'bwg_back'); ?>" class="spider_label"><label><?php _e("Title Position:", 'bwg_back'); ?> </label></td>
668
  <td>
669
  <table class="bws_position_table">
670
  <tbody>
688
  </td>
689
  </tr>
690
  <tr id="tr_slideshow_full_width_title">
691
+ <td title="<?php _e("Display image title based on the slideshow dimensions.", 'bwg_back'); ?>" class="spider_label">
692
+ <label><?php _e("Full width title:", 'bwg_back'); ?></label>
693
  </td>
694
  <td>
695
+ <input type="radio" name="slideshow_title_full_width" id="slideshow_title_full_width_1" value="1" <?php if ($option_row->slideshow_title_full_width) echo 'checked="checked"'; ?> /><label for="slideshow_title_full_width_1"><?php _e('Yes', 'bwg_back'); ?></label>
696
+ <input type="radio" name="slideshow_title_full_width" id="slideshow_title_full_width_0" value="0" <?php if (!$option_row->slideshow_title_full_width) echo 'checked="checked"'; ?> /><label for="slideshow_title_full_width_0"><?php _e('No', 'bwg_back'); ?></label>
697
  </td>
698
  </tr>
699
  <tr id="tr_slideshow_enable_description">
700
+ <td class="spider_label"><label><?php _e("Enable Image Description:", 'bwg_back'); ?> </label></td>
701
  <td>
702
+ <input type="radio" name="slideshow_enable_description" id="slideshow_description_yes" value="1" <?php echo ($option_row->slideshow_enable_description) ? 'checked' : ''; ?> onClick="bwg_enable_disable('', 'tr_slideshow_description_position', 'slideshow_description_yes')" /><label for="slideshow_description_yes"><?php _e('Yes', 'bwg_back'); ?></label>
703
+ <input type="radio" name="slideshow_enable_description" id="slideshow_description_no" value="0" <?php echo ($option_row->slideshow_enable_description) ? '' : 'checked'; ?> onClick="bwg_enable_disable('none', 'tr_slideshow_description_position', 'slideshow_description_no')" /><label for="slideshow_description_no"><?php _e('No', 'bwg_back'); ?></label>
704
  </td>
705
  </tr>
706
  <tr id="tr_slideshow_description_position">
707
+ <td title="<?php _e("Image description position on slideshow", 'bwg_back'); ?>" class="spider_label"><label><?php _e("Description Position: ", 'bwg_back'); ?></label></td>
708
  <td>
709
  <table class="bws_position_table">
710
  <tbody>
728
  </td>
729
  </tr>
730
  <tr id="tr_enable_slideshow_music">
731
+ <td class="spider_label"><label><?php _e("Enable Slideshow Music:", 'bwg_back'); ?> </label></td>
732
  <td>
733
+ <input type="radio" name="enable_slideshow_music" id="slideshow_music_yes" value="1" onClick="bwg_enable_disable('', 'tr_slideshow_music_url', 'slideshow_music_yes')" <?php echo ($option_row->slideshow_enable_music) ? 'checked' : ''; ?> /><label for="slideshow_music_yes"><?php _e('Yes', 'bwg_back'); ?></label>
734
+ <input type="radio" name="enable_slideshow_music" id="slideshow_music_no" value="0" onClick="bwg_enable_disable('none', 'tr_slideshow_music_url', 'slideshow_music_no')" <?php echo ($option_row->slideshow_enable_music) ? '' : 'checked'; ?> /><label for="slideshow_music_no"><?php _e('No', 'bwg_back'); ?></label>
735
  </td>
736
  </tr>
737
  <tr id="tr_slideshow_music_url">
738
+ <td title="<?php _e("Enter absolute audio file url or add file from Options page.", 'bwg_back'); ?>" class="spider_label">
739
+ <label for="slideshow_music_url"><?php _e("Music url:", 'bwg_back'); ?> </label>
740
  </td>
741
  <td>
742
  <input type="text" id="slideshow_music_url" name="slideshow_music_url" value="<?php echo $option_row->slideshow_audio_url; ?>" style="display:inline-block;" />
747
  <!--Lightbox view-->
748
  <tbody id="tbody_popup_other">
749
  <tr id="tr_thumb_click_action">
750
+ <td class="spider_label"><label><?php _e("Thumb click action:", 'bwg_back'); ?> </label></td>
751
  <td>
752
+ <input type="radio" name="thumb_click_action" id="thumb_click_action_1" value="open_lightbox" <?php if ($option_row->thumb_click_action == 'open_lightbox') echo 'checked="checked"'; ?> onchange="bwg_thumb_click_action()" /><label for="thumb_click_action_1"><?php _e("Open lightbox", 'bwg_back'); ?></label><br />
753
+ <input type="radio" name="thumb_click_action" id="thumb_click_action_2" value="redirect_to_url" <?php if ($option_row->thumb_click_action == 'redirect_to_url') echo 'checked="checked"'; ?> onchange="bwg_thumb_click_action()" /><label for="thumb_click_action_2"><?php _e("Redirect to url", 'bwg_back'); ?></label><br />
754
+ <input type="radio" name="thumb_click_action" id="thumb_click_action_3" value="do_nothing" <?php if ($option_row->thumb_click_action == 'do_nothing') echo 'checked="checked"'; ?> onchange="bwg_thumb_click_action()" /><label for="thumb_click_action_3"><?php _e("Do Nothing", 'bwg_back'); ?></label>
755
  </td>
756
  </tr>
757
  <tr id="tr_thumb_link_target">
758
+ <td title="<?php _e("Open new window when redirecting.", 'bwg_back'); ?>" class="spider_label"><label><?php _e("Open in new window:", 'bwg_back'); ?> </label></td>
759
  <td>
760
+ <input type="radio" name="thumb_link_target" id="thumb_link_target_yes" value="1" <?php if ($option_row->thumb_link_target) echo 'checked="checked"'; ?> /><label for="thumb_link_target_yes"><?php _e('Yes', 'bwg_back'); ?></label>
761
+ <input type="radio" name="thumb_link_target" id="thumb_link_target_no" value="0" <?php if (!$option_row->thumb_link_target) echo 'checked="checked"'; ?> /><label for="thumb_link_target_no"><?php _e('No', 'bwg_back'); ?></label>
762
  </td>
763
  </tr>
764
  </tbody>
765
  <tbody id="tbody_popup">
766
  <tr id="tr_popup_fullscreen">
767
+ <td title="<?php _e("Enable full width feature for the lightbox.", 'bwg_back'); ?>" class="spider_label">
768
+ <label><?php _e("Full width lightbox:", 'bwg_back'); ?></label>
769
  </td>
770
  <td>
771
+ <input type="radio" name="popup_fullscreen" id="popup_fullscreen_1" value="1" <?php if ($option_row->popup_fullscreen) echo 'checked="checked"'; ?> onchange="bwg_popup_fullscreen()" /><label for="popup_fullscreen_1"><?php _e('Yes', 'bwg_back'); ?></label>
772
+ <input type="radio" name="popup_fullscreen" id="popup_fullscreen_0" value="0" <?php if (!$option_row->popup_fullscreen) echo 'checked="checked"'; ?> onchange="bwg_popup_fullscreen()" /><label for="popup_fullscreen_0"><?php _e('No', 'bwg_back'); ?></label>
773
  </td>
774
  </tr>
775
  <tr id="tr_popup_width_height">
776
+ <td title="<?php _e("Maximum values for lightbox width and height.", 'bwg_back'); ?>" class="spider_label"><label for="popup_width"><?php _e("Lightbox dimensions:", 'bwg_back'); ?> </label></td>
777
  <td>
778
  <input type="text" name="popup_width" id="popup_width" value="<?php echo $option_row->popup_width; ?>" class="spider_int_input" /> x
779
  <input type="text" name="popup_height" id="popup_height" value="<?php echo $option_row->popup_height; ?>" class="spider_int_input" /> px
780
  </td>
781
  </tr>
782
  <tr id="tr_popup_effect">
783
+ <td title="<?php _e("Lightbox slideshow effect.", 'bwg_back'); ?>" class="spider_label"><label for="popup_effect"><?php _e("Lightbox effect:", 'bwg_back'); ?> </label></td>
784
  <td>
785
  <select name="popup_effect" id="popup_effect" style="width:150px;">
786
  <?php
787
  foreach ($effects as $key => $effect) {
788
  ?>
789
+ <option value="<?php echo $key; ?>" <?php echo ($key != 'none' && $key != 'fade') ? 'disabled="disabled" title="This effect is disabled in free version."' : ''; ?> <?php echo ($option_row->popup_type == $key) ? 'selected' : ''; ?>><?php echo __($effect,"bwg_back"); ?></option>
790
  <?php
791
  }
792
  ?>
795
  </tr>
796
  <tr id="tr_popup_autoplay">
797
  <td class="spider_label">
798
+ <label><?php _e("Lightbox autoplay:", 'bwg_back'); ?> </label>
799
  </td>
800
  <td>
801
+ <input type="radio" name="popup_autoplay" id="popup_autoplay_1" value="1" <?php if ($option_row->popup_autoplay) echo 'checked="checked"'; ?> /><label for="popup_autoplay_1"><?php _e('Yes', 'bwg_back'); ?></label>
802
+ <input type="radio" name="popup_autoplay" id="popup_autoplay_0" value="0" <?php if (!$option_row->popup_autoplay) echo 'checked="checked"'; ?> /><label for="popup_autoplay_0"><?php _e('No', 'bwg_back'); ?></label>
803
  </td>
804
  </tr>
805
  <tr id="tr_popup_interval">
806
+ <td title="<?php _e("Interval between two images.", 'bwg_back'); ?>" class="spider_label"><label for="popup_interval"><?php _e("Time interval:", 'bwg_back'); ?> </label></td>
807
  <td><input type="text" name="popup_interval" id="popup_interval" value="<?php echo $option_row->popup_interval; ?>" class="spider_int_input" /> sec.</td>
808
  </tr>
809
  <tr id="tr_popup_enable_filmstrip">
810
+ <td title="<?php _e("Enable filmstrip view for images", 'bwg_back'); ?><br /><br /><?php _e("This option is disabled in free version.", 'bwg_back'); ?>" class="spider_label spider_free_version_label"><label><?php _e("Enable filmstrip in lightbox:", 'bwg_back'); ?> </label></td>
811
  <td>
812
+ <input disabled="disabled" type="radio" name="popup_enable_filmstrip" id="popup_filmstrip_yes" value="1" onClick="bwg_enable_disable('', 'tr_popup_filmstrip_height', 'popup_filmstrip_yes')" <?php echo ($option_row->popup_enable_filmstrip) ? 'checked' : ''; ?> /><label for="popup_filmstrip_yes"><?php _e('Yes', 'bwg_back'); ?></label>
813
+ <input disabled="disabled" type="radio" name="popup_enable_filmstrip" id="popup_filmstrip_no" value="0" onClick="bwg_enable_disable('none', 'tr_popup_filmstrip_height', 'popup_filmstrip_no')" <?php echo ($option_row->popup_enable_filmstrip) ? '' : 'checked'; ?> /><label for="popup_filmstrip_no"><?php _e('No', 'bwg_back'); ?></label>
814
  </td>
815
  </tr>
816
  <tr id="tr_popup_filmstrip_height">
817
+ <td title="<?php _e("This option is disabled in free version.", 'bwg_back'); ?>" class="spider_label spider_free_version_label"><label for="popup_filmstrip_height"><?php _e("Filmstrip size:", 'bwg_back'); ?> </label></td>
818
  <td class="spider_free_version_label"><input disabled="disabled" type="text" name="popup_filmstrip_height" id="popup_filmstrip_height" value="<?php echo $option_row->popup_filmstrip_height; ?>" class="spider_int_input spider_free_version_label" /> px</td>
819
  </tr>
820
  <tr id="tr_popup_hit_counter">
821
+ <td title="<?php _e("This option is disabled in free version.", 'bwg_back'); ?>" class="spider_label spider_free_version_label"><label><?php _e("Display hit counter:", 'bwg_back'); ?> </label></td>
822
  <td>
823
+ <input disabled="disabled" type="radio" name="popup_hit_counter" id="popup_hit_counter_yes" value="1" <?php echo ($option_row->popup_hit_counter) ? 'checked' : ''; ?> /><label for="popup_hit_counter_yes"><?php _e('Yes', 'bwg_back'); ?></label>
824
+ <input disabled="disabled" type="radio" name="popup_hit_counter" id="popup_hit_counter_no" value="0" <?php echo ($option_row->popup_hit_counter) ? '' : 'checked'; ?> /><label for="popup_hit_counter_no"><?php _e('No', 'bwg_back'); ?></label>
825
  </td>
826
  </tr>
827
  <tr id="tr_popup_enable_ctrl_btn">
828
+ <td title="<?php _e("Enable control buttons in lightbox", 'bwg_back'); ?>" class="spider_label"><label><?php _e("Enable control buttons:", 'bwg_back'); ?> </label></td>
829
  <td>
830
+ <input type="radio" name="popup_enable_ctrl_btn" id="popup_ctrl_btn_yes" value="1" onClick="bwg_enable_disable('', 'tbody_popup_ctrl_btn', 'popup_ctrl_btn_yes');" <?php echo ($option_row->popup_enable_ctrl_btn) ? 'checked' : ''; ?> /><label for="popup_ctrl_btn_yes"><?php _e('Yes', 'bwg_back'); ?></label>
831
+ <input type="radio" name="popup_enable_ctrl_btn" id="popup_ctrl_btn_no" value="0" onClick="bwg_enable_disable('none', 'tbody_popup_ctrl_btn', 'popup_ctrl_btn_no');" <?php echo ($option_row->popup_enable_ctrl_btn) ? '' : 'checked'; ?> /><label for="popup_ctrl_btn_no"><?php _e('No', 'bwg_back'); ?></label>
832
  </td>
833
  </tr>
834
  </tbody>
835
  <tbody id="tbody_popup_ctrl_btn">
836
  <tr id="tr_popup_enable_fullscreen">
837
+ <td title="<?php _e("Enable fullscreen view for images", 'bwg_back'); ?>" class="spider_label"><label><?php _e("Enable fullscreen:", 'bwg_back'); ?> </label></td>
838
  <td>
839
+ <input type="radio" name="popup_enable_fullscreen" id="popup_fullscreen_yes" value="1" <?php echo ($option_row->popup_enable_fullscreen) ? 'checked' : ''; ?> /><label for="popup_fullscreen_yes"><?php _e('Yes', 'bwg_back'); ?></label>
840
+ <input type="radio" name="popup_enable_fullscreen" id="popup_fullscreen_no" value="0" <?php echo ($option_row->popup_enable_fullscreen) ? '' : 'checked'; ?> /><label for="popup_fullscreen_no"><?php _e('No', 'bwg_back'); ?></label>
841
  </td>
842
  </tr>
843
  <tr id="tr_popup_enable_info">
844
+ <td title="<?php _e("Enable title, description for images", 'bwg_back'); ?>" class="spider_label"><label><?php _e("Enable info:", 'bwg_back'); ?> </label></td>
845
  <td>
846
+ <input type="radio" name="popup_enable_info" id="popup_info_yes" value="1" <?php echo ($option_row->popup_enable_info) ? 'checked="checked"' : ''; ?> /><label for="popup_info_yes"><?php _e('Yes', 'bwg_back'); ?></label>
847
+ <input type="radio" name="popup_enable_info" id="popup_info_no" value="0" <?php echo ($option_row->popup_enable_info) ? '' : 'checked="checked"'; ?> /><label for="popup_info_no"><?php _e('No', 'bwg_back'); ?></label>
848
  </td>
849
  </tr>
850
  <tr id="tr_popup_info_always_show">
851
+ <td class="spider_label"><label><?php _e("Display info by default:", 'bwg_back'); ?> </label></td>
852
  <td>
853
+ <input type="radio" name="popup_info_always_show" id="popup_info_always_show_yes" value="1" <?php echo ($option_row->popup_info_always_show) ? 'checked="checked"' : ''; ?> /><label for="popup_info_always_show_yes"><?php _e('Yes', 'bwg_back'); ?></label>
854
+ <input type="radio" name="popup_info_always_show" id="popup_info_always_show_no" value="0" <?php echo ($option_row->popup_info_always_show) ? '' : 'checked="checked"'; ?> /><label for="popup_info_always_show_no"><?php _e('No', 'bwg_back'); ?></label>
855
  </td>
856
  </tr>
857
  <tr id="tr_popup_info_full_width">
858
+ <td title="<?php _e("Display image information based on the lightbox dimensions.", 'bwg_back'); ?>" class="spider_label"><label><?php _e("Full width info:", 'bwg_back'); ?></label></td>
859
  <td>
860
+ <input type="radio" name="popup_info_full_width" id="popup_info_full_width_1" value="1" <?php if ($option_row->popup_info_full_width) echo 'checked="checked"'; ?> /><label for="popup_info_full_width_1"><?php _e('Yes', 'bwg_back'); ?></label>
861
+ <input type="radio" name="popup_info_full_width" id="popup_info_full_width_0" value="0" <?php if (!$option_row->popup_info_full_width) echo 'checked="checked"'; ?> /><label for="popup_info_full_width_0"><?php _e('No', 'bwg_back'); ?></label>
862
  </td>
863
  </tr>
864
  <tr id="tr_popup_enable_rate">
865
+ <td title="<?php _e("Enable rating for images", 'bwg_back'); ?><br /><br />This option is disabled in free version." class="spider_label spider_free_version_label"><label><?php _e("Enable rating:", 'bwg_back'); ?> </label></td>
866
  <td>
867
+ <input disabled="disabled" type="radio" name="popup_enable_rate" id="popup_rate_yes" value="1" <?php echo ($option_row->popup_enable_rate) ? 'checked="checked"' : ''; ?> /><label for="popup_rate_yes"><?php _e('Yes', 'bwg_back'); ?></label>
868
+ <input disabled="disabled" type="radio" name="popup_enable_rate" id="popup_rate_no" value="0" <?php echo ($option_row->popup_enable_rate) ? '' : 'checked="checked"'; ?> /><label for="popup_rate_no"><?php _e('No', 'bwg_back'); ?></label>
869
  </td>
870
  </tr>
871
  <tr id="tr_popup_enable_comment">
872
+ <td title="<?php _e("Enable comments for images", 'bwg_back'); ?><br /><br /><?php _e("This option is disabled in free version.", 'bwg_back'); ?>" class="spider_label spider_free_version_label"><label><?php _e("Enable comments:", 'bwg_back'); ?> </label></td>
873
  <td>
874
+ <input disabled="disabled" type="radio" name="popup_enable_comment" id="popup_comment_yes" value="1" <?php echo ($option_row->popup_enable_comment) ? 'checked' : ''; ?> /><label for="popup_comment_yes"><?php _e('Yes', 'bwg_back'); ?></label>
875
+ <input disabled="disabled" type="radio" name="popup_enable_comment" id="popup_comment_no" value="0" <?php echo ($option_row->popup_enable_comment) ? '' : 'checked'; ?> /><label for="popup_comment_no"><?php _e('No', 'bwg_back'); ?></label>
876
  </td>
877
  </tr>
878
  <tr id="tr_popup_enable_facebook">
879
+ <td title="<?php _e("Enable Facebook share button for images", 'bwg_back'); ?><br /><br /><?php _e("This option is disabled in free version.", 'bwg_back'); ?>" class="spider_label spider_free_version_label"><label><?php _e("Enable Facebook button:", 'bwg_back'); ?> </label></td>
880
  <td>
881
+ <input disabled="disabled" type="radio" name="popup_enable_facebook" id="popup_facebook_yes" value="1" <?php echo ($option_row->popup_enable_facebook) ? 'checked' : ''; ?> /><label for="popup_facebook_yes"><?php _e('Yes', 'bwg_back'); ?></label>
882
+ <input disabled="disabled" type="radio" name="popup_enable_facebook" id="popup_facebook_no" value="0" <?php echo ($option_row->popup_enable_facebook) ? '' : 'checked'; ?> /><label for="popup_facebook_no"><?php _e('No', 'bwg_back'); ?></label>
883
  </td>
884
  </tr>
885
  <tr id="tr_popup_enable_twitter">
886
+ <td title="<?php _e("Enable Twitter share button for images", 'bwg_back'); ?><br /><br /><?php _e("This option is disabled in free version.", 'bwg_back'); ?>" class="spider_label spider_free_version_label"><label><?php _e("Enable Twitter button:", 'bwg_back'); ?> </label></td>
887
  <td>
888
+ <input disabled="disabled" type="radio" name="popup_enable_twitter" id="popup_twitter_yes" value="1" <?php echo ($option_row->popup_enable_twitter) ? 'checked' : ''; ?> /><label for="popup_twitter_yes"><?php _e('Yes', 'bwg_back'); ?></label>
889
+ <input disabled="disabled" type="radio" name="popup_enable_twitter" id="popup_twitter_no" value="0" <?php echo ($option_row->popup_enable_twitter) ? '' : 'checked'; ?> /><label for="popup_twitter_no"><?php _e('No', 'bwg_back'); ?></label>
890
  </td>
891
  </tr>
892
  <tr id="tr_popup_enable_google">
893
+ <td title="<?php _e("Enable Google+ share button for images", 'bwg_back'); ?><br /><br /><?php _e("This option is disabled in free version.", 'bwg_back'); ?>" class="spider_label spider_free_version_label"><label><?php _e("Enable Google+ button:", 'bwg_back'); ?> </label></td>
894
  <td>
895
+ <input disabled="disabled" type="radio" name="popup_enable_google" id="popup_google_yes" value="1" <?php echo ($option_row->popup_enable_google) ? 'checked' : ''; ?> /><label for="popup_google_yes"><?php _e('Yes', 'bwg_back'); ?></label>
896
+ <input disabled="disabled" type="radio" name="popup_enable_google" id="popup_google_no" value="0" <?php echo ($option_row->popup_enable_google) ? '' : 'checked'; ?> /><label for="popup_google_no"><?php _e('No', 'bwg_back'); ?></label>
897
  </td>
898
  </tr>
899
  <tr id="tr_popup_enable_pinterest">
900
+ <td title="<?php _e("Enable Pinterest share button for images", 'bwg_back'); ?><br /><br /><?php _e("This option is disabled in free version.", 'bwg_back'); ?>" class="spider_label spider_free_version_label"><label><?php _e("Enable Pinterest button:", 'bwg_back'); ?> </label></td>
901
  <td>
902
+ <input disabled="disabled" type="radio" name="popup_enable_pinterest" id="popup_pinterest_yes" value="1" <?php echo ($option_row->popup_enable_pinterest) ? 'checked' : ''; ?> /><label for="popup_pinterest_yes"><?php _e('Yes', 'bwg_back'); ?></label>
903
+ <input disabled="disabled" type="radio" name="popup_enable_pinterest" id="popup_pinterest_no" value="0" <?php echo ($option_row->popup_enable_pinterest) ? '' : 'checked'; ?> /><label for="popup_pinterest_no"><?php _e('No', 'bwg_back'); ?></label>
904
  </td>
905
  </tr>
906
  <tr id="tr_popup_enable_tumblr">
907
+ <td title="<?php _e("Enable Tumblr share button for images", 'bwg_back'); ?><br /><br /><?php _e("This option is disabled in free version.", 'bwg_back'); ?>" class="spider_label spider_free_version_label"><label><?php _e("Enable Tumblr button:", 'bwg_back'); ?> </label></td>
908
  <td>
909
+ <input disabled="disabled" type="radio" name="popup_enable_tumblr" id="popup_tumblr_yes" value="1" <?php echo ($option_row->popup_enable_tumblr) ? 'checked' : ''; ?> /><label for="popup_tumblr_yes"><?php _e('Yes', 'bwg_back'); ?></label>
910
+ <input disabled="disabled" type="radio" name="popup_enable_tumblr" id="popup_tumblr_no" value="0" <?php echo ($option_row->popup_enable_tumblr) ? '' : 'checked'; ?> /><label for="popup_tumblr_no"><?php _e('No', 'bwg_back'); ?></label>
911
  </td>
912
  </tr>
913
  </tbody>
917
  <table>
918
  <tbody>
919
  <tr id="tr_watermark_type">
920
+ <td class="spider_label"><label><?php _e("Advertisement Type:", 'bwg_back'); ?> </label></td>
921
  <td>
922
+ <input type="radio" name="watermark_type" id="watermark_type_none" value="none" onClick="bwg_watermark('watermark_type_none')" <?php echo ($option_row->watermark_type == 'none') ? 'checked' : ''; ?> /><label for="watermark_type_none"><?php _e("None", 'bwg_back'); ?></label>
923
+ <input type="radio" name="watermark_type" id="watermark_type_text" value="text" onClick="bwg_watermark('watermark_type_text')" <?php echo ($option_row->watermark_type == 'text') ? 'checked' : ''; ?> /><label for="watermark_type_text"><?php _e("Text", 'bwg_back'); ?></label>
924
+ <input type="radio" name="watermark_type" id="watermark_type_image" value="image" onClick="bwg_watermark('watermark_type_image')" <?php echo ($option_row->watermark_type == 'image') ? 'checked' : ''; ?> /><label for="watermark_type_image"><?php _e("Image", 'bwg_back'); ?></label>
925
  </td>
926
  </tr>
927
  <tr id="tr_watermark_link">
928
+ <td title="<?php _e("Enter absolute url", 'bwg_back'); ?>, e.g. http://www.example.com" class="spider_label">
929
+ <label for="watermark_link"><?php _e("Advertisement link:", 'bwg_back'); ?> </label>
930
  </td>
931
  <td>
932
  <input type="text" id="watermark_link" name="watermark_link" value="<?php echo $option_row->watermark_link; ?>" style="display:inline-block;" />
933
  </td>
934
  </tr>
935
  <tr id="tr_watermark_url">
936
+ <td title="<?php _e("Enter absolute image file url or add file from Options page.", 'bwg_back'); ?>" class="spider_label">
937
+ <label for="watermark_url"><?php _e("Advertisement url:", 'bwg_back'); ?> </label>
938
  </td>
939
  <td>
940
  <input type="text" id="watermark_url" name="watermark_url" value="<?php echo $option_row->watermark_url; ?>" style="display:inline-block;" />
941
  </td>
942
  </tr>
943
  <tr id="tr_watermark_width_height">
944
+ <td title="<?php _e("Maximum values for watermark image width and height.", 'bwg_back'); ?>" class="spider_label"><label for="watermark_width"><?php _e("Advertisement dimensions:", 'bwg_back'); ?> </label></td>
945
  <td>
946
  <input type="text" name="watermark_width" id="watermark_width" value="<?php echo $option_row->watermark_width; ?>" class="spider_int_input" /> x
947
  <input type="text" name="watermark_height" id="watermark_height" value="<?php echo $option_row->watermark_height; ?>" class="spider_int_input" /> px
948
  </td>
949
  </tr>
950
  <tr id="tr_watermark_text">
951
+ <td class="spider_label"><label for="watermark_text"><?php _e("Advertisement text:", 'bwg_back'); ?> </label></td>
952
  <td>
953
  <input type="text" name="watermark_text" id="watermark_text" value="<?php echo $option_row->watermark_text; ?>" />
954
  </td>
955
  </tr>
956
  <tr id="tr_watermark_font_size">
957
+ <td class="spider_label"><label for="watermark_font_size"><?php _e("Advertisement font size:", 'bwg_back'); ?> </label></td>
958
  <td>
959
  <input type="text" name="watermark_font_size" id="watermark_font_size" value="<?php echo $option_row->watermark_font_size; ?>" class="spider_int_input" /> px
960
  </td>
961
  </tr>
962
  <tr id="tr_watermark_font">
963
+ <td class="spider_label"><label for="watermark_font"><?php _e("Advertisement font style:", 'bwg_back'); ?> </label></td>
964
  <td>
965
  <select name="watermark_font" id="watermark_font" style="width:150px;">
966
  <?php
974
  </td>
975
  </tr>
976
  <tr id="tr_watermark_color">
977
+ <td class="spider_label"><label for="watermark_color"><?php _e("Advertisement color:", 'bwg_back'); ?> </label></td>
978
  <td>
979
  <input type="text" name="watermark_color" id="watermark_color" value="<?php echo $option_row->watermark_color; ?>" class="color" />
980
  </td>
981
  </tr>
982
  <tr id="tr_watermark_opacity">
983
+ <td title="<?php _e("Value must be between 0 to 100.", 'bwg_back'); ?>" class="spider_label"><label for="watermark_opacity"><?php _e("Advertisement opacity:", 'bwg_back'); ?> </label></td>
984
  <td>
985
  <input type="text" name="watermark_opacity" id="watermark_opacity" value="<?php echo $option_row->watermark_opacity; ?>" class="spider_int_input" /> %
986
  </td>
987
  </tr>
988
  <tr id="tr_watermark_position">
989
+ <td class="spider_label"><label><?php _e("Advertisement Position:", 'bwg_back'); ?> </label></td>
990
  <td>
991
  <table class="bws_position_table">
992
  <tbody>
1019
  </div>
1020
  <div class="mceActionPanel">
1021
  <div style="float:left;">
1022
+ <a id="bwg_pro_version_link" class="button button-primary" target="_blank" style="line-height: 25px; padding: 0 5px; text-decoration: none; vertical-align: middle; width: inherit; float: left;" href="http://wpdemo.web-dorado.com/thumbnails-view-2/"><?php _e("Please see Pro ", 'bwg_back'); ?><span id="bwg_pro_version"><?php _e("Thumbnail", 'bwg_back'); ?></span> <?php _e("View", 'bwg_back'); ?></a>
1023
  </div>
1024
  <div style="float:right;">
1025
+ <input type="button" id="insert" name="insert" value="<?php _e("Insert", 'bwg_back'); ?>" onClick="bwg_insert_shortcode('');" />
1026
+ <input type="button" id="cancel" name="cancel" value="<?php _e("Cancel", 'bwg_back'); ?>" onClick="tinyMCEPopup.close();" />
1027
  </div>
1028
  </div>
1029
  <?php
1040
  ?>
1041
  <hr style="float: left; width: 100%;" />
1042
  <span style="float: left; width: 100%;">
1043
+ <a id="bwg_pro_version_link" class="button button-primary" target="_blank" style="display: table; margin-bottom: 5px;" href="https://web-dorado.com/files/fromPhotoGallery.php"><?php _e("Please see Pro", 'bwg_back'); ?> <span id="bwg_pro_version"><?php _e("Thumbnail", 'bwg_back'); ?></span> <?php _e("View", 'bwg_back'); ?></a>
1044
+ <input type="button" class="button-primary" id="insert" name="insert" value="<?php echo __("Generate", 'bwg_back'); ?>" onclick="bwg_insert_shortcode('');" />
1045
+ <input type="button" class="button-secondary" id="import" name="import" value="<?php echo __("Import", 'bwg_back'); ?>" onclick="bwg_update_shortcode()" />
1046
  <div>
1047
  <input type="text" size="55" id="bwg_shortcode" name="bwg_shortcode" value='<?php echo $tagtext; ?>' onclick="bwg_onKeyDown(event)" />
1048
+ <b><?php _e("Shortcode", 'bwg_back'); ?></b>
1049
  </div>
1050
  <div>
1051
  <input type="text" size="55" id="bwg_function" name="bwg_function" value="<?php echo $tagfunction; ?>" onclick="spider_select_value(this)" readonly="readonly" />
1052
+ <b><?php _e("PHP function", 'bwg_back'); ?></b>
1053
  </div>
1054
  </span>
1055
  </div>
1094
  if (params['id']) {
1095
  shortcode_id = params['id'];
1096
  if(typeof shortcodes[shortcode_id] === 'undefined'){
1097
+ alert("<?php _e('There is No shortcode with such', 'bwg_back'); ?> ID!");
1098
  bwg_gallery_type('thumbnails');
1099
  return 0;
1100
  }
1829
  jQuery(document).ready(function () {
1830
  bwg_loadmore();
1831
  });
1832
+ var bwg_image_thumb = '<?php _e('Image thumbnail dimensions:', 'bwg_back') ?>';
1833
+ var bwg_image_thumb_width = '<?php _e('Image thumbnail width: ', 'bwg_back') ?>';
1834
+ var bwg_max_column = '<?php _e('Max. number of image columns:', 'bwg_back') ?>';
1835
+ var bwg_image_thumb_height = '<?php _e('Image thumbnail height:', 'bwg_back') ?>';
1836
  </script>
1837
  </body>
1838
  </html>
admin/views/BWGViewEditThumb.php CHANGED
@@ -152,7 +152,7 @@ class BWGViewEditThumb {
152
  }
153
  else {
154
  ?>
155
- <div class="thumb_message"><strong>You can't crop this type of image.</strong></div>
156
  <?php
157
  }
158
  }
@@ -221,10 +221,10 @@ class BWGViewEditThumb {
221
  </style>
222
  <?php
223
  if ($edit_type == 'crop') {
224
- ?><div class="thumb_message" id="croped_message"><strong>The thumbnail successfully croped.</strong></div><?php
225
  }
226
  else {
227
- ?><div class="thumb_message" id="thumb_message"><strong>Select the area for the thumbnail.</strong></div><?php
228
  }
229
  ?>
230
  <form method="post" id="crop_image" action="<?php echo $form_action; ?>" >
@@ -237,7 +237,7 @@ class BWGViewEditThumb {
237
  <tr>
238
  <td class="thumb_preview_td" colspan="2">
239
  <input type="checkbox" id="chb" onclick="spider_crop_ratio()" checked="checked">
240
- <label for="chb">Keep aspect ratio</label>
241
  </td>
242
  </tr>
243
  <tr>
@@ -710,31 +710,31 @@ class BWGViewEditThumb {
710
  <div class="cont_for_effect">
711
  <div class="effect_cont">
712
  <img class="effect" onclick="spider_rotate('grayscale', 'bwg_rotate_image')" src="<?php echo WD_BWG_URL . '/images/effects/grayscale.png'; ?>"/>
713
- <p class="effect_title">Grayscale</p>
714
  </div>
715
  <div class="effect_cont">
716
  <img class="effect" onclick="spider_rotate('negative', 'bwg_rotate_image')" src="<?php echo WD_BWG_URL . '/images/effects/negative.png'; ?>"/>
717
- <p class="effect_title">Negative</p>
718
  </div>
719
  <div class="effect_cont">
720
  <img class="effect" onclick="spider_rotate('remove', 'bwg_rotate_image')" src="<?php echo WD_BWG_URL . '/images/effects/remove.png'; ?>"/>
721
- <p class="effect_title">Removal</p>
722
  </div>
723
  <div class="effect_cont">
724
  <img class="effect" onclick="spider_rotate('sepia', 'bwg_rotate_image')" src="<?php echo WD_BWG_URL . '/images/effects/sepia.png'; ?>"/>
725
- <p class="effect_title">Sepia</p>
726
  </div>
727
  <div class="effect_cont">
728
  <img class="effect" onclick="spider_rotate('dark_slate_grey', 'bwg_rotate_image')" src="<?php echo WD_BWG_URL . '/images/effects/dark_slate_grey.png'; ?>"/>
729
- <p class="effect_title">Slate</p>
730
  </div>
731
  <div class="effect_cont">
732
  <img class="effect" onclick="spider_rotate('saturate', 'bwg_rotate_image')" src="<?php echo WD_BWG_URL . '/images/effects/saturate.png'; ?>"/>
733
- <p class="effect_title">Saturate</p>
734
  </div>
735
  </div>
736
  <div class="reset_cont">
737
- <a class="reset_img" onclick="if (confirm('Do you want to reset the image?')) spider_rotate('recover', 'bwg_rotate_image'); else return false; ">Reset image</a>
738
  </div>
739
  <div class="flip_cont" >
740
  <img title="Flip Both" class="effect" onclick="spider_rotate('both', 'bwg_rotate_image')" src="<?php echo WD_BWG_URL . '/images/effects/flip_both.png'; ?>"/>
@@ -760,9 +760,9 @@ class BWGViewEditThumb {
760
  <div class="brightness_part_1">
761
  <div class="brightness_butt">
762
  <div class="contForBrightness">
763
- <div class="brightness_title">Brightness</div>
764
  <img title="Press for brightness" class="brightnessEffect" onclick="spider_rotate('brightness', 'bwg_rotate_image')" src="<?php echo WD_BWG_URL . '/images/effects/brightness.png'; ?>" />
765
- <div class="tooltip_for_press">Press for result</div>
766
  </div>
767
  </div>
768
  <div class="cont_for_val">
@@ -785,9 +785,9 @@ class BWGViewEditThumb {
785
  </div>
786
  <div class="contrast_butt">
787
  <div class="contForContrast">
788
- <div class="contrast_title">Contrast</div>
789
  <img title="Press for Contrast" class="contrastEffect" onclick="spider_rotate('contrast', 'bwg_rotate_image')" src="<?php echo WD_BWG_URL . '/images/effects/contrast.png'; ?>" />
790
- <div class="tooltip_for_press_contrast">Press for result</div>
791
  </div>
792
  </div>
793
  </div>
152
  }
153
  else {
154
  ?>
155
+ <div class="thumb_message"><strong><?php _e("You can't crop this type of image.", 'bwg_back'); ?></strong></div>
156
  <?php
157
  }
158
  }
221
  </style>
222
  <?php
223
  if ($edit_type == 'crop') {
224
+ ?><div class="thumb_message" id="croped_message"><strong><?php _e("The thumbnail successfully croped.", 'bwg_back'); ?></strong></div><?php
225
  }
226
  else {
227
+ ?><div class="thumb_message" id="thumb_message"><strong><?php _e("Select the area for the thumbnail.", 'bwg_back'); ?></strong></div><?php
228
  }
229
  ?>
230
  <form method="post" id="crop_image" action="<?php echo $form_action; ?>" >
237
  <tr>
238
  <td class="thumb_preview_td" colspan="2">
239
  <input type="checkbox" id="chb" onclick="spider_crop_ratio()" checked="checked">
240
+ <label for="chb"><?php _e("Keep aspect ratio", 'bwg_back'); ?></label>
241
  </td>
242
  </tr>
243
  <tr>
710
  <div class="cont_for_effect">
711
  <div class="effect_cont">
712
  <img class="effect" onclick="spider_rotate('grayscale', 'bwg_rotate_image')" src="<?php echo WD_BWG_URL . '/images/effects/grayscale.png'; ?>"/>
713
+ <p class="effect_title"><?php _e("Grayscale", 'bwg_back'); ?></p>
714
  </div>
715
  <div class="effect_cont">
716
  <img class="effect" onclick="spider_rotate('negative', 'bwg_rotate_image')" src="<?php echo WD_BWG_URL . '/images/effects/negative.png'; ?>"/>
717
+ <p class="effect_title"><?php _e("Negative", 'bwg_back'); ?></p>
718
  </div>
719
  <div class="effect_cont">
720
  <img class="effect" onclick="spider_rotate('remove', 'bwg_rotate_image')" src="<?php echo WD_BWG_URL . '/images/effects/remove.png'; ?>"/>
721
+ <p class="effect_title"><?php _e("Removal", 'bwg_back'); ?></p>
722
  </div>
723
  <div class="effect_cont">
724
  <img class="effect" onclick="spider_rotate('sepia', 'bwg_rotate_image')" src="<?php echo WD_BWG_URL . '/images/effects/sepia.png'; ?>"/>
725
+ <p class="effect_title"><?php _e("Sepia", 'bwg_back'); ?></p>
726
  </div>
727
  <div class="effect_cont">
728
  <img class="effect" onclick="spider_rotate('dark_slate_grey', 'bwg_rotate_image')" src="<?php echo WD_BWG_URL . '/images/effects/dark_slate_grey.png'; ?>"/>
729
+ <p class="effect_title"><?php _e("Slate", 'bwg_back'); ?></p>
730
  </div>
731
  <div class="effect_cont">
732
  <img class="effect" onclick="spider_rotate('saturate', 'bwg_rotate_image')" src="<?php echo WD_BWG_URL . '/images/effects/saturate.png'; ?>"/>
733
+ <p class="effect_title"><?php _e("Saturate", 'bwg_back'); ?></p>
734
  </div>
735
  </div>
736
  <div class="reset_cont">
737
+ <a class="reset_img" onclick="if (confirm('<?php _e("Do you want to reset the image?", 'bwg_back'); ?>')) spider_rotate('recover', 'bwg_rotate_image'); else return false; "><?php _e("Reset image", 'bwg_back'); ?></a>
738
  </div>
739
  <div class="flip_cont" >
740
  <img title="Flip Both" class="effect" onclick="spider_rotate('both', 'bwg_rotate_image')" src="<?php echo WD_BWG_URL . '/images/effects/flip_both.png'; ?>"/>
760
  <div class="brightness_part_1">
761
  <div class="brightness_butt">
762
  <div class="contForBrightness">
763
+ <div class="brightness_title"><?php _e("Brightness", 'bwg_back'); ?></div>
764
  <img title="Press for brightness" class="brightnessEffect" onclick="spider_rotate('brightness', 'bwg_rotate_image')" src="<?php echo WD_BWG_URL . '/images/effects/brightness.png'; ?>" />
765
+ <div class="tooltip_for_press"><?php _e("Press for result", 'bwg_back'); ?></div>
766
  </div>
767
  </div>
768
  <div class="cont_for_val">
785
  </div>
786
  <div class="contrast_butt">
787
  <div class="contForContrast">
788
+ <div class="contrast_title"><?php _e("Contrast", 'bwg_back'); ?></div>
789
  <img title="Press for Contrast" class="contrastEffect" onclick="spider_rotate('contrast', 'bwg_rotate_image')" src="<?php echo WD_BWG_URL . '/images/effects/contrast.png'; ?>" />
790
+ <div class="tooltip_for_press_contrast"><?php _e("Press for result", 'bwg_back'); ?></div>
791
  </div>
792
  </div>
793
  </div>
admin/views/BWGViewGalleries_bwg.php CHANGED
@@ -37,8 +37,8 @@ class BWGViewGalleries_bwg {
37
  ?>
38
  <div style="clear: both; float: left; width: 99%;">
39
  <div style="float:left; font-size: 14px; font-weight: bold;">
40
- This section allows you to create, edit and delete galleries.
41
- <a style="color: blue; text-decoration: none;" target="_blank" href="https://web-dorado.com/wordpress-gallery-guide-step-2.html">Read More in User Manual</a>
42
  </div>
43
  <div style="float: right; text-align: right;">
44
  <a style="text-decoration: none;" target="_blank" href="https://web-dorado.com/files/fromPhotoGallery.php">
@@ -50,29 +50,29 @@ class BWGViewGalleries_bwg {
50
  <?php wp_nonce_field( 'galleries_bwg', 'bwg_nonce' ); ?>
51
  <span class="gallery-icon"></span>
52
  <h2>
53
- Galleries
54
  <a href="" class="add-new-h2" onclick="spider_set_input_value('task', 'add');
55
- spider_form_submit(event, 'galleries_form')">Add new</a>
56
  </h2>
57
- <div id="draganddrop" class="updated" style="display:none;"><strong><p>Changes made in this table should be saved.</p></strong></div>
58
  <div class="buttons_div">
59
  <span class="button-secondary non_selectable" onclick="spider_check_all_items()">
60
  <input type="checkbox" id="check_all_items" name="check_all_items" onclick="spider_check_all_items_checkbox()" style="margin: 0; vertical-align: middle;" />
61
- <span style="vertical-align: middle;">Select All</span>
62
  </span>
63
- <input id="show_hide_weights" class="button-secondary" type="button" onclick="spider_show_hide_weights();return false;" value="Hide order column" />
64
- <input class="button-secondary" type="submit" onclick="spider_set_input_value('task', 'save_order')" value="Save Order" />
65
- <input class="button-secondary" type="submit" onclick="spider_set_input_value('task', 'publish_all')" value="Publish" />
66
- <input class="button-secondary" type="submit" onclick="spider_set_input_value('task', 'unpublish_all')" value="Unpublish" />
67
- <input class="button-secondary" type="submit" onclick="if (confirm('Do you want to delete selected items?')) {
68
  spider_set_input_value('task', 'delete_all');
69
  } else {
70
  return false;
71
- }" value="Delete" />
72
  </div>
73
  <div class="tablenav top">
74
  <?php
75
- WDWLibrary::search('Name', $search_value, 'galleries_form');
76
  WDWLibrary::html_page_nav($page_nav['total'], $pager++, $page_nav['limit'], 'galleries_form', $per_page);
77
  ?>
78
  </div>
@@ -88,13 +88,13 @@ class BWGViewGalleries_bwg {
88
  <span>ID</span><span class="sorting-indicator"></span>
89
  </a>
90
  </th>
91
- <th class="table_extra_large_col">Thumbnail</th>
92
  <th class="<?php if ($order_by == 'name') {echo $order_class;} ?>">
93
  <a onclick="spider_set_input_value('task', '');
94
  spider_set_input_value('order_by', 'name');
95
  spider_set_input_value('asc_or_desc', '<?php echo ((isset($_POST['asc_or_desc']) && isset($_POST['order_by']) && (esc_html(stripslashes($_POST['order_by'])) == 'name') && esc_html(stripslashes($_POST['asc_or_desc'])) == 'asc') ? 'desc' : 'asc'); ?>');
96
  spider_form_submit(event, 'galleries_form')" href="">
97
- <span>Name</span><span class="sorting-indicator"></span>
98
  </a>
99
  </th>
100
  <th class="<?php if ($order_by == 'slug') {echo $order_class;} ?>">
@@ -102,7 +102,7 @@ class BWGViewGalleries_bwg {
102
  spider_set_input_value('order_by', 'slug');
103
  spider_set_input_value('asc_or_desc', '<?php echo ((isset($_POST['asc_or_desc']) && isset($_POST['order_by']) && (esc_html(stripslashes($_POST['order_by'])) == 'slug') && esc_html(stripslashes($_POST['asc_or_desc'])) == 'asc') ? 'desc' : 'asc'); ?>');
104
  spider_form_submit(event, 'galleries_form')" href="">
105
- <span>Slug</span><span class="sorting-indicator"></span>
106
  </a>
107
  </th>
108
  <th class="<?php if ($order_by == 'display_name') {echo $order_class;} ?>">
@@ -110,16 +110,16 @@ class BWGViewGalleries_bwg {
110
  spider_set_input_value('order_by', 'display_name');
111
  spider_set_input_value('asc_or_desc', '<?php echo ((isset($_POST['asc_or_desc']) && isset($_POST['order_by']) && (esc_html(stripslashes($_POST['order_by'])) == 'display_name') && esc_html(stripslashes($_POST['asc_or_desc'])) == 'asc') ? 'desc' : 'asc'); ?>');
112
  spider_form_submit(event, 'galleries_form')" href="">
113
- <span>Author</span><span class="sorting-indicator"></span>
114
  </a>
115
  </th>
116
- <th class="table_large_col">Images count</th>
117
  <th id="th_order" class="table_medium_col <?php if ($order_by == 'order') {echo $order_class;} ?>">
118
  <a onclick="spider_set_input_value('task', '');
119
  spider_set_input_value('order_by', 'order');
120
  spider_set_input_value('asc_or_desc', '<?php echo ((isset($_POST['asc_or_desc']) && isset($_POST['order_by']) && (esc_html(stripslashes($_POST['order_by'])) == 'order') && esc_html(stripslashes($_POST['asc_or_desc'])) == 'asc') ? 'desc' : 'asc'); ?>');
121
  spider_form_submit(event, 'galleries_form')" href="">
122
- <span>Order</span><span class="sorting-indicator"></span>
123
  </a>
124
  </th>
125
  <th class="table_big_col <?php if ($order_by == 'published') {echo $order_class;} ?>">
@@ -127,11 +127,11 @@ class BWGViewGalleries_bwg {
127
  spider_set_input_value('order_by', 'published');
128
  spider_set_input_value('asc_or_desc', '<?php echo ((isset($_POST['asc_or_desc']) && isset($_POST['order_by']) && (esc_html(stripslashes($_POST['order_by'])) == 'published') && esc_html(stripslashes($_POST['asc_or_desc'])) == 'asc') ? 'desc' : 'asc'); ?>');
129
  spider_form_submit(event, 'galleries_form')" href="">
130
- <span>Published</span><span class="sorting-indicator"></span>
131
  </a>
132
  </th>
133
- <th class="table_big_col">Edit</th>
134
- <th class="table_big_col">Delete</th>
135
  </thead>
136
  <tbody id="tbody_arr">
137
  <?php
@@ -162,7 +162,7 @@ class BWGViewGalleries_bwg {
162
  spider_set_input_value('asc_or_desc', 'asc');
163
  spider_set_input_value('order_by', 'order');
164
  spider_set_input_value('current_id', '<?php echo $row_data->id; ?>');
165
- spider_form_submit(event, 'galleries_form')" href="" title="Edit"><?php echo $row_data->name; ?></a></td>
166
  <td><?php echo $row_data->slug; ?></td>
167
  <td><?php echo get_userdata($row_data->author)->display_name; ?></td>
168
  <td class="table_large_col"><?php echo $images_count; ?></td>
@@ -175,10 +175,10 @@ class BWGViewGalleries_bwg {
175
  spider_set_input_value('asc_or_desc', 'asc');
176
  spider_set_input_value('order_by', 'order');
177
  spider_set_input_value('current_id', '<?php echo $row_data->id; ?>');
178
- spider_form_submit(event, 'galleries_form')" href="">Edit</a></td>
179
  <td class="table_big_col"><a onclick="spider_set_input_value('task', 'delete');
180
  spider_set_input_value('current_id', '<?php echo $row_data->id; ?>');
181
- spider_form_submit(event, 'galleries_form')" href="">Delete</a></td>
182
  </tr>
183
  <?php
184
  $ids_string .= $row_data->id . ',';
@@ -208,15 +208,15 @@ class BWGViewGalleries_bwg {
208
  global $WD_BWG_UPLOAD_DIR;
209
  $row = $this->model->get_row_data($id);
210
  $option_row = $this->model->get_option_row_data();
211
- $page_title = (($id != 0) ? 'Edit gallery ' . $row->name : 'Create new gallery');
212
  $per_page = $this->model->per_page();
213
  $images_count = $this->model->get_images_count($id);
214
  ?>
215
  <div style="clear: both; float: left; width: 99%;">
216
  <div id="message_div" class="updated" style="display: none;"></div>
217
  <div style="float:left; font-size: 14px; font-weight: bold;">
218
- This section allows you to add/edit gallery.
219
- <a style="color: blue; text-decoration: none;" target="_blank" href="https://web-dorado.com/wordpress-gallery-guide-step-2.html">Read More in User Manual</a>
220
  </div>
221
  <div style="float: right; text-align: right;">
222
  <a style="text-decoration: none;" target="_blank" href="https://web-dorado.com/files/fromPhotoGallery.php">
@@ -351,7 +351,7 @@ class BWGViewGalleries_bwg {
351
  var a_crop = document.createElement('a');
352
  a_crop.setAttribute('class', "thickbox thickbox-preview");
353
  a_crop.setAttribute('onclick', "spider_set_href(this, '" + bwg_j + "', 'crop');");
354
- a_crop.innerHTML = "Crop";
355
  span_edit_crop.appendChild(a_crop);
356
  div_edit.innerHTML += " | ";
357
  var span_edit_rotate = document.createElement('span');
@@ -360,15 +360,15 @@ class BWGViewGalleries_bwg {
360
  var a_rotate = document.createElement('a');
361
  a_rotate.setAttribute('class', "thickbox thickbox-preview");
362
  a_rotate.setAttribute('onclick', "spider_set_href(this, '" + bwg_j + "', 'rotate');");
363
- a_rotate.innerHTML = "Edit";
364
  span_edit_rotate.appendChild(a_rotate);
365
  div_edit.innerHTML += " | "
366
  var span_edit_recover = document.createElement('span');
367
  span_edit_recover.setAttribute('class', "edit_thumb");
368
  div_edit.appendChild(span_edit_recover);
369
  var a_recover = document.createElement('a');
370
- a_recover.setAttribute('onclick', 'if (confirm("Do you want to reset the image?")) { spider_set_input_value("ajax_task", "recover"); spider_set_input_value("image_current_id", "' + bwg_j + '"); spider_ajax_save("galleries_form");} return false;');
371
- a_recover.innerHTML = "Reset";
372
  span_edit_recover.appendChild(a_recover);
373
  }
374
  var input_image_url = document.createElement('input');
@@ -472,7 +472,7 @@ class BWGViewGalleries_bwg {
472
  $query_url = wp_nonce_url( admin_url('admin-ajax.php'), 'addTags', 'bwg_nonce' );
473
  ?>
474
  a_tag.setAttribute('href', "<?php echo add_query_arg(array('action' => 'addTags', 'width' => '650', 'height' => '500', 'bwg_items_per_page' => $per_page), $query_url); ?>&image_id=" + bwg_j + "&TB_iframe=1");
475
- a_tag.innerHTML = 'Add tag';
476
  td_tag.appendChild(a_tag);
477
  var div_tag = document.createElement('div');
478
  div_tag.setAttribute('class', "tags_div");
@@ -518,7 +518,7 @@ class BWGViewGalleries_bwg {
518
  j_int++;
519
  bwg_j = 'pr_' + j_int;
520
  }
521
- jQuery("#show_hide_weights").val("Hide order column");
522
  spider_show_hide_weights();
523
  }
524
  </script>
@@ -532,29 +532,29 @@ class BWGViewGalleries_bwg {
532
  spider_set_input_value('page_number', '1');
533
  spider_set_input_value('ajax_task', 'ajax_save');
534
  spider_ajax_save('galleries_form');
535
- spider_set_input_value('task', 'save');" value="Save" />
536
  <input class="button-secondary" type="button" onclick="if (spider_check_required('name', 'Name')) {return false;};
537
  spider_set_input_value('ajax_task', 'ajax_apply');
538
- spider_ajax_save('galleries_form');" value="Apply" />
539
  <input class="button-secondary" type="submit" onclick="spider_set_input_value('page_number', '1');
540
- spider_set_input_value('task', 'cancel')" value="Cancel" />
541
  </div>
542
  <table style="clear:both;">
543
  <tbody>
544
  <tr>
545
- <td class="spider_label_galleries"><label for="name">Name: <span style="color:#FF0000;">*</span> </label></td>
546
  <td><input type="text" id="name" name="name" value="<?php echo $row->name; ?>" size="39" /></td>
547
  </tr>
548
  <tr>
549
- <td class="spider_label_galleries"><label for="slug">Slug: </label></td>
550
  <td><input type="text" id="slug" name="slug" value="<?php echo $row->slug; ?>" size="39" /></td>
551
  </tr>
552
  <tr>
553
- <td class="spider_label_galleries"><label for="gallery_type" >Gallery content type: </label></td>
554
  <td class="">
555
  <select id="gallery_type" style="width:150px;" onchange="bwg_gallery_type();">
556
- <option value="" selected="selected">Standard</option>
557
- <option value="instagram">Instagram only</option>
558
  </select>
559
  <input type="text" id="gallery_type_old" name="gallery_type_old" value="" style='display:none;'/>
560
  </td>
@@ -562,43 +562,43 @@ class BWGViewGalleries_bwg {
562
  </tbody>
563
  <tbody id="add_instagram_gallery" class="spider_free_version"><!-- /*use this in javascript*/-->
564
  <tr id='tr_gallery_source' style='display:none;'>
565
- <td class="spider_label_galleries"><label for="gallery_source" class="spider_free_version_label">Instagram username: </label></td>
566
- <td><input type="text" disabled="disabled" id="gallery_source" value="This option is disabled in free version." size="64" /></td>
567
  </tr>
568
  <tr id='tr_autogallery_image_number' style='display:none;'>
569
- <td class="spider_label_galleries"><label for="autogallery_image_number" class="spider_free_version_label">Number of Instagram recent posts to add to gallery: </label></td>
570
  <td><input disabled="disabled" type="number" id="autogallery_image_number" value="12" /></td>
571
  </tr>
572
  <tr id='tr_instagram_post_gallery' style='display:none'>
573
- <td class="spider_label_galleries"><label class="spider_free_version_label">Instagram embed type: </label></td>
574
  <td>
575
  <input disabled="disabled" type="radio" class="inputbox" id="instagram_post_gallery_0" checked="checked" value="0" >
576
- <label for="instagram_post_gallery_0">Content</label>&nbsp;
577
  <input disabled="disabled" type="radio" class="inputbox" id="instagram_post_gallery_1" value="1" >
578
- <label for="instagram_post_gallery_1">Whole post</label>
579
  </td>
580
  </tr>
581
  <tr id='tr_update_flag' style='display:none' >
582
- <td class="spider_label_galleries"><label class="spider_free_version_label">Gallery autoupdate option: </label></td>
583
  <td>
584
  <input disabled="disabled" type="radio" class="inputbox" id="update_flag_0" value="" >
585
- <label for="update_flag_0">No update</label>&nbsp;
586
  <input disabled="disabled" type="radio" class="inputbox" id="update_flag_1" value="add" >
587
- <label for="update_flag_1">Add new media, keep old ones published.</label>&nbsp;
588
  <input disabled="disabled" type="radio" class="inputbox" id="update_flag_2" checked="checked" value="replace" >
589
- <label for="update_flag_2">Add new media, unpublish old ones.</label>&nbsp;
590
  </td>
591
  </tr>
592
  <tr id='tr_instagram_gallery_add_button' style='display:none;' >
593
  <td class="spider_label_galleries"></td>
594
  <td>
595
- <input id="instagram_gallery_add_button" class="button-primary spider_free_version_button" type="button" onclick="" value="Add Instagram Gallery" />
596
  </td>
597
  </tr>
598
  </tbody>
599
  <tbody>
600
  <tr>
601
- <td class="spider_label_galleries"><label for="description">Description: </label></td>
602
  <td>
603
  <div style="width:500px;">
604
  <?php
@@ -617,20 +617,20 @@ class BWGViewGalleries_bwg {
617
  </td>
618
  </tr>
619
  <tr>
620
- <td class="spider_label_galleries"><label>Author: </label></td>
621
  <td><?php echo get_userdata($row->author)->display_name; ?></td>
622
  </tr>
623
  <tr>
624
- <td class="spider_label_galleries"><label>Published: </label></td>
625
  <td>
626
  <input type="radio" class="inputbox" id="published0" name="published" <?php echo (($row->published) ? '' : 'checked="checked"'); ?> value="0" >
627
- <label for="published0">No</label>
628
  <input type="radio" class="inputbox" id="published1" name="published" <?php echo (($row->published) ? 'checked="checked"' : ''); ?> value="1" >
629
- <label for="published1">Yes</label>
630
  </td>
631
  </tr>
632
  <tr>
633
- <td class="spider_label_galleries"><label for="url">Preview image: </label></td>
634
  <td>
635
  <?php
636
  $query_url = add_query_arg(array('action' => 'addImages', 'width' => '700', 'height' => '550', 'extensions' => 'jpg,jpeg,png,gif', 'callback' => 'bwg_add_preview_image'), admin_url('admin-ajax.php'));
@@ -643,7 +643,7 @@ class BWGViewGalleries_bwg {
643
  title="Add Preview Image"
644
  onclick="return false;"
645
  style="margin-bottom:5px; display:none;">
646
- Add Preview Image
647
  </a>
648
  <input type="hidden" id="preview_image" name="preview_image" value="<?php echo $row->preview_image; ?>" style="display:inline-block;"/>
649
  <img id="img_preview_image"
@@ -697,15 +697,15 @@ class BWGViewGalleries_bwg {
697
  $gallery_type = ($gallery_row->gallery_type == 'instagram' || $gallery_row->gallery_type == 'instagram_post') ? 'instagram' : '';
698
  $pager = 0;
699
  ?>
700
- <div id="draganddrop" class="updated" style="display:none;"><strong><p>Changes made in this table should be saved.</p></strong></div>
701
  <div class="buttons_div_left">
702
  <?php
703
  $query_url = add_query_arg(array('action' => 'addImages', 'width' => '700', 'height' => '550', 'extensions' => 'jpg,jpeg,png,gif', 'callback' => 'bwg_add_image'), admin_url('admin-ajax.php'));
704
  $query_url = wp_nonce_url( $query_url, 'addImages', 'bwg_nonce' );
705
  $query_url = add_query_arg(array( 'TB_iframe' => '1'), $query_url);
706
  ?>
707
- <a href="<?php echo $query_url; ?>" class="button-primary thickbox thickbox-preview" id="content-add_media" title="Add Images" onclick="return false;" style="margin-bottom:5px; <?php if($gallery_type !='') {echo 'display:none';} ?>" >
708
- Add Images
709
  </a>
710
  <?php
711
  $query_url = wp_nonce_url( admin_url('admin-ajax.php'), '', 'bwg_nonce' );
@@ -714,91 +714,91 @@ class BWGViewGalleries_bwg {
714
  <script>
715
  var ajax_url = "<?php echo $query_url; ?>"
716
  </script>
717
- <input id="show_add_embed" class="button-primary" type="button" onclick="jQuery('.opacity_add_embed').show(); jQuery('#add_embed_help').hide(); return false;" value="Embed Media" />
718
- <input id="show_bulk_embed" class="button-primary spider_free_version_button" type="button" onclick="jQuery('.opacity_bulk_embed').show(); return false;" value="Bulk Embed" />
719
  </div>
720
  <div class="buttons_div_right">
721
  <span class="button-secondary non_selectable" onclick="spider_check_all_items()">
722
  <input type="checkbox" id="check_all_items" name="check_all_items" onclick="spider_check_all_items_checkbox()" style="margin: 0; vertical-align: middle;" />
723
- <span style="vertical-align: middle;">Select All</span>
724
  </span>
725
- <input id="show_hide_weights" class="button-secondary" type="button" onclick="spider_show_hide_weights();return false;" value="Hide order column" />
726
  <input class="button-primary" id='spider_setwatermark_button' type="submit" onclick="spider_set_input_value('ajax_task', 'image_set_watermark');
727
  spider_ajax_save('galleries_form');
728
- return false;" value="Set Watermark" />
729
- <input class="button-secondary" id='spider_resize_button' type="submit" onclick="jQuery('.opacity_resize_image').show(); return false;" value="Resize" />
730
- <input class="button-secondary" type="submit" onclick="spider_set_input_value('ajax_task', 'resize_image_thumb'); spider_ajax_save('galleries_form');return false;" value="Recreate Thumbnail" />
731
  <input class="button-secondary" id='spider_reset_button' type="submit" onclick="spider_set_input_value('ajax_task', 'image_recover_all');
732
  spider_ajax_save('galleries_form');
733
- return false;" value="Reset" />
734
  <?php
735
  $query_url = wp_nonce_url( admin_url('admin-ajax.php'), 'addTags', 'bwg_nonce' );
736
  $query_url = add_query_arg(array('action' => 'addTags', 'width' => '650', 'height' => '500', 'bwg_items_per_page' => $per_page ), $query_url);
737
  ?>
738
- <a onclick="return bwg_check_checkboxes();" href="<?php echo $query_url; ?>&TB_iframe=1" class="button-primary thickbox thickbox-preview">Add tag</a>
739
 
740
 
741
  <input class="button-secondary" type="submit" onclick="spider_set_input_value('ajax_task', 'image_publish_all');
742
  spider_ajax_save('galleries_form');
743
- return false;" value="Publish" />
744
  <input class="button-secondary" type="submit" onclick="spider_set_input_value('ajax_task', 'image_unpublish_all');
745
  spider_ajax_save('galleries_form');
746
- return false;" value="Unpublish" />
747
- <input class="button-secondary spider_delete_button" type="submit" onclick="if (confirm('Do you want to delete selected items?')) {
748
  spider_set_input_value('ajax_task', 'image_delete_all');
749
  spider_ajax_save('galleries_form');
750
  return false;
751
  } else {
752
  return false;
753
- }" value="Delete" />
754
  </div>
755
  <div class="opacity_resize_image opacity_add_embed opacity_bulk_embed bwg_opacity_media" onclick="jQuery('.opacity_add_embed').hide(); jQuery('.opacity_bulk_embed').hide(); jQuery('.opacity_resize_image').hide();"></div>
756
  <div id="add_embed" class="opacity_add_embed bwg_add_embed">
757
  <input type="text" id="embed_url" name="embed_url" value="" />
758
- <input class="button-primary" type="button" onclick="if (bwg_get_embed_info('embed_url')) {jQuery('.opacity_add_embed').hide();} return false;" value="Add to gallery" />
759
- <input class="button-secondary" type="button" onclick="jQuery('.opacity_add_embed').hide(); return false;" value="Cancel" />
760
  <div class="spider_description">
761
- <p>Enter YouTube, Vimeo, Instagram, Flickr or Dailymotion URL here. <a onclick="jQuery('#add_embed_help').show();" style='text-decoration: underline; color:blue; cursor: pointer;'>Help</a></p>
762
  </div>
763
  <div id='add_embed_help' class= "opacity_add_embed bwg_add_embed" style="display:none;">
764
- <p style="text-align:right; margin-top:0px;"><a onclick="jQuery('#add_embed_help').hide();" style="text-decoration: underline; color:blue; cursor: pointer; ">Close</a></p>
765
- <p><b>Youtube</b> URL example: <i style="">https://www.youtube.com/watch?v=fa4RLjE-yM8</i></p>
766
- <p><b>Vimeo</b> URL example: <i style="">http://vimeo.com/8110647</i></p>
767
- <p><b>Instagram</b> URL example: <i style="">http://instagram.com/p/ykvv0puS4u</i>. Add "<i style="text-decoration:underline;">post</i>" to the end of URL if you want to embed the whole Instagram post, not only its content.</p>
768
- <p><b>Flickr</b> URL example: <i style="">https://www.flickr.com/photos/sui-fong/15250186998/in/gallery-flickr-72157648726328108/</i></p>
769
- <p><b>Dailymotion</b> URL example: <i style="">http://www.dailymotion.com/video/xexaq0_frank-sinatra-strangers-in-the-nigh_music</i></p>
770
  </div>
771
  </div>
772
  <div id="bulk_embed" class="opacity_bulk_embed bwg_bulk_embed">
773
- <input class="button-secondary" type="button" onclick="jQuery('.opacity_bulk_embed').hide(); jQuery('#opacity_div').hide(); jQuery('#loading_div').hide(); return false;" value="Cancel" style="float:right; margin-left:5px;"/>
774
- <input class="button-primary spider_free_version_button" type="button" value="Add to gallery" style="float:right; margin-left:5px;"/>
775
  <div class="spider_description"></div>
776
  <table class="spider_free_version">
777
  <thead>
778
  <tr>
779
- <td class="spider_label_galleries"><label for="bulk_embed_from" class="spider_free_version_label">Bulk embed from: </label></td>
780
  <td>
781
- <input type="radio" disabled="disabled" class="inputbox" id="bulk_embed_from_instagram" onclick="jQuery('#instagram_bulk_params').show();" checked="checked" value="instagram" >
782
- <label for="bulk_embed_from_instagram" class="spider_free_version_label">Instagram</label>&nbsp;
783
  </td>
784
  </tr>
785
  </thead>
786
  <tbody id="instagram_bulk_params">
787
  <tr id='popup_tr_instagram_gallery_source' style='display:table-row'>
788
- <td class="spider_label_galleries"><label for="popup_instagram_gallery_source" class="spider_free_version_label">Instagram username: </label></td>
789
- <td class="spider_free_version_label"><input type="text" id="popup_instagram_gallery_source" disabled="disabled" value="Bulk embed from Instagram is disabled in free version" size="64" /></td>
790
  </tr>
791
  <tr id='popup_tr_instagram_image_number' style='display:table-row'>
792
- <td class="spider_label_galleries"><label for="popup_instagram_image_number" class="spider_free_version_label">Number of Instagram recent posts to add to gallery: </label></td>
793
  <td><input type="number" disabled="disabled" id="popup_instagram_image_number" value="12" /></td>
794
  </tr>
795
  <tr id='popup_tr_instagram_post_gallery' style='display:table-row'>
796
- <td class="spider_label_galleries"><label class="spider_free_version_label">Instagram embed type: </label></td>
797
  <td class="spider_free_version_label">
798
  <input type="radio" disabled="disabled" class="inputbox" id="popup_instagram_post_gallery_0" checked="checked" value="0" >
799
- <label for="popup_instagram_post_gallery_0" class="spider_free_version_label">Content</label>&nbsp;
800
  <input type="radio" disabled="disabled" class="inputbox" id="popup_instagram_post_gallery_1" value="1" >
801
- <label for="popup_instagram_post_gallery_1" class="spider_free_version_label">Whole post</label>
802
  </td>
803
  <tr>
804
  </tbody>
@@ -807,19 +807,19 @@ class BWGViewGalleries_bwg {
807
 
808
  </div>
809
  <div id="" class="opacity_resize_image bwg_resize_image">
810
- Resize images to:
811
  <input type="text" name="image_width" id="image_width" value="1600" /> x
812
  <input type="text" name="image_height" id="image_height" value="1200" /> px
813
  <input class="button-primary" type="button" onclick="spider_set_input_value('ajax_task', 'image_resize');
814
  spider_ajax_save('galleries_form');
815
  jQuery('.opacity_resize_image').hide();
816
- return false;" value="Resize" />
817
- <input class="button-secondary" type="button" onclick="jQuery('.opacity_resize_image').hide(); return false;" value="Cancel" />
818
- <div class="spider_description">The maximum size of resized image.</div>
819
  </div>
820
  <div class="tablenav top">
821
  <?php
822
- WDWLibrary::ajax_search('Filename', $search_value, 'galleries_form');
823
  WDWLibrary::ajax_html_page_nav($page_nav['total'], $page_nav['limit'], 'galleries_form', $per_page, $pager++);
824
  ?>
825
  </div>
@@ -829,13 +829,13 @@ class BWGViewGalleries_bwg {
829
  <th class="check-column table_small_col"></th>
830
  <th class="manage-column column-cb check-column table_small_col"><input id="check_all" type="checkbox" onclick="spider_check_all(this)" style="margin:0;" /></th>
831
  <th class="table_small_col">#</th>
832
- <th class="table_extra_large_col">Thumbnail</th>
833
  <th class="table_extra_large_col <?php if ($image_order_by == 'filename') {echo $order_class;} ?>">
834
  <a onclick="spider_set_input_value('task', '');
835
  spider_set_input_value('image_order_by', 'filename');
836
  spider_set_input_value('image_asc_or_desc', '<?php echo ($image_order_by == 'filename' && $image_asc_or_desc == 'asc') ? 'desc' : 'asc'; ?>');
837
  spider_ajax_save('galleries_form');">
838
- <span>Filename</span><span class="sorting-indicator"></span>
839
  </a>
840
  </th>
841
  <th class="table_extra_large_col <?php if ($image_order_by == 'alt') {echo $order_class;} ?>">
@@ -843,7 +843,7 @@ class BWGViewGalleries_bwg {
843
  spider_set_input_value('image_order_by', 'alt');
844
  spider_set_input_value('image_asc_or_desc', '<?php echo ($image_order_by == 'alt' && $image_asc_or_desc == 'asc') ? 'desc' : 'asc'; ?>');
845
  spider_ajax_save('galleries_form');">
846
- <span>Alt/Title<?php if ($option_row->thumb_click_action != 'open_lightbox') { ?><br />Redirect URL<?php } ?></span><span class="sorting-indicator"></span>
847
  </a>
848
  </th>
849
  <th class="table_extra_large_col <?php if ($image_order_by == 'description') {echo $order_class;} ?>">
@@ -851,16 +851,16 @@ class BWGViewGalleries_bwg {
851
  spider_set_input_value('image_order_by', 'description');
852
  spider_set_input_value('image_asc_or_desc', '<?php echo ($image_order_by == 'description' && $image_asc_or_desc == 'asc') ? 'desc' : 'asc'; ?>');
853
  spider_ajax_save('galleries_form');">
854
- <span>Description</span><span class="sorting-indicator"></span>
855
  </a>
856
  </th>
857
- <th class="table_extra_large_col">Tags</th>
858
  <th id="th_order" class="table_medium_col <?php if ($image_order_by == 'order') {echo $order_class;} ?>">
859
  <a onclick="spider_set_input_value('task', '');
860
  spider_set_input_value('image_order_by', 'order');
861
  spider_set_input_value('image_asc_or_desc', '<?php echo ($image_order_by == 'order' && $image_asc_or_desc == 'asc') ? 'desc' : 'asc'; ?>');
862
  spider_ajax_save('galleries_form');">
863
- <span>Order</span><span class="sorting-indicator"></span>
864
  </a>
865
  </th>
866
  <th class="table_big_col <?php if ($image_order_by == 'published') {echo $order_class;} ?>">
@@ -868,10 +868,10 @@ class BWGViewGalleries_bwg {
868
  spider_set_input_value('image_order_by', 'published');
869
  spider_set_input_value('image_asc_or_desc', '<?php echo ($image_order_by == 'published' && $image_asc_or_desc == 'asc') ? 'desc' : 'asc'; ?>');
870
  spider_ajax_save('galleries_form');">
871
- <span>Published</span><span class="sorting-indicator"></span>
872
  </a>
873
  </th>
874
- <th class="table_big_col">Delete</th>
875
  </thead>
876
  <tbody id="tbody_arr">
877
  <?php
@@ -902,10 +902,10 @@ class BWGViewGalleries_bwg {
902
  <div class="filename" id="filename_<?php echo $row_data->id; ?>">
903
  <strong><a title="<?php echo $row_data->alt; ?>" class="spider_word_wrap thickbox thickbox-preview" href="<?php echo $query_url ; ?>"><?php echo $row_data->filename; ?></a></strong>
904
  </div>
905
- <div class="fileDescription" title="Date modified" id="date_modified_<?php echo $row_data->id; ?>"><?php echo date("d F Y, H:i", strtotime($row_data->date)); ?></div>
906
- <div class="fileDescription" title="Image Resolution" id="fileresolution_<?php echo $row_data->id; ?>"><?php echo $row_data->resolution; ?></div>
907
- <div class="fileDescription" title="Image size" id="filesize_<?php echo $row_data->id; ?>"><?php echo $row_data->size; ?></div>
908
- <div class="fileDescription" title="Type" id="filetype_<?php echo $row_data->id; ?>"><?php echo $row_data->filetype; ?></div>
909
  <?php
910
  if (!$is_embed) {
911
  ?>
@@ -915,19 +915,19 @@ class BWGViewGalleries_bwg {
915
  $query_url = wp_nonce_url( $query_url, 'editThumb', 'bwg_nonce' );
916
  $query_url = add_query_arg(array('TB_iframe' => '1'), $query_url);
917
  ?>
918
- <span class="edit_thumb"><a class="thickbox thickbox-preview" href="<?php echo $query_url; ?>">Crop</a></span> |
919
  <?php
920
  $query_url = add_query_arg(array('action' => 'editThumb', 'type' => 'rotate', 'image_id' => $row_data->id, 'width' => '800', 'height' => '500'), admin_url('admin-ajax.php'));
921
  $query_url = wp_nonce_url( $query_url, 'editThumb', 'bwg_nonce' );
922
  $query_url = add_query_arg(array('TB_iframe' => '1'), $query_url);
923
  ?>
924
- <span class="edit_thumb"><a class="thickbox thickbox-preview" href="<?php echo $query_url; ?>">Edit</a></span> |
925
- <span class="edit_thumb"><a onclick="if (confirm('Do you want to reset the image?')) {
926
  spider_set_input_value('ajax_task', 'recover');
927
  spider_set_input_value('image_current_id', '<?php echo $row_data->id; ?>');
928
  spider_ajax_save('galleries_form');
929
  }
930
- return false;">Reset</a></span>
931
  </div>
932
  <?php } ?>
933
  <input type="hidden" id="image_url_<?php echo $row_data->id; ?>" name="image_url_<?php echo $row_data->id; ?>" value="<?php echo $row_data->image_url; ?>" />
@@ -952,7 +952,7 @@ class BWGViewGalleries_bwg {
952
  $query_url = wp_nonce_url( admin_url('admin-ajax.php'), 'addTags', 'bwg_nonce' );
953
  $query_url = add_query_arg(array('action' => 'addTags', 'image_id' => $row_data->id, 'width' => '650', 'height' => '500', 'bwg_items_per_page' => $per_page, 'TB_iframe' => '1'), $query_url);
954
  ?>
955
- <a href="<?php echo $query_url; ?>" class="button button-small button-primary thickbox thickbox-preview">Add tag</a>
956
  <div class="tags_div" id="tags_div_<?php echo $row_data->id; ?>">
957
  <?php
958
  $tags_id_string = '';
@@ -977,7 +977,7 @@ class BWGViewGalleries_bwg {
977
  spider_ajax_save('galleries_form');"><img src="<?php echo WD_BWG_URL . '/images/' . $published_image . '.png'; ?>"></img></a></td>
978
  <td class="table_big_col spider_delete_button" ><a onclick="spider_set_input_value('ajax_task', 'image_delete');
979
  spider_set_input_value('image_current_id', '<?php echo $row_data->id; ?>');
980
- spider_ajax_save('galleries_form');">Delete</a></td>
981
  </tr>
982
  <?php
983
  $ids_string .= $row_data->id . ',';
37
  ?>
38
  <div style="clear: both; float: left; width: 99%;">
39
  <div style="float:left; font-size: 14px; font-weight: bold;">
40
+ <?php _e("This section allows you to create, edit and delete galleries.", 'bwg_back'); ?>
41
+ <a style="color: blue; text-decoration: none;" target="_blank" href="https://web-dorado.com/wordpress-gallery-guide-step-2.html"><?php _e("Read More in User Manual", 'bwg_back'); ?></a>
42
  </div>
43
  <div style="float: right; text-align: right;">
44
  <a style="text-decoration: none;" target="_blank" href="https://web-dorado.com/files/fromPhotoGallery.php">
50
  <?php wp_nonce_field( 'galleries_bwg', 'bwg_nonce' ); ?>
51
  <span class="gallery-icon"></span>
52
  <h2>
53
+ <?php _e("Galleries", 'bwg_back'); ?>
54
  <a href="" class="add-new-h2" onclick="spider_set_input_value('task', 'add');
55
+ spider_form_submit(event, 'galleries_form')"><?php _e("Add new", 'bwg_back'); ?></a>
56
  </h2>
57
+ <div id="draganddrop" class="updated" style="display:none;"><strong><p><?php _e("Changes made in this table should be saved.", 'bwg_back'); ?></p></strong></div>
58
  <div class="buttons_div">
59
  <span class="button-secondary non_selectable" onclick="spider_check_all_items()">
60
  <input type="checkbox" id="check_all_items" name="check_all_items" onclick="spider_check_all_items_checkbox()" style="margin: 0; vertical-align: middle;" />
61
+ <span style="vertical-align: middle;"><?php _e("Select All", 'bwg_back'); ?></span>
62
  </span>
63
+ <input id="show_hide_weights" class="button-secondary" type="button" onclick="spider_show_hide_weights();return false;" value="<?php _e("Hide order column", 'bwg_back'); ?>" />
64
+ <input class="button-secondary" type="submit" onclick="spider_set_input_value('task', 'save_order')" value="<?php _e("Save Order", 'bwg_back'); ?>" />
65
+ <input class="button-secondary" type="submit" onclick="spider_set_input_value('task', 'publish_all')" value="<?php _e("Publish", 'bwg_back'); ?>" />
66
+ <input class="button-secondary" type="submit" onclick="spider_set_input_value('task', 'unpublish_all')" value="<?php _e("Unpublish", 'bwg_back'); ?>" />
67
+ <input class="button-secondary" type="submit" onclick="if (confirm('<?php _e("Do you want to delete selected items?", 'bwg_back'); ?>')) {
68
  spider_set_input_value('task', 'delete_all');
69
  } else {
70
  return false;
71
+ }" value="<?php _e("Delete", 'bwg_back'); ?>" />
72
  </div>
73
  <div class="tablenav top">
74
  <?php
75
+ WDWLibrary::search(__("Name", 'bwg_back'), $search_value, 'galleries_form');
76
  WDWLibrary::html_page_nav($page_nav['total'], $pager++, $page_nav['limit'], 'galleries_form', $per_page);
77
  ?>
78
  </div>
88
  <span>ID</span><span class="sorting-indicator"></span>
89
  </a>
90
  </th>
91
+ <th class="table_extra_large_col"><?php _e("Thumbnail", 'bwg_back'); ?></th>
92
  <th class="<?php if ($order_by == 'name') {echo $order_class;} ?>">
93
  <a onclick="spider_set_input_value('task', '');
94
  spider_set_input_value('order_by', 'name');
95
  spider_set_input_value('asc_or_desc', '<?php echo ((isset($_POST['asc_or_desc']) && isset($_POST['order_by']) && (esc_html(stripslashes($_POST['order_by'])) == 'name') && esc_html(stripslashes($_POST['asc_or_desc'])) == 'asc') ? 'desc' : 'asc'); ?>');
96
  spider_form_submit(event, 'galleries_form')" href="">
97
+ <span><?php _e("Name", 'bwg_back'); ?></span><span class="sorting-indicator"></span>
98
  </a>
99
  </th>
100
  <th class="<?php if ($order_by == 'slug') {echo $order_class;} ?>">
102
  spider_set_input_value('order_by', 'slug');
103
  spider_set_input_value('asc_or_desc', '<?php echo ((isset($_POST['asc_or_desc']) && isset($_POST['order_by']) && (esc_html(stripslashes($_POST['order_by'])) == 'slug') && esc_html(stripslashes($_POST['asc_or_desc'])) == 'asc') ? 'desc' : 'asc'); ?>');
104
  spider_form_submit(event, 'galleries_form')" href="">
105
+ <span><?php _e("Slug", 'bwg_back'); ?></span><span class="sorting-indicator"></span>
106
  </a>
107
  </th>
108
  <th class="<?php if ($order_by == 'display_name') {echo $order_class;} ?>">
110
  spider_set_input_value('order_by', 'display_name');
111
  spider_set_input_value('asc_or_desc', '<?php echo ((isset($_POST['asc_or_desc']) && isset($_POST['order_by']) && (esc_html(stripslashes($_POST['order_by'])) == 'display_name') && esc_html(stripslashes($_POST['asc_or_desc'])) == 'asc') ? 'desc' : 'asc'); ?>');
112
  spider_form_submit(event, 'galleries_form')" href="">
113
+ <span><?php _e("Author", 'bwg_back'); ?></span><span class="sorting-indicator"></span>
114
  </a>
115
  </th>
116
+ <th class="table_large_col"><?php _e("Images count", 'bwg_back'); ?></th>
117
  <th id="th_order" class="table_medium_col <?php if ($order_by == 'order') {echo $order_class;} ?>">
118
  <a onclick="spider_set_input_value('task', '');
119
  spider_set_input_value('order_by', 'order');
120
  spider_set_input_value('asc_or_desc', '<?php echo ((isset($_POST['asc_or_desc']) && isset($_POST['order_by']) && (esc_html(stripslashes($_POST['order_by'])) == 'order') && esc_html(stripslashes($_POST['asc_or_desc'])) == 'asc') ? 'desc' : 'asc'); ?>');
121
  spider_form_submit(event, 'galleries_form')" href="">
122
+ <span><?php _e("Order", 'bwg_back'); ?></span><span class="sorting-indicator"></span>
123
  </a>
124
  </th>
125
  <th class="table_big_col <?php if ($order_by == 'published') {echo $order_class;} ?>">
127
  spider_set_input_value('order_by', 'published');
128
  spider_set_input_value('asc_or_desc', '<?php echo ((isset($_POST['asc_or_desc']) && isset($_POST['order_by']) && (esc_html(stripslashes($_POST['order_by'])) == 'published') && esc_html(stripslashes($_POST['asc_or_desc'])) == 'asc') ? 'desc' : 'asc'); ?>');
129
  spider_form_submit(event, 'galleries_form')" href="">
130
+ <span><?php _e("Published", 'bwg_back'); ?></span><span class="sorting-indicator"></span>
131
  </a>
132
  </th>
133
+ <th class="table_big_col"><?php _e("Edit", 'bwg_back'); ?></th>
134
+ <th class="table_big_col"><?php _e("Delete", 'bwg_back'); ?></th>
135
  </thead>
136
  <tbody id="tbody_arr">
137
  <?php
162
  spider_set_input_value('asc_or_desc', 'asc');
163
  spider_set_input_value('order_by', 'order');
164
  spider_set_input_value('current_id', '<?php echo $row_data->id; ?>');
165
+ spider_form_submit(event, 'galleries_form')" href="" title="<?php _e("Edit", 'bwg_back'); ?>"><?php echo $row_data->name; ?></a></td>
166
  <td><?php echo $row_data->slug; ?></td>
167
  <td><?php echo get_userdata($row_data->author)->display_name; ?></td>
168
  <td class="table_large_col"><?php echo $images_count; ?></td>
175
  spider_set_input_value('asc_or_desc', 'asc');
176
  spider_set_input_value('order_by', 'order');
177
  spider_set_input_value('current_id', '<?php echo $row_data->id; ?>');
178
+ spider_form_submit(event, 'galleries_form')" href=""><?php _e("Edit", 'bwg_back'); ?></a></td>
179
  <td class="table_big_col"><a onclick="spider_set_input_value('task', 'delete');
180
  spider_set_input_value('current_id', '<?php echo $row_data->id; ?>');
181
+ spider_form_submit(event, 'galleries_form')" href=""><?php _e("Delete", 'bwg_back'); ?></a></td>
182
  </tr>
183
  <?php
184
  $ids_string .= $row_data->id . ',';
208
  global $WD_BWG_UPLOAD_DIR;
209
  $row = $this->model->get_row_data($id);
210
  $option_row = $this->model->get_option_row_data();
211
+ $page_title = (($id != 0) ? __("Edit gallery ", 'bwg_back'). $row->name : __("Create new gallery", 'bwg_back'));
212
  $per_page = $this->model->per_page();
213
  $images_count = $this->model->get_images_count($id);
214
  ?>
215
  <div style="clear: both; float: left; width: 99%;">
216
  <div id="message_div" class="updated" style="display: none;"></div>
217
  <div style="float:left; font-size: 14px; font-weight: bold;">
218
+ <?php _e("This section allows you to add/edit gallery.", 'bwg_back'); ?>
219
+ <a style="color: blue; text-decoration: none;" target="_blank" href="https://web-dorado.com/wordpress-gallery-guide-step-2.html"><?php _e("Read More in User Manual", 'bwg_back'); ?></a>
220
  </div>
221
  <div style="float: right; text-align: right;">
222
  <a style="text-decoration: none;" target="_blank" href="https://web-dorado.com/files/fromPhotoGallery.php">
351
  var a_crop = document.createElement('a');
352
  a_crop.setAttribute('class', "thickbox thickbox-preview");
353
  a_crop.setAttribute('onclick', "spider_set_href(this, '" + bwg_j + "', 'crop');");
354
+ a_crop.innerHTML = "<?php _e("Crop", 'bwg_back'); ?>";
355
  span_edit_crop.appendChild(a_crop);
356
  div_edit.innerHTML += " | ";
357
  var span_edit_rotate = document.createElement('span');
360
  var a_rotate = document.createElement('a');
361
  a_rotate.setAttribute('class', "thickbox thickbox-preview");
362
  a_rotate.setAttribute('onclick', "spider_set_href(this, '" + bwg_j + "', 'rotate');");
363
+ a_rotate.innerHTML = "<?php _e("Edit", 'bwg_back'); ?>";
364
  span_edit_rotate.appendChild(a_rotate);
365
  div_edit.innerHTML += " | "
366
  var span_edit_recover = document.createElement('span');
367
  span_edit_recover.setAttribute('class', "edit_thumb");
368
  div_edit.appendChild(span_edit_recover);
369
  var a_recover = document.createElement('a');
370
+ a_recover.setAttribute('onclick', 'if (confirm("<?php _e("Do you want to reset the image?", 'bwg_back'); ?>")) { spider_set_input_value("ajax_task", "recover"); spider_set_input_value("image_current_id", "' + bwg_j + '"); spider_ajax_save("galleries_form");} return false;');
371
+ a_recover.innerHTML = "<?php _e("Reset", 'bwg_back'); ?>";
372
  span_edit_recover.appendChild(a_recover);
373
  }
374
  var input_image_url = document.createElement('input');
472
  $query_url = wp_nonce_url( admin_url('admin-ajax.php'), 'addTags', 'bwg_nonce' );
473
  ?>
474
  a_tag.setAttribute('href', "<?php echo add_query_arg(array('action' => 'addTags', 'width' => '650', 'height' => '500', 'bwg_items_per_page' => $per_page), $query_url); ?>&image_id=" + bwg_j + "&TB_iframe=1");
475
+ a_tag.innerHTML = '<?php _e("Add tag", 'bwg_back'); ?>';
476
  td_tag.appendChild(a_tag);
477
  var div_tag = document.createElement('div');
478
  div_tag.setAttribute('class', "tags_div");
518
  j_int++;
519
  bwg_j = 'pr_' + j_int;
520
  }
521
+ jQuery("#show_hide_weights").val("<?php _e("Hide order column", 'bwg_back'); ?>");
522
  spider_show_hide_weights();
523
  }
524
  </script>
532
  spider_set_input_value('page_number', '1');
533
  spider_set_input_value('ajax_task', 'ajax_save');
534
  spider_ajax_save('galleries_form');
535
+ spider_set_input_value('task', 'save');" value="<?php _e("Save", 'bwg_back'); ?>" />
536
  <input class="button-secondary" type="button" onclick="if (spider_check_required('name', 'Name')) {return false;};
537
  spider_set_input_value('ajax_task', 'ajax_apply');
538
+ spider_ajax_save('galleries_form');" value="<?php _e("Apply", 'bwg_back'); ?>" />
539
  <input class="button-secondary" type="submit" onclick="spider_set_input_value('page_number', '1');
540
+ spider_set_input_value('task', 'cancel')" value="<?php _e("Cancel", 'bwg_back'); ?>" />
541
  </div>
542
  <table style="clear:both;">
543
  <tbody>
544
  <tr>
545
+ <td class="spider_label_galleries"><label for="name"><?php _e("Name:", 'bwg_back'); ?> <span style="color:#FF0000;">*</span> </label></td>
546
  <td><input type="text" id="name" name="name" value="<?php echo $row->name; ?>" size="39" /></td>
547
  </tr>
548
  <tr>
549
+ <td class="spider_label_galleries"><label for="slug"><?php _e("Slug:", 'bwg_back'); ?> </label></td>
550
  <td><input type="text" id="slug" name="slug" value="<?php echo $row->slug; ?>" size="39" /></td>
551
  </tr>
552
  <tr>
553
+ <td class="spider_label_galleries"><label for="gallery_type" ><?php _e("Gallery content type:", 'bwg_back'); ?> </label></td>
554
  <td class="">
555
  <select id="gallery_type" style="width:150px;" onchange="bwg_gallery_type();">
556
+ <option value="" selected="selected"><?php _e("Standard", 'bwg_back'); ?></option>
557
+ <option value="instagram"><?php _e("Instagram only", 'bwg_back'); ?></option>
558
  </select>
559
  <input type="text" id="gallery_type_old" name="gallery_type_old" value="" style='display:none;'/>
560
  </td>
562
  </tbody>
563
  <tbody id="add_instagram_gallery" class="spider_free_version"><!-- /*use this in javascript*/-->
564
  <tr id='tr_gallery_source' style='display:none;'>
565
+ <td class="spider_label_galleries"><label for="gallery_source" class="spider_free_version_label"><?php _e("Instagram username:", 'bwg_back'); ?> </label></td>
566
+ <td><input type="text" disabled="disabled" id="gallery_source" value="<?php _e("This option is disabled in free version.", 'bwg_back'); ?>" size="64" /></td>
567
  </tr>
568
  <tr id='tr_autogallery_image_number' style='display:none;'>
569
+ <td class="spider_label_galleries"><label for="autogallery_image_number" class="spider_free_version_label"><?php _e("Number of Instagram recent posts to add to gallery: ", 'bwg_back'); ?></label></td>
570
  <td><input disabled="disabled" type="number" id="autogallery_image_number" value="12" /></td>
571
  </tr>
572
  <tr id='tr_instagram_post_gallery' style='display:none'>
573
+ <td class="spider_label_galleries"><label class="spider_free_version_label">I<?php _e("Instagram embed type:", 'bwg_back'); ?> </label></td>
574
  <td>
575
  <input disabled="disabled" type="radio" class="inputbox" id="instagram_post_gallery_0" checked="checked" value="0" >
576
+ <label for="instagram_post_gallery_0"><?php _e("Content", 'bwg_back'); ?></label>&nbsp;
577
  <input disabled="disabled" type="radio" class="inputbox" id="instagram_post_gallery_1" value="1" >
578
+ <label for="instagram_post_gallery_1"><?php _e("Whole post", 'bwg_back'); ?></label>
579
  </td>
580
  </tr>
581
  <tr id='tr_update_flag' style='display:none' >
582
+ <td class="spider_label_galleries"><label class="spider_free_version_label"><?php _e("Gallery autoupdate option:", 'bwg_back'); ?> </label></td>
583
  <td>
584
  <input disabled="disabled" type="radio" class="inputbox" id="update_flag_0" value="" >
585
+ <label for="update_flag_0"><?php _e("No update", 'bwg_back'); ?></label>&nbsp;
586
  <input disabled="disabled" type="radio" class="inputbox" id="update_flag_1" value="add" >
587
+ <label for="update_flag_1"><?php _e("Add new media, keep old ones published.", 'bwg_back'); ?></label>&nbsp;
588
  <input disabled="disabled" type="radio" class="inputbox" id="update_flag_2" checked="checked" value="replace" >
589
+ <label for="update_flag_2"><?php _e("Add new media, unpublish old ones.", 'bwg_back'); ?></label>&nbsp;
590
  </td>
591
  </tr>
592
  <tr id='tr_instagram_gallery_add_button' style='display:none;' >
593
  <td class="spider_label_galleries"></td>
594
  <td>
595
+ <input id="instagram_gallery_add_button" class="button-primary spider_free_version_button" type="button" onclick="" value="<?php _e("Add Instagram Gallery", 'bwg_back'); ?>" />
596
  </td>
597
  </tr>
598
  </tbody>
599
  <tbody>
600
  <tr>
601
+ <td class="spider_label_galleries"><label for="description"><?php _e("Description:", 'bwg_back'); ?> </label></td>
602
  <td>
603
  <div style="width:500px;">
604
  <?php
617
  </td>
618
  </tr>
619
  <tr>
620
+ <td class="spider_label_galleries"><label><?php _e("Author:", 'bwg_back'); ?> </label></td>
621
  <td><?php echo get_userdata($row->author)->display_name; ?></td>
622
  </tr>
623
  <tr>
624
+ <td class="spider_label_galleries"><label><?php _e("Published:", 'bwg_back'); ?> </label></td>
625
  <td>
626
  <input type="radio" class="inputbox" id="published0" name="published" <?php echo (($row->published) ? '' : 'checked="checked"'); ?> value="0" >
627
+ <label for="published0"><?php _e("No", 'bwg_back'); ?></label>
628
  <input type="radio" class="inputbox" id="published1" name="published" <?php echo (($row->published) ? 'checked="checked"' : ''); ?> value="1" >
629
+ <label for="published1"><?php _e("Yes", 'bwg_back'); ?></label>
630
  </td>
631
  </tr>
632
  <tr>
633
+ <td class="spider_label_galleries"><label for="url"><?php _e("Preview image:", 'bwg_back'); ?> </label></td>
634
  <td>
635
  <?php
636
  $query_url = add_query_arg(array('action' => 'addImages', 'width' => '700', 'height' => '550', 'extensions' => 'jpg,jpeg,png,gif', 'callback' => 'bwg_add_preview_image'), admin_url('admin-ajax.php'));
643
  title="Add Preview Image"
644
  onclick="return false;"
645
  style="margin-bottom:5px; display:none;">
646
+ <?php _e("Add Preview Image", 'bwg_back'); ?>
647
  </a>
648
  <input type="hidden" id="preview_image" name="preview_image" value="<?php echo $row->preview_image; ?>" style="display:inline-block;"/>
649
  <img id="img_preview_image"
697
  $gallery_type = ($gallery_row->gallery_type == 'instagram' || $gallery_row->gallery_type == 'instagram_post') ? 'instagram' : '';
698
  $pager = 0;
699
  ?>
700
+ <div id="draganddrop" class="updated" style="display:none;"><strong><p><?php _e("Changes made in this table should be saved.", 'bwg_back'); ?></p></strong></div>
701
  <div class="buttons_div_left">
702
  <?php
703
  $query_url = add_query_arg(array('action' => 'addImages', 'width' => '700', 'height' => '550', 'extensions' => 'jpg,jpeg,png,gif', 'callback' => 'bwg_add_image'), admin_url('admin-ajax.php'));
704
  $query_url = wp_nonce_url( $query_url, 'addImages', 'bwg_nonce' );
705
  $query_url = add_query_arg(array( 'TB_iframe' => '1'), $query_url);
706
  ?>
707
+ <a href="<?php echo $query_url; ?>" class="button-primary thickbox thickbox-preview" id="content-add_media" title="<?php _e("Add Images", 'bwg_back'); ?>" onclick="return false;" style="margin-bottom:5px; <?php if($gallery_type !='') {echo 'display:none';} ?>" >
708
+ <?php _e("Add Images", 'bwg_back'); ?>
709
  </a>
710
  <?php
711
  $query_url = wp_nonce_url( admin_url('admin-ajax.php'), '', 'bwg_nonce' );
714
  <script>
715
  var ajax_url = "<?php echo $query_url; ?>"
716
  </script>
717
+ <input id="show_add_embed" class="button-primary" type="button" onclick="jQuery('.opacity_add_embed').show(); jQuery('#add_embed_help').hide(); return false;" value="<?php _e("Embed Media", 'bwg_back'); ?>" />
718
+ <input id="show_bulk_embed" class="button-primary spider_free_version_button" type="button" onclick="jQuery('.opacity_bulk_embed').show(); return false;" value="<?php _e("Bulk Embed", 'bwg_back'); ?>" />
719
  </div>
720
  <div class="buttons_div_right">
721
  <span class="button-secondary non_selectable" onclick="spider_check_all_items()">
722
  <input type="checkbox" id="check_all_items" name="check_all_items" onclick="spider_check_all_items_checkbox()" style="margin: 0; vertical-align: middle;" />
723
+ <span style="vertical-align: middle;"><?php _e("Select All", 'bwg_back'); ?></span>
724
  </span>
725
+ <input id="show_hide_weights" class="button-secondary" type="button" onclick="spider_show_hide_weights();return false;" value="<?php _e("Hide order column", 'bwg_back'); ?>" />
726
  <input class="button-primary" id='spider_setwatermark_button' type="submit" onclick="spider_set_input_value('ajax_task', 'image_set_watermark');
727
  spider_ajax_save('galleries_form');
728
+ return false;" value="<?php _e("Set Watermark", 'bwg_back'); ?>" />
729
+ <input class="button-secondary" id='spider_resize_button' type="submit" onclick="jQuery('.opacity_resize_image').show(); return false;" value="<?php _e("Resize", 'bwg_back'); ?>" />
730
+ <input class="button-secondary" type="submit" onclick="spider_set_input_value('ajax_task', 'resize_image_thumb'); spider_ajax_save('galleries_form');return false;" value="<?php _e("Recreate Thumbnail", 'bwg_back'); ?>" />
731
  <input class="button-secondary" id='spider_reset_button' type="submit" onclick="spider_set_input_value('ajax_task', 'image_recover_all');
732
  spider_ajax_save('galleries_form');
733
+ return false;" value="<?php _e("Reset", 'bwg_back'); ?>" />
734
  <?php
735
  $query_url = wp_nonce_url( admin_url('admin-ajax.php'), 'addTags', 'bwg_nonce' );
736
  $query_url = add_query_arg(array('action' => 'addTags', 'width' => '650', 'height' => '500', 'bwg_items_per_page' => $per_page ), $query_url);
737
  ?>
738
+ <a onclick="return bwg_check_checkboxes();" href="<?php echo $query_url; ?>&TB_iframe=1" class="button-primary thickbox thickbox-preview"><?php _e("Add tag", 'bwg_back'); ?></a>
739
 
740
 
741
  <input class="button-secondary" type="submit" onclick="spider_set_input_value('ajax_task', 'image_publish_all');
742
  spider_ajax_save('galleries_form');
743
+ return false;" value="<?php _e("Publish", 'bwg_back'); ?>" />
744
  <input class="button-secondary" type="submit" onclick="spider_set_input_value('ajax_task', 'image_unpublish_all');
745
  spider_ajax_save('galleries_form');
746
+ return false;" value="<?php _e("Unpublish", 'bwg_back'); ?>" />
747
+ <input class="button-secondary spider_delete_button" type="submit" onclick="if (confirm('<?php _e("Do you want to delete selected items?", 'bwg_back'); ?>')) {
748
  spider_set_input_value('ajax_task', 'image_delete_all');
749
  spider_ajax_save('galleries_form');
750
  return false;
751
  } else {
752
  return false;
753
+ }" value="<?php _e("Delete", 'bwg_back'); ?>" />
754
  </div>
755
  <div class="opacity_resize_image opacity_add_embed opacity_bulk_embed bwg_opacity_media" onclick="jQuery('.opacity_add_embed').hide(); jQuery('.opacity_bulk_embed').hide(); jQuery('.opacity_resize_image').hide();"></div>
756
  <div id="add_embed" class="opacity_add_embed bwg_add_embed">
757
  <input type="text" id="embed_url" name="embed_url" value="" />
758
+ <input class="button-primary" type="button" onclick="if (bwg_get_embed_info('embed_url')) {jQuery('.opacity_add_embed').hide();} return false;" value="<?php _e("Add to gallery", 'bwg_back'); ?>" />
759
+ <input class="button-secondary" type="button" onclick="jQuery('.opacity_add_embed').hide(); return false;" value="<?php _e("Cancel", 'bwg_back'); ?>" />
760
  <div class="spider_description">
761
+ <p><?php _e("Enter YouTube, Vimeo, Instagram, Flickr or Dailymotion URL here.", 'bwg_back'); ?> <a onclick="jQuery('#add_embed_help').show();" style='text-decoration: underline; color:blue; cursor: pointer;'><?php _e("Help", 'bwg_back'); ?></a></p>
762
  </div>
763
  <div id='add_embed_help' class= "opacity_add_embed bwg_add_embed" style="display:none;">
764
+ <p style="text-align:right; margin-top:0px;"><a onclick="jQuery('#add_embed_help').hide();" style="text-decoration: underline; color:blue; cursor: pointer; "><?php _e("Close", 'bwg_back'); ?></a></p>
765
+ <p><b>Youtube</b> URL <?php _e("example:", 'bwg_back'); ?> <i style="">https://www.youtube.com/watch?v=fa4RLjE-yM8</i></p>
766
+ <p><b>Vimeo</b> URL <?php _e("example:", 'bwg_back'); ?> <i style="">http://vimeo.com/8110647</i></p>
767
+ <p><b>Instagram</b> URL <?php _e("example:", 'bwg_back'); ?> <i style="">http://instagram.com/p/ykvv0puS4u</i>. <?php _e("Add", 'bwg_back'); ?> "<i style="text-decoration:underline;"><?php _e("post", 'bwg_back'); ?></i>" <?php _e("to the end of URL if you want to embed the whole Instagram post, not only its content.", 'bwg_back'); ?></p>
768
+ <p><b>Flickr</b> URL <?php _e("example:", 'bwg_back'); ?> <i style="">https://www.flickr.com/photos/sui-fong/15250186998/in/gallery-flickr-72157648726328108/</i></p>
769
+ <p><b>Dailymotion</b> URL <?php _e("example:", 'bwg_back'); ?> <i style="">http://www.dailymotion.com/video/xexaq0_frank-sinatra-strangers-in-the-nigh_music</i></p>
770
  </div>
771
  </div>
772
  <div id="bulk_embed" class="opacity_bulk_embed bwg_bulk_embed">
773
+ <input class="button-secondary" type="button" onclick="jQuery('.opacity_bulk_embed').hide(); jQuery('#opacity_div').hide(); jQuery('#loading_div').hide(); return false;" value="<?php _e("Cancel", 'bwg_back'); ?>" style="float:right; margin-left:5px;"/>
774
+ <input class="button-primary spider_free_version_button" type="button" value="<?php _e("Add to gallery", 'bwg_back'); ?>" style="float:right; margin-left:5px;"/>
775
  <div class="spider_description"></div>
776
  <table class="spider_free_version">
777
  <thead>
778
  <tr>
779
+ <td class="spider_label_galleries"><label for="bulk_embed_from" class="spider_free_version_label"><?php _e("Bulk embed from:", 'bwg_back'); ?> </label></td>
780
  <td>
781
+ <input type="radio" disabled="disabled" class="inputbox" id="bulk_embed_from_instagram" onclick="jQuery('#instagram_bulk_params').show();" checked="checked" value="<?php _e("instagram", 'bwg_back'); ?>" >
782
+ <label for="bulk_embed_from_instagram" class="spider_free_version_label"><?php _e("Instagram", 'bwg_back'); ?></label>&nbsp;
783
  </td>
784
  </tr>
785
  </thead>
786
  <tbody id="instagram_bulk_params">
787
  <tr id='popup_tr_instagram_gallery_source' style='display:table-row'>
788
+ <td class="spider_label_galleries"><label for="popup_instagram_gallery_source" class="spider_free_version_label"><?php _e("Instagram username:", 'bwg_back'); ?> </label></td>
789
+ <td class="spider_free_version_label"><input type="text" id="popup_instagram_gallery_source" disabled="disabled" value="<?php _e("Bulk embed from Instagram is disabled in free version", 'bwg_back'); ?>" size="64" /></td>
790
  </tr>
791
  <tr id='popup_tr_instagram_image_number' style='display:table-row'>
792
+ <td class="spider_label_galleries"><label for="popup_instagram_image_number" class="spider_free_version_label"><?php _e("Number of Instagram recent posts to add to gallery:", 'bwg_back'); ?> </label></td>
793
  <td><input type="number" disabled="disabled" id="popup_instagram_image_number" value="12" /></td>
794
  </tr>
795
  <tr id='popup_tr_instagram_post_gallery' style='display:table-row'>
796
+ <td class="spider_label_galleries"><label class="spider_free_version_label"><?php _e("Instagram embed type:", 'bwg_back'); ?> </label></td>
797
  <td class="spider_free_version_label">
798
  <input type="radio" disabled="disabled" class="inputbox" id="popup_instagram_post_gallery_0" checked="checked" value="0" >
799
+ <label for="popup_instagram_post_gallery_0" class="spider_free_version_label"><?php _e("Content", 'bwg_back'); ?></label>&nbsp;
800
  <input type="radio" disabled="disabled" class="inputbox" id="popup_instagram_post_gallery_1" value="1" >
801
+ <label for="popup_instagram_post_gallery_1" class="spider_free_version_label"><?php _e("Whole post", 'bwg_back'); ?></label>
802
  </td>
803
  <tr>
804
  </tbody>
807
 
808
  </div>
809
  <div id="" class="opacity_resize_image bwg_resize_image">
810
+ <?php _e("Resize images to: ", 'bwg_back'); ?>
811
  <input type="text" name="image_width" id="image_width" value="1600" /> x
812
  <input type="text" name="image_height" id="image_height" value="1200" /> px
813
  <input class="button-primary" type="button" onclick="spider_set_input_value('ajax_task', 'image_resize');
814
  spider_ajax_save('galleries_form');
815
  jQuery('.opacity_resize_image').hide();
816
+ return false;" value="<?php _e("Resize", 'bwg_back'); ?>" />
817
+ <input class="button-secondary" type="button" onclick="jQuery('.opacity_resize_image').hide(); return false;" value="<?php _e("Cancel", 'bwg_back'); ?>" />
818
+ <div class="spider_description"><?php _e("The maximum size of resized image.", 'bwg_back'); ?></div>
819
  </div>
820
  <div class="tablenav top">
821
  <?php
822
+ WDWLibrary::ajax_search(__("Filename", 'bwg_back'), $search_value, 'galleries_form');
823
  WDWLibrary::ajax_html_page_nav($page_nav['total'], $page_nav['limit'], 'galleries_form', $per_page, $pager++);
824
  ?>
825
  </div>
829
  <th class="check-column table_small_col"></th>
830
  <th class="manage-column column-cb check-column table_small_col"><input id="check_all" type="checkbox" onclick="spider_check_all(this)" style="margin:0;" /></th>
831
  <th class="table_small_col">#</th>
832
+ <th class="table_extra_large_col"><?php _e("Thumbnail", 'bwg_back'); ?></th>
833
  <th class="table_extra_large_col <?php if ($image_order_by == 'filename') {echo $order_class;} ?>">
834
  <a onclick="spider_set_input_value('task', '');
835
  spider_set_input_value('image_order_by', 'filename');
836
  spider_set_input_value('image_asc_or_desc', '<?php echo ($image_order_by == 'filename' && $image_asc_or_desc == 'asc') ? 'desc' : 'asc'; ?>');
837
  spider_ajax_save('galleries_form');">
838
+ <span><?php _e("Filename", 'bwg_back'); ?></span><span class="sorting-indicator"></span>
839
  </a>
840
  </th>
841
  <th class="table_extra_large_col <?php if ($image_order_by == 'alt') {echo $order_class;} ?>">
843
  spider_set_input_value('image_order_by', 'alt');
844
  spider_set_input_value('image_asc_or_desc', '<?php echo ($image_order_by == 'alt' && $image_asc_or_desc == 'asc') ? 'desc' : 'asc'; ?>');
845
  spider_ajax_save('galleries_form');">
846
+ <span><?php _e("Alt/Title", 'bwg_back'); ?><?php if ($option_row->thumb_click_action != 'open_lightbox') { ?><br />Redirect URL<?php } ?></span><span class="sorting-indicator"></span>
847
  </a>
848
  </th>
849
  <th class="table_extra_large_col <?php if ($image_order_by == 'description') {echo $order_class;} ?>">
851
  spider_set_input_value('image_order_by', 'description');
852
  spider_set_input_value('image_asc_or_desc', '<?php echo ($image_order_by == 'description' && $image_asc_or_desc == 'asc') ? 'desc' : 'asc'; ?>');
853
  spider_ajax_save('galleries_form');">
854
+ <span><?php _e("Description", 'bwg_back'); ?></span><span class="sorting-indicator"></span>
855
  </a>
856
  </th>
857
+ <th class="table_extra_large_col"><?php _e("Tags", 'bwg_back'); ?></th>
858
  <th id="th_order" class="table_medium_col <?php if ($image_order_by == 'order') {echo $order_class;} ?>">
859
  <a onclick="spider_set_input_value('task', '');
860
  spider_set_input_value('image_order_by', 'order');
861
  spider_set_input_value('image_asc_or_desc', '<?php echo ($image_order_by == 'order' && $image_asc_or_desc == 'asc') ? 'desc' : 'asc'; ?>');
862
  spider_ajax_save('galleries_form');">
863
+ <span><?php _e("Order", 'bwg_back'); ?></span><span class="sorting-indicator"></span>
864
  </a>
865
  </th>
866
  <th class="table_big_col <?php if ($image_order_by == 'published') {echo $order_class;} ?>">
868
  spider_set_input_value('image_order_by', 'published');
869
  spider_set_input_value('image_asc_or_desc', '<?php echo ($image_order_by == 'published' && $image_asc_or_desc == 'asc') ? 'desc' : 'asc'; ?>');
870
  spider_ajax_save('galleries_form');">
871
+ <span><?php _e("Published", 'bwg_back'); ?></span><span class="sorting-indicator"></span>
872
  </a>
873
  </th>
874
+ <th class="table_big_col"><?php _e("Delete", 'bwg_back'); ?></th>
875
  </thead>
876
  <tbody id="tbody_arr">
877
  <?php
902
  <div class="filename" id="filename_<?php echo $row_data->id; ?>">
903
  <strong><a title="<?php echo $row_data->alt; ?>" class="spider_word_wrap thickbox thickbox-preview" href="<?php echo $query_url ; ?>"><?php echo $row_data->filename; ?></a></strong>
904
  </div>
905
+ <div class="fileDescription" title="<?php _e("Date modified", 'bwg_back'); ?>" id="date_modified_<?php echo $row_data->id; ?>"><?php echo date("d F Y, H:i", strtotime($row_data->date)); ?></div>
906
+ <div class="fileDescription" title="<?php _e("Image Resolution", 'bwg_back'); ?>" id="fileresolution_<?php echo $row_data->id; ?>"><?php echo $row_data->resolution; ?></div>
907
+ <div class="fileDescription" title="<?php _e("Image size", 'bwg_back'); ?>" id="filesize_<?php echo $row_data->id; ?>"><?php echo $row_data->size; ?></div>
908
+ <div class="fileDescription" title="<?php _e("Type", 'bwg_back'); ?>" id="filetype_<?php echo $row_data->id; ?>"><?php echo $row_data->filetype; ?></div>
909
  <?php
910
  if (!$is_embed) {
911
  ?>
915
  $query_url = wp_nonce_url( $query_url, 'editThumb', 'bwg_nonce' );
916
  $query_url = add_query_arg(array('TB_iframe' => '1'), $query_url);
917
  ?>
918
+ <span class="edit_thumb"><a class="thickbox thickbox-preview" href="<?php echo $query_url; ?>"><?php _e("Crop", 'bwg_back'); ?></a></span> |
919
  <?php
920
  $query_url = add_query_arg(array('action' => 'editThumb', 'type' => 'rotate', 'image_id' => $row_data->id, 'width' => '800', 'height' => '500'), admin_url('admin-ajax.php'));
921
  $query_url = wp_nonce_url( $query_url, 'editThumb', 'bwg_nonce' );
922
  $query_url = add_query_arg(array('TB_iframe' => '1'), $query_url);
923
  ?>
924
+ <span class="edit_thumb"><a class="thickbox thickbox-preview" href="<?php echo $query_url; ?>"><?php _e("Edit", 'bwg_back'); ?></a></span> |
925
+ <span class="edit_thumb"><a onclick="if (confirm('<?php _e("Do you want to reset the image?", 'bwg_back'); ?>')) {
926
  spider_set_input_value('ajax_task', 'recover');
927
  spider_set_input_value('image_current_id', '<?php echo $row_data->id; ?>');
928
  spider_ajax_save('galleries_form');
929
  }
930
+ return false;"><?php _e("Reset", 'bwg_back'); ?></a></span>
931
  </div>
932
  <?php } ?>
933
  <input type="hidden" id="image_url_<?php echo $row_data->id; ?>" name="image_url_<?php echo $row_data->id; ?>" value="<?php echo $row_data->image_url; ?>" />
952
  $query_url = wp_nonce_url( admin_url('admin-ajax.php'), 'addTags', 'bwg_nonce' );
953
  $query_url = add_query_arg(array('action' => 'addTags', 'image_id' => $row_data->id, 'width' => '650', 'height' => '500', 'bwg_items_per_page' => $per_page, 'TB_iframe' => '1'), $query_url);
954
  ?>
955
+ <a href="<?php echo $query_url; ?>" class="button button-small button-primary thickbox thickbox-preview"><?php _e("Add tag", 'bwg_back'); ?></a>
956
  <div class="tags_div" id="tags_div_<?php echo $row_data->id; ?>">
957
  <?php
958
  $tags_id_string = '';
977
  spider_ajax_save('galleries_form');"><img src="<?php echo WD_BWG_URL . '/images/' . $published_image . '.png'; ?>"></img></a></td>
978
  <td class="table_big_col spider_delete_button" ><a onclick="spider_set_input_value('ajax_task', 'image_delete');
979
  spider_set_input_value('image_current_id', '<?php echo $row_data->id; ?>');
980
+ spider_ajax_save('galleries_form');"><?php _e("Delete", 'bwg_back'); ?></a></td>
981
  </tr>
982
  <?php
983
  $ids_string .= $row_data->id . ',';
admin/views/BWGViewLicensing_bwg.php CHANGED
@@ -26,27 +26,27 @@ class BWGViewLicensing_bwg {
26
  ?>
27
  <div id="featurs_tables">
28
  <div id="featurs_table1">
29
- <span>WordPress 3.4+ ready</span>
30
- <span>SEO-friendly</span>
31
- <span>Responsive Design and Layout</span>
32
- <span>5 Standard Gallery/Album Views</span>
33
- <span>Watermarking/ Advertising Possibility</span>
34
- <span>Basic Tag Cloud Widget</span>
35
- <span>Image Download</span>
36
- <span>Photo Gallery Slideshow Widget</span>
37
- <span>Photo Gallery Widget</span>
38
- <span>Slideshow/Lightbox Effects</span>
39
- <span>Possibility of Editing/Creating New Themes</span>
40
- <span>10 Pro Gallery/Album Views</span>
41
- <span>Image Commenting</span>
42
- <span>Image Social Sharing</span>
43
- <span>Photo Gallery Tags Cloud Widget</span>
44
- <span>Instagram Integration</span>
45
- <span>AddThis Integration</span>
46
- <span>Add-ons Support</span>
47
  </div>
48
  <div id="featurs_table2">
49
- <span style="padding-top: 18px;height: 39px;">Free</span>
50
  <span class="yes"></span>
51
  <span class="yes"></span>
52
  <span class="yes"></span>
@@ -67,7 +67,7 @@ class BWGViewLicensing_bwg {
67
  <span class="no"></span>
68
  </div>
69
  <div id="featurs_table3">
70
- <span>Pro Version</span>
71
  <span class="yes"></span>
72
  <span class="yes"></span>
73
  <span class="yes"></span>
@@ -94,11 +94,11 @@ class BWGViewLicensing_bwg {
94
  </a>
95
  </div>
96
  <div style="float: left; clear: both;">
97
- <p>After purchasing the commercial version follow these steps:</p>
98
  <ol>
99
- <li>Deactivate Photo Gallery plugin.</li>
100
- <li>Delete Photo Gallery plugin.</li>
101
- <li>Install the downloaded commercial version of the plugin.</li>
102
  </ol>
103
  </div>
104
  <?php
26
  ?>
27
  <div id="featurs_tables">
28
  <div id="featurs_table1">
29
+ <span>WordPress 3.4+ <?php _e("ready", 'bwg_back'); ?></span>
30
+ <span>SEO-<?php _e("friendly", 'bwg_back'); ?></span>
31
+ <span><?php _e("Responsive Design and Layout", 'bwg_back'); ?></span>
32
+ <span><?php _e("5 Standard Gallery/Album Views", 'bwg_back'); ?></span>
33
+ <span><?php _e("Watermarking/ Advertising Possibility", 'bwg_back'); ?></span>
34
+ <span><?php _e("Basic Tag Cloud Widget", 'bwg_back'); ?></span>
35
+ <span><?php _e("Image Download", 'bwg_back'); ?></span>
36
+ <span><?php _e("Photo Gallery Slideshow Widget", 'bwg_back'); ?></span>
37
+ <span><?php _e("Photo Gallery Widget", 'bwg_back'); ?></span>
38
+ <span><?php _e("Slideshow/Lightbox Effects", 'bwg_back'); ?></span>
39
+ <span><?php _e("Possibility of Editing/Creating New Themes", 'bwg_back'); ?></span>
40
+ <span><?php _e("10 Pro Gallery/Album Views", 'bwg_back'); ?></span>
41
+ <span><?php _e("Image Commenting", 'bwg_back'); ?></span>
42
+ <span><?php _e("Image Social Sharing", 'bwg_back'); ?></span>
43
+ <span><?php _e("Photo Gallery Tags Cloud Widget", 'bwg_back'); ?></span>
44
+ <span><?php _e("Instagram Integration", 'bwg_back'); ?></span>
45
+ <span>AddThis <?php _e("Integration", 'bwg_back'); ?></span>
46
+ <span><?php _e("Add-ons Support", 'bwg_back'); ?></span>
47
  </div>
48
  <div id="featurs_table2">
49
+ <span style="padding-top: 18px;height: 39px;"><?php _e("Free", 'bwg_back'); ?></span>
50
  <span class="yes"></span>
51
  <span class="yes"></span>
52
  <span class="yes"></span>
67
  <span class="no"></span>
68
  </div>
69
  <div id="featurs_table3">
70
+ <span><?php _e("Pro Version", 'bwg_back'); ?></span>
71
  <span class="yes"></span>
72
  <span class="yes"></span>
73
  <span class="yes"></span>
94
  </a>
95
  </div>
96
  <div style="float: left; clear: both;">
97
+ <p><?php _e("After purchasing the commercial version follow these steps:", 'bwg_back'); ?></p>
98
  <ol>
99
+ <li><?php _e("Deactivate Photo Gallery plugin.", 'bwg_back'); ?></li>
100
+ <li><?php _e("Delete Photo Gallery plugin.", 'bwg_back'); ?></li>
101
+ <li><?php _e("Install the downloaded commercial version of the plugin.", 'bwg_back'); ?></li>
102
  </ol>
103
  </div>
104
  <?php
admin/views/BWGViewOptions_bwg.php CHANGED
@@ -27,8 +27,8 @@ class BWGViewOptions_bwg {
27
  ?>
28
  <div style="clear: both; float: left; width: 99%;">
29
  <div style="float:left; font-size: 14px; font-weight: bold;">
30
- This section allows you to change settings for different views and general options.
31
- <a style="color: blue; text-decoration: none;" target="_blank" href="https://web-dorado.com/wordpress-gallery-guide-step-5/5-1.html">Read More in User Manual</a>
32
  </div>
33
  <div style="float: right; text-align: right;">
34
  <a style="text-decoration: none;" target="_blank" href="https://web-dorado.com/files/fromPhotoGallery.php">
@@ -88,29 +88,29 @@ class BWGViewOptions_bwg {
88
  <form method="post" class="wrap" action="admin.php?page=options_bwg" style="float: left; width: 99%;">
89
  <?php wp_nonce_field( 'options_bwg', 'bwg_nonce' ); ?>
90
  <span class="option-icon"></span>
91
- <h2>Edit options</h2>
92
  <div style="display: inline-block; width: 100%;">
93
  <div style="float: right;">
94
- <input class="button-primary" type="submit" onclick="if (spider_check_required('title', 'Title')) {return false;}; spider_set_input_value('task', 'save')" value="Save" />
95
- <input class="button-secondary" type="submit" onclick="if (confirm('Do you want to reset to default?')) {
96
  spider_set_input_value('task', 'reset');
97
  } else {
98
  return false;
99
- }" value="Reset all options" />
100
  </div>
101
  </div>
102
  <div style="display: none; width: 100%;" id="display_panel">
103
  <div style="float:left;">
104
- <div id="div_1" class="gallery_type" onclick="bwg_change_option_type('1')"> Global options</div><br/>
105
- <div id="div_8" class="gallery_type" onclick="bwg_change_option_type('8')"> Watermark</div><br/>
106
- <div id="div_2" class="gallery_type" onclick="bwg_change_option_type('2')"> Advertisement</div><br/>
107
- <div id="div_3" class="gallery_type" onclick="bwg_change_option_type('3')"> Lightbox</div><br/>
108
- <div id="div_4" class="gallery_type" onclick="bwg_change_option_type('4')"> Album options</div><br/>
109
- <div id="div_5" class="gallery_type" onclick="bwg_change_option_type('5')"> Slideshow</div><br/>
110
- <div id="div_6" class="gallery_type" onclick="bwg_change_option_type('6')"> Thumbnail options</div><br/>
111
- <div id="div_7" class="gallery_type" onclick="bwg_change_option_type('7')"> Image options</div><br/>
112
- <div id="div_9" class="gallery_type" onclick="bwg_change_option_type('9')"> Embed options</div><br/>
113
- <div id="div_10" class="gallery_type" onclick="bwg_change_option_type('10')"> Carousel</div><br/>
114
  <input type="hidden" id="type" name="type" value="<?php echo (isset($_POST["type"]) ? esc_html(stripslashes($_POST["type"])) : "1"); ?>"/>
115
  </div>
116
 
@@ -120,40 +120,40 @@ class BWGViewOptions_bwg {
120
  <tbody>
121
  <tr>
122
  <td class="spider_label_options">
123
- <label for="images_directory">Images directory:</label>
124
  </td>
125
  <td>
126
  <input id="images_directory" name="images_directory" type="text" style="display:inline-block; width:100%;" value="<?php echo $row->images_directory; ?>" />
127
  <input type="hidden" id="old_images_directory" name="old_images_directory" value="<?php echo $row->old_images_directory; ?>"/>
128
- <div class="spider_description">Input an existing directory inside the Wordpress directory to store uploaded images.<br />Old directory content will be moved to the new one.</div>
129
  </td>
130
  </tr>
131
  <tr>
132
  <td class="spider_label_options">
133
- <label for="upload_img_width">Image dimensions: </label>
134
  </td>
135
  <td>
136
  <input type="text" name="upload_img_width" id="upload_img_width" value="<?php echo $row->upload_img_width; ?>" class="spider_int_input" /> x
137
  <input type="text" name="upload_img_height" id="upload_img_height" value="<?php echo $row->upload_img_height; ?>" class="spider_int_input" /> px
138
- <div class="spider_description">The maximum size of the uploaded image (0 for original size).</div>
139
  </td>
140
  </tr>
141
  <tr>
142
  <td class="spider_label_options">
143
- <label>Right click protection:</label>
144
  </td>
145
  <td>
146
- <input type="radio" name="image_right_click" id="image_right_click_1" value="1" <?php if ($row->image_right_click) echo 'checked="checked"'; ?> /><label for="image_right_click_1">Yes</label>
147
- <input type="radio" name="image_right_click" id="image_right_click_0" value="0" <?php if (!$row->image_right_click) echo 'checked="checked"'; ?> /><label for="image_right_click_0">No</label>
148
- <div class="spider_description">Disable image right click possibility.</div>
149
  </td>
150
  </tr>
151
  <tr style="display: none;">
152
  <td class="spider_label_options">
153
- <label>Gallery role:</label>
154
  </td>
155
  <td>
156
- <input type="radio" name="gallery_role" id="gallery_role_1" value="1" <?php if ($row->gallery_role) echo 'checked="checked"'; ?> /><label for="gallery_role_1">Yes</label>
157
  <input type="radio" name="gallery_role" id="gallery_role_0" value="0" <?php if (!$row->gallery_role) echo 'checked="checked"'; ?> /><label for="gallery_role_0">No</label>
158
  <div class="spider_description">Only author can change a gallery.</div>
159
  </td>
@@ -163,7 +163,7 @@ class BWGViewOptions_bwg {
163
  <label>Album role:</label>
164
  </td>
165
  <td>
166
- <input type="radio" name="album_role" id="album_role_1" value="1" <?php if ($row->album_role) echo 'checked="checked"'; ?> /><label for="album_role_1">Yes</label>
167
  <input type="radio" name="album_role" id="album_role_0" value="0" <?php if (!$row->album_role) echo 'checked="checked"'; ?> /><label for="album_role_0">No</label>
168
  <div class="spider_description">Only author can change an album.</div>
169
  </td>
@@ -173,24 +173,24 @@ class BWGViewOptions_bwg {
173
  <label>Image role:</label>
174
  </td>
175
  <td>
176
- <input type="radio" name="image_role" id="image_role_1" value="1" <?php if ($row->image_role) echo 'checked="checked"'; ?> /><label for="image_role_1">Yes</label>
177
- <input type="radio" name="image_role" id="image_role_0" value="0" <?php if (!$row->image_role) echo 'checked="checked"'; ?> /><label for="image_role_0">No</label>
178
- <div class="spider_description">Only author can change an image.</div>
179
  </td>
180
  </tr>
181
  <tr>
182
  <td class="spider_label_options">
183
- <label>Show search box:</label>
184
  </td>
185
  <td>
186
- <input type="radio" name="show_search_box" id="show_search_box_1" value="1" <?php if ($row->show_search_box) echo 'checked="checked"'; ?> onClick="bwg_enable_disable('', 'tr_search_box_width', 'show_search_box_1')" /><label for="show_search_box_1">Yes</label>
187
- <input type="radio" name="show_search_box" id="show_search_box_0" value="0" <?php if (!$row->show_search_box) echo 'checked="checked"'; ?> onClick="bwg_enable_disable('none', 'tr_search_box_width', 'show_search_box_0')" /><label for="show_search_box_0">No</label>
188
  <div class="spider_description"></div>
189
  </td>
190
  </tr>
191
  <tr id="tr_search_box_width">
192
  <td class="spider_label_options">
193
- <label for="search_box_width">Search box width: </label>
194
  </td>
195
  <td>
196
  <input type="text" name="search_box_width" id="search_box_width" value="<?php echo $row->search_box_width; ?>" class="spider_int_input" /> px
@@ -199,91 +199,91 @@ class BWGViewOptions_bwg {
199
  </tr>
200
  <tr>
201
  <td class="spider_label_options">
202
- <label>Show "Order by" dropdown list:</label>
203
  </td>
204
  <td>
205
- <input type="radio" name="show_sort_images" id="show_sort_images_1" value="1" <?php if ($row->show_sort_images) echo 'checked="checked"'; ?> /><label for="show_sort_images_1">Yes</label>
206
- <input type="radio" name="show_sort_images" id="show_sort_images_0" value="0" <?php if (!$row->show_sort_images) echo 'checked="checked"'; ?> /><label for="show_sort_images_0">No</label>
207
  <div class="spider_description"></div>
208
  </td>
209
  </tr>
210
  <tr>
211
  <td class="spider_label_options">
212
- <label>Show tag box:</label>
213
  </td>
214
  <td>
215
- <input type="radio" name="show_tag_box" id="show_tag_box_1" value="1" <?php if ($row->show_tag_box) echo 'checked="checked"'; ?> /><label for="show_tag_box_1">Yes</label>
216
- <input type="radio" name="show_tag_box" id="show_tag_box_0" value="0" <?php if (!$row->show_tag_box) echo 'checked="checked"'; ?> /><label for="show_tag_box_0">No</label>
217
  <div class="spider_description"></div>
218
  </td>
219
  </tr>
220
  <tr>
221
  <td class="spider_label_options">
222
- <label>Preload images:</label>
223
  </td>
224
  <td>
225
- <input type="radio" name="preload_images" id="preload_images_1" value="1" <?php if ($row->preload_images) echo 'checked="checked"'; ?> onClick="bwg_enable_disable('', 'tr_preload_images_count', 'preload_images_1')" /><label for="preload_images_1">Yes</label>
226
- <input type="radio" name="preload_images" id="preload_images_0" value="0" <?php if (!$row->preload_images) echo 'checked="checked"'; ?> onClick="bwg_enable_disable('none', 'tr_preload_images_count', 'preload_images_0')" /><label for="preload_images_0">No</label>
227
  <div class="spider_description"></div>
228
  </td>
229
  </tr>
230
  <tr id="tr_preload_images_count">
231
  <td class="spider_label_options">
232
- <label for="preload_images_count">Count of images: </label>
233
  </td>
234
  <td>
235
  <input type="text" name="preload_images_count" id="preload_images_count" value="<?php echo $row->preload_images_count; ?>" class="spider_int_input" />
236
- <div class="spider_description">Count of images to preload (0 for all).</div>
237
  </td>
238
  </tr>
239
  <tr>
240
  <td class="spider_label_options">
241
- <label>Import from Media Library:</label>
242
  </td>
243
  <td>
244
- <input type="radio" name="enable_ML_import" id="enable_ML_import_1" value="1" <?php if ($row->enable_ML_import) echo 'checked="checked"'; ?> /><label for="enable_ML_import_1">Yes</label>
245
- <input type="radio" name="enable_ML_import" id="enable_ML_import_0" value="0" <?php if (!$row->enable_ML_import) echo 'checked="checked"'; ?> /><label for="enable_ML_import_0">No</label>
246
- <div class="spider_description">Enable import from Media Library in file manager.</div>
247
  </td>
248
  </tr>
249
  <tr>
250
  <td class="spider_label_options">
251
- <label>Enable href attribute:</label>
252
  </td>
253
  <td>
254
- <input type="radio" name="enable_seo" id="enable_seo_1" value="1" <?php if ($row->enable_seo) echo 'checked="checked"'; ?> /><label for="enable_seo_1">Yes</label>
255
- <input type="radio" name="enable_seo" id="enable_seo_0" value="0" <?php if (!$row->enable_seo) echo 'checked="checked"'; ?> /><label for="enable_seo_0">No</label>
256
- <div class="spider_description">Disable this option only if it conflicts with your theme.</div>
257
  </td>
258
  </tr>
259
  <tr>
260
  <td class="spider_label_options">
261
- <label>Meta auto-fill:</label>
262
  </td>
263
  <td>
264
- <input type="radio" name="read_metadata" id="read_metadata_1" value="1" <?php if ($row->read_metadata) echo 'checked="checked"'; ?> /><label for="read_metadata_1">Yes</label>
265
- <input type="radio" name="read_metadata" id="read_metadata_0" value="0" <?php if (!$row->read_metadata) echo 'checked="checked"'; ?> /><label for="read_metadata_0">No</label>
266
- <div class="spider_description">Enabling this option the meta description of the image will be automatically filled in image description field.</div>
267
  </td>
268
  </tr>
269
 
270
  <tr>
271
  <td class="spider_label_options">
272
- <label>Show/hide custom post types:</label>
273
  </td>
274
  <td>
275
- <input type="radio" name="show_hide_custom_post" id="show_hide_custom_post_1" value="1" <?php if ($row->show_hide_custom_post) echo 'checked="checked"'; ?> /><label for="show_hide_custom_post_1">Yes</label>
276
- <input type="radio" name="show_hide_custom_post" id="show_hide_custom_post_0" value="0" <?php if (!$row->show_hide_custom_post) echo 'checked="checked"'; ?> /><label for="show_hide_custom_post_0">No</label>
277
  <div class="spider_description"></div>
278
  </td>
279
  </tr>
280
  <tr>
281
  <td class="spider_label_options">
282
- <label>Show/hide comments for custom post types:</label>
283
  </td>
284
  <td>
285
- <input type="radio" name="show_hide_post_meta" id="show_hide_post_meta_1" value="1" <?php if ($row->show_hide_post_meta) echo 'checked="checked"'; ?> /><label for="show_hide_post_meta_1">Yes</label>
286
- <input type="radio" name="show_hide_post_meta" id="show_hide_post_meta_0" value="0" <?php if (!$row->show_hide_post_meta) echo 'checked="checked"'; ?> /><label for="show_hide_post_meta_0">No</label>
287
  <div class="spider_description"></div>
288
  </td>
289
  </tr>
@@ -300,21 +300,21 @@ class BWGViewOptions_bwg {
300
  <tbody>
301
  <tr id="tr_built_in_watermark_type">
302
  <td class="spider_label_options">
303
- <label>Watermark type: </label>
304
  </td>
305
  <td>
306
  <input type="radio" name="built_in_watermark_type" id="built_in_watermark_type_none" value="none" <?php if ($row->built_in_watermark_type == 'none') echo 'checked="checked"'; ?> onClick="bwg_built_in_watermark('watermark_type_none')" />
307
- <label for="built_in_watermark_type_none">None</label>
308
  <input type="radio" name="built_in_watermark_type" id="built_in_watermark_type_text" value="text" <?php if ($row->built_in_watermark_type == 'text') echo 'checked="checked"'; ?> onClick="bwg_built_in_watermark('watermark_type_text')" onchange="preview_built_in_watermark()" />
309
- <label for="built_in_watermark_type_text">Text</label>
310
  <input type="radio" name="built_in_watermark_type" id="built_in_watermark_type_image" value="image" <?php if ($row->built_in_watermark_type == 'image') echo 'checked="checked"'; ?> onClick="bwg_built_in_watermark('watermark_type_image')" onchange="preview_built_in_watermark()" />
311
- <label for="built_in_watermark_type_image">Image</label>
312
  <div class="spider_description"></div>
313
  </td>
314
  </tr>
315
  <tr id="tr_built_in_watermark_url">
316
  <td class="spider_label_options">
317
- <label for="built_in_watermark_url">Watermark url: </label>
318
  </td>
319
  <td>
320
  <input type="text" id="built_in_watermark_url" name="built_in_watermark_url" style="width: 68%;" value="<?php echo $row->built_in_watermark_url; ?>" style="display:inline-block;" onchange="preview_built_in_watermark()" />
@@ -327,14 +327,14 @@ class BWGViewOptions_bwg {
327
  title="Add image"
328
  onclick="return false;"
329
  style="margin-bottom:5px;">
330
- Add Image
331
  </a>
332
- <div class="spider_description">Only .png format is supported.</div>
333
  </td>
334
  </tr>
335
  <tr id="tr_built_in_watermark_text">
336
  <td class="spider_label_options">
337
- <label for="built_in_watermark_text">Watermark text: </label>
338
  </td>
339
  <td>
340
  <input type="text" name="built_in_watermark_text" id="built_in_watermark_text" style="width: 100%;" value="<?php echo $row->built_in_watermark_text; ?>" onchange="preview_built_in_watermark()" onkeypress="preview_built_in_watermark()" />
@@ -343,16 +343,16 @@ class BWGViewOptions_bwg {
343
  </tr>
344
  <tr id="tr_built_in_watermark_size">
345
  <td class="spider_label_options">
346
- <label for="built_in_watermark_size">Watermark size: </label>
347
  </td>
348
  <td>
349
  <input type="text" name="built_in_watermark_size" id="built_in_watermark_size" value="<?php echo $row->built_in_watermark_size; ?>" class="spider_int_input" onchange="preview_built_in_watermark()" /> %
350
- <div class="spider_description">Enter size of watermark in percents according to image.</div>
351
  </td>
352
  </tr>
353
  <tr id="tr_built_in_watermark_font_size">
354
  <td class="spider_label_options">
355
- <label for="built_in_watermark_font_size">Watermark font size: </label>
356
  </td>
357
  <td>
358
  <input type="text" name="built_in_watermark_font_size" id="built_in_watermark_font_size" value="<?php echo $row->built_in_watermark_font_size; ?>" class="spider_int_input" onchange="preview_built_in_watermark()" />
@@ -361,7 +361,7 @@ class BWGViewOptions_bwg {
361
  </tr>
362
  <tr id="tr_built_in_watermark_font">
363
  <td class="spider_label_options">
364
- <label for="built_in_watermark_font">Watermark font style: </label>
365
  </td>
366
  <td>
367
  <select name="built_in_watermark_font" id="built_in_watermark_font" style="width:150px;" onchange="preview_built_in_watermark()">
@@ -390,7 +390,7 @@ class BWGViewOptions_bwg {
390
  </tr>
391
  <tr id="tr_built_in_watermark_color">
392
  <td class="spider_label_options">
393
- <label for="built_in_watermark_color">Watermark color: </label>
394
  </td>
395
  <td>
396
  <input type="text" name="built_in_watermark_color" id="built_in_watermark_color" value="<?php echo $row->built_in_watermark_color; ?>" class="color" onchange="preview_built_in_watermark()" />
@@ -399,16 +399,16 @@ class BWGViewOptions_bwg {
399
  </tr>
400
  <tr id="tr_built_in_watermark_opacity">
401
  <td class="spider_label_options">
402
- <label for="built_in_watermark_opacity">Watermark opacity: </label>
403
  </td>
404
  <td>
405
  <input type="text" name="built_in_watermark_opacity" id="built_in_watermark_opacity" value="<?php echo $row->built_in_watermark_opacity; ?>" class="spider_int_input" onchange="preview_built_in_watermark()" /> %
406
- <div class="spider_description">Opacity value must be in the range of 0 to 100.</div>
407
  </td>
408
  </tr>
409
  <tr id="tr_built_in_watermark_position">
410
  <td class="spider_label_options">
411
- <label>Watermark position: </label>
412
  </td>
413
  <td>
414
  <table class="bwg_position_table">
@@ -453,21 +453,21 @@ class BWGViewOptions_bwg {
453
  <tbody>
454
  <tr id="tr_watermark_type">
455
  <td class="spider_label_options">
456
- <label>Advertisement type: </label>
457
  </td>
458
  <td>
459
  <input type="radio" name="watermark_type" id="watermark_type_none" value="none" <?php if ($row->watermark_type == 'none') echo 'checked="checked"'; ?> onClick="bwg_watermark('watermark_type_none')" />
460
- <label for="watermark_type_none">None</label>
461
  <input type="radio" name="watermark_type" id="watermark_type_text" value="text" <?php if ($row->watermark_type == 'text') echo 'checked="checked"'; ?> onClick="bwg_watermark('watermark_type_text')" onchange="preview_watermark()" />
462
- <label for="watermark_type_text">Text</label>
463
  <input type="radio" name="watermark_type" id="watermark_type_image" value="image" <?php if ($row->watermark_type == 'image') echo 'checked="checked"'; ?> onClick="bwg_watermark('watermark_type_image')" onchange="preview_watermark()" />
464
- <label for="watermark_type_image">Image</label>
465
  <div class="spider_description"></div>
466
  </td>
467
  </tr>
468
  <tr id="tr_watermark_url">
469
  <td class="spider_label_options">
470
- <label for="watermark_url">Advertisement url: </label>
471
  </td>
472
  <td>
473
  <input type="text" id="watermark_url" name="watermark_url" style="width: 68%;" value="<?php echo $row->watermark_url; ?>" style="display:inline-block;" onchange="preview_watermark()" />
@@ -482,14 +482,14 @@ class BWGViewOptions_bwg {
482
  title="Add image"
483
  onclick="return false;"
484
  style="margin-bottom:5px;">
485
- Add Image
486
  </a>
487
- <div class="spider_description">Enter absolute image file url or add file from Options page. (.jpg,.jpeg,.png,.gif formats are supported)</div>
488
  </td>
489
  </tr>
490
  <tr id="tr_watermark_text">
491
  <td class="spider_label_options">
492
- <label for="watermark_text">Advertisement text: </label>
493
  </td>
494
  <td>
495
  <input type="text" name="watermark_text" id="watermark_text" style="width: 100%;" value="<?php echo $row->watermark_text; ?>" onchange="preview_watermark()" onkeypress="preview_watermark()" />
@@ -498,26 +498,26 @@ class BWGViewOptions_bwg {
498
  </tr>
499
  <tr id="tr_watermark_link">
500
  <td class="spider_label_options">
501
- <label for="watermark_link">Advertisement link: </label>
502
  </td>
503
  <td>
504
  <input type="text" name="watermark_link" id="watermark_link" style="width: 100%;" value="<?php echo $row->watermark_link; ?>" onchange="preview_watermark()" onkeypress="preview_watermark()" />
505
- <div class="spider_description">Enter a URL to open when the advertisement banner is clicked.</div>
506
  </td>
507
  </tr>
508
  <tr id="tr_watermark_width_height">
509
  <td class="spider_label_options">
510
- <label for="watermark_width">Advertisement dimensions: </label>
511
  </td>
512
  <td>
513
  <input type="text" name="watermark_width" id="watermark_width" value="<?php echo $row->watermark_width; ?>" class="spider_int_input" onchange="preview_watermark()" /> x
514
  <input type="text" name="watermark_height" id="watermark_height" value="<?php echo $row->watermark_height; ?>" class="spider_int_input" onchange="preview_watermark()" /> px
515
- <div class="spider_description">Maximum values for watermark image width and height.</div>
516
  </td>
517
  </tr>
518
  <tr id="tr_watermark_font_size">
519
  <td class="spider_label_options">
520
- <label for="watermark_font_size">Advertisement font size: </label>
521
  </td>
522
  <td>
523
  <input type="text" name="watermark_font_size" id="watermark_font_size" value="<?php echo $row->watermark_font_size; ?>" class="spider_int_input" onchange="preview_watermark()" /> px
@@ -526,7 +526,7 @@ class BWGViewOptions_bwg {
526
  </tr>
527
  <tr id="tr_watermark_font">
528
  <td class="spider_label_options">
529
- <label for="watermark_font">Advertisement font style: </label>
530
  </td>
531
  <td>
532
  <select name="watermark_font" id="watermark_font" style="width:150px;" onchange="preview_watermark()">
@@ -543,7 +543,7 @@ class BWGViewOptions_bwg {
543
  </tr>
544
  <tr id="tr_watermark_color">
545
  <td class="spider_label_options">
546
- <label for="watermark_color">Advertisement color: </label>
547
  </td>
548
  <td>
549
  <input type="text" name="watermark_color" id="watermark_color" value="<?php echo $row->watermark_color; ?>" class="color" onchange="preview_watermark()" />
@@ -552,16 +552,16 @@ class BWGViewOptions_bwg {
552
  </tr>
553
  <tr id="tr_watermark_opacity">
554
  <td class="spider_label_options">
555
- <label for="watermark_opacity">Advertisement opacity: </label>
556
  </td>
557
  <td>
558
  <input type="text" name="watermark_opacity" id="watermark_opacity" value="<?php echo $row->watermark_opacity; ?>" class="spider_int_input" onchange="preview_watermark()" /> %
559
- <div class="spider_description">Value must be between 0 to 100.</div>
560
  </td>
561
  </tr>
562
  <tr id="tr_watermark_position">
563
  <td class="spider_label_options">
564
- <label>Advertisement position: </label>
565
  </td>
566
  <td>
567
  <table class="bwg_position_table">
@@ -606,17 +606,17 @@ class BWGViewOptions_bwg {
606
  <tbody>
607
  <tr id="tr_popup_full_width">
608
  <td class="spider_label_options">
609
- <label>Full width lightbox:</label>
610
  </td>
611
  <td>
612
- <input type="radio" name="popup_fullscreen" id="popup_fullscreen_1" value="1" <?php if ($row->popup_fullscreen) echo 'checked="checked"'; ?> onchange="bwg_popup_fullscreen(1)" /><label for="popup_fullscreen_1">Yes</label>
613
- <input type="radio" name="popup_fullscreen" id="popup_fullscreen_0" value="0" <?php if (!$row->popup_fullscreen) echo 'checked="checked"'; ?> onchange="bwg_popup_fullscreen(0)" /><label for="popup_fullscreen_0">No</label>
614
- <div class="spider_description">Enable full width feature for the lightbox.</div>
615
  </td>
616
  </tr>
617
  <tr id="tr_popup_dimensions" >
618
  <td class="spider_label_options">
619
- <label for="popup_width">Lightbox dimensions:</label>
620
  </td>
621
  <td>
622
  <input type="text" name="popup_width" id="popup_width" value="<?php echo $row->popup_width; ?>" class="spider_int_input" /> x
@@ -626,14 +626,14 @@ class BWGViewOptions_bwg {
626
  </tr>
627
  <tr>
628
  <td class="spider_label_options">
629
- <label for="popup_type">Lightbox effect:</label>
630
  </td>
631
  <td>
632
  <select name="popup_type" id="popup_type" style="width:150px;">
633
  <?php
634
  foreach ($effects as $key => $effect) {
635
  ?>
636
- <option value="<?php echo $key; ?>" <?php echo ($key != 'none' && $key != 'fade') ? 'disabled="disabled" title="This effect is disabled in free version."' : ''; ?> <?php if ($row->popup_type == $key) echo 'selected="selected"'; ?>><?php echo $effect; ?></option>
637
  <?php
638
  }
639
  ?>
@@ -643,17 +643,17 @@ class BWGViewOptions_bwg {
643
  </tr>
644
  <tr id="tr_popup_autoplay">
645
  <td class="spider_label_options">
646
- <label>Lightbox autoplay: </label>
647
  </td>
648
  <td>
649
- <input type="radio" name="popup_autoplay" id="popup_autoplay_1" value="1" <?php if ($row->popup_autoplay) echo 'checked="checked"'; ?> /><label for="popup_autoplay_1">Yes</label>
650
- <input type="radio" name="popup_autoplay" id="popup_autoplay_0" value="0" <?php if (!$row->popup_autoplay) echo 'checked="checked"'; ?> /><label for="popup_autoplay_0">No</label>
651
  <div class="spider_description"></div>
652
  </td>
653
  </tr>
654
  <tr>
655
  <td class="spider_label_options">
656
- <label for="popup_interval">Time interval:</label>
657
  </td>
658
  <td>
659
  <input type="text" name="popup_interval" id="popup_interval" value="<?php echo $row->popup_interval; ?>" class="spider_int_input" /> sec.
@@ -661,47 +661,47 @@ class BWGViewOptions_bwg {
661
  </td>
662
  </tr>
663
  <tr>
664
- <td class="spider_label_options spider_free_version_label">
665
- <label>Enable filmstrip:</label>
666
  </td>
667
  <td>
668
- <input disabled="disabled" type="radio" name="popup_enable_filmstrip" id="popup_enable_filmstrip_1" value="1" <?php if ($row->popup_enable_filmstrip ) echo 'checked="checked"'; ?> onClick="bwg_enable_disable('', 'tr_popup_filmstrip_height', 'popup_enable_filmstrip_1')" /><label for="popup_enable_filmstrip_1">Yes</label>
669
- <input disabled="disabled" type="radio" name="popup_enable_filmstrip" id="popup_enable_filmstrip_0" value="0" <?php if (!$row->popup_enable_filmstrip ) echo 'checked="checked"'; ?> onClick="bwg_enable_disable('none', 'tr_popup_filmstrip_height', 'popup_enable_filmstrip_0')" /><label for="popup_enable_filmstrip_0">No</label>
670
- <div class="spider_description spider_free_version">This option is disabled in free version.</div>
671
  </td>
672
  </tr>
673
  <tr id="tr_popup_filmstrip_height">
674
  <td class="spider_label_options spider_free_version_label">
675
- <label for="popup_filmstrip_height">Filmstrip size:</label>
676
  </td>
677
  <td class="spider_free_version_label">
678
  <input disabled="disabled" type="text" name="popup_filmstrip_height" id="popup_filmstrip_height" value="<?php echo $row->popup_filmstrip_height; ?>" class="spider_int_input spider_free_version_label" /> px
679
- <div class="spider_description spider_free_version">This option is disabled in free version.</div>
680
  </td>
681
  </tr>
682
  <tr id="tr_popup_hit_counter">
683
  <td class="spider_label_options spider_free_version_label">
684
- <label>Display hit counter:</label>
685
  </td>
686
  <td>
687
- <input disabled="disabled" type="radio" name="popup_hit_counter" id="popup_hit_counter_1" value="1" <?php if ($row->popup_hit_counter) echo 'checked="checked"'; ?> /><label for="popup_hit_counter_1">Yes</label>
688
- <input disabled="disabled" type="radio" name="popup_hit_counter" id="popup_hit_counter_0" value="0" <?php if (!$row->popup_hit_counter) echo 'checked="checked"'; ?> /><label for="popup_hit_counter_0">No</label>
689
- <div class="spider_description spider_free_version">This option is disabled in free version.</div>
690
  </td>
691
  </tr>
692
  <tr>
693
  <td class="spider_label_options">
694
- <label> Show Next / Previous buttons:</label>
695
  </td>
696
  <td>
697
- <input type="radio" name="autohide_lightbox_navigation" id="autohide_lightbox_navigation_1" value="1" <?php if ($row->autohide_lightbox_navigation ) echo 'checked="checked"'; ?> /><label for="autohide_lightbox_navigation_1">On hover</label>
698
- <input type="radio" name="autohide_lightbox_navigation" id="autohide_lightbox_navigation_0" value="0" <?php if (!$row->autohide_lightbox_navigation ) echo 'checked="checked"'; ?> /><label for="autohide_lightbox_navigation_0">Always</label>
699
  <div class="spider_description"></div>
700
  </td>
701
  </tr>
702
  <tr>
703
  <td class="spider_label_options">
704
- <label>Enable control buttons:</label>
705
  </td>
706
  <td>
707
  <input type="radio" name="popup_enable_ctrl_btn" id="popup_enable_ctrl_btn_1" value="1" <?php if ($row->popup_enable_ctrl_btn) echo 'checked="checked"'; ?> onClick="bwg_enable_disable('', 'tr_popup_fullscreen', 'popup_enable_ctrl_btn_1');
@@ -716,7 +716,7 @@ class BWGViewOptions_bwg {
716
  bwg_enable_disable('', 'tr_popup_email', 'popup_enable_ctrl_btn_1');
717
  bwg_enable_disable('', 'tr_popup_captcha', 'popup_enable_ctrl_btn_1');
718
  bwg_enable_disable('', 'tr_popup_download', 'popup_enable_ctrl_btn_1');
719
- bwg_enable_disable('', 'tr_popup_fullsize_image', 'popup_enable_ctrl_btn_1');" /><label for="popup_enable_ctrl_btn_1">Yes</label>
720
  <input type="radio" name="popup_enable_ctrl_btn" id="popup_enable_ctrl_btn_0" value="0" <?php if (!$row->popup_enable_ctrl_btn) echo 'checked="checked"'; ?> onClick="bwg_enable_disable('none', 'tr_popup_fullscreen', 'popup_enable_ctrl_btn_0');
721
  bwg_enable_disable('none', 'tr_popup_info', 'popup_enable_ctrl_btn_0');
722
  bwg_enable_disable('none', 'tr_popup_comment', 'popup_enable_ctrl_btn_0');
@@ -729,48 +729,48 @@ class BWGViewOptions_bwg {
729
  bwg_enable_disable('none', 'tr_popup_email', 'popup_enable_ctrl_btn_0');
730
  bwg_enable_disable('none', 'tr_popup_captcha', 'popup_enable_ctrl_btn_0');
731
  bwg_enable_disable('none', 'tr_popup_download', 'popup_enable_ctrl_btn_0');
732
- bwg_enable_disable('none', 'tr_popup_fullsize_image', 'popup_enable_ctrl_btn_0');" /><label for="popup_enable_ctrl_btn_0">No</label>
733
  <div class="spider_description"></div>
734
  </td>
735
  </tr>
736
  <tr id="tr_popup_fullscreen">
737
  <td class="spider_label_options">
738
- <label>Enable fullscreen:</label>
739
  </td>
740
  <td>
741
- <input type="radio" name="popup_enable_fullscreen" id="popup_enable_fullscreen_1" value="1" <?php if ($row->popup_enable_fullscreen) echo 'checked="checked"'; ?> /><label for="popup_enable_fullscreen_1">Yes</label>
742
- <input type="radio" name="popup_enable_fullscreen" id="popup_enable_fullscreen_0" value="0" <?php if (!$row->popup_enable_fullscreen) echo 'checked="checked"'; ?> /><label for="popup_enable_fullscreen_0">No</label>
743
  <div class="spider_description"></div>
744
  </td>
745
  </tr>
746
  <tr id="tr_popup_info">
747
  <td class="spider_label_options">
748
- <label>Enable info:</label>
749
  </td>
750
  <td>
751
- <input type="radio" name="popup_enable_info" id="popup_enable_info_1" value="1" <?php if ($row->popup_enable_info) echo 'checked="checked"'; ?> /><label for="popup_enable_info_1">Yes</label>
752
- <input type="radio" name="popup_enable_info" id="popup_enable_info_0" value="0" <?php if (!$row->popup_enable_info) echo 'checked="checked"'; ?> /><label for="popup_enable_info_0">No</label>
753
  <div class="spider_description"></div>
754
  </td>
755
  </tr>
756
  <tr id="tr_popup_info_always_show">
757
  <td class="spider_label_options">
758
- <label>Display info by default:</label>
759
  </td>
760
  <td>
761
- <input type="radio" name="popup_info_always_show" id="popup_info_always_show_1" value="1" <?php if ($row->popup_info_always_show) echo 'checked="checked"'; ?> /><label for="popup_info_always_show_1">Yes</label>
762
- <input type="radio" name="popup_info_always_show" id="popup_info_always_show_0" value="0" <?php if (!$row->popup_info_always_show) echo 'checked="checked"'; ?> /><label for="popup_info_always_show_0">No</label>
763
  <div class="spider_description"></div>
764
  </td>
765
  </tr>
766
  <tr id="tr_popup_info_full_width">
767
  <td class="spider_label_options">
768
- <label>Full width info:</label>
769
  </td>
770
  <td>
771
- <input type="radio" name="popup_info_full_width" id="popup_info_full_width_1" value="1" <?php if ($row->popup_info_full_width) echo 'checked="checked"'; ?> /><label for="popup_info_full_width_1">Yes</label>
772
- <input type="radio" name="popup_info_full_width" id="popup_info_full_width_0" value="0" <?php if (!$row->popup_info_full_width) echo 'checked="checked"'; ?> /><label for="popup_info_full_width_0">No</label>
773
- <div class="spider_description">Display image information based on the lightbox dimensions.</div>
774
  </td>
775
  </tr>
776
  </tbody>
@@ -781,158 +781,158 @@ class BWGViewOptions_bwg {
781
  <tbody>
782
  <tr id="tr_popup_rate">
783
  <td class="spider_label_options spider_free_version_label">
784
- <label>Enable rating:</label>
785
  </td>
786
  <td>
787
- <input disabled="disabled" type="radio" name="popup_enable_rate" id="popup_enable_rate_1" value="1" <?php if ($row->popup_enable_rate) echo 'checked="checked"'; ?> /><label for="popup_enable_rate_1">Yes</label>
788
- <input disabled="disabled" type="radio" name="popup_enable_rate" id="popup_enable_rate_0" value="0" <?php if (!$row->popup_enable_rate) echo 'checked="checked"'; ?> /><label for="popup_enable_rate_0">No</label>
789
- <div class="spider_description spider_free_version">This option is disabled in free version.</div>
790
  </td>
791
  </tr>
792
  <tr id="tr_popup_comment">
793
  <td class="spider_label_options spider_free_version_label">
794
- <label>Enable comments:</label>
795
  </td>
796
  <td>
797
  <input disabled="disabled" type="radio" name="popup_enable_comment" id="popup_enable_comment_1" value="1" <?php if ($row->popup_enable_comment) echo 'checked="checked"'; ?> onClick="bwg_enable_disable('', 'tr_comment_moderation', 'popup_enable_comment_1');
798
  bwg_enable_disable('', 'tr_popup_email', 'popup_enable_comment_1');
799
- bwg_enable_disable('', 'tr_popup_captcha', 'popup_enable_comment_1');" /><label for="popup_enable_comment_1">Yes</label>
800
  <input disabled="disabled" type="radio" name="popup_enable_comment" id="popup_enable_comment_0" value="0" <?php if (!$row->popup_enable_comment) echo 'checked="checked"'; ?> onClick="bwg_enable_disable('none', 'tr_comment_moderation', 'popup_enable_comment_0');
801
  bwg_enable_disable('none', 'tr_popup_email', 'popup_enable_comment_0');
802
- bwg_enable_disable('none', 'tr_popup_captcha', 'popup_enable_comment_0');" /><label for="popup_enable_comment_0">No</label>
803
- <div class="spider_description spider_free_version">This option is disabled in free version.</div>
804
  </td>
805
  </tr>
806
  <tr id="tr_comment_moderation">
807
  <td class="spider_label_options spider_free_version_label">
808
- <label>Enable comments moderation:</label>
809
  </td>
810
  <td>
811
- <input disabled="disabled" type="radio" name="comment_moderation" id="comment_moderation_1" value="1" <?php if ($row->comment_moderation) echo 'checked="checked"'; ?> /><label for="comment_moderation_1">Yes</label>
812
- <input disabled="disabled" type="radio" name="comment_moderation" id="comment_moderation_0" value="0" <?php if (!$row->comment_moderation) echo 'checked="checked"'; ?> /><label for="comment_moderation_0">No</label>
813
- <div class="spider_description spider_free_version">This option is disabled in free version.</div>
814
  </td>
815
  </tr>
816
  <tr id="tr_popup_email">
817
  <td class="spider_label_options spider_free_version_label">
818
- <label>Enable Email for comments:</label>
819
  </td>
820
  <td>
821
- <input disabled="disabled" type="radio" name="popup_enable_email" id="popup_enable_email_1" value="1" <?php if ($row->popup_enable_email) echo 'checked="checked"'; ?> /><label for="popup_enable_email_1">Yes</label>
822
- <input disabled="disabled" type="radio" name="popup_enable_email" id="popup_enable_email_0" value="0" <?php if (!$row->popup_enable_email) echo 'checked="checked"'; ?> /><label for="popup_enable_email_0">No</label>
823
- <div class="spider_description spider_free_version">This option is disabled in free version.</div>
824
  </td>
825
  </tr>
826
  <tr id="tr_popup_captcha">
827
  <td class="spider_label_options spider_free_version_label">
828
- <label>Enable Captcha for comments:</label>
829
  </td>
830
  <td>
831
- <input disabled="disabled" type="radio" name="popup_enable_captcha" id="popup_enable_captcha_1" value="1" <?php if ($row->popup_enable_captcha) echo 'checked="checked"'; ?> /><label for="popup_enable_captcha_1">Yes</label>
832
- <input disabled="disabled" type="radio" name="popup_enable_captcha" id="popup_enable_captcha_0" value="0" <?php if (!$row->popup_enable_captcha) echo 'checked="checked"'; ?> /><label for="popup_enable_captcha_0">No</label>
833
- <div class="spider_description spider_free_version">This option is disabled in free version.</div>
834
  </td>
835
  </tr>
836
  <tr id="tr_popup_fullsize_image">
837
  <td class="spider_label_options">
838
- <label>Enable original image display button:</label>
839
  </td>
840
  <td>
841
- <input type="radio" name="popup_enable_fullsize_image" id="popup_enable_fullsize_image_1" value="1" <?php if ($row->popup_enable_fullsize_image) echo 'checked="checked"'; ?> /><label for="popup_enable_fullsize_image_1">Yes</label>
842
- <input type="radio" name="popup_enable_fullsize_image" id="popup_enable_fullsize_image_0" value="0" <?php if (!$row->popup_enable_fullsize_image) echo 'checked="checked"'; ?> /><label for="popup_enable_fullsize_image_0">No</label>
843
  <div class="spider_description"></div>
844
  </td>
845
  </tr>
846
  <tr id="tr_popup_download">
847
  <td class="spider_label_options">
848
- <label>Enable download button:</label>
849
  </td>
850
  <td>
851
- <input type="radio" name="popup_enable_download" id="popup_enable_download_1" value="1" <?php if ($row->popup_enable_download) echo 'checked="checked"'; ?> /><label for="popup_enable_download_1">Yes</label>
852
- <input type="radio" name="popup_enable_download" id="popup_enable_download_0" value="0" <?php if (!$row->popup_enable_download) echo 'checked="checked"'; ?> /><label for="popup_enable_download_0">No</label>
853
  <div class="spider_description"></div>
854
  </td>
855
  </tr>
856
  <tr id="tr_popup_facebook">
857
  <td class="spider_label_options spider_free_version_label">
858
- <label>Enable Facebook button:</label>
859
  </td>
860
  <td>
861
- <input disabled="disabled" type="radio" name="popup_enable_facebook" id="popup_enable_facebook_1" value="1" <?php if ($row->popup_enable_facebook) echo 'checked="checked"'; ?> /><label for="popup_enable_facebook_1">Yes</label>
862
- <input disabled="disabled" type="radio" name="popup_enable_facebook" id="popup_enable_facebook_0" value="0" <?php if (!$row->popup_enable_facebook) echo 'checked="checked"'; ?> /><label for="popup_enable_facebook_0">No</label>
863
- <div class="spider_description spider_free_version">This option is disabled in free version.</div>
864
  </td>
865
  </tr>
866
  <tr id="tr_popup_twitter">
867
  <td class="spider_label_options spider_free_version_label">
868
- <label>Enable Twitter button:</label>
869
  </td>
870
  <td>
871
- <input disabled="disabled" type="radio" name="popup_enable_twitter" id="popup_enable_facebook_1" value="1" <?php if ($row->popup_enable_twitter) echo 'checked="checked"'; ?> /><label for="popup_enable_twitter_1">Yes</label>
872
- <input disabled="disabled" type="radio" name="popup_enable_twitter" id="popup_enable_facebook_0" value="0" <?php if (!$row->popup_enable_twitter) echo 'checked="checked"'; ?> /><label for="popup_enable_twitter_0">No</label>
873
- <div class="spider_description spider_free_version">This option is disabled in free version.</div>
874
  </td>
875
  </tr>
876
  <tr id="tr_popup_google">
877
  <td class="spider_label_options spider_free_version_label">
878
- <label>Enable Google+ button:</label>
879
  </td>
880
  <td>
881
- <input disabled="disabled" type="radio" name="popup_enable_google" id="popup_enable_google_1" value="1" <?php if ($row->popup_enable_google) echo 'checked="checked"'; ?> /><label for="popup_enable_google_1">Yes</label>
882
- <input disabled="disabled" type="radio" name="popup_enable_google" id="popup_enable_google_0" value="0" <?php if (!$row->popup_enable_google) echo 'checked="checked"'; ?> /><label for="popup_enable_google_0">No</label>
883
- <div class="spider_description spider_free_version">This option is disabled in free version.</div>
884
  </td>
885
  </tr>
886
  <tr id="tr_popup_pinterest">
887
  <td class="spider_label_options spider_free_version_label">
888
- <label>Enable Pinterest button:</label>
889
  </td>
890
  <td>
891
- <input disabled="disabled" type="radio" name="popup_enable_pinterest" id="popup_enable_pinterest_1" value="1" <?php if ($row->popup_enable_pinterest) echo 'checked="checked"'; ?> /><label for="popup_enable_pinterest_1">Yes</label>
892
- <input disabled="disabled" type="radio" name="popup_enable_pinterest" id="popup_enable_pinterest_0" value="0" <?php if (!$row->popup_enable_pinterest) echo 'checked="checked"'; ?> /><label for="popup_enable_pinterest_0">No</label>
893
- <div class="spider_description spider_free_version">This option is disabled in free version.</div>
894
  </td>
895
  </tr>
896
  <tr id="tr_popup_tumblr">
897
  <td class="spider_label_options spider_free_version_label">
898
- <label>Enable Tumblr button:</label>
899
  </td>
900
  <td>
901
- <input disabled="disabled" type="radio" name="popup_enable_tumblr" id="popup_enable_tumblr_1" value="1" <?php if ($row->popup_enable_tumblr) echo 'checked="checked"'; ?> /><label for="popup_enable_tumblr_1">Yes</label>
902
- <input disabled="disabled" type="radio" name="popup_enable_tumblr" id="popup_enable_tumblr_0" value="0" <?php if (!$row->popup_enable_tumblr) echo 'checked="checked"'; ?> /><label for="popup_enable_tumblr_0">No</label>
903
- <div class="spider_description spider_free_version">This option is disabled in free version.</div>
904
  </td>
905
  </tr>
906
  <tr id="tr_image_count">
907
  <td class="spider_label_options">
908
- <label>Show images count:</label>
909
  </td>
910
  <td>
911
- <input type="radio" name="show_image_counts" id="show_image_counts_current_image_number_1" value="1" <?php if ($row->show_image_counts) echo 'checked="checked"'; ?> /><label for="show_image_counts_current_image_number_1">Yes</label>
912
- <input type="radio" name="show_image_counts" id="show_image_counts_current_image_number_0" value="0" <?php if (!$row->show_image_counts) echo 'checked="checked"'; ?> /><label for="show_image_counts_current_image_number_0">No</label>
913
  <div class="spider_description"></div>
914
  </td>
915
  </tr>
916
  <tr id="tr_image_cycle">
917
  <td class="spider_label_options">
918
- <label>Enable loop:</label>
919
  </td>
920
  <td>
921
- <input type="radio" name="enable_loop" id="enable_loop_1" value="1" <?php if ($row->enable_loop) echo 'checked="checked"'; ?> /><label for="enable_loop_1">Yes</label>
922
- <input type="radio" name="enable_loop" id="enable_loop_0" value="0" <?php if (!$row->enable_loop) echo 'checked="checked"'; ?> /><label for="enable_loop_0">No</label>
923
  <div class="spider_description"></div>
924
  </td>
925
  </tr>
926
  <tr>
927
  <td class="spider_label_options spider_free_version_label">
928
- <label>Enable AddThis:</label>
929
  </td>
930
  <td>
931
  <input disabled="disabled" type="radio" name="enable_addthis" id="enable_addthis_1" value="1" <?php if ($row->enable_addthis ) echo 'checked="checked"'; ?> />
932
- <label for="enable_addthis_1">Yes</label>
933
  <input disabled="disabled" type="radio" name="enable_addthis" id="enable_addthis_0" value="0" <?php if (!$row->enable_addthis ) echo 'checked="checked"'; ?> />
934
- <label for="enable_addthis_0">No</label>
935
- <div class="spider_description spider_free_version">This option is disabled in free version.</div>
936
  </td>
937
  </tr>
938
  </tbody>
@@ -948,7 +948,7 @@ class BWGViewOptions_bwg {
948
  <tbody>
949
  <tr>
950
  <td class="spider_label_options">
951
- <label for="album_column_number">Number of album columns: </label>
952
  </td>
953
  <td>
954
  <input type="text" name="album_column_number" id="album_column_number" value="<?php echo $row->album_column_number; ?>" class="spider_int_input" />
@@ -957,7 +957,7 @@ class BWGViewOptions_bwg {
957
  </tr>
958
  <tr>
959
  <td class="spider_label_options">
960
- <label for="albums_per_page">Albums per page: </label>
961
  </td>
962
  <td>
963
  <input type="text" name="albums_per_page" id="albums_per_page" value="<?php echo $row->albums_per_page; ?>" class="spider_int_input" />
@@ -966,58 +966,58 @@ class BWGViewOptions_bwg {
966
  </tr>
967
  <tr>
968
  <td class="spider_label_options">
969
- <label>Enable pagination:</label>
970
  </td>
971
  <td>
972
- <input type="radio" name="album_enable_page" id="album_enable_page_1" value="1" <?php if ($row->album_enable_page) echo 'checked="checked"'; ?> /><label for="album_enable_page_1">Yes</label>
973
- <input type="radio" name="album_enable_page" id="album_enable_page_0" value="0" <?php if (!$row->album_enable_page) echo 'checked="checked"'; ?> /><label for="album_enable_page_0">No</label>
974
  <div class="spider_description"></div>
975
  </td>
976
  </tr>
977
  <tr>
978
  <td class="spider_label_options">
979
- <label>Album view type:</label>
980
  </td>
981
  <td>
982
- <input disabled="disabled" type="radio" name="album_view_type" id="album_view_type_1" value="thumbnail" <?php if ($row->album_view_type == "thumbnail") echo 'checked="checked"'; ?> /><label for="album_view_type_1">Thumbnail</label>
983
- <input disabled="disabled" type="radio" name="album_view_type" id="album_view_type_0" value="masonry" <?php if ($row->album_view_type == "masonry") echo 'checked="checked"'; ?> /><label for="album_view_type_0">Masonry</label>
984
- <div class="spider_description spider_free_version">This option is disabled in free version.</div>
985
  </td>
986
  </tr>
987
  <tr>
988
  <td class="spider_label_options">
989
- <label>Show title:</label>
990
  </td>
991
  <td>
992
- <input type="radio" name="album_title_show_hover" id="album_title_show_hover_1" value="hover" <?php if ($row->album_title_show_hover == "hover") echo 'checked="checked"'; ?> /><label for="album_title_show_hover_1">Show on hover</label><br />
993
- <input type="radio" name="album_title_show_hover" id="album_title_show_hover_0" value="show" <?php if ($row->album_title_show_hover == "show") echo 'checked="checked"'; ?> /><label for="album_title_show_hover_0">Always show</label><br />
994
- <input type="radio" name="album_title_show_hover" id="album_title_show_hover_2" value="none" <?php if ($row->album_title_show_hover == "none") echo 'checked="checked"'; ?> /><label for="album_title_show_hover_2">Don't show</label>
995
  <div class="spider_description"></div>
996
  </td>
997
  </tr>
998
  <tr>
999
  <td class="spider_label_options">
1000
- <label>Show album/gallery name:</label>
1001
  </td>
1002
  <td>
1003
- <input type="radio" name="show_album_name_enable" id="show_album_name_enable_1" value="1" <?php if ($row->show_album_name) echo 'checked="checked"'; ?> /><label for="show_album_name_enable_1">Yes</label>
1004
- <input type="radio" name="show_album_name_enable" id="show_album_name_enable_0" value="0" <?php if (!$row->show_album_name) echo 'checked="checked"'; ?> /><label for="show_album_name_enable_0">No</label>
1005
  <div class="spider_description"></div>
1006
  </td>
1007
  </tr>
1008
  <tr>
1009
  <td class="spider_label_options">
1010
- <label>Enable extended album description:</label>
1011
  </td>
1012
  <td>
1013
- <input type="radio" name="extended_album_description_enable" id="extended_album_description_enable_1" value="1" <?php if ($row->extended_album_description_enable) echo 'checked="checked"'; ?> /><label for="extended_album_description_enable_1">Yes</label>
1014
- <input type="radio" name="extended_album_description_enable" id="extended_album_description_enable_0" value="0" <?php if (!$row->extended_album_description_enable) echo 'checked="checked"'; ?> /><label for="extended_album_description_enable_0">No</label>
1015
  <div class="spider_description"></div>
1016
  </td>
1017
  </tr>
1018
  <tr>
1019
  <td class="spider_label_options">
1020
- <label for="album_thumb_width">Album thumbnail dimensions: </label>
1021
  </td>
1022
  <td>
1023
  <input type="text" name="album_thumb_width" id="album_thumb_width" value="<?php echo $row->album_thumb_width; ?>" class="spider_int_input" /> x
@@ -1027,7 +1027,7 @@ class BWGViewOptions_bwg {
1027
  </tr>
1028
  <tr>
1029
  <td class="spider_label_options">
1030
- <label for="extended_album_height">Extended album height: </label>
1031
  </td>
1032
  <td>
1033
  <input type="text" name="extended_album_height" id="extended_album_height" value="<?php echo $row->extended_album_height; ?>" class="spider_int_input" /> px
@@ -1047,7 +1047,7 @@ class BWGViewOptions_bwg {
1047
  <tbody>
1048
  <tr>
1049
  <td class="spider_label_options">
1050
- <label for="slideshow_type">Slideshow effect: </label>
1051
  </td>
1052
  <td>
1053
  <select name="slideshow_type" id="slideshow_type" style="width:150px;">
@@ -1064,7 +1064,7 @@ class BWGViewOptions_bwg {
1064
  </tr>
1065
  <tr>
1066
  <td class="spider_label_options">
1067
- <label for="slideshow_interval">Time interval: </label>
1068
  </td>
1069
  <td>
1070
  <input type="text" name="slideshow_interval" id="slideshow_interval" value="<?php echo $row->slideshow_interval; ?>" class="spider_int_input" /> sec.
@@ -1073,7 +1073,7 @@ class BWGViewOptions_bwg {
1073
  </tr>
1074
  <tr>
1075
  <td class="spider_label_options">
1076
- <label for="slideshow_width">Slideshow dimensions: </label>
1077
  </td>
1078
  <td>
1079
  <input type="text" name="slideshow_width" id="slideshow_width" value="<?php echo $row->slideshow_width; ?>" class="spider_int_input" /> x
@@ -1083,57 +1083,57 @@ class BWGViewOptions_bwg {
1083
  </tr>
1084
  <tr>
1085
  <td class="spider_label_options">
1086
- <label>Enable autoplay: </label>
1087
  </td>
1088
  <td>
1089
- <input type="radio" name="slideshow_enable_autoplay" id="slideshow_enable_autoplay_yes" value="1" <?php if ($row->slideshow_enable_autoplay) echo 'checked="checked"'; ?> /><label for="slideshow_enable_autoplay_yes">Yes</label>
1090
- <input type="radio" name="slideshow_enable_autoplay" id="slideshow_enable_autoplay_no" value="0" <?php if (!$row->slideshow_enable_autoplay) echo 'checked="checked"'; ?> /><label for="slideshow_enable_autoplay_no">No</label>
1091
  <div class="spider_description"></div>
1092
  </td>
1093
  </tr>
1094
  <tr>
1095
  <td class="spider_label_options">
1096
- <label>Enable shuffle: </label>
1097
  </td>
1098
  <td>
1099
- <input type="radio" name="slideshow_enable_shuffle" id="slideshow_enable_shuffle_yes" value="1" <?php if ($row->slideshow_enable_shuffle) echo 'checked="checked"'; ?> /><label for="slideshow_enable_shuffle_yes">Yes</label>
1100
- <input type="radio" name="slideshow_enable_shuffle" id="slideshow_enable_shuffle_no" value="0" <?php if (!$row->slideshow_enable_shuffle) echo 'checked="checked"'; ?> /><label for="slideshow_enable_shuffle_no">No</label>
1101
  <div class="spider_description"></div>
1102
  </td>
1103
  </tr>
1104
  <tr>
1105
  <td class="spider_label_options">
1106
- <label> Show Next / Previous buttons:</label>
1107
  </td>
1108
  <td>
1109
- <input type="radio" name="autohide_slideshow_navigation" id="autohide_slideshow_navigation_1" value="1" <?php if ($row->autohide_slideshow_navigation) echo 'checked="checked"'; ?> /><label for="autohide_slideshow_navigation_1">On hover</label>
1110
- <input type="radio" name="autohide_slideshow_navigation" id="autohide_slideshow_navigation_0" value="0" <?php if (!$row->autohide_slideshow_navigation) echo 'checked="checked"'; ?> /><label for="autohide_slideshow_navigation_0">Always</label>
1111
  <div class="spider_description"></div>
1112
  </td>
1113
  </tr>
1114
  <tr>
1115
  <td class="spider_label_options">
1116
- <label>Enable control buttons: </label>
1117
  </td>
1118
  <td>
1119
- <input type="radio" name="slideshow_enable_ctrl" id="slideshow_enable_ctrl_yes" value="1" <?php if ($row->slideshow_enable_ctrl) echo 'checked="checked"'; ?> /><label for="slideshow_enable_ctrl_yes">Yes</label>
1120
- <input type="radio" name="slideshow_enable_ctrl" id="slideshow_enable_ctrl_no" value="0" <?php if (!$row->slideshow_enable_ctrl) echo 'checked="checked"'; ?> /><label for="slideshow_enable_ctrl_no">No</label>
1121
  <div class="spider_description"></div>
1122
  </td>
1123
  </tr>
1124
  <tr>
1125
- <td class="spider_label_options spider_free_version_label"><label>Enable slideshow filmstrip: </label></td>
1126
  <td>
1127
- <input disabled="disabled" type="radio" name="slideshow_enable_filmstrip" id="slideshow_enable_filmstrip_yes" value="1" <?php if ($row->slideshow_enable_filmstrip) echo 'checked="checked"'; ?> onClick="bwg_enable_disable('', 'tr_slideshow_filmstrip_height', 'slideshow_enable_filmstrip_yes')" /><label for="slideshow_enable_filmstrip_yes">Yes</label>
1128
- <input disabled="disabled" type="radio" name="slideshow_enable_filmstrip" id="slideshow_enable_filmstrip_no" value="0" <?php if (!$row->slideshow_enable_filmstrip) echo 'checked="checked"'; ?> onClick="bwg_enable_disable('none', 'tr_slideshow_filmstrip_height', 'slideshow_enable_filmstrip_no')" /><label for="slideshow_enable_filmstrip_no">No</label>
1129
- <div class="spider_description spider_free_version">This option is disabled in free version.</div>
1130
  </td>
1131
  </tr>
1132
  <tr id="tr_slideshow_filmstrip_height">
1133
- <td class="spider_label_options spider_free_version_label"><label for="slideshow_filmstrip_height">Slideshow filmstrip size: </label></td>
1134
  <td class="spider_free_version_label">
1135
  <input disabled="disabled" type="text" name="slideshow_filmstrip_height" id="slideshow_filmstrip_height" value="<?php echo $row->slideshow_filmstrip_height; ?>" class="spider_int_input spider_free_version_label" /> px
1136
- <div class="spider_description spider_free_version">This option is disabled in free version.</div>
1137
  </td>
1138
  </tr>
1139
  </tbody>
@@ -1143,15 +1143,15 @@ class BWGViewOptions_bwg {
1143
  <table style="width: 100%; display: inline-table;">
1144
  <tbody>
1145
  <tr>
1146
- <td class="spider_label_options"><label>Enable image title: </label></td>
1147
  <td>
1148
- <input type="radio" name="slideshow_enable_title" id="slideshow_enable_title_yes" value="1" <?php if ($row->slideshow_enable_title) echo 'checked="checked"'; ?> onClick="bwg_enable_disable('', 'tr_slideshow_title_position', 'slideshow_enable_title_yes')" /><label for="slideshow_enable_title_yes">Yes</label>
1149
- <input type="radio" name="slideshow_enable_title" id="slideshow_enable_title_no" value="0" <?php if (!$row->slideshow_enable_title) echo 'checked="checked"'; ?> onClick="bwg_enable_disable('none', 'tr_slideshow_title_position', 'slideshow_enable_title_no')" /><label for="slideshow_enable_title_no">No</label>
1150
  <div class="spider_description"></div>
1151
  </td>
1152
  </tr>
1153
  <tr id="tr_slideshow_title_position">
1154
- <td class="spider_label_options"><label>Title position: </label></td>
1155
  <td>
1156
  <table class="bwg_position_table">
1157
  <tbody>
@@ -1172,29 +1172,29 @@ class BWGViewOptions_bwg {
1172
  </tr>
1173
  </tbody>
1174
  </table>
1175
- <div class="spider_description">Image title position on slideshow</div>
1176
  </td>
1177
  </tr>
1178
  <tr id="tr_slideshow_full_width_title">
1179
  <td class="spider_label_options">
1180
- <label>Full width title:</label>
1181
  </td>
1182
  <td>
1183
- <input type="radio" name="slideshow_title_full_width" id="slideshow_title_full_width_1" value="1" <?php if ($row->slideshow_title_full_width) echo 'checked="checked"'; ?> /><label for="slideshow_title_full_width_1">Yes</label>
1184
- <input type="radio" name="slideshow_title_full_width" id="slideshow_title_full_width_0" value="0" <?php if (!$row->slideshow_title_full_width) echo 'checked="checked"'; ?> /><label for="slideshow_title_full_width_0">No</label>
1185
- <div class="spider_description">Display image title based on the slideshow dimensions.</div>
1186
  </td>
1187
  </tr>
1188
  <tr>
1189
- <td class="spider_label_options"><label>Enable image description: </label></td>
1190
  <td>
1191
- <input type="radio" name="slideshow_enable_description" id="slideshow_enable_description_yes" value="1" <?php if ($row->slideshow_enable_description) echo 'checked="checked"'; ?> onClick="bwg_enable_disable('', 'tr_slideshow_description_position', 'slideshow_enable_description_yes')" /><label for="slideshow_enable_description_yes">Yes</label>
1192
- <input type="radio" name="slideshow_enable_description" id="slideshow_enable_description_no" value="0" <?php if (!$row->slideshow_enable_description) echo 'checked="checked"'; ?> onClick="bwg_enable_disable('none', 'tr_slideshow_description_position', 'slideshow_enable_description_no')" /><label for="slideshow_enable_description_no">No</label>
1193
  <div class="spider_description"></div>
1194
  </td>
1195
  </tr>
1196
  <tr id="tr_slideshow_description_position">
1197
- <td class="spider_label"><label>Description position: </label></td>
1198
  <td>
1199
  <table class="bwg_position_table">
1200
  <tbody>
@@ -1215,22 +1215,22 @@ class BWGViewOptions_bwg {
1215
  </tr>
1216
  </tbody>
1217
  </table>
1218
- <div class="spider_description">Image description position on slideshow</div>
1219
  </td>
1220
  </tr>
1221
  <tr>
1222
  <td class="spider_label_options">
1223
- <label>Enable slideshow Music: </label>
1224
  </td>
1225
  <td>
1226
- <input type="radio" name="slideshow_enable_music" id="slideshow_enable_music_yes" value="1" <?php if ($row->slideshow_enable_music) echo 'checked="checked"'; ?> onClick="bwg_enable_disable('', 'tr_slideshow_music_url', 'slideshow_enable_music_yes')" /><label for="slideshow_enable_music_yes">Yes</label>
1227
- <input type="radio" name="slideshow_enable_music" id="slideshow_enable_music_no" value="0" <?php if (!$row->slideshow_enable_music) echo 'checked="checked"'; ?> onClick="bwg_enable_disable('none', 'tr_slideshow_music_url', 'slideshow_enable_music_no')" /><label for="slideshow_enable_music_no">No</label>
1228
  <div class="spider_description"></div>
1229
  </td>
1230
  </tr>
1231
  <tr id="tr_slideshow_music_url">
1232
  <td class="spider_label_options">
1233
- <label for="slideshow_audio_url">Music url: </label>
1234
  </td>
1235
  <td>
1236
  <input type="text" id="slideshow_audio_url" name="slideshow_audio_url" style="width: 70%;" value="<?php echo $row->slideshow_audio_url; ?>" style="display:inline-block;" />
@@ -1243,9 +1243,9 @@ class BWGViewOptions_bwg {
1243
  title="Add music"
1244
  onclick="return false;"
1245
  style="margin-bottom:5px;">
1246
- Add Music
1247
  </a>
1248
- <div class="spider_description">Only .aac,.m4a,.f4a,.mp3,.ogg,.oga formats are supported.</div>
1249
  </td>
1250
  </tr>
1251
  </tbody>
@@ -1261,46 +1261,46 @@ class BWGViewOptions_bwg {
1261
  <tbody>
1262
  <tr style="display:none;">
1263
  <td class="spider_label_options">
1264
- <label>Masonry:</label>
1265
  </td>
1266
  <td>
1267
- <input type="radio" name="masonry" id="masonry_1" value="horizontal" <?php if ($row->masonry == "horizontal") echo 'checked="checked"'; ?> /><label for="masonry_1">Horizontal</label>
1268
- <input type="radio" name="masonry" id="masonry_0" value="vertical" <?php if ($row->masonry == "vertical") echo 'checked="checked"'; ?> /><label for="masonry_0">Vertical</label>
1269
  <div class="spider_description"></div>
1270
  </td>
1271
  </tr>
1272
  <tr style="display:none;">
1273
  <td class="spider_label_options">
1274
- <label>Mosaic:</label>
1275
  </td>
1276
  <td>
1277
- <input type="radio" name="mosaic" id="mosaic_0" value="vertical" <?php if ($row->mosaic == "vertical") echo 'checked="checked"'; ?> /><label for="mosaic_0">Vertical</label>
1278
- <input type="radio" name="mosaic" id="mosaic_1" value="horizontal" <?php if ($row->mosaic == "horizontal") echo 'checked="checked"'; ?> /><label for="mosaic_1">Horizontal</label>
1279
  <div class="spider_description"></div>
1280
  </td>
1281
  </tr>
1282
  <tr style="display:none;">
1283
  <td class="spider_label_options">
1284
- <label>Resizable mosaic:</label>
1285
  </td>
1286
  <td>
1287
- <input type="radio" name="resizable_mosaic" id="resizable_mosaic_0" value="0" <?php if ($row->resizable_mosaic == "0") echo 'checked="checked"'; ?> /><label for="resizable_mosaic_0">No</label>
1288
- <input type="radio" name="resizable_mosaic" id="resizable_mosaic_1" value="1" <?php if ($row->resizable_mosaic == "1") echo 'checked="checked"'; ?> /><label for="resizable_mosaic_1">Yes</label>
1289
  <div class="spider_description"></div>
1290
  </td>
1291
  </tr>
1292
  <tr style="display:none;">
1293
  <td class="spider_label_options">
1294
- <label for="mosaic_total_width">Total width of mosaic: </label>
1295
  </td>
1296
  <td>
1297
  <input type="text" name="mosaic_total_width" id="mosaic_total_width" value="<?php echo $row->mosaic_total_width; ?>" class="spider_int_input" /> %
1298
- <div class="spider_description">Width of mosaic as a percentage of container's width.</div>
1299
  </td>
1300
  </tr>
1301
  <tr>
1302
  <td class="spider_label_options">
1303
- <label for="image_column_number">Number of image columns: </label>
1304
  </td>
1305
  <td>
1306
  <input type="text" name="image_column_number" id="image_column_number" value="<?php echo $row->image_column_number; ?>" class="spider_int_input" />
@@ -1309,7 +1309,7 @@ class BWGViewOptions_bwg {
1309
  </tr>
1310
  <tr>
1311
  <td class="spider_label_options">
1312
- <label for="images_per_page">Images per page: </label>
1313
  </td>
1314
  <td>
1315
  <input type="text" name="images_per_page" id="images_per_page" value="<?php echo $row->images_per_page; ?>" class="spider_int_input" />
@@ -1318,83 +1318,83 @@ class BWGViewOptions_bwg {
1318
  </tr>
1319
  <tr>
1320
  <td class="spider_label_options">
1321
- <label for="upload_thumb_width">Generated thumbnail dimensions: </label>
1322
  </td>
1323
  <td>
1324
  <input type="text" name="upload_thumb_width" id="upload_thumb_width" value="<?php echo $row->upload_thumb_width; ?>" class="spider_int_input" /> x
1325
  <input type="text" name="upload_thumb_height" id="upload_thumb_height" value="<?php echo $row->upload_thumb_height; ?>" class="spider_int_input" /> px
1326
- <div class="spider_description">The maximum size of the generated thumbnail. Its dimensions should be larger than the ones of the frontend thumbnail.</div>
1327
  </td>
1328
  </tr>
1329
  <tr>
1330
  <td class="spider_label_options">
1331
- <label for="thumb_width">Frontend thumbnail dimensions: </label>
1332
  </td>
1333
  <td>
1334
  <input type="text" name="thumb_width" id="thumb_width" value="<?php echo $row->thumb_width; ?>" class="spider_int_input" /> x
1335
  <input type="text" name="thumb_height" id="thumb_height" value="<?php echo $row->thumb_height; ?>" class="spider_int_input" /> px
1336
- <div class="spider_description">The default size of the thumbnail which will be displayed in the website.</div>
1337
  </td>
1338
  </tr>
1339
  <tr>
1340
  <td class="spider_label_options">
1341
- <label>Show image title:</label>
1342
  </td>
1343
  <td>
1344
- <input type="radio" name="image_title_show_hover" id="image_title_show_hover_1" value="hover" <?php if ($row->image_title_show_hover == "hover") echo 'checked="checked"'; ?> /><label for="image_title_show_hover_1">Show on hover</label><br />
1345
- <input type="radio" name="image_title_show_hover" id="image_title_show_hover_0" value="show" <?php if ($row->image_title_show_hover == "show") echo 'checked="checked"'; ?> /><label for="image_title_show_hover_0">Always show</label><br />
1346
- <input type="radio" name="image_title_show_hover" id="image_title_show_hover_2" value="none" <?php if ($row->image_title_show_hover == "none") echo 'checked="checked"'; ?> /><label for="image_title_show_hover_2">Don't show</label>
1347
  <div class="spider_description"></div>
1348
  </td>
1349
  </tr>
1350
  <tr id="tr_thumb_show_name">
1351
- <td class="spider_label_options"><label>Show gallery name: </label></td>
1352
  <td>
1353
- <input type="radio" name="thumb_name" id="thumb_name_yes" value="1" <?php if ($row->showthumbs_name) echo 'checked="checked"'; ?> /><label for="thumb_name_yes">Yes</label>
1354
- <input type="radio" name="thumb_name" id="thumb_name_no" value="0" <?php if (!$row->showthumbs_name) echo 'checked="checked"'; ?> /><label for="thumb_name_no">No</label>
1355
  <div class="spider_description"></div>
1356
  </td>
1357
  </tr>
1358
  <tr>
1359
  <td class="spider_label_options spider_free_version_label">
1360
- <label>Show description in Vertical Masonry view: </label>
1361
  </td>
1362
  <td>
1363
- <input disabled="disabled" type="radio" name="show_masonry_thumb_description" id="masonry_thumb_desc_1" value="1" <?php if ($row->show_masonry_thumb_description) echo 'checked="checked"'; ?> /><label for="masonry_thumb_desc_1">Yes</label>
1364
- <input disabled="disabled" type="radio" name="show_masonry_thumb_description" id="masonry_thumb_desc_0" value="0" <?php if (!$row->show_masonry_thumb_description) echo 'checked="checked"'; ?> /><label for="masonry_thumb_desc_0">No</label>
1365
- <div style="width: 200px;" class="spider_description spider_free_version">This option is disabled in free version.</div>
1366
  </td>
1367
  </tr>
1368
  <tr>
1369
- <td class="spider_label_options"><label>Enable image pagination: </label></td>
1370
  <td>
1371
- <input type="radio" name="image_enable_page" id="image_enable_page_yes" value="1" <?php if ($row->image_enable_page) echo 'checked="checked"'; ?> /><label for="image_enable_page_yes">Yes</label>
1372
- <input type="radio" name="image_enable_page" id="image_enable_page_no" value="0" <?php if (!$row->image_enable_page) echo 'checked="checked"'; ?> /><label for="image_enable_page_no">No</label>
1373
  <div class="spider_description"></div>
1374
  </td>
1375
  </tr>
1376
  <tr>
1377
- <td class="spider_label_options"><label>Thumbnail click action: </label></td>
1378
  <td>
1379
- <input type="radio" name="thumb_click_action" id="thumb_click_action_1" value="open_lightbox" <?php if ($row->thumb_click_action == 'open_lightbox') echo 'checked="checked"'; ?> onClick="bwg_enable_disable('none', 'tr_thumb_link_target', 'thumb_click_action_1')" /><label for="thumb_click_action_1">Open lightbox</label>
1380
- <input type="radio" name="thumb_click_action" id="thumb_click_action_2" value="redirect_to_url" <?php if ($row->thumb_click_action == 'redirect_to_url') echo 'checked="checked"'; ?> onClick="bwg_enable_disable('', 'tr_thumb_link_target', 'thumb_click_action_2')" /><label for="thumb_click_action_2">Redirect to url</label>
1381
- <input type="radio" name="thumb_click_action" id="thumb_click_action_3" value="do_nothing" <?php if ($row->thumb_click_action == 'do_nothing') echo 'checked="checked"'; ?> onClick="bwg_enable_disable('none', 'tr_thumb_link_target', 'thumb_click_action_3')" /><label for="thumb_click_action_3">Do Nothing</label>
1382
  <div class="spider_description"></div>
1383
  </td>
1384
  </tr>
1385
  <tr id="tr_thumb_link_target">
1386
- <td class="spider_label_options"><label>Open in a new window: </label></td>
1387
  <td>
1388
- <input type="radio" name="thumb_link_target" id="thumb_link_target_yes" value="1" <?php if ($row->thumb_link_target) echo 'checked="checked"'; ?> /><label for="thumb_link_target_yes">Yes</label>
1389
- <input type="radio" name="thumb_link_target" id="thumb_link_target_no" value="0" <?php if (!$row->thumb_link_target) echo 'checked="checked"'; ?> /><label for="thumb_link_target_no">No</label>
1390
  <div class="spider_description"></div>
1391
  </td>
1392
  </tr>
1393
  <tr>
1394
- <td class="spider_label_options"><label>Play icon over the video thumbnail: </label></td>
1395
  <td>
1396
- <input type="radio" name="play_icon" id="play_icon_yes" value="1" <?php if ($row->play_icon) echo 'checked="checked"'; ?> /><label for="play_icon_yes">Yes</label>
1397
- <input type="radio" name="play_icon" id="play_icon_no" value="0" <?php if (!$row->play_icon) echo 'checked="checked"'; ?> /><label for="play_icon_no">No</label>
1398
  <div class="spider_description"></div>
1399
  </td>
1400
  </tr>
@@ -1408,27 +1408,27 @@ class BWGViewOptions_bwg {
1408
  <tbody>
1409
  <tr>
1410
  <td class="spider_label_options">
1411
- <label>Enable image title for Image Browser view:</label>
1412
  </td>
1413
  <td>
1414
- <input type="radio" name="image_browser_title_enable" id="image_browser_title_enable_1" value="1" <?php if ($row->image_browser_title_enable) echo 'checked="checked"'; ?> /><label for="image_browser_title_enable_1">Yes</label>
1415
- <input type="radio" name="image_browser_title_enable" id="image_browser_title_enable_0" value="0" <?php if (!$row->image_browser_title_enable) echo 'checked="checked"'; ?> /><label for="image_browser_title_enable_0">No</label>
1416
  <div class="spider_description"></div>
1417
  </td>
1418
  </tr>
1419
  <tr>
1420
  <td class="spider_label_options">
1421
- <label>Enable image description for Image Browser view:</label>
1422
  </td>
1423
  <td>
1424
- <input type="radio" name="image_browser_description_enable" id="image_browser_description_enable_1" value="1" <?php if ($row->image_browser_description_enable) echo 'checked="checked"'; ?> /><label for="image_browser_description_enable_1">Yes</label>
1425
- <input type="radio" name="image_browser_description_enable" id="image_browser_description_enable_0" value="0" <?php if (!$row->image_browser_description_enable) echo 'checked="checked"'; ?> /><label for="image_browser_description_enable_0">No</label>
1426
  <div class="spider_description"></div>
1427
  </td>
1428
  </tr>
1429
  <tr>
1430
  <td class="spider_label_options">
1431
- <label for="image_browser_width">Image width for Image Browser view:</label>
1432
  </td>
1433
  <td>
1434
  <input type="text" name="image_browser_width" id="image_browser_width" value="<?php echo $row->image_browser_width; ?>" class="spider_int_input" /> px
@@ -1437,22 +1437,22 @@ class BWGViewOptions_bwg {
1437
  </tr>
1438
  <tr>
1439
  <td colspan="2">
1440
- <div style="margin: 0;" class="spider_description spider_free_version">The Blog Style view is disabled in free version.</div>
1441
  </td>
1442
  </tr>
1443
  <tr>
1444
  <td class="spider_label_options spider_free_version_label">
1445
- <label>Enable image title for Blog Style view:</label>
1446
  </td>
1447
  <td class="spider_free_version_label">
1448
- <input disabled="disabled" type="radio" name="blog_style_title_enable" id="blog_style_title_enable_1" value="1" <?php if ($row->blog_style_title_enable) echo 'checked="checked"'; ?> /><label for="blog_style_title_enable_1">Yes</label>
1449
- <input disabled="disabled" type="radio" name="blog_style_title_enable" id="blog_style_title_enable_0" value="0" <?php if (!$row->blog_style_title_enable) echo 'checked="checked"'; ?> /><label for="blog_style_title_enable_0">No</label>
1450
  <div class="spider_description"></div>
1451
  </td>
1452
  </tr>
1453
  <tr>
1454
  <td class="spider_label_options spider_free_version_label">
1455
- <label for="blog_style_width">Image width for Blog Style view:</label>
1456
  </td>
1457
  <td class="spider_free_version_label">
1458
  <input disabled="disabled" type="text" name="blog_style_width" id="blog_style_width" value="<?php echo $row->blog_style_width; ?>" class="spider_int_input spider_free_version_label" /> px
@@ -1461,7 +1461,7 @@ class BWGViewOptions_bwg {
1461
  </tr>
1462
  <tr>
1463
  <td class="spider_label_options spider_free_version_label">
1464
- <label for="blog_style_images_per_page">Images per page in Blog Style view:</label>
1465
  </td>
1466
  <td class="spider_free_version_label">
1467
  <input disabled="disabled" type="text" name="blog_style_images_per_page" id="blog_style_images_per_page" value="<?php echo $row->blog_style_images_per_page; ?>" class="spider_int_input spider_free_version_label" />
@@ -1470,11 +1470,11 @@ class BWGViewOptions_bwg {
1470
  </tr>
1471
  <tr>
1472
  <td class="spider_label_options spider_free_version_label">
1473
- <label>Enable pagination for Blog Style view:</label>
1474
  </td>
1475
  <td class="spider_free_version_label">
1476
- <input disabled="disabled" type="radio" name="blog_style_enable_page" id="blog_style_enable_page_1" value="1" <?php if ($row->blog_style_enable_page) echo 'checked="checked"'; ?> /><label for="blog_style_enable_page_1">Yes</label>
1477
- <input disabled="disabled" type="radio" name="blog_style_enable_page" id="blog_style_enable_page_0" value="0" <?php if (!$row->blog_style_enable_page) echo 'checked="checked"'; ?> /><label for="blog_style_enable_page_0">No</label>
1478
  <div class="spider_description"></div>
1479
  </td>
1480
  </tr>
@@ -1487,14 +1487,14 @@ class BWGViewOptions_bwg {
1487
  <tbody>
1488
  <tr>
1489
  <td class="spider_label_options spider_free_version_label">
1490
- <label >Gallery autoupdate interval:</label>
1491
  </td>
1492
  <td class="spider_free_version_label">
1493
  <input type="number" disabled="disabled" id="autoupdate_interval_hour" class="spider_int_input" min="0" max="24" value="0" />
1494
- hour
1495
  <input type="number" disabled="disabled" id="autoupdate_interval_min" class="spider_int_input" min="0" max="59" value="30" />
1496
- min
1497
- <div class="spider_description spider_free_version">Autoupdatable galleries are disabled in free version.</div>
1498
  </td>
1499
  </tr>
1500
 
@@ -1504,7 +1504,7 @@ class BWGViewOptions_bwg {
1504
  </td>
1505
  <td class="spider_free_version_label">
1506
  <input id="instagram_client_id" type="text" disabled="disabled" style="display:inline-block; width:100%;" value="" />
1507
- <div class="spider_description spider_free_version">Instagram galleries are disabled in free version.</div>
1508
  </td>
1509
  </tr>
1510
  </tbody>
@@ -1520,7 +1520,7 @@ class BWGViewOptions_bwg {
1520
  <tbody>
1521
  <tr>
1522
  <td class="spider_label_options spider_free_version_label">
1523
- <label for="carousel_interval">Time interval: </label>
1524
  </td>
1525
  <td class="spider_free_version_label">
1526
  <input type="text" disabled="disabled" name="carousel_interval" id="carousel_interval" value="<?php echo $row->carousel_interval; ?>" class="spider_int_input" /> sec.
@@ -1529,7 +1529,7 @@ class BWGViewOptions_bwg {
1529
  </tr>
1530
  <tr>
1531
  <td class="spider_label_options spider_free_version_label">
1532
- <label for="carousel_image_column_number">Max. number of images: </label>
1533
  </td>
1534
  <td class="spider_free_version_label">
1535
  <input type="text" disabled="disabled" name="carousel_image_column_number" id="carousel_image_column_number" value="<?php echo $row->carousel_image_column_number; ?>" class="spider_int_input" /> sec.
@@ -1538,7 +1538,7 @@ class BWGViewOptions_bwg {
1538
  </tr>
1539
  <tr>
1540
  <td class="spider_label_options spider_free_version_label">
1541
- <label for="carousel_image_par">Carousel image ratio: </label>
1542
  </td>
1543
  <td class="spider_free_version_label">
1544
  <input type="text" disabled="disabled" name="carousel_image_par" id="carousel_image_par" value="<?php echo $row->carousel_image_par; ?>" />
@@ -1547,7 +1547,7 @@ class BWGViewOptions_bwg {
1547
  </tr>
1548
  <tr>
1549
  <td class="spider_label_options spider_free_version_label">
1550
- <label for="carousel_width">Image dimensions: </label>
1551
  </td>
1552
  <td class="spider_free_version_label">
1553
  <input type="text" disabled="disabled" name="carousel_width" id="carousel_width" value="<?php echo $row->carousel_width; ?>" class="spider_int_input" /> x
@@ -1557,7 +1557,7 @@ class BWGViewOptions_bwg {
1557
  </tr>
1558
  <tr>
1559
  <td class="spider_label_options spider_free_version_label">
1560
- <label for="carousel_r_width">Fixed width: </label>
1561
  </td>
1562
  <td class="spider_free_version_label">
1563
  <input type="text" disabled="disabled" name="carousel_r_width" id="carousel_r_width" value="<?php echo $row->carousel_r_width; ?>" class="spider_int_input" /> px
@@ -1570,50 +1570,50 @@ class BWGViewOptions_bwg {
1570
  <table style="width: 100%; display: inline-table;">
1571
  <tbody>
1572
  <tr>
1573
- <td class="spider_label_options spider_free_version_label"><label>Enable image title: </label></td>
1574
  <td class="spider_free_version_label">
1575
- <input type="radio" disabled="disabled" name="carousel_enable_title" id="carousel_enable_title_yes" value="1" <?php if ($row->carousel_enable_title) echo 'checked="checked"'; ?> onClick="bwg_enable_disable('', 'tr_carousel_title_position', 'carousel_enable_title_yes')" /><label for="carousel_enable_title_yes">Yes</label>
1576
- <input type="radio" disabled="disabled" name="carousel_enable_title" id="carousel_enable_title_no" value="0" <?php if (!$row->carousel_enable_title) echo 'checked="checked"'; ?> onClick="bwg_enable_disable('none', 'tr_carousel_title_position', 'carousel_enable_title_no')" /><label for="carousel_enable_title_no">No</label>
1577
  <div class="spider_description"></div>
1578
  </td>
1579
  </tr>
1580
  <tr>
1581
  <td class="spider_label_options spider_free_version_label">
1582
- <label>Enable autoplay: </label>
1583
  </td>
1584
  <td class="spider_free_version_label">
1585
- <input type="radio" disabled="disabled" name="carousel_enable_autoplay" id="carousel_enable_autoplay_yes" value="1" <?php if ($row->carousel_enable_autoplay) echo 'checked="checked"'; ?> /><label for="carousel_enable_autoplay_yes">Yes</label>
1586
- <input type="radio" disabled="disabled" name="carousel_enable_autoplay" id="carousel_enable_autoplay_no" value="0" <?php if (!$row->carousel_enable_autoplay) echo 'checked="checked"'; ?> /><label for="carousel_enable_autoplay_no">No</label>
1587
  <div class="spider_description"></div>
1588
  </td>
1589
  </tr>
1590
  <tr>
1591
  <td class="spider_label_options spider_free_version_label">
1592
- <label> Container fit: </label>
1593
  </td>
1594
  <td class="spider_free_version_label">
1595
- <input type="radio" disabled="disabled" name="carousel_fit_containerWidth" id="carousel_fit_containerWidth_yes" value="1" <?php if ($row->carousel_fit_containerWidth) echo 'checked="checked"'; ?> /><label for="carousel_fit_containerWidth_yes">Yes</label>
1596
- <input type="radio" disabled="disabled" name="carousel_fit_containerWidth" id="carousel_fit_containerWidth_no" value="0" <?php if (!$row->carousel_fit_containerWidth) echo 'checked="checked"'; ?> /><label for="carousel_fit_containerWidth_no">No</label>
1597
  <div class="spider_description"></div>
1598
  </td>
1599
  </tr>
1600
  <tr>
1601
  <td class="spider_label_options spider_free_version_label">
1602
- <label> Next/Previous buttons: </label>
1603
  </td>
1604
  <td class="spider_free_version_label">
1605
- <input type="radio" disabled="disabled" name="carousel_prev_next_butt" id="carousel_prev_next_butt_yes" value="1" <?php if ($row->carousel_prev_next_butt) echo 'checked="checked"'; ?> /><label for="carousel_prev_next_butt_yes">Yes</label>
1606
- <input type="radio" disabled="disabled" name="carousel_prev_next_butt" id="carousel_prev_next_butt_no" value="0" <?php if (!$row->carousel_prev_next_butt) echo 'checked="checked"'; ?> /><label for="carousel_prev_next_butt_no">No</label>
1607
  <div class="spider_description"></div>
1608
  </td>
1609
  </tr>
1610
  <tr>
1611
  <td class="spider_label_options spider_free_version_label">
1612
- <label> Play/Pause button: </label>
1613
  </td>
1614
  <td class="spider_free_version_label">
1615
- <input type="radio" disabled="disabled" name="carousel_play_pause_butt" id="carousel_play_pause_butt_yes" value="1" <?php if ($row->carousel_play_pause_butt) echo 'checked="checked"'; ?> /><label for="carousel_play_pause_butt_yes">Yes</label>
1616
- <input type="radio" disabled="disabled" name="carousel_play_pause_butt" id="carousel_play_pause_butt_no" value="0" <?php if (!$row->carousel_play_pause_butt) echo 'checked="checked"'; ?> /><label for="carousel_play_pause_butt_no">No</label>
1617
  <div class="spider_description"></div>
1618
  </td>
1619
  </tr>
@@ -1622,7 +1622,7 @@ class BWGViewOptions_bwg {
1622
  </td>
1623
  </tr>
1624
  </table>
1625
- <div class="spider_description spider_free_version">Carousel view is disabled in free version.</div>
1626
  </div>
1627
 
1628
  </div>
27
  ?>
28
  <div style="clear: both; float: left; width: 99%;">
29
  <div style="float:left; font-size: 14px; font-weight: bold;">
30
+ <?php _e("This section allows you to change settings for different views and general options.", 'bwg_back'); ?>
31
+ <a style="color: blue; text-decoration: none;" target="_blank" href="https://web-dorado.com/wordpress-gallery-guide-step-5/5-1.html"><?php _e("Read More in User Manual", 'bwg_back'); ?></a>
32
  </div>
33
  <div style="float: right; text-align: right;">
34
  <a style="text-decoration: none;" target="_blank" href="https://web-dorado.com/files/fromPhotoGallery.php">
88
  <form method="post" class="wrap" action="admin.php?page=options_bwg" style="float: left; width: 99%;">
89
  <?php wp_nonce_field( 'options_bwg', 'bwg_nonce' ); ?>
90
  <span class="option-icon"></span>
91
+ <h2><?php _e("Edit options", 'bwg_back'); ?></h2>
92
  <div style="display: inline-block; width: 100%;">
93
  <div style="float: right;">
94
+ <input class="button-primary" type="submit" onclick="if (spider_check_required('title', 'Title')) {return false;}; spider_set_input_value('task', 'save')" value="<?php _e("Save", 'bwg_back'); ?>" />
95
+ <input class="button-secondary" type="submit" onclick="if (confirm('<?php _e("Do you want to reset to default?", 'bwg_back'); ?>')) {
96
  spider_set_input_value('task', 'reset');
97
  } else {
98
  return false;
99
+ }" value="<?php _e("Reset all options", 'bwg_back'); ?>" />
100
  </div>
101
  </div>
102
  <div style="display: none; width: 100%;" id="display_panel">
103
  <div style="float:left;">
104
+ <div id="div_1" class="gallery_type" onclick="bwg_change_option_type('1')"> <?php _e("Global options", 'bwg_back'); ?></div><br/>
105
+ <div id="div_8" class="gallery_type" onclick="bwg_change_option_type('8')"> <?php _e("Watermark", 'bwg_back'); ?></div><br/>
106
+ <div id="div_2" class="gallery_type" onclick="bwg_change_option_type('2')"> <?php _e("Advertisement", 'bwg_back'); ?></div><br/>
107
+ <div id="div_3" class="gallery_type" onclick="bwg_change_option_type('3')"> <?php _e("Lightbox", 'bwg_back'); ?></div><br/>
108
+ <div id="div_4" class="gallery_type" onclick="bwg_change_option_type('4')"> <?php _e("Album options", 'bwg_back'); ?></div><br/>
109
+ <div id="div_5" class="gallery_type" onclick="bwg_change_option_type('5')"> <?php _e("Slideshow", 'bwg_back'); ?></div><br/>
110
+ <div id="div_6" class="gallery_type" onclick="bwg_change_option_type('6')"> <?php _e("Thumbnail options", 'bwg_back'); ?></div><br/>
111
+ <div id="div_7" class="gallery_type" onclick="bwg_change_option_type('7')"> <?php _e("Image options", 'bwg_back'); ?></div><br/>
112
+ <div id="div_9" class="gallery_type" onclick="bwg_change_option_type('9')"> <?php _e("Embed options", 'bwg_back'); ?></div><br/>
113
+ <div id="div_10" class="gallery_type" onclick="bwg_change_option_type('10')"> <?php _e("Carousel", 'bwg_back'); ?></div><br/>
114
  <input type="hidden" id="type" name="type" value="<?php echo (isset($_POST["type"]) ? esc_html(stripslashes($_POST["type"])) : "1"); ?>"/>
115
  </div>
116
 
120
  <tbody>
121
  <tr>
122
  <td class="spider_label_options">
123
+ <label for="images_directory"><?php _e("Images directory:", 'bwg_back'); ?></label>
124
  </td>
125
  <td>
126
  <input id="images_directory" name="images_directory" type="text" style="display:inline-block; width:100%;" value="<?php echo $row->images_directory; ?>" />
127
  <input type="hidden" id="old_images_directory" name="old_images_directory" value="<?php echo $row->old_images_directory; ?>"/>
128
+ <div class="spider_description"><?php _e("Input an existing directory inside the Wordpress directory to store uploaded images.<br />Old directory content will be moved to the new one.", 'bwg_back'); ?></div>
129
  </td>
130
  </tr>
131
  <tr>
132
  <td class="spider_label_options">
133
+ <label for="upload_img_width"><?php _e("Image dimensions:", 'bwg_back'); ?> </label>
134
  </td>
135
  <td>
136
  <input type="text" name="upload_img_width" id="upload_img_width" value="<?php echo $row->upload_img_width; ?>" class="spider_int_input" /> x
137
  <input type="text" name="upload_img_height" id="upload_img_height" value="<?php echo $row->upload_img_height; ?>" class="spider_int_input" /> px
138
+ <div class="spider_description"><?php _e("The maximum size of the uploaded image (0 for original size).", 'bwg_back'); ?></div>
139
  </td>
140
  </tr>
141
  <tr>
142
  <td class="spider_label_options">
143
+ <label><?php _e("Right click protection:", 'bwg_back'); ?></label>
144
  </td>
145
  <td>
146
+ <input type="radio" name="image_right_click" id="image_right_click_1" value="1" <?php if ($row->image_right_click) echo 'checked="checked"'; ?> /><label for="image_right_click_1"><?php _e("Yes", 'bwg_back'); ?></label>
147
+ <input type="radio" name="image_right_click" id="image_right_click_0" value="0" <?php if (!$row->image_right_click) echo 'checked="checked"'; ?> /><label for="image_right_click_0"><?php _e("No", 'bwg_back'); ?></label>
148
+ <div class="spider_description"><?php _e("Disable image right click possibility.", 'bwg_back'); ?></div>
149
  </td>
150
  </tr>
151
  <tr style="display: none;">
152
  <td class="spider_label_options">
153
+ <label><?php _e("Gallery role:", 'bwg_back'); ?></label>
154
  </td>
155
  <td>
156
+ <input type="radio" name="gallery_role" id="gallery_role_1" value="1" <?php if ($row->gallery_role) echo 'checked="checked"'; ?> /><label for="gallery_role_1"><?php _e("Yes", 'bwg_back'); ?></label>
157
  <input type="radio" name="gallery_role" id="gallery_role_0" value="0" <?php if (!$row->gallery_role) echo 'checked="checked"'; ?> /><label for="gallery_role_0">No</label>
158
  <div class="spider_description">Only author can change a gallery.</div>
159
  </td>
163
  <label>Album role:</label>
164
  </td>
165
  <td>
166
+ <input type="radio" name="album_role" id="album_role_1" value="1" <?php if ($row->album_role) echo 'checked="checked"'; ?> /><label for="album_role_1"><?php _e("Yes", 'bwg_back'); ?></label>
167
  <input type="radio" name="album_role" id="album_role_0" value="0" <?php if (!$row->album_role) echo 'checked="checked"'; ?> /><label for="album_role_0">No</label>
168
  <div class="spider_description">Only author can change an album.</div>
169
  </td>
173
  <label>Image role:</label>
174
  </td>
175
  <td>
176
+ <input type="radio" name="image_role" id="image_role_1" value="1" <?php if ($row->image_role) echo 'checked="checked"'; ?> /><label for="image_role_1"><?php _e("Yes", 'bwg_back'); ?></label>
177
+ <input type="radio" name="image_role" id="image_role_0" value="0" <?php if (!$row->image_role) echo 'checked="checked"'; ?> /><label for="image_role_0"><?php _e("No", 'bwg_back'); ?></label>
178
+ <div class="spider_description"><?php _e("Only author can change an image.", 'bwg_back'); ?></div>
179
  </td>
180
  </tr>
181
  <tr>
182
  <td class="spider_label_options">
183
+ <label><?php _e('Show search box:', 'bwg_back'); ?></label>
184
  </td>
185
  <td>
186
+ <input type="radio" name="show_search_box" id="show_search_box_1" value="1" <?php if ($row->show_search_box) echo 'checked="checked"'; ?> onClick="bwg_enable_disable('', 'tr_search_box_width', 'show_search_box_1')" /><label for="show_search_box_1"><?php _e('Yes', 'bwg_back'); ?></label>
187
+ <input type="radio" name="show_search_box" id="show_search_box_0" value="0" <?php if (!$row->show_search_box) echo 'checked="checked"'; ?> onClick="bwg_enable_disable('none', 'tr_search_box_width', 'show_search_box_0')" /><label for="show_search_box_0"><?php _e('No', 'bwg_back'); ?></label>
188
  <div class="spider_description"></div>
189
  </td>
190
  </tr>
191
  <tr id="tr_search_box_width">
192
  <td class="spider_label_options">
193
+ <label for="search_box_width"><?php _e('Search box width:', 'bwg_back'); ?> </label>
194
  </td>
195
  <td>
196
  <input type="text" name="search_box_width" id="search_box_width" value="<?php echo $row->search_box_width; ?>" class="spider_int_input" /> px
199
  </tr>
200
  <tr>
201
  <td class="spider_label_options">
202
+ <label><?php _e('Show "Order by" dropdown list:', 'bwg_back'); ?></label>
203
  </td>
204
  <td>
205
+ <input type="radio" name="show_sort_images" id="show_sort_images_1" value="1" <?php if ($row->show_sort_images) echo 'checked="checked"'; ?> /><label for="show_sort_images_1"><?php _e('Yes', 'bwg_back'); ?></label>
206
+ <input type="radio" name="show_sort_images" id="show_sort_images_0" value="0" <?php if (!$row->show_sort_images) echo 'checked="checked"'; ?> /><label for="show_sort_images_0"><?php _e('No', 'bwg_back'); ?></label>
207
  <div class="spider_description"></div>
208
  </td>
209
  </tr>
210
  <tr>
211
  <td class="spider_label_options">
212
+ <label><?php _e('Show tag box:', 'bwg_back'); ?></label>
213
  </td>
214
  <td>
215
+ <input type="radio" name="show_tag_box" id="show_tag_box_1" value="1" <?php if ($row->show_tag_box) echo 'checked="checked"'; ?> /><label for="show_tag_box_1"><?php _e('Yes', 'bwg_back'); ?></label>
216
+ <input type="radio" name="show_tag_box" id="show_tag_box_0" value="0" <?php if (!$row->show_tag_box) echo 'checked="checked"'; ?> /><label for="show_tag_box_0"><?php _e('No', 'bwg_back'); ?></label>
217
  <div class="spider_description"></div>
218
  </td>
219
  </tr>
220
  <tr>
221
  <td class="spider_label_options">
222
+ <label><?php _e('Preload images:', 'bwg_back'); ?></label>
223
  </td>
224
  <td>
225
+ <input type="radio" name="preload_images" id="preload_images_1" value="1" <?php if ($row->preload_images) echo 'checked="checked"'; ?> onClick="bwg_enable_disable('', 'tr_preload_images_count', 'preload_images_1')" /><label for="preload_images_1"><?php _e('Yes', 'bwg_back'); ?></label>
226
+ <input type="radio" name="preload_images" id="preload_images_0" value="0" <?php if (!$row->preload_images) echo 'checked="checked"'; ?> onClick="bwg_enable_disable('none', 'tr_preload_images_count', 'preload_images_0')" /><label for="preload_images_0"><?php _e('No', 'bwg_back'); ?></label>
227
  <div class="spider_description"></div>
228
  </td>
229
  </tr>
230
  <tr id="tr_preload_images_count">
231
  <td class="spider_label_options">
232
+ <label for="preload_images_count"><?php _e('Count of images:', 'bwg_back'); ?> </label>
233
  </td>
234
  <td>
235
  <input type="text" name="preload_images_count" id="preload_images_count" value="<?php echo $row->preload_images_count; ?>" class="spider_int_input" />
236
+ <div class="spider_description"><?php _e('Count of images to preload (0 for all).', 'bwg_back'); ?></div>
237
  </td>
238
  </tr>
239
  <tr>
240
  <td class="spider_label_options">
241
+ <label><?php _e('Import from Media Library:', 'bwg_back'); ?></label>
242
  </td>
243
  <td>
244
+ <input type="radio" name="enable_ML_import" id="enable_ML_import_1" value="1" <?php if ($row->enable_ML_import) echo 'checked="checked"'; ?> /><label for="enable_ML_import_1"><?php _e('Yes', 'bwg_back'); ?></label>
245
+ <input type="radio" name="enable_ML_import" id="enable_ML_import_0" value="0" <?php if (!$row->enable_ML_import) echo 'checked="checked"'; ?> /><label for="enable_ML_import_0"><?php _e('No', 'bwg_back'); ?></label>
246
+ <div class="spider_description"><?php _e('Enable import from Media Library in file manager.', 'bwg_back'); ?></div>
247
  </td>
248
  </tr>
249
  <tr>
250
  <td class="spider_label_options">
251
+ <label><?php _e('Enable href attribute:', 'bwg_back'); ?></label>
252
  </td>
253
  <td>
254
+ <input type="radio" name="enable_seo" id="enable_seo_1" value="1" <?php if ($row->enable_seo) echo 'checked="checked"'; ?> /><label for="enable_seo_1"><?php _e('Yes', 'bwg_back'); ?></label>
255
+ <input type="radio" name="enable_seo" id="enable_seo_0" value="0" <?php if (!$row->enable_seo) echo 'checked="checked"'; ?> /><label for="enable_seo_0"><?php _e('No', 'bwg_back'); ?></label>
256
+ <div class="spider_description"><?php _e('Disable this option only if it conflicts with your theme.', 'bwg_back'); ?></div>
257
  </td>
258
  </tr>
259
  <tr>
260
  <td class="spider_label_options">
261
+ <label><?php _e('Meta auto-fill:', 'bwg_back'); ?></label>
262
  </td>
263
  <td>
264
+ <input type="radio" name="read_metadata" id="read_metadata_1" value="1" <?php if ($row->read_metadata) echo 'checked="checked"'; ?> /><label for="read_metadata_1"><?php _e('Yes', 'bwg_back'); ?></label>
265
+ <input type="radio" name="read_metadata" id="read_metadata_0" value="0" <?php if (!$row->read_metadata) echo 'checked="checked"'; ?> /><label for="read_metadata_0"><?php _e('No', 'bwg_back'); ?></label>
266
+ <div class="spider_description"><?php _e('Enabling this option the meta description of the image will be automatically filled in image description field.', 'bwg_back'); ?></div>
267
  </td>
268
  </tr>
269
 
270
  <tr>
271
  <td class="spider_label_options">
272
+ <label><?php _e('Show/hide custom post types:', 'bwg_back'); ?></label>
273
  </td>
274
  <td>
275
+ <input type="radio" name="show_hide_custom_post" id="show_hide_custom_post_1" value="1" <?php if ($row->show_hide_custom_post) echo 'checked="checked"'; ?> /><label for="show_hide_custom_post_1"><?php _e('Yes', 'bwg_back'); ?></label>
276
+ <input type="radio" name="show_hide_custom_post" id="show_hide_custom_post_0" value="0" <?php if (!$row->show_hide_custom_post) echo 'checked="checked"'; ?> /><label for="show_hide_custom_post_0"><?php _e('No', 'bwg_back'); ?></label>
277
  <div class="spider_description"></div>
278
  </td>
279
  </tr>
280
  <tr>
281
  <td class="spider_label_options">
282
+ <label><?php _e('Show/hide comments for custom post types:', 'bwg_back'); ?></label>
283
  </td>
284
  <td>
285
+ <input type="radio" name="show_hide_post_meta" id="show_hide_post_meta_1" value="1" <?php if ($row->show_hide_post_meta) echo 'checked="checked"'; ?> /><label for="show_hide_post_meta_1"><?php _e("Yes", 'bwg_back'); ?></label>
286
+ <input type="radio" name="show_hide_post_meta" id="show_hide_post_meta_0" value="0" <?php if (!$row->show_hide_post_meta) echo 'checked="checked"'; ?> /><label for="show_hide_post_meta_0"><?php _e("No", 'bwg_back'); ?></label>
287
  <div class="spider_description"></div>
288
  </td>
289
  </tr>
300
  <tbody>
301
  <tr id="tr_built_in_watermark_type">
302
  <td class="spider_label_options">
303
+ <label><?php _e('Watermark type: ', 'bwg_back'); ?></label>
304
  </td>
305
  <td>
306
  <input type="radio" name="built_in_watermark_type" id="built_in_watermark_type_none" value="none" <?php if ($row->built_in_watermark_type == 'none') echo 'checked="checked"'; ?> onClick="bwg_built_in_watermark('watermark_type_none')" />
307
+ <label for="built_in_watermark_type_none"><?php _e('None', 'bwg_back'); ?></label>
308
  <input type="radio" name="built_in_watermark_type" id="built_in_watermark_type_text" value="text" <?php if ($row->built_in_watermark_type == 'text') echo 'checked="checked"'; ?> onClick="bwg_built_in_watermark('watermark_type_text')" onchange="preview_built_in_watermark()" />
309
+ <label for="built_in_watermark_type_text"><?php _e('Text', 'bwg_back'); ?></label>
310
  <input type="radio" name="built_in_watermark_type" id="built_in_watermark_type_image" value="image" <?php if ($row->built_in_watermark_type == 'image') echo 'checked="checked"'; ?> onClick="bwg_built_in_watermark('watermark_type_image')" onchange="preview_built_in_watermark()" />
311
+ <label for="built_in_watermark_type_image"><?php _e('Image', 'bwg_back'); ?></label>
312
  <div class="spider_description"></div>
313
  </td>
314
  </tr>
315
  <tr id="tr_built_in_watermark_url">
316
  <td class="spider_label_options">
317
+ <label for="built_in_watermark_url"><?php _e('Watermark url: ', 'bwg_back'); ?></label>
318
  </td>
319
  <td>
320
  <input type="text" id="built_in_watermark_url" name="built_in_watermark_url" style="width: 68%;" value="<?php echo $row->built_in_watermark_url; ?>" style="display:inline-block;" onchange="preview_built_in_watermark()" />
327
  title="Add image"
328
  onclick="return false;"
329
  style="margin-bottom:5px;">
330
+ <?php _e('Add Image', 'bwg_back'); ?>
331
  </a>
332
+ <div class="spider_description"><?php _e('Only .png format is supported.', 'bwg_back'); ?></div>
333
  </td>
334
  </tr>
335
  <tr id="tr_built_in_watermark_text">
336
  <td class="spider_label_options">
337
+ <label for="built_in_watermark_text"><?php _e('Watermark text: ', 'bwg_back'); ?></label>
338
  </td>
339
  <td>
340
  <input type="text" name="built_in_watermark_text" id="built_in_watermark_text" style="width: 100%;" value="<?php echo $row->built_in_watermark_text; ?>" onchange="preview_built_in_watermark()" onkeypress="preview_built_in_watermark()" />
343
  </tr>
344
  <tr id="tr_built_in_watermark_size">
345
  <td class="spider_label_options">
346
+ <label for="built_in_watermark_size"><?php _e('Watermark size: ', 'bwg_back'); ?></label>
347
  </td>
348
  <td>
349
  <input type="text" name="built_in_watermark_size" id="built_in_watermark_size" value="<?php echo $row->built_in_watermark_size; ?>" class="spider_int_input" onchange="preview_built_in_watermark()" /> %
350
+ <div class="spider_description"><?php _e('Enter size of watermark in percents according to image.', 'bwg_back'); ?></div>
351
  </td>
352
  </tr>
353
  <tr id="tr_built_in_watermark_font_size">
354
  <td class="spider_label_options">
355
+ <label for="built_in_watermark_font_size"><?php _e('Watermark font size:', 'bwg_back'); ?></label>
356
  </td>
357
  <td>
358
  <input type="text" name="built_in_watermark_font_size" id="built_in_watermark_font_size" value="<?php echo $row->built_in_watermark_font_size; ?>" class="spider_int_input" onchange="preview_built_in_watermark()" />
361
  </tr>
362
  <tr id="tr_built_in_watermark_font">
363
  <td class="spider_label_options">
364
+ <label for="built_in_watermark_font"><?php _e('Watermark font style: ', 'bwg_back'); ?></label>
365
  </td>
366
  <td>
367
  <select name="built_in_watermark_font" id="built_in_watermark_font" style="width:150px;" onchange="preview_built_in_watermark()">
390
  </tr>
391
  <tr id="tr_built_in_watermark_color">
392
  <td class="spider_label_options">
393
+ <label for="built_in_watermark_color"><?php _e('Watermark color:', 'bwg_back'); ?> </label>
394
  </td>
395
  <td>
396
  <input type="text" name="built_in_watermark_color" id="built_in_watermark_color" value="<?php echo $row->built_in_watermark_color; ?>" class="color" onchange="preview_built_in_watermark()" />
399
  </tr>
400
  <tr id="tr_built_in_watermark_opacity">
401
  <td class="spider_label_options">
402
+ <label for="built_in_watermark_opacity"><?php _e('Watermark opacity:', 'bwg_back'); ?> </label>
403
  </td>
404
  <td>
405
  <input type="text" name="built_in_watermark_opacity" id="built_in_watermark_opacity" value="<?php echo $row->built_in_watermark_opacity; ?>" class="spider_int_input" onchange="preview_built_in_watermark()" /> %
406
+ <div class="spider_description"><?php _e('Opacity value must be in the range of 0 to 100.', 'bwg_back'); ?></div>
407
  </td>
408
  </tr>
409
  <tr id="tr_built_in_watermark_position">
410
  <td class="spider_label_options">
411
+ <label><?php _e('Watermark position:', 'bwg_back'); ?> </label>
412
  </td>
413
  <td>
414
  <table class="bwg_position_table">
453
  <tbody>
454
  <tr id="tr_watermark_type">
455
  <td class="spider_label_options">
456
+ <label><?php _e('Advertisement type:', 'bwg_back'); ?> </label>
457
  </td>
458
  <td>
459
  <input type="radio" name="watermark_type" id="watermark_type_none" value="none" <?php if ($row->watermark_type == 'none') echo 'checked="checked"'; ?> onClick="bwg_watermark('watermark_type_none')" />
460
+ <label for="watermark_type_none"><?php _e('None', 'bwg_back'); ?></label>
461
  <input type="radio" name="watermark_type" id="watermark_type_text" value="text" <?php if ($row->watermark_type == 'text') echo 'checked="checked"'; ?> onClick="bwg_watermark('watermark_type_text')" onchange="preview_watermark()" />
462
+ <label for="watermark_type_text"><?php _e('Text', 'bwg_back'); ?></label>
463
  <input type="radio" name="watermark_type" id="watermark_type_image" value="image" <?php if ($row->watermark_type == 'image') echo 'checked="checked"'; ?> onClick="bwg_watermark('watermark_type_image')" onchange="preview_watermark()" />
464
+ <label for="watermark_type_image"><?php _e('Image', 'bwg_back'); ?></label>
465
  <div class="spider_description"></div>
466
  </td>
467
  </tr>
468
  <tr id="tr_watermark_url">
469
  <td class="spider_label_options">
470
+ <label for="watermark_url"><?php _e('Advertisement url:', 'bwg_back'); ?> </label>
471
  </td>
472
  <td>
473
  <input type="text" id="watermark_url" name="watermark_url" style="width: 68%;" value="<?php echo $row->watermark_url; ?>" style="display:inline-block;" onchange="preview_watermark()" />
482
  title="Add image"
483
  onclick="return false;"
484
  style="margin-bottom:5px;">
485
+ <?php _e('Add Image', 'bwg_back'); ?>
486
  </a>
487
+ <div class="spider_description"><?php _e('Enter absolute image file url or add file from Options page. (.jpg,.jpeg,.png,.gif formats are supported)', 'bwg_back'); ?></div>
488
  </td>
489
  </tr>
490
  <tr id="tr_watermark_text">
491
  <td class="spider_label_options">
492
+ <label for="watermark_text"><?php _e('Advertisement text:', 'bwg_back'); ?> </label>
493
  </td>
494
  <td>
495
  <input type="text" name="watermark_text" id="watermark_text" style="width: 100%;" value="<?php echo $row->watermark_text; ?>" onchange="preview_watermark()" onkeypress="preview_watermark()" />
498
  </tr>
499
  <tr id="tr_watermark_link">
500
  <td class="spider_label_options">
501
+ <label for="watermark_link"><?php _e('Advertisement link:', 'bwg_back'); ?> </label>
502
  </td>
503
  <td>
504
  <input type="text" name="watermark_link" id="watermark_link" style="width: 100%;" value="<?php echo $row->watermark_link; ?>" onchange="preview_watermark()" onkeypress="preview_watermark()" />
505
+ <div class="spider_description"><?php _e('Enter a URL to open when the advertisement banner is clicked.', 'bwg_back'); ?></div>
506
  </td>
507
  </tr>
508
  <tr id="tr_watermark_width_height">
509
  <td class="spider_label_options">
510
+ <label for="watermark_width"><?php _e('Advertisement dimensions:', 'bwg_back'); ?> </label>
511
  </td>
512
  <td>
513
  <input type="text" name="watermark_width" id="watermark_width" value="<?php echo $row->watermark_width; ?>" class="spider_int_input" onchange="preview_watermark()" /> x
514
  <input type="text" name="watermark_height" id="watermark_height" value="<?php echo $row->watermark_height; ?>" class="spider_int_input" onchange="preview_watermark()" /> px
515
+ <div class="spider_description"><?php _e('Maximum values for watermark image width and height.', 'bwg_back'); ?></div>
516
  </td>
517
  </tr>
518
  <tr id="tr_watermark_font_size">
519
  <td class="spider_label_options">
520
+ <label for="watermark_font_size"><?php _e('Advertisement font size:', 'bwg_back'); ?> </label>
521
  </td>
522
  <td>
523
  <input type="text" name="watermark_font_size" id="watermark_font_size" value="<?php echo $row->watermark_font_size; ?>" class="spider_int_input" onchange="preview_watermark()" /> px
526
  </tr>
527
  <tr id="tr_watermark_font">
528
  <td class="spider_label_options">
529
+ <label for="watermark_font"><?php _e('Advertisement font style:', 'bwg_back'); ?> </label>
530
  </td>
531
  <td>
532
  <select name="watermark_font" id="watermark_font" style="width:150px;" onchange="preview_watermark()">
543
  </tr>
544
  <tr id="tr_watermark_color">
545
  <td class="spider_label_options">
546
+ <label for="watermark_color"><?php _e('Advertisement color:', 'bwg_back'); ?> </label>
547
  </td>
548
  <td>
549
  <input type="text" name="watermark_color" id="watermark_color" value="<?php echo $row->watermark_color; ?>" class="color" onchange="preview_watermark()" />
552
  </tr>
553
  <tr id="tr_watermark_opacity">
554
  <td class="spider_label_options">
555
+ <label for="watermark_opacity"><?php _e('Advertisement opacity:', 'bwg_back'); ?> </label>
556
  </td>
557
  <td>
558
  <input type="text" name="watermark_opacity" id="watermark_opacity" value="<?php echo $row->watermark_opacity; ?>" class="spider_int_input" onchange="preview_watermark()" /> %
559
+ <div class="spider_description"><?php _e('Value must be between 0 to 100.', 'bwg_back'); ?></div>
560
  </td>
561
  </tr>
562
  <tr id="tr_watermark_position">
563
  <td class="spider_label_options">
564
+ <label><?php _e('Advertisement position:', 'bwg_back'); ?> </label>
565
  </td>
566
  <td>
567
  <table class="bwg_position_table">
606
  <tbody>
607
  <tr id="tr_popup_full_width">
608
  <td class="spider_label_options">
609
+ <label><?php _e('Full width lightbox:', 'bwg_back'); ?></label>
610
  </td>
611
  <td>
612
+ <input type="radio" name="popup_fullscreen" id="popup_fullscreen_1" value="1" <?php if ($row->popup_fullscreen) echo 'checked="checked"'; ?> onchange="bwg_popup_fullscreen(1)" /><label for="popup_fullscreen_1"><?php _e('Yes', 'bwg_back'); ?></label>
613
+ <input type="radio" name="popup_fullscreen" id="popup_fullscreen_0" value="0" <?php if (!$row->popup_fullscreen) echo 'checked="checked"'; ?> onchange="bwg_popup_fullscreen(0)" /><label for="popup_fullscreen_0"><?php _e('No', 'bwg_back'); ?></label>
614
+ <div class="spider_description"><?php _e('Enable full width feature for the lightbox.', 'bwg_back'); ?></div>
615
  </td>
616
  </tr>
617
  <tr id="tr_popup_dimensions" >
618
  <td class="spider_label_options">
619
+ <label for="popup_width"><?php _e('Lightbox dimensions:', 'bwg_back'); ?></label>
620
  </td>
621
  <td>
622
  <input type="text" name="popup_width" id="popup_width" value="<?php echo $row->popup_width; ?>" class="spider_int_input" /> x
626
  </tr>
627
  <tr>
628
  <td class="spider_label_options">
629
+ <label for="popup_type"><?php _e('Lightbox effect:', 'bwg_back'); ?></label>
630
  </td>
631
  <td>
632
  <select name="popup_type" id="popup_type" style="width:150px;">
633
  <?php
634
  foreach ($effects as $key => $effect) {
635
  ?>
636
+ <option value="<?php echo $key; ?>" <?php echo ($key != 'none' && $key != 'fade') ? 'disabled="disabled" title="'.__("This effect is disabled in free version.", 'bwg_back').'"' : ''; ?> <?php if ($row->popup_type == $key) echo 'selected="selected"'; ?>><?php echo __($effect,"bwg_back"); ?></option>
637
  <?php
638
  }
639
  ?>
643
  </tr>
644
  <tr id="tr_popup_autoplay">
645
  <td class="spider_label_options">
646
+ <label><?php _e('Lightbox autoplay:', 'bwg_back'); ?> </label>
647
  </td>
648
  <td>
649
+ <input type="radio" name="popup_autoplay" id="popup_autoplay_1" value="1" <?php if ($row->popup_autoplay) echo 'checked="checked"'; ?> /><label for="popup_autoplay_1"><?php _e('Yes', 'bwg_back'); ?></label>
650
+ <input type="radio" name="popup_autoplay" id="popup_autoplay_0" value="0" <?php if (!$row->popup_autoplay) echo 'checked="checked"'; ?> /><label for="popup_autoplay_0"><?php _e('No', 'bwg_back'); ?></label>
651
  <div class="spider_description"></div>
652
  </td>
653
  </tr>
654
  <tr>
655
  <td class="spider_label_options">
656
+ <label for="popup_interval"><?php _e('Time interval:', 'bwg_back'); ?></label>
657
  </td>
658
  <td>
659
  <input type="text" name="popup_interval" id="popup_interval" value="<?php echo $row->popup_interval; ?>" class="spider_int_input" /> sec.
661
  </td>
662
  </tr>
663
  <tr>
664
+ <td class="spider_label_options">
665
+ <label><?php _e('Enable filmstrip:', 'bwg_back'); ?></label>
666
  </td>
667
  <td>
668
+ <input disabled="disabled" type="radio" name="popup_enable_filmstrip" id="popup_enable_filmstrip_1" value="1" <?php if ($row->popup_enable_filmstrip ) echo 'checked="checked"'; ?> onClick="bwg_enable_disable('', 'tr_popup_filmstrip_height', 'popup_enable_filmstrip_1')" /><label for="popup_enable_filmstrip_1"><?php _e("Yes", 'bwg_back'); ?></label>
669
+ <input disabled="disabled" type="radio" name="popup_enable_filmstrip" id="popup_enable_filmstrip_0" value="0" <?php if (!$row->popup_enable_filmstrip ) echo 'checked="checked"'; ?> onClick="bwg_enable_disable('none', 'tr_popup_filmstrip_height', 'popup_enable_filmstrip_0')" /><label for="popup_enable_filmstrip_0"><?php _e("No", 'bwg_back'); ?></label>
670
+ <div class="spider_description spider_free_version"><?php _e("This option is disabled in free version.", 'bwg_back'); ?></div>
671
  </td>
672
  </tr>
673
  <tr id="tr_popup_filmstrip_height">
674
  <td class="spider_label_options spider_free_version_label">
675
+ <label for="popup_filmstrip_height"><?php _e("Filmstrip size:", 'bwg_back'); ?></label>
676
  </td>
677
  <td class="spider_free_version_label">
678
  <input disabled="disabled" type="text" name="popup_filmstrip_height" id="popup_filmstrip_height" value="<?php echo $row->popup_filmstrip_height; ?>" class="spider_int_input spider_free_version_label" /> px
679
+ <div class="spider_description spider_free_version"><?php _e("This option is disabled in free version.", 'bwg_back'); ?></div>
680
  </td>
681
  </tr>
682
  <tr id="tr_popup_hit_counter">
683
  <td class="spider_label_options spider_free_version_label">
684
+ <label><?php _e("Display hit counter:", 'bwg_back'); ?></label>
685
  </td>
686
  <td>
687
+ <input disabled="disabled" type="radio" name="popup_hit_counter" id="popup_hit_counter_1" value="1" <?php if ($row->popup_hit_counter) echo 'checked="checked"'; ?> /><label for="popup_hit_counter_1"><?php _e("Yes", 'bwg_back'); ?></label>
688
+ <input disabled="disabled" type="radio" name="popup_hit_counter" id="popup_hit_counter_0" value="0" <?php if (!$row->popup_hit_counter) echo 'checked="checked"'; ?> /><label for="popup_hit_counter_0"><?php _e("No", 'bwg_back'); ?></label>
689
+ <div class="spider_description spider_free_version"><?php _e("This option is disabled in free version.", 'bwg_back'); ?></div>
690
  </td>
691
  </tr>
692
  <tr>
693
  <td class="spider_label_options">
694
+ <label> <?php _e("Show Next / Previous buttons:", 'bwg_back'); ?></label>
695
  </td>
696
  <td>
697
+ <input type="radio" name="autohide_lightbox_navigation" id="autohide_lightbox_navigation_1" value="1" <?php if ($row->autohide_lightbox_navigation ) echo 'checked="checked"'; ?> /><label for="autohide_lightbox_navigation_1"><?php _e("On hover", 'bwg_back'); ?></label>
698
+ <input type="radio" name="autohide_lightbox_navigation" id="autohide_lightbox_navigation_0" value="0" <?php if (!$row->autohide_lightbox_navigation ) echo 'checked="checked"'; ?> /><label for="autohide_lightbox_navigation_0"><?php _e("Always", 'bwg_back'); ?></label>
699
  <div class="spider_description"></div>
700
  </td>
701
  </tr>
702
  <tr>
703
  <td class="spider_label_options">
704
+ <label><?php _e("Enable control buttons:", 'bwg_back'); ?></label>
705
  </td>
706
  <td>
707
  <input type="radio" name="popup_enable_ctrl_btn" id="popup_enable_ctrl_btn_1" value="1" <?php if ($row->popup_enable_ctrl_btn) echo 'checked="checked"'; ?> onClick="bwg_enable_disable('', 'tr_popup_fullscreen', 'popup_enable_ctrl_btn_1');
716
  bwg_enable_disable('', 'tr_popup_email', 'popup_enable_ctrl_btn_1');
717
  bwg_enable_disable('', 'tr_popup_captcha', 'popup_enable_ctrl_btn_1');
718
  bwg_enable_disable('', 'tr_popup_download', 'popup_enable_ctrl_btn_1');
719
+ bwg_enable_disable('', 'tr_popup_fullsize_image', 'popup_enable_ctrl_btn_1');" /><label for="popup_enable_ctrl_btn_1"><?php _e("Yes", 'bwg_back'); ?></label>
720
  <input type="radio" name="popup_enable_ctrl_btn" id="popup_enable_ctrl_btn_0" value="0" <?php if (!$row->popup_enable_ctrl_btn) echo 'checked="checked"'; ?> onClick="bwg_enable_disable('none', 'tr_popup_fullscreen', 'popup_enable_ctrl_btn_0');
721
  bwg_enable_disable('none', 'tr_popup_info', 'popup_enable_ctrl_btn_0');
722
  bwg_enable_disable('none', 'tr_popup_comment', 'popup_enable_ctrl_btn_0');
729
  bwg_enable_disable('none', 'tr_popup_email', 'popup_enable_ctrl_btn_0');
730
  bwg_enable_disable('none', 'tr_popup_captcha', 'popup_enable_ctrl_btn_0');
731
  bwg_enable_disable('none', 'tr_popup_download', 'popup_enable_ctrl_btn_0');
732
+ bwg_enable_disable('none', 'tr_popup_fullsize_image', 'popup_enable_ctrl_btn_0');" /><label for="popup_enable_ctrl_btn_0"><?php _e("No", 'bwg_back'); ?></label>
733
  <div class="spider_description"></div>
734
  </td>
735
  </tr>
736
  <tr id="tr_popup_fullscreen">
737
  <td class="spider_label_options">
738
+ <label><?php _e("Enable fullscreen:", 'bwg_back'); ?></label>
739
  </td>
740
  <td>
741
+ <input type="radio" name="popup_enable_fullscreen" id="popup_enable_fullscreen_1" value="1" <?php if ($row->popup_enable_fullscreen) echo 'checked="checked"'; ?> /><label for="popup_enable_fullscreen_1"><?php _e("Yes", 'bwg_back'); ?></label>
742
+ <input type="radio" name="popup_enable_fullscreen" id="popup_enable_fullscreen_0" value="0" <?php if (!$row->popup_enable_fullscreen) echo 'checked="checked"'; ?> /><label for="popup_enable_fullscreen_0"><?php _e("No", 'bwg_back'); ?></label>
743
  <div class="spider_description"></div>
744
  </td>
745
  </tr>
746
  <tr id="tr_popup_info">
747
  <td class="spider_label_options">
748
+ <label><?php _e("Enable info:", 'bwg_back'); ?></label>
749
  </td>
750
  <td>
751
+ <input type="radio" name="popup_enable_info" id="popup_enable_info_1" value="1" <?php if ($row->popup_enable_info) echo 'checked="checked"'; ?> /><label for="popup_enable_info_1"><?php _e("Yes", 'bwg_back'); ?></label>
752
+ <input type="radio" name="popup_enable_info" id="popup_enable_info_0" value="0" <?php if (!$row->popup_enable_info) echo 'checked="checked"'; ?> /><label for="popup_enable_info_0"><?php _e("No", 'bwg_back'); ?></label>
753
  <div class="spider_description"></div>
754
  </td>
755
  </tr>
756
  <tr id="tr_popup_info_always_show">
757
  <td class="spider_label_options">
758
+ <label><?php _e("Display info by default:", 'bwg_back'); ?></label>
759
  </td>
760
  <td>
761
+ <input type="radio" name="popup_info_always_show" id="popup_info_always_show_1" value="1" <?php if ($row->popup_info_always_show) echo 'checked="checked"'; ?> /><label for="popup_info_always_show_1"><?php _e("Yes", 'bwg_back'); ?></label>
762
+ <input type="radio" name="popup_info_always_show" id="popup_info_always_show_0" value="0" <?php if (!$row->popup_info_always_show) echo 'checked="checked"'; ?> /><label for="popup_info_always_show_0"><?php _e("No", 'bwg_back'); ?></label>
763
  <div class="spider_description"></div>
764
  </td>
765
  </tr>
766
  <tr id="tr_popup_info_full_width">
767
  <td class="spider_label_options">
768
+ <label><?php _e("Full width info:", 'bwg_back'); ?></label>
769
  </td>
770
  <td>
771
+ <input type="radio" name="popup_info_full_width" id="popup_info_full_width_1" value="1" <?php if ($row->popup_info_full_width) echo 'checked="checked"'; ?> /><label for="popup_info_full_width_1"><?php _e("Yes", 'bwg_back'); ?></label>
772
+ <input type="radio" name="popup_info_full_width" id="popup_info_full_width_0" value="0" <?php if (!$row->popup_info_full_width) echo 'checked="checked"'; ?> /><label for="popup_info_full_width_0"><?php _e("No", 'bwg_back'); ?></label>
773
+ <div class="spider_description"><?php _e("Display image information based on the lightbox dimensions.", 'bwg_back'); ?></div>
774
  </td>
775
  </tr>
776
  </tbody>
781
  <tbody>
782
  <tr id="tr_popup_rate">
783
  <td class="spider_label_options spider_free_version_label">
784
+ <label><?php _e("Enable rating:", 'bwg_back'); ?></label>
785
  </td>
786
  <td>
787
+ <input disabled="disabled" type="radio" name="popup_enable_rate" id="popup_enable_rate_1" value="1" <?php if ($row->popup_enable_rate) echo 'checked="checked"'; ?> /><label for="popup_enable_rate_1"><?php _e("Yes", 'bwg_back'); ?></label>
788
+ <input disabled="disabled" type="radio" name="popup_enable_rate" id="popup_enable_rate_0" value="0" <?php if (!$row->popup_enable_rate) echo 'checked="checked"'; ?> /><label for="popup_enable_rate_0"><?php _e("No", 'bwg_back'); ?></label>
789
+ <div class="spider_description spider_free_version"><?php _e("This option is disabled in free version.", 'bwg_back'); ?></div>
790
  </td>
791
  </tr>
792
  <tr id="tr_popup_comment">
793
  <td class="spider_label_options spider_free_version_label">
794
+ <label><?php _e("Enable comments:", 'bwg_back'); ?></label>
795
  </td>
796
  <td>
797
  <input disabled="disabled" type="radio" name="popup_enable_comment" id="popup_enable_comment_1" value="1" <?php if ($row->popup_enable_comment) echo 'checked="checked"'; ?> onClick="bwg_enable_disable('', 'tr_comment_moderation', 'popup_enable_comment_1');
798
  bwg_enable_disable('', 'tr_popup_email', 'popup_enable_comment_1');
799
+ bwg_enable_disable('', 'tr_popup_captcha', 'popup_enable_comment_1');" /><label for="popup_enable_comment_1"><?php _e("Yes", 'bwg_back'); ?></label>
800
  <input disabled="disabled" type="radio" name="popup_enable_comment" id="popup_enable_comment_0" value="0" <?php if (!$row->popup_enable_comment) echo 'checked="checked"'; ?> onClick="bwg_enable_disable('none', 'tr_comment_moderation', 'popup_enable_comment_0');
801
  bwg_enable_disable('none', 'tr_popup_email', 'popup_enable_comment_0');
802
+ bwg_enable_disable('none', 'tr_popup_captcha', 'popup_enable_comment_0');" /><label for="popup_enable_comment_0"><?php _e("No", 'bwg_back'); ?></label>
803
+ <div class="spider_description spider_free_version"><?php _e("This option is disabled in free version.", 'bwg_back'); ?></div>
804
  </td>
805
  </tr>
806
  <tr id="tr_comment_moderation">
807
  <td class="spider_label_options spider_free_version_label">
808
+ <label><?php _e("Enable comments moderation:", 'bwg_back'); ?></label>
809
  </td>
810
  <td>
811
+ <input disabled="disabled" type="radio" name="comment_moderation" id="comment_moderation_1" value="1" <?php if ($row->comment_moderation) echo 'checked="checked"'; ?> /><label for="comment_moderation_1"><?php _e("Yes", 'bwg_back'); ?></label>
812
+ <input disabled="disabled" type="radio" name="comment_moderation" id="comment_moderation_0" value="0" <?php if (!$row->comment_moderation) echo 'checked="checked"'; ?> /><label for="comment_moderation_0"><?php _e("No", 'bwg_back'); ?></label>
813
+ <div class="spider_description spider_free_version"><?php _e("This option is disabled in free version.", 'bwg_back'); ?></div>
814
  </td>
815
  </tr>
816
  <tr id="tr_popup_email">
817
  <td class="spider_label_options spider_free_version_label">
818
+ <label><?php _e("Enable Email for comments:", 'bwg_back'); ?></label>
819
  </td>
820
  <td>
821
+ <input disabled="disabled" type="radio" name="popup_enable_email" id="popup_enable_email_1" value="1" <?php if ($row->popup_enable_email) echo 'checked="checked"'; ?> /><label for="popup_enable_email_1"><?php _e("Yes", 'bwg_back'); ?></label>
822
+ <input disabled="disabled" type="radio" name="popup_enable_email" id="popup_enable_email_0" value="0" <?php if (!$row->popup_enable_email) echo 'checked="checked"'; ?> /><label for="popup_enable_email_0"><?php _e("No", 'bwg_back'); ?></label>
823
+ <div class="spider_description spider_free_version"><?php _e("This option is disabled in free version.", 'bwg_back'); ?></div>
824
  </td>
825
  </tr>
826
  <tr id="tr_popup_captcha">
827
  <td class="spider_label_options spider_free_version_label">
828
+ <label><?php _e("Enable Captcha for comments:", 'bwg_back'); ?></label>
829
  </td>
830
  <td>
831
+ <input disabled="disabled" type="radio" name="popup_enable_captcha" id="popup_enable_captcha_1" value="1" <?php if ($row->popup_enable_captcha) echo 'checked="checked"'; ?> /><label for="popup_enable_captcha_1"><?php _e("Yes", 'bwg_back'); ?></label>
832
+ <input disabled="disabled" type="radio" name="popup_enable_captcha" id="popup_enable_captcha_0" value="0" <?php if (!$row->popup_enable_captcha) echo 'checked="checked"'; ?> /><label for="popup_enable_captcha_0"><?php _e("No", 'bwg_back'); ?></label>
833
+ <div class="spider_description spider_free_version"><?php _e("This option is disabled in free version.", 'bwg_back'); ?></div>
834
  </td>
835
  </tr>
836
  <tr id="tr_popup_fullsize_image">
837
  <td class="spider_label_options">
838
+ <label><?php _e("Enable original image display button:", 'bwg_back'); ?></label>
839
  </td>
840
  <td>
841
+ <input type="radio" name="popup_enable_fullsize_image" id="popup_enable_fullsize_image_1" value="1" <?php if ($row->popup_enable_fullsize_image) echo 'checked="checked"'; ?> /><label for="popup_enable_fullsize_image_1"><?php _e("Yes", 'bwg_back'); ?></label>
842
+ <input type="radio" name="popup_enable_fullsize_image" id="popup_enable_fullsize_image_0" value="0" <?php if (!$row->popup_enable_fullsize_image) echo 'checked="checked"'; ?> /><label for="popup_enable_fullsize_image_0"><?php _e("No", 'bwg_back'); ?></label>
843
  <div class="spider_description"></div>
844
  </td>
845
  </tr>
846
  <tr id="tr_popup_download">
847
  <td class="spider_label_options">
848
+ <label><?php _e("Enable download button:", 'bwg_back'); ?></label>
849
  </td>
850
  <td>
851
+ <input type="radio" name="popup_enable_download" id="popup_enable_download_1" value="1" <?php if ($row->popup_enable_download) echo 'checked="checked"'; ?> /><label for="popup_enable_download_1"><?php _e("Yes", 'bwg_back'); ?></label>
852
+ <input type="radio" name="popup_enable_download" id="popup_enable_download_0" value="0" <?php if (!$row->popup_enable_download) echo 'checked="checked"'; ?> /><label for="popup_enable_download_0"><?php _e("No", 'bwg_back'); ?></label>
853
  <div class="spider_description"></div>
854
  </td>
855
  </tr>
856
  <tr id="tr_popup_facebook">
857
  <td class="spider_label_options spider_free_version_label">
858
+ <label><?php _e("Enable Facebook button:", 'bwg_back'); ?></label>
859
  </td>
860
  <td>
861
+ <input disabled="disabled" type="radio" name="popup_enable_facebook" id="popup_enable_facebook_1" value="1" <?php if ($row->popup_enable_facebook) echo 'checked="checked"'; ?> /><label for="popup_enable_facebook_1"><?php _e("Yes", 'bwg_back'); ?></label>
862
+ <input disabled="disabled" type="radio" name="popup_enable_facebook" id="popup_enable_facebook_0" value="0" <?php if (!$row->popup_enable_facebook) echo 'checked="checked"'; ?> /><label for="popup_enable_facebook_0"><?php _e("No", 'bwg_back'); ?></label>
863
+ <div class="spider_description spider_free_version"><?php _e("This option is disabled in free version.", 'bwg_back'); ?></div>
864
  </td>
865
  </tr>
866
  <tr id="tr_popup_twitter">
867
  <td class="spider_label_options spider_free_version_label">
868
+ <label><?php _e("Enable Twitter button:", 'bwg_back'); ?></label>
869
  </td>
870
  <td>
871
+ <input disabled="disabled" type="radio" name="popup_enable_twitter" id="popup_enable_facebook_1" value="1" <?php if ($row->popup_enable_twitter) echo 'checked="checked"'; ?> /><label for="popup_enable_twitter_1"><?php _e("Yes", 'bwg_back'); ?></label>
872
+ <input disabled="disabled" type="radio" name="popup_enable_twitter" id="popup_enable_facebook_0" value="0" <?php if (!$row->popup_enable_twitter) echo 'checked="checked"'; ?> /><label for="popup_enable_twitter_0"><?php _e("No", 'bwg_back'); ?></label>
873
+ <div class="spider_description spider_free_version"><?php _e("This option is disabled in free version.", 'bwg_back'); ?></div>
874
  </td>
875
  </tr>
876
  <tr id="tr_popup_google">
877
  <td class="spider_label_options spider_free_version_label">
878
+ <label><?php _e("Enable Google+ button:", 'bwg_back'); ?></label>
879
  </td>
880
  <td>
881
+ <input disabled="disabled" type="radio" name="popup_enable_google" id="popup_enable_google_1" value="1" <?php if ($row->popup_enable_google) echo 'checked="checked"'; ?> /><label for="popup_enable_google_1"><?php _e("Yes", 'bwg_back'); ?></label>
882
+ <input disabled="disabled" type="radio" name="popup_enable_google" id="popup_enable_google_0" value="0" <?php if (!$row->popup_enable_google) echo 'checked="checked"'; ?> /><label for="popup_enable_google_0"><?php _e("No", 'bwg_back'); ?></label>
883
+ <div class="spider_description spider_free_version"><?php _e("This option is disabled in free version.", 'bwg_back'); ?></div>
884
  </td>
885
  </tr>
886
  <tr id="tr_popup_pinterest">
887
  <td class="spider_label_options spider_free_version_label">
888
+ <label><?php _e("Enable Pinterest button:", 'bwg_back'); ?></label>
889
  </td>
890
  <td>
891
+ <input disabled="disabled" type="radio" name="popup_enable_pinterest" id="popup_enable_pinterest_1" value="1" <?php if ($row->popup_enable_pinterest) echo 'checked="checked"'; ?> /><label for="popup_enable_pinterest_1"><?php _e("Yes", 'bwg_back'); ?></label>
892
+ <input disabled="disabled" type="radio" name="popup_enable_pinterest" id="popup_enable_pinterest_0" value="0" <?php if (!$row->popup_enable_pinterest) echo 'checked="checked"'; ?> /><label for="popup_enable_pinterest_0"><?php _e("No", 'bwg_back'); ?></label>
893
+ <div class="spider_description spider_free_version"><?php _e("This option is disabled in free version.", 'bwg_back'); ?></div>
894
  </td>
895
  </tr>
896
  <tr id="tr_popup_tumblr">
897
  <td class="spider_label_options spider_free_version_label">
898
+ <label><?php _e("Enable Tumblr button:", 'bwg_back'); ?></label>
899
  </td>
900
  <td>
901
+ <input disabled="disabled" type="radio" name="popup_enable_tumblr" id="popup_enable_tumblr_1" value="1" <?php if ($row->popup_enable_tumblr) echo 'checked="checked"'; ?> /><label for="popup_enable_tumblr_1"><?php _e("Yes", 'bwg_back'); ?></label>
902
+ <input disabled="disabled" type="radio" name="popup_enable_tumblr" id="popup_enable_tumblr_0" value="0" <?php if (!$row->popup_enable_tumblr) echo 'checked="checked"'; ?> /><label for="popup_enable_tumblr_0"><?php _e("No", 'bwg_back'); ?></label>
903
+ <div class="spider_description spider_free_version"><?php _e("This option is disabled in free version.", 'bwg_back'); ?></div>
904
  </td>
905
  </tr>
906
  <tr id="tr_image_count">
907
  <td class="spider_label_options">
908
+ <label><?php _e("Show images count:", 'bwg_back'); ?></label>
909
  </td>
910
  <td>
911
+ <input type="radio" name="show_image_counts" id="show_image_counts_current_image_number_1" value="1" <?php if ($row->show_image_counts) echo 'checked="checked"'; ?> /><label for="show_image_counts_current_image_number_1"><?php _e("Yes", 'bwg_back'); ?></label>
912
+ <input type="radio" name="show_image_counts" id="show_image_counts_current_image_number_0" value="0" <?php if (!$row->show_image_counts) echo 'checked="checked"'; ?> /><label for="show_image_counts_current_image_number_0"><?php _e("No", 'bwg_back'); ?></label>
913
  <div class="spider_description"></div>
914
  </td>
915
  </tr>
916
  <tr id="tr_image_cycle">
917
  <td class="spider_label_options">
918
+ <label><?php _e("Enable loop:", 'bwg_back'); ?></label>
919
  </td>
920
  <td>
921
+ <input type="radio" name="enable_loop" id="enable_loop_1" value="1" <?php if ($row->enable_loop) echo 'checked="checked"'; ?> /><label for="enable_loop_1"><?php _e("Yes", 'bwg_back'); ?></label>
922
+ <input type="radio" name="enable_loop" id="enable_loop_0" value="0" <?php if (!$row->enable_loop) echo 'checked="checked"'; ?> /><label for="enable_loop_0"><?php _e("No", 'bwg_back'); ?></label>
923
  <div class="spider_description"></div>
924
  </td>
925
  </tr>
926
  <tr>
927
  <td class="spider_label_options spider_free_version_label">
928
+ <label><?php _e("Enable", 'bwg_back'); ?> AddThis:</label>
929
  </td>
930
  <td>
931
  <input disabled="disabled" type="radio" name="enable_addthis" id="enable_addthis_1" value="1" <?php if ($row->enable_addthis ) echo 'checked="checked"'; ?> />
932
+ <label for="enable_addthis_1"><?php _e("Yes", 'bwg_back'); ?></label>
933
  <input disabled="disabled" type="radio" name="enable_addthis" id="enable_addthis_0" value="0" <?php if (!$row->enable_addthis ) echo 'checked="checked"'; ?> />
934
+ <label for="enable_addthis_0"><?php _e("No", 'bwg_back'); ?></label>
935
+ <div class="spider_description spider_free_version"><?php _e("This option is disabled in free version.", 'bwg_back'); ?></div>
936
  </td>
937
  </tr>
938
  </tbody>
948
  <tbody>
949
  <tr>
950
  <td class="spider_label_options">
951
+ <label for="album_column_number"><?php _e("Number of album columns:", 'bwg_back'); ?> </label>
952
  </td>
953
  <td>
954
  <input type="text" name="album_column_number" id="album_column_number" value="<?php echo $row->album_column_number; ?>" class="spider_int_input" />
957
  </tr>
958
  <tr>
959
  <td class="spider_label_options">
960
+ <label for="albums_per_page"><?php _e("Albums per page:", 'bwg_back'); ?> </label>
961
  </td>
962
  <td>
963
  <input type="text" name="albums_per_page" id="albums_per_page" value="<?php echo $row->albums_per_page; ?>" class="spider_int_input" />
966
  </tr>
967
  <tr>
968
  <td class="spider_label_options">
969
+ <label><?php _e("Enable pagination:", 'bwg_back'); ?></label>
970
  </td>
971
  <td>
972
+ <input type="radio" name="album_enable_page" id="album_enable_page_1" value="1" <?php if ($row->album_enable_page) echo 'checked="checked"'; ?> /><label for="album_enable_page_1"><?php _e("Yes", 'bwg_back'); ?></label>
973
+ <input type="radio" name="album_enable_page" id="album_enable_page_0" value="0" <?php if (!$row->album_enable_page) echo 'checked="checked"'; ?> /><label for="album_enable_page_0"><?php _e("No", 'bwg_back'); ?></label>
974
  <div class="spider_description"></div>
975
  </td>
976
  </tr>
977
  <tr>
978
  <td class="spider_label_options">
979
+ <label><?php _e("Album view type:", 'bwg_back'); ?></label>
980
  </td>
981
  <td>
982
+ <input disabled="disabled" type="radio" name="album_view_type" id="album_view_type_1" value="thumbnail" <?php if ($row->album_view_type == "thumbnail") echo 'checked="checked"'; ?> /><label for="album_view_type_1"><?php _e("Thumbnail", 'bwg_back'); ?></label>
983
+ <input disabled="disabled" type="radio" name="album_view_type" id="album_view_type_0" value="masonry" <?php if ($row->album_view_type == "masonry") echo 'checked="checked"'; ?> /><label for="album_view_type_0"><?php _e("Masonry", 'bwg_back'); ?></label>
984
+ <div class="spider_description spider_free_version"><?php _e("This option is disabled in free version.", 'bwg_back'); ?></div>
985
  </td>
986
  </tr>
987
  <tr>
988
  <td class="spider_label_options">
989
+ <label><?php _e("Show title:", 'bwg_back'); ?></label>
990
  </td>
991
  <td>
992
+ <input type="radio" name="album_title_show_hover" id="album_title_show_hover_1" value="hover" <?php if ($row->album_title_show_hover == "hover") echo 'checked="checked"'; ?> /><label for="album_title_show_hover_1"><?php _e("Show on hover", 'bwg_back'); ?></label><br />
993
+ <input type="radio" name="album_title_show_hover" id="album_title_show_hover_0" value="show" <?php if ($row->album_title_show_hover == "show") echo 'checked="checked"'; ?> /><label for="album_title_show_hover_0"><?php _e("Always show", 'bwg_back'); ?></label><br />
994
+ <input type="radio" name="album_title_show_hover" id="album_title_show_hover_2" value="none" <?php if ($row->album_title_show_hover == "none") echo 'checked="checked"'; ?> /><label for="album_title_show_hover_2"><?php _e("Don't show", 'bwg_back'); ?></label>
995
  <div class="spider_description"></div>
996
  </td>
997
  </tr>
998
  <tr>
999
  <td class="spider_label_options">
1000
+ <label><?php _e("Show album/gallery name:", 'bwg_back'); ?></label>
1001
  </td>
1002
  <td>
1003
+ <input type="radio" name="show_album_name_enable" id="show_album_name_enable_1" value="1" <?php if ($row->show_album_name) echo 'checked="checked"'; ?> /><label for="show_album_name_enable_1"><?php _e("Yes", 'bwg_back'); ?></label>
1004
+ <input type="radio" name="show_album_name_enable" id="show_album_name_enable_0" value="0" <?php if (!$row->show_album_name) echo 'checked="checked"'; ?> /><label for="show_album_name_enable_0"><?php _e("No", 'bwg_back'); ?></label>
1005
  <div class="spider_description"></div>
1006
  </td>
1007
  </tr>
1008
  <tr>
1009
  <td class="spider_label_options">
1010
+ <label><?php _e("Enable extended album description:", 'bwg_back'); ?></label>
1011
  </td>
1012
  <td>
1013
+ <input type="radio" name="extended_album_description_enable" id="extended_album_description_enable_1" value="1" <?php if ($row->extended_album_description_enable) echo 'checked="checked"'; ?> /><label for="extended_album_description_enable_1"><?php _e("Yes", 'bwg_back'); ?></label>
1014
+ <input type="radio" name="extended_album_description_enable" id="extended_album_description_enable_0" value="0" <?php if (!$row->extended_album_description_enable) echo 'checked="checked"'; ?> /><label for="extended_album_description_enable_0"><?php _e("No", 'bwg_back'); ?></label>
1015
  <div class="spider_description"></div>
1016
  </td>
1017
  </tr>
1018
  <tr>
1019
  <td class="spider_label_options">
1020
+ <label for="album_thumb_width"><?php _e("Album thumbnail dimensions:", 'bwg_back'); ?> </label>
1021
  </td>
1022
  <td>
1023
  <input type="text" name="album_thumb_width" id="album_thumb_width" value="<?php echo $row->album_thumb_width; ?>" class="spider_int_input" /> x
1027
  </tr>
1028
  <tr>
1029
  <td class="spider_label_options">
1030
+ <label for="extended_album_height"><?php _e("Extended album height:", 'bwg_back'); ?> </label>
1031
  </td>
1032
  <td>
1033
  <input type="text" name="extended_album_height" id="extended_album_height" value="<?php echo $row->extended_album_height; ?>" class="spider_int_input" /> px
1047
  <tbody>
1048
  <tr>
1049
  <td class="spider_label_options">
1050
+ <label for="slideshow_type"><?php _e("Slideshow effect:", 'bwg_back'); ?> </label>
1051
  </td>
1052
  <td>
1053
  <select name="slideshow_type" id="slideshow_type" style="width:150px;">
1064
  </tr>
1065
  <tr>
1066
  <td class="spider_label_options">
1067
+ <label for="slideshow_interval"><?php _e("Time interval:", 'bwg_back'); ?> </label>
1068
  </td>
1069
  <td>
1070
  <input type="text" name="slideshow_interval" id="slideshow_interval" value="<?php echo $row->slideshow_interval; ?>" class="spider_int_input" /> sec.
1073
  </tr>
1074
  <tr>
1075
  <td class="spider_label_options">
1076
+ <label for="slideshow_width"><?php _e("Slideshow dimensions:", 'bwg_back'); ?> </label>
1077
  </td>
1078
  <td>
1079
  <input type="text" name="slideshow_width" id="slideshow_width" value="<?php echo $row->slideshow_width; ?>" class="spider_int_input" /> x
1083
  </tr>
1084
  <tr>
1085
  <td class="spider_label_options">
1086
+ <label><?php _e("Enable autoplay:", 'bwg_back'); ?> </label>
1087
  </td>
1088
  <td>
1089
+ <input type="radio" name="slideshow_enable_autoplay" id="slideshow_enable_autoplay_yes" value="1" <?php if ($row->slideshow_enable_autoplay) echo 'checked="checked"'; ?> /><label for="slideshow_enable_autoplay_yes"><?php _e("Yes", 'bwg_back'); ?></label>
1090
+ <input type="radio" name="slideshow_enable_autoplay" id="slideshow_enable_autoplay_no" value="0" <?php if (!$row->slideshow_enable_autoplay) echo 'checked="checked"'; ?> /><label for="slideshow_enable_autoplay_no"><?php _e("No", 'bwg_back'); ?></label>
1091
  <div class="spider_description"></div>
1092
  </td>
1093
  </tr>
1094
  <tr>
1095
  <td class="spider_label_options">
1096
+ <label><?php _e("Enable shuffle:", 'bwg_back'); ?> </label>
1097
  </td>
1098
  <td>
1099
+ <input type="radio" name="slideshow_enable_shuffle" id="slideshow_enable_shuffle_yes" value="1" <?php if ($row->slideshow_enable_shuffle) echo 'checked="checked"'; ?> /><label for="slideshow_enable_shuffle_yes"><?php _e("Yes", 'bwg_back'); ?></label>
1100
+ <input type="radio" name="slideshow_enable_shuffle" id="slideshow_enable_shuffle_no" value="0" <?php if (!$row->slideshow_enable_shuffle) echo 'checked="checked"'; ?> /><label for="slideshow_enable_shuffle_no"><?php _e("No", 'bwg_back'); ?></label>
1101
  <div class="spider_description"></div>
1102
  </td>
1103
  </tr>
1104
  <tr>
1105
  <td class="spider_label_options">
1106
+ <label> <?php _e("Show Next / Previous buttons:", 'bwg_back'); ?></label>
1107
  </td>
1108
  <td>
1109
+ <input type="radio" name="autohide_slideshow_navigation" id="autohide_slideshow_navigation_1" value="1" <?php if ($row->autohide_slideshow_navigation) echo 'checked="checked"'; ?> /><label for="autohide_slideshow_navigation_1"><?php _e("On hover", 'bwg_back'); ?></label>
1110
+ <input type="radio" name="autohide_slideshow_navigation" id="autohide_slideshow_navigation_0" value="0" <?php if (!$row->autohide_slideshow_navigation) echo 'checked="checked"'; ?> /><label for="autohide_slideshow_navigation_0"><?php _e("Always", 'bwg_back'); ?></label>
1111
  <div class="spider_description"></div>
1112
  </td>
1113
  </tr>
1114
  <tr>
1115
  <td class="spider_label_options">
1116
+ <label><?php _e("Enable control buttons:", 'bwg_back'); ?> </label>
1117
  </td>
1118
  <td>
1119
+ <input type="radio" name="slideshow_enable_ctrl" id="slideshow_enable_ctrl_yes" value="1" <?php if ($row->slideshow_enable_ctrl) echo 'checked="checked"'; ?> /><label for="slideshow_enable_ctrl_yes"><?php _e("Yes", 'bwg_back'); ?></label>
1120
+ <input type="radio" name="slideshow_enable_ctrl" id="slideshow_enable_ctrl_no" value="0" <?php if (!$row->slideshow_enable_ctrl) echo 'checked="checked"'; ?> /><label for="slideshow_enable_ctrl_no"><?php _e("No", 'bwg_back'); ?></label>
1121
  <div class="spider_description"></div>
1122
  </td>
1123
  </tr>
1124
  <tr>
1125
+ <td class="spider_label_options spider_free_version_label"><label><?php _e("Enable slideshow filmstrip:", 'bwg_back'); ?> </label></td>
1126
  <td>
1127
+ <input disabled="disabled" type="radio" name="slideshow_enable_filmstrip" id="slideshow_enable_filmstrip_yes" value="1" <?php if ($row->slideshow_enable_filmstrip) echo 'checked="checked"'; ?> onClick="bwg_enable_disable('', 'tr_slideshow_filmstrip_height', 'slideshow_enable_filmstrip_yes')" /><label for="slideshow_enable_filmstrip_yes"><?php _e("Yes", 'bwg_back'); ?></label>
1128
+ <input disabled="disabled" type="radio" name="slideshow_enable_filmstrip" id="slideshow_enable_filmstrip_no" value="0" <?php if (!$row->slideshow_enable_filmstrip) echo 'checked="checked"'; ?> onClick="bwg_enable_disable('none', 'tr_slideshow_filmstrip_height', 'slideshow_enable_filmstrip_no')" /><label for="slideshow_enable_filmstrip_no"><?php _e("No", 'bwg_back'); ?></label>
1129
+ <div class="spider_description spider_free_version"><?php _e("This option is disabled in free version.", 'bwg_back'); ?></div>
1130
  </td>
1131
  </tr>
1132
  <tr id="tr_slideshow_filmstrip_height">
1133
+ <td class="spider_label_options spider_free_version_label"><label for="slideshow_filmstrip_height"><?php _e("Slideshow filmstrip size:", 'bwg_back'); ?> </label></td>
1134
  <td class="spider_free_version_label">
1135
  <input disabled="disabled" type="text" name="slideshow_filmstrip_height" id="slideshow_filmstrip_height" value="<?php echo $row->slideshow_filmstrip_height; ?>" class="spider_int_input spider_free_version_label" /> px
1136
+ <div class="spider_description spider_free_version"><?php _e("This option is disabled in free version.", 'bwg_back'); ?></div>
1137
  </td>
1138
  </tr>
1139
  </tbody>
1143
  <table style="width: 100%; display: inline-table;">
1144
  <tbody>
1145
  <tr>
1146
+ <td class="spider_label_options"><label><?php _e("Enable image title:", 'bwg_back'); ?> </label></td>
1147
  <td>
1148
+ <input type="radio" name="slideshow_enable_title" id="slideshow_enable_title_yes" value="1" <?php if ($row->slideshow_enable_title) echo 'checked="checked"'; ?> onClick="bwg_enable_disable('', 'tr_slideshow_title_position', 'slideshow_enable_title_yes')" /><label for="slideshow_enable_title_yes"><?php _e("Yes", 'bwg_back'); ?></label>
1149
+ <input type="radio" name="slideshow_enable_title" id="slideshow_enable_title_no" value="0" <?php if (!$row->slideshow_enable_title) echo 'checked="checked"'; ?> onClick="bwg_enable_disable('none', 'tr_slideshow_title_position', 'slideshow_enable_title_no')" /><label for="slideshow_enable_title_no"><?php _e("No", 'bwg_back'); ?></label>
1150
  <div class="spider_description"></div>
1151
  </td>
1152
  </tr>
1153
  <tr id="tr_slideshow_title_position">
1154
+ <td class="spider_label_options"><label><?php _e("Title position:", 'bwg_back'); ?> </label></td>
1155
  <td>
1156
  <table class="bwg_position_table">
1157
  <tbody>
1172
  </tr>
1173
  </tbody>
1174
  </table>
1175
+ <div class="spider_description"><?php _e("Image title position on slideshow", 'bwg_back'); ?></div>
1176
  </td>
1177
  </tr>
1178
  <tr id="tr_slideshow_full_width_title">
1179
  <td class="spider_label_options">
1180
+ <label><?php _e("Full width title:", 'bwg_back'); ?></label>
1181
  </td>
1182
  <td>
1183
+ <input type="radio" name="slideshow_title_full_width" id="slideshow_title_full_width_1" value="1" <?php if ($row->slideshow_title_full_width) echo 'checked="checked"'; ?> /><label for="slideshow_title_full_width_1"><?php _e("Yes", 'bwg_back'); ?></label>
1184
+ <input type="radio" name="slideshow_title_full_width" id="slideshow_title_full_width_0" value="0" <?php if (!$row->slideshow_title_full_width) echo 'checked="checked"'; ?> /><label for="slideshow_title_full_width_0"><?php _e("No", 'bwg_back'); ?></label>
1185
+ <div class="spider_description"><?php _e("Display image title based on the slideshow dimensions.", 'bwg_back'); ?></div>
1186
  </td>
1187
  </tr>
1188
  <tr>
1189
+ <td class="spider_label_options"><label><?php _e("Enable image description: ", 'bwg_back'); ?></label></td>
1190
  <td>
1191
+ <input type="radio" name="slideshow_enable_description" id="slideshow_enable_description_yes" value="1" <?php if ($row->slideshow_enable_description) echo 'checked="checked"'; ?> onClick="bwg_enable_disable('', 'tr_slideshow_description_position', 'slideshow_enable_description_yes')" /><label for="slideshow_enable_description_yes"><?php _e("Yes", 'bwg_back'); ?></label>
1192
+ <input type="radio" name="slideshow_enable_description" id="slideshow_enable_description_no" value="0" <?php if (!$row->slideshow_enable_description) echo 'checked="checked"'; ?> onClick="bwg_enable_disable('none', 'tr_slideshow_description_position', 'slideshow_enable_description_no')" /><label for="slideshow_enable_description_no"><?php _e("No", 'bwg_back'); ?></label>
1193
  <div class="spider_description"></div>
1194
  </td>
1195
  </tr>
1196
  <tr id="tr_slideshow_description_position">
1197
+ <td class="spider_label"><label><?php _e("Description position:", 'bwg_back'); ?> </label></td>
1198
  <td>
1199
  <table class="bwg_position_table">
1200
  <tbody>
1215
  </tr>
1216
  </tbody>
1217
  </table>
1218
+ <div class="spider_description"><?php _e("Image description position on slideshow", 'bwg_back'); ?></div>
1219
  </td>
1220
  </tr>
1221
  <tr>
1222
  <td class="spider_label_options">
1223
+ <label><?php _e("Enable slideshow Music:", 'bwg_back'); ?> </label>
1224
  </td>
1225
  <td>
1226
+ <input type="radio" name="slideshow_enable_music" id="slideshow_enable_music_yes" value="1" <?php if ($row->slideshow_enable_music) echo 'checked="checked"'; ?> onClick="bwg_enable_disable('', 'tr_slideshow_music_url', 'slideshow_enable_music_yes')" /><label for="slideshow_enable_music_yes"><?php _e("Yes", 'bwg_back'); ?></label>
1227
+ <input type="radio" name="slideshow_enable_music" id="slideshow_enable_music_no" value="0" <?php if (!$row->slideshow_enable_music) echo 'checked="checked"'; ?> onClick="bwg_enable_disable('none', 'tr_slideshow_music_url', 'slideshow_enable_music_no')" /><label for="slideshow_enable_music_no"><?php _e("No", 'bwg_back'); ?></label>
1228
  <div class="spider_description"></div>
1229
  </td>
1230
  </tr>
1231
  <tr id="tr_slideshow_music_url">
1232
  <td class="spider_label_options">
1233
+ <label for="slideshow_audio_url"><?php _e("Music url:", 'bwg_back'); ?> </label>
1234
  </td>
1235
  <td>
1236
  <input type="text" id="slideshow_audio_url" name="slideshow_audio_url" style="width: 70%;" value="<?php echo $row->slideshow_audio_url; ?>" style="display:inline-block;" />
1243
  title="Add music"
1244
  onclick="return false;"
1245
  style="margin-bottom:5px;">
1246
+ <?php _e("Add Music", 'bwg_back'); ?>
1247
  </a>
1248
+ <div class="spider_description"><?php _e("Only", 'bwg_back'); ?> .aac,.m4a,.f4a,.mp3,.ogg,.oga <?php _e("formats are supported.", 'bwg_back'); ?></div>
1249
  </td>
1250
  </tr>
1251
  </tbody>
1261
  <tbody>
1262
  <tr style="display:none;">
1263
  <td class="spider_label_options">
1264
+ <label><?php _e("Masonry:", 'bwg_back'); ?></label>
1265
  </td>
1266
  <td>
1267
+ <input type="radio" name="masonry" id="masonry_1" value="horizontal" <?php if ($row->masonry == "horizontal") echo 'checked="checked"'; ?> /><label for="masonry_1"><?php _e("Horizontal", 'bwg_back'); ?></label>
1268
+ <input type="radio" name="masonry" id="masonry_0" value="vertical" <?php if ($row->masonry == "vertical") echo 'checked="checked"'; ?> /><label for="masonry_0"><?php _e("Vertical", 'bwg_back'); ?></label>
1269
  <div class="spider_description"></div>
1270
  </td>
1271
  </tr>
1272
  <tr style="display:none;">
1273
  <td class="spider_label_options">
1274
+ <label><?php _e("Mosaic:", 'bwg_back'); ?></label>
1275
  </td>
1276
  <td>
1277
+ <input type="radio" name="mosaic" id="mosaic_0" value="vertical" <?php if ($row->mosaic == "vertical") echo 'checked="checked"'; ?> /><label for="mosaic_0"><?php _e("Vertical", 'bwg_back'); ?></label>
1278
+ <input type="radio" name="mosaic" id="mosaic_1" value="horizontal" <?php if ($row->mosaic == "horizontal") echo 'checked="checked"'; ?> /><label for="mosaic_1"><?php _e("Horizontal", 'bwg_back'); ?></label>
1279
  <div class="spider_description"></div>
1280
  </td>
1281
  </tr>
1282
  <tr style="display:none;">
1283
  <td class="spider_label_options">
1284
+ <label><?php _e("Resizable mosaic:", 'bwg_back'); ?></label>
1285
  </td>
1286
  <td>
1287
+ <input type="radio" name="resizable_mosaic" id="resizable_mosaic_0" value="0" <?php if ($row->resizable_mosaic == "0") echo 'checked="checked"'; ?> /><label for="resizable_mosaic_0"><?php _e("No", 'bwg_back'); ?></label>
1288
+ <input type="radio" name="resizable_mosaic" id="resizable_mosaic_1" value="1" <?php if ($row->resizable_mosaic == "1") echo 'checked="checked"'; ?> /><label for="resizable_mosaic_1"><?php _e("Yes", 'bwg_back'); ?></label>
1289
  <div class="spider_description"></div>
1290
  </td>
1291
  </tr>
1292
  <tr style="display:none;">
1293
  <td class="spider_label_options">
1294
+ <label for="mosaic_total_width"><?php _e("Total width of mosaic:", 'bwg_back'); ?> </label>
1295
  </td>
1296
  <td>
1297
  <input type="text" name="mosaic_total_width" id="mosaic_total_width" value="<?php echo $row->mosaic_total_width; ?>" class="spider_int_input" /> %
1298
+ <div class="spider_description"><?php _e("Width of mosaic as a percentage of container's width.", 'bwg_back'); ?></div>
1299
  </td>
1300
  </tr>
1301
  <tr>
1302
  <td class="spider_label_options">
1303
+ <label for="image_column_number"><?php _e("Number of image columns:", 'bwg_back'); ?> </label>
1304
  </td>
1305
  <td>
1306
  <input type="text" name="image_column_number" id="image_column_number" value="<?php echo $row->image_column_number; ?>" class="spider_int_input" />
1309
  </tr>
1310
  <tr>
1311
  <td class="spider_label_options">
1312
+ <label for="images_per_page"><?php _e("Images per page:", 'bwg_back'); ?> </label>
1313
  </td>
1314
  <td>
1315
  <input type="text" name="images_per_page" id="images_per_page" value="<?php echo $row->images_per_page; ?>" class="spider_int_input" />
1318
  </tr>
1319
  <tr>
1320
  <td class="spider_label_options">
1321
+ <label for="upload_thumb_width"><?php _e("Generated thumbnail dimensions:", 'bwg_back'); ?> </label>
1322
  </td>
1323
  <td>
1324
  <input type="text" name="upload_thumb_width" id="upload_thumb_width" value="<?php echo $row->upload_thumb_width; ?>" class="spider_int_input" /> x
1325
  <input type="text" name="upload_thumb_height" id="upload_thumb_height" value="<?php echo $row->upload_thumb_height; ?>" class="spider_int_input" /> px
1326
+ <div class="spider_description"><?php _e("The maximum size of the generated thumbnail. Its dimensions should be larger than the ones of the frontend thumbnail.", 'bwg_back'); ?></div>
1327
  </td>
1328
  </tr>
1329
  <tr>
1330
  <td class="spider_label_options">
1331
+ <label for="thumb_width"><?php _e("Frontend thumbnail dimensions:", 'bwg_back'); ?> </label>
1332
  </td>
1333
  <td>
1334
  <input type="text" name="thumb_width" id="thumb_width" value="<?php echo $row->thumb_width; ?>" class="spider_int_input" /> x
1335
  <input type="text" name="thumb_height" id="thumb_height" value="<?php echo $row->thumb_height; ?>" class="spider_int_input" /> px
1336
+ <div class="spider_description"><?php _e("The default size of the thumbnail which will be displayed in the website", 'bwg_back'); ?></div>
1337
  </td>
1338
  </tr>
1339
  <tr>
1340
  <td class="spider_label_options">
1341
+ <label><?php _e("Show image title:", 'bwg_back'); ?></label>
1342
  </td>
1343
  <td>
1344
+ <input type="radio" name="image_title_show_hover" id="image_title_show_hover_1" value="hover" <?php if ($row->image_title_show_hover == "hover") echo 'checked="checked"'; ?> /><label for="image_title_show_hover_1"><?php _e("Show on hover", 'bwg_back'); ?></label><br />
1345
+ <input type="radio" name="image_title_show_hover" id="image_title_show_hover_0" value="show" <?php if ($row->image_title_show_hover == "show") echo 'checked="checked"'; ?> /><label for="image_title_show_hover_0"><?php _e("Always show", 'bwg_back'); ?></label><br />
1346
+ <input type="radio" name="image_title_show_hover" id="image_title_show_hover_2" value="none" <?php if ($row->image_title_show_hover == "none") echo 'checked="checked"'; ?> /><label for="image_title_show_hover_2"><?php _e("Don't show", 'bwg_back'); ?></label>
1347
  <div class="spider_description"></div>
1348
  </td>
1349
  </tr>
1350
  <tr id="tr_thumb_show_name">
1351
+ <td class="spider_label_options"><label><?php _e("Show gallery name:", 'bwg_back'); ?> </label></td>
1352
  <td>
1353
+ <input type="radio" name="thumb_name" id="thumb_name_yes" value="1" <?php if ($row->showthumbs_name) echo 'checked="checked"'; ?> /><label for="thumb_name_yes"><?php _e("Yes", 'bwg_back'); ?></label>
1354
+ <input type="radio" name="thumb_name" id="thumb_name_no" value="0" <?php if (!$row->showthumbs_name) echo 'checked="checked"'; ?> /><label for="thumb_name_no"><?php _e("No", 'bwg_back'); ?></label>
1355
  <div class="spider_description"></div>
1356
  </td>
1357
  </tr>
1358
  <tr>
1359
  <td class="spider_label_options spider_free_version_label">
1360
+ <label><?php _e("Show description in Vertical Masonry view:", 'bwg_back'); ?> </label>
1361
  </td>
1362
  <td>
1363
+ <input disabled="disabled" type="radio" name="show_masonry_thumb_description" id="masonry_thumb_desc_1" value="1" <?php if ($row->show_masonry_thumb_description) echo 'checked="checked"'; ?> /><label for="masonry_thumb_desc_1"><?php _e("Yes", 'bwg_back'); ?></label>
1364
+ <input disabled="disabled" type="radio" name="show_masonry_thumb_description" id="masonry_thumb_desc_0" value="0" <?php if (!$row->show_masonry_thumb_description) echo 'checked="checked"'; ?> /><label for="masonry_thumb_desc_0"><?php _e("No", 'bwg_back'); ?></label>
1365
+ <div style="width: 200px;" class="spider_description spider_free_version"><?php _e("This option is disabled in free version.", 'bwg_back'); ?></div>
1366
  </td>
1367
  </tr>
1368
  <tr>
1369
+ <td class="spider_label_options"><label><?php _e("Enable image pagination:", 'bwg_back'); ?> </label></td>
1370
  <td>
1371
+ <input type="radio" name="image_enable_page" id="image_enable_page_yes" value="1" <?php if ($row->image_enable_page) echo 'checked="checked"'; ?> /><label for="image_enable_page_yes"><?php _e("Yes", 'bwg_back'); ?></label>
1372
+ <input type="radio" name="image_enable_page" id="image_enable_page_no" value="0" <?php if (!$row->image_enable_page) echo 'checked="checked"'; ?> /><label for="image_enable_page_no"><?php _e("No", 'bwg_back'); ?></label>
1373
  <div class="spider_description"></div>
1374
  </td>
1375
  </tr>
1376
  <tr>
1377
+ <td class="spider_label_options"><label><?php _e("Thumbnail click action:", 'bwg_back'); ?> </label></td>
1378
  <td>
1379
+ <input type="radio" name="thumb_click_action" id="thumb_click_action_1" value="open_lightbox" <?php if ($row->thumb_click_action == 'open_lightbox') echo 'checked="checked"'; ?> onClick="bwg_enable_disable('none', 'tr_thumb_link_target', 'thumb_click_action_1')" /><label for="thumb_click_action_1"><?php _e("Open lightbox", 'bwg_back'); ?></label>
1380
+ <input type="radio" name="thumb_click_action" id="thumb_click_action_2" value="redirect_to_url" <?php if ($row->thumb_click_action == 'redirect_to_url') echo 'checked="checked"'; ?> onClick="bwg_enable_disable('', 'tr_thumb_link_target', 'thumb_click_action_2')" /><label for="thumb_click_action_2"><?php _e("Redirect to url", 'bwg_back'); ?></label>
1381
+ <input type="radio" name="thumb_click_action" id="thumb_click_action_3" value="do_nothing" <?php if ($row->thumb_click_action == 'do_nothing') echo 'checked="checked"'; ?> onClick="bwg_enable_disable('none', 'tr_thumb_link_target', 'thumb_click_action_3')" /><label for="thumb_click_action_3"><?php _e("Do Nothing", 'bwg_back'); ?></label>
1382
  <div class="spider_description"></div>
1383
  </td>
1384
  </tr>
1385
  <tr id="tr_thumb_link_target">
1386
+ <td class="spider_label_options"><label><?php _e("Open in a new window:", 'bwg_back'); ?> </label></td>
1387
  <td>
1388
+ <input type="radio" name="thumb_link_target" id="thumb_link_target_yes" value="1" <?php if ($row->thumb_link_target) echo 'checked="checked"'; ?> /><label for="thumb_link_target_yes"><?php _e("Yes", 'bwg_back'); ?></label>
1389
+ <input type="radio" name="thumb_link_target" id="thumb_link_target_no" value="0" <?php if (!$row->thumb_link_target) echo 'checked="checked"'; ?> /><label for="thumb_link_target_no"><?php _e("No", 'bwg_back'); ?></label>
1390
  <div class="spider_description"></div>
1391
  </td>
1392
  </tr>
1393
  <tr>
1394
+ <td class="spider_label_options"><label><?php _e("Play icon over the video thumbnail:", 'bwg_back'); ?> </label></td>
1395
  <td>
1396
+ <input type="radio" name="play_icon" id="play_icon_yes" value="1" <?php if ($row->play_icon) echo 'checked="checked"'; ?> /><label for="play_icon_yes"><?php _e("Yes", 'bwg_back'); ?></label>
1397
+ <input type="radio" name="play_icon" id="play_icon_no" value="0" <?php if (!$row->play_icon) echo 'checked="checked"'; ?> /><label for="play_icon_no"><?php _e("No", 'bwg_back'); ?></label>
1398
  <div class="spider_description"></div>
1399
  </td>
1400
  </tr>
1408
  <tbody>
1409
  <tr>
1410
  <td class="spider_label_options">
1411
+ <label><?php _e("Enable image title for Image Browser view:", 'bwg_back'); ?></label>
1412
  </td>
1413
  <td>
1414
+ <input type="radio" name="image_browser_title_enable" id="image_browser_title_enable_1" value="1" <?php if ($row->image_browser_title_enable) echo 'checked="checked"'; ?> /><label for="image_browser_title_enable_1"><?php _e("Yes", 'bwg_back'); ?></label>
1415
+ <input type="radio" name="image_browser_title_enable" id="image_browser_title_enable_0" value="0" <?php if (!$row->image_browser_title_enable) echo 'checked="checked"'; ?> /><label for="image_browser_title_enable_0"><?php _e("No", 'bwg_back'); ?></label>
1416
  <div class="spider_description"></div>
1417
  </td>
1418
  </tr>
1419
  <tr>
1420
  <td class="spider_label_options">
1421
+ <label><?php _e("Enable image description for Image Browser view:", 'bwg_back'); ?></label>
1422
  </td>
1423
  <td>
1424
+ <input type="radio" name="image_browser_description_enable" id="image_browser_description_enable_1" value="1" <?php if ($row->image_browser_description_enable) echo 'checked="checked"'; ?> /><label for="image_browser_description_enable_1"><?php _e("Yes", 'bwg_back'); ?></label>
1425
+ <input type="radio" name="image_browser_description_enable" id="image_browser_description_enable_0" value="0" <?php if (!$row->image_browser_description_enable) echo 'checked="checked"'; ?> /><label for="image_browser_description_enable_0"><?php _e("No", 'bwg_back'); ?></label>
1426
  <div class="spider_description"></div>
1427
  </td>
1428
  </tr>
1429
  <tr>
1430
  <td class="spider_label_options">
1431
+ <label for="image_browser_width"><?php _e("Image width for Image Browser view:", 'bwg_back'); ?></label>
1432
  </td>
1433
  <td>
1434
  <input type="text" name="image_browser_width" id="image_browser_width" value="<?php echo $row->image_browser_width; ?>" class="spider_int_input" /> px
1437
  </tr>
1438
  <tr>
1439
  <td colspan="2">
1440
+ <div style="margin: 0;" class="spider_description spider_free_version"><?php _e("The Blog Style view is disabled in free version.", 'bwg_back'); ?></div>
1441
  </td>
1442
  </tr>
1443
  <tr>
1444
  <td class="spider_label_options spider_free_version_label">
1445
+ <label><?php _e("Enable image title for Blog Style view:", 'bwg_back'); ?></label>
1446
  </td>
1447
  <td class="spider_free_version_label">
1448
+ <input disabled="disabled" type="radio" name="blog_style_title_enable" id="blog_style_title_enable_1" value="1" <?php if ($row->blog_style_title_enable) echo 'checked="checked"'; ?> /><label for="blog_style_title_enable_1"><?php _e("Yes", 'bwg_back'); ?></label>
1449
+ <input disabled="disabled" type="radio" name="blog_style_title_enable" id="blog_style_title_enable_0" value="0" <?php if (!$row->blog_style_title_enable) echo 'checked="checked"'; ?> /><label for="blog_style_title_enable_0"><?php _e("No", 'bwg_back'); ?></label>
1450
  <div class="spider_description"></div>
1451
  </td>
1452
  </tr>
1453
  <tr>
1454
  <td class="spider_label_options spider_free_version_label">
1455
+ <label for="blog_style_width"><?php _e("Image width for Blog Style view:", 'bwg_back'); ?></label>
1456
  </td>
1457
  <td class="spider_free_version_label">
1458
  <input disabled="disabled" type="text" name="blog_style_width" id="blog_style_width" value="<?php echo $row->blog_style_width; ?>" class="spider_int_input spider_free_version_label" /> px
1461
  </tr>
1462
  <tr>
1463
  <td class="spider_label_options spider_free_version_label">
1464
+ <label for="blog_style_images_per_page"><?php _e("Images per page in Blog Style view:", 'bwg_back'); ?></label>
1465
  </td>
1466
  <td class="spider_free_version_label">
1467
  <input disabled="disabled" type="text" name="blog_style_images_per_page" id="blog_style_images_per_page" value="<?php echo $row->blog_style_images_per_page; ?>" class="spider_int_input spider_free_version_label" />
1470
  </tr>
1471
  <tr>
1472
  <td class="spider_label_options spider_free_version_label">
1473
+ <label><?php _e("Enable pagination for Blog Style view:", 'bwg_back'); ?></label>
1474
  </td>
1475
  <td class="spider_free_version_label">
1476
+ <input disabled="disabled" type="radio" name="blog_style_enable_page" id="blog_style_enable_page_1" value="1" <?php if ($row->blog_style_enable_page) echo 'checked="checked"'; ?> /><label for="blog_style_enable_page_1"><?php _e("Yes", 'bwg_back'); ?></label>
1477
+ <input disabled="disabled" type="radio" name="blog_style_enable_page" id="blog_style_enable_page_0" value="0" <?php if (!$row->blog_style_enable_page) echo 'checked="checked"'; ?> /><label for="blog_style_enable_page_0"><?php _e("No", 'bwg_back'); ?></label>
1478
  <div class="spider_description"></div>
1479
  </td>
1480
  </tr>
1487
  <tbody>
1488
  <tr>
1489
  <td class="spider_label_options spider_free_version_label">
1490
+ <label ><?php _e("Gallery autoupdate interval:", 'bwg_back'); ?></label>
1491
  </td>
1492
  <td class="spider_free_version_label">
1493
  <input type="number" disabled="disabled" id="autoupdate_interval_hour" class="spider_int_input" min="0" max="24" value="0" />
1494
+ <?php _e("hour", 'bwg_back'); ?>
1495
  <input type="number" disabled="disabled" id="autoupdate_interval_min" class="spider_int_input" min="0" max="59" value="30" />
1496
+ <?php _e("min", 'bwg_back'); ?>
1497
+ <div class="spider_description spider_free_version"><?php _e("Autoupdatable galleries are disabled in free version.", 'bwg_back'); ?></div>
1498
  </td>
1499
  </tr>
1500
 
1504
  </td>
1505
  <td class="spider_free_version_label">
1506
  <input id="instagram_client_id" type="text" disabled="disabled" style="display:inline-block; width:100%;" value="" />
1507
+ <div class="spider_description spider_free_version">Instagram <?php _e("galleries are disabled in free version.", 'bwg_back'); ?></div>
1508
  </td>
1509
  </tr>
1510
  </tbody>
1520
  <tbody>
1521
  <tr>
1522
  <td class="spider_label_options spider_free_version_label">
1523
+ <label for="carousel_interval"><?php _e("Time interval:", 'bwg_back'); ?> </label>
1524
  </td>
1525
  <td class="spider_free_version_label">
1526
  <input type="text" disabled="disabled" name="carousel_interval" id="carousel_interval" value="<?php echo $row->carousel_interval; ?>" class="spider_int_input" /> sec.
1529
  </tr>
1530
  <tr>
1531
  <td class="spider_label_options spider_free_version_label">
1532
+ <label for="carousel_image_column_number"><?php _e("Max. number of images:", 'bwg_back'); ?> </label>
1533
  </td>
1534
  <td class="spider_free_version_label">
1535
  <input type="text" disabled="disabled" name="carousel_image_column_number" id="carousel_image_column_number" value="<?php echo $row->carousel_image_column_number; ?>" class="spider_int_input" /> sec.
1538
  </tr>
1539
  <tr>
1540
  <td class="spider_label_options spider_free_version_label">
1541
+ <label for="carousel_image_par"><?php _e("Carousel image ratio:", 'bwg_back'); ?> </label>
1542
  </td>
1543
  <td class="spider_free_version_label">
1544
  <input type="text" disabled="disabled" name="carousel_image_par" id="carousel_image_par" value="<?php echo $row->carousel_image_par; ?>" />
1547
  </tr>
1548
  <tr>
1549
  <td class="spider_label_options spider_free_version_label">
1550
+ <label for="carousel_width"><?php _e("Image dimensions:", 'bwg_back'); ?> </label>
1551
  </td>
1552
  <td class="spider_free_version_label">
1553
  <input type="text" disabled="disabled" name="carousel_width" id="carousel_width" value="<?php echo $row->carousel_width; ?>" class="spider_int_input" /> x
1557
  </tr>
1558
  <tr>
1559
  <td class="spider_label_options spider_free_version_label">
1560
+ <label for="carousel_r_width"><?php _e("Fixed width:", 'bwg_back'); ?> </label>
1561
  </td>
1562
  <td class="spider_free_version_label">
1563
  <input type="text" disabled="disabled" name="carousel_r_width" id="carousel_r_width" value="<?php echo $row->carousel_r_width; ?>" class="spider_int_input" /> px
1570
  <table style="width: 100%; display: inline-table;">
1571
  <tbody>
1572
  <tr>
1573
+ <td class="spider_label_options spider_free_version_label"><label><?php _e("Enable image title:", 'bwg_back'); ?> </label></td>
1574
  <td class="spider_free_version_label">
1575
+ <input type="radio" disabled="disabled" name="carousel_enable_title" id="carousel_enable_title_yes" value="1" <?php if ($row->carousel_enable_title) echo 'checked="checked"'; ?> onClick="bwg_enable_disable('', 'tr_carousel_title_position', 'carousel_enable_title_yes')" /><label for="carousel_enable_title_yes"><?php _e("Yes", 'bwg_back'); ?></label>
1576
+ <input type="radio" disabled="disabled" name="carousel_enable_title" id="carousel_enable_title_no" value="0" <?php if (!$row->carousel_enable_title) echo 'checked="checked"'; ?> onClick="bwg_enable_disable('none', 'tr_carousel_title_position', 'carousel_enable_title_no')" /><label for="carousel_enable_title_no"><?php _e("No", 'bwg_back'); ?></label>
1577
  <div class="spider_description"></div>
1578
  </td>
1579
  </tr>
1580
  <tr>
1581
  <td class="spider_label_options spider_free_version_label">
1582
+ <label><?php _e("Enable autoplay:", 'bwg_back'); ?> </label>
1583
  </td>
1584
  <td class="spider_free_version_label">
1585
+ <input type="radio" disabled="disabled" name="carousel_enable_autoplay" id="carousel_enable_autoplay_yes" value="1" <?php if ($row->carousel_enable_autoplay) echo 'checked="checked"'; ?> /><label for="carousel_enable_autoplay_yes"><?php _e("Yes", 'bwg_back'); ?></label>
1586
+ <input type="radio" disabled="disabled" name="carousel_enable_autoplay" id="carousel_enable_autoplay_no" value="0" <?php if (!$row->carousel_enable_autoplay) echo 'checked="checked"'; ?> /><label for="carousel_enable_autoplay_no"><?php _e("No", 'bwg_back'); ?></label>
1587
  <div class="spider_description"></div>
1588
  </td>
1589
  </tr>
1590
  <tr>
1591
  <td class="spider_label_options spider_free_version_label">
1592
+ <label> <?php _e("Container fit:", 'bwg_back'); ?> </label>
1593
  </td>
1594
  <td class="spider_free_version_label">
1595
+ <input type="radio" disabled="disabled" name="carousel_fit_containerWidth" id="carousel_fit_containerWidth_yes" value="1" <?php if ($row->carousel_fit_containerWidth) echo 'checked="checked"'; ?> /><label for="carousel_fit_containerWidth_yes"><?php _e("Yes", 'bwg_back'); ?></label>
1596
+ <input type="radio" disabled="disabled" name="carousel_fit_containerWidth" id="carousel_fit_containerWidth_no" value="0" <?php if (!$row->carousel_fit_containerWidth) echo 'checked="checked"'; ?> /><label for="carousel_fit_containerWidth_no"><?php _e("No", 'bwg_back'); ?></label>
1597
  <div class="spider_description"></div>
1598
  </td>
1599
  </tr>
1600
  <tr>
1601
  <td class="spider_label_options spider_free_version_label">
1602
+ <label> <?php _e("Next/Previous buttons:", 'bwg_back'); ?> </label>
1603
  </td>
1604
  <td class="spider_free_version_label">
1605
+ <input type="radio" disabled="disabled" name="carousel_prev_next_butt" id="carousel_prev_next_butt_yes" value="1" <?php if ($row->carousel_prev_next_butt) echo 'checked="checked"'; ?> /><label for="carousel_prev_next_butt_yes"><?php _e("Yes", 'bwg_back'); ?></label>
1606
+ <input type="radio" disabled="disabled" name="carousel_prev_next_butt" id="carousel_prev_next_butt_no" value="0" <?php if (!$row->carousel_prev_next_butt) echo 'checked="checked"'; ?> /><label for="carousel_prev_next_butt_no"><?php _e("No", 'bwg_back'); ?></label>
1607
  <div class="spider_description"></div>
1608
  </td>
1609
  </tr>
1610
  <tr>
1611
  <td class="spider_label_options spider_free_version_label">
1612
+ <label> <?php _e("Play/Pause button:", 'bwg_back'); ?> </label>
1613
  </td>
1614
  <td class="spider_free_version_label">
1615
+ <input type="radio" disabled="disabled" name="carousel_play_pause_butt" id="carousel_play_pause_butt_yes" value="1" <?php if ($row->carousel_play_pause_butt) echo 'checked="checked"'; ?> /><label for="carousel_play_pause_butt_yes"><?php _e("Yes", 'bwg_back'); ?></label>
1616
+ <input type="radio" disabled="disabled" name="carousel_play_pause_butt" id="carousel_play_pause_butt_no" value="0" <?php if (!$row->carousel_play_pause_butt) echo 'checked="checked"'; ?> /><label for="carousel_play_pause_butt_no"><?php _e("No", 'bwg_back'); ?></label>
1617
  <div class="spider_description"></div>
1618
  </td>
1619
  </tr>
1622
  </td>
1623
  </tr>
1624
  </table>
1625
+ <div class="spider_description spider_free_version"><?php _e("Carousel view is disabled in free version.", 'bwg_back'); ?></div>
1626
  </div>
1627
 
1628
  </div>
admin/views/BWGViewTags_bwg.php CHANGED
@@ -40,8 +40,8 @@ class BWGViewTags_bwg {
40
  </script>
41
  <div style="clear: both; float: left; width: 99%;">
42
  <div style="float:left; font-size: 14px; font-weight: bold;">
43
- This section allows you to create, edit and delete tags.
44
- <a style="color: blue; text-decoration: none;" target="_blank" href="https://web-dorado.com/wordpress-gallery-guide-step-3.html">Read More in User Manual</a>
45
  </div>
46
  <div style="float: right; text-align: right;">
47
  <a style="text-decoration: none;" target="_blank" href="https://web-dorado.com/files/fromPhotoGallery.php">
@@ -49,18 +49,18 @@ class BWGViewTags_bwg {
49
  </a>
50
  </div>
51
  </div>
52
- <div id="wordpress_message_1" style="width:99%;display:none"><div id="wordpress_message_2" class="updated"><p><strong>Item Succesfully Saved.</strong></p></div></div>
53
  <form class="wrap" id="tags_form" method="post" action="admin.php?page=tags_bwg" style="float:left; width: 99%;">
54
  <?php wp_nonce_field( 'tags_bwg', 'bwg_nonce' ); ?>
55
  <span class="tag_icon"></span>
56
- <h2>Tags</h2>
57
  <div class="buttons_div">
58
- <input class="button-secondary" type="submit" value="Save" onclick="if (confirm('Do you want to save items?')){
59
  spider_set_input_value('task', 'edit_tags');
60
  } else {
61
  return false;
62
  }" />
63
- <input class="button-secondary" type="submit" value="Delete" onclick="if (confirm('Do you want to delete selected items?')) {
64
  spider_set_input_value('task', 'delete_all');
65
  } else {
66
  return false;
@@ -68,7 +68,7 @@ class BWGViewTags_bwg {
68
  </div>
69
  <div class="tablenav top">
70
  <?php
71
- WDWLibrary::search('Name', $search_value, 'tags_form');
72
  WDWLibrary::html_page_nav($page_nav['total'], $pager++, $page_nav['limit'], 'tags_form', $per_page);
73
  ?>
74
  </div>
@@ -88,7 +88,7 @@ class BWGViewTags_bwg {
88
  spider_set_input_value('order_by', 'A.name');
89
  spider_set_input_value('asc_or_desc', '<?php echo ((isset($_POST['asc_or_desc']) && isset($_POST['order_by']) && (esc_html(stripslashes($_POST['order_by'])) == 'A.name') && esc_html(stripslashes($_POST['asc_or_desc'])) == 'asc') ? 'desc' : 'asc'); ?>');
90
  spider_form_submit(event, 'tags_form')" href="">
91
- <span>Name</span><span class="sorting-indicator"></span>
92
  </a>
93
  </th>
94
  <th class="<?php if ($order_by == 'A.slug') {echo $order_class;} ?>">
@@ -96,7 +96,7 @@ class BWGViewTags_bwg {
96
  spider_set_input_value('order_by', 'A.slug');
97
  spider_set_input_value('asc_or_desc', '<?php echo ((isset($_POST['asc_or_desc']) && isset($_POST['order_by']) && (esc_html(stripslashes($_POST['order_by'])) == 'A.slug') && esc_html(stripslashes($_POST['asc_or_desc'])) == 'asc') ? 'desc' : 'asc'); ?>');
98
  spider_form_submit(event, 'tags_form')" href="">
99
- <span>Slug</span><span class="sorting-indicator"></span>
100
  </a>
101
  </th>
102
  <th class="<?php if ($order_by == 'B.count') {echo $order_class;} ?> table_big_col ">
@@ -104,11 +104,11 @@ class BWGViewTags_bwg {
104
  spider_set_input_value('order_by', 'B.count');
105
  spider_set_input_value('asc_or_desc', '<?php echo ((isset($_POST['asc_or_desc']) && isset($_POST['order_by']) && (esc_html(stripslashes($_POST['order_by'])) == 'B.count') && esc_html(stripslashes($_POST['asc_or_desc'])) == 'asc') ? 'desc' : 'asc'); ?>');
106
  spider_form_submit(event, 'tags_form')" href="">
107
- <span>Count</span><span class="sorting-indicator"></span>
108
  </a>
109
  </th>
110
- <th class="table_big_col">Edit</th>
111
- <th class="table_big_col">Delete</th>
112
  </tr>
113
  <tr id="tr">
114
  <th></th>
@@ -123,7 +123,7 @@ class BWGViewTags_bwg {
123
  <th class="table_big_col">
124
  <a class="add_tag_th button-primary button button-small" onclick="spider_set_input_value('task', 'save');
125
  spider_set_input_value('current_id', '');
126
- spider_form_submit(event, 'tags_form')" href="">Add Tag </a>
127
  </th>
128
  <th></th>
129
  </tr>
@@ -140,27 +140,27 @@ class BWGViewTags_bwg {
140
  <td id="td_name_<?php echo $row_data->term_id; ?>" >
141
  <a class="pointer" id="name<?php echo $row_data->term_id; ?>"
142
  onclick="edit_tag(<?php echo $row_data->term_id; ?>)"
143
- title="Edit"><?php echo $row_data->name; ?></a>
144
  </td>
145
  <td id="td_slug_<?php echo $row_data->term_id; ?>">
146
  <a class="pointer"
147
  id="slug<?php echo $row_data->term_id; ?>"
148
  onclick="edit_tag(<?php echo $row_data->term_id; ?>)"
149
- title="Edit"><?php echo $row_data->slug; ?></a>
150
  </td>
151
  <td class="table_big_col" id="td_count_<?php echo $row_data->term_id; ?>" >
152
  <a class="pointer"
153
  id="count<?php echo $row_data->term_id; ?>"
154
  onclick="edit_tag(<?php echo $row_data->term_id; ?>)"
155
- title="Edit"><?php echo $this->model->get_count_of_images($row_data->term_id); ?></a>
156
  </td>
157
  <td class="table_big_col" id="td_edit_<?php echo $row_data->term_id; ?>">
158
- <a onclick="edit_tag(<?php echo $row_data->term_id; ?>)">Edit</a>
159
  </td>
160
  <td class="table_big_col" id="td_delete_<?php echo $row_data->term_id; ?>">
161
  <a onclick="spider_set_input_value('task', 'delete');
162
  spider_set_input_value('current_id', <?php echo $row_data->term_id; ?>);
163
- spider_form_submit(event, 'tags_form')" href="">Delete</a>
164
  </td>
165
  </tr>
166
  <?php
40
  </script>
41
  <div style="clear: both; float: left; width: 99%;">
42
  <div style="float:left; font-size: 14px; font-weight: bold;">
43
+ <?php _e("This section allows you to create, edit and delete tags.", 'bwg_back'); ?>
44
+ <a style="color: blue; text-decoration: none;" target="_blank" href="https://web-dorado.com/wordpress-gallery-guide-step-3.html"><?php _e("Read More in User Manual", 'bwg_back'); ?></a>
45
  </div>
46
  <div style="float: right; text-align: right;">
47
  <a style="text-decoration: none;" target="_blank" href="https://web-dorado.com/files/fromPhotoGallery.php">
49
  </a>
50
  </div>
51
  </div>
52
+ <div id="wordpress_message_1" style="width:99%;display:none"><div id="wordpress_message_2" class="updated"><p><strong><?php _e("Item Succesfully Saved.", 'bwg_back'); ?></strong></p></div></div>
53
  <form class="wrap" id="tags_form" method="post" action="admin.php?page=tags_bwg" style="float:left; width: 99%;">
54
  <?php wp_nonce_field( 'tags_bwg', 'bwg_nonce' ); ?>
55
  <span class="tag_icon"></span>
56
+ <h2><?php _e("Tags", 'bwg_back'); ?></h2>
57
  <div class="buttons_div">
58
+ <input class="button-secondary" type="submit" value="<?php _e("Save", 'bwg_back'); ?>" onclick="if (confirm('Do you want to save items?')){
59
  spider_set_input_value('task', 'edit_tags');
60
  } else {
61
  return false;
62
  }" />
63
+ <input class="button-secondary" type="submit" value="<?php _e("Delete", 'bwg_back'); ?>" onclick="if (confirm('Do you want to delete selected items?')) {
64
  spider_set_input_value('task', 'delete_all');
65
  } else {
66
  return false;
68
  </div>
69
  <div class="tablenav top">
70
  <?php
71
+ WDWLibrary::search(__("Name", 'bwg_back'), $search_value, 'tags_form');
72
  WDWLibrary::html_page_nav($page_nav['total'], $pager++, $page_nav['limit'], 'tags_form', $per_page);
73
  ?>
74
  </div>
88
  spider_set_input_value('order_by', 'A.name');
89
  spider_set_input_value('asc_or_desc', '<?php echo ((isset($_POST['asc_or_desc']) && isset($_POST['order_by']) && (esc_html(stripslashes($_POST['order_by'])) == 'A.name') && esc_html(stripslashes($_POST['asc_or_desc'])) == 'asc') ? 'desc' : 'asc'); ?>');
90
  spider_form_submit(event, 'tags_form')" href="">
91
+ <span><?php _e("Name", 'bwg_back'); ?></span><span class="sorting-indicator"></span>
92
  </a>
93
  </th>
94
  <th class="<?php if ($order_by == 'A.slug') {echo $order_class;} ?>">
96
  spider_set_input_value('order_by', 'A.slug');
97
  spider_set_input_value('asc_or_desc', '<?php echo ((isset($_POST['asc_or_desc']) && isset($_POST['order_by']) && (esc_html(stripslashes($_POST['order_by'])) == 'A.slug') && esc_html(stripslashes($_POST['asc_or_desc'])) == 'asc') ? 'desc' : 'asc'); ?>');
98
  spider_form_submit(event, 'tags_form')" href="">
99
+ <span><?php _e("Slug", 'bwg_back'); ?></span><span class="sorting-indicator"></span>
100
  </a>
101
  </th>
102
  <th class="<?php if ($order_by == 'B.count') {echo $order_class;} ?> table_big_col ">
104
  spider_set_input_value('order_by', 'B.count');
105
  spider_set_input_value('asc_or_desc', '<?php echo ((isset($_POST['asc_or_desc']) && isset($_POST['order_by']) && (esc_html(stripslashes($_POST['order_by'])) == 'B.count') && esc_html(stripslashes($_POST['asc_or_desc'])) == 'asc') ? 'desc' : 'asc'); ?>');
106
  spider_form_submit(event, 'tags_form')" href="">
107
+ <span><?php _e("Count", 'bwg_back'); ?></span><span class="sorting-indicator"></span>
108
  </a>
109
  </th>
110
+ <th class="table_big_col"><?php _e("Edit", 'bwg_back'); ?></th>
111
+ <th class="table_big_col"><?php _e("Delete", 'bwg_back'); ?></th>
112
  </tr>
113
  <tr id="tr">
114
  <th></th>
123
  <th class="table_big_col">
124
  <a class="add_tag_th button-primary button button-small" onclick="spider_set_input_value('task', 'save');
125
  spider_set_input_value('current_id', '');
126
+ spider_form_submit(event, 'tags_form')" href=""><?php _e("Add Tag", 'bwg_back'); ?> </a>
127
  </th>
128
  <th></th>
129
  </tr>
140
  <td id="td_name_<?php echo $row_data->term_id; ?>" >
141
  <a class="pointer" id="name<?php echo $row_data->term_id; ?>"
142
  onclick="edit_tag(<?php echo $row_data->term_id; ?>)"
143
+ title="<?php _e("Edit", 'bwg_back'); ?>"><?php echo $row_data->name; ?></a>
144
  </td>
145
  <td id="td_slug_<?php echo $row_data->term_id; ?>">
146
  <a class="pointer"
147
  id="slug<?php echo $row_data->term_id; ?>"
148
  onclick="edit_tag(<?php echo $row_data->term_id; ?>)"
149
+ title="<?php _e("Edit", 'bwg_back'); ?>"><?php echo $row_data->slug; ?></a>
150
  </td>
151
  <td class="table_big_col" id="td_count_<?php echo $row_data->term_id; ?>" >
152
  <a class="pointer"
153
  id="count<?php echo $row_data->term_id; ?>"
154
  onclick="edit_tag(<?php echo $row_data->term_id; ?>)"
155
+ title="<?php _e("Edit", 'bwg_back'); ?>"><?php echo $this->model->get_count_of_images($row_data->term_id); ?></a>
156
  </td>
157
  <td class="table_big_col" id="td_edit_<?php echo $row_data->term_id; ?>">
158
+ <a onclick="edit_tag(<?php echo $row_data->term_id; ?>)"><?php _e("Edit", 'bwg_back'); ?></a>
159
  </td>
160
  <td class="table_big_col" id="td_delete_<?php echo $row_data->term_id; ?>">
161
  <a onclick="spider_set_input_value('task', 'delete');
162
  spider_set_input_value('current_id', <?php echo $row_data->term_id; ?>);
163
+ spider_form_submit(event, 'tags_form')" href=""><?php _e("Delete", 'bwg_back'); ?></a>
164
  </td>
165
  </tr>
166
  <?php
admin/views/BWGViewThemes_bwg.php CHANGED
@@ -36,13 +36,13 @@ class BWGViewThemes_bwg {
36
  ?>
37
  <div style="clear: both; float: left; width: 99%;">
38
  <div style="float:left; font-size: 14px; font-weight: bold;">
39
- This section allows you to create, edit and delete themes.
40
- <a style="color: blue; text-decoration: none;" target="_blank" href="https://web-dorado.com/wordpress-gallery-guide-step-6/6-1.html">Read More in User Manual</a>
41
  <?php
42
  if (get_option("wd_bwg_theme_version")) {
43
  ?>
44
  <br />
45
- This feature is disabled for the non-commercial version.
46
  <?php
47
  }
48
  ?>
@@ -75,20 +75,20 @@ class BWGViewThemes_bwg {
75
  <?php wp_nonce_field( 'themes_bwg', 'bwg_nonce' ); ?>
76
  <span class="theme_icon"></span>
77
  <h2>
78
- Themes
79
  <a href="" class="add-new-h2" onclick="spider_set_input_value('task', 'add');
80
- spider_form_submit(event, 'themes_form')">Add new</a>
81
  </h2>
82
  <div class="buttons_div">
83
- <input class="button-secondary" type="submit" onclick="if (confirm('Do you want to delete selected items?')) {
84
  spider_set_input_value('task', 'delete_all');
85
  } else {
86
  return false;
87
- }" value="Delete"/>
88
  </div>
89
  <div class="tablenav top">
90
  <?php
91
- WDWLibrary::search('Title', $search_value, 'themes_form');
92
  WDWLibrary::html_page_nav($page_nav['total'], $pager++, $page_nav['limit'], 'themes_form', $per_page);
93
  ?>
94
  </div>
@@ -107,17 +107,17 @@ class BWGViewThemes_bwg {
107
  spider_set_input_value('order_by', 'name');
108
  spider_set_input_value('asc_or_desc', '<?php echo ((isset($_POST['asc_or_desc']) && isset($_POST['order_by']) && (esc_html($_POST['order_by']) == 'title') && esc_html($_POST['asc_or_desc']) == 'asc') ? 'desc' : 'asc'); ?>');
109
  spider_form_submit(event, 'themes_form')" href="">
110
- <span>Name</span><span class="sorting-indicator"></span></a>
111
  </th>
112
  <th class="table_big_col <?php if ($order_by == 'default_theme') { echo $order_class; } ?>">
113
  <a onclick="spider_set_input_value('task', '');
114
  spider_set_input_value('order_by', 'default_theme');
115
  spider_set_input_value('asc_or_desc', '<?php echo ((isset($_POST['asc_or_desc']) && isset($_POST['order_by']) && (esc_html($_POST['order_by']) == 'default_theme') && esc_html($_POST['asc_or_desc']) == 'asc') ? 'desc' : 'asc'); ?>');
116
  spider_form_submit(event, 'themes_form')" href="">
117
- <span>Default</span><span class="sorting-indicator"></span></a>
118
  </th>
119
- <th class="table_big_col">Edit</th>
120
- <th class="table_big_col">Delete</th>
121
  </thead>
122
  <tbody id="tbody_arr">
123
  <?php
@@ -135,7 +135,7 @@ class BWGViewThemes_bwg {
135
  <td>
136
  <a onclick="spider_set_input_value('task', 'edit');
137
  spider_set_input_value('current_id', '<?php echo $row_data->id; ?>');
138
- spider_form_submit(event, 'themes_form')" href="" title="Edit"><?php echo $row_data->name; ?></a>
139
  </td>
140
  <td class="table_big_col">
141
  <?php
@@ -159,12 +159,12 @@ class BWGViewThemes_bwg {
159
  <td class="table_big_col">
160
  <a onclick="spider_set_input_value('task', 'edit');
161
  spider_set_input_value('current_id', '<?php echo $row_data->id; ?>');
162
- spider_form_submit(event, 'themes_form')" href="">Edit</a>
163
  </td>
164
  <td class="table_big_col">
165
  <a onclick="spider_set_input_value('task', 'delete');
166
  spider_set_input_value('current_id', '<?php echo $row_data->id; ?>');
167
- spider_form_submit(event, 'themes_form')" href="">Delete</a>
168
  </td>
169
  </tr>
170
  <?php
@@ -193,15 +193,15 @@ class BWGViewThemes_bwg {
193
  $page_title = (($id != 0) ? 'Edit theme ' . $row->name : 'Create new theme');
194
  $current_type = WDWLibrary::get('current_type', 'Thumbnail');
195
  $border_styles = array(
196
- 'none' => 'None',
197
- 'solid' => 'Solid',
198
- 'dotted' => 'Dotted',
199
- 'dashed' => 'Dashed',
200
- 'double' => 'Double',
201
- 'groove' => 'Groove',
202
- 'ridge' => 'Ridge',
203
- 'inset' => 'Inset',
204
- 'outset' => 'Outset',
205
  );
206
  $font_families = array(
207
  'arial' => 'Arial',
@@ -216,39 +216,39 @@ class BWGViewThemes_bwg {
216
  'serif' => 'Serif',
217
  );
218
  $aligns = array(
219
- 'left' => 'Left',
220
- 'center' => 'Center',
221
- 'right' => 'Right',
222
  );
223
  $font_weights = array(
224
- 'lighter' => 'Lighter',
225
- 'normal' => 'Normal',
226
- 'bold' => 'Bold',
227
  );
228
  $hover_effects = array(
229
- 'none' => 'None',
230
- 'rotate' => 'Rotate',
231
- 'scale' => 'Scale',
232
- 'skew' => 'Skew',
233
  );
234
  $button_styles = array(
235
- 'fa-chevron' => 'Chevron',
236
- 'fa-angle' => 'Angle',
237
- 'fa-angle-double' => 'Double',
238
  );
239
  $rate_icons = array(
240
- 'star' => 'Star',
241
- 'bell' => 'Bell',
242
- 'circle' => 'Circle',
243
- 'flag' => 'Flag',
244
- 'heart' => 'Heart',
245
- 'square' => 'Square',
246
  );
247
  ?>
248
  <div style="clear: both; float: left; width: 99%;">
249
  <div style="float:left; font-size: 14px; font-weight: bold;">
250
- This section allows you to add/edit theme.
251
- <a style="color: blue; text-decoration: none;" target="_blank" href="https://web-dorado.com/wordpress-gallery-guide-step-6/6-1.html">Read More in User Manual</a>
252
  </div>
253
  <div style="float: right; text-align: right;">
254
  <a style="text-decoration: none;" target="_blank" href="https://web-dorado.com/files/fromPhotoGallery.php">
@@ -261,36 +261,36 @@ class BWGViewThemes_bwg {
261
  <span class="theme_icon"></span>
262
  <h2><?php echo $page_title; ?></h2>
263
  <div style="float: right; margin: 0 5px 0 0;">
264
- <input class="button-secondary" type="submit" onclick="if (spider_check_required('name', 'Name')) {return false;}; spider_set_input_value('task', 'save')" value="Save"/>
265
- <input class="button-secondary" type="submit" onclick="if (spider_check_required('name', 'Name')) {return false;}; spider_set_input_value('task', 'apply')" value="Apply"/>
266
- <input class="button-secondary" type="submit" onclick="spider_set_input_value('task', 'cancel')" value="Cancel"/>
267
- <input title="Reset to default theme" class="button-primary" type="submit" onclick="if (confirm('Do you want to reset to default?')) {
268
  spider_set_input_value('task', 'reset');
269
  } else {
270
  return false;
271
- }" value="Reset"/>
272
  </div>
273
  <div style="float: left; margin: 10px 0 0; display: none;" id="type_menu">
274
- <div id="type_Thumbnail" class="theme_type" onclick="bwg_change_theme_type('Thumbnail')">Thumbnails</div>
275
- <div id="type_Masonry" class="theme_type" style="opacity: 0.4; filter: Alpha(opacity=40);" title="This tab is disabled in free version">Masonry</div>
276
- <div id="type_Mosaic" class="theme_type" style="opacity: 0.4; filter: Alpha(opacity=40);" title="This tab is disabled in free version">Mosaic</div>
277
- <div id="type_Slideshow" class="theme_type" onclick="bwg_change_theme_type('Slideshow')">Slideshow</div>
278
- <div id="type_Image_browser" class="theme_type" onclick="bwg_change_theme_type('Image_browser')">Image Browser</div>
279
- <div id="type_Compact_album" class="theme_type" onclick="bwg_change_theme_type('Compact_album')">Compact Album</div>
280
- <div id="type_Masonry_album" class="theme_type" style="opacity: 0.4; filter: Alpha(opacity=40);" title="This tab is disabled in free version">Masonry Album</div>
281
- <div id="type_Extended_album" class="theme_type" onclick="bwg_change_theme_type('Extended_album')">Extended Album</div>
282
- <div id="type_Blog_style" class="theme_type" style="opacity: 0.4; filter: Alpha(opacity=40);" title="This tab is disabled in free version">Blog Style</div>
283
- <div id="type_Lightbox" class="theme_type" onclick="bwg_change_theme_type('Lightbox')">Lightbox</div>
284
- <div id="type_Navigation" class="theme_type" onclick="bwg_change_theme_type('Navigation')">Page Navigation</div>
285
- <div id="type_Carousel" class="theme_type" style="opacity: 0.4; filter: Alpha(opacity=40);" title="This tab is disabled in free version">Carousel</div>
286
  <input type="hidden" id="current_type" name="current_type" value="<?php echo $current_type; ?>" />
287
  </div>
288
  <fieldset class="spider_fieldset">
289
- <legend>Parameters</legend>
290
  <table style="clear:both;">
291
  <tbody>
292
  <tr>
293
- <td class="spider_label"><label for="name">Name: <span style="color:#FF0000;"> * </span> </label></td>
294
  <td><input type="text" id="name" name="name" value="<?php echo $row->name; ?>" class="spider_text_input"/></td>
295
  </tr>
296
  </tbody>
@@ -301,31 +301,31 @@ class BWGViewThemes_bwg {
301
  <table style="clear:both;">
302
  <tbody>
303
  <tr>
304
- <td class="spider_label"><label for="thumb_margin">Margin: </label></td>
305
  <td>
306
  <input type="text" name="thumb_margin" id="thumb_margin" value="<?php echo $row->thumb_margin; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
307
  </td>
308
  </tr>
309
  <tr>
310
- <td class="spider_label"><label for="thumb_padding">Padding: </label></td>
311
  <td>
312
  <input type="text" name="thumb_padding" id="thumb_padding" value="<?php echo $row->thumb_padding; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
313
  </td>
314
  </tr>
315
  <tr>
316
- <td class="spider_label"><label for="thumb_border_width">Border width: </label></td>
317
  <td>
318
  <input type="text" name="thumb_border_width" id="thumb_border_width" value="<?php echo $row->thumb_border_width; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
319
  </td>
320
  </tr>
321
  <tr>
322
- <td class="spider_label"><label for="thumb_border_style">Border style: </label></td>
323
  <td>
324
  <select name="thumb_border_style" id="thumb_border_style">
325
  <?php
326
  foreach ($border_styles as $key => $border_style) {
327
  ?>
328
- <option value="<?php echo $key; ?>" <?php echo (($row->thumb_border_style == $key) ? 'selected="selected"' : ''); ?>><?php echo $border_style; ?></option>
329
  <?php
330
  }
331
  ?>
@@ -333,33 +333,33 @@ class BWGViewThemes_bwg {
333
  </td>
334
  </tr>
335
  <tr>
336
- <td class="spider_label"><label for="thumb_border_color">Border color:</label></td>
337
  <td>
338
  <input type="text" name="thumb_border_color" id="thumb_border_color" value="<?php echo $row->thumb_border_color; ?>" class="color"/>
339
  </td>
340
  </tr>
341
  <tr>
342
- <td class="spider_label"><label for="thumb_border_radius">Border radius: </label></td>
343
  <td>
344
  <input type="text" name="thumb_border_radius" id="thumb_border_radius" value="<?php echo $row->thumb_border_radius; ?>" class="spider_char_input" />
345
- <div class="spider_description">Use CSS type values.</div>
346
  </td>
347
  </tr>
348
  <tr>
349
- <td class="spider_label"><label for="thumb_box_shadow">Shadow: </label></td>
350
  <td>
351
  <input type="text" name="thumb_box_shadow" id="thumb_box_shadow" value="<?php echo $row->thumb_box_shadow; ?>" class="spider_box_input" />
352
- <div class="spider_description">Use CSS type values.</div>
353
  </td>
354
  </tr>
355
  <tr>
356
- <td class="spider_label"><label for="thumb_hover_effect">Hover effect: </label></td>
357
  <td>
358
  <select name="thumb_hover_effect" id="thumb_hover_effect" class="spider_int_input">
359
  <?php
360
  foreach ($hover_effects as $key => $hover_effect) {
361
  ?>
362
- <option value="<?php echo $key; ?>" <?php echo (($row->thumb_hover_effect == $key) ? 'selected="selected"' : ''); ?>><?php echo $hover_effect; ?></option>
363
  <?php
364
  }
365
  ?>
@@ -367,19 +367,19 @@ class BWGViewThemes_bwg {
367
  </td>
368
  </tr>
369
  <tr>
370
- <td class="spider_label"><label for="thumb_hover_effect_value">Hover effect value: </label></td>
371
  <td>
372
  <input type="text" name="thumb_hover_effect_value" id="thumb_hover_effect_value" value="<?php echo $row->thumb_hover_effect_value; ?>" class="spider_char_input"/>
373
- <div class="spider_description">E.g. Rotate: 10deg, Scale: 1.5, Skew: 10deg.</div>
374
  </td>
375
  </tr>
376
  <tr>
377
- <td class="spider_label"><label>Transition: </label></td>
378
  <td id="thumb_transition">
379
  <input type="radio" name="thumb_transition" id="thumb_transition1" value="1"<?php if ($row->thumb_transition == 1) echo 'checked="checked"'; ?> />
380
- <label for="thumb_transition1" id="thumb_transition1_lbl">Yes</label>
381
  <input type="radio" name="thumb_transition" id="thumb_transition0" value="0"<?php if ($row->thumb_transition == 0) echo 'checked="checked"'; ?> />
382
- <label for="thumb_transition0" id="thumb_transition0_lbl">No</label>
383
  </td>
384
  </tr>
385
  </tbody>
@@ -390,40 +390,40 @@ class BWGViewThemes_bwg {
390
  <tbody>
391
  <tr>
392
  <td class="spider_label">
393
- <label for="thumb_bg_color">Thumbnail background color: </label>
394
  </td>
395
  <td>
396
  <input type="text" name="thumb_bg_color" id="thumb_bg_color" value="<?php echo $row->thumb_bg_color; ?>" class="color"/>
397
  </td>
398
  </tr>
399
  <tr>
400
- <td class="spider_label"><label for="thumb_transparent">Thumbnail transparency: </label></td>
401
  <td>
402
  <input type="text" name="thumb_transparent" id="thumb_transparent" value="<?php echo $row->thumb_transparent; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> %
403
- <div class="spider_description">Value must be between 0 to 100.</div>
404
  </td>
405
  </tr>
406
  <tr>
407
- <td class="spider_label"><label for="thumbs_bg_color">Full background color: </label></td>
408
  <td>
409
  <input type="text" name="thumbs_bg_color" id="thumbs_bg_color" value="<?php echo $row->thumbs_bg_color; ?>" class="color"/>
410
  </td>
411
  </tr>
412
  <tr>
413
- <td class="spider_label"><label for="thumb_bg_transparent">Full background transparency: </label></td>
414
  <td>
415
  <input type="text" name="thumb_bg_transparent" id="thumb_bg_transparent" value="<?php echo $row->thumb_bg_transparent; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> %
416
- <div class="spider_description">Value must be between 0 to 100.</div>
417
  </td>
418
  </tr>
419
  <tr>
420
- <td class="spider_label"><label for="thumb_align">Alignment: </label></td>
421
  <td>
422
  <select name="thumb_align" id="thumb_align">
423
  <?php
424
  foreach ($aligns as $key => $align) {
425
  ?>
426
- <option value="<?php echo $key; ?>" <?php echo (($row->thumb_align == $key) ? 'selected="selected"' : ''); ?>><?php echo $align; ?></option>
427
  <?php
428
  }
429
  ?>
@@ -437,28 +437,28 @@ class BWGViewThemes_bwg {
437
  <table style="clear:both;">
438
  <tbody>
439
  <tr>
440
- <td class="spider_label"><label>Title position: </label></td>
441
  <td>
442
  <input type="radio" name="thumb_title_pos" id="thumb_title_pos1" value="top" <?php if ($row->thumb_title_pos == "top") echo 'checked="checked"'; ?> />
443
- <label for="thumb_title_pos1" id="thumb_title_pos1_lbl">Top</label>
444
  <input type="radio" name="thumb_title_pos" id="thumb_title_pos0" value="bottom" <?php if ($row->thumb_title_pos == "bottom") echo 'checked="checked"'; ?> />
445
- <label for="thumb_title_pos0" id="thumb_title_pos0_lbl">Bottom</label>
446
  </td>
447
  </tr>
448
  <tr>
449
- <td class="spider_label"><label for="thumb_title_font_size">Title font size: </label></td>
450
  <td>
451
  <input type="text" name="thumb_title_font_size" id="thumb_title_font_size" value="<?php echo $row->thumb_title_font_size; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
452
  </td>
453
  </tr>
454
  <tr>
455
- <td class="spider_label"><label for="thumb_title_font_color">Title font color: </label></td>
456
  <td>
457
  <input type="text" name="thumb_title_font_color" id="thumb_title_font_color" value="<?php echo $row->thumb_title_font_color; ?>" class="color" />
458
  </td>
459
  </tr>
460
  <tr>
461
- <td class="spider_label"><label for="thumb_title_font_style">Title font family: </label></td>
462
  <td>
463
  <select name="thumb_title_font_style" id="thumb_title_font_style">
464
  <?php
@@ -472,13 +472,13 @@ class BWGViewThemes_bwg {
472
  </td>
473
  </tr>
474
  <tr>
475
- <td class="spider_label"><label for="thumb_title_font_weight">Title font weight: </label></td>
476
  <td>
477
  <select name="thumb_title_font_weight" id="thumb_title_font_weight">
478
  <?php
479
  foreach ($font_weights as $key => $font_weight) {
480
  ?>
481
- <option value="<?php echo $key; ?>" <?php echo (($row->thumb_title_font_weight == $key) ? 'selected="selected"' : ''); ?>><?php echo $font_weight; ?></option>
482
  <?php
483
  }
484
  ?>
@@ -486,17 +486,17 @@ class BWGViewThemes_bwg {
486
  </td>
487
  </tr>
488
  <tr>
489
- <td class="spider_label"><label for="thumb_title_shadow">Title box shadow: </label></td>
490
  <td>
491
  <input type="text" name="thumb_title_shadow" id="thumb_title_shadow" value="<?php echo $row->thumb_title_shadow; ?>" class="spider_box_input" />
492
- <div class="spider_description">Use CSS type values.</div>
493
  </td>
494
  </tr>
495
  <tr>
496
- <td class="spider_label"><label for="thumb_title_margin">Title margin: </label></td>
497
  <td>
498
  <input type="text" name="thumb_title_margin" id="thumb_title_margin" value="<?php echo $row->thumb_title_margin; ?>" class="spider_char_input" />
499
- <div class="spider_description">Use CSS type values.</div>
500
  </td>
501
  </tr>
502
  </tbody>
@@ -509,25 +509,25 @@ class BWGViewThemes_bwg {
509
  <table style="clear:both;">
510
  <tbody>
511
  <tr>
512
- <td class="spider_label"><label for="masonry_thumb_padding">Padding: </label></td>
513
  <td>
514
  <input type="text" name="masonry_thumb_padding" id="masonry_thumb_padding" value="<?php echo $row->masonry_thumb_padding; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
515
  </td>
516
  </tr>
517
  <tr>
518
- <td class="spider_label"><label for="masonry_thumb_border_width">Border width: </label></td>
519
  <td>
520
  <input type="text" name="masonry_thumb_border_width" id="masonry_thumb_border_width" value="<?php echo $row->masonry_thumb_border_width; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
521
  </td>
522
  </tr>
523
  <tr>
524
- <td class="spider_label"><label for="masonry_thumb_border_style">Border style: </label></td>
525
  <td>
526
  <select name="masonry_thumb_border_style" id="masonry_thumb_border_style">
527
  <?php
528
  foreach ($border_styles as $key => $border_style) {
529
  ?>
530
- <option value="<?php echo $key; ?>" <?php echo (($row->masonry_thumb_border_style == $key) ? 'selected="selected"' : ''); ?>><?php echo $border_style; ?></option>
531
  <?php
532
  }
533
  ?>
@@ -535,16 +535,16 @@ class BWGViewThemes_bwg {
535
  </td>
536
  </tr>
537
  <tr>
538
- <td class="spider_label"><label for="masonry_thumb_border_color">Border color: </label></td>
539
  <td>
540
  <input type="text" name="masonry_thumb_border_color" id="masonry_thumb_border_color" value="<?php echo $row->masonry_thumb_border_color; ?>" class="color" />
541
  </td>
542
  </tr>
543
  <tr>
544
- <td class="spider_label"><label for="masonry_thumb_border_radius">Border radius: </label></td>
545
  <td>
546
  <input type="text" name="masonry_thumb_border_radius" id="masonry_thumb_border_radius" value="<?php echo $row->masonry_thumb_border_radius; ?>" class="spider_char_input" />
547
- <div class="spider_description">Use CSS type values.</div>
548
  </td>
549
  </tr>
550
  </tbody>
@@ -554,33 +554,33 @@ class BWGViewThemes_bwg {
554
  <table style="clear:both;">
555
  <tbody>
556
  <tr>
557
- <td class="spider_label"><label for="masonry_thumb_transparent">Transparency: </label></td>
558
  <td>
559
  <input type="text" name="masonry_thumb_transparent" id="masonry_thumb_transparent" value="<?php echo $row->masonry_thumb_transparent; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> %
560
- <div class="spider_description">Value must be between 0 to 100.</div>
561
  </td>
562
  </tr>
563
  <tr>
564
- <td class="spider_label"><label for="masonry_thumbs_bg_color">Background color: </label></td>
565
  <td>
566
  <input type="text" name="masonry_thumbs_bg_color" id="masonry_thumbs_bg_color" value="<?php echo $row->masonry_thumbs_bg_color; ?>" class="color" />
567
  </td>
568
  </tr>
569
  <tr>
570
- <td class="spider_label"><label for="masonry_thumb_bg_transparent">Background transparency: </label></td>
571
  <td>
572
  <input type="text" name="masonry_thumb_bg_transparent" id="masonry_thumb_bg_transparent" value="<?php echo $row->masonry_thumb_bg_transparent; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> %
573
- <div class="spider_description">Value must be between 0 to 100.</div>
574
  </td>
575
  </tr>
576
  <tr>
577
- <td class="spider_label"><label for="masonry_thumb_align0">Alignment: </label></td>
578
  <td>
579
  <select name="masonry_thumb_align" id="masonry_thumb_align">
580
  <?php
581
  foreach ($aligns as $key => $align) {
582
  ?>
583
- <option value="<?php echo $key; ?>" <?php echo (($row->masonry_thumb_align == $key) ? 'selected="selected"' : ''); ?>><?php echo $align; ?></option>
584
  <?php
585
  }
586
  ?>
@@ -594,13 +594,13 @@ class BWGViewThemes_bwg {
594
  <table style="clear:both;">
595
  <tbody>
596
  <tr>
597
- <td class="spider_label"><label for="masonry_thumb_hover_effect">Hover effect: </label></td>
598
  <td>
599
  <select name="masonry_thumb_hover_effect" id="masonry_thumb_hover_effect" class="spider_int_input">
600
  <?php
601
  foreach ($hover_effects as $key => $hover_effect) {
602
  ?>
603
- <option value="<?php echo $key; ?>" <?php echo (($row->masonry_thumb_hover_effect == $key) ? 'selected="selected"' : ''); ?>><?php echo $hover_effect; ?></option>
604
  <?php
605
  }
606
  ?>
@@ -608,35 +608,35 @@ class BWGViewThemes_bwg {
608
  </td>
609
  </tr>
610
  <tr>
611
- <td class="spider_label"><label for="masonry_thumb_hover_effect_value">Hover effect value: </label></td>
612
  <td>
613
  <input type="text" name="masonry_thumb_hover_effect_value" id="masonry_thumb_hover_effect_value" value="<?php echo $row->masonry_thumb_hover_effect_value; ?>" class="spider_char_input" />
614
- <div class="spider_description">E.g. Rotate: 10deg, Scale: 1.5, Skew: 10deg.</div>
615
  </td>
616
  </tr>
617
  <tr>
618
- <td class="spider_label"><label>Transition: </label></td>
619
  <td id="masonry_thumb_transition">
620
  <input type="radio" name="masonry_thumb_transition" id="masonry_thumb_transition1" value="1"<?php if ($row->masonry_thumb_transition == 1) echo 'checked="checked"'; ?> />
621
- <label for="masonry_thumb_transition1" id="masonry_thumb_transition1_lbl">Yes</label>
622
  <input type="radio" name="masonry_thumb_transition" id="masonry_thumb_transition0" value="0"<?php if ($row->masonry_thumb_transition == 0) echo 'checked="checked"'; ?> />
623
- <label for="masonry_thumb_transition0" id="masonry_thumb_transition0_lbl">No</label>
624
  </td>
625
  </tr>
626
  <tr>
627
- <td class="spider_label"><label for="masonry_description_font_size">Description font size: </label></td>
628
  <td>
629
  <input type="text" name="masonry_description_font_size" id="masonry_description_font_size" value="<?php echo $row->masonry_description_font_size; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
630
  </td>
631
  </tr>
632
  <tr>
633
- <td class="spider_label"><label for="masonry_description_color">Description font color: </label></td>
634
  <td>
635
  <input type="text" name="masonry_description_color" id="masonry_description_color" value="<?php echo $row->masonry_description_color; ?>" class="color" />
636
  </td>
637
  </tr>
638
  <tr>
639
- <td class="spider_label"><label for="masonry_description_font_style">Description font family: </label></td>
640
  <td>
641
  <select name="masonry_description_font_style" id="masonry_description_font_style">
642
  <?php
@@ -659,74 +659,74 @@ class BWGViewThemes_bwg {
659
  <table style="clear:both;">
660
  <tbody>
661
  <tr>
662
- <td class="spider_label"><label for="slideshow_cont_bg_color">Background color: </label></td>
663
  <td>
664
  <input type="text" name="slideshow_cont_bg_color" id="slideshow_cont_bg_color" value="<?php echo $row->slideshow_cont_bg_color; ?>" class="color"/>
665
  </td>
666
  </tr>
667
  <tr>
668
- <td class="spider_label"><label for="slideshow_rl_btn_size">Right, left buttons size: </label></td>
669
  <td>
670
  <input type="text" name="slideshow_rl_btn_size" id="slideshow_rl_btn_size" value="<?php echo $row->slideshow_rl_btn_size; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
671
  </td>
672
  </tr>
673
  <tr>
674
- <td class="spider_label"><label for="slideshow_play_pause_btn_size">Play, pause buttons size: </label></td>
675
  <td>
676
  <input type="text" name="slideshow_play_pause_btn_size" id="slideshow_play_pause_btn_size" value="<?php echo $row->slideshow_play_pause_btn_size; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
677
  </td>
678
  </tr>
679
  <tr>
680
- <td class="spider_label"><label for="slideshow_rl_btn_color">Buttons color: </label></td>
681
  <td>
682
  <input type="text" name="slideshow_rl_btn_color" id="slideshow_rl_btn_color" value="<?php echo $row->slideshow_rl_btn_color; ?>" class="color"/>
683
  </td>
684
  </tr>
685
  <tr>
686
- <td class="spider_label"><label for="slideshow_close_btn_transparent">Buttons transparency: </label></td>
687
  <td>
688
  <input type="text" name="slideshow_close_btn_transparent" id="slideshow_close_btn_transparent" value="<?php echo $row->slideshow_close_btn_transparent; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> %
689
- <div class="spider_description">Value must be between 0 to 100.</div>
690
  </td>
691
  </tr>
692
  <tr>
693
- <td class="spider_label"><label for="slideshow_close_rl_btn_hover_color">Buttons hover color: </label></td>
694
  <td>
695
  <input type="text" name="slideshow_close_rl_btn_hover_color" id="slideshow_close_rl_btn_hover_color" value="<?php echo $row->slideshow_close_rl_btn_hover_color; ?>" class="color"/>
696
  </td>
697
  </tr>
698
  <tr>
699
- <td class="spider_label"><label for="slideshow_rl_btn_width">Right, left buttons width: </label></td>
700
  <td>
701
  <input type="text" name="slideshow_rl_btn_width" id="slideshow_rl_btn_width" value="<?php echo $row->slideshow_rl_btn_width; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
702
  </td>
703
  </tr>
704
  <tr>
705
- <td class="spider_label"><label for="slideshow_rl_btn_height">Right, left buttons height: </label></td>
706
  <td>
707
  <input type="text" name="slideshow_rl_btn_height" id="slideshow_rl_btn_height" value="<?php echo $row->slideshow_rl_btn_height; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
708
  </td>
709
  </tr>
710
  <tr>
711
- <td class="spider_label"><label for="slideshow_rl_btn_bg_color">Right, left buttons background color: </label></td>
712
  <td>
713
  <input type="text" name="slideshow_rl_btn_bg_color" id="slideshow_rl_btn_bg_color" value="<?php echo $row->slideshow_rl_btn_bg_color; ?>" class="color"/>
714
  </td>
715
  </tr>
716
  <tr>
717
- <td class="spider_label"><label for="slideshow_rl_btn_border_width">Right, left buttons border width: </label></td>
718
  <td>
719
  <input type="text" name="slideshow_rl_btn_border_width" id="slideshow_rl_btn_border_width" value="<?php echo $row->slideshow_rl_btn_border_width; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
720
  </td>
721
  </tr>
722
  <tr>
723
- <td class="spider_label"><label for="slideshow_rl_btn_border_style">Right, left buttons border style: </label></td>
724
  <td>
725
  <select name="slideshow_rl_btn_border_style" id="slideshow_rl_btn_border_style">
726
  <?php
727
  foreach ($border_styles as $key => $border_style) {
728
  ?>
729
- <option value="<?php echo $key; ?>" <?php echo (($row->slideshow_rl_btn_border_style == $key) ? 'selected="selected"' : ''); ?>><?php echo $border_style; ?></option>
730
  <?php
731
  }
732
  ?>
@@ -734,26 +734,26 @@ class BWGViewThemes_bwg {
734
  </td>
735
  </tr>
736
  <tr>
737
- <td class="spider_label"><label for="slideshow_rl_btn_border_color">Right, left buttons border color: </label></td>
738
  <td>
739
  <input type="text" name="slideshow_rl_btn_border_color" id="slideshow_rl_btn_border_color" value="<?php echo $row->slideshow_rl_btn_border_color; ?>" class="color"/>
740
  </td>
741
  </tr>
742
  <tr>
743
- <td class="spider_label"><label for="slideshow_rl_btn_border_radius">Right, left buttons border radius: </label></td>
744
  <td>
745
  <input type="text" name="slideshow_rl_btn_border_radius" id="slideshow_rl_btn_border_radius" value="<?php echo $row->slideshow_rl_btn_border_radius; ?>" class="spider_char_input"/>
746
- <div class="spider_description">Use CSS type values.</div>
747
  </td>
748
  </tr>
749
  <tr>
750
- <td class="spider_label"><label for="slideshow_rl_btn_style">Right, left buttons style: </label></td>
751
  <td>
752
  <select name="slideshow_rl_btn_style" id="slideshow_rl_btn_style">
753
  <?php
754
  foreach ($button_styles as $key => $button_style) {
755
  ?>
756
- <option value="<?php echo $key; ?>" <?php echo (($row->slideshow_rl_btn_style == $key) ? 'selected="selected"' : ''); ?>><?php echo $button_style; ?></option>
757
  <?php
758
  }
759
  ?>
@@ -761,10 +761,10 @@ class BWGViewThemes_bwg {
761
  </td>
762
  </tr>
763
  <tr>
764
- <td class="spider_label"><label for="slideshow_rl_btn_box_shadow">Right, left buttons box shadow: </label></td>
765
  <td>
766
  <input type="text" name="slideshow_rl_btn_box_shadow" id="slideshow_rl_btn_box_shadow" value="<?php echo $row->slideshow_rl_btn_box_shadow; ?>" class="spider_box_input"/>
767
- <div class="spider_description">Use CSS type values.</div>
768
  </td>
769
  </tr>
770
  </tbody>
@@ -774,38 +774,38 @@ class BWGViewThemes_bwg {
774
  <table style="clear:both;">
775
  <tbody>
776
  <tr>
777
- <td class="spider_label"><label>Filmstrip/Slider bullet position: </label></td>
778
  <td>
779
  <select name="slideshow_filmstrip_pos" id="slideshow_filmstrip_pos">
780
- <option value="top" <?php echo (($row->slideshow_filmstrip_pos == "top") ? 'selected="selected"' : ''); ?>>Top</option>
781
- <option value="right" <?php echo (($row->slideshow_filmstrip_pos == "right") ? 'selected="selected"' : ''); ?>>Right</option>
782
- <option value="bottom" <?php echo (($row->slideshow_filmstrip_pos == "bottom") ? 'selected="selected"' : ''); ?>>Bottom</option>
783
- <option value="left" <?php echo (($row->slideshow_filmstrip_pos == "left") ? 'selected="selected"' : ''); ?>>Left</option>
784
  </select>
785
  </td>
786
  </tr>
787
  <tr>
788
- <td class="spider_label"><label for="slideshow_filmstrip_thumb_margin">Filmstrip margin: </label></td>
789
  <td>
790
  <input type="text" name="slideshow_filmstrip_thumb_margin" id="slideshow_filmstrip_thumb_margin" value="<?php echo $row->slideshow_filmstrip_thumb_margin; ?>" class="spider_char_input"/>
791
- <div class="spider_description">Use CSS type values.</div>
792
  </td>
793
  </tr>
794
  <tr>
795
- <td class="spider_label"><label for="slideshow_filmstrip_thumb_border_width">Filmstrip border width: </label></td>
796
  <td>
797
  <input type="text" name="slideshow_filmstrip_thumb_border_width" id="slideshow_filmstrip_thumb_border_width" value="<?php echo $row->slideshow_filmstrip_thumb_border_width; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
798
  </td>
799
  </tr>
800
  <tr>
801
- <td class="spider_label"><label for="slideshow_filmstrip_thumb_border_style">Filmstrip border style: </label>
802
  </td>
803
  <td>
804
  <select name="slideshow_filmstrip_thumb_border_style" id="slideshow_filmstrip_thumb_border_style">
805
  <?php
806
  foreach ($border_styles as $key => $border_style) {
807
  ?>
808
- <option value="<?php echo $key; ?>" <?php echo (($row->slideshow_filmstrip_thumb_border_style == $key) ? 'selected="selected"' : ''); ?>><?php echo $border_style; ?></option>
809
  <?php
810
  }
811
  ?>
@@ -813,100 +813,100 @@ class BWGViewThemes_bwg {
813
  </td>
814
  </tr>
815
  <tr>
816
- <td class="spider_label"><label for="slideshow_filmstrip_thumb_border_color">Filmstrip border color: </label></td>
817
  <td>
818
  <input type="text" name="slideshow_filmstrip_thumb_border_color" id="slideshow_filmstrip_thumb_border_color" value="<?php echo $row->slideshow_filmstrip_thumb_border_color; ?>" class="color"/>
819
  </td>
820
  </tr>
821
  <tr>
822
- <td class="spider_label"><label for="slideshow_filmstrip_thumb_border_radius">Filmstrip border radius: </label></td>
823
  <td>
824
  <input type="text" name="slideshow_filmstrip_thumb_border_radius" id="slideshow_filmstrip_thumb_border_radius" value="<?php echo $row->slideshow_filmstrip_thumb_border_radius; ?>" class="spider_char_input"/>
825
- <div class="spider_description">Use CSS type values.</div>
826
  </td>
827
  </tr>
828
  <tr>
829
- <td class="spider_label"><label for="slideshow_filmstrip_thumb_active_border_width">Filmstrip active border width: </label></td>
830
  <td>
831
  <input type="text" name="slideshow_filmstrip_thumb_active_border_width" id="slideshow_filmstrip_thumb_active_border_width" value="<?php echo $row->slideshow_filmstrip_thumb_active_border_width; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/>px
832
  </td>
833
  </tr>
834
  <tr>
835
- <td class="spider_label"><label for="slideshow_filmstrip_thumb_active_border_color">Filmstrip active border color: </label></td>
836
  <td>
837
  <input type="text" name="slideshow_filmstrip_thumb_active_border_color" id="slideshow_filmstrip_thumb_active_border_color" value="<?php echo $row->slideshow_filmstrip_thumb_active_border_color; ?>" class="color"/>
838
  </td>
839
  </tr>
840
  <tr id="tr_appWidth">
841
- <td class="spider_label"><label for="slideshow_filmstrip_thumb_deactive_transparent">Filmstrip deactive transparency: </label></td>
842
  <td>
843
  <input type="text" name="slideshow_filmstrip_thumb_deactive_transparent" id="slideshow_filmstrip_thumb_deactive_transparent" value="<?php echo $row->slideshow_filmstrip_thumb_deactive_transparent; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> %
844
- <div class="spider_description">Value must be between 0 to 100.</div>
845
  </td>
846
  </tr>
847
  <tr>
848
- <td class="spider_label"><label for="slideshow_filmstrip_rl_bg_color">Filmstrip right, left buttons background color: </label></td>
849
  <td>
850
  <input type="text" name="slideshow_filmstrip_rl_bg_color" id="slideshow_filmstrip_rl_bg_color" value="<?php echo $row->slideshow_filmstrip_rl_bg_color; ?>" class="color"/>
851
  </td>
852
  </tr>
853
  <tr>
854
- <td class="spider_label"><label for="slideshow_filmstrip_rl_btn_color">Filmstrip right, left buttons color: </label></td>
855
  <td>
856
  <input type="text" name="slideshow_filmstrip_rl_btn_color" id="slideshow_filmstrip_rl_btn_color" value="<?php echo $row->slideshow_filmstrip_rl_btn_color; ?>" class="color"/>
857
  </td>
858
  </tr>
859
  <tr>
860
- <td class="spider_label"><label for="slideshow_filmstrip_rl_btn_size">Filmstrip right, left buttons size: </label></td>
861
  <td>
862
  <input type="text" name="slideshow_filmstrip_rl_btn_size" id="slideshow_filmstrip_rl_btn_size" value="<?php echo $row->slideshow_filmstrip_rl_btn_size; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)" /> px
863
  </td>
864
  </tr>
865
  <tr>
866
- <td class="spider_label"><label for="slideshow_dots_width">Slider bullet width: </label></td>
867
  <td>
868
  <input type="text" name="slideshow_dots_width" id="slideshow_dots_width" value="<?php echo $row->slideshow_dots_width; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
869
  </td>
870
  </tr>
871
  <tr>
872
- <td class="spider_label"><label for="slideshow_dots_height">Slider bullet height: </label></td>
873
  <td>
874
  <input type="text" name="slideshow_dots_height" id="slideshow_dots_height" value="<?php echo $row->slideshow_dots_height; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
875
  </td>
876
  </tr>
877
  <tr>
878
- <td class="spider_label"><label for="slideshow_dots_border_radius">Slider bullet border radius: </label></td>
879
  <td>
880
  <input type="text" name="slideshow_dots_border_radius" id="slideshow_dots_border_radius" value="<?php echo $row->slideshow_dots_border_radius; ?>" class="spider_char_input"/>
881
- <div class="spider_description">Use CSS type values.</div>
882
  </td>
883
  </tr>
884
  <tr>
885
- <td class="spider_label"><label for="slideshow_dots_background_color">Slider bullet background color: </label></td>
886
  <td>
887
  <input type="text" name="slideshow_dots_background_color" id="slideshow_dots_background_color" value="<?php echo $row->slideshow_dots_background_color; ?>" class="color"/>
888
  </td>
889
  </tr>
890
  <tr>
891
- <td class="spider_label"><label for="slideshow_dots_margin">Slider bullet margin: </label></td>
892
  <td>
893
  <input type="text" name="slideshow_dots_margin" id="slideshow_dots_margin" value="<?php echo $row->slideshow_dots_margin; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
894
  </td>
895
  </tr>
896
  <tr>
897
- <td class="spider_label"><label for="slideshow_dots_active_background_color">Slider bullet active background color: </label></td>
898
  <td>
899
  <input type="text" name="slideshow_dots_active_background_color" id="slideshow_dots_active_background_color" value="<?php echo $row->slideshow_dots_active_background_color; ?>" class="color"/>
900
  </td>
901
  </tr>
902
  <tr>
903
- <td class="spider_label"><label for="slideshow_dots_active_border_width">Slider bullet active border width: </label></td>
904
  <td>
905
  <input type="text" name="slideshow_dots_active_border_width" id="slideshow_dots_active_border_width" value="<?php echo $row->slideshow_dots_active_border_width; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
906
  </td>
907
  </tr>
908
  <tr>
909
- <td class="spider_label"><label for="slideshow_dots_active_border_color">Slider bullet active border color: </label></td>
910
  <td>
911
  <input type="text" name="slideshow_dots_active_border_color" id="slideshow_dots_active_border_color" value="<?php echo $row->slideshow_dots_active_border_color; ?>" class="color"/>
912
  </td>
@@ -918,46 +918,46 @@ class BWGViewThemes_bwg {
918
  <table style="clear:both;">
919
  <tbody>
920
  <tr>
921
- <td class="spider_label"><label for="slideshow_title_background_color">Title background color: </label></td>
922
  <td>
923
  <input type="text" name="slideshow_title_background_color" id="slideshow_title_background_color" value="<?php echo $row->slideshow_title_background_color; ?>" class="color"/>
924
  </td>
925
  </tr>
926
  <tr>
927
- <td class="spider_label"><label for="slideshow_title_opacity">Title transparency: </label></td>
928
  <td>
929
  <input type="text" name="slideshow_title_opacity" id="slideshow_title_opacity" value="<?php echo $row->slideshow_title_opacity; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> %
930
- <div class="spider_description">Value must be between 0 to 100.</div>
931
  </td>
932
  </tr>
933
  <tr>
934
- <td class="spider_label"><label for="slideshow_title_border_radius">Title border radius: </label></td>
935
  <td>
936
  <input type="text" name="slideshow_title_border_radius" id="slideshow_title_border_radius" value="<?php echo $row->slideshow_title_border_radius; ?>" class="spider_char_input"/>
937
- <div class="spider_description">Use CSS type values.</div>
938
  </td>
939
  </tr>
940
  <tr>
941
- <td class="spider_label"><label for="slideshow_title_padding">Title padding: </label></td>
942
  <td>
943
  <input type="text" name="slideshow_title_padding" id="slideshow_title_padding" value="<?php echo $row->slideshow_title_padding; ?>" class="spider_char_input"/>
944
- <div class="spider_description">Use CSS type values.</div>
945
  </td>
946
  </tr>
947
  <tr>
948
- <td class="spider_label"><label for="slideshow_title_font_size">Title font size: </label></td>
949
  <td>
950
  <input type="text" name="slideshow_title_font_size" id="slideshow_title_font_size" value="<?php echo $row->slideshow_title_font_size; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)" /> px
951
  </td>
952
  </tr>
953
  <tr>
954
- <td class="spider_label"><label for="slideshow_title_color">Title color: </label></td>
955
  <td>
956
  <input type="text" name="slideshow_title_color" id="slideshow_title_color" value="<?php echo $row->slideshow_title_color; ?>" class="color"/>
957
  </td>
958
  </tr>
959
  <tr>
960
- <td class="spider_label"><label for="slideshow_title_font">Title font family: </label></td>
961
  <td>
962
  <select name="slideshow_title_font" id="slideshow_title_font">
963
  <?php
@@ -971,46 +971,46 @@ class BWGViewThemes_bwg {
971
  </td>
972
  </tr>
973
  <tr>
974
- <td class="spider_label"><label for="slideshow_description_background_color">Description background color: </label></td>
975
  <td>
976
  <input type="text" name="slideshow_description_background_color" id="slideshow_description_background_color" value="<?php echo $row->slideshow_description_background_color; ?>" class="color"/>
977
  </td>
978
  </tr>
979
  <tr>
980
- <td class="spider_label"><label for="slideshow_description_opacity">Description transparency: </label></td>
981
  <td>
982
  <input type="text" name="slideshow_description_opacity" id="slideshow_description_opacity" value="<?php echo $row->slideshow_description_opacity; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> %
983
- <div class="spider_description">Value must be between 0 to 100.</div>
984
  </td>
985
  </tr>
986
  <tr>
987
- <td class="spider_label"><label for="slideshow_description_border_radius">Description border radius: </label></td>
988
  <td>
989
  <input type="text" name="slideshow_description_border_radius" id="slideshow_description_border_radius" value="<?php echo $row->slideshow_description_border_radius; ?>" class="spider_char_input"/>
990
- <div class="spider_description">Use CSS type values.</div>
991
  </td>
992
  </tr>
993
  <tr>
994
- <td class="spider_label"><label for="slideshow_description_padding">Description padding: </label></td>
995
  <td>
996
  <input type="text" name="slideshow_description_padding" id="slideshow_description_padding" value="<?php echo $row->slideshow_description_padding; ?>" class="spider_char_input"/>
997
- <div class="spider_description">Use CSS type values.</div>
998
  </td>
999
  </tr>
1000
  <tr>
1001
- <td class="spider_label"><label for="slideshow_description_font_size">Description font size: </label></td>
1002
  <td>
1003
  <input type="text" name="slideshow_description_font_size" id="slideshow_description_font_size" value="<?php echo $row->slideshow_description_font_size; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
1004
  </td>
1005
  </tr>
1006
  <tr>
1007
- <td class="spider_label"><label for="slideshow_description_color">Description color: </label></td>
1008
  <td>
1009
  <input type="text" name="slideshow_description_color" id="slideshow_description_color" value="<?php echo $row->slideshow_description_color; ?>" class="color"/>
1010
  </td>
1011
  </tr>
1012
  <tr>
1013
- <td class="spider_label"><label for="slideshow_description_font">Description font family: </label></td>
1014
  <td>
1015
  <select name="slideshow_description_font" id="slideshow_description_font">
1016
  <?php
@@ -1033,46 +1033,46 @@ class BWGViewThemes_bwg {
1033
  <table style="clear:both;">
1034
  <tbody>
1035
  <tr>
1036
- <td class="spider_label"><label for="image_browser_full_padding">Full padding: </label></td>
1037
  <td>
1038
  <input type="text" name="image_browser_full_padding" id="image_browser_full_padding" value="<?php echo $row->image_browser_full_padding; ?>" class="spider_char_input"/>
1039
- <div class="spider_description">Use CSS type values.</div>
1040
  </td>
1041
  </tr>
1042
  <tr>
1043
- <td class="spider_label"><label for="image_browser_full_bg_color">Full background color: </label></td>
1044
  <td>
1045
  <input type="text" name="image_browser_full_bg_color" id="image_browser_full_bg_color" value="<?php echo $row->image_browser_full_bg_color; ?>" class="color" />
1046
  </td>
1047
  </tr>
1048
  <tr>
1049
- <td class="spider_label"><label for="image_browser_full_transparent">Full background transparency: </label></td>
1050
  <td>
1051
  <input type="text" name="image_browser_full_transparent" id="image_browser_full_transparent" value="<?php echo $row->image_browser_full_transparent; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> %
1052
- <div class="spider_description">Value must be between 0 to 100.</div>
1053
  </td>
1054
  </tr>
1055
  <tr>
1056
- <td class="spider_label"><label for="image_browser_full_border_radius">Full border radius: </label></td>
1057
  <td>
1058
  <input type="text" name="image_browser_full_border_radius" id="image_browser_full_border_radius" value="<?php echo $row->image_browser_full_border_radius; ?>" class="spider_char_input" />
1059
- <div class="spider_description">Use CSS type values.</div>
1060
  </td>
1061
  </tr>
1062
  <tr>
1063
- <td class="spider_label"><label for="image_browser_full_border_width">Full border width: </label></td>
1064
  <td>
1065
  <input type="text" name="image_browser_full_border_width" id="image_browser_full_border_width" value="<?php echo $row->image_browser_full_border_width; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
1066
  </td>
1067
  </tr>
1068
  <tr>
1069
- <td class="spider_label"><label for="image_browser_full_border_style">Full border style: </label></td>
1070
  <td>
1071
  <select name="image_browser_full_border_style" id="image_browser_full_border_style">
1072
  <?php
1073
  foreach ($border_styles as $key => $border_style) {
1074
  ?>
1075
- <option value="<?php echo $key; ?>" <?php echo (($row->image_browser_full_border_style == $key) ? 'selected="selected"' : ''); ?>><?php echo $border_style; ?></option>
1076
  <?php
1077
  }
1078
  ?>
@@ -1080,7 +1080,7 @@ class BWGViewThemes_bwg {
1080
  </td>
1081
  </tr>
1082
  <tr>
1083
- <td class="spider_label"><label for="image_browser_full_border_color">Full border color: </label></td>
1084
  <td>
1085
  <input type="text" name="image_browser_full_border_color" id="image_browser_full_border_color" value="<?php echo $row->image_browser_full_border_color; ?>" class="color" />
1086
  </td>
@@ -1092,13 +1092,13 @@ class BWGViewThemes_bwg {
1092
  <table style="clear:both;">
1093
  <tbody>
1094
  <tr>
1095
- <td class="spider_label"><label for="image_browser_align0">Alignment: </label></td>
1096
  <td>
1097
  <select name="image_browser_align" id="image_browser_align">
1098
  <?php
1099
  foreach ($aligns as $key => $align) {
1100
  ?>
1101
- <option value="<?php echo $key; ?>" <?php echo (($row->image_browser_align == $key) ? 'selected="selected"' : ''); ?>><?php echo $align; ?></option>
1102
  <?php
1103
  }
1104
  ?>
@@ -1106,33 +1106,33 @@ class BWGViewThemes_bwg {
1106
  </td>
1107
  </tr>
1108
  <tr>
1109
- <td class="spider_label"><label for="image_browser_margin">Margin: </label></td>
1110
  <td>
1111
  <input type="text" name="image_browser_margin" id="image_browser_margin" value="<?php echo $row->image_browser_margin; ?>" class="spider_char_input" />
1112
- <div class="spider_description">Use CSS type values.</div>
1113
  </td>
1114
  </tr>
1115
  <tr>
1116
- <td class="spider_label"><label for="image_browser_padding">Padding: </label></td>
1117
  <td>
1118
  <input type="text" name="image_browser_padding" id="image_browser_padding" value="<?php echo $row->image_browser_padding; ?>" class="spider_char_input" />
1119
- <div class="spider_description">Use CSS type values.</div>
1120
  </td>
1121
  </tr>
1122
  <tr>
1123
- <td class="spider_label"><label for="image_browser_border_width">Border width: </label></td>
1124
  <td>
1125
  <input type="text" name="image_browser_border_width" id="image_browser_border_width" value="<?php echo $row->image_browser_border_width; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
1126
  </td>
1127
  </tr>
1128
  <tr>
1129
- <td class="spider_label"><label for="image_browser_border_style">Border style: </label></td>
1130
  <td>
1131
  <select name="image_browser_border_style" id="image_browser_border_style">
1132
  <?php
1133
  foreach ($border_styles as $key => $border_style) {
1134
  ?>
1135
- <option value="<?php echo $key; ?>" <?php echo (($row->image_browser_border_style == $key) ? 'selected="selected"' : ''); ?>><?php echo $border_style; ?></option>
1136
  <?php
1137
  }
1138
  ?>
@@ -1140,36 +1140,36 @@ class BWGViewThemes_bwg {
1140
  </td>
1141
  </tr>
1142
  <tr>
1143
- <td class="spider_label"><label for="image_browser_border_color">Border color: </label></td>
1144
  <td>
1145
  <input type="text" name="image_browser_border_color" id="image_browser_border_color" value="<?php echo $row->image_browser_border_color; ?>" class="color" />
1146
  </td>
1147
  </tr>
1148
  <tr>
1149
- <td class="spider_label"><label for="image_browser_border_radius">Border radius: </label></td>
1150
  <td>
1151
  <input type="text" name="image_browser_border_radius" id="image_browser_border_radius" value="<?php echo $row->image_browser_border_radius; ?>" class="spider_char_input" />
1152
- <div class="spider_description">Use CSS type values.</div>
1153
  </td>
1154
  </tr>
1155
  <tr>
1156
- <td class="spider_label"><label for="image_browser_bg_color">Background color: </label></td>
1157
  <td>
1158
  <input type="text" name="image_browser_bg_color" id="image_browser_bg_color" value="<?php echo $row->image_browser_bg_color; ?>" class="color" />
1159
  </td>
1160
  </tr>
1161
  <tr>
1162
- <td class="spider_label"><label for="image_browser_transparent">Background transparency: </label></td>
1163
  <td>
1164
  <input type="text" name="image_browser_transparent" id="image_browser_transparent" value="<?php echo $row->image_browser_transparent; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> %
1165
- <div class="spider_description">Value must be between 0 to 100.</div>
1166
  </td>
1167
  </tr>
1168
  <tr>
1169
- <td class="spider_label"><label for="image_browser_box_shadow">Box shadow: </label></td>
1170
  <td>
1171
  <input type="text" name="image_browser_box_shadow" id="image_browser_box_shadow" value="<?php echo $row->image_browser_box_shadow; ?>" class="spider_box_input" />
1172
- <div class="spider_description">Use CSS type values.</div>
1173
  </td>
1174
  </tr>
1175
  </tbody>
@@ -1179,13 +1179,13 @@ class BWGViewThemes_bwg {
1179
  <table style="clear:both;">
1180
  <tbody>
1181
  <tr>
1182
- <td class="spider_label"><label for="image_browser_image_description_align0">Title alignment: </label></td>
1183
  <td>
1184
  <select name="image_browser_image_description_align" id="image_browser_image_description_align">
1185
  <?php
1186
  foreach ($aligns as $key => $align) {
1187
  ?>
1188
- <option value="<?php echo $key; ?>" <?php echo (($row->image_browser_image_description_align == $key) ? 'selected="selected"' : ''); ?>><?php echo $align; ?></option>
1189
  <?php
1190
  }
1191
  ?>
@@ -1193,19 +1193,19 @@ class BWGViewThemes_bwg {
1193
  </td>
1194
  </tr>
1195
  <tr>
1196
- <td class="spider_label"><label for="image_browser_img_font_size">Font size: </label></td>
1197
  <td>
1198
  <input type="text" name="image_browser_img_font_size" id="image_browser_img_font_size" value="<?php echo $row->image_browser_img_font_size; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
1199
  </td>
1200
  </tr>
1201
  <tr>
1202
- <td class="spider_label"><label for="image_browser_img_font_color">Font color: </label></td>
1203
  <td>
1204
  <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" />
1205
  </td>
1206
  </tr>
1207
  <tr>
1208
- <td class="spider_label"><label for="image_browser_img_font_family">Font family: </label></td>
1209
  <td>
1210
  <select name="image_browser_img_font_family" id="image_browser_img_font_family">
1211
  <?php
@@ -1219,33 +1219,33 @@ class BWGViewThemes_bwg {
1219
  </td>
1220
  </tr>
1221
  <tr>
1222
- <td class="spider_label"><label for="image_browser_image_description_margin">Description margin: </label></td>
1223
  <td>
1224
  <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" />
1225
- <div class="spider_description">Use CSS type values.</div>
1226
  </td>
1227
  </tr>
1228
  <tr>
1229
- <td class="spider_label"><label for="image_browser_image_description_padding">Description padding: </label></td>
1230
  <td>
1231
  <input type="text" name="image_browser_image_description_padding" id="image_browser_image_description_padding" value="<?php echo $row->image_browser_image_description_padding; ?>" class="spider_char_input" />
1232
- <div class="spider_description">Use CSS type values.</div>
1233
  </td>
1234
  </tr>
1235
  <tr>
1236
- <td class="spider_label"><label for="image_browser_image_description_border_width">Description border width: </label></td>
1237
  <td>
1238
  <input type="text" name="image_browser_image_description_border_width" id="image_browser_image_description_border_width" value="<?php echo $row->image_browser_image_description_border_width; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)" /> px
1239
  </td>
1240
  </tr>
1241
  <tr>
1242
- <td class="spider_label"><label for="image_browser_image_description_border_style">Description border style: </label></td>
1243
  <td>
1244
  <select name="image_browser_image_description_border_style" id="image_browser_image_description_border_style">
1245
  <?php
1246
  foreach ($border_styles as $key => $border_style) {
1247
  ?>
1248
- <option value="<?php echo $key; ?>" <?php echo (($row->image_browser_image_description_border_style == $key) ? 'selected="selected"' : ''); ?>><?php echo $border_style; ?></option>
1249
  <?php
1250
  }
1251
  ?>
@@ -1253,20 +1253,20 @@ class BWGViewThemes_bwg {
1253
  </td>
1254
  </tr>
1255
  <tr>
1256
- <td class="spider_label"><label for="image_browser_image_description_border_color">Description border color: </label></td>
1257
  <td>
1258
  <input type="text" name="image_browser_image_description_border_color" id="image_browser_image_description_border_color" value="<?php echo $row->image_browser_image_description_border_color; ?>" class="color" />
1259
  </td>
1260
  </tr>
1261
  <tr>
1262
- <td class="spider_label"><label for="image_browser_image_description_border_radius">Description border radius: </label></td>
1263
  <td>
1264
  <input type="text" name="image_browser_image_description_border_radius" id="image_browser_image_description_border_radius" value="<?php echo $row->image_browser_image_description_border_radius; ?>" class="spider_char_input" />
1265
- <div class="spider_description">Use CSS type values.</div>
1266
  </td>
1267
  </tr>
1268
  <tr>
1269
- <td class="spider_label"><label for="image_browser_image_description_bg_color">Description background color: </label></td>
1270
  <td>
1271
  <input type="text" name="image_browser_image_description_bg_color" id="image_browser_image_description_bg_color" value="<?php echo $row->image_browser_image_description_bg_color; ?>" class="color" />
1272
  </td>
@@ -1281,33 +1281,33 @@ class BWGViewThemes_bwg {
1281
  <table style="clear:both;">
1282
  <tbody>
1283
  <tr>
1284
- <td class="spider_label"><label for="album_compact_thumb_padding">Padding: </label></td>
1285
  <td>
1286
  <input type="text" name="album_compact_thumb_padding" id="album_compact_thumb_padding" value="<?php echo $row->album_compact_thumb_padding; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
1287
- <div class="spider_description">Use CSS type values.</div>
1288
  </td>
1289
  </tr>
1290
  <tr>
1291
- <td class="spider_label"><label for="album_compact_thumb_margin">Margin: </label></td>
1292
  <td>
1293
  <input type="text" name="album_compact_thumb_margin" id="album_compact_thumb_margin" value="<?php echo $row->album_compact_thumb_margin; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
1294
- <div class="spider_description">Use CSS type values.</div>
1295
  </td>
1296
  </tr>
1297
  <tr>
1298
- <td class="spider_label"><label for="album_compact_thumb_border_width">Border width: </label></td>
1299
  <td>
1300
  <input type="text" name="album_compact_thumb_border_width" id="album_compact_thumb_border_width" value="<?php echo $row->album_compact_thumb_border_width; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
1301
  </td>
1302
  </tr>
1303
  <tr>
1304
- <td class="spider_label"><label for="album_compact_thumb_border_style">Border style: </label></td>
1305
  <td>
1306
  <select name="album_compact_thumb_border_style" id="album_compact_thumb_border_style">
1307
  <?php
1308
  foreach ($border_styles as $key => $border_style) {
1309
  ?>
1310
- <option value="<?php echo $key; ?>" <?php echo (($row->album_compact_thumb_border_style == $key) ? 'selected="selected"' : ''); ?>><?php echo $border_style; ?></option>
1311
  <?php
1312
  }
1313
  ?>
@@ -1315,33 +1315,33 @@ class BWGViewThemes_bwg {
1315
  </td>
1316
  </tr>
1317
  <tr>
1318
- <td class="spider_label"><label for="album_compact_thumb_border_color">Border color: </label></td>
1319
  <td>
1320
  <input type="text" name="album_compact_thumb_border_color" id="album_compact_thumb_border_color" value="<?php echo $row->album_compact_thumb_border_color; ?>" class="color" />
1321
  </td>
1322
  </tr>
1323
  <tr>
1324
- <td class="spider_label"><label for="album_compact_thumb_border_radius">Border radius: </label></td>
1325
  <td>
1326
  <input type="text" name="album_compact_thumb_border_radius" id="album_compact_thumb_border_radius" value="<?php echo $row->album_compact_thumb_border_radius; ?>" class="spider_char_input" />
1327
- <div class="spider_description">Use CSS type values.</div>
1328
  </td>
1329
  </tr>
1330
  <tr>
1331
- <td class="spider_label"><label for="album_compact_thumb_box_shadow">Shadow: </label></td>
1332
  <td>
1333
  <input type="text" name="album_compact_thumb_box_shadow" id="album_compact_thumb_box_shadow" value="<?php echo $row->album_compact_thumb_box_shadow; ?>" class="spider_box_input" />
1334
- <div class="spider_description">Use CSS type values.</div>
1335
  </td>
1336
  </tr>
1337
  <tr>
1338
- <td class="spider_label"><label for="album_compact_thumb_hover_effect">Hover effect: </label></td>
1339
  <td>
1340
  <select name="album_compact_thumb_hover_effect" id="album_compact_thumb_hover_effect">
1341
  <?php
1342
  foreach ($hover_effects as $key => $hover_effect) {
1343
  ?>
1344
- <option value="<?php echo $key; ?>" <?php echo (($row->album_compact_thumb_hover_effect == $key) ? 'selected="selected"' : ''); ?>><?php echo $hover_effect; ?></option>
1345
  <?php
1346
  }
1347
  ?>
@@ -1349,19 +1349,19 @@ class BWGViewThemes_bwg {
1349
  </td>
1350
  </tr>
1351
  <tr>
1352
- <td class="spider_label"><label for="album_compact_thumb_hover_effect_value">Hover effect value: </label></td>
1353
  <td>
1354
  <input type="text" name="album_compact_thumb_hover_effect_value" id="album_compact_thumb_hover_effect_value" value="<?php echo $row->album_compact_thumb_hover_effect_value; ?>" class="spider_char_input" />
1355
- <div class="spider_description">E.g. Rotate: 10deg, Scale: 1.5, Skew: 10deg.</div>
1356
  </td>
1357
  </tr>
1358
  <tr>
1359
- <td class="spider_label"><label>Thumbnail transition: </label></td>
1360
  <td id="album_compact_thumb_transition">
1361
  <input type="radio" name="album_compact_thumb_transition" id="album_compact_thumb_transition1" value="1"<?php if ($row->album_compact_thumb_transition == 1) echo 'checked="checked"'; ?> />
1362
- <label for="album_compact_thumb_transition1" id="album_compact_thumb_transition1_lbl">Yes</label>
1363
  <input type="radio" name="album_compact_thumb_transition" id="album_compact_thumb_transition0" value="0"<?php if ($row->album_compact_thumb_transition == 0) echo 'checked="checked"'; ?> />
1364
- <label for="album_compact_thumb_transition0" id="album_compact_thumb_transition0_lbl">No</label>
1365
  </td>
1366
  </tr>
1367
  </tbody>
@@ -1371,39 +1371,39 @@ class BWGViewThemes_bwg {
1371
  <table style="clear:both;">
1372
  <tbody>
1373
  <tr>
1374
- <td class="spider_label"><label for="album_compact_thumb_bg_color">Thumbnail background color: </label></td>
1375
  <td>
1376
  <input type="text" name="album_compact_thumb_bg_color" id="album_compact_thumb_bg_color" value="<?php echo $row->album_compact_thumb_bg_color; ?>" class="color" />
1377
  </td>
1378
  </tr>
1379
  <tr>
1380
- <td class="spider_label"><label for="album_compact_thumb_transparent">Thumbnail transparency: </label></td>
1381
  <td>
1382
  <input type="text" name="album_compact_thumb_transparent" id="album_compact_thumb_transparent" value="<?php echo $row->album_compact_thumb_transparent; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> %
1383
- <div class="spider_description">Value must be between 0 to 100.</div>
1384
  </td>
1385
  </tr>
1386
  <tr>
1387
- <td class="spider_label"><label for="album_compact_thumbs_bg_color">Full background color: </label></td>
1388
  <td>
1389
  <input type="text" name="album_compact_thumbs_bg_color" id="album_compact_thumbs_bg_color" value="<?php echo $row->album_compact_thumbs_bg_color; ?>" class="color" />
1390
  </td>
1391
  </tr>
1392
  <tr>
1393
- <td class="spider_label"><label for="album_compact_thumb_bg_transparent">Full background transparency: </label></td>
1394
  <td>
1395
  <input type="text" name="album_compact_thumb_bg_transparent" id="album_compact_thumb_bg_transparent" value="<?php echo $row->album_compact_thumb_bg_transparent; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> %
1396
- <div class="spider_description">Value must be between 0 to 100.</div>
1397
  </td>
1398
  </tr>
1399
  <tr>
1400
- <td class="spider_label"><label for="album_compact_thumb_align0">Alignment: </label></td>
1401
  <td>
1402
  <select name="album_compact_thumb_align" id="album_compact_thumb_align">
1403
  <?php
1404
  foreach ($aligns as $key => $align) {
1405
  ?>
1406
- <option value="<?php echo $key; ?>" <?php echo (($row->album_compact_thumb_align == $key) ? 'selected="selected"' : ''); ?>><?php echo $align; ?></option>
1407
  <?php
1408
  }
1409
  ?>
@@ -1417,28 +1417,28 @@ class BWGViewThemes_bwg {
1417
  <table style="clear:both;">
1418
  <tbody>
1419
  <tr>
1420
- <td class="spider_label"><label>Title position: </label></td>
1421
  <td>
1422
  <input type="radio" name="album_compact_thumb_title_pos" id="album_compact_thumb_title_pos1" value="top" <?php if ($row->album_compact_thumb_title_pos == "top") echo 'checked="checked"'; ?> />
1423
- <label for="album_compact_thumb_title_pos1" id="album_compact_thumb_title_pos1_lbl">Top</label>
1424
  <input type="radio" name="album_compact_thumb_title_pos" id="album_compact_thumb_title_pos0" value="bottom" <?php if ($row->album_compact_thumb_title_pos == "bottom") echo 'checked="checked"'; ?> />
1425
- <label for="album_compact_thumb_title_pos0" id="album_compact_thumb_title_pos0_lbl">Bottom</label>
1426
  </td>
1427
  </tr>
1428
  <tr>
1429
- <td class="spider_label"><label for="album_compact_title_font_size">Title font size: </label></td>
1430
  <td>
1431
  <input type="text" name="album_compact_title_font_size" id="album_compact_title_font_size" value="<?php echo $row->album_compact_title_font_size; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
1432
  </td>
1433
  </tr>
1434
  <tr>
1435
- <td class="spider_label"><label for="album_compact_title_font_color">Title font color: </label></td>
1436
  <td>
1437
  <input type="text" name="album_compact_title_font_color" id="album_compact_title_font_color" value="<?php echo $row->album_compact_title_font_color; ?>" class="color" />
1438
  </td>
1439
  </tr>
1440
  <tr>
1441
- <td class="spider_label"><label for="album_compact_title_font_style">Title font family: </label></td>
1442
  <td>
1443
  <select name="album_compact_title_font_style" id="album_compact_title_font_style">
1444
  <?php
@@ -1452,13 +1452,13 @@ class BWGViewThemes_bwg {
1452
  </td>
1453
  </tr>
1454
  <tr>
1455
- <td class="spider_label"><label for="album_compact_title_font_weight">Title font weight: </label></td>
1456
  <td>
1457
  <select name="album_compact_title_font_weight" id="album_compact_title_font_weight">
1458
  <?php
1459
  foreach ($font_weights as $key => $font_weight) {
1460
  ?>
1461
- <option value="<?php echo $key; ?>" <?php echo (($row->album_compact_title_font_weight == $key) ? 'selected="selected"' : ''); ?>><?php echo $font_weight; ?></option>
1462
  <?php
1463
  }
1464
  ?>
@@ -1466,33 +1466,33 @@ class BWGViewThemes_bwg {
1466
  </td>
1467
  </tr>
1468
  <tr>
1469
- <td class="spider_label"><label for="album_compact_title_shadow">Title box shadow: </label></td>
1470
  <td>
1471
  <input type="text" name="album_compact_title_shadow" id="album_compact_title_shadow" value="<?php echo $row->album_compact_title_shadow; ?>" class="spider_box_input" />
1472
- <div class="spider_description">Use CSS type values.</div>
1473
  </td>
1474
  </tr>
1475
  <tr>
1476
- <td class="spider_label"><label for="album_compact_title_margin">Title margin: </label></td>
1477
  <td>
1478
  <input type="text" name="album_compact_title_margin" id="album_compact_title_margin" value="<?php echo $row->album_compact_title_margin; ?>" class="spider_char_input" />
1479
- <div class="spider_description">Use CSS type values.</div>
1480
  </td>
1481
  </tr>
1482
  <tr>
1483
- <td class="spider_label"><label for="album_compact_back_font_size">Font size: </label></td>
1484
  <td>
1485
  <input type="text" name="album_compact_back_font_size" id="album_compact_back_font_size" value="<?php echo $row->album_compact_back_font_size; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
1486
  </td>
1487
  </tr>
1488
  <tr>
1489
- <td class="spider_label"><label for="album_compact_back_font_color">Font color: </label></td>
1490
  <td>
1491
  <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" />
1492
  </td>
1493
  </tr>
1494
  <tr>
1495
- <td class="spider_label"><label for="album_compact_back_font_style">Font family: </label></td>
1496
  <td>
1497
  <select name="album_compact_back_font_style" id="album_compact_back_font_style">
1498
  <?php
@@ -1506,13 +1506,13 @@ class BWGViewThemes_bwg {
1506
  </td>
1507
  </tr>
1508
  <tr>
1509
- <td class="spider_label"><label for="album_compact_back_font_weight">Font weight: </label></td>
1510
  <td>
1511
  <select name="album_compact_back_font_weight" id="album_compact_back_font_weight">
1512
  <?php
1513
  foreach ($font_weights as $key => $font_weight) {
1514
  ?>
1515
- <option value="<?php echo $key; ?>" <?php echo (($row->album_compact_back_font_weight == $key) ? 'selected="selected"' : ''); ?>><?php echo $font_weight; ?></option>
1516
  <?php
1517
  }
1518
  ?>
@@ -1520,10 +1520,10 @@ class BWGViewThemes_bwg {
1520
  </td>
1521
  </tr>
1522
  <tr>
1523
- <td class="spider_label"><label for="album_compact_back_padding">Back padding: </label></td>
1524
  <td>
1525
  <input type="text" name="album_compact_back_padding" id="album_compact_back_padding" value="<?php echo $row->album_compact_back_padding; ?>" class="spider_char_input" />
1526
- <div class="spider_description">Use CSS type values.</div>
1527
  </td>
1528
  </tr>
1529
  </tbody>
@@ -1536,31 +1536,31 @@ class BWGViewThemes_bwg {
1536
  <table style="clear:both;">
1537
  <tbody>
1538
  <tr>
1539
- <td class="spider_label"><label for="album_extended_thumb_margin">Thumbnail margin: </label></td>
1540
  <td>
1541
  <input type="text" name="album_extended_thumb_margin" id="album_extended_thumb_margin" value="<?php echo $row->album_extended_thumb_margin; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
1542
  </td>
1543
  </tr>
1544
  <tr>
1545
- <td class="spider_label"><label for="album_extended_thumb_padding">Thumbnail padding: </label></td>
1546
  <td>
1547
  <input type="text" name="album_extended_thumb_padding" id="album_extended_thumb_padding" value="<?php echo $row->album_extended_thumb_padding; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
1548
  </td>
1549
  </tr>
1550
  <tr>
1551
- <td class="spider_label"><label for="album_extended_thumb_border_width">Thumbnail border width: </label></td>
1552
  <td>
1553
  <input type="text" name="album_extended_thumb_border_width" id="album_extended_thumb_border_width" value="<?php echo $row->album_extended_thumb_border_width; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
1554
  </td>
1555
  </tr>
1556
  <tr>
1557
- <td class="spider_label"><label for="album_extended_thumb_border_style">Thumbnail border style: </label></td>
1558
  <td>
1559
  <select name="album_extended_thumb_border_style" id="album_extended_thumb_border_style">
1560
  <?php
1561
  foreach ($border_styles as $key => $border_style) {
1562
  ?>
1563
- <option value="<?php echo $key; ?>" <?php echo (($row->album_extended_thumb_border_style == $key) ? 'selected="selected"' : ''); ?>><?php echo $border_style; ?></option>
1564
  <?php
1565
  }
1566
  ?>
@@ -1568,42 +1568,42 @@ class BWGViewThemes_bwg {
1568
  </td>
1569
  </tr>
1570
  <tr>
1571
- <td class="spider_label"><label for="album_extended_thumb_border_color">Thumbnail border color: </label></td>
1572
  <td>
1573
  <input type="text" name="album_extended_thumb_border_color" id="album_extended_thumb_border_color" value="<?php echo $row->album_extended_thumb_border_color; ?>" class="color"/>
1574
  </td>
1575
  </tr>
1576
  <tr>
1577
- <td class="spider_label"><label for="album_extended_thumb_border_radius">Thumbnail border radius: </label></td>
1578
  <td>
1579
  <input type="text" name="album_extended_thumb_border_radius" id="album_extended_thumb_border_radius" value="<?php echo $row->album_extended_thumb_border_radius; ?>" class="spider_char_input"/>
1580
- <div class="spider_description">Use CSS type values.</div>
1581
  </td>
1582
  </tr>
1583
  <tr>
1584
- <td class="spider_label"><label for="album_extended_thumb_box_shadow">Thumbnail box shadow: </label></td>
1585
  <td>
1586
  <input type="text" name="album_extended_thumb_box_shadow" id="album_extended_thumb_box_shadow" value="<?php echo $row->album_extended_thumb_box_shadow; ?>" class="spider_box_input"/>
1587
- <div class="spider_description">Use CSS type values.</div>
1588
  </td>
1589
  </tr>
1590
  <tr>
1591
- <td class="spider_label"><label>Thumbnail transition: </label></td>
1592
  <td id="album_extended_thumb_transition">
1593
  <input type="radio" name="album_extended_thumb_transition" id="album_extended_thumb_transition1" value="1"<?php if ($row->album_extended_thumb_transition == 1) echo 'checked="checked"'; ?> />
1594
- <label for="album_extended_thumb_transition1" id="album_extended_thumb_transition1_lbl">Yes</label>
1595
  <input type="radio" name="album_extended_thumb_transition" id="album_extended_thumb_transition0" value="0"<?php if ($row->album_extended_thumb_transition == 0) echo 'checked="checked"'; ?> />
1596
- <label for="album_extended_thumb_transition0" id="album_extended_thumb_transition0_lbl">No</label>
1597
  </td>
1598
  </tr>
1599
  <tr>
1600
- <td class="spider_label"><label for="album_extended_thumb_align0">Thumbnail alignment: </label></td>
1601
  <td>
1602
  <select name="album_extended_thumb_align" id="album_extended_thumb_align">
1603
  <?php
1604
  foreach ($aligns as $key => $align) {
1605
  ?>
1606
- <option value="<?php echo $key; ?>" <?php echo (($row->album_extended_thumb_align == $key) ? 'selected="selected"' : ''); ?>><?php echo $align; ?></option>
1607
  <?php
1608
  }
1609
  ?>
@@ -1611,20 +1611,20 @@ class BWGViewThemes_bwg {
1611
  </td>
1612
  </tr>
1613
  <tr>
1614
- <td class="spider_label"><label for="album_extended_thumb_transparent">Thumbnail transparency: </label></td>
1615
  <td>
1616
  <input type="text" name="album_extended_thumb_transparent" id="album_extended_thumb_transparent" value="<?php echo $row->album_extended_thumb_transparent; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> %
1617
- <div class="spider_description">Value must be between 0 to 100.</div>
1618
  </td>
1619
  </tr>
1620
  <tr>
1621
- <td class="spider_label"><label for="album_extended_thumb_hover_effect">Thumbnail hover effect: </label></td>
1622
  <td>
1623
  <select name="album_extended_thumb_hover_effect" id="album_extended_thumb_hover_effect">
1624
  <?php
1625
  foreach ($hover_effects as $key => $hover_effect) {
1626
  ?>
1627
- <option value="<?php echo $key; ?>" <?php echo (($row->album_extended_thumb_hover_effect == $key) ? 'selected="selected"' : ''); ?>><?php echo $hover_effect; ?></option>
1628
  <?php
1629
  }
1630
  ?>
@@ -1632,29 +1632,29 @@ class BWGViewThemes_bwg {
1632
  </td>
1633
  </tr>
1634
  <tr>
1635
- <td class="spider_label"><label for="album_extended_thumb_hover_effect_value">Hover effect value: </label></td>
1636
  <td>
1637
  <input type="text" name="album_extended_thumb_hover_effect_value" id="album_extended_thumb_hover_effect_value" value="<?php echo $row->album_extended_thumb_hover_effect_value; ?>" class="spider_char_input"/>
1638
- <div class="spider_description">E.g. Rotate: 10deg, Scale: 1.5, Skew: 10deg.</div>
1639
  </td>
1640
  </tr>
1641
  <tr>
1642
- <td class="spider_label"><label for="album_extended_thumb_bg_color">Thumbnail background color: </label></td>
1643
  <td>
1644
  <input type="text" name="album_extended_thumb_bg_color" id="album_extended_thumb_bg_color" value="<?php echo $row->album_extended_thumb_bg_color; ?>" class="color"/>
1645
  </td>
1646
  </tr>
1647
  <tr>
1648
- <td class="spider_label"><label for="album_extended_thumbs_bg_color">Thumbnails background color: </label></td>
1649
  <td>
1650
  <input type="text" name="album_extended_thumbs_bg_color" id="album_extended_thumbs_bg_color" value="<?php echo $row->album_extended_thumbs_bg_color; ?>" class="color"/>
1651
  </td>
1652
  </tr>
1653
  <tr>
1654
- <td class="spider_label"><label for="album_extended_thumb_bg_transparent">Thumbnail background transparency: </label></td>
1655
  <td>
1656
  <input type="text" name="album_extended_thumb_bg_transparent" id="album_extended_thumb_bg_transparent" value="<?php echo $row->album_extended_thumb_bg_transparent; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> %
1657
- <div class="spider_description">Value must be between 0 to 100.</div>
1658
  </td>
1659
  </tr>
1660
  </tbody>
@@ -1664,33 +1664,33 @@ class BWGViewThemes_bwg {
1664
  <table style="clear:both;">
1665
  <tbody>
1666
  <tr>
1667
- <td class="spider_label"><label for="album_extended_thumb_div_padding">Thumbnail div padding: </label></td>
1668
  <td>
1669
  <input type="text" name="album_extended_thumb_div_padding" id="album_extended_thumb_div_padding" value="<?php echo $row->album_extended_thumb_div_padding; ?>" class="spider_char_input"/>
1670
- <div class="spider_description">Use CSS type values.</div>
1671
  </td>
1672
  </tr>
1673
  <tr>
1674
- <td class="spider_label"><label for="album_extended_thumb_div_bg_color">Thumbnail div background color: </label></td>
1675
  <td>
1676
  <input type="text" name="album_extended_thumb_div_bg_color" id="album_extended_thumb_div_bg_color" value="<?php echo $row->album_extended_thumb_div_bg_color; ?>" class="color"/>
1677
  </td>
1678
  </tr>
1679
  <tr>
1680
- <td class="spider_label"><label for="album_extended_thumb_div_border_width">Thumbnail div border width: </label>
1681
  </td>
1682
  <td>
1683
  <input type="text" name="album_extended_thumb_div_border_width" id="album_extended_thumb_div_border_width" value="<?php echo $row->album_extended_thumb_div_border_width; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
1684
  </td>
1685
  </tr>
1686
  <tr>
1687
- <td class="spider_label"><label for="album_extended_thumb_div_border_style">Thumbnail div border style: </label></td>
1688
  <td>
1689
  <select name="album_extended_thumb_div_border_style" id="album_extended_thumb_div_border_style">
1690
  <?php
1691
  foreach ($border_styles as $key => $border_style) {
1692
  ?>
1693
- <option value="<?php echo $key; ?>" <?php echo (($row->album_extended_thumb_div_border_style == $key) ? 'selected="selected"' : ''); ?>><?php echo $border_style; ?></option>
1694
  <?php
1695
  }
1696
  ?>
@@ -1698,65 +1698,65 @@ class BWGViewThemes_bwg {
1698
  </td>
1699
  </tr>
1700
  <tr>
1701
- <td class="spider_label"><label for="album_extended_thumb_div_border_color">Thumbnail div border color: </label></td>
1702
  <td>
1703
  <input type="text" name="album_extended_thumb_div_border_color" id="album_extended_thumb_div_border_color" value="<?php echo $row->album_extended_thumb_div_border_color; ?>" class="color"/>
1704
  </td>
1705
  </tr>
1706
  <tr>
1707
- <td class="spider_label"><label for="album_extended_thumb_div_border_radius">Thumbnail div border radius: </label></td>
1708
  <td>
1709
  <input type="text" name="album_extended_thumb_div_border_radius" id="album_extended_thumb_div_border_radius" value="<?php echo $row->album_extended_thumb_div_border_radius; ?>" class="spider_char_input"/>
1710
- <div class="spider_description">Use CSS type values.</div>
1711
  </td>
1712
  </tr>
1713
  <tr>
1714
- <td class="spider_label"><label for="album_extended_div_margin">Margin: </label></td>
1715
  <td>
1716
  <input type="text" name="album_extended_div_margin" id="album_extended_div_margin" value="<?php echo $row->album_extended_div_margin; ?>" class="spider_char_input"/>
1717
- <div class="spider_description">Use CSS type values.</div>
1718
  </td>
1719
  </tr>
1720
  <tr>
1721
- <td class="spider_label"><label for="album_extended_div_padding">Padding: </label></td>
1722
  <td>
1723
  <input type="text" name="album_extended_div_padding" id="album_extended_div_padding" value="<?php echo $row->album_extended_div_padding; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
1724
  </td>
1725
  </tr>
1726
  <tr>
1727
- <td class="spider_label"><label for="album_extended_div_bg_color">Background color: </label></td>
1728
  <td>
1729
  <input type="text" name="album_extended_div_bg_color" id="album_extended_div_bg_color" value="<?php echo $row->album_extended_div_bg_color; ?>" class="color"/>
1730
  </td>
1731
  </tr>
1732
  <tr>
1733
- <td class="spider_label"><label for="album_extended_div_bg_transparent">Background transparency: </label></td>
1734
  <td>
1735
  <input type="text" name="album_extended_div_bg_transparent" id="album_extended_div_bg_transparent" value="<?php echo $row->album_extended_div_bg_transparent; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> %
1736
- <div class="spider_description">Value must be between 0 to 100.</div>
1737
  </td>
1738
  </tr>
1739
  <tr>
1740
- <td class="spider_label"><label for="album_extended_div_border_radius">Border radius: </label></td>
1741
  <td>
1742
  <input type="text" name="album_extended_div_border_radius" id="album_extended_div_border_radius" value="<?php echo $row->album_extended_div_border_radius; ?>" class="spider_char_input"/>
1743
- <div class="spider_description">Use CSS type values.</div>
1744
  </td>
1745
  </tr>
1746
  <tr>
1747
- <td class="spider_label"><label for="album_extended_div_separator_width">Separator width: </label></td>
1748
  <td>
1749
  <input type="text" name="album_extended_div_separator_width" id="album_extended_div_separator_width" value="<?php echo $row->album_extended_div_separator_width; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
1750
  </td>
1751
  </tr>
1752
  <tr>
1753
- <td class="spider_label"><label for="album_extended_div_separator_style">Separator style: </label></td>
1754
  <td>
1755
  <select name="album_extended_div_separator_style" id="album_extended_div_separator_style">
1756
  <?php
1757
  foreach ($border_styles as $key => $border_style) {
1758
  ?>
1759
- <option value="<?php echo $key; ?>" <?php echo (($row->album_extended_div_separator_style == $key) ? 'selected="selected"' : ''); ?>><?php echo $border_style; ?></option>
1760
  <?php
1761
  }
1762
  ?>
@@ -1764,32 +1764,32 @@ class BWGViewThemes_bwg {
1764
  </td>
1765
  </tr>
1766
  <tr>
1767
- <td class="spider_label"><label for="album_extended_div_separator_color">Separator color: </label></td>
1768
  <td>
1769
  <input type="text" name="album_extended_div_separator_color" id="album_extended_div_separator_color" value="<?php echo $row->album_extended_div_separator_color; ?>" class="color"/>
1770
  </td>
1771
  </tr>
1772
  <tr>
1773
- <td class="spider_label"><label for="album_extended_back_padding">Back padding: </label></td>
1774
  <td>
1775
  <input type="text" name="album_extended_back_padding" id="album_extended_back_padding" value="<?php echo $row->album_extended_back_padding; ?>" class="spider_char_input" />
1776
- <div class="spider_description">Use CSS type values.</div>
1777
  </td>
1778
  </tr>
1779
  <tr>
1780
- <td class="spider_label"><label for="album_extended_back_font_size">Back font size: </label></td>
1781
  <td>
1782
  <input type="text" name="album_extended_back_font_size" id="album_extended_back_font_size" value="<?php echo $row->album_extended_back_font_size; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
1783
  </td>
1784
  </tr>
1785
  <tr>
1786
- <td class="spider_label"><label for="album_extended_back_font_color">Back font color: </label></td>
1787
  <td>
1788
  <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"/>
1789
  </td>
1790
  </tr>
1791
  <tr>
1792
- <td class="spider_label"><label for="album_extended_back_font_style">Back font family: </label></td>
1793
  <td>
1794
  <select name="album_extended_back_font_style" id="album_extended_back_font_style">
1795
  <?php
@@ -1803,13 +1803,13 @@ class BWGViewThemes_bwg {
1803
  </td>
1804
  </tr>
1805
  <tr>
1806
- <td class="spider_label"><label for="album_extended_back_font_weight">Back font weight: </label></td>
1807
  <td>
1808
  <select name="album_extended_back_font_weight" id="album_extended_back_font_weight">
1809
  <?php
1810
  foreach ($font_weights as $key => $font_weight) {
1811
  ?>
1812
- <option value="<?php echo $key; ?>" <?php echo (($row->album_extended_back_font_weight == $key) ? 'selected="selected"' : ''); ?>><?php echo $font_weight; ?></option>
1813
  <?php
1814
  }
1815
  ?>
@@ -1823,26 +1823,26 @@ class BWGViewThemes_bwg {
1823
  <table style="clear:both;">
1824
  <tbody>
1825
  <tr>
1826
- <td class="spider_label"><label for="album_extended_text_div_padding">Text div padding: </label></td>
1827
  <td>
1828
  <input type="text" name="album_extended_text_div_padding" id="album_extended_text_div_padding" value="<?php echo $row->album_extended_text_div_padding; ?>" class="spider_char_input" />
1829
  <div class="spider_description">Use CSS type values.</div>
1830
  </td>
1831
  </tr>
1832
  <tr>
1833
- <td class="spider_label"><label for="album_extended_text_div_border_width">Text div border width: </label></td>
1834
  <td>
1835
  <input type="text" name="album_extended_text_div_border_width" id="album_extended_text_div_border_width" value="<?php echo $row->album_extended_text_div_border_width; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
1836
  </td>
1837
  </tr>
1838
  <tr>
1839
- <td class="spider_label"><label for="album_extended_text_div_border_style">Text border style: </label></td>
1840
  <td>
1841
  <select name="album_extended_text_div_border_style" id="album_extended_text_div_border_style">
1842
  <?php
1843
  foreach ($border_styles as $key => $border_style) {
1844
  ?>
1845
- <option value="<?php echo $key; ?>" <?php echo (($row->album_extended_text_div_border_style == $key) ? 'selected="selected"' : ''); ?>><?php echo $border_style; ?></option>
1846
  <?php
1847
  }
1848
  ?>
@@ -1850,51 +1850,51 @@ class BWGViewThemes_bwg {
1850
  </td>
1851
  </tr>
1852
  <tr>
1853
- <td class="spider_label"><label for="album_extended_text_div_border_color">Text border color: </label></td>
1854
  <td>
1855
  <input type="text" name="album_extended_text_div_border_color" id="album_extended_text_div_border_color" value="<?php echo $row->album_extended_text_div_border_color; ?>" class="color"/>
1856
  </td>
1857
  </tr>
1858
  <tr>
1859
- <td class="spider_label"><label for="album_extended_text_div_border_radius">Text div border radius: </label></td>
1860
  <td>
1861
  <input type="text" name="album_extended_text_div_border_radius" id="album_extended_text_div_border_radius" value="<?php echo $row->album_extended_text_div_border_radius; ?>" class="spider_char_input"/>
1862
- <div class="spider_description">Use CSS type values.</div>
1863
  </td>
1864
  </tr>
1865
  <tr>
1866
- <td class="spider_label"><label for="album_extended_text_div_bg_color">Text background color: </label></td>
1867
  <td>
1868
  <input type="text" name="album_extended_text_div_bg_color" id="album_extended_text_div_bg_color" value="<?php echo $row->album_extended_text_div_bg_color; ?>" class="color"/>
1869
  </td>
1870
  </tr>
1871
  <tr>
1872
- <td class="spider_label"><label for="album_extended_title_margin_bottom">Title margin: </label></td>
1873
  <td>
1874
  <input type="text" name="album_extended_title_margin_bottom" id="album_extended_title_margin_bottom" value="<?php echo $row->album_extended_title_margin_bottom; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
1875
  </td>
1876
  </tr>
1877
  <tr>
1878
- <td class="spider_label"><label for="album_extended_title_padding">Title padding: </label></td>
1879
  <td>
1880
  <input type="text" name="album_extended_title_padding" id="album_extended_title_padding" value="<?php echo $row->album_extended_title_padding; ?>" class="spider_char_input"/>
1881
- <div class="spider_description">Use CSS type values.</div>
1882
  </td>
1883
  </tr>
1884
  <tr>
1885
- <td class="spider_label"><label for="album_extended_title_span_border_width">Title border width: </label></td>
1886
  <td>
1887
  <input type="text" name="album_extended_title_span_border_width" id="album_extended_title_span_border_width" value="<?php echo $row->album_extended_title_span_border_width; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
1888
  </td>
1889
  </tr>
1890
  <tr>
1891
- <td class="spider_label"><label for="album_extended_title_span_border_style">Title border style: </label></td>
1892
  <td>
1893
  <select name="album_extended_title_span_border_style" id="album_extended_title_span_border_style">
1894
  <?php
1895
  foreach ($border_styles as $key => $border_style) {
1896
  ?>
1897
- <option value="<?php echo $key; ?>" <?php echo (($row->album_extended_title_span_border_style == $key) ? 'selected="selected"' : ''); ?>><?php echo $border_style; ?></option>
1898
  <?php
1899
  }
1900
  ?>
@@ -1902,25 +1902,25 @@ class BWGViewThemes_bwg {
1902
  </td>
1903
  </tr>
1904
  <tr>
1905
- <td class="spider_label"><label for="album_extended_title_span_border_color">Title border color: </label></td>
1906
  <td>
1907
  <input type="text" name="album_extended_title_span_border_color" id="album_extended_title_span_border_color" value="<?php echo $row->album_extended_title_span_border_color; ?>" class="color"/>
1908
  </td>
1909
  </tr>
1910
  <tr>
1911
- <td class="spider_label"><label for="album_extended_title_font_size">Title font size: </label></td>
1912
  <td>
1913
  <input type="text" name="album_extended_title_font_size" id="album_extended_title_font_size" value="<?php echo $row->album_extended_title_font_size; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
1914
  </td>
1915
  </tr>
1916
  <tr>
1917
- <td class="spider_label"><label for="album_extended_title_font_color">Title font color: </label></td>
1918
  <td>
1919
  <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"/>
1920
  </td>
1921
  </tr>
1922
  <tr>
1923
- <td class="spider_label"><label for="album_extended_title_font_style">Title font family: </label></td>
1924
  <td>
1925
  <select name="album_extended_title_font_style" id="album_extended_title_font_style">
1926
  <?php
@@ -1934,13 +1934,13 @@ class BWGViewThemes_bwg {
1934
  </td>
1935
  </tr>
1936
  <tr>
1937
- <td class="spider_label"><label for="album_extended_title_font_weight">Title font weight: </label></td>
1938
  <td>
1939
  <select name="album_extended_title_font_weight" id="album_extended_title_font_weight">
1940
  <?php
1941
  foreach ($font_weights as $key => $font_weight) {
1942
  ?>
1943
- <option value="<?php echo $key; ?>" <?php echo (($row->album_extended_title_font_weight == $key) ? 'selected="selected"' : ''); ?>><?php echo $font_weight; ?></option>
1944
  <?php
1945
  }
1946
  ?>
@@ -1948,26 +1948,26 @@ class BWGViewThemes_bwg {
1948
  </td>
1949
  </tr>
1950
  <tr>
1951
- <td class="spider_label"><label for="album_extended_desc_padding">Description padding: </label></td>
1952
  <td>
1953
  <input type="text" name="album_extended_desc_padding" id="album_extended_desc_padding" value="<?php echo $row->album_extended_desc_padding; ?>" class="spider_char_input"/>
1954
- <div class="spider_description">Use CSS type values.</div>
1955
  </td>
1956
  </tr>
1957
  <tr>
1958
- <td class="spider_label"><label for="album_extended_desc_span_border_width">Description border width: </label></td>
1959
  <td>
1960
  <input type="text" name="album_extended_desc_span_border_width" id="album_extended_desc_span_border_width" value="<?php echo $row->album_extended_desc_span_border_width; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
1961
  </td>
1962
  </tr>
1963
  <tr>
1964
- <td class="spider_label"><label for="album_extended_desc_span_border_style">Description border style: </label></td>
1965
  <td>
1966
  <select name="album_extended_desc_span_border_style" id="album_extended_desc_span_border_style">
1967
  <?php
1968
  foreach ($border_styles as $key => $border_style) {
1969
  ?>
1970
- <option value="<?php echo $key; ?>" <?php echo (($row->album_extended_desc_span_border_style == $key) ? 'selected="selected"' : ''); ?>><?php echo $border_style; ?></option>
1971
  <?php
1972
  }
1973
  ?>
@@ -1975,25 +1975,25 @@ class BWGViewThemes_bwg {
1975
  </td>
1976
  </tr>
1977
  <tr>
1978
- <td class="spider_label"><label for="album_extended_desc_span_border_color">Description border color: </label></td>
1979
  <td>
1980
  <input type="text" name="album_extended_desc_span_border_color" id="album_extended_desc_span_border_color" value="<?php echo $row->album_extended_desc_span_border_color; ?>" class="color"/>
1981
  </td>
1982
  </tr>
1983
  <tr>
1984
- <td class="spider_label"><label for="album_extended_desc_font_size">Description font size: </label></td>
1985
  <td>
1986
  <input type="text" name="album_extended_desc_font_size" id="album_extended_desc_font_size" value="<?php echo $row->album_extended_desc_font_size; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
1987
  </td>
1988
  </tr>
1989
  <tr>
1990
- <td class="spider_label"><label for="album_extended_desc_font_color">Description font color: </label></td>
1991
  <td>
1992
  <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"/>
1993
  </td>
1994
  </tr>
1995
  <tr>
1996
- <td class="spider_label"><label for="album_extended_desc_font_style">Description font family: </label></td>
1997
  <td>
1998
  <select name="album_extended_desc_font_style" id="album_extended_desc_font_style">
1999
  <?php
@@ -2007,13 +2007,13 @@ class BWGViewThemes_bwg {
2007
  </td>
2008
  </tr>
2009
  <tr>
2010
- <td class="spider_label"><label for="album_extended_desc_font_weight">Description font weight: </label></td>
2011
  <td>
2012
  <select name="album_extended_desc_font_weight" id="album_extended_desc_font_weight">
2013
  <?php
2014
  foreach ($font_weights as $key => $font_weight) {
2015
  ?>
2016
- <option value="<?php echo $key; ?>" <?php echo (($row->album_extended_desc_font_weight == $key) ? 'selected="selected"' : ''); ?>><?php echo $font_weight; ?></option>
2017
  <?php
2018
  }
2019
  ?>
@@ -2021,13 +2021,13 @@ class BWGViewThemes_bwg {
2021
  </td>
2022
  </tr>
2023
  <tr>
2024
- <td class="spider_label"><label for="album_extended_desc_more_size">Description more size: </label></td>
2025
  <td>
2026
  <input type="text" name="album_extended_desc_more_size" id="album_extended_desc_more_size" value="<?php echo $row->album_extended_desc_more_size; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
2027
  </td>
2028
  </tr>
2029
  <tr>
2030
- <td class="spider_label"><label for="album_extended_desc_more_color">Description more color: </label></td>
2031
  <td>
2032
  <input type="text" name="album_extended_desc_more_color" id="album_extended_desc_more_color" value="<?php echo $row->album_extended_desc_more_color; ?>" class="color"/>
2033
  </td>
@@ -2042,26 +2042,26 @@ class BWGViewThemes_bwg {
2042
  <table style="clear:both;">
2043
  <tbody>
2044
  <tr>
2045
- <td class="spider_label"><label for="blog_style_bg_color">Background color: </label></td>
2046
  <td>
2047
  <input type="text" name="blog_style_bg_color" id="blog_style_bg_color" value="<?php echo $row->blog_style_bg_color; ?>" class="color"/>
2048
  </td>
2049
  </tr>
2050
  <tr>
2051
- <td class="spider_label"><label for="blog_style_transparent">Background transparency: </label></td>
2052
  <td>
2053
  <input type="text" name="blog_style_transparent" id="blog_style_transparent" value="<?php echo $row->blog_style_transparent; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> %
2054
- <div class="spider_description">Value must be between 0 to 100.</div>
2055
  </td>
2056
  </tr>
2057
  <tr>
2058
- <td class="spider_label"><label for="blog_style_align0">Alignment: </label></td>
2059
  <td>
2060
  <select name="blog_style_align" id="blog_style_align">
2061
  <?php
2062
  foreach ($aligns as $key => $align) {
2063
  ?>
2064
- <option value="<?php echo $key; ?>" <?php echo (($row->blog_style_align == $key) ? 'selected="selected"' : ''); ?>><?php echo $align; ?></option>
2065
  <?php
2066
  }
2067
  ?>
@@ -2069,24 +2069,24 @@ class BWGViewThemes_bwg {
2069
  </td>
2070
  </tr>
2071
  <tr>
2072
- <td class="spider_label"><label for="blog_style_margin">Margin: </label></td>
2073
  <td>
2074
  <input type="text" name="blog_style_margin" id="blog_style_margin" value="<?php echo $row->blog_style_margin; ?>" class="spider_char_input"/>
2075
- <div class="spider_description">Use CSS type values.</div>
2076
  </td>
2077
  </tr>
2078
  <tr>
2079
- <td class="spider_label"><label for="blog_style_padding">Padding: </label></td>
2080
  <td>
2081
  <input type="text" name="blog_style_padding" id="blog_style_padding" value="<?php echo $row->blog_style_padding; ?>" class="spider_char_input"/>
2082
- <div class="spider_description">Use CSS type values.</div>
2083
  </td>
2084
  </tr>
2085
  <tr>
2086
- <td class="spider_label"><label for="blog_style_box_shadow">Box shadow: </label></td>
2087
  <td>
2088
  <input type="text" name="blog_style_box_shadow" id="blog_style_box_shadow" value="<?php echo $row->blog_style_box_shadow; ?>" class="spider_box_input"/>
2089
- <div class="spider_description">Use CSS type values.</div>
2090
  </td>
2091
  </tr>
2092
  </tbody>
@@ -2096,7 +2096,7 @@ class BWGViewThemes_bwg {
2096
  <table style="clear:both;">
2097
  <tbody>
2098
  <tr>
2099
- <td class="spider_label"><label for="blog_style_img_font_family">Font family: </label></td>
2100
  <td>
2101
  <select name="blog_style_img_font_family" id="blog_style_img_font_family">
2102
  <?php
@@ -2110,31 +2110,31 @@ class BWGViewThemes_bwg {
2110
  </td>
2111
  </tr>
2112
  <tr>
2113
- <td class="spider_label"><label for="blog_style_img_font_size">Font size: </label></td>
2114
  <td>
2115
  <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
2116
  </td>
2117
  </tr>
2118
  <tr>
2119
- <td class="spider_label"><label for="blog_style_img_font_color">Font color: </label></td>
2120
  <td>
2121
  <input type="text" name="blog_style_img_font_color" id="blog_style_img_font_color" value="<?php echo $row->blog_style_img_font_color; ?>" class="color"/>
2122
  </td>
2123
  </tr>
2124
  <tr>
2125
- <td class="spider_label"><label for="blog_style_border_width">Border width: </label></td>
2126
  <td>
2127
  <input type="text" name="blog_style_border_width" id="blog_style_border_width" value="<?php echo $row->blog_style_border_width; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
2128
  </td>
2129
  </tr>
2130
  <tr>
2131
- <td class="spider_label"><label for="blog_style_border_style">Border style: </label></td>
2132
  <td>
2133
  <select name="blog_style_border_style" id="blog_style_border_style">
2134
  <?php
2135
  foreach ($border_styles as $key => $border_style) {
2136
  ?>
2137
- <option value="<?php echo $key; ?>" <?php echo (($row->blog_style_border_style == $key) ? 'selected="selected"' : ''); ?>><?php echo $border_style; ?></option>
2138
  <?php
2139
  }
2140
  ?>
@@ -2142,16 +2142,16 @@ class BWGViewThemes_bwg {
2142
  </td>
2143
  </tr>
2144
  <tr>
2145
- <td class="spider_label"><label for="blog_style_border_color">Border color: </label></td>
2146
  <td>
2147
  <input type="text" name="blog_style_border_color" id="blog_style_border_color" value="<?php echo $row->blog_style_border_color; ?>" class="color" />
2148
  </td>
2149
  </tr>
2150
  <tr>
2151
- <td class="spider_label"><label for="blog_style_border_radius">Border radius: </label></td>
2152
  <td>
2153
  <input type="text" name="blog_style_border_radius" id="blog_style_border_radius" value="<?php echo $row->blog_style_border_radius; ?>" class="spider_char_input"/>
2154
- <div class="spider_description">Use CSS type values.</div>
2155
  </td>
2156
  </tr>
2157
  </tbody>
@@ -2161,38 +2161,38 @@ class BWGViewThemes_bwg {
2161
  <table style="clear:both;">
2162
  <tbody>
2163
  <tr>
2164
- <td class="spider_label"><label for="blog_style_share_buttons_margin">Buttons and title margin: </label></td>
2165
  <td>
2166
  <input type="text" name="blog_style_share_buttons_margin" id="blog_style_share_buttons_margin" value="<?php echo $row->blog_style_share_buttons_margin; ?>" class="spider_char_input"/>
2167
- <div class="spider_description">Use CSS type values.</div>
2168
  </td>
2169
  </tr>
2170
  <tr>
2171
- <td class="spider_label"><label for="blog_style_share_buttons_font_size">Buttons size: </label></td>
2172
  <td>
2173
  <input type="text" name="blog_style_share_buttons_font_size" id="blog_style_share_buttons_font_size" value="<?php echo $row->blog_style_share_buttons_font_size; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
2174
  </td>
2175
  </tr>
2176
  <tr>
2177
- <td class="spider_label"><label for="blog_style_share_buttons_color">Buttons color: </label></td>
2178
  <td>
2179
  <input type="text" name="blog_style_share_buttons_color" id="blog_style_share_buttons_color" value="<?php echo $row->blog_style_share_buttons_color; ?>" class="color"/>
2180
  </td>
2181
  </tr>
2182
  <tr>
2183
- <td class="spider_label"><label for="blog_style_share_buttons_border_width">Buttons and title border width: </label></td>
2184
  <td>
2185
  <input type="text" name="blog_style_share_buttons_border_width" id="blog_style_share_buttons_border_width" value="<?php echo $row->blog_style_share_buttons_border_width; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
2186
  </td>
2187
  </tr>
2188
  <tr>
2189
- <td class="spider_label"><label for="blog_style_share_buttons_border_style">Buttons and title border style: </label></td>
2190
  <td>
2191
  <select name="blog_style_share_buttons_border_style" id="blog_style_share_buttons_border_style">
2192
  <?php
2193
  foreach ($border_styles as $key => $border_style) {
2194
  ?>
2195
- <option value="<?php echo $key; ?>" <?php echo (($row->blog_style_share_buttons_border_style == $key) ? 'selected="selected"' : ''); ?>><?php echo $border_style; ?></option>
2196
  <?php
2197
  }
2198
  ?>
@@ -2200,39 +2200,39 @@ class BWGViewThemes_bwg {
2200
  </td>
2201
  </tr>
2202
  <tr>
2203
- <td class="spider_label"><label for="blog_style_share_buttons_border_color">Buttons and title border color: </label></td>
2204
  <td>
2205
  <input type="text" name="blog_style_share_buttons_border_color" id="blog_style_share_buttons_border_color" value="<?php echo $row->blog_style_share_buttons_border_color; ?>" class="color"/>
2206
  </td>
2207
  </tr>
2208
  <tr>
2209
- <td class="spider_label"><label for="blog_style_share_buttons_border_radius">Buttons and title border radius: </label></td>
2210
  <td>
2211
  <input type="text" name="blog_style_share_buttons_border_radius" id="blog_style_share_buttons_border_radius" value="<?php echo $row->blog_style_share_buttons_border_radius; ?>" class="spider_char_input"/>
2212
- <div class="spider_description">Use CSS type values.</div>
2213
  </td>
2214
  </tr>
2215
  <tr>
2216
- <td class="spider_label"><label for="blog_style_share_buttons_bg_color">Buttons and title background color: </label></td>
2217
  <td>
2218
  <input type="text" name="blog_style_share_buttons_bg_color" id="blog_style_share_buttons_bg_color" value="<?php echo $row->blog_style_share_buttons_bg_color; ?>" class="color"/>
2219
  </td>
2220
  </tr>
2221
  <tr>
2222
- <td class="spider_label"><label for="blog_style_share_buttons_bg_transparent">Buttons and title background transparency: </label></td>
2223
  <td>
2224
  <input type="text" name="blog_style_share_buttons_bg_transparent" id="blog_style_share_buttons_bg_transparent" value="<?php echo $row->blog_style_share_buttons_bg_transparent; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> %
2225
- <div class="spider_description">Value must be between 0 to 100.</div>
2226
  </td>
2227
  </tr>
2228
  <tr>
2229
- <td class="spider_label"><label for="blog_style_share_buttons_align0">Buttons or title alignment: </label></td>
2230
  <td>
2231
  <select name="blog_style_share_buttons_align" id="blog_style_share_buttons_align">
2232
  <?php
2233
  foreach ($aligns as $key => $align) {
2234
  ?>
2235
- <option value="<?php echo $key; ?>" <?php echo (($row->blog_style_share_buttons_align == $key) ? 'selected="selected"' : ''); ?>><?php echo $align; ?></option>
2236
  <?php
2237
  }
2238
  ?>
@@ -2249,79 +2249,79 @@ class BWGViewThemes_bwg {
2249
  <table style="clear:both;">
2250
  <tbody>
2251
  <tr id="lightbox_overlay_bg">
2252
- <td class="spider_label"><label for="lightbox_overlay_bg_color">Overlay background color: </label></td>
2253
  <td>
2254
  <input type="text" name="lightbox_overlay_bg_color" id="lightbox_overlay_bg_color" value="<?php echo $row->lightbox_overlay_bg_color; ?>" class="color"/>
2255
  </td>
2256
  </tr>
2257
  <tr id="lightbox_overlay">
2258
- <td class="spider_label"><label for="lightbox_overlay_bg_transparent">Overlay background transparency: </label></td>
2259
  <td>
2260
  <input type="text" name="lightbox_overlay_bg_transparent" id="lightbox_overlay_bg_transparent" value="<?php echo $row->lightbox_overlay_bg_transparent; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> %
2261
- <div class="spider_description">Value must be between 0 to 100.</div>
2262
  </td>
2263
  </tr>
2264
  <tr id="lightbox_bg">
2265
- <td class="spider_label"><label for="lightbox_bg_color">Lightbox background color: </label></td>
2266
  <td>
2267
  <input type="text" name="lightbox_bg_color" id="lightbox_bg_color" value="<?php echo $row->lightbox_bg_color; ?>" class="color"/>
2268
  </td>
2269
  </tr>
2270
  <tr id="lightbox_cntrl1">
2271
- <td class="spider_label"><label for="lightbox_ctrl_btn_height">Control buttons height: </label></td>
2272
  <td>
2273
  <input type="text" name="lightbox_ctrl_btn_height" id="lightbox_ctrl_btn_height" value="<?php echo $row->lightbox_ctrl_btn_height; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
2274
  </td>
2275
  </tr>
2276
  <tr id="lightbox_cntrl2">
2277
- <td class="spider_label"><label for="lightbox_ctrl_btn_margin_top">Control buttons margin (top): </label></td>
2278
  <td>
2279
  <input type="text" name="lightbox_ctrl_btn_margin_top" id="lightbox_ctrl_btn_margin_top" value="<?php echo $row->lightbox_ctrl_btn_margin_top; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
2280
  </td>
2281
  </tr>
2282
  <tr id="lightbox_cntrl3">
2283
- <td class="spider_label"><label for="lightbox_ctrl_btn_margin_left">Control buttons margin (left): </label></td>
2284
  <td>
2285
  <input type="text" name="lightbox_ctrl_btn_margin_left" id="lightbox_ctrl_btn_margin_left" value="<?php echo $row->lightbox_ctrl_btn_margin_left; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
2286
  </td>
2287
  </tr>
2288
  <tr id="lightbox_cntrl9">
2289
- <td class="spider_label"><label>Control buttons position: </label></td>
2290
  <td>
2291
  <input type="radio" name="lightbox_ctrl_btn_pos" id="lightbox_ctrl_btn_pos1" value="top"<?php if ($row->lightbox_ctrl_btn_pos == "top") echo 'checked="checked"'; ?> />
2292
- <label for="lightbox_ctrl_btn_pos1" id="lightbox_ctrl_btn_pos1_lbl">Top</label>
2293
  <input type="radio" name="lightbox_ctrl_btn_pos" id="lightbox_ctrl_btn_pos0" value="bottom"<?php if ($row->lightbox_ctrl_btn_pos == "bottom") echo 'checked="checked"'; ?> />
2294
- <label for="lightbox_ctrl_btn_pos0" id="lightbox_ctrl_btn_pos0_lbl">Bottom</label>
2295
  </td>
2296
  </tr>
2297
  <tr id="lightbox_cntrl8">
2298
- <td class="spider_label"><label for="lightbox_ctrl_cont_bg_color">Control buttons background color: </label></td>
2299
  <td>
2300
  <input type="text" name="lightbox_ctrl_cont_bg_color" id="lightbox_ctrl_cont_bg_color" value="<?php echo $row->lightbox_ctrl_cont_bg_color; ?>" class="color"/>
2301
  </td>
2302
  </tr>
2303
  <tr id="lightbox_cntrl5">
2304
- <td class="spider_label"><label for="lightbox_ctrl_cont_border_radius">Control buttons container border radius: </label></td>
2305
  <td>
2306
  <input type="text" name="lightbox_ctrl_cont_border_radius" id="lightbox_ctrl_cont_border_radius" value="<?php echo $row->lightbox_ctrl_cont_border_radius; ?>" class="spider_char_input"/>
2307
- <div class="spider_description">Use CSS type values.</div>
2308
  </td>
2309
  </tr>
2310
  <tr id="lightbox_cntrl6">
2311
- <td class="spider_label"><label for="lightbox_ctrl_cont_transparent">Control buttons container background transparency: </label></td>
2312
  <td>
2313
  <input type="text" name="lightbox_ctrl_cont_transparent" id="lightbox_ctrl_cont_transparent" value="<?php echo $row->lightbox_ctrl_cont_transparent; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> %
2314
- <div class="spider_description">Value must be between 0 to 100.</div>
2315
  </td>
2316
  </tr>
2317
  <tr id="lightbox_cntrl10">
2318
- <td class="spider_label"><label for="lightbox_ctrl_btn_align0">Control buttons alignment: </label></td>
2319
  <td>
2320
  <select name="lightbox_ctrl_btn_align" id="lightbox_ctrl_btn_align">
2321
  <?php
2322
  foreach ($aligns as $key => $align) {
2323
  ?>
2324
- <option value="<?php echo $key; ?>" <?php echo (($row->lightbox_ctrl_btn_align == $key) ? 'selected="selected"' : ''); ?>><?php echo $align; ?></option>
2325
  <?php
2326
  }
2327
  ?>
@@ -2329,52 +2329,52 @@ class BWGViewThemes_bwg {
2329
  </td>
2330
  </tr>
2331
  <tr id="lightbox_cntrl7">
2332
- <td class="spider_label"><label for="lightbox_ctrl_btn_color">Control buttons color: </label></td>
2333
  <td>
2334
  <input type="text" name="lightbox_ctrl_btn_color" id="lightbox_ctrl_btn_color" value="<?php echo $row->lightbox_ctrl_btn_color; ?>" class="color"/>
2335
  </td>
2336
  </tr>
2337
  <tr id="lightbox_cntrl4">
2338
- <td class="spider_label"><label for="lightbox_ctrl_btn_transparent">Control buttons transparency: </label></td>
2339
  <td>
2340
  <input type="text" name="lightbox_ctrl_btn_transparent" id="lightbox_ctrl_btn_transparent" value="<?php echo $row->lightbox_ctrl_btn_transparent; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> %
2341
- <div class="spider_description">Value must be between 0 to 100.</div>
2342
  </td>
2343
  </tr>
2344
  <tr id="lightbox_toggle1">
2345
- <td class="spider_label"><label for="lightbox_toggle_btn_height">Toggle button height: </label></td>
2346
  <td>
2347
  <input type="text" name="lightbox_toggle_btn_height" id="lightbox_toggle_btn_height" value="<?php echo $row->lightbox_toggle_btn_height; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
2348
  </td>
2349
  </tr>
2350
  <tr id="lightbox_toggle2">
2351
- <td class="spider_label"><label for="lightbox_toggle_btn_width">Toggle button width: </label></td>
2352
  <td>
2353
  <input type="text" name="lightbox_toggle_btn_width" id="lightbox_toggle_btn_width" value="<?php echo $row->lightbox_toggle_btn_width; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
2354
  </td>
2355
  </tr>
2356
  <tr id="lightbox_close1">
2357
- <td class="spider_label"><label for="lightbox_close_btn_border_radius">Close button border radius: </label>
2358
  </td>
2359
  <td>
2360
  <input type="text" name="lightbox_close_btn_border_radius" id="lightbox_close_btn_border_radius" value="<?php echo $row->lightbox_close_btn_border_radius; ?>" class="spider_char_input"/>
2361
- <div class="spider_description">Use CSS type values.</div>
2362
  </td>
2363
  </tr>
2364
  <tr id="lightbox_close2">
2365
- <td class="spider_label"><label for="lightbox_close_btn_border_width">Close button border width: </label></td>
2366
  <td>
2367
  <input type="text" name="lightbox_close_btn_border_width" id="lightbox_close_btn_border_width" value="<?php echo $row->lightbox_close_btn_border_width; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
2368
  </td>
2369
  </tr>
2370
  <tr id="lightbox_close12">
2371
- <td class="spider_label"><label for="lightbox_close_btn_border_style">Close button border style: </label></td>
2372
  <td>
2373
  <select name="lightbox_close_btn_border_style" id="lightbox_close_btn_border_style">
2374
  <?php
2375
  foreach ($border_styles as $key => $border_style) {
2376
  ?>
2377
- <option value="<?php echo $key; ?>" <?php echo (($row->lightbox_close_btn_border_style == $key) ? 'selected="selected"' : ''); ?>><?php echo $border_style; ?></option>
2378
  <?php
2379
  }
2380
  ?>
@@ -2382,74 +2382,74 @@ class BWGViewThemes_bwg {
2382
  </td>
2383
  </tr>
2384
  <tr id="lightbox_close13">
2385
- <td class="spider_label"><label for="lightbox_close_btn_border_color">Close button border color: </label></td>
2386
  <td>
2387
  <input type="text" name="lightbox_close_btn_border_color" id="lightbox_close_btn_border_color" value="<?php echo $row->lightbox_close_btn_border_color; ?>" class="color"/>
2388
  </td>
2389
  </tr>
2390
  <tr id="lightbox_close3">
2391
- <td class="spider_label"><label for="lightbox_close_btn_box_shadow">Close button box shadow: </label></td>
2392
  <td>
2393
  <input type="text" name="lightbox_close_btn_box_shadow" id="lightbox_close_btn_box_shadow" value="<?php echo $row->lightbox_close_btn_box_shadow; ?>" class="spider_box_input"/>
2394
- <div class="spider_description">Use CSS type values.</div>
2395
  </td>
2396
  </tr>
2397
  <tr id="lightbox_close11">
2398
- <td class="spider_label"><label for="lightbox_close_btn_bg_color">Close button background color: </label></td>
2399
  <td>
2400
  <input type="text" name="lightbox_close_btn_bg_color" id="lightbox_close_btn_bg_color" value="<?php echo $row->lightbox_close_btn_bg_color; ?>" class="color"/>
2401
  </td>
2402
  </tr>
2403
  <tr id="lightbox_close9">
2404
- <td class="spider_label"><label for="lightbox_close_btn_transparent">Close button transparency: </label></td>
2405
  <td>
2406
  <input type="text" name="lightbox_close_btn_transparent" id="lightbox_close_btn_transparent" value="<?php echo $row->lightbox_close_btn_transparent; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> %
2407
  </td>
2408
  </tr>
2409
  <tr id="lightbox_close5">
2410
- <td class="spider_label"><label for="lightbox_close_btn_width">Close button width: </label></td>
2411
  <td>
2412
  <input type="text" name="lightbox_close_btn_width" id="lightbox_close_btn_width" value="<?php echo $row->lightbox_close_btn_width; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
2413
  </td>
2414
  </tr>
2415
  <tr id="lightbox_close6">
2416
- <td class="spider_label"><label for="lightbox_close_btn_height">Close button height: </label></td>
2417
  <td>
2418
  <input type="text" name="lightbox_close_btn_height" id="lightbox_close_btn_height" value="<?php echo $row->lightbox_close_btn_height; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
2419
  </td>
2420
  </tr>
2421
  <tr id="lightbox_close7">
2422
- <td class="spider_label"><label for="lightbox_close_btn_top">Close button top: </label></td>
2423
  <td>
2424
  <input type="text" name="lightbox_close_btn_top" id="lightbox_close_btn_top" value="<?php echo $row->lightbox_close_btn_top; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
2425
  </td>
2426
  </tr>
2427
  <tr id="lightbox_close8">
2428
- <td class="spider_label"><label for="lightbox_close_btn_right">Close button right: </label></td>
2429
  <td>
2430
  <input type="text" name="lightbox_close_btn_right" id="lightbox_close_btn_right" value="<?php echo $row->lightbox_close_btn_right; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
2431
  </td>
2432
  </tr>
2433
  <tr id="lightbox_close4">
2434
- <td class="spider_label"><label for="lightbox_close_btn_size">Close button size: </label></td>
2435
  <td>
2436
  <input type="text" name="lightbox_close_btn_size" id="lightbox_close_btn_size" value="<?php echo $row->lightbox_close_btn_size; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
2437
  </td>
2438
  </tr>
2439
  <tr id="lightbox_close14">
2440
- <td class="spider_label"><label for="lightbox_close_btn_color">Close button color: </label></td>
2441
  <td>
2442
  <input type="text" name="lightbox_close_btn_color" id="lightbox_close_btn_color" value="<?php echo $row->lightbox_close_btn_color; ?>" class="color"/>
2443
  </td>
2444
  </tr>
2445
  <tr id="lightbox_close10">
2446
- <td class="spider_label"><label for="lightbox_close_btn_full_color">Fullscreen close button color: </label></td>
2447
  <td>
2448
  <input type="text" name="lightbox_close_btn_full_color" id="lightbox_close_btn_full_color" value="<?php echo $row->lightbox_close_btn_full_color; ?>" class="color"/>
2449
  </td>
2450
  </tr>
2451
  <tr id="lightbox_comment24">
2452
- <td class="spider_label"><label for="lightbox_comment_share_button_color">Share buttons color: </label></td>
2453
  <td>
2454
  <input type="text" name="lightbox_comment_share_button_color" id="lightbox_comment_share_button_color" value="<?php echo $row->lightbox_comment_share_button_color; ?>" class="color" />
2455
  </td>
@@ -2461,13 +2461,13 @@ class BWGViewThemes_bwg {
2461
  <table style="clear:both;">
2462
  <tbody>
2463
  <tr id="lightbox_right_left11">
2464
- <td class="spider_label"><label for="lightbox_rl_btn_style">Right, left buttons style: </label></td>
2465
  <td>
2466
  <select name="lightbox_rl_btn_style" id="lightbox_rl_btn_style" class="spider_int_input">
2467
  <?php
2468
  foreach ($button_styles as $key => $button_style) {
2469
  ?>
2470
- <option value="<?php echo $key; ?>" <?php echo (($row->lightbox_rl_btn_style == $key) ? 'selected="selected"' : ''); ?>><?php echo $button_style; ?></option>
2471
  <?php
2472
  }
2473
  ?>
@@ -2475,75 +2475,75 @@ class BWGViewThemes_bwg {
2475
  </td>
2476
  </tr>
2477
  <tr id="lightbox_right_left7">
2478
- <td class="spider_label"><label for="lightbox_rl_btn_bg_color">Right, left buttons background color: </label></td>
2479
  <td>
2480
  <input type="text" name="lightbox_rl_btn_bg_color" id="lightbox_rl_btn_bg_color" value="<?php echo $row->lightbox_rl_btn_bg_color; ?>" class="color"/>
2481
  </td>
2482
  </tr>
2483
  <tr>
2484
- <td class="spider_label"><label for="lightbox_rl_btn_transparent">Right, left buttons transparency: </label></td>
2485
  <td>
2486
  <input type="text" name="lightbox_rl_btn_transparent" id="lightbox_rl_btn_transparent" value="<?php echo $row->lightbox_rl_btn_transparent; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> %
2487
  </td>
2488
  </tr>
2489
  <tr id="lightbox_right_left3">
2490
- <td class="spider_label"><label for="lightbox_rl_btn_box_shadow">Right, left buttons box shadow: </label></td>
2491
  <td>
2492
  <input type="text" name="lightbox_rl_btn_box_shadow" id="lightbox_rl_btn_box_shadow" value="<?php echo $row->lightbox_rl_btn_box_shadow; ?>" class="spider_box_input"/>
2493
- <div class="spider_description">Use CSS type values.</div>
2494
  </td>
2495
  </tr>
2496
  <tr id="lightbox_right_left4">
2497
- <td class="spider_label"><label for="lightbox_rl_btn_height">Right, left buttons height: </label></td>
2498
  <td>
2499
  <input type="text" name="lightbox_rl_btn_height" id="lightbox_rl_btn_height" value="<?php echo $row->lightbox_rl_btn_height; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
2500
  </td>
2501
  </tr>
2502
  <tr id="lightbox_right_left5">
2503
- <td class="spider_label"><label for="lightbox_rl_btn_width">Right, left buttons width: </label></td>
2504
  <td>
2505
  <input type="text" name="lightbox_rl_btn_width" id="lightbox_rl_btn_width" value="<?php echo $row->lightbox_rl_btn_width; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
2506
  </td>
2507
  </tr>
2508
  <tr id="lightbox_right_left6">
2509
- <td class="spider_label"><label for="lightbox_rl_btn_size">Right, left buttons size: </label></td>
2510
  <td>
2511
  <input type="text" name="lightbox_rl_btn_size" id="lightbox_rl_btn_size" value="<?php echo $row->lightbox_rl_btn_size; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
2512
  </td>
2513
  </tr>
2514
  <tr id="lightbox_close15">
2515
- <td class="spider_label"><label for="lightbox_close_rl_btn_hover_color">Right, left, close buttons hover color: </label></td>
2516
  <td>
2517
  <input type="text" name="lightbox_close_rl_btn_hover_color" id="lightbox_close_rl_btn_hover_color" value="<?php echo $row->lightbox_close_rl_btn_hover_color; ?>" class="color" />
2518
  </td>
2519
  </tr>
2520
  <tr id="lightbox_right_left10">
2521
- <td class="spider_label"><label for="lightbox_rl_btn_color">Right, left buttons color: </label></td>
2522
  <td>
2523
  <input type="text" name="lightbox_rl_btn_color" id="lightbox_rl_btn_color" value="<?php echo $row->lightbox_rl_btn_color; ?>" class="color"/>
2524
  </td>
2525
  </tr>
2526
  <tr id="lightbox_right_left1">
2527
- <td class="spider_label"><label for="lightbox_rl_btn_border_radius">Right, left buttons border radius: </label></td>
2528
  <td>
2529
  <input type="text" name="lightbox_rl_btn_border_radius" id="lightbox_rl_btn_border_radius" value="<?php echo $row->lightbox_rl_btn_border_radius; ?>" class="spider_char_input"/>
2530
- <div class="spider_description">Use CSS type values.</div>
2531
  </td>
2532
  </tr>
2533
  <tr id="lightbox_right_left2">
2534
- <td class="spider_label"><label for="lightbox_rl_btn_border_width">Right, left buttons border width: </label></td>
2535
  <td>
2536
  <input type="text" name="lightbox_rl_btn_border_width" id="lightbox_rl_btn_border_width" value="<?php echo $row->lightbox_rl_btn_border_width; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
2537
  </td>
2538
  </tr>
2539
  <tr id="lightbox_right_left8">
2540
- <td class="spider_label"><label for="lightbox_rl_btn_border_style">Right, left buttons border style: </label></td>
2541
  <td>
2542
  <select name="lightbox_rl_btn_border_style" id="lightbox_rl_btn_border_style">
2543
  <?php
2544
  foreach ($border_styles as $key => $border_style) {
2545
  ?>
2546
- <option value="<?php echo $key; ?>" <?php echo (($row->lightbox_rl_btn_border_style == $key) ? 'selected="selected"' : ''); ?>><?php echo $border_style; ?></option>
2547
  <?php
2548
  }
2549
  ?>
@@ -2551,43 +2551,43 @@ class BWGViewThemes_bwg {
2551
  </td>
2552
  </tr>
2553
  <tr id="lightbox_right_left9">
2554
- <td class="spider_label"><label for="lightbox_rl_btn_border_color">Right, left buttons border color: </label></td>
2555
  <td>
2556
  <input type="text" name="lightbox_rl_btn_border_color" id="lightbox_rl_btn_border_color" value="<?php echo $row->lightbox_rl_btn_border_color; ?>" class="color"/>
2557
  </td>
2558
  </tr>
2559
  <tr id="lightbox_filmstrip12">
2560
- <td class="spider_label"><label>Filmstrip position: </label></td>
2561
  <td>
2562
  <select name="lightbox_filmstrip_pos" id="lightbox_filmstrip_pos">
2563
- <option value="top" <?php echo (($row->lightbox_filmstrip_pos == "top") ? 'selected="selected"' : ''); ?>>Top</option>
2564
- <option value="right" <?php echo (($row->lightbox_filmstrip_pos == "right") ? 'selected="selected"' : ''); ?>>Right</option>
2565
- <option value="bottom" <?php echo (($row->lightbox_filmstrip_pos == "bottom") ? 'selected="selected"' : ''); ?>>Bottom</option>
2566
- <option value="left" <?php echo (($row->lightbox_filmstrip_pos == "left") ? 'selected="selected"' : ''); ?>>Left</option>
2567
  </select>
2568
  </td>
2569
  </tr>
2570
  <tr id="lightbox_filmstrip2">
2571
- <td class="spider_label"><label for="lightbox_filmstrip_thumb_margin">Filmstrip thumbnail margin: </label></td>
2572
  <td>
2573
  <input type="text" name="lightbox_filmstrip_thumb_margin" id="lightbox_filmstrip_thumb_margin" value="<?php echo $row->lightbox_filmstrip_thumb_margin; ?>" class="spider_char_input"/>
2574
- <div class="spider_description">Use CSS type values.</div>
2575
  </td>
2576
  </tr>
2577
  <tr id="lightbox_filmstrip3">
2578
- <td class="spider_label"><label for="lightbox_filmstrip_thumb_border_width">Filmstrip thumbnail border width: </label></td>
2579
  <td>
2580
  <input type="text" name="lightbox_filmstrip_thumb_border_width" id="lightbox_filmstrip_thumb_border_width" value="<?php echo $row->lightbox_filmstrip_thumb_border_width; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
2581
  </td>
2582
  </tr>
2583
  <tr id="lightbox_filmstrip9">
2584
- <td class="spider_label"><label for="lightbox_filmstrip_thumb_border_style">Filmstrip thumbnail border style: </label></td>
2585
  <td>
2586
  <select name="lightbox_filmstrip_thumb_border_style" id="lightbox_filmstrip_thumb_border_style">
2587
  <?php
2588
  foreach ($border_styles as $key => $border_style) {
2589
  ?>
2590
- <option value="<?php echo $key; ?>" <?php echo (($row->lightbox_filmstrip_thumb_border_style == $key) ? 'selected="selected"' : ''); ?>><?php echo $border_style; ?></option>
2591
  <?php
2592
  }
2593
  ?>
@@ -2595,72 +2595,72 @@ class BWGViewThemes_bwg {
2595
  </td>
2596
  </tr>
2597
  <tr id="lightbox_filmstrip10">
2598
- <td class="spider_label"><label for="lightbox_filmstrip_thumb_border_color">Filmstrip thumbnail border color: </label></td>
2599
  <td>
2600
  <input type="text" name="lightbox_filmstrip_thumb_border_color" id="lightbox_filmstrip_thumb_border_color" value="<?php echo $row->lightbox_filmstrip_thumb_border_color; ?>" class="color" />
2601
  </td>
2602
  </tr>
2603
  <tr id="lightbox_filmstrip4">
2604
- <td class="spider_label"><label for="lightbox_filmstrip_thumb_border_radius">Filmstrip thumbnail border radius: </label></td>
2605
  <td>
2606
  <input type="text" name="lightbox_filmstrip_thumb_border_radius" id="lightbox_filmstrip_thumb_border_radius" value="<?php echo $row->lightbox_filmstrip_thumb_border_radius; ?>" class="spider_char_input"/>
2607
- <div class="spider_description">Use CSS type values.</div>
2608
  </td>
2609
  </tr>
2610
  <tr id="lightbox_filmstrip6">
2611
- <td class="spider_label"><label for="lightbox_filmstrip_thumb_active_border_width">Filmstrip thumbnail active border width: </label></td>
2612
  <td>
2613
  <input type="text" name="lightbox_filmstrip_thumb_active_border_width" id="lightbox_filmstrip_thumb_active_border_width" value="<?php echo $row->lightbox_filmstrip_thumb_active_border_width; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
2614
  </td>
2615
  </tr>
2616
  <tr id="lightbox_filmstrip11">
2617
- <td class="spider_label"> <label for="lightbox_filmstrip_thumb_active_border_color">Filmstrip thumbnail active border color:</label></td>
2618
  <td>
2619
  <input type="text" name="lightbox_filmstrip_thumb_active_border_color" id="lightbox_filmstrip_thumb_active_border_color" value="<?php echo $row->lightbox_filmstrip_thumb_active_border_color; ?>" class="color"/>
2620
  </td>
2621
  </tr>
2622
  <tr id="lightbox_filmstrip5">
2623
- <td class="spider_label"><label for="lightbox_filmstrip_thumb_deactive_transparent">Filmstrip thumbnail deactive transparency: </label></td>
2624
  <td>
2625
  <input type="text" name="lightbox_filmstrip_thumb_deactive_transparent" id="lightbox_filmstrip_thumb_deactive_transparent" value="<?php echo $row->lightbox_filmstrip_thumb_deactive_transparent; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> %
2626
- <div class="spider_description">Value must be between 0 to 100.</div>
2627
  </td>
2628
  </tr>
2629
  <tr id="lightbox_filmstrip1">
2630
- <td class="spider_label"><label for="lightbox_filmstrip_rl_btn_size">Filmstrip right, left buttons size: </label></td>
2631
  <td>
2632
  <input type="text" name="lightbox_filmstrip_rl_btn_size" id="lightbox_filmstrip_rl_btn_size" value="<?php echo $row->lightbox_filmstrip_rl_btn_size; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
2633
  </td>
2634
  </tr>
2635
  <tr id="lightbox_filmstrip7">
2636
- <td class="spider_label"><label for="lightbox_filmstrip_rl_btn_color">Filmstrip right, left buttons color: </label></td>
2637
  <td>
2638
  <input type="text" name="lightbox_filmstrip_rl_btn_color" id="lightbox_filmstrip_rl_btn_color" value="<?php echo $row->lightbox_filmstrip_rl_btn_color; ?>" class="color"/>
2639
  </td>
2640
  </tr>
2641
  <tr id="lightbox_filmstrip8">
2642
- <td class="spider_label"><label for="lightbox_filmstrip_rl_bg_color">Filmstrip right, left button background color:</label></td>
2643
  <td>
2644
  <input type="text" name="lightbox_filmstrip_rl_bg_color" id="lightbox_filmstrip_rl_bg_color" value="<?php echo $row->lightbox_filmstrip_rl_bg_color; ?>" class="color"/>
2645
  </td>
2646
  </tr>
2647
  <tr>
2648
- <td class="spider_label"><label for="lightbox_rate_pos1">Rating position: </label></td>
2649
  <td>
2650
  <input type="radio" name="lightbox_rate_pos" id="lightbox_rate_pos1" value="top" <?php if ($row->lightbox_rate_pos == "top") echo 'checked="checked"'; ?> />
2651
- <label for="lightbox_rate_pos1" id="lightbox_rate_pos1_lbl">Top</label>
2652
  <input type="radio" name="lightbox_rate_pos" id="lightbox_rate_pos0" value="bottom" <?php if ($row->lightbox_rate_pos == "bottom") echo 'checked="checked"'; ?> />
2653
- <label for="lightbox_rate_pos0" id="lightbox_rate_pos0_lbl">Bottom</label>
2654
  </td>
2655
  </tr>
2656
  <tr>
2657
- <td class="spider_label"><label for="lightbox_rate_align">Rating alignment: </label></td>
2658
  <td>
2659
  <select name="lightbox_rate_align" id="lightbox_rate_align">
2660
  <?php
2661
  foreach ($aligns as $key => $align) {
2662
  ?>
2663
- <option value="<?php echo $key; ?>" <?php echo (($row->lightbox_rate_align == $key) ? 'selected="selected"' : ''); ?>><?php echo $align; ?></option>
2664
  <?php
2665
  }
2666
  ?>
@@ -2668,13 +2668,13 @@ class BWGViewThemes_bwg {
2668
  </td>
2669
  </tr>
2670
  <tr>
2671
- <td class="spider_label"><label for="lightbox_rate_icon">Rating icon: </label></td>
2672
  <td>
2673
  <select name="lightbox_rate_icon" id="lightbox_rate_icon">
2674
  <?php
2675
  foreach ($rate_icons as $key => $rate_icon) {
2676
  ?>
2677
- <option value="<?php echo $key; ?>" <?php echo (($row->lightbox_rate_icon == $key) ? 'selected="selected"' : ''); ?>><?php echo $rate_icon; ?></option>
2678
  <?php
2679
  }
2680
  ?>
@@ -2682,53 +2682,53 @@ class BWGViewThemes_bwg {
2682
  </td>
2683
  </tr>
2684
  <tr>
2685
- <td class="spider_label"><label for="lightbox_rate_color">Rating color: </label></td>
2686
  <td>
2687
  <input type="text" name="lightbox_rate_color" id="lightbox_rate_color" value="<?php echo $row->lightbox_rate_color; ?>" class="color"/>
2688
  </td>
2689
  </tr>
2690
  <tr>
2691
- <td class="spider_label"><label for="lightbox_rate_hover_color">Rating hover color: </label></td>
2692
  <td>
2693
  <input type="text" name="lightbox_rate_hover_color" id="lightbox_rate_hover_color" value="<?php echo $row->lightbox_rate_hover_color; ?>" class="color"/>
2694
  </td>
2695
  </tr>
2696
  <tr>
2697
- <td class="spider_label"><label for="lightbox_rate_size">Rating size: </label></td>
2698
  <td>
2699
  <input type="text" name="lightbox_rate_size" id="lightbox_rate_size" value="<?php echo $row->lightbox_rate_size; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
2700
  </td>
2701
  </tr>
2702
  <tr>
2703
- <td class="spider_label"><label for="lightbox_rate_stars_count">Rating icon count: </label></td>
2704
  <td>
2705
  <input type="text" name="lightbox_rate_stars_count" id="lightbox_rate_stars_count" value="<?php echo $row->lightbox_rate_stars_count; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/>
2706
  </td>
2707
  </tr>
2708
  <tr>
2709
- <td class="spider_label"><label for="lightbox_rate_padding">Rating padding: </label></td>
2710
  <td>
2711
  <input type="text" name="lightbox_rate_padding" id="lightbox_rate_padding" value="<?php echo $row->lightbox_rate_padding; ?>" class="spider_char_input"/>
2712
- <div class="spider_description">Use CSS type values.</div>
2713
  </td>
2714
  </tr>
2715
  <tr>
2716
- <td class="spider_label"><label>Hit counter position: </label></td>
2717
  <td>
2718
  <input type="radio" name="lightbox_hit_pos" id="lightbox_hit_pos1" value="top" <?php if ($row->lightbox_hit_pos == "top") echo 'checked="checked"'; ?> />
2719
- <label for="lightbox_hit_pos1" id="lightbox_hit_pos1_lbl">Top</label>
2720
  <input type="radio" name="lightbox_hit_pos" id="lightbox_hit_pos0" value="bottom" <?php if ($row->lightbox_hit_pos == "bottom") echo 'checked="checked"'; ?> />
2721
- <label for="lightbox_hit_pos0" id="lightbox_hit_pos0_lbl">Bottom</label>
2722
  </td>
2723
  </tr>
2724
  <tr>
2725
- <td class="spider_label"><label for="lightbox_hit_align">Hit counter alignment: </label></td>
2726
  <td>
2727
  <select name="lightbox_hit_align" id="lightbox_hit_align">
2728
  <?php
2729
  foreach ($aligns as $key => $align) {
2730
  ?>
2731
- <option value="<?php echo $key; ?>" <?php echo (($row->lightbox_hit_align == $key) ? 'selected="selected"' : ''); ?>><?php echo $align; ?></option>
2732
  <?php
2733
  }
2734
  ?>
@@ -2736,32 +2736,32 @@ class BWGViewThemes_bwg {
2736
  </td>
2737
  </tr>
2738
  <tr>
2739
- <td class="spider_label"><label for="lightbox_hit_bg_color">Hit counter background color: </label></td>
2740
  <td>
2741
  <input type="text" name="lightbox_hit_bg_color" id="lightbox_hit_bg_color" value="<?php echo $row->lightbox_hit_bg_color; ?>" class="color"/>
2742
  </td>
2743
  </tr>
2744
  <tr>
2745
- <td class="spider_label"><label for="lightbox_hit_bg_transparent">Hit counter background transparency: </label></td>
2746
  <td>
2747
  <input type="text" name="lightbox_hit_bg_transparent" id="lightbox_hit_bg_transparent" value="<?php echo $row->lightbox_hit_bg_transparent; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> %
2748
- <div class="spider_description">Value must be between 0 to 100.</div>
2749
  </td>
2750
  </tr>
2751
  <tr>
2752
- <td class="spider_label"><label for="lightbox_hit_border_width">Hit counter border width: </label></td>
2753
  <td>
2754
  <input type="text" name="lightbox_hit_border_width" id="lightbox_hit_border_width" value="<?php echo $row->lightbox_hit_border_width; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
2755
  </td>
2756
  </tr>
2757
  <tr>
2758
- <td class="spider_label"><label for="lightbox_hit_border_style">Hit counter border style: </label></td>
2759
  <td>
2760
  <select name="lightbox_hit_border_style" id="lightbox_hit_border_style">
2761
  <?php
2762
  foreach ($border_styles as $key => $border_style) {
2763
  ?>
2764
- <option value="<?php echo $key; ?>" <?php echo (($row->lightbox_hit_border_style == $key) ? 'selected="selected"' : ''); ?>><?php echo $border_style; ?></option>
2765
  <?php
2766
  }
2767
  ?>
@@ -2769,40 +2769,40 @@ class BWGViewThemes_bwg {
2769
  </td>
2770
  </tr>
2771
  <tr>
2772
- <td class="spider_label"><label for="lightbox_hit_border_color">Hit counter border color: </label></td>
2773
  <td>
2774
  <input type="text" name="lightbox_hit_border_color" id="lightbox_hit_border_color" value="<?php echo $row->lightbox_hit_border_color; ?>" class="color"/>
2775
  </td>
2776
  </tr>
2777
  <tr>
2778
- <td class="spider_label"><label for="lightbox_hit_border_radius">Hit counter border radius: </label></td>
2779
  <td>
2780
  <input type="text" name="lightbox_hit_border_radius" id="lightbox_hit_border_radius" value="<?php echo $row->lightbox_hit_border_radius; ?>" class="spider_char_input"/>
2781
- <div class="spider_description">Use CSS type values.</div>
2782
  </td>
2783
  </tr>
2784
  <tr>
2785
- <td class="spider_label"><label for="lightbox_hit_padding">Hit counter padding: </label></td>
2786
  <td>
2787
  <input type="text" name="lightbox_hit_padding" id="lightbox_hit_padding" value="<?php echo $row->lightbox_hit_padding; ?>" class="spider_char_input"/>
2788
- <div class="spider_description">Use CSS type values.</div>
2789
  </td>
2790
  </tr>
2791
  <tr>
2792
- <td class="spider_label"><label for="lightbox_hit_margin">Hit counter margin: </label></td>
2793
  <td>
2794
  <input type="text" name="lightbox_hit_margin" id="lightbox_hit_margin" value="<?php echo $row->lightbox_hit_margin; ?>" class="spider_char_input"/>
2795
- <div class="spider_description">Use CSS type values.</div>
2796
  </td>
2797
  </tr>
2798
  <tr>
2799
- <td class="spider_label"><label for="lightbox_hit_color">Hit counter font color: </label></td>
2800
  <td>
2801
  <input type="text" name="lightbox_hit_color" id="lightbox_hit_color" value="<?php echo $row->lightbox_hit_color; ?>" class="color"/>
2802
  </td>
2803
  </tr>
2804
  <tr>
2805
- <td class="spider_label"><label for="lightbox_hit_font_style">Hit counter font family: </label></td>
2806
  <td>
2807
  <select name="lightbox_hit_font_style" id="lightbox_hit_font_style">
2808
  <?php
@@ -2816,13 +2816,13 @@ class BWGViewThemes_bwg {
2816
  </td>
2817
  </tr>
2818
  <tr>
2819
- <td class="spider_label"><label for="lightbox_hit_font_weight">Hit counter font weight: </label></td>
2820
  <td>
2821
  <select name="lightbox_hit_font_weight" id="lightbox_hit_font_weight">
2822
  <?php
2823
  foreach ($font_weights as $key => $font_weight) {
2824
  ?>
2825
- <option value="<?php echo $key; ?>" <?php echo (($row->lightbox_hit_font_weight == $key) ? 'selected="selected"' : ''); ?>><?php echo $font_weight; ?></option>
2826
  <?php
2827
  }
2828
  ?>
@@ -2830,7 +2830,7 @@ class BWGViewThemes_bwg {
2830
  </td>
2831
  </tr>
2832
  <tr>
2833
- <td class="spider_label"><label for="lightbox_hit_font_size">Hit counter font size: </label>
2834
  </td>
2835
  <td>
2836
  <input type="text" name="lightbox_hit_font_size" id="lightbox_hit_font_size" value="<?php echo $row->lightbox_hit_font_size; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
@@ -2843,22 +2843,22 @@ class BWGViewThemes_bwg {
2843
  <table style="clear:both;">
2844
  <tbody>
2845
  <tr>
2846
- <td class="spider_label"><label>Info position: </label></td>
2847
  <td>
2848
  <input type="radio" name="lightbox_info_pos" id="lightbox_info_pos1" value="top" <?php if ($row->lightbox_info_pos == "top") echo 'checked="checked"'; ?> />
2849
- <label for="lightbox_info_pos1" id="lightbox_info_pos1_lbl">Top</label>
2850
  <input type="radio" name="lightbox_info_pos" id="lightbox_info_pos0" value="bottom" <?php if ($row->lightbox_info_pos == "bottom") echo 'checked="checked"'; ?> />
2851
- <label for="lightbox_info_pos0" id="lightbox_info_pos0_lbl">Bottom</label>
2852
  </td>
2853
  </tr>
2854
  <tr>
2855
- <td class="spider_label"><label for="lightbox_info_align">Info alignment: </label></td>
2856
  <td>
2857
  <select name="lightbox_info_align" id="lightbox_info_align">
2858
  <?php
2859
  foreach ($aligns as $key => $align) {
2860
  ?>
2861
- <option value="<?php echo $key; ?>" <?php echo (($row->lightbox_info_align == $key) ? 'selected="selected"' : ''); ?>><?php echo $align; ?></option>
2862
  <?php
2863
  }
2864
  ?>
@@ -2866,32 +2866,32 @@ class BWGViewThemes_bwg {
2866
  </td>
2867
  </tr>
2868
  <tr>
2869
- <td class="spider_label"><label for="lightbox_info_bg_color">Info background color: </label></td>
2870
  <td>
2871
  <input type="text" name="lightbox_info_bg_color" id="lightbox_info_bg_color" value="<?php echo $row->lightbox_info_bg_color; ?>" class="color"/>
2872
  </td>
2873
  </tr>
2874
  <tr>
2875
- <td class="spider_label"><label for="lightbox_info_bg_transparent">Info background transparency: </label></td>
2876
  <td>
2877
  <input type="text" name="lightbox_info_bg_transparent" id="lightbox_info_bg_transparent" value="<?php echo $row->lightbox_info_bg_transparent; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> %
2878
- <div class="spider_description">Value must be between 0 to 100.</div>
2879
  </td>
2880
  </tr>
2881
  <tr>
2882
- <td class="spider_label"><label for="lightbox_info_border_width">Info border width: </label></td>
2883
  <td>
2884
  <input type="text" name="lightbox_info_border_width" id="lightbox_info_border_width" value="<?php echo $row->lightbox_info_border_width; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
2885
  </td>
2886
  </tr>
2887
  <tr>
2888
- <td class="spider_label"><label for="lightbox_info_border_style">Info border style: </label></td>
2889
  <td>
2890
  <select name="lightbox_info_border_style" id="lightbox_info_border_style">
2891
  <?php
2892
  foreach ($border_styles as $key => $border_style) {
2893
  ?>
2894
- <option value="<?php echo $key; ?>" <?php echo (($row->lightbox_info_border_style == $key) ? 'selected="selected"' : ''); ?>><?php echo $border_style; ?></option>
2895
  <?php
2896
  }
2897
  ?>
@@ -2899,40 +2899,40 @@ class BWGViewThemes_bwg {
2899
  </td>
2900
  </tr>
2901
  <tr>
2902
- <td class="spider_label"><label for="lightbox_info_border_color">Info border color: </label></td>
2903
  <td>
2904
  <input type="text" name="lightbox_info_border_color" id="lightbox_info_border_color" value="<?php echo $row->lightbox_info_border_color; ?>" class="color"/>
2905
  </td>
2906
  </tr>
2907
  <tr>
2908
- <td class="spider_label"><label for="lightbox_info_border_radius">Info border radius: </label></td>
2909
  <td>
2910
  <input type="text" name="lightbox_info_border_radius" id="lightbox_info_border_radius" value="<?php echo $row->lightbox_info_border_radius; ?>" class="spider_char_input"/>
2911
- <div class="spider_description">Use CSS type values.</div>
2912
  </td>
2913
  </tr>
2914
  <tr>
2915
- <td class="spider_label"><label for="lightbox_info_padding">Info padding: </label></td>
2916
  <td>
2917
  <input type="text" name="lightbox_info_padding" id="lightbox_info_padding" value="<?php echo $row->lightbox_info_padding; ?>" class="spider_char_input"/>
2918
- <div class="spider_description">Use CSS type values.</div>
2919
  </td>
2920
  </tr>
2921
  <tr>
2922
- <td class="spider_label"><label for="lightbox_info_margin">Info margin: </label></td>
2923
  <td>
2924
  <input type="text" name="lightbox_info_margin" id="lightbox_info_margin" value="<?php echo $row->lightbox_info_margin; ?>" class="spider_char_input"/>
2925
- <div class="spider_description">Use CSS type values.</div>
2926
  </td>
2927
  </tr>
2928
  <tr>
2929
- <td class="spider_label"><label for="lightbox_title_color">Title font color: </label></td>
2930
  <td>
2931
  <input type="text" name="lightbox_title_color" id="lightbox_title_color" value="<?php echo $row->lightbox_title_color; ?>" class="color"/>
2932
  </td>
2933
  </tr>
2934
  <tr>
2935
- <td class="spider_label"><label for="lightbox_title_font_style">Title font family: </label></td>
2936
  <td>
2937
  <select name="lightbox_title_font_style" id="lightbox_title_font_style">
2938
  <?php
@@ -2946,13 +2946,13 @@ class BWGViewThemes_bwg {
2946
  </td>
2947
  </tr>
2948
  <tr>
2949
- <td class="spider_label"><label for="lightbox_title_font_weight">Title font weight: </label></td>
2950
  <td>
2951
  <select name="lightbox_title_font_weight" id="lightbox_title_font_weight">
2952
  <?php
2953
  foreach ($font_weights as $key => $font_weight) {
2954
  ?>
2955
- <option value="<?php echo $key; ?>" <?php echo (($row->lightbox_title_font_weight == $key) ? 'selected="selected"' : ''); ?>><?php echo $font_weight; ?></option>
2956
  <?php
2957
  }
2958
  ?>
@@ -2960,20 +2960,20 @@ class BWGViewThemes_bwg {
2960
  </td>
2961
  </tr>
2962
  <tr>
2963
- <td class="spider_label"><label for="lightbox_title_font_size">Title font size: </label>
2964
  </td>
2965
  <td>
2966
  <input type="text" name="lightbox_title_font_size" id="lightbox_title_font_size" value="<?php echo $row->lightbox_title_font_size; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
2967
  </td>
2968
  </tr>
2969
  <tr>
2970
- <td class="spider_label"><label for="lightbox_description_color">Description font color: </label></td>
2971
  <td>
2972
  <input type="text" name="lightbox_description_color" id="lightbox_description_color" value="<?php echo $row->lightbox_description_color; ?>" class="color"/>
2973
  </td>
2974
  </tr>
2975
  <tr>
2976
- <td class="spider_label"><label for="lightbox_description_font_style">Description font family: </label></td>
2977
  <td>
2978
  <select name="lightbox_description_font_style" id="lightbox_description_font_style">
2979
  <?php
@@ -2987,13 +2987,13 @@ class BWGViewThemes_bwg {
2987
  </td>
2988
  </tr>
2989
  <tr>
2990
- <td class="spider_label"><label for="lightbox_description_font_weight">Description font weight: </label></td>
2991
  <td>
2992
  <select name="lightbox_description_font_weight" id="lightbox_description_font_weight">
2993
  <?php
2994
  foreach ($font_weights as $key => $font_weight) {
2995
  ?>
2996
- <option value="<?php echo $key; ?>" <?php echo (($row->lightbox_description_font_weight == $key) ? 'selected="selected"' : ''); ?>><?php echo $font_weight; ?></option>
2997
  <?php
2998
  }
2999
  ?>
@@ -3001,47 +3001,47 @@ class BWGViewThemes_bwg {
3001
  </td>
3002
  </tr>
3003
  <tr>
3004
- <td class="spider_label"><label for="lightbox_description_font_size">Description font size: </label>
3005
  </td>
3006
  <td>
3007
  <input type="text" name="lightbox_description_font_size" id="lightbox_description_font_size" value="<?php echo $row->lightbox_description_font_size; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
3008
  </td>
3009
  </tr>
3010
  <tr>
3011
- <td class="spider_label"><label for="lightbox_comment_width">Comments Width: </label></td>
3012
  <td>
3013
  <input type="text" name="lightbox_comment_width" id="lightbox_comment_width" value="<?php echo $row->lightbox_comment_width; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
3014
  </td>
3015
  </tr>
3016
  <tr id="lightbox_comment25">
3017
- <td class="spider_label"><label>Comments position: </label></td>
3018
  <td>
3019
  <input type="radio" name="lightbox_comment_pos" id="lightbox_comment_pos1" value="left"<?php if ($row->lightbox_comment_pos == "left") echo 'checked="checked"'; ?> />
3020
- <label for="lightbox_comment_pos1" id="lightbox_comment_pos1_lbl">Left</label>
3021
  <input type="radio" name="lightbox_comment_pos" id="lightbox_comment_pos0" value="right"<?php if ($row->lightbox_comment_pos == "right") echo 'checked="checked"'; ?> />
3022
- <label for="lightbox_comment_pos0" id="lightbox_comment_pos0_lbl">Right</label>
3023
  </td>
3024
  </tr>
3025
  <tr id="lightbox_comment13">
3026
- <td class="spider_label"><label for="lightbox_comment_bg_color">Comments background color: </label></td>
3027
  <td>
3028
  <input type="text" name="lightbox_comment_bg_color" id="lightbox_comment_bg_color" value="<?php echo $row->lightbox_comment_bg_color; ?>" class="color"/>
3029
  </td>
3030
  </tr>
3031
  <tr id="lightbox_comment2">
3032
- <td class="spider_label"><label for="lightbox_comment_font_size">Comments font size: </label></td>
3033
  <td>
3034
  <input type="text" name="lightbox_comment_font_size" id="lightbox_comment_font_size" value="<?php echo $row->lightbox_comment_font_size; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
3035
  </td>
3036
  </tr>
3037
  <tr id="lightbox_comment14">
3038
- <td class="spider_label"><label for="lightbox_comment_font_color">Comments font color:</label></td>
3039
  <td>
3040
  <input type="text" name="lightbox_comment_font_color" id="lightbox_comment_font_color" value="<?php echo $row->lightbox_comment_font_color; ?>" class="color"/>
3041
  </td>
3042
  </tr>
3043
  <tr id="lightbox_comment15">
3044
- <td class="spider_label"><label for="lightbox_comment_font_style">Comments font family: </label></td>
3045
  <td>
3046
  <select name="lightbox_comment_font_style" id="lightbox_comment_font_style">
3047
  <?php
@@ -3055,38 +3055,38 @@ class BWGViewThemes_bwg {
3055
  </td>
3056
  </tr>
3057
  <tr id="lightbox_comment10">
3058
- <td class="spider_label"><label for="lightbox_comment_author_font_size">Comments author font size: </label>
3059
  </td>
3060
  <td>
3061
  <input type="text" name="lightbox_comment_author_font_size" id="lightbox_comment_author_font_size" value="<?php echo $row->lightbox_comment_author_font_size; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
3062
  </td>
3063
  </tr>
3064
  <tr id="lightbox_comment11">
3065
- <td class="spider_label"><label for="lightbox_comment_date_font_size">Comments date font size: </label></td>
3066
  <td>
3067
  <input type="text" name="lightbox_comment_date_font_size" id="lightbox_comment_date_font_size" value="<?php echo $row->lightbox_comment_date_font_size; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
3068
  </td>
3069
  </tr>
3070
  <tr id="lightbox_comment12">
3071
- <td class="spider_label"><label for="lightbox_comment_body_font_size">Comments body font size: </label></td>
3072
  <td>
3073
  <input type="text" name="lightbox_comment_body_font_size" id="lightbox_comment_body_font_size" value="<?php echo $row->lightbox_comment_body_font_size; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
3074
  </td>
3075
  </tr>
3076
  <tr id="lightbox_comment6">
3077
- <td class="spider_label"><label for="lightbox_comment_input_border_width">Comment input border width: </label></td>
3078
  <td>
3079
  <input type="text" name="lightbox_comment_input_border_width" id="lightbox_comment_input_border_width" value="<?php echo $row->lightbox_comment_input_border_width; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
3080
  </td>
3081
  </tr>
3082
  <tr id="lightbox_comment21">
3083
- <td class="spider_label"><label for="lightbox_comment_input_border_style">Comment input border style: </label></td>
3084
  <td>
3085
  <select name="lightbox_comment_input_border_style" id="lightbox_comment_input_border_style">
3086
  <?php
3087
  foreach ($border_styles as $key => $border_style) {
3088
  ?>
3089
- <option value="<?php echo $key; ?>" <?php echo (($row->lightbox_comment_input_border_style == $key) ? 'selected="selected"' : ''); ?>><?php echo $border_style; ?></option>
3090
  <?php
3091
  }
3092
  ?>
@@ -3094,57 +3094,57 @@ class BWGViewThemes_bwg {
3094
  </td>
3095
  </tr>
3096
  <tr id="lightbox_comment20">
3097
- <td class="spider_label"><label for="lightbox_comment_input_border_color">Comment input border color: </label></td>
3098
  <td>
3099
  <input type="text" name="lightbox_comment_input_border_color" id="lightbox_comment_input_border_color" value="<?php echo $row->lightbox_comment_input_border_color; ?>" class="color"/>
3100
  </td>
3101
  </tr>
3102
  <tr id="lightbox_comment7">
3103
- <td class="spider_label"><label for="lightbox_comment_input_border_radius">Comment input border radius: </label></td>
3104
  <td>
3105
  <input type="text" name="lightbox_comment_input_border_radius" id="lightbox_comment_input_border_radius" value="<?php echo $row->lightbox_comment_input_border_radius; ?>" class="spider_char_input"/>
3106
  </td>
3107
  </tr>
3108
  <tr id="lightbox_comment8">
3109
- <td class="spider_label"><label for="lightbox_comment_input_padding">Comment input padding: </label></td>
3110
  <td>
3111
  <input type="text" name="lightbox_comment_input_padding" id="lightbox_comment_input_padding" value="<?php echo $row->lightbox_comment_input_padding; ?>" class="spider_char_input"/>
3112
- <div class="spider_description">Use CSS type values.</div>
3113
  </td>
3114
  </tr>
3115
  <tr id="lightbox_comment19">
3116
- <td class="spider_label"><label for="lightbox_comment_input_bg_color">Comment input background color: </label></td>
3117
  <td>
3118
  <input type="text" name="lightbox_comment_input_bg_color" id="lightbox_comment_input_bg_color" value="<?php echo $row->lightbox_comment_input_bg_color; ?>" class="color"/>
3119
  </td>
3120
  </tr>
3121
  <tr id="lightbox_comment16">
3122
- <td class="spider_label"><label for="lightbox_comment_button_bg_color">Comment button background color: </label></td>
3123
  <td>
3124
  <input type="text" name="lightbox_comment_button_bg_color" id="lightbox_comment_button_bg_color" value="<?php echo $row->lightbox_comment_button_bg_color; ?>" class="color"/>
3125
  </td>
3126
  </tr>
3127
  <tr id="lightbox_comment5">
3128
- <td class="spider_label"><label for="lightbox_comment_button_padding">Comment button padding: </label></td>
3129
  <td>
3130
  <input type="text" name="lightbox_comment_button_padding" id="lightbox_comment_button_padding" value="<?php echo $row->lightbox_comment_button_padding; ?>" class="spider_char_input"/>
3131
- <div class="spider_description">Use CSS type values.</div>
3132
  </td>
3133
  </tr>
3134
  <tr id="lightbox_comment3">
3135
- <td class="spider_label"><label for="lightbox_comment_button_border_width">Comment button border width: </label></td>
3136
  <td>
3137
  <input type="text" name="lightbox_comment_button_border_width" id="lightbox_comment_button_border_width" value="<?php echo $row->lightbox_comment_button_border_width; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
3138
  </td>
3139
  </tr>
3140
  <tr id="lightbox_comment18">
3141
- <td class="spider_label"><label for="lightbox_comment_button_border_style">Comment button border style: </label></td>
3142
  <td>
3143
  <select name="lightbox_comment_button_border_style" id="lightbox_comment_button_border_style">
3144
  <?php
3145
  foreach ($border_styles as $key => $border_style) {
3146
  ?>
3147
- <option value="<?php echo $key; ?>" <?php echo (($row->lightbox_comment_button_border_style == $key) ? 'selected="selected"' : ''); ?>><?php echo $border_style; ?></option>
3148
  <?php
3149
  }
3150
  ?>
@@ -3152,32 +3152,32 @@ class BWGViewThemes_bwg {
3152
  </td>
3153
  </tr>
3154
  <tr id="lightbox_comment17">
3155
- <td class="spider_label"><label for="lightbox_comment_button_border_color">Comment button border color: </label></td>
3156
  <td>
3157
  <input type="text" name="lightbox_comment_button_border_color" id="lightbox_comment_button_border_color" value="<?php echo $row->lightbox_comment_button_border_color; ?>" class="color"/>
3158
  </td>
3159
  </tr>
3160
  <tr id="lightbox_comment4">
3161
- <td class="spider_label"><label for="lightbox_comment_button_border_radius">Comment button border radius: </label></td>
3162
  <td>
3163
  <input type="text" name="lightbox_comment_button_border_radius" id="lightbox_comment_button_border_radius" value="<?php echo $row->lightbox_comment_button_border_radius; ?>" class="spider_char_input" />
3164
- <div class="spider_description">Use CSS type values.</div>
3165
  </td>
3166
  </tr>
3167
  <tr id="lightbox_comment9">
3168
- <td class="spider_label"><label for="lightbox_comment_separator_width">Comment separator width: </label></td>
3169
  <td>
3170
  <input type="text" name="lightbox_comment_separator_width" id="lightbox_comment_separator_width" value="<?php echo $row->lightbox_comment_separator_width; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
3171
  </td>
3172
  </tr>
3173
  <tr id="lightbox_comment22">
3174
- <td class="spider_label"><label for="lightbox_comment_separator_style">Comment separator style: </label></td>
3175
  <td>
3176
  <select name="lightbox_comment_separator_style" id="lightbox_comment_separator_style">
3177
  <?php
3178
  foreach ($border_styles as $key => $border_style) {
3179
  ?>
3180
- <option value="<?php echo $key; ?>" <?php echo (($row->lightbox_comment_separator_style == $key) ? 'selected="selected"' : ''); ?>><?php echo $border_style; ?></option>
3181
  <?php
3182
  }
3183
  ?>
@@ -3185,7 +3185,7 @@ class BWGViewThemes_bwg {
3185
  </td>
3186
  </tr>
3187
  <tr id="lightbox_comment23">
3188
- <td class="spider_label"><label for="lightbox_comment_separator_color">Comment separator color: </label></td>
3189
  <td>
3190
  <input type="text" name="lightbox_comment_separator_color" id="lightbox_comment_separator_color" value="<?php echo $row->lightbox_comment_separator_color; ?>" class="color"/>
3191
  </td>
@@ -3200,19 +3200,19 @@ class BWGViewThemes_bwg {
3200
  <table style="clear:both;">
3201
  <tbody>
3202
  <tr>
3203
- <td class="spider_label"><label for="page_nav_font_size">Font size: </label></td>
3204
  <td>
3205
  <input type="text" name="page_nav_font_size" id="page_nav_font_size" value="<?php echo $row->page_nav_font_size; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
3206
  </td>
3207
  </tr>
3208
  <tr>
3209
- <td class="spider_label"><label for="page_nav_font_color">Font color: </label></td>
3210
  <td>
3211
  <input type="text" name="page_nav_font_color" id="page_nav_font_color" value="<?php echo $row->page_nav_font_color; ?>" class="color"/>
3212
  </td>
3213
  </tr>
3214
  <tr>
3215
- <td class="spider_label"><label for="page_nav_font_style">Font family: </label></td>
3216
  <td>
3217
  <select name="page_nav_font_style" id="page_nav_font_style">
3218
  <?php
@@ -3226,13 +3226,13 @@ class BWGViewThemes_bwg {
3226
  </td>
3227
  </tr>
3228
  <tr>
3229
- <td class="spider_label"><label for="page_nav_font_weight">Font weight: </label></td>
3230
  <td>
3231
  <select name="page_nav_font_weight" id="page_nav_font_weight">
3232
  <?php
3233
  foreach ($font_weights as $key => $font_weight) {
3234
  ?>
3235
- <option value="<?php echo $key; ?>" <?php echo (($row->page_nav_font_weight == $key) ? 'selected="selected"' : ''); ?>><?php echo $font_weight; ?></option>
3236
  <?php
3237
  }
3238
  ?>
@@ -3240,19 +3240,19 @@ class BWGViewThemes_bwg {
3240
  </td>
3241
  </tr>
3242
  <tr>
3243
- <td class="spider_label"><label for="page_nav_border_width">Border width: </label></td>
3244
  <td>
3245
  <input type="text" name="page_nav_border_width" id="page_nav_border_width" value="<?php echo $row->page_nav_border_width; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
3246
  </td>
3247
  </tr>
3248
  <tr>
3249
- <td class="spider_label"><label for="page_nav_border_style">Border style: </label></td>
3250
  <td>
3251
  <select name="page_nav_border_style" id="page_nav_border_style">
3252
  <?php
3253
  foreach ($border_styles as $key => $border_style) {
3254
  ?>
3255
- <option value="<?php echo $key; ?>" <?php echo (($row->page_nav_border_style == $key) ? 'selected="selected"' : ''); ?>><?php echo $border_style; ?></option>
3256
  <?php
3257
  }
3258
  ?>
@@ -3260,16 +3260,16 @@ class BWGViewThemes_bwg {
3260
  </td>
3261
  </tr>
3262
  <tr>
3263
- <td class="spider_label"><label for="page_nav_border_color">Border color:</label></td>
3264
  <td>
3265
  <input type="text" name="page_nav_border_color" id="page_nav_border_color" value="<?php echo $row->page_nav_border_color; ?>" class="color"/>
3266
  </td>
3267
  </tr>
3268
  <tr>
3269
- <td class="spider_label"><label for="page_nav_border_radius">Border radius: </label></td>
3270
  <td>
3271
  <input type="text" name="page_nav_border_radius" id="page_nav_border_radius" value="<?php echo $row->page_nav_border_radius; ?>" class="spider_char_input"/>
3272
- <div class="spider_description">Use CSS type values.</div>
3273
  </td>
3274
  </tr>
3275
  </tbody>
@@ -3279,46 +3279,46 @@ class BWGViewThemes_bwg {
3279
  <table style="clear:both;">
3280
  <tbody>
3281
  <tr>
3282
- <td class="spider_label"><label for="page_nav_margin">Margin: </label></td>
3283
  <td>
3284
  <input type="text" name="page_nav_margin" id="page_nav_margin" value="<?php echo $row->page_nav_margin; ?>" class="spider_char_input"/>
3285
- <div class="spider_description">Use CSS type values.</div>
3286
  </td>
3287
  </tr>
3288
  <tr>
3289
- <td class="spider_label"><label for="page_nav_padding">Padding: </label></td>
3290
  <td>
3291
  <input type="text" name="page_nav_padding" id="page_nav_padding" value="<?php echo $row->page_nav_padding; ?>" class="spider_char_input"/>
3292
- <div class="spider_description">Use CSS type values.</div>
3293
  </td>
3294
  </tr>
3295
  <tr>
3296
- <td class="spider_label"><label for="page_nav_button_bg_color">Button background color: </label></td>
3297
  <td>
3298
  <input type="text" name="page_nav_button_bg_color" id="page_nav_button_bg_color" value="<?php echo $row->page_nav_button_bg_color; ?>" class="color" />
3299
  </td>
3300
  </tr>
3301
  <tr>
3302
- <td class="spider_label"><label for="page_nav_button_bg_transparent">Button background transparency: </label></td>
3303
  <td>
3304
  <input type="text" name="page_nav_button_bg_transparent" id="page_nav_button_bg_transparent" value="<?php echo $row->page_nav_button_bg_transparent; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> %
3305
- <div class="spider_description">Value must be between 0 to 100.</div>
3306
  </td>
3307
  </tr>
3308
  <tr>
3309
- <td class="spider_label"><label>Button transition: </label></td>
3310
  <td>
3311
  <input type="radio" name="page_nav_button_transition" id="page_nav_button_transition1" value="1"<?php if ($row->page_nav_button_transition == 1) echo 'checked="checked"'; ?> />
3312
- <label for="page_nav_button_transition1" id="page_nav_button_transition1_lbl">Yes</label>
3313
  <input type="radio" name="page_nav_button_transition" id="page_nav_button_transition0" value="0"<?php if ($row->page_nav_button_transition == 0) echo 'checked="checked"'; ?> />
3314
- <label for="page_nav_button_transition0" id="page_nav_button_transition0_lbl">No</label>
3315
  </td>
3316
  </tr>
3317
  <tr>
3318
- <td class="spider_label"><label for="page_nav_box_shadow">Box shadow: </label></td>
3319
  <td>
3320
  <input type="text" name="page_nav_box_shadow" id="page_nav_box_shadow" value="<?php echo $row->page_nav_box_shadow; ?>" class="spider_box_input"/>
3321
- <div class="spider_description">Use CSS type values.</div>
3322
  </td>
3323
  </tr>
3324
  </tbody>
@@ -3328,22 +3328,22 @@ class BWGViewThemes_bwg {
3328
  <table style="clear:both;">
3329
  <tbody>
3330
  <tr>
3331
- <td class="spider_label"><label>Position: </label></td>
3332
  <td id="page_nav_position">
3333
  <input type="radio" name="page_nav_position" id="page_nav_position1" value="top"<?php if ($row->page_nav_position == "top") echo 'checked="checked"'; ?> />
3334
- <label for="page_nav_position1" id="page_nav_position1_lbl">Top</label>
3335
  <input type="radio" name="page_nav_position" id="page_nav_position0" value="bottom"<?php if ($row->page_nav_position == "bottom") echo 'checked="checked"'; ?> />
3336
- <label for="page_nav_position0" id="page_nav_position0_lbl">Bottom</label>
3337
  </td>
3338
  </tr>
3339
  <tr>
3340
- <td class="spider_label"><label for="page_nav_align0">Alignment: </label></td>
3341
  <td>
3342
  <select name="page_nav_align" id="page_nav_align">
3343
  <?php
3344
  foreach ($aligns as $key => $align) {
3345
  ?>
3346
- <option value="<?php echo $key; ?>" <?php echo (($row->page_nav_align == $key) ? 'selected="selected"' : ''); ?>><?php echo $align; ?></option>
3347
  <?php
3348
  }
3349
  ?>
@@ -3351,22 +3351,22 @@ class BWGViewThemes_bwg {
3351
  </td>
3352
  </tr>
3353
  <tr>
3354
- <td class="spider_label"><label>Numbering: </label></td>
3355
  <td>
3356
  <input type="radio" name="page_nav_number" id="page_nav_number1" value="1"<?php if ($row->page_nav_number == 1) echo 'checked="checked"'; ?> />
3357
- <label for="page_nav_number1" id="page_nav_number1_lbl">Yes</label>
3358
  <input type="radio" name="page_nav_number" id="page_nav_number0" value="0"<?php if ($row->page_nav_number == 0) echo 'checked="checked"'; ?> />
3359
- <label for="page_nav_number0" id="page_nav_number0_lbl">No</label>
3360
  </td>
3361
  </tr>
3362
  <tr>
3363
- <td class="spider_label"><label>Button text: </label></td>
3364
  <td>
3365
  <input type="radio" name="page_nav_button_text" id="page_nav_button_text1" value="1"<?php if ($row->page_nav_button_text == 1) echo 'checked="checked"'; ?> />
3366
- <label for="page_nav_button_text1" id="page_nav_button_text1_lbl">Text</label>
3367
  <input type="radio" name="page_nav_button_text" id="page_nav_button_text0" value="0"<?php if ($row->page_nav_button_text == 0) echo 'checked="checked"'; ?> />
3368
- <label for="page_nav_button_text0" id="page_nav_button_text0_lbl">Arrow</label>
3369
- <div class="spider_description">Next, previous buttons values.</div>
3370
  </td>
3371
  </tr>
3372
  </tbody>
36
  ?>
37
  <div style="clear: both; float: left; width: 99%;">
38
  <div style="float:left; font-size: 14px; font-weight: bold;">
39
+ <?php _e("This section allows you to create, edit and delete themes.", 'bwg_back'); ?>
40
+ <a style="color: blue; text-decoration: none;" target="_blank" href="https://web-dorado.com/wordpress-gallery-guide-step-6/6-1.html"><?php _e("Read More in User Manual", 'bwg_back'); ?></a>
41
  <?php
42
  if (get_option("wd_bwg_theme_version")) {
43
  ?>
44
  <br />
45
+ <?php _e("This feature is disabled for the non-commercial version.", 'bwg_back'); ?>
46
  <?php
47
  }
48
  ?>
75
  <?php wp_nonce_field( 'themes_bwg', 'bwg_nonce' ); ?>
76
  <span class="theme_icon"></span>
77
  <h2>
78
+ <?php _e("Themes", 'bwg_back'); ?>
79
  <a href="" class="add-new-h2" onclick="spider_set_input_value('task', 'add');
80
+ spider_form_submit(event, 'themes_form')"><?php _e("Add new", 'bwg_back'); ?></a>
81
  </h2>
82
  <div class="buttons_div">
83
+ <input class="button-secondary" type="submit" onclick="if (confirm('<?php echo __('Do you want to delete selected items?', 'bwg_back'); ?>')) {
84
  spider_set_input_value('task', 'delete_all');
85
  } else {
86
  return false;
87
+ }" value="<?php _e("Delete", 'bwg_back'); ?>"/>
88
  </div>
89
  <div class="tablenav top">
90
  <?php
91
+ WDWLibrary::search(__('Title','bwg_back'), $search_value, 'themes_form');
92
  WDWLibrary::html_page_nav($page_nav['total'], $pager++, $page_nav['limit'], 'themes_form', $per_page);
93
  ?>
94
  </div>
107
  spider_set_input_value('order_by', 'name');
108
  spider_set_input_value('asc_or_desc', '<?php echo ((isset($_POST['asc_or_desc']) && isset($_POST['order_by']) && (esc_html($_POST['order_by']) == 'title') && esc_html($_POST['asc_or_desc']) == 'asc') ? 'desc' : 'asc'); ?>');
109
  spider_form_submit(event, 'themes_form')" href="">
110
+ <span><?php _e("Name", 'bwg_back'); ?></span><span class="sorting-indicator"></span></a>
111
  </th>
112
  <th class="table_big_col <?php if ($order_by == 'default_theme') { echo $order_class; } ?>">
113
  <a onclick="spider_set_input_value('task', '');
114
  spider_set_input_value('order_by', 'default_theme');
115
  spider_set_input_value('asc_or_desc', '<?php echo ((isset($_POST['asc_or_desc']) && isset($_POST['order_by']) && (esc_html($_POST['order_by']) == 'default_theme') && esc_html($_POST['asc_or_desc']) == 'asc') ? 'desc' : 'asc'); ?>');
116
  spider_form_submit(event, 'themes_form')" href="">
117
+ <span><?php _e("Default", 'bwg_back'); ?></span><span class="sorting-indicator"></span></a>
118
  </th>
119
+ <th class="table_big_col"><?php _e("Edit", 'bwg_back'); ?></th>
120
+ <th class="table_big_col"><?php _e("Delete", 'bwg_back'); ?></th>
121
  </thead>
122
  <tbody id="tbody_arr">
123
  <?php
135
  <td>
136
  <a onclick="spider_set_input_value('task', 'edit');
137
  spider_set_input_value('current_id', '<?php echo $row_data->id; ?>');
138
+ spider_form_submit(event, 'themes_form')" href="" title="<?php _e("Edit", 'bwg_back'); ?>"><?php echo $row_data->name; ?></a>
139
  </td>
140
  <td class="table_big_col">
141
  <?php
159
  <td class="table_big_col">
160
  <a onclick="spider_set_input_value('task', 'edit');
161
  spider_set_input_value('current_id', '<?php echo $row_data->id; ?>');
162
+ spider_form_submit(event, 'themes_form')" href=""><?php _e("Edit", 'bwg_back'); ?></a>
163
  </td>
164
  <td class="table_big_col">
165
  <a onclick="spider_set_input_value('task', 'delete');
166
  spider_set_input_value('current_id', '<?php echo $row_data->id; ?>');
167
+ spider_form_submit(event, 'themes_form')" href=""><?php _e("Delete", 'bwg_back'); ?></a>
168
  </td>
169
  </tr>
170
  <?php
193
  $page_title = (($id != 0) ? 'Edit theme ' . $row->name : 'Create new theme');
194
  $current_type = WDWLibrary::get('current_type', 'Thumbnail');
195
  $border_styles = array(
196
+ 'none' => __('None', 'bwg_back'),
197
+ 'solid' => __('Solid', 'bwg_back'),
198
+ 'dotted' => __('Dotted', 'bwg_back'),
199
+ 'dashed' => __('Dashed', 'bwg_back'),
200
+ 'double' => __('Double', 'bwg_back'),
201
+ 'groove' => __('Groove', 'bwg_back'),
202
+ 'ridge' => __('Ridge', 'bwg_back'),
203
+ 'inset' => __('Inset', 'bwg_back'),
204
+ 'outset' => __('Outset', 'bwg_back'),
205
  );
206
  $font_families = array(
207
  'arial' => 'Arial',
216
  'serif' => 'Serif',
217
  );
218
  $aligns = array(
219
+ 'left' => __('Left', 'bwg_back'),
220
+ 'center' => __('Center', 'bwg_back'),
221
+ 'right' => __('Right', 'bwg_back'),
222
  );
223
  $font_weights = array(
224
+ 'lighter' => __('Lighter', 'bwg_back'),
225
+ 'normal' => __('Normal', 'bwg_back'),
226
+ 'bold' => __('Bold', 'bwg_back'),
227
  );
228
  $hover_effects = array(
229
+ 'none' => __('None', 'bwg_back'),
230
+ 'rotate' => __('Rotate', 'bwg_back'),
231
+ 'scale' => __('Scale', 'bwg_back'),
232
+ 'skew' => __('Skew', 'bwg_back'),
233
  );
234
  $button_styles = array(
235
+ 'fa-chevron' => __('Chevron', 'bwg_back'),
236
+ 'fa-angle' => __('Angle', 'bwg_back'),
237
+ 'fa-angle-double' => __('Double', 'bwg_back'),
238
  );
239
  $rate_icons = array(
240
+ 'star' => __('Star', 'bwg_back'),
241
+ 'bell' => __('Bell', 'bwg_back'),
242
+ 'circle' => __('Circle', 'bwg_back'),
243
+ 'flag' => __('Flag', 'bwg_back'),
244
+ 'heart' => __('Heart', 'bwg_back'),
245
+ 'square' => __('Square', 'bwg_back'),
246
  );
247
  ?>
248
  <div style="clear: both; float: left; width: 99%;">
249
  <div style="float:left; font-size: 14px; font-weight: bold;">
250
+ <?php _e("This section allows you to add/edit theme.", 'bwg_back'); ?>
251
+ <a style="color: blue; text-decoration: none;" target="_blank" href="https://web-dorado.com/wordpress-gallery-guide-step-6/6-1.html"><?php _e("Read More in User Manual", 'bwg_back'); ?></a>
252
  </div>
253
  <div style="float: right; text-align: right;">
254
  <a style="text-decoration: none;" target="_blank" href="https://web-dorado.com/files/fromPhotoGallery.php">
261
  <span class="theme_icon"></span>
262
  <h2><?php echo $page_title; ?></h2>
263
  <div style="float: right; margin: 0 5px 0 0;">
264
+ <input class="button-secondary" type="submit" onclick="if (spider_check_required('name', 'Name')) {return false;}; spider_set_input_value('task', 'save')" value="<?php _e("Save", 'bwg_back'); ?>"/>
265
+ <input class="button-secondary" type="submit" onclick="if (spider_check_required('name', 'Name')) {return false;}; spider_set_input_value('task', 'apply')" value="<?php _e("Apply", 'bwg_back'); ?>"/>
266
+ <input class="button-secondary" type="submit" onclick="spider_set_input_value('task', 'cancel')" value="<?php _e("Cancel", 'bwg_back'); ?>"/>
267
+ <input title="Reset to default theme" class="button-primary" type="submit" onclick="if (confirm('<?php _e("Do you want to reset to default?", 'bwg_back'); ?>')) {
268
  spider_set_input_value('task', 'reset');
269
  } else {
270
  return false;
271
+ }" value="<?php _e("Reset", 'bwg_back'); ?>"/>
272
  </div>
273
  <div style="float: left; margin: 10px 0 0; display: none;" id="type_menu">
274
+ <div id="type_Thumbnail" class="theme_type" onclick="bwg_change_theme_type('Thumbnail')"><?php _e("Thumbnails", 'bwg_back'); ?></div>
275
+ <div id="type_Masonry" class="theme_type" style="opacity: 0.4; filter: Alpha(opacity=40);" title="This tab is disabled in free version"><?php _e("Masonry", 'bwg_back'); ?></div>
276
+ <div id="type_Mosaic" class="theme_type" style="opacity: 0.4; filter: Alpha(opacity=40);" title="This tab is disabled in free version"><?php _e("Mosaic", 'bwg_back'); ?></div>
277
+ <div id="type_Slideshow" class="theme_type" onclick="bwg_change_theme_type('Slideshow')"><?php _e("Slideshow", 'bwg_back'); ?></div>
278
+ <div id="type_Image_browser" class="theme_type" onclick="bwg_change_theme_type('Image_browser')"><?php _e("Image Browser", 'bwg_back'); ?></div>
279
+ <div id="type_Compact_album" class="theme_type" onclick="bwg_change_theme_type('Compact_album')"><?php _e("Compact Album", 'bwg_back'); ?></div>
280
+ <div id="type_Masonry_album" class="theme_type" style="opacity: 0.4; filter: Alpha(opacity=40);" title="<?php _e("This tab is disabled in free version", 'bwg_back'); ?>"><?php _e("Masonry Album", 'bwg_back'); ?></div>
281
+ <div id="type_Extended_album" class="theme_type" onclick="bwg_change_theme_type('Extended_album')"><?php _e("Extended Album", 'bwg_back'); ?></div>
282
+ <div id="type_Blog_style" class="theme_type" style="opacity: 0.4; filter: Alpha(opacity=40);" title="This tab is disabled in free version"><?php _e("Blog Style", 'bwg_back'); ?></div>
283
+ <div id="type_Lightbox" class="theme_type" onclick="bwg_change_theme_type('Lightbox')"><?php _e("Lightbox", 'bwg_back'); ?></div>
284
+ <div id="type_Navigation" class="theme_type" onclick="bwg_change_theme_type('Navigation')"><?php _e("Page Navigation", 'bwg_back'); ?></div>
285
+ <div id="type_Carousel" class="theme_type" style="opacity: 0.4; filter: Alpha(opacity=40);" title="This tab is disabled in free version"><?php _e("Carousel", 'bwg_back'); ?></div>
286
  <input type="hidden" id="current_type" name="current_type" value="<?php echo $current_type; ?>" />
287
  </div>
288
  <fieldset class="spider_fieldset">
289
+ <legend><?php _e("Parameters", 'bwg_back'); ?></legend>
290
  <table style="clear:both;">
291
  <tbody>
292
  <tr>
293
+ <td class="spider_label"><label for="name"><?php _e("Name:", 'bwg_back'); ?> <span style="color:#FF0000;"> * </span> </label></td>
294
  <td><input type="text" id="name" name="name" value="<?php echo $row->name; ?>" class="spider_text_input"/></td>
295
  </tr>
296
  </tbody>
301
  <table style="clear:both;">
302
  <tbody>
303
  <tr>
304
+ <td class="spider_label"><label for="thumb_margin"><?php _e("Margin:", 'bwg_back'); ?> </label></td>
305
  <td>
306
  <input type="text" name="thumb_margin" id="thumb_margin" value="<?php echo $row->thumb_margin; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
307
  </td>
308
  </tr>
309
  <tr>
310
+ <td class="spider_label"><label for="thumb_padding"><?php _e("Padding:", 'bwg_back'); ?> </label></td>
311
  <td>
312
  <input type="text" name="thumb_padding" id="thumb_padding" value="<?php echo $row->thumb_padding; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
313
  </td>
314
  </tr>
315
  <tr>
316
+ <td class="spider_label"><label for="thumb_border_width"><?php _e("Border width:", 'bwg_back'); ?> </label></td>
317
  <td>
318
  <input type="text" name="thumb_border_width" id="thumb_border_width" value="<?php echo $row->thumb_border_width; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
319
  </td>
320
  </tr>
321
  <tr>
322
+ <td class="spider_label"><label for="thumb_border_style"><?php _e("Border style:", 'bwg_back'); ?> </label></td>
323
  <td>
324
  <select name="thumb_border_style" id="thumb_border_style">
325
  <?php
326
  foreach ($border_styles as $key => $border_style) {
327
  ?>
328
+ <option value="<?php echo $key; ?>" <?php echo (($row->thumb_border_style == $key) ? 'selected="selected"' : ''); ?>><?php echo __($border_style,"bwg_back"); ?></option>
329
  <?php
330
  }
331
  ?>
333
  </td>
334
  </tr>
335
  <tr>
336
+ <td class="spider_label"><label for="thumb_border_color"><?php _e("Border color:", 'bwg_back'); ?></label></td>
337
  <td>
338
  <input type="text" name="thumb_border_color" id="thumb_border_color" value="<?php echo $row->thumb_border_color; ?>" class="color"/>
339
  </td>
340
  </tr>
341
  <tr>
342
+ <td class="spider_label"><label for="thumb_border_radius"><?php _e("Border radius:", 'bwg_back'); ?> </label></td>
343
  <td>
344
  <input type="text" name="thumb_border_radius" id="thumb_border_radius" value="<?php echo $row->thumb_border_radius; ?>" class="spider_char_input" />
345
+ <div class="spider_description"><?php _e("Use CSS type values.", 'bwg_back'); ?></div>
346
  </td>
347
  </tr>
348
  <tr>
349
+ <td class="spider_label"><label for="thumb_box_shadow"><?php _e("Shadow:", 'bwg_back'); ?> </label></td>
350
  <td>
351
  <input type="text" name="thumb_box_shadow" id="thumb_box_shadow" value="<?php echo $row->thumb_box_shadow; ?>" class="spider_box_input" />
352
+ <div class="spider_description"><?php _e("Use CSS type values.", 'bwg_back'); ?></div>
353
  </td>
354
  </tr>
355
  <tr>
356
+ <td class="spider_label"><label for="thumb_hover_effect"><?php _e("Hover effect:", 'bwg_back'); ?> </label></td>
357
  <td>
358
  <select name="thumb_hover_effect" id="thumb_hover_effect" class="spider_int_input">
359
  <?php
360
  foreach ($hover_effects as $key => $hover_effect) {
361
  ?>
362
+ <option value="<?php echo $key; ?>" <?php echo (($row->thumb_hover_effect == $key) ? 'selected="selected"' : ''); ?>><?php echo __($hover_effect,"bwg_back"); ?></option>
363
  <?php
364
  }
365
  ?>
367
  </td>
368
  </tr>
369
  <tr>
370
+ <td class="spider_label"><label for="thumb_hover_effect_value"><?php _e("Hover effect value:", 'bwg_back'); ?> </label></td>
371
  <td>
372
  <input type="text" name="thumb_hover_effect_value" id="thumb_hover_effect_value" value="<?php echo $row->thumb_hover_effect_value; ?>" class="spider_char_input"/>
373
+ <div class="spider_description"><?php _e("E.g. Rotate:", 'bwg_back'); ?> 10deg, <?php _e("Scale:", 'bwg_back'); ?> 1.5, <?php _e("Skew:", 'bwg_back'); ?> 10deg.</div>
374
  </td>
375
  </tr>
376
  <tr>
377
+ <td class="spider_label"><label><?php _e("Transition:", 'bwg_back'); ?> </label></td>
378
  <td id="thumb_transition">
379
  <input type="radio" name="thumb_transition" id="thumb_transition1" value="1"<?php if ($row->thumb_transition == 1) echo 'checked="checked"'; ?> />
380
+ <label for="thumb_transition1" id="thumb_transition1_lbl"><?php _e("Yes", 'bwg_back'); ?></label>
381
  <input type="radio" name="thumb_transition" id="thumb_transition0" value="0"<?php if ($row->thumb_transition == 0) echo 'checked="checked"'; ?> />
382
+ <label for="thumb_transition0" id="thumb_transition0_lbl"><?php _e("No", 'bwg_back'); ?></label>
383
  </td>
384
  </tr>
385
  </tbody>
390
  <tbody>
391
  <tr>
392
  <td class="spider_label">
393
+ <label for="thumb_bg_color"><?php _e("Thumbnail background color:", 'bwg_back'); ?> </label>
394
  </td>
395
  <td>
396
  <input type="text" name="thumb_bg_color" id="thumb_bg_color" value="<?php echo $row->thumb_bg_color; ?>" class="color"/>
397
  </td>
398
  </tr>
399
  <tr>
400
+ <td class="spider_label"><label for="thumb_transparent"><?php _e("Thumbnail transparency:", 'bwg_back'); ?> </label></td>
401
  <td>
402
  <input type="text" name="thumb_transparent" id="thumb_transparent" value="<?php echo $row->thumb_transparent; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> %
403
+ <div class="spider_description"><?php _e("Value must be between 0 to 100.", 'bwg_back'); ?></div>
404
  </td>
405
  </tr>
406
  <tr>
407
+ <td class="spider_label"><label for="thumbs_bg_color"><?php _e("Full background color:", 'bwg_back'); ?> </label></td>
408
  <td>
409
  <input type="text" name="thumbs_bg_color" id="thumbs_bg_color" value="<?php echo $row->thumbs_bg_color; ?>" class="color"/>
410
  </td>
411
  </tr>
412
  <tr>
413
+ <td class="spider_label"><label for="thumb_bg_transparent"><?php _e("Full background transparency:", 'bwg_back'); ?> </label></td>
414
  <td>
415
  <input type="text" name="thumb_bg_transparent" id="thumb_bg_transparent" value="<?php echo $row->thumb_bg_transparent; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> %
416
+ <div class="spider_description"><?php _e("Value must be between 0 to 100.", 'bwg_back'); ?></div>
417
  </td>
418
  </tr>
419
  <tr>
420
+ <td class="spider_label"><label for="thumb_align"><?php _e("Alignment:", 'bwg_back'); ?> </label></td>
421
  <td>
422
  <select name="thumb_align" id="thumb_align">
423
  <?php
424
  foreach ($aligns as $key => $align) {
425
  ?>
426
+ <option value="<?php echo $key; ?>" <?php echo (($row->thumb_align == $key) ? 'selected="selected"' : ''); ?>><?php echo __($align,"bwg_back"); ?></option>
427
  <?php
428
  }
429
  ?>
437
  <table style="clear:both;">
438
  <tbody>
439
  <tr>
440
+ <td class="spider_label"><label><?php _e("Title position:", 'bwg_back'); ?> </label></td>
441
  <td>
442
  <input type="radio" name="thumb_title_pos" id="thumb_title_pos1" value="top" <?php if ($row->thumb_title_pos == "top") echo 'checked="checked"'; ?> />
443
+ <label for="thumb_title_pos1" id="thumb_title_pos1_lbl"><?php _e("Top", 'bwg_back'); ?></label>
444
  <input type="radio" name="thumb_title_pos" id="thumb_title_pos0" value="bottom" <?php if ($row->thumb_title_pos == "bottom") echo 'checked="checked"'; ?> />
445
+ <label for="thumb_title_pos0" id="thumb_title_pos0_lbl"><?php _e("Bottom", 'bwg_back'); ?></label>
446
  </td>
447
  </tr>
448
  <tr>
449
+ <td class="spider_label"><label for="thumb_title_font_size"><?php _e("Title font size:", 'bwg_back'); ?> </label></td>
450
  <td>
451
  <input type="text" name="thumb_title_font_size" id="thumb_title_font_size" value="<?php echo $row->thumb_title_font_size; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
452
  </td>
453
  </tr>
454
  <tr>
455
+ <td class="spider_label"><label for="thumb_title_font_color"><?php _e("Title font color:", 'bwg_back'); ?> </label></td>
456
  <td>
457
  <input type="text" name="thumb_title_font_color" id="thumb_title_font_color" value="<?php echo $row->thumb_title_font_color; ?>" class="color" />
458
  </td>
459
  </tr>
460
  <tr>
461
+ <td class="spider_label"><label for="thumb_title_font_style"><?php _e("Title font family:", 'bwg_back'); ?> </label></td>
462
  <td>
463
  <select name="thumb_title_font_style" id="thumb_title_font_style">
464
  <?php
472
  </td>
473
  </tr>
474
  <tr>
475
+ <td class="spider_label"><label for="thumb_title_font_weight"><?php _e("Title font weight:", 'bwg_back'); ?> </label></td>
476
  <td>
477
  <select name="thumb_title_font_weight" id="thumb_title_font_weight">
478
  <?php
479
  foreach ($font_weights as $key => $font_weight) {
480
  ?>
481
+ <option value="<?php echo $key; ?>" <?php echo (($row->thumb_title_font_weight == $key) ? 'selected="selected"' : ''); ?>><?php echo __($font_weight,"bwg_back"); ?></option>
482
  <?php
483
  }
484
  ?>
486
  </td>
487
  </tr>
488
  <tr>
489
+ <td class="spider_label"><label for="thumb_title_shadow"><?php _e("Title box shadow:", 'bwg_back'); ?> </label></td>
490
  <td>
491
  <input type="text" name="thumb_title_shadow" id="thumb_title_shadow" value="<?php echo $row->thumb_title_shadow; ?>" class="spider_box_input" />
492
+ <div class="spider_description"><?php _e("Use CSS type values.", 'bwg_back'); ?></div>
493
  </td>
494
  </tr>
495
  <tr>
496
+ <td class="spider_label"><label for="thumb_title_margin"><?php _e("Title margin:", 'bwg_back'); ?> </label></td>
497
  <td>
498
  <input type="text" name="thumb_title_margin" id="thumb_title_margin" value="<?php echo $row->thumb_title_margin; ?>" class="spider_char_input" />
499
+ <div class="spider_description"><?php _e("Use CSS type values.", 'bwg_back'); ?></div>
500
  </td>
501
  </tr>
502
  </tbody>
509
  <table style="clear:both;">
510
  <tbody>
511
  <tr>
512
+ <td class="spider_label"><label for="masonry_thumb_padding"><?php _e("Padding:", 'bwg_back'); ?> </label></td>
513
  <td>
514
  <input type="text" name="masonry_thumb_padding" id="masonry_thumb_padding" value="<?php echo $row->masonry_thumb_padding; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
515
  </td>
516
  </tr>
517
  <tr>
518
+ <td class="spider_label"><label for="masonry_thumb_border_width"><?php _e("Border width:", 'bwg_back'); ?> </label></td>
519
  <td>
520
  <input type="text" name="masonry_thumb_border_width" id="masonry_thumb_border_width" value="<?php echo $row->masonry_thumb_border_width; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
521
  </td>
522
  </tr>
523
  <tr>
524
+ <td class="spider_label"><label for="masonry_thumb_border_style"><?php _e("Border style:", 'bwg_back'); ?> </label></td>
525
  <td>
526
  <select name="masonry_thumb_border_style" id="masonry_thumb_border_style">
527
  <?php
528
  foreach ($border_styles as $key => $border_style) {
529
  ?>
530
+ <option value="<?php echo $key; ?>" <?php echo (($row->masonry_thumb_border_style == $key) ? 'selected="selected"' : ''); ?>><?php echo __($border_style,"bwg_back"); ?></option>
531
  <?php
532
  }
533
  ?>
535
  </td>
536
  </tr>
537
  <tr>
538
+ <td class="spider_label"><label for="masonry_thumb_border_color"><?php _e("Border color:", 'bwg_back'); ?> </label></td>
539
  <td>
540
  <input type="text" name="masonry_thumb_border_color" id="masonry_thumb_border_color" value="<?php echo $row->masonry_thumb_border_color; ?>" class="color" />
541
  </td>
542
  </tr>
543
  <tr>
544
+ <td class="spider_label"><label for="masonry_thumb_border_radius"><?php _e("Border radius:", 'bwg_back'); ?> </label></td>
545
  <td>
546
  <input type="text" name="masonry_thumb_border_radius" id="masonry_thumb_border_radius" value="<?php echo $row->masonry_thumb_border_radius; ?>" class="spider_char_input" />
547
+ <div class="spider_description"><?php _e("Use CSS type values.", 'bwg_back'); ?></div>
548
  </td>
549
  </tr>
550
  </tbody>
554
  <table style="clear:both;">
555
  <tbody>
556
  <tr>
557
+ <td class="spider_label"><label for="masonry_thumb_transparent"><?php _e("Transparency:", 'bwg_back'); ?> </label></td>
558
  <td>
559
  <input type="text" name="masonry_thumb_transparent" id="masonry_thumb_transparent" value="<?php echo $row->masonry_thumb_transparent; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> %
560
+ <div class="spider_description"><?php _e("Value must be between 0 to 100.", 'bwg_back'); ?></div>
561
  </td>
562
  </tr>
563
  <tr>
564
+ <td class="spider_label"><label for="masonry_thumbs_bg_color"><?php _e("Background color:", 'bwg_back'); ?> </label></td>
565
  <td>
566
  <input type="text" name="masonry_thumbs_bg_color" id="masonry_thumbs_bg_color" value="<?php echo $row->masonry_thumbs_bg_color; ?>" class="color" />
567
  </td>
568
  </tr>
569
  <tr>
570
+ <td class="spider_label"><label for="masonry_thumb_bg_transparent"><?php _e("Background transparency:", 'bwg_back'); ?> </label></td>
571
  <td>
572
  <input type="text" name="masonry_thumb_bg_transparent" id="masonry_thumb_bg_transparent" value="<?php echo $row->masonry_thumb_bg_transparent; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> %
573
+ <div class="spider_description"><?php _e("Value must be between 0 to 100.", 'bwg_back'); ?></div>
574
  </td>
575
  </tr>
576
  <tr>
577
+ <td class="spider_label"><label for="masonry_thumb_align0"><?php _e("Alignment:", 'bwg_back'); ?> </label></td>
578
  <td>
579
  <select name="masonry_thumb_align" id="masonry_thumb_align">
580
  <?php
581
  foreach ($aligns as $key => $align) {
582
  ?>
583
+ <option value="<?php echo $key; ?>" <?php echo (($row->masonry_thumb_align == $key) ? 'selected="selected"' : ''); ?>><?php echo __($align,"bwg_back"); ?></option>
584
  <?php
585
  }
586
  ?>
594
  <table style="clear:both;">
595
  <tbody>
596
  <tr>
597
+ <td class="spider_label"><label for="masonry_thumb_hover_effect"><?php _e("Hover effect:", 'bwg_back'); ?> </label></td>
598
  <td>
599
  <select name="masonry_thumb_hover_effect" id="masonry_thumb_hover_effect" class="spider_int_input">
600
  <?php
601
  foreach ($hover_effects as $key => $hover_effect) {
602
  ?>
603
+ <option value="<?php echo $key; ?>" <?php echo (($row->masonry_thumb_hover_effect == $key) ? 'selected="selected"' : ''); ?>><?php echo __($hover_effect,"bwg_back"); ?></option>
604
  <?php
605
  }
606
  ?>
608
  </td>
609
  </tr>
610
  <tr>
611
+ <td class="spider_label"><label for="masonry_thumb_hover_effect_value"><?php _e("Hover effect value:", 'bwg_back'); ?> </label></td>
612
  <td>
613
  <input type="text" name="masonry_thumb_hover_effect_value" id="masonry_thumb_hover_effect_value" value="<?php echo $row->masonry_thumb_hover_effect_value; ?>" class="spider_char_input" />
614
+ <div class="spider_description">E.g. <?php _e("Rotate:", 'bwg_back'); ?> 10deg, <?php _e("Scale:", 'bwg_back'); ?> 1.5, <?php _e("Skew:", 'bwg_back'); ?> 10deg.</div>
615
  </td>
616
  </tr>
617
  <tr>
618
+ <td class="spider_label"><label><?php _e("Transition:", 'bwg_back'); ?> </label></td>
619
  <td id="masonry_thumb_transition">
620
  <input type="radio" name="masonry_thumb_transition" id="masonry_thumb_transition1" value="1"<?php if ($row->masonry_thumb_transition == 1) echo 'checked="checked"'; ?> />
621
+ <label for="masonry_thumb_transition1" id="masonry_thumb_transition1_lbl"><?php _e("Yes", 'bwg_back'); ?></label>
622
  <input type="radio" name="masonry_thumb_transition" id="masonry_thumb_transition0" value="0"<?php if ($row->masonry_thumb_transition == 0) echo 'checked="checked"'; ?> />
623
+ <label for="masonry_thumb_transition0" id="masonry_thumb_transition0_lbl"><?php _e("No", 'bwg_back'); ?></label>
624
  </td>
625
  </tr>
626
  <tr>
627
+ <td class="spider_label"><label for="masonry_description_font_size"><?php _e("Description font size:", 'bwg_back'); ?> </label></td>
628
  <td>
629
  <input type="text" name="masonry_description_font_size" id="masonry_description_font_size" value="<?php echo $row->masonry_description_font_size; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
630
  </td>
631
  </tr>
632
  <tr>
633
+ <td class="spider_label"><label for="masonry_description_color"><?php _e("Description font color:", 'bwg_back'); ?> </label></td>
634
  <td>
635
  <input type="text" name="masonry_description_color" id="masonry_description_color" value="<?php echo $row->masonry_description_color; ?>" class="color" />
636
  </td>
637
  </tr>
638
  <tr>
639
+ <td class="spider_label"><label for="masonry_description_font_style"><?php _e("Description font family:", 'bwg_back'); ?> </label></td>
640
  <td>
641
  <select name="masonry_description_font_style" id="masonry_description_font_style">
642
  <?php
659
  <table style="clear:both;">
660
  <tbody>
661
  <tr>
662
+ <td class="spider_label"><label for="slideshow_cont_bg_color"><?php _e("Background color:", 'bwg_back'); ?> </label></td>
663
  <td>
664
  <input type="text" name="slideshow_cont_bg_color" id="slideshow_cont_bg_color" value="<?php echo $row->slideshow_cont_bg_color; ?>" class="color"/>
665
  </td>
666
  </tr>
667
  <tr>
668
+ <td class="spider_label"><label for="slideshow_rl_btn_size"><?php _e("Right, left buttons size:", 'bwg_back'); ?> </label></td>
669
  <td>
670
  <input type="text" name="slideshow_rl_btn_size" id="slideshow_rl_btn_size" value="<?php echo $row->slideshow_rl_btn_size; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
671
  </td>
672
  </tr>
673
  <tr>
674
+ <td class="spider_label"><label for="slideshow_play_pause_btn_size"><?php _e("Play, pause buttons size:", 'bwg_back'); ?> </label></td>
675
  <td>
676
  <input type="text" name="slideshow_play_pause_btn_size" id="slideshow_play_pause_btn_size" value="<?php echo $row->slideshow_play_pause_btn_size; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
677
  </td>
678
  </tr>
679
  <tr>
680
+ <td class="spider_label"><label for="slideshow_rl_btn_color"><?php _e("Buttons color:", 'bwg_back'); ?> </label></td>
681
  <td>
682
  <input type="text" name="slideshow_rl_btn_color" id="slideshow_rl_btn_color" value="<?php echo $row->slideshow_rl_btn_color; ?>" class="color"/>
683
  </td>
684
  </tr>
685
  <tr>
686
+ <td class="spider_label"><label for="slideshow_close_btn_transparent"><?php _e("Buttons transparency:", 'bwg_back'); ?> </label></td>
687
  <td>
688
  <input type="text" name="slideshow_close_btn_transparent" id="slideshow_close_btn_transparent" value="<?php echo $row->slideshow_close_btn_transparent; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> %
689
+ <div class="spider_description">V<?php _e("alue must be between 0 to 100.", 'bwg_back'); ?></div>
690
  </td>
691
  </tr>
692
  <tr>
693
+ <td class="spider_label"><label for="slideshow_close_rl_btn_hover_color"><?php _e("Buttons hover color:", 'bwg_back'); ?> </label></td>
694
  <td>
695
  <input type="text" name="slideshow_close_rl_btn_hover_color" id="slideshow_close_rl_btn_hover_color" value="<?php echo $row->slideshow_close_rl_btn_hover_color; ?>" class="color"/>
696
  </td>
697
  </tr>
698
  <tr>
699
+ <td class="spider_label"><label for="slideshow_rl_btn_width"><?php _e("Right, left buttons width:", 'bwg_back'); ?> </label></td>
700
  <td>
701
  <input type="text" name="slideshow_rl_btn_width" id="slideshow_rl_btn_width" value="<?php echo $row->slideshow_rl_btn_width; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
702
  </td>
703
  </tr>
704
  <tr>
705
+ <td class="spider_label"><label for="slideshow_rl_btn_height"><?php _e("Right, left buttons height:", 'bwg_back'); ?> </label></td>
706
  <td>
707
  <input type="text" name="slideshow_rl_btn_height" id="slideshow_rl_btn_height" value="<?php echo $row->slideshow_rl_btn_height; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
708
  </td>
709
  </tr>
710
  <tr>
711
+ <td class="spider_label"><label for="slideshow_rl_btn_bg_color"><?php _e("Right, left buttons background color:", 'bwg_back'); ?> </label></td>
712
  <td>
713
  <input type="text" name="slideshow_rl_btn_bg_color" id="slideshow_rl_btn_bg_color" value="<?php echo $row->slideshow_rl_btn_bg_color; ?>" class="color"/>
714
  </td>
715
  </tr>
716
  <tr>
717
+ <td class="spider_label"><label for="slideshow_rl_btn_border_width"><?php _e("Right, left buttons border width:", 'bwg_back'); ?> </label></td>
718
  <td>
719
  <input type="text" name="slideshow_rl_btn_border_width" id="slideshow_rl_btn_border_width" value="<?php echo $row->slideshow_rl_btn_border_width; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
720
  </td>
721
  </tr>
722
  <tr>
723
+ <td class="spider_label"><label for="slideshow_rl_btn_border_style"><?php _e("Right, left buttons border style: ", 'bwg_back'); ?></label></td>
724
  <td>
725
  <select name="slideshow_rl_btn_border_style" id="slideshow_rl_btn_border_style">
726
  <?php
727
  foreach ($border_styles as $key => $border_style) {
728
  ?>
729
+ <option value="<?php echo $key; ?>" <?php echo (($row->slideshow_rl_btn_border_style == $key) ? 'selected="selected"' : ''); ?>><?php echo __($border_style,"bwg_back"); ?></option>
730
  <?php
731
  }
732
  ?>
734
  </td>
735
  </tr>
736
  <tr>
737
+ <td class="spider_label"><label for="slideshow_rl_btn_border_color"><?php _e("Right, left buttons border color:", 'bwg_back'); ?> </label></td>
738
  <td>
739
  <input type="text" name="slideshow_rl_btn_border_color" id="slideshow_rl_btn_border_color" value="<?php echo $row->slideshow_rl_btn_border_color; ?>" class="color"/>
740
  </td>
741
  </tr>
742
  <tr>
743
+ <td class="spider_label"><label for="slideshow_rl_btn_border_radius"><?php _e("Right, left buttons border radius: ", 'bwg_back'); ?></label></td>
744
  <td>
745
  <input type="text" name="slideshow_rl_btn_border_radius" id="slideshow_rl_btn_border_radius" value="<?php echo $row->slideshow_rl_btn_border_radius; ?>" class="spider_char_input"/>
746
+ <div class="spider_description"><?php _e("Use CSS type values.", 'bwg_back'); ?></div>
747
  </td>
748
  </tr>
749
  <tr>
750
+ <td class="spider_label"><label for="slideshow_rl_btn_style"><?php _e("Right, left buttons style:", 'bwg_back'); ?> </label></td>
751
  <td>
752
  <select name="slideshow_rl_btn_style" id="slideshow_rl_btn_style">
753
  <?php
754
  foreach ($button_styles as $key => $button_style) {
755
  ?>
756
+ <option value="<?php echo $key; ?>" <?php echo (($row->slideshow_rl_btn_style == $key) ? 'selected="selected"' : ''); ?>><?php echo __($button_style,"bwg_back"); ?></option>
757
  <?php
758
  }
759
  ?>
761
  </td>
762
  </tr>
763
  <tr>
764
+ <td class="spider_label"><label for="slideshow_rl_btn_box_shadow"><?php _e("Right, left buttons box shadow:", 'bwg_back'); ?> </label></td>
765
  <td>
766
  <input type="text" name="slideshow_rl_btn_box_shadow" id="slideshow_rl_btn_box_shadow" value="<?php echo $row->slideshow_rl_btn_box_shadow; ?>" class="spider_box_input"/>
767
+ <div class="spider_description"><?php _e("Use CSS type values.", 'bwg_back'); ?></div>
768
  </td>
769
  </tr>
770
  </tbody>
774
  <table style="clear:both;">
775
  <tbody>
776
  <tr>
777
+ <td class="spider_label"><label><?php _e("Filmstrip/Slider bullet position: ", 'bwg_back'); ?></label></td>
778
  <td>
779
  <select name="slideshow_filmstrip_pos" id="slideshow_filmstrip_pos">
780
+ <option value="top" <?php echo (($row->slideshow_filmstrip_pos == "top") ? 'selected="selected"' : ''); ?>><?php _e("Top", 'bwg_back'); ?></option>
781
+ <option value="right" <?php echo (($row->slideshow_filmstrip_pos == "right") ? 'selected="selected"' : ''); ?>><?php _e("Right", 'bwg_back'); ?></option>
782
+ <option value="bottom" <?php echo (($row->slideshow_filmstrip_pos == "bottom") ? 'selected="selected"' : ''); ?>><?php _e("Bottom", 'bwg_back'); ?></option>
783
+ <option value="left" <?php echo (($row->slideshow_filmstrip_pos == "left") ? 'selected="selected"' : ''); ?>><?php _e("Left", 'bwg_back'); ?></option>
784
  </select>
785
  </td>
786
  </tr>
787
  <tr>
788
+ <td class="spider_label"><label for="slideshow_filmstrip_thumb_margin"><?php _e("Filmstrip margin:", 'bwg_back'); ?> </label></td>
789
  <td>
790
  <input type="text" name="slideshow_filmstrip_thumb_margin" id="slideshow_filmstrip_thumb_margin" value="<?php echo $row->slideshow_filmstrip_thumb_margin; ?>" class="spider_char_input"/>
791
+ <div class="spider_description"><?php _e("Use CSS type values.", 'bwg_back'); ?></div>
792
  </td>
793
  </tr>
794
  <tr>
795
+ <td class="spider_label"><label for="slideshow_filmstrip_thumb_border_width"><?php _e("Filmstrip border width:", 'bwg_back'); ?> </label></td>
796
  <td>
797
  <input type="text" name="slideshow_filmstrip_thumb_border_width" id="slideshow_filmstrip_thumb_border_width" value="<?php echo $row->slideshow_filmstrip_thumb_border_width; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
798
  </td>
799
  </tr>
800
  <tr>
801
+ <td class="spider_label"><label for="slideshow_filmstrip_thumb_border_style"><?php _e("Filmstrip border style: ", 'bwg_back'); ?></label>
802
  </td>
803
  <td>
804
  <select name="slideshow_filmstrip_thumb_border_style" id="slideshow_filmstrip_thumb_border_style">
805
  <?php
806
  foreach ($border_styles as $key => $border_style) {
807
  ?>
808
+ <option value="<?php echo $key; ?>" <?php echo (($row->slideshow_filmstrip_thumb_border_style == $key) ? 'selected="selected"' : ''); ?>><?php echo __($border_style,"bwg_back"); ?></option>
809
  <?php
810
  }
811
  ?>
813
  </td>
814
  </tr>
815
  <tr>
816
+ <td class="spider_label"><label for="slideshow_filmstrip_thumb_border_color"><?php _e("Filmstrip border color: ", 'bwg_back'); ?></label></td>
817
  <td>
818
  <input type="text" name="slideshow_filmstrip_thumb_border_color" id="slideshow_filmstrip_thumb_border_color" value="<?php echo $row->slideshow_filmstrip_thumb_border_color; ?>" class="color"/>
819
  </td>
820
  </tr>
821
  <tr>
822
+ <td class="spider_label"><label for="slideshow_filmstrip_thumb_border_radius"><?php _e("Filmstrip border radius: ", 'bwg_back'); ?></label></td>
823
  <td>
824
  <input type="text" name="slideshow_filmstrip_thumb_border_radius" id="slideshow_filmstrip_thumb_border_radius" value="<?php echo $row->slideshow_filmstrip_thumb_border_radius; ?>" class="spider_char_input"/>
825
+ <div class="spider_description"><?php _e("Use CSS type values.", 'bwg_back'); ?></div>
826
  </td>
827
  </tr>
828
  <tr>
829
+ <td class="spider_label"><label for="slideshow_filmstrip_thumb_active_border_width"><?php _e("Filmstrip active border width:", 'bwg_back'); ?> </label></td>
830
  <td>
831
  <input type="text" name="slideshow_filmstrip_thumb_active_border_width" id="slideshow_filmstrip_thumb_active_border_width" value="<?php echo $row->slideshow_filmstrip_thumb_active_border_width; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/>px
832
  </td>
833
  </tr>
834
  <tr>
835
+ <td class="spider_label"><label for="slideshow_filmstrip_thumb_active_border_color"><?php _e("Filmstrip active border color:", 'bwg_back'); ?> </label></td>
836
  <td>
837
  <input type="text" name="slideshow_filmstrip_thumb_active_border_color" id="slideshow_filmstrip_thumb_active_border_color" value="<?php echo $row->slideshow_filmstrip_thumb_active_border_color; ?>" class="color"/>
838
  </td>
839
  </tr>
840
  <tr id="tr_appWidth">
841
+ <td class="spider_label"><label for="slideshow_filmstrip_thumb_deactive_transparent"><?php _e("Filmstrip deactive transparency:", 'bwg_back'); ?> </label></td>
842
  <td>
843
  <input type="text" name="slideshow_filmstrip_thumb_deactive_transparent" id="slideshow_filmstrip_thumb_deactive_transparent" value="<?php echo $row->slideshow_filmstrip_thumb_deactive_transparent; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> %
844
+ <div class="spider_description"><?php _e("Value must be between 0 to 100.", 'bwg_back'); ?></div>
845
  </td>
846
  </tr>
847
  <tr>
848
+ <td class="spider_label"><label for="slideshow_filmstrip_rl_bg_color"><?php _e("Filmstrip right, left buttons background color:", 'bwg_back'); ?> </label></td>
849
  <td>
850
  <input type="text" name="slideshow_filmstrip_rl_bg_color" id="slideshow_filmstrip_rl_bg_color" value="<?php echo $row->slideshow_filmstrip_rl_bg_color; ?>" class="color"/>
851
  </td>
852
  </tr>
853
  <tr>
854
+ <td class="spider_label"><label for="slideshow_filmstrip_rl_btn_color"><?php _e("Filmstrip right, left buttons color: ", 'bwg_back'); ?></label></td>
855
  <td>
856
  <input type="text" name="slideshow_filmstrip_rl_btn_color" id="slideshow_filmstrip_rl_btn_color" value="<?php echo $row->slideshow_filmstrip_rl_btn_color; ?>" class="color"/>
857
  </td>
858
  </tr>
859
  <tr>
860
+ <td class="spider_label"><label for="slideshow_filmstrip_rl_btn_size"><?php _e("Filmstrip right, left buttons size: ", 'bwg_back'); ?></label></td>
861
  <td>
862
  <input type="text" name="slideshow_filmstrip_rl_btn_size" id="slideshow_filmstrip_rl_btn_size" value="<?php echo $row->slideshow_filmstrip_rl_btn_size; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)" /> px
863
  </td>
864
  </tr>
865
  <tr>
866
+ <td class="spider_label"><label for="slideshow_dots_width"><?php _e("Slider bullet width: ", 'bwg_back'); ?></label></td>
867
  <td>
868
  <input type="text" name="slideshow_dots_width" id="slideshow_dots_width" value="<?php echo $row->slideshow_dots_width; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
869
  </td>
870
  </tr>
871
  <tr>
872
+ <td class="spider_label"><label for="slideshow_dots_height"><?php _e("Slider bullet height: ", 'bwg_back'); ?></label></td>
873
  <td>
874
  <input type="text" name="slideshow_dots_height" id="slideshow_dots_height" value="<?php echo $row->slideshow_dots_height; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
875
  </td>
876
  </tr>
877
  <tr>
878
+ <td class="spider_label"><label for="slideshow_dots_border_radius"><?php _e("Slider bullet border radius:", 'bwg_back'); ?> </label></td>
879
  <td>
880
  <input type="text" name="slideshow_dots_border_radius" id="slideshow_dots_border_radius" value="<?php echo $row->slideshow_dots_border_radius; ?>" class="spider_char_input"/>
881
+ <div class="spider_description"><?php _e("Use CSS type values.", 'bwg_back'); ?></div>
882
  </td>
883
  </tr>
884
  <tr>
885
+ <td class="spider_label"><label for="slideshow_dots_background_color"><?php _e("Slider bullet background color: ", 'bwg_back'); ?></label></td>
886
  <td>
887
  <input type="text" name="slideshow_dots_background_color" id="slideshow_dots_background_color" value="<?php echo $row->slideshow_dots_background_color; ?>" class="color"/>
888
  </td>
889
  </tr>
890
  <tr>
891
+ <td class="spider_label"><label for="slideshow_dots_margin"><?php _e("Slider bullet margin:", 'bwg_back'); ?> </label></td>
892
  <td>
893
  <input type="text" name="slideshow_dots_margin" id="slideshow_dots_margin" value="<?php echo $row->slideshow_dots_margin; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
894
  </td>
895
  </tr>
896
  <tr>
897
+ <td class="spider_label"><label for="slideshow_dots_active_background_color"><?php _e("Slider bullet active background color:", 'bwg_back'); ?> </label></td>
898
  <td>
899
  <input type="text" name="slideshow_dots_active_background_color" id="slideshow_dots_active_background_color" value="<?php echo $row->slideshow_dots_active_background_color; ?>" class="color"/>
900
  </td>
901
  </tr>
902
  <tr>
903
+ <td class="spider_label"><label for="slideshow_dots_active_border_width"><?php _e("Slider bullet active border width: ", 'bwg_back'); ?></label></td>
904
  <td>
905
  <input type="text" name="slideshow_dots_active_border_width" id="slideshow_dots_active_border_width" value="<?php echo $row->slideshow_dots_active_border_width; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
906
  </td>
907
  </tr>
908
  <tr>
909
+ <td class="spider_label"><label for="slideshow_dots_active_border_color"><?php _e("Slider bullet active border color:", 'bwg_back'); ?> </label></td>
910
  <td>
911
  <input type="text" name="slideshow_dots_active_border_color" id="slideshow_dots_active_border_color" value="<?php echo $row->slideshow_dots_active_border_color; ?>" class="color"/>
912
  </td>
918
  <table style="clear:both;">
919
  <tbody>
920
  <tr>
921
+ <td class="spider_label"><label for="slideshow_title_background_color"><?php _e("Title background color:", 'bwg_back'); ?> </label></td>
922
  <td>
923
  <input type="text" name="slideshow_title_background_color" id="slideshow_title_background_color" value="<?php echo $row->slideshow_title_background_color; ?>" class="color"/>
924
  </td>
925
  </tr>
926
  <tr>
927
+ <td class="spider_label"><label for="slideshow_title_opacity"><?php _e("Title transparency: ", 'bwg_back'); ?></label></td>
928
  <td>
929
  <input type="text" name="slideshow_title_opacity" id="slideshow_title_opacity" value="<?php echo $row->slideshow_title_opacity; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> %
930
+ <div class="spider_description"><?php _e("Value must be between 0 to 100.", 'bwg_back'); ?></div>
931
  </td>
932
  </tr>
933
  <tr>
934
+ <td class="spider_label"><label for="slideshow_title_border_radius"><?php _e("Title border radius:", 'bwg_back'); ?> </label></td>
935
  <td>
936
  <input type="text" name="slideshow_title_border_radius" id="slideshow_title_border_radius" value="<?php echo $row->slideshow_title_border_radius; ?>" class="spider_char_input"/>
937
+ <div class="spider_description"><?php _e("Use CSS type values.", 'bwg_back'); ?></div>
938
  </td>
939
  </tr>
940
  <tr>
941
+ <td class="spider_label"><label for="slideshow_title_padding"><?php _e("Title padding:", 'bwg_back'); ?> </label></td>
942
  <td>
943
  <input type="text" name="slideshow_title_padding" id="slideshow_title_padding" value="<?php echo $row->slideshow_title_padding; ?>" class="spider_char_input"/>
944
+ <div class="spider_description"><?php _e("Use CSS type values.", 'bwg_back'); ?></div>
945
  </td>
946
  </tr>
947
  <tr>
948
+ <td class="spider_label"><label for="slideshow_title_font_size"><?php _e("Title font size:", 'bwg_back'); ?> </label></td>
949
  <td>
950
  <input type="text" name="slideshow_title_font_size" id="slideshow_title_font_size" value="<?php echo $row->slideshow_title_font_size; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)" /> px
951
  </td>
952
  </tr>
953
  <tr>
954
+ <td class="spider_label"><label for="slideshow_title_color"><?php _e("Title color:", 'bwg_back'); ?> </label></td>
955
  <td>
956
  <input type="text" name="slideshow_title_color" id="slideshow_title_color" value="<?php echo $row->slideshow_title_color; ?>" class="color"/>
957
  </td>
958
  </tr>
959
  <tr>
960
+ <td class="spider_label"><label for="slideshow_title_font"><?php _e("Title font family:", 'bwg_back'); ?> </label></td>
961
  <td>
962
  <select name="slideshow_title_font" id="slideshow_title_font">
963
  <?php
971
  </td>
972
  </tr>
973
  <tr>
974
+ <td class="spider_label"><label for="slideshow_description_background_color"><?php _e("Description background color:", 'bwg_back'); ?> </label></td>
975
  <td>
976
  <input type="text" name="slideshow_description_background_color" id="slideshow_description_background_color" value="<?php echo $row->slideshow_description_background_color; ?>" class="color"/>
977
  </td>
978
  </tr>
979
  <tr>
980
+ <td class="spider_label"><label for="slideshow_description_opacity"><?php _e("Description transparency: ", 'bwg_back'); ?></label></td>
981
  <td>
982
  <input type="text" name="slideshow_description_opacity" id="slideshow_description_opacity" value="<?php echo $row->slideshow_description_opacity; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> %
983
+ <div class="spider_description"><?php _e("Value must be between 0 to 100.", 'bwg_back'); ?></div>
984
  </td>
985
  </tr>
986
  <tr>
987
+ <td class="spider_label"><label for="slideshow_description_border_radius"><?php _e("Description border radius: ", 'bwg_back'); ?></label></td>
988
  <td>
989
  <input type="text" name="slideshow_description_border_radius" id="slideshow_description_border_radius" value="<?php echo $row->slideshow_description_border_radius; ?>" class="spider_char_input"/>
990
+ <div class="spider_description"><?php _e("Use CSS type values.", 'bwg_back'); ?></div>
991
  </td>
992
  </tr>
993
  <tr>
994
+ <td class="spider_label"><label for="slideshow_description_padding"><?php _e("Description padding:", 'bwg_back'); ?> </label></td>
995
  <td>
996
  <input type="text" name="slideshow_description_padding" id="slideshow_description_padding" value="<?php echo $row->slideshow_description_padding; ?>" class="spider_char_input"/>
997
+ <div class="spider_description"><?php _e("Use CSS type values.", 'bwg_back'); ?></div>
998
  </td>
999
  </tr>
1000
  <tr>
1001
+ <td class="spider_label"><label for="slideshow_description_font_size"><?php _e("Description font size:", 'bwg_back'); ?> </label></td>
1002
  <td>
1003
  <input type="text" name="slideshow_description_font_size" id="slideshow_description_font_size" value="<?php echo $row->slideshow_description_font_size; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
1004
  </td>
1005
  </tr>
1006
  <tr>
1007
+ <td class="spider_label"><label for="slideshow_description_color"><?php _e("Description color: ", 'bwg_back'); ?></label></td>
1008
  <td>
1009
  <input type="text" name="slideshow_description_color" id="slideshow_description_color" value="<?php echo $row->slideshow_description_color; ?>" class="color"/>
1010
  </td>
1011
  </tr>
1012
  <tr>
1013
+ <td class="spider_label"><label for="slideshow_description_font"><?php _e("Description font family: ", 'bwg_back'); ?></label></td>
1014
  <td>
1015
  <select name="slideshow_description_font" id="slideshow_description_font">
1016
  <?php
1033
  <table style="clear:both;">
1034
  <tbody>
1035
  <tr>
1036
+ <td class="spider_label"><label for="image_browser_full_padding"><?php _e("Full padding:", 'bwg_back'); ?> </label></td>
1037
  <td>
1038
  <input type="text" name="image_browser_full_padding" id="image_browser_full_padding" value="<?php echo $row->image_browser_full_padding; ?>" class="spider_char_input"/>
1039
+ <div class="spider_description"><?php _e("Use CSS type values.", 'bwg_back'); ?></div>
1040
  </td>
1041
  </tr>
1042
  <tr>
1043
+ <td class="spider_label"><label for="image_browser_full_bg_color"><?php _e("Full background color:", 'bwg_back'); ?> </label></td>
1044
  <td>
1045
  <input type="text" name="image_browser_full_bg_color" id="image_browser_full_bg_color" value="<?php echo $row->image_browser_full_bg_color; ?>" class="color" />
1046
  </td>
1047
  </tr>
1048
  <tr>
1049
+ <td class="spider_label"><label for="image_browser_full_transparent"><?php _e("Full background transparency:", 'bwg_back'); ?> </label></td>
1050
  <td>
1051
  <input type="text" name="image_browser_full_transparent" id="image_browser_full_transparent" value="<?php echo $row->image_browser_full_transparent; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> %
1052
+ <div class="spider_description"><?php _e("Value must be between 0 to 100.", 'bwg_back'); ?></div>
1053
  </td>
1054
  </tr>
1055
  <tr>
1056
+ <td class="spider_label"><label for="image_browser_full_border_radius"><?php _e("Full border radius:", 'bwg_back'); ?> </label></td>
1057
  <td>
1058
  <input type="text" name="image_browser_full_border_radius" id="image_browser_full_border_radius" value="<?php echo $row->image_browser_full_border_radius; ?>" class="spider_char_input" />
1059
+ <div class="spider_description"><?php _e("Use CSS type values.", 'bwg_back'); ?></div>
1060
  </td>
1061
  </tr>
1062
  <tr>
1063
+ <td class="spider_label"><label for="image_browser_full_border_width"><?php _e("Full border width:", 'bwg_back'); ?> </label></td>
1064
  <td>
1065
  <input type="text" name="image_browser_full_border_width" id="image_browser_full_border_width" value="<?php echo $row->image_browser_full_border_width; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
1066
  </td>
1067
  </tr>
1068
  <tr>
1069
+ <td class="spider_label"><label for="image_browser_full_border_style"><?php _e("Full border style:", 'bwg_back'); ?> </label></td>
1070
  <td>
1071
  <select name="image_browser_full_border_style" id="image_browser_full_border_style">
1072
  <?php
1073
  foreach ($border_styles as $key => $border_style) {
1074
  ?>
1075
+ <option value="<?php echo $key; ?>" <?php echo (($row->image_browser_full_border_style == $key) ? 'selected="selected"' : ''); ?>><?php echo __($border_style,"bwg_back"); ?></option>
1076
  <?php
1077
  }
1078
  ?>
1080
  </td>
1081
  </tr>
1082
  <tr>
1083
+ <td class="spider_label"><label for="image_browser_full_border_color"><?php _e("Full border color:", 'bwg_back'); ?> </label></td>
1084
  <td>
1085
  <input type="text" name="image_browser_full_border_color" id="image_browser_full_border_color" value="<?php echo $row->image_browser_full_border_color; ?>" class="color" />
1086
  </td>
1092
  <table style="clear:both;">
1093
  <tbody>
1094
  <tr>
1095
+ <td class="spider_label"><label for="image_browser_align0"><?php _e("Alignment:", 'bwg_back'); ?> </label></td>
1096
  <td>
1097
  <select name="image_browser_align" id="image_browser_align">
1098
  <?php
1099
  foreach ($aligns as $key => $align) {
1100
  ?>
1101
+ <option value="<?php echo $key; ?>" <?php echo (($row->image_browser_align == $key) ? 'selected="selected"' : ''); ?>><?php echo __($align,"bwg_back"); ?></option>
1102
  <?php
1103
  }
1104
  ?>
1106
  </td>
1107
  </tr>
1108
  <tr>
1109
+ <td class="spider_label"><label for="image_browser_margin"><?php _e("Margin:", 'bwg_back'); ?> </label></td>
1110
  <td>
1111
  <input type="text" name="image_browser_margin" id="image_browser_margin" value="<?php echo $row->image_browser_margin; ?>" class="spider_char_input" />
1112
+ <div class="spider_description"><?php _e("Use CSS type values.", 'bwg_back'); ?></div>
1113
  </td>
1114
  </tr>
1115
  <tr>
1116
+ <td class="spider_label"><label for="image_browser_padding"><?php _e("Padding:", 'bwg_back'); ?> </label></td>
1117
  <td>
1118
  <input type="text" name="image_browser_padding" id="image_browser_padding" value="<?php echo $row->image_browser_padding; ?>" class="spider_char_input" />
1119
+ <div class="spider_description"><?php _e("Use CSS type values.", 'bwg_back'); ?></div>
1120
  </td>
1121
  </tr>
1122
  <tr>
1123
+ <td class="spider_label"><label for="image_browser_border_width"><?php _e("Border width:", 'bwg_back'); ?> </label></td>
1124
  <td>
1125
  <input type="text" name="image_browser_border_width" id="image_browser_border_width" value="<?php echo $row->image_browser_border_width; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
1126
  </td>
1127
  </tr>
1128
  <tr>
1129
+ <td class="spider_label"><label for="image_browser_border_style"><?php _e("Border style:", 'bwg_back'); ?> </label></td>
1130
  <td>
1131
  <select name="image_browser_border_style" id="image_browser_border_style">
1132
  <?php
1133
  foreach ($border_styles as $key => $border_style) {
1134
  ?>
1135
+ <option value="<?php echo $key; ?>" <?php echo (($row->image_browser_border_style == $key) ? 'selected="selected"' : ''); ?>><?php echo __($border_style,"bwg_back"); ?></option>
1136
  <?php
1137
  }
1138
  ?>
1140
  </td>
1141
  </tr>
1142
  <tr>
1143
+ <td class="spider_label"><label for="image_browser_border_color"><?php _e("Border color:", 'bwg_back'); ?> </label></td>
1144
  <td>
1145
  <input type="text" name="image_browser_border_color" id="image_browser_border_color" value="<?php echo $row->image_browser_border_color; ?>" class="color" />
1146
  </td>
1147
  </tr>
1148
  <tr>
1149
+ <td class="spider_label"><label for="image_browser_border_radius"><?php _e("Border radius:", 'bwg_back'); ?> </label></td>
1150
  <td>
1151
  <input type="text" name="image_browser_border_radius" id="image_browser_border_radius" value="<?php echo $row->image_browser_border_radius; ?>" class="spider_char_input" />
1152
+ <div class="spider_description"><?php _e("Use CSS type values.", 'bwg_back'); ?></div>
1153
  </td>
1154
  </tr>
1155
  <tr>
1156
+ <td class="spider_label"><label for="image_browser_bg_color"><?php _e("Background color:", 'bwg_back'); ?> </label></td>
1157
  <td>
1158
  <input type="text" name="image_browser_bg_color" id="image_browser_bg_color" value="<?php echo $row->image_browser_bg_color; ?>" class="color" />
1159
  </td>
1160
  </tr>
1161
  <tr>
1162
+ <td class="spider_label"><label for="image_browser_transparent"><?php _e("Background transparency:", 'bwg_back'); ?> </label></td>
1163
  <td>
1164
  <input type="text" name="image_browser_transparent" id="image_browser_transparent" value="<?php echo $row->image_browser_transparent; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> %
1165
+ <div class="spider_description"><?php _e("Value must be between 0 to 100.", 'bwg_back'); ?></div>
1166
  </td>
1167
  </tr>
1168
  <tr>
1169
+ <td class="spider_label"><label for="image_browser_box_shadow"><?php _e("Box shadow:", 'bwg_back'); ?> </label></td>
1170
  <td>
1171
  <input type="text" name="image_browser_box_shadow" id="image_browser_box_shadow" value="<?php echo $row->image_browser_box_shadow; ?>" class="spider_box_input" />
1172
+ <div class="spider_description"><?php _e("Use CSS type values.", 'bwg_back'); ?></div>
1173
  </td>
1174
  </tr>
1175
  </tbody>
1179
  <table style="clear:both;">
1180
  <tbody>
1181
  <tr>
1182
+ <td class="spider_label"><label for="image_browser_image_description_align0"><?php _e("Title alignment:", 'bwg_back'); ?> </label></td>
1183
  <td>
1184
  <select name="image_browser_image_description_align" id="image_browser_image_description_align">
1185
  <?php
1186
  foreach ($aligns as $key => $align) {
1187
  ?>
1188
+ <option value="<?php echo $key; ?>" <?php echo (($row->image_browser_image_description_align == $key) ? 'selected="selected"' : ''); ?>><?php echo __($align,"bwg_back"); ?></option>
1189
  <?php
1190
  }
1191
  ?>
1193
  </td>
1194
  </tr>
1195
  <tr>
1196
+ <td class="spider_label"><label for="image_browser_img_font_size"><?php _e("Font size:", 'bwg_back'); ?> </label></td>
1197
  <td>
1198
  <input type="text" name="image_browser_img_font_size" id="image_browser_img_font_size" value="<?php echo $row->image_browser_img_font_size; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
1199
  </td>
1200
  </tr>
1201
  <tr>
1202
+ <td class="spider_label"><label for="image_browser_img_font_color"><?php _e("Font color:", 'bwg_back'); ?> </label></td>
1203
  <td>
1204
  <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" />
1205
  </td>
1206
  </tr>
1207
  <tr>
1208
+ <td class="spider_label"><label for="image_browser_img_font_family"><?php _e("Font family:", 'bwg_back'); ?> </label></td>
1209
  <td>
1210
  <select name="image_browser_img_font_family" id="image_browser_img_font_family">
1211
  <?php
1219
  </td>
1220
  </tr>
1221
  <tr>
1222
+ <td class="spider_label"><label for="image_browser_image_description_margin"><?php _e("Description margin:", 'bwg_back'); ?> </label></td>
1223
  <td>
1224
  <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" />
1225
+ <div class="spider_description"><?php _e("Use CSS type values.", 'bwg_back'); ?></div>
1226
  </td>
1227
  </tr>
1228
  <tr>
1229
+ <td class="spider_label"><label for="image_browser_image_description_padding"><?php _e("Description padding:", 'bwg_back'); ?> </label></td>
1230
  <td>
1231
  <input type="text" name="image_browser_image_description_padding" id="image_browser_image_description_padding" value="<?php echo $row->image_browser_image_description_padding; ?>" class="spider_char_input" />
1232
+ <div class="spider_description"><?php _e("Use CSS type values.", 'bwg_back'); ?></div>
1233
  </td>
1234
  </tr>
1235
  <tr>
1236
+ <td class="spider_label"><label for="image_browser_image_description_border_width"><?php _e("Description border width: ", 'bwg_back'); ?></label></td>
1237
  <td>
1238
  <input type="text" name="image_browser_image_description_border_width" id="image_browser_image_description_border_width" value="<?php echo $row->image_browser_image_description_border_width; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)" /> px
1239
  </td>
1240
  </tr>
1241
  <tr>
1242
+ <td class="spider_label"><label for="image_browser_image_description_border_style"><?php _e("Description border style: ", 'bwg_back'); ?></label></td>
1243
  <td>
1244
  <select name="image_browser_image_description_border_style" id="image_browser_image_description_border_style">
1245
  <?php
1246
  foreach ($border_styles as $key => $border_style) {
1247
  ?>
1248
+ <option value="<?php echo $key; ?>" <?php echo (($row->image_browser_image_description_border_style == $key) ? 'selected="selected"' : ''); ?>><?php echo __($border_style,"bwg_back"); ?></option>
1249
  <?php
1250
  }
1251
  ?>
1253
  </td>
1254
  </tr>
1255
  <tr>
1256
+ <td class="spider_label"><label for="image_browser_image_description_border_color"><?php _e("Description border color: ", 'bwg_back'); ?></label></td>
1257
  <td>
1258
  <input type="text" name="image_browser_image_description_border_color" id="image_browser_image_description_border_color" value="<?php echo $row->image_browser_image_description_border_color; ?>" class="color" />
1259
  </td>
1260
  </tr>
1261
  <tr>
1262
+ <td class="spider_label"><label for="image_browser_image_description_border_radius"><?php _e("Description border radius:", 'bwg_back'); ?> </label></td>
1263
  <td>
1264
  <input type="text" name="image_browser_image_description_border_radius" id="image_browser_image_description_border_radius" value="<?php echo $row->image_browser_image_description_border_radius; ?>" class="spider_char_input" />
1265
+ <div class="spider_description"><?php _e("Use CSS type values.", 'bwg_back'); ?></div>
1266
  </td>
1267
  </tr>
1268
  <tr>
1269
+ <td class="spider_label"><label for="image_browser_image_description_bg_color"><?php _e("Description background color: ", 'bwg_back'); ?></label></td>
1270
  <td>
1271
  <input type="text" name="image_browser_image_description_bg_color" id="image_browser_image_description_bg_color" value="<?php echo $row->image_browser_image_description_bg_color; ?>" class="color" />
1272
  </td>
1281
  <table style="clear:both;">
1282
  <tbody>
1283
  <tr>
1284
+ <td class="spider_label"><label for="album_compact_thumb_padding"><?php _e("Padding:", 'bwg_back'); ?> </label></td>
1285
  <td>
1286
  <input type="text" name="album_compact_thumb_padding" id="album_compact_thumb_padding" value="<?php echo $row->album_compact_thumb_padding; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
1287
+ <div class="spider_description"><?php _e("Use CSS type values.", 'bwg_back'); ?></div>
1288
  </td>
1289
  </tr>
1290
  <tr>
1291
+ <td class="spider_label"><label for="album_compact_thumb_margin"><?php _e("Margin:", 'bwg_back'); ?> </label></td>
1292
  <td>
1293
  <input type="text" name="album_compact_thumb_margin" id="album_compact_thumb_margin" value="<?php echo $row->album_compact_thumb_margin; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
1294
+ <div class="spider_description">U<?php _e("se CSS type values.", 'bwg_back'); ?></div>
1295
  </td>
1296
  </tr>
1297
  <tr>
1298
+ <td class="spider_label"><label for="album_compact_thumb_border_width"><?php _e("Border width:", 'bwg_back'); ?> </label></td>
1299
  <td>
1300
  <input type="text" name="album_compact_thumb_border_width" id="album_compact_thumb_border_width" value="<?php echo $row->album_compact_thumb_border_width; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
1301
  </td>
1302
  </tr>
1303
  <tr>
1304
+ <td class="spider_label"><label for="album_compact_thumb_border_style"><?php _e("Border style:", 'bwg_back'); ?> </label></td>
1305
  <td>
1306
  <select name="album_compact_thumb_border_style" id="album_compact_thumb_border_style">
1307
  <?php
1308
  foreach ($border_styles as $key => $border_style) {
1309
  ?>
1310
+ <option value="<?php echo $key; ?>" <?php echo (($row->album_compact_thumb_border_style == $key) ? 'selected="selected"' : ''); ?>><?php echo __($border_style,"bwg_back"); ?></option>
1311
  <?php
1312
  }
1313
  ?>
1315
  </td>
1316
  </tr>
1317
  <tr>
1318
+ <td class="spider_label"><label for="album_compact_thumb_border_color"><?php _e("Border color:", 'bwg_back'); ?> </label></td>
1319
  <td>
1320
  <input type="text" name="album_compact_thumb_border_color" id="album_compact_thumb_border_color" value="<?php echo $row->album_compact_thumb_border_color; ?>" class="color" />
1321
  </td>
1322
  </tr>
1323
  <tr>
1324
+ <td class="spider_label"><label for="album_compact_thumb_border_radius"><?php _e("Border radius:", 'bwg_back'); ?> </label></td>
1325
  <td>
1326
  <input type="text" name="album_compact_thumb_border_radius" id="album_compact_thumb_border_radius" value="<?php echo $row->album_compact_thumb_border_radius; ?>" class="spider_char_input" />
1327
+ <div class="spider_description"><?php _e("Use CSS type values.", 'bwg_back'); ?></div>
1328
  </td>
1329
  </tr>
1330
  <tr>
1331
+ <td class="spider_label"><label for="album_compact_thumb_box_shadow"><?php _e("Shadow:", 'bwg_back'); ?> </label></td>
1332
  <td>
1333
  <input type="text" name="album_compact_thumb_box_shadow" id="album_compact_thumb_box_shadow" value="<?php echo $row->album_compact_thumb_box_shadow; ?>" class="spider_box_input" />
1334
+ <div class="spider_description"><?php _e("Use CSS type values.", 'bwg_back'); ?></div>
1335
  </td>
1336
  </tr>
1337
  <tr>
1338
+ <td class="spider_label"><label for="album_compact_thumb_hover_effect"><?php _e("Hover effect:", 'bwg_back'); ?> </label></td>
1339
  <td>
1340
  <select name="album_compact_thumb_hover_effect" id="album_compact_thumb_hover_effect">
1341
  <?php
1342
  foreach ($hover_effects as $key => $hover_effect) {
1343
  ?>
1344
+ <option value="<?php echo $key; ?>" <?php echo (($row->album_compact_thumb_hover_effect == $key) ? 'selected="selected"' : ''); ?>><?php echo __($hover_effect,"bwg_back"); ?></option>
1345
  <?php
1346
  }
1347
  ?>
1349
  </td>
1350
  </tr>
1351
  <tr>
1352
+ <td class="spider_label"><label for="album_compact_thumb_hover_effect_value"><?php _e("Hover effect value:", 'bwg_back'); ?> </label></td>
1353
  <td>
1354
  <input type="text" name="album_compact_thumb_hover_effect_value" id="album_compact_thumb_hover_effect_value" value="<?php echo $row->album_compact_thumb_hover_effect_value; ?>" class="spider_char_input" />
1355
+ <div class="spider_description"><?php _e("E.g. Rotate", 'bwg_back'); ?>: 10deg, <?php _e("Scale:", 'bwg_back'); ?> 1.5, <?php _e("Skew:", 'bwg_back'); ?> 10deg.</div>
1356
  </td>
1357
  </tr>
1358
  <tr>
1359
+ <td class="spider_label"><label><?php _e("Thumbnail transition:", 'bwg_back'); ?> </label></td>
1360
  <td id="album_compact_thumb_transition">
1361
  <input type="radio" name="album_compact_thumb_transition" id="album_compact_thumb_transition1" value="1"<?php if ($row->album_compact_thumb_transition == 1) echo 'checked="checked"'; ?> />
1362
+ <label for="album_compact_thumb_transition1" id="album_compact_thumb_transition1_lbl"><?php _e("Yes", 'bwg_back'); ?></label>
1363
  <input type="radio" name="album_compact_thumb_transition" id="album_compact_thumb_transition0" value="0"<?php if ($row->album_compact_thumb_transition == 0) echo 'checked="checked"'; ?> />
1364
+ <label for="album_compact_thumb_transition0" id="album_compact_thumb_transition0_lbl"><?php _e("No", 'bwg_back'); ?></label>
1365
  </td>
1366
  </tr>
1367
  </tbody>
1371
  <table style="clear:both;">
1372
  <tbody>
1373
  <tr>
1374
+ <td class="spider_label"><label for="album_compact_thumb_bg_color"><?php _e("Thumbnail background color:", 'bwg_back'); ?> </label></td>
1375
  <td>
1376
  <input type="text" name="album_compact_thumb_bg_color" id="album_compact_thumb_bg_color" value="<?php echo $row->album_compact_thumb_bg_color; ?>" class="color" />
1377
  </td>
1378
  </tr>
1379
  <tr>
1380
+ <td class="spider_label"><label for="album_compact_thumb_transparent"><?php _e("Thumbnail transparency:", 'bwg_back'); ?> </label></td>
1381
  <td>
1382
  <input type="text" name="album_compact_thumb_transparent" id="album_compact_thumb_transparent" value="<?php echo $row->album_compact_thumb_transparent; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> %
1383
+ <div class="spider_description"><?php _e("Value must be between 0 to 100.", 'bwg_back'); ?></div>
1384
  </td>
1385
  </tr>
1386
  <tr>
1387
+ <td class="spider_label"><label for="album_compact_thumbs_bg_color"><?php _e("Full background color:", 'bwg_back'); ?> </label></td>
1388
  <td>
1389
  <input type="text" name="album_compact_thumbs_bg_color" id="album_compact_thumbs_bg_color" value="<?php echo $row->album_compact_thumbs_bg_color; ?>" class="color" />
1390
  </td>
1391
  </tr>
1392
  <tr>
1393
+ <td class="spider_label"><label for="album_compact_thumb_bg_transparent"><?php _e("Full background transparency: ", 'bwg_back'); ?></label></td>
1394
  <td>
1395
  <input type="text" name="album_compact_thumb_bg_transparent" id="album_compact_thumb_bg_transparent" value="<?php echo $row->album_compact_thumb_bg_transparent; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> %
1396
+ <div class="spider_description"><?php _e("Value must be between 0 to 100.", 'bwg_back'); ?></div>
1397
  </td>
1398
  </tr>
1399
  <tr>
1400
+ <td class="spider_label"><label for="album_compact_thumb_align0"><?php _e("Alignment:", 'bwg_back'); ?> </label></td>
1401
  <td>
1402
  <select name="album_compact_thumb_align" id="album_compact_thumb_align">
1403
  <?php
1404
  foreach ($aligns as $key => $align) {
1405
  ?>
1406
+ <option value="<?php echo $key; ?>" <?php echo (($row->album_compact_thumb_align == $key) ? 'selected="selected"' : ''); ?>><?php echo __($align,"bwg_back"); ?></option>
1407
  <?php
1408
  }
1409
  ?>
1417
  <table style="clear:both;">
1418
  <tbody>
1419
  <tr>
1420
+ <td class="spider_label"><label><?php _e("Title position:", 'bwg_back'); ?> </label></td>
1421
  <td>
1422
  <input type="radio" name="album_compact_thumb_title_pos" id="album_compact_thumb_title_pos1" value="top" <?php if ($row->album_compact_thumb_title_pos == "top") echo 'checked="checked"'; ?> />
1423
+ <label for="album_compact_thumb_title_pos1" id="album_compact_thumb_title_pos1_lbl"><?php _e("Top", 'bwg_back'); ?></label>
1424
  <input type="radio" name="album_compact_thumb_title_pos" id="album_compact_thumb_title_pos0" value="bottom" <?php if ($row->album_compact_thumb_title_pos == "bottom") echo 'checked="checked"'; ?> />
1425
+ <label for="album_compact_thumb_title_pos0" id="album_compact_thumb_title_pos0_lbl"><?php _e("Bottom", 'bwg_back'); ?></label>
1426
  </td>
1427
  </tr>
1428
  <tr>
1429
+ <td class="spider_label"><label for="album_compact_title_font_size"><?php _e("Title font size:", 'bwg_back'); ?> </label></td>
1430
  <td>
1431
  <input type="text" name="album_compact_title_font_size" id="album_compact_title_font_size" value="<?php echo $row->album_compact_title_font_size; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
1432
  </td>
1433
  </tr>
1434
  <tr>
1435
+ <td class="spider_label"><label for="album_compact_title_font_color"><?php _e("Title font color:", 'bwg_back'); ?> </label></td>
1436
  <td>
1437
  <input type="text" name="album_compact_title_font_color" id="album_compact_title_font_color" value="<?php echo $row->album_compact_title_font_color; ?>" class="color" />
1438
  </td>
1439
  </tr>
1440
  <tr>
1441
+ <td class="spider_label"><label for="album_compact_title_font_style"><?php _e("Title font family:", 'bwg_back'); ?> </label></td>
1442
  <td>
1443
  <select name="album_compact_title_font_style" id="album_compact_title_font_style">
1444
  <?php
1452
  </td>
1453
  </tr>
1454
  <tr>
1455
+ <td class="spider_label"><label for="album_compact_title_font_weight"><?php _e("Title font weight:", 'bwg_back'); ?> </label></td>
1456
  <td>
1457
  <select name="album_compact_title_font_weight" id="album_compact_title_font_weight">
1458
  <?php
1459
  foreach ($font_weights as $key => $font_weight) {
1460
  ?>
1461
+ <option value="<?php echo $key; ?>" <?php echo (($row->album_compact_title_font_weight == $key) ? 'selected="selected"' : ''); ?>><?php echo __($font_weight,"bwg_back"); ?></option>
1462
  <?php
1463
  }
1464
  ?>
1466
  </td>
1467
  </tr>
1468
  <tr>
1469
+ <td class="spider_label"><label for="album_compact_title_shadow"><?php _e("Title box shadow:", 'bwg_back'); ?> </label></td>
1470
  <td>
1471
  <input type="text" name="album_compact_title_shadow" id="album_compact_title_shadow" value="<?php echo $row->album_compact_title_shadow; ?>" class="spider_box_input" />
1472
+ <div class="spider_description"><?php _e("Use CSS type values.", 'bwg_back'); ?></div>
1473
  </td>
1474
  </tr>
1475
  <tr>
1476
+ <td class="spider_label"><label for="album_compact_title_margin"><?php _e("Title margin:", 'bwg_back'); ?> </label></td>
1477
  <td>
1478
  <input type="text" name="album_compact_title_margin" id="album_compact_title_margin" value="<?php echo $row->album_compact_title_margin; ?>" class="spider_char_input" />
1479
+ <div class="spider_description"><?php _e("Use CSS type values.", 'bwg_back'); ?></div>
1480
  </td>
1481
  </tr>
1482
  <tr>
1483
+ <td class="spider_label"><label for="album_compact_back_font_size"><?php _e("Font size:", 'bwg_back'); ?> </label></td>
1484
  <td>
1485
  <input type="text" name="album_compact_back_font_size" id="album_compact_back_font_size" value="<?php echo $row->album_compact_back_font_size; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
1486
  </td>
1487
  </tr>
1488
  <tr>
1489
+ <td class="spider_label"><label for="album_compact_back_font_color"><?php _e("Font color:", 'bwg_back'); ?> </label></td>
1490
  <td>
1491
  <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" />
1492
  </td>
1493
  </tr>
1494
  <tr>
1495
+ <td class="spider_label"><label for="album_compact_back_font_style"><?php _e("Font family:", 'bwg_back'); ?> </label></td>
1496
  <td>
1497
  <select name="album_compact_back_font_style" id="album_compact_back_font_style">
1498
  <?php
1506
  </td>
1507
  </tr>
1508
  <tr>
1509
+ <td class="spider_label"><label for="album_compact_back_font_weight"><?php _e("Font weight:", 'bwg_back'); ?> </label></td>
1510
  <td>
1511
  <select name="album_compact_back_font_weight" id="album_compact_back_font_weight">
1512
  <?php
1513
  foreach ($font_weights as $key => $font_weight) {
1514
  ?>
1515
+ <option value="<?php echo $key; ?>" <?php echo (($row->album_compact_back_font_weight == $key) ? 'selected="selected"' : ''); ?>><?php echo __($font_weight,"bwg_back"); ?></option>
1516
  <?php
1517
  }
1518
  ?>
1520
  </td>
1521
  </tr>
1522
  <tr>
1523
+ <td class="spider_label"><label for="album_compact_back_padding"><?php _e("Back padding:", 'bwg_back'); ?> </label></td>
1524
  <td>
1525
  <input type="text" name="album_compact_back_padding" id="album_compact_back_padding" value="<?php echo $row->album_compact_back_padding; ?>" class="spider_char_input" />
1526
+ <div class="spider_description"><?php _e("Use CSS type values.", 'bwg_back'); ?></div>
1527
  </td>
1528
  </tr>
1529
  </tbody>
1536
  <table style="clear:both;">
1537
  <tbody>
1538
  <tr>
1539
+ <td class="spider_label"><label for="album_extended_thumb_margin"><?php _e("Thumbnail margin:", 'bwg_back'); ?> </label></td>
1540
  <td>
1541
  <input type="text" name="album_extended_thumb_margin" id="album_extended_thumb_margin" value="<?php echo $row->album_extended_thumb_margin; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
1542
  </td>
1543
  </tr>
1544
  <tr>
1545
+ <td class="spider_label"><label for="album_extended_thumb_padding"><?php _e("Thumbnail padding:", 'bwg_back'); ?> </label></td>
1546
  <td>
1547
  <input type="text" name="album_extended_thumb_padding" id="album_extended_thumb_padding" value="<?php echo $row->album_extended_thumb_padding; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
1548
  </td>
1549
  </tr>
1550
  <tr>
1551
+ <td class="spider_label"><label for="album_extended_thumb_border_width"><?php _e("Thumbnail border width:", 'bwg_back'); ?> </label></td>
1552
  <td>
1553
  <input type="text" name="album_extended_thumb_border_width" id="album_extended_thumb_border_width" value="<?php echo $row->album_extended_thumb_border_width; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
1554
  </td>
1555
  </tr>
1556
  <tr>
1557
+ <td class="spider_label"><label for="album_extended_thumb_border_style"><?php _e("Thumbnail border style:", 'bwg_back'); ?> </label></td>
1558
  <td>
1559
  <select name="album_extended_thumb_border_style" id="album_extended_thumb_border_style">
1560
  <?php
1561
  foreach ($border_styles as $key => $border_style) {
1562
  ?>
1563
+ <option value="<?php echo $key; ?>" <?php echo (($row->album_extended_thumb_border_style == $key) ? 'selected="selected"' : ''); ?>><?php echo __($border_style,"bwg_back"); ?></option>
1564
  <?php
1565
  }
1566
  ?>
1568
  </td>
1569
  </tr>
1570
  <tr>
1571
+ <td class="spider_label"><label for="album_extended_thumb_border_color"><?php _e("Thumbnail border color:", 'bwg_back'); ?> </label></td>
1572
  <td>
1573
  <input type="text" name="album_extended_thumb_border_color" id="album_extended_thumb_border_color" value="<?php echo $row->album_extended_thumb_border_color; ?>" class="color"/>
1574
  </td>
1575
  </tr>
1576
  <tr>
1577
+ <td class="spider_label"><label for="album_extended_thumb_border_radius"><?php _e("Thumbnail border radius:", 'bwg_back'); ?> </label></td>
1578
  <td>
1579
  <input type="text" name="album_extended_thumb_border_radius" id="album_extended_thumb_border_radius" value="<?php echo $row->album_extended_thumb_border_radius; ?>" class="spider_char_input"/>
1580
+ <div class="spider_description"><?php _e("Use CSS type values.", 'bwg_back'); ?></div>
1581
  </td>
1582
  </tr>
1583
  <tr>
1584
+ <td class="spider_label"><label for="album_extended_thumb_box_shadow"><?php _e("Thumbnail box shadow:", 'bwg_back'); ?> </label></td>
1585
  <td>
1586
  <input type="text" name="album_extended_thumb_box_shadow" id="album_extended_thumb_box_shadow" value="<?php echo $row->album_extended_thumb_box_shadow; ?>" class="spider_box_input"/>
1587
+ <div class="spider_description"><?php _e("Use CSS type values.", 'bwg_back'); ?></div>
1588
  </td>
1589
  </tr>
1590
  <tr>
1591
+ <td class="spider_label"><label><?php _e("Thumbnail transition:", 'bwg_back'); ?> </label></td>
1592
  <td id="album_extended_thumb_transition">
1593
  <input type="radio" name="album_extended_thumb_transition" id="album_extended_thumb_transition1" value="1"<?php if ($row->album_extended_thumb_transition == 1) echo 'checked="checked"'; ?> />
1594
+ <label for="album_extended_thumb_transition1" id="album_extended_thumb_transition1_lbl"><?php _e("Yes", 'bwg_back'); ?></label>
1595
  <input type="radio" name="album_extended_thumb_transition" id="album_extended_thumb_transition0" value="0"<?php if ($row->album_extended_thumb_transition == 0) echo 'checked="checked"'; ?> />
1596
+ <label for="album_extended_thumb_transition0" id="album_extended_thumb_transition0_lbl"><?php _e("No", 'bwg_back'); ?></label>
1597
  </td>
1598
  </tr>
1599
  <tr>
1600
+ <td class="spider_label"><label for="album_extended_thumb_align0"><?php _e("Thumbnail alignment:", 'bwg_back'); ?> </label></td>
1601
  <td>
1602
  <select name="album_extended_thumb_align" id="album_extended_thumb_align">
1603
  <?php
1604
  foreach ($aligns as $key => $align) {
1605
  ?>
1606
+ <option value="<?php echo $key; ?>" <?php echo (($row->album_extended_thumb_align == $key) ? 'selected="selected"' : ''); ?>><?php echo __($align,"bwg_back"); ?></option>
1607
  <?php
1608
  }
1609
  ?>
1611
  </td>
1612
  </tr>
1613
  <tr>
1614
+ <td class="spider_label"><label for="album_extended_thumb_transparent"><?php _e("Thumbnail transparency:", 'bwg_back'); ?> </label></td>
1615
  <td>
1616
  <input type="text" name="album_extended_thumb_transparent" id="album_extended_thumb_transparent" value="<?php echo $row->album_extended_thumb_transparent; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> %
1617
+ <div class="spider_description"><?php _e("Value must be between 0 to 100.", 'bwg_back'); ?></div>
1618
  </td>
1619
  </tr>
1620
  <tr>
1621
+ <td class="spider_label"><label for="album_extended_thumb_hover_effect"><?php _e("Thumbnail hover effect: ", 'bwg_back'); ?></label></td>
1622
  <td>
1623
  <select name="album_extended_thumb_hover_effect" id="album_extended_thumb_hover_effect">
1624
  <?php
1625
  foreach ($hover_effects as $key => $hover_effect) {
1626
  ?>
1627
+ <option value="<?php echo $key; ?>" <?php echo (($row->album_extended_thumb_hover_effect == $key) ? 'selected="selected"' : ''); ?>><?php echo __($hover_effect,"bwg_back"); ?></option>
1628
  <?php
1629
  }
1630
  ?>
1632
  </td>
1633
  </tr>
1634
  <tr>
1635
+ <td class="spider_label"><label for="album_extended_thumb_hover_effect_value"><?php _e("Hover effect value:", 'bwg_back'); ?> </label></td>
1636
  <td>
1637
  <input type="text" name="album_extended_thumb_hover_effect_value" id="album_extended_thumb_hover_effect_value" value="<?php echo $row->album_extended_thumb_hover_effect_value; ?>" class="spider_char_input"/>
1638
+ <div class="spider_description"><?php _e("E.g. Rotate:", 'bwg_back'); ?> 10deg, <?php _e("Scale:", 'bwg_back'); ?> 1.5, <?php _e("Skew:", 'bwg_back'); ?> 10deg.</div>
1639
  </td>
1640
  </tr>
1641
  <tr>
1642
+ <td class="spider_label"><label for="album_extended_thumb_bg_color"><?php _e("Thumbnail background color:", 'bwg_back'); ?> </label></td>
1643
  <td>
1644
  <input type="text" name="album_extended_thumb_bg_color" id="album_extended_thumb_bg_color" value="<?php echo $row->album_extended_thumb_bg_color; ?>" class="color"/>
1645
  </td>
1646
  </tr>
1647
  <tr>
1648
+ <td class="spider_label"><label for="album_extended_thumbs_bg_color"><?php _e("Thumbnails background color:", 'bwg_back'); ?> </label></td>
1649
  <td>
1650
  <input type="text" name="album_extended_thumbs_bg_color" id="album_extended_thumbs_bg_color" value="<?php echo $row->album_extended_thumbs_bg_color; ?>" class="color"/>
1651
  </td>
1652
  </tr>
1653
  <tr>
1654
+ <td class="spider_label"><label for="album_extended_thumb_bg_transparent"><?php _e("Thumbnail background transparency:", 'bwg_back'); ?> </label></td>
1655
  <td>
1656
  <input type="text" name="album_extended_thumb_bg_transparent" id="album_extended_thumb_bg_transparent" value="<?php echo $row->album_extended_thumb_bg_transparent; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> %
1657
+ <div class="spider_description"><?php _e("Value must be between 0 to 100.", 'bwg_back'); ?></div>
1658
  </td>
1659
  </tr>
1660
  </tbody>
1664
  <table style="clear:both;">
1665
  <tbody>
1666
  <tr>
1667
+ <td class="spider_label"><label for="album_extended_thumb_div_padding"><?php _e("Thumbnail div padding:", 'bwg_back'); ?> </label></td>
1668
  <td>
1669
  <input type="text" name="album_extended_thumb_div_padding" id="album_extended_thumb_div_padding" value="<?php echo $row->album_extended_thumb_div_padding; ?>" class="spider_char_input"/>
1670
+ <div class="spider_description"><?php _e("Use CSS type values.", 'bwg_back'); ?></div>
1671
  </td>
1672
  </tr>
1673
  <tr>
1674
+ <td class="spider_label"><label for="album_extended_thumb_div_bg_color"><?php _e("Thumbnail div background color:", 'bwg_back'); ?> </label></td>
1675
  <td>
1676
  <input type="text" name="album_extended_thumb_div_bg_color" id="album_extended_thumb_div_bg_color" value="<?php echo $row->album_extended_thumb_div_bg_color; ?>" class="color"/>
1677
  </td>
1678
  </tr>
1679
  <tr>
1680
+ <td class="spider_label"><label for="album_extended_thumb_div_border_width"><?php _e("Thumbnail div border width:", 'bwg_back'); ?> </label>
1681
  </td>
1682
  <td>
1683
  <input type="text" name="album_extended_thumb_div_border_width" id="album_extended_thumb_div_border_width" value="<?php echo $row->album_extended_thumb_div_border_width; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
1684
  </td>
1685
  </tr>
1686
  <tr>
1687
+ <td class="spider_label"><label for="album_extended_thumb_div_border_style"><?php _e("Thumbnail div border style:", 'bwg_back'); ?> </label></td>
1688
  <td>
1689
  <select name="album_extended_thumb_div_border_style" id="album_extended_thumb_div_border_style">
1690
  <?php
1691
  foreach ($border_styles as $key => $border_style) {
1692
  ?>
1693
+ <option value="<?php echo $key; ?>" <?php echo (($row->album_extended_thumb_div_border_style == $key) ? 'selected="selected"' : ''); ?>><?php echo __($border_style,"bwg_back"); ?></option>
1694
  <?php
1695
  }
1696
  ?>
1698
  </td>
1699
  </tr>
1700
  <tr>
1701
+ <td class="spider_label"><label for="album_extended_thumb_div_border_color"><?php _e("Thumbnail div border color:", 'bwg_back'); ?> </label></td>
1702
  <td>
1703
  <input type="text" name="album_extended_thumb_div_border_color" id="album_extended_thumb_div_border_color" value="<?php echo $row->album_extended_thumb_div_border_color; ?>" class="color"/>
1704
  </td>
1705
  </tr>
1706
  <tr>
1707
+ <td class="spider_label"><label for="album_extended_thumb_div_border_radius"><?php _e("Thumbnail div border radius:", 'bwg_back'); ?> </label></td>
1708
  <td>
1709
  <input type="text" name="album_extended_thumb_div_border_radius" id="album_extended_thumb_div_border_radius" value="<?php echo $row->album_extended_thumb_div_border_radius; ?>" class="spider_char_input"/>
1710
+ <div class="spider_description"><?php _e("Use CSS type values.", 'bwg_back'); ?></div>
1711
  </td>
1712
  </tr>
1713
  <tr>
1714
+ <td class="spider_label"><label for="album_extended_div_margin"><?php _e("Margin:", 'bwg_back'); ?> </label></td>
1715
  <td>
1716
  <input type="text" name="album_extended_div_margin" id="album_extended_div_margin" value="<?php echo $row->album_extended_div_margin; ?>" class="spider_char_input"/>
1717
+ <div class="spider_description"><?php _e("Use CSS type values.", 'bwg_back'); ?></div>
1718
  </td>
1719
  </tr>
1720
  <tr>
1721
+ <td class="spider_label"><label for="album_extended_div_padding"><?php _e("Padding:", 'bwg_back'); ?> </label></td>
1722
  <td>
1723
  <input type="text" name="album_extended_div_padding" id="album_extended_div_padding" value="<?php echo $row->album_extended_div_padding; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
1724
  </td>
1725
  </tr>
1726
  <tr>
1727
+ <td class="spider_label"><label for="album_extended_div_bg_color"><?php _e("Background color:", 'bwg_back'); ?> </label></td>
1728
  <td>
1729
  <input type="text" name="album_extended_div_bg_color" id="album_extended_div_bg_color" value="<?php echo $row->album_extended_div_bg_color; ?>" class="color"/>
1730
  </td>
1731
  </tr>
1732
  <tr>
1733
+ <td class="spider_label"><label for="album_extended_div_bg_transparent"><?php _e("Background transparency:", 'bwg_back'); ?> </label></td>
1734
  <td>
1735
  <input type="text" name="album_extended_div_bg_transparent" id="album_extended_div_bg_transparent" value="<?php echo $row->album_extended_div_bg_transparent; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> %
1736
+ <div class="spider_description"><?php _e("Value must be between 0 to 100.", 'bwg_back'); ?></div>
1737
  </td>
1738
  </tr>
1739
  <tr>
1740
+ <td class="spider_label"><label for="album_extended_div_border_radius"><?php _e("Border radius:", 'bwg_back'); ?> </label></td>
1741
  <td>
1742
  <input type="text" name="album_extended_div_border_radius" id="album_extended_div_border_radius" value="<?php echo $row->album_extended_div_border_radius; ?>" class="spider_char_input"/>
1743
+ <div class="spider_description"><?php _e("Use CSS type values.", 'bwg_back'); ?></div>
1744
  </td>
1745
  </tr>
1746
  <tr>
1747
+ <td class="spider_label"><label for="album_extended_div_separator_width"><?php _e("Separator width:", 'bwg_back'); ?> </label></td>
1748
  <td>
1749
  <input type="text" name="album_extended_div_separator_width" id="album_extended_div_separator_width" value="<?php echo $row->album_extended_div_separator_width; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
1750
  </td>
1751
  </tr>
1752
  <tr>
1753
+ <td class="spider_label"><label for="album_extended_div_separator_style"><?php _e("Separator style:", 'bwg_back'); ?> </label></td>
1754
  <td>
1755
  <select name="album_extended_div_separator_style" id="album_extended_div_separator_style">
1756
  <?php
1757
  foreach ($border_styles as $key => $border_style) {
1758
  ?>
1759
+ <option value="<?php echo $key; ?>" <?php echo (($row->album_extended_div_separator_style == $key) ? 'selected="selected"' : ''); ?>><?php echo __($border_style,"bwg_back"); ?></option>
1760
  <?php
1761
  }
1762
  ?>
1764
  </td>
1765
  </tr>
1766
  <tr>
1767
+ <td class="spider_label"><label for="album_extended_div_separator_color"><?php _e("Separator color:", 'bwg_back'); ?> </label></td>
1768
  <td>
1769
  <input type="text" name="album_extended_div_separator_color" id="album_extended_div_separator_color" value="<?php echo $row->album_extended_div_separator_color; ?>" class="color"/>
1770
  </td>
1771
  </tr>
1772
  <tr>
1773
+ <td class="spider_label"><label for="album_extended_back_padding"><?php _e("Back padding:", 'bwg_back'); ?> </label></td>
1774
  <td>
1775
  <input type="text" name="album_extended_back_padding" id="album_extended_back_padding" value="<?php echo $row->album_extended_back_padding; ?>" class="spider_char_input" />
1776
+ <div class="spider_description"><?php _e("Use CSS type values.", 'bwg_back'); ?></div>
1777
  </td>
1778
  </tr>
1779
  <tr>
1780
+ <td class="spider_label"><label for="album_extended_back_font_size"><?php _e("Back font size:", 'bwg_back'); ?> </label></td>
1781
  <td>
1782
  <input type="text" name="album_extended_back_font_size" id="album_extended_back_font_size" value="<?php echo $row->album_extended_back_font_size; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
1783
  </td>
1784
  </tr>
1785
  <tr>
1786
+ <td class="spider_label"><label for="album_extended_back_font_color"><?php _e("Back font color:", 'bwg_back'); ?> </label></td>
1787
  <td>
1788
  <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"/>
1789
  </td>
1790
  </tr>
1791
  <tr>
1792
+ <td class="spider_label"><label for="album_extended_back_font_style"><?php _e("Back font family:", 'bwg_back'); ?> </label></td>
1793
  <td>
1794
  <select name="album_extended_back_font_style" id="album_extended_back_font_style">
1795
  <?php
1803
  </td>
1804
  </tr>
1805
  <tr>
1806
+ <td class="spider_label"><label for="album_extended_back_font_weight"><?php _e("Back font weight:", 'bwg_back'); ?> </label></td>
1807
  <td>
1808
  <select name="album_extended_back_font_weight" id="album_extended_back_font_weight">
1809
  <?php
1810
  foreach ($font_weights as $key => $font_weight) {
1811
  ?>
1812
+ <option value="<?php echo $key; ?>" <?php echo (($row->album_extended_back_font_weight == $key) ? 'selected="selected"' : ''); ?>><?php echo __($font_weight,"bwg_back"); ?></option>
1813
  <?php
1814
  }
1815
  ?>
1823
  <table style="clear:both;">
1824
  <tbody>
1825
  <tr>
1826
+ <td class="spider_label"><label for="album_extended_text_div_padding"><?php _e("Text div padding:", 'bwg_back'); ?> </label></td>
1827
  <td>
1828
  <input type="text" name="album_extended_text_div_padding" id="album_extended_text_div_padding" value="<?php echo $row->album_extended_text_div_padding; ?>" class="spider_char_input" />
1829
  <div class="spider_description">Use CSS type values.</div>
1830
  </td>
1831
  </tr>
1832
  <tr>
1833
+ <td class="spider_label"><label for="album_extended_text_div_border_width"><?php _e("Text div border width:", 'bwg_back'); ?> </label></td>
1834
  <td>
1835
  <input type="text" name="album_extended_text_div_border_width" id="album_extended_text_div_border_width" value="<?php echo $row->album_extended_text_div_border_width; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
1836
  </td>
1837
  </tr>
1838
  <tr>
1839
+ <td class="spider_label"><label for="album_extended_text_div_border_style"><?php _e("Text border style:", 'bwg_back'); ?> </label></td>
1840
  <td>
1841
  <select name="album_extended_text_div_border_style" id="album_extended_text_div_border_style">
1842
  <?php
1843
  foreach ($border_styles as $key => $border_style) {
1844
  ?>
1845
+ <option value="<?php echo $key; ?>" <?php echo (($row->album_extended_text_div_border_style == $key) ? 'selected="selected"' : ''); ?>><?php echo __($border_style,"bwg_back"); ?></option>
1846
  <?php
1847
  }
1848
  ?>
1850
  </td>
1851
  </tr>
1852
  <tr>
1853
+ <td class="spider_label"><label for="album_extended_text_div_border_color"><?php _e("Text border color:", 'bwg_back'); ?> </label></td>
1854
  <td>
1855
  <input type="text" name="album_extended_text_div_border_color" id="album_extended_text_div_border_color" value="<?php echo $row->album_extended_text_div_border_color; ?>" class="color"/>
1856
  </td>
1857
  </tr>
1858
  <tr>
1859
+ <td class="spider_label"><label for="album_extended_text_div_border_radius"><?php _e("Text div border radius:", 'bwg_back'); ?> </label></td>
1860
  <td>
1861
  <input type="text" name="album_extended_text_div_border_radius" id="album_extended_text_div_border_radius" value="<?php echo $row->album_extended_text_div_border_radius; ?>" class="spider_char_input"/>
1862
+ <div class="spider_description"><?php _e("Use CSS type values.", 'bwg_back'); ?></div>
1863
  </td>
1864
  </tr>
1865
  <tr>
1866
+ <td class="spider_label"><label for="album_extended_text_div_bg_color"><?php _e("Text background color:", 'bwg_back'); ?> </label></td>
1867
  <td>
1868
  <input type="text" name="album_extended_text_div_bg_color" id="album_extended_text_div_bg_color" value="<?php echo $row->album_extended_text_div_bg_color; ?>" class="color"/>
1869
  </td>
1870
  </tr>
1871
  <tr>
1872
+ <td class="spider_label"><label for="album_extended_title_margin_bottom"><?php _e("Title margin:", 'bwg_back'); ?> </label></td>
1873
  <td>
1874
  <input type="text" name="album_extended_title_margin_bottom" id="album_extended_title_margin_bottom" value="<?php echo $row->album_extended_title_margin_bottom; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
1875
  </td>
1876
  </tr>
1877
  <tr>
1878
+ <td class="spider_label"><label for="album_extended_title_padding"><?php _e("Title padding:", 'bwg_back'); ?> </label></td>
1879
  <td>
1880
  <input type="text" name="album_extended_title_padding" id="album_extended_title_padding" value="<?php echo $row->album_extended_title_padding; ?>" class="spider_char_input"/>
1881
+ <div class="spider_description"><?php _e("Use CSS type values.", 'bwg_back'); ?></div>
1882
  </td>
1883
  </tr>
1884
  <tr>
1885
+ <td class="spider_label"><label for="album_extended_title_span_border_width"><?php _e("Title border width:", 'bwg_back'); ?> </label></td>
1886
  <td>
1887
  <input type="text" name="album_extended_title_span_border_width" id="album_extended_title_span_border_width" value="<?php echo $row->album_extended_title_span_border_width; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
1888
  </td>
1889
  </tr>
1890
  <tr>
1891
+ <td class="spider_label"><label for="album_extended_title_span_border_style"><?php _e("Title border style:", 'bwg_back'); ?> </label></td>
1892
  <td>
1893
  <select name="album_extended_title_span_border_style" id="album_extended_title_span_border_style">
1894
  <?php
1895
  foreach ($border_styles as $key => $border_style) {
1896
  ?>
1897
+ <option value="<?php echo $key; ?>" <?php echo (($row->album_extended_title_span_border_style == $key) ? 'selected="selected"' : ''); ?>><?php echo __($border_style,"bwg_back"); ?></option>
1898
  <?php
1899
  }
1900
  ?>
1902
  </td>
1903
  </tr>
1904
  <tr>
1905
+ <td class="spider_label"><label for="album_extended_title_span_border_color"><?php _e("Title border color:", 'bwg_back'); ?> </label></td>
1906
  <td>
1907
  <input type="text" name="album_extended_title_span_border_color" id="album_extended_title_span_border_color" value="<?php echo $row->album_extended_title_span_border_color; ?>" class="color"/>
1908
  </td>
1909
  </tr>
1910
  <tr>
1911
+ <td class="spider_label"><label for="album_extended_title_font_size"><?php _e("Title font size:", 'bwg_back'); ?> </label></td>
1912
  <td>
1913
  <input type="text" name="album_extended_title_font_size" id="album_extended_title_font_size" value="<?php echo $row->album_extended_title_font_size; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
1914
  </td>
1915
  </tr>
1916
  <tr>
1917
+ <td class="spider_label"><label for="album_extended_title_font_color"><?php _e("Title font color:", 'bwg_back'); ?> </label></td>
1918
  <td>
1919
  <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"/>
1920
  </td>
1921
  </tr>
1922
  <tr>
1923
+ <td class="spider_label"><label for="album_extended_title_font_style"><?php _e("Title font family:", 'bwg_back'); ?> </label></td>
1924
  <td>
1925
  <select name="album_extended_title_font_style" id="album_extended_title_font_style">
1926
  <?php
1934
  </td>
1935
  </tr>
1936
  <tr>
1937
+ <td class="spider_label"><label for="album_extended_title_font_weight"><?php _e("Title font weight:", 'bwg_back'); ?> </label></td>
1938
  <td>
1939
  <select name="album_extended_title_font_weight" id="album_extended_title_font_weight">
1940
  <?php
1941
  foreach ($font_weights as $key => $font_weight) {
1942
  ?>
1943
+ <option value="<?php echo $key; ?>" <?php echo (($row->album_extended_title_font_weight == $key) ? 'selected="selected"' : ''); ?>><?php echo __($font_weight,"bwg_back"); ?></option>
1944
  <?php
1945
  }
1946
  ?>
1948
  </td>
1949
  </tr>
1950
  <tr>
1951
+ <td class="spider_label"><label for="album_extended_desc_padding"><?php _e("Description padding:", 'bwg_back'); ?> </label></td>
1952
  <td>
1953
  <input type="text" name="album_extended_desc_padding" id="album_extended_desc_padding" value="<?php echo $row->album_extended_desc_padding; ?>" class="spider_char_input"/>
1954
+ <div class="spider_description"><?php _e("Use CSS type values.", 'bwg_back'); ?></div>
1955
  </td>
1956
  </tr>
1957
  <tr>
1958
+ <td class="spider_label"><label for="album_extended_desc_span_border_width"><?php _e("Description border width:", 'bwg_back'); ?> </label></td>
1959
  <td>
1960
  <input type="text" name="album_extended_desc_span_border_width" id="album_extended_desc_span_border_width" value="<?php echo $row->album_extended_desc_span_border_width; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
1961
  </td>
1962
  </tr>
1963
  <tr>
1964
+ <td class="spider_label"><label for="album_extended_desc_span_border_style"><?php _e("Description border style:", 'bwg_back'); ?> </label></td>
1965
  <td>
1966
  <select name="album_extended_desc_span_border_style" id="album_extended_desc_span_border_style">
1967
  <?php
1968
  foreach ($border_styles as $key => $border_style) {
1969
  ?>
1970
+ <option value="<?php echo $key; ?>" <?php echo (($row->album_extended_desc_span_border_style == $key) ? 'selected="selected"' : ''); ?>><?php echo __($border_style,"bwg_back"); ?></option>
1971
  <?php
1972
  }
1973
  ?>
1975
  </td>
1976
  </tr>
1977
  <tr>
1978
+ <td class="spider_label"><label for="album_extended_desc_span_border_color"><?php _e("Description border color:", 'bwg_back'); ?> </label></td>
1979
  <td>
1980
  <input type="text" name="album_extended_desc_span_border_color" id="album_extended_desc_span_border_color" value="<?php echo $row->album_extended_desc_span_border_color; ?>" class="color"/>
1981
  </td>
1982
  </tr>
1983
  <tr>
1984
+ <td class="spider_label"><label for="album_extended_desc_font_size"><?php _e("Description font size:", 'bwg_back'); ?> </label></td>
1985
  <td>
1986
  <input type="text" name="album_extended_desc_font_size" id="album_extended_desc_font_size" value="<?php echo $row->album_extended_desc_font_size; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
1987
  </td>
1988
  </tr>
1989
  <tr>
1990
+ <td class="spider_label"><label for="album_extended_desc_font_color"><?php _e("Description font color:", 'bwg_back'); ?> </label></td>
1991
  <td>
1992
  <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"/>
1993
  </td>
1994
  </tr>
1995
  <tr>
1996
+ <td class="spider_label"><label for="album_extended_desc_font_style"><?php _e("Description font family:", 'bwg_back'); ?> </label></td>
1997
  <td>
1998
  <select name="album_extended_desc_font_style" id="album_extended_desc_font_style">
1999
  <?php
2007
  </td>
2008
  </tr>
2009
  <tr>
2010
+ <td class="spider_label"><label for="album_extended_desc_font_weight"><?php _e("Description font weight:", 'bwg_back'); ?> </label></td>
2011
  <td>
2012
  <select name="album_extended_desc_font_weight" id="album_extended_desc_font_weight">
2013
  <?php
2014
  foreach ($font_weights as $key => $font_weight) {
2015
  ?>
2016
+ <option value="<?php echo $key; ?>" <?php echo (($row->album_extended_desc_font_weight == $key) ? 'selected="selected"' : ''); ?>><?php echo __($font_weight,"bwg_back"); ?></option>
2017
  <?php
2018
  }
2019
  ?>
2021
  </td>
2022
  </tr>
2023
  <tr>
2024
+ <td class="spider_label"><label for="album_extended_desc_more_size"><?php _e("Description more size:", 'bwg_back'); ?> </label></td>
2025
  <td>
2026
  <input type="text" name="album_extended_desc_more_size" id="album_extended_desc_more_size" value="<?php echo $row->album_extended_desc_more_size; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
2027
  </td>
2028
  </tr>
2029
  <tr>
2030
+ <td class="spider_label"><label for="album_extended_desc_more_color"><?php _e("Description more color:", 'bwg_back'); ?> </label></td>
2031
  <td>
2032
  <input type="text" name="album_extended_desc_more_color" id="album_extended_desc_more_color" value="<?php echo $row->album_extended_desc_more_color; ?>" class="color"/>
2033
  </td>
2042
  <table style="clear:both;">
2043
  <tbody>
2044
  <tr>
2045
+ <td class="spider_label"><label for="blog_style_bg_color"><?php _e("Background color:", 'bwg_back'); ?> </label></td>
2046
  <td>
2047
  <input type="text" name="blog_style_bg_color" id="blog_style_bg_color" value="<?php echo $row->blog_style_bg_color; ?>" class="color"/>
2048
  </td>
2049
  </tr>
2050
  <tr>
2051
+ <td class="spider_label"><label for="blog_style_transparent"><?php _e("Background transparency:", 'bwg_back'); ?> </label></td>
2052
  <td>
2053
  <input type="text" name="blog_style_transparent" id="blog_style_transparent" value="<?php echo $row->blog_style_transparent; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> %
2054
+ <div class="spider_description"><?php _e("Value must be between 0 to 100.", 'bwg_back'); ?></div>
2055
  </td>
2056
  </tr>
2057
  <tr>
2058
+ <td class="spider_label"><label for="blog_style_align0"><?php _e("Alignment:", 'bwg_back'); ?> </label></td>
2059
  <td>
2060
  <select name="blog_style_align" id="blog_style_align">
2061
  <?php
2062
  foreach ($aligns as $key => $align) {
2063
  ?>
2064
+ <option value="<?php echo $key; ?>" <?php echo (($row->blog_style_align == $key) ? 'selected="selected"' : ''); ?>><?php echo __($align,"bwg_back"); ?></option>
2065
  <?php
2066
  }
2067
  ?>
2069
  </td>
2070
  </tr>
2071
  <tr>
2072
+ <td class="spider_label"><label for="blog_style_margin"><?php _e("Margin:", 'bwg_back'); ?> </label></td>
2073
  <td>
2074
  <input type="text" name="blog_style_margin" id="blog_style_margin" value="<?php echo $row->blog_style_margin; ?>" class="spider_char_input"/>
2075
+ <div class="spider_description"><?php _e("Use CSS type values.", 'bwg_back'); ?></div>
2076
  </td>
2077
  </tr>
2078
  <tr>
2079
+ <td class="spider_label"><label for="blog_style_padding"><?php _e("Padding:", 'bwg_back'); ?> </label></td>
2080
  <td>
2081
  <input type="text" name="blog_style_padding" id="blog_style_padding" value="<?php echo $row->blog_style_padding; ?>" class="spider_char_input"/>
2082
+ <div class="spider_description">U<?php _e("se CSS type values.", 'bwg_back'); ?></div>
2083
  </td>
2084
  </tr>
2085
  <tr>
2086
+ <td class="spider_label"><label for="blog_style_box_shadow"><?php _e("Box shadow:", 'bwg_back'); ?> </label></td>
2087
  <td>
2088
  <input type="text" name="blog_style_box_shadow" id="blog_style_box_shadow" value="<?php echo $row->blog_style_box_shadow; ?>" class="spider_box_input"/>
2089
+ <div class="spider_description"><?php _e("Use CSS type values.", 'bwg_back'); ?></div>
2090
  </td>
2091
  </tr>
2092
  </tbody>
2096
  <table style="clear:both;">
2097
  <tbody>
2098
  <tr>
2099
+ <td class="spider_label"><label for="blog_style_img_font_family"><?php _e("Font family:", 'bwg_back'); ?> </label></td>
2100
  <td>
2101
  <select name="blog_style_img_font_family" id="blog_style_img_font_family">
2102
  <?php
2110
  </td>
2111
  </tr>
2112
  <tr>
2113
+ <td class="spider_label"><label for="blog_style_img_font_size"><?php _e("Font size:", 'bwg_back'); ?> </label></td>
2114
  <td>
2115
  <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
2116
  </td>
2117
  </tr>
2118
  <tr>
2119
+ <td class="spider_label"><label for="blog_style_img_font_color"><?php _e("Font color:", 'bwg_back'); ?> </label></td>
2120
  <td>
2121
  <input type="text" name="blog_style_img_font_color" id="blog_style_img_font_color" value="<?php echo $row->blog_style_img_font_color; ?>" class="color"/>
2122
  </td>
2123
  </tr>
2124
  <tr>
2125
+ <td class="spider_label"><label for="blog_style_border_width"><?php _e("Border width:", 'bwg_back'); ?> </label></td>
2126
  <td>
2127
  <input type="text" name="blog_style_border_width" id="blog_style_border_width" value="<?php echo $row->blog_style_border_width; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
2128
  </td>
2129
  </tr>
2130
  <tr>
2131
+ <td class="spider_label"><label for="blog_style_border_style"><?php _e("Border style:", 'bwg_back'); ?> </label></td>
2132
  <td>
2133
  <select name="blog_style_border_style" id="blog_style_border_style">
2134
  <?php
2135
  foreach ($border_styles as $key => $border_style) {
2136
  ?>
2137
+ <option value="<?php echo $key; ?>" <?php echo (($row->blog_style_border_style == $key) ? 'selected="selected"' : ''); ?>><?php echo __($border_style,"bwg_back"); ?></option>
2138
  <?php
2139
  }
2140
  ?>
2142
  </td>
2143
  </tr>
2144
  <tr>
2145
+ <td class="spider_label"><label for="blog_style_border_color"><?php _e("Border color:", 'bwg_back'); ?> </label></td>
2146
  <td>
2147
  <input type="text" name="blog_style_border_color" id="blog_style_border_color" value="<?php echo $row->blog_style_border_color; ?>" class="color" />
2148
  </td>
2149
  </tr>
2150
  <tr>
2151
+ <td class="spider_label"><label for="blog_style_border_radius"><?php _e("Border radius:", 'bwg_back'); ?> </label></td>
2152
  <td>
2153
  <input type="text" name="blog_style_border_radius" id="blog_style_border_radius" value="<?php echo $row->blog_style_border_radius; ?>" class="spider_char_input"/>
2154
+ <div class="spider_description"><?php _e("Use CSS type values.", 'bwg_back'); ?></div>
2155
  </td>
2156
  </tr>
2157
  </tbody>
2161
  <table style="clear:both;">
2162
  <tbody>
2163
  <tr>
2164
+ <td class="spider_label"><label for="blog_style_share_buttons_margin"><?php _e("Buttons and title margin:", 'bwg_back'); ?> </label></td>
2165
  <td>
2166
  <input type="text" name="blog_style_share_buttons_margin" id="blog_style_share_buttons_margin" value="<?php echo $row->blog_style_share_buttons_margin; ?>" class="spider_char_input"/>
2167
+ <div class="spider_description"><?php _e("Use CSS type values.", 'bwg_back'); ?></div>
2168
  </td>
2169
  </tr>
2170
  <tr>
2171
+ <td class="spider_label"><label for="blog_style_share_buttons_font_size"><?php _e("Buttons size:", 'bwg_back'); ?> </label></td>
2172
  <td>
2173
  <input type="text" name="blog_style_share_buttons_font_size" id="blog_style_share_buttons_font_size" value="<?php echo $row->blog_style_share_buttons_font_size; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
2174
  </td>
2175
  </tr>
2176
  <tr>
2177
+ <td class="spider_label"><label for="blog_style_share_buttons_color"><?php _e("Buttons color:", 'bwg_back'); ?> </label></td>
2178
  <td>
2179
  <input type="text" name="blog_style_share_buttons_color" id="blog_style_share_buttons_color" value="<?php echo $row->blog_style_share_buttons_color; ?>" class="color"/>
2180
  </td>
2181
  </tr>
2182
  <tr>
2183
+ <td class="spider_label"><label for="blog_style_share_buttons_border_width"><?php _e("Buttons and title border width:", 'bwg_back'); ?> </label></td>
2184
  <td>
2185
  <input type="text" name="blog_style_share_buttons_border_width" id="blog_style_share_buttons_border_width" value="<?php echo $row->blog_style_share_buttons_border_width; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
2186
  </td>
2187
  </tr>
2188
  <tr>
2189
+ <td class="spider_label"><label for="blog_style_share_buttons_border_style"><?php _e("Buttons and title border style:", 'bwg_back'); ?> </label></td>
2190
  <td>
2191
  <select name="blog_style_share_buttons_border_style" id="blog_style_share_buttons_border_style">
2192
  <?php
2193
  foreach ($border_styles as $key => $border_style) {
2194
  ?>
2195
+ <option value="<?php echo $key; ?>" <?php echo (($row->blog_style_share_buttons_border_style == $key) ? 'selected="selected"' : ''); ?>><?php echo __($border_style,"bwg_back"); ?></option>
2196
  <?php
2197
  }
2198
  ?>
2200
  </td>
2201
  </tr>
2202
  <tr>
2203
+ <td class="spider_label"><label for="blog_style_share_buttons_border_color"><?php _e("Buttons and title border color:", 'bwg_back'); ?> </label></td>
2204
  <td>
2205
  <input type="text" name="blog_style_share_buttons_border_color" id="blog_style_share_buttons_border_color" value="<?php echo $row->blog_style_share_buttons_border_color; ?>" class="color"/>
2206
  </td>
2207
  </tr>
2208
  <tr>
2209
+ <td class="spider_label"><label for="blog_style_share_buttons_border_radius"><?php _e("Buttons and title border radius:", 'bwg_back'); ?> </label></td>
2210
  <td>
2211
  <input type="text" name="blog_style_share_buttons_border_radius" id="blog_style_share_buttons_border_radius" value="<?php echo $row->blog_style_share_buttons_border_radius; ?>" class="spider_char_input"/>
2212
+ <div class="spider_description"><?php _e("Use CSS type values.", 'bwg_back'); ?></div>
2213
  </td>
2214
  </tr>
2215
  <tr>
2216
+ <td class="spider_label"><label for="blog_style_share_buttons_bg_color"><?php _e("Buttons and title background color:", 'bwg_back'); ?> </label></td>
2217
  <td>
2218
  <input type="text" name="blog_style_share_buttons_bg_color" id="blog_style_share_buttons_bg_color" value="<?php echo $row->blog_style_share_buttons_bg_color; ?>" class="color"/>
2219
  </td>
2220
  </tr>
2221
  <tr>
2222
+ <td class="spider_label"><label for="blog_style_share_buttons_bg_transparent"><?php _e("Buttons and title background transparency:", 'bwg_back'); ?> </label></td>
2223
  <td>
2224
  <input type="text" name="blog_style_share_buttons_bg_transparent" id="blog_style_share_buttons_bg_transparent" value="<?php echo $row->blog_style_share_buttons_bg_transparent; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> %
2225
+ <div class="spider_description"><?php _e("Value must be between 0 to 100.", 'bwg_back'); ?></div>
2226
  </td>
2227
  </tr>
2228
  <tr>
2229
+ <td class="spider_label"><label for="blog_style_share_buttons_align0"><?php _e("Buttons or title alignment:", 'bwg_back'); ?> </label></td>
2230
  <td>
2231
  <select name="blog_style_share_buttons_align" id="blog_style_share_buttons_align">
2232
  <?php
2233
  foreach ($aligns as $key => $align) {
2234
  ?>
2235
+ <option value="<?php echo $key; ?>" <?php echo (($row->blog_style_share_buttons_align == $key) ? 'selected="selected"' : ''); ?>><?php echo __($align,"bwg_back"); ?></option>
2236
  <?php
2237
  }
2238
  ?>
2249
  <table style="clear:both;">
2250
  <tbody>
2251
  <tr id="lightbox_overlay_bg">
2252
+ <td class="spider_label"><label for="lightbox_overlay_bg_color"><?php _e("Overlay background color:", 'bwg_back'); ?> </label></td>
2253
  <td>
2254
  <input type="text" name="lightbox_overlay_bg_color" id="lightbox_overlay_bg_color" value="<?php echo $row->lightbox_overlay_bg_color; ?>" class="color"/>
2255
  </td>
2256
  </tr>
2257
  <tr id="lightbox_overlay">
2258
+ <td class="spider_label"><label for="lightbox_overlay_bg_transparent"><?php _e("Overlay background transparency:", 'bwg_back'); ?> </label></td>
2259
  <td>
2260
  <input type="text" name="lightbox_overlay_bg_transparent" id="lightbox_overlay_bg_transparent" value="<?php echo $row->lightbox_overlay_bg_transparent; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> %
2261
+ <div class="spider_description"><?php _e("Value must be between 0 to 100.", 'bwg_back'); ?></div>
2262
  </td>
2263
  </tr>
2264
  <tr id="lightbox_bg">
2265
+ <td class="spider_label"><label for="lightbox_bg_color"><?php _e("Lightbox background color:", 'bwg_back'); ?> </label></td>
2266
  <td>
2267
  <input type="text" name="lightbox_bg_color" id="lightbox_bg_color" value="<?php echo $row->lightbox_bg_color; ?>" class="color"/>
2268
  </td>
2269
  </tr>
2270
  <tr id="lightbox_cntrl1">
2271
+ <td class="spider_label"><label for="lightbox_ctrl_btn_height"><?php _e("Control buttons height:", 'bwg_back'); ?> </label></td>
2272
  <td>
2273
  <input type="text" name="lightbox_ctrl_btn_height" id="lightbox_ctrl_btn_height" value="<?php echo $row->lightbox_ctrl_btn_height; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
2274
  </td>
2275
  </tr>
2276
  <tr id="lightbox_cntrl2">
2277
+ <td class="spider_label"><label for="lightbox_ctrl_btn_margin_top"><?php _e("Control buttons margin (top):", 'bwg_back'); ?> </label></td>
2278
  <td>
2279
  <input type="text" name="lightbox_ctrl_btn_margin_top" id="lightbox_ctrl_btn_margin_top" value="<?php echo $row->lightbox_ctrl_btn_margin_top; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
2280
  </td>
2281
  </tr>
2282
  <tr id="lightbox_cntrl3">
2283
+ <td class="spider_label"><label for="lightbox_ctrl_btn_margin_left"><?php _e("Control buttons margin (left):", 'bwg_back'); ?> </label></td>
2284
  <td>
2285
  <input type="text" name="lightbox_ctrl_btn_margin_left" id="lightbox_ctrl_btn_margin_left" value="<?php echo $row->lightbox_ctrl_btn_margin_left; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
2286
  </td>
2287
  </tr>
2288
  <tr id="lightbox_cntrl9">
2289
+ <td class="spider_label"><label><?php _e("Control buttons position:", 'bwg_back'); ?> </label></td>
2290
  <td>
2291
  <input type="radio" name="lightbox_ctrl_btn_pos" id="lightbox_ctrl_btn_pos1" value="top"<?php if ($row->lightbox_ctrl_btn_pos == "top") echo 'checked="checked"'; ?> />
2292
+ <label for="lightbox_ctrl_btn_pos1" id="lightbox_ctrl_btn_pos1_lbl"><?php _e("Top", 'bwg_back'); ?></label>
2293
  <input type="radio" name="lightbox_ctrl_btn_pos" id="lightbox_ctrl_btn_pos0" value="bottom"<?php if ($row->lightbox_ctrl_btn_pos == "bottom") echo 'checked="checked"'; ?> />
2294
+ <label for="lightbox_ctrl_btn_pos0" id="lightbox_ctrl_btn_pos0_lbl"><?php _e("Bottom", 'bwg_back'); ?></label>
2295
  </td>
2296
  </tr>
2297
  <tr id="lightbox_cntrl8">
2298
+ <td class="spider_label"><label for="lightbox_ctrl_cont_bg_color"><?php _e("Control buttons background color: ", 'bwg_back'); ?></label></td>
2299
  <td>
2300
  <input type="text" name="lightbox_ctrl_cont_bg_color" id="lightbox_ctrl_cont_bg_color" value="<?php echo $row->lightbox_ctrl_cont_bg_color; ?>" class="color"/>
2301
  </td>
2302
  </tr>
2303
  <tr id="lightbox_cntrl5">
2304
+ <td class="spider_label"><label for="lightbox_ctrl_cont_border_radius"><?php _e("Control buttons container border radius:", 'bwg_back'); ?> </label></td>
2305
  <td>
2306
  <input type="text" name="lightbox_ctrl_cont_border_radius" id="lightbox_ctrl_cont_border_radius" value="<?php echo $row->lightbox_ctrl_cont_border_radius; ?>" class="spider_char_input"/>
2307
+ <div class="spider_description"><?php _e("Use CSS type values.", 'bwg_back'); ?></div>
2308
  </td>
2309
  </tr>
2310
  <tr id="lightbox_cntrl6">
2311
+ <td class="spider_label"><label for="lightbox_ctrl_cont_transparent"><?php _e("Control buttons container background transparency: ", 'bwg_back'); ?></label></td>
2312
  <td>
2313
  <input type="text" name="lightbox_ctrl_cont_transparent" id="lightbox_ctrl_cont_transparent" value="<?php echo $row->lightbox_ctrl_cont_transparent; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> %
2314
+ <div class="spider_description"><?php _e("Value must be between 0 to 100.", 'bwg_back'); ?></div>
2315
  </td>
2316
  </tr>
2317
  <tr id="lightbox_cntrl10">
2318
+ <td class="spider_label"><label for="lightbox_ctrl_btn_align0"><?php _e("Control buttons alignment: ", 'bwg_back'); ?></label></td>
2319
  <td>
2320
  <select name="lightbox_ctrl_btn_align" id="lightbox_ctrl_btn_align">
2321
  <?php
2322
  foreach ($aligns as $key => $align) {
2323
  ?>
2324
+ <option value="<?php echo $key; ?>" <?php echo (($row->lightbox_ctrl_btn_align == $key) ? 'selected="selected"' : ''); ?>><?php echo __($align,"bwg_back"); ?></option>
2325
  <?php
2326
  }
2327
  ?>
2329
  </td>
2330
  </tr>
2331
  <tr id="lightbox_cntrl7">
2332
+ <td class="spider_label"><label for="lightbox_ctrl_btn_color"><?php _e("Control buttons color:", 'bwg_back'); ?> </label></td>
2333
  <td>
2334
  <input type="text" name="lightbox_ctrl_btn_color" id="lightbox_ctrl_btn_color" value="<?php echo $row->lightbox_ctrl_btn_color; ?>" class="color"/>
2335
  </td>
2336
  </tr>
2337
  <tr id="lightbox_cntrl4">
2338
+ <td class="spider_label"><label for="lightbox_ctrl_btn_transparent"><?php _e("Control buttons transparency:", 'bwg_back'); ?> </label></td>
2339
  <td>
2340
  <input type="text" name="lightbox_ctrl_btn_transparent" id="lightbox_ctrl_btn_transparent" value="<?php echo $row->lightbox_ctrl_btn_transparent; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> %
2341
+ <div class="spider_description"><?php _e("Value must be between 0 to 100.", 'bwg_back'); ?></div>
2342
  </td>
2343
  </tr>
2344
  <tr id="lightbox_toggle1">
2345
+ <td class="spider_label"><label for="lightbox_toggle_btn_height"><?php _e("Toggle button height: ", 'bwg_back'); ?></label></td>
2346
  <td>
2347
  <input type="text" name="lightbox_toggle_btn_height" id="lightbox_toggle_btn_height" value="<?php echo $row->lightbox_toggle_btn_height; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
2348
  </td>
2349
  </tr>
2350
  <tr id="lightbox_toggle2">
2351
+ <td class="spider_label"><label for="lightbox_toggle_btn_width"><?php _e("Toggle button width: ", 'bwg_back'); ?></label></td>
2352
  <td>
2353
  <input type="text" name="lightbox_toggle_btn_width" id="lightbox_toggle_btn_width" value="<?php echo $row->lightbox_toggle_btn_width; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
2354
  </td>
2355
  </tr>
2356
  <tr id="lightbox_close1">
2357
+ <td class="spider_label"><label for="lightbox_close_btn_border_radius"><?php _e("Close button border radius:", 'bwg_back'); ?> </label>
2358
  </td>
2359
  <td>
2360
  <input type="text" name="lightbox_close_btn_border_radius" id="lightbox_close_btn_border_radius" value="<?php echo $row->lightbox_close_btn_border_radius; ?>" class="spider_char_input"/>
2361
+ <div class="spider_description"><?php _e("Use CSS type values.", 'bwg_back'); ?></div>
2362
  </td>
2363
  </tr>
2364
  <tr id="lightbox_close2">
2365
+ <td class="spider_label"><label for="lightbox_close_btn_border_width"><?php _e("Close button border width:", 'bwg_back'); ?> </label></td>
2366
  <td>
2367
  <input type="text" name="lightbox_close_btn_border_width" id="lightbox_close_btn_border_width" value="<?php echo $row->lightbox_close_btn_border_width; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
2368
  </td>
2369
  </tr>
2370
  <tr id="lightbox_close12">
2371
+ <td class="spider_label"><label for="lightbox_close_btn_border_style"><?php _e("Close button border style: ", 'bwg_back'); ?></label></td>
2372
  <td>
2373
  <select name="lightbox_close_btn_border_style" id="lightbox_close_btn_border_style">
2374
  <?php
2375
  foreach ($border_styles as $key => $border_style) {
2376
  ?>
2377
+ <option value="<?php echo $key; ?>" <?php echo (($row->lightbox_close_btn_border_style == $key) ? 'selected="selected"' : ''); ?>><?php echo __($border_style,"bwg_back"); ?></option>
2378
  <?php
2379
  }
2380
  ?>
2382
  </td>
2383
  </tr>
2384
  <tr id="lightbox_close13">
2385
+ <td class="spider_label"><label for="lightbox_close_btn_border_color"><?php _e("Close button border color:", 'bwg_back'); ?> </label></td>
2386
  <td>
2387
  <input type="text" name="lightbox_close_btn_border_color" id="lightbox_close_btn_border_color" value="<?php echo $row->lightbox_close_btn_border_color; ?>" class="color"/>
2388
  </td>
2389
  </tr>
2390
  <tr id="lightbox_close3">
2391
+ <td class="spider_label"><label for="lightbox_close_btn_box_shadow"><?php _e("Close button box shadow:", 'bwg_back'); ?> </label></td>
2392
  <td>
2393
  <input type="text" name="lightbox_close_btn_box_shadow" id="lightbox_close_btn_box_shadow" value="<?php echo $row->lightbox_close_btn_box_shadow; ?>" class="spider_box_input"/>
2394
+ <div class="spider_description"><?php _e("Use CSS type values.", 'bwg_back'); ?></div>
2395
  </td>
2396
  </tr>
2397
  <tr id="lightbox_close11">
2398
+ <td class="spider_label"><label for="lightbox_close_btn_bg_color"><?php _e("Close button background color:", 'bwg_back'); ?> </label></td>
2399
  <td>
2400
  <input type="text" name="lightbox_close_btn_bg_color" id="lightbox_close_btn_bg_color" value="<?php echo $row->lightbox_close_btn_bg_color; ?>" class="color"/>
2401
  </td>
2402
  </tr>
2403
  <tr id="lightbox_close9">
2404
+ <td class="spider_label"><label for="lightbox_close_btn_transparent"><?php _e("Close button transparency:", 'bwg_back'); ?> </label></td>
2405
  <td>
2406
  <input type="text" name="lightbox_close_btn_transparent" id="lightbox_close_btn_transparent" value="<?php echo $row->lightbox_close_btn_transparent; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> %
2407
  </td>
2408
  </tr>
2409
  <tr id="lightbox_close5">
2410
+ <td class="spider_label"><label for="lightbox_close_btn_width"><?php _e("Close button width:", 'bwg_back'); ?> </label></td>
2411
  <td>
2412
  <input type="text" name="lightbox_close_btn_width" id="lightbox_close_btn_width" value="<?php echo $row->lightbox_close_btn_width; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
2413
  </td>
2414
  </tr>
2415
  <tr id="lightbox_close6">
2416
+ <td class="spider_label"><label for="lightbox_close_btn_height"><?php _e("Close button height:", 'bwg_back'); ?> </label></td>
2417
  <td>
2418
  <input type="text" name="lightbox_close_btn_height" id="lightbox_close_btn_height" value="<?php echo $row->lightbox_close_btn_height; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
2419
  </td>
2420
  </tr>
2421
  <tr id="lightbox_close7">
2422
+ <td class="spider_label"><label for="lightbox_close_btn_top"><?php _e("Close button top:", 'bwg_back'); ?> </label></td>
2423
  <td>
2424
  <input type="text" name="lightbox_close_btn_top" id="lightbox_close_btn_top" value="<?php echo $row->lightbox_close_btn_top; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
2425
  </td>
2426
  </tr>
2427
  <tr id="lightbox_close8">
2428
+ <td class="spider_label"><label for="lightbox_close_btn_right"><?php _e("Close button right:", 'bwg_back'); ?> </label></td>
2429
  <td>
2430
  <input type="text" name="lightbox_close_btn_right" id="lightbox_close_btn_right" value="<?php echo $row->lightbox_close_btn_right; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
2431
  </td>
2432
  </tr>
2433
  <tr id="lightbox_close4">
2434
+ <td class="spider_label"><label for="lightbox_close_btn_size"><?php _e("Close button size:", 'bwg_back'); ?> </label></td>
2435
  <td>
2436
  <input type="text" name="lightbox_close_btn_size" id="lightbox_close_btn_size" value="<?php echo $row->lightbox_close_btn_size; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
2437
  </td>
2438
  </tr>
2439
  <tr id="lightbox_close14">
2440
+ <td class="spider_label"><label for="lightbox_close_btn_color"><?php _e("Close button color:", 'bwg_back'); ?> </label></td>
2441
  <td>
2442
  <input type="text" name="lightbox_close_btn_color" id="lightbox_close_btn_color" value="<?php echo $row->lightbox_close_btn_color; ?>" class="color"/>
2443
  </td>
2444
  </tr>
2445
  <tr id="lightbox_close10">
2446
+ <td class="spider_label"><label for="lightbox_close_btn_full_color"><?php _e("Fullscreen close button color:", 'bwg_back'); ?> </label></td>
2447
  <td>
2448
  <input type="text" name="lightbox_close_btn_full_color" id="lightbox_close_btn_full_color" value="<?php echo $row->lightbox_close_btn_full_color; ?>" class="color"/>
2449
  </td>
2450
  </tr>
2451
  <tr id="lightbox_comment24">
2452
+ <td class="spider_label"><label for="lightbox_comment_share_button_color"><?php _e("Share buttons color:", 'bwg_back'); ?> </label></td>
2453
  <td>
2454
  <input type="text" name="lightbox_comment_share_button_color" id="lightbox_comment_share_button_color" value="<?php echo $row->lightbox_comment_share_button_color; ?>" class="color" />
2455
  </td>
2461
  <table style="clear:both;">
2462
  <tbody>
2463
  <tr id="lightbox_right_left11">
2464
+ <td class="spider_label"><label for="lightbox_rl_btn_style"><?php _e("Right, left buttons style:", 'bwg_back'); ?> </label></td>
2465
  <td>
2466
  <select name="lightbox_rl_btn_style" id="lightbox_rl_btn_style" class="spider_int_input">
2467
  <?php
2468
  foreach ($button_styles as $key => $button_style) {
2469
  ?>
2470
+ <option value="<?php echo $key; ?>" <?php echo (($row->lightbox_rl_btn_style == $key) ? 'selected="selected"' : ''); ?>><?php echo __($button_style,"bwg_back"); ?></option>
2471
  <?php
2472
  }
2473
  ?>
2475
  </td>
2476
  </tr>
2477
  <tr id="lightbox_right_left7">
2478
+ <td class="spider_label"><label for="lightbox_rl_btn_bg_color"><?php _e("Right, left buttons background color:", 'bwg_back'); ?> </label></td>
2479
  <td>
2480
  <input type="text" name="lightbox_rl_btn_bg_color" id="lightbox_rl_btn_bg_color" value="<?php echo $row->lightbox_rl_btn_bg_color; ?>" class="color"/>
2481
  </td>
2482
  </tr>
2483
  <tr>
2484
+ <td class="spider_label"><label for="lightbox_rl_btn_transparent"><?php _e("Right, left buttons transparency: ", 'bwg_back'); ?></label></td>
2485
  <td>
2486
  <input type="text" name="lightbox_rl_btn_transparent" id="lightbox_rl_btn_transparent" value="<?php echo $row->lightbox_rl_btn_transparent; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> %
2487
  </td>
2488
  </tr>
2489
  <tr id="lightbox_right_left3">
2490
+ <td class="spider_label"><label for="lightbox_rl_btn_box_shadow"><?php _e("Right, left buttons box shadow:", 'bwg_back'); ?> </label></td>
2491
  <td>
2492
  <input type="text" name="lightbox_rl_btn_box_shadow" id="lightbox_rl_btn_box_shadow" value="<?php echo $row->lightbox_rl_btn_box_shadow; ?>" class="spider_box_input"/>
2493
+ <div class="spider_description"><?php _e("Use CSS type values.", 'bwg_back'); ?></div>
2494
  </td>
2495
  </tr>
2496
  <tr id="lightbox_right_left4">
2497
+ <td class="spider_label"><label for="lightbox_rl_btn_height"><?php _e("Right, left buttons height:", 'bwg_back'); ?> </label></td>
2498
  <td>
2499
  <input type="text" name="lightbox_rl_btn_height" id="lightbox_rl_btn_height" value="<?php echo $row->lightbox_rl_btn_height; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
2500
  </td>
2501
  </tr>
2502
  <tr id="lightbox_right_left5">
2503
+ <td class="spider_label"><label for="lightbox_rl_btn_width"><?php _e("Right, left buttons width:", 'bwg_back'); ?> </label></td>
2504
  <td>
2505
  <input type="text" name="lightbox_rl_btn_width" id="lightbox_rl_btn_width" value="<?php echo $row->lightbox_rl_btn_width; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
2506
  </td>
2507
  </tr>
2508
  <tr id="lightbox_right_left6">
2509
+ <td class="spider_label"><label for="lightbox_rl_btn_size"><?php _e("Right, left buttons size:", 'bwg_back'); ?> </label></td>
2510
  <td>
2511
  <input type="text" name="lightbox_rl_btn_size" id="lightbox_rl_btn_size" value="<?php echo $row->lightbox_rl_btn_size; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
2512
  </td>
2513
  </tr>
2514
  <tr id="lightbox_close15">
2515
+ <td class="spider_label"><label for="lightbox_close_rl_btn_hover_color"><?php _e("Right, left, close buttons hover color:", 'bwg_back'); ?> </label></td>
2516
  <td>
2517
  <input type="text" name="lightbox_close_rl_btn_hover_color" id="lightbox_close_rl_btn_hover_color" value="<?php echo $row->lightbox_close_rl_btn_hover_color; ?>" class="color" />
2518
  </td>
2519
  </tr>
2520
  <tr id="lightbox_right_left10">
2521
+ <td class="spider_label"><label for="lightbox_rl_btn_color"><?php _e("Right, left buttons color:", 'bwg_back'); ?> </label></td>
2522
  <td>
2523
  <input type="text" name="lightbox_rl_btn_color" id="lightbox_rl_btn_color" value="<?php echo $row->lightbox_rl_btn_color; ?>" class="color"/>
2524
  </td>
2525
  </tr>
2526
  <tr id="lightbox_right_left1">
2527
+ <td class="spider_label"><label for="lightbox_rl_btn_border_radius"><?php _e("Right, left buttons border radius: ", 'bwg_back'); ?></label></td>
2528
  <td>
2529
  <input type="text" name="lightbox_rl_btn_border_radius" id="lightbox_rl_btn_border_radius" value="<?php echo $row->lightbox_rl_btn_border_radius; ?>" class="spider_char_input"/>
2530
+ <div class="spider_description"><?php _e("Use CSS type values.", 'bwg_back'); ?></div>
2531
  </td>
2532
  </tr>
2533
  <tr id="lightbox_right_left2">
2534
+ <td class="spider_label"><label for="lightbox_rl_btn_border_width"><?php _e("Right, left buttons border width: ", 'bwg_back'); ?></label></td>
2535
  <td>
2536
  <input type="text" name="lightbox_rl_btn_border_width" id="lightbox_rl_btn_border_width" value="<?php echo $row->lightbox_rl_btn_border_width; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
2537
  </td>
2538
  </tr>
2539
  <tr id="lightbox_right_left8">
2540
+ <td class="spider_label"><label for="lightbox_rl_btn_border_style"><?php _e("Right, left buttons border style: ", 'bwg_back'); ?></label></td>
2541
  <td>
2542
  <select name="lightbox_rl_btn_border_style" id="lightbox_rl_btn_border_style">
2543
  <?php
2544
  foreach ($border_styles as $key => $border_style) {
2545
  ?>
2546
+ <option value="<?php echo $key; ?>" <?php echo (($row->lightbox_rl_btn_border_style == $key) ? 'selected="selected"' : ''); ?>><?php echo __($border_style,"bwg_back"); ?></option>
2547
  <?php
2548
  }
2549
  ?>
2551
  </td>
2552
  </tr>
2553
  <tr id="lightbox_right_left9">
2554
+ <td class="spider_label"><label for="lightbox_rl_btn_border_color"><?php _e("Right, left buttons border color: ", 'bwg_back'); ?></label></td>
2555
  <td>
2556
  <input type="text" name="lightbox_rl_btn_border_color" id="lightbox_rl_btn_border_color" value="<?php echo $row->lightbox_rl_btn_border_color; ?>" class="color"/>
2557
  </td>
2558
  </tr>
2559
  <tr id="lightbox_filmstrip12">
2560
+ <td class="spider_label"><label><?php _e("Filmstrip position: ", 'bwg_back'); ?></label></td>
2561
  <td>
2562
  <select name="lightbox_filmstrip_pos" id="lightbox_filmstrip_pos">
2563
+ <option value="top" <?php echo (($row->lightbox_filmstrip_pos == "top") ? 'selected="selected"' : ''); ?>><?php _e("Top", 'bwg_back'); ?></option>
2564
+ <option value="right" <?php echo (($row->lightbox_filmstrip_pos == "right") ? 'selected="selected"' : ''); ?>><?php _e("Right", 'bwg_back'); ?></option>
2565
+ <option value="bottom" <?php echo (($row->lightbox_filmstrip_pos == "bottom") ? 'selected="selected"' : ''); ?>><?php _e("Bottom", 'bwg_back'); ?></option>
2566
+ <option value="left" <?php echo (($row->lightbox_filmstrip_pos == "left") ? 'selected="selected"' : ''); ?>><?php _e("Left", 'bwg_back'); ?></option>
2567
  </select>
2568
  </td>
2569
  </tr>
2570
  <tr id="lightbox_filmstrip2">
2571
+ <td class="spider_label"><label for="lightbox_filmstrip_thumb_margin"><?php _e("Filmstrip thumbnail margin:", 'bwg_back'); ?> </label></td>
2572
  <td>
2573
  <input type="text" name="lightbox_filmstrip_thumb_margin" id="lightbox_filmstrip_thumb_margin" value="<?php echo $row->lightbox_filmstrip_thumb_margin; ?>" class="spider_char_input"/>
2574
+ <div class="spider_description"><?php _e("Use CSS type values.", 'bwg_back'); ?></div>
2575
  </td>
2576
  </tr>
2577
  <tr id="lightbox_filmstrip3">
2578
+ <td class="spider_label"><label for="lightbox_filmstrip_thumb_border_width"><?php _e("Filmstrip thumbnail border width: ", 'bwg_back'); ?></label></td>
2579
  <td>
2580
  <input type="text" name="lightbox_filmstrip_thumb_border_width" id="lightbox_filmstrip_thumb_border_width" value="<?php echo $row->lightbox_filmstrip_thumb_border_width; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
2581
  </td>
2582
  </tr>
2583
  <tr id="lightbox_filmstrip9">
2584
+ <td class="spider_label"><label for="lightbox_filmstrip_thumb_border_style"><?php _e("Filmstrip thumbnail border style:", 'bwg_back'); ?> </label></td>
2585
  <td>
2586
  <select name="lightbox_filmstrip_thumb_border_style" id="lightbox_filmstrip_thumb_border_style">
2587
  <?php
2588
  foreach ($border_styles as $key => $border_style) {
2589
  ?>
2590
+ <option value="<?php echo $key; ?>" <?php echo (($row->lightbox_filmstrip_thumb_border_style == $key) ? 'selected="selected"' : ''); ?>><?php echo __($border_style,"bwg_back"); ?></option>
2591
  <?php
2592
  }
2593
  ?>
2595
  </td>
2596
  </tr>
2597
  <tr id="lightbox_filmstrip10">
2598
+ <td class="spider_label"><label for="lightbox_filmstrip_thumb_border_color"><?php _e("Filmstrip thumbnail border color:", 'bwg_back'); ?> </label></td>
2599
  <td>
2600
  <input type="text" name="lightbox_filmstrip_thumb_border_color" id="lightbox_filmstrip_thumb_border_color" value="<?php echo $row->lightbox_filmstrip_thumb_border_color; ?>" class="color" />
2601
  </td>
2602
  </tr>
2603
  <tr id="lightbox_filmstrip4">
2604
+ <td class="spider_label"><label for="lightbox_filmstrip_thumb_border_radius"><?php _e("Filmstrip thumbnail border radius:", 'bwg_back'); ?> </label></td>
2605
  <td>
2606
  <input type="text" name="lightbox_filmstrip_thumb_border_radius" id="lightbox_filmstrip_thumb_border_radius" value="<?php echo $row->lightbox_filmstrip_thumb_border_radius; ?>" class="spider_char_input"/>
2607
+ <div class="spider_description"><?php _e("Use CSS type values.", 'bwg_back'); ?></div>
2608
  </td>
2609
  </tr>
2610
  <tr id="lightbox_filmstrip6">
2611
+ <td class="spider_label"><label for="lightbox_filmstrip_thumb_active_border_width"><?php _e("Filmstrip thumbnail active border width:", 'bwg_back'); ?> </label></td>
2612
  <td>
2613
  <input type="text" name="lightbox_filmstrip_thumb_active_border_width" id="lightbox_filmstrip_thumb_active_border_width" value="<?php echo $row->lightbox_filmstrip_thumb_active_border_width; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
2614
  </td>
2615
  </tr>
2616
  <tr id="lightbox_filmstrip11">
2617
+ <td class="spider_label"> <label for="lightbox_filmstrip_thumb_active_border_color"><?php _e("Filmstrip thumbnail active border color:", 'bwg_back'); ?></label></td>
2618
  <td>
2619
  <input type="text" name="lightbox_filmstrip_thumb_active_border_color" id="lightbox_filmstrip_thumb_active_border_color" value="<?php echo $row->lightbox_filmstrip_thumb_active_border_color; ?>" class="color"/>
2620
  </td>
2621
  </tr>
2622
  <tr id="lightbox_filmstrip5">
2623
+ <td class="spider_label"><label for="lightbox_filmstrip_thumb_deactive_transparent"><?php _e("Filmstrip thumbnail deactive transparency: ", 'bwg_back'); ?></label></td>
2624
  <td>
2625
  <input type="text" name="lightbox_filmstrip_thumb_deactive_transparent" id="lightbox_filmstrip_thumb_deactive_transparent" value="<?php echo $row->lightbox_filmstrip_thumb_deactive_transparent; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> %
2626
+ <div class="spider_description"><?php _e("Value must be between 0 to 100.", 'bwg_back'); ?></div>
2627
  </td>
2628
  </tr>
2629
  <tr id="lightbox_filmstrip1">
2630
+ <td class="spider_label"><label for="lightbox_filmstrip_rl_btn_size"><?php _e("Filmstrip right, left buttons size: ", 'bwg_back'); ?></label></td>
2631
  <td>
2632
  <input type="text" name="lightbox_filmstrip_rl_btn_size" id="lightbox_filmstrip_rl_btn_size" value="<?php echo $row->lightbox_filmstrip_rl_btn_size; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
2633
  </td>
2634
  </tr>
2635
  <tr id="lightbox_filmstrip7">
2636
+ <td class="spider_label"><label for="lightbox_filmstrip_rl_btn_color"><?php _e("Filmstrip right, left buttons color:", 'bwg_back'); ?> </label></td>
2637
  <td>
2638
  <input type="text" name="lightbox_filmstrip_rl_btn_color" id="lightbox_filmstrip_rl_btn_color" value="<?php echo $row->lightbox_filmstrip_rl_btn_color; ?>" class="color"/>
2639
  </td>
2640
  </tr>
2641
  <tr id="lightbox_filmstrip8">
2642
+ <td class="spider_label"><label for="lightbox_filmstrip_rl_bg_color"><?php _e("Filmstrip right, left button background color:", 'bwg_back'); ?></label></td>
2643
  <td>
2644
  <input type="text" name="lightbox_filmstrip_rl_bg_color" id="lightbox_filmstrip_rl_bg_color" value="<?php echo $row->lightbox_filmstrip_rl_bg_color; ?>" class="color"/>
2645
  </td>
2646
  </tr>
2647
  <tr>
2648
+ <td class="spider_label"><label for="lightbox_rate_pos1"><?php _e("Rating position: ", 'bwg_back'); ?></label></td>
2649
  <td>
2650
  <input type="radio" name="lightbox_rate_pos" id="lightbox_rate_pos1" value="top" <?php if ($row->lightbox_rate_pos == "top") echo 'checked="checked"'; ?> />
2651
+ <label for="lightbox_rate_pos1" id="lightbox_rate_pos1_lbl"><?php _e("Top", 'bwg_back'); ?></label>
2652
  <input type="radio" name="lightbox_rate_pos" id="lightbox_rate_pos0" value="bottom" <?php if ($row->lightbox_rate_pos == "bottom") echo 'checked="checked"'; ?> />
2653
+ <label for="lightbox_rate_pos0" id="lightbox_rate_pos0_lbl"><?php _e("Bottom", 'bwg_back'); ?></label>
2654
  </td>
2655
  </tr>
2656
  <tr>
2657
+ <td class="spider_label"><label for="lightbox_rate_align"><?php _e("Rating alignment: ", 'bwg_back'); ?></label></td>
2658
  <td>
2659
  <select name="lightbox_rate_align" id="lightbox_rate_align">
2660
  <?php
2661
  foreach ($aligns as $key => $align) {
2662
  ?>
2663
+ <option value="<?php echo $key; ?>" <?php echo (($row->lightbox_rate_align == $key) ? 'selected="selected"' : ''); ?>><?php echo __($align,"bwg_back"); ?></option>
2664
  <?php
2665
  }
2666
  ?>
2668
  </td>
2669
  </tr>
2670
  <tr>
2671
+ <td class="spider_label"><label for="lightbox_rate_icon"><?php _e("Rating icon:", 'bwg_back'); ?> </label></td>
2672
  <td>
2673
  <select name="lightbox_rate_icon" id="lightbox_rate_icon">
2674
  <?php
2675
  foreach ($rate_icons as $key => $rate_icon) {
2676
  ?>
2677
+ <option value="<?php echo $key; ?>" <?php echo (($row->lightbox_rate_icon == $key) ? 'selected="selected"' : ''); ?>><?php echo __($rate_icon,"bwg_back"); ?></option>
2678
  <?php
2679
  }
2680
  ?>
2682
  </td>
2683
  </tr>
2684
  <tr>
2685
+ <td class="spider_label"><label for="lightbox_rate_color"><?php _e("Rating color:", 'bwg_back'); ?> </label></td>
2686
  <td>
2687
  <input type="text" name="lightbox_rate_color" id="lightbox_rate_color" value="<?php echo $row->lightbox_rate_color; ?>" class="color"/>
2688
  </td>
2689
  </tr>
2690
  <tr>
2691
+ <td class="spider_label"><label for="lightbox_rate_hover_color"><?php _e("Rating hover color:", 'bwg_back'); ?> </label></td>
2692
  <td>
2693
  <input type="text" name="lightbox_rate_hover_color" id="lightbox_rate_hover_color" value="<?php echo $row->lightbox_rate_hover_color; ?>" class="color"/>
2694
  </td>
2695
  </tr>
2696
  <tr>
2697
+ <td class="spider_label"><label for="lightbox_rate_size"><?php _e("Rating size:", 'bwg_back'); ?> </label></td>
2698
  <td>
2699
  <input type="text" name="lightbox_rate_size" id="lightbox_rate_size" value="<?php echo $row->lightbox_rate_size; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
2700
  </td>
2701
  </tr>
2702
  <tr>
2703
+ <td class="spider_label"><label for="lightbox_rate_stars_count"><?php _e("Rating icon count:", 'bwg_back'); ?> </label></td>
2704
  <td>
2705
  <input type="text" name="lightbox_rate_stars_count" id="lightbox_rate_stars_count" value="<?php echo $row->lightbox_rate_stars_count; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/>
2706
  </td>
2707
  </tr>
2708
  <tr>
2709
+ <td class="spider_label"><label for="lightbox_rate_padding"><?php _e("Rating padding:", 'bwg_back'); ?> </label></td>
2710
  <td>
2711
  <input type="text" name="lightbox_rate_padding" id="lightbox_rate_padding" value="<?php echo $row->lightbox_rate_padding; ?>" class="spider_char_input"/>
2712
+ <div class="spider_description"><?php _e("Use CSS type values.", 'bwg_back'); ?></div>
2713
  </td>
2714
  </tr>
2715
  <tr>
2716
+ <td class="spider_label"><label><?php _e("Hit counter position:", 'bwg_back'); ?> </label></td>
2717
  <td>
2718
  <input type="radio" name="lightbox_hit_pos" id="lightbox_hit_pos1" value="top" <?php if ($row->lightbox_hit_pos == "top") echo 'checked="checked"'; ?> />
2719
+ <label for="lightbox_hit_pos1" id="lightbox_hit_pos1_lbl"><?php _e("Top", 'bwg_back'); ?></label>
2720
  <input type="radio" name="lightbox_hit_pos" id="lightbox_hit_pos0" value="bottom" <?php if ($row->lightbox_hit_pos == "bottom") echo 'checked="checked"'; ?> />
2721
+ <label for="lightbox_hit_pos0" id="lightbox_hit_pos0_lbl"><?php _e("Bottom", 'bwg_back'); ?></label>
2722
  </td>
2723
  </tr>
2724
  <tr>
2725
+ <td class="spider_label"><label for="lightbox_hit_align"><?php _e("Hit counter alignment:", 'bwg_back'); ?> </label></td>
2726
  <td>
2727
  <select name="lightbox_hit_align" id="lightbox_hit_align">
2728
  <?php
2729
  foreach ($aligns as $key => $align) {
2730
  ?>
2731
+ <option value="<?php echo $key; ?>" <?php echo (($row->lightbox_hit_align == $key) ? 'selected="selected"' : ''); ?>><?php echo __($align,"bwg_back"); ?></option>
2732
  <?php
2733
  }
2734
  ?>
2736
  </td>
2737
  </tr>
2738
  <tr>
2739
+ <td class="spider_label"><label for="lightbox_hit_bg_color"><?php _e("Hit counter background color:", 'bwg_back'); ?> </label></td>
2740
  <td>
2741
  <input type="text" name="lightbox_hit_bg_color" id="lightbox_hit_bg_color" value="<?php echo $row->lightbox_hit_bg_color; ?>" class="color"/>
2742
  </td>
2743
  </tr>
2744
  <tr>
2745
+ <td class="spider_label"><label for="lightbox_hit_bg_transparent"><?php _e("Hit counter background transparency: ", 'bwg_back'); ?></label></td>
2746
  <td>
2747
  <input type="text" name="lightbox_hit_bg_transparent" id="lightbox_hit_bg_transparent" value="<?php echo $row->lightbox_hit_bg_transparent; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> %
2748
+ <div class="spider_description"><?php _e("Value must be between 0 to 100.", 'bwg_back'); ?></div>
2749
  </td>
2750
  </tr>
2751
  <tr>
2752
+ <td class="spider_label"><label for="lightbox_hit_border_width"><?php _e("Hit counter border width: ", 'bwg_back'); ?></label></td>
2753
  <td>
2754
  <input type="text" name="lightbox_hit_border_width" id="lightbox_hit_border_width" value="<?php echo $row->lightbox_hit_border_width; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
2755
  </td>
2756
  </tr>
2757
  <tr>
2758
+ <td class="spider_label"><label for="lightbox_hit_border_style"><?php _e("Hit counter border style:", 'bwg_back'); ?> </label></td>
2759
  <td>
2760
  <select name="lightbox_hit_border_style" id="lightbox_hit_border_style">
2761
  <?php
2762
  foreach ($border_styles as $key => $border_style) {
2763
  ?>
2764
+ <option value="<?php echo $key; ?>" <?php echo (($row->lightbox_hit_border_style == $key) ? 'selected="selected"' : ''); ?>><?php echo __($border_style,"bwg_back"); ?></option>
2765
  <?php
2766
  }
2767
  ?>
2769
  </td>
2770
  </tr>
2771
  <tr>
2772
+ <td class="spider_label"><label for="lightbox_hit_border_color"><?php _e("Hit counter border color:", 'bwg_back'); ?> </label></td>
2773
  <td>
2774
  <input type="text" name="lightbox_hit_border_color" id="lightbox_hit_border_color" value="<?php echo $row->lightbox_hit_border_color; ?>" class="color"/>
2775
  </td>
2776
  </tr>
2777
  <tr>
2778
+ <td class="spider_label"><label for="lightbox_hit_border_radius"><?php _e("Hit counter border radius:", 'bwg_back'); ?> </label></td>
2779
  <td>
2780
  <input type="text" name="lightbox_hit_border_radius" id="lightbox_hit_border_radius" value="<?php echo $row->lightbox_hit_border_radius; ?>" class="spider_char_input"/>
2781
+ <div class="spider_description"><?php _e("Use CSS type values.", 'bwg_back'); ?></div>
2782
  </td>
2783
  </tr>
2784
  <tr>
2785
+ <td class="spider_label"><label for="lightbox_hit_padding"><?php _e("Hit counter padding:", 'bwg_back'); ?> </label></td>
2786
  <td>
2787
  <input type="text" name="lightbox_hit_padding" id="lightbox_hit_padding" value="<?php echo $row->lightbox_hit_padding; ?>" class="spider_char_input"/>
2788
+ <div class="spider_description"><?php _e("Use CSS type values.", 'bwg_back'); ?></div>
2789
  </td>
2790
  </tr>
2791
  <tr>
2792
+ <td class="spider_label"><label for="lightbox_hit_margin"><?php _e("Hit counter margin:", 'bwg_back'); ?> </label></td>
2793
  <td>
2794
  <input type="text" name="lightbox_hit_margin" id="lightbox_hit_margin" value="<?php echo $row->lightbox_hit_margin; ?>" class="spider_char_input"/>
2795
+ <div class="spider_description"><?php _e("Use CSS type values.", 'bwg_back'); ?></div>
2796
  </td>
2797
  </tr>
2798
  <tr>
2799
+ <td class="spider_label"><label for="lightbox_hit_color"><?php _e("Hit counter font color:", 'bwg_back'); ?> </label></td>
2800
  <td>
2801
  <input type="text" name="lightbox_hit_color" id="lightbox_hit_color" value="<?php echo $row->lightbox_hit_color; ?>" class="color"/>
2802
  </td>
2803
  </tr>
2804
  <tr>
2805
+ <td class="spider_label"><label for="lightbox_hit_font_style"><?php _e("Hit counter font family:", 'bwg_back'); ?> </label></td>
2806
  <td>
2807
  <select name="lightbox_hit_font_style" id="lightbox_hit_font_style">
2808
  <?php
2816
  </td>
2817
  </tr>
2818
  <tr>
2819
+ <td class="spider_label"><label for="lightbox_hit_font_weight"><?php _e("Hit counter font weight:", 'bwg_back'); ?> </label></td>
2820
  <td>
2821
  <select name="lightbox_hit_font_weight" id="lightbox_hit_font_weight">
2822
  <?php
2823
  foreach ($font_weights as $key => $font_weight) {
2824
  ?>
2825
+ <option value="<?php echo $key; ?>" <?php echo (($row->lightbox_hit_font_weight == $key) ? 'selected="selected"' : ''); ?>><?php echo __($font_weight,"bwg_back"); ?></option>
2826
  <?php
2827
  }
2828
  ?>
2830
  </td>
2831
  </tr>
2832
  <tr>
2833
+ <td class="spider_label"><label for="lightbox_hit_font_size"><?php _e("Hit counter font size:", 'bwg_back'); ?> </label>
2834
  </td>
2835
  <td>
2836
  <input type="text" name="lightbox_hit_font_size" id="lightbox_hit_font_size" value="<?php echo $row->lightbox_hit_font_size; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
2843
  <table style="clear:both;">
2844
  <tbody>
2845
  <tr>
2846
+ <td class="spider_label"><label><?php _e("Info position:", 'bwg_back'); ?> </label></td>
2847
  <td>
2848
  <input type="radio" name="lightbox_info_pos" id="lightbox_info_pos1" value="top" <?php if ($row->lightbox_info_pos == "top") echo 'checked="checked"'; ?> />
2849
+ <label for="lightbox_info_pos1" id="lightbox_info_pos1_lbl"><?php _e("Top", 'bwg_back'); ?></label>
2850
  <input type="radio" name="lightbox_info_pos" id="lightbox_info_pos0" value="bottom" <?php if ($row->lightbox_info_pos == "bottom") echo 'checked="checked"'; ?> />
2851
+ <label for="lightbox_info_pos0" id="lightbox_info_pos0_lbl"><?php _e("Bottom", 'bwg_back'); ?></label>
2852
  </td>
2853
  </tr>
2854
  <tr>
2855
+ <td class="spider_label"><label for="lightbox_info_align"><?php _e("Info alignment:", 'bwg_back'); ?> </label></td>
2856
  <td>
2857
  <select name="lightbox_info_align" id="lightbox_info_align">
2858
  <?php
2859
  foreach ($aligns as $key => $align) {
2860
  ?>
2861
+ <option value="<?php echo $key; ?>" <?php echo (($row->lightbox_info_align == $key) ? 'selected="selected"' : ''); ?>><?php echo __($align,"bwg_back"); ?></option>
2862
  <?php
2863
  }
2864
  ?>
2866
  </td>
2867
  </tr>
2868
  <tr>
2869
+ <td class="spider_label"><label for="lightbox_info_bg_color"><?php _e("Info background color:", 'bwg_back'); ?> </label></td>
2870
  <td>
2871
  <input type="text" name="lightbox_info_bg_color" id="lightbox_info_bg_color" value="<?php echo $row->lightbox_info_bg_color; ?>" class="color"/>
2872
  </td>
2873
  </tr>
2874
  <tr>
2875
+ <td class="spider_label"><label for="lightbox_info_bg_transparent"><?php _e("Info background transparency:", 'bwg_back'); ?> </label></td>
2876
  <td>
2877
  <input type="text" name="lightbox_info_bg_transparent" id="lightbox_info_bg_transparent" value="<?php echo $row->lightbox_info_bg_transparent; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> %
2878
+ <div class="spider_description"><?php _e("Value must be between 0 to 100.", 'bwg_back'); ?></div>
2879
  </td>
2880
  </tr>
2881
  <tr>
2882
+ <td class="spider_label"><label for="lightbox_info_border_width"><?php _e("Info border width:", 'bwg_back'); ?> </label></td>
2883
  <td>
2884
  <input type="text" name="lightbox_info_border_width" id="lightbox_info_border_width" value="<?php echo $row->lightbox_info_border_width; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
2885
  </td>
2886
  </tr>
2887
  <tr>
2888
+ <td class="spider_label"><label for="lightbox_info_border_style"><?php _e("Info border style:", 'bwg_back'); ?> </label></td>
2889
  <td>
2890
  <select name="lightbox_info_border_style" id="lightbox_info_border_style">
2891
  <?php
2892
  foreach ($border_styles as $key => $border_style) {
2893
  ?>
2894
+ <option value="<?php echo $key; ?>" <?php echo (($row->lightbox_info_border_style == $key) ? 'selected="selected"' : ''); ?>><?php echo __($border_style,"bwg_back"); ?></option>
2895
  <?php
2896
  }
2897
  ?>
2899
  </td>
2900
  </tr>
2901
  <tr>
2902
+ <td class="spider_label"><label for="lightbox_info_border_color"><?php _e("Info border color:", 'bwg_back'); ?> </label></td>
2903
  <td>
2904
  <input type="text" name="lightbox_info_border_color" id="lightbox_info_border_color" value="<?php echo $row->lightbox_info_border_color; ?>" class="color"/>
2905
  </td>
2906
  </tr>
2907
  <tr>
2908
+ <td class="spider_label"><label for="lightbox_info_border_radius"><?php _e("Info border radius:", 'bwg_back'); ?> </label></td>
2909
  <td>
2910
  <input type="text" name="lightbox_info_border_radius" id="lightbox_info_border_radius" value="<?php echo $row->lightbox_info_border_radius; ?>" class="spider_char_input"/>
2911
+ <div class="spider_description"><?php _e("Use CSS type values.", 'bwg_back'); ?></div>
2912
  </td>
2913
  </tr>
2914
  <tr>
2915
+ <td class="spider_label"><label for="lightbox_info_padding"><?php _e("Info padding:", 'bwg_back'); ?> </label></td>
2916
  <td>
2917
  <input type="text" name="lightbox_info_padding" id="lightbox_info_padding" value="<?php echo $row->lightbox_info_padding; ?>" class="spider_char_input"/>
2918
+ <div class="spider_description"><?php _e("Use CSS type values.", 'bwg_back'); ?></div>
2919
  </td>
2920
  </tr>
2921
  <tr>
2922
+ <td class="spider_label"><label for="lightbox_info_margin"><?php _e("Info margin:", 'bwg_back'); ?> </label></td>
2923
  <td>
2924
  <input type="text" name="lightbox_info_margin" id="lightbox_info_margin" value="<?php echo $row->lightbox_info_margin; ?>" class="spider_char_input"/>
2925
+ <div class="spider_description"><?php _e("Use CSS type values.", 'bwg_back'); ?></div>
2926
  </td>
2927
  </tr>
2928
  <tr>
2929
+ <td class="spider_label"><label for="lightbox_title_color"><?php _e("Title font color:", 'bwg_back'); ?> </label></td>
2930
  <td>
2931
  <input type="text" name="lightbox_title_color" id="lightbox_title_color" value="<?php echo $row->lightbox_title_color; ?>" class="color"/>
2932
  </td>
2933
  </tr>
2934
  <tr>
2935
+ <td class="spider_label"><label for="lightbox_title_font_style"><?php _e("Title font family:", 'bwg_back'); ?> </label></td>
2936
  <td>
2937
  <select name="lightbox_title_font_style" id="lightbox_title_font_style">
2938
  <?php
2946
  </td>
2947
  </tr>
2948
  <tr>
2949
+ <td class="spider_label"><label for="lightbox_title_font_weight"><?php _e("Title font weight:", 'bwg_back'); ?> </label></td>
2950
  <td>
2951
  <select name="lightbox_title_font_weight" id="lightbox_title_font_weight">
2952
  <?php
2953
  foreach ($font_weights as $key => $font_weight) {
2954
  ?>
2955
+ <option value="<?php echo $key; ?>" <?php echo (($row->lightbox_title_font_weight == $key) ? 'selected="selected"' : ''); ?>><?php echo __($font_weight,"bwg_back"); ?></option>
2956
  <?php
2957
  }
2958
  ?>
2960
  </td>
2961
  </tr>
2962
  <tr>
2963
+ <td class="spider_label"><label for="lightbox_title_font_size"><?php _e("Title font size:", 'bwg_back'); ?> </label>
2964
  </td>
2965
  <td>
2966
  <input type="text" name="lightbox_title_font_size" id="lightbox_title_font_size" value="<?php echo $row->lightbox_title_font_size; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
2967
  </td>
2968
  </tr>
2969
  <tr>
2970
+ <td class="spider_label"><label for="lightbox_description_color"><?php _e("Description font color:", 'bwg_back'); ?> </label></td>
2971
  <td>
2972
  <input type="text" name="lightbox_description_color" id="lightbox_description_color" value="<?php echo $row->lightbox_description_color; ?>" class="color"/>
2973
  </td>
2974
  </tr>
2975
  <tr>
2976
+ <td class="spider_label"><label for="lightbox_description_font_style"><?php _e("Description font family:", 'bwg_back'); ?> </label></td>
2977
  <td>
2978
  <select name="lightbox_description_font_style" id="lightbox_description_font_style">
2979
  <?php
2987
  </td>
2988
  </tr>
2989
  <tr>
2990
+ <td class="spider_label"><label for="lightbox_description_font_weight"><?php _e("Description font weight:", 'bwg_back'); ?> </label></td>
2991
  <td>
2992
  <select name="lightbox_description_font_weight" id="lightbox_description_font_weight">
2993
  <?php
2994
  foreach ($font_weights as $key => $font_weight) {
2995
  ?>
2996
+ <option value="<?php echo $key; ?>" <?php echo (($row->lightbox_description_font_weight == $key) ? 'selected="selected"' : ''); ?>><?php echo __($font_weight,"bwg_back"); ?></option>
2997
  <?php
2998
  }
2999
  ?>
3001
  </td>
3002
  </tr>
3003
  <tr>
3004
+ <td class="spider_label"><label for="lightbox_description_font_size"><?php _e("Description font size:", 'bwg_back'); ?> </label>
3005
  </td>
3006
  <td>
3007
  <input type="text" name="lightbox_description_font_size" id="lightbox_description_font_size" value="<?php echo $row->lightbox_description_font_size; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
3008
  </td>
3009
  </tr>
3010
  <tr>
3011
+ <td class="spider_label"><label for="lightbox_comment_width"><?php _e("Comments Width:", 'bwg_back'); ?> </label></td>
3012
  <td>
3013
  <input type="text" name="lightbox_comment_width" id="lightbox_comment_width" value="<?php echo $row->lightbox_comment_width; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
3014
  </td>
3015
  </tr>
3016
  <tr id="lightbox_comment25">
3017
+ <td class="spider_label"><label><?php _e("Comments position:", 'bwg_back'); ?> </label></td>
3018
  <td>
3019
  <input type="radio" name="lightbox_comment_pos" id="lightbox_comment_pos1" value="left"<?php if ($row->lightbox_comment_pos == "left") echo 'checked="checked"'; ?> />
3020
+ <label for="lightbox_comment_pos1" id="lightbox_comment_pos1_lbl"><?php _e("Left", 'bwg_back'); ?></label>
3021
  <input type="radio" name="lightbox_comment_pos" id="lightbox_comment_pos0" value="right"<?php if ($row->lightbox_comment_pos == "right") echo 'checked="checked"'; ?> />
3022
+ <label for="lightbox_comment_pos0" id="lightbox_comment_pos0_lbl"><?php _e("Right", 'bwg_back'); ?></label>
3023
  </td>
3024
  </tr>
3025
  <tr id="lightbox_comment13">
3026
+ <td class="spider_label"><label for="lightbox_comment_bg_color"><?php _e("Comments background color:", 'bwg_back'); ?> </label></td>
3027
  <td>
3028
  <input type="text" name="lightbox_comment_bg_color" id="lightbox_comment_bg_color" value="<?php echo $row->lightbox_comment_bg_color; ?>" class="color"/>
3029
  </td>
3030
  </tr>
3031
  <tr id="lightbox_comment2">
3032
+ <td class="spider_label"><label for="lightbox_comment_font_size"><?php _e("Comments font size:", 'bwg_back'); ?> </label></td>
3033
  <td>
3034
  <input type="text" name="lightbox_comment_font_size" id="lightbox_comment_font_size" value="<?php echo $row->lightbox_comment_font_size; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
3035
  </td>
3036
  </tr>
3037
  <tr id="lightbox_comment14">
3038
+ <td class="spider_label"><label for="lightbox_comment_font_color"><?php _e("Comments font color:", 'bwg_back'); ?></label></td>
3039
  <td>
3040
  <input type="text" name="lightbox_comment_font_color" id="lightbox_comment_font_color" value="<?php echo $row->lightbox_comment_font_color; ?>" class="color"/>
3041
  </td>
3042
  </tr>
3043
  <tr id="lightbox_comment15">
3044
+ <td class="spider_label"><label for="lightbox_comment_font_style"><?php _e("Comments font family:", 'bwg_back'); ?> </label></td>
3045
  <td>
3046
  <select name="lightbox_comment_font_style" id="lightbox_comment_font_style">
3047
  <?php
3055
  </td>
3056
  </tr>
3057
  <tr id="lightbox_comment10">
3058
+ <td class="spider_label"><label for="lightbox_comment_author_font_size"><?php _e("Comments author font size:", 'bwg_back'); ?> </label>
3059
  </td>
3060
  <td>
3061
  <input type="text" name="lightbox_comment_author_font_size" id="lightbox_comment_author_font_size" value="<?php echo $row->lightbox_comment_author_font_size; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
3062
  </td>
3063
  </tr>
3064
  <tr id="lightbox_comment11">
3065
+ <td class="spider_label"><label for="lightbox_comment_date_font_size"><?php _e("Comments date font size:", 'bwg_back'); ?> </label></td>
3066
  <td>
3067
  <input type="text" name="lightbox_comment_date_font_size" id="lightbox_comment_date_font_size" value="<?php echo $row->lightbox_comment_date_font_size; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
3068
  </td>
3069
  </tr>
3070
  <tr id="lightbox_comment12">
3071
+ <td class="spider_label"><label for="lightbox_comment_body_font_size"><?php _e("Comments body font size:", 'bwg_back'); ?> </label></td>
3072
  <td>
3073
  <input type="text" name="lightbox_comment_body_font_size" id="lightbox_comment_body_font_size" value="<?php echo $row->lightbox_comment_body_font_size; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
3074
  </td>
3075
  </tr>
3076
  <tr id="lightbox_comment6">
3077
+ <td class="spider_label"><label for="lightbox_comment_input_border_width"><?php _e("Comment input border width: ", 'bwg_back'); ?></label></td>
3078
  <td>
3079
  <input type="text" name="lightbox_comment_input_border_width" id="lightbox_comment_input_border_width" value="<?php echo $row->lightbox_comment_input_border_width; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
3080
  </td>
3081
  </tr>
3082
  <tr id="lightbox_comment21">
3083
+ <td class="spider_label"><label for="lightbox_comment_input_border_style"><?php _e("Comment input border style: ", 'bwg_back'); ?></label></td>
3084
  <td>
3085
  <select name="lightbox_comment_input_border_style" id="lightbox_comment_input_border_style">
3086
  <?php
3087
  foreach ($border_styles as $key => $border_style) {
3088
  ?>
3089
+ <option value="<?php echo $key; ?>" <?php echo (($row->lightbox_comment_input_border_style == $key) ? 'selected="selected"' : ''); ?>><?php echo __($border_style,"bwg_back"); ?></option>
3090
  <?php
3091
  }
3092
  ?>
3094
  </td>
3095
  </tr>
3096
  <tr id="lightbox_comment20">
3097
+ <td class="spider_label"><label for="lightbox_comment_input_border_color"><?php _e("Comment input border color:", 'bwg_back'); ?> </label></td>
3098
  <td>
3099
  <input type="text" name="lightbox_comment_input_border_color" id="lightbox_comment_input_border_color" value="<?php echo $row->lightbox_comment_input_border_color; ?>" class="color"/>
3100
  </td>
3101
  </tr>
3102
  <tr id="lightbox_comment7">
3103
+ <td class="spider_label"><label for="lightbox_comment_input_border_radius"><?php _e("Comment input border radius:", 'bwg_back'); ?> </label></td>
3104
  <td>
3105
  <input type="text" name="lightbox_comment_input_border_radius" id="lightbox_comment_input_border_radius" value="<?php echo $row->lightbox_comment_input_border_radius; ?>" class="spider_char_input"/>
3106
  </td>
3107
  </tr>
3108
  <tr id="lightbox_comment8">
3109
+ <td class="spider_label"><label for="lightbox_comment_input_padding"><?php _e("Comment input padding:", 'bwg_back'); ?> </label></td>
3110
  <td>
3111
  <input type="text" name="lightbox_comment_input_padding" id="lightbox_comment_input_padding" value="<?php echo $row->lightbox_comment_input_padding; ?>" class="spider_char_input"/>
3112
+ <div class="spider_description"><?php _e("Use CSS type values.", 'bwg_back'); ?></div>
3113
  </td>
3114
  </tr>
3115
  <tr id="lightbox_comment19">
3116
+ <td class="spider_label"><label for="lightbox_comment_input_bg_color"><?php _e("Comment input background color:", 'bwg_back'); ?> </label></td>
3117
  <td>
3118
  <input type="text" name="lightbox_comment_input_bg_color" id="lightbox_comment_input_bg_color" value="<?php echo $row->lightbox_comment_input_bg_color; ?>" class="color"/>
3119
  </td>
3120
  </tr>
3121
  <tr id="lightbox_comment16">
3122
+ <td class="spider_label"><label for="lightbox_comment_button_bg_color"><?php _e("Comment button background color:", 'bwg_back'); ?> </label></td>
3123
  <td>
3124
  <input type="text" name="lightbox_comment_button_bg_color" id="lightbox_comment_button_bg_color" value="<?php echo $row->lightbox_comment_button_bg_color; ?>" class="color"/>
3125
  </td>
3126
  </tr>
3127
  <tr id="lightbox_comment5">
3128
+ <td class="spider_label"><label for="lightbox_comment_button_padding"><?php _e("Comment button padding:", 'bwg_back'); ?> </label></td>
3129
  <td>
3130
  <input type="text" name="lightbox_comment_button_padding" id="lightbox_comment_button_padding" value="<?php echo $row->lightbox_comment_button_padding; ?>" class="spider_char_input"/>
3131
+ <div class="spider_description"><?php _e("Use CSS type values.", 'bwg_back'); ?></div>
3132
  </td>
3133
  </tr>
3134
  <tr id="lightbox_comment3">
3135
+ <td class="spider_label"><label for="lightbox_comment_button_border_width"><?php _e("Comment button border width:", 'bwg_back'); ?> </label></td>
3136
  <td>
3137
  <input type="text" name="lightbox_comment_button_border_width" id="lightbox_comment_button_border_width" value="<?php echo $row->lightbox_comment_button_border_width; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
3138
  </td>
3139
  </tr>
3140
  <tr id="lightbox_comment18">
3141
+ <td class="spider_label"><label for="lightbox_comment_button_border_style"><?php _e("Comment button border style:", 'bwg_back'); ?> </label></td>
3142
  <td>
3143
  <select name="lightbox_comment_button_border_style" id="lightbox_comment_button_border_style">
3144
  <?php
3145
  foreach ($border_styles as $key => $border_style) {
3146
  ?>
3147
+ <option value="<?php echo $key; ?>" <?php echo (($row->lightbox_comment_button_border_style == $key) ? 'selected="selected"' : ''); ?>><?php echo __($border_style,"bwg_back"); ?></option>
3148
  <?php
3149
  }
3150
  ?>
3152
  </td>
3153
  </tr>
3154
  <tr id="lightbox_comment17">
3155
+ <td class="spider_label"><label for="lightbox_comment_button_border_color"><?php _e("Comment button border color:", 'bwg_back'); ?> </label></td>
3156
  <td>
3157
  <input type="text" name="lightbox_comment_button_border_color" id="lightbox_comment_button_border_color" value="<?php echo $row->lightbox_comment_button_border_color; ?>" class="color"/>
3158
  </td>
3159
  </tr>
3160
  <tr id="lightbox_comment4">
3161
+ <td class="spider_label"><label for="lightbox_comment_button_border_radius"><?php _e("Comment button border radius:", 'bwg_back'); ?> </label></td>
3162
  <td>
3163
  <input type="text" name="lightbox_comment_button_border_radius" id="lightbox_comment_button_border_radius" value="<?php echo $row->lightbox_comment_button_border_radius; ?>" class="spider_char_input" />
3164
+ <div class="spider_description"><?php _e("Use CSS type values.", 'bwg_back'); ?></div>
3165
  </td>
3166
  </tr>
3167
  <tr id="lightbox_comment9">
3168
+ <td class="spider_label"><label for="lightbox_comment_separator_width"><?php _e("Comment separator width:", 'bwg_back'); ?> </label></td>
3169
  <td>
3170
  <input type="text" name="lightbox_comment_separator_width" id="lightbox_comment_separator_width" value="<?php echo $row->lightbox_comment_separator_width; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
3171
  </td>
3172
  </tr>
3173
  <tr id="lightbox_comment22">
3174
+ <td class="spider_label"><label for="lightbox_comment_separator_style"><?php _e("Comment separator style:", 'bwg_back'); ?> </label></td>
3175
  <td>
3176
  <select name="lightbox_comment_separator_style" id="lightbox_comment_separator_style">
3177
  <?php
3178
  foreach ($border_styles as $key => $border_style) {
3179
  ?>
3180
+ <option value="<?php echo $key; ?>" <?php echo (($row->lightbox_comment_separator_style == $key) ? 'selected="selected"' : ''); ?>><?php echo __($border_style,"bwg_back"); ?></option>
3181
  <?php
3182
  }
3183
  ?>
3185
  </td>
3186
  </tr>
3187
  <tr id="lightbox_comment23">
3188
+ <td class="spider_label"><label for="lightbox_comment_separator_color"><?php _e("Comment separator color:", 'bwg_back'); ?> </label></td>
3189
  <td>
3190
  <input type="text" name="lightbox_comment_separator_color" id="lightbox_comment_separator_color" value="<?php echo $row->lightbox_comment_separator_color; ?>" class="color"/>
3191
  </td>
3200
  <table style="clear:both;">
3201
  <tbody>
3202
  <tr>
3203
+ <td class="spider_label"><label for="page_nav_font_size"><?php _e("Font size:", 'bwg_back'); ?> </label></td>
3204
  <td>
3205
  <input type="text" name="page_nav_font_size" id="page_nav_font_size" value="<?php echo $row->page_nav_font_size; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
3206
  </td>
3207
  </tr>
3208
  <tr>
3209
+ <td class="spider_label"><label for="page_nav_font_color"><?php _e("Font color:", 'bwg_back'); ?> </label></td>
3210
  <td>
3211
  <input type="text" name="page_nav_font_color" id="page_nav_font_color" value="<?php echo $row->page_nav_font_color; ?>" class="color"/>
3212
  </td>
3213
  </tr>
3214
  <tr>
3215
+ <td class="spider_label"><label for="page_nav_font_style"><?php _e("Font family:", 'bwg_back'); ?> </label></td>
3216
  <td>
3217
  <select name="page_nav_font_style" id="page_nav_font_style">
3218
  <?php
3226
  </td>
3227
  </tr>
3228
  <tr>
3229
+ <td class="spider_label"><label for="page_nav_font_weight"><?php _e("Font weight:", 'bwg_back'); ?> </label></td>
3230
  <td>
3231
  <select name="page_nav_font_weight" id="page_nav_font_weight">
3232
  <?php
3233
  foreach ($font_weights as $key => $font_weight) {
3234
  ?>
3235
+ <option value="<?php echo $key; ?>" <?php echo (($row->page_nav_font_weight == $key) ? 'selected="selected"' : ''); ?>><?php echo __($font_weight,"bwg_back"); ?></option>
3236
  <?php
3237
  }
3238
  ?>
3240
  </td>
3241
  </tr>
3242
  <tr>
3243
+ <td class="spider_label"><label for="page_nav_border_width"><?php _e("Border width:", 'bwg_back'); ?> </label></td>
3244
  <td>
3245
  <input type="text" name="page_nav_border_width" id="page_nav_border_width" value="<?php echo $row->page_nav_border_width; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
3246
  </td>
3247
  </tr>
3248
  <tr>
3249
+ <td class="spider_label"><label for="page_nav_border_style"><?php _e("Border style:", 'bwg_back'); ?> </label></td>
3250
  <td>
3251
  <select name="page_nav_border_style" id="page_nav_border_style">
3252
  <?php
3253
  foreach ($border_styles as $key => $border_style) {
3254
  ?>
3255
+ <option value="<?php echo $key; ?>" <?php echo (($row->page_nav_border_style == $key) ? 'selected="selected"' : ''); ?>><?php echo __($border_style,"bwg_back"); ?></option>
3256
  <?php
3257
  }
3258
  ?>
3260
  </td>
3261
  </tr>
3262
  <tr>
3263
+ <td class="spider_label"><label for="page_nav_border_color"><?php _e("Border color:", 'bwg_back'); ?></label></td>
3264
  <td>
3265
  <input type="text" name="page_nav_border_color" id="page_nav_border_color" value="<?php echo $row->page_nav_border_color; ?>" class="color"/>
3266
  </td>
3267
  </tr>
3268
  <tr>
3269
+ <td class="spider_label"><label for="page_nav_border_radius"><?php _e("Border radius:", 'bwg_back'); ?> </label></td>
3270
  <td>
3271
  <input type="text" name="page_nav_border_radius" id="page_nav_border_radius" value="<?php echo $row->page_nav_border_radius; ?>" class="spider_char_input"/>
3272
+ <div class="spider_description"><?php _e("Use CSS type values.", 'bwg_back'); ?></div>
3273
  </td>
3274
  </tr>
3275
  </tbody>
3279
  <table style="clear:both;">
3280
  <tbody>
3281
  <tr>
3282
+ <td class="spider_label"><label for="page_nav_margin"><?php _e("Margin:", 'bwg_back'); ?> </label></td>
3283
  <td>
3284
  <input type="text" name="page_nav_margin" id="page_nav_margin" value="<?php echo $row->page_nav_margin; ?>" class="spider_char_input"/>
3285
+ <div class="spider_description"><?php _e("Use CSS type values.", 'bwg_back'); ?></div>
3286
  </td>
3287
  </tr>
3288
  <tr>
3289
+ <td class="spider_label"><label for="page_nav_padding"><?php _e("Padding:", 'bwg_back'); ?> </label></td>
3290
  <td>
3291
  <input type="text" name="page_nav_padding" id="page_nav_padding" value="<?php echo $row->page_nav_padding; ?>" class="spider_char_input"/>
3292
+ <div class="spider_description"><?php _e("Use CSS type values.", 'bwg_back'); ?></div>
3293
  </td>
3294
  </tr>
3295
  <tr>
3296
+ <td class="spider_label"><label for="page_nav_button_bg_color"><?php _e("Button background color:", 'bwg_back'); ?> </label></td>
3297
  <td>
3298
  <input type="text" name="page_nav_button_bg_color" id="page_nav_button_bg_color" value="<?php echo $row->page_nav_button_bg_color; ?>" class="color" />
3299
  </td>
3300
  </tr>
3301
  <tr>
3302
+ <td class="spider_label"><label for="page_nav_button_bg_transparent"><?php _e("Button background transparency:", 'bwg_back'); ?> </label></td>
3303
  <td>
3304
  <input type="text" name="page_nav_button_bg_transparent" id="page_nav_button_bg_transparent" value="<?php echo $row->page_nav_button_bg_transparent; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> %
3305
+ <div class="spider_description"><?php _e("Value must be between 0 to 100.", 'bwg_back'); ?></div>
3306
  </td>
3307
  </tr>
3308
  <tr>
3309
+ <td class="spider_label"><label><?php _e("Button transition:", 'bwg_back'); ?> </label></td>
3310
  <td>
3311
  <input type="radio" name="page_nav_button_transition" id="page_nav_button_transition1" value="1"<?php if ($row->page_nav_button_transition == 1) echo 'checked="checked"'; ?> />
3312
+ <label for="page_nav_button_transition1" id="page_nav_button_transition1_lbl"><?php _e("Yes", 'bwg_back'); ?></label>
3313
  <input type="radio" name="page_nav_button_transition" id="page_nav_button_transition0" value="0"<?php if ($row->page_nav_button_transition == 0) echo 'checked="checked"'; ?> />
3314
+ <label for="page_nav_button_transition0" id="page_nav_button_transition0_lbl"><?php _e("No", 'bwg_back'); ?></label>
3315
  </td>
3316
  </tr>
3317
  <tr>
3318
+ <td class="spider_label"><label for="page_nav_box_shadow"><?php _e("Box shadow:", 'bwg_back'); ?> </label></td>
3319
  <td>
3320
  <input type="text" name="page_nav_box_shadow" id="page_nav_box_shadow" value="<?php echo $row->page_nav_box_shadow; ?>" class="spider_box_input"/>
3321
+ <div class="spider_description"><?php _e("Use CSS type values.", 'bwg_back'); ?></div>
3322
  </td>
3323
  </tr>
3324
  </tbody>
3328
  <table style="clear:both;">
3329
  <tbody>
3330
  <tr>
3331
+ <td class="spider_label"><label><?php _e("Position:", 'bwg_back'); ?> </label></td>
3332
  <td id="page_nav_position">
3333
  <input type="radio" name="page_nav_position" id="page_nav_position1" value="top"<?php if ($row->page_nav_position == "top") echo 'checked="checked"'; ?> />
3334
+ <label for="page_nav_position1" id="page_nav_position1_lbl"><?php _e("Top", 'bwg_back'); ?></label>
3335
  <input type="radio" name="page_nav_position" id="page_nav_position0" value="bottom"<?php if ($row->page_nav_position == "bottom") echo 'checked="checked"'; ?> />
3336
+ <label for="page_nav_position0" id="page_nav_position0_lbl"><?php _e("Bottom", 'bwg_back'); ?></label>
3337
  </td>
3338
  </tr>
3339
  <tr>
3340
+ <td class="spider_label"><label for="page_nav_align0"><?php _e("Alignment:", 'bwg_back'); ?> </label></td>
3341
  <td>
3342
  <select name="page_nav_align" id="page_nav_align">
3343
  <?php
3344
  foreach ($aligns as $key => $align) {
3345
  ?>
3346
+ <option value="<?php echo $key; ?>" <?php echo (($row->page_nav_align == $key) ? 'selected="selected"' : ''); ?>><?php echo __($align,"bwg_back"); ?></option>
3347
  <?php
3348
  }
3349
  ?>
3351
  </td>
3352
  </tr>
3353
  <tr>
3354
+ <td class="spider_label"><label><?php _e("Numbering:", 'bwg_back'); ?> </label></td>
3355
  <td>
3356
  <input type="radio" name="page_nav_number" id="page_nav_number1" value="1"<?php if ($row->page_nav_number == 1) echo 'checked="checked"'; ?> />
3357
+ <label for="page_nav_number1" id="page_nav_number1_lbl"><?php _e("Yes", 'bwg_back'); ?></label>
3358
  <input type="radio" name="page_nav_number" id="page_nav_number0" value="0"<?php if ($row->page_nav_number == 0) echo 'checked="checked"'; ?> />
3359
+ <label for="page_nav_number0" id="page_nav_number0_lbl"><?php _e("No", 'bwg_back'); ?></label>
3360
  </td>
3361
  </tr>
3362
  <tr>
3363
+ <td class="spider_label"><label><?php _e("Button text:", 'bwg_back'); ?> </label></td>
3364
  <td>
3365
  <input type="radio" name="page_nav_button_text" id="page_nav_button_text1" value="1"<?php if ($row->page_nav_button_text == 1) echo 'checked="checked"'; ?> />
3366
+ <label for="page_nav_button_text1" id="page_nav_button_text1_lbl"><?php _e("Text", 'bwg_back'); ?></label>
3367
  <input type="radio" name="page_nav_button_text" id="page_nav_button_text0" value="0"<?php if ($row->page_nav_button_text == 0) echo 'checked="checked"'; ?> />
3368
+ <label for="page_nav_button_text0" id="page_nav_button_text0_lbl"><?php _e("Arrow", 'bwg_back'); ?></label>
3369
+ <div class="spider_description"><?php _e("Next, previous buttons values.", 'bwg_back'); ?></div>
3370
  </td>
3371
  </tr>
3372
  </tbody>
admin/views/BWGViewUninstall_bwg.php CHANGED
@@ -30,21 +30,21 @@ class BWGViewUninstall_bwg {
30
  <?php wp_nonce_field( 'uninstall_bwg', 'bwg_nonce' ); ?>
31
  <div class="wrap">
32
  <span class="uninstall_icon"></span>
33
- <h2>Uninstall Photo Gallery</h2>
34
  <p>
35
- Deactivating Photo Gallery plugin does not remove any data that may have been created. To completely remove this plugin, you can uninstall it here.
36
  </p>
37
  <p style="color: red;">
38
- <strong>WARNING:</strong>
39
- Once uninstalled, this can't be undone. You should use a Database Backup plugin of WordPress to back up all the data first.
40
  </p>
41
  <p style="color: red">
42
- <strong>The following Database Tables will be deleted:</strong>
43
  </p>
44
  <table class="widefat">
45
  <thead>
46
  <tr>
47
- <th>Database Tables</th>
48
  </tr>
49
  </thead>
50
  <tr>
@@ -67,20 +67,20 @@ class BWGViewUninstall_bwg {
67
  <tr>
68
  <th>
69
  <input type="checkbox" name="bwg_delete_files" id="bwg_delete_files" style="vertical-align: middle;" />
70
- <label for="bwg_delete_files">&nbsp;Delete the folder containing uploaded images.</label>
71
  </th>
72
  </tr>
73
  </tfoot>
74
  </table>
75
  <p style="text-align: center;">
76
- Do you really want to uninstall Photo Gallery?
77
  </p>
78
  <p style="text-align: center;">
79
- <input type="checkbox" name="Photo Gallery" id="check_yes" value="yes" />&nbsp;<label for="check_yes">Yes</label>
80
  </p>
81
  <p style="text-align: center;">
82
  <input type="submit" value="UNINSTALL" class="button-primary" onclick="if (check_yes.checked) {
83
- if (confirm('You are About to Uninstall Photo Gallery from WordPress.\nThis Action Is Not Reversible.')) {
84
  spider_set_input_value('task', 'uninstall');
85
  } else {
86
  return false;
@@ -130,7 +130,7 @@ class BWGViewUninstall_bwg {
130
  $deactivate_url = wp_nonce_url('plugins.php?action=deactivate&amp;plugin=photo-gallery/photo-gallery.php', 'deactivate-plugin_photo-gallery/photo-gallery.php');
131
  ?>
132
  <div id="message" class="updated fade">
133
- <p>The following Database Tables successfully deleted:</p>
134
  <p><?php echo $prefix; ?>bwg_album,</p>
135
  <p><?php echo $prefix; ?>bwg_album_gallery,</p>
136
  <p><?php echo $prefix; ?>bwg_gallery,</p>
@@ -146,14 +146,14 @@ class BWGViewUninstall_bwg {
146
  if (isset($_POST['bwg_delete_files'])) {
147
  ?>
148
  <div class="<?php echo ($flag) ? 'updated' : 'error'?>">
149
- <p><?php echo ($flag) ? 'The folder was successfully deleted.' : 'An error occurred when deleting the folder.'?></p>
150
  </div>
151
  <?php
152
  }
153
  ?>
154
  <div class="wrap">
155
- <h2>Uninstall Photo Gallery</h2>
156
- <p><strong><a href="<?php echo $deactivate_url; ?>">Click Here</a> To Finish the Uninstallation and Photo Gallery will be Deactivated Automatically.</strong></p>
157
  <input id="task" name="task" type="hidden" value="" />
158
  </div>
159
  <?php
30
  <?php wp_nonce_field( 'uninstall_bwg', 'bwg_nonce' ); ?>
31
  <div class="wrap">
32
  <span class="uninstall_icon"></span>
33
+ <h2><?php _e("Uninstall Photo Gallery", 'bwg_back'); ?></h2>
34
  <p>
35
+ <?php _e("Deactivating Photo Gallery plugin does not remove any data that may have been created. To completely remove this plugin, you can uninstall it here.", 'bwg_back'); ?>
36
  </p>
37
  <p style="color: red;">
38
+ <strong><?php _e("WARNING:", 'bwg_back'); ?></strong>
39
+ <?php _e("Once uninstalled, this can't be undone. You should use a Database Backup plugin of WordPress to back up all the data first.", 'bwg_back'); ?>
40
  </p>
41
  <p style="color: red">
42
+ <strong><?php _e("The following Database Tables will be deleted:", 'bwg_back'); ?></strong>
43
  </p>
44
  <table class="widefat">
45
  <thead>
46
  <tr>
47
+ <th><?php _e("Database Tables", 'bwg_back'); ?></th>
48
  </tr>
49
  </thead>
50
  <tr>
67
  <tr>
68
  <th>
69
  <input type="checkbox" name="bwg_delete_files" id="bwg_delete_files" style="vertical-align: middle;" />
70
+ <label for="bwg_delete_files">&nbsp;<?php _e("Delete the folder containing uploaded images.", 'bwg_back'); ?></label>
71
  </th>
72
  </tr>
73
  </tfoot>
74
  </table>
75
  <p style="text-align: center;">
76
+ <?php _e("Do you really want to uninstall Photo Gallery?", 'bwg_back'); ?>
77
  </p>
78
  <p style="text-align: center;">
79
+ <input type="checkbox" name="Photo Gallery" id="check_yes" value="yes" />&nbsp;<label for="check_yes"><?php _e("Yes", 'bwg_back'); ?></label>
80
  </p>
81
  <p style="text-align: center;">
82
  <input type="submit" value="UNINSTALL" class="button-primary" onclick="if (check_yes.checked) {
83
+ if (confirm('<?php _e("You are About to Uninstall Photo Gallery from WordPress.\nThis Action Is Not Reversible.", 'bwg_back'); ?>')) {
84
  spider_set_input_value('task', 'uninstall');
85
  } else {
86
  return false;
130
  $deactivate_url = wp_nonce_url('plugins.php?action=deactivate&amp;plugin=photo-gallery/photo-gallery.php', 'deactivate-plugin_photo-gallery/photo-gallery.php');
131
  ?>
132
  <div id="message" class="updated fade">
133
+ <p><?php _e("The following Database Tables successfully deleted:", 'bwg_back'); ?></p>
134
  <p><?php echo $prefix; ?>bwg_album,</p>
135
  <p><?php echo $prefix; ?>bwg_album_gallery,</p>
136
  <p><?php echo $prefix; ?>bwg_gallery,</p>
146
  if (isset($_POST['bwg_delete_files'])) {
147
  ?>
148
  <div class="<?php echo ($flag) ? 'updated' : 'error'?>">
149
+ <p><?php echo ($flag) ? __("The folder was successfully deleted.", 'bwg_back') : __("An error occurred when deleting the folder.", 'bwg_back')?></p>
150
  </div>
151
  <?php
152
  }
153
  ?>
154
  <div class="wrap">
155
+ <h2><?php _e("Uninstall Photo Gallery", 'bwg_back'); ?></h2>
156
+ <p><strong><a href="<?php echo $deactivate_url; ?>"><?php _e("Click Here", 'bwg_back'); ?></a> <?php _e("To Finish the Uninstallation and Photo Gallery will be Deactivated Automatically.", 'bwg_back'); ?></strong></p>
157
  <input id="task" name="task" type="hidden" value="" />
158
  </div>
159
  <?php
admin/views/BWGViewWidget.php CHANGED
@@ -103,17 +103,17 @@ class BWGViewWidget {
103
  }
104
  </script>
105
  <p>
106
- <label for="<?php echo $id_title; ?>">Title:</label>
107
  <input class="widefat" id="<?php echo $id_title; ?>" name="<?php echo $name_title; ?>'" type="text" value="<?php echo $instance['title']; ?>"/>
108
  </p>
109
  <p>
110
- <input type="radio" name="<?php echo $name_type; ?>" id="<?php echo $id_type . "_1"; ?>" value="gallery" class="sel_gallery" onclick="bwg_change_type(event, this)" <?php if ($instance['type'] == "gallery") echo 'checked="checked"'; ?> /><label for="<?php echo $id_type . "_1"; ?>">Gallery</label>
111
- <input type="radio" name="<?php echo $name_type; ?>" id="<?php echo $id_type . "_2"; ?>" value="album" class="sel_album" onclick="bwg_change_type(event, this)" <?php if ($instance['type'] == "album") echo 'checked="checked"'; ?> /><label for="<?php echo $id_type . "_2"; ?>">Album</label>
112
  <input type="hidden" name="<?php echo $name_type; ?>" id="<?php echo $id_type; ?>" value="<?php echo $instance['type']; ?>" class="bwg_hidden" />
113
  </p>
114
  <p id="p_galleries" style="display:<?php echo ($instance['type'] == "gallery") ? "" : "none" ?>;">
115
  <select name="<?php echo $name_gallery_id; ?>" id="<?php echo $id_gallery_id; ?>" class="widefat">
116
- <option value="0">Select Gallery</option>
117
  <?php
118
  foreach ($gallery_rows as $gallery_row) {
119
  ?>
@@ -125,7 +125,7 @@ class BWGViewWidget {
125
  </p>
126
  <p id="p_albums" style="display:<?php echo ($instance['type'] == "album") ? "" : "none" ?>;">
127
  <select name="<?php echo $name_album_id; ?>" id="<?php echo $id_album_id; ?>" class="widefat">
128
- <option value="0">Select Album</option>
129
  <?php
130
  foreach ($album_rows as $album_row) {
131
  ?>
@@ -136,17 +136,17 @@ class BWGViewWidget {
136
  </select>
137
  </p>
138
  <p>
139
- <input type="radio" name="<?php echo $name_show; ?>" id="<?php echo $id_show . "_1"; ?>" value="random" <?php if ($instance['show'] == "random") echo 'checked="checked"'; ?> onclick='jQuery(this).nextAll(".bwg_hidden").first().attr("value", "random");' /><label for="<?php echo $id_show . "_1"; ?>">Random</label>
140
- <input type="radio" name="<?php echo $name_show; ?>" id="<?php echo $id_show . "_2"; ?>" value="first" <?php if ($instance['show'] == "first") echo 'checked="checked"'; ?> onclick='jQuery(this).nextAll(".bwg_hidden").first().attr("value", "first");' /><label for="<?php echo $id_show . "_2"; ?>">First</label>
141
- <input type="radio" name="<?php echo $name_show; ?>" id="<?php echo $id_show . "_3"; ?>" value="last" <?php if ($instance['show'] == "last") echo 'checked="checked"'; ?> onclick='jQuery(this).nextAll(".bwg_hidden").first().attr("value", "last");' /><label for="<?php echo $id_show . "_3"; ?>">Last</label>
142
  <input type="hidden" name="<?php echo $name_show; ?>" id="<?php echo $id_show; ?>" value="<?php echo $instance['show']; ?>" class="bwg_hidden" />
143
  </p>
144
  <p>
145
- <label for="<?php echo $id_count; ?>">Count:</label>
146
  <input class="widefat" style="width:25%;" id="<?php echo $id_count; ?>" name="<?php echo $name_count; ?>'" type="text" value="<?php echo $instance['count']; ?>"/>
147
  </p>
148
  <p>
149
- <label for="<?php echo $id_width; ?>">Dimensions:</label>
150
  <input class="widefat" style="width:25%;" id="<?php echo $id_width; ?>" name="<?php echo $name_width; ?>'" type="text" value="<?php echo $instance['width']; ?>"/> x
151
  <input class="widefat" style="width:25%;" id="<?php echo $id_height; ?>" name="<?php echo $name_height; ?>'" type="text" value="<?php echo $instance['height']; ?>"/> px
152
  </p>
103
  }
104
  </script>
105
  <p>
106
+ <label for="<?php echo $id_title; ?>"><?php _e("Title:", 'bwg_back'); ?></label>
107
  <input class="widefat" id="<?php echo $id_title; ?>" name="<?php echo $name_title; ?>'" type="text" value="<?php echo $instance['title']; ?>"/>
108
  </p>
109
  <p>
110
+ <input type="radio" name="<?php echo $name_type; ?>" id="<?php echo $id_type . "_1"; ?>" value="gallery" class="sel_gallery" onclick="bwg_change_type(event, this)" <?php if ($instance['type'] == "gallery") echo 'checked="checked"'; ?> /><label for="<?php echo $id_type . "_1"; ?>"><?php _e("Gallery", 'bwg_back'); ?></label>
111
+ <input type="radio" name="<?php echo $name_type; ?>" id="<?php echo $id_type . "_2"; ?>" value="album" class="sel_album" onclick="bwg_change_type(event, this)" <?php if ($instance['type'] == "album") echo 'checked="checked"'; ?> /><label for="<?php echo $id_type . "_2"; ?>"><?php _e("Album", 'bwg_back'); ?></label>
112
  <input type="hidden" name="<?php echo $name_type; ?>" id="<?php echo $id_type; ?>" value="<?php echo $instance['type']; ?>" class="bwg_hidden" />
113
  </p>
114
  <p id="p_galleries" style="display:<?php echo ($instance['type'] == "gallery") ? "" : "none" ?>;">
115
  <select name="<?php echo $name_gallery_id; ?>" id="<?php echo $id_gallery_id; ?>" class="widefat">
116
+ <option value="0"><?php _e("Select Gallery", 'bwg_back'); ?></option>
117
  <?php
118
  foreach ($gallery_rows as $gallery_row) {
119
  ?>
125
  </p>
126
  <p id="p_albums" style="display:<?php echo ($instance['type'] == "album") ? "" : "none" ?>;">
127
  <select name="<?php echo $name_album_id; ?>" id="<?php echo $id_album_id; ?>" class="widefat">
128
+ <option value="0"><?php _e("Select Album", 'bwg_back'); ?></option>
129
  <?php
130
  foreach ($album_rows as $album_row) {
131
  ?>
136
  </select>
137
  </p>
138
  <p>
139
+ <input type="radio" name="<?php echo $name_show; ?>" id="<?php echo $id_show . "_1"; ?>" value="random" <?php if ($instance['show'] == "random") echo 'checked="checked"'; ?> onclick='jQuery(this).nextAll(".bwg_hidden").first().attr("value", "random");' /><label for="<?php echo $id_show . "_1"; ?>"><?php _e("Random", 'bwg_back'); ?></label>
140
+ <input type="radio" name="<?php echo $name_show; ?>" id="<?php echo $id_show . "_2"; ?>" value="first" <?php if ($instance['show'] == "first") echo 'checked="checked"'; ?> onclick='jQuery(this).nextAll(".bwg_hidden").first().attr("value", "first");' /><label for="<?php echo $id_show . "_2"; ?>"><?php _e("First", 'bwg_back'); ?></label>
141
+ <input type="radio" name="<?php echo $name_show; ?>" id="<?php echo $id_show . "_3"; ?>" value="last" <?php if ($instance['show'] == "last") echo 'checked="checked"'; ?> onclick='jQuery(this).nextAll(".bwg_hidden").first().attr("value", "last");' /><label for="<?php echo $id_show . "_3"; ?>"><?php _e("Last", 'bwg_back'); ?></label>
142
  <input type="hidden" name="<?php echo $name_show; ?>" id="<?php echo $id_show; ?>" value="<?php echo $instance['show']; ?>" class="bwg_hidden" />
143
  </p>
144
  <p>
145
+ <label for="<?php echo $id_count; ?>"><?php _e("Count:", 'bwg_back'); ?></label>
146
  <input class="widefat" style="width:25%;" id="<?php echo $id_count; ?>" name="<?php echo $name_count; ?>'" type="text" value="<?php echo $instance['count']; ?>"/>
147
  </p>
148
  <p>
149
+ <label for="<?php echo $id_width; ?>"><?php _e("Dimensions:", 'bwg_back'); ?></label>
150
  <input class="widefat" style="width:25%;" id="<?php echo $id_width; ?>" name="<?php echo $name_width; ?>'" type="text" value="<?php echo $instance['width']; ?>"/> x
151
  <input class="widefat" style="width:25%;" id="<?php echo $id_height; ?>" name="<?php echo $name_height; ?>'" type="text" value="<?php echo $instance['height']; ?>"/> px
152
  </p>
admin/views/BWGViewWidgetSlideshow.php CHANGED
@@ -98,12 +98,12 @@ class BWGViewWidgetSlideshow {
98
  $options_row = $this->model->get_options_row_data();
99
  ?>
100
  <p>
101
- <label for="<?php echo $id_title; ?>">Title:</label>
102
  <input class="widefat" id="<?php echo $id_title; ?>" name="<?php echo $name_title; ?>" type="text" value="<?php echo $instance['title']; ?>"/>
103
  </p>
104
  <p>
105
  <select name="<?php echo $name_gallery_id; ?>" id="<?php echo $id_gallery_id; ?>" class="widefat">
106
- <option value="0">Select Gallery</option>
107
  <?php
108
  foreach ($gallery_rows as $gallery_row) {
109
  ?>
@@ -114,16 +114,16 @@ class BWGViewWidgetSlideshow {
114
  </select>
115
  </p>
116
  <p>
117
- <label for="<?php echo $id_width; ?>">Dimensions:</label>
118
  <input class="widefat" style="width:25%;" id="<?php echo $id_width; ?>" name="<?php echo $name_width; ?>" type="text" value="<?php echo $instance['width']; ?>"/> x
119
  <input class="widefat" style="width:25%;" id="<?php echo $id_height; ?>" name="<?php echo $name_height; ?>" type="text" value="<?php echo $instance['height']; ?>"/> px
120
  </p>
121
- <p title="This option is disabled in free version." <?php echo ($options_row->slideshow_enable_filmstrip ? 'style="color: #7F7F7F;"' : 'style="display: none;"'); ?>>
122
- <label>Filmstrip height:</label>
123
  <input disabled="disabled" class="widefat" style="width: 25%; color: #7F7F7F;" type="text" value="40" /> px
124
  </p>
125
  <p>
126
- <label for="<?php echo $id_effect; ?>">Slideshow effect:</label>
127
  <select name="<?php echo $name_effect; ?>" id="<?php echo $id_effect; ?>" class="widefat">
128
  <?php
129
  foreach ($slideshow_effects as $key => $slideshow_effect) {
@@ -135,17 +135,17 @@ class BWGViewWidgetSlideshow {
135
  </select>
136
  </p>
137
  <p>
138
- <label for="<?php echo $id_interval; ?>">Time interval:</label>
139
  <input class="widefat" style="width:25%;" id="<?php echo $id_interval; ?>" name="<?php echo $name_interval; ?>" type="text" value="<?php echo $instance['interval']; ?>" /> sec.
140
  </p>
141
  <p>
142
- <label>Enable shuffle:</label>
143
- <input type="radio" name="<?php echo $name_shuffle; ?>" id="<?php echo $id_shuffle . "_1"; ?>" value="1" <?php if ($instance['shuffle']) echo 'checked="checked"'; ?> onclick='jQuery(this).nextAll(".bwg_hidden").first().attr("value", "1");' /><label for="<?php echo $id_shuffle . "_1"; ?>">Yes</label>
144
- <input type="radio" name="<?php echo $name_shuffle; ?>" id="<?php echo $id_shuffle . "_0"; ?>" value="0" <?php if (!$instance['shuffle']) echo 'checked="checked"'; ?> onclick='jQuery(this).nextAll(".bwg_hidden").first().attr("value", "0");' /><label for="<?php echo $id_shuffle . "_0"; ?>">No</label>
145
  <input type="hidden" name="<?php echo $name_shuffle; ?>" id="<?php echo $id_shuffle; ?>" value="<?php echo $instance['shuffle']; ?>" class="bwg_hidden" />
146
  </p>
147
  <p>
148
- <select name="<?php echo $name_theme_id; ?>" id="<?php echo $id_theme_id; ?>" class="widefat" <?php echo (get_option("wd_bwg_theme_version") ? 'title="This option is disabled in free version." disabled="disabled"' : ''); ?>>
149
  <?php
150
  foreach ($theme_rows as $theme_row) {
151
  ?>
98
  $options_row = $this->model->get_options_row_data();
99
  ?>
100
  <p>
101
+ <label for="<?php echo $id_title; ?>"><?php _e("Title:", 'bwg_back'); ?></label>
102
  <input class="widefat" id="<?php echo $id_title; ?>" name="<?php echo $name_title; ?>" type="text" value="<?php echo $instance['title']; ?>"/>
103
  </p>
104
  <p>
105
  <select name="<?php echo $name_gallery_id; ?>" id="<?php echo $id_gallery_id; ?>" class="widefat">
106
+ <option value="0"><?php _e("Select Gallery", 'bwg_back'); ?></option>
107
  <?php
108
  foreach ($gallery_rows as $gallery_row) {
109
  ?>
114
  </select>
115
  </p>
116
  <p>
117
+ <label for="<?php echo $id_width; ?>"><?php _e("Dimensions:", 'bwg_back'); ?></label>
118
  <input class="widefat" style="width:25%;" id="<?php echo $id_width; ?>" name="<?php echo $name_width; ?>" type="text" value="<?php echo $instance['width']; ?>"/> x
119
  <input class="widefat" style="width:25%;" id="<?php echo $id_height; ?>" name="<?php echo $name_height; ?>" type="text" value="<?php echo $instance['height']; ?>"/> px
120
  </p>
121
+ <p title="<?php _e("This option is disabled in free version.", 'bwg_back'); ?>" <?php echo ($options_row->slideshow_enable_filmstrip ? 'style="color: #7F7F7F;"' : 'style="display: none;"'); ?>>
122
+ <label><?php _e("Filmstrip height:", 'bwg_back'); ?></label>
123
  <input disabled="disabled" class="widefat" style="width: 25%; color: #7F7F7F;" type="text" value="40" /> px
124
  </p>
125
  <p>
126
+ <label for="<?php echo $id_effect; ?>"><?php _e("Slideshow effect:", 'bwg_back'); ?></label>
127
  <select name="<?php echo $name_effect; ?>" id="<?php echo $id_effect; ?>" class="widefat">
128
  <?php
129
  foreach ($slideshow_effects as $key => $slideshow_effect) {
135
  </select>
136
  </p>
137
  <p>
138
+ <label for="<?php echo $id_interval; ?>"><?php _e("Time interval:", 'bwg_back'); ?></label>
139
  <input class="widefat" style="width:25%;" id="<?php echo $id_interval; ?>" name="<?php echo $name_interval; ?>" type="text" value="<?php echo $instance['interval']; ?>" /> sec.
140
  </p>
141
  <p>
142
+ <label><?php _e("Enable shuffle:", 'bwg_back'); ?></label>
143
+ <input type="radio" name="<?php echo $name_shuffle; ?>" id="<?php echo $id_shuffle . "_1"; ?>" value="1" <?php if ($instance['shuffle']) echo 'checked="checked"'; ?> onclick='jQuery(this).nextAll(".bwg_hidden").first().attr("value", "1");' /><label for="<?php echo $id_shuffle . "_1"; ?>"><?php _e("Yes", 'bwg_back'); ?></label>
144
+ <input type="radio" name="<?php echo $name_shuffle; ?>" id="<?php echo $id_shuffle . "_0"; ?>" value="0" <?php if (!$instance['shuffle']) echo 'checked="checked"'; ?> onclick='jQuery(this).nextAll(".bwg_hidden").first().attr("value", "0");' /><label for="<?php echo $id_shuffle . "_0"; ?>"><?php _e("No", 'bwg_back'); ?></label>
145
  <input type="hidden" name="<?php echo $name_shuffle; ?>" id="<?php echo $id_shuffle; ?>" value="<?php echo $instance['shuffle']; ?>" class="bwg_hidden" />
146
  </p>
147
  <p>
148
+ <select name="<?php echo $name_theme_id; ?>" id="<?php echo $id_theme_id; ?>" class="widefat" <?php echo (get_option("wd_bwg_theme_version") ? 'title="'.__("This option is disabled in free version.", "bwg_back").'" disabled="disabled"' : ''); ?>>
149
  <?php
150
  foreach ($theme_rows as $theme_row) {
151
  ?>
admin/views/BWGViewWidgetTags.php CHANGED
@@ -111,47 +111,47 @@ class BWGViewWidgetTags {
111
  </script>
112
  <script src="<?php echo WD_BWG_URL . '/js/jscolor/jscolor.js?ver='.wd_bwg_version(); ?>" type="text/javascript" charset="utf-8"></script>
113
  <p>
114
- <label for="<?php echo $id_title; ?>">Title:</label>
115
  <input class="widefat" id="<?php echo $id_title; ?>" name="<?php echo $name_title; ?>'" type="text" value="<?php echo $instance['title']; ?>"/>
116
  </p>
117
  <p>
118
- <input type="radio" name="<?php echo $name_type; ?>" id="<?php echo $id_type . "_1"; ?>" value="text" class="sel_text" <?php if ($instance['type'] == "text") echo 'checked="checked"'; ?> onclick="bwg_change_type_tag(event, this)" /><label for="<?php echo $id_type . "_1"; ?>">Text</label>
119
- <input type="radio" name="<?php echo $name_type; ?>" id="<?php echo $id_type . "_2"; ?>" value="image" class="sel_image" <?php if ($instance['type'] == "image") echo 'checked="checked"'; ?> onclick="bwg_change_type_tag(event, this)" /><label for="<?php echo $id_type . "_2"; ?>">Image</label>
120
  <input type="hidden" name="<?php echo $name_type; ?>" id="<?php echo $id_type; ?>" value="<?php echo $instance['type']; ?>" class="bwg_hidden" />
121
  </p>
122
  <p id="p_show_name" style="display:<?php echo ($instance['type'] == 'image') ? "" : "none" ?>;">
123
- <label>Show Tag Names:</label>
124
- <input type="radio" name="<?php echo $name_show_name; ?>" id="<?php echo $id_show_name . "_1"; ?>" value="1" <?php if ($instance['show_name']) echo 'checked="checked"'; ?> onclick='jQuery(this).nextAll(".bwg_hidden").first().attr("value", "1");' /><label for="<?php echo $id_show_name . "_1"; ?>">Yes</label>
125
- <input type="radio" name="<?php echo $name_show_name; ?>" id="<?php echo $id_show_name . "_0"; ?>" value="0" <?php if (!$instance['show_name']) echo 'checked="checked"'; ?> onclick='jQuery(this).nextAll(".bwg_hidden").first().attr("value", "0");' /><label for="<?php echo $id_show_name . "_0"; ?>">No</label>
126
  <input type="hidden" name="<?php echo $name_show_name; ?>" id="<?php echo $id_show_name; ?>" value="<?php echo $instance['show_name']; ?>" class="bwg_hidden" />
127
  </p>
128
  <p>
129
- <label>Open in: </label>
130
- <input type="radio" name="<?php echo $name_open_option; ?>" id="<?php echo $id_open_option . "_1"; ?>" value="page" <?php if ($instance['open_option'] == 'page') echo 'checked="checked"'; ?> onclick='jQuery(this).nextAll(".bwg_hidden").first().attr("value", "page");' /><label for="<?php echo $id_open_option . "_1"; ?>"> page</label>
131
- <input type="radio" name="<?php echo $name_open_option; ?>" id="<?php echo $id_open_option . "_0"; ?>" value="lightbox" <?php if ($instance['open_option'] == 'lightbox') echo 'checked="checked"'; ?> onclick='jQuery(this).nextAll(".bwg_hidden").first().attr("value", "lightbox");' /><label for="<?php echo $id_open_option . "_0"; ?>"> lightbox</label>
132
  <input type="hidden" name="<?php echo $name_open_option; ?>" id="<?php echo $id_open_option; ?>" value="<?php echo $instance['open_option']; ?>" class="bwg_hidden" />
133
  </p>
134
  <p>
135
- <label for="<?php echo $id_count; ?>">Number (0 for all):</label>
136
  <input class="widefat" style="width:25%;" id="<?php echo $id_count; ?>" name="<?php echo $name_count; ?>'" type="text" value="<?php echo $instance['count']; ?>"/>
137
  </p>
138
  <p>
139
- <label for="<?php echo $id_width; ?>">Dimensions:</label>
140
  <input class="widefat" style="width:25%;" id="<?php echo $id_width; ?>" name="<?php echo $name_width; ?>'" type="text" value="<?php echo $instance['width']; ?>"/> x
141
  <input class="widefat" style="width:25%;" id="<?php echo $id_height; ?>" name="<?php echo $name_height; ?>'" type="text" value="<?php echo $instance['height']; ?>"/> px
142
  </p>
143
  <p>
144
- <label>Transparent Background:</label>
145
- <input type="radio" name="<?php echo $name_background_transparent; ?>" id="<?php echo $id_background_transparent . "_1"; ?>" value="1" <?php if ($instance['background_transparent']) echo 'checked="checked"'; ?> onclick="bwg_change_bg_transparency(event, this)" class="bg_transparent" /><label for="<?php echo $id_background_transparent . "_1"; ?>">Yes</label>
146
- <input type="radio" name="<?php echo $name_background_transparent; ?>" id="<?php echo $id_background_transparent . "_0"; ?>" value="0" <?php if (!$instance['background_transparent']) echo 'checked="checked"'; ?> onclick="bwg_change_bg_transparency(event, this)" /><label for="<?php echo $id_background_transparent . "_0"; ?>">No</label>
147
  <input type="hidden" name="<?php echo $name_background_transparent; ?>" id="<?php echo $id_background_transparent; ?>" value="<?php echo $instance['background_transparent']; ?>" class="bwg_hidden" />
148
  </p>
149
  <p id="p_bg_color" style="display:<?php echo (!$instance['background_transparent']) ? "" : "none" ?>;">
150
- <label for="<?php echo $id_background_color; ?>">Background Color:</label>
151
  <input class="color" style="width:25%;" id="<?php echo $id_background_color; ?>" name="<?php echo $name_background_color; ?>'" type="text" value="<?php echo $instance['background_color']; ?>"/>
152
  </p>
153
  <p>
154
- <label for="<?php echo $id_text_color; ?>">Text Color:</label>
155
  <input class="color" style="width:25%;" id="<?php echo $id_text_color; ?>" name="<?php echo $name_text_color; ?>'" type="text" value="<?php echo $instance['text_color']; ?>"/>
156
  </p>
157
  <p>
111
  </script>
112
  <script src="<?php echo WD_BWG_URL . '/js/jscolor/jscolor.js?ver='.wd_bwg_version(); ?>" type="text/javascript" charset="utf-8"></script>
113
  <p>
114
+ <label for="<?php echo $id_title; ?>"><?php _e("Title:", 'bwg_back'); ?></label>
115
  <input class="widefat" id="<?php echo $id_title; ?>" name="<?php echo $name_title; ?>'" type="text" value="<?php echo $instance['title']; ?>"/>
116
  </p>
117
  <p>
118
+ <input type="radio" name="<?php echo $name_type; ?>" id="<?php echo $id_type . "_1"; ?>" value="text" class="sel_text" <?php if ($instance['type'] == "text") echo 'checked="checked"'; ?> onclick="bwg_change_type_tag(event, this)" /><label for="<?php echo $id_type . "_1"; ?>"><?php _e("Text", 'bwg_back'); ?></label>
119
+ <input type="radio" name="<?php echo $name_type; ?>" id="<?php echo $id_type . "_2"; ?>" value="image" class="sel_image" <?php if ($instance['type'] == "image") echo 'checked="checked"'; ?> onclick="bwg_change_type_tag(event, this)" /><label for="<?php echo $id_type . "_2"; ?>"><?php _e("Image", 'bwg_back'); ?></label>
120
  <input type="hidden" name="<?php echo $name_type; ?>" id="<?php echo $id_type; ?>" value="<?php echo $instance['type']; ?>" class="bwg_hidden" />
121
  </p>
122
  <p id="p_show_name" style="display:<?php echo ($instance['type'] == 'image') ? "" : "none" ?>;">
123
+ <label><?php _e("Show Tag Names:", 'bwg_back'); ?></label>
124
+ <input type="radio" name="<?php echo $name_show_name; ?>" id="<?php echo $id_show_name . "_1"; ?>" value="1" <?php if ($instance['show_name']) echo 'checked="checked"'; ?> onclick='jQuery(this).nextAll(".bwg_hidden").first().attr("value", "1");' /><label for="<?php echo $id_show_name . "_1"; ?>"><?php _e("Yes", 'bwg_back'); ?></label>
125
+ <input type="radio" name="<?php echo $name_show_name; ?>" id="<?php echo $id_show_name . "_0"; ?>" value="0" <?php if (!$instance['show_name']) echo 'checked="checked"'; ?> onclick='jQuery(this).nextAll(".bwg_hidden").first().attr("value", "0");' /><label for="<?php echo $id_show_name . "_0"; ?>"><?php _e("No", 'bwg_back'); ?></label>
126
  <input type="hidden" name="<?php echo $name_show_name; ?>" id="<?php echo $id_show_name; ?>" value="<?php echo $instance['show_name']; ?>" class="bwg_hidden" />
127
  </p>
128
  <p>
129
+ <label><?php _e("Open in:", 'bwg_back'); ?> </label>
130
+ <input type="radio" name="<?php echo $name_open_option; ?>" id="<?php echo $id_open_option . "_1"; ?>" value="page" <?php if ($instance['open_option'] == 'page') echo 'checked="checked"'; ?> onclick='jQuery(this).nextAll(".bwg_hidden").first().attr("value", "page");' /><label for="<?php echo $id_open_option . "_1"; ?>"> <?php _e("page", 'bwg_back'); ?></label>
131
+ <input type="radio" name="<?php echo $name_open_option; ?>" id="<?php echo $id_open_option . "_0"; ?>" value="lightbox" <?php if ($instance['open_option'] == 'lightbox') echo 'checked="checked"'; ?> onclick='jQuery(this).nextAll(".bwg_hidden").first().attr("value", "lightbox");' /><label for="<?php echo $id_open_option . "_0"; ?>"> <?php _e("lightbox", 'bwg_back'); ?></label>
132
  <input type="hidden" name="<?php echo $name_open_option; ?>" id="<?php echo $id_open_option; ?>" value="<?php echo $instance['open_option']; ?>" class="bwg_hidden" />
133
  </p>
134
  <p>
135
+ <label for="<?php echo $id_count; ?>"><?php _e("Number (0 for all):", 'bwg_back'); ?></label>
136
  <input class="widefat" style="width:25%;" id="<?php echo $id_count; ?>" name="<?php echo $name_count; ?>'" type="text" value="<?php echo $instance['count']; ?>"/>
137
  </p>
138
  <p>
139
+ <label for="<?php echo $id_width; ?>"><?php _e("Dimensions:", 'bwg_back'); ?></label>
140
  <input class="widefat" style="width:25%;" id="<?php echo $id_width; ?>" name="<?php echo $name_width; ?>'" type="text" value="<?php echo $instance['width']; ?>"/> x
141
  <input class="widefat" style="width:25%;" id="<?php echo $id_height; ?>" name="<?php echo $name_height; ?>'" type="text" value="<?php echo $instance['height']; ?>"/> px
142
  </p>
143
  <p>
144
+ <label><?php _e("Transparent Background:", 'bwg_back'); ?></label>
145
+ <input type="radio" name="<?php echo $name_background_transparent; ?>" id="<?php echo $id_background_transparent . "_1"; ?>" value="1" <?php if ($instance['background_transparent']) echo 'checked="checked"'; ?> onclick="bwg_change_bg_transparency(event, this)" class="bg_transparent" /><label for="<?php echo $id_background_transparent . "_1"; ?>"><?php _e("Yes", 'bwg_back'); ?></label>
146
+ <input type="radio" name="<?php echo $name_background_transparent; ?>" id="<?php echo $id_background_transparent . "_0"; ?>" value="0" <?php if (!$instance['background_transparent']) echo 'checked="checked"'; ?> onclick="bwg_change_bg_transparency(event, this)" /><label for="<?php echo $id_background_transparent . "_0"; ?>"><?php _e("No", 'bwg_back'); ?></label>
147
  <input type="hidden" name="<?php echo $name_background_transparent; ?>" id="<?php echo $id_background_transparent; ?>" value="<?php echo $instance['background_transparent']; ?>" class="bwg_hidden" />
148
  </p>
149
  <p id="p_bg_color" style="display:<?php echo (!$instance['background_transparent']) ? "" : "none" ?>;">
150
+ <label for="<?php echo $id_background_color; ?>"><?php _e("Background Color:", 'bwg_back'); ?></label>
151
  <input class="color" style="width:25%;" id="<?php echo $id_background_color; ?>" name="<?php echo $name_background_color; ?>'" type="text" value="<?php echo $instance['background_color']; ?>"/>
152
  </p>
153
  <p>
154
+ <label for="<?php echo $id_text_color; ?>"><?php _e("Text Color:", 'bwg_back'); ?></label>
155
  <input class="color" style="width:25%;" id="<?php echo $id_text_color; ?>" name="<?php echo $name_text_color; ?>'" type="text" value="<?php echo $instance['text_color']; ?>"/>
156
  </p>
157
  <p>
filemanager/view.php CHANGED
@@ -60,14 +60,14 @@ class FilemanagerView {
60
  <script>
61
  var DS = "<?php echo addslashes('/'); ?>";
62
 
63
- var errorLoadingFile = "<?php echo 'File loading failed'; ?>";
64
 
65
- var warningRemoveItems = "<?php echo 'Are you sure you want to permanently remove selected items?'; ?>";
66
- var warningCancelUploads = "<?php echo 'This will cancel uploads. Continue?'; ?>";
67
 
68
- var messageEnterDirName = "<?php echo 'Enter directory name'; ?>";
69
- var messageEnterNewName = "<?php echo 'Enter new name'; ?>";
70
- var messageFilesUploadComplete = "<?php echo 'Processing uploaded files...'; ?>";
71
 
72
  var root = "<?php echo addslashes($this->controller->get_uploads_dir()); ?>";
73
  var dir = "<?php echo (isset($_REQUEST['dir']) ? addslashes(esc_html($_REQUEST['dir'])) : ''); ?>";
@@ -115,22 +115,22 @@ class FilemanagerView {
115
  <div id="file_manager">
116
  <div class="ctrls_bar ctrls_bar_header">
117
  <div class="ctrls_left">
118
- <a class="ctrl_bar_btn btn_up" onclick="onBtnUpClick(event, this);" title="<?php echo 'Up'; ?>"></a>
119
- <a class="ctrl_bar_btn btn_make_dir" onclick="onBtnMakeDirClick(event, this);" title="<?php echo 'Make a directory'; ?>"></a>
120
- <a class="ctrl_bar_btn btn_rename_item" onclick="onBtnRenameItemClick(event, this);" title="<?php echo 'Rename item'; ?>"></a>
121
  <span class="ctrl_bar_divider"></span>
122
- <a class="ctrl_bar_btn btn_copy" onclick="onBtnCopyClick(event, this);" title="<?php echo 'Copy'; ?>"></a>
123
- <a class="ctrl_bar_btn btn_cut" onclick="onBtnCutClick(event, this);" title="<?php echo 'Cut'; ?>"></a>
124
- <a class="ctrl_bar_btn btn_paste" onclick="onBtnPasteClick(event, this);" title="<?php echo 'Paste'; ?>"> </a>
125
- <a class="ctrl_bar_btn btn_remove_items" onclick="onBtnRemoveItemsClick(event, this);" title="<?php echo 'Remove items'; ?>"></a>
126
  <span class="ctrl_bar_divider"></span>
127
  <span class="ctrl_bar_btn btn_primary">
128
- <a class="ctrl_bar_btn btn_upload_files" onclick="onBtnShowUploaderClick(event, this);"><?php echo 'Upload files'; ?></a>
129
  </span>
130
  <?php if ($bwg_options->enable_ML_import) { ?>
131
  <span class="ctrl_bar_divider"></span>
132
  <span class="ctrl_bar_btn btn_primary">
133
- <a class="ctrl_bar_btn btn_import_files" onclick="onBtnShowImportClick(event, this);"><?php echo 'Media library'; ?></a>
134
  </span>
135
  <?php } ?>
136
  <span class="ctrl_bar_divider"></span>
@@ -139,15 +139,15 @@ class FilemanagerView {
139
  </span>
140
  </div>
141
  <div class="ctrls_right">
142
- <a class="ctrl_bar_btn btn_view_thumbs" onclick="onBtnViewThumbsClick(event, this);" title="<?php echo 'View thumbs'; ?>"></a>
143
- <a class="ctrl_bar_btn btn_view_list" onclick="onBtnViewListClick(event, this);" title="<?php echo 'View list'; ?>"></a>
144
  </div>
145
  </div>
146
  <div id="path">
147
  <?php
148
  foreach ($file_manager_data['path_components'] as $key => $path_component) {
149
  ?>
150
- <a <?php echo ($key == 0) ? 'title="To change upload directory go to Options page."' : ''; ?> class="path_component path_dir"
151
  onclick="onPathComponentClick(event, this, '<?php echo addslashes($path_component['path']); ?>');">
152
  <?php echo $path_component['name']; ?></a>
153
  <a class="path_component path_separator"><?php echo '/'; ?></a>
@@ -265,14 +265,14 @@ class FilemanagerView {
265
  </div>
266
  <div class="ctrls_bar ctrls_bar_footer">
267
  <div class="ctrls_left">
268
- <a class="ctrl_bar_btn btn_open btn_primary none_select" onclick="onBtnSelectAllClick();"><?php echo 'Select All'; ?></a>
269
  </div>
270
  <div class="ctrls_right">
271
  <span id="file_names_span">
272
  <span>
273
  </span>
274
  </span>
275
- <a class="ctrl_bar_btn btn_open btn_primary none_select" onclick="onBtnOpenClick(event, this);"><?php echo ((isset($_REQUEST['callback']) && esc_html($_REQUEST['callback']) == 'bwg_add_image') ? 'Add selected images to gallery' : 'Add'); ?></a>
276
  <span class="ctrl_bar_empty_devider"></span>
277
  <a class="ctrl_bar_btn btn_cancel btn_secondary none_select" onclick="onBtnCancelClick(event, this);"><?php echo 'Cancel'; ?></a>
278
  </div>
@@ -282,15 +282,15 @@ class FilemanagerView {
282
  <div id="importer_bg"></div>
283
  <div class="ctrls_bar ctrls_bar_header">
284
  <div class="ctrls_left upload_thumb">
285
- Thumbnail Maximum Dimensions:
286
  <input type="text" class="upload_thumb_dim" name="importer_thumb_width" id="importer_thumb_width" value="<?php echo $bwg_options->upload_thumb_width; ?>" /> x
287
  <input type="text" class="upload_thumb_dim" name="importer_thumb_height" id="importer_thumb_height" value="<?php echo $bwg_options->upload_thumb_height; ?>" /> px
288
  </div>
289
  <div class="ctrls_right">
290
- <a class="ctrl_bar_btn btn_back" onclick="onBtnBackClick(event, this);" title="<?php echo 'Back'; ?>"></a>
291
  </div>
292
  <div class="ctrls_right_img upload_thumb">
293
- Image Maximum Dimensions:
294
  <input type="text" class="upload_thumb_dim" name="importer_img_width" id="importer_img_width" value="<?php echo $bwg_options->upload_img_width; ?>" /> x
295
  <input type="text" class="upload_thumb_dim" name="importer_img_height" id="importer_img_height" value="<?php echo $bwg_options->upload_img_height; ?>" /> px
296
  </div>
@@ -350,14 +350,14 @@ class FilemanagerView {
350
  </div>
351
  <div class="ctrls_bar ctrls_bar_footer">
352
  <div class="ctrls_left">
353
- <a class="ctrl_bar_btn btn_open btn_primary none_select" onclick="onBtnSelectAllMediLibraryClick();"><?php echo 'Select All'; ?></a>
354
  </div>
355
  <div class="ctrls_right">
356
  <span id="file_names_span">
357
  <span>
358
  </span>
359
  </span>
360
- <a class="ctrl_bar_btn btn_open btn_primary none_select" onclick="onBtnImportClick(event, this);">Import selected images</a>
361
  </div>
362
  </div>
363
  </div>
@@ -365,15 +365,15 @@ class FilemanagerView {
365
  <div id="uploader_bg"></div>
366
  <div class="ctrls_bar ctrls_bar_header">
367
  <div class="ctrls_left upload_thumb">
368
- Thumbnail Maximum Dimensions:
369
  <input type="text" class="upload_thumb_dim" name="upload_thumb_width" id="upload_thumb_width" value="<?php echo $bwg_options->upload_thumb_width; ?>" /> x
370
  <input type="text" class="upload_thumb_dim" name="upload_thumb_height" id="upload_thumb_height" value="<?php echo $bwg_options->upload_thumb_height; ?>" /> px
371
  </div>
372
  <div class="ctrls_right">
373
- <a class="ctrl_bar_btn btn_back" onclick="onBtnBackClick(event, this);" title="<?php echo 'Back'; ?>"></a>
374
  </div>
375
  <div class="ctrls_right_img upload_thumb">
376
- Image Maximum Dimensions:
377
  <input type="text" class="upload_thumb_dim" name="upload_img_width" id="upload_img_width" value="<?php echo $bwg_options->upload_img_width; ?>" /> x
378
  <input type="text" class="upload_thumb_dim" name="upload_img_height" id="upload_img_height" value="<?php echo $bwg_options->upload_img_height; ?>" /> px
379
  </div>
@@ -381,7 +381,7 @@ class FilemanagerView {
381
  <label for="jQueryUploader">
382
  <div id="uploader_hitter">
383
  <div id="drag_message">
384
- <span><?php echo 'Drag files here or click the button below' . '<br />' . 'to upload files' ?></span>
385
  </div>
386
  <div id="btnBrowseContainer">
387
  <?php
@@ -453,7 +453,7 @@ class FilemanagerView {
453
  <div></div>
454
  </div>
455
  <span id="uploader_progress_text" class="uploader_text">
456
- <?php echo 'No files to upload'; ?>
457
  </span>
458
  </div>
459
  </div>
60
  <script>
61
  var DS = "<?php echo addslashes('/'); ?>";
62
 
63
+ var errorLoadingFile = "<?php echo __('File loading failed', 'bwg_back'); ?>";
64
 
65
+ var warningRemoveItems = "<?php echo __('Are you sure you want to permanently remove selected items?', 'bwg_back'); ?>";
66
+ var warningCancelUploads = "<?php echo __('This will cancel uploads. Continue?', 'bwg_back'); ?>";
67
 
68
+ var messageEnterDirName = "<?php echo __('Enter directory name', 'bwg_back'); ?>";
69
+ var messageEnterNewName = "<?php echo __('Enter new name', 'bwg_back'); ?>";
70
+ var messageFilesUploadComplete = "<?php echo __('Processing uploaded files...', 'bwg_back'); ?>";
71
 
72
  var root = "<?php echo addslashes($this->controller->get_uploads_dir()); ?>";
73
  var dir = "<?php echo (isset($_REQUEST['dir']) ? addslashes(esc_html($_REQUEST['dir'])) : ''); ?>";
115
  <div id="file_manager">
116
  <div class="ctrls_bar ctrls_bar_header">
117
  <div class="ctrls_left">
118
+ <a class="ctrl_bar_btn btn_up" onclick="onBtnUpClick(event, this);" title="<?php echo __('Up', 'bwg_back'); ?>"></a>
119
+ <a class="ctrl_bar_btn btn_make_dir" onclick="onBtnMakeDirClick(event, this);" title="<?php echo __('Make a directory', 'bwg_back'); ?>"></a>
120
+ <a class="ctrl_bar_btn btn_rename_item" onclick="onBtnRenameItemClick(event, this);" title="<?php echo __('Rename item', 'bwg_back'); ?>"></a>
121
  <span class="ctrl_bar_divider"></span>
122
+ <a class="ctrl_bar_btn btn_copy" onclick="onBtnCopyClick(event, this);" title="<?php echo __('Copy', 'bwg_back'); ?>"></a>
123
+ <a class="ctrl_bar_btn btn_cut" onclick="onBtnCutClick(event, this);" title="<?php echo __('Cut', 'bwg_back'); ?>"></a>
124
+ <a class="ctrl_bar_btn btn_paste" onclick="onBtnPasteClick(event, this);" title="<?php echo __('Paste', 'bwg_back'); ?>"> </a>
125
+ <a class="ctrl_bar_btn btn_remove_items" onclick="onBtnRemoveItemsClick(event, this);" title="<?php echo __('Remove items', 'bwg_back'); ?>"></a>
126
  <span class="ctrl_bar_divider"></span>
127
  <span class="ctrl_bar_btn btn_primary">
128
+ <a class="ctrl_bar_btn btn_upload_files" onclick="onBtnShowUploaderClick(event, this);"><?php echo __('Upload files', 'bwg_back'); ?></a>
129
  </span>
130
  <?php if ($bwg_options->enable_ML_import) { ?>
131
  <span class="ctrl_bar_divider"></span>
132
  <span class="ctrl_bar_btn btn_primary">
133
+ <a class="ctrl_bar_btn btn_import_files" onclick="onBtnShowImportClick(event, this);"><?php echo __('Media library', 'bwg_back'); ?></a>
134
  </span>
135
  <?php } ?>
136
  <span class="ctrl_bar_divider"></span>
139
  </span>
140
  </div>
141
  <div class="ctrls_right">
142
+ <a class="ctrl_bar_btn btn_view_thumbs" onclick="onBtnViewThumbsClick(event, this);" title="<?php echo __('View thumbs', 'bwg_back'); ?>"></a>
143
+ <a class="ctrl_bar_btn btn_view_list" onclick="onBtnViewListClick(event, this);" title="<?php echo __('View list', 'bwg_back'); ?>"></a>
144
  </div>
145
  </div>
146
  <div id="path">
147
  <?php
148
  foreach ($file_manager_data['path_components'] as $key => $path_component) {
149
  ?>
150
+ <a <?php echo ($key == 0) ? 'title="'. __("To change upload directory go to Options page.", 'bwg_back').'"' : ''; ?> class="path_component path_dir"
151
  onclick="onPathComponentClick(event, this, '<?php echo addslashes($path_component['path']); ?>');">
152
  <?php echo $path_component['name']; ?></a>
153
  <a class="path_component path_separator"><?php echo '/'; ?></a>
265
  </div>
266
  <div class="ctrls_bar ctrls_bar_footer">
267
  <div class="ctrls_left">
268
+ <a class="ctrl_bar_btn btn_open btn_primary none_select" onclick="onBtnSelectAllClick();"><?php echo __('Select All', 'bwg_back'); ?></a>
269
  </div>
270
  <div class="ctrls_right">
271
  <span id="file_names_span">
272
  <span>
273
  </span>
274
  </span>
275
+ <a class="ctrl_bar_btn btn_open btn_primary none_select" onclick="onBtnOpenClick(event, this);"><?php echo ((isset($_REQUEST['callback']) && esc_html($_REQUEST['callback']) == 'bwg_add_image') ? __('Add selected images to gallery', 'bwg_back') : __('Add', 'bwg_back')); ?></a>
276
  <span class="ctrl_bar_empty_devider"></span>
277
  <a class="ctrl_bar_btn btn_cancel btn_secondary none_select" onclick="onBtnCancelClick(event, this);"><?php echo 'Cancel'; ?></a>
278
  </div>
282
  <div id="importer_bg"></div>
283
  <div class="ctrls_bar ctrls_bar_header">
284
  <div class="ctrls_left upload_thumb">
285
+ <?php echo __("Thumbnail Maximum Dimensions:", 'bwg_back'); ?>
286
  <input type="text" class="upload_thumb_dim" name="importer_thumb_width" id="importer_thumb_width" value="<?php echo $bwg_options->upload_thumb_width; ?>" /> x
287
  <input type="text" class="upload_thumb_dim" name="importer_thumb_height" id="importer_thumb_height" value="<?php echo $bwg_options->upload_thumb_height; ?>" /> px
288
  </div>
289
  <div class="ctrls_right">
290
+ <a class="ctrl_bar_btn btn_back" onclick="onBtnBackClick(event, this);" title="<?php echo __('Back', 'bwg_back'); ?>"></a>
291
  </div>
292
  <div class="ctrls_right_img upload_thumb">
293
+ <?php echo __("Image Maximum Dimensions:", 'bwg_back'); ?>
294
  <input type="text" class="upload_thumb_dim" name="importer_img_width" id="importer_img_width" value="<?php echo $bwg_options->upload_img_width; ?>" /> x
295
  <input type="text" class="upload_thumb_dim" name="importer_img_height" id="importer_img_height" value="<?php echo $bwg_options->upload_img_height; ?>" /> px
296
  </div>
350
  </div>
351
  <div class="ctrls_bar ctrls_bar_footer">
352
  <div class="ctrls_left">
353
+ <a class="ctrl_bar_btn btn_open btn_primary none_select" onclick="onBtnSelectAllMediLibraryClick();"><?php echo __('Select All','bwg_back'); ?></a>
354
  </div>
355
  <div class="ctrls_right">
356
  <span id="file_names_span">
357
  <span>
358
  </span>
359
  </span>
360
+ <a class="ctrl_bar_btn btn_open btn_primary none_select" onclick="onBtnImportClick(event, this);"><?php echo __("Import selected images", 'bwg_back'); ?></a>
361
  </div>
362
  </div>
363
  </div>
365
  <div id="uploader_bg"></div>
366
  <div class="ctrls_bar ctrls_bar_header">
367
  <div class="ctrls_left upload_thumb">
368
+ <?php echo __("Thumbnail Maximum Dimensions:", 'bwg_back'); ?>
369
  <input type="text" class="upload_thumb_dim" name="upload_thumb_width" id="upload_thumb_width" value="<?php echo $bwg_options->upload_thumb_width; ?>" /> x
370
  <input type="text" class="upload_thumb_dim" name="upload_thumb_height" id="upload_thumb_height" value="<?php echo $bwg_options->upload_thumb_height; ?>" /> px
371
  </div>
372
  <div class="ctrls_right">
373
+ <a class="ctrl_bar_btn btn_back" onclick="onBtnBackClick(event, this);" title="<?php echo __('Back', 'bwg_back'); ?>"></a>
374
  </div>
375
  <div class="ctrls_right_img upload_thumb">
376
+ <?php echo __("Image Maximum Dimensions:", 'bwg_back'); ?>
377
  <input type="text" class="upload_thumb_dim" name="upload_img_width" id="upload_img_width" value="<?php echo $bwg_options->upload_img_width; ?>" /> x
378
  <input type="text" class="upload_thumb_dim" name="upload_img_height" id="upload_img_height" value="<?php echo $bwg_options->upload_img_height; ?>" /> px
379
  </div>
381
  <label for="jQueryUploader">
382
  <div id="uploader_hitter">
383
  <div id="drag_message">
384
+ <span><?php echo __('Drag files here or click the button below','bwg_back') . '<br />' . __('to upload files','bwg_back')?></span>
385
  </div>
386
  <div id="btnBrowseContainer">
387
  <?php
453
  <div></div>
454
  </div>
455
  <span id="uploader_progress_text" class="uploader_text">
456
+ <?php echo __('No files to upload', 'bwg_back'); ?>
457
  </span>
458
  </div>
459
  </div>
framework/WDWLibrary.php CHANGED
@@ -43,103 +43,103 @@ class WDWLibrary {
43
  if ($message_id) {
44
  switch($message_id) {
45
  case 1: {
46
- $message = 'Item Succesfully Saved.';
47
  $type = 'updated';
48
  break;
49
 
50
  }
51
  case 2: {
52
- $message = 'Error. Please install plugin again.';
53
  $type = 'error';
54
  break;
55
 
56
  }
57
  case 3: {
58
- $message = 'Item Succesfully Deleted.';
59
  $type = 'updated';
60
  break;
61
 
62
  }
63
  case 4: {
64
- $message = "You can't delete default theme";
65
  $type = 'error';
66
  break;
67
 
68
  }
69
  case 5: {
70
- $message = 'Items Succesfully Deleted.';
71
  $type = 'updated';
72
  break;
73
 
74
  }
75
  case 6: {
76
- $message = 'You must select at least one item.';
77
  $type = 'error';
78
  break;
79
 
80
  }
81
  case 7: {
82
- $message = 'The item is successfully set as default.';
83
  $type = 'updated';
84
  break;
85
 
86
  }
87
  case 8: {
88
- $message = 'Options Succesfully Saved.';
89
  $type = 'updated';
90
  break;
91
 
92
  }
93
  case 9: {
94
- $message = 'Item Succesfully Published.';
95
  $type = 'updated';
96
  break;
97
 
98
  }
99
  case 10: {
100
- $message = 'Items Succesfully Published.';
101
  $type = 'updated';
102
  break;
103
 
104
  }
105
  case 11: {
106
- $message = 'Item Succesfully Unpublished.';
107
  $type = 'updated';
108
  break;
109
 
110
  }
111
  case 12: {
112
- $message = 'Items Succesfully Unpublished.';
113
  $type = 'updated';
114
  break;
115
 
116
  }
117
  case 13: {
118
- $message = 'Ordering Succesfully Saved.';
119
  $type = 'updated';
120
  break;
121
 
122
  }
123
  case 14: {
124
- $message = 'A term with the name provided already exists.';
125
  $type = 'error';
126
  break;
127
 
128
  }
129
  case 15: {
130
- $message = 'Name field is required.';
131
  $type = 'error';
132
  break;
133
 
134
  }
135
  case 16: {
136
- $message = 'The slug must be unique.';
137
  $type = 'error';
138
  break;
139
 
140
  }
141
  case 17: {
142
- $message = 'Changes must be saved.';
143
  $type = 'error';
144
  break;
145
 
@@ -185,8 +185,8 @@ class WDWLibrary {
185
  <input type="text" id="search_value" name="search_value" class="spider_search_value" onkeypress="return check_search_key(event, this);" value="<?php echo esc_html($search_value); ?>" style="width: 150px;<?php echo (get_bloginfo('version') > '3.7') ? ' height: 28px;' : ''; ?>" />
186
  </div>
187
  <div class="alignleft actions">
188
- <input type="button" value="Search" onclick="spider_search()" class="button-secondary action">
189
- <input type="button" value="Reset" onclick="spider_reset()" class="button-secondary action">
190
  </div>
191
  </div>
192
  <?php
@@ -312,7 +312,7 @@ class WDWLibrary {
312
  <span class="paging-input">
313
  <span class="total-pages">
314
  <input class="current_page" id="current_page" name="current_page" value="<?php echo $page_number; ?>" onkeypress="return check_enter_key(event, this)" title="Go to the page" type="text" size="1" />
315
- </span> of
316
  <span class="total-pages">
317
  <?php echo $items_county; ?>
318
  </span>
@@ -359,8 +359,8 @@ class WDWLibrary {
359
  <input type="text" id="search_value" name="search_value" class="spider_search_value" onkeypress="return check_search_key(event, this);" value="<?php echo esc_html($search_value); ?>" style="width: 150px;<?php echo (get_bloginfo('version') > '3.7') ? ' height: 28px;' : ''; ?>" />
360
  </div>
361
  <div class="alignleft actions">
362
- <input type="button" value="Search" onclick="spider_search()" class="button-secondary action">
363
- <input type="button" value="Reset" onclick="spider_reset()" class="button-secondary action">
364
  </div>
365
  </div>
366
  <?php
@@ -433,7 +433,7 @@ class WDWLibrary {
433
  <span class="displaying-num">
434
  <?php
435
  if ($count_items != 0) {
436
- echo $count_items; ?> item<?php echo (($count_items == 1) ? '' : 's');
437
  }
438
  ?>
439
  </span>
@@ -462,7 +462,7 @@ class WDWLibrary {
462
  <span class="paging-input">
463
  <span class="total-pages">
464
  <input class="current_page" id="current_page" name="current_page" value="<?php echo $page_number; ?>" onkeypress="return check_enter_key(event, this)" title="Go to the page" type="text" size="1" />
465
- </span> of
466
  <span class="total-pages">
467
  <?php echo $items_county; ?>
468
  </span>
43
  if ($message_id) {
44
  switch($message_id) {
45
  case 1: {
46
+ $message = __('Item Succesfully Saved.', 'bwg_back');
47
  $type = 'updated';
48
  break;
49
 
50
  }
51
  case 2: {
52
+ $message = __('Error. Please install plugin again.', 'bwg_back');
53
  $type = 'error';
54
  break;
55
 
56
  }
57
  case 3: {
58
+ $message = __('Item Succesfully Deleted.', 'bwg_back');
59
  $type = 'updated';
60
  break;
61
 
62
  }
63
  case 4: {
64
+ $message = __("You can't delete default theme", 'bwg_back');
65
  $type = 'error';
66
  break;
67
 
68
  }
69
  case 5: {
70
+ $message = __('Items Succesfully Deleted.', 'bwg_back');
71
  $type = 'updated';
72
  break;
73
 
74
  }
75
  case 6: {
76
+ $message = __('You must select at least one item.', 'bwg_back');
77
  $type = 'error';
78
  break;
79
 
80
  }
81
  case 7: {
82
+ $message = __('The item is successfully set as default.', 'bwg_back');
83
  $type = 'updated';
84
  break;
85
 
86
  }
87
  case 8: {
88
+ $message = __('Options Succesfully Saved.', 'bwg_back');
89
  $type = 'updated';
90
  break;
91
 
92
  }
93
  case 9: {
94
+ $message = __('Item Succesfully Published.', 'bwg_back');
95
  $type = 'updated';
96
  break;
97
 
98
  }
99
  case 10: {
100
+ $message = __('Items Succesfully Published.', 'bwg_back');
101
  $type = 'updated';
102
  break;
103
 
104
  }
105
  case 11: {
106
+ $message = __('Item Succesfully Unpublished.', 'bwg_back');
107
  $type = 'updated';
108
  break;
109
 
110
  }
111
  case 12: {
112
+ $message = __('Items Succesfully Unpublished.', 'bwg_back');
113
  $type = 'updated';
114
  break;
115
 
116
  }
117
  case 13: {
118
+ $message = __('Ordering Succesfully Saved.', 'bwg_back');
119
  $type = 'updated';
120
  break;
121
 
122
  }
123
  case 14: {
124
+ $message = __('A term with the name provided already exists.', 'bwg_back');
125
  $type = 'error';
126
  break;
127
 
128
  }
129
  case 15: {
130
+ $message = __('Name field is required.', 'bwg_back');
131
  $type = 'error';
132
  break;
133
 
134
  }
135
  case 16: {
136
+ $message = __('The slug must be unique.', 'bwg_back');
137
  $type = 'error';
138
  break;
139
 
140
  }
141
  case 17: {
142
+ $message = __('Changes must be saved.', 'bwg_back');
143
  $type = 'error';
144
  break;
145
 
185
  <input type="text" id="search_value" name="search_value" class="spider_search_value" onkeypress="return check_search_key(event, this);" value="<?php echo esc_html($search_value); ?>" style="width: 150px;<?php echo (get_bloginfo('version') > '3.7') ? ' height: 28px;' : ''; ?>" />
186
  </div>
187
  <div class="alignleft actions">
188
+ <input type="button" value="<?php echo __('Search', 'bwg_back'); ?>" onclick="spider_search()" class="button-secondary action">
189
+ <input type="button" value="<?php echo __('Reset', 'bwg_back'); ?>" onclick="spider_reset()" class="button-secondary action">
190
  </div>
191
  </div>
192
  <?php
312
  <span class="paging-input">
313
  <span class="total-pages">
314
  <input class="current_page" id="current_page" name="current_page" value="<?php echo $page_number; ?>" onkeypress="return check_enter_key(event, this)" title="Go to the page" type="text" size="1" />
315
+ </span> <?php echo __('of', 'bwg_back'); ?>
316
  <span class="total-pages">
317
  <?php echo $items_county; ?>
318
  </span>
359
  <input type="text" id="search_value" name="search_value" class="spider_search_value" onkeypress="return check_search_key(event, this);" value="<?php echo esc_html($search_value); ?>" style="width: 150px;<?php echo (get_bloginfo('version') > '3.7') ? ' height: 28px;' : ''; ?>" />
360
  </div>
361
  <div class="alignleft actions">
362
+ <input type="button" value="<?php echo __('Search', 'bwg_back'); ?>" onclick="spider_search()" class="button-secondary action">
363
+ <input type="button" value="<?php echo __('Reset', 'bwg_back'); ?>" onclick="spider_reset()" class="button-secondary action">
364
  </div>
365
  </div>
366
  <?php
433
  <span class="displaying-num">
434
  <?php
435
  if ($count_items != 0) {
436
+ echo $count_items; ?> <?php echo __('item', 'bwg_back'); ?><?php echo (($count_items == 1) ? '' : 's');
437
  }
438
  ?>
439
  </span>
462
  <span class="paging-input">
463
  <span class="total-pages">
464
  <input class="current_page" id="current_page" name="current_page" value="<?php echo $page_number; ?>" onkeypress="return check_enter_key(event, this)" title="Go to the page" type="text" size="1" />
465
+ </span> <?php echo __('of', 'bwg_back'); ?>
466
  <span class="total-pages">
467
  <?php echo $items_county; ?>
468
  </span>
frontend/models/BWGModelAlbum_compact_preview.php CHANGED
@@ -106,7 +106,7 @@ class BWGModelAlbum_compact_preview {
106
  $where = '';
107
  }
108
  if (isset($_REQUEST['bwg_tag_id_bwg_album_compact_' . $bwg]) && $_REQUEST['bwg_tag_id_bwg_album_compact_' . $bwg]) {
109
- $total = $wpdb->get_var('SELECT COUNT(*) FROM ' . $wpdb->prefix . 'bwg_image as image INNER JOIN (SELECT GROUP_CONCAT( tag_id SEPARATOR ",") AS tags, image_id FROM ' . $wpdb->prefix . 'bwg_image_tag GROUP BY image_id) AS tag ON image.id=tag.image_id WHERE image.published=1 ' . $where . ' AND CONCAT(",", tag.tags, ",") REGEXP ",('.implode("|",$_REQUEST['bwg_tag_id_bwg_album_compact_' . $bwg]).')," ');
110
  }
111
  else {
112
  $total = $wpdb->get_var($wpdb->prepare('SELECT COUNT(*) FROM ' . $wpdb->prefix . 'bwg_image WHERE published=1 ' . $where . ' AND gallery_id="%d"', $id));
106
  $where = '';
107
  }
108
  if (isset($_REQUEST['bwg_tag_id_bwg_album_compact_' . $bwg]) && $_REQUEST['bwg_tag_id_bwg_album_compact_' . $bwg]) {
109
+ $total = $wpdb->get_var('SELECT COUNT(*) FROM ' . $wpdb->prefix . 'bwg_image as image INNER JOIN (SELECT GROUP_CONCAT( tag_id SEPARATOR ",") AS tags, image_id FROM ' . $wpdb->prefix . 'bwg_image_tag WHERE gallery_id="' . $id . '" GROUP BY image_id) AS tag ON image.id=tag.image_id WHERE image.published=1 ' . $where . ' AND CONCAT(",", tag.tags, ",") REGEXP ",('.implode("|",$_REQUEST['bwg_tag_id_bwg_album_compact_' . $bwg]).')," ');
110
  }
111
  else {
112
  $total = $wpdb->get_var($wpdb->prepare('SELECT COUNT(*) FROM ' . $wpdb->prefix . 'bwg_image WHERE published=1 ' . $where . ' AND gallery_id="%d"', $id));
frontend/models/BWGModelAlbum_extended_preview.php CHANGED
@@ -96,7 +96,7 @@ class BWGModelAlbum_extended_preview {
96
  $where = '';
97
  }
98
  if (isset($_REQUEST['bwg_tag_id_bwg_album_extended_' . $bwg]) && $_REQUEST['bwg_tag_id_bwg_album_extended_' . $bwg]) {
99
- $total = $wpdb->get_var('SELECT COUNT(*) FROM ' . $wpdb->prefix . 'bwg_image as image INNER JOIN (SELECT GROUP_CONCAT( tag_id SEPARATOR ",") AS tags, image_id FROM ' . $wpdb->prefix . 'bwg_image_tag GROUP BY image_id) AS tag ON image.id=tag.image_id WHERE image.published=1 ' . $where . ' AND CONCAT(",", tag.tags, ",") REGEXP ",('.implode("|",$_REQUEST['bwg_tag_id_bwg_album_extended_' . $bwg]).')," ');
100
  }
101
  else {
102
  $total = $wpdb->get_var($wpdb->prepare('SELECT COUNT(*) FROM ' . $wpdb->prefix . 'bwg_image WHERE published=1 ' . $where . ' AND gallery_id="%d"', $id));
96
  $where = '';
97
  }
98
  if (isset($_REQUEST['bwg_tag_id_bwg_album_extended_' . $bwg]) && $_REQUEST['bwg_tag_id_bwg_album_extended_' . $bwg]) {
99
+ $total = $wpdb->get_var('SELECT COUNT(*) FROM ' . $wpdb->prefix . 'bwg_image as image INNER JOIN (SELECT GROUP_CONCAT( tag_id SEPARATOR ",") AS tags, image_id FROM ' . $wpdb->prefix . 'bwg_image_tag WHERE gallery_id="' . $id . '" GROUP BY image_id) AS tag ON image.id=tag.image_id WHERE image.published=1 ' . $where . ' AND CONCAT(",", tag.tags, ",") REGEXP ",('.implode("|",$_REQUEST['bwg_tag_id_bwg_album_extended_' . $bwg]).')," ');
100
  }
101
  else {
102
  $total = $wpdb->get_var($wpdb->prepare('SELECT COUNT(*) FROM ' . $wpdb->prefix . 'bwg_image WHERE published=1 ' . $where . ' AND gallery_id="%d"', $id));
frontend/models/BWGModelThumbnails.php CHANGED
@@ -113,7 +113,7 @@ class BWGModelThumbnails {
113
  }
114
  }
115
  if( isset($_REQUEST['bwg_tag_id_bwg_standart_thumbnails_' . $bwg]) && $_REQUEST['bwg_tag_id_bwg_standart_thumbnails_' . $bwg] ){
116
- $total = $wpdb->get_var('SELECT COUNT(*) FROM ' . $wpdb->prefix . 'bwg_image as image INNER JOIN (SELECT GROUP_CONCAT( tag_id SEPARATOR ",") AS tags, image_id FROM ' . $wpdb->prefix . 'bwg_image_tag GROUP BY image_id) AS tag ON image.id=tag.image_id WHERE image.published=1 ' . $where . ' AND CONCAT(",", tag.tags, ",") REGEXP ",('.implode("|",$_REQUEST['bwg_tag_id_bwg_standart_thumbnails_' . $bwg]).')," ');
117
  }
118
  elseif ($type == 'tag') {
119
  $total = $wpdb->get_var($wpdb->prepare('SELECT COUNT(*) FROM ' . $wpdb->prefix . 'bwg_image as image INNER JOIN ' . $wpdb->prefix . 'bwg_image_tag as tag ON image.id=tag.image_id WHERE image.published=1 ' . $where . ' AND tag.tag_id="%d"', $id));
113
  }
114
  }
115
  if( isset($_REQUEST['bwg_tag_id_bwg_standart_thumbnails_' . $bwg]) && $_REQUEST['bwg_tag_id_bwg_standart_thumbnails_' . $bwg] ){
116
+ $total = $wpdb->get_var('SELECT COUNT(*) FROM ' . $wpdb->prefix . 'bwg_image as image INNER JOIN (SELECT GROUP_CONCAT( tag_id SEPARATOR ",") AS tags, image_id FROM ' . $wpdb->prefix . 'bwg_image_tag WHERE gallery_id="' . $id . '" GROUP BY image_id) AS tag ON image.id=tag.image_id WHERE image.published=1 ' . $where . ' AND CONCAT(",", tag.tags, ",") REGEXP ",('.implode("|",$_REQUEST['bwg_tag_id_bwg_standart_thumbnails_' . $bwg]).')," ');
117
  }
118
  elseif ($type == 'tag') {
119
  $total = $wpdb->get_var($wpdb->prepare('SELECT COUNT(*) FROM ' . $wpdb->prefix . 'bwg_image as image INNER JOIN ' . $wpdb->prefix . 'bwg_image_tag as tag ON image.id=tag.image_id WHERE image.published=1 ' . $where . ' AND tag.tag_id="%d"', $id));
frontend/views/BWGViewThumbnails.php CHANGED
@@ -410,8 +410,10 @@ class BWGViewThumbnails {
410
  $image_thumb_width = $params['thumb_width'];
411
  if($image_row->resolution != ''){
412
  $resolution_arr = explode(" ",$image_row->resolution);
 
413
  $resolution_w = intval($resolution_arr[0]);
414
  $resolution_h = intval($resolution_arr[2]);
 
415
  if($resolution_w != 0 && $resolution_h != 0){
416
  $scale = $scale = max($params['thumb_width'] / $resolution_w, $params['thumb_height'] / $resolution_h);
417
  $image_thumb_width = $resolution_w * $scale;
410
  $image_thumb_width = $params['thumb_width'];
411
  if($image_row->resolution != ''){
412
  $resolution_arr = explode(" ",$image_row->resolution);
413
+
414
  $resolution_w = intval($resolution_arr[0]);
415
  $resolution_h = intval($resolution_arr[2]);
416
+
417
  if($resolution_w != 0 && $resolution_h != 0){
418
  $scale = $scale = max($params['thumb_width'] / $resolution_w, $params['thumb_height'] / $resolution_h);
419
  $image_thumb_width = $resolution_w * $scale;
js/bwg.js CHANGED
@@ -339,7 +339,7 @@ function spider_form_submit(event, form_id) {
339
  // Check if required field is empty.
340
  function spider_check_required(id, name) {
341
  if (jQuery('#' + id).val() == '') {
342
- alert(name + '* field is required.');
343
  jQuery('#' + id).attr('style', 'border-color: #FF0000;');
344
  jQuery('#' + id).focus();
345
  jQuery('html, body').animate({
@@ -354,12 +354,12 @@ function spider_check_required(id, name) {
354
 
355
  // Show/hide order column and drag and drop column.
356
  function spider_show_hide_weights() {
357
- if (jQuery("#show_hide_weights").val() == 'Show order column') {
358
  jQuery(".connectedSortable").css("cursor", "default");
359
  jQuery("#tbody_arr").find(".handle").hide(0);
360
  jQuery("#th_order").show(0);
361
  jQuery("#tbody_arr").find(".spider_order").show(0);
362
- jQuery("#show_hide_weights").val("Hide order column");
363
  if (jQuery("#tbody_arr").sortable()) {
364
  jQuery("#tbody_arr").sortable("disable");
365
  }
@@ -392,7 +392,7 @@ function spider_show_hide_weights() {
392
  jQuery("#tbody_arr").find(".handle").attr('class', 'handle connectedSortable');
393
  jQuery("#th_order").hide(0);
394
  jQuery("#tbody_arr").find(".spider_order").hide(0);
395
- jQuery("#show_hide_weights").val("Show order column");
396
  }
397
  }
398
 
@@ -454,7 +454,7 @@ function spider_uploader(button_id, input_id, delete_id, img_id) {
454
  }
455
  }
456
  if (img_id != '') {
457
- alert('You must select an image file.');
458
  tb_remove();
459
  return;
460
  }
@@ -465,7 +465,7 @@ function spider_uploader(button_id, input_id, delete_id, img_id) {
465
  }
466
  else {
467
  if (img_id == '') {
468
- alert('You must select an audio file.');
469
  tb_remove();
470
  return;
471
  }
@@ -1064,7 +1064,7 @@ function bwg_get_embed_info(input_id) {
1064
 
1065
  var url = encodeURI(jQuery("#" + input_id).val());
1066
  if (!url) {
1067
- alert('Please enter url to embed.');
1068
  return '';
1069
  }
1070
  var filesValid = [];
@@ -1078,7 +1078,7 @@ function bwg_get_embed_info(input_id) {
1078
  // get from the server data for the url. Here we use the server as a proxy, since Cross-Origin Resource Sharing AJAX is forbidden.
1079
  jQuery.post(ajax_url, data, function(response) {
1080
  if(response == false){
1081
- alert('Error: cannot get response from the server.');
1082
  jQuery('#opacity_div').hide();
1083
  jQuery('#loading_div').hide();
1084
  return '';
@@ -1088,7 +1088,7 @@ function bwg_get_embed_info(input_id) {
1088
  var index_start = response.indexOf("WD_delimiter_start");
1089
  var index_end = response.indexOf("WD_delimiter_end");
1090
  if(index_start == -1 || index_end == -1){
1091
- alert('Error: something wrong happened at the server.');
1092
  jQuery('#opacity_div').hide();
1093
  jQuery('#loading_div').hide();
1094
 
@@ -1103,7 +1103,7 @@ function bwg_get_embed_info(input_id) {
1103
  response_JSON = jQuery.parseJSON(response);
1104
  /*if indexed array, it means there is error*/
1105
  if(typeof response_JSON[0] !== 'undefined'){
1106
- alert('Error: ' + jQuery.parseJSON(response)[1]);
1107
  jQuery('#opacity_div').hide();
1108
  jQuery('#loading_div').hide();
1109
  return '';
339
  // Check if required field is empty.
340
  function spider_check_required(id, name) {
341
  if (jQuery('#' + id).val() == '') {
342
+ alert(name + '* ' + bwg_objectL10B.bwg_field_required);
343
  jQuery('#' + id).attr('style', 'border-color: #FF0000;');
344
  jQuery('#' + id).focus();
345
  jQuery('html, body').animate({
354
 
355
  // Show/hide order column and drag and drop column.
356
  function spider_show_hide_weights() {
357
+ if (jQuery("#show_hide_weights").val() == bwg_objectL10B.bwg_show_order) {
358
  jQuery(".connectedSortable").css("cursor", "default");
359
  jQuery("#tbody_arr").find(".handle").hide(0);
360
  jQuery("#th_order").show(0);
361
  jQuery("#tbody_arr").find(".spider_order").show(0);
362
+ jQuery("#show_hide_weights").val(bwg_objectL10B.bwg_hide_order);
363
  if (jQuery("#tbody_arr").sortable()) {
364
  jQuery("#tbody_arr").sortable("disable");
365
  }
392
  jQuery("#tbody_arr").find(".handle").attr('class', 'handle connectedSortable');
393
  jQuery("#th_order").hide(0);
394
  jQuery("#tbody_arr").find(".spider_order").hide(0);
395
+ jQuery("#show_hide_weights").val(bwg_objectL10B.bwg_show_order);
396
  }
397
  }
398
 
454
  }
455
  }
456
  if (img_id != '') {
457
+ alert(bwg_objectL10B.bwg_select_image);
458
  tb_remove();
459
  return;
460
  }
465
  }
466
  else {
467
  if (img_id == '') {
468
+ alert(bwg_objectL10B.bwg_field_required);
469
  tb_remove();
470
  return;
471
  }
1064
 
1065
  var url = encodeURI(jQuery("#" + input_id).val());
1066
  if (!url) {
1067
+ alert(bwg_objectL10B.bwg_enter_url);
1068
  return '';
1069
  }
1070
  var filesValid = [];
1078
  // get from the server data for the url. Here we use the server as a proxy, since Cross-Origin Resource Sharing AJAX is forbidden.
1079
  jQuery.post(ajax_url, data, function(response) {
1080
  if(response == false){
1081
+ alert(bwg_objectL10B.bwg_cannot_response);
1082
  jQuery('#opacity_div').hide();
1083
  jQuery('#loading_div').hide();
1084
  return '';
1088
  var index_start = response.indexOf("WD_delimiter_start");
1089
  var index_end = response.indexOf("WD_delimiter_end");
1090
  if(index_start == -1 || index_end == -1){
1091
+ alert(bwg_objectL10B.bwg_something_wrong);
1092
  jQuery('#opacity_div').hide();
1093
  jQuery('#loading_div').hide();
1094
 
1103
  response_JSON = jQuery.parseJSON(response);
1104
  /*if indexed array, it means there is error*/
1105
  if(typeof response_JSON[0] !== 'undefined'){
1106
+ alert(bwg_objectL10B.bwg_error + jQuery.parseJSON(response)[1]);
1107
  jQuery('#opacity_div').hide();
1108
  jQuery('#loading_div').hide();
1109
  return '';
js/bwg_shortcode.js CHANGED
@@ -146,7 +146,7 @@ function bwg_show_search_box() {
146
 
147
  function bwg_change_compuct_album_view_type() {
148
  if (jQuery("input[name=compuct_album_view_type]:checked").val() == 'thumbnail') {
149
- jQuery("#compuct_album_image_thumb_dimensions").html('Image thumbnail dimensions: ');
150
  jQuery("#compuct_album_image_thumb_dimensions_x").css('display', '');
151
  jQuery("#compuct_album_image_thumb_width").css('display', '');
152
  jQuery("#compuct_album_image_thumb_height").css('display', '');
@@ -158,7 +158,7 @@ function bwg_change_compuct_album_view_type() {
158
  }
159
 
160
  else if(jQuery("input[name=compuct_album_view_type]:checked").val() == 'masonry'){
161
- jQuery("#compuct_album_image_thumb_dimensions").html('Image thumbnail width: ');
162
  jQuery("#compuct_album_image_thumb_dimensions_x").css('display', 'none');
163
  jQuery("#compuct_album_image_thumb_width").css('display', '');
164
  jQuery("#compuct_album_image_thumb_height").css('display', 'none');
@@ -177,12 +177,12 @@ function bwg_change_compuct_album_view_type() {
177
  jQuery("#tr_compuct_album_resizable_mosaic").css('display', '');
178
  jQuery("#tr_compuct_album_mosaic_total_width").css('display', '');
179
  if(jQuery("input[name=compuct_album_mosaic_hor_ver]:checked").val() == 'vertical'){
180
- jQuery("#compuct_album_image_thumb_dimensions").html('Image thumbnail width: ');
181
  jQuery("#compuct_album_image_thumb_height").css('display', 'none');
182
  jQuery("#compuct_album_image_thumb_width").css('display', '');
183
  }
184
  else{
185
- jQuery("#compuct_album_image_thumb_dimensions").html('Image thumbnail height: ');
186
  jQuery("#compuct_album_image_thumb_width").css('display', 'none');
187
  jQuery("#compuct_album_image_thumb_height").css('display', '');
188
 
@@ -194,7 +194,7 @@ function bwg_change_compuct_album_view_type() {
194
 
195
  function bwg_change_extended_album_view_type() {
196
  if (jQuery("input[name=extended_album_view_type]:checked").val() == 'thumbnail') {
197
- jQuery("#extended_album_image_thumb_dimensions").html('Image thumbnail dimensions: ');
198
  jQuery("#extended_album_image_thumb_dimensions_x").css('display', '');
199
  jQuery("#extended_album_image_thumb_width").css('display', '');
200
  jQuery("#extended_album_image_thumb_height").css('display', '');
@@ -206,7 +206,7 @@ function bwg_change_extended_album_view_type() {
206
  }
207
 
208
  else if(jQuery("input[name=extended_album_view_type]:checked").val() == 'masonry'){
209
- jQuery("#extended_album_image_thumb_dimensions").html('Image thumbnail width: ');
210
  jQuery("#extended_album_image_thumb_dimensions_x").css('display', 'none');
211
  jQuery("#extended_album_image_thumb_width").css('display', '');
212
  jQuery("#extended_album_image_thumb_height").css('display', 'none');
@@ -224,12 +224,12 @@ function bwg_change_extended_album_view_type() {
224
  jQuery("#tr_extended_album_resizable_mosaic").css('display', '');
225
  jQuery("#tr_extended_album_mosaic_total_width").css('display', '');
226
  if(jQuery("input[name=extended_album_mosaic_hor_ver]:checked").val() == 'vertical'){
227
- jQuery("#extended_album_image_thumb_dimensions").html('Image thumbnail width: ');
228
  jQuery("#extended_album_image_thumb_height").css('display', 'none');
229
  jQuery("#extended_album_image_thumb_width").css('display', '');
230
  }
231
  else{
232
- jQuery("#extended_album_image_thumb_dimensions").html('Image thumbnail height: ');
233
  jQuery("#extended_album_image_thumb_width").css('display', 'none');
234
  jQuery("#extended_album_image_thumb_height").css('display', '');
235
 
@@ -395,8 +395,8 @@ function bwg_gallery_type(gallery_type) {
395
  jQuery("#tr_sort_by").css('display', '');
396
  jQuery("#tr_order_by").css('display', '');
397
  jQuery("#tr_show_search_box").css('display', '');
398
- bwg_change_label('image_column_number_label', 'Max. number of image columns: ');
399
- bwg_change_label('thumb_width_height_label', 'Image thumbnail dimensions: ');
400
  jQuery('#thumb_width').show();
401
  jQuery('#thumb_height').show();
402
  jQuery('#thumb_width_height_separator').show();
@@ -423,13 +423,13 @@ function bwg_gallery_type(gallery_type) {
423
  jQuery("#tr_show_tag_box").css('display', '');
424
  if (jQuery("input[name=masonry_hor_ver]:checked").val() == 'horizontal') {
425
  bwg_change_label('image_column_number_label', 'Number of image rows: ');
426
- bwg_change_label('thumb_width_height_label', 'Image thumbnail height: ');
427
  jQuery('#thumb_width').hide();
428
  jQuery('#thumb_height').show();
429
  }
430
  else {
431
- bwg_change_label('image_column_number_label', 'Max. number of image columns: ');
432
- bwg_change_label('thumb_width_height_label', 'Image thumbnail width: ');
433
  jQuery('#thumb_width').show();
434
  jQuery('#thumb_height').hide();
435
  }
@@ -453,12 +453,12 @@ function bwg_gallery_type(gallery_type) {
453
  jQuery("#tr_show_sort_images").css('display', '');
454
  jQuery("#tr_show_tag_box").css('display', '');
455
  if (jQuery("input[name=mosaic_hor_ver]:checked").val() == 'horizontal') {
456
- bwg_change_label('thumb_width_height_label', 'Image thumbnail height: ');
457
  jQuery('#thumb_width').hide();
458
  jQuery('#thumb_height').show();
459
  }
460
  else {
461
- bwg_change_label('thumb_width_height_label', 'Image thumbnail width: ');
462
  jQuery('#thumb_width').show();
463
  jQuery('#thumb_height').hide();
464
  }
146
 
147
  function bwg_change_compuct_album_view_type() {
148
  if (jQuery("input[name=compuct_album_view_type]:checked").val() == 'thumbnail') {
149
+ jQuery("#compuct_album_image_thumb_dimensions").html(bwg_image_thumb);
150
  jQuery("#compuct_album_image_thumb_dimensions_x").css('display', '');
151
  jQuery("#compuct_album_image_thumb_width").css('display', '');
152
  jQuery("#compuct_album_image_thumb_height").css('display', '');
158
  }
159
 
160
  else if(jQuery("input[name=compuct_album_view_type]:checked").val() == 'masonry'){
161
+ jQuery("#compuct_album_image_thumb_dimensions").html(bwg_image_thumb_width);
162
  jQuery("#compuct_album_image_thumb_dimensions_x").css('display', 'none');
163
  jQuery("#compuct_album_image_thumb_width").css('display', '');
164
  jQuery("#compuct_album_image_thumb_height").css('display', 'none');
177
  jQuery("#tr_compuct_album_resizable_mosaic").css('display', '');
178
  jQuery("#tr_compuct_album_mosaic_total_width").css('display', '');
179
  if(jQuery("input[name=compuct_album_mosaic_hor_ver]:checked").val() == 'vertical'){
180
+ jQuery("#compuct_album_image_thumb_dimensions").html(bwg_image_thumb_width);
181
  jQuery("#compuct_album_image_thumb_height").css('display', 'none');
182
  jQuery("#compuct_album_image_thumb_width").css('display', '');
183
  }
184
  else{
185
+ jQuery("#compuct_album_image_thumb_dimensions").html(bwg_image_thumb_height);
186
  jQuery("#compuct_album_image_thumb_width").css('display', 'none');
187
  jQuery("#compuct_album_image_thumb_height").css('display', '');
188
 
194
 
195
  function bwg_change_extended_album_view_type() {
196
  if (jQuery("input[name=extended_album_view_type]:checked").val() == 'thumbnail') {
197
+ jQuery("#extended_album_image_thumb_dimensions").html(bwg_image_thumb);
198
  jQuery("#extended_album_image_thumb_dimensions_x").css('display', '');
199
  jQuery("#extended_album_image_thumb_width").css('display', '');
200
  jQuery("#extended_album_image_thumb_height").css('display', '');
206
  }
207
 
208
  else if(jQuery("input[name=extended_album_view_type]:checked").val() == 'masonry'){
209
+ jQuery("#extended_album_image_thumb_dimensions").html(bwg_image_thumb_width);
210
  jQuery("#extended_album_image_thumb_dimensions_x").css('display', 'none');
211
  jQuery("#extended_album_image_thumb_width").css('display', '');
212
  jQuery("#extended_album_image_thumb_height").css('display', 'none');
224
  jQuery("#tr_extended_album_resizable_mosaic").css('display', '');
225
  jQuery("#tr_extended_album_mosaic_total_width").css('display', '');
226
  if(jQuery("input[name=extended_album_mosaic_hor_ver]:checked").val() == 'vertical'){
227
+ jQuery("#extended_album_image_thumb_dimensions").html(bwg_image_thumb_width);
228
  jQuery("#extended_album_image_thumb_height").css('display', 'none');
229
  jQuery("#extended_album_image_thumb_width").css('display', '');
230
  }
231
  else{
232
+ jQuery("#extended_album_image_thumb_dimensions").html(bwg_image_thumb_height);
233
  jQuery("#extended_album_image_thumb_width").css('display', 'none');
234
  jQuery("#extended_album_image_thumb_height").css('display', '');
235
 
395
  jQuery("#tr_sort_by").css('display', '');
396
  jQuery("#tr_order_by").css('display', '');
397
  jQuery("#tr_show_search_box").css('display', '');
398
+ bwg_change_label('image_column_number_label', bwg_max_column);
399
+ bwg_change_label('thumb_width_height_label', bwg_image_thumb);
400
  jQuery('#thumb_width').show();
401
  jQuery('#thumb_height').show();
402
  jQuery('#thumb_width_height_separator').show();
423
  jQuery("#tr_show_tag_box").css('display', '');
424
  if (jQuery("input[name=masonry_hor_ver]:checked").val() == 'horizontal') {
425
  bwg_change_label('image_column_number_label', 'Number of image rows: ');
426
+ bwg_change_label('thumb_width_height_label', bwg_image_thumb_height);
427
  jQuery('#thumb_width').hide();
428
  jQuery('#thumb_height').show();
429
  }
430
  else {
431
+ bwg_change_label('image_column_number_label', bwg_max_column);
432
+ bwg_change_label('thumb_width_height_label', bwg_image_thumb_width);
433
  jQuery('#thumb_width').show();
434
  jQuery('#thumb_height').hide();
435
  }
453
  jQuery("#tr_show_sort_images").css('display', '');
454
  jQuery("#tr_show_tag_box").css('display', '');
455
  if (jQuery("input[name=mosaic_hor_ver]:checked").val() == 'horizontal') {
456
+ bwg_change_label('thumb_width_height_label', bwg_image_thumb_height);
457
  jQuery('#thumb_width').hide();
458
  jQuery('#thumb_height').show();
459
  }
460
  else {
461
+ bwg_change_label('thumb_width_height_label', bwg_image_thumb_width);
462
  jQuery('#thumb_width').show();
463
  jQuery('#thumb_height').hide();
464
  }
languages/backend/bwg_back-de_DE.mo ADDED
Binary file
languages/backend/bwg_back-de_DE.po ADDED
@@ -0,0 +1,3756 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: photo-gallery\n"
4
+ "POT-Creation-Date: 15-10-28 03:53+000\n"
5
+ "PO-Revision-Date: 2015-10-30 11:54+0400\n"
6
+ "Last-Translator: admin < a@mail.ru >\n"
7
+ "Language-Team: \n"
8
+ "Language: de\n"
9
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
10
+ "MIME-Version: 1.0\n"
11
+ "Content-Type: text/plain; charset=UTF-8\n"
12
+ "Content-Transfer-Encoding: 8bit\n"
13
+ "X-Generator: Poedit 1.7.5\n"
14
+
15
+ #: ../photo-gallery-notices.php:188
16
+ msgid "Leave A Review?"
17
+ msgstr "Hinterlassen Sie eine Bewertung?"
18
+
19
+ #: ../photo-gallery-notices.php:189
20
+ #, php-format
21
+ msgid "We hope you've enjoyed using WordPress %s! Would you consider leaving us a review on WordPress.org?"
22
+ msgstr "Wir hoffen, Sie mit Wordpress% s genossen haben! Würden Sie, uns eine Bewertung zu WordPress.org?"
23
+
24
+ #: ../photo-gallery-notices.php:190
25
+ msgid "Sure! I'd love to!"
26
+ msgstr "Sure! Ich würde es gerne tun!"
27
+
28
+ #: ../photo-gallery-notices.php:191
29
+ msgid "I've already left a review"
30
+ msgstr "Ich habe bereits eine Rezension links"
31
+
32
+ #: ../photo-gallery-notices.php:192
33
+ msgid "Maybe Later"
34
+ msgstr "Vielleicht später"
35
+
36
+ #: ../photo-gallery-notices.php:193 ../photo-gallery-notices.php:203
37
+ msgid "Never show again"
38
+ msgstr "Nie mehr anzeigen"
39
+
40
+ #: ../photo-gallery-notices.php:199
41
+ msgid "Hey! How's It Going?"
42
+ msgstr "Hallo! Wie gehts?"
43
+
44
+ #: ../photo-gallery-notices.php:200
45
+ #, php-format
46
+ msgid "Thank you for using WordPress %s! We hope that you've found everything you need, but if you have any questions:"
47
+ msgstr "Wir danken für Wordpress% s! Wir hoffen, dass Sie alles, was Sie brauchen, gefunden haben, aber wenn Sie Fragen haben:"
48
+
49
+ #: ../photo-gallery-notices.php:201
50
+ msgid "Check out User Guide"
51
+ msgstr "Schauen Sie sich Benutzerhandbuch"
52
+
53
+ #: ../photo-gallery-notices.php:202
54
+ msgid "Get Some Help"
55
+ msgstr "Holen Sie sich Hilfe"
56
+
57
+ #. Name of the plugin
58
+ msgid "Photo Gallery"
59
+ msgstr "Fotogalerie"
60
+
61
+ #. URI of the plugin
62
+ msgid "https://web-dorado.com/products/wordpress-photo-gallery-plugin.html"
63
+ msgstr "https://web-dorado.com/products/wordpress-photo-gallery-plugin.html"
64
+
65
+ #. Description of the plugin
66
+ msgid "This plugin is a fully responsive gallery plugin with advanced functionality. It allows having different image galleries for your posts and pages. You can create unlimited number of galleries, combine them into albums, and provide descriptions and tags."
67
+ msgstr "Dieses Plugin ist ein voll reaktions Galerie-Plugin mit erweiterter Funktionalität. Es ermöglicht, die verschiedene Bildergalerien für Ihre Beiträge und Seiten. Sie können beliebig viele Galerien erstellen, kombinieren Sie sie in Alben und bieten Beschreibungen und Tags."
68
+
69
+ #. Author of the plugin
70
+ msgid "WebDorado"
71
+ msgstr "WebDorado"
72
+
73
+ #. Author URI of the plugin
74
+ msgid "https://web-dorado.com"
75
+ msgstr "https://web-dorado.com"
76
+
77
+ #: ../photo-gallery.php:71
78
+ msgid "Add Galleries/Images"
79
+ msgstr "In Galerien / Bilder"
80
+
81
+ #: ../photo-gallery.php:76 .. /admin/views/BWGViewAlbums_bwg.php:53
82
+ msgid "Albums"
83
+ msgstr "Alben"
84
+
85
+ #: ../photo-gallery.php:81 ../admin/views/BWGViewAddTags. php:45
86
+ #: ../admin/views/BWGViewGalleries_bwg.php:857 ..
87
+ #: /admin/views/BWGViewTags_bwg.php:56
88
+ msgid "Tags"
89
+ msgstr "Schlag."
90
+
91
+ #: ../photo-gallery.php:86
92
+ msgid "Options"
93
+ msgstr "Optionen"
94
+
95
+ #: ../photo-gallery.php:90 .. /admin/views/BWGViewThemes_bwg.php:78
96
+ msgid "Themes"
97
+ msgstr "Themes"
98
+
99
+ #: ../photo-gallery.php:95
100
+ msgid "Generate Shortcode"
101
+ msgstr "Generieren Short"
102
+
103
+ #: ../photo-gallery.php:97
104
+ msgid "Licensing"
105
+ msgstr "Lizenzierung"
106
+
107
+ #: ../photo-gallery.php:100
108
+ msgid "Featured Plugins"
109
+ msgstr "Besondere Plugins"
110
+
111
+ #: ../photo-gallery.php:101
112
+ msgid "Featured Themes"
113
+ msgstr "Ausgewählte Themen"
114
+
115
+ #: ../photo-gallery.php:103
116
+ msgid "Uninstall"
117
+ msgstr "Uninstall"
118
+
119
+ #: ../photo-gallery.php:2446 ../photo-gallery.php:2615
120
+ msgid "field is required."
121
+ msgstr "ist erforderlich."
122
+
123
+ #: ../photo-gallery.php:2447
124
+ msgid "You must select an image file."
125
+ msgstr "Sie müssen eine Image-Datei auswählen."
126
+
127
+ #: ../photo-gallery.php:2448
128
+ msgid "You must select an audio file."
129
+ msgstr "Sie müssen eine Audiodatei auszuwählen."
130
+
131
+ #: ../photo-gallery.php:2449
132
+ msgid "You do not have Instagram CLIENT_ID. Input its value in Options->Embed options. "
133
+ msgstr "Sie verfügen nicht über Instagram CLIENT_ID. Eingangs seinen Wert in Optionen-> Embed-Optionen."
134
+
135
+ #: ../photo-gallery.php:2450
136
+ msgid "Instagram recent post number must be between 1 and 33."
137
+ msgstr "Instagram letzten Postnummer muss zwischen 1 und 33 sein."
138
+
139
+ #: ../photo-gallery.php:2451
140
+ msgid "The gallery is not empty. Please delete all the images first."
141
+ msgstr "Die Galerie ist nicht leer. Bitte löschen Sie zuerst alle Bilder."
142
+
143
+ #: ../photo-gallery.php:2452
144
+ msgid "Please enter url to embed."
145
+ msgstr "Bitte geben Sie URL einzubetten."
146
+
147
+ #: ../photo-gallery.php:2453
148
+ msgid "Error: cannot get response from the server."
149
+ msgstr "Fehler: kann nicht Antwort vom Server zu erhalten."
150
+
151
+ #: ../photo-gallery.php:2454
152
+ msgid "Error: something wrong happened at the server."
153
+ msgstr "Fehler: etwas nicht passiert auf dem Server."
154
+
155
+ #: ../photo-gallery.php:2455
156
+ msgid "Error"
157
+ msgstr "Irrtum"
158
+
159
+ #: ../photo-gallery.php:2456
160
+ msgid "Show order column"
161
+ msgstr "Bestel. Zeige Spalte"
162
+
163
+ #: ../photo-gallery.php:2457 ../admin/views/BWGViewAlbums_bwg.php:63 ..
164
+ #: /admin/views/BWGViewGalleries_bwg.php:63
165
+ #: ../admin/views/BWGViewGalleries_bwg. php:521
166
+ #: ../admin/views/BWGViewGalleries_bwg.php:725
167
+ msgid "Hide order column"
168
+ msgstr "Um ausb. Spalte"
169
+
170
+ #: ../photo-gallery.php:2458
171
+ msgid "Selected"
172
+ msgstr "Ausgewählt"
173
+
174
+ #: ../photo-gallery.php:2459 ../framework/WDWLibrary.php:436
175
+ msgid "item"
176
+ msgstr "Artikel"
177
+
178
+ #: ../photo-gallery.php:2460
179
+ msgid "Items Succesfully Saved."
180
+ msgstr "Artikel Erfolgreich gespeichert."
181
+
182
+ #: ../photo-gallery.php:2461
183
+ msgid "Item Succesfully Recovered."
184
+ msgstr "Artikel Erfolgreich erholt."
185
+
186
+ #: ../photo-gallery.php:2462
187
+ #: ../admin/controllers/BWGControllerGalleries_bwg.php:953
188
+ #: ../framework/WDWLibrary.php:94
189
+ msgid "Item Succesfully Published."
190
+ msgstr "Artikel Erfolgreich veröffentlichte."
191
+
192
+ #: ../photo-gallery.php:2463
193
+ #: ../admin/controllers/BWGControllerGalleries_bwg.php:990
194
+ #: ../framework/WDWLibrary.php:106
195
+ msgid "Item Succesfully Unpublished."
196
+ msgstr "Artikel Erfolgreich Unveröffentlichte."
197
+
198
+ #: ../photo-gallery.php:2464
199
+ #: ../admin/controllers/BWGControllerGalleries_bwg.php:908
200
+ #: ../framework/WDWLibrary.php:58
201
+ msgid "Item Succesfully Deleted."
202
+ msgstr "Artikel Erfolgreich Gelöscht."
203
+
204
+ #: ../photo-gallery.php:2465
205
+ #: ../admin/controllers/BWGControllerGalleries_bwg.php:944
206
+ #: ../admin/controllers/BWGControllerGalleries_bwg.php:981 ..
207
+ #: /admin/controllers/BWGControllerGalleries_bwg.php:1018
208
+ #: /admin/controllers/BWGControllerGalleries_bwg.php:1097
209
+ #: ../framework/WDWLibrary. php:76
210
+ msgid "You must select at least one item."
211
+ msgstr "Sie müssen mindestens einen Punkt zu wählen."
212
+
213
+ #: ../photo-gallery.php:2466
214
+ msgid "Items Succesfully resized."
215
+ msgstr "Artikel Erfolgreich in der Größe verändert."
216
+
217
+ #: ../photo-gallery.php:2467
218
+ msgid "Watermarks Succesfully Set."
219
+ msgstr "Wasserzeichen erfolgreich festgelegt."
220
+
221
+ #: ../photo-gallery.php:2468
222
+ msgid "Items Succesfully Reset."
223
+ msgstr "Artikel Erfolgreich zurücksetzen."
224
+
225
+ #: ../photo-gallery.php:2616
226
+ msgid "This is not a valid email address."
227
+ msgstr "Dies ist keine gültige Email Adresse."
228
+
229
+ #: ../photo-gallery.php:2617
230
+ #: ../frontend/views/BWGViewAlbum_compact_preview.php:744
231
+ #: ../frontend/views/BWGViewAlbum_extended_preview.php:726
232
+ msgid "There are no images matching your search."
233
+ msgstr "Es gibt keine Bilder, die Ihren Such."
234
+
235
+ #: ../photo-gallery.php:2620
236
+ msgid "Select Tag."
237
+ msgstr "Wählen Sie Tag."
238
+
239
+ #: ../addons/addons.php:5
240
+ msgid "Photo Gallery Facebook"
241
+ msgstr "Fotogalerie Facebook"
242
+
243
+ #: ../addons/addons.php:7
244
+ msgid "Photo Gallery Facebook is an add-on, which helps to display Facebook photos and videos within Photo Gallery plugin. You can create Facebook-only galleries, embed individual images and videos or include Facebook albums within mixed type albums."
245
+ msgstr "Fotogalerie Facebook ist ein Add-on, die Facebook-Fotos und Videos innerhalb von Photo Gallery Plugin angezeigt werden können. Sie können Facebook-only Galerien, betten Einzelbilder und Videos zu erstellen oder schließen Facebook-Alben im Mischtyp Alben."
246
+
247
+ #: ../addons/addons.php:12
248
+ msgid "NextGen Gallery Import to Photo Gallery"
249
+ msgstr "NextGen Gallery Import Zum Fotoalbum"
250
+
251
+ #: ../addons/addons.php:14
252
+ msgid "This addon integrates NextGen with Photo Gallery allowing to import images and related data from NextGen to use with Photo Gallery"
253
+ msgstr "Dieses Addon integriert NextGen mit Fotogalerie ermöglicht, Bilder und dazugehörige Daten von NextGen importieren, um die Fotogalerie zu verwenden"
254
+
255
+ #: ../addons/addons.php:19
256
+ msgid "Photo Gallery Export / Import"
257
+ msgstr "Photo Gallery Export / Import"
258
+
259
+ #: ../addons/addons.php:21
260
+ msgid "Photo Gallery Export/Import helps to move created galleries and albums from one site to another. This way you can save the gallery/album options and manual modifications."
261
+ msgstr "Photo Gallery Export / Import hilft, erstellt Galerien und Alben von einem Ort zum anderen zu bewegen. Auf diese Weise können die Galerie / Album Optionen und manuelle Änderungen zu speichern."
262
+
263
+ #: ../addons/addons.php:30
264
+ msgid "Photo Gallery Add-ons"
265
+ msgstr "Fotogalerie-Add-ons"
266
+
267
+ #: ../addons/addons.php:33
268
+ msgid "Attention"
269
+ msgstr "Achtung"
270
+
271
+ #: ../addons/addons.php:34
272
+ msgid "Add-ons are supported by premium version of Photo Gallery"
273
+ msgstr "Add-ons werden von Premium-Version von Photo Gallery unterstützt"
274
+
275
+ #: ../addons/addons.php:69
276
+ msgid "GET THIS ADD ON"
277
+ msgstr "Dieses Add ON"
278
+
279
+ #: ../admin/controllers/BWGControllerGalleries_bwg.php:727 ..
280
+ #: /admin/controllers/BWGControllerGalleries_bwg.php:868
281
+ #: /admin/controllers/BWGControllerOptions_bwg.php:384
282
+ #: /admin/views/BWGViewTags_bwg.php:52 ../framework/WDWLibrary.php:46
283
+ msgid "Item Succesfully Saved."
284
+ msgstr "Artikel Erfolgreich Gespeichert."
285
+
286
+ #: ../admin/controllers/BWGControllerGalleries_bwg.php:871 ..
287
+ #: /admin/controllers/BWGControllerGalleries_bwg.php:911
288
+ #: /admin/controllers/BWGControllerGalleries_bwg.php:956
289
+ #: /admin/controllers/BWGControllerGalleries_bwg.php:993
290
+ #: ../framework/WDWLibrary. php:52
291
+ msgid "Error. Please install plugin again."
292
+ msgstr "Error. Bitte installieren Sie wieder Plugin."
293
+
294
+ #: ../admin/controllers/BWGControllerGalleries_bwg.php:894 ..
295
+ #: /framework/WDWLibrary.php:118
296
+ msgid "Ordering Succesfully Saved."
297
+ msgstr "Bestell Erfolgreich Gespeichert."
298
+
299
+ #: ../admin/controllers/BWGControllerGalleries_bwg.php:941 ..
300
+ #: /framework/WDWLibrary.php:70
301
+ msgid "Items Succesfully Deleted."
302
+ msgstr "Artikel Erfolgreich Gelöscht."
303
+
304
+ #: ../admin/controllers/BWGControllerGalleries_bwg.php:978 ..
305
+ #: /framework/WDWLibrary.php:100
306
+ msgid "Items Succesfully Published."
307
+ msgstr "Artikel Erfolgreich veröffentlichte."
308
+
309
+ #: ../admin/controllers/BWGControllerGalleries_bwg.php:1015 ..
310
+ #: /framework/WDWLibrary.php:112
311
+ msgid "Items Succesfully Unpublished."
312
+ msgstr "Artikel Erfolgreich Unveröffentlichte."
313
+
314
+ #: ../admin/controllers/BWGControllerGalleries_bwg.php:1100
315
+ msgid "Thumb Succesfully Resized"
316
+ msgstr "Thumb Erfolgreich Resized"
317
+
318
+ #: ../admin/views/BWGViewAddAlbumsGalleries.php:45
319
+ msgid "Albums/Galleries"
320
+ msgstr "Alben / Galerien"
321
+
322
+ #: ../admin/views/BWGViewAddAlbumsGalleries.php:51 ..
323
+ #: /admin/views/BWGViewAddAlbumsGalleries.php:77
324
+ #: ../admin/views/BWGViewAddTags. php:51 ../admin/views/BWGViewAddTags.php:68
325
+ #: ../admin/views/BWGViewAlbums_bwg. php:75
326
+ #: ../admin/views/BWGViewAlbums_bwg.php:96
327
+ #: /admin/views/BWGViewGalleries_bwg.php:75
328
+ #: ../admin/views/BWGViewGalleries_bwg. php:97
329
+ #: ../admin/views/BWGViewTags_bwg.php:71 ../admin/views/BWGViewTags_bwg.
330
+ #: php:91 ../admin/views/BWGViewThemes_bwg.php:110
331
+ msgid "Name"
332
+ msgstr "Name"
333
+
334
+ #: ../admin/views/BWGViewAddAlbumsGalleries.php:70 ..
335
+ #: /admin/views/BWGViewBWGShortcode.php:214
336
+ #: ../admin/views/BWGViewGalleries_bwg. php:908
337
+ msgid "Type"
338
+ msgstr "Type"
339
+
340
+ #: ../admin/views/BWGViewAddAlbumsGalleries.php:91
341
+ #: ../admin/views/BWGViewWidget. php:111
342
+ msgid "Album"
343
+ msgstr "Album"
344
+
345
+ #: ../admin/views/BWGViewAddAlbumsGalleries.php:91
346
+ #: ../admin/views/BWGViewWidget. php:110
347
+ msgid "Gallery"
348
+ msgstr "Gallerie"
349
+
350
+ #: ../admin/views/BWGViewAddTags.php:75
351
+ #: ../admin/views/BWGViewAlbums_bwg.php:104 .
352
+ #: admin/views/BWGViewGalleries_bwg.php:105
353
+ #: ../admin/views/BWGViewTags_bwg.php:99
354
+ msgid "Slug"
355
+ msgstr "Slug"
356
+
357
+ #: ../admin/views/BWGViewAlbums_bwg.php:40
358
+ msgid "This section allows you to create, edit and delete albums."
359
+ msgstr "Dieser Abschnitt ermöglicht es Ihnen, zu schaffen, Alben bearbeiten und löschen."
360
+
361
+ #: ../admin/views/BWGViewAlbums_bwg.php:41
362
+ #: ../admin/views/BWGViewAlbums_bwg.php:203
363
+ #: ../admin/views/BWGViewGalleries_bwg.php:41 ..
364
+ #: /admin/views/BWGViewGalleries_bwg.php:219
365
+ #: ../admin/views/BWGViewOptions_bwg. php:31
366
+ #: ../admin/views/BWGViewTags_bwg.php:44 ../admin/views/BWGViewThemes_bwg.
367
+ #: php:40 ../admin/views/BWGViewThemes_bwg.php:251
368
+ msgid "Read More in User Manual"
369
+ msgstr "Lesen Sie weiter in der Bedienungsanleitung"
370
+
371
+ #: ../admin/views/BWGViewAlbums_bwg.php:55
372
+ #: ../admin/views/BWGViewGalleries_bwg. php:55
373
+ #: ../admin/views/BWGViewThemes_bwg.php:80
374
+ msgid "Add new"
375
+ msgstr "Neue hinzufügen"
376
+
377
+ #: ../admin/views/BWGViewAlbums_bwg.php:57
378
+ #: ../admin/views/BWGViewGalleries_bwg. php:57
379
+ #: ../admin/views/BWGViewGalleries_bwg.php:700
380
+ msgid "Changes made in this table should be saved."
381
+ msgstr "Veränderungen in dieser Tabelle gespeichert werden sollen."
382
+
383
+ #: ../admin/views/BWGViewAlbums_bwg.php:61
384
+ #: ../admin/views/BWGViewGalleries_bwg. php:61
385
+ #: ../admin/views/BWGViewGalleries_bwg.php:723 ../filemanager/view.php:268
386
+ #: ../filemanager/view.php:353
387
+ msgid "Select All"
388
+ msgstr "Alle auswählen"
389
+
390
+ #: ../admin/views/BWGViewAlbums_bwg.php:64
391
+ #: ../admin/views/BWGViewGalleries_bwg. php:64
392
+ msgid "Save Order"
393
+ msgstr "Speichern Sortieren"
394
+
395
+ #: ../admin/views/BWGViewAlbums_bwg.php:65
396
+ #: ../admin/views/BWGViewGalleries_bwg. php:65
397
+ #: ../admin/views/BWGViewGalleries_bwg.php:743
398
+ msgid "Publish"
399
+ msgstr "Veröffentlichen"
400
+
401
+ #: ../admin/views/BWGViewAlbums_bwg.php:66
402
+ #: ../admin/views/BWGViewGalleries_bwg. php:66
403
+ #: ../admin/views/BWGViewGalleries_bwg.php:746
404
+ msgid "Unpublish"
405
+ msgstr "Unpublish"
406
+
407
+ #: ../admin/views/BWGViewAlbums_bwg.php:67
408
+ #: ../admin/views/BWGViewGalleries_bwg. php:67
409
+ #: ../admin/views/BWGViewGalleries_bwg.php:747 ..
410
+ #: /admin/views/BWGViewThemes_bwg.php:83
411
+ msgid "Do you want to delete selected items?"
412
+ msgstr "Möchten Sie ausgewählten Elemente wirklich löschen?"
413
+
414
+ #: ../admin/views/BWGViewAlbums_bwg.php:71
415
+ #: ../admin/views/BWGViewAlbums_bwg.php:133
416
+ #: ../admin/views/BWGViewAlbums_bwg.php:168 ..
417
+ #: /admin/views/BWGViewGalleries_bwg.php:71
418
+ #: ../admin/views/BWGViewGalleries_bwg. php:134
419
+ #: ../admin/views/BWGViewGalleries_bwg.php:181
420
+ #: /admin/views/BWGViewGalleries_bwg.php:753 php:874
421
+ #: ../admin/views/BWGViewGalleries_bwg.php:980
422
+ #: /admin/views/BWGViewTags_bwg.php:63 ../admin/views/BWGViewTags_bwg.php:111
423
+ #: /admin/views/BWGViewTags_bwg.php:163
424
+ #: ../admin/views/BWGViewThemes_bwg.php:87
425
+ #: /admin/views/BWGViewThemes_bwg.php:120
426
+ #: ../admin/views/BWGViewThemes_bwg.php:167
427
+ msgid "Delete"
428
+ msgstr "Lösch."
429
+
430
+ #: ../admin/views/BWGViewAlbums_bwg.php:107
431
+ #: ../admin/views/BWGViewGalleries_bwg. php:91
432
+ #: ../admin/views/BWGViewGalleries_bwg.php:832 ..
433
+ #: /admin/views/BWGViewOptions_bwg.php:982
434
+ msgid "Thumbnail"
435
+ msgstr "Daum."
436
+
437
+ #: ../admin/views/BWGViewAlbums_bwg.php:113
438
+ #: ../admin/views/BWGViewBWGShortcode. php:209
439
+ #: ../admin/views/BWGViewGalleries_bwg.php:122 ..
440
+ #: /admin/views/BWGViewGalleries_bwg.php:863
441
+ msgid "Order"
442
+ msgstr "Auftrag"
443
+
444
+ #: ../admin/views/BWGViewAlbums_bwg.php:121
445
+ #: ../admin/views/BWGViewGalleries_bwg. php:113
446
+ msgid "Author"
447
+ msgstr "Autor"
448
+
449
+ #: ../admin/views/BWGViewAlbums_bwg.php:129
450
+ #: ../admin/views/BWGViewGalleries_bwg. php:130
451
+ #: ../admin/views/BWGViewGalleries_bwg.php:871
452
+ msgid "Published"
453
+ msgstr "Veröff."
454
+
455
+ #: ../admin/views/BWGViewAlbums_bwg.php:132
456
+ #: ../admin/views/BWGViewAlbums_bwg.php:155
457
+ #: ../admin/views/BWGViewAlbums_bwg.php:165 ..
458
+ #: /admin/views/BWGViewGalleries_bwg.php:133
459
+ #: ../admin/views/BWGViewGalleries_bwg. php:165
460
+ #: ../admin/views/BWGViewGalleries_bwg.php:178
461
+ #: /admin/views/BWGViewGalleries_bwg.php:363 php:924
462
+ #: ../admin/views/BWGViewTags_bwg.php:110 ../admin/views/BWGViewTags_bwg.
463
+ #: php:143 ../admin/views/BWGViewTags_bwg.php:149 php:155
464
+ #: ../admin/views/BWGViewTags_bwg.php:158
465
+ #: /admin/views/BWGViewThemes_bwg.php:119
466
+ #: ../admin/views/BWGViewThemes_bwg.php:138
467
+ #: ../admin/views/BWGViewThemes_bwg.php:162
468
+ msgid "Edit"
469
+ msgstr "Redigieren"
470
+
471
+ #: ../admin/views/BWGViewAlbums_bwg.php:197
472
+ msgid "Edit album "
473
+ msgstr "Album bearbeiten"
474
+
475
+ #: ../admin/views/BWGViewAlbums_bwg.php:197
476
+ msgid "Create new album"
477
+ msgstr "Neues Album erstellen"
478
+
479
+ #: ../admin/views/BWGViewAlbums_bwg.php:202
480
+ msgid "This section allows you to add/edit album."
481
+ msgstr "Dieser Abschnitt ermöglicht es Ihnen, bearbeiten / Album hinzuzufügen."
482
+
483
+ #: ../admin/views/BWGViewAlbums_bwg.php:271
484
+ #: ../admin/views/BWGViewGalleries_bwg. php:535
485
+ #: ../admin/views/BWGViewOptions_bwg.php:94 ..
486
+ #: /admin/views/BWGViewTags_bwg.php:58
487
+ #: ../admin/views/BWGViewThemes_bwg.php:264
488
+ msgid "Save"
489
+ msgstr "sparen"
490
+
491
+ #: ../admin/views/BWGViewAlbums_bwg.php:272
492
+ #: ../admin/views/BWGViewGalleries_bwg. php:538
493
+ #: ../admin/views/BWGViewThemes_bwg.php:265
494
+ msgid "Apply"
495
+ msgstr "Bewerben"
496
+
497
+ #: ../admin/views/BWGViewAlbums_bwg.php:273
498
+ #: ../admin/views/BWGViewGalleries_bwg. php:540
499
+ #: ../admin/views/BWGViewGalleries_bwg.php:759 ..
500
+ #: /admin/views/BWGViewGalleries_bwg.php:773 php:817
501
+ #: ../admin/views/BWGViewThemes_bwg.php:266
502
+ msgid "Cancel"
503
+ msgstr "Absagen"
504
+
505
+ #: ../admin/views/BWGViewAlbums_bwg.php:278
506
+ #: ../admin/views/BWGViewGalleries_bwg. php:545
507
+ #: ../admin/views/BWGViewThemes_bwg.php:293
508
+ msgid "Name:"
509
+ msgstr "Name:"
510
+
511
+ #: ../admin/views/BWGViewAlbums_bwg.php:282
512
+ #: ../admin/views/BWGViewGalleries_bwg. php:549
513
+ msgid "Slug:"
514
+ msgstr "Slug:"
515
+
516
+ #: ../admin/views/BWGViewAlbums_bwg.php:286
517
+ #: ../admin/views/BWGViewGalleries_bwg. php:601
518
+ msgid "Description:"
519
+ msgstr "Beschreibung:"
520
+
521
+ #: ../admin/views/BWGViewAlbums_bwg.php:305
522
+ #: ../admin/views/BWGViewGalleries_bwg. php:620
523
+ msgid "Author:"
524
+ msgstr "Autor:"
525
+
526
+ #: ../admin/views/BWGViewAlbums_bwg.php:309
527
+ #: ../admin/views/BWGViewGalleries_bwg. php:624
528
+ msgid "Published:"
529
+ msgstr "Veröffentlicht:"
530
+
531
+ #: ../admin/views/BWGViewAlbums_bwg.php:312
532
+ #: ../admin/views/BWGViewGalleries_bwg. php:627
533
+ #: ../admin/views/BWGViewOptions_bwg.php:147 ..
534
+ #: /admin/views/BWGViewOptions_bwg.php:177
535
+ #: ../admin/views/BWGViewOptions_bwg.php:187
536
+ #: ../admin/views/BWGViewOptions_bwg.php:206
537
+ #: /admin/views/BWGViewOptions_bwg.php:216 226
538
+ #: ../admin/views/BWGViewOptions_bwg.php:245
539
+ #: /admin/views/BWGViewOptions_bwg.php:255 265
540
+ #: ../admin/views/BWGViewOptions_bwg.php:276
541
+ #: /admin/views/BWGViewOptions_bwg.php:286 613
542
+ #: ../admin/views/BWGViewOptions_bwg.php:650
543
+ #: /admin/views/BWGViewOptions_bwg.php:669 688
544
+ #: ../admin/views/BWGViewOptions_bwg.php:732
545
+ #: /admin/views/BWGViewOptions_bwg.php:742 752
546
+ #: ../admin/views/BWGViewOptions_bwg.php:762
547
+ #: /admin/views/BWGViewOptions_bwg.php:772 788
548
+ #: ../admin/views/BWGViewOptions_bwg.php:802
549
+ #: /admin/views/BWGViewOptions_bwg.php:812 822
550
+ #: ../admin/views/BWGViewOptions_bwg.php:832
551
+ #: /admin/views/BWGViewOptions_bwg.php:842 852
552
+ #: ../admin/views/BWGViewOptions_bwg.php:862
553
+ #: /admin/views/BWGViewOptions_bwg.php:872 882
554
+ #: ../admin/views/BWGViewOptions_bwg.php:892
555
+ #: /admin/views/BWGViewOptions_bwg.php:902 912
556
+ #: ../admin/views/BWGViewOptions_bwg.php:922
557
+ #: /admin/views/BWGViewOptions_bwg.php:934 973
558
+ #: ../admin/views/BWGViewOptions_bwg.php:1004
559
+ #: /admin/views/BWGViewOptions_bwg.php:1014 1090
560
+ #: ../admin/views/BWGViewOptions_bwg.php:1100
561
+ #: /admin/views/BWGViewOptions_bwg.php:1120 1128
562
+ #: ../admin/views/BWGViewOptions_bwg.php:1149
563
+ #: /admin/views/BWGViewOptions_bwg.php:1184 1192
564
+ #: ../admin/views/BWGViewOptions_bwg.php:1227
565
+ #: /admin/views/BWGViewOptions_bwg.php:1287 1354
566
+ #: ../admin/views/BWGViewOptions_bwg.php:1364
567
+ #: /admin/views/BWGViewOptions_bwg.php:1372 1389
568
+ #: ../admin/views/BWGViewOptions_bwg.php:1397
569
+ #: /admin/views/BWGViewOptions_bwg.php:1415 1425
570
+ #: ../admin/views/BWGViewOptions_bwg.php:1449
571
+ #: /admin/views/BWGViewOptions_bwg.php:1477 1576
572
+ #: ../admin/views/BWGViewOptions_bwg.php:1586
573
+ #: /admin/views/BWGViewOptions_bwg.php:1596 1606
574
+ #: ../admin/views/BWGViewOptions_bwg.php:1616
575
+ #: /admin/views/BWGViewThemes_bwg.php:382
576
+ #: ../admin/views/BWGViewThemes_bwg.php:623
577
+ #: ../admin/views/BWGViewThemes_bwg.php:1364 ../admin/views/BWGViewThemes_bwg.
578
+ #: php:1596 ../admin/views/BWGViewThemes_bwg.php:3314
579
+ #: /admin/views/BWGViewThemes_bwg.php:3359
580
+ #: ../admin/views/BWGViewWidgetSlideshow. php:144
581
+ #: ../admin/views/BWGViewWidgetTags.php:125
582
+ #: /admin/views/BWGViewWidgetTags.php:146
583
+ msgid "No"
584
+ msgstr "Nein"
585
+
586
+ #: ../admin/views/BWGViewAlbums_bwg.php:314
587
+ #: ../admin/views/BWGViewBWGShortcode. php:230
588
+ #: ../admin/views/BWGViewGalleries_bwg.php:629 ..
589
+ #: /admin/views/BWGViewOptions_bwg.php:146
590
+ #: ../admin/views/BWGViewOptions_bwg.php:156
591
+ #: ../admin/views/BWGViewOptions_bwg.php:166
592
+ #: /admin/views/BWGViewOptions_bwg.php:176 186
593
+ #: ../admin/views/BWGViewOptions_bwg.php:205
594
+ #: /admin/views/BWGViewOptions_bwg.php:215 225
595
+ #: ../admin/views/BWGViewOptions_bwg.php:244
596
+ #: /admin/views/BWGViewOptions_bwg.php:254 264
597
+ #: ../admin/views/BWGViewOptions_bwg.php:275
598
+ #: /admin/views/BWGViewOptions_bwg.php:285 612
599
+ #: ../admin/views/BWGViewOptions_bwg.php:649
600
+ #: /admin/views/BWGViewOptions_bwg.php:668 687
601
+ #: ../admin/views/BWGViewOptions_bwg.php:719
602
+ #: /admin/views/BWGViewOptions_bwg.php:741 751
603
+ #: ../admin/views/BWGViewOptions_bwg.php:761
604
+ #: /admin/views/BWGViewOptions_bwg.php:771 787
605
+ #: ../admin/views/BWGViewOptions_bwg.php:799
606
+ #: /admin/views/BWGViewOptions_bwg.php:811 821
607
+ #: ../admin/views/BWGViewOptions_bwg.php:831
608
+ #: /admin/views/BWGViewOptions_bwg.php:841 851
609
+ #: ../admin/views/BWGViewOptions_bwg.php:861
610
+ #: /admin/views/BWGViewOptions_bwg.php:871 881
611
+ #: ../admin/views/BWGViewOptions_bwg.php:891
612
+ #: /admin/views/BWGViewOptions_bwg.php:901 911
613
+ #: ../admin/views/BWGViewOptions_bwg.php:921
614
+ #: /admin/views/BWGViewOptions_bwg.php:932 972
615
+ #: ../admin/views/BWGViewOptions_bwg.php:1003
616
+ #: /admin/views/BWGViewOptions_bwg.php:1013 1089
617
+ #: ../admin/views/BWGViewOptions_bwg.php:1099
618
+ #: /admin/views/BWGViewOptions_bwg.php:1119 1127
619
+ #: ../admin/views/BWGViewOptions_bwg.php:1148
620
+ #: /admin/views/BWGViewOptions_bwg.php:1183 1191
621
+ #: ../admin/views/BWGViewOptions_bwg.php:1226
622
+ #: /admin/views/BWGViewOptions_bwg.php:1288 1353
623
+ #: ../admin/views/BWGViewOptions_bwg.php:1363
624
+ #: /admin/views/BWGViewOptions_bwg.php:1371 1388
625
+ #: ../admin/views/BWGViewOptions_bwg.php:1396
626
+ #: /admin/views/BWGViewOptions_bwg.php:1414 1424
627
+ #: ../admin/views/BWGViewOptions_bwg.php:1448
628
+ #: /admin/views/BWGViewOptions_bwg.php:1476 1575
629
+ #: ../admin/views/BWGViewOptions_bwg.php:1585
630
+ #: /admin/views/BWGViewOptions_bwg.php:1595 1605
631
+ #: ../admin/views/BWGViewOptions_bwg.php:1615
632
+ #: /admin/views/BWGViewThemes_bwg.php:380
633
+ #: ../admin/views/BWGViewThemes_bwg.php:621
634
+ #: ../admin/views/BWGViewThemes_bwg.php:1362 ../admin/views/BWGViewThemes_bwg.
635
+ #: php:1594 ../admin/views/BWGViewThemes_bwg.php:3312
636
+ #: /admin/views/BWGViewThemes_bwg.php:3357
637
+ #: ../admin/views/BWGViewUninstall_bwg. php:79
638
+ #: ../admin/views/BWGViewWidgetSlideshow.php:143
639
+ #: /admin/views/BWGViewWidgetTags.php:124
640
+ #: ../admin/views/BWGViewWidgetTags.php:145
641
+ msgid "Yes"
642
+ msgstr "Ja"
643
+
644
+ #: ../admin/views/BWGViewAlbums_bwg.php:318
645
+ #: ../admin/views/BWGViewGalleries_bwg. php:633
646
+ msgid "Preview image:"
647
+ msgstr "Vorschau bild:"
648
+
649
+ #: ../admin/views/BWGViewAlbums_bwg.php:333
650
+ #: ../admin/views/BWGViewGalleries_bwg. php:646
651
+ msgid "Add Preview Image"
652
+ msgstr "In Vorschau bild"
653
+
654
+ #: ../admin/views/BWGViewAlbums_bwg.php:344
655
+ msgid "Albums And Galleries:"
656
+ msgstr "Alben und Galerien:"
657
+
658
+ #: ../admin/views/BWGViewAlbums_bwg.php:354
659
+ msgid "Add Albums/Galleries"
660
+ msgstr "In Albums / Galerien"
661
+
662
+ #: ../admin/views/BWGViewAlbums_bwg.php:366
663
+ msgid "Drag to re-order"
664
+ msgstr "Ziehen Sie die neu zu bestellen"
665
+
666
+ #: ../admin/views/BWGViewBWGShortcode.php:34
667
+ #: ../admin/views/BWGViewOptions_bwg. php:307
668
+ #: ../admin/views/BWGViewOptions_bwg.php:460 ..
669
+ #: /admin/views/BWGViewThemes_bwg.php:196
670
+ #: ../admin/views/BWGViewThemes_bwg.php:229
671
+ msgid "None"
672
+ msgstr "Keine"
673
+
674
+ #: ../admin/views/BWGViewBWGShortcode.php:35
675
+ msgid "Cube Horizontal"
676
+ msgstr "Cube Horizontal"
677
+
678
+ #: ../admin/views/BWGViewBWGShortcode.php:36
679
+ msgid "Cube Vertical"
680
+ msgstr "Cube Vertikal"
681
+
682
+ #: ../admin/views/BWGViewBWGShortcode.php:37
683
+ msgid "Fade"
684
+ msgstr "Fade"
685
+
686
+ #: ../admin/views/BWGViewBWGShortcode.php:38
687
+ msgid "Slice Horizontal"
688
+ msgstr "Scheibe Horizontal"
689
+
690
+ #: ../admin/views/BWGViewBWGShortcode.php:39
691
+ msgid "Slice Vertical"
692
+ msgstr "Scheibe Vertikal"
693
+
694
+ #: ../admin/views/BWGViewBWGShortcode.php:40
695
+ msgid "Slide Horizontal"
696
+ msgstr "Schieben Horizontal"
697
+
698
+ #: ../admin/views/BWGViewBWGShortcode.php:41
699
+ msgid "Slide Vertical"
700
+ msgstr "Schieben Vertikal"
701
+
702
+ #: ../admin/views/BWGViewBWGShortcode.php:42
703
+ msgid "Scale Out"
704
+ msgstr "Scale-Out"
705
+
706
+ #: ../admin/views/BWGViewBWGShortcode.php:43
707
+ msgid "Scale In"
708
+ msgstr "Maßstab in"
709
+
710
+ #: ../admin/views/BWGViewBWGShortcode.php:44
711
+ msgid "Block Scale"
712
+ msgstr "Block-Skala"
713
+
714
+ #: ../admin/views/BWGViewBWGShortcode.php:45
715
+ msgid "Kaleidoscope"
716
+ msgstr "Kaleidoscope"
717
+
718
+ #: ../admin/views/BWGViewBWGShortcode.php:46
719
+ msgid "Fan"
720
+ msgstr "Ventilator"
721
+
722
+ #: ../admin/views/BWGViewBWGShortcode.php:47
723
+ msgid "Blind Horizontal"
724
+ msgstr "Blind Horizontal"
725
+
726
+ #: ../admin/views/BWGViewBWGShortcode.php:48
727
+ msgid "Blind Vertical"
728
+ msgstr "Blind Vertikal"
729
+
730
+ #: ../admin/views/BWGViewBWGShortcode.php:49
731
+ #: ../admin/views/BWGViewBWGShortcode. php:216
732
+ #: ../admin/views/BWGViewWidget.php:139 ../framework/WDWLibrary.php:851
733
+ msgid "Random"
734
+ msgstr "Zufall"
735
+
736
+ #: ../admin/views/BWGViewBWGShortcode.php:97
737
+ msgid "Display"
738
+ msgstr "Anzeige"
739
+
740
+ #: ../admin/views/BWGViewBWGShortcode.php:116
741
+ #: ../admin/views/BWGViewThemes_bwg. php:274
742
+ msgid "Thumbnails"
743
+ msgstr "Thumbnails"
744
+
745
+ #: ../admin/views/BWGViewBWGShortcode.php:119
746
+ #: ../admin/views/BWGViewBWGShortcode. php:123
747
+ #: ../admin/views/BWGViewBWGShortcode.php:139 ..
748
+ #: /admin/views/BWGViewBWGShortcode.php:147 php:151
749
+ msgid "This view is disabled in free version."
750
+ msgstr "Diese Ansicht wird in der kostenlosen Version deaktiviert."
751
+
752
+ #: ../admin/views/BWGViewBWGShortcode.php:120
753
+ #: ../admin/views/BWGViewOptions_bwg. php:983
754
+ #: ../admin/views/BWGViewThemes_bwg.php:275
755
+ msgid "Masonry"
756
+ msgstr "Mauerwerk"
757
+
758
+ #: ../admin/views/BWGViewBWGShortcode.php:124
759
+ #: ../admin/views/BWGViewThemes_bwg. php:276
760
+ msgid "Mosaic"
761
+ msgstr "Mosaic"
762
+
763
+ #: ../admin/views/BWGViewBWGShortcode.php:128
764
+ #: ../admin/views/BWGViewOptions_bwg. php:109
765
+ #: ../admin/views/BWGViewThemes_bwg.php:277
766
+ msgid "Slideshow"
767
+ msgstr "Slideshow"
768
+
769
+ #: ../admin/views/BWGViewBWGShortcode.php:132
770
+ #: ../admin/views/BWGViewThemes_bwg. php:278
771
+ msgid "Image Browser"
772
+ msgstr "Bild Browser"
773
+
774
+ #: ../admin/views/BWGViewBWGShortcode.php:136
775
+ #: ../admin/views/BWGViewThemes_bwg. php:279
776
+ msgid "Compact Album"
777
+ msgstr "Compact Album"
778
+
779
+ #: ../admin/views/BWGViewBWGShortcode.php:140
780
+ #: ../admin/views/BWGViewThemes_bwg. php:280
781
+ msgid "Masonry Album"
782
+ msgstr "Maurer Album"
783
+
784
+ #: ../admin/views/BWGViewBWGShortcode.php:144
785
+ #: ../admin/views/BWGViewThemes_bwg. php:281
786
+ msgid "Extended Album"
787
+ msgstr "Erweiterte Album"
788
+
789
+ #: ../admin/views/BWGViewBWGShortcode.php:148
790
+ #: ../admin/views/BWGViewThemes_bwg. php:282
791
+ msgid "Blog Style"
792
+ msgstr "Blog-Art"
793
+
794
+ #: ../admin/views/BWGViewBWGShortcode.php:152
795
+ #: ../admin/views/BWGViewOptions_bwg. php:113
796
+ #: ../admin/views/BWGViewThemes_bwg.php:285
797
+ msgid "Carousel"
798
+ msgstr "Carousel"
799
+
800
+ #: ../admin/views/BWGViewBWGShortcode.php:161
801
+ msgid "Theme:"
802
+ msgstr "Thema:"
803
+
804
+ #: ../admin/views/BWGViewBWGShortcode.php:164
805
+ msgid "Select Theme"
806
+ msgstr "Wählen Sie Theme"
807
+
808
+ #: ../admin/views/BWGViewBWGShortcode.php:176
809
+ msgid "Gallery:"
810
+ msgstr "Galerie:"
811
+
812
+ #: ../admin/views/BWGViewBWGShortcode.php:179
813
+ #: ../admin/views/BWGViewWidget.php:116
814
+ #: ../admin/views/BWGViewWidgetSlideshow.php:106
815
+ msgid "Select Gallery"
816
+ msgstr "Wählen Sie die Galerie"
817
+
818
+ #: ../admin/views/BWGViewBWGShortcode.php:191
819
+ msgid "The selected album expanded content will be displayed."
820
+ msgstr "Das ausgewählte Album erweiterten Inhalt wird angezeigt."
821
+
822
+ #: ../admin/views/BWGViewBWGShortcode.php:191
823
+ msgid "Album:"
824
+ msgstr "Album:"
825
+
826
+ #: ../admin/views/BWGViewBWGShortcode.php:194
827
+ #: ../admin/views/BWGViewWidget.php:128
828
+ msgid "Select Album"
829
+ msgstr "Wählen Sie Album"
830
+
831
+ #: ../admin/views/BWGViewBWGShortcode.php:206
832
+ msgid "Sort images by:"
833
+ msgstr "Bilder sortieren nach:"
834
+
835
+ #: ../admin/views/BWGViewBWGShortcode.php:210
836
+ #: ../admin/views/BWGViewThemes_bwg. php:91
837
+ msgid "Title"
838
+ msgstr "Titel"
839
+
840
+ #: ../admin/views/BWGViewBWGShortcode.php:211
841
+ msgid "Date"
842
+ msgstr "Datum"
843
+
844
+ #: ../admin/views/BWGViewBWGShortcode.php:212
845
+ #: ../admin/views/BWGViewGalleries_bwg. php:822
846
+ #: ../admin/views/BWGViewGalleries_bwg.php:838 ../framework/WDWLibrary.
847
+ #: php:849
848
+ msgid "Filename"
849
+ msgstr "Dateiname"
850
+
851
+ #: ../admin/views/BWGViewBWGShortcode.php:213 ../framework/WDWLibrary.php:850
852
+ msgid "Size"
853
+ msgstr "Größe"
854
+
855
+ #: ../admin/views/BWGViewBWGShortcode.php:215
856
+ msgid "Resolution"
857
+ msgstr "Auflösung"
858
+
859
+ #: ../admin/views/BWGViewBWGShortcode.php:221
860
+ msgid "Order images"
861
+ msgstr "Sortieren Bilder"
862
+
863
+ #: ../admin/views/BWGViewBWGShortcode.php:223
864
+ msgid "Ascending"
865
+ msgstr "Aufsteigend"
866
+
867
+ #: ../admin/views/BWGViewBWGShortcode.php:224
868
+ msgid "Descending"
869
+ msgstr "Absteigend"
870
+
871
+ #: ../admin/views/BWGViewBWGShortcode.php:228
872
+ #: ../admin/views/BWGViewOptions_bwg. php:183
873
+ msgid "Show search box:"
874
+ msgstr "Zeige Suchfeld:"
875
+
876
+ #: ../admin/views/BWGViewEditThumb.php:155
877
+ msgid "You can't crop this type of image."
878
+ msgstr "Sie können nicht beschneiden diese Art von Bild."
879
+
880
+ #: ../admin/views/BWGViewEditThumb.php:224
881
+ msgid "The thumbnail successfully croped."
882
+ msgstr "Die Miniatur erfolgreich croped."
883
+
884
+ #: ../admin/views/BWGViewEditThumb.php:227
885
+ msgid "Select the area for the thumbnail."
886
+ msgstr "Wählen Sie den Bereich für das verkleinerte Bild."
887
+
888
+ #: ../admin/views/BWGViewEditThumb.php:240
889
+ msgid "Keep aspect ratio"
890
+ msgstr "Seitenverhältnis beibehalten"
891
+
892
+ #: ../admin/views/BWGViewEditThumb.php:713
893
+ msgid "Grayscale"
894
+ msgstr "Graustufen"
895
+
896
+ #: ../admin/views/BWGViewEditThumb.php:717
897
+ msgid "Negative"
898
+ msgstr "Negativ"
899
+
900
+ #: ../admin/views/BWGViewEditThumb.php:721
901
+ msgid "Removal"
902
+ msgstr "Entfernung"
903
+
904
+ #: ../admin/views/BWGViewEditThumb.php:725
905
+ msgid "Sepia"
906
+ msgstr "Sepia"
907
+
908
+ #: ../admin/views/BWGViewEditThumb.php:729
909
+ msgid "Slate"
910
+ msgstr "Schiefertafel"
911
+
912
+ #: ../admin/views/BWGViewEditThumb.php:733
913
+ msgid "Saturate"
914
+ msgstr "Sättigen"
915
+
916
+ #: ../admin/views/BWGViewEditThumb.php:737
917
+ #: ../admin/views/BWGViewGalleries_bwg. php:370
918
+ #: ../admin/views/BWGViewGalleries_bwg.php:925
919
+ msgid "Do you want to reset the image?"
920
+ msgstr "Wollen Sie, um das Bild zurückzusetzen?"
921
+
922
+ #: ../admin/views/BWGViewEditThumb.php:737
923
+ msgid "Reset image"
924
+ msgstr "Bild zurücksetzen"
925
+
926
+ #: ../admin/views/BWGViewEditThumb.php:763
927
+ msgid "Brightness"
928
+ msgstr "Glanz"
929
+
930
+ #: ../admin/views/BWGViewEditThumb.php:765
931
+ #: ../admin/views/BWGViewEditThumb.php:790
932
+ msgid "Press for result"
933
+ msgstr "Drücken Sie zum Ergebnis"
934
+
935
+ #: ../admin/views/BWGViewEditThumb.php:788
936
+ msgid "Contrast"
937
+ msgstr "Kontrastieren"
938
+
939
+ #: ../admin/views/BWGViewGalleries_bwg.php:40
940
+ msgid "This section allows you to create, edit and delete galleries."
941
+ msgstr "Dieser Abschnitt ermöglicht es Ihnen, zu schaffen, Galerien bearbeiten und löschen."
942
+
943
+ #: ../admin/views/BWGViewGalleries_bwg.php:53
944
+ msgid "Galleries"
945
+ msgstr "Galerien"
946
+
947
+ #: ../admin/views/BWGViewGalleries_bwg.php:116
948
+ msgid "Images count"
949
+ msgstr "Bilder zu zählen"
950
+
951
+ #: ../admin/views/BWGViewGalleries_bwg.php:211
952
+ msgid "Edit gallery "
953
+ msgstr "Galerie bearbeiten"
954
+
955
+ #: ../admin/views/BWGViewGalleries_bwg.php:211
956
+ msgid "Create new gallery"
957
+ msgstr "Erstellen Sie neue Galerie"
958
+
959
+ #: ../admin/views/BWGViewGalleries_bwg.php:218
960
+ msgid "This section allows you to add/edit gallery."
961
+ msgstr "Dieser Abschnitt ermöglicht es Ihnen, bearbeiten / Galerie hinzufügen."
962
+
963
+ #: ../admin/views/BWGViewGalleries_bwg.php:354 ..
964
+ #: /admin/views/BWGViewGalleries_bwg.php:918
965
+ msgid "Crop"
966
+ msgstr "Ernte"
967
+
968
+ #: ../admin/views/BWGViewGalleries_bwg.php:371 ..
969
+ #: /admin/views/BWGViewGalleries_bwg.php:733
970
+ #: ../admin/views/BWGViewGalleries_bwg. php:930
971
+ #: ../admin/views/BWGViewThemes_bwg.php:271 ../framework/WDWLibrary.php:189
972
+ #: ../framework/WDWLibrary.php:363 ../framework/WDWLibrary.php:722
973
+ #: /framework/WDWLibrary.php:784
974
+ msgid "Reset"
975
+ msgstr "Zurück."
976
+
977
+ #: ../admin/views/BWGViewGalleries_bwg.php:475 ..
978
+ #: /admin/views/BWGViewGalleries_bwg.php:738
979
+ #: ../admin/views/BWGViewGalleries_bwg. php:955
980
+ msgid "Add tag"
981
+ msgstr "Tag hinzufügen"
982
+
983
+ #: ../admin/views/BWGViewGalleries_bwg.php:553
984
+ msgid "Gallery content type:"
985
+ msgstr "Gallery Art des Inhalts:"
986
+
987
+ #: ../admin/views/BWGViewGalleries_bwg.php:556
988
+ msgid "Standard"
989
+ msgstr "Standard"
990
+
991
+ #: ../admin/views/BWGViewGalleries_bwg.php:557
992
+ msgid "Instagram only"
993
+ msgstr "Nur Instagram"
994
+
995
+ #: ../admin/views/BWGViewGalleries_bwg.php:565 ..
996
+ #: /admin/views/BWGViewGalleries_bwg.php:788
997
+ msgid "Instagram username:"
998
+ msgstr "Instagram-Benutzername:"
999
+
1000
+ #: ../admin/views/BWGViewGalleries_bwg.php:566
1001
+ #: ../admin/views/BWGViewOptions_bwg. php:670
1002
+ #: ../admin/views/BWGViewOptions_bwg.php:679 ..
1003
+ #: /admin/views/BWGViewOptions_bwg.php:689
1004
+ #: ../admin/views/BWGViewOptions_bwg.php:789
1005
+ #: ../admin/views/BWGViewOptions_bwg.php:803
1006
+ #: /admin/views/BWGViewOptions_bwg.php:813 823
1007
+ #: ../admin/views/BWGViewOptions_bwg.php:833
1008
+ #: /admin/views/BWGViewOptions_bwg.php:863 873
1009
+ #: ../admin/views/BWGViewOptions_bwg.php:883
1010
+ #: /admin/views/BWGViewOptions_bwg.php:893 903
1011
+ #: ../admin/views/BWGViewOptions_bwg.php:935
1012
+ #: /admin/views/BWGViewOptions_bwg.php:984 1129
1013
+ #: ../admin/views/BWGViewOptions_bwg.php:1136
1014
+ #: /admin/views/BWGViewOptions_bwg.php:1365
1015
+ #: ../admin/views/BWGViewWidgetSlideshow. php:121
1016
+ #: ../admin/views/BWGViewWidgetSlideshow.php:148
1017
+ msgid "This option is disabled in free version."
1018
+ msgstr "Diese Option wird in der kostenlosen Version deaktiviert."
1019
+
1020
+ #: ../admin/views/BWGViewGalleries_bwg.php:569
1021
+ msgid "Number of Instagram recent posts to add to gallery: "
1022
+ msgstr "Anzahl der Instagram neuesten Beiträge zu Galerie hinzufügen:"
1023
+
1024
+ #: ../admin/views/BWGViewGalleries_bwg.php:573 ..
1025
+ #: /admin/views/BWGViewGalleries_bwg.php:796
1026
+ msgid "Instagram embed type:"
1027
+ msgstr "Instagram embed Typ:"
1028
+
1029
+ #: ../admin/views/BWGViewGalleries_bwg.php:576 ..
1030
+ #: /admin/views/BWGViewGalleries_bwg.php:799
1031
+ msgid "Content"
1032
+ msgstr "Inhalt"
1033
+
1034
+ #: ../admin/views/BWGViewGalleries_bwg.php:578 ..
1035
+ #: /admin/views/BWGViewGalleries_bwg.php:801
1036
+ msgid "Whole post"
1037
+ msgstr "Ganzen Beitrag"
1038
+
1039
+ #: ../admin/views/BWGViewGalleries_bwg.php:582
1040
+ msgid "Gallery autoupdate option:"
1041
+ msgstr "Gallery Autoupdate-Option:"
1042
+
1043
+ #: ../admin/views/BWGViewGalleries_bwg.php:585
1044
+ msgid "No update"
1045
+ msgstr "Kein Update"
1046
+
1047
+ #: ../admin/views/BWGViewGalleries_bwg.php:587
1048
+ msgid "Add new media, keep old ones published."
1049
+ msgstr "Fügen Sie neue Medien, halten alte veröffentlicht."
1050
+
1051
+ #: ../admin/views/BWGViewGalleries_bwg.php:589
1052
+ msgid "Add new media, unpublish old ones."
1053
+ msgstr "Fügen Sie neue Medien, Unpublish alten."
1054
+
1055
+ #: ../admin/views/BWGViewGalleries_bwg.php:595
1056
+ msgid "Add Instagram Gallery"
1057
+ msgstr "In Instagram Galerie"
1058
+
1059
+ #: ../admin/views/BWGViewGalleries_bwg.php:707 ..
1060
+ #: /admin/views/BWGViewGalleries_bwg.php:708
1061
+ msgid "Add Images"
1062
+ msgstr "Bilder hinzufügen"
1063
+
1064
+ #: ../admin/views/BWGViewGalleries_bwg.php:717
1065
+ msgid "Embed Media"
1066
+ msgstr "Embed Medien"
1067
+
1068
+ #: ../admin/views/BWGViewGalleries_bwg.php:718
1069
+ msgid "Bulk Embed"
1070
+ msgstr "Groß Embed"
1071
+
1072
+ #: ../admin/views/BWGViewGalleries_bwg.php:728
1073
+ msgid "Set Watermark"
1074
+ msgstr "Stellen Sie Wate."
1075
+
1076
+ #: ../admin/views/BWGViewGalleries_bwg.php:729 ..
1077
+ #: /admin/views/BWGViewGalleries_bwg.php:816
1078
+ msgid "Resize"
1079
+ msgstr "Ändern Sie die Größe"
1080
+
1081
+ #: ../admin/views/BWGViewGalleries_bwg.php:730
1082
+ msgid "Recreate Thumbnail"
1083
+ msgstr "Erstellen Thumb."
1084
+
1085
+ #: ../admin/views/BWGViewGalleries_bwg.php:758 ..
1086
+ #: /admin/views/BWGViewGalleries_bwg.php:774
1087
+ msgid "Add to gallery"
1088
+ msgstr "Galerie hinzufügen"
1089
+
1090
+ #: ../admin/views/BWGViewGalleries_bwg.php:761
1091
+ msgid "Enter YouTube, Vimeo, Instagram, Flickr or Dailymotion URL here."
1092
+ msgstr "Geben Sie YouTube, Vimeo, Instagram, Flickr oder Dailymotion URL hier."
1093
+
1094
+ #: ../admin/views/BWGViewGalleries_bwg.php:761
1095
+ msgid "Help"
1096
+ msgstr "Hilfe"
1097
+
1098
+ #: ../admin/views/BWGViewGalleries_bwg.php:764
1099
+ msgid "Close"
1100
+ msgstr "In der Nähe"
1101
+
1102
+ #: ../admin/views/BWGViewGalleries_bwg.php:765 ..
1103
+ #: /admin/views/BWGViewGalleries_bwg.php:766
1104
+ #: ../admin/views/BWGViewGalleries_bwg. php:767
1105
+ #: ../admin/views/BWGViewGalleries_bwg.php:768
1106
+ #: /admin/views/BWGViewGalleries_bwg.php:769
1107
+ msgid "example:"
1108
+ msgstr "Beispiel:"
1109
+
1110
+ #: ../admin/views/BWGViewGalleries_bwg.php:767 ../filemanager/view.php:275
1111
+ msgid "Add"
1112
+ msgstr "Hinzufügen"
1113
+
1114
+ #: ../admin/views/BWGViewGalleries_bwg.php:767
1115
+ msgid "post"
1116
+ msgstr "Post"
1117
+
1118
+ #: ../admin/views/BWGViewGalleries_bwg.php:767
1119
+ msgid "to the end of URL if you want to embed the whole Instagram post, not only its content."
1120
+ msgstr "bis zum Ende der URL, ob Sie die ganze Instagram Beitrag, nicht nur ihren Inhalt einbetten möchten."
1121
+
1122
+ #: ../admin/views/BWGViewGalleries_bwg.php:779
1123
+ msgid "Bulk embed from:"
1124
+ msgstr "Groß embed ab:"
1125
+
1126
+ #: ../admin/views/BWGViewGalleries_bwg.php:781
1127
+ msgid "instagram"
1128
+ msgstr "Instagram"
1129
+
1130
+ #: ../admin/views/BWGViewGalleries_bwg.php:782
1131
+ msgid "Instagram"
1132
+ msgstr "Instagram"
1133
+
1134
+ #: ../admin/views/BWGViewGalleries_bwg.php:789
1135
+ msgid "Bulk embed from Instagram is disabled in free version"
1136
+ msgstr "Groß embed von Instagram ist in der kostenlosen Version deaktiviert"
1137
+
1138
+ #: ../admin/views/BWGViewGalleries_bwg.php:792
1139
+ msgid "Number of Instagram recent posts to add to gallery:"
1140
+ msgstr "Anzahl der Instagram neuesten Beiträge zu Galerie hinzufügen:"
1141
+
1142
+ #: ../admin/views/BWGViewGalleries_bwg.php:810
1143
+ msgid "Resize images to: "
1144
+ msgstr "Größe von Bildern an:"
1145
+
1146
+ #: ../admin/views/BWGViewGalleries_bwg.php:818
1147
+ msgid "The maximum size of resized image."
1148
+ msgstr "Die maximale Größe der Größe veränderte Bild."
1149
+
1150
+ #: ../admin/views/BWGViewGalleries_bwg.php:846
1151
+ msgid "Alt/Title"
1152
+ msgstr "Alt / Titel"
1153
+
1154
+ #: ../admin/views/BWGViewGalleries_bwg.php:854
1155
+ msgid "Description"
1156
+ msgstr "Bezeich."
1157
+
1158
+ #: ../admin/views/BWGViewGalleries_bwg.php:905
1159
+ msgid "Date modified"
1160
+ msgstr "Datum geändert"
1161
+
1162
+ #: ../admin/views/BWGViewGalleries_bwg.php:906
1163
+ msgid "Image Resolution"
1164
+ msgstr "Bildauflösung"
1165
+
1166
+ #: ../admin/views/BWGViewGalleries_bwg.php:907
1167
+ msgid "Image size"
1168
+ msgstr "Bildgröße"
1169
+
1170
+ #: ../admin/views/BWGViewLicensing_bwg.php:29
1171
+ msgid "ready"
1172
+ msgstr "bereit"
1173
+
1174
+ #: ../admin/views/BWGViewLicensing_bwg.php:30
1175
+ msgid "friendly"
1176
+ msgstr "freundlich"
1177
+
1178
+ #: ../admin/views/BWGViewLicensing_bwg.php:31
1179
+ msgid "Responsive Design and Layout"
1180
+ msgstr "Responsive Design und Layout"
1181
+
1182
+ #: ../admin/views/BWGViewLicensing_bwg.php:32
1183
+ msgid "5 Standard Gallery/Album Views"
1184
+ msgstr "5 Standard-Galerie / Album Ansichten"
1185
+
1186
+ #: ../admin/views/BWGViewLicensing_bwg.php:33
1187
+ msgid "Watermarking/ Advertising Possibility"
1188
+ msgstr "Watermarking / Werbemöglichkeit"
1189
+
1190
+ #: ../admin/views/BWGViewLicensing_bwg.php:34
1191
+ msgid "Basic Tag Cloud Widget"
1192
+ msgstr "Grund Tag Cloud Widget"
1193
+
1194
+ #: ../admin/views/BWGViewLicensing_bwg.php:35
1195
+ msgid "Image Download"
1196
+ msgstr "Bild herunterladen"
1197
+
1198
+ #: ../admin/views/BWGViewLicensing_bwg.php:36
1199
+ msgid "Photo Gallery Slideshow Widget"
1200
+ msgstr "Fotogalerie Slideshow Widget"
1201
+
1202
+ #: ../admin/views/BWGViewLicensing_bwg.php:37
1203
+ msgid "Photo Gallery Widget"
1204
+ msgstr "Photo Gallery Widget"
1205
+
1206
+ #: ../admin/views/BWGViewLicensing_bwg.php:38
1207
+ msgid "Slideshow/Lightbox Effects"
1208
+ msgstr "Diashow / Lichteffekte"
1209
+
1210
+ #: ../admin/views/BWGViewLicensing_bwg.php:39
1211
+ msgid "Possibility of Editing/Creating New Themes"
1212
+ msgstr "Möglichkeit Editieren / Erstellen eines neuen Themes"
1213
+
1214
+ #: ../admin/views/BWGViewLicensing_bwg.php:40
1215
+ msgid "10 Pro Gallery/Album Views"
1216
+ msgstr "10 Pro-Galerie / Album Ansichten"
1217
+
1218
+ #: ../admin/views/BWGViewLicensing_bwg.php:41
1219
+ msgid "Image Commenting"
1220
+ msgstr "Bild Kommentar"
1221
+
1222
+ #: ../admin/views/BWGViewLicensing_bwg.php:42
1223
+ msgid "Image Social Sharing"
1224
+ msgstr "Image Social Sharing-"
1225
+
1226
+ #: ../admin/views/BWGViewLicensing_bwg.php:43
1227
+ msgid "Photo Gallery Tags Cloud Widget"
1228
+ msgstr "Fotogalerie Tags Cloud Widget"
1229
+
1230
+ #: ../admin/views/BWGViewLicensing_bwg.php:44
1231
+ msgid "Instagram Integration"
1232
+ msgstr "Instagram-Integration"
1233
+
1234
+ #: ../admin/views/BWGViewLicensing_bwg.php:45
1235
+ msgid "Integration"
1236
+ msgstr "Eingliederung"
1237
+
1238
+ #: ../admin/views/BWGViewLicensing_bwg.php:46
1239
+ msgid "Add-ons Support"
1240
+ msgstr "Add-on-Unterstützung"
1241
+
1242
+ #: ../admin/views/BWGViewLicensing_bwg.php:49
1243
+ msgid "Free"
1244
+ msgstr "Frei"
1245
+
1246
+ #: ../admin/views/BWGViewLicensing_bwg.php:70
1247
+ msgid "Pro Version"
1248
+ msgstr "Pro Version"
1249
+
1250
+ #: ../admin/views/BWGViewLicensing_bwg.php:97
1251
+ msgid "After purchasing the commercial version follow these steps:"
1252
+ msgstr "Nach dem Kauf der kommerziellen Version gehen Sie folgendermaßen vor:"
1253
+
1254
+ #: ../admin/views/BWGViewLicensing_bwg.php:99
1255
+ msgid "Deactivate Photo Gallery plugin."
1256
+ msgstr "Deaktivieren Photo Gallery Plugin."
1257
+
1258
+ #: ../admin/views/BWGViewLicensing_bwg.php:100
1259
+ msgid "Delete Photo Gallery plugin."
1260
+ msgstr "Löschen Photo Gallery Plugin."
1261
+
1262
+ #: ../admin/views/BWGViewLicensing_bwg.php:101
1263
+ msgid "Install the downloaded commercial version of the plugin."
1264
+ msgstr "Installieren Sie die heruntergeladene kommerziellen Version des Plugins."
1265
+
1266
+ #: ../admin/views/BWGViewOptions_bwg.php:30
1267
+ msgid "This section allows you to change settings for different views and general options."
1268
+ msgstr "In diesem Abschnitt können Sie die Einstellungen für die verschiedenen Ansichten und allgemeine Optionen zu ändern."
1269
+
1270
+ #: ../admin/views/BWGViewOptions_bwg.php:91
1271
+ msgid "Edit options"
1272
+ msgstr "Bearbeitungsoptionen"
1273
+
1274
+ #: ../admin/views/BWGViewOptions_bwg.php:95
1275
+ #: ../admin/views/BWGViewThemes_bwg.php:267
1276
+ msgid "Do you want to reset to default?"
1277
+ msgstr "Möchten Sie auf die Standardeinstellung zurücksetzen?"
1278
+
1279
+ #: ../admin/views/BWGViewOptions_bwg.php:99
1280
+ msgid "Reset all options"
1281
+ msgstr "Setzen Sie alle Optionen"
1282
+
1283
+ #: ../admin/views/BWGViewOptions_bwg.php:104
1284
+ msgid "Global options"
1285
+ msgstr "Globale Optionen"
1286
+
1287
+ #: ../admin/views/BWGViewOptions_bwg.php:105
1288
+ msgid "Watermark"
1289
+ msgstr "Watermark"
1290
+
1291
+ #: ../admin/views/BWGViewOptions_bwg.php:106
1292
+ msgid "Advertisement"
1293
+ msgstr "Reklame"
1294
+
1295
+ #: ../admin/views/BWGViewOptions_bwg.php:107
1296
+ #: ../admin/views/BWGViewThemes_bwg.php:283
1297
+ msgid "Lightbox"
1298
+ msgstr "Leuchtkasten"
1299
+
1300
+ #: ../admin/views/BWGViewOptions_bwg.php:108
1301
+ msgid "Album options"
1302
+ msgstr "Album Optionen"
1303
+
1304
+ #: ../admin/views/BWGViewOptions_bwg.php:110
1305
+ msgid "Thumbnail options"
1306
+ msgstr "Thumbnail-Optionen"
1307
+
1308
+ #: ../admin/views/BWGViewOptions_bwg.php:111
1309
+ msgid "Image options"
1310
+ msgstr "Bildoptionen"
1311
+
1312
+ #: ../admin/views/BWGViewOptions_bwg.php:112
1313
+ msgid "Embed options"
1314
+ msgstr "Embed Optionen"
1315
+
1316
+ #: ../admin/views/BWGViewOptions_bwg.php:123
1317
+ msgid "Images directory:"
1318
+ msgstr "Bilder-Verzeichnis:"
1319
+
1320
+ #: ../admin/views/BWGViewOptions_bwg.php:128
1321
+ msgid "Input an existing directory inside the Wordpress directory to store uploaded images.<br />Old directory content will be moved to the new one."
1322
+ msgstr "Geben Sie eine vorhandene Verzeichnis innerhalb der Wordpress-Verzeichnis, um hochgeladene Bilder zu speichern. <br /> Alte Verzeichnisinhalt wird auf die neue verschoben werden."
1323
+
1324
+ #: ../admin/views/BWGViewOptions_bwg.php:133
1325
+ #: ../admin/views/BWGViewOptions_bwg. php:1550
1326
+ msgid "Image dimensions:"
1327
+ msgstr "Bild-Dimensionen:"
1328
+
1329
+ #: ../admin/views/BWGViewOptions_bwg.php:138
1330
+ msgid "The maximum size of the uploaded image (0 for original size)."
1331
+ msgstr "Die maximale Größe der hochgeladenen Bild (0 für Originalgröße)."
1332
+
1333
+ #: ../admin/views/BWGViewOptions_bwg.php:143
1334
+ msgid "Right click protection:"
1335
+ msgstr "Rechts klicken Schutz:"
1336
+
1337
+ #: ../admin/views/BWGViewOptions_bwg.php:148
1338
+ msgid "Disable image right click possibility."
1339
+ msgstr "Bild Disable rechten Maustaste auf die Möglichkeit."
1340
+
1341
+ #: ../admin/views/BWGViewOptions_bwg.php:153
1342
+ msgid "Gallery role:"
1343
+ msgstr "Gallery Rolle:"
1344
+
1345
+ #: ../admin/views/BWGViewOptions_bwg.php:178
1346
+ msgid "Only author can change an image."
1347
+ msgstr "Nur Autoren können ein Bild zu ändern."
1348
+
1349
+ #: ../admin/views/BWGViewOptions_bwg.php:193
1350
+ msgid "Search box width:"
1351
+ msgstr "Suchfeld Breite:"
1352
+
1353
+ #: ../admin/views/BWGViewOptions_bwg.php:202
1354
+ msgid "Show \"Order by\" dropdown list:"
1355
+ msgstr "Show -Sortieren nach- Dropdown-Liste:"
1356
+
1357
+ #: ../admin/views/BWGViewOptions_bwg.php:212
1358
+ msgid "Show tag box:"
1359
+ msgstr "Zeigen tag Feld:"
1360
+
1361
+ #: ../admin/views/BWGViewOptions_bwg.php:222
1362
+ msgid "Preload images:"
1363
+ msgstr "Preload Bilder:"
1364
+
1365
+ #: ../admin/views/BWGViewOptions_bwg.php:232
1366
+ msgid "Count of images:"
1367
+ msgstr "Graf von Bildern:"
1368
+
1369
+ #: ../admin/views/BWGViewOptions_bwg.php:236
1370
+ msgid "Count of images to preload (0 for all)."
1371
+ msgstr "Graf von Bildern, die Vorspannung (0 für alle)."
1372
+
1373
+ #: ../admin/views/BWGViewOptions_bwg.php:241
1374
+ msgid "Import from Media Library:"
1375
+ msgstr "Import aus der Medienbibliothek:"
1376
+
1377
+ #: ../admin/views/BWGViewOptions_bwg.php:246
1378
+ msgid "Enable import from Media Library in file manager."
1379
+ msgstr "Aktiv. Sie Import aus der Medienbibliothek im Datei-Manager."
1380
+
1381
+ #: ../admin/views/BWGViewOptions_bwg.php:251
1382
+ msgid "Enable href attribute:"
1383
+ msgstr "Aktiv. href-Attribut:"
1384
+
1385
+ #: ../admin/views/BWGViewOptions_bwg.php:256
1386
+ msgid "Disable this option only if it conflicts with your theme."
1387
+ msgstr "Deaktiv. Sie diese Option nur, wenn Sie es mit Ihrem Thema in Konflikt steht."
1388
+
1389
+ #: ../admin/views/BWGViewOptions_bwg.php:261
1390
+ msgid "Meta auto-fill:"
1391
+ msgstr "Meta auto-fill:"
1392
+
1393
+ #: ../admin/views/BWGViewOptions_bwg.php:266
1394
+ msgid "Enabling this option the meta description of the image will be automatically filled in image description field."
1395
+ msgstr "Die Aktivierung dieser Option die Meta-Beschreibung des Bildes wird automatisch in der Bildbeschreibungsfeld ausfüllen."
1396
+
1397
+ #: ../admin/views/BWGViewOptions_bwg.php:272
1398
+ msgid "Show/hide custom post types:"
1399
+ msgstr "Anzeigen / verbergen benutzerdefinierte Post-Typen:"
1400
+
1401
+ #: ../admin/views/BWGViewOptions_bwg.php:282
1402
+ msgid "Show/hide comments for custom post types:"
1403
+ msgstr "Kommentare anzeigen / verbergen für benutzerdefinierte Post-Typen:"
1404
+
1405
+ #: ../admin/views/BWGViewOptions_bwg.php:303
1406
+ msgid "Watermark type: "
1407
+ msgstr "Wassertyp:"
1408
+
1409
+ #: ../admin/views/BWGViewOptions_bwg.php:309
1410
+ #: ../admin/views/BWGViewOptions_bwg. php:462
1411
+ #: ../admin/views/BWGViewThemes_bwg.php:3366 ..
1412
+ #: /admin/views/BWGViewWidgetTags.php:118
1413
+ msgid "Text"
1414
+ msgstr "Text"
1415
+
1416
+ #: ../admin/views/BWGViewOptions_bwg.php:311
1417
+ #: ../admin/views/BWGViewOptions_bwg. php:464
1418
+ #: ../admin/views/BWGViewWidgetTags.php:119
1419
+ msgid "Image"
1420
+ msgstr "Bild"
1421
+
1422
+ #: ../admin/views/BWGViewOptions_bwg.php:317
1423
+ msgid "Watermark url: "
1424
+ msgstr "Wasser url:"
1425
+
1426
+ #: ../admin/views/BWGViewOptions_bwg.php:330
1427
+ #: ../admin/views/BWGViewOptions_bwg. php:485
1428
+ msgid "Add Image"
1429
+ msgstr "Bild hinzufügen"
1430
+
1431
+ #: ../admin/views/BWGViewOptions_bwg.php:332
1432
+ msgid "Only .png format is supported."
1433
+ msgstr "Nur .png-Format wird unterstützt."
1434
+
1435
+ #: ../admin/views/BWGViewOptions_bwg.php:337
1436
+ msgid "Watermark text: "
1437
+ msgstr "Wasserzeichentext:"
1438
+
1439
+ #: ../admin/views/BWGViewOptions_bwg.php:346
1440
+ msgid "Watermark size: "
1441
+ msgstr "Wasserzeichen-Größe:"
1442
+
1443
+ #: ../admin/views/BWGViewOptions_bwg.php:350
1444
+ msgid "Enter size of watermark in percents according to image."
1445
+ msgstr "Geben Sie Größe des Wasserzeichens in Prozent nach Bild."
1446
+
1447
+ #: ../admin/views/BWGViewOptions_bwg.php:355
1448
+ msgid "Watermark font size:"
1449
+ msgstr "Watermark Schriftgröße:"
1450
+
1451
+ #: ../admin/views/BWGViewOptions_bwg.php:364
1452
+ msgid "Watermark font style: "
1453
+ msgstr "Watermark Schriftstil:"
1454
+
1455
+ #: ../admin/views/BWGViewOptions_bwg.php:393
1456
+ msgid "Watermark color:"
1457
+ msgstr "Wasserfarbe:"
1458
+
1459
+ #: ../admin/views/BWGViewOptions_bwg.php:402
1460
+ msgid "Watermark opacity:"
1461
+ msgstr "Wassertrübung:"
1462
+
1463
+ #: ../admin/views/BWGViewOptions_bwg.php:406
1464
+ msgid "Opacity value must be in the range of 0 to 100."
1465
+ msgstr "Deckkraft-Wert muss im Bereich von 0 bis 100 sein."
1466
+
1467
+ #: ../admin/views/BWGViewOptions_bwg.php:411
1468
+ msgid "Watermark position:"
1469
+ msgstr "Wasserzeichenposition:"
1470
+
1471
+ #: ../admin/views/BWGViewOptions_bwg.php:456
1472
+ msgid "Advertisement type:"
1473
+ msgstr "Werbung Typ:"
1474
+
1475
+ #: ../admin/views/BWGViewOptions_bwg.php:470
1476
+ msgid "Advertisement url:"
1477
+ msgstr "Werbung url:"
1478
+
1479
+ #: ../admin/views/BWGViewOptions_bwg.php:487
1480
+ msgid "Enter absolute image file url or add file from Options page. (.jpg,.jpeg,.png,.gif formats are supported)"
1481
+ msgstr "Geben Sie absolute Bild-Datei-URL oder fügen Sie Datei von Optionen Seite. (.jpg, .jpeg, .png, .gif-Formate werden unterstützt)"
1482
+
1483
+ #: ../admin/views/BWGViewOptions_bwg.php:492
1484
+ msgid "Advertisement text:"
1485
+ msgstr "Werbung Text:"
1486
+
1487
+ #: ../admin/views/BWGViewOptions_bwg.php:501
1488
+ msgid "Advertisement link:"
1489
+ msgstr "Werbung Link:"
1490
+
1491
+ #: ../admin/views/BWGViewOptions_bwg.php:505
1492
+ msgid "Enter a URL to open when the advertisement banner is clicked."
1493
+ msgstr "Geben Sie eine URL zu öffnen, wenn die Werbung Banner angeklickt wird."
1494
+
1495
+ #: ../admin/views/BWGViewOptions_bwg.php:510
1496
+ msgid "Advertisement dimensions:"
1497
+ msgstr "Werbung Maße:"
1498
+
1499
+ #: ../admin/views/BWGViewOptions_bwg.php:515
1500
+ msgid "Maximum values for watermark image width and height."
1501
+ msgstr "Maximalwerte für die Wasserzeichenbildbreite und -höhe."
1502
+
1503
+ #: ../admin/views/BWGViewOptions_bwg.php:520
1504
+ msgid "Advertisement font size:"
1505
+ msgstr "Werbung Schriftgröße:"
1506
+
1507
+ #: ../admin/views/BWGViewOptions_bwg.php:529
1508
+ msgid "Advertisement font style:"
1509
+ msgstr "Werbung Schriftstil:"
1510
+
1511
+ #: ../admin/views/BWGViewOptions_bwg.php:546
1512
+ msgid "Advertisement color:"
1513
+ msgstr "Werbung Farbe:"
1514
+
1515
+ #: ../admin/views/BWGViewOptions_bwg.php:555
1516
+ msgid "Advertisement opacity:"
1517
+ msgstr "Werbung Deckkraft:"
1518
+
1519
+ #: ../admin/views/BWGViewOptions_bwg.php:559
1520
+ #: ../admin/views/BWGViewThemes_bwg.php:403
1521
+ #: ../admin/views/BWGViewThemes_bwg.php:416 ../admin/views/BWGViewThemes_bwg.
1522
+ #: php:560 ../admin/views/BWGViewThemes_bwg.php:573 ..
1523
+ #: /admin/views/BWGViewThemes_bwg.php:844 930
1524
+ #: ../admin/views/BWGViewThemes_bwg.php:983 php:1052
1525
+ #: ../admin/views/BWGViewThemes_bwg.php:1165
1526
+ #: /admin/views/BWGViewThemes_bwg.php:1383 1396
1527
+ #: ../admin/views/BWGViewThemes_bwg.php:1617
1528
+ #: /admin/views/BWGViewThemes_bwg.php:1657 1736
1529
+ #: ../admin/views/BWGViewThemes_bwg.php:2054
1530
+ #: /admin/views/BWGViewThemes_bwg.php:2225 2261
1531
+ #: ../admin/views/BWGViewThemes_bwg.php:2314
1532
+ #: /admin/views/BWGViewThemes_bwg.php:2341 2626
1533
+ #: ../admin/views/BWGViewThemes_bwg.php:2748
1534
+ #: /admin/views/BWGViewThemes_bwg.php:2878 3305
1535
+ msgid "Value must be between 0 to 100."
1536
+ msgstr "Der Wert muss zwischen 0 und 100 sein."
1537
+
1538
+ #: ../admin/views/BWGViewOptions_bwg.php:564
1539
+ msgid "Advertisement position:"
1540
+ msgstr "Werbung Position:"
1541
+
1542
+ #: ../admin/views/BWGViewOptions_bwg.php:609
1543
+ msgid "Full width lightbox:"
1544
+ msgstr "Volle Breite Leuchtkasten:"
1545
+
1546
+ #: ../admin/views/BWGViewOptions_bwg.php:614
1547
+ msgid "Enable full width feature for the lightbox."
1548
+ msgstr "Aktiv. volle Breite Feature für den Leuchtkasten."
1549
+
1550
+ #: ../admin/views/BWGViewOptions_bwg.php:619
1551
+ msgid "Lightbox dimensions:"
1552
+ msgstr "Lightbox Abmess.:"
1553
+
1554
+ #: ../admin/views/BWGViewOptions_bwg.php:629
1555
+ msgid "Lightbox effect:"
1556
+ msgstr "Lightbox-Effekt:"
1557
+
1558
+ #: ../admin/views/BWGViewOptions_bwg.php:636
1559
+ msgid "This effect is disabled in free version."
1560
+ msgstr "Dieser Effekt wird in der kostenlosen Version deaktiviert."
1561
+
1562
+ #: ../admin/views/BWGViewOptions_bwg.php:646
1563
+ msgid "Lightbox autoplay:"
1564
+ msgstr "Lightbox autoplay:"
1565
+
1566
+ #: ../admin/views/BWGViewOptions_bwg.php:656
1567
+ #: ../admin/views/BWGViewOptions_bwg. php:1067
1568
+ #: ../admin/views/BWGViewOptions_bwg.php:1523 ..
1569
+ #: /admin/views/BWGViewWidgetSlideshow.php:138
1570
+ msgid "Time interval:"
1571
+ msgstr "Zeitintervall:"
1572
+
1573
+ #: ../admin/views/BWGViewOptions_bwg.php:665
1574
+ msgid "Enable filmstrip:"
1575
+ msgstr "Aktiv. Filmstreifen:"
1576
+
1577
+ #: ../admin/views/BWGViewOptions_bwg.php:675
1578
+ msgid "Filmstrip size:"
1579
+ msgstr "Filmstreifen Größe:"
1580
+
1581
+ #: ../admin/views/BWGViewOptions_bwg.php:684
1582
+ msgid "Display hit counter:"
1583
+ msgstr "Anzeigen hit counter:"
1584
+
1585
+ #: ../admin/views/BWGViewOptions_bwg.php:694
1586
+ #: ../admin/views/BWGViewOptions_bwg. php:1106
1587
+ msgid "Show Next / Previous buttons:"
1588
+ msgstr "Zeigen Sie Vor / Zurück-Tasten:"
1589
+
1590
+ #: ../admin/views/BWGViewOptions_bwg.php:697
1591
+ #: ../admin/views/BWGViewOptions_bwg. php:1109
1592
+ msgid "On hover"
1593
+ msgstr "Auf schweben"
1594
+
1595
+ #: ../admin/views/BWGViewOptions_bwg.php:698
1596
+ #: ../admin/views/BWGViewOptions_bwg. php:1110
1597
+ msgid "Always"
1598
+ msgstr "Immer"
1599
+
1600
+ #: ../admin/views/BWGViewOptions_bwg.php:704
1601
+ #: ../admin/views/BWGViewOptions_bwg. php:1116
1602
+ msgid "Enable control buttons:"
1603
+ msgstr "Aktiv. Steuertasten:"
1604
+
1605
+ #: ../admin/views/BWGViewOptions_bwg.php:738
1606
+ msgid "Enable fullscreen:"
1607
+ msgstr "Aktiv. Sie Vollbild:"
1608
+
1609
+ #: ../admin/views/BWGViewOptions_bwg.php:748
1610
+ msgid "Enable info:"
1611
+ msgstr "Aktiv. Info:"
1612
+
1613
+ #: ../admin/views/BWGViewOptions_bwg.php:758
1614
+ msgid "Display info by default:"
1615
+ msgstr "Display Info standardmäßig:"
1616
+
1617
+ #: ../admin/views/BWGViewOptions_bwg.php:768
1618
+ msgid "Full width info:"
1619
+ msgstr "Volle Breite Info:"
1620
+
1621
+ #: ../admin/views/BWGViewOptions_bwg.php:773
1622
+ msgid "Display image information based on the lightbox dimensions."
1623
+ msgstr "Bildanzeigeinformationen auf der Grundlage der Leuchtkasten Dimensionen."
1624
+
1625
+ #: ../admin/views/BWGViewOptions_bwg.php:784
1626
+ msgid "Enable rating:"
1627
+ msgstr "Aktiv. von Reisenden:"
1628
+
1629
+ #: ../admin/views/BWGViewOptions_bwg.php:794
1630
+ msgid "Enable comments:"
1631
+ msgstr "Aktiv. Kom."
1632
+
1633
+ #: ../admin/views/BWGViewOptions_bwg.php:808
1634
+ msgid "Enable comments moderation:"
1635
+ msgstr "Aktiv. Kommentare Moderation:"
1636
+
1637
+ #: ../admin/views/BWGViewOptions_bwg.php:818
1638
+ msgid "Enable Email for comments:"
1639
+ msgstr "Aktiv. Sie per E-Mail für Bemerkungen:"
1640
+
1641
+ #: ../admin/views/BWGViewOptions_bwg.php:828
1642
+ msgid "Enable Captcha for comments:"
1643
+ msgstr "Captcha-Freigabe für Kommentare:"
1644
+
1645
+ #: ../admin/views/BWGViewOptions_bwg.php:838
1646
+ msgid "Enable original image display button:"
1647
+ msgstr "Aktiv. Originalbildanzeige-Taste:"
1648
+
1649
+ #: ../admin/views/BWGViewOptions_bwg.php:848
1650
+ msgid "Enable download button:"
1651
+ msgstr "Aktiv. Sie Download-Button:"
1652
+
1653
+ #: ../admin/views/BWGViewOptions_bwg.php:858
1654
+ msgid "Enable Facebook button:"
1655
+ msgstr "Aktiv. Sie Facebook-Taste:"
1656
+
1657
+ #: ../admin/views/BWGViewOptions_bwg.php:868
1658
+ msgid "Enable Twitter button:"
1659
+ msgstr "Aktiv. Sie Twitter-Taste:"
1660
+
1661
+ #: ../admin/views/BWGViewOptions_bwg.php:878
1662
+ msgid "Enable Google+ button:"
1663
+ msgstr "Aktiv. Google+ Button:"
1664
+
1665
+ #: ../admin/views/BWGViewOptions_bwg.php:888
1666
+ msgid "Enable Pinterest button:"
1667
+ msgstr "Aktiv. Pinterest Button:"
1668
+
1669
+ #: ../admin/views/BWGViewOptions_bwg.php:898
1670
+ msgid "Enable Tumblr button:"
1671
+ msgstr "Aktiv. Tumblr Taste:"
1672
+
1673
+ #: ../admin/views/BWGViewOptions_bwg.php:908
1674
+ msgid "Show images count:"
1675
+ msgstr "Bilder ansehen zählen:"
1676
+
1677
+ #: ../admin/views/BWGViewOptions_bwg.php:918
1678
+ msgid "Enable loop:"
1679
+ msgstr "Aktiv. Schleife:"
1680
+
1681
+ #: ../admin/views/BWGViewOptions_bwg.php:928
1682
+ msgid "Enable"
1683
+ msgstr "Aktivieren"
1684
+
1685
+ #: ../admin/views/BWGViewOptions_bwg.php:951
1686
+ msgid "Number of album columns:"
1687
+ msgstr "Anzahl der Album Spalten:"
1688
+
1689
+ #: ../admin/views/BWGViewOptions_bwg.php:960
1690
+ msgid "Albums per page:"
1691
+ msgstr "Alben Pro Seite:"
1692
+
1693
+ #: ../admin/views/BWGViewOptions_bwg.php:969
1694
+ msgid "Enable pagination:"
1695
+ msgstr "Aktiv. Paginierung:"
1696
+
1697
+ #: ../admin/views/BWGViewOptions_bwg.php:979
1698
+ msgid "Album view type:"
1699
+ msgstr "Album Ansicht Typ:"
1700
+
1701
+ #: ../admin/views/BWGViewOptions_bwg.php:989
1702
+ msgid "Show title:"
1703
+ msgstr "Zeigen Titel:"
1704
+
1705
+ #: ../admin/views/BWGViewOptions_bwg.php:992
1706
+ #: ../admin/views/BWGViewOptions_bwg. php:1344
1707
+ msgid "Show on hover"
1708
+ msgstr "Auf schweben anzeigen"
1709
+
1710
+ #: ../admin/views/BWGViewOptions_bwg.php:993
1711
+ #: ../admin/views/BWGViewOptions_bwg. php:1345
1712
+ msgid "Always show"
1713
+ msgstr "Immer anzeigen"
1714
+
1715
+ #: ../admin/views/BWGViewOptions_bwg.php:994
1716
+ #: ../admin/views/BWGViewOptions_bwg. php:1346
1717
+ msgid "Don't show"
1718
+ msgstr "Nicht mehr anzeigen"
1719
+
1720
+ #: ../admin/views/BWGViewOptions_bwg.php:1000
1721
+ msgid "Show album/gallery name:"
1722
+ msgstr "Zeigen Album / Name der Galerie:"
1723
+
1724
+ #: ../admin/views/BWGViewOptions_bwg.php:1010
1725
+ msgid "Enable extended album description:"
1726
+ msgstr "Aktiv. Sie die erweiterten Album Beschreibung:"
1727
+
1728
+ #: ../admin/views/BWGViewOptions_bwg.php:1020
1729
+ msgid "Album thumbnail dimensions:"
1730
+ msgstr "Album Vorschaubild Maße:"
1731
+
1732
+ #: ../admin/views/BWGViewOptions_bwg.php:1030
1733
+ msgid "Extended album height:"
1734
+ msgstr "Erweiterte Album Höhe:"
1735
+
1736
+ #: ../admin/views/BWGViewOptions_bwg.php:1050 ..
1737
+ #: /admin/views/BWGViewWidgetSlideshow.php:126
1738
+ msgid "Slideshow effect:"
1739
+ msgstr "Diashow-Effekt:"
1740
+
1741
+ #: ../admin/views/BWGViewOptions_bwg.php:1076
1742
+ msgid "Slideshow dimensions:"
1743
+ msgstr "Diashow Abmess.:"
1744
+
1745
+ #: ../admin/views/BWGViewOptions_bwg.php:1086
1746
+ #: ../admin/views/BWGViewOptions_bwg. php:1582
1747
+ msgid "Enable autoplay:"
1748
+ msgstr "Aktiv. autoplay:"
1749
+
1750
+ #: ../admin/views/BWGViewOptions_bwg.php:1096 ..
1751
+ #: /admin/views/BWGViewWidgetSlideshow.php:142
1752
+ msgid "Enable shuffle:"
1753
+ msgstr "Aktiv. Shuffle:"
1754
+
1755
+ #: ../admin/views/BWGViewOptions_bwg.php:1125
1756
+ msgid "Enable slideshow filmstrip:"
1757
+ msgstr "Aktiv. Diashow Filmstreifen:"
1758
+
1759
+ #: ../admin/views/BWGViewOptions_bwg.php:1133
1760
+ msgid "Slideshow filmstrip size:"
1761
+ msgstr "Slideshow Filmstreifen Größe:"
1762
+
1763
+ #: ../admin/views/BWGViewOptions_bwg.php:1146
1764
+ #: ../admin/views/BWGViewOptions_bwg. php:1573
1765
+ msgid "Enable image title:"
1766
+ msgstr "Aktiv. Bildtitel:"
1767
+
1768
+ #: ../admin/views/BWGViewOptions_bwg.php:1154
1769
+ #: ../admin/views/BWGViewThemes_bwg. php:440
1770
+ #: ../admin/views/BWGViewThemes_bwg.php:1420
1771
+ msgid "Title position:"
1772
+ msgstr "Titel Position:"
1773
+
1774
+ #: ../admin/views/BWGViewOptions_bwg.php:1175
1775
+ msgid "Image title position on slideshow"
1776
+ msgstr "Titel der Position auf slideshow"
1777
+
1778
+ #: ../admin/views/BWGViewOptions_bwg.php:1180
1779
+ msgid "Full width title:"
1780
+ msgstr "Volle Breite Titel:"
1781
+
1782
+ #: ../admin/views/BWGViewOptions_bwg.php:1185
1783
+ msgid "Display image title based on the slideshow dimensions."
1784
+ msgstr "Bildanzeigetitel auf der Grundlage der Diashow Dimensionen."
1785
+
1786
+ #: ../admin/views/BWGViewOptions_bwg.php:1189
1787
+ msgid "Enable image description: "
1788
+ msgstr "Aktivieren Bildbeschreibung:"
1789
+
1790
+ #: ../admin/views/BWGViewOptions_bwg.php:1197
1791
+ msgid "Description position:"
1792
+ msgstr "Beschreibung Lage:"
1793
+
1794
+ #: ../admin/views/BWGViewOptions_bwg.php:1218
1795
+ msgid "Image description position on slideshow"
1796
+ msgstr "Bildbeschreibung Position auf slideshow"
1797
+
1798
+ #: ../admin/views/BWGViewOptions_bwg.php:1223
1799
+ msgid "Enable slideshow Music:"
1800
+ msgstr "Aktiv. Diashow Musik:"
1801
+
1802
+ #: ../admin/views/BWGViewOptions_bwg.php:1233
1803
+ msgid "Music url:"
1804
+ msgstr "Musik url:"
1805
+
1806
+ #: ../admin/views/BWGViewOptions_bwg.php:1246
1807
+ msgid "Add Music"
1808
+ msgstr "In Musik"
1809
+
1810
+ #: ../admin/views/BWGViewOptions_bwg.php:1248
1811
+ msgid "Only"
1812
+ msgstr "Nur"
1813
+
1814
+ #: ../admin/views/BWGViewOptions_bwg.php:1248
1815
+ msgid "formats are supported."
1816
+ msgstr "Formate unterstützt."
1817
+
1818
+ #: ../admin/views/BWGViewOptions_bwg.php:1264
1819
+ msgid "Masonry:"
1820
+ msgstr "Mauerwerk:"
1821
+
1822
+ #: ../admin/views/BWGViewOptions_bwg.php:1267
1823
+ #: ../admin/views/BWGViewOptions_bwg. php:1278
1824
+ msgid "Horizontal"
1825
+ msgstr "Horizontal"
1826
+
1827
+ #: ../admin/views/BWGViewOptions_bwg.php:1268
1828
+ #: ../admin/views/BWGViewOptions_bwg. php:1277
1829
+ msgid "Vertical"
1830
+ msgstr "Vertikal"
1831
+
1832
+ #: ../admin/views/BWGViewOptions_bwg.php:1274
1833
+ msgid "Mosaic:"
1834
+ msgstr "Mosaic:"
1835
+
1836
+ #: ../admin/views/BWGViewOptions_bwg.php:1284
1837
+ msgid "Resizable mosaic:"
1838
+ msgstr "Resizable Mosaik:"
1839
+
1840
+ #: ../admin/views/BWGViewOptions_bwg.php:1294
1841
+ msgid "Total width of mosaic:"
1842
+ msgstr "Gesamtbreite von Mosaik:"
1843
+
1844
+ #: ../admin/views/BWGViewOptions_bwg.php:1298
1845
+ msgid "Width of mosaic as a percentage of container's width."
1846
+ msgstr "Breite des Mosaiks in Prozent der Breite des Behälters."
1847
+
1848
+ #: ../admin/views/BWGViewOptions_bwg.php:1303
1849
+ msgid "Number of image columns:"
1850
+ msgstr "Anzahl der Bildspalten:"
1851
+
1852
+ #: ../admin/views/BWGViewOptions_bwg.php:1312
1853
+ msgid "Images per page:"
1854
+ msgstr "Bilder pro Seite:"
1855
+
1856
+ #: ../admin/views/BWGViewOptions_bwg.php:1321
1857
+ msgid "Generated thumbnail dimensions:"
1858
+ msgstr "Erzeugt Vorschaubild Maße:"
1859
+
1860
+ #: ../admin/views/BWGViewOptions_bwg.php:1326
1861
+ msgid "The maximum size of the generated thumbnail. Its dimensions should be larger than the ones of the frontend thumbnail."
1862
+ msgstr "Die maximale Größe des erzeugten Miniaturansicht. Seine Abmessungen sollte größer sein als die des Frontends Thumbnail sein."
1863
+
1864
+ #: ../admin/views/BWGViewOptions_bwg.php:1331
1865
+ msgid "Frontend thumbnail dimensions:"
1866
+ msgstr "Frontend Vorschaubild Maße:"
1867
+
1868
+ #: ../admin/views/BWGViewOptions_bwg.php:1336
1869
+ msgid "The default size of the thumbnail which will be displayed in the website"
1870
+ msgstr "Die Standardgröße der Miniaturansicht, die auf der Webseite angezeigt wird,"
1871
+
1872
+ #: ../admin/views/BWGViewOptions_bwg.php:1341
1873
+ msgid "Show image title:"
1874
+ msgstr "Zeigen Bildtitel:"
1875
+
1876
+ #: ../admin/views/BWGViewOptions_bwg.php:1351
1877
+ msgid "Show gallery name:"
1878
+ msgstr "Galerie anzeigen Name:"
1879
+
1880
+ #: ../admin/views/BWGViewOptions_bwg.php:1360
1881
+ msgid "Show description in Vertical Masonry view:"
1882
+ msgstr "Weitere Beschreibung in Vertical Mauerblick:"
1883
+
1884
+ #: ../admin/views/BWGViewOptions_bwg.php:1369
1885
+ msgid "Enable image pagination:"
1886
+ msgstr "Aktiv. Bildseitenumbruch:"
1887
+
1888
+ #: ../admin/views/BWGViewOptions_bwg.php:1377
1889
+ msgid "Thumbnail click action:"
1890
+ msgstr "Bildansicht Klick Aktion:"
1891
+
1892
+ #: ../admin/views/BWGViewOptions_bwg.php:1379
1893
+ msgid "Open lightbox"
1894
+ msgstr "Offene Leuchtkasten"
1895
+
1896
+ #: ../admin/views/BWGViewOptions_bwg.php:1380
1897
+ msgid "Redirect to url"
1898
+ msgstr "Leiten Sie die URL-"
1899
+
1900
+ #: ../admin/views/BWGViewOptions_bwg.php:1381
1901
+ msgid "Do Nothing"
1902
+ msgstr "Nichts tun"
1903
+
1904
+ #: ../admin/views/BWGViewOptions_bwg.php:1386
1905
+ msgid "Open in a new window:"
1906
+ msgstr "Öffnen Sie in einem neuen Fenster:"
1907
+
1908
+ #: ../admin/views/BWGViewOptions_bwg.php:1394
1909
+ msgid "Play icon over the video thumbnail:"
1910
+ msgstr "Spielen Sie Symbol über das video thumbnail:"
1911
+
1912
+ #: ../admin/views/BWGViewOptions_bwg.php:1411
1913
+ msgid "Enable image title for Image Browser view:"
1914
+ msgstr "Aktiv. Bild Titel für Bildsuchansicht:"
1915
+
1916
+ #: ../admin/views/BWGViewOptions_bwg.php:1421
1917
+ msgid "Enable image description for Image Browser view:"
1918
+ msgstr "Aktiv. Bildbeschreibung für Bildsuchansicht:"
1919
+
1920
+ #: ../admin/views/BWGViewOptions_bwg.php:1431
1921
+ msgid "Image width for Image Browser view:"
1922
+ msgstr "Bildbreite zur Bildsuchansicht:"
1923
+
1924
+ #: ../admin/views/BWGViewOptions_bwg.php:1440
1925
+ msgid "The Blog Style view is disabled in free version."
1926
+ msgstr "Der Blog der Design-Ansicht wird in der kostenlosen Version deaktiviert."
1927
+
1928
+ #: ../admin/views/BWGViewOptions_bwg.php:1445
1929
+ msgid "Enable image title for Blog Style view:"
1930
+ msgstr "Aktiv. Bildtitel für Blog Design-Ansicht:"
1931
+
1932
+ #: ../admin/views/BWGViewOptions_bwg.php:1455
1933
+ msgid "Image width for Blog Style view:"
1934
+ msgstr "Bildbreite für Blog Design-Ansicht:"
1935
+
1936
+ #: ../admin/views/BWGViewOptions_bwg.php:1464
1937
+ msgid "Images per page in Blog Style view:"
1938
+ msgstr "Bilder pro Seite in Blog Design-Ansicht:"
1939
+
1940
+ #: ../admin/views/BWGViewOptions_bwg.php:1473
1941
+ msgid "Enable pagination for Blog Style view:"
1942
+ msgstr "Aktiv. Paginierung für Blog Design-Ansicht:"
1943
+
1944
+ #: ../admin/views/BWGViewOptions_bwg.php:1490
1945
+ msgid "Gallery autoupdate interval:"
1946
+ msgstr "Gallery autoupdate-Intervall:"
1947
+
1948
+ #: ../admin/views/BWGViewOptions_bwg.php:1494
1949
+ msgid "hour"
1950
+ msgstr "Stunde"
1951
+
1952
+ #: ../admin/views/BWGViewOptions_bwg.php:1496
1953
+ msgid "min"
1954
+ msgstr "min"
1955
+
1956
+ #: ../admin/views/BWGViewOptions_bwg.php:1497
1957
+ msgid "Autoupdatable galleries are disabled in free version."
1958
+ msgstr "Autoupdatable Galerien sind in der kostenlosen Version deaktiviert."
1959
+
1960
+ #: ../admin/views/BWGViewOptions_bwg.php:1507
1961
+ msgid "galleries are disabled in free version."
1962
+ msgstr "Galerien sind in der kostenlosen Version deaktiviert."
1963
+
1964
+ #: ../admin/views/BWGViewOptions_bwg.php:1532
1965
+ msgid "Max. number of images:"
1966
+ msgstr "Max. Anzahl der Bilder:"
1967
+
1968
+ #: ../admin/views/BWGViewOptions_bwg.php:1541
1969
+ msgid "Carousel image ratio:"
1970
+ msgstr "Carousel Bildverhältnis:"
1971
+
1972
+ #: ../admin/views/BWGViewOptions_bwg.php:1560
1973
+ msgid "Fixed width:"
1974
+ msgstr "Feste Breite:"
1975
+
1976
+ #: ../admin/views/BWGViewOptions_bwg.php:1592
1977
+ msgid "Container fit:"
1978
+ msgstr "Container fit:"
1979
+
1980
+ #: ../admin/views/BWGViewOptions_bwg.php:1602
1981
+ msgid "Next/Previous buttons:"
1982
+ msgstr "Vor / Zurück-Tasten:"
1983
+
1984
+ #: ../admin/views/BWGViewOptions_bwg.php:1612
1985
+ msgid "Play/Pause button:"
1986
+ msgstr "Wiedergabe / Pause-Taste:"
1987
+
1988
+ #: ../admin/views/BWGViewOptions_bwg.php:1625
1989
+ msgid "Carousel view is disabled in free version."
1990
+ msgstr "Karussell-Ansicht wird in der kostenlosen Version deaktiviert."
1991
+
1992
+ #: ../admin/views/BWGViewTags_bwg.php:43
1993
+ msgid "This section allows you to create, edit and delete tags."
1994
+ msgstr "Dieser Abschnitt ermöglicht es Ihnen, zu erstellen, Tags bearbeiten und löschen."
1995
+
1996
+ #: ../admin/views/BWGViewTags_bwg.php:107
1997
+ msgid "Count"
1998
+ msgstr "Zählen"
1999
+
2000
+ #: ../admin/views/BWGViewTags_bwg.php:126
2001
+ msgid "Add Tag"
2002
+ msgstr "Tag hinzufügen"
2003
+
2004
+ #: ../admin/views/BWGViewThemes_bwg.php:39
2005
+ msgid "This section allows you to create, edit and delete themes."
2006
+ msgstr "Dieser Abschnitt ermöglicht es Ihnen, zu schaffen, Themen bearbeiten und löschen."
2007
+
2008
+ #: ../admin/views/BWGViewThemes_bwg.php:45
2009
+ msgid "This feature is disabled for the non-commercial version."
2010
+ msgstr "Diese Funktion wird für die nicht-kommerzielle Version deaktiviert."
2011
+
2012
+ #: ../admin/views/BWGViewThemes_bwg.php:117 ../framework/WDWLibrary.php:848
2013
+ msgid "Default"
2014
+ msgstr "Standard"
2015
+
2016
+ #: ../admin/views/BWGViewThemes_bwg.php:197
2017
+ msgid "Solid"
2018
+ msgstr "Solide"
2019
+
2020
+ #: ../admin/views/BWGViewThemes_bwg.php:198
2021
+ msgid "Dotted"
2022
+ msgstr "Gepunktete"
2023
+
2024
+ #: ../admin/views/BWGViewThemes_bwg.php:199
2025
+ msgid "Dashed"
2026
+ msgstr "Eine gestrichelte"
2027
+
2028
+ #: ../admin/views/BWGViewThemes_bwg.php:200
2029
+ #: ../admin/views/BWGViewThemes_bwg.php:237
2030
+ msgid "Double"
2031
+ msgstr "Doppel"
2032
+
2033
+ #: ../admin/views/BWGViewThemes_bwg.php:201
2034
+ msgid "Groove"
2035
+ msgstr "Rille"
2036
+
2037
+ #: ../admin/views/BWGViewThemes_bwg.php:202
2038
+ msgid "Ridge"
2039
+ msgstr "Kamm"
2040
+
2041
+ #: ../admin/views/BWGViewThemes_bwg.php:203
2042
+ msgid "Inset"
2043
+ msgstr "Einsatz"
2044
+
2045
+ #: ../admin/views/BWGViewThemes_bwg.php:204
2046
+ msgid "Outset"
2047
+ msgstr "Anfang"
2048
+
2049
+ #: ../admin/views/BWGViewThemes_bwg.php:219
2050
+ #: ../admin/views/BWGViewThemes_bwg.php:783
2051
+ #: ../admin/views/BWGViewThemes_bwg.php:2566 ../admin/views/BWGViewThemes_bwg.
2052
+ #: php:3020
2053
+ msgid "Left"
2054
+ msgstr "Links"
2055
+
2056
+ #: ../admin/views/BWGViewThemes_bwg.php:220
2057
+ msgid "Center"
2058
+ msgstr "Zentrum"
2059
+
2060
+ #: ../admin/views/BWGViewThemes_bwg.php:221
2061
+ #: ../admin/views/BWGViewThemes_bwg.php:781
2062
+ #: ../admin/views/BWGViewThemes_bwg.php:2564 ../admin/views/BWGViewThemes_bwg.
2063
+ #: php:3022
2064
+ msgid "Right"
2065
+ msgstr "Recht"
2066
+
2067
+ #: ../admin/views/BWGViewThemes_bwg.php:224
2068
+ msgid "Lighter"
2069
+ msgstr "Feuerzeug"
2070
+
2071
+ #: ../admin/views/BWGViewThemes_bwg.php:225
2072
+ msgid "Normal"
2073
+ msgstr "Normal"
2074
+
2075
+ #: ../admin/views/BWGViewThemes_bwg.php:226
2076
+ msgid "Bold"
2077
+ msgstr "Fett"
2078
+
2079
+ #: ../admin/views/BWGViewThemes_bwg.php:230
2080
+ msgid "Rotate"
2081
+ msgstr "Drehen"
2082
+
2083
+ #: ../admin/views/BWGViewThemes_bwg.php:231
2084
+ msgid "Scale"
2085
+ msgstr "Maßstab"
2086
+
2087
+ #: ../admin/views/BWGViewThemes_bwg.php:232
2088
+ msgid "Skew"
2089
+ msgstr "Skew"
2090
+
2091
+ #: ../admin/views/BWGViewThemes_bwg.php:235
2092
+ msgid "Chevron"
2093
+ msgstr "Chevron"
2094
+
2095
+ #: ../admin/views/BWGViewThemes_bwg.php:236
2096
+ msgid "Angle"
2097
+ msgstr "Winkel"
2098
+
2099
+ #: ../admin/views/BWGViewThemes_bwg.php:240
2100
+ msgid "Star"
2101
+ msgstr "Sterne-"
2102
+
2103
+ #: ../admin/views/BWGViewThemes_bwg.php:241
2104
+ msgid "Bell"
2105
+ msgstr "Klingel"
2106
+
2107
+ #: ../admin/views/BWGViewThemes_bwg.php:242
2108
+ msgid "Circle"
2109
+ msgstr "Kreis"
2110
+
2111
+ #: ../admin/views/BWGViewThemes_bwg.php:243
2112
+ msgid "Flag"
2113
+ msgstr "Flagge"
2114
+
2115
+ #: ../admin/views/BWGViewThemes_bwg.php:244
2116
+ msgid "Heart"
2117
+ msgstr "Herz"
2118
+
2119
+ #: ../admin/views/BWGViewThemes_bwg.php:245
2120
+ msgid "Square"
2121
+ msgstr "Platz"
2122
+
2123
+ #: ../admin/views/BWGViewThemes_bwg.php:250
2124
+ msgid "This section allows you to add/edit theme."
2125
+ msgstr "Dieser Abschnitt ermöglicht es Ihnen, bearbeiten / Thema hinzuzufügen."
2126
+
2127
+ #: ../admin/views/BWGViewThemes_bwg.php:280
2128
+ msgid "This tab is disabled in free version"
2129
+ msgstr "Dieses Register wird in der kostenlosen Version deaktiviert"
2130
+
2131
+ #: ../admin/views/BWGViewThemes_bwg.php:284
2132
+ msgid "Page Navigation"
2133
+ msgstr "Seitennavigation"
2134
+
2135
+ #: ../admin/views/BWGViewThemes_bwg.php:289
2136
+ msgid "Parameters"
2137
+ msgstr "Parameter"
2138
+
2139
+ #: ../admin/views/BWGViewThemes_bwg.php:304
2140
+ #: ../admin/views/BWGViewThemes_bwg.php:1109
2141
+ #: ../admin/views/BWGViewThemes_bwg.php:1291 ..
2142
+ #: /admin/views/BWGViewThemes_bwg.php:1714 2072
2143
+ #: ../admin/views/BWGViewThemes_bwg.php:3282
2144
+ msgid "Margin:"
2145
+ msgstr "Margin:"
2146
+
2147
+ #: ../admin/views/BWGViewThemes_bwg.php:310
2148
+ #: ../admin/views/BWGViewThemes_bwg.php:512
2149
+ #: ../admin/views/BWGViewThemes_bwg.php:1116 ../admin/views/BWGViewThemes_bwg.
2150
+ #: php:1284 ../admin/views/BWGViewThemes_bwg.php:1721 ..
2151
+ #: /admin/views/BWGViewThemes_bwg.php:2079 3289
2152
+ msgid "Padding:"
2153
+ msgstr "Padding:"
2154
+
2155
+ #: ../admin/views/BWGViewThemes_bwg.php:316
2156
+ #: ../admin/views/BWGViewThemes_bwg.php:518
2157
+ #: ../admin/views/BWGViewThemes_bwg.php:1123 ../admin/views/BWGViewThemes_bwg.
2158
+ #: php:1298 ../admin/views/BWGViewThemes_bwg.php:2125 ..
2159
+ #: /admin/views/BWGViewThemes_bwg.php:3243
2160
+ msgid "Border width:"
2161
+ msgstr "Randbreite:"
2162
+
2163
+ #: ../admin/views/BWGViewThemes_bwg.php:322
2164
+ #: ../admin/views/BWGViewThemes_bwg.php:524
2165
+ #: ../admin/views/BWGViewThemes_bwg.php:1129 ../admin/views/BWGViewThemes_bwg.
2166
+ #: php:1304 ../admin/views/BWGViewThemes_bwg.php:2131 ..
2167
+ #: /admin/views/BWGViewThemes_bwg.php:3249
2168
+ msgid "Border style:"
2169
+ msgstr "Border-Stil:"
2170
+
2171
+ #: ../admin/views/BWGViewThemes_bwg.php:336
2172
+ #: ../admin/views/BWGViewThemes_bwg.php:538
2173
+ #: ../admin/views/BWGViewThemes_bwg.php:1143 ../admin/views/BWGViewThemes_bwg.
2174
+ #: php:1318 ../admin/views/BWGViewThemes_bwg.php:2145 ..
2175
+ #: /admin/views/BWGViewThemes_bwg.php:3263
2176
+ msgid "Border color:"
2177
+ msgstr "Randfarbe:"
2178
+
2179
+ #: ../admin/views/BWGViewThemes_bwg.php:342
2180
+ #: ../admin/views/BWGViewThemes_bwg.php:544
2181
+ #: ../admin/views/BWGViewThemes_bwg.php:1149 ../admin/views/BWGViewThemes_bwg.
2182
+ #: php:1324 ../admin/views/BWGViewThemes_bwg.php:1740 ..
2183
+ #: /admin/views/BWGViewThemes_bwg.php:2151 3269
2184
+ msgid "Border radius:"
2185
+ msgstr "Border Radius:"
2186
+
2187
+ #: ../admin/views/BWGViewThemes_bwg.php:345
2188
+ #: ../admin/views/BWGViewThemes_bwg.php:352
2189
+ #: ../admin/views/BWGViewThemes_bwg.php:492 ../admin/views/BWGViewThemes_bwg.
2190
+ #: php:499 ../admin/views/BWGViewThemes_bwg.php:547 ..
2191
+ #: /admin/views/BWGViewThemes_bwg.php:746 767
2192
+ #: ../admin/views/BWGViewThemes_bwg.php:791 php:825
2193
+ #: ../admin/views/BWGViewThemes_bwg.php:881
2194
+ #: /admin/views/BWGViewThemes_bwg.php:937 944
2195
+ #: ../admin/views/BWGViewThemes_bwg.php:990 php:997
2196
+ #: ../admin/views/BWGViewThemes_bwg.php:1039
2197
+ #: /admin/views/BWGViewThemes_bwg.php:1059 1112
2198
+ #: ../admin/views/BWGViewThemes_bwg.php:1119
2199
+ #: /admin/views/BWGViewThemes_bwg.php:1152 1172
2200
+ #: ../admin/views/BWGViewThemes_bwg.php:1225
2201
+ #: /admin/views/BWGViewThemes_bwg.php:1232 1265
2202
+ #: ../admin/views/BWGViewThemes_bwg.php:1287
2203
+ #: /admin/views/BWGViewThemes_bwg.php:1327 1334
2204
+ #: ../admin/views/BWGViewThemes_bwg.php:1472
2205
+ #: /admin/views/BWGViewThemes_bwg.php:1479 1526
2206
+ #: ../admin/views/BWGViewThemes_bwg.php:1580
2207
+ #: /admin/views/BWGViewThemes_bwg.php:1587 1670
2208
+ #: ../admin/views/BWGViewThemes_bwg.php:1710
2209
+ #: /admin/views/BWGViewThemes_bwg.php:1717 1743
2210
+ #: ../admin/views/BWGViewThemes_bwg.php:1776
2211
+ #: /admin/views/BWGViewThemes_bwg.php:1862 1881
2212
+ #: ../admin/views/BWGViewThemes_bwg.php:1954
2213
+ #: /admin/views/BWGViewThemes_bwg.php:2075 2089
2214
+ #: ../admin/views/BWGViewThemes_bwg.php:2154
2215
+ #: /admin/views/BWGViewThemes_bwg.php:2167 2212
2216
+ #: ../admin/views/BWGViewThemes_bwg.php:2307
2217
+ #: /admin/views/BWGViewThemes_bwg.php:2361 2394
2218
+ #: ../admin/views/BWGViewThemes_bwg.php:2493
2219
+ #: /admin/views/BWGViewThemes_bwg.php:2530 2574
2220
+ #: ../admin/views/BWGViewThemes_bwg.php:2607
2221
+ #: /admin/views/BWGViewThemes_bwg.php:2712 2781
2222
+ #: ../admin/views/BWGViewThemes_bwg.php:2788
2223
+ #: /admin/views/BWGViewThemes_bwg.php:2795 2911
2224
+ #: ../admin/views/BWGViewThemes_bwg.php:2918
2225
+ #: /admin/views/BWGViewThemes_bwg.php:2925 3112
2226
+ #: ../admin/views/BWGViewThemes_bwg.php:3131
2227
+ #: /admin/views/BWGViewThemes_bwg.php:3164 3272
2228
+ #: ../admin/views/BWGViewThemes_bwg.php:3285
2229
+ #: /admin/views/BWGViewThemes_bwg.php:3292 3321
2230
+ msgid "Use CSS type values."
2231
+ msgstr "Verwenden Sie CSS-Typ-Werte."
2232
+
2233
+ #: ../admin/views/BWGViewThemes_bwg.php:349
2234
+ #: ../admin/views/BWGViewThemes_bwg.php:1331
2235
+ msgid "Shadow:"
2236
+ msgstr "Shadow:"
2237
+
2238
+ #: ../admin/views/BWGViewThemes_bwg.php:356
2239
+ #: ../admin/views/BWGViewThemes_bwg.php:597
2240
+ #: ../admin/views/BWGViewThemes_bwg.php:1338
2241
+ msgid "Hover effect:"
2242
+ msgstr "Hover-Effekt:"
2243
+
2244
+ #: ../admin/views/BWGViewThemes_bwg.php:370
2245
+ #: ../admin/views/BWGViewThemes_bwg.php:611
2246
+ #: ../admin/views/BWGViewThemes_bwg.php:1352 ../admin/views/BWGViewThemes_bwg.
2247
+ #: php:1635
2248
+ msgid "Hover effect value:"
2249
+ msgstr "Hover-Effekt-Wert:"
2250
+
2251
+ #: ../admin/views/BWGViewThemes_bwg.php:373
2252
+ #: ../admin/views/BWGViewThemes_bwg.php:1638
2253
+ msgid "E.g. Rotate:"
2254
+ msgstr "Z.B. Drehen:"
2255
+
2256
+ #: ../admin/views/BWGViewThemes_bwg.php:373
2257
+ #: ../admin/views/BWGViewThemes_bwg.php:614
2258
+ #: ../admin/views/BWGViewThemes_bwg.php:1355 ../admin/views/BWGViewThemes_bwg.
2259
+ #: php:1638
2260
+ msgid "Scale:"
2261
+ msgstr "Maßstab:"
2262
+
2263
+ #: ../admin/views/BWGViewThemes_bwg.php:373
2264
+ #: ../admin/views/BWGViewThemes_bwg.php:614
2265
+ #: ../admin/views/BWGViewThemes_bwg.php:1355 ../admin/views/BWGViewThemes_bwg.
2266
+ #: php:1638
2267
+ msgid "Skew:"
2268
+ msgstr "Skew:"
2269
+
2270
+ #: ../admin/views/BWGViewThemes_bwg.php:377
2271
+ #: ../admin/views/BWGViewThemes_bwg.php:618
2272
+ msgid "Transition:"
2273
+ msgstr "Transition:"
2274
+
2275
+ #: ../admin/views/BWGViewThemes_bwg.php:393
2276
+ #: ../admin/views/BWGViewThemes_bwg.php:1374
2277
+ #: ../admin/views/BWGViewThemes_bwg.php:1642
2278
+ msgid "Thumbnail background color:"
2279
+ msgstr "Thumbnail Hintergrundfarbe:"
2280
+
2281
+ #: ../admin/views/BWGViewThemes_bwg.php:400
2282
+ #: ../admin/views/BWGViewThemes_bwg.php:1380
2283
+ #: ../admin/views/BWGViewThemes_bwg.php:1614
2284
+ msgid "Thumbnail transparency:"
2285
+ msgstr "Thumbnail Transparenz:"
2286
+
2287
+ #: ../admin/views/BWGViewThemes_bwg.php:407
2288
+ #: ../admin/views/BWGViewThemes_bwg.php:1043
2289
+ #: ../admin/views/BWGViewThemes_bwg.php:1387
2290
+ msgid "Full background color:"
2291
+ msgstr "Vollständige Hintergrundfarbe:"
2292
+
2293
+ #: ../admin/views/BWGViewThemes_bwg.php:413
2294
+ #: ../admin/views/BWGViewThemes_bwg.php:1049
2295
+ msgid "Full background transparency:"
2296
+ msgstr "Vollständige Hintergrundtransparenz:"
2297
+
2298
+ #: ../admin/views/BWGViewThemes_bwg.php:420
2299
+ #: ../admin/views/BWGViewThemes_bwg.php:577
2300
+ #: ../admin/views/BWGViewThemes_bwg.php:1095 ../admin/views/BWGViewThemes_bwg.
2301
+ #: php:1400 ../admin/views/BWGViewThemes_bwg.php:2058 ..
2302
+ #: /admin/views/BWGViewThemes_bwg.php:3340
2303
+ msgid "Alignment:"
2304
+ msgstr "Ausrichtung:"
2305
+
2306
+ #: ../admin/views/BWGViewThemes_bwg.php:443
2307
+ #: ../admin/views/BWGViewThemes_bwg.php:780
2308
+ #: ../admin/views/BWGViewThemes_bwg.php:1423 ../admin/views/BWGViewThemes_bwg.
2309
+ #: php:2292 ../admin/views/BWGViewThemes_bwg.php:2563 ..
2310
+ #: /admin/views/BWGViewThemes_bwg.php:2651 2719
2311
+ #: ../admin/views/BWGViewThemes_bwg.php:2849
2312
+ #: /admin/views/BWGViewThemes_bwg.php:3334
2313
+ msgid "Top"
2314
+ msgstr "Top"
2315
+
2316
+ #: ../admin/views/BWGViewThemes_bwg.php:445
2317
+ #: ../admin/views/BWGViewThemes_bwg.php:782
2318
+ #: ../admin/views/BWGViewThemes_bwg.php:1425 ../admin/views/BWGViewThemes_bwg.
2319
+ #: php:2294 ../admin/views/BWGViewThemes_bwg.php:2565 ..
2320
+ #: /admin/views/BWGViewThemes_bwg.php:2653 2721
2321
+ #: ../admin/views/BWGViewThemes_bwg.php:2851
2322
+ #: /admin/views/BWGViewThemes_bwg.php:3336
2323
+ msgid "Bottom"
2324
+ msgstr "Boden"
2325
+
2326
+ #: ../admin/views/BWGViewThemes_bwg.php:449
2327
+ #: ../admin/views/BWGViewThemes_bwg.php:948
2328
+ #: ../admin/views/BWGViewThemes_bwg.php:1429 ../admin/views/BWGViewThemes_bwg.
2329
+ #: php:1911 ../admin/views/BWGViewThemes_bwg.php:2963
2330
+ msgid "Title font size:"
2331
+ msgstr "Titel Schriftgröße:"
2332
+
2333
+ #: ../admin/views/BWGViewThemes_bwg.php:455
2334
+ #: ../admin/views/BWGViewThemes_bwg.php:1435
2335
+ #: ../admin/views/BWGViewThemes_bwg.php:1917 ..
2336
+ #: /admin/views/BWGViewThemes_bwg.php:2929
2337
+ msgid "Title font color:"
2338
+ msgstr "Titel Schriftfarbe:"
2339
+
2340
+ #: ../admin/views/BWGViewThemes_bwg.php:461
2341
+ #: ../admin/views/BWGViewThemes_bwg.php:960
2342
+ #: ../admin/views/BWGViewThemes_bwg.php:1441 ../admin/views/BWGViewThemes_bwg.
2343
+ #: php:1923 ../admin/views/BWGViewThemes_bwg.php:2935
2344
+ msgid "Title font family:"
2345
+ msgstr "Titel Schriftfamilie:"
2346
+
2347
+ #: ../admin/views/BWGViewThemes_bwg.php:475
2348
+ #: ../admin/views/BWGViewThemes_bwg.php:1455
2349
+ #: ../admin/views/BWGViewThemes_bwg.php:1937 ..
2350
+ #: /admin/views/BWGViewThemes_bwg.php:2949
2351
+ msgid "Title font weight:"
2352
+ msgstr "Titel Schriftstärke:"
2353
+
2354
+ #: ../admin/views/BWGViewThemes_bwg.php:489
2355
+ #: ../admin/views/BWGViewThemes_bwg.php:1469
2356
+ msgid "Title box shadow:"
2357
+ msgstr "Feld Titel Schatten:"
2358
+
2359
+ #: ../admin/views/BWGViewThemes_bwg.php:496
2360
+ #: ../admin/views/BWGViewThemes_bwg.php:1476
2361
+ #: ../admin/views/BWGViewThemes_bwg.php:1872
2362
+ msgid "Title margin:"
2363
+ msgstr "Titel-Marge:"
2364
+
2365
+ #: ../admin/views/BWGViewThemes_bwg.php:557
2366
+ msgid "Transparency:"
2367
+ msgstr "Transparenz:"
2368
+
2369
+ #: ../admin/views/BWGViewThemes_bwg.php:564
2370
+ #: ../admin/views/BWGViewThemes_bwg.php:662
2371
+ #: ../admin/views/BWGViewThemes_bwg.php:1156 ../admin/views/BWGViewThemes_bwg.
2372
+ #: php:1727 ../admin/views/BWGViewThemes_bwg.php:2045
2373
+ msgid "Background color:"
2374
+ msgstr "Hintergrundfarbe:"
2375
+
2376
+ #: ../admin/views/BWGViewThemes_bwg.php:570
2377
+ #: ../admin/views/BWGViewThemes_bwg.php:1162
2378
+ #: ../admin/views/BWGViewThemes_bwg.php:1733 ..
2379
+ #: /admin/views/BWGViewThemes_bwg.php:2051
2380
+ msgid "Background transparency:"
2381
+ msgstr "Hintergrundtransparenz:"
2382
+
2383
+ #: ../admin/views/BWGViewThemes_bwg.php:614
2384
+ msgid "Rotate:"
2385
+ msgstr "Drehen:"
2386
+
2387
+ #: ../admin/views/BWGViewThemes_bwg.php:627
2388
+ #: ../admin/views/BWGViewThemes_bwg.php:1001
2389
+ #: ../admin/views/BWGViewThemes_bwg.php:1984 ..
2390
+ #: /admin/views/BWGViewThemes_bwg.php:3004
2391
+ msgid "Description font size:"
2392
+ msgstr "Beschreibung Schriftgröße:"
2393
+
2394
+ #: ../admin/views/BWGViewThemes_bwg.php:633
2395
+ #: ../admin/views/BWGViewThemes_bwg.php:1990
2396
+ #: ../admin/views/BWGViewThemes_bwg.php:2970
2397
+ msgid "Description font color:"
2398
+ msgstr "Beschreibung Schriftfarbe:"
2399
+
2400
+ #: ../admin/views/BWGViewThemes_bwg.php:639
2401
+ #: ../admin/views/BWGViewThemes_bwg.php:1996
2402
+ #: ../admin/views/BWGViewThemes_bwg.php:2976
2403
+ msgid "Description font family:"
2404
+ msgstr "Beschreibung Schriftfamilie:"
2405
+
2406
+ #: ../admin/views/BWGViewThemes_bwg.php:668
2407
+ #: ../admin/views/BWGViewThemes_bwg.php:2509
2408
+ msgid "Right, left buttons size:"
2409
+ msgstr "Rechts, links-Tasten Größe:"
2410
+
2411
+ #: ../admin/views/BWGViewThemes_bwg.php:674
2412
+ msgid "Play, pause buttons size:"
2413
+ msgstr "Wiedergabe, Pause-Tasten Größe:"
2414
+
2415
+ #: ../admin/views/BWGViewThemes_bwg.php:680
2416
+ #: ../admin/views/BWGViewThemes_bwg.php:2177
2417
+ msgid "Buttons color:"
2418
+ msgstr "Buttons Farbe:"
2419
+
2420
+ #: ../admin/views/BWGViewThemes_bwg.php:686
2421
+ msgid "Buttons transparency:"
2422
+ msgstr "Buttons Transparenz:"
2423
+
2424
+ #: ../admin/views/BWGViewThemes_bwg.php:689
2425
+ msgid "alue must be between 0 to 100."
2426
+ msgstr "ert zwischen 0 und 100 liegen."
2427
+
2428
+ #: ../admin/views/BWGViewThemes_bwg.php:693
2429
+ msgid "Buttons hover color:"
2430
+ msgstr "Tasten schweben Farbe:"
2431
+
2432
+ #: ../admin/views/BWGViewThemes_bwg.php:699
2433
+ #: ../admin/views/BWGViewThemes_bwg.php:2503
2434
+ msgid "Right, left buttons width:"
2435
+ msgstr "Rechts, Breite links-Tasten:"
2436
+
2437
+ #: ../admin/views/BWGViewThemes_bwg.php:705
2438
+ #: ../admin/views/BWGViewThemes_bwg.php:2497
2439
+ msgid "Right, left buttons height:"
2440
+ msgstr "Rechts, links-Tasten Höhe:"
2441
+
2442
+ #: ../admin/views/BWGViewThemes_bwg.php:711
2443
+ #: ../admin/views/BWGViewThemes_bwg.php:2478
2444
+ msgid "Right, left buttons background color:"
2445
+ msgstr "Rechts, links-Tasten Hintergrundfarbe:"
2446
+
2447
+ #: ../admin/views/BWGViewThemes_bwg.php:717
2448
+ msgid "Right, left buttons border width:"
2449
+ msgstr "Rechts, links-Tasten Rahmenbreite:"
2450
+
2451
+ #: ../admin/views/BWGViewThemes_bwg.php:723
2452
+ #: ../admin/views/BWGViewThemes_bwg.php:2540
2453
+ msgid "Right, left buttons border style: "
2454
+ msgstr "Rechts, links-Tasten Rahmenstil:"
2455
+
2456
+ #: ../admin/views/BWGViewThemes_bwg.php:737
2457
+ msgid "Right, left buttons border color:"
2458
+ msgstr "Rechts, links Schaltflächen Randfarbe:"
2459
+
2460
+ #: ../admin/views/BWGViewThemes_bwg.php:743
2461
+ #: ../admin/views/BWGViewThemes_bwg.php:2527
2462
+ msgid "Right, left buttons border radius: "
2463
+ msgstr "Rechts, links-Tasten Grenzradius:"
2464
+
2465
+ #: ../admin/views/BWGViewThemes_bwg.php:750
2466
+ #: ../admin/views/BWGViewThemes_bwg.php:2464
2467
+ msgid "Right, left buttons style:"
2468
+ msgstr "Rechts, links-Tasten-Stil:"
2469
+
2470
+ #: ../admin/views/BWGViewThemes_bwg.php:764
2471
+ #: ../admin/views/BWGViewThemes_bwg.php:2490
2472
+ msgid "Right, left buttons box shadow:"
2473
+ msgstr "Rechts, links box buttons Schatten:"
2474
+
2475
+ #: ../admin/views/BWGViewThemes_bwg.php:777
2476
+ msgid "Filmstrip/Slider bullet position: "
2477
+ msgstr "Filmstreifen / Slider Einschussposition:"
2478
+
2479
+ #: ../admin/views/BWGViewThemes_bwg.php:788
2480
+ msgid "Filmstrip margin:"
2481
+ msgstr "Filmstreifen-Marge:"
2482
+
2483
+ #: ../admin/views/BWGViewThemes_bwg.php:795
2484
+ msgid "Filmstrip border width:"
2485
+ msgstr "Filmstrip Rahmenbreite:"
2486
+
2487
+ #: ../admin/views/BWGViewThemes_bwg.php:801
2488
+ msgid "Filmstrip border style: "
2489
+ msgstr "Filmstreifen Randstil:"
2490
+
2491
+ #: ../admin/views/BWGViewThemes_bwg.php:816
2492
+ msgid "Filmstrip border color: "
2493
+ msgstr "Filmstrip Rahmenfarbe:"
2494
+
2495
+ #: ../admin/views/BWGViewThemes_bwg.php:822
2496
+ msgid "Filmstrip border radius: "
2497
+ msgstr "Filmstreifen Grenzradius:"
2498
+
2499
+ #: ../admin/views/BWGViewThemes_bwg.php:829
2500
+ msgid "Filmstrip active border width:"
2501
+ msgstr "Filmstrip aktiven Rahmenbreite:"
2502
+
2503
+ #: ../admin/views/BWGViewThemes_bwg.php:835
2504
+ msgid "Filmstrip active border color:"
2505
+ msgstr "Filmstrip aktiven Rahmenfarbe:"
2506
+
2507
+ #: ../admin/views/BWGViewThemes_bwg.php:841
2508
+ msgid "Filmstrip deactive transparency:"
2509
+ msgstr "Filmstrip deaktiv Transparenz:"
2510
+
2511
+ #: ../admin/views/BWGViewThemes_bwg.php:848
2512
+ msgid "Filmstrip right, left buttons background color:"
2513
+ msgstr "Filmstreifen rechts, links-Tasten Hintergrundfarbe:"
2514
+
2515
+ #: ../admin/views/BWGViewThemes_bwg.php:854
2516
+ msgid "Filmstrip right, left buttons color: "
2517
+ msgstr "Filmstreifen rechts, links-Tasten Farbe:"
2518
+
2519
+ #: ../admin/views/BWGViewThemes_bwg.php:860
2520
+ #: ../admin/views/BWGViewThemes_bwg.php:2630
2521
+ msgid "Filmstrip right, left buttons size: "
2522
+ msgstr "Filmstreifen rechts, links-Tasten Größe:"
2523
+
2524
+ #: ../admin/views/BWGViewThemes_bwg.php:866
2525
+ msgid "Slider bullet width: "
2526
+ msgstr "Slider Kugel Breite:"
2527
+
2528
+ #: ../admin/views/BWGViewThemes_bwg.php:872
2529
+ msgid "Slider bullet height: "
2530
+ msgstr "Slider Einschusshöhe:"
2531
+
2532
+ #: ../admin/views/BWGViewThemes_bwg.php:878
2533
+ msgid "Slider bullet border radius:"
2534
+ msgstr "Slider Kugel Grenzradius:"
2535
+
2536
+ #: ../admin/views/BWGViewThemes_bwg.php:885
2537
+ msgid "Slider bullet background color: "
2538
+ msgstr "Slider Kugel Hintergrundfarbe:"
2539
+
2540
+ #: ../admin/views/BWGViewThemes_bwg.php:891
2541
+ msgid "Slider bullet margin:"
2542
+ msgstr "Slider Einschussmarge:"
2543
+
2544
+ #: ../admin/views/BWGViewThemes_bwg.php:897
2545
+ msgid "Slider bullet active background color:"
2546
+ msgstr "Slider Kugel aktive Hintergrundfarbe:"
2547
+
2548
+ #: ../admin/views/BWGViewThemes_bwg.php:903
2549
+ msgid "Slider bullet active border width: "
2550
+ msgstr "Slider Kugel aktiven Rahmenbreite:"
2551
+
2552
+ #: ../admin/views/BWGViewThemes_bwg.php:909
2553
+ msgid "Slider bullet active border color:"
2554
+ msgstr "Slider Kugel aktiven Rahmenfarbe:"
2555
+
2556
+ #: ../admin/views/BWGViewThemes_bwg.php:921
2557
+ msgid "Title background color:"
2558
+ msgstr "Titel Hintergrundfarbe:"
2559
+
2560
+ #: ../admin/views/BWGViewThemes_bwg.php:927
2561
+ msgid "Title transparency: "
2562
+ msgstr "Titel der Transparenz:"
2563
+
2564
+ #: ../admin/views/BWGViewThemes_bwg.php:934
2565
+ msgid "Title border radius:"
2566
+ msgstr "Titel Grenzradius:"
2567
+
2568
+ #: ../admin/views/BWGViewThemes_bwg.php:941
2569
+ #: ../admin/views/BWGViewThemes_bwg.php:1878
2570
+ msgid "Title padding:"
2571
+ msgstr "Titel padding:"
2572
+
2573
+ #: ../admin/views/BWGViewThemes_bwg.php:954
2574
+ msgid "Title color:"
2575
+ msgstr "Titel Farbe:"
2576
+
2577
+ #: ../admin/views/BWGViewThemes_bwg.php:974
2578
+ msgid "Description background color:"
2579
+ msgstr "Beschreibung Hintergrundfarbe:"
2580
+
2581
+ #: ../admin/views/BWGViewThemes_bwg.php:980
2582
+ msgid "Description transparency: "
2583
+ msgstr "Beschreibung der Transparenz:"
2584
+
2585
+ #: ../admin/views/BWGViewThemes_bwg.php:987
2586
+ msgid "Description border radius: "
2587
+ msgstr "Beschreibung Grenze Radius:"
2588
+
2589
+ #: ../admin/views/BWGViewThemes_bwg.php:994
2590
+ #: ../admin/views/BWGViewThemes_bwg.php:1229
2591
+ #: ../admin/views/BWGViewThemes_bwg.php:1951
2592
+ msgid "Description padding:"
2593
+ msgstr "Beschreibung padding:"
2594
+
2595
+ #: ../admin/views/BWGViewThemes_bwg.php:1007
2596
+ msgid "Description color: "
2597
+ msgstr "Beschreibung Farbe:"
2598
+
2599
+ #: ../admin/views/BWGViewThemes_bwg.php:1013
2600
+ msgid "Description font family: "
2601
+ msgstr "Beschreibung Schriftfamilie:"
2602
+
2603
+ #: ../admin/views/BWGViewThemes_bwg.php:1036
2604
+ msgid "Full padding:"
2605
+ msgstr "Vollpolsterung:"
2606
+
2607
+ #: ../admin/views/BWGViewThemes_bwg.php:1056
2608
+ msgid "Full border radius:"
2609
+ msgstr "Vollgrenzradius:"
2610
+
2611
+ #: ../admin/views/BWGViewThemes_bwg.php:1063
2612
+ msgid "Full border width:"
2613
+ msgstr "Vollrandbreite:"
2614
+
2615
+ #: ../admin/views/BWGViewThemes_bwg.php:1069
2616
+ msgid "Full border style:"
2617
+ msgstr "Vollrandstil:"
2618
+
2619
+ #: ../admin/views/BWGViewThemes_bwg.php:1083
2620
+ msgid "Full border color:"
2621
+ msgstr "Vollrandfarbe:"
2622
+
2623
+ #: ../admin/views/BWGViewThemes_bwg.php:1169
2624
+ #: ../admin/views/BWGViewThemes_bwg.php:2086
2625
+ #: ../admin/views/BWGViewThemes_bwg.php:3318
2626
+ msgid "Box shadow:"
2627
+ msgstr "Box Schatten:"
2628
+
2629
+ #: ../admin/views/BWGViewThemes_bwg.php:1182
2630
+ msgid "Title alignment:"
2631
+ msgstr "Titel Ausrichtung:"
2632
+
2633
+ #: ../admin/views/BWGViewThemes_bwg.php:1196
2634
+ #: ../admin/views/BWGViewThemes_bwg.php:1483
2635
+ #: ../admin/views/BWGViewThemes_bwg.php:2113 ..
2636
+ #: /admin/views/BWGViewThemes_bwg.php:3203
2637
+ msgid "Font size:"
2638
+ msgstr "Schriftgröße:"
2639
+
2640
+ #: ../admin/views/BWGViewThemes_bwg.php:1202
2641
+ #: ../admin/views/BWGViewThemes_bwg.php:1489
2642
+ #: ../admin/views/BWGViewThemes_bwg.php:2119 ..
2643
+ #: /admin/views/BWGViewThemes_bwg.php:3209
2644
+ msgid "Font color:"
2645
+ msgstr "Schriftfarbe:"
2646
+
2647
+ #: ../admin/views/BWGViewThemes_bwg.php:1208
2648
+ #: ../admin/views/BWGViewThemes_bwg.php:1495
2649
+ #: ../admin/views/BWGViewThemes_bwg.php:2099 ..
2650
+ #: /admin/views/BWGViewThemes_bwg.php:3215
2651
+ msgid "Font family:"
2652
+ msgstr "Schriftfamilie:"
2653
+
2654
+ #: ../admin/views/BWGViewThemes_bwg.php:1222
2655
+ msgid "Description margin:"
2656
+ msgstr "Beschreibung margin:"
2657
+
2658
+ #: ../admin/views/BWGViewThemes_bwg.php:1236
2659
+ msgid "Description border width: "
2660
+ msgstr "Beschreibung Rahmenbreite:"
2661
+
2662
+ #: ../admin/views/BWGViewThemes_bwg.php:1242
2663
+ msgid "Description border style: "
2664
+ msgstr "Beschreibung Rahmenstil:"
2665
+
2666
+ #: ../admin/views/BWGViewThemes_bwg.php:1256
2667
+ msgid "Description border color: "
2668
+ msgstr "Beschreibung Grenze Farbe:"
2669
+
2670
+ #: ../admin/views/BWGViewThemes_bwg.php:1262
2671
+ msgid "Description border radius:"
2672
+ msgstr "Beschreibung Grenze Radius:"
2673
+
2674
+ #: ../admin/views/BWGViewThemes_bwg.php:1269
2675
+ msgid "Description background color: "
2676
+ msgstr "Beschreibung Hintergrundfarbe:"
2677
+
2678
+ #: ../admin/views/BWGViewThemes_bwg.php:1294
2679
+ #: ../admin/views/BWGViewThemes_bwg.php:2082
2680
+ msgid "se CSS type values."
2681
+ msgstr "se CSS-Typ-Werte."
2682
+
2683
+ #: ../admin/views/BWGViewThemes_bwg.php:1355
2684
+ msgid "E.g. Rotate"
2685
+ msgstr "Z.B. Drehen"
2686
+
2687
+ #: ../admin/views/BWGViewThemes_bwg.php:1359
2688
+ #: ../admin/views/BWGViewThemes_bwg.php:1591
2689
+ msgid "Thumbnail transition:"
2690
+ msgstr "Miniaturübergang:"
2691
+
2692
+ #: ../admin/views/BWGViewThemes_bwg.php:1393
2693
+ msgid "Full background transparency: "
2694
+ msgstr "Vollständige Hintergrundtransparenz:"
2695
+
2696
+ #: ../admin/views/BWGViewThemes_bwg.php:1509
2697
+ #: ../admin/views/BWGViewThemes_bwg.php:3229
2698
+ msgid "Font weight:"
2699
+ msgstr "Schriftstärke:"
2700
+
2701
+ #: ../admin/views/BWGViewThemes_bwg.php:1523
2702
+ #: ../admin/views/BWGViewThemes_bwg.php:1773
2703
+ msgid "Back padding:"
2704
+ msgstr "Rückenpolster:"
2705
+
2706
+ #: ../admin/views/BWGViewThemes_bwg.php:1539
2707
+ msgid "Thumbnail margin:"
2708
+ msgstr "Thumbnail-Marge:"
2709
+
2710
+ #: ../admin/views/BWGViewThemes_bwg.php:1545
2711
+ msgid "Thumbnail padding:"
2712
+ msgstr "Thumbnail padding:"
2713
+
2714
+ #: ../admin/views/BWGViewThemes_bwg.php:1551
2715
+ msgid "Thumbnail border width:"
2716
+ msgstr "Miniaturrahmenbreite:"
2717
+
2718
+ #: ../admin/views/BWGViewThemes_bwg.php:1557
2719
+ msgid "Thumbnail border style:"
2720
+ msgstr "Miniaturrahmenstil:"
2721
+
2722
+ #: ../admin/views/BWGViewThemes_bwg.php:1571
2723
+ msgid "Thumbnail border color:"
2724
+ msgstr "Miniaturrahmenfarbe:"
2725
+
2726
+ #: ../admin/views/BWGViewThemes_bwg.php:1577
2727
+ msgid "Thumbnail border radius:"
2728
+ msgstr "Thumbnail Grenzradius:"
2729
+
2730
+ #: ../admin/views/BWGViewThemes_bwg.php:1584
2731
+ msgid "Thumbnail box shadow:"
2732
+ msgstr "Thumbnail-Box Schatten:"
2733
+
2734
+ #: ../admin/views/BWGViewThemes_bwg.php:1600
2735
+ msgid "Thumbnail alignment:"
2736
+ msgstr "Thumbnail Ausrichtung:"
2737
+
2738
+ #: ../admin/views/BWGViewThemes_bwg.php:1621
2739
+ msgid "Thumbnail hover effect: "
2740
+ msgstr "Thumbnail Hover-Effekt:"
2741
+
2742
+ #: ../admin/views/BWGViewThemes_bwg.php:1648
2743
+ msgid "Thumbnails background color:"
2744
+ msgstr "Thumbnails Hintergrundfarbe:"
2745
+
2746
+ #: ../admin/views/BWGViewThemes_bwg.php:1654
2747
+ msgid "Thumbnail background transparency:"
2748
+ msgstr "Thumbnail Hintergrundtransparenz:"
2749
+
2750
+ #: ../admin/views/BWGViewThemes_bwg.php:1667
2751
+ msgid "Thumbnail div padding:"
2752
+ msgstr "Thumbnail div padding:"
2753
+
2754
+ #: ../admin/views/BWGViewThemes_bwg.php:1674
2755
+ msgid "Thumbnail div background color:"
2756
+ msgstr "Thumbnail div Hintergrundfarbe:"
2757
+
2758
+ #: ../admin/views/BWGViewThemes_bwg.php:1680
2759
+ msgid "Thumbnail div border width:"
2760
+ msgstr "Thumbnail div Rahmenbreite:"
2761
+
2762
+ #: ../admin/views/BWGViewThemes_bwg.php:1687
2763
+ msgid "Thumbnail div border style:"
2764
+ msgstr "Thumbnail div Rahmenstil:"
2765
+
2766
+ #: ../admin/views/BWGViewThemes_bwg.php:1701
2767
+ msgid "Thumbnail div border color:"
2768
+ msgstr "Thumbnail div Rahmenfarbe:"
2769
+
2770
+ #: ../admin/views/BWGViewThemes_bwg.php:1707
2771
+ msgid "Thumbnail div border radius:"
2772
+ msgstr "Thumbnail div Grenzradius:"
2773
+
2774
+ #: ../admin/views/BWGViewThemes_bwg.php:1747
2775
+ msgid "Separator width:"
2776
+ msgstr "Separator Breite:"
2777
+
2778
+ #: ../admin/views/BWGViewThemes_bwg.php:1753
2779
+ msgid "Separator style:"
2780
+ msgstr "Separator-Stil:"
2781
+
2782
+ #: ../admin/views/BWGViewThemes_bwg.php:1767
2783
+ msgid "Separator color:"
2784
+ msgstr "Separator Farbe:"
2785
+
2786
+ #: ../admin/views/BWGViewThemes_bwg.php:1780
2787
+ msgid "Back font size:"
2788
+ msgstr "Zurück Schriftgröße:"
2789
+
2790
+ #: ../admin/views/BWGViewThemes_bwg.php:1786
2791
+ msgid "Back font color:"
2792
+ msgstr "Zurück Schriftfarbe:"
2793
+
2794
+ #: ../admin/views/BWGViewThemes_bwg.php:1792
2795
+ msgid "Back font family:"
2796
+ msgstr "Zurück Schriftfamilie:"
2797
+
2798
+ #: ../admin/views/BWGViewThemes_bwg.php:1806
2799
+ msgid "Back font weight:"
2800
+ msgstr "Zurück Schriftstärke:"
2801
+
2802
+ #: ../admin/views/BWGViewThemes_bwg.php:1826
2803
+ msgid "Text div padding:"
2804
+ msgstr "Text div padding:"
2805
+
2806
+ #: ../admin/views/BWGViewThemes_bwg.php:1833
2807
+ msgid "Text div border width:"
2808
+ msgstr "Text div Rahmenbreite:"
2809
+
2810
+ #: ../admin/views/BWGViewThemes_bwg.php:1839
2811
+ msgid "Text border style:"
2812
+ msgstr "Textrahmenstil:"
2813
+
2814
+ #: ../admin/views/BWGViewThemes_bwg.php:1853
2815
+ msgid "Text border color:"
2816
+ msgstr "Textrahmenfarbe:"
2817
+
2818
+ #: ../admin/views/BWGViewThemes_bwg.php:1859
2819
+ msgid "Text div border radius:"
2820
+ msgstr "Text div Grenzradius:"
2821
+
2822
+ #: ../admin/views/BWGViewThemes_bwg.php:1866
2823
+ msgid "Text background color:"
2824
+ msgstr "Texthintergrundfarbe:"
2825
+
2826
+ #: ../admin/views/BWGViewThemes_bwg.php:1885
2827
+ msgid "Title border width:"
2828
+ msgstr "Titel Rahmenbreite:"
2829
+
2830
+ #: ../admin/views/BWGViewThemes_bwg.php:1891
2831
+ msgid "Title border style:"
2832
+ msgstr "Titel Rahmenstil:"
2833
+
2834
+ #: ../admin/views/BWGViewThemes_bwg.php:1905
2835
+ msgid "Title border color:"
2836
+ msgstr "Titel Rahmenfarbe:"
2837
+
2838
+ #: ../admin/views/BWGViewThemes_bwg.php:1958
2839
+ msgid "Description border width:"
2840
+ msgstr "Beschreibung Rahmenbreite:"
2841
+
2842
+ #: ../admin/views/BWGViewThemes_bwg.php:1964
2843
+ msgid "Description border style:"
2844
+ msgstr "Beschreibung Rahmenstil:"
2845
+
2846
+ #: ../admin/views/BWGViewThemes_bwg.php:1978
2847
+ msgid "Description border color:"
2848
+ msgstr "Beschreibung Grenze Farbe:"
2849
+
2850
+ #: ../admin/views/BWGViewThemes_bwg.php:2010
2851
+ #: ../admin/views/BWGViewThemes_bwg.php:2990
2852
+ msgid "Description font weight:"
2853
+ msgstr "Beschreibung Schriftstärke:"
2854
+
2855
+ #: ../admin/views/BWGViewThemes_bwg.php:2024
2856
+ msgid "Description more size:"
2857
+ msgstr "Beschreibung mehr Größe:"
2858
+
2859
+ #: ../admin/views/BWGViewThemes_bwg.php:2030
2860
+ msgid "Description more color:"
2861
+ msgstr "Beschreibung mehr Farbe:"
2862
+
2863
+ #: ../admin/views/BWGViewThemes_bwg.php:2164
2864
+ msgid "Buttons and title margin:"
2865
+ msgstr "Buttons und Titel-Marge:"
2866
+
2867
+ #: ../admin/views/BWGViewThemes_bwg.php:2171
2868
+ msgid "Buttons size:"
2869
+ msgstr "Buttons Größe:"
2870
+
2871
+ #: ../admin/views/BWGViewThemes_bwg.php:2183
2872
+ msgid "Buttons and title border width:"
2873
+ msgstr "Buttons und Titel Rahmenbreite:"
2874
+
2875
+ #: ../admin/views/BWGViewThemes_bwg.php:2189
2876
+ msgid "Buttons and title border style:"
2877
+ msgstr "Buttons und Titel Rahmenstil:"
2878
+
2879
+ #: ../admin/views/BWGViewThemes_bwg.php:2203
2880
+ msgid "Buttons and title border color:"
2881
+ msgstr "Buttons und Titel Rahmenfarbe:"
2882
+
2883
+ #: ../admin/views/BWGViewThemes_bwg.php:2209
2884
+ msgid "Buttons and title border radius:"
2885
+ msgstr "Buttons und Titel Grenzradius:"
2886
+
2887
+ #: ../admin/views/BWGViewThemes_bwg.php:2216
2888
+ msgid "Buttons and title background color:"
2889
+ msgstr "Buttons und Titel Hintergrundfarbe:"
2890
+
2891
+ #: ../admin/views/BWGViewThemes_bwg.php:2222
2892
+ msgid "Buttons and title background transparency:"
2893
+ msgstr "Buttons und Titel Hintergrundtransparenz:"
2894
+
2895
+ #: ../admin/views/BWGViewThemes_bwg.php:2229
2896
+ msgid "Buttons or title alignment:"
2897
+ msgstr "Buttons oder Titel Ausrichtung:"
2898
+
2899
+ #: ../admin/views/BWGViewThemes_bwg.php:2252
2900
+ msgid "Overlay background color:"
2901
+ msgstr "Overlay Hintergrundfarbe:"
2902
+
2903
+ #: ../admin/views/BWGViewThemes_bwg.php:2258
2904
+ msgid "Overlay background transparency:"
2905
+ msgstr "Overlay Hintergrundtransparenz:"
2906
+
2907
+ #: ../admin/views/BWGViewThemes_bwg.php:2265
2908
+ msgid "Lightbox background color:"
2909
+ msgstr "Lightbox Hintergrundfarbe:"
2910
+
2911
+ #: ../admin/views/BWGViewThemes_bwg.php:2271
2912
+ msgid "Control buttons height:"
2913
+ msgstr "Steuertasten Höhe:"
2914
+
2915
+ #: ../admin/views/BWGViewThemes_bwg.php:2277
2916
+ msgid "Control buttons margin (top):"
2917
+ msgstr "Steuertasten-Marge (oben):"
2918
+
2919
+ #: ../admin/views/BWGViewThemes_bwg.php:2283
2920
+ msgid "Control buttons margin (left):"
2921
+ msgstr "Steuertasten-Marge (links):"
2922
+
2923
+ #: ../admin/views/BWGViewThemes_bwg.php:2289
2924
+ msgid "Control buttons position:"
2925
+ msgstr "Steuertasten Position:"
2926
+
2927
+ #: ../admin/views/BWGViewThemes_bwg.php:2298
2928
+ msgid "Control buttons background color: "
2929
+ msgstr "Steuertasten Hintergrundfarbe:"
2930
+
2931
+ #: ../admin/views/BWGViewThemes_bwg.php:2304
2932
+ msgid "Control buttons container border radius:"
2933
+ msgstr "Bedientasten Behältergrenzradius:"
2934
+
2935
+ #: ../admin/views/BWGViewThemes_bwg.php:2311
2936
+ msgid "Control buttons container background transparency: "
2937
+ msgstr "Bedientasten Behälterhintergrundtransparenz:"
2938
+
2939
+ #: ../admin/views/BWGViewThemes_bwg.php:2318
2940
+ msgid "Control buttons alignment: "
2941
+ msgstr "Steuertasten Ausrichtung:"
2942
+
2943
+ #: ../admin/views/BWGViewThemes_bwg.php:2332
2944
+ msgid "Control buttons color:"
2945
+ msgstr "Steuertasten Farbe:"
2946
+
2947
+ #: ../admin/views/BWGViewThemes_bwg.php:2338
2948
+ msgid "Control buttons transparency:"
2949
+ msgstr "Steuertasten Transparenz:"
2950
+
2951
+ #: ../admin/views/BWGViewThemes_bwg.php:2345
2952
+ msgid "Toggle button height: "
2953
+ msgstr "Umschaltfläche Höhe:"
2954
+
2955
+ #: ../admin/views/BWGViewThemes_bwg.php:2351
2956
+ msgid "Toggle button width: "
2957
+ msgstr "Umschaltfläche Breite:"
2958
+
2959
+ #: ../admin/views/BWGViewThemes_bwg.php:2357
2960
+ msgid "Close button border radius:"
2961
+ msgstr "Schaltfläche Schließen Grenzradius:"
2962
+
2963
+ #: ../admin/views/BWGViewThemes_bwg.php:2365
2964
+ msgid "Close button border width:"
2965
+ msgstr "Schließen-Schaltfläche Randbreite:"
2966
+
2967
+ #: ../admin/views/BWGViewThemes_bwg.php:2371
2968
+ msgid "Close button border style: "
2969
+ msgstr "Schließen-Schaltfläche Randstil:"
2970
+
2971
+ #: ../admin/views/BWGViewThemes_bwg.php:2385
2972
+ msgid "Close button border color:"
2973
+ msgstr "Schließen-Schaltfläche Rahmenfarbe:"
2974
+
2975
+ #: ../admin/views/BWGViewThemes_bwg.php:2391
2976
+ msgid "Close button box shadow:"
2977
+ msgstr "Schaltfläche Schließen Feld Schatten:"
2978
+
2979
+ #: ../admin/views/BWGViewThemes_bwg.php:2398
2980
+ msgid "Close button background color:"
2981
+ msgstr "Schließen-Schaltfläche Hintergrundfarbe:"
2982
+
2983
+ #: ../admin/views/BWGViewThemes_bwg.php:2404
2984
+ msgid "Close button transparency:"
2985
+ msgstr "Schließen-Schaltfläche Transparenz:"
2986
+
2987
+ #: ../admin/views/BWGViewThemes_bwg.php:2410
2988
+ msgid "Close button width:"
2989
+ msgstr "Schaltfläche Schließen Breite:"
2990
+
2991
+ #: ../admin/views/BWGViewThemes_bwg.php:2416
2992
+ msgid "Close button height:"
2993
+ msgstr "Schaltfläche Schließen Höhe:"
2994
+
2995
+ #: ../admin/views/BWGViewThemes_bwg.php:2422
2996
+ msgid "Close button top:"
2997
+ msgstr "Schaltfläche Schließen oben:"
2998
+
2999
+ #: ../admin/views/BWGViewThemes_bwg.php:2428
3000
+ msgid "Close button right:"
3001
+ msgstr "Schließen-Schaltfläche rechts:"
3002
+
3003
+ #: ../admin/views/BWGViewThemes_bwg.php:2434
3004
+ msgid "Close button size:"
3005
+ msgstr "Schaltfläche Schließen Größe:"
3006
+
3007
+ #: ../admin/views/BWGViewThemes_bwg.php:2440
3008
+ msgid "Close button color:"
3009
+ msgstr "Schaltfläche Schließen Farbe:"
3010
+
3011
+ #: ../admin/views/BWGViewThemes_bwg.php:2446
3012
+ msgid "Fullscreen close button color:"
3013
+ msgstr "Fullscreen Schließen-Button Farbe:"
3014
+
3015
+ #: ../admin/views/BWGViewThemes_bwg.php:2452
3016
+ msgid "Share buttons color:"
3017
+ msgstr "Teilen Knöpfe Farbe:"
3018
+
3019
+ #: ../admin/views/BWGViewThemes_bwg.php:2484
3020
+ msgid "Right, left buttons transparency: "
3021
+ msgstr "Rechts, links-Tasten Transparenz:"
3022
+
3023
+ #: ../admin/views/BWGViewThemes_bwg.php:2515
3024
+ msgid "Right, left, close buttons hover color:"
3025
+ msgstr "Rechts, links, in der Nähe Tasten schweben Farbe:"
3026
+
3027
+ #: ../admin/views/BWGViewThemes_bwg.php:2521
3028
+ msgid "Right, left buttons color:"
3029
+ msgstr "Rechts, links-Tasten Farbe:"
3030
+
3031
+ #: ../admin/views/BWGViewThemes_bwg.php:2534
3032
+ msgid "Right, left buttons border width: "
3033
+ msgstr "Rechts, links-Tasten Rahmenbreite:"
3034
+
3035
+ #: ../admin/views/BWGViewThemes_bwg.php:2554
3036
+ msgid "Right, left buttons border color: "
3037
+ msgstr "Rechts, links Schaltflächen Randfarbe:"
3038
+
3039
+ #: ../admin/views/BWGViewThemes_bwg.php:2560
3040
+ msgid "Filmstrip position: "
3041
+ msgstr "Filmstrip Position:"
3042
+
3043
+ #: ../admin/views/BWGViewThemes_bwg.php:2571
3044
+ msgid "Filmstrip thumbnail margin:"
3045
+ msgstr "Filmstrip Thumbnail-Marge:"
3046
+
3047
+ #: ../admin/views/BWGViewThemes_bwg.php:2578
3048
+ msgid "Filmstrip thumbnail border width: "
3049
+ msgstr "Filmstrip Miniaturrahmenbreite:"
3050
+
3051
+ #: ../admin/views/BWGViewThemes_bwg.php:2584
3052
+ msgid "Filmstrip thumbnail border style:"
3053
+ msgstr "Filmstrip Thumbnail-border-style:"
3054
+
3055
+ #: ../admin/views/BWGViewThemes_bwg.php:2598
3056
+ msgid "Filmstrip thumbnail border color:"
3057
+ msgstr "Filmstrip Miniaturrahmenfarbe:"
3058
+
3059
+ #: ../admin/views/BWGViewThemes_bwg.php:2604
3060
+ msgid "Filmstrip thumbnail border radius:"
3061
+ msgstr "Filmstrip Thumbnail Grenzradius:"
3062
+
3063
+ #: ../admin/views/BWGViewThemes_bwg.php:2611
3064
+ msgid "Filmstrip thumbnail active border width:"
3065
+ msgstr "Filmstrip Thumbnail aktiven Rahmenbreite:"
3066
+
3067
+ #: ../admin/views/BWGViewThemes_bwg.php:2617
3068
+ msgid "Filmstrip thumbnail active border color:"
3069
+ msgstr "Filmstrip Thumbnail aktiven Rahmenfarbe:"
3070
+
3071
+ #: ../admin/views/BWGViewThemes_bwg.php:2623
3072
+ msgid "Filmstrip thumbnail deactive transparency: "
3073
+ msgstr "Filmstrip Thumbnail deaktiv Transparenz:"
3074
+
3075
+ #: ../admin/views/BWGViewThemes_bwg.php:2636
3076
+ msgid "Filmstrip right, left buttons color:"
3077
+ msgstr "Filmstreifen rechts, links-Tasten Farbe:"
3078
+
3079
+ #: ../admin/views/BWGViewThemes_bwg.php:2642
3080
+ msgid "Filmstrip right, left button background color:"
3081
+ msgstr "Filmstreifen rechts, links-Taste Hintergrundfarbe:"
3082
+
3083
+ #: ../admin/views/BWGViewThemes_bwg.php:2648
3084
+ msgid "Rating position: "
3085
+ msgstr "Rating Position:"
3086
+
3087
+ #: ../admin/views/BWGViewThemes_bwg.php:2657
3088
+ msgid "Rating alignment: "
3089
+ msgstr "Bewertung Ausrichtung:"
3090
+
3091
+ #: ../admin/views/BWGViewThemes_bwg.php:2671
3092
+ msgid "Rating icon:"
3093
+ msgstr "Bewertung icon:"
3094
+
3095
+ #: ../admin/views/BWGViewThemes_bwg.php:2685
3096
+ msgid "Rating color:"
3097
+ msgstr "Bewertung Farbe:"
3098
+
3099
+ #: ../admin/views/BWGViewThemes_bwg.php:2691
3100
+ msgid "Rating hover color:"
3101
+ msgstr "Bewertung Hover-Farbe:"
3102
+
3103
+ #: ../admin/views/BWGViewThemes_bwg.php:2697
3104
+ msgid "Rating size:"
3105
+ msgstr "Bewertung Größe:"
3106
+
3107
+ #: ../admin/views/BWGViewThemes_bwg.php:2703
3108
+ msgid "Rating icon count:"
3109
+ msgstr "Bewertung icon zählen:"
3110
+
3111
+ #: ../admin/views/BWGViewThemes_bwg.php:2709
3112
+ msgid "Rating padding:"
3113
+ msgstr "Bewertung padding:"
3114
+
3115
+ #: ../admin/views/BWGViewThemes_bwg.php:2716
3116
+ msgid "Hit counter position:"
3117
+ msgstr "Hit counter Position:"
3118
+
3119
+ #: ../admin/views/BWGViewThemes_bwg.php:2725
3120
+ msgid "Hit counter alignment:"
3121
+ msgstr "Hit counter Ausrichtung:"
3122
+
3123
+ #: ../admin/views/BWGViewThemes_bwg.php:2739
3124
+ msgid "Hit counter background color:"
3125
+ msgstr "Hit counter Hintergrundfarbe:"
3126
+
3127
+ #: ../admin/views/BWGViewThemes_bwg.php:2745
3128
+ msgid "Hit counter background transparency: "
3129
+ msgstr "Hit counter Hintergrundtransparenz:"
3130
+
3131
+ #: ../admin/views/BWGViewThemes_bwg.php:2752
3132
+ msgid "Hit counter border width: "
3133
+ msgstr "Hit counter Rahmenbreite:"
3134
+
3135
+ #: ../admin/views/BWGViewThemes_bwg.php:2758
3136
+ msgid "Hit counter border style:"
3137
+ msgstr "Hit counter Rahmenstil:"
3138
+
3139
+ #: ../admin/views/BWGViewThemes_bwg.php:2772
3140
+ msgid "Hit counter border color:"
3141
+ msgstr "Hit counter Rahmenfarbe:"
3142
+
3143
+ #: ../admin/views/BWGViewThemes_bwg.php:2778
3144
+ msgid "Hit counter border radius:"
3145
+ msgstr "Hit counter Grenzradius:"
3146
+
3147
+ #: ../admin/views/BWGViewThemes_bwg.php:2785
3148
+ msgid "Hit counter padding:"
3149
+ msgstr "Hit counter padding:"
3150
+
3151
+ #: ../admin/views/BWGViewThemes_bwg.php:2792
3152
+ msgid "Hit counter margin:"
3153
+ msgstr "Hit counter-Marge:"
3154
+
3155
+ #: ../admin/views/BWGViewThemes_bwg.php:2799
3156
+ msgid "Hit counter font color:"
3157
+ msgstr "Hit counter Schriftfarbe:"
3158
+
3159
+ #: ../admin/views/BWGViewThemes_bwg.php:2805
3160
+ msgid "Hit counter font family:"
3161
+ msgstr "Hit counter Schriftfamilie:"
3162
+
3163
+ #: ../admin/views/BWGViewThemes_bwg.php:2819
3164
+ msgid "Hit counter font weight:"
3165
+ msgstr "Hit counter Schriftstärke:"
3166
+
3167
+ #: ../admin/views/BWGViewThemes_bwg.php:2833
3168
+ msgid "Hit counter font size:"
3169
+ msgstr "Hit counter Schriftgröße:"
3170
+
3171
+ #: ../admin/views/BWGViewThemes_bwg.php:2846
3172
+ msgid "Info position:"
3173
+ msgstr "Info Position:"
3174
+
3175
+ #: ../admin/views/BWGViewThemes_bwg.php:2855
3176
+ msgid "Info alignment:"
3177
+ msgstr "Info Ausrichtung:"
3178
+
3179
+ #: ../admin/views/BWGViewThemes_bwg.php:2869
3180
+ msgid "Info background color:"
3181
+ msgstr "Info Hintergrundfarbe:"
3182
+
3183
+ #: ../admin/views/BWGViewThemes_bwg.php:2875
3184
+ msgid "Info background transparency:"
3185
+ msgstr "Info Hintergrundtransparenz:"
3186
+
3187
+ #: ../admin/views/BWGViewThemes_bwg.php:2882
3188
+ msgid "Info border width:"
3189
+ msgstr "Info Randbreite:"
3190
+
3191
+ #: ../admin/views/BWGViewThemes_bwg.php:2888
3192
+ msgid "Info border style:"
3193
+ msgstr "Info Randstil:"
3194
+
3195
+ #: ../admin/views/BWGViewThemes_bwg.php:2902
3196
+ msgid "Info border color:"
3197
+ msgstr "Info Rahmenfarbe:"
3198
+
3199
+ #: ../admin/views/BWGViewThemes_bwg.php:2908
3200
+ msgid "Info border radius:"
3201
+ msgstr "Info Grenzradius:"
3202
+
3203
+ #: ../admin/views/BWGViewThemes_bwg.php:2915
3204
+ msgid "Info padding:"
3205
+ msgstr "Info padding:"
3206
+
3207
+ #: ../admin/views/BWGViewThemes_bwg.php:2922
3208
+ msgid "Info margin:"
3209
+ msgstr "Info-Marge:"
3210
+
3211
+ #: ../admin/views/BWGViewThemes_bwg.php:3011
3212
+ msgid "Comments Width:"
3213
+ msgstr "Kommentare Breite:"
3214
+
3215
+ #: ../admin/views/BWGViewThemes_bwg.php:3017
3216
+ msgid "Comments position:"
3217
+ msgstr "Kommentare Position:"
3218
+
3219
+ #: ../admin/views/BWGViewThemes_bwg.php:3026
3220
+ msgid "Comments background color:"
3221
+ msgstr "Kommentare Hintergrundfarbe:"
3222
+
3223
+ #: ../admin/views/BWGViewThemes_bwg.php:3032
3224
+ msgid "Comments font size:"
3225
+ msgstr "Kommentare Schriftgröße:"
3226
+
3227
+ #: ../admin/views/BWGViewThemes_bwg.php:3038
3228
+ msgid "Comments font color:"
3229
+ msgstr "Kommentare Schriftfarbe:"
3230
+
3231
+ #: ../admin/views/BWGViewThemes_bwg.php:3044
3232
+ msgid "Comments font family:"
3233
+ msgstr "Kommentare Schriftfamilie:"
3234
+
3235
+ #: ../admin/views/BWGViewThemes_bwg.php:3058
3236
+ msgid "Comments author font size:"
3237
+ msgstr "Kommentare Autor Schriftgröße:"
3238
+
3239
+ #: ../admin/views/BWGViewThemes_bwg.php:3065
3240
+ msgid "Comments date font size:"
3241
+ msgstr "Kommentare Datum Schriftgröße:"
3242
+
3243
+ #: ../admin/views/BWGViewThemes_bwg.php:3071
3244
+ msgid "Comments body font size:"
3245
+ msgstr "Kommentare Körper Schriftgröße:"
3246
+
3247
+ #: ../admin/views/BWGViewThemes_bwg.php:3077
3248
+ msgid "Comment input border width: "
3249
+ msgstr "Kommentar Eingangsrahmenbreite:"
3250
+
3251
+ #: ../admin/views/BWGViewThemes_bwg.php:3083
3252
+ msgid "Comment input border style: "
3253
+ msgstr "Kommentar Eingangsrahmenstil:"
3254
+
3255
+ #: ../admin/views/BWGViewThemes_bwg.php:3097
3256
+ msgid "Comment input border color:"
3257
+ msgstr "Kommentar Eingangsrahmenfarbe:"
3258
+
3259
+ #: ../admin/views/BWGViewThemes_bwg.php:3103
3260
+ msgid "Comment input border radius:"
3261
+ msgstr "Kommentar Eingangsgrenzradius:"
3262
+
3263
+ #: ../admin/views/BWGViewThemes_bwg.php:3109
3264
+ msgid "Comment input padding:"
3265
+ msgstr "Kommentar Eingabe padding:"
3266
+
3267
+ #: ../admin/views/BWGViewThemes_bwg.php:3116
3268
+ msgid "Comment input background color:"
3269
+ msgstr "Kommentar Eingang Hintergrundfarbe:"
3270
+
3271
+ #: ../admin/views/BWGViewThemes_bwg.php:3122
3272
+ msgid "Comment button background color:"
3273
+ msgstr "Kommentar Schaltfläche Hintergrundfarbe:"
3274
+
3275
+ #: ../admin/views/BWGViewThemes_bwg.php:3128
3276
+ msgid "Comment button padding:"
3277
+ msgstr "Kommentar-Taste padding:"
3278
+
3279
+ #: ../admin/views/BWGViewThemes_bwg.php:3135
3280
+ msgid "Comment button border width:"
3281
+ msgstr "Kommentar Schaltfläche Randbreite:"
3282
+
3283
+ #: ../admin/views/BWGViewThemes_bwg.php:3141
3284
+ msgid "Comment button border style:"
3285
+ msgstr "Kommentar Knopfleiste Stil:"
3286
+
3287
+ #: ../admin/views/BWGViewThemes_bwg.php:3155
3288
+ msgid "Comment button border color:"
3289
+ msgstr "Kommentar Schaltfläche Rahmenfarbe:"
3290
+
3291
+ #: ../admin/views/BWGViewThemes_bwg.php:3161
3292
+ msgid "Comment button border radius:"
3293
+ msgstr "Kommentar Knopfleiste Radius:"
3294
+
3295
+ #: ../admin/views/BWGViewThemes_bwg.php:3168
3296
+ msgid "Comment separator width:"
3297
+ msgstr "Kommentar Trennbreite:"
3298
+
3299
+ #: ../admin/views/BWGViewThemes_bwg.php:3174
3300
+ msgid "Comment separator style:"
3301
+ msgstr "Kommentar Trennstil:"
3302
+
3303
+ #: ../admin/views/BWGViewThemes_bwg.php:3188
3304
+ msgid "Comment separator color:"
3305
+ msgstr "Kommentar Trennfarbe:"
3306
+
3307
+ #: ../admin/views/BWGViewThemes_bwg.php:3296
3308
+ msgid "Button background color:"
3309
+ msgstr "Button Hintergrundfarbe:"
3310
+
3311
+ #: ../admin/views/BWGViewThemes_bwg.php:3302
3312
+ msgid "Button background transparency:"
3313
+ msgstr "Button Hintergrundtransparenz:"
3314
+
3315
+ #: ../admin/views/BWGViewThemes_bwg.php:3309
3316
+ msgid "Button transition:"
3317
+ msgstr "Button Übergang:"
3318
+
3319
+ #: ../admin/views/BWGViewThemes_bwg.php:3331
3320
+ msgid "Position:"
3321
+ msgstr "Position:"
3322
+
3323
+ #: ../admin/views/BWGViewThemes_bwg.php:3354
3324
+ msgid "Numbering:"
3325
+ msgstr "Nummerierung:"
3326
+
3327
+ #: ../admin/views/BWGViewThemes_bwg.php:3363
3328
+ msgid "Button text:"
3329
+ msgstr "Button Text:"
3330
+
3331
+ #: ../admin/views/BWGViewThemes_bwg.php:3368
3332
+ msgid "Arrow"
3333
+ msgstr "Pfeil"
3334
+
3335
+ #: ../admin/views/BWGViewThemes_bwg.php:3369
3336
+ msgid "Next, previous buttons values."
3337
+ msgstr "Als nächstes vorherigen Tasten Werte."
3338
+
3339
+ #: ../admin/views/BWGViewUninstall_bwg.php:33
3340
+ #: ../admin/views/BWGViewUninstall_bwg. php:155
3341
+ msgid "Uninstall Photo Gallery"
3342
+ msgstr "Uninstall Fotogalerie"
3343
+
3344
+ #: ../admin/views/BWGViewUninstall_bwg.php:35
3345
+ msgid "Deactivating Photo Gallery plugin does not remove any data that may have been created. To completely remove this plugin, you can uninstall it here."
3346
+ msgstr "Deaktiv. Photo Gallery Plugin keine Daten, die erstellt wurden können nicht entfernt werden. Um das Plugin vollständig zu entfernen, können Sie es hier zu deinstallieren."
3347
+
3348
+ #: ../admin/views/BWGViewUninstall_bwg.php:38
3349
+ msgid "WARNING:"
3350
+ msgstr "WARNUNG:"
3351
+
3352
+ #: ../admin/views/BWGViewUninstall_bwg.php:39
3353
+ msgid "Once uninstalled, this can't be undone. You should use a Database Backup plugin of WordPress to back up all the data first."
3354
+ msgstr "Einmal deinstalliert, kann dies nicht mehr rückgängig gemacht werden. Sie sollten eine Datenbank-Backup-Plugin von Wordpress nutzen, um zunächst eine Sicherungskopie aller Daten."
3355
+
3356
+ #: ../admin/views/BWGViewUninstall_bwg.php:42
3357
+ msgid "The following Database Tables will be deleted:"
3358
+ msgstr "Die folgenden Datenbanktabellen werden gelöscht:"
3359
+
3360
+ #: ../admin/views/BWGViewUninstall_bwg.php:47
3361
+ msgid "Database Tables"
3362
+ msgstr "Datenbanktabellen"
3363
+
3364
+ #: ../admin/views/BWGViewUninstall_bwg.php:70
3365
+ msgid "Delete the folder containing uploaded images."
3366
+ msgstr "Löschen Sie den Ordner, der hochgeladenen Bilder."
3367
+
3368
+ #: ../admin/views/BWGViewUninstall_bwg.php:76
3369
+ msgid "Do you really want to uninstall Photo Gallery?"
3370
+ msgstr "Wollen Sie wirklich, um die Fotogalerie zu deinstallieren?"
3371
+
3372
+ #: ../admin/views/BWGViewUninstall_bwg.php:83
3373
+ msgid ""
3374
+ "You are About to Uninstall Photo Gallery from WordPress.\n"
3375
+ "This Action Is Not Reversible."
3376
+ msgstr "Du bist dabei, Uninstall Fotogalerie von Wordpress. \\n Diese Aktion ist nicht umkehrbar."
3377
+
3378
+ #: ../admin/views/BWGViewUninstall_bwg.php:133
3379
+ msgid "The following Database Tables successfully deleted:"
3380
+ msgstr "Die folgenden Datenbanktabellen erfolgreich gelöscht:"
3381
+
3382
+ #: ../admin/views/BWGViewUninstall_bwg.php:149
3383
+ msgid "The folder was successfully deleted."
3384
+ msgstr "Der Ordner wurde erfolgreich gelöscht."
3385
+
3386
+ #: ../admin/views/BWGViewUninstall_bwg.php:149
3387
+ msgid "An error occurred when deleting the folder."
3388
+ msgstr "Beim Löschen des Ordners ist ein Fehler aufgetreten."
3389
+
3390
+ #: ../admin/views/BWGViewUninstall_bwg.php:156
3391
+ msgid "Click Here"
3392
+ msgstr "Klicken Sie hier"
3393
+
3394
+ #: ../admin/views/BWGViewUninstall_bwg.php:156
3395
+ msgid "To Finish the Uninstallation and Photo Gallery will be Deactivated Automatically."
3396
+ msgstr ", Um die Deinstallation zu beenden und Photo Gallery automatisch deaktiviert."
3397
+
3398
+ #: ../admin/views/BWGViewWidget.php:106
3399
+ #: ../admin/views/BWGViewWidgetSlideshow.php:101
3400
+ #: ../admin/views/BWGViewWidgetTags.php:114
3401
+ msgid "Title:"
3402
+ msgstr "Titel:"
3403
+
3404
+ #: ../admin/views/BWGViewWidget.php:140 ../framework/WDWLibrary.php:521
3405
+ msgid "First"
3406
+ msgstr "Erste"
3407
+
3408
+ #: ../admin/views/BWGViewWidget.php:141 ../framework/WDWLibrary.php:524
3409
+ msgid "Last"
3410
+ msgstr "Letzte"
3411
+
3412
+ #: ../admin/views/BWGViewWidget.php:145
3413
+ msgid "Count:"
3414
+ msgstr "Count:"
3415
+
3416
+ #: ../admin/views/BWGViewWidget.php:149
3417
+ #: ../admin/views/BWGViewWidgetSlideshow.php:117
3418
+ #: ../admin/views/BWGViewWidgetTags.php:139
3419
+ msgid "Dimensions:"
3420
+ msgstr "Abmess.:"
3421
+
3422
+ #: ../admin/views/BWGViewWidgetSlideshow.php:122
3423
+ msgid "Filmstrip height:"
3424
+ msgstr "Filmstrip Höhe:"
3425
+
3426
+ #: ../admin/views/BWGViewWidgetTags.php:123
3427
+ msgid "Show Tag Names:"
3428
+ msgstr "Zeigen Tag Namen:"
3429
+
3430
+ #: ../admin/views/BWGViewWidgetTags.php:129
3431
+ msgid "Open in:"
3432
+ msgstr "Öffnen Sie in:"
3433
+
3434
+ #: ../admin/views/BWGViewWidgetTags.php:130
3435
+ msgid "page"
3436
+ msgstr "Seite"
3437
+
3438
+ #: ../admin/views/BWGViewWidgetTags.php:131
3439
+ msgid "lightbox"
3440
+ msgstr "Leuchtkasten"
3441
+
3442
+ #: ../admin/views/BWGViewWidgetTags.php:135
3443
+ msgid "Number (0 for all):"
3444
+ msgstr "Nummer (0 für alle):"
3445
+
3446
+ #: ../admin/views/BWGViewWidgetTags.php:144
3447
+ msgid "Transparent Background:"
3448
+ msgstr "Transparenter Hintergrund:"
3449
+
3450
+ #: ../admin/views/BWGViewWidgetTags.php:150
3451
+ msgid "Background Color:"
3452
+ msgstr "Hintergrundfarbe:"
3453
+
3454
+ #: ../admin/views/BWGViewWidgetTags.php:154
3455
+ msgid "Text Color:"
3456
+ msgstr "Textfarbe:"
3457
+
3458
+ #. Author of the plugin
3459
+ msgid "Rob"
3460
+ msgstr "Rauben"
3461
+
3462
+ #: ../filemanager/view.php:63
3463
+ msgid "File loading failed"
3464
+ msgstr "Laden einer Datei fehlgeschlagen"
3465
+
3466
+ #: ../filemanager/view.php:65
3467
+ msgid "Are you sure you want to permanently remove selected items?"
3468
+ msgstr "Sind Sie sicher, Sie wollen ausgewählte Elemente dauerhaft zu entfernen?"
3469
+
3470
+ #: ../filemanager/view.php:66
3471
+ msgid "This will cancel uploads. Continue?"
3472
+ msgstr "Dies wird Uploads abzubrechen. Weiter?"
3473
+
3474
+ #: ../filemanager/view.php:68
3475
+ msgid "Enter directory name"
3476
+ msgstr "Geben Sie Verzeichnisnamen"
3477
+
3478
+ #: ../filemanager/view.php:69
3479
+ msgid "Enter new name"
3480
+ msgstr "Neuen Namen eingeben"
3481
+
3482
+ #: ../filemanager/view.php:70
3483
+ msgid "Processing uploaded files..."
3484
+ msgstr "Verarbeitung hochgeladenen Dateien ..."
3485
+
3486
+ #: ../filemanager/view.php:118
3487
+ msgid "Up"
3488
+ msgstr "Herauf"
3489
+
3490
+ #: ../filemanager/view.php:119
3491
+ msgid "Make a directory"
3492
+ msgstr "Erstellen Sie ein Verzeichnis"
3493
+
3494
+ #: ../filemanager/view.php:120
3495
+ msgid "Rename item"
3496
+ msgstr "Artikel umbenennen"
3497
+
3498
+ #: ../filemanager/view.php:122
3499
+ msgid "Copy"
3500
+ msgstr "Kopie"
3501
+
3502
+ #: ../filemanager/view.php:123
3503
+ msgid "Cut"
3504
+ msgstr "Cut"
3505
+
3506
+ #: ../filemanager/view.php:124
3507
+ msgid "Paste"
3508
+ msgstr "Paste"
3509
+
3510
+ #: ../filemanager/view.php:125
3511
+ msgid "Remove items"
3512
+ msgstr "Artikel entfernen"
3513
+
3514
+ #: ../filemanager/view.php:128
3515
+ msgid "Upload files"
3516
+ msgstr "Daten hochladen"
3517
+
3518
+ #: ../filemanager/view.php:133
3519
+ msgid "Media library"
3520
+ msgstr "Mediathek"
3521
+
3522
+ #: ../filemanager/view.php:142
3523
+ msgid "View thumbs"
3524
+ msgstr "Daumen anzeigen"
3525
+
3526
+ #: ../filemanager/view.php:143
3527
+ msgid "View list"
3528
+ msgstr "Auflisten"
3529
+
3530
+ #: ../filemanager/view.php:150
3531
+ msgid "To change upload directory go to Options page."
3532
+ msgstr "So ändern Sie die Upload-Verzeichnis gehen Sie zu Optionen Seite."
3533
+
3534
+ #: ../filemanager/view.php:275
3535
+ msgid "Add selected images to gallery"
3536
+ msgstr "In ausgewählten Bilder zur Galerie"
3537
+
3538
+ #: ../filemanager/view.php:285 ../filemanager/view.php:368
3539
+ msgid "Thumbnail Maximum Dimensions:"
3540
+ msgstr "Thumbnail Maximale Maße:"
3541
+
3542
+ #: ../filemanager/view.php:290 ../filemanager/view.php:373 ..
3543
+ #: /frontend/views/BWGViewAlbum_compact_preview.php:603
3544
+ #: /frontend/views/BWGViewAlbum_extended_preview.php:584
3545
+ msgid "Back"
3546
+ msgstr "Zurück"
3547
+
3548
+ #: ../filemanager/view.php:293 ../filemanager/view.php:376
3549
+ msgid "Image Maximum Dimensions:"
3550
+ msgstr "Bild Maximale Maße:"
3551
+
3552
+ #: ../filemanager/view.php:360
3553
+ msgid "Import selected images"
3554
+ msgstr "Import ausgewählten Bilder"
3555
+
3556
+ #: ../filemanager/view.php:384
3557
+ msgid "Drag files here or click the button below"
3558
+ msgstr "Ziehen Sie Dateien hier oder klicken Sie auf die Schaltfläche unten,"
3559
+
3560
+ #: ../filemanager/view.php:384
3561
+ msgid "to upload files"
3562
+ msgstr "Dateien hochladen"
3563
+
3564
+ #: ../filemanager/view.php:456
3565
+ msgid "No files to upload"
3566
+ msgstr "Keine Dateien hochladen"
3567
+
3568
+ #: ../framework/WDWLibrary.php:64
3569
+ msgid "You can't delete default theme"
3570
+ msgstr "Sie können Standard-Theme nicht löschen"
3571
+
3572
+ #: ../framework/WDWLibrary.php:82
3573
+ msgid "The item is successfully set as default."
3574
+ msgstr "Das Element ist erfolgreich als Standard festgelegt."
3575
+
3576
+ #: ../framework/WDWLibrary.php:88
3577
+ msgid "Options Succesfully Saved."
3578
+ msgstr "Optionen Erfolgreich Gespeichert."
3579
+
3580
+ #: ../framework/WDWLibrary.php:124
3581
+ msgid "A term with the name provided already exists."
3582
+ msgstr "Ein Begriff, mit dem Namen bereits vorgesehen existiert."
3583
+
3584
+ #: ../framework/WDWLibrary.php:130
3585
+ msgid "Name field is required."
3586
+ msgstr "Namensfeld erforderlich."
3587
+
3588
+ #: ../framework/WDWLibrary.php:136
3589
+ msgid "The slug must be unique."
3590
+ msgstr "Die Schnecke muss eindeutig sein."
3591
+
3592
+ #: ../framework/WDWLibrary.php:142
3593
+ msgid "Changes must be saved."
3594
+ msgstr "Änderungen müssen gespeichert werden."
3595
+
3596
+ #: ../framework/WDWLibrary.php:188 ../framework/WDWLibrary.php:362 ..
3597
+ #: /framework/WDWLibrary.php:725 ../framework/WDWLibrary.php:781
3598
+ msgid "Search"
3599
+ msgstr "Suche"
3600
+
3601
+ #: ../framework/WDWLibrary.php:315 ../framework/WDWLibrary.php:465 ..
3602
+ #: /framework/WDWLibrary.php:545
3603
+ msgid "of"
3604
+ msgstr "von"
3605
+
3606
+ #: ../framework/WDWLibrary.php:516
3607
+ msgid " item(s)"
3608
+ msgstr "Artikel)"
3609
+
3610
+ #: ../framework/WDWLibrary.php:522
3611
+ msgid "Previous"
3612
+ msgstr "Zurück"
3613
+
3614
+ #: ../framework/WDWLibrary.php:523
3615
+ msgid "Next"
3616
+ msgstr "Nächster"
3617
+
3618
+ #: ../framework/WDWLibrary.php:542
3619
+ msgid "Go to the first page"
3620
+ msgstr "Gehe zur ersten Seite"
3621
+
3622
+ #: ../framework/WDWLibrary.php:543
3623
+ msgid "Go to the previous page"
3624
+ msgstr "Gehen Sie auf die vorherige Seite"
3625
+
3626
+ #: ../framework/WDWLibrary.php:549
3627
+ msgid "Go to the next page"
3628
+ msgstr "Gehen Sie auf die nächste Seite"
3629
+
3630
+ #: ../framework/WDWLibrary.php:550
3631
+ msgid "Go to the last page"
3632
+ msgstr "Gehen Sie zur letzten Seite"
3633
+
3634
+ #: ../framework/WDWLibrary.php:562
3635
+ msgid "Load More..."
3636
+ msgstr "Laden Sie Mehr ..."
3637
+
3638
+ #: ../framework/WDWLibrary.php:846
3639
+ msgid "Order by: "
3640
+ msgstr "Sortieren nach:"
3641
+
3642
+ #: ../frontend/views/BWGViewAlbum_compact_preview.php:151 ..
3643
+ #: /frontend/views/BWGViewAlbum_extended_preview.php:96
3644
+ #: /frontend/views/BWGViewImage_browser.php:72
3645
+ #: ../frontend/views/BWGViewSlideshow. php:46
3646
+ #: ../frontend/views/BWGViewSlideshow.php:86
3647
+ #: /frontend/views/BWGViewThumbnails.php:153
3648
+ msgid "There is no theme selected or the theme was deleted."
3649
+ msgstr "Es gibt kein Thema gewählt oder das Thema wurde gelöscht."
3650
+
3651
+ #: ../frontend/views/BWGViewAlbum_compact_preview.php:158 ..
3652
+ #: /frontend/views/BWGViewAlbum_compact_preview.php:192
3653
+ #: /frontend/views/BWGViewAlbum_extended_preview.php:103
3654
+ #: /frontend/views/BWGViewAlbum_extended_preview.php:137
3655
+ msgid "There is no album selected or the album was deleted."
3656
+ msgstr "Es gibt kein Album ausgewählt oder das Album wurde gelöscht."
3657
+
3658
+ #: ../frontend/views/BWGViewAlbum_compact_preview.php:180 ..
3659
+ #: /frontend/views/BWGViewAlbum_extended_preview.php:125
3660
+ #: /frontend/views/BWGViewImage_browser.php:83
3661
+ #: ../frontend/views/BWGViewSlideshow. php:129
3662
+ #: ../frontend/views/BWGViewThumbnails.php:172
3663
+ msgid "There are no images in this gallery."
3664
+ msgstr "Es sind keine Bilder in dieser Galerie."
3665
+
3666
+ #: ../frontend/views/BWGViewAlbum_compact_preview.php:626 ..
3667
+ #: /frontend/views/BWGViewAlbum_extended_preview.php:595
3668
+ msgid "Album is empty."
3669
+ msgstr "Album ist leer."
3670
+
3671
+ #: ../frontend/views/BWGViewAlbum_compact_preview.php:749 ..
3672
+ #: /frontend/views/BWGViewAlbum_extended_preview.php:731
3673
+ msgid "Gallery is empty."
3674
+ msgstr "Galerie ist leer."
3675
+
3676
+ #: ../frontend/views/BWGViewAlbum_compact_preview.php:805 ..
3677
+ #: /frontend/views/BWGViewAlbum_extended_preview.php:775
3678
+ #: /frontend/views/BWGViewGalleryBox.php:835
3679
+ #: ../frontend/views/BWGViewGalleryBox. php:2197
3680
+ #: ../frontend/views/BWGViewSlideshow.php:1443
3681
+ #: /frontend/views/BWGViewThumbnails.php:457
3682
+ msgid "Play"
3683
+ msgstr "Spielen"
3684
+
3685
+ #: ../frontend/views/BWGViewAlbum_extended_preview.php:696 ..
3686
+ #: /frontend/views/BWGViewAlbum_extended_preview.php:819
3687
+ msgid "More"
3688
+ msgstr "Mehr"
3689
+
3690
+ #: ../frontend/views/BWGViewAlbum_extended_preview.php:814
3691
+ msgid "Hide"
3692
+ msgstr "Verstecken"
3693
+
3694
+ #: ../frontend/views/BWGViewGalleryBox.php:815
3695
+ msgid "The image has been deleted."
3696
+ msgstr "Das Bild wurde gelöscht."
3697
+
3698
+ #: ../frontend/views/BWGViewGalleryBox.php:839 ..
3699
+ #: /frontend/views/BWGViewGalleryBox.php:1575
3700
+ #: ../frontend/views/BWGViewGalleryBox. php:2029
3701
+ #: ../frontend/views/BWGViewGalleryBox.php:2125
3702
+ msgid "Maximize"
3703
+ msgstr "Maximieren"
3704
+
3705
+ #: ../frontend/views/BWGViewGalleryBox.php:843 ..
3706
+ #: /frontend/views/BWGViewGalleryBox.php:1577
3707
+ #: ../frontend/views/BWGViewGalleryBox. php:2127
3708
+ msgid "Fullscreen"
3709
+ msgstr "Vollbild"
3710
+
3711
+ #: ../frontend/views/BWGViewGalleryBox.php:845 ..
3712
+ #: /frontend/views/BWGViewGalleryBox.php:1915
3713
+ msgid "Show info"
3714
+ msgstr "Info anzeigen"
3715
+
3716
+ #: ../frontend/views/BWGViewGalleryBox.php:851
3717
+ msgid "Open image in original size."
3718
+ msgstr "Bild in Originalgröße."
3719
+
3720
+ #: ../frontend/views/BWGViewGalleryBox.php:872
3721
+ msgid "Download original image"
3722
+ msgstr "Originalbild"
3723
+
3724
+ #: ../frontend/views/BWGViewGalleryBox.php:1723
3725
+ msgid "Show Comments"
3726
+ msgstr "Anmerkungen anzeigen"
3727
+
3728
+ #: ../frontend/views/BWGViewGalleryBox.php:1766
3729
+ msgid "Hide Comments"
3730
+ msgstr "Kommentare ausblenden"
3731
+
3732
+ #: ../frontend/views/BWGViewGalleryBox.php:1911
3733
+ msgid "Hide info"
3734
+ msgstr "Info verbergen"
3735
+
3736
+ #: ../frontend/views/BWGViewGalleryBox.php:2066 ..
3737
+ #: /frontend/views/BWGViewGalleryBox.php:2266
3738
+ msgid "Restore"
3739
+ msgstr "Wiederherstellen"
3740
+
3741
+ #: ../frontend/views/BWGViewGalleryBox.php:2177
3742
+ msgid "Exit Fullscreen"
3743
+ msgstr "Beenden Vollbild"
3744
+
3745
+ #: ../frontend/views/BWGViewGalleryBox.php:2191 ..
3746
+ #: /frontend/views/BWGViewGalleryBox.php:2206
3747
+ #: ../frontend/views/BWGViewSlideshow. php:1434
3748
+ #: ../frontend/views/BWGViewSlideshow.php:1452
3749
+ msgid "Pause"
3750
+ msgstr "Pausieren"
3751
+
3752
+ #: ../frontend/views/BWGViewImage_browser.php:77 ..
3753
+ #: /frontend/views/BWGViewSlideshow.php:124
3754
+ #: ../frontend/views/BWGViewThumbnails. php:164
3755
+ msgid "There is no gallery selected or the gallery was deleted."
3756
+ msgstr "Es gibt keine Galerie ausgewählt oder der Galerie gelöscht."
languages/backend/bwg_back-es_ES.mo ADDED
Binary file
languages/backend/bwg_back-es_ES.po ADDED
@@ -0,0 +1,3849 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: photo-gallery\n"
4
+ "POT-Creation-Date: 15-11-02 09:15+000\n"
5
+ "PO-Revision-Date: 2015-11-02 14:06+0400\n"
6
+ "Last-Translator: admin < a@mail.ru >\n"
7
+ "Language-Team: \n"
8
+ "Language: es_ES\n"
9
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
10
+ "MIME-Version: 1.0\n"
11
+ "Content-Type: text/plain; charset=UTF-8\n"
12
+ "Content-Transfer-Encoding: 8bit\n"
13
+ "X-Generator: Poedit 1.5.4\n"
14
+
15
+ #: ../photo-gallery-notices.php:188
16
+ msgid "Leave A Review?"
17
+ msgstr "Deje un comentario?"
18
+
19
+ #: ../photo-gallery-notices.php:189
20
+ #, php-format
21
+ msgid ""
22
+ "We hope you've enjoyed using WordPress %s! Would you consider leaving us a "
23
+ "review on WordPress.org?"
24
+ msgstr ""
25
+ "Esperamos que hayas disfrutado utilizando WordPress% s! ¿Consideraría usted "
26
+ "que nos deja un comentario para WordPress.org?"
27
+
28
+ #: ../photo-gallery-notices.php:190
29
+ msgid "Sure! I'd love to!"
30
+ msgstr "¡Por supuesto! ¡Me encantaría!"
31
+
32
+ #: ../photo-gallery-notices.php:191
33
+ msgid "I've already left a review"
34
+ msgstr "Yo ya he dejado una reseña"
35
+
36
+ #: ../photo-gallery-notices.php:192
37
+ msgid "Maybe Later"
38
+ msgstr "Quizas despues"
39
+
40
+ #: ../photo-gallery-notices.php:193 ../photo-gallery-notices.php:203
41
+ msgid "Never show again"
42
+ msgstr "Nunca mostrar de nuevo"
43
+
44
+ #: ../photo-gallery-notices.php:199
45
+ msgid "Hey! How's It Going?"
46
+ msgstr "¡Oye! ¿Cómo va?"
47
+
48
+ #: ../photo-gallery-notices.php:200
49
+ #, php-format
50
+ msgid ""
51
+ "Thank you for using WordPress %s! We hope that you've found everything you "
52
+ "need, but if you have any questions:"
53
+ msgstr ""
54
+ "Gracias por usar WordPress% s usted! Esperamos que usted haya encontrado "
55
+ "todo lo que necesita, pero si usted tiene alguna pregunta:"
56
+
57
+ #: ../photo-gallery-notices.php:201
58
+ msgid "Check out User Guide"
59
+ msgstr "Echa un vistazo a la Guía del Usuario"
60
+
61
+ #: ../photo-gallery-notices.php:202
62
+ msgid "Get Some Help"
63
+ msgstr "Conseguir un poco de ayuda"
64
+
65
+ #. Name of the plugin
66
+ msgid "Photo Gallery"
67
+ msgstr "Galería de fotos"
68
+
69
+ #. URI of the plugin
70
+ msgid "https://web-dorado.com/products/wordpress-photo-gallery-plugin.html"
71
+ msgstr "https://web-dorado.com/products/wordpress-photo-gallery-plugin.html"
72
+
73
+ #. Description of the plugin
74
+ msgid ""
75
+ "This plugin is a fully responsive gallery plugin with advanced "
76
+ "functionality. It allows having different image galleries for your posts "
77
+ "and pages. You can create unlimited number of galleries, combine them into "
78
+ "albums, and provide descriptions and tags."
79
+ msgstr ""
80
+ "Este plugin es una galería Plugin responda plenamente con funcionalidad "
81
+ "avanzada. Permite tener diferentes galerías de imágenes para tus mensajes y "
82
+ "páginas. Usted puede crear un número ilimitado de galerías, combinarlos en "
83
+ "álbumes, y proporcionar descripciones y etiquetas."
84
+
85
+ #. Author of the plugin
86
+ msgid "WebDorado"
87
+ msgstr "WebDorado"
88
+
89
+ #. Author URI of the plugin
90
+ msgid "https://web-dorado.com"
91
+ msgstr "https://web-dorado.com"
92
+
93
+ #: ../photo-gallery.php:71
94
+ msgid "Add Galleries/Images"
95
+ msgstr "Añadir Galerías / Imágenes"
96
+
97
+ #: ../photo-gallery.php:76 .. /admin/views/BWGViewAlbums_bwg.php:53
98
+ msgid "Albums"
99
+ msgstr "Álbumes"
100
+
101
+ #: ../photo-gallery.php:81 ../admin/views/BWGViewAddTags. php:45
102
+ #: ../admin/views/BWGViewGalleries_bwg.php:857 ..
103
+ #: /admin/views/BWGViewTags_bwg.php:56
104
+ msgid "Tags"
105
+ msgstr "Etiquetas"
106
+
107
+ #: ../photo-gallery.php:86
108
+ msgid "Options"
109
+ msgstr "Opciones"
110
+
111
+ #: ../photo-gallery.php:90 .. /admin/views/BWGViewThemes_bwg.php:78
112
+ msgid "Themes"
113
+ msgstr "Temas"
114
+
115
+ #: ../photo-gallery.php:95
116
+ msgid "Generate Shortcode"
117
+ msgstr "Generar Código corto"
118
+
119
+ #: ../photo-gallery.php:97
120
+ msgid "Licensing"
121
+ msgstr "Licencias"
122
+
123
+ #: ../photo-gallery.php:100
124
+ msgid "Featured Plugins"
125
+ msgstr "Plugins destacado"
126
+
127
+ #: ../photo-gallery.php:101
128
+ msgid "Featured Themes"
129
+ msgstr "Temas destacados"
130
+
131
+ #: ../photo-gallery.php:103
132
+ msgid "Uninstall"
133
+ msgstr "Desinstalar"
134
+
135
+ #: ../photo-gallery.php:2446 ../photo-gallery.php:2615
136
+ msgid "field is required."
137
+ msgstr "Se requiere campo."
138
+
139
+ #: ../photo-gallery.php:2447
140
+ msgid "You must select an image file."
141
+ msgstr "Debe seleccionar un archivo de imagen."
142
+
143
+ #: ../photo-gallery.php:2448
144
+ msgid "You must select an audio file."
145
+ msgstr "Debe seleccionar un archivo de audio."
146
+
147
+ #: ../photo-gallery.php:2449
148
+ msgid ""
149
+ "You do not have Instagram CLIENT_ID. Input its value in Options->Embed "
150
+ "options. "
151
+ msgstr ""
152
+ "Usted no tiene Instagram CLIENT_ID. Introducir su valor en las opciones "
153
+ "Opciones-> Incrustar."
154
+
155
+ #: ../photo-gallery.php:2450
156
+ msgid "Instagram recent post number must be between 1 and 33."
157
+ msgstr "Instagram número reciente post debe estar entre 1 y 33."
158
+
159
+ #: ../photo-gallery.php:2451
160
+ msgid "The gallery is not empty. Please delete all the images first."
161
+ msgstr ""
162
+ "La galería no está vacío. Por favor, borrar todas las imágenes primero."
163
+
164
+ #: ../photo-gallery.php:2452
165
+ msgid "Please enter url to embed."
166
+ msgstr "Por favor, introduzca url para incrustar."
167
+
168
+ #: ../photo-gallery.php:2453
169
+ msgid "Error: cannot get response from the server."
170
+ msgstr "Error: No se puede obtener respuesta del servidor."
171
+
172
+ #: ../photo-gallery.php:2454
173
+ msgid "Error: something wrong happened at the server."
174
+ msgstr "Error: algo malo sucedió en el servidor."
175
+
176
+ #: ../photo-gallery.php:2455
177
+ msgid "Error"
178
+ msgstr "Error"
179
+
180
+ #: ../photo-gallery.php:2456
181
+ msgid "Show order column"
182
+ msgstr "Columna Mostrar pedido"
183
+
184
+ #: ../photo-gallery.php:2457 ../admin/views/BWGViewAlbums_bwg.php:63 ..
185
+ #: /admin/views/BWGViewGalleries_bwg.php:63
186
+ #: ../admin/views/BWGViewGalleries_bwg. php:521
187
+ #: ../admin/views/BWGViewGalleries_bwg.php:725
188
+ msgid "Hide order column"
189
+ msgstr "Ocultar columna de orden"
190
+
191
+ #: ../photo-gallery.php:2458
192
+ msgid "Selected"
193
+ msgstr "Seleccionado"
194
+
195
+ #: ../photo-gallery.php:2459 ../framework/WDWLibrary.php:436
196
+ msgid "item"
197
+ msgstr "artículo"
198
+
199
+ #: ../photo-gallery.php:2460
200
+ msgid "Items Succesfully Saved."
201
+ msgstr "Artículos Succesfully guardados."
202
+
203
+ #: ../photo-gallery.php:2461
204
+ msgid "Item Succesfully Recovered."
205
+ msgstr "Artículo Succesfully Recuperado."
206
+
207
+ #: ../photo-gallery.php:2462
208
+ #: ../admin/controllers/BWGControllerGalleries_bwg.php:953
209
+ #: ../framework/WDWLibrary.php:94
210
+ msgid "Item Succesfully Published."
211
+ msgstr "Artículo Succesfully Publicado."
212
+
213
+ #: ../photo-gallery.php:2463
214
+ #: ../admin/controllers/BWGControllerGalleries_bwg.php:990
215
+ #: ../framework/WDWLibrary.php:106
216
+ msgid "Item Succesfully Unpublished."
217
+ msgstr "Artículo Succesfully inédito."
218
+
219
+ #: ../photo-gallery.php:2464
220
+ #: ../admin/controllers/BWGControllerGalleries_bwg.php:908
221
+ #: ../framework/WDWLibrary.php:58
222
+ msgid "Item Succesfully Deleted."
223
+ msgstr "Artículo Succesfully eliminados."
224
+
225
+ #: ../photo-gallery.php:2465
226
+ #: ../admin/controllers/BWGControllerGalleries_bwg.php:944
227
+ #: ../admin/controllers/BWGControllerGalleries_bwg.php:981 ..
228
+ #: /admin/controllers/BWGControllerGalleries_bwg.php:1018
229
+ #: /admin/controllers/BWGControllerGalleries_bwg.php:1097
230
+ #: ../framework/WDWLibrary. php:76
231
+ msgid "You must select at least one item."
232
+ msgstr "Debe seleccionar al menos un elemento."
233
+
234
+ #: ../photo-gallery.php:2466
235
+ msgid "Items Succesfully resized."
236
+ msgstr "Artículos Succesfully cambiar de tamaño."
237
+
238
+ #: ../photo-gallery.php:2467
239
+ msgid "Watermarks Succesfully Set."
240
+ msgstr "Marcas de agua Succesfully Set."
241
+
242
+ #: ../photo-gallery.php:2468
243
+ msgid "Items Succesfully Reset."
244
+ msgstr "Artículos Succesfully Reiniciar."
245
+
246
+ #: ../photo-gallery.php:2616
247
+ msgid "This is not a valid email address."
248
+ msgstr "Esto no es una dirección de correo electrónico válida."
249
+
250
+ #: ../photo-gallery.php:2617
251
+ #: ../frontend/views/BWGViewAlbum_compact_preview.php:744
252
+ #: ../frontend/views/BWGViewAlbum_extended_preview.php:726
253
+ msgid "There are no images matching your search."
254
+ msgstr "No hay imágenes que coincidan con su búsqueda."
255
+
256
+ #: ../photo-gallery.php:2620
257
+ msgid "Select Tag."
258
+ msgstr "Seleccionar etiqueta."
259
+
260
+ #: ../addons/addons.php:5
261
+ msgid "Photo Gallery Facebook"
262
+ msgstr "Galería de fotos de Facebook"
263
+
264
+ #: ../addons/addons.php:7
265
+ msgid ""
266
+ "Photo Gallery Facebook is an add-on, which helps to display Facebook photos "
267
+ "and videos within Photo Gallery plugin. You can create Facebook-only "
268
+ "galleries, embed individual images and videos or include Facebook albums "
269
+ "within mixed type albums."
270
+ msgstr ""
271
+ "Galería de fotos Facebook es un add-on, que ayuda a mostrar las fotos de "
272
+ "Facebook y videos en Galería de fotos plugin. Puede crear de Facebook de "
273
+ "sólo galerías, imágenes individuales incrustar y videos o incluir álbumes de "
274
+ "Facebook dentro de álbumes de tipo mixto."
275
+
276
+ #: ../addons/addons.php:12
277
+ msgid "NextGen Gallery Import to Photo Gallery"
278
+ msgstr "NextGen Gallery de importación a la galería de fotos"
279
+
280
+ #: ../addons/addons.php:14
281
+ msgid ""
282
+ "This addon integrates NextGen with Photo Gallery allowing to import images "
283
+ "and related data from NextGen to use with Photo Gallery"
284
+ msgstr ""
285
+ "Este complemento integra NextGen con Galería de fotos que permite importar "
286
+ "imágenes y datos relacionados de NextGen de usar con Galería de fotos"
287
+
288
+ #: ../addons/addons.php:19
289
+ msgid "Photo Gallery Export / Import"
290
+ msgstr "Galería de Fotos de exportación / importación"
291
+
292
+ #: ../addons/addons.php:21
293
+ msgid ""
294
+ "Photo Gallery Export/Import helps to move created galleries and albums from "
295
+ "one site to another. This way you can save the gallery/album options and "
296
+ "manual modifications."
297
+ msgstr ""
298
+ "Galería de Fotos de exportación / importación ayuda a mover las galerías y "
299
+ "álbumes creados a partir de un sitio a otro. De esta manera usted puede "
300
+ "guardar los galería / opciones de álbumes y modificaciones manuales."
301
+
302
+ #: ../addons/addons.php:30
303
+ msgid "Photo Gallery Add-ons"
304
+ msgstr "Galería de fotos de complementos"
305
+
306
+ #: ../addons/addons.php:33
307
+ msgid "Attention"
308
+ msgstr "¡Atención"
309
+
310
+ #: ../addons/addons.php:34
311
+ msgid "Add-ons are supported by premium version of Photo Gallery"
312
+ msgstr ""
313
+ "Los complementos son compatibles con la versión premium de Galería de fotos"
314
+
315
+ #: ../addons/addons.php:69
316
+ msgid "GET THIS ADD ON"
317
+ msgstr "Obtener esta AÑADIR EN"
318
+
319
+ #: ../admin/controllers/BWGControllerGalleries_bwg.php:727 ..
320
+ #: /admin/controllers/BWGControllerGalleries_bwg.php:868
321
+ #: /admin/controllers/BWGControllerOptions_bwg.php:384
322
+ #: /admin/views/BWGViewTags_bwg.php:52 ../framework/WDWLibrary.php:46
323
+ msgid "Item Succesfully Saved."
324
+ msgstr "Artículo Succesfully Guardados."
325
+
326
+ #: ../admin/controllers/BWGControllerGalleries_bwg.php:871 ..
327
+ #: /admin/controllers/BWGControllerGalleries_bwg.php:911
328
+ #: /admin/controllers/BWGControllerGalleries_bwg.php:956
329
+ #: /admin/controllers/BWGControllerGalleries_bwg.php:993
330
+ #: ../framework/WDWLibrary. php:52
331
+ msgid "Error. Please install plugin again."
332
+ msgstr "Error. Por favor, instale el plugin de nuevo."
333
+
334
+ #: ../admin/controllers/BWGControllerGalleries_bwg.php:894 ..
335
+ #: /framework/WDWLibrary.php:118
336
+ msgid "Ordering Succesfully Saved."
337
+ msgstr "Pedidos Succesfully Guardados."
338
+
339
+ #: ../admin/controllers/BWGControllerGalleries_bwg.php:941 ..
340
+ #: /framework/WDWLibrary.php:70
341
+ msgid "Items Succesfully Deleted."
342
+ msgstr "Artículos Succesfully eliminados."
343
+
344
+ #: ../admin/controllers/BWGControllerGalleries_bwg.php:978 ..
345
+ #: /framework/WDWLibrary.php:100
346
+ msgid "Items Succesfully Published."
347
+ msgstr "Artículos Succesfully publicados."
348
+
349
+ #: ../admin/controllers/BWGControllerGalleries_bwg.php:1015 ..
350
+ #: /framework/WDWLibrary.php:112
351
+ msgid "Items Succesfully Unpublished."
352
+ msgstr "Artículos Succesfully inédito."
353
+
354
+ #: ../admin/controllers/BWGControllerGalleries_bwg.php:1100
355
+ msgid "Thumb Succesfully Resized"
356
+ msgstr "Pulgar Succesfully redimensionada"
357
+
358
+ #: ../admin/views/BWGViewAddAlbumsGalleries.php:45
359
+ msgid "Albums/Galleries"
360
+ msgstr "Álbumes / Galerías"
361
+
362
+ #: ../admin/views/BWGViewAddAlbumsGalleries.php:51 ..
363
+ #: /admin/views/BWGViewAddAlbumsGalleries.php:77
364
+ #: ../admin/views/BWGViewAddTags. php:51 ../admin/views/BWGViewAddTags.php:68
365
+ #: ../admin/views/BWGViewAlbums_bwg. php:75
366
+ #: ../admin/views/BWGViewAlbums_bwg.php:96
367
+ #: /admin/views/BWGViewGalleries_bwg.php:75
368
+ #: ../admin/views/BWGViewGalleries_bwg. php:97
369
+ #: ../admin/views/BWGViewTags_bwg.php:71 ../admin/views/BWGViewTags_bwg.
370
+ #: php:91 ../admin/views/BWGViewThemes_bwg.php:110
371
+ msgid "Name"
372
+ msgstr "Nombre"
373
+
374
+ #: ../admin/views/BWGViewAddAlbumsGalleries.php:70 ..
375
+ #: /admin/views/BWGViewBWGShortcode.php:214
376
+ #: ../admin/views/BWGViewGalleries_bwg. php:908
377
+ msgid "Type"
378
+ msgstr "Escribe"
379
+
380
+ #: ../admin/views/BWGViewAddAlbumsGalleries.php:91
381
+ #: ../admin/views/BWGViewWidget. php:111
382
+ msgid "Album"
383
+ msgstr "Album"
384
+
385
+ #: ../admin/views/BWGViewAddAlbumsGalleries.php:91
386
+ #: ../admin/views/BWGViewWidget. php:110
387
+ msgid "Gallery"
388
+ msgstr "Galería"
389
+
390
+ #: ../admin/views/BWGViewAddTags.php:75
391
+ #: ../admin/views/BWGViewAlbums_bwg.php:104 .
392
+ #: admin/views/BWGViewGalleries_bwg.php:105
393
+ #: ../admin/views/BWGViewTags_bwg.php:99
394
+ msgid "Slug"
395
+ msgstr "Slug"
396
+
397
+ #: ../admin/views/BWGViewAlbums_bwg.php:40
398
+ msgid "This section allows you to create, edit and delete albums."
399
+ msgstr "Esta sección le permite crear, editar y eliminar álbumes."
400
+
401
+ #: ../admin/views/BWGViewAlbums_bwg.php:41
402
+ #: ../admin/views/BWGViewAlbums_bwg.php:203
403
+ #: ../admin/views/BWGViewGalleries_bwg.php:41 ..
404
+ #: /admin/views/BWGViewGalleries_bwg.php:219
405
+ #: ../admin/views/BWGViewOptions_bwg. php:31
406
+ #: ../admin/views/BWGViewTags_bwg.php:44 ../admin/views/BWGViewThemes_bwg.
407
+ #: php:40 ../admin/views/BWGViewThemes_bwg.php:251
408
+ msgid "Read More in User Manual"
409
+ msgstr "Leer más en el manual del usuario"
410
+
411
+ #: ../admin/views/BWGViewAlbums_bwg.php:55
412
+ #: ../admin/views/BWGViewGalleries_bwg. php:55
413
+ #: ../admin/views/BWGViewThemes_bwg.php:80
414
+ msgid "Add new"
415
+ msgstr "Añadir nuevo"
416
+
417
+ #: ../admin/views/BWGViewAlbums_bwg.php:57
418
+ #: ../admin/views/BWGViewGalleries_bwg. php:57
419
+ #: ../admin/views/BWGViewGalleries_bwg.php:700
420
+ msgid "Changes made in this table should be saved."
421
+ msgstr "Los cambios realizados en esta tabla se deben guardar."
422
+
423
+ #: ../admin/views/BWGViewAlbums_bwg.php:61
424
+ #: ../admin/views/BWGViewGalleries_bwg. php:61
425
+ #: ../admin/views/BWGViewGalleries_bwg.php:723 ../filemanager/view.php:268
426
+ #: ../filemanager/view.php:353
427
+ msgid "Select All"
428
+ msgstr "Seleccionar todo"
429
+
430
+ #: ../admin/views/BWGViewAlbums_bwg.php:64
431
+ #: ../admin/views/BWGViewGalleries_bwg. php:64
432
+ msgid "Save Order"
433
+ msgstr "Guardar Orden"
434
+
435
+ #: ../admin/views/BWGViewAlbums_bwg.php:65
436
+ #: ../admin/views/BWGViewGalleries_bwg. php:65
437
+ #: ../admin/views/BWGViewGalleries_bwg.php:743
438
+ msgid "Publish"
439
+ msgstr "Publicar"
440
+
441
+ #: ../admin/views/BWGViewAlbums_bwg.php:66
442
+ #: ../admin/views/BWGViewGalleries_bwg. php:66
443
+ #: ../admin/views/BWGViewGalleries_bwg.php:746
444
+ msgid "Unpublish"
445
+ msgstr "Despublicar"
446
+
447
+ #: ../admin/views/BWGViewAlbums_bwg.php:67
448
+ #: ../admin/views/BWGViewGalleries_bwg. php:67
449
+ #: ../admin/views/BWGViewGalleries_bwg.php:747 ..
450
+ #: /admin/views/BWGViewThemes_bwg.php:83
451
+ msgid "Do you want to delete selected items?"
452
+ msgstr "¿Desea eliminar los elementos seleccionados?"
453
+
454
+ #: ../admin/views/BWGViewAlbums_bwg.php:71
455
+ #: ../admin/views/BWGViewAlbums_bwg.php:133
456
+ #: ../admin/views/BWGViewAlbums_bwg.php:168 ..
457
+ #: /admin/views/BWGViewGalleries_bwg.php:71
458
+ #: ../admin/views/BWGViewGalleries_bwg. php:134
459
+ #: ../admin/views/BWGViewGalleries_bwg.php:181
460
+ #: /admin/views/BWGViewGalleries_bwg.php:753 php:874
461
+ #: ../admin/views/BWGViewGalleries_bwg.php:980
462
+ #: /admin/views/BWGViewTags_bwg.php:63 ../admin/views/BWGViewTags_bwg.php:111
463
+ #: /admin/views/BWGViewTags_bwg.php:163
464
+ #: ../admin/views/BWGViewThemes_bwg.php:87
465
+ #: /admin/views/BWGViewThemes_bwg.php:120
466
+ #: ../admin/views/BWGViewThemes_bwg.php:167
467
+ msgid "Delete"
468
+ msgstr "Borrar"
469
+
470
+ #: ../admin/views/BWGViewAlbums_bwg.php:107
471
+ #: ../admin/views/BWGViewGalleries_bwg. php:91
472
+ #: ../admin/views/BWGViewGalleries_bwg.php:832 ..
473
+ #: /admin/views/BWGViewOptions_bwg.php:982
474
+ msgid "Thumbnail"
475
+ msgstr "Miniatura"
476
+
477
+ #: ../admin/views/BWGViewAlbums_bwg.php:113
478
+ #: ../admin/views/BWGViewBWGShortcode. php:209
479
+ #: ../admin/views/BWGViewGalleries_bwg.php:122 ..
480
+ #: /admin/views/BWGViewGalleries_bwg.php:863
481
+ msgid "Order"
482
+ msgstr "Orden"
483
+
484
+ #: ../admin/views/BWGViewAlbums_bwg.php:121
485
+ #: ../admin/views/BWGViewGalleries_bwg. php:113
486
+ msgid "Author"
487
+ msgstr "Autor"
488
+
489
+ #: ../admin/views/BWGViewAlbums_bwg.php:129
490
+ #: ../admin/views/BWGViewGalleries_bwg. php:130
491
+ #: ../admin/views/BWGViewGalleries_bwg.php:871
492
+ msgid "Published"
493
+ msgstr "Publicado"
494
+
495
+ #: ../admin/views/BWGViewAlbums_bwg.php:132
496
+ #: ../admin/views/BWGViewAlbums_bwg.php:155
497
+ #: ../admin/views/BWGViewAlbums_bwg.php:165 ..
498
+ #: /admin/views/BWGViewGalleries_bwg.php:133
499
+ #: ../admin/views/BWGViewGalleries_bwg. php:165
500
+ #: ../admin/views/BWGViewGalleries_bwg.php:178
501
+ #: /admin/views/BWGViewGalleries_bwg.php:363 php:924
502
+ #: ../admin/views/BWGViewTags_bwg.php:110 ../admin/views/BWGViewTags_bwg.
503
+ #: php:143 ../admin/views/BWGViewTags_bwg.php:149 php:155
504
+ #: ../admin/views/BWGViewTags_bwg.php:158
505
+ #: /admin/views/BWGViewThemes_bwg.php:119
506
+ #: ../admin/views/BWGViewThemes_bwg.php:138
507
+ #: ../admin/views/BWGViewThemes_bwg.php:162
508
+ msgid "Edit"
509
+ msgstr "Editar"
510
+
511
+ #: ../admin/views/BWGViewAlbums_bwg.php:197
512
+ msgid "Edit album "
513
+ msgstr "Editar álbum"
514
+
515
+ #: ../admin/views/BWGViewAlbums_bwg.php:197
516
+ msgid "Create new album"
517
+ msgstr "Crear nuevo álbum"
518
+
519
+ #: ../admin/views/BWGViewAlbums_bwg.php:202
520
+ msgid "This section allows you to add/edit album."
521
+ msgstr "Esta sección le permite añadir / editar álbum."
522
+
523
+ #: ../admin/views/BWGViewAlbums_bwg.php:271
524
+ #: ../admin/views/BWGViewGalleries_bwg. php:535
525
+ #: ../admin/views/BWGViewOptions_bwg.php:94 ..
526
+ #: /admin/views/BWGViewTags_bwg.php:58
527
+ #: ../admin/views/BWGViewThemes_bwg.php:264
528
+ msgid "Save"
529
+ msgstr "Guardar"
530
+
531
+ #: ../admin/views/BWGViewAlbums_bwg.php:272
532
+ #: ../admin/views/BWGViewGalleries_bwg. php:538
533
+ #: ../admin/views/BWGViewThemes_bwg.php:265
534
+ msgid "Apply"
535
+ msgstr "Aplicar"
536
+
537
+ #: ../admin/views/BWGViewAlbums_bwg.php:273
538
+ #: ../admin/views/BWGViewGalleries_bwg. php:540
539
+ #: ../admin/views/BWGViewGalleries_bwg.php:759 ..
540
+ #: /admin/views/BWGViewGalleries_bwg.php:773 php:817
541
+ #: ../admin/views/BWGViewThemes_bwg.php:266
542
+ msgid "Cancel"
543
+ msgstr "Cancelar"
544
+
545
+ #: ../admin/views/BWGViewAlbums_bwg.php:278
546
+ #: ../admin/views/BWGViewGalleries_bwg. php:545
547
+ #: ../admin/views/BWGViewThemes_bwg.php:293
548
+ msgid "Name:"
549
+ msgstr "Nombre:"
550
+
551
+ #: ../admin/views/BWGViewAlbums_bwg.php:282
552
+ #: ../admin/views/BWGViewGalleries_bwg. php:549
553
+ msgid "Slug:"
554
+ msgstr "Slug:"
555
+
556
+ #: ../admin/views/BWGViewAlbums_bwg.php:286
557
+ #: ../admin/views/BWGViewGalleries_bwg. php:601
558
+ msgid "Description:"
559
+ msgstr "Descripción:"
560
+
561
+ #: ../admin/views/BWGViewAlbums_bwg.php:305
562
+ #: ../admin/views/BWGViewGalleries_bwg. php:620
563
+ msgid "Author:"
564
+ msgstr "Autor:"
565
+
566
+ #: ../admin/views/BWGViewAlbums_bwg.php:309
567
+ #: ../admin/views/BWGViewGalleries_bwg. php:624
568
+ msgid "Published:"
569
+ msgstr "Fecha de publicación:"
570
+
571
+ #: ../admin/views/BWGViewAlbums_bwg.php:312
572
+ #: ../admin/views/BWGViewGalleries_bwg. php:627
573
+ #: ../admin/views/BWGViewOptions_bwg.php:147 ..
574
+ #: /admin/views/BWGViewOptions_bwg.php:177
575
+ #: ../admin/views/BWGViewOptions_bwg.php:187
576
+ #: ../admin/views/BWGViewOptions_bwg.php:206
577
+ #: /admin/views/BWGViewOptions_bwg.php:216 226
578
+ #: ../admin/views/BWGViewOptions_bwg.php:245
579
+ #: /admin/views/BWGViewOptions_bwg.php:255 265
580
+ #: ../admin/views/BWGViewOptions_bwg.php:276
581
+ #: /admin/views/BWGViewOptions_bwg.php:286 613
582
+ #: ../admin/views/BWGViewOptions_bwg.php:650
583
+ #: /admin/views/BWGViewOptions_bwg.php:669 688
584
+ #: ../admin/views/BWGViewOptions_bwg.php:732
585
+ #: /admin/views/BWGViewOptions_bwg.php:742 752
586
+ #: ../admin/views/BWGViewOptions_bwg.php:762
587
+ #: /admin/views/BWGViewOptions_bwg.php:772 788
588
+ #: ../admin/views/BWGViewOptions_bwg.php:802
589
+ #: /admin/views/BWGViewOptions_bwg.php:812 822
590
+ #: ../admin/views/BWGViewOptions_bwg.php:832
591
+ #: /admin/views/BWGViewOptions_bwg.php:842 852
592
+ #: ../admin/views/BWGViewOptions_bwg.php:862
593
+ #: /admin/views/BWGViewOptions_bwg.php:872 882
594
+ #: ../admin/views/BWGViewOptions_bwg.php:892
595
+ #: /admin/views/BWGViewOptions_bwg.php:902 912
596
+ #: ../admin/views/BWGViewOptions_bwg.php:922
597
+ #: /admin/views/BWGViewOptions_bwg.php:934 973
598
+ #: ../admin/views/BWGViewOptions_bwg.php:1004
599
+ #: /admin/views/BWGViewOptions_bwg.php:1014 1090
600
+ #: ../admin/views/BWGViewOptions_bwg.php:1100
601
+ #: /admin/views/BWGViewOptions_bwg.php:1120 1128
602
+ #: ../admin/views/BWGViewOptions_bwg.php:1149
603
+ #: /admin/views/BWGViewOptions_bwg.php:1184 1192
604
+ #: ../admin/views/BWGViewOptions_bwg.php:1227
605
+ #: /admin/views/BWGViewOptions_bwg.php:1287 1354
606
+ #: ../admin/views/BWGViewOptions_bwg.php:1364
607
+ #: /admin/views/BWGViewOptions_bwg.php:1372 1389
608
+ #: ../admin/views/BWGViewOptions_bwg.php:1397
609
+ #: /admin/views/BWGViewOptions_bwg.php:1415 1425
610
+ #: ../admin/views/BWGViewOptions_bwg.php:1449
611
+ #: /admin/views/BWGViewOptions_bwg.php:1477 1576
612
+ #: ../admin/views/BWGViewOptions_bwg.php:1586
613
+ #: /admin/views/BWGViewOptions_bwg.php:1596 1606
614
+ #: ../admin/views/BWGViewOptions_bwg.php:1616
615
+ #: /admin/views/BWGViewThemes_bwg.php:382
616
+ #: ../admin/views/BWGViewThemes_bwg.php:623
617
+ #: ../admin/views/BWGViewThemes_bwg.php:1364 ../admin/views/BWGViewThemes_bwg.
618
+ #: php:1596 ../admin/views/BWGViewThemes_bwg.php:3314
619
+ #: /admin/views/BWGViewThemes_bwg.php:3359
620
+ #: ../admin/views/BWGViewWidgetSlideshow. php:144
621
+ #: ../admin/views/BWGViewWidgetTags.php:125
622
+ #: /admin/views/BWGViewWidgetTags.php:146
623
+ msgid "No"
624
+ msgstr "Sin"
625
+
626
+ #: ../admin/views/BWGViewAlbums_bwg.php:314
627
+ #: ../admin/views/BWGViewBWGShortcode. php:230
628
+ #: ../admin/views/BWGViewGalleries_bwg.php:629 ..
629
+ #: /admin/views/BWGViewOptions_bwg.php:146
630
+ #: ../admin/views/BWGViewOptions_bwg.php:156
631
+ #: ../admin/views/BWGViewOptions_bwg.php:166
632
+ #: /admin/views/BWGViewOptions_bwg.php:176 186
633
+ #: ../admin/views/BWGViewOptions_bwg.php:205
634
+ #: /admin/views/BWGViewOptions_bwg.php:215 225
635
+ #: ../admin/views/BWGViewOptions_bwg.php:244
636
+ #: /admin/views/BWGViewOptions_bwg.php:254 264
637
+ #: ../admin/views/BWGViewOptions_bwg.php:275
638
+ #: /admin/views/BWGViewOptions_bwg.php:285 612
639
+ #: ../admin/views/BWGViewOptions_bwg.php:649
640
+ #: /admin/views/BWGViewOptions_bwg.php:668 687
641
+ #: ../admin/views/BWGViewOptions_bwg.php:719
642
+ #: /admin/views/BWGViewOptions_bwg.php:741 751
643
+ #: ../admin/views/BWGViewOptions_bwg.php:761
644
+ #: /admin/views/BWGViewOptions_bwg.php:771 787
645
+ #: ../admin/views/BWGViewOptions_bwg.php:799
646
+ #: /admin/views/BWGViewOptions_bwg.php:811 821
647
+ #: ../admin/views/BWGViewOptions_bwg.php:831
648
+ #: /admin/views/BWGViewOptions_bwg.php:841 851
649
+ #: ../admin/views/BWGViewOptions_bwg.php:861
650
+ #: /admin/views/BWGViewOptions_bwg.php:871 881
651
+ #: ../admin/views/BWGViewOptions_bwg.php:891
652
+ #: /admin/views/BWGViewOptions_bwg.php:901 911
653
+ #: ../admin/views/BWGViewOptions_bwg.php:921
654
+ #: /admin/views/BWGViewOptions_bwg.php:932 972
655
+ #: ../admin/views/BWGViewOptions_bwg.php:1003
656
+ #: /admin/views/BWGViewOptions_bwg.php:1013 1089
657
+ #: ../admin/views/BWGViewOptions_bwg.php:1099
658
+ #: /admin/views/BWGViewOptions_bwg.php:1119 1127
659
+ #: ../admin/views/BWGViewOptions_bwg.php:1148
660
+ #: /admin/views/BWGViewOptions_bwg.php:1183 1191
661
+ #: ../admin/views/BWGViewOptions_bwg.php:1226
662
+ #: /admin/views/BWGViewOptions_bwg.php:1288 1353
663
+ #: ../admin/views/BWGViewOptions_bwg.php:1363
664
+ #: /admin/views/BWGViewOptions_bwg.php:1371 1388
665
+ #: ../admin/views/BWGViewOptions_bwg.php:1396
666
+ #: /admin/views/BWGViewOptions_bwg.php:1414 1424
667
+ #: ../admin/views/BWGViewOptions_bwg.php:1448
668
+ #: /admin/views/BWGViewOptions_bwg.php:1476 1575
669
+ #: ../admin/views/BWGViewOptions_bwg.php:1585
670
+ #: /admin/views/BWGViewOptions_bwg.php:1595 1605
671
+ #: ../admin/views/BWGViewOptions_bwg.php:1615
672
+ #: /admin/views/BWGViewThemes_bwg.php:380
673
+ #: ../admin/views/BWGViewThemes_bwg.php:621
674
+ #: ../admin/views/BWGViewThemes_bwg.php:1362 ../admin/views/BWGViewThemes_bwg.
675
+ #: php:1594 ../admin/views/BWGViewThemes_bwg.php:3312
676
+ #: /admin/views/BWGViewThemes_bwg.php:3357
677
+ #: ../admin/views/BWGViewUninstall_bwg. php:79
678
+ #: ../admin/views/BWGViewWidgetSlideshow.php:143
679
+ #: /admin/views/BWGViewWidgetTags.php:124
680
+ #: ../admin/views/BWGViewWidgetTags.php:145
681
+ msgid "Yes"
682
+ msgstr "Sí"
683
+
684
+ #: ../admin/views/BWGViewAlbums_bwg.php:318
685
+ #: ../admin/views/BWGViewGalleries_bwg. php:633
686
+ msgid "Preview image:"
687
+ msgstr "Previsualización de imagen:"
688
+
689
+ #: ../admin/views/BWGViewAlbums_bwg.php:333
690
+ #: ../admin/views/BWGViewGalleries_bwg. php:646
691
+ msgid "Add Preview Image"
692
+ msgstr "Añadir Imagen previa"
693
+
694
+ #: ../admin/views/BWGViewAlbums_bwg.php:344
695
+ msgid "Albums And Galleries:"
696
+ msgstr "Álbumes y Galerías:"
697
+
698
+ #: ../admin/views/BWGViewAlbums_bwg.php:354
699
+ msgid "Add Albums/Galleries"
700
+ msgstr "Añadir Albums / Galerías"
701
+
702
+ #: ../admin/views/BWGViewAlbums_bwg.php:366
703
+ msgid "Drag to re-order"
704
+ msgstr "Arrastre para reordenar"
705
+
706
+ #: ../admin/views/BWGViewBWGShortcode.php:34
707
+ #: ../admin/views/BWGViewOptions_bwg. php:307
708
+ #: ../admin/views/BWGViewOptions_bwg.php:460 ..
709
+ #: /admin/views/BWGViewThemes_bwg.php:196
710
+ #: ../admin/views/BWGViewThemes_bwg.php:229
711
+ msgid "None"
712
+ msgstr "Ninguno"
713
+
714
+ #: ../admin/views/BWGViewBWGShortcode.php:35
715
+ msgid "Cube Horizontal"
716
+ msgstr "Cubo Horizontal"
717
+
718
+ #: ../admin/views/BWGViewBWGShortcode.php:36
719
+ msgid "Cube Vertical"
720
+ msgstr "Cubo Vertical"
721
+
722
+ #: ../admin/views/BWGViewBWGShortcode.php:37
723
+ msgid "Fade"
724
+ msgstr "Fundido"
725
+
726
+ #: ../admin/views/BWGViewBWGShortcode.php:38
727
+ msgid "Slice Horizontal"
728
+ msgstr "Slice Horizontal"
729
+
730
+ #: ../admin/views/BWGViewBWGShortcode.php:39
731
+ msgid "Slice Vertical"
732
+ msgstr "Slice Vertical"
733
+
734
+ #: ../admin/views/BWGViewBWGShortcode.php:40
735
+ msgid "Slide Horizontal"
736
+ msgstr "Deslice Horizontal"
737
+
738
+ #: ../admin/views/BWGViewBWGShortcode.php:41
739
+ msgid "Slide Vertical"
740
+ msgstr "Deslice Vertical"
741
+
742
+ #: ../admin/views/BWGViewBWGShortcode.php:42
743
+ msgid "Scale Out"
744
+ msgstr "Escalar"
745
+
746
+ #: ../admin/views/BWGViewBWGShortcode.php:43
747
+ msgid "Scale In"
748
+ msgstr "Escala En"
749
+
750
+ #: ../admin/views/BWGViewBWGShortcode.php:44
751
+ msgid "Block Scale"
752
+ msgstr "Bloquear Escala"
753
+
754
+ #: ../admin/views/BWGViewBWGShortcode.php:45
755
+ msgid "Kaleidoscope"
756
+ msgstr "Caleidoscopio"
757
+
758
+ #: ../admin/views/BWGViewBWGShortcode.php:46
759
+ msgid "Fan"
760
+ msgstr "Admirador"
761
+
762
+ #: ../admin/views/BWGViewBWGShortcode.php:47
763
+ msgid "Blind Horizontal"
764
+ msgstr "Ciegos Horizontal"
765
+
766
+ #: ../admin/views/BWGViewBWGShortcode.php:48
767
+ msgid "Blind Vertical"
768
+ msgstr "Ciegos Vertical"
769
+
770
+ #: ../admin/views/BWGViewBWGShortcode.php:49
771
+ #: ../admin/views/BWGViewBWGShortcode. php:216
772
+ #: ../admin/views/BWGViewWidget.php:139 ../framework/WDWLibrary.php:851
773
+ msgid "Random"
774
+ msgstr "Random"
775
+
776
+ #: ../admin/views/BWGViewBWGShortcode.php:97
777
+ msgid "Display"
778
+ msgstr "Monitor"
779
+
780
+ #: ../admin/views/BWGViewBWGShortcode.php:116
781
+ #: ../admin/views/BWGViewThemes_bwg. php:274
782
+ msgid "Thumbnails"
783
+ msgstr "Miniaturas"
784
+
785
+ #: ../admin/views/BWGViewBWGShortcode.php:119
786
+ #: ../admin/views/BWGViewBWGShortcode. php:123
787
+ #: ../admin/views/BWGViewBWGShortcode.php:139 ..
788
+ #: /admin/views/BWGViewBWGShortcode.php:147 php:151
789
+ msgid "This view is disabled in free version."
790
+ msgstr "Este punto de vista está desactivada en la versión gratuita."
791
+
792
+ #: ../admin/views/BWGViewBWGShortcode.php:120
793
+ #: ../admin/views/BWGViewOptions_bwg. php:983
794
+ #: ../admin/views/BWGViewThemes_bwg.php:275
795
+ msgid "Masonry"
796
+ msgstr "Albañilería"
797
+
798
+ #: ../admin/views/BWGViewBWGShortcode.php:124
799
+ #: ../admin/views/BWGViewThemes_bwg. php:276
800
+ msgid "Mosaic"
801
+ msgstr "Mosaico"
802
+
803
+ #: ../admin/views/BWGViewBWGShortcode.php:128
804
+ #: ../admin/views/BWGViewOptions_bwg. php:109
805
+ #: ../admin/views/BWGViewThemes_bwg.php:277
806
+ msgid "Slideshow"
807
+ msgstr "Diapositivas"
808
+
809
+ #: ../admin/views/BWGViewBWGShortcode.php:132
810
+ #: ../admin/views/BWGViewThemes_bwg. php:278
811
+ msgid "Image Browser"
812
+ msgstr "Image Browser"
813
+
814
+ #: ../admin/views/BWGViewBWGShortcode.php:136
815
+ #: ../admin/views/BWGViewThemes_bwg. php:279
816
+ msgid "Compact Album"
817
+ msgstr "Compacto álbum"
818
+
819
+ #: ../admin/views/BWGViewBWGShortcode.php:140
820
+ #: ../admin/views/BWGViewThemes_bwg. php:280
821
+ msgid "Masonry Album"
822
+ msgstr "Albañilería álbum"
823
+
824
+ #: ../admin/views/BWGViewBWGShortcode.php:144
825
+ #: ../admin/views/BWGViewThemes_bwg. php:281
826
+ msgid "Extended Album"
827
+ msgstr "Álbum extendido"
828
+
829
+ #: ../admin/views/BWGViewBWGShortcode.php:148
830
+ #: ../admin/views/BWGViewThemes_bwg. php:282
831
+ msgid "Blog Style"
832
+ msgstr "Blog Estilo"
833
+
834
+ #: ../admin/views/BWGViewBWGShortcode.php:152
835
+ #: ../admin/views/BWGViewOptions_bwg. php:113
836
+ #: ../admin/views/BWGViewThemes_bwg.php:285
837
+ msgid "Carousel"
838
+ msgstr "Carrusel"
839
+
840
+ #: ../admin/views/BWGViewBWGShortcode.php:161
841
+ msgid "Theme:"
842
+ msgstr "Tema:"
843
+
844
+ #: ../admin/views/BWGViewBWGShortcode.php:164
845
+ msgid "Select Theme"
846
+ msgstr "Seleccione el tema"
847
+
848
+ #: ../admin/views/BWGViewBWGShortcode.php:176
849
+ msgid "Gallery:"
850
+ msgstr "Galería de fotos:"
851
+
852
+ #: ../admin/views/BWGViewBWGShortcode.php:179
853
+ #: ../admin/views/BWGViewWidget.php:116
854
+ #: ../admin/views/BWGViewWidgetSlideshow.php:106
855
+ msgid "Select Gallery"
856
+ msgstr "Seleccionar Galería"
857
+
858
+ #: ../admin/views/BWGViewBWGShortcode.php:191
859
+ msgid "The selected album expanded content will be displayed."
860
+ msgstr "Se mostrará el álbum ampliado contenido seleccionado."
861
+
862
+ #: ../admin/views/BWGViewBWGShortcode.php:191
863
+ msgid "Album:"
864
+ msgstr "Álbum:"
865
+
866
+ #: ../admin/views/BWGViewBWGShortcode.php:194
867
+ #: ../admin/views/BWGViewWidget.php:128
868
+ msgid "Select Album"
869
+ msgstr "Seleccione Álbum"
870
+
871
+ #: ../admin/views/BWGViewBWGShortcode.php:206
872
+ msgid "Sort images by:"
873
+ msgstr "Ordenar las imágenes por:"
874
+
875
+ #: ../admin/views/BWGViewBWGShortcode.php:210
876
+ #: ../admin/views/BWGViewThemes_bwg. php:91
877
+ msgid "Title"
878
+ msgstr "Título"
879
+
880
+ #: ../admin/views/BWGViewBWGShortcode.php:211
881
+ msgid "Date"
882
+ msgstr "Fecha"
883
+
884
+ #: ../admin/views/BWGViewBWGShortcode.php:212
885
+ #: ../admin/views/BWGViewGalleries_bwg. php:822
886
+ #: ../admin/views/BWGViewGalleries_bwg.php:838 ../framework/WDWLibrary.
887
+ #: php:849
888
+ msgid "Filename"
889
+ msgstr "Nombre del archivo"
890
+
891
+ #: ../admin/views/BWGViewBWGShortcode.php:213 ../framework/WDWLibrary.php:850
892
+ msgid "Size"
893
+ msgstr "tamaño"
894
+
895
+ #: ../admin/views/BWGViewBWGShortcode.php:215
896
+ msgid "Resolution"
897
+ msgstr "Resolución"
898
+
899
+ #: ../admin/views/BWGViewBWGShortcode.php:221
900
+ msgid "Order images"
901
+ msgstr "Solicitar imágenes"
902
+
903
+ #: ../admin/views/BWGViewBWGShortcode.php:223
904
+ msgid "Ascending"
905
+ msgstr "Ascendente"
906
+
907
+ #: ../admin/views/BWGViewBWGShortcode.php:224
908
+ msgid "Descending"
909
+ msgstr "Descendente"
910
+
911
+ #: ../admin/views/BWGViewBWGShortcode.php:228
912
+ #: ../admin/views/BWGViewOptions_bwg. php:183
913
+ msgid "Show search box:"
914
+ msgstr "Mostrar cuadro de búsqueda:"
915
+
916
+ #: ../admin/views/BWGViewEditThumb.php:155
917
+ msgid "You can't crop this type of image."
918
+ msgstr "No se puede recortar este tipo de imagen."
919
+
920
+ #: ../admin/views/BWGViewEditThumb.php:224
921
+ msgid "The thumbnail successfully croped."
922
+ msgstr "La miniatura croped éxito."
923
+
924
+ #: ../admin/views/BWGViewEditThumb.php:227
925
+ msgid "Select the area for the thumbnail."
926
+ msgstr "Seleccione el área de la miniatura."
927
+
928
+ #: ../admin/views/BWGViewEditThumb.php:240
929
+ msgid "Keep aspect ratio"
930
+ msgstr "Mantener la relación de aspecto"
931
+
932
+ #: ../admin/views/BWGViewEditThumb.php:713
933
+ msgid "Grayscale"
934
+ msgstr "Escala de grises"
935
+
936
+ #: ../admin/views/BWGViewEditThumb.php:717
937
+ msgid "Negative"
938
+ msgstr "Negativo"
939
+
940
+ #: ../admin/views/BWGViewEditThumb.php:721
941
+ msgid "Removal"
942
+ msgstr "Remoción"
943
+
944
+ #: ../admin/views/BWGViewEditThumb.php:725
945
+ msgid "Sepia"
946
+ msgstr "Sepia"
947
+
948
+ #: ../admin/views/BWGViewEditThumb.php:729
949
+ msgid "Slate"
950
+ msgstr "Pizarra"
951
+
952
+ #: ../admin/views/BWGViewEditThumb.php:733
953
+ msgid "Saturate"
954
+ msgstr "Saturar"
955
+
956
+ #: ../admin/views/BWGViewEditThumb.php:737
957
+ #: ../admin/views/BWGViewGalleries_bwg. php:370
958
+ #: ../admin/views/BWGViewGalleries_bwg.php:925
959
+ msgid "Do you want to reset the image?"
960
+ msgstr "¿Usted desea restablecer la imagen?"
961
+
962
+ #: ../admin/views/BWGViewEditThumb.php:737
963
+ msgid "Reset image"
964
+ msgstr "Restablecer imagen"
965
+
966
+ #: ../admin/views/BWGViewEditThumb.php:763
967
+ msgid "Brightness"
968
+ msgstr "Brillo"
969
+
970
+ #: ../admin/views/BWGViewEditThumb.php:765
971
+ #: ../admin/views/BWGViewEditThumb.php:790
972
+ msgid "Press for result"
973
+ msgstr "Presione para el resultado"
974
+
975
+ #: ../admin/views/BWGViewEditThumb.php:788
976
+ msgid "Contrast"
977
+ msgstr "Contraste"
978
+
979
+ #: ../admin/views/BWGViewGalleries_bwg.php:40
980
+ msgid "This section allows you to create, edit and delete galleries."
981
+ msgstr "Esta sección le permite crear, editar y eliminar galerías."
982
+
983
+ #: ../admin/views/BWGViewGalleries_bwg.php:53
984
+ msgid "Galleries"
985
+ msgstr "Galerías"
986
+
987
+ #: ../admin/views/BWGViewGalleries_bwg.php:116
988
+ msgid "Images count"
989
+ msgstr "Imágenes cuentan"
990
+
991
+ #: ../admin/views/BWGViewGalleries_bwg.php:211
992
+ msgid "Edit gallery "
993
+ msgstr "Editar galería"
994
+
995
+ #: ../admin/views/BWGViewGalleries_bwg.php:211
996
+ msgid "Create new gallery"
997
+ msgstr "Crear nueva galería"
998
+
999
+ #: ../admin/views/BWGViewGalleries_bwg.php:218
1000
+ msgid "This section allows you to add/edit gallery."
1001
+ msgstr "Esta sección le permite añadir / Galería de edición."
1002
+
1003
+ #: ../admin/views/BWGViewGalleries_bwg.php:354 ..
1004
+ #: /admin/views/BWGViewGalleries_bwg.php:918
1005
+ msgid "Crop"
1006
+ msgstr "Cultivos"
1007
+
1008
+ #: ../admin/views/BWGViewGalleries_bwg.php:371 ..
1009
+ #: /admin/views/BWGViewGalleries_bwg.php:733
1010
+ #: ../admin/views/BWGViewGalleries_bwg. php:930
1011
+ #: ../admin/views/BWGViewThemes_bwg.php:271 ../framework/WDWLibrary.php:189
1012
+ #: ../framework/WDWLibrary.php:363 ../framework/WDWLibrary.php:722
1013
+ #: /framework/WDWLibrary.php:784
1014
+ msgid "Reset"
1015
+ msgstr "Reiniciar"
1016
+
1017
+ #: ../admin/views/BWGViewGalleries_bwg.php:475 ..
1018
+ #: /admin/views/BWGViewGalleries_bwg.php:738
1019
+ #: ../admin/views/BWGViewGalleries_bwg. php:955
1020
+ msgid "Add tag"
1021
+ msgstr "Añadir etiqueta"
1022
+
1023
+ #: ../admin/views/BWGViewGalleries_bwg.php:553
1024
+ msgid "Gallery content type:"
1025
+ msgstr "Gallery Tipo de contenido:"
1026
+
1027
+ #: ../admin/views/BWGViewGalleries_bwg.php:556
1028
+ msgid "Standard"
1029
+ msgstr "Patrón"
1030
+
1031
+ #: ../admin/views/BWGViewGalleries_bwg.php:557
1032
+ msgid "Instagram only"
1033
+ msgstr "Instagram única"
1034
+
1035
+ #: ../admin/views/BWGViewGalleries_bwg.php:565 ..
1036
+ #: /admin/views/BWGViewGalleries_bwg.php:788
1037
+ msgid "Instagram username:"
1038
+ msgstr "Instagram nombre de usuario:"
1039
+
1040
+ #: ../admin/views/BWGViewGalleries_bwg.php:566
1041
+ #: ../admin/views/BWGViewOptions_bwg. php:670
1042
+ #: ../admin/views/BWGViewOptions_bwg.php:679 ..
1043
+ #: /admin/views/BWGViewOptions_bwg.php:689
1044
+ #: ../admin/views/BWGViewOptions_bwg.php:789
1045
+ #: ../admin/views/BWGViewOptions_bwg.php:803
1046
+ #: /admin/views/BWGViewOptions_bwg.php:813 823
1047
+ #: ../admin/views/BWGViewOptions_bwg.php:833
1048
+ #: /admin/views/BWGViewOptions_bwg.php:863 873
1049
+ #: ../admin/views/BWGViewOptions_bwg.php:883
1050
+ #: /admin/views/BWGViewOptions_bwg.php:893 903
1051
+ #: ../admin/views/BWGViewOptions_bwg.php:935
1052
+ #: /admin/views/BWGViewOptions_bwg.php:984 1129
1053
+ #: ../admin/views/BWGViewOptions_bwg.php:1136
1054
+ #: /admin/views/BWGViewOptions_bwg.php:1365
1055
+ #: ../admin/views/BWGViewWidgetSlideshow. php:121
1056
+ #: ../admin/views/BWGViewWidgetSlideshow.php:148
1057
+ msgid "This option is disabled in free version."
1058
+ msgstr "Esta opción está desactivada en la versión gratuita."
1059
+
1060
+ #: ../admin/views/BWGViewGalleries_bwg.php:569
1061
+ msgid "Number of Instagram recent posts to add to gallery: "
1062
+ msgstr "Número de Instagram mensajes recientes para agregar a la galería:"
1063
+
1064
+ #: ../admin/views/BWGViewGalleries_bwg.php:573 ..
1065
+ #: /admin/views/BWGViewGalleries_bwg.php:796
1066
+ msgid "Instagram embed type:"
1067
+ msgstr "Instagram tipo de inserción:"
1068
+
1069
+ #: ../admin/views/BWGViewGalleries_bwg.php:576 ..
1070
+ #: /admin/views/BWGViewGalleries_bwg.php:799
1071
+ msgid "Content"
1072
+ msgstr "Contenido"
1073
+
1074
+ #: ../admin/views/BWGViewGalleries_bwg.php:578 ..
1075
+ #: /admin/views/BWGViewGalleries_bwg.php:801
1076
+ msgid "Whole post"
1077
+ msgstr "Todo el mensaje"
1078
+
1079
+ #: ../admin/views/BWGViewGalleries_bwg.php:582
1080
+ msgid "Gallery autoupdate option:"
1081
+ msgstr "Galería opción de actualización automática:"
1082
+
1083
+ #: ../admin/views/BWGViewGalleries_bwg.php:585
1084
+ msgid "No update"
1085
+ msgstr "Ninguna actualización"
1086
+
1087
+ #: ../admin/views/BWGViewGalleries_bwg.php:587
1088
+ msgid "Add new media, keep old ones published."
1089
+ msgstr ""
1090
+ "Añadir nuevos medios de comunicación, mantener los antiguos publicados."
1091
+
1092
+ #: ../admin/views/BWGViewGalleries_bwg.php:589
1093
+ msgid "Add new media, unpublish old ones."
1094
+ msgstr "Añadir nuevos medios de comunicación, los viejos UNPUBLISH."
1095
+
1096
+ #: ../admin/views/BWGViewGalleries_bwg.php:595
1097
+ msgid "Add Instagram Gallery"
1098
+ msgstr "Añadir Instagram Galería"
1099
+
1100
+ #: ../admin/views/BWGViewGalleries_bwg.php:707 ..
1101
+ #: /admin/views/BWGViewGalleries_bwg.php:708
1102
+ msgid "Add Images"
1103
+ msgstr "Añadir Imágenes"
1104
+
1105
+ #: ../admin/views/BWGViewGalleries_bwg.php:717
1106
+ msgid "Embed Media"
1107
+ msgstr "Insertar Medios"
1108
+
1109
+ #: ../admin/views/BWGViewGalleries_bwg.php:718
1110
+ msgid "Bulk Embed"
1111
+ msgstr "Integrar a granel"
1112
+
1113
+ #: ../admin/views/BWGViewGalleries_bwg.php:728
1114
+ msgid "Set Watermark"
1115
+ msgstr "Establecer Watermark"
1116
+
1117
+ #: ../admin/views/BWGViewGalleries_bwg.php:729 ..
1118
+ #: /admin/views/BWGViewGalleries_bwg.php:816
1119
+ msgid "Resize"
1120
+ msgstr "Cambiar el tamaño"
1121
+
1122
+ #: ../admin/views/BWGViewGalleries_bwg.php:730
1123
+ msgid "Recreate Thumbnail"
1124
+ msgstr "Recrear miniatura"
1125
+
1126
+ #: ../admin/views/BWGViewGalleries_bwg.php:758 ..
1127
+ #: /admin/views/BWGViewGalleries_bwg.php:774
1128
+ msgid "Add to gallery"
1129
+ msgstr "Añadir a la galería"
1130
+
1131
+ #: ../admin/views/BWGViewGalleries_bwg.php:761
1132
+ msgid "Enter YouTube, Vimeo, Instagram, Flickr or Dailymotion URL here."
1133
+ msgstr "Introduzca YouTube, Vimeo, Instagram, Flickr o Dailymotion URL aquí."
1134
+
1135
+ #: ../admin/views/BWGViewGalleries_bwg.php:761
1136
+ msgid "Help"
1137
+ msgstr "Ayuda"
1138
+
1139
+ #: ../admin/views/BWGViewGalleries_bwg.php:764
1140
+ msgid "Close"
1141
+ msgstr "Cerca"
1142
+
1143
+ #: ../admin/views/BWGViewGalleries_bwg.php:765 ..
1144
+ #: /admin/views/BWGViewGalleries_bwg.php:766
1145
+ #: ../admin/views/BWGViewGalleries_bwg. php:767
1146
+ #: ../admin/views/BWGViewGalleries_bwg.php:768
1147
+ #: /admin/views/BWGViewGalleries_bwg.php:769
1148
+ msgid "example:"
1149
+ msgstr "ejemplo:"
1150
+
1151
+ #: ../admin/views/BWGViewGalleries_bwg.php:767 ../filemanager/view.php:275
1152
+ msgid "Add"
1153
+ msgstr "Añadir"
1154
+
1155
+ #: ../admin/views/BWGViewGalleries_bwg.php:767
1156
+ msgid "post"
1157
+ msgstr "puesto"
1158
+
1159
+ #: ../admin/views/BWGViewGalleries_bwg.php:767
1160
+ msgid ""
1161
+ "to the end of URL if you want to embed the whole Instagram post, not only "
1162
+ "its content."
1163
+ msgstr ""
1164
+ "al final de la URL si desea incrustar el post entero Instagram, no sólo su "
1165
+ "contenido."
1166
+
1167
+ #: ../admin/views/BWGViewGalleries_bwg.php:779
1168
+ msgid "Bulk embed from:"
1169
+ msgstr "Embed granel de:"
1170
+
1171
+ #: ../admin/views/BWGViewGalleries_bwg.php:781
1172
+ msgid "instagram"
1173
+ msgstr "Instagram"
1174
+
1175
+ #: ../admin/views/BWGViewGalleries_bwg.php:782
1176
+ msgid "Instagram"
1177
+ msgstr "Instagram"
1178
+
1179
+ #: ../admin/views/BWGViewGalleries_bwg.php:789
1180
+ msgid "Bulk embed from Instagram is disabled in free version"
1181
+ msgstr "Embed granel de Instagram está deshabilitado en la versión gratuita"
1182
+
1183
+ #: ../admin/views/BWGViewGalleries_bwg.php:792
1184
+ msgid "Number of Instagram recent posts to add to gallery:"
1185
+ msgstr "Número de Instagram mensajes recientes para agregar a la galería:"
1186
+
1187
+ #: ../admin/views/BWGViewGalleries_bwg.php:810
1188
+ msgid "Resize images to: "
1189
+ msgstr "Cambiar el tamaño de imágenes para:"
1190
+
1191
+ #: ../admin/views/BWGViewGalleries_bwg.php:818
1192
+ msgid "The maximum size of resized image."
1193
+ msgstr "El tamaño máximo de imagen redimensionada."
1194
+
1195
+ #: ../admin/views/BWGViewGalleries_bwg.php:846
1196
+ msgid "Alt/Title"
1197
+ msgstr "Alt / Título"
1198
+
1199
+ #: ../admin/views/BWGViewGalleries_bwg.php:854
1200
+ msgid "Description"
1201
+ msgstr "Descripción"
1202
+
1203
+ #: ../admin/views/BWGViewGalleries_bwg.php:905
1204
+ msgid "Date modified"
1205
+ msgstr "Fecha de modificación"
1206
+
1207
+ #: ../admin/views/BWGViewGalleries_bwg.php:906
1208
+ msgid "Image Resolution"
1209
+ msgstr "Resolución de imagen"
1210
+
1211
+ #: ../admin/views/BWGViewGalleries_bwg.php:907
1212
+ msgid "Image size"
1213
+ msgstr "Tamaño de la imagen"
1214
+
1215
+ #: ../admin/views/BWGViewLicensing_bwg.php:29
1216
+ msgid "ready"
1217
+ msgstr "Listo"
1218
+
1219
+ #: ../admin/views/BWGViewLicensing_bwg.php:30
1220
+ msgid "friendly"
1221
+ msgstr "amistoso"
1222
+
1223
+ #: ../admin/views/BWGViewLicensing_bwg.php:31
1224
+ msgid "Responsive Design and Layout"
1225
+ msgstr "Diseño Sensible y diseño"
1226
+
1227
+ #: ../admin/views/BWGViewLicensing_bwg.php:32
1228
+ msgid "5 Standard Gallery/Album Views"
1229
+ msgstr "5 Standard Galería / Álbum Vistas"
1230
+
1231
+ #: ../admin/views/BWGViewLicensing_bwg.php:33
1232
+ msgid "Watermarking/ Advertising Possibility"
1233
+ msgstr "Marca de agua / Publicidad Posibilidad"
1234
+
1235
+ #: ../admin/views/BWGViewLicensing_bwg.php:34
1236
+ msgid "Basic Tag Cloud Widget"
1237
+ msgstr "Tag Básica Nube Widget"
1238
+
1239
+ #: ../admin/views/BWGViewLicensing_bwg.php:35
1240
+ msgid "Image Download"
1241
+ msgstr "Descargar imagen"
1242
+
1243
+ #: ../admin/views/BWGViewLicensing_bwg.php:36
1244
+ msgid "Photo Gallery Slideshow Widget"
1245
+ msgstr "Galería de fotos Presentación Widget"
1246
+
1247
+ #: ../admin/views/BWGViewLicensing_bwg.php:37
1248
+ msgid "Photo Gallery Widget"
1249
+ msgstr "Galería de fotos Widget"
1250
+
1251
+ #: ../admin/views/BWGViewLicensing_bwg.php:38
1252
+ msgid "Slideshow/Lightbox Effects"
1253
+ msgstr "Presentación / mesa de luz Efectos"
1254
+
1255
+ #: ../admin/views/BWGViewLicensing_bwg.php:39
1256
+ msgid "Possibility of Editing/Creating New Themes"
1257
+ msgstr "Posibilidad de Edición / creación de nuevos temas"
1258
+
1259
+ #: ../admin/views/BWGViewLicensing_bwg.php:40
1260
+ msgid "10 Pro Gallery/Album Views"
1261
+ msgstr "10 Pro Gallery / Álbum Vistas"
1262
+
1263
+ #: ../admin/views/BWGViewLicensing_bwg.php:41
1264
+ msgid "Image Commenting"
1265
+ msgstr "Imagen Comentando"
1266
+
1267
+ #: ../admin/views/BWGViewLicensing_bwg.php:42
1268
+ msgid "Image Social Sharing"
1269
+ msgstr "Imagen Sharing Social"
1270
+
1271
+ #: ../admin/views/BWGViewLicensing_bwg.php:43
1272
+ msgid "Photo Gallery Tags Cloud Widget"
1273
+ msgstr "Galería de fotos Nube de Tags Widget"
1274
+
1275
+ #: ../admin/views/BWGViewLicensing_bwg.php:44
1276
+ msgid "Instagram Integration"
1277
+ msgstr "Integración Instagram"
1278
+
1279
+ #: ../admin/views/BWGViewLicensing_bwg.php:45
1280
+ msgid "Integration"
1281
+ msgstr "Integración"
1282
+
1283
+ #: ../admin/views/BWGViewLicensing_bwg.php:46
1284
+ msgid "Add-ons Support"
1285
+ msgstr "Soporte de complementos"
1286
+
1287
+ #: ../admin/views/BWGViewLicensing_bwg.php:49
1288
+ msgid "Free"
1289
+ msgstr "Gratis"
1290
+
1291
+ #: ../admin/views/BWGViewLicensing_bwg.php:70
1292
+ msgid "Pro Version"
1293
+ msgstr "Versión Pro"
1294
+
1295
+ #: ../admin/views/BWGViewLicensing_bwg.php:97
1296
+ msgid "After purchasing the commercial version follow these steps:"
1297
+ msgstr "Después de comprar la versión comercial siga estos pasos:"
1298
+
1299
+ #: ../admin/views/BWGViewLicensing_bwg.php:99
1300
+ msgid "Deactivate Photo Gallery plugin."
1301
+ msgstr "Desactivar Galería de fotos plugin."
1302
+
1303
+ #: ../admin/views/BWGViewLicensing_bwg.php:100
1304
+ msgid "Delete Photo Gallery plugin."
1305
+ msgstr "Eliminar Galería de fotos plugin."
1306
+
1307
+ #: ../admin/views/BWGViewLicensing_bwg.php:101
1308
+ msgid "Install the downloaded commercial version of the plugin."
1309
+ msgstr "Instale la versión comercial descargado del plugin."
1310
+
1311
+ #: ../admin/views/BWGViewOptions_bwg.php:30
1312
+ msgid ""
1313
+ "This section allows you to change settings for different views and general "
1314
+ "options."
1315
+ msgstr ""
1316
+ "Esta sección le permite cambiar la configuración para diferentes puntos de "
1317
+ "vista y opciones generales."
1318
+
1319
+ #: ../admin/views/BWGViewOptions_bwg.php:91
1320
+ msgid "Edit options"
1321
+ msgstr "Opciones de edición"
1322
+
1323
+ #: ../admin/views/BWGViewOptions_bwg.php:95
1324
+ #: ../admin/views/BWGViewThemes_bwg.php:267
1325
+ msgid "Do you want to reset to default?"
1326
+ msgstr "¿Quieres restablecen a los predeterminados?"
1327
+
1328
+ #: ../admin/views/BWGViewOptions_bwg.php:99
1329
+ msgid "Reset all options"
1330
+ msgstr "Restablecer todas las opciones"
1331
+
1332
+ #: ../admin/views/BWGViewOptions_bwg.php:104
1333
+ msgid "Global options"
1334
+ msgstr "Las opciones globales"
1335
+
1336
+ #: ../admin/views/BWGViewOptions_bwg.php:105
1337
+ msgid "Watermark"
1338
+ msgstr "Marca de agua"
1339
+
1340
+ #: ../admin/views/BWGViewOptions_bwg.php:106
1341
+ msgid "Advertisement"
1342
+ msgstr "Publicidad"
1343
+
1344
+ #: ../admin/views/BWGViewOptions_bwg.php:107
1345
+ #: ../admin/views/BWGViewThemes_bwg.php:283
1346
+ msgid "Lightbox"
1347
+ msgstr "Caja ligera"
1348
+
1349
+ #: ../admin/views/BWGViewOptions_bwg.php:108
1350
+ msgid "Album options"
1351
+ msgstr "Opciones Album"
1352
+
1353
+ #: ../admin/views/BWGViewOptions_bwg.php:110
1354
+ msgid "Thumbnail options"
1355
+ msgstr "Opciones miniatura"
1356
+
1357
+ #: ../admin/views/BWGViewOptions_bwg.php:111
1358
+ msgid "Image options"
1359
+ msgstr "Opciones de imagen"
1360
+
1361
+ #: ../admin/views/BWGViewOptions_bwg.php:112
1362
+ msgid "Embed options"
1363
+ msgstr "Opciones Incrustar"
1364
+
1365
+ #: ../admin/views/BWGViewOptions_bwg.php:123
1366
+ msgid "Images directory:"
1367
+ msgstr "Imágenes directorio:"
1368
+
1369
+ #: ../admin/views/BWGViewOptions_bwg.php:128
1370
+ msgid ""
1371
+ "Input an existing directory inside the Wordpress directory to store uploaded "
1372
+ "images.<br />Old directory content will be moved to the new one."
1373
+ msgstr ""
1374
+ "Entrada de un directorio existente dentro del directorio los Wordpress para "
1375
+ "almacenar las imágenes subidas. <br /> Contenido del directorio antiguo se "
1376
+ "trasladará a la nueva."
1377
+
1378
+ #: ../admin/views/BWGViewOptions_bwg.php:133
1379
+ #: ../admin/views/BWGViewOptions_bwg. php:1550
1380
+ msgid "Image dimensions:"
1381
+ msgstr "Dimensiones de la imagen:"
1382
+
1383
+ #: ../admin/views/BWGViewOptions_bwg.php:138
1384
+ msgid "The maximum size of the uploaded image (0 for original size)."
1385
+ msgstr "El tamaño máximo de la imagen cargada (0 para el tamaño original)."
1386
+
1387
+ #: ../admin/views/BWGViewOptions_bwg.php:143
1388
+ msgid "Right click protection:"
1389
+ msgstr "Derecho de protección clic:"
1390
+
1391
+ #: ../admin/views/BWGViewOptions_bwg.php:148
1392
+ msgid "Disable image right click possibility."
1393
+ msgstr "Imagen Desactivar clic derecho posibilidad."
1394
+
1395
+ #: ../admin/views/BWGViewOptions_bwg.php:153
1396
+ msgid "Gallery role:"
1397
+ msgstr "Papel galería:"
1398
+
1399
+ #: ../admin/views/BWGViewOptions_bwg.php:178
1400
+ msgid "Only author can change an image."
1401
+ msgstr "Sólo autor puede cambiar una imagen."
1402
+
1403
+ #: ../admin/views/BWGViewOptions_bwg.php:193
1404
+ msgid "Search box width:"
1405
+ msgstr "Ancho de la caja de búsqueda:"
1406
+
1407
+ #: ../admin/views/BWGViewOptions_bwg.php:202
1408
+ msgid "Show \"Order by\" dropdown list:"
1409
+ msgstr "Show \"Orden por la \" lista desplegable:"
1410
+
1411
+ #: ../admin/views/BWGViewOptions_bwg.php:212
1412
+ msgid "Show tag box:"
1413
+ msgstr "Mostrar cuadro de la etiqueta:"
1414
+
1415
+ #: ../admin/views/BWGViewOptions_bwg.php:222
1416
+ msgid "Preload images:"
1417
+ msgstr "Imágenes de precarga:"
1418
+
1419
+ #: ../admin/views/BWGViewOptions_bwg.php:232
1420
+ msgid "Count of images:"
1421
+ msgstr "Conde de imágenes:"
1422
+
1423
+ #: ../admin/views/BWGViewOptions_bwg.php:236
1424
+ msgid "Count of images to preload (0 for all)."
1425
+ msgstr "Conde de imágenes para precarga (0 para todos)."
1426
+
1427
+ #: ../admin/views/BWGViewOptions_bwg.php:241
1428
+ msgid "Import from Media Library:"
1429
+ msgstr "Importe de medios de la biblioteca:"
1430
+
1431
+ #: ../admin/views/BWGViewOptions_bwg.php:246
1432
+ msgid "Enable import from Media Library in file manager."
1433
+ msgstr ""
1434
+ "Habilitar la importación de medios de la biblioteca en el gestor de archivos."
1435
+
1436
+ #: ../admin/views/BWGViewOptions_bwg.php:251
1437
+ msgid "Enable href attribute:"
1438
+ msgstr "Habilitar atributo href:"
1439
+
1440
+ #: ../admin/views/BWGViewOptions_bwg.php:256
1441
+ msgid "Disable this option only if it conflicts with your theme."
1442
+ msgstr "Desactive esta opción sólo si está en conflicto con su tema."
1443
+
1444
+ #: ../admin/views/BWGViewOptions_bwg.php:261
1445
+ msgid "Meta auto-fill:"
1446
+ msgstr "Meta de auto-llenado:"
1447
+
1448
+ #: ../admin/views/BWGViewOptions_bwg.php:266
1449
+ msgid ""
1450
+ "Enabling this option the meta description of the image will be automatically "
1451
+ "filled in image description field."
1452
+ msgstr ""
1453
+ "Al activar esta opción, la meta descripción de la imagen se rellena "
1454
+ "automáticamente descripción de la imagen de campo."
1455
+
1456
+ #: ../admin/views/BWGViewOptions_bwg.php:272
1457
+ msgid "Show/hide custom post types:"
1458
+ msgstr "Mostrar / ocultar los tipos de correos personalizados:"
1459
+
1460
+ #: ../admin/views/BWGViewOptions_bwg.php:282
1461
+ msgid "Show/hide comments for custom post types:"
1462
+ msgstr "Mostrar / ocultar comentarios para tipos de correos personalizados:"
1463
+
1464
+ #: ../admin/views/BWGViewOptions_bwg.php:303
1465
+ msgid "Watermark type: "
1466
+ msgstr "Tipo de Marca de agua:"
1467
+
1468
+ #: ../admin/views/BWGViewOptions_bwg.php:309
1469
+ #: ../admin/views/BWGViewOptions_bwg. php:462
1470
+ #: ../admin/views/BWGViewThemes_bwg.php:3366 ..
1471
+ #: /admin/views/BWGViewWidgetTags.php:118
1472
+ msgid "Text"
1473
+ msgstr "Texto"
1474
+
1475
+ #: ../admin/views/BWGViewOptions_bwg.php:311
1476
+ #: ../admin/views/BWGViewOptions_bwg. php:464
1477
+ #: ../admin/views/BWGViewWidgetTags.php:119
1478
+ msgid "Image"
1479
+ msgstr "Imagen"
1480
+
1481
+ #: ../admin/views/BWGViewOptions_bwg.php:317
1482
+ msgid "Watermark url: "
1483
+ msgstr "Url Marca de agua:"
1484
+
1485
+ #: ../admin/views/BWGViewOptions_bwg.php:330
1486
+ #: ../admin/views/BWGViewOptions_bwg. php:485
1487
+ msgid "Add Image"
1488
+ msgstr "Añadir imagen"
1489
+
1490
+ #: ../admin/views/BWGViewOptions_bwg.php:332
1491
+ msgid "Only .png format is supported."
1492
+ msgstr "Sólo formato .png es compatible."
1493
+
1494
+ #: ../admin/views/BWGViewOptions_bwg.php:337
1495
+ msgid "Watermark text: "
1496
+ msgstr "Texto de marca de agua:"
1497
+
1498
+ #: ../admin/views/BWGViewOptions_bwg.php:346
1499
+ msgid "Watermark size: "
1500
+ msgstr "Tamaño Marca de agua:"
1501
+
1502
+ #: ../admin/views/BWGViewOptions_bwg.php:350
1503
+ msgid "Enter size of watermark in percents according to image."
1504
+ msgstr ""
1505
+ "Introduzca el tamaño de la marca de agua en porcentajes de acuerdo con la "
1506
+ "imagen."
1507
+
1508
+ #: ../admin/views/BWGViewOptions_bwg.php:355
1509
+ msgid "Watermark font size:"
1510
+ msgstr "Tamaño de la fuente de marca de agua:"
1511
+
1512
+ #: ../admin/views/BWGViewOptions_bwg.php:364
1513
+ msgid "Watermark font style: "
1514
+ msgstr "Estilo de fuente de marca de agua:"
1515
+
1516
+ #: ../admin/views/BWGViewOptions_bwg.php:393
1517
+ msgid "Watermark color:"
1518
+ msgstr "El color de marca de agua:"
1519
+
1520
+ #: ../admin/views/BWGViewOptions_bwg.php:402
1521
+ msgid "Watermark opacity:"
1522
+ msgstr "Opacidad Marca de agua:"
1523
+
1524
+ #: ../admin/views/BWGViewOptions_bwg.php:406
1525
+ msgid "Opacity value must be in the range of 0 to 100."
1526
+ msgstr "Valor de Opacidad debe estar en el rango de 0 a 100."
1527
+
1528
+ #: ../admin/views/BWGViewOptions_bwg.php:411
1529
+ msgid "Watermark position:"
1530
+ msgstr "Posición de marca de agua:"
1531
+
1532
+ #: ../admin/views/BWGViewOptions_bwg.php:456
1533
+ msgid "Advertisement type:"
1534
+ msgstr "Tipo de Anuncio:"
1535
+
1536
+ #: ../admin/views/BWGViewOptions_bwg.php:470
1537
+ msgid "Advertisement url:"
1538
+ msgstr "Publicidad url:"
1539
+
1540
+ #: ../admin/views/BWGViewOptions_bwg.php:487
1541
+ msgid ""
1542
+ "Enter absolute image file url or add file from Options page. (.jpg,.jpeg,."
1543
+ "png,.gif formats are supported)"
1544
+ msgstr ""
1545
+ "Introduzca absoluta url archivo de imagen o añadir el archivo de la página "
1546
+ "Opciones. (.jpg, .jpeg, .png, .gif se admiten los formatos)"
1547
+
1548
+ #: ../admin/views/BWGViewOptions_bwg.php:492
1549
+ msgid "Advertisement text:"
1550
+ msgstr "Publicidad de texto:"
1551
+
1552
+ #: ../admin/views/BWGViewOptions_bwg.php:501
1553
+ msgid "Advertisement link:"
1554
+ msgstr "Enlace Publicidad:"
1555
+
1556
+ #: ../admin/views/BWGViewOptions_bwg.php:505
1557
+ msgid "Enter a URL to open when the advertisement banner is clicked."
1558
+ msgstr ""
1559
+ "Introduzca una dirección URL para abrir cuando se hace clic en el banner de "
1560
+ "publicidad."
1561
+
1562
+ #: ../admin/views/BWGViewOptions_bwg.php:510
1563
+ msgid "Advertisement dimensions:"
1564
+ msgstr "Dimensiones Publicidad:"
1565
+
1566
+ #: ../admin/views/BWGViewOptions_bwg.php:515
1567
+ msgid "Maximum values for watermark image width and height."
1568
+ msgstr "Los valores máximos de anchura y altura de la imagen marca de agua."
1569
+
1570
+ #: ../admin/views/BWGViewOptions_bwg.php:520
1571
+ msgid "Advertisement font size:"
1572
+ msgstr "Tamaño de la fuente Publicidad:"
1573
+
1574
+ #: ../admin/views/BWGViewOptions_bwg.php:529
1575
+ msgid "Advertisement font style:"
1576
+ msgstr "Estilo de fuente Publicidad:"
1577
+
1578
+ #: ../admin/views/BWGViewOptions_bwg.php:546
1579
+ msgid "Advertisement color:"
1580
+ msgstr "Color de Anuncio:"
1581
+
1582
+ #: ../admin/views/BWGViewOptions_bwg.php:555
1583
+ msgid "Advertisement opacity:"
1584
+ msgstr "Publicidad opacidad:"
1585
+
1586
+ #: ../admin/views/BWGViewOptions_bwg.php:559
1587
+ #: ../admin/views/BWGViewThemes_bwg.php:403
1588
+ #: ../admin/views/BWGViewThemes_bwg.php:416 ../admin/views/BWGViewThemes_bwg.
1589
+ #: php:560 ../admin/views/BWGViewThemes_bwg.php:573 ..
1590
+ #: /admin/views/BWGViewThemes_bwg.php:844 930
1591
+ #: ../admin/views/BWGViewThemes_bwg.php:983 php:1052
1592
+ #: ../admin/views/BWGViewThemes_bwg.php:1165
1593
+ #: /admin/views/BWGViewThemes_bwg.php:1383 1396
1594
+ #: ../admin/views/BWGViewThemes_bwg.php:1617
1595
+ #: /admin/views/BWGViewThemes_bwg.php:1657 1736
1596
+ #: ../admin/views/BWGViewThemes_bwg.php:2054
1597
+ #: /admin/views/BWGViewThemes_bwg.php:2225 2261
1598
+ #: ../admin/views/BWGViewThemes_bwg.php:2314
1599
+ #: /admin/views/BWGViewThemes_bwg.php:2341 2626
1600
+ #: ../admin/views/BWGViewThemes_bwg.php:2748
1601
+ #: /admin/views/BWGViewThemes_bwg.php:2878 3305
1602
+ msgid "Value must be between 0 to 100."
1603
+ msgstr "El valor debe estar entre 0 y 100."
1604
+
1605
+ #: ../admin/views/BWGViewOptions_bwg.php:564
1606
+ msgid "Advertisement position:"
1607
+ msgstr "Publicidad posición:"
1608
+
1609
+ #: ../admin/views/BWGViewOptions_bwg.php:609
1610
+ msgid "Full width lightbox:"
1611
+ msgstr "Ancho total de luz:"
1612
+
1613
+ #: ../admin/views/BWGViewOptions_bwg.php:614
1614
+ msgid "Enable full width feature for the lightbox."
1615
+ msgstr "Habilitar función de ancho para la caja de luz."
1616
+
1617
+ #: ../admin/views/BWGViewOptions_bwg.php:619
1618
+ msgid "Lightbox dimensions:"
1619
+ msgstr "Dimensiones mesa de luz:"
1620
+
1621
+ #: ../admin/views/BWGViewOptions_bwg.php:629
1622
+ msgid "Lightbox effect:"
1623
+ msgstr "La mesa de luz efecto:"
1624
+
1625
+ #: ../admin/views/BWGViewOptions_bwg.php:636
1626
+ msgid "This effect is disabled in free version."
1627
+ msgstr "Este efecto está desactivado en la versión gratuita."
1628
+
1629
+ #: ../admin/views/BWGViewOptions_bwg.php:646
1630
+ msgid "Lightbox autoplay:"
1631
+ msgstr "La mesa de luz de reproducción automática:"
1632
+
1633
+ #: ../admin/views/BWGViewOptions_bwg.php:656
1634
+ #: ../admin/views/BWGViewOptions_bwg. php:1067
1635
+ #: ../admin/views/BWGViewOptions_bwg.php:1523 ..
1636
+ #: /admin/views/BWGViewWidgetSlideshow.php:138
1637
+ msgid "Time interval:"
1638
+ msgstr "Intervalo de tiempo:"
1639
+
1640
+ #: ../admin/views/BWGViewOptions_bwg.php:665
1641
+ msgid "Enable filmstrip:"
1642
+ msgstr "Habilitar tira de película:"
1643
+
1644
+ #: ../admin/views/BWGViewOptions_bwg.php:675
1645
+ msgid "Filmstrip size:"
1646
+ msgstr "Tamaño Tira de imágenes:"
1647
+
1648
+ #: ../admin/views/BWGViewOptions_bwg.php:684
1649
+ msgid "Display hit counter:"
1650
+ msgstr "Mostrar contador de acierto:"
1651
+
1652
+ #: ../admin/views/BWGViewOptions_bwg.php:694
1653
+ #: ../admin/views/BWGViewOptions_bwg. php:1106
1654
+ msgid "Show Next / Previous buttons:"
1655
+ msgstr "Mostrar botones Siguiente / Anterior:"
1656
+
1657
+ #: ../admin/views/BWGViewOptions_bwg.php:697
1658
+ #: ../admin/views/BWGViewOptions_bwg. php:1109
1659
+ msgid "On hover"
1660
+ msgstr "En vuelo estacionario"
1661
+
1662
+ #: ../admin/views/BWGViewOptions_bwg.php:698
1663
+ #: ../admin/views/BWGViewOptions_bwg. php:1110
1664
+ msgid "Always"
1665
+ msgstr "Siempre"
1666
+
1667
+ #: ../admin/views/BWGViewOptions_bwg.php:704
1668
+ #: ../admin/views/BWGViewOptions_bwg. php:1116
1669
+ msgid "Enable control buttons:"
1670
+ msgstr "Habilitar botones de control:"
1671
+
1672
+ #: ../admin/views/BWGViewOptions_bwg.php:738
1673
+ msgid "Enable fullscreen:"
1674
+ msgstr "Activar pantalla completa:"
1675
+
1676
+ #: ../admin/views/BWGViewOptions_bwg.php:748
1677
+ msgid "Enable info:"
1678
+ msgstr "Habilitar Info:"
1679
+
1680
+ #: ../admin/views/BWGViewOptions_bwg.php:758
1681
+ msgid "Display info by default:"
1682
+ msgstr "Mostrar información de forma predeterminada:"
1683
+
1684
+ #: ../admin/views/BWGViewOptions_bwg.php:768
1685
+ msgid "Full width info:"
1686
+ msgstr "Completa información anchura:"
1687
+
1688
+ #: ../admin/views/BWGViewOptions_bwg.php:773
1689
+ msgid "Display image information based on the lightbox dimensions."
1690
+ msgstr ""
1691
+ "Información de la imagen de visualización basado en las dimensiones "
1692
+ "selección."
1693
+
1694
+ #: ../admin/views/BWGViewOptions_bwg.php:784
1695
+ msgid "Enable rating:"
1696
+ msgstr "Habilitar calificación:"
1697
+
1698
+ #: ../admin/views/BWGViewOptions_bwg.php:794
1699
+ msgid "Enable comments:"
1700
+ msgstr "Habilitar comentarios:"
1701
+
1702
+ #: ../admin/views/BWGViewOptions_bwg.php:808
1703
+ msgid "Enable comments moderation:"
1704
+ msgstr "Habilitar comentarios moderación:"
1705
+
1706
+ #: ../admin/views/BWGViewOptions_bwg.php:818
1707
+ msgid "Enable Email for comments:"
1708
+ msgstr "Habilitar correo para comentarios:"
1709
+
1710
+ #: ../admin/views/BWGViewOptions_bwg.php:828
1711
+ msgid "Enable Captcha for comments:"
1712
+ msgstr "Habilitar Captcha para comentarios:"
1713
+
1714
+ #: ../admin/views/BWGViewOptions_bwg.php:838
1715
+ msgid "Enable original image display button:"
1716
+ msgstr "Habilitar botón original de visualización de la imagen:"
1717
+
1718
+ #: ../admin/views/BWGViewOptions_bwg.php:848
1719
+ msgid "Enable download button:"
1720
+ msgstr "Habilitar botón de descarga:"
1721
+
1722
+ #: ../admin/views/BWGViewOptions_bwg.php:858
1723
+ msgid "Enable Facebook button:"
1724
+ msgstr "Habilitar botón de Facebook:"
1725
+
1726
+ #: ../admin/views/BWGViewOptions_bwg.php:868
1727
+ msgid "Enable Twitter button:"
1728
+ msgstr "Habilitar botón de Twitter:"
1729
+
1730
+ #: ../admin/views/BWGViewOptions_bwg.php:878
1731
+ msgid "Enable Google+ button:"
1732
+ msgstr "Habilitar botón de Google+:"
1733
+
1734
+ #: ../admin/views/BWGViewOptions_bwg.php:888
1735
+ msgid "Enable Pinterest button:"
1736
+ msgstr "Habilitar botón de Pinterest:"
1737
+
1738
+ #: ../admin/views/BWGViewOptions_bwg.php:898
1739
+ msgid "Enable Tumblr button:"
1740
+ msgstr "Habilitar botón Tumblr:"
1741
+
1742
+ #: ../admin/views/BWGViewOptions_bwg.php:908
1743
+ msgid "Show images count:"
1744
+ msgstr "Mostrar imágenes cuentan:"
1745
+
1746
+ #: ../admin/views/BWGViewOptions_bwg.php:918
1747
+ msgid "Enable loop:"
1748
+ msgstr "Habilitar bucle:"
1749
+
1750
+ #: ../admin/views/BWGViewOptions_bwg.php:928
1751
+ msgid "Enable"
1752
+ msgstr "Habilitar"
1753
+
1754
+ #: ../admin/views/BWGViewOptions_bwg.php:951
1755
+ msgid "Number of album columns:"
1756
+ msgstr "Número de columnas de álbum:"
1757
+
1758
+ #: ../admin/views/BWGViewOptions_bwg.php:960
1759
+ msgid "Albums per page:"
1760
+ msgstr "Álbumes por página:"
1761
+
1762
+ #: ../admin/views/BWGViewOptions_bwg.php:969
1763
+ msgid "Enable pagination:"
1764
+ msgstr "Habilitar paginación:"
1765
+
1766
+ #: ../admin/views/BWGViewOptions_bwg.php:979
1767
+ msgid "Album view type:"
1768
+ msgstr "Album tipo de vista:"
1769
+
1770
+ #: ../admin/views/BWGViewOptions_bwg.php:989
1771
+ msgid "Show title:"
1772
+ msgstr "Mostrar título:"
1773
+
1774
+ #: ../admin/views/BWGViewOptions_bwg.php:992
1775
+ #: ../admin/views/BWGViewOptions_bwg. php:1344
1776
+ msgid "Show on hover"
1777
+ msgstr "Mostrar en vuelo estacionario"
1778
+
1779
+ #: ../admin/views/BWGViewOptions_bwg.php:993
1780
+ #: ../admin/views/BWGViewOptions_bwg. php:1345
1781
+ msgid "Always show"
1782
+ msgstr "Siempre muestra"
1783
+
1784
+ #: ../admin/views/BWGViewOptions_bwg.php:994
1785
+ #: ../admin/views/BWGViewOptions_bwg. php:1346
1786
+ msgid "Don't show"
1787
+ msgstr "No volver a mostrar"
1788
+
1789
+ #: ../admin/views/BWGViewOptions_bwg.php:1000
1790
+ msgid "Show album/gallery name:"
1791
+ msgstr "Mostrar el nombre del álbum / galería:"
1792
+
1793
+ #: ../admin/views/BWGViewOptions_bwg.php:1010
1794
+ msgid "Enable extended album description:"
1795
+ msgstr "Habilitar Descripción álbum extendida:"
1796
+
1797
+ #: ../admin/views/BWGViewOptions_bwg.php:1020
1798
+ msgid "Album thumbnail dimensions:"
1799
+ msgstr "Álbum dimensiones miniatura:"
1800
+
1801
+ #: ../admin/views/BWGViewOptions_bwg.php:1030
1802
+ msgid "Extended album height:"
1803
+ msgstr "Extended altura álbum:"
1804
+
1805
+ #: ../admin/views/BWGViewOptions_bwg.php:1050 ..
1806
+ #: /admin/views/BWGViewWidgetSlideshow.php:126
1807
+ msgid "Slideshow effect:"
1808
+ msgstr "Presentación efecto:"
1809
+
1810
+ #: ../admin/views/BWGViewOptions_bwg.php:1076
1811
+ msgid "Slideshow dimensions:"
1812
+ msgstr "Dimensiones de diapositivas:"
1813
+
1814
+ #: ../admin/views/BWGViewOptions_bwg.php:1086
1815
+ #: ../admin/views/BWGViewOptions_bwg. php:1582
1816
+ msgid "Enable autoplay:"
1817
+ msgstr "Activar reproducción automática:"
1818
+
1819
+ #: ../admin/views/BWGViewOptions_bwg.php:1096 ..
1820
+ #: /admin/views/BWGViewWidgetSlideshow.php:142
1821
+ msgid "Enable shuffle:"
1822
+ msgstr "Activar Shuffle:"
1823
+
1824
+ #: ../admin/views/BWGViewOptions_bwg.php:1125
1825
+ msgid "Enable slideshow filmstrip:"
1826
+ msgstr "Habilitar tira de película de diapositivas:"
1827
+
1828
+ #: ../admin/views/BWGViewOptions_bwg.php:1133
1829
+ msgid "Slideshow filmstrip size:"
1830
+ msgstr "Slideshow tamaño tira de película:"
1831
+
1832
+ #: ../admin/views/BWGViewOptions_bwg.php:1146
1833
+ #: ../admin/views/BWGViewOptions_bwg. php:1573
1834
+ msgid "Enable image title:"
1835
+ msgstr "Habilitar título de la imagen:"
1836
+
1837
+ #: ../admin/views/BWGViewOptions_bwg.php:1154
1838
+ #: ../admin/views/BWGViewThemes_bwg. php:440
1839
+ #: ../admin/views/BWGViewThemes_bwg.php:1420
1840
+ msgid "Title position:"
1841
+ msgstr "Posición Título:"
1842
+
1843
+ #: ../admin/views/BWGViewOptions_bwg.php:1175
1844
+ msgid "Image title position on slideshow"
1845
+ msgstr "Imagen posición del título en slideshow"
1846
+
1847
+ #: ../admin/views/BWGViewOptions_bwg.php:1180
1848
+ msgid "Full width title:"
1849
+ msgstr "Título completo ancho:"
1850
+
1851
+ #: ../admin/views/BWGViewOptions_bwg.php:1185
1852
+ msgid "Display image title based on the slideshow dimensions."
1853
+ msgstr ""
1854
+ "Título de la imagen de visualización basado en las dimensiones de "
1855
+ "diapositivas."
1856
+
1857
+ #: ../admin/views/BWGViewOptions_bwg.php:1189
1858
+ msgid "Enable image description: "
1859
+ msgstr "Habilitar descripción de la imagen:"
1860
+
1861
+ #: ../admin/views/BWGViewOptions_bwg.php:1197
1862
+ msgid "Description position:"
1863
+ msgstr "Descripción posición:"
1864
+
1865
+ #: ../admin/views/BWGViewOptions_bwg.php:1218
1866
+ msgid "Image description position on slideshow"
1867
+ msgstr "Descripción de la imagen posición sobre slideshow"
1868
+
1869
+ #: ../admin/views/BWGViewOptions_bwg.php:1223
1870
+ msgid "Enable slideshow Music:"
1871
+ msgstr "Habilitar Música diapositivas:"
1872
+
1873
+ #: ../admin/views/BWGViewOptions_bwg.php:1233
1874
+ msgid "Music url:"
1875
+ msgstr "Url Música:"
1876
+
1877
+ #: ../admin/views/BWGViewOptions_bwg.php:1246
1878
+ msgid "Add Music"
1879
+ msgstr "Añadir Música"
1880
+
1881
+ #: ../admin/views/BWGViewOptions_bwg.php:1248
1882
+ msgid "Only"
1883
+ msgstr "Sólo"
1884
+
1885
+ #: ../admin/views/BWGViewOptions_bwg.php:1248
1886
+ msgid "formats are supported."
1887
+ msgstr "formatos son compatibles."
1888
+
1889
+ #: ../admin/views/BWGViewOptions_bwg.php:1264
1890
+ msgid "Masonry:"
1891
+ msgstr "Albañilería:"
1892
+
1893
+ #: ../admin/views/BWGViewOptions_bwg.php:1267
1894
+ #: ../admin/views/BWGViewOptions_bwg. php:1278
1895
+ msgid "Horizontal"
1896
+ msgstr "Horizontal"
1897
+
1898
+ #: ../admin/views/BWGViewOptions_bwg.php:1268
1899
+ #: ../admin/views/BWGViewOptions_bwg. php:1277
1900
+ msgid "Vertical"
1901
+ msgstr "Vertical"
1902
+
1903
+ #: ../admin/views/BWGViewOptions_bwg.php:1274
1904
+ msgid "Mosaic:"
1905
+ msgstr "Mosaico:"
1906
+
1907
+ #: ../admin/views/BWGViewOptions_bwg.php:1284
1908
+ msgid "Resizable mosaic:"
1909
+ msgstr "Mosaico de tamaño variable:"
1910
+
1911
+ #: ../admin/views/BWGViewOptions_bwg.php:1294
1912
+ msgid "Total width of mosaic:"
1913
+ msgstr "Ancho total de mosaico:"
1914
+
1915
+ #: ../admin/views/BWGViewOptions_bwg.php:1298
1916
+ msgid "Width of mosaic as a percentage of container's width."
1917
+ msgstr "Ancho de mosaico como un porcentaje del ancho de contenedor."
1918
+
1919
+ #: ../admin/views/BWGViewOptions_bwg.php:1303
1920
+ msgid "Number of image columns:"
1921
+ msgstr "Número de columnas de imagen:"
1922
+
1923
+ #: ../admin/views/BWGViewOptions_bwg.php:1312
1924
+ msgid "Images per page:"
1925
+ msgstr "Imágenes por página:"
1926
+
1927
+ #: ../admin/views/BWGViewOptions_bwg.php:1321
1928
+ msgid "Generated thumbnail dimensions:"
1929
+ msgstr "Dimensiones en miniatura de creación:"
1930
+
1931
+ #: ../admin/views/BWGViewOptions_bwg.php:1326
1932
+ msgid ""
1933
+ "The maximum size of the generated thumbnail. Its dimensions should be larger "
1934
+ "than the ones of the frontend thumbnail."
1935
+ msgstr ""
1936
+ "El tamaño máximo de la imagen generada. Sus dimensiones deben ser más "
1937
+ "grandes que las de la miniatura frontend."
1938
+
1939
+ #: ../admin/views/BWGViewOptions_bwg.php:1331
1940
+ msgid "Frontend thumbnail dimensions:"
1941
+ msgstr "Dimensiones miniatura Frontend:"
1942
+
1943
+ #: ../admin/views/BWGViewOptions_bwg.php:1336
1944
+ msgid ""
1945
+ "The default size of the thumbnail which will be displayed in the website"
1946
+ msgstr "El tamaño predeterminado de la imagen que se mostrará en la página web"
1947
+
1948
+ #: ../admin/views/BWGViewOptions_bwg.php:1341
1949
+ msgid "Show image title:"
1950
+ msgstr "Mostrar título de la imagen:"
1951
+
1952
+ #: ../admin/views/BWGViewOptions_bwg.php:1351
1953
+ msgid "Show gallery name:"
1954
+ msgstr "Mostrar nombre de la galería:"
1955
+
1956
+ #: ../admin/views/BWGViewOptions_bwg.php:1360
1957
+ msgid "Show description in Vertical Masonry view:"
1958
+ msgstr "Mostrar descripción en vista Albañilería Vertical:"
1959
+
1960
+ #: ../admin/views/BWGViewOptions_bwg.php:1369
1961
+ msgid "Enable image pagination:"
1962
+ msgstr "Habilitar paginación imagen:"
1963
+
1964
+ #: ../admin/views/BWGViewOptions_bwg.php:1377
1965
+ msgid "Thumbnail click action:"
1966
+ msgstr "Miniatura clic acción:"
1967
+
1968
+ #: ../admin/views/BWGViewOptions_bwg.php:1379
1969
+ msgid "Open lightbox"
1970
+ msgstr "Abrir caja de luz"
1971
+
1972
+ #: ../admin/views/BWGViewOptions_bwg.php:1380
1973
+ msgid "Redirect to url"
1974
+ msgstr "Redireccionar a URL"
1975
+
1976
+ #: ../admin/views/BWGViewOptions_bwg.php:1381
1977
+ msgid "Do Nothing"
1978
+ msgstr "Hacer nada"
1979
+
1980
+ #: ../admin/views/BWGViewOptions_bwg.php:1386
1981
+ msgid "Open in a new window:"
1982
+ msgstr "Abrir en una nueva ventana:"
1983
+
1984
+ #: ../admin/views/BWGViewOptions_bwg.php:1394
1985
+ msgid "Play icon over the video thumbnail:"
1986
+ msgstr "Juega icono sobre la miniatura del vídeo:"
1987
+
1988
+ #: ../admin/views/BWGViewOptions_bwg.php:1411
1989
+ msgid "Enable image title for Image Browser view:"
1990
+ msgstr "Habilitar título de la imagen para una vista Image Browser:"
1991
+
1992
+ #: ../admin/views/BWGViewOptions_bwg.php:1421
1993
+ msgid "Enable image description for Image Browser view:"
1994
+ msgstr "Habilitar descripción de la imagen para una vista Image Browser:"
1995
+
1996
+ #: ../admin/views/BWGViewOptions_bwg.php:1431
1997
+ msgid "Image width for Image Browser view:"
1998
+ msgstr "Ancho de la imagen para una vista Image Browser:"
1999
+
2000
+ #: ../admin/views/BWGViewOptions_bwg.php:1440
2001
+ msgid "The Blog Style view is disabled in free version."
2002
+ msgstr "La vista Blog Style está deshabilitado en la versión gratuita."
2003
+
2004
+ #: ../admin/views/BWGViewOptions_bwg.php:1445
2005
+ msgid "Enable image title for Blog Style view:"
2006
+ msgstr "Habilitar título de la imagen para una vista Blog Estilo:"
2007
+
2008
+ #: ../admin/views/BWGViewOptions_bwg.php:1455
2009
+ msgid "Image width for Blog Style view:"
2010
+ msgstr "Ancho de la imagen de vista Blog Estilo:"
2011
+
2012
+ #: ../admin/views/BWGViewOptions_bwg.php:1464
2013
+ msgid "Images per page in Blog Style view:"
2014
+ msgstr "Imágenes por página en vista Blog Estilo:"
2015
+
2016
+ #: ../admin/views/BWGViewOptions_bwg.php:1473
2017
+ msgid "Enable pagination for Blog Style view:"
2018
+ msgstr "Habilitar paginación para vista Blog Estilo:"
2019
+
2020
+ #: ../admin/views/BWGViewOptions_bwg.php:1490
2021
+ msgid "Gallery autoupdate interval:"
2022
+ msgstr "Galería intervalo de actualización automática:"
2023
+
2024
+ #: ../admin/views/BWGViewOptions_bwg.php:1494
2025
+ msgid "hour"
2026
+ msgstr "horas"
2027
+
2028
+ #: ../admin/views/BWGViewOptions_bwg.php:1496
2029
+ msgid "min"
2030
+ msgstr "min"
2031
+
2032
+ #: ../admin/views/BWGViewOptions_bwg.php:1497
2033
+ msgid "Autoupdatable galleries are disabled in free version."
2034
+ msgstr "Galerías Autoupdatable están deshabilitadas en la versión gratuita."
2035
+
2036
+ #: ../admin/views/BWGViewOptions_bwg.php:1507
2037
+ msgid "galleries are disabled in free version."
2038
+ msgstr "galerías están deshabilitadas en la versión gratuita."
2039
+
2040
+ #: ../admin/views/BWGViewOptions_bwg.php:1532
2041
+ msgid "Max. number of images:"
2042
+ msgstr "Max. número de imágenes:"
2043
+
2044
+ #: ../admin/views/BWGViewOptions_bwg.php:1541
2045
+ msgid "Carousel image ratio:"
2046
+ msgstr "Relación imagen Carrusel:"
2047
+
2048
+ #: ../admin/views/BWGViewOptions_bwg.php:1560
2049
+ msgid "Fixed width:"
2050
+ msgstr "Ancho fijo:"
2051
+
2052
+ #: ../admin/views/BWGViewOptions_bwg.php:1592
2053
+ msgid "Container fit:"
2054
+ msgstr "En forma de contenedor:"
2055
+
2056
+ #: ../admin/views/BWGViewOptions_bwg.php:1602
2057
+ msgid "Next/Previous buttons:"
2058
+ msgstr "Siguiente / botones Anterior:"
2059
+
2060
+ #: ../admin/views/BWGViewOptions_bwg.php:1612
2061
+ msgid "Play/Pause button:"
2062
+ msgstr "Botón del juego / pausa:"
2063
+
2064
+ #: ../admin/views/BWGViewOptions_bwg.php:1625
2065
+ msgid "Carousel view is disabled in free version."
2066
+ msgstr "Vista del carrusel está deshabilitado en la versión gratuita."
2067
+
2068
+ #: ../admin/views/BWGViewTags_bwg.php:43
2069
+ msgid "This section allows you to create, edit and delete tags."
2070
+ msgstr "Esta sección le permite crear, editar y eliminar las etiquetas."
2071
+
2072
+ #: ../admin/views/BWGViewTags_bwg.php:107
2073
+ msgid "Count"
2074
+ msgstr "Contar"
2075
+
2076
+ #: ../admin/views/BWGViewTags_bwg.php:126
2077
+ msgid "Add Tag"
2078
+ msgstr "Añadir etiqueta"
2079
+
2080
+ #: ../admin/views/BWGViewThemes_bwg.php:39
2081
+ msgid "This section allows you to create, edit and delete themes."
2082
+ msgstr "Esta sección le permite crear, editar y borrar temas."
2083
+
2084
+ #: ../admin/views/BWGViewThemes_bwg.php:45
2085
+ msgid "This feature is disabled for the non-commercial version."
2086
+ msgstr "Esta función está desactivada para la versión no comercial."
2087
+
2088
+ #: ../admin/views/BWGViewThemes_bwg.php:117 ../framework/WDWLibrary.php:848
2089
+ msgid "Default"
2090
+ msgstr "Predeterminado"
2091
+
2092
+ #: ../admin/views/BWGViewThemes_bwg.php:197
2093
+ msgid "Solid"
2094
+ msgstr "Sólido"
2095
+
2096
+ #: ../admin/views/BWGViewThemes_bwg.php:198
2097
+ msgid "Dotted"
2098
+ msgstr "Punteada"
2099
+
2100
+ #: ../admin/views/BWGViewThemes_bwg.php:199
2101
+ msgid "Dashed"
2102
+ msgstr "La"
2103
+
2104
+ #: ../admin/views/BWGViewThemes_bwg.php:200
2105
+ #: ../admin/views/BWGViewThemes_bwg.php:237
2106
+ msgid "Double"
2107
+ msgstr "Doble"
2108
+
2109
+ #: ../admin/views/BWGViewThemes_bwg.php:201
2110
+ msgid "Groove"
2111
+ msgstr "Ranura"
2112
+
2113
+ #: ../admin/views/BWGViewThemes_bwg.php:202
2114
+ msgid "Ridge"
2115
+ msgstr "Cresta"
2116
+
2117
+ #: ../admin/views/BWGViewThemes_bwg.php:203
2118
+ msgid "Inset"
2119
+ msgstr "Inserción"
2120
+
2121
+ #: ../admin/views/BWGViewThemes_bwg.php:204
2122
+ msgid "Outset"
2123
+ msgstr "Principio"
2124
+
2125
+ #: ../admin/views/BWGViewThemes_bwg.php:219
2126
+ #: ../admin/views/BWGViewThemes_bwg.php:783
2127
+ #: ../admin/views/BWGViewThemes_bwg.php:2566 ../admin/views/BWGViewThemes_bwg.
2128
+ #: php:3020
2129
+ msgid "Left"
2130
+ msgstr "Izquierda"
2131
+
2132
+ #: ../admin/views/BWGViewThemes_bwg.php:220
2133
+ msgid "Center"
2134
+ msgstr "Centro"
2135
+
2136
+ #: ../admin/views/BWGViewThemes_bwg.php:221
2137
+ #: ../admin/views/BWGViewThemes_bwg.php:781
2138
+ #: ../admin/views/BWGViewThemes_bwg.php:2564 ../admin/views/BWGViewThemes_bwg.
2139
+ #: php:3022
2140
+ msgid "Right"
2141
+ msgstr "Correcto"
2142
+
2143
+ #: ../admin/views/BWGViewThemes_bwg.php:224
2144
+ msgid "Lighter"
2145
+ msgstr "Encendedor"
2146
+
2147
+ #: ../admin/views/BWGViewThemes_bwg.php:225
2148
+ msgid "Normal"
2149
+ msgstr "Normalidad"
2150
+
2151
+ #: ../admin/views/BWGViewThemes_bwg.php:226
2152
+ msgid "Bold"
2153
+ msgstr "Audaz"
2154
+
2155
+ #: ../admin/views/BWGViewThemes_bwg.php:230
2156
+ msgid "Rotate"
2157
+ msgstr "Girar"
2158
+
2159
+ #: ../admin/views/BWGViewThemes_bwg.php:231
2160
+ msgid "Scale"
2161
+ msgstr "Nivel"
2162
+
2163
+ #: ../admin/views/BWGViewThemes_bwg.php:232
2164
+ msgid "Skew"
2165
+ msgstr "Skew"
2166
+
2167
+ #: ../admin/views/BWGViewThemes_bwg.php:235
2168
+ msgid "Chevron"
2169
+ msgstr "Cheurón"
2170
+
2171
+ #: ../admin/views/BWGViewThemes_bwg.php:236
2172
+ msgid "Angle"
2173
+ msgstr "Ángulo"
2174
+
2175
+ #: ../admin/views/BWGViewThemes_bwg.php:240
2176
+ msgid "Star"
2177
+ msgstr "Estrella"
2178
+
2179
+ #: ../admin/views/BWGViewThemes_bwg.php:241
2180
+ msgid "Bell"
2181
+ msgstr "Campanilla"
2182
+
2183
+ #: ../admin/views/BWGViewThemes_bwg.php:242
2184
+ msgid "Circle"
2185
+ msgstr "Círculo"
2186
+
2187
+ #: ../admin/views/BWGViewThemes_bwg.php:243
2188
+ msgid "Flag"
2189
+ msgstr "Bandera"
2190
+
2191
+ #: ../admin/views/BWGViewThemes_bwg.php:244
2192
+ msgid "Heart"
2193
+ msgstr "Corazón"
2194
+
2195
+ #: ../admin/views/BWGViewThemes_bwg.php:245
2196
+ msgid "Square"
2197
+ msgstr "Cuadrado"
2198
+
2199
+ #: ../admin/views/BWGViewThemes_bwg.php:250
2200
+ msgid "This section allows you to add/edit theme."
2201
+ msgstr "Esta sección le permite añadir / editar el tema."
2202
+
2203
+ #: ../admin/views/BWGViewThemes_bwg.php:280
2204
+ msgid "This tab is disabled in free version"
2205
+ msgstr "Esta ficha está deshabilitado en la versión gratuita"
2206
+
2207
+ #: ../admin/views/BWGViewThemes_bwg.php:284
2208
+ msgid "Page Navigation"
2209
+ msgstr "Page Navigation"
2210
+
2211
+ #: ../admin/views/BWGViewThemes_bwg.php:289
2212
+ msgid "Parameters"
2213
+ msgstr "Parámetros"
2214
+
2215
+ #: ../admin/views/BWGViewThemes_bwg.php:304
2216
+ #: ../admin/views/BWGViewThemes_bwg.php:1109
2217
+ #: ../admin/views/BWGViewThemes_bwg.php:1291 ..
2218
+ #: /admin/views/BWGViewThemes_bwg.php:1714 2072
2219
+ #: ../admin/views/BWGViewThemes_bwg.php:3282
2220
+ msgid "Margin:"
2221
+ msgstr "Margen:"
2222
+
2223
+ #: ../admin/views/BWGViewThemes_bwg.php:310
2224
+ #: ../admin/views/BWGViewThemes_bwg.php:512
2225
+ #: ../admin/views/BWGViewThemes_bwg.php:1116 ../admin/views/BWGViewThemes_bwg.
2226
+ #: php:1284 ../admin/views/BWGViewThemes_bwg.php:1721 ..
2227
+ #: /admin/views/BWGViewThemes_bwg.php:2079 3289
2228
+ msgid "Padding:"
2229
+ msgstr "Relleno:"
2230
+
2231
+ #: ../admin/views/BWGViewThemes_bwg.php:316
2232
+ #: ../admin/views/BWGViewThemes_bwg.php:518
2233
+ #: ../admin/views/BWGViewThemes_bwg.php:1123 ../admin/views/BWGViewThemes_bwg.
2234
+ #: php:1298 ../admin/views/BWGViewThemes_bwg.php:2125 ..
2235
+ #: /admin/views/BWGViewThemes_bwg.php:3243
2236
+ msgid "Border width:"
2237
+ msgstr "Anchura del borde:"
2238
+
2239
+ #: ../admin/views/BWGViewThemes_bwg.php:322
2240
+ #: ../admin/views/BWGViewThemes_bwg.php:524
2241
+ #: ../admin/views/BWGViewThemes_bwg.php:1129 ../admin/views/BWGViewThemes_bwg.
2242
+ #: php:1304 ../admin/views/BWGViewThemes_bwg.php:2131 ..
2243
+ #: /admin/views/BWGViewThemes_bwg.php:3249
2244
+ msgid "Border style:"
2245
+ msgstr "Estilo de borde:"
2246
+
2247
+ #: ../admin/views/BWGViewThemes_bwg.php:336
2248
+ #: ../admin/views/BWGViewThemes_bwg.php:538
2249
+ #: ../admin/views/BWGViewThemes_bwg.php:1143 ../admin/views/BWGViewThemes_bwg.
2250
+ #: php:1318 ../admin/views/BWGViewThemes_bwg.php:2145 ..
2251
+ #: /admin/views/BWGViewThemes_bwg.php:3263
2252
+ msgid "Border color:"
2253
+ msgstr "Color de la frontera:"
2254
+
2255
+ #: ../admin/views/BWGViewThemes_bwg.php:342
2256
+ #: ../admin/views/BWGViewThemes_bwg.php:544
2257
+ #: ../admin/views/BWGViewThemes_bwg.php:1149 ../admin/views/BWGViewThemes_bwg.
2258
+ #: php:1324 ../admin/views/BWGViewThemes_bwg.php:1740 ..
2259
+ #: /admin/views/BWGViewThemes_bwg.php:2151 3269
2260
+ msgid "Border radius:"
2261
+ msgstr "Radio Frontera:"
2262
+
2263
+ #: ../admin/views/BWGViewThemes_bwg.php:345
2264
+ #: ../admin/views/BWGViewThemes_bwg.php:352
2265
+ #: ../admin/views/BWGViewThemes_bwg.php:492 ../admin/views/BWGViewThemes_bwg.
2266
+ #: php:499 ../admin/views/BWGViewThemes_bwg.php:547 ..
2267
+ #: /admin/views/BWGViewThemes_bwg.php:746 767
2268
+ #: ../admin/views/BWGViewThemes_bwg.php:791 php:825
2269
+ #: ../admin/views/BWGViewThemes_bwg.php:881
2270
+ #: /admin/views/BWGViewThemes_bwg.php:937 944
2271
+ #: ../admin/views/BWGViewThemes_bwg.php:990 php:997
2272
+ #: ../admin/views/BWGViewThemes_bwg.php:1039
2273
+ #: /admin/views/BWGViewThemes_bwg.php:1059 1112
2274
+ #: ../admin/views/BWGViewThemes_bwg.php:1119
2275
+ #: /admin/views/BWGViewThemes_bwg.php:1152 1172
2276
+ #: ../admin/views/BWGViewThemes_bwg.php:1225
2277
+ #: /admin/views/BWGViewThemes_bwg.php:1232 1265
2278
+ #: ../admin/views/BWGViewThemes_bwg.php:1287
2279
+ #: /admin/views/BWGViewThemes_bwg.php:1327 1334
2280
+ #: ../admin/views/BWGViewThemes_bwg.php:1472
2281
+ #: /admin/views/BWGViewThemes_bwg.php:1479 1526
2282
+ #: ../admin/views/BWGViewThemes_bwg.php:1580
2283
+ #: /admin/views/BWGViewThemes_bwg.php:1587 1670
2284
+ #: ../admin/views/BWGViewThemes_bwg.php:1710
2285
+ #: /admin/views/BWGViewThemes_bwg.php:1717 1743
2286
+ #: ../admin/views/BWGViewThemes_bwg.php:1776
2287
+ #: /admin/views/BWGViewThemes_bwg.php:1862 1881
2288
+ #: ../admin/views/BWGViewThemes_bwg.php:1954
2289
+ #: /admin/views/BWGViewThemes_bwg.php:2075 2089
2290
+ #: ../admin/views/BWGViewThemes_bwg.php:2154
2291
+ #: /admin/views/BWGViewThemes_bwg.php:2167 2212
2292
+ #: ../admin/views/BWGViewThemes_bwg.php:2307
2293
+ #: /admin/views/BWGViewThemes_bwg.php:2361 2394
2294
+ #: ../admin/views/BWGViewThemes_bwg.php:2493
2295
+ #: /admin/views/BWGViewThemes_bwg.php:2530 2574
2296
+ #: ../admin/views/BWGViewThemes_bwg.php:2607
2297
+ #: /admin/views/BWGViewThemes_bwg.php:2712 2781
2298
+ #: ../admin/views/BWGViewThemes_bwg.php:2788
2299
+ #: /admin/views/BWGViewThemes_bwg.php:2795 2911
2300
+ #: ../admin/views/BWGViewThemes_bwg.php:2918
2301
+ #: /admin/views/BWGViewThemes_bwg.php:2925 3112
2302
+ #: ../admin/views/BWGViewThemes_bwg.php:3131
2303
+ #: /admin/views/BWGViewThemes_bwg.php:3164 3272
2304
+ #: ../admin/views/BWGViewThemes_bwg.php:3285
2305
+ #: /admin/views/BWGViewThemes_bwg.php:3292 3321
2306
+ msgid "Use CSS type values."
2307
+ msgstr "Utilice valores de tipo CSS."
2308
+
2309
+ #: ../admin/views/BWGViewThemes_bwg.php:349
2310
+ #: ../admin/views/BWGViewThemes_bwg.php:1331
2311
+ msgid "Shadow:"
2312
+ msgstr "Sombra:"
2313
+
2314
+ #: ../admin/views/BWGViewThemes_bwg.php:356
2315
+ #: ../admin/views/BWGViewThemes_bwg.php:597
2316
+ #: ../admin/views/BWGViewThemes_bwg.php:1338
2317
+ msgid "Hover effect:"
2318
+ msgstr "Sitúe efecto:"
2319
+
2320
+ #: ../admin/views/BWGViewThemes_bwg.php:370
2321
+ #: ../admin/views/BWGViewThemes_bwg.php:611
2322
+ #: ../admin/views/BWGViewThemes_bwg.php:1352 ../admin/views/BWGViewThemes_bwg.
2323
+ #: php:1635
2324
+ msgid "Hover effect value:"
2325
+ msgstr "Pase el ratón valor efecto:"
2326
+
2327
+ #: ../admin/views/BWGViewThemes_bwg.php:373
2328
+ #: ../admin/views/BWGViewThemes_bwg.php:1638
2329
+ msgid "E.g. Rotate:"
2330
+ msgstr "Por ejemplo Rotar:"
2331
+
2332
+ #: ../admin/views/BWGViewThemes_bwg.php:373
2333
+ #: ../admin/views/BWGViewThemes_bwg.php:614
2334
+ #: ../admin/views/BWGViewThemes_bwg.php:1355 ../admin/views/BWGViewThemes_bwg.
2335
+ #: php:1638
2336
+ msgid "Scale:"
2337
+ msgstr "Escala:"
2338
+
2339
+ #: ../admin/views/BWGViewThemes_bwg.php:373
2340
+ #: ../admin/views/BWGViewThemes_bwg.php:614
2341
+ #: ../admin/views/BWGViewThemes_bwg.php:1355 ../admin/views/BWGViewThemes_bwg.
2342
+ #: php:1638
2343
+ msgid "Skew:"
2344
+ msgstr "Sesgar:"
2345
+
2346
+ #: ../admin/views/BWGViewThemes_bwg.php:377
2347
+ #: ../admin/views/BWGViewThemes_bwg.php:618
2348
+ msgid "Transition:"
2349
+ msgstr "Transición:"
2350
+
2351
+ #: ../admin/views/BWGViewThemes_bwg.php:393
2352
+ #: ../admin/views/BWGViewThemes_bwg.php:1374
2353
+ #: ../admin/views/BWGViewThemes_bwg.php:1642
2354
+ msgid "Thumbnail background color:"
2355
+ msgstr "Miniatura color de fondo:"
2356
+
2357
+ #: ../admin/views/BWGViewThemes_bwg.php:400
2358
+ #: ../admin/views/BWGViewThemes_bwg.php:1380
2359
+ #: ../admin/views/BWGViewThemes_bwg.php:1614
2360
+ msgid "Thumbnail transparency:"
2361
+ msgstr "Transparencia en miniatura:"
2362
+
2363
+ #: ../admin/views/BWGViewThemes_bwg.php:407
2364
+ #: ../admin/views/BWGViewThemes_bwg.php:1043
2365
+ #: ../admin/views/BWGViewThemes_bwg.php:1387
2366
+ msgid "Full background color:"
2367
+ msgstr "A todo color de fondo:"
2368
+
2369
+ #: ../admin/views/BWGViewThemes_bwg.php:413
2370
+ #: ../admin/views/BWGViewThemes_bwg.php:1049
2371
+ msgid "Full background transparency:"
2372
+ msgstr "Fondo total transparencia:"
2373
+
2374
+ #: ../admin/views/BWGViewThemes_bwg.php:420
2375
+ #: ../admin/views/BWGViewThemes_bwg.php:577
2376
+ #: ../admin/views/BWGViewThemes_bwg.php:1095 ../admin/views/BWGViewThemes_bwg.
2377
+ #: php:1400 ../admin/views/BWGViewThemes_bwg.php:2058 ..
2378
+ #: /admin/views/BWGViewThemes_bwg.php:3340
2379
+ msgid "Alignment:"
2380
+ msgstr "Alineación:"
2381
+
2382
+ #: ../admin/views/BWGViewThemes_bwg.php:443
2383
+ #: ../admin/views/BWGViewThemes_bwg.php:780
2384
+ #: ../admin/views/BWGViewThemes_bwg.php:1423 ../admin/views/BWGViewThemes_bwg.
2385
+ #: php:2292 ../admin/views/BWGViewThemes_bwg.php:2563 ..
2386
+ #: /admin/views/BWGViewThemes_bwg.php:2651 2719
2387
+ #: ../admin/views/BWGViewThemes_bwg.php:2849
2388
+ #: /admin/views/BWGViewThemes_bwg.php:3334
2389
+ msgid "Top"
2390
+ msgstr "Cima"
2391
+
2392
+ #: ../admin/views/BWGViewThemes_bwg.php:445
2393
+ #: ../admin/views/BWGViewThemes_bwg.php:782
2394
+ #: ../admin/views/BWGViewThemes_bwg.php:1425 ../admin/views/BWGViewThemes_bwg.
2395
+ #: php:2294 ../admin/views/BWGViewThemes_bwg.php:2565 ..
2396
+ #: /admin/views/BWGViewThemes_bwg.php:2653 2721
2397
+ #: ../admin/views/BWGViewThemes_bwg.php:2851
2398
+ #: /admin/views/BWGViewThemes_bwg.php:3336
2399
+ msgid "Bottom"
2400
+ msgstr "Fondo"
2401
+
2402
+ #: ../admin/views/BWGViewThemes_bwg.php:449
2403
+ #: ../admin/views/BWGViewThemes_bwg.php:948
2404
+ #: ../admin/views/BWGViewThemes_bwg.php:1429 ../admin/views/BWGViewThemes_bwg.
2405
+ #: php:1911 ../admin/views/BWGViewThemes_bwg.php:2963
2406
+ msgid "Title font size:"
2407
+ msgstr "Título tamaño de la fuente:"
2408
+
2409
+ #: ../admin/views/BWGViewThemes_bwg.php:455
2410
+ #: ../admin/views/BWGViewThemes_bwg.php:1435
2411
+ #: ../admin/views/BWGViewThemes_bwg.php:1917 ..
2412
+ #: /admin/views/BWGViewThemes_bwg.php:2929
2413
+ msgid "Title font color:"
2414
+ msgstr "Color de fuente Título:"
2415
+
2416
+ #: ../admin/views/BWGViewThemes_bwg.php:461
2417
+ #: ../admin/views/BWGViewThemes_bwg.php:960
2418
+ #: ../admin/views/BWGViewThemes_bwg.php:1441 ../admin/views/BWGViewThemes_bwg.
2419
+ #: php:1923 ../admin/views/BWGViewThemes_bwg.php:2935
2420
+ msgid "Title font family:"
2421
+ msgstr "Familia tipográfica Título:"
2422
+
2423
+ #: ../admin/views/BWGViewThemes_bwg.php:475
2424
+ #: ../admin/views/BWGViewThemes_bwg.php:1455
2425
+ #: ../admin/views/BWGViewThemes_bwg.php:1937 ..
2426
+ #: /admin/views/BWGViewThemes_bwg.php:2949
2427
+ msgid "Title font weight:"
2428
+ msgstr "Título peso de la fuente:"
2429
+
2430
+ #: ../admin/views/BWGViewThemes_bwg.php:489
2431
+ #: ../admin/views/BWGViewThemes_bwg.php:1469
2432
+ msgid "Title box shadow:"
2433
+ msgstr "Cuadro Título sombra:"
2434
+
2435
+ #: ../admin/views/BWGViewThemes_bwg.php:496
2436
+ #: ../admin/views/BWGViewThemes_bwg.php:1476
2437
+ #: ../admin/views/BWGViewThemes_bwg.php:1872
2438
+ msgid "Title margin:"
2439
+ msgstr "Margen Título:"
2440
+
2441
+ #: ../admin/views/BWGViewThemes_bwg.php:557
2442
+ msgid "Transparency:"
2443
+ msgstr "Transparencia:"
2444
+
2445
+ #: ../admin/views/BWGViewThemes_bwg.php:564
2446
+ #: ../admin/views/BWGViewThemes_bwg.php:662
2447
+ #: ../admin/views/BWGViewThemes_bwg.php:1156 ../admin/views/BWGViewThemes_bwg.
2448
+ #: php:1727 ../admin/views/BWGViewThemes_bwg.php:2045
2449
+ msgid "Background color:"
2450
+ msgstr "Color de fondo:"
2451
+
2452
+ #: ../admin/views/BWGViewThemes_bwg.php:570
2453
+ #: ../admin/views/BWGViewThemes_bwg.php:1162
2454
+ #: ../admin/views/BWGViewThemes_bwg.php:1733 ..
2455
+ #: /admin/views/BWGViewThemes_bwg.php:2051
2456
+ msgid "Background transparency:"
2457
+ msgstr "La transparencia del fondo:"
2458
+
2459
+ #: ../admin/views/BWGViewThemes_bwg.php:614
2460
+ msgid "Rotate:"
2461
+ msgstr "Rotar:"
2462
+
2463
+ #: ../admin/views/BWGViewThemes_bwg.php:627
2464
+ #: ../admin/views/BWGViewThemes_bwg.php:1001
2465
+ #: ../admin/views/BWGViewThemes_bwg.php:1984 ..
2466
+ #: /admin/views/BWGViewThemes_bwg.php:3004
2467
+ msgid "Description font size:"
2468
+ msgstr "Descripción tamaño de la fuente:"
2469
+
2470
+ #: ../admin/views/BWGViewThemes_bwg.php:633
2471
+ #: ../admin/views/BWGViewThemes_bwg.php:1990
2472
+ #: ../admin/views/BWGViewThemes_bwg.php:2970
2473
+ msgid "Description font color:"
2474
+ msgstr "Descripción color de la fuente:"
2475
+
2476
+ #: ../admin/views/BWGViewThemes_bwg.php:639
2477
+ #: ../admin/views/BWGViewThemes_bwg.php:1996
2478
+ #: ../admin/views/BWGViewThemes_bwg.php:2976
2479
+ msgid "Description font family:"
2480
+ msgstr "Descripción de letra:"
2481
+
2482
+ #: ../admin/views/BWGViewThemes_bwg.php:668
2483
+ #: ../admin/views/BWGViewThemes_bwg.php:2509
2484
+ msgid "Right, left buttons size:"
2485
+ msgstr "Derecha, izquierda tamaño de los botones:"
2486
+
2487
+ #: ../admin/views/BWGViewThemes_bwg.php:674
2488
+ msgid "Play, pause buttons size:"
2489
+ msgstr "Reproducir, pausar tamaño de los botones:"
2490
+
2491
+ #: ../admin/views/BWGViewThemes_bwg.php:680
2492
+ #: ../admin/views/BWGViewThemes_bwg.php:2177
2493
+ msgid "Buttons color:"
2494
+ msgstr "Botones de color:"
2495
+
2496
+ #: ../admin/views/BWGViewThemes_bwg.php:686
2497
+ msgid "Buttons transparency:"
2498
+ msgstr "Botones transparencia:"
2499
+
2500
+ #: ../admin/views/BWGViewThemes_bwg.php:689
2501
+ msgid "alue must be between 0 to 100."
2502
+ msgstr "alue debe estar entre 0 a 100."
2503
+
2504
+ #: ../admin/views/BWGViewThemes_bwg.php:693
2505
+ msgid "Buttons hover color:"
2506
+ msgstr "Botones activables de color:"
2507
+
2508
+ #: ../admin/views/BWGViewThemes_bwg.php:699
2509
+ #: ../admin/views/BWGViewThemes_bwg.php:2503
2510
+ msgid "Right, left buttons width:"
2511
+ msgstr "Derecha, botones izquierdo Ancho:"
2512
+
2513
+ #: ../admin/views/BWGViewThemes_bwg.php:705
2514
+ #: ../admin/views/BWGViewThemes_bwg.php:2497
2515
+ msgid "Right, left buttons height:"
2516
+ msgstr "Derecha, izquierda botones de altura:"
2517
+
2518
+ #: ../admin/views/BWGViewThemes_bwg.php:711
2519
+ #: ../admin/views/BWGViewThemes_bwg.php:2478
2520
+ msgid "Right, left buttons background color:"
2521
+ msgstr "Derecha, izquierda botones color de fondo:"
2522
+
2523
+ #: ../admin/views/BWGViewThemes_bwg.php:717
2524
+ msgid "Right, left buttons border width:"
2525
+ msgstr "Derecha, botones izquierdo ancho del borde:"
2526
+
2527
+ #: ../admin/views/BWGViewThemes_bwg.php:723
2528
+ #: ../admin/views/BWGViewThemes_bwg.php:2540
2529
+ msgid "Right, left buttons border style: "
2530
+ msgstr "Derecha, izquierda botones estilo de borde:"
2531
+
2532
+ #: ../admin/views/BWGViewThemes_bwg.php:737
2533
+ msgid "Right, left buttons border color:"
2534
+ msgstr "Derecha, izquierda botones color del borde:"
2535
+
2536
+ #: ../admin/views/BWGViewThemes_bwg.php:743
2537
+ #: ../admin/views/BWGViewThemes_bwg.php:2527
2538
+ msgid "Right, left buttons border radius: "
2539
+ msgstr "Derecha, izquierda botones radio de frontera:"
2540
+
2541
+ #: ../admin/views/BWGViewThemes_bwg.php:750
2542
+ #: ../admin/views/BWGViewThemes_bwg.php:2464
2543
+ msgid "Right, left buttons style:"
2544
+ msgstr "Derecha, izquierda botones de estilo:"
2545
+
2546
+ #: ../admin/views/BWGViewThemes_bwg.php:764
2547
+ #: ../admin/views/BWGViewThemes_bwg.php:2490
2548
+ msgid "Right, left buttons box shadow:"
2549
+ msgstr "Derecha, botones izquierdo caja de sombra:"
2550
+
2551
+ #: ../admin/views/BWGViewThemes_bwg.php:777
2552
+ msgid "Filmstrip/Slider bullet position: "
2553
+ msgstr "Tira de película / deslizante posición bala:"
2554
+
2555
+ #: ../admin/views/BWGViewThemes_bwg.php:788
2556
+ msgid "Filmstrip margin:"
2557
+ msgstr "Margen de tira de diapositivas:"
2558
+
2559
+ #: ../admin/views/BWGViewThemes_bwg.php:795
2560
+ msgid "Filmstrip border width:"
2561
+ msgstr "Filmstrip ancho del borde:"
2562
+
2563
+ #: ../admin/views/BWGViewThemes_bwg.php:801
2564
+ msgid "Filmstrip border style: "
2565
+ msgstr "Estilo de borde Tira de imágenes:"
2566
+
2567
+ #: ../admin/views/BWGViewThemes_bwg.php:816
2568
+ msgid "Filmstrip border color: "
2569
+ msgstr "Tira de diapositivas color del borde:"
2570
+
2571
+ #: ../admin/views/BWGViewThemes_bwg.php:822
2572
+ msgid "Filmstrip border radius: "
2573
+ msgstr "Filmstrip radio de frontera:"
2574
+
2575
+ #: ../admin/views/BWGViewThemes_bwg.php:829
2576
+ msgid "Filmstrip active border width:"
2577
+ msgstr "Filmstrip ancho del borde activo:"
2578
+
2579
+ #: ../admin/views/BWGViewThemes_bwg.php:835
2580
+ msgid "Filmstrip active border color:"
2581
+ msgstr "Tira de diapositivas color del borde activo:"
2582
+
2583
+ #: ../admin/views/BWGViewThemes_bwg.php:841
2584
+ msgid "Filmstrip deactive transparency:"
2585
+ msgstr "Tira de imágenes transparencia inactivos:"
2586
+
2587
+ #: ../admin/views/BWGViewThemes_bwg.php:848
2588
+ msgid "Filmstrip right, left buttons background color:"
2589
+ msgstr "Derecha tira de diapositivas, botones izquierdo color de fondo:"
2590
+
2591
+ #: ../admin/views/BWGViewThemes_bwg.php:854
2592
+ msgid "Filmstrip right, left buttons color: "
2593
+ msgstr "Derecha tira de diapositivas, la izquierda botones de color:"
2594
+
2595
+ #: ../admin/views/BWGViewThemes_bwg.php:860
2596
+ #: ../admin/views/BWGViewThemes_bwg.php:2630
2597
+ msgid "Filmstrip right, left buttons size: "
2598
+ msgstr "Derecha tira de diapositivas, dada tamaño botones:"
2599
+
2600
+ #: ../admin/views/BWGViewThemes_bwg.php:866
2601
+ msgid "Slider bullet width: "
2602
+ msgstr "Deslizador ancho de bala:"
2603
+
2604
+ #: ../admin/views/BWGViewThemes_bwg.php:872
2605
+ msgid "Slider bullet height: "
2606
+ msgstr "Deslizador altura de bala:"
2607
+
2608
+ #: ../admin/views/BWGViewThemes_bwg.php:878
2609
+ msgid "Slider bullet border radius:"
2610
+ msgstr "Deslizador radio frontera bala:"
2611
+
2612
+ #: ../admin/views/BWGViewThemes_bwg.php:885
2613
+ msgid "Slider bullet background color: "
2614
+ msgstr "Deslizador color de fondo de bala:"
2615
+
2616
+ #: ../admin/views/BWGViewThemes_bwg.php:891
2617
+ msgid "Slider bullet margin:"
2618
+ msgstr "Deslizador margen de bala:"
2619
+
2620
+ #: ../admin/views/BWGViewThemes_bwg.php:897
2621
+ msgid "Slider bullet active background color:"
2622
+ msgstr "Bala deslizante color de fondo activo:"
2623
+
2624
+ #: ../admin/views/BWGViewThemes_bwg.php:903
2625
+ msgid "Slider bullet active border width: "
2626
+ msgstr "Bala deslizante ancho del borde activo:"
2627
+
2628
+ #: ../admin/views/BWGViewThemes_bwg.php:909
2629
+ msgid "Slider bullet active border color:"
2630
+ msgstr "Bala deslizante color del borde activo:"
2631
+
2632
+ #: ../admin/views/BWGViewThemes_bwg.php:921
2633
+ msgid "Title background color:"
2634
+ msgstr "Título color de fondo:"
2635
+
2636
+ #: ../admin/views/BWGViewThemes_bwg.php:927
2637
+ msgid "Title transparency: "
2638
+ msgstr "Título transparencia:"
2639
+
2640
+ #: ../admin/views/BWGViewThemes_bwg.php:934
2641
+ msgid "Title border radius:"
2642
+ msgstr "Título radio de frontera:"
2643
+
2644
+ #: ../admin/views/BWGViewThemes_bwg.php:941
2645
+ #: ../admin/views/BWGViewThemes_bwg.php:1878
2646
+ msgid "Title padding:"
2647
+ msgstr "Título padding:"
2648
+
2649
+ #: ../admin/views/BWGViewThemes_bwg.php:954
2650
+ msgid "Title color:"
2651
+ msgstr "Título de color:"
2652
+
2653
+ #: ../admin/views/BWGViewThemes_bwg.php:974
2654
+ msgid "Description background color:"
2655
+ msgstr "Descripción color de fondo:"
2656
+
2657
+ #: ../admin/views/BWGViewThemes_bwg.php:980
2658
+ msgid "Description transparency: "
2659
+ msgstr "Descripción transparencia:"
2660
+
2661
+ #: ../admin/views/BWGViewThemes_bwg.php:987
2662
+ msgid "Description border radius: "
2663
+ msgstr "Descripción radio de frontera:"
2664
+
2665
+ #: ../admin/views/BWGViewThemes_bwg.php:994
2666
+ #: ../admin/views/BWGViewThemes_bwg.php:1229
2667
+ #: ../admin/views/BWGViewThemes_bwg.php:1951
2668
+ msgid "Description padding:"
2669
+ msgstr "Descripción padding:"
2670
+
2671
+ #: ../admin/views/BWGViewThemes_bwg.php:1007
2672
+ msgid "Description color: "
2673
+ msgstr "Descripción del color:"
2674
+
2675
+ #: ../admin/views/BWGViewThemes_bwg.php:1013
2676
+ msgid "Description font family: "
2677
+ msgstr "Descripción de letra:"
2678
+
2679
+ #: ../admin/views/BWGViewThemes_bwg.php:1036
2680
+ msgid "Full padding:"
2681
+ msgstr "Acolchado completo:"
2682
+
2683
+ #: ../admin/views/BWGViewThemes_bwg.php:1056
2684
+ msgid "Full border radius:"
2685
+ msgstr "Completo radio de frontera:"
2686
+
2687
+ #: ../admin/views/BWGViewThemes_bwg.php:1063
2688
+ msgid "Full border width:"
2689
+ msgstr "Completo ancho del borde:"
2690
+
2691
+ #: ../admin/views/BWGViewThemes_bwg.php:1069
2692
+ msgid "Full border style:"
2693
+ msgstr "Estilo de borde completo:"
2694
+
2695
+ #: ../admin/views/BWGViewThemes_bwg.php:1083
2696
+ msgid "Full border color:"
2697
+ msgstr "A todo color frontera:"
2698
+
2699
+ #: ../admin/views/BWGViewThemes_bwg.php:1169
2700
+ #: ../admin/views/BWGViewThemes_bwg.php:2086
2701
+ #: ../admin/views/BWGViewThemes_bwg.php:3318
2702
+ msgid "Box shadow:"
2703
+ msgstr "Caja de sombra:"
2704
+
2705
+ #: ../admin/views/BWGViewThemes_bwg.php:1182
2706
+ msgid "Title alignment:"
2707
+ msgstr "Título alineación:"
2708
+
2709
+ #: ../admin/views/BWGViewThemes_bwg.php:1196
2710
+ #: ../admin/views/BWGViewThemes_bwg.php:1483
2711
+ #: ../admin/views/BWGViewThemes_bwg.php:2113 ..
2712
+ #: /admin/views/BWGViewThemes_bwg.php:3203
2713
+ msgid "Font size:"
2714
+ msgstr "Tamaño de fuente:"
2715
+
2716
+ #: ../admin/views/BWGViewThemes_bwg.php:1202
2717
+ #: ../admin/views/BWGViewThemes_bwg.php:1489
2718
+ #: ../admin/views/BWGViewThemes_bwg.php:2119 ..
2719
+ #: /admin/views/BWGViewThemes_bwg.php:3209
2720
+ msgid "Font color:"
2721
+ msgstr "Color de fuente:"
2722
+
2723
+ #: ../admin/views/BWGViewThemes_bwg.php:1208
2724
+ #: ../admin/views/BWGViewThemes_bwg.php:1495
2725
+ #: ../admin/views/BWGViewThemes_bwg.php:2099 ..
2726
+ #: /admin/views/BWGViewThemes_bwg.php:3215
2727
+ msgid "Font family:"
2728
+ msgstr "Familia tipográfica:"
2729
+
2730
+ #: ../admin/views/BWGViewThemes_bwg.php:1222
2731
+ msgid "Description margin:"
2732
+ msgstr "Descripción margen:"
2733
+
2734
+ #: ../admin/views/BWGViewThemes_bwg.php:1236
2735
+ msgid "Description border width: "
2736
+ msgstr "Descripción ancho del borde:"
2737
+
2738
+ #: ../admin/views/BWGViewThemes_bwg.php:1242
2739
+ msgid "Description border style: "
2740
+ msgstr "Descripción estilo de borde:"
2741
+
2742
+ #: ../admin/views/BWGViewThemes_bwg.php:1256
2743
+ msgid "Description border color: "
2744
+ msgstr "Descripción color del borde:"
2745
+
2746
+ #: ../admin/views/BWGViewThemes_bwg.php:1262
2747
+ msgid "Description border radius:"
2748
+ msgstr "Descripción radio de frontera:"
2749
+
2750
+ #: ../admin/views/BWGViewThemes_bwg.php:1269
2751
+ msgid "Description background color: "
2752
+ msgstr "Descripción color de fondo:"
2753
+
2754
+ #: ../admin/views/BWGViewThemes_bwg.php:1294
2755
+ #: ../admin/views/BWGViewThemes_bwg.php:2082
2756
+ msgid "se CSS type values."
2757
+ msgstr "valores de tipo sí CSS."
2758
+
2759
+ #: ../admin/views/BWGViewThemes_bwg.php:1355
2760
+ msgid "E.g. Rotate"
2761
+ msgstr "Por ejemplo Girar"
2762
+
2763
+ #: ../admin/views/BWGViewThemes_bwg.php:1359
2764
+ #: ../admin/views/BWGViewThemes_bwg.php:1591
2765
+ msgid "Thumbnail transition:"
2766
+ msgstr "Transición en miniatura:"
2767
+
2768
+ #: ../admin/views/BWGViewThemes_bwg.php:1393
2769
+ msgid "Full background transparency: "
2770
+ msgstr "Fondo total transparencia:"
2771
+
2772
+ #: ../admin/views/BWGViewThemes_bwg.php:1509
2773
+ #: ../admin/views/BWGViewThemes_bwg.php:3229
2774
+ msgid "Font weight:"
2775
+ msgstr "Peso de la fuente:"
2776
+
2777
+ #: ../admin/views/BWGViewThemes_bwg.php:1523
2778
+ #: ../admin/views/BWGViewThemes_bwg.php:1773
2779
+ msgid "Back padding:"
2780
+ msgstr "Carnes de Espalda:"
2781
+
2782
+ #: ../admin/views/BWGViewThemes_bwg.php:1539
2783
+ msgid "Thumbnail margin:"
2784
+ msgstr "Margen miniatura:"
2785
+
2786
+ #: ../admin/views/BWGViewThemes_bwg.php:1545
2787
+ msgid "Thumbnail padding:"
2788
+ msgstr "Padding miniatura:"
2789
+
2790
+ #: ../admin/views/BWGViewThemes_bwg.php:1551
2791
+ msgid "Thumbnail border width:"
2792
+ msgstr "Miniatura ancho del borde:"
2793
+
2794
+ #: ../admin/views/BWGViewThemes_bwg.php:1557
2795
+ msgid "Thumbnail border style:"
2796
+ msgstr "Estilo de borde en miniatura:"
2797
+
2798
+ #: ../admin/views/BWGViewThemes_bwg.php:1571
2799
+ msgid "Thumbnail border color:"
2800
+ msgstr "Miniatura color del borde:"
2801
+
2802
+ #: ../admin/views/BWGViewThemes_bwg.php:1577
2803
+ msgid "Thumbnail border radius:"
2804
+ msgstr "Miniatura radio de frontera:"
2805
+
2806
+ #: ../admin/views/BWGViewThemes_bwg.php:1584
2807
+ msgid "Thumbnail box shadow:"
2808
+ msgstr "Miniatura sombra cuadro:"
2809
+
2810
+ #: ../admin/views/BWGViewThemes_bwg.php:1600
2811
+ msgid "Thumbnail alignment:"
2812
+ msgstr "Alineación miniatura:"
2813
+
2814
+ #: ../admin/views/BWGViewThemes_bwg.php:1621
2815
+ msgid "Thumbnail hover effect: "
2816
+ msgstr "Miniatura efecto hover:"
2817
+
2818
+ #: ../admin/views/BWGViewThemes_bwg.php:1648
2819
+ msgid "Thumbnails background color:"
2820
+ msgstr "Miniaturas color de fondo:"
2821
+
2822
+ #: ../admin/views/BWGViewThemes_bwg.php:1654
2823
+ msgid "Thumbnail background transparency:"
2824
+ msgstr "Fondo Miniatura transparencia:"
2825
+
2826
+ #: ../admin/views/BWGViewThemes_bwg.php:1667
2827
+ msgid "Thumbnail div padding:"
2828
+ msgstr "Miniatura acolchado div:"
2829
+
2830
+ #: ../admin/views/BWGViewThemes_bwg.php:1674
2831
+ msgid "Thumbnail div background color:"
2832
+ msgstr "Miniatura div color de fondo:"
2833
+
2834
+ #: ../admin/views/BWGViewThemes_bwg.php:1680
2835
+ msgid "Thumbnail div border width:"
2836
+ msgstr "Miniatura div ancho del borde:"
2837
+
2838
+ #: ../admin/views/BWGViewThemes_bwg.php:1687
2839
+ msgid "Thumbnail div border style:"
2840
+ msgstr "Estilo de borde en miniatura div:"
2841
+
2842
+ #: ../admin/views/BWGViewThemes_bwg.php:1701
2843
+ msgid "Thumbnail div border color:"
2844
+ msgstr "Miniatura div color del borde:"
2845
+
2846
+ #: ../admin/views/BWGViewThemes_bwg.php:1707
2847
+ msgid "Thumbnail div border radius:"
2848
+ msgstr "Miniatura div radio de frontera:"
2849
+
2850
+ #: ../admin/views/BWGViewThemes_bwg.php:1747
2851
+ msgid "Separator width:"
2852
+ msgstr "Ancho del separador:"
2853
+
2854
+ #: ../admin/views/BWGViewThemes_bwg.php:1753
2855
+ msgid "Separator style:"
2856
+ msgstr "Estilo Separador:"
2857
+
2858
+ #: ../admin/views/BWGViewThemes_bwg.php:1767
2859
+ msgid "Separator color:"
2860
+ msgstr "De color Separador:"
2861
+
2862
+ #: ../admin/views/BWGViewThemes_bwg.php:1780
2863
+ msgid "Back font size:"
2864
+ msgstr "Tamaño de la fuente Back:"
2865
+
2866
+ #: ../admin/views/BWGViewThemes_bwg.php:1786
2867
+ msgid "Back font color:"
2868
+ msgstr "Volver color de la fuente:"
2869
+
2870
+ #: ../admin/views/BWGViewThemes_bwg.php:1792
2871
+ msgid "Back font family:"
2872
+ msgstr "Volver familia de fuentes:"
2873
+
2874
+ #: ../admin/views/BWGViewThemes_bwg.php:1806
2875
+ msgid "Back font weight:"
2876
+ msgstr "Volver peso de la fuente:"
2877
+
2878
+ #: ../admin/views/BWGViewThemes_bwg.php:1826
2879
+ msgid "Text div padding:"
2880
+ msgstr "Texto div padding:"
2881
+
2882
+ #: ../admin/views/BWGViewThemes_bwg.php:1833
2883
+ msgid "Text div border width:"
2884
+ msgstr "Texto ancho del borde div:"
2885
+
2886
+ #: ../admin/views/BWGViewThemes_bwg.php:1839
2887
+ msgid "Text border style:"
2888
+ msgstr "Texto estilo de borde:"
2889
+
2890
+ #: ../admin/views/BWGViewThemes_bwg.php:1853
2891
+ msgid "Text border color:"
2892
+ msgstr "Texto Color del borde:"
2893
+
2894
+ #: ../admin/views/BWGViewThemes_bwg.php:1859
2895
+ msgid "Text div border radius:"
2896
+ msgstr "Texto radio frontera div:"
2897
+
2898
+ #: ../admin/views/BWGViewThemes_bwg.php:1866
2899
+ msgid "Text background color:"
2900
+ msgstr "Texto color de fondo:"
2901
+
2902
+ #: ../admin/views/BWGViewThemes_bwg.php:1885
2903
+ msgid "Title border width:"
2904
+ msgstr "Título ancho del borde:"
2905
+
2906
+ #: ../admin/views/BWGViewThemes_bwg.php:1891
2907
+ msgid "Title border style:"
2908
+ msgstr "Estilo de borde Título:"
2909
+
2910
+ #: ../admin/views/BWGViewThemes_bwg.php:1905
2911
+ msgid "Title border color:"
2912
+ msgstr "Título color del borde:"
2913
+
2914
+ #: ../admin/views/BWGViewThemes_bwg.php:1958
2915
+ msgid "Description border width:"
2916
+ msgstr "Descripción ancho del borde:"
2917
+
2918
+ #: ../admin/views/BWGViewThemes_bwg.php:1964
2919
+ msgid "Description border style:"
2920
+ msgstr "Descripción estilo de borde:"
2921
+
2922
+ #: ../admin/views/BWGViewThemes_bwg.php:1978
2923
+ msgid "Description border color:"
2924
+ msgstr "Descripción color del borde:"
2925
+
2926
+ #: ../admin/views/BWGViewThemes_bwg.php:2010
2927
+ #: ../admin/views/BWGViewThemes_bwg.php:2990
2928
+ msgid "Description font weight:"
2929
+ msgstr "Descripción peso de la fuente:"
2930
+
2931
+ #: ../admin/views/BWGViewThemes_bwg.php:2024
2932
+ msgid "Description more size:"
2933
+ msgstr "Descripción tamaño más:"
2934
+
2935
+ #: ../admin/views/BWGViewThemes_bwg.php:2030
2936
+ msgid "Description more color:"
2937
+ msgstr "Descripción más color:"
2938
+
2939
+ #: ../admin/views/BWGViewThemes_bwg.php:2164
2940
+ msgid "Buttons and title margin:"
2941
+ msgstr "Botones y margen del título:"
2942
+
2943
+ #: ../admin/views/BWGViewThemes_bwg.php:2171
2944
+ msgid "Buttons size:"
2945
+ msgstr "Tamaño de los botones:"
2946
+
2947
+ #: ../admin/views/BWGViewThemes_bwg.php:2183
2948
+ msgid "Buttons and title border width:"
2949
+ msgstr "Botones y ancho título frontera:"
2950
+
2951
+ #: ../admin/views/BWGViewThemes_bwg.php:2189
2952
+ msgid "Buttons and title border style:"
2953
+ msgstr "Botones y estilo de título frontera:"
2954
+
2955
+ #: ../admin/views/BWGViewThemes_bwg.php:2203
2956
+ msgid "Buttons and title border color:"
2957
+ msgstr "Botones y el color del título frontera:"
2958
+
2959
+ #: ../admin/views/BWGViewThemes_bwg.php:2209
2960
+ msgid "Buttons and title border radius:"
2961
+ msgstr "Botones y radio título frontera:"
2962
+
2963
+ #: ../admin/views/BWGViewThemes_bwg.php:2216
2964
+ msgid "Buttons and title background color:"
2965
+ msgstr "Botones y color de fondo del título:"
2966
+
2967
+ #: ../admin/views/BWGViewThemes_bwg.php:2222
2968
+ msgid "Buttons and title background transparency:"
2969
+ msgstr "Botones y fondo del título transparencia:"
2970
+
2971
+ #: ../admin/views/BWGViewThemes_bwg.php:2229
2972
+ msgid "Buttons or title alignment:"
2973
+ msgstr "Botones o la alineación del título:"
2974
+
2975
+ #: ../admin/views/BWGViewThemes_bwg.php:2252
2976
+ msgid "Overlay background color:"
2977
+ msgstr "Superposición de color de fondo:"
2978
+
2979
+ #: ../admin/views/BWGViewThemes_bwg.php:2258
2980
+ msgid "Overlay background transparency:"
2981
+ msgstr "Fondo Overlay transparencia:"
2982
+
2983
+ #: ../admin/views/BWGViewThemes_bwg.php:2265
2984
+ msgid "Lightbox background color:"
2985
+ msgstr "La mesa de luz color de fondo:"
2986
+
2987
+ #: ../admin/views/BWGViewThemes_bwg.php:2271
2988
+ msgid "Control buttons height:"
2989
+ msgstr "Botones de control de altura:"
2990
+
2991
+ #: ../admin/views/BWGViewThemes_bwg.php:2277
2992
+ msgid "Control buttons margin (top):"
2993
+ msgstr "Margen de botones de control (arriba):"
2994
+
2995
+ #: ../admin/views/BWGViewThemes_bwg.php:2283
2996
+ msgid "Control buttons margin (left):"
2997
+ msgstr "Margen de botones de control (izquierda):"
2998
+
2999
+ #: ../admin/views/BWGViewThemes_bwg.php:2289
3000
+ msgid "Control buttons position:"
3001
+ msgstr "Botones de control de posición:"
3002
+
3003
+ #: ../admin/views/BWGViewThemes_bwg.php:2298
3004
+ msgid "Control buttons background color: "
3005
+ msgstr "Control de color de los botones de fondo:"
3006
+
3007
+ #: ../admin/views/BWGViewThemes_bwg.php:2304
3008
+ msgid "Control buttons container border radius:"
3009
+ msgstr "Control de radio botones frontera contenedor:"
3010
+
3011
+ #: ../admin/views/BWGViewThemes_bwg.php:2311
3012
+ msgid "Control buttons container background transparency: "
3013
+ msgstr "Control de botones envase fondo transparencia:"
3014
+
3015
+ #: ../admin/views/BWGViewThemes_bwg.php:2318
3016
+ msgid "Control buttons alignment: "
3017
+ msgstr "Botones de control de alineación:"
3018
+
3019
+ #: ../admin/views/BWGViewThemes_bwg.php:2332
3020
+ msgid "Control buttons color:"
3021
+ msgstr "Botones de control del color:"
3022
+
3023
+ #: ../admin/views/BWGViewThemes_bwg.php:2338
3024
+ msgid "Control buttons transparency:"
3025
+ msgstr "Botones de control de transparencia:"
3026
+
3027
+ #: ../admin/views/BWGViewThemes_bwg.php:2345
3028
+ msgid "Toggle button height: "
3029
+ msgstr "Alternar altura botón:"
3030
+
3031
+ #: ../admin/views/BWGViewThemes_bwg.php:2351
3032
+ msgid "Toggle button width: "
3033
+ msgstr "Alternar anchura botón:"
3034
+
3035
+ #: ../admin/views/BWGViewThemes_bwg.php:2357
3036
+ msgid "Close button border radius:"
3037
+ msgstr "Cerrar radio botón de frontera:"
3038
+
3039
+ #: ../admin/views/BWGViewThemes_bwg.php:2365
3040
+ msgid "Close button border width:"
3041
+ msgstr "Cerrar anchura botón de frontera:"
3042
+
3043
+ #: ../admin/views/BWGViewThemes_bwg.php:2371
3044
+ msgid "Close button border style: "
3045
+ msgstr "Cerrar estilo de botón frontera:"
3046
+
3047
+ #: ../admin/views/BWGViewThemes_bwg.php:2385
3048
+ msgid "Close button border color:"
3049
+ msgstr "Cerrar color del botón frontera:"
3050
+
3051
+ #: ../admin/views/BWGViewThemes_bwg.php:2391
3052
+ msgid "Close button box shadow:"
3053
+ msgstr "Cerrar cuadro de botón de la sombra:"
3054
+
3055
+ #: ../admin/views/BWGViewThemes_bwg.php:2398
3056
+ msgid "Close button background color:"
3057
+ msgstr "Cerrar botón color de fondo:"
3058
+
3059
+ #: ../admin/views/BWGViewThemes_bwg.php:2404
3060
+ msgid "Close button transparency:"
3061
+ msgstr "Botón Cerrar la transparencia:"
3062
+
3063
+ #: ../admin/views/BWGViewThemes_bwg.php:2410
3064
+ msgid "Close button width:"
3065
+ msgstr "Cerrar anchura botón:"
3066
+
3067
+ #: ../admin/views/BWGViewThemes_bwg.php:2416
3068
+ msgid "Close button height:"
3069
+ msgstr "Botón Cerrar altura:"
3070
+
3071
+ #: ../admin/views/BWGViewThemes_bwg.php:2422
3072
+ msgid "Close button top:"
3073
+ msgstr "Cerrar botón superior:"
3074
+
3075
+ #: ../admin/views/BWGViewThemes_bwg.php:2428
3076
+ msgid "Close button right:"
3077
+ msgstr "Cerrar botón derecho:"
3078
+
3079
+ #: ../admin/views/BWGViewThemes_bwg.php:2434
3080
+ msgid "Close button size:"
3081
+ msgstr "Cerrar tamaño del botón:"
3082
+
3083
+ #: ../admin/views/BWGViewThemes_bwg.php:2440
3084
+ msgid "Close button color:"
3085
+ msgstr "Cerrar botón de color:"
3086
+
3087
+ #: ../admin/views/BWGViewThemes_bwg.php:2446
3088
+ msgid "Fullscreen close button color:"
3089
+ msgstr "Pantalla Completa botón de cierre de color:"
3090
+
3091
+ #: ../admin/views/BWGViewThemes_bwg.php:2452
3092
+ msgid "Share buttons color:"
3093
+ msgstr "Acciones botones de colores:"
3094
+
3095
+ #: ../admin/views/BWGViewThemes_bwg.php:2484
3096
+ msgid "Right, left buttons transparency: "
3097
+ msgstr "Derecha, izquierda botones de transparencia:"
3098
+
3099
+ #: ../admin/views/BWGViewThemes_bwg.php:2515
3100
+ msgid "Right, left, close buttons hover color:"
3101
+ msgstr "Derecha, izquierda, botones cercanos rondan el color:"
3102
+
3103
+ #: ../admin/views/BWGViewThemes_bwg.php:2521
3104
+ msgid "Right, left buttons color:"
3105
+ msgstr "Derecha, izquierda botones de colores:"
3106
+
3107
+ #: ../admin/views/BWGViewThemes_bwg.php:2534
3108
+ msgid "Right, left buttons border width: "
3109
+ msgstr "Derecha, botones izquierdo ancho del borde:"
3110
+
3111
+ #: ../admin/views/BWGViewThemes_bwg.php:2554
3112
+ msgid "Right, left buttons border color: "
3113
+ msgstr "Derecha, izquierda botones color del borde:"
3114
+
3115
+ #: ../admin/views/BWGViewThemes_bwg.php:2560
3116
+ msgid "Filmstrip position: "
3117
+ msgstr "Posición Tira de imágenes:"
3118
+
3119
+ #: ../admin/views/BWGViewThemes_bwg.php:2571
3120
+ msgid "Filmstrip thumbnail margin:"
3121
+ msgstr "Margen miniatura tira de diapositivas:"
3122
+
3123
+ #: ../admin/views/BWGViewThemes_bwg.php:2578
3124
+ msgid "Filmstrip thumbnail border width: "
3125
+ msgstr "Filmstrip ancho del borde miniatura:"
3126
+
3127
+ #: ../admin/views/BWGViewThemes_bwg.php:2584
3128
+ msgid "Filmstrip thumbnail border style:"
3129
+ msgstr "Tira de imágenes miniatura estilo de borde:"
3130
+
3131
+ #: ../admin/views/BWGViewThemes_bwg.php:2598
3132
+ msgid "Filmstrip thumbnail border color:"
3133
+ msgstr "Tira de diapositivas color del borde miniatura:"
3134
+
3135
+ #: ../admin/views/BWGViewThemes_bwg.php:2604
3136
+ msgid "Filmstrip thumbnail border radius:"
3137
+ msgstr "Filmstrip radio frontera miniatura:"
3138
+
3139
+ #: ../admin/views/BWGViewThemes_bwg.php:2611
3140
+ msgid "Filmstrip thumbnail active border width:"
3141
+ msgstr "Tira de imágenes miniatura ancho del borde activo:"
3142
+
3143
+ #: ../admin/views/BWGViewThemes_bwg.php:2617
3144
+ msgid "Filmstrip thumbnail active border color:"
3145
+ msgstr "Tira de imágenes miniatura color del borde activo:"
3146
+
3147
+ #: ../admin/views/BWGViewThemes_bwg.php:2623
3148
+ msgid "Filmstrip thumbnail deactive transparency: "
3149
+ msgstr "Tira de imágenes miniatura transparencia inactivos:"
3150
+
3151
+ #: ../admin/views/BWGViewThemes_bwg.php:2636
3152
+ msgid "Filmstrip right, left buttons color:"
3153
+ msgstr "Derecha tira de diapositivas, la izquierda botones de color:"
3154
+
3155
+ #: ../admin/views/BWGViewThemes_bwg.php:2642
3156
+ msgid "Filmstrip right, left button background color:"
3157
+ msgstr "Derecha tira de diapositivas, el botón izquierdo del color de fondo:"
3158
+
3159
+ #: ../admin/views/BWGViewThemes_bwg.php:2648
3160
+ msgid "Rating position: "
3161
+ msgstr "Posición Clasificación:"
3162
+
3163
+ #: ../admin/views/BWGViewThemes_bwg.php:2657
3164
+ msgid "Rating alignment: "
3165
+ msgstr "Alineación Clasificación:"
3166
+
3167
+ #: ../admin/views/BWGViewThemes_bwg.php:2671
3168
+ msgid "Rating icon:"
3169
+ msgstr "Clasificación icono:"
3170
+
3171
+ #: ../admin/views/BWGViewThemes_bwg.php:2685
3172
+ msgid "Rating color:"
3173
+ msgstr "De color Clasificación:"
3174
+
3175
+ #: ../admin/views/BWGViewThemes_bwg.php:2691
3176
+ msgid "Rating hover color:"
3177
+ msgstr "Valoración de la libración de color:"
3178
+
3179
+ #: ../admin/views/BWGViewThemes_bwg.php:2697
3180
+ msgid "Rating size:"
3181
+ msgstr "Tamaño Valoración:"
3182
+
3183
+ #: ../admin/views/BWGViewThemes_bwg.php:2703
3184
+ msgid "Rating icon count:"
3185
+ msgstr "Contar icono Clasificación:"
3186
+
3187
+ #: ../admin/views/BWGViewThemes_bwg.php:2709
3188
+ msgid "Rating padding:"
3189
+ msgstr "Clasificación padding:"
3190
+
3191
+ #: ../admin/views/BWGViewThemes_bwg.php:2716
3192
+ msgid "Hit counter position:"
3193
+ msgstr "Hit posición del contador:"
3194
+
3195
+ #: ../admin/views/BWGViewThemes_bwg.php:2725
3196
+ msgid "Hit counter alignment:"
3197
+ msgstr "Hit alineación contador:"
3198
+
3199
+ #: ../admin/views/BWGViewThemes_bwg.php:2739
3200
+ msgid "Hit counter background color:"
3201
+ msgstr "Hit de color contra el fondo:"
3202
+
3203
+ #: ../admin/views/BWGViewThemes_bwg.php:2745
3204
+ msgid "Hit counter background transparency: "
3205
+ msgstr "Hit counter transparencia de fondo:"
3206
+
3207
+ #: ../admin/views/BWGViewThemes_bwg.php:2752
3208
+ msgid "Hit counter border width: "
3209
+ msgstr "Hit counter ancho del borde:"
3210
+
3211
+ #: ../admin/views/BWGViewThemes_bwg.php:2758
3212
+ msgid "Hit counter border style:"
3213
+ msgstr "Hit estilo de borde contador:"
3214
+
3215
+ #: ../admin/views/BWGViewThemes_bwg.php:2772
3216
+ msgid "Hit counter border color:"
3217
+ msgstr "Hit de color contador de frontera:"
3218
+
3219
+ #: ../admin/views/BWGViewThemes_bwg.php:2778
3220
+ msgid "Hit counter border radius:"
3221
+ msgstr "Hit counter radio de frontera:"
3222
+
3223
+ #: ../admin/views/BWGViewThemes_bwg.php:2785
3224
+ msgid "Hit counter padding:"
3225
+ msgstr "Hit counter padding:"
3226
+
3227
+ #: ../admin/views/BWGViewThemes_bwg.php:2792
3228
+ msgid "Hit counter margin:"
3229
+ msgstr "Hit margen de contador:"
3230
+
3231
+ #: ../admin/views/BWGViewThemes_bwg.php:2799
3232
+ msgid "Hit counter font color:"
3233
+ msgstr "Hit de color contra la fuente:"
3234
+
3235
+ #: ../admin/views/BWGViewThemes_bwg.php:2805
3236
+ msgid "Hit counter font family:"
3237
+ msgstr "Hit de la familia contra la fuente:"
3238
+
3239
+ #: ../admin/views/BWGViewThemes_bwg.php:2819
3240
+ msgid "Hit counter font weight:"
3241
+ msgstr "Hit contrapeso de la fuente:"
3242
+
3243
+ #: ../admin/views/BWGViewThemes_bwg.php:2833
3244
+ msgid "Hit counter font size:"
3245
+ msgstr "Hit tamaño de la fuente contador:"
3246
+
3247
+ #: ../admin/views/BWGViewThemes_bwg.php:2846
3248
+ msgid "Info position:"
3249
+ msgstr "Información de posición:"
3250
+
3251
+ #: ../admin/views/BWGViewThemes_bwg.php:2855
3252
+ msgid "Info alignment:"
3253
+ msgstr "Información de la alineación:"
3254
+
3255
+ #: ../admin/views/BWGViewThemes_bwg.php:2869
3256
+ msgid "Info background color:"
3257
+ msgstr "Información de color de fondo:"
3258
+
3259
+ #: ../admin/views/BWGViewThemes_bwg.php:2875
3260
+ msgid "Info background transparency:"
3261
+ msgstr "Información de transparencia de fondo:"
3262
+
3263
+ #: ../admin/views/BWGViewThemes_bwg.php:2882
3264
+ msgid "Info border width:"
3265
+ msgstr "Información del ancho del borde:"
3266
+
3267
+ #: ../admin/views/BWGViewThemes_bwg.php:2888
3268
+ msgid "Info border style:"
3269
+ msgstr "Información de estilo de borde:"
3270
+
3271
+ #: ../admin/views/BWGViewThemes_bwg.php:2902
3272
+ msgid "Info border color:"
3273
+ msgstr "Información del color del borde:"
3274
+
3275
+ #: ../admin/views/BWGViewThemes_bwg.php:2908
3276
+ msgid "Info border radius:"
3277
+ msgstr "Info radio de frontera:"
3278
+
3279
+ #: ../admin/views/BWGViewThemes_bwg.php:2915
3280
+ msgid "Info padding:"
3281
+ msgstr "Información padding:"
3282
+
3283
+ #: ../admin/views/BWGViewThemes_bwg.php:2922
3284
+ msgid "Info margin:"
3285
+ msgstr "Margen de Información:"
3286
+
3287
+ #: ../admin/views/BWGViewThemes_bwg.php:3011
3288
+ msgid "Comments Width:"
3289
+ msgstr "Comentarios Anchura:"
3290
+
3291
+ #: ../admin/views/BWGViewThemes_bwg.php:3017
3292
+ msgid "Comments position:"
3293
+ msgstr "Comentarios del puesto:"
3294
+
3295
+ #: ../admin/views/BWGViewThemes_bwg.php:3026
3296
+ msgid "Comments background color:"
3297
+ msgstr "Comentarios del color de fondo:"
3298
+
3299
+ #: ../admin/views/BWGViewThemes_bwg.php:3032
3300
+ msgid "Comments font size:"
3301
+ msgstr "Comentarios del tamaño de la fuente:"
3302
+
3303
+ #: ../admin/views/BWGViewThemes_bwg.php:3038
3304
+ msgid "Comments font color:"
3305
+ msgstr "Comentarios del color de la fuente:"
3306
+
3307
+ #: ../admin/views/BWGViewThemes_bwg.php:3044
3308
+ msgid "Comments font family:"
3309
+ msgstr "Comentarios de letra:"
3310
+
3311
+ #: ../admin/views/BWGViewThemes_bwg.php:3058
3312
+ msgid "Comments author font size:"
3313
+ msgstr "Tamaño Comentarios Autor de la fuente:"
3314
+
3315
+ #: ../admin/views/BWGViewThemes_bwg.php:3065
3316
+ msgid "Comments date font size:"
3317
+ msgstr "Tamaño Comentarios fecha de la fuente:"
3318
+
3319
+ #: ../admin/views/BWGViewThemes_bwg.php:3071
3320
+ msgid "Comments body font size:"
3321
+ msgstr "Tamaño de letra Comentarios cuerpo:"
3322
+
3323
+ #: ../admin/views/BWGViewThemes_bwg.php:3077
3324
+ msgid "Comment input border width: "
3325
+ msgstr "Comentario ancho del borde de entrada:"
3326
+
3327
+ #: ../admin/views/BWGViewThemes_bwg.php:3083
3328
+ msgid "Comment input border style: "
3329
+ msgstr "Comentario estilo de borde de entrada:"
3330
+
3331
+ #: ../admin/views/BWGViewThemes_bwg.php:3097
3332
+ msgid "Comment input border color:"
3333
+ msgstr "Comentario color del borde de entrada:"
3334
+
3335
+ #: ../admin/views/BWGViewThemes_bwg.php:3103
3336
+ msgid "Comment input border radius:"
3337
+ msgstr "Comentario de entrada radio de frontera:"
3338
+
3339
+ #: ../admin/views/BWGViewThemes_bwg.php:3109
3340
+ msgid "Comment input padding:"
3341
+ msgstr "Comentario acolchado de entrada:"
3342
+
3343
+ #: ../admin/views/BWGViewThemes_bwg.php:3116
3344
+ msgid "Comment input background color:"
3345
+ msgstr "Comentario color de fondo de entrada:"
3346
+
3347
+ #: ../admin/views/BWGViewThemes_bwg.php:3122
3348
+ msgid "Comment button background color:"
3349
+ msgstr "Comentario botón de color de fondo:"
3350
+
3351
+ #: ../admin/views/BWGViewThemes_bwg.php:3128
3352
+ msgid "Comment button padding:"
3353
+ msgstr "Comentario botón padding:"
3354
+
3355
+ #: ../admin/views/BWGViewThemes_bwg.php:3135
3356
+ msgid "Comment button border width:"
3357
+ msgstr "Comentario botón ancho del borde:"
3358
+
3359
+ #: ../admin/views/BWGViewThemes_bwg.php:3141
3360
+ msgid "Comment button border style:"
3361
+ msgstr "Comentario botón de estilo de borde:"
3362
+
3363
+ #: ../admin/views/BWGViewThemes_bwg.php:3155
3364
+ msgid "Comment button border color:"
3365
+ msgstr "Comentario botón de color del borde:"
3366
+
3367
+ #: ../admin/views/BWGViewThemes_bwg.php:3161
3368
+ msgid "Comment button border radius:"
3369
+ msgstr "Comentario botón de radio de la frontera:"
3370
+
3371
+ #: ../admin/views/BWGViewThemes_bwg.php:3168
3372
+ msgid "Comment separator width:"
3373
+ msgstr "Comentario ancho del separador:"
3374
+
3375
+ #: ../admin/views/BWGViewThemes_bwg.php:3174
3376
+ msgid "Comment separator style:"
3377
+ msgstr "Comentario estilo separador:"
3378
+
3379
+ #: ../admin/views/BWGViewThemes_bwg.php:3188
3380
+ msgid "Comment separator color:"
3381
+ msgstr "Comentario de color separador:"
3382
+
3383
+ #: ../admin/views/BWGViewThemes_bwg.php:3296
3384
+ msgid "Button background color:"
3385
+ msgstr "Botón de color de fondo:"
3386
+
3387
+ #: ../admin/views/BWGViewThemes_bwg.php:3302
3388
+ msgid "Button background transparency:"
3389
+ msgstr "Botón de transparencia de fondo:"
3390
+
3391
+ #: ../admin/views/BWGViewThemes_bwg.php:3309
3392
+ msgid "Button transition:"
3393
+ msgstr "Botón de transición:"
3394
+
3395
+ #: ../admin/views/BWGViewThemes_bwg.php:3331
3396
+ msgid "Position:"
3397
+ msgstr "Posición:"
3398
+
3399
+ #: ../admin/views/BWGViewThemes_bwg.php:3354
3400
+ msgid "Numbering:"
3401
+ msgstr "Numeración:"
3402
+
3403
+ #: ../admin/views/BWGViewThemes_bwg.php:3363
3404
+ msgid "Button text:"
3405
+ msgstr "Boton de texto:"
3406
+
3407
+ #: ../admin/views/BWGViewThemes_bwg.php:3368
3408
+ msgid "Arrow"
3409
+ msgstr "Arrow"
3410
+
3411
+ #: ../admin/views/BWGViewThemes_bwg.php:3369
3412
+ msgid "Next, previous buttons values."
3413
+ msgstr "Valores botones siguiente, anterior."
3414
+
3415
+ #: ../admin/views/BWGViewUninstall_bwg.php:33
3416
+ #: ../admin/views/BWGViewUninstall_bwg. php:155
3417
+ msgid "Uninstall Photo Gallery"
3418
+ msgstr "Desinstalar Galería de fotos"
3419
+
3420
+ #: ../admin/views/BWGViewUninstall_bwg.php:35
3421
+ msgid ""
3422
+ "Deactivating Photo Gallery plugin does not remove any data that may have "
3423
+ "been created. To completely remove this plugin, you can uninstall it here."
3424
+ msgstr ""
3425
+ "Desactivación Galería de fotos plugin no eliminar cualquier dato que pueda "
3426
+ "haber sido creado. Para eliminar completamente este plugin, puede "
3427
+ "desinstalar desde aquí."
3428
+
3429
+ #: ../admin/views/BWGViewUninstall_bwg.php:38
3430
+ msgid "WARNING:"
3431
+ msgstr "ADVERTENCIA:"
3432
+
3433
+ #: ../admin/views/BWGViewUninstall_bwg.php:39
3434
+ msgid ""
3435
+ "Once uninstalled, this can't be undone. You should use a Database Backup "
3436
+ "plugin of WordPress to back up all the data first."
3437
+ msgstr ""
3438
+ "Una vez desinstalado, esto no se puede deshacer. Usted debe usar un plugin "
3439
+ "de WordPress Database Backup para copias de seguridad de todos los datos "
3440
+ "primero."
3441
+
3442
+ #: ../admin/views/BWGViewUninstall_bwg.php:42
3443
+ msgid "The following Database Tables will be deleted:"
3444
+ msgstr "Se eliminarán las siguientes tablas de bases de datos:"
3445
+
3446
+ #: ../admin/views/BWGViewUninstall_bwg.php:47
3447
+ msgid "Database Tables"
3448
+ msgstr "Tablas de base de datos"
3449
+
3450
+ #: ../admin/views/BWGViewUninstall_bwg.php:70
3451
+ msgid "Delete the folder containing uploaded images."
3452
+ msgstr "Elimine la carpeta que contiene las imágenes cargadas."
3453
+
3454
+ #: ../admin/views/BWGViewUninstall_bwg.php:76
3455
+ msgid "Do you really want to uninstall Photo Gallery?"
3456
+ msgstr "¿De verdad quieres desinstalar Galería de fotos?"
3457
+
3458
+ #: ../admin/views/BWGViewUninstall_bwg.php:83
3459
+ msgid ""
3460
+ "You are About to Uninstall Photo Gallery from WordPress.\n"
3461
+ "This Action Is Not Reversible."
3462
+ msgstr ""
3463
+ "Vas a Desinstalar Galería de fotos de WordPress.\n"
3464
+ " Esta acción no es reversible."
3465
+
3466
+ #: ../admin/views/BWGViewUninstall_bwg.php:133
3467
+ msgid "The following Database Tables successfully deleted:"
3468
+ msgstr "Las siguientes tablas de la base eliminan con éxito:"
3469
+
3470
+ #: ../admin/views/BWGViewUninstall_bwg.php:149
3471
+ msgid "The folder was successfully deleted."
3472
+ msgstr "La carpeta se ha eliminado correctamente."
3473
+
3474
+ #: ../admin/views/BWGViewUninstall_bwg.php:149
3475
+ msgid "An error occurred when deleting the folder."
3476
+ msgstr "Se produjo un error al borrar la carpeta."
3477
+
3478
+ #: ../admin/views/BWGViewUninstall_bwg.php:156
3479
+ msgid "Click Here"
3480
+ msgstr "Clickea aquí"
3481
+
3482
+ #: ../admin/views/BWGViewUninstall_bwg.php:156
3483
+ msgid ""
3484
+ "To Finish the Uninstallation and Photo Gallery will be Deactivated "
3485
+ "Automatically."
3486
+ msgstr ""
3487
+ "Para finalizar la desinstalación y Galería de fotos se desactivará "
3488
+ "automáticamente."
3489
+
3490
+ #: ../admin/views/BWGViewWidget.php:106
3491
+ #: ../admin/views/BWGViewWidgetSlideshow.php:101
3492
+ #: ../admin/views/BWGViewWidgetTags.php:114
3493
+ msgid "Title:"
3494
+ msgstr "Título:"
3495
+
3496
+ #: ../admin/views/BWGViewWidget.php:140 ../framework/WDWLibrary.php:521
3497
+ msgid "First"
3498
+ msgstr "primero"
3499
+
3500
+ #: ../admin/views/BWGViewWidget.php:141 ../framework/WDWLibrary.php:524
3501
+ msgid "Last"
3502
+ msgstr "Último"
3503
+
3504
+ #: ../admin/views/BWGViewWidget.php:145
3505
+ msgid "Count:"
3506
+ msgstr "Incluido:"
3507
+
3508
+ #: ../admin/views/BWGViewWidget.php:149
3509
+ #: ../admin/views/BWGViewWidgetSlideshow.php:117
3510
+ #: ../admin/views/BWGViewWidgetTags.php:139
3511
+ msgid "Dimensions:"
3512
+ msgstr "Dimensiones:"
3513
+
3514
+ #: ../admin/views/BWGViewWidgetSlideshow.php:122
3515
+ msgid "Filmstrip height:"
3516
+ msgstr "Altura Tira de imágenes:"
3517
+
3518
+ #: ../admin/views/BWGViewWidgetTags.php:123
3519
+ msgid "Show Tag Names:"
3520
+ msgstr "Mostrar nombres de las etiquetas:"
3521
+
3522
+ #: ../admin/views/BWGViewWidgetTags.php:129
3523
+ msgid "Open in:"
3524
+ msgstr "Ábrelo:"
3525
+
3526
+ #: ../admin/views/BWGViewWidgetTags.php:130
3527
+ msgid "page"
3528
+ msgstr "página"
3529
+
3530
+ #: ../admin/views/BWGViewWidgetTags.php:131
3531
+ msgid "lightbox"
3532
+ msgstr "caja ligera"
3533
+
3534
+ #: ../admin/views/BWGViewWidgetTags.php:135
3535
+ msgid "Number (0 for all):"
3536
+ msgstr "Número (0 para todos):"
3537
+
3538
+ #: ../admin/views/BWGViewWidgetTags.php:144
3539
+ msgid "Transparent Background:"
3540
+ msgstr "Fondo transparente:"
3541
+
3542
+ #: ../admin/views/BWGViewWidgetTags.php:150
3543
+ msgid "Background Color:"
3544
+ msgstr "Color de fondo:"
3545
+
3546
+ #: ../admin/views/BWGViewWidgetTags.php:154
3547
+ msgid "Text Color:"
3548
+ msgstr "Color de texto:"
3549
+
3550
+ #. Author of the plugin
3551
+ msgid "Rob"
3552
+ msgstr "Robar"
3553
+
3554
+ #: ../filemanager/view.php:63
3555
+ msgid "File loading failed"
3556
+ msgstr "Carga de archivos no"
3557
+
3558
+ #: ../filemanager/view.php:65
3559
+ msgid "Are you sure you want to permanently remove selected items?"
3560
+ msgstr ""
3561
+ "¿Seguro que quieres eliminar permanentemente los elementos seleccionados?"
3562
+
3563
+ #: ../filemanager/view.php:66
3564
+ msgid "This will cancel uploads. Continue?"
3565
+ msgstr "Esto cancelará los archivos subidos. Continuar?"
3566
+
3567
+ #: ../filemanager/view.php:68
3568
+ msgid "Enter directory name"
3569
+ msgstr "Introduzca el nombre del directorio"
3570
+
3571
+ #: ../filemanager/view.php:69
3572
+ msgid "Enter new name"
3573
+ msgstr "Introduzca el nuevo nombre"
3574
+
3575
+ #: ../filemanager/view.php:70
3576
+ msgid "Processing uploaded files..."
3577
+ msgstr "Procesamiento subido archivos ..."
3578
+
3579
+ #: ../filemanager/view.php:118
3580
+ msgid "Up"
3581
+ msgstr "Arriba"
3582
+
3583
+ #: ../filemanager/view.php:119
3584
+ msgid "Make a directory"
3585
+ msgstr "Cree un directorio"
3586
+
3587
+ #: ../filemanager/view.php:120
3588
+ msgid "Rename item"
3589
+ msgstr "Cambiar el nombre de elemento"
3590
+
3591
+ #: ../filemanager/view.php:122
3592
+ msgid "Copy"
3593
+ msgstr "Copia"
3594
+
3595
+ #: ../filemanager/view.php:123
3596
+ msgid "Cut"
3597
+ msgstr "Cortar"
3598
+
3599
+ #: ../filemanager/view.php:124
3600
+ msgid "Paste"
3601
+ msgstr "Pegar"
3602
+
3603
+ #: ../filemanager/view.php:125
3604
+ msgid "Remove items"
3605
+ msgstr "Quitar elementos"
3606
+
3607
+ #: ../filemanager/view.php:128
3608
+ msgid "Upload files"
3609
+ msgstr "Subir archivos"
3610
+
3611
+ #: ../filemanager/view.php:133
3612
+ msgid "Media library"
3613
+ msgstr "Mediateca"
3614
+
3615
+ #: ../filemanager/view.php:142
3616
+ msgid "View thumbs"
3617
+ msgstr "Ver los pulgares"
3618
+
3619
+ #: ../filemanager/view.php:143
3620
+ msgid "View list"
3621
+ msgstr "Ver lista"
3622
+
3623
+ #: ../filemanager/view.php:150
3624
+ msgid "To change upload directory go to Options page."
3625
+ msgstr "Para cambiar directorio de carga ir a la página Opciones."
3626
+
3627
+ #: ../filemanager/view.php:275
3628
+ msgid "Add selected images to gallery"
3629
+ msgstr "Añadir imágenes seleccionadas a la galería"
3630
+
3631
+ #: ../filemanager/view.php:285 ../filemanager/view.php:368
3632
+ msgid "Thumbnail Maximum Dimensions:"
3633
+ msgstr "Miniatura Dimensiones máximas:"
3634
+
3635
+ #: ../filemanager/view.php:290 ../filemanager/view.php:373 ..
3636
+ #: /frontend/views/BWGViewAlbum_compact_preview.php:603
3637
+ #: /frontend/views/BWGViewAlbum_extended_preview.php:584
3638
+ msgid "Back"
3639
+ msgstr "atrás"
3640
+
3641
+ #: ../filemanager/view.php:293 ../filemanager/view.php:376
3642
+ msgid "Image Maximum Dimensions:"
3643
+ msgstr "Dimensiones de la imagen Máximo:"
3644
+
3645
+ #: ../filemanager/view.php:360
3646
+ msgid "Import selected images"
3647
+ msgstr "Importar imágenes seleccionadas"
3648
+
3649
+ #: ../filemanager/view.php:384
3650
+ msgid "Drag files here or click the button below"
3651
+ msgstr "Arrastre archivos aquí o haga clic en el botón de abajo"
3652
+
3653
+ #: ../filemanager/view.php:384
3654
+ msgid "to upload files"
3655
+ msgstr "para subir archivos"
3656
+
3657
+ #: ../filemanager/view.php:456
3658
+ msgid "No files to upload"
3659
+ msgstr "No hay archivos para subir"
3660
+
3661
+ #: ../framework/WDWLibrary.php:64
3662
+ msgid "You can't delete default theme"
3663
+ msgstr "No se puede eliminar el tema por defecto"
3664
+
3665
+ #: ../framework/WDWLibrary.php:82
3666
+ msgid "The item is successfully set as default."
3667
+ msgstr "El elemento se establece con éxito como predeterminado."
3668
+
3669
+ #: ../framework/WDWLibrary.php:88
3670
+ msgid "Options Succesfully Saved."
3671
+ msgstr "Opciones guardadas satisfactoriamente."
3672
+
3673
+ #: ../framework/WDWLibrary.php:124
3674
+ msgid "A term with the name provided already exists."
3675
+ msgstr "Existe un plazo con el nombre proporcionado ya."
3676
+
3677
+ #: ../framework/WDWLibrary.php:130
3678
+ msgid "Name field is required."
3679
+ msgstr "Se requiere campo Nombre."
3680
+
3681
+ #: ../framework/WDWLibrary.php:136
3682
+ msgid "The slug must be unique."
3683
+ msgstr "La bala debe ser único."
3684
+
3685
+ #: ../framework/WDWLibrary.php:142
3686
+ msgid "Changes must be saved."
3687
+ msgstr "Los cambios deben ser guardados."
3688
+
3689
+ #: ../framework/WDWLibrary.php:188 ../framework/WDWLibrary.php:362 ..
3690
+ #: /framework/WDWLibrary.php:725 ../framework/WDWLibrary.php:781
3691
+ msgid "Search"
3692
+ msgstr "Buscar"
3693
+
3694
+ #: ../framework/WDWLibrary.php:315 ../framework/WDWLibrary.php:465 ..
3695
+ #: /framework/WDWLibrary.php:545
3696
+ msgid "of"
3697
+ msgstr "de"
3698
+
3699
+ #: ../framework/WDWLibrary.php:516
3700
+ msgid " item(s)"
3701
+ msgstr "artículos)"
3702
+
3703
+ #: ../framework/WDWLibrary.php:522
3704
+ msgid "Previous"
3705
+ msgstr "Previo"
3706
+
3707
+ #: ../framework/WDWLibrary.php:523
3708
+ msgid "Next"
3709
+ msgstr "Siguiente"
3710
+
3711
+ #: ../framework/WDWLibrary.php:542
3712
+ msgid "Go to the first page"
3713
+ msgstr "Ir a la primera página"
3714
+
3715
+ #: ../framework/WDWLibrary.php:543
3716
+ msgid "Go to the previous page"
3717
+ msgstr "Ir a la página anterior"
3718
+
3719
+ #: ../framework/WDWLibrary.php:549
3720
+ msgid "Go to the next page"
3721
+ msgstr "Ir a la página siguiente"
3722
+
3723
+ #: ../framework/WDWLibrary.php:550
3724
+ msgid "Go to the last page"
3725
+ msgstr "Ir a la última página"
3726
+
3727
+ #: ../framework/WDWLibrary.php:562
3728
+ msgid "Load More..."
3729
+ msgstr "Carga más..."
3730
+
3731
+ #: ../framework/WDWLibrary.php:846
3732
+ msgid "Order by: "
3733
+ msgstr "Ordenar por:"
3734
+
3735
+ #: ../frontend/views/BWGViewAlbum_compact_preview.php:151 ..
3736
+ #: /frontend/views/BWGViewAlbum_extended_preview.php:96
3737
+ #: /frontend/views/BWGViewImage_browser.php:72
3738
+ #: ../frontend/views/BWGViewSlideshow. php:46
3739
+ #: ../frontend/views/BWGViewSlideshow.php:86
3740
+ #: /frontend/views/BWGViewThumbnails.php:153
3741
+ msgid "There is no theme selected or the theme was deleted."
3742
+ msgstr "No hay tema seleccionado o se ha eliminado el tema."
3743
+
3744
+ #: ../frontend/views/BWGViewAlbum_compact_preview.php:158 ..
3745
+ #: /frontend/views/BWGViewAlbum_compact_preview.php:192
3746
+ #: /frontend/views/BWGViewAlbum_extended_preview.php:103
3747
+ #: /frontend/views/BWGViewAlbum_extended_preview.php:137
3748
+ msgid "There is no album selected or the album was deleted."
3749
+ msgstr "No hay ningún álbum seleccionado o se eliminó el álbum."
3750
+
3751
+ #: ../frontend/views/BWGViewAlbum_compact_preview.php:180 ..
3752
+ #: /frontend/views/BWGViewAlbum_extended_preview.php:125
3753
+ #: /frontend/views/BWGViewImage_browser.php:83
3754
+ #: ../frontend/views/BWGViewSlideshow. php:129
3755
+ #: ../frontend/views/BWGViewThumbnails.php:172
3756
+ msgid "There are no images in this gallery."
3757
+ msgstr "No hay imágenes en esta galería."
3758
+
3759
+ #: ../frontend/views/BWGViewAlbum_compact_preview.php:626 ..
3760
+ #: /frontend/views/BWGViewAlbum_extended_preview.php:595
3761
+ msgid "Album is empty."
3762
+ msgstr "Álbum está vacío."
3763
+
3764
+ #: ../frontend/views/BWGViewAlbum_compact_preview.php:749 ..
3765
+ #: /frontend/views/BWGViewAlbum_extended_preview.php:731
3766
+ msgid "Gallery is empty."
3767
+ msgstr "Galería está vacía."
3768
+
3769
+ #: ../frontend/views/BWGViewAlbum_compact_preview.php:805 ..
3770
+ #: /frontend/views/BWGViewAlbum_extended_preview.php:775
3771
+ #: /frontend/views/BWGViewGalleryBox.php:835
3772
+ #: ../frontend/views/BWGViewGalleryBox. php:2197
3773
+ #: ../frontend/views/BWGViewSlideshow.php:1443
3774
+ #: /frontend/views/BWGViewThumbnails.php:457
3775
+ msgid "Play"
3776
+ msgstr "Jugar"
3777
+
3778
+ #: ../frontend/views/BWGViewAlbum_extended_preview.php:696 ..
3779
+ #: /frontend/views/BWGViewAlbum_extended_preview.php:819
3780
+ msgid "More"
3781
+ msgstr "Más"
3782
+
3783
+ #: ../frontend/views/BWGViewAlbum_extended_preview.php:814
3784
+ msgid "Hide"
3785
+ msgstr "Esconder"
3786
+
3787
+ #: ../frontend/views/BWGViewGalleryBox.php:815
3788
+ msgid "The image has been deleted."
3789
+ msgstr "La imagen ha sido eliminado."
3790
+
3791
+ #: ../frontend/views/BWGViewGalleryBox.php:839 ..
3792
+ #: /frontend/views/BWGViewGalleryBox.php:1575
3793
+ #: ../frontend/views/BWGViewGalleryBox. php:2029
3794
+ #: ../frontend/views/BWGViewGalleryBox.php:2125
3795
+ msgid "Maximize"
3796
+ msgstr "Maximizar"
3797
+
3798
+ #: ../frontend/views/BWGViewGalleryBox.php:843 ..
3799
+ #: /frontend/views/BWGViewGalleryBox.php:1577
3800
+ #: ../frontend/views/BWGViewGalleryBox. php:2127
3801
+ msgid "Fullscreen"
3802
+ msgstr "Pantalla completa"
3803
+
3804
+ #: ../frontend/views/BWGViewGalleryBox.php:845 ..
3805
+ #: /frontend/views/BWGViewGalleryBox.php:1915
3806
+ msgid "Show info"
3807
+ msgstr "Mostrar información"
3808
+
3809
+ #: ../frontend/views/BWGViewGalleryBox.php:851
3810
+ msgid "Open image in original size."
3811
+ msgstr "Abre la imagen en tamaño original."
3812
+
3813
+ #: ../frontend/views/BWGViewGalleryBox.php:872
3814
+ msgid "Download original image"
3815
+ msgstr "Descargar la imagen original"
3816
+
3817
+ #: ../frontend/views/BWGViewGalleryBox.php:1723
3818
+ msgid "Show Comments"
3819
+ msgstr "Mostrar comentarios"
3820
+
3821
+ #: ../frontend/views/BWGViewGalleryBox.php:1766
3822
+ msgid "Hide Comments"
3823
+ msgstr "Ocultar Comentarios"
3824
+
3825
+ #: ../frontend/views/BWGViewGalleryBox.php:1911
3826
+ msgid "Hide info"
3827
+ msgstr "Ocultar información"
3828
+
3829
+ #: ../frontend/views/BWGViewGalleryBox.php:2066 ..
3830
+ #: /frontend/views/BWGViewGalleryBox.php:2266
3831
+ msgid "Restore"
3832
+ msgstr "Restaurar"
3833
+
3834
+ #: ../frontend/views/BWGViewGalleryBox.php:2177
3835
+ msgid "Exit Fullscreen"
3836
+ msgstr "Salir de pantalla completa"
3837
+
3838
+ #: ../frontend/views/BWGViewGalleryBox.php:2191 ..
3839
+ #: /frontend/views/BWGViewGalleryBox.php:2206
3840
+ #: ../frontend/views/BWGViewSlideshow. php:1434
3841
+ #: ../frontend/views/BWGViewSlideshow.php:1452
3842
+ msgid "Pause"
3843
+ msgstr "Pausa"
3844
+
3845
+ #: ../frontend/views/BWGViewImage_browser.php:77 ..
3846
+ #: /frontend/views/BWGViewSlideshow.php:124
3847
+ #: ../frontend/views/BWGViewThumbnails. php:164
3848
+ msgid "There is no gallery selected or the gallery was deleted."
3849
+ msgstr "No hay galería seleccionada o la galería se ha eliminado."
languages/backend/bwg_back-fr_FR.mo ADDED
Binary file
languages/backend/bwg_back-fr_FR.po ADDED
@@ -0,0 +1,3254 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: photo-gallery\n"
4
+ "POT-Creation-Date: 15-10-28 03:02+000\n"
5
+ "PO-Revision-Date: 2015-10-30 11:55+0400\n"
6
+ "Last-Translator: admin < a@mail.ru >\n"
7
+ "Language-Team: \n"
8
+ "Language: fr_FR\n"
9
+ "Plural-Forms: nplurals=2; plural=n > 1;\n"
10
+ "MIME-Version: 1.0\n"
11
+ "Content-Type: text/plain; charset=UTF-8\n"
12
+ "Content-Transfer-Encoding: 8bit\n"
13
+ "X-Generator: Poedit 1.7.5\n"
14
+
15
+ #: ../photo-gallery-notices.php:188
16
+ msgid "Leave A Review?"
17
+ msgstr "Laisser un commentaire?"
18
+
19
+ #: ../photo-gallery-notices.php:189
20
+ #, php-format
21
+ msgid "We hope you've enjoyed using WordPress %s! Would you consider leaving us a review on WordPress.org?"
22
+ msgstr "Nous espérons que vous avez apprécié utilisant WordPress %s! Envisageriez-vous en nous laissant un commentaire sur WordPress.org?"
23
+
24
+ #: ../photo-gallery-notices.php:190
25
+ msgid "Sure! I'd love to!"
26
+ msgstr "Bien sûr! Jadorerais!"
27
+
28
+ #: ../photo-gallery-notices.php:191
29
+ msgid "I've already left a review"
30
+ msgstr "Je ai déjà laissé un avis"
31
+
32
+ #: ../photo-gallery-notices.php:192
33
+ msgid "Maybe Later"
34
+ msgstr "Peut-être plus tard"
35
+
36
+ #: ../photo-gallery-notices.php:193 ../photo-gallery-notices.php:203
37
+ msgid "Never show again"
38
+ msgstr "Ne jamais montrer à nouveau"
39
+
40
+ #: ../photo-gallery-notices.php:199
41
+ msgid "Hey! How's It Going?"
42
+ msgstr "Hey! Comment ça va?"
43
+
44
+ #: ../photo-gallery-notices.php:200
45
+ #, php-format
46
+ msgid "Thank you for using WordPress %s! We hope that you've found everything you need, but if you have any questions:"
47
+ msgstr "Merci dutiliser WordPress %s! Nous espérons que vous avez trouvé tout ce dont vous avez besoin, mais si vous avez des questions:"
48
+
49
+ #: ../photo-gallery-notices.php:201
50
+ msgid "Check out User Guide"
51
+ msgstr "Consultez le Guide de lutilisateur"
52
+
53
+ #: ../photo-gallery-notices.php:202
54
+ msgid "Get Some Help"
55
+ msgstr "Obtenez de laide"
56
+
57
+ #. Name of the plugin
58
+ msgid "Photo Gallery"
59
+ msgstr "Galerie de photos"
60
+
61
+ #. URI of the plugin
62
+ msgid "https://web-dorado.com/products/wordpress-photo-gallery-plugin.html"
63
+ msgstr "https://web-dorado.com/products/wordpress-photo-gallery-plugin.html"
64
+
65
+ #. Description of the plugin
66
+ msgid "This plugin is a fully responsive gallery plugin with advanced functionality. It allows having different image galleries for your posts and pages. You can create unlimited number of galleries, combine them into albums, and provide descriptions and tags."
67
+ msgstr "Ce plugin est une galerie plug-in de répondre pleinement aux fonctionnalités avancées. Il permet davoir différentes galeries dimages pour vos messages et les pages. Vous pouvez créer un nombre illimité de galeries, de les combiner dans des albums, et fournir des descriptions et les tags."
68
+
69
+ #. Author of the plugin
70
+ msgid "WebDorado"
71
+ msgstr "WebDorado"
72
+
73
+ #. Author URI of the plugin
74
+ msgid "https://web-dorado.com"
75
+ msgstr "https://web-dorado.com"
76
+
77
+ #: ../photo-gallery.php:71
78
+ msgid "Add Galleries/Images"
79
+ msgstr "Ajouter Galeries / Images"
80
+
81
+ #: ../photo-gallery.php:76 .. /admin/views/BWGViewAlbums_bwg.php:53
82
+ msgid "Albums"
83
+ msgstr "Albums"
84
+
85
+ #: ../photo-gallery.php:81 ../admin/views/BWGViewAddTags. php:45 ../admin/views/BWGViewGalleries_bwg.php:857 .. /admin/views/BWGViewTags_bwg.php:56
86
+ msgid "Tags"
87
+ msgstr "Mots clés"
88
+
89
+ #: ../photo-gallery.php:86
90
+ msgid "Options"
91
+ msgstr "Options"
92
+
93
+ #: ../photo-gallery.php:90 .. /admin/views/BWGViewThemes_bwg.php:78
94
+ msgid "Themes"
95
+ msgstr "Thèmes"
96
+
97
+ #: ../photo-gallery.php:95
98
+ msgid "Generate Shortcode"
99
+ msgstr "Générer Shortcode"
100
+
101
+ #: ../photo-gallery.php:97
102
+ msgid "Licensing"
103
+ msgstr "Licences"
104
+
105
+ #: ../photo-gallery.php:100
106
+ msgid "Featured Plugins"
107
+ msgstr "Plugins en vedette"
108
+
109
+ #: ../photo-gallery.php:101
110
+ msgid "Featured Themes"
111
+ msgstr "Thèmes phares"
112
+
113
+ #: ../photo-gallery.php:103
114
+ msgid "Uninstall"
115
+ msgstr "Désinstaller"
116
+
117
+ #: ../photo-gallery.php:2446 ../photo-gallery.php:2615
118
+ msgid "field is required."
119
+ msgstr "Champ requis."
120
+
121
+ #: ../photo-gallery.php:2447
122
+ msgid "You must select an image file."
123
+ msgstr "Vous devez sélectionner un fichier image."
124
+
125
+ #: ../photo-gallery.php:2448
126
+ msgid "You must select an audio file."
127
+ msgstr "Vous devez sélectionner un fichier audio."
128
+
129
+ #: ../photo-gallery.php:2449
130
+ msgid "You do not have Instagram CLIENT_ID. Input its value in Options->Embed options. "
131
+ msgstr "Vous ne devez pas Instagram CLIENT_ID. Entrée sa valeur dans les options Options-> Intégrer."
132
+
133
+ #: ../photo-gallery.php:2450
134
+ msgid "Instagram recent post number must be between 1 and 33."
135
+ msgstr "Instagram numéro de post récent doit être comprise entre 1 et 33."
136
+
137
+ #: ../photo-gallery.php:2451
138
+ msgid "The gallery is not empty. Please delete all the images first."
139
+ msgstr "La galerie est pas vide. Sil vous plaît supprimer toutes les images."
140
+
141
+ #: ../photo-gallery.php:2452
142
+ msgid "Please enter url to embed."
143
+ msgstr "Sil vous plaît entrer URL pour incorporer."
144
+
145
+ #: ../photo-gallery.php:2453
146
+ msgid "Error: cannot get response from the server."
147
+ msgstr "Erreur: ne peut pas obtenir de réponse du serveur."
148
+
149
+ #: ../photo-gallery.php:2454
150
+ msgid "Error: something wrong happened at the server."
151
+ msgstr "Erreur: quelque chose de mal est arrivé au niveau du serveur."
152
+
153
+ #: ../photo-gallery.php:2455
154
+ msgid "Error"
155
+ msgstr "Erreur"
156
+
157
+ #: ../photo-gallery.php:2456
158
+ msgid "Show order column"
159
+ msgstr "Afficher la colonne de commande"
160
+
161
+ #: ../photo-gallery.php:2457 ../admin/views/BWGViewAlbums_bwg.php:63 .. /admin/views/BWGViewGalleries_bwg.php:63 ../admin/views/BWGViewGalleries_bwg. php:521 ../admin/views/BWGViewGalleries_bwg.php:725
162
+ msgid "Hide order column"
163
+ msgstr "Masquer la colonne de commande"
164
+
165
+ #: ../photo-gallery.php:2458
166
+ msgid "Selected"
167
+ msgstr "Sélectionné"
168
+
169
+ #: ../photo-gallery.php:2459 ../framework/WDWLibrary.php:436
170
+ msgid "item"
171
+ msgstr "article"
172
+
173
+ #: ../photo-gallery.php:2460
174
+ msgid "Items Succesfully Saved."
175
+ msgstr "Articles correctement enregistré."
176
+
177
+ #: ../photo-gallery.php:2461
178
+ msgid "Item Succesfully Recovered."
179
+ msgstr "Point Avec succès récupéré."
180
+
181
+ #: ../photo-gallery.php:2462 ../admin/controllers/BWGControllerGalleries_bwg.php: 953 ../framework/WDWLibrary.php:94
182
+ msgid "Item Succesfully Published."
183
+ msgstr "Avec succès Publié Point."
184
+
185
+ #: ../photo-gallery.php:2463 ../admin/controllers/BWGControllerGalleries_bwg.php: 990 ../framework/WDWLibrary.php:106
186
+ msgid "Item Succesfully Unpublished."
187
+ msgstr "Point Avec succès inédit."
188
+
189
+ #: ../photo-gallery.php:2464 ../admin/controllers/BWGControllerGalleries_bwg.php: 908 ../framework/WDWLibrary.php:58
190
+ msgid "Item Succesfully Deleted."
191
+ msgstr "Point Avec succès supprimés."
192
+
193
+ #: ../photo-gallery.php:2465 ../admin/controllers/BWGControllerGalleries_bwg.php: 944 ../admin/controllers/BWGControllerGalleries_bwg.php:981 .. /admin/controllers/BWGControllerGalleries_bwg.php:1018 /admin/controllers/BWGControllerGalleries_bwg.php:1097 ../framework/WDWLibrary. php:76
194
+ msgid "You must select at least one item."
195
+ msgstr "Vous devez sélectionner au moins un article."
196
+
197
+ #: ../photo-gallery.php:2466
198
+ msgid "Items Succesfully resized."
199
+ msgstr "Articles Avec succès redimensionnées."
200
+
201
+ #: ../photo-gallery.php:2467
202
+ msgid "Watermarks Succesfully Set."
203
+ msgstr "Filigranes Avec succès Set."
204
+
205
+ #: ../photo-gallery.php:2468
206
+ msgid "Items Succesfully Reset."
207
+ msgstr "Articles Rafraîchir Avec succès."
208
+
209
+ #: ../photo-gallery.php:2616
210
+ msgid "This is not a valid email address."
211
+ msgstr "Cette adresse email nest pas valide."
212
+
213
+ #: ../photo-gallery.php:2617 ../frontend/views/BWGViewAlbum_compact_preview.php: 744 ../frontend/views/BWGViewAlbum_extended_preview.php:726
214
+ msgid "There are no images matching your search."
215
+ msgstr "Il ny a pas dimages correspondant à votre recherche."
216
+
217
+ #: ../photo-gallery.php:2620
218
+ msgid "Select Tag."
219
+ msgstr "Sélectionnez Tag."
220
+
221
+ #: ../addons/addons.php:5
222
+ msgid "Photo Gallery Facebook"
223
+ msgstr "Galerie de photos Facebook"
224
+
225
+ #: ../addons/addons.php:7
226
+ msgid "Photo Gallery Facebook is an add-on, which helps to display Facebook photos and videos within Photo Gallery plugin. You can create Facebook-only galleries, embed individual images and videos or include Facebook albums within mixed type albums."
227
+ msgstr "Galerie de photos Facebook est un add-on, qui permet dafficher les photos et vidéos au sein de Facebook Galerie de photos plugin. Vous pouvez créer Facebook uniquement des galeries, des images et des vidéos individuelles incorporer ou inclure albums Facebook dans les albums de type mixte."
228
+
229
+ #: ../addons/addons.php:12
230
+ msgid "NextGen Gallery Import to Photo Gallery"
231
+ msgstr "NextGen Gallery Importer Galerie de photos"
232
+
233
+ #: ../addons/addons.php:14
234
+ msgid "This addon integrates NextGen with Photo Gallery allowing to import images and related data from NextGen to use with Photo Gallery"
235
+ msgstr "Cet addon intègre NextGen avec Photo Gallery permet dimporter des images et des données connexes de NextGen à utiliser avec Photo Gallery"
236
+
237
+ #: ../addons/addons.php:19
238
+ msgid "Photo Gallery Export / Import"
239
+ msgstr "Galerie de photos Export / Import"
240
+
241
+ #: ../addons/addons.php:21
242
+ msgid "Photo Gallery Export/Import helps to move created galleries and albums from one site to another. This way you can save the gallery/album options and manual modifications."
243
+ msgstr "Galerie de photos Export / Import permet de déplacer des galeries et albums créés à partir dun site à lautre. De cette façon, vous pouvez enregistrer les options dalbum / la galerie et les modifications manuelles."
244
+
245
+ #: ../addons/addons.php:30
246
+ msgid "Photo Gallery Add-ons"
247
+ msgstr "Galerie de photos modules complémentaires"
248
+
249
+ #: ../addons/addons.php:33
250
+ msgid "Attention"
251
+ msgstr "Attention"
252
+
253
+ #: ../addons/addons.php:34
254
+ msgid "Add-ons are supported by premium version of Photo Gallery"
255
+ msgstr "Add-ons sont supportés par la version premium de Galerie de photos"
256
+
257
+ #: ../addons/addons.php:69
258
+ msgid "GET THIS ADD ON"
259
+ msgstr "Obtenir cette ADD ON"
260
+
261
+ #: ../admin/controllers/BWGControllerGalleries_bwg.php:727 .. /admin/controllers/BWGControllerGalleries_bwg.php:868 /admin/controllers/BWGControllerOptions_bwg.php:384 /admin/views/BWGViewTags_bwg.php:52 ../framework/WDWLibrary.php:46
262
+ msgid "Item Succesfully Saved."
263
+ msgstr "Point correctement enregistré."
264
+
265
+ #: ../admin/controllers/BWGControllerGalleries_bwg.php:871 .. /admin/controllers/BWGControllerGalleries_bwg.php:911 /admin/controllers/BWGControllerGalleries_bwg.php:956 /admin/controllers/BWGControllerGalleries_bwg.php:993 ../framework/WDWLibrary. php:52
266
+ msgid "Error. Please install plugin again."
267
+ msgstr "Erreur. Sil vous plaît installer le plugin nouveau."
268
+
269
+ #: ../admin/controllers/BWGControllerGalleries_bwg.php:894 .. /framework/WDWLibrary.php:118
270
+ msgid "Ordering Succesfully Saved."
271
+ msgstr "Commande correctement enregistré."
272
+
273
+ #: ../admin/controllers/BWGControllerGalleries_bwg.php:941 .. /framework/WDWLibrary.php:70
274
+ msgid "Items Succesfully Deleted."
275
+ msgstr "Articles Avec succès supprimé."
276
+
277
+ #: ../admin/controllers/BWGControllerGalleries_bwg.php:978 .. /framework/WDWLibrary.php:100
278
+ msgid "Items Succesfully Published."
279
+ msgstr "Avec succès Articles publiés."
280
+
281
+ #: ../admin/controllers/BWGControllerGalleries_bwg.php:1015 .. /framework/WDWLibrary.php:112
282
+ msgid "Items Succesfully Unpublished."
283
+ msgstr "Articles Avec succès inédit."
284
+
285
+ #: ../admin/controllers/BWGControllerGalleries_bwg.php:1100
286
+ msgid "Thumb Succesfully Resized"
287
+ msgstr "Thumb Avec succès redimensionnée"
288
+
289
+ #: ../admin/views/BWGViewAddAlbumsGalleries.php:45
290
+ msgid "Albums/Galleries"
291
+ msgstr "Albums / Galeries"
292
+
293
+ #: ../admin/views/BWGViewAddAlbumsGalleries.php:51 .. /admin/views/BWGViewAddAlbumsGalleries.php:77 ../admin/views/BWGViewAddTags. php:51 ../admin/views/BWGViewAddTags.php:68 ../admin/views/BWGViewAlbums_bwg. php:75 ../admin/views/BWGViewAlbums_bwg.php:96 /admin/views/BWGViewGalleries_bwg.php:75
294
+ #: ../admin/views/BWGViewGalleries_bwg. php:97 ../admin/views/BWGViewTags_bwg.php:71 ../admin/views/BWGViewTags_bwg. php:91 ../admin/views/BWGViewThemes_bwg.php:110
295
+ msgid "Name"
296
+ msgstr "Nom"
297
+
298
+ #: ../admin/views/BWGViewAddAlbumsGalleries.php:70 .. /admin/views/BWGViewBWGShortcode.php:214 ../admin/views/BWGViewGalleries_bwg. php:908
299
+ msgid "Type"
300
+ msgstr "Type"
301
+
302
+ #: ../admin/views/BWGViewAddAlbumsGalleries.php:91 ../admin/views/BWGViewWidget. php:111
303
+ msgid "Album"
304
+ msgstr "Album"
305
+
306
+ #: ../admin/views/BWGViewAddAlbumsGalleries.php:91 ../admin/views/BWGViewWidget. php:110
307
+ msgid "Gallery"
308
+ msgstr "Galerie"
309
+
310
+ #: ../admin/views/BWGViewAddTags.php:75 ../admin/views/BWGViewAlbums_bwg.php:104 . admin/views/BWGViewGalleries_bwg.php:105 ../admin/views/BWGViewTags_bwg.php:99
311
+ msgid "Slug"
312
+ msgstr "Limace"
313
+
314
+ #: ../admin/views/BWGViewAlbums_bwg.php:40
315
+ msgid "This section allows you to create, edit and delete albums."
316
+ msgstr "Cette section vous permet de créer, modifier et supprimer des albums."
317
+
318
+ #: ../admin/views/BWGViewAlbums_bwg.php:41 ../admin/views/BWGViewAlbums_bwg.php: 203 ../admin/views/BWGViewGalleries_bwg.php:41 .. /admin/views/BWGViewGalleries_bwg.php:219 ../admin/views/BWGViewOptions_bwg. php:31 ../admin/views/BWGViewTags_bwg.php:44 ../admin/views/BWGViewThemes_bwg. php:40
319
+ #: ../admin/views/BWGViewThemes_bwg.php:251
320
+ msgid "Read More in User Manual"
321
+ msgstr "Lire la suite dans le manuel de lutilisateur"
322
+
323
+ #: ../admin/views/BWGViewAlbums_bwg.php:55 ../admin/views/BWGViewGalleries_bwg. php:55 ../admin/views/BWGViewThemes_bwg.php:80
324
+ msgid "Add new"
325
+ msgstr "Ajouter un nouveau"
326
+
327
+ #: ../admin/views/BWGViewAlbums_bwg.php:57 ../admin/views/BWGViewGalleries_bwg. php:57 ../admin/views/BWGViewGalleries_bwg.php:700
328
+ msgid "Changes made in this table should be saved."
329
+ msgstr "Les modifications apportées dans ce tableau doivent être enregistrés."
330
+
331
+ #: ../admin/views/BWGViewAlbums_bwg.php:61 ../admin/views/BWGViewGalleries_bwg. php:61 ../admin/views/BWGViewGalleries_bwg.php:723 ../filemanager/view.php:268 ../filemanager/view.php:353
332
+ msgid "Select All"
333
+ msgstr "Sélectionner tout"
334
+
335
+ #: ../admin/views/BWGViewAlbums_bwg.php:64 ../admin/views/BWGViewGalleries_bwg. php:64
336
+ msgid "Save Order"
337
+ msgstr "Gagner Commande"
338
+
339
+ #: ../admin/views/BWGViewAlbums_bwg.php:65 ../admin/views/BWGViewGalleries_bwg. php:65 ../admin/views/BWGViewGalleries_bwg.php:743
340
+ msgid "Publish"
341
+ msgstr "Publier"
342
+
343
+ #: ../admin/views/BWGViewAlbums_bwg.php:66 ../admin/views/BWGViewGalleries_bwg. php:66 ../admin/views/BWGViewGalleries_bwg.php:746
344
+ msgid "Unpublish"
345
+ msgstr "Dépublier"
346
+
347
+ #: ../admin/views/BWGViewAlbums_bwg.php:67 ../admin/views/BWGViewGalleries_bwg. php:67 ../admin/views/BWGViewGalleries_bwg.php:747 .. /admin/views/BWGViewThemes_bwg.php:83
348
+ msgid "Do you want to delete selected items?"
349
+ msgstr "Voulez-vous supprimer les éléments sélectionnés?"
350
+
351
+ #: ../admin/views/BWGViewAlbums_bwg.php:71 ../admin/views/BWGViewAlbums_bwg.php: 133 ../admin/views/BWGViewAlbums_bwg.php:168 .. /admin/views/BWGViewGalleries_bwg.php:71 ../admin/views/BWGViewGalleries_bwg. php:134 ../admin/views/BWGViewGalleries_bwg.php:181
352
+ #: /admin/views/BWGViewGalleries_bwg.php:753 php:874 ../admin/views/BWGViewGalleries_bwg.php:980 /admin/views/BWGViewTags_bwg.php:63 ../admin/views/BWGViewTags_bwg.php:111 /admin/views/BWGViewTags_bwg.php:163 ../admin/views/BWGViewThemes_bwg.php:87 /admin/views/BWGViewThemes_bwg.php:120
353
+ #: ../admin/views/BWGViewThemes_bwg.php:167
354
+ msgid "Delete"
355
+ msgstr "Effacer"
356
+
357
+ #: ../admin/views/BWGViewAlbums_bwg.php:107 ../admin/views/BWGViewGalleries_bwg. php:91 ../admin/views/BWGViewGalleries_bwg.php:832 .. /admin/views/BWGViewOptions_bwg.php:982
358
+ msgid "Thumbnail"
359
+ msgstr "Miniature"
360
+
361
+ #: ../admin/views/BWGViewAlbums_bwg.php:113 ../admin/views/BWGViewBWGShortcode. php:209 ../admin/views/BWGViewGalleries_bwg.php:122 .. /admin/views/BWGViewGalleries_bwg.php:863
362
+ msgid "Order"
363
+ msgstr "Commande"
364
+
365
+ #: ../admin/views/BWGViewAlbums_bwg.php:121 ../admin/views/BWGViewGalleries_bwg. php:113
366
+ msgid "Author"
367
+ msgstr "Auteur"
368
+
369
+ #: ../admin/views/BWGViewAlbums_bwg.php:129 ../admin/views/BWGViewGalleries_bwg. php:130 ../admin/views/BWGViewGalleries_bwg.php:871
370
+ msgid "Published"
371
+ msgstr "Publié"
372
+
373
+ #: ../admin/views/BWGViewAlbums_bwg.php:132 ../admin/views/BWGViewAlbums_bwg.php: 155 ../admin/views/BWGViewAlbums_bwg.php:165 .. /admin/views/BWGViewGalleries_bwg.php:133 ../admin/views/BWGViewGalleries_bwg. php:165 ../admin/views/BWGViewGalleries_bwg.php:178
374
+ #: /admin/views/BWGViewGalleries_bwg.php:363 php:924 ../admin/views/BWGViewTags_bwg.php:110 ../admin/views/BWGViewTags_bwg. php:143 ../admin/views/BWGViewTags_bwg.php:149 php:155 ../admin/views/BWGViewTags_bwg.php:158 /admin/views/BWGViewThemes_bwg.php:119 ../admin/views/BWGViewThemes_bwg.php:
375
+ #: 138 ../admin/views/BWGViewThemes_bwg.php:162
376
+ msgid "Edit"
377
+ msgstr "Modifier"
378
+
379
+ #: ../admin/views/BWGViewAlbums_bwg.php:197
380
+ msgid "Edit album "
381
+ msgstr "Modifier l'album"
382
+
383
+ #: ../admin/views/BWGViewAlbums_bwg.php:197
384
+ msgid "Create new album"
385
+ msgstr "Créer un nouvel album"
386
+
387
+ #: ../admin/views/BWGViewAlbums_bwg.php:202
388
+ msgid "This section allows you to add/edit album."
389
+ msgstr "Cette section vous permet dajouter / modifier album."
390
+
391
+ #: ../admin/views/BWGViewAlbums_bwg.php:271 ../admin/views/BWGViewGalleries_bwg. php:535 ../admin/views/BWGViewOptions_bwg.php:94 .. /admin/views/BWGViewTags_bwg.php:58 ../admin/views/BWGViewThemes_bwg.php:264
392
+ msgid "Save"
393
+ msgstr "sauvegarder"
394
+
395
+ #: ../admin/views/BWGViewAlbums_bwg.php:272 ../admin/views/BWGViewGalleries_bwg. php:538 ../admin/views/BWGViewThemes_bwg.php:265
396
+ msgid "Apply"
397
+ msgstr "Appliquer"
398
+
399
+ #: ../admin/views/BWGViewAlbums_bwg.php:273 ../admin/views/BWGViewGalleries_bwg. php:540 ../admin/views/BWGViewGalleries_bwg.php:759 .. /admin/views/BWGViewGalleries_bwg.php:773 php:817 ../admin/views/BWGViewThemes_bwg.php:266
400
+ msgid "Cancel"
401
+ msgstr "Annuler"
402
+
403
+ #: ../admin/views/BWGViewAlbums_bwg.php:278 ../admin/views/BWGViewGalleries_bwg. php:545 ../admin/views/BWGViewThemes_bwg.php:293
404
+ msgid "Name:"
405
+ msgstr "Nom:"
406
+
407
+ #: ../admin/views/BWGViewAlbums_bwg.php:282 ../admin/views/BWGViewGalleries_bwg. php:549
408
+ msgid "Slug:"
409
+ msgstr "Slug:"
410
+
411
+ #: ../admin/views/BWGViewAlbums_bwg.php:286 ../admin/views/BWGViewGalleries_bwg. php:601
412
+ msgid "Description:"
413
+ msgstr "Description:"
414
+
415
+ #: ../admin/views/BWGViewAlbums_bwg.php:305 ../admin/views/BWGViewGalleries_bwg. php:620
416
+ msgid "Author:"
417
+ msgstr "Auteur:"
418
+
419
+ #: ../admin/views/BWGViewAlbums_bwg.php:309 ../admin/views/BWGViewGalleries_bwg. php:624
420
+ msgid "Published:"
421
+ msgstr "Publié:"
422
+
423
+ #: ../admin/views/BWGViewAlbums_bwg.php:312 ../admin/views/BWGViewGalleries_bwg. php:627 ../admin/views/BWGViewOptions_bwg.php:147 .. /admin/views/BWGViewOptions_bwg.php:177 ../admin/views/BWGViewOptions_bwg.php: 187 ../admin/views/BWGViewOptions_bwg.php:206
424
+ #: /admin/views/BWGViewOptions_bwg.php:216 226 ../admin/views/BWGViewOptions_bwg.php:245 /admin/views/BWGViewOptions_bwg.php:255 265 ../admin/views/BWGViewOptions_bwg.php:276 /admin/views/BWGViewOptions_bwg.php:286 613 ../admin/views/BWGViewOptions_bwg.php:650
425
+ #: /admin/views/BWGViewOptions_bwg.php:669 688 ../admin/views/BWGViewOptions_bwg.php:732 /admin/views/BWGViewOptions_bwg.php:742 752 ../admin/views/BWGViewOptions_bwg.php:762 /admin/views/BWGViewOptions_bwg.php:772 788 ../admin/views/BWGViewOptions_bwg.php:802
426
+ #: /admin/views/BWGViewOptions_bwg.php:812 822 ../admin/views/BWGViewOptions_bwg.php:832 /admin/views/BWGViewOptions_bwg.php:842 852 ../admin/views/BWGViewOptions_bwg.php:862 /admin/views/BWGViewOptions_bwg.php:872 882 ../admin/views/BWGViewOptions_bwg.php:892
427
+ #: /admin/views/BWGViewOptions_bwg.php:902 912 ../admin/views/BWGViewOptions_bwg.php:922 /admin/views/BWGViewOptions_bwg.php:934 973 ../admin/views/BWGViewOptions_bwg.php:1004 /admin/views/BWGViewOptions_bwg.php:1014 1090 ../admin/views/BWGViewOptions_bwg.php:1100
428
+ #: /admin/views/BWGViewOptions_bwg.php:1120 1128 ../admin/views/BWGViewOptions_bwg.php:1149 /admin/views/BWGViewOptions_bwg.php:1184 1192 ../admin/views/BWGViewOptions_bwg.php:1227 /admin/views/BWGViewOptions_bwg.php:1287 1354 ../admin/views/BWGViewOptions_bwg.php:1364
429
+ #: /admin/views/BWGViewOptions_bwg.php:1372 1389 ../admin/views/BWGViewOptions_bwg.php:1397 /admin/views/BWGViewOptions_bwg.php:1415 1425 ../admin/views/BWGViewOptions_bwg.php:1449 /admin/views/BWGViewOptions_bwg.php:1477 1576 ../admin/views/BWGViewOptions_bwg.php:1586
430
+ #: /admin/views/BWGViewOptions_bwg.php:1596 1606 ../admin/views/BWGViewOptions_bwg.php:1616 /admin/views/BWGViewThemes_bwg.php:382 ../admin/views/BWGViewThemes_bwg.php: 623 ../admin/views/BWGViewThemes_bwg.php:1364 ../admin/views/BWGViewThemes_bwg. php:1596
431
+ #: ../admin/views/BWGViewThemes_bwg.php:3314 /admin/views/BWGViewThemes_bwg.php:3359 ../admin/views/BWGViewWidgetSlideshow. php:144 ../admin/views/BWGViewWidgetTags.php:125 /admin/views/BWGViewWidgetTags.php:146
432
+ msgid "No"
433
+ msgstr "Non"
434
+
435
+ #: ../admin/views/BWGViewAlbums_bwg.php:314 ../admin/views/BWGViewBWGShortcode. php:230 ../admin/views/BWGViewGalleries_bwg.php:629 .. /admin/views/BWGViewOptions_bwg.php:146 ../admin/views/BWGViewOptions_bwg.php: 156 ../admin/views/BWGViewOptions_bwg.php:166
436
+ #: /admin/views/BWGViewOptions_bwg.php:176 186 ../admin/views/BWGViewOptions_bwg.php:205 /admin/views/BWGViewOptions_bwg.php:215 225 ../admin/views/BWGViewOptions_bwg.php:244 /admin/views/BWGViewOptions_bwg.php:254 264 ../admin/views/BWGViewOptions_bwg.php:275
437
+ #: /admin/views/BWGViewOptions_bwg.php:285 612 ../admin/views/BWGViewOptions_bwg.php:649 /admin/views/BWGViewOptions_bwg.php:668 687 ../admin/views/BWGViewOptions_bwg.php:719 /admin/views/BWGViewOptions_bwg.php:741 751 ../admin/views/BWGViewOptions_bwg.php:761
438
+ #: /admin/views/BWGViewOptions_bwg.php:771 787 ../admin/views/BWGViewOptions_bwg.php:799 /admin/views/BWGViewOptions_bwg.php:811 821 ../admin/views/BWGViewOptions_bwg.php:831 /admin/views/BWGViewOptions_bwg.php:841 851 ../admin/views/BWGViewOptions_bwg.php:861
439
+ #: /admin/views/BWGViewOptions_bwg.php:871 881 ../admin/views/BWGViewOptions_bwg.php:891 /admin/views/BWGViewOptions_bwg.php:901 911 ../admin/views/BWGViewOptions_bwg.php:921 /admin/views/BWGViewOptions_bwg.php:932 972 ../admin/views/BWGViewOptions_bwg.php:1003
440
+ #: /admin/views/BWGViewOptions_bwg.php:1013 1089 ../admin/views/BWGViewOptions_bwg.php:1099 /admin/views/BWGViewOptions_bwg.php:1119 1127 ../admin/views/BWGViewOptions_bwg.php:1148 /admin/views/BWGViewOptions_bwg.php:1183 1191 ../admin/views/BWGViewOptions_bwg.php:1226
441
+ #: /admin/views/BWGViewOptions_bwg.php:1288 1353 ../admin/views/BWGViewOptions_bwg.php:1363 /admin/views/BWGViewOptions_bwg.php:1371 1388 ../admin/views/BWGViewOptions_bwg.php:1396 /admin/views/BWGViewOptions_bwg.php:1414 1424 ../admin/views/BWGViewOptions_bwg.php:1448
442
+ #: /admin/views/BWGViewOptions_bwg.php:1476 1575 ../admin/views/BWGViewOptions_bwg.php:1585 /admin/views/BWGViewOptions_bwg.php:1595 1605 ../admin/views/BWGViewOptions_bwg.php:1615 /admin/views/BWGViewThemes_bwg.php:380 ../admin/views/BWGViewThemes_bwg.php: 621
443
+ #: ../admin/views/BWGViewThemes_bwg.php:1362 ../admin/views/BWGViewThemes_bwg. php:1594 ../admin/views/BWGViewThemes_bwg.php:3312 /admin/views/BWGViewThemes_bwg.php:3357 ../admin/views/BWGViewUninstall_bwg. php:79 ../admin/views/BWGViewWidgetSlideshow.php:143
444
+ #: /admin/views/BWGViewWidgetTags.php:124 ../admin/views/BWGViewWidgetTags.php:145
445
+ msgid "Yes"
446
+ msgstr "Oui"
447
+
448
+ #: ../admin/views/BWGViewAlbums_bwg.php:318 ../admin/views/BWGViewGalleries_bwg. php:633
449
+ msgid "Preview image:"
450
+ msgstr "Aperçu de limage:"
451
+
452
+ #: ../admin/views/BWGViewAlbums_bwg.php:333 ../admin/views/BWGViewGalleries_bwg. php:646
453
+ msgid "Add Preview Image"
454
+ msgstr "Ajouter Prévisualisation de limage"
455
+
456
+ #: ../admin/views/BWGViewAlbums_bwg.php:344
457
+ msgid "Albums And Galleries:"
458
+ msgstr "Albums et galeries:"
459
+
460
+ #: ../admin/views/BWGViewAlbums_bwg.php:354
461
+ msgid "Add Albums/Galleries"
462
+ msgstr "Ajouter Albums / Galeries"
463
+
464
+ #: ../admin/views/BWGViewAlbums_bwg.php:366
465
+ msgid "Drag to re-order"
466
+ msgstr "Drag de commander à nouveau"
467
+
468
+ #: ../admin/views/BWGViewBWGShortcode.php:34 ../admin/views/BWGViewOptions_bwg. php:307 ../admin/views/BWGViewOptions_bwg.php:460 .. /admin/views/BWGViewThemes_bwg.php:196 ../admin/views/BWGViewThemes_bwg.php:229
469
+ msgid "None"
470
+ msgstr "Aucun"
471
+
472
+ #: ../admin/views/BWGViewBWGShortcode.php:35
473
+ msgid "Cube Horizontal"
474
+ msgstr "Cube Horizontal"
475
+
476
+ #: ../admin/views/BWGViewBWGShortcode.php:36
477
+ msgid "Cube Vertical"
478
+ msgstr "Cube Vertical"
479
+
480
+ #: ../admin/views/BWGViewBWGShortcode.php:37
481
+ msgid "Fade"
482
+ msgstr "Fade"
483
+
484
+ #: ../admin/views/BWGViewBWGShortcode.php:38
485
+ msgid "Slice Horizontal"
486
+ msgstr "Tranche horizontale"
487
+
488
+ #: ../admin/views/BWGViewBWGShortcode.php:39
489
+ msgid "Slice Vertical"
490
+ msgstr "Tranche verticale"
491
+
492
+ #: ../admin/views/BWGViewBWGShortcode.php:40
493
+ msgid "Slide Horizontal"
494
+ msgstr "Glissière horizontale"
495
+
496
+ #: ../admin/views/BWGViewBWGShortcode.php:41
497
+ msgid "Slide Vertical"
498
+ msgstr "Glissière verticale"
499
+
500
+ #: ../admin/views/BWGViewBWGShortcode.php:42
501
+ msgid "Scale Out"
502
+ msgstr "Scale-out"
503
+
504
+ #: ../admin/views/BWGViewBWGShortcode.php:43
505
+ msgid "Scale In"
506
+ msgstr "Dans échelle"
507
+
508
+ #: ../admin/views/BWGViewBWGShortcode.php:44
509
+ msgid "Block Scale"
510
+ msgstr "Bloquer Échelle"
511
+
512
+ #: ../admin/views/BWGViewBWGShortcode.php:45
513
+ msgid "Kaleidoscope"
514
+ msgstr "Kaléidoscope"
515
+
516
+ #: ../admin/views/BWGViewBWGShortcode.php:46
517
+ msgid "Fan"
518
+ msgstr "Ventilateur"
519
+
520
+ #: ../admin/views/BWGViewBWGShortcode.php:47
521
+ msgid "Blind Horizontal"
522
+ msgstr "Aveugle Horizontal"
523
+
524
+ #: ../admin/views/BWGViewBWGShortcode.php:48
525
+ msgid "Blind Vertical"
526
+ msgstr "Store vertical"
527
+
528
+ #: ../admin/views/BWGViewBWGShortcode.php:49 ../admin/views/BWGViewBWGShortcode. php:216 ../admin/views/BWGViewWidget.php:139 ../framework/WDWLibrary.php:851
529
+ msgid "Random"
530
+ msgstr "Aléatoire"
531
+
532
+ #: ../admin/views/BWGViewBWGShortcode.php:97
533
+ msgid "Display"
534
+ msgstr "Affichage"
535
+
536
+ #: ../a