Photo Gallery by WD – Responsive Photo Gallery - Version 1.2.86

Version Description

  • Added: Ecommerce add-on.
  • Fixed: Bug in filemanager.
Download this release

Release Info

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

Code changes from version 1.2.85 to 1.2.86

addons/addons.php CHANGED
@@ -22,6 +22,13 @@ function bwg_addons_display() {
22
  'icon' => '',
23
  'image' => WD_BWG_URL . '/addons/images/import_export.png',
24
  ),
 
 
 
 
 
 
 
25
  );
26
  ?>
27
  <div class="wrap">
22
  'icon' => '',
23
  'image' => WD_BWG_URL . '/addons/images/import_export.png',
24
  ),
25
+ 'photo-gallery-ecomerce' => array(
26
+ 'name' => __('Photo Gallery Ecommerce', 'bwg'),
27
+ 'url' => 'https://web-dorado.com/products/wordpress-photo-gallery-plugin/add-ons/gallery-ecommerce.html',
28
+ 'description' => __('Using Photo Gallery Ecommerce you can sell images included in galleries either as digital downloads or products/prints via Paypal or Stripe.', 'bwg'),
29
+ 'icon' => '',
30
+ 'image' => WD_BWG_URL . '/addons/images/ecommerce.png',
31
+ ),
32
  );
33
  ?>
34
  <div class="wrap">
addons/images/ecommerce.png ADDED
Binary file
filemanager/UploadHandler.php CHANGED
@@ -239,9 +239,9 @@ class UploadHandler {
239
  }
240
 
241
  protected function get_file_size($file_path, $clear_stat_cache = false) {
242
- if ($clear_stat_cache) {
243
  clearstatcache(true, $file_path);
244
- }
245
  return $this->fix_integer_overflow(filesize($file_path));
246
 
247
  }
239
  }
240
 
241
  protected function get_file_size($file_path, $clear_stat_cache = false) {
242
+ /*if ($clear_stat_cache) {
243
  clearstatcache(true, $file_path);
244
+ }*/
245
  return $this->fix_integer_overflow(filesize($file_path));
246
 
247
  }
photo-gallery.php CHANGED
@@ -4,7 +4,7 @@
4
  * Plugin Name: Photo Gallery
5
  * Plugin URI: https://web-dorado.com/products/wordpress-photo-gallery-plugin.html
6
  * Description: This plugin is a fully responsive gallery plugin with advanced functionality. It allows having different image galleries for your posts and pages. You can create unlimited number of galleries, combine them into albums, and provide descriptions and tags.
7
- * Version: 1.2.85
8
  * Author: WebDorado
9
  * Author URI: https://web-dorado.com/
10
  * License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
@@ -630,6 +630,7 @@ function bwg_activate() {
630
  `rate_count` bigint(20) NOT NULL,
631
  `hit_count` bigint(20) NOT NULL,
632
  `redirect_url` varchar(255) NOT NULL,
 
633
  PRIMARY KEY (`id`)
634
  ) DEFAULT CHARSET=utf8;";
635
  $wpdb->query($bwg_image);
@@ -658,7 +659,7 @@ function bwg_activate() {
658
  `upload_thumb_height` int(4) NOT NULL,
659
  `image_enable_page` tinyint(1) NOT NULL,
660
  `image_title_show_hover` varchar(20) NOT NULL,
661
-
662
  `album_column_number` int(4) NOT NULL,
663
  `albums_per_page` int(4) NOT NULL,
664
  `album_title_show_hover` varchar(8) NOT NULL,
@@ -712,7 +713,7 @@ function bwg_activate() {
712
  `popup_enable_facebook` tinyint(1) NOT NULL,
713
  `popup_enable_twitter` tinyint(1) NOT NULL,
714
  `popup_enable_google` tinyint(1) NOT NULL,
715
-
716
  `watermark_type` varchar(8) NOT NULL,
717
  `watermark_position` varchar(16) NOT NULL,
718
  `watermark_width` int(4) NOT NULL,
@@ -1902,7 +1903,7 @@ function bwg_activate() {
1902
  ));
1903
  }
1904
  $version = get_option("wd_bwg_version");
1905
- $new_version = '1.2.85';
1906
  if ($version && version_compare($version, $new_version, '<')) {
1907
  require_once WD_BWG_DIR . "/update/bwg_update.php";
1908
  bwg_update($version);
@@ -1950,7 +1951,7 @@ wp_oembed_add_provider( '#https://instagr(\.am|am\.com)/p/.*#i', 'https://api.in
1950
 
1951
  function bwg_update_hook() {
1952
  $version = get_option("wd_bwg_version");
1953
- $new_version = '1.2.85';
1954
  if ($version && version_compare($version, $new_version, '<')) {
1955
  require_once WD_BWG_DIR . "/update/bwg_update.php";
1956
  bwg_update($version);
4
  * Plugin Name: Photo Gallery
5
  * Plugin URI: https://web-dorado.com/products/wordpress-photo-gallery-plugin.html
6
  * Description: This plugin is a fully responsive gallery plugin with advanced functionality. It allows having different image galleries for your posts and pages. You can create unlimited number of galleries, combine them into albums, and provide descriptions and tags.
7
+ * Version: 1.2.86
8
  * Author: WebDorado
9
  * Author URI: https://web-dorado.com/
10
  * License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
630
  `rate_count` bigint(20) NOT NULL,
631
  `hit_count` bigint(20) NOT NULL,
632
  `redirect_url` varchar(255) NOT NULL,
633
+ `pricelist_id` bigint(20) NOT NULL,
634
  PRIMARY KEY (`id`)
635
  ) DEFAULT CHARSET=utf8;";
636
  $wpdb->query($bwg_image);
659
  `upload_thumb_height` int(4) NOT NULL,
660
  `image_enable_page` tinyint(1) NOT NULL,
661
  `image_title_show_hover` varchar(20) NOT NULL,
662
+ `ecommerce_icon_show_hover` varchar(20) NOT NULL,
663
  `album_column_number` int(4) NOT NULL,
664
  `albums_per_page` int(4) NOT NULL,
665
  `album_title_show_hover` varchar(8) NOT NULL,
713
  `popup_enable_facebook` tinyint(1) NOT NULL,
714
  `popup_enable_twitter` tinyint(1) NOT NULL,
715
  `popup_enable_google` tinyint(1) NOT NULL,
716
+ `popup_enable_ecommerce` tinyint(1) NOT NULL,
717
  `watermark_type` varchar(8) NOT NULL,
718
  `watermark_position` varchar(16) NOT NULL,
719
  `watermark_width` int(4) NOT NULL,
1903
  ));
1904
  }
1905
  $version = get_option("wd_bwg_version");
1906
+ $new_version = '1.2.86';
1907
  if ($version && version_compare($version, $new_version, '<')) {
1908
  require_once WD_BWG_DIR . "/update/bwg_update.php";
1909
  bwg_update($version);
1951
 
1952
  function bwg_update_hook() {
1953
  $version = get_option("wd_bwg_version");
1954
+ $new_version = '1.2.86';
1955
  if ($version && version_compare($version, $new_version, '<')) {
1956
  require_once WD_BWG_DIR . "/update/bwg_update.php";
1957
  bwg_update($version);
readme.txt CHANGED
@@ -1,10 +1,9 @@
1
  === Gallery ===
2
  Contributors: webdorado
3
  Donate link: https://web-dorado.com/products/wordpress-photo-gallery-plugin.html
4
- Tags: photo, photo gallery, image gallery, video gallery, gallery, galleries, wordpress gallery plugin, images gallery, album, photo albums, simple gallery, best gallery plugin, free photo gallery, wp gallery, wordpress gallery, website gallery, gallery shortcode, best gallery, picture, pictures, gallery slider, photo album, photogallery, widget gallery, image, images, photos, gallery lightbox, photoset, wordpress photo gallery plugin, wp gallery plugins, responsive wordpress photo gallery, media, image album, filterable gallery, banner rotator, fullscreen gallery, fotogalerie, galleria, galerie, galeri, responsive gallery, add album, add gallery, add pictures, fotoalbum, foto, gallery decription, multiple pictures, photoalbum, upload images, upload photos, view images, view pictures, admin, AJAX, comments, gallery image, image lightbox, image rotate, image slideshow, image slider, jquery, jquery gallery, slide show, slideshow, thumbnail, thumbnail view, thumbnails, thumbs, responsive, watermarking, watermarks,fullscreen slider, lightbox, photography, sidebar, slide, youtube, vimeo, videos, instagram, facebook, mosaic, facebook integration, instagram feed, Flickr, Dailymotion, widget, youtube gallery
5
- Requires at least: 3.4
6
  Tested up to: 4.4
7
- Stable tag: 1.2.85
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -23,6 +22,7 @@ https://www.youtube.com/watch?v=4Mxg0FsFZZE&index=5&list=PLnxWPiY5tLFUsFI67acGEP
23
 
24
 
25
  = Photo Gallery Add-ons: =
 
26
  [Facebook Integration Add-on](https://web-dorado.com/products/wordpress-photo-gallery-plugin/add-ons/facebook.html)
27
  [Export/Import Add-on](https://web-dorado.com/products/wordpress-photo-gallery-plugin/add-ons/export-import.html)
28
 
@@ -215,6 +215,10 @@ Yes, it is possible to add advertising and/or watermark over the images. In both
215
 
216
  == Changelog ==
217
 
 
 
 
 
218
  = 1.2.85 =
219
  * Fixed: Delete all custom posts on uninstall.
220
  * Fixed: Filter by name in lightbox.
1
  === Gallery ===
2
  Contributors: webdorado
3
  Donate link: https://web-dorado.com/products/wordpress-photo-gallery-plugin.html
4
+ Tags: photo, photo gallery, image gallery, video gallery, gallery, galleries, wordpress gallery plugin, images gallery, album, photo albums, simple gallery, best gallery plugin, free photo gallery, wp gallery, wordpress gallery, website gallery, gallery shortcode, best gallery, picture, pictures, gallery slider, photo album, photogallery, widget gallery, image, images, photos, gallery lightbox, photoset, wordpress photo gallery plugin, wp gallery plugins, responsive wordpress photo gallery, media, image album, filterable gallery, banner rotator, fullscreen gallery, fotogalerie, galleria, galerie, galeri, responsive gallery, add album, add gallery, add pictures, fotoalbum, foto, gallery decription, multiple pictures, photoalbum, upload images, upload photos, view images, view pictures, admin, AJAX, comments, gallery image, image lightbox, image rotate, image slideshow, image slider, jquery, jquery gallery, slide show, slideshow, thumbnail, thumbnail view, thumbnails, thumbs, responsive, watermarking, watermarks,fullscreen slider, lightbox, photography, sidebar, slide, youtube, vimeo, videos, instagram, facebook, mosaic, facebook integration, instagram feed, Flickr, Dailymotion, widget, youtube gallery, ecommerce
 
5
  Tested up to: 4.4
6
+ Stable tag: 1.2.86
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
22
 
23
 
24
  = Photo Gallery Add-ons: =
25
+ [Ecommerce Add-on](https://web-dorado.com/products/wordpress-photo-gallery-plugin/add-ons/gallery-ecommerce.html)
26
  [Facebook Integration Add-on](https://web-dorado.com/products/wordpress-photo-gallery-plugin/add-ons/facebook.html)
27
  [Export/Import Add-on](https://web-dorado.com/products/wordpress-photo-gallery-plugin/add-ons/export-import.html)
28
 
215
 
216
  == Changelog ==
217
 
218
+ = 1.2.86 =
219
+ * Added: Ecommerce add-on.
220
+ * Fixed: Bug in filemanager.
221
+
222
  = 1.2.85 =
223
  * Fixed: Delete all custom posts on uninstall.
224
  * Fixed: Filter by name in lightbox.
tmp-photo-gallery-readme.pot ADDED
@@ -0,0 +1,1972 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr "MIME-Version: 1.0\n"
3
+
4
+ #. Name.
5
+ msgid "Gallery"
6
+ msgstr ""
7
+
8
+ #. Short description.
9
+ msgid "Photo Gallery is an advanced plugin with a list of tools and options for adding and editing images for different views. It is fully responsive."
10
+ msgstr ""
11
+
12
+ #. Screenshot description.
13
+ msgid "Photo Gallery - Popup View"
14
+ msgstr ""
15
+
16
+ #. Screenshot description.
17
+ msgid "Photo Gallery - Thumbnails View"
18
+ msgstr ""
19
+
20
+ #. Screenshot description.
21
+ msgid "Photo Gallery - Masonry View"
22
+ msgstr ""
23
+
24
+ #. Screenshot description.
25
+ msgid "Photo Gallery - Create Shortcode"
26
+ msgstr ""
27
+
28
+ #. Screenshot description.
29
+ msgid "Photo Gallery - Edit Global Options"
30
+ msgstr ""
31
+
32
+ #. Screenshot description.
33
+ msgid "Photo Gallery - Edit Watermark"
34
+ msgstr ""
35
+
36
+ #. Found in description header.
37
+ msgid "Photo Gallery Add-ons:"
38
+ msgstr ""
39
+
40
+ #. Found in description header.
41
+ msgid "IMPORTANT:"
42
+ msgstr ""
43
+
44
+ #. Found in description header.
45
+ msgid "The list of the features:"
46
+ msgstr ""
47
+
48
+ #. Found in description header.
49
+ msgid "Supported languages"
50
+ msgstr ""
51
+
52
+ #. Found in description list item.
53
+ msgid "Thumbnails gallery view"
54
+ msgstr ""
55
+
56
+ #. Found in description list item.
57
+ msgid "Masonry gallery view for multi-size thumbnails (commercial version)"
58
+ msgstr ""
59
+
60
+ #. Found in description list item.
61
+ msgid "Mosaic gallery view (commercial version)"
62
+ msgstr ""
63
+
64
+ #. Found in description list item.
65
+ msgid "Slideshow"
66
+ msgstr ""
67
+
68
+ #. Found in description list item.
69
+ msgid "Image Browser for single image display with a possibility of switching between images"
70
+ msgstr ""
71
+
72
+ #. Found in description list item.
73
+ msgid "Compact Album view"
74
+ msgstr ""
75
+
76
+ #. Found in description list item.
77
+ msgid "Masonry Album view (commercial version)"
78
+ msgstr ""
79
+
80
+ #. Found in description list item.
81
+ msgid "Extended Album view for displaying albums with descriptions"
82
+ msgstr ""
83
+
84
+ #. Found in description list item.
85
+ msgid "Blog Style gallery view (commercial version)"
86
+ msgstr ""
87
+
88
+ #. Found in description list item.
89
+ msgid "Tag Cloud"
90
+ msgstr ""
91
+
92
+ #. Found in description list item.
93
+ msgid "Dynamic Photo Gallery Tags Cloud "
94
+ msgstr ""
95
+
96
+ #. Found in description list item.
97
+ msgid "Photo Gallery Slideshow "
98
+ msgstr ""
99
+
100
+ #. Found in description list item.
101
+ msgid "Photo Gallery (similar to the main plugin option)"
102
+ msgstr ""
103
+
104
+ #. Found in description list item.
105
+ msgid "100% Responsive "
106
+ msgstr ""
107
+
108
+ #. Found in description list item.
109
+ msgid "Multiple gallery views to choose from: Thumbnails, Image Browser, Slideshow for galleries and Compact Album, Extended Album views for albums "
110
+ msgstr ""
111
+
112
+ #. Found in description list item.
113
+ msgid "Supports the following types of image files: JPG, JPEG, PNG and GIF "
114
+ msgstr ""
115
+
116
+ #. Found in description list item.
117
+ msgid "Unlimited quantity of photos in gallery "
118
+ msgstr ""
119
+
120
+ #. Found in description list item.
121
+ msgid "Possibility of adding unlimited quantity of galleries/albums "
122
+ msgstr ""
123
+
124
+ #. Found in description list item.
125
+ msgid "Detailed three-column visual shortcode for adding created gallery/galleries and album/albums into the posts and pages. "
126
+ msgstr ""
127
+
128
+ #. Found in description list item.
129
+ msgid "Detailed (Extended) album and compact album view "
130
+ msgstr ""
131
+
132
+ #. Found in description list item.
133
+ msgid "Possibility of changing the roles of who can edit the galleries/albums/images (Author/All Users) "
134
+ msgstr ""
135
+
136
+ #. Found in description list item.
137
+ msgid "Chances to provide details for images (tags, captions) "
138
+ msgstr ""
139
+
140
+ #. Found in description list item.
141
+ msgid "Thumbnail editing tools (Crop, rotate and flip) "
142
+ msgstr ""
143
+
144
+ #. Found in description list item.
145
+ msgid "Possibility of changing the amount of images displayed in a single row of an album/gallery "
146
+ msgstr ""
147
+
148
+ #. Found in description list item.
149
+ msgid "Slideshow view with auto play and shuffle features "
150
+ msgstr ""
151
+
152
+ #. Found in description list item.
153
+ msgid "Audio track playback possibility with the image slideshow "
154
+ msgstr ""
155
+
156
+ #. Found in description list item.
157
+ msgid "Possibility of adding Watermarks/Advertisements for each individual image "
158
+ msgstr ""
159
+
160
+ #. Found in description list item.
161
+ msgid "Direct Image download and original image display capabilities "
162
+ msgstr ""
163
+
164
+ #. Found in description list item.
165
+ msgid "WordPress Tag cloud hosted widget "
166
+ msgstr ""
167
+
168
+ #. Found in description list item.
169
+ msgid "Photo Gallery Slideshow widget "
170
+ msgstr ""
171
+
172
+ #. Found in description list item.
173
+ msgid "Photo Gallery Widget for displaying albums and galleries as widgets"
174
+ msgstr ""
175
+
176
+ #. Found in description list item.
177
+ msgid "Separate shortcode generator page for the websites using custom pages/custom editors. "
178
+ msgstr ""
179
+
180
+ #. Found in description list item.
181
+ msgid "Support for YouTube and Vimeo videos within Galleries. "
182
+ msgstr ""
183
+
184
+ #. Found in description list item.
185
+ msgid "Possibility of uploading images from the Media Library of the website."
186
+ msgstr ""
187
+
188
+ #. Found in description list item.
189
+ msgid "Possibility to add tags to all images at once. "
190
+ msgstr ""
191
+
192
+ #. Found in description list item.
193
+ msgid "Right-click disabling option for the image downloads protection. "
194
+ msgstr ""
195
+
196
+ #. Found in description list item.
197
+ msgid "Possibility to display images in the albums in thumbnail or masonry view upon opening "
198
+ msgstr ""
199
+
200
+ #. Found in description list item.
201
+ msgid "WordPress Search Integration by gallery and album title "
202
+ msgstr ""
203
+
204
+ #. Found in description list item.
205
+ msgid "Possibility to display the number of the images in the gallery lighbox (optional feature) "
206
+ msgstr ""
207
+
208
+ #. Found in description list item.
209
+ msgid "Resizing possibility after adding the images "
210
+ msgstr ""
211
+
212
+ #. Found in description list item.
213
+ msgid "Possibility to display Search Box on the gallery page for the search based on titles "
214
+ msgstr ""
215
+
216
+ #. Found in description list item.
217
+ msgid "Possibility to display the number of images in the lighbox "
218
+ msgstr ""
219
+
220
+ #. Found in description list item.
221
+ msgid "Redirection option upon clicking image thumbnail "
222
+ msgstr ""
223
+
224
+ #. Found in description list item.
225
+ msgid "Front-end image sorting possibility (dropdown) for the users "
226
+ msgstr ""
227
+
228
+ #. Found in description list item.
229
+ msgid "Masonry gallery View. "
230
+ msgstr ""
231
+
232
+ #. Found in description list item.
233
+ msgid "Mosaic gallery View "
234
+ msgstr ""
235
+
236
+ #. Found in description list item.
237
+ msgid "Blog Style View. "
238
+ msgstr ""
239
+
240
+ #. Found in description list item.
241
+ msgid "Masonry Album view "
242
+ msgstr ""
243
+
244
+ #. Found in description list item.
245
+ msgid "Slideshow/Lightbox 15 effects. "
246
+ msgstr ""
247
+
248
+ #. Found in description list item.
249
+ msgid "Editable themes. "
250
+ msgstr ""
251
+
252
+ #. Found in description list item.
253
+ msgid "Instagram Integration. "
254
+ msgstr ""
255
+
256
+ #. Found in description list item.
257
+ msgid "Commenting possibility with Captcha protection possibility. "
258
+ msgstr ""
259
+
260
+ #. Found in description list item.
261
+ msgid "Social sharing possibility (Facebook, Google+, Twitter, Pinterest and Tumblr). "
262
+ msgstr ""
263
+
264
+ #. Found in description list item.
265
+ msgid "Dynamic Photo Gallery Tag Cloud widget with image tag cloud and text tag cloud options. "
266
+ msgstr ""
267
+
268
+ #. Found in description list item.
269
+ msgid "Possibility to include both videos and images within a single gallery. "
270
+ msgstr ""
271
+
272
+ #. Found in description list item.
273
+ msgid "Add ons support. "
274
+ msgstr ""
275
+
276
+ #. Found in description paragraph.
277
+ msgid "Create 100% responsive FREE WordPress photo gallery in minutes. Easy to customize and various views."
278
+ msgstr ""
279
+
280
+ #. Found in description paragraph.
281
+ msgid "https://www.youtube.com/watch?v=4Mxg0FsFZZE&amp;index=5&amp;list=PLnxWPiY5tLFUsFI67acGEPAqoDMZqss5F"
282
+ msgstr ""
283
+
284
+ #. Found in description paragraph.
285
+ msgid ""
286
+ "<a href=\"https://web-dorado.com/products/wordpress-photo-gallery-plugin.html\">WordPress Photo Gallery</a><br />\n"
287
+ "<a href=\"http://wpdemo.web-dorado.com/gallery/\">Photo Gallery Demo</a><br />\n"
288
+ "<a href=\"http://wpdemo.web-dorado.com/wp-admin/admin.php?page=galleries_bwg\">Photo Gallery Demo Admin</a><br />\n"
289
+ "<a href=\"https://web-dorado.com/wordpress-gallery-guide-step-1.html\">Photo Gallery User Manual</a><br />\n"
290
+ "<a href=\"https://web-dorado.com/forum/photo-gallery.html\">Photo Gallery Support Forum</a>"
291
+ msgstr ""
292
+
293
+ #. Found in description paragraph.
294
+ msgid ""
295
+ "<a href=\"https://web-dorado.com/products/wordpress-photo-gallery-plugin/add-ons/facebook.html\">Facebook Integration Add-on</a><br />\n"
296
+ "<a href=\"https://web-dorado.com/products/wordpress-photo-gallery-plugin/add-ons/export-import.html\">Export/Import Add-on</a>"
297
+ msgstr ""
298
+
299
+ #. Found in description paragraph.
300
+ msgid "Photo Gallery is an advanced plugin with a list of tools and options for adding and editing images for different views. It is fully responsive. The product includes plugin for adding image galleries and albums to posts and pages, as well as multiple widgets. You can add images, providing detailed descriptions and tags, organize the galleries into different albums."
301
+ msgstr ""
302
+
303
+ #. Found in description paragraph.
304
+ msgid "The plugin allows displaying galleries/albums within the following views:"
305
+ msgstr ""
306
+
307
+ #. Found in description paragraph.
308
+ msgid "You can make the required customizations for the view in the shortcode in advance to adding in the posts/pages."
309
+ msgstr ""
310
+
311
+ #. Found in description paragraph.
312
+ msgid "Included File Manager will help to rename, upload, remove, copy images and/or image directories within a few simple steps."
313
+ msgstr ""
314
+
315
+ #. Found in description paragraph.
316
+ msgid "Photo Gallery product in addition to the main plugin includes 4 specific widgets:"
317
+ msgstr ""
318
+
319
+ #. Found in description paragraph.
320
+ msgid "If you think you found a bug in Photo Gallery or have any problem/question concerning the plugin, please check out <a href=\"https://web-dorado.com/forum/photo-gallery.html\">Photo Gallery Support Forum</a> in our website. If you do not find a solution here, do not hesitate to contact us at <a href=\"mailto:info@web-dorado.com\">info@web-dorado.com</a>."
321
+ msgstr ""
322
+
323
+ #. Found in description paragraph.
324
+ msgid "Upgrade to <a href=\"https://web-dorado.com/products/wordpress-photo-gallery-plugin.html\">WordPress Photo Gallery Pro</a> to add features:"
325
+ msgstr ""
326
+
327
+ #. Found in description paragraph.
328
+ msgid "*If you need language of Photo Gallery which is not included in this list, please contact us and we will do the translation of Photo Gallery within 3 days. If you find any mistakes in the translation, please contact us and we will make relevant corrections within 3 days. *"
329
+ msgstr ""
330
+
331
+ #. Found in description paragraph.
332
+ msgid ""
333
+ "Afrikaans (af)<br />\n"
334
+ "Albanian (sq)<br />\n"
335
+ "Arabic (ar)<br />\n"
336
+ "Armenian (hy_AM)<br />\n"
337
+ "Belarusian (be_BY)<br />\n"
338
+ "Bulgarian (bg_BG)<br />\n"
339
+ "Catalan (ca)<br />\n"
340
+ "Chinese, Simplified (zh_CN)<br />\n"
341
+ "Croatian (hr)<br />\n"
342
+ "Czech (cs_CZ)<br />\n"
343
+ "Danish (da_DK)<br />\n"
344
+ "Dutch (nl_NL)<br />\n"
345
+ "Esperanto (eo_EO)<br />\n"
346
+ "Estonian (et)<br />\n"
347
+ "Finnish (fi)<br />\n"
348
+ "French (fr_FR)<br />\n"
349
+ "Galician (gl_ES)<br />\n"
350
+ "Georgian (ka_GE)<br />\n"
351
+ "German (de_DE)<br />\n"
352
+ "Greek (el)<br />\n"
353
+ "Hebrew (he_IL)<br />\n"
354
+ "Hindi (hi_IN)<br />\n"
355
+ "Hungarian (hu_HU)<br />\n"
356
+ "Icelandic (is_IS) by Eggert Johannesson<br />\n"
357
+ "Indonesian (id_ID)<br />\n"
358
+ "Italian (it_IT)<br />\n"
359
+ "Japanese (ja)<br />\n"
360
+ "Korean (ko_KR)<br />\n"
361
+ "Latvian (lv)<br />\n"
362
+ "Lithuanian (lt_LT)<br />\n"
363
+ "Macedonian (mk_MK)<br />\n"
364
+ "Malay (ms_MY)<br />\n"
365
+ "Maltese (mt_MT)<br />\n"
366
+ "Norwegian (nb_NO)<br />\n"
367
+ "Persian (fa_IR)<br />\n"
368
+ "Polish (pl_PL)<br />\n"
369
+ "Portuguese (pt_PT)<br />\n"
370
+ "Russian (ru_RU)<br />\n"
371
+ "Romanian (ro_RO)<br />\n"
372
+ "Serbian (sr_RS)<br />\n"
373
+ "Slovak (sk_SK)<br />\n"
374
+ "Spanish (es_ES) by Alexandro Lacadena<br />\n"
375
+ "Swedish (sv_SE)<br />\n"
376
+ "Tamil (ta)<br />\n"
377
+ "Thai (th)<br />\n"
378
+ "Turkish (tr_TR)<br />\n"
379
+ "Ukrainian (uk_UA)<br />\n"
380
+ "Vietnamese (vi)"
381
+ msgstr ""
382
+
383
+ #. Found in installation header.
384
+ msgid "Thank you for your interest in Photo Gallery."
385
+ msgstr ""
386
+
387
+ #. Found in installation header.
388
+ msgid "Minimum requirements."
389
+ msgstr ""
390
+
391
+ #. Found in installation header.
392
+ msgid "Perform a new installation"
393
+ msgstr ""
394
+
395
+ #. Found in installation list item.
396
+ msgid "Wordpress 3.4+ "
397
+ msgstr ""
398
+
399
+ #. Found in installation list item.
400
+ msgid "PHP 5.x "
401
+ msgstr ""
402
+
403
+ #. Found in installation list item.
404
+ msgid "MySQL 5.x "
405
+ msgstr ""
406
+
407
+ #. Found in installation list item.
408
+ msgid "Log in to the administrator panel. "
409
+ msgstr ""
410
+
411
+ #. Found in installation list item.
412
+ msgid "Go to Plugins Add &gt; New &gt; Upload. "
413
+ msgstr ""
414
+
415
+ #. Found in installation list item.
416
+ msgid "Click <code>Install Now</code> button. "
417
+ msgstr ""
418
+
419
+ #. Found in installation list item.
420
+ msgid "Click <code>Activate Plugin</code> button for activating the gallery plugin. "
421
+ msgstr ""
422
+
423
+ #. Found in installation list item.
424
+ msgid "If the installation does not succeed, please contact us at <a href=\"mailto:info@web-dorado.com\">info@web-dorado.com</a>."
425
+ msgstr ""
426
+
427
+ #. Found in installation paragraph.
428
+ msgid "After downloading the ZIP file,"
429
+ msgstr ""
430
+
431
+ #. Found in changelog list item.
432
+ msgid "Changed: Blog style view scroll load. "
433
+ msgstr ""
434
+
435
+ #. Found in changelog list item.
436
+ msgid "Changed: Lightbox buttons responsiveness. "
437
+ msgstr ""
438
+
439
+ #. Found in changelog list item.
440
+ msgid "Fixed: Spanish translation by Alexandro Lacadena. "
441
+ msgstr ""
442
+
443
+ #. Found in changelog list item.
444
+ msgid "Fixed: Album view bug. "
445
+ msgstr ""
446
+
447
+ #. Found in changelog list item.
448
+ msgid "Fixed: Random ordering. "
449
+ msgstr ""
450
+
451
+ #. Found in changelog list item.
452
+ msgid "Changed: Pause embed video on image change. "
453
+ msgstr ""
454
+
455
+ #. Found in changelog list item.
456
+ msgid "Fixed: Translations bug in javascript. "
457
+ msgstr ""
458
+
459
+ #. Found in changelog list item.
460
+ msgid "Added: Backend translation. "
461
+ msgstr ""
462
+
463
+ #. Found in changelog list item.
464
+ msgid "Fixed: Pagination on tags page. "
465
+ msgstr ""
466
+
467
+ #. Found in changelog list item.
468
+ msgid "Fixed: Minor bug in backend. "
469
+ msgstr ""
470
+
471
+ #. Found in changelog list item.
472
+ msgid "Fixed: Right click protection on Safari. "
473
+ msgstr ""
474
+
475
+ #. Found in changelog list item.
476
+ msgid "Added: Export/Import add-on. "
477
+ msgstr ""
478
+
479
+ #. Found in changelog list item.
480
+ msgid "Fixed: Embed media responsiveness. "
481
+ msgstr ""
482
+
483
+ #. Found in changelog list item.
484
+ msgid "Changed: Permissions for shortcode(pro version). "
485
+ msgstr ""
486
+
487
+ #. Found in changelog list item.
488
+ msgid "Added: Show/hide custom post types (optional). "
489
+ msgstr ""
490
+
491
+ #. Found in changelog list item.
492
+ msgid "Fixed: Bug in comments."
493
+ msgstr ""
494
+
495
+ #. Found in changelog list item.
496
+ msgid "Changed: Licensing page."
497
+ msgstr ""
498
+
499
+ #. Found in changelog list item.
500
+ msgid "Changed: Thumbnail click action. "
501
+ msgstr ""
502
+
503
+ #. Found in changelog list item.
504
+ msgid "Added: Filter by tags in frontend."
505
+ msgstr ""
506
+
507
+ #. Found in changelog list item.
508
+ msgid "Changed: Notices show order. "
509
+ msgstr ""
510
+
511
+ #. Found in changelog list item.
512
+ msgid "New: Facebook embed add-on. "
513
+ msgstr ""
514
+
515
+ #. Found in changelog list item.
516
+ msgid "Added: Add-ons page."
517
+ msgstr ""
518
+
519
+ #. Found in changelog list item.
520
+ msgid "Added: Translation in Icelandic. Thanks to Eggert Johannesson. "
521
+ msgstr ""
522
+
523
+ #. Found in changelog list item.
524
+ msgid "Fixed: Serbian translation. "
525
+ msgstr ""
526
+
527
+ #. Found in changelog list item.
528
+ msgid "Fixed: Share url on Pinterest. "
529
+ msgstr ""
530
+
531
+ #. Found in changelog list item.
532
+ msgid "Fixed: Edit images with quotas in name. "
533
+ msgstr ""
534
+
535
+ #. Found in changelog list item.
536
+ msgid "Fixed: Edit newly added images. "
537
+ msgstr ""
538
+
539
+ #. Found in changelog list item.
540
+ msgid "Changed: Featured plugins page. "
541
+ msgstr ""
542
+
543
+ #. Found in changelog list item.
544
+ msgid "Fixed: Play/pause button in carousel view. "
545
+ msgstr ""
546
+
547
+ #. Found in changelog list item.
548
+ msgid "Fixed: Recreate thumbnail. "
549
+ msgstr ""
550
+
551
+ #. Found in changelog list item.
552
+ msgid "Fixed: Division by zero in pagination. "
553
+ msgstr ""
554
+
555
+ #. Found in changelog list item.
556
+ msgid "Changed: Add to pinterest description image alt. "
557
+ msgstr ""
558
+
559
+ #. Found in changelog list item.
560
+ msgid "Added: Support/rate us messages. "
561
+ msgstr ""
562
+
563
+ #. Found in changelog list item.
564
+ msgid "Fixed: Image browser view pagination styles. "
565
+ msgstr ""
566
+
567
+ #. Found in changelog list item.
568
+ msgid "Fixed: Open shared album image."
569
+ msgstr ""
570
+
571
+ #. Found in changelog list item.
572
+ msgid "Fixed: Image browse pagination."
573
+ msgstr ""
574
+
575
+ #. Found in changelog list item.
576
+ msgid "Added: Images count parameter for load more. "
577
+ msgstr ""
578
+
579
+ #. Found in changelog list item.
580
+ msgid "Fixed: Pinterest share. "
581
+ msgstr ""
582
+
583
+ #. Found in changelog list item.
584
+ msgid "Fixed: Depricated function in carousel. "
585
+ msgstr ""
586
+
587
+ #. Found in changelog list item.
588
+ msgid "Changed: Compability with Wordpress 4.3. "
589
+ msgstr ""
590
+
591
+ #. Found in changelog list item.
592
+ msgid "Fixed: JavaScript conflict with some themes."
593
+ msgstr ""
594
+
595
+ #. Found in changelog list item.
596
+ msgid "Added: Call photo gallery by php function."
597
+ msgstr ""
598
+
599
+ #. Found in changelog list item.
600
+ msgid "Fixed: Back to previous album/gallery."
601
+ msgstr ""
602
+
603
+ #. Found in changelog list item.
604
+ msgid "Added: Transition for mosaic view. "
605
+ msgstr ""
606
+
607
+ #. Found in changelog list item.
608
+ msgid "Changed: Activate, Deactivate hooks for multisite."
609
+ msgstr ""
610
+
611
+ #. Found in changelog list item.
612
+ msgid "Fixed: \"Open image in original size\" and \"Download original image\" for embed."
613
+ msgstr ""
614
+
615
+ #. Found in changelog list item.
616
+ msgid "Fixed: Instagram thumbnail."
617
+ msgstr ""
618
+
619
+ #. Found in changelog list item.
620
+ msgid "Fixed: Watermark link."
621
+ msgstr ""
622
+
623
+ #. Found in changelog list item.
624
+ msgid "New: Tools for editing images."
625
+ msgstr ""
626
+
627
+ #. Found in changelog list item.
628
+ msgid "Fixed: Security issue. "
629
+ msgstr ""
630
+
631
+ #. Found in changelog list item.
632
+ msgid "Fixed: Embed media for wordpress lower than 4.0.0."
633
+ msgstr ""
634
+
635
+ #. Found in changelog list item.
636
+ msgid "Changed: Save images ordering in admin."
637
+ msgstr ""
638
+
639
+ #. Found in changelog list item.
640
+ msgid "Fixed: Warnings in filemanager."
641
+ msgstr ""
642
+
643
+ #. Found in changelog list item.
644
+ msgid "Fixed: Prevent opening lightbox on swipe."
645
+ msgstr ""
646
+
647
+ #. Found in changelog list item.
648
+ msgid "New: Search by name in file manager. "
649
+ msgstr ""
650
+
651
+ #. Found in changelog list item.
652
+ msgid "New: Carousel view. "
653
+ msgstr ""
654
+
655
+ #. Found in changelog list item.
656
+ msgid "Fixed: Horizontal Mosaic view bug. "
657
+ msgstr ""
658
+
659
+ #. Found in changelog list item.
660
+ msgid "Fixed: Print bug. "
661
+ msgstr ""
662
+
663
+ #. Found in changelog list item.
664
+ msgid "New: Load more with scroll. "
665
+ msgstr ""
666
+
667
+ #. Found in changelog list item.
668
+ msgid "Fixed: Thumbnail size on recover. "
669
+ msgstr ""
670
+
671
+ #. Found in changelog list item.
672
+ msgid "Changed: Featured plugins page. "
673
+ msgstr ""
674
+
675
+ #. Found in changelog list item.
676
+ msgid "Fixed: Mosaic view show title. "
677
+ msgstr ""
678
+
679
+ #. Found in changelog list item.
680
+ msgid "Fixed: AddThis javascript bug. "
681
+ msgstr ""
682
+
683
+ #. Found in changelog list item.
684
+ msgid "New: Addthis (pro version). "
685
+ msgstr ""
686
+
687
+ #. Found in changelog list item.
688
+ msgid "Fixed: Link text font size in extended album description. "
689
+ msgstr ""
690
+
691
+ #. Found in changelog list item.
692
+ msgid "Fixed: Delete/update custom posts on gallery/album edit. "
693
+ msgstr ""
694
+
695
+ #. Found in changelog list item.
696
+ msgid "Fixed: Image width/height size with open comments. "
697
+ msgstr ""
698
+
699
+ #. Found in changelog list item.
700
+ msgid "New: Loop option for lightbox. "
701
+ msgstr ""
702
+
703
+ #. Found in changelog list item.
704
+ msgid "Fixed: Embed media by YouTube short url. "
705
+ msgstr ""
706
+
707
+ #. Found in changelog list item.
708
+ msgid "New: Load more button instead of pagination (optional). "
709
+ msgstr ""
710
+
711
+ #. Found in changelog list item.
712
+ msgid "Fixed: Minor bug on gallery save on php5.3. "
713
+ msgstr ""
714
+
715
+ #. Found in changelog list item.
716
+ msgid "Change links. "
717
+ msgstr ""
718
+
719
+ #. Found in changelog list item.
720
+ msgid "Changed: Featured plugins page. "
721
+ msgstr ""
722
+
723
+ #. Found in changelog list item.
724
+ msgid "New: Featured themes page. "
725
+ msgstr ""
726
+
727
+ #. Found in changelog list item.
728
+ msgid "change user guide links. "
729
+ msgstr ""
730
+
731
+ #. Found in changelog list item.
732
+ msgid "minor bug fixed."
733
+ msgstr ""
734
+
735
+ #. Found in changelog list item.
736
+ msgid "Fixed: Lightbox opening bug for ios."
737
+ msgstr ""
738
+
739
+ #. Found in changelog list item.
740
+ msgid "Fixed: Lightbox opening bug for mobile browsers."
741
+ msgstr ""
742
+
743
+ #. Found in changelog list item.
744
+ msgid "duplicated id in slideshow view. "
745
+ msgstr ""
746
+
747
+ #. Found in changelog list item.
748
+ msgid "deprecated options removed (roles). "
749
+ msgstr ""
750
+
751
+ #. Found in changelog list item.
752
+ msgid "bug in preload option fixed."
753
+ msgstr ""
754
+
755
+ #. Found in changelog list item.
756
+ msgid "minor bugs fixes."
757
+ msgstr ""
758
+
759
+ #. Found in changelog list item.
760
+ msgid "conflict with some themes fixed."
761
+ msgstr ""
762
+
763
+ #. Found in changelog list item.
764
+ msgid "New: Bottom pagination in admin views. "
765
+ msgstr ""
766
+
767
+ #. Found in changelog list item.
768
+ msgid "New: Improve SEO. "
769
+ msgstr ""
770
+
771
+ #. Found in changelog list item.
772
+ msgid "New: Autohide option for slideshow and lightbox navigation buttons. "
773
+ msgstr ""
774
+
775
+ #. Found in changelog list item.
776
+ msgid "New: Read image meta data. "
777
+ msgstr ""
778
+
779
+ #. Found in changelog list item.
780
+ msgid "Fixed: Slideshow bullets centering. "
781
+ msgstr ""
782
+
783
+ #. Found in changelog list item.
784
+ msgid "Fixed: Admin-ajax url for frontend. "
785
+ msgstr ""
786
+
787
+ #. Found in changelog list item.
788
+ msgid "Fixed: Upload images to .original not resized. "
789
+ msgstr ""
790
+
791
+ #. Found in changelog list item.
792
+ msgid "Fixed: Order by filename. "
793
+ msgstr ""
794
+
795
+ #. Found in changelog list item.
796
+ msgid "New: Embed support. "
797
+ msgstr ""
798
+
799
+ #. Found in changelog list item.
800
+ msgid "New: Photo gallery can be loaded through AJAX request. "
801
+ msgstr ""
802
+
803
+ #. Found in changelog list item.
804
+ msgid "New: Image meta auto-filling. "
805
+ msgstr ""
806
+
807
+ #. Found in changelog list item.
808
+ msgid "Changed: Deleted tag posts. "
809
+ msgstr ""
810
+
811
+ #. Found in changelog list item.
812
+ msgid "Changed: Improved security of backend. "
813
+ msgstr ""
814
+
815
+ #. Found in changelog list item.
816
+ msgid "Fixed: Thumbnail and filmstrip sizes for embeds. "
817
+ msgstr ""
818
+
819
+ #. Found in changelog list item.
820
+ msgid "Fixed: Search in backend galleries view. "
821
+ msgstr ""
822
+
823
+ #. Found in changelog list item.
824
+ msgid "Fixed: Gallery box image URL on a page with multiple galleries. "
825
+ msgstr ""
826
+
827
+ #. Found in changelog list item.
828
+ msgid "Fixed: Maximize/resize buttons in gallery box when exiting fullscreen. "
829
+ msgstr ""
830
+
831
+ #. Found in changelog list item.
832
+ msgid "Fixed: Other minor bugs. "
833
+ msgstr ""
834
+
835
+ #. Found in changelog list item.
836
+ msgid "added large image url in page source for SEO. "
837
+ msgstr ""
838
+
839
+ #. Found in changelog list item.
840
+ msgid "shortcode issue fixed . "
841
+ msgstr ""
842
+
843
+ #. Found in changelog list item.
844
+ msgid "Front-end image sorting possibility (dropdown) for the users. "
845
+ msgstr ""
846
+
847
+ #. Found in changelog list item.
848
+ msgid "security issue fixed. "
849
+ msgstr ""
850
+
851
+ #. Found in changelog list item.
852
+ msgid "bug in fullscreen button and laoding image animation fixed."
853
+ msgstr ""
854
+
855
+ #. Found in changelog list item.
856
+ msgid "updated font-awesome to 4.2.0 version. "
857
+ msgstr ""
858
+
859
+ #. Found in changelog list item.
860
+ msgid "sort bug in ligthbox."
861
+ msgstr ""
862
+
863
+ #. Found in changelog list item.
864
+ msgid "security issue fixed."
865
+ msgstr ""
866
+
867
+ #. Found in changelog list item.
868
+ msgid "masonry album view type. "
869
+ msgstr ""
870
+
871
+ #. Found in changelog list item.
872
+ msgid "single quota bug in image fixed."
873
+ msgstr ""
874
+
875
+ #. Found in changelog list item.
876
+ msgid "bug in new image save fixed."
877
+ msgstr ""
878
+
879
+ #. Found in changelog list item.
880
+ msgid "wrap around in lightbox."
881
+ msgstr ""
882
+
883
+ #. Found in changelog list item.
884
+ msgid "pagination input."
885
+ msgstr ""
886
+
887
+ #. Found in changelog list item.
888
+ msgid "play icon over the video thumbnail."
889
+ msgstr ""
890
+
891
+ #. Found in changelog list item.
892
+ msgid "add upload images with custom size."
893
+ msgstr ""
894
+
895
+ #. Found in changelog list item.
896
+ msgid "minor changes in shortcode generation code. "
897
+ msgstr ""
898
+
899
+ #. Found in changelog list item.
900
+ msgid "change shortcodes."
901
+ msgstr ""
902
+
903
+ #. Found in changelog list item.
904
+ msgid "images count in ligthbox (optional - only in options page). "
905
+ msgstr ""
906
+
907
+ #. Found in changelog list item.
908
+ msgid "images count column in galleries table. "
909
+ msgstr ""
910
+
911
+ #. Found in changelog list item.
912
+ msgid "WordPress Search Integration by gallery and album title. "
913
+ msgstr ""
914
+
915
+ #. Found in changelog list item.
916
+ msgid "show gallery, album title (optional - only in options page). "
917
+ msgstr ""
918
+
919
+ #. Found in changelog list item.
920
+ msgid "Bug fixed in tag cloud widget. "
921
+ msgstr ""
922
+
923
+ #. Found in changelog list item.
924
+ msgid "Bug fixed in filemanager. "
925
+ msgstr ""
926
+
927
+ #. Found in changelog list item.
928
+ msgid "change in loading. "
929
+ msgstr ""
930
+
931
+ #. Found in changelog list item.
932
+ msgid "added option \"Import from Media Library\". "
933
+ msgstr ""
934
+
935
+ #. Found in changelog list item.
936
+ msgid "bug fixed in save gallery. "
937
+ msgstr ""
938
+
939
+ #. Found in changelog list item.
940
+ msgid "Improve translation, Add tags to all images. "
941
+ msgstr ""
942
+
943
+ #. Found in changelog list item.
944
+ msgid "redirect from widget, unique tags name. "
945
+ msgstr ""
946
+
947
+ #. Found in changelog list item.
948
+ msgid "order option for album images. "
949
+ msgstr ""
950
+
951
+ #. Found in changelog list item.
952
+ msgid "added option for sorting gallery images within album. "
953
+ msgstr ""
954
+
955
+ #. Found in changelog list item.
956
+ msgid "bug fixed on lightbox. "
957
+ msgstr ""
958
+
959
+ #. Found in changelog list item.
960
+ msgid "preload images count options. "
961
+ msgstr ""
962
+
963
+ #. Found in changelog list item.
964
+ msgid "redirect url optional. "
965
+ msgstr ""
966
+
967
+ #. Found in changelog list item.
968
+ msgid "added search images in gallery (optional), optional info, resize."
969
+ msgstr ""
970
+
971
+ #. Found in changelog list item.
972
+ msgid "added option for show image title/description on lightbox."
973
+ msgstr ""
974
+
975
+ #. Found in changelog list item.
976
+ msgid "added tag cloud ordering option, keep aspect ratio."
977
+ msgstr ""
978
+
979
+ #. Found in changelog list item.
980
+ msgid "youtube, vimeo."
981
+ msgstr ""
982
+
983
+ #. Found in changelog list item.
984
+ msgid "added tag cloud options and zip upload."
985
+ msgstr ""
986
+
987
+ #. Found in changelog list item.
988
+ msgid "bug fixed on WP 3.9 editor."
989
+ msgstr ""
990
+
991
+ #. Found in changelog list item.
992
+ msgid "gallery alignment bug fixed."
993
+ msgstr ""
994
+
995
+ #. Found in changelog list item.
996
+ msgid "corrected album ordering and added slideshow widget filmstrip height option."
997
+ msgstr ""
998
+
999
+ #. Found in changelog list item.
1000
+ msgid "added swipe effect on lightbox."
1001
+ msgstr ""
1002
+
1003
+ #. Found in changelog list item.
1004
+ msgid "added option disable/enable right click."
1005
+ msgstr ""
1006
+
1007
+ #. Found in changelog list item.
1008
+ msgid "bug fixed in slideshow ."
1009
+ msgstr ""
1010
+
1011
+ #. Found in changelog list item.
1012
+ msgid "removed enters from code (conflicts fixed)."
1013
+ msgstr ""
1014
+
1015
+ #. Found in changelog list item.
1016
+ msgid "critical bug with uninstall fixed."
1017
+ msgstr ""
1018
+
1019
+ #. Found in changelog list item.
1020
+ msgid "improved file upload and save on gallery."
1021
+ msgstr ""
1022
+
1023
+ #. Found in changelog list item.
1024
+ msgid "improved filemanager functionality, fix bug on widget."
1025
+ msgstr ""
1026
+
1027
+ #. Found in changelog list item.
1028
+ msgid "bug fixed in file manager. "
1029
+ msgstr ""
1030
+
1031
+ #. Found in changelog list item.
1032
+ msgid "added shortcode generator, thumbnail title, thumb size in filemanager, bug fixed in slideshow. "
1033
+ msgstr ""
1034
+
1035
+ #. Found in changelog list item.
1036
+ msgid "bug fixed in album view ."
1037
+ msgstr ""
1038
+
1039
+ #. Found in changelog list item.
1040
+ msgid "php 5.2 capability."
1041
+ msgstr ""
1042
+
1043
+ #. Found in changelog list item.
1044
+ msgid "Initial version."
1045
+ msgstr ""
1046
+
1047
+ #. Found in changelog paragraph.
1048
+ msgid ""
1049
+ "= 1.2.34= \n"
1050
+ "* New: Recreate thumbnail button in gallery page."
1051
+ msgstr ""
1052
+
1053
+ #. Found in changelog paragraph.
1054
+ msgid "Edit licensing page."
1055
+ msgstr ""
1056
+
1057
+ #. Found in faq header.
1058
+ msgid "1. How can I add images to the Photo Gallery?"
1059
+ msgstr ""
1060
+
1061
+ #. Found in faq header.
1062
+ msgid "2. What is the difference between galleries and albums?"
1063
+ msgstr ""
1064
+
1065
+ #. Found in faq header.
1066
+ msgid "3. Can I add images using FTP?"
1067
+ msgstr ""
1068
+
1069
+ #. Found in faq header.
1070
+ msgid "4. Can I add multiple galleries/albums for a single page/domain?"
1071
+ msgstr ""
1072
+
1073
+ #. Found in faq header.
1074
+ msgid "5. Is it possible to translate Photo Gallery into another language?"
1075
+ msgstr ""
1076
+
1077
+ #. Found in faq header.
1078
+ msgid "6. Is the Photo Gallery responsive?"
1079
+ msgstr ""
1080
+
1081
+ #. Found in faq header.
1082
+ msgid "7. Is it possible to add advertising or watermark over the images with free version?"
1083
+ msgstr ""
1084
+
1085
+ #. Found in faq paragraph.
1086
+ msgid "The images can be added to Photo Gallery using its standard File Manager. The uploader can be used both for uploading individual images or multiple images (This should done by uploading a .zip archive file)"
1087
+ msgstr ""
1088
+
1089
+ #. Found in faq paragraph.
1090
+ msgid "The galleries are designed to contain images, whereas albums contain either galleries and/or other albums."
1091
+ msgstr ""
1092
+
1093
+ #. Found in faq paragraph.
1094
+ msgid "Unfortunately, there is no such option. During the upload the thumbnails of the images are being created, whereas when using FTP the thumbnails do not get generated. The image thumbnails are required for most of the views. Thus using Media Upload is the only option."
1095
+ msgstr ""
1096
+
1097
+ #. Found in faq paragraph.
1098
+ msgid "Yes, you can add as many galleries/albums within a single post or domain as you wish. There are no limitations on these options."
1099
+ msgstr ""
1100
+
1101
+ #. Found in faq paragraph.
1102
+ msgid "It is only possible to translate the front end of the plugin. To do so, you should set define('WPLANG','[lang_code]') to the desired language code in wp_config.php file of your website. This way the plugin should be translated automatically. Please be informed, that you can modify the translations from wp-content/plugins/photo_gallery/languages/ (you will need POEdit http://www.poedit.net/download.php). You can find the language codes for the Photo Gallery in Wordpress.org appropriate plugins' page."
1103
+ msgstr ""
1104
+
1105
+ #. Found in faq paragraph.
1106
+ msgid "Yes, the Photo Gallery is responsive and displays resized image for the mobile devices and tablets."
1107
+ msgstr ""
1108
+
1109
+ #. Found in faq paragraph.
1110
+ msgid "Yes, it is possible to add advertising and/or watermark over the images. In both cases it can be only a single ad/watermark for all images."
1111
+ msgstr ""
1112
+
1113
+ #. Found in remaining content header.
1114
+ msgid "Wordpress Photo Gallery Step by step guide"
1115
+ msgstr ""
1116
+
1117
+ #. Found in remaining content header.
1118
+ msgid "Step 1: Installing the Gallery"
1119
+ msgstr ""
1120
+
1121
+ #. Found in remaining content header.
1122
+ msgid "Step 2: Creating/Editing Galleries for the Photo Gallery."
1123
+ msgstr ""
1124
+
1125
+ #. Found in remaining content header.
1126
+ msgid "Step 3: Creating/Editing Tags for the Photo Gallery galleries and albums."
1127
+ msgstr ""
1128
+
1129
+ #. Found in remaining content header.
1130
+ msgid "Step 4: Creating/Editing Albums for the Photo Gallery."
1131
+ msgstr ""
1132
+
1133
+ #. Found in remaining content header.
1134
+ msgid "Step 5: Editing Options for Photo Gallery."
1135
+ msgstr ""
1136
+
1137
+ #. Found in remaining content header.
1138
+ msgid "Step 6: Creating/Editing Themes for different views of the Photo Gallery."
1139
+ msgstr ""
1140
+
1141
+ #. Found in remaining content header.
1142
+ msgid "Step 7: Editing comments."
1143
+ msgstr ""
1144
+
1145
+ #. Found in remaining content header.
1146
+ msgid "Step 8: Publishing the Created Photo Gallery."
1147
+ msgstr ""
1148
+
1149
+ #. Found in remaining content header.
1150
+ msgid "Step 9: Publishing Photo Gallery widgets."
1151
+ msgstr ""
1152
+
1153
+ #. Found in remaining content header.
1154
+ msgid "Step 10: Generating shortcode for the Photo Gallery."
1155
+ msgstr ""
1156
+
1157
+ #. Found in remaining content paragraph.
1158
+ msgid ""
1159
+ "1.1 Minimum requirements.<br />\n"
1160
+ "Wordpress 3.4+<br />\n"
1161
+ "PHP 5.x<br />\n"
1162
+ "MySQL 5.x"
1163
+ msgstr ""
1164
+
1165
+ #. Found in remaining content paragraph.
1166
+ msgid ""
1167
+ "1.2 Perform a new installation.<br />\n"
1168
+ "Log in to the administrator panel.<br />\n"
1169
+ "Go to Plugins Add &gt; New &gt; Upload.<br />\n"
1170
+ "Click <code>Choose file</code> (<code>Browse</code>) and select the Photo Gallery zip file.<br />\n"
1171
+ "Click <code>Upload&amp;Install</code> button.<br />\n"
1172
+ "Click <code>Activate Plugin</code> button for activating the plugin.<br />\n"
1173
+ "If the installation succeeded you will see the success message. If any problem occurs, please contact us info@web-dorado.com."
1174
+ msgstr ""
1175
+
1176
+ #. Found in remaining content paragraph.
1177
+ msgid ""
1178
+ "2.1 On the left menu select Photo Gallery&gt;Add Galleries/Images&gt; Add new.<br />\n"
1179
+ "2.2 Name. Specify the name of the gallery.<br />\n"
1180
+ "2.3 Slug. Specify the alias in your website for the gallery.<br />\n"
1181
+ "2.4 Description. Fill in the information you would like to share with the gallery. The description will be visible with some of the gallery views.<br />\n"
1182
+ "2.5 Author. This indicates the author of the gallery. It automatically includes the name of the logged in user, who has added the gallery.<br />\n"
1183
+ "2.6 Published. Choose whether to publish the gallery or to leave it for the further publication.<br />\n"
1184
+ "2.7 Preview image. Indicate the gallery image which will be used to preview the gallery. If you leave it blank, it will automatically pick the first gallery image among the uploaded files. \n"
1185
+ "2.8 Images. You can add photos to the gallery by clicking Add Images button."
1186
+ msgstr ""
1187
+
1188
+ #. Found in remaining content paragraph.
1189
+ msgid ""
1190
+ "The Photo Gallery plugin is not using standard WordPress Media Manager, instead here you will be redirected to Photo Gallery File Manager. After uploading images you should mark them and press Add button.<br />\n"
1191
+ "Photo Gallery File Manager<br />\n"
1192
+ "2.8.1 Up. This button will allow you to move within the taxonomy of the folder to a higher level folder to upload image from there.<br />\n"
1193
+ "2.8.2 Make a directory. You can indicate the location of the directory to get images to be used in the gallery.<br />\n"
1194
+ "2.8.3 Rename item. You can rename the chosen gallery images without leaving the uploader.<br />\n"
1195
+ "2.8.4 Copy. You can copy images and directories to use in the galleries and albums.<br />\n"
1196
+ "2.8.5 Cut. You can cut images and directories.<br />\n"
1197
+ "2.8.6 Paste. You can paste copied/cut images and directories.<br />\n"
1198
+ "2.8.7 Remove items. You can remove any amount of items from the list, including gallery folder, images.<br />\n"
1199
+ "2.8.8 Upload files. You can upload images to your gallery from your PC and other devices using this feature. Multi-upload is also possible. To upload all images for the use in the gallery, you should first press Ctrl+A."
1200
+ msgstr ""
1201
+
1202
+ #. Found in remaining content paragraph.
1203
+ msgid ""
1204
+ "To add the images to your Gallery, you should press Add the selected images to gallery button.<br />\n"
1205
+ "Important! Before uploading an image, you should provide dimensions for the generated thumbnail at the top of the Media Upload window or leave it to default value set in the Thumbnail options (Options Menu). This way the thumbnail view of the Gallery will use the specified dimension of the gallery.<br />\n"
1206
+ "2.8.9 View options: View thumbnails. Displays uploaded gallery images in Thumbnail view.<br />\n"
1207
+ "View list. Displays uploaded gallery images in list view."
1208
+ msgstr ""
1209
+
1210
+ #. Found in remaining content paragraph.
1211
+ msgid ""
1212
+ "Now let`s explore the individual gallery image options. Refer to the buttons on the right side and below.<br />\n"
1213
+ "2.9 Set Watermark. You can apply the created watermark by checking the gallery image you want to add the watermark to and pressing the button. The watermark can be created in Options menu of the Gallery plugin. You can also add the watermark to all gallery images first selecting all gallery images and then pressing Set watermark button.<br />\n"
1214
+ "2.10 Reset. You can reset the gallery images to the default by selecting multiple/all images and pressing this button. It will remove all kind of changes, including crop, rotate and watermark changes to individual images or the entire gallery as such.<br />\n"
1215
+ "2.11 Show order column. You can either Drag and Drop gallery images to change the positioning of the images in the gallery or prefer order column, where you can provide numbering for the images to be displayed in a gallery. This option is more useful when you have multiple pages of images and it is not convenient to use Drag/Drop.<br />\n"
1216
+ "2.12 Save images. Using this button you can save only the changes made with the images, the changes with the gallery as a whole should be saved with the upper Save button.<br />\n"
1217
+ "2.13 Publish. Check the images you want to publish in the gallery and press the button.<br />\n"
1218
+ "2.14 Unpublish. Check the images you want to temporary unpublish from the gallery and press the button.<br />\n"
1219
+ "2.15 Delete. Check the images you want to remove from the gallery or album and press the button.<br />\n"
1220
+ "2.16 Crop. You can crop the image for creating the Thumbnail for the large image. The thumbnail will be available with some of the gallery views.<br />\n"
1221
+ "2.17 Rotate. You can rotate the thumbnail image. The change will also affect the larger image displayed within the gallery.<br />\n"
1222
+ "2.18 Reset. If you want to return to the original image, undo crop and reset, you can use this button.<br />\n"
1223
+ "2.19 Alt/Title. Provide a title for each gallery image.<br />\n"
1224
+ "2.20 Description. You can additionally have a description for the gallery images to provide detailed information.<br />\n"
1225
+ "2.21 Tags. Each gallery image can have a number of tags from the list of created tags.<br />\n"
1226
+ "2.22 Published. Choose whether to publish or unpublish the uploaded images within the gallery.<br />\n"
1227
+ "<h4>Step 3: Creating/Editing Tags for the Photo Gallery galleries and albums.</h4> \n"
1228
+ "3.1 On the left menu select Photo Gallery&gt; Tags.<br />\n"
1229
+ "3.2 Name. Provide a title for the tag.<br />\n"
1230
+ "3.3 Slug. Specify the alias for the tag in your website.<br />\n"
1231
+ "3.4 Add Tag. Press this button to add the created tag into the list.<br />\n"
1232
+ "<h4>Step 4: Creating/Editing Albums for the Photo Gallery.</h4><br />\n"
1233
+ "4.1 On the left menu select Photo Gallery&gt; Albums&gt; Add new.<br />\n"
1234
+ "4.2 Name. Provide a name for the album.<br />\n"
1235
+ "4.3 Slug. Specify the alias for the album in your website.<br />\n"
1236
+ "4.4 Description. Provide a detailed description for the album.<br />\n"
1237
+ "4.5 Author. The author of the album will be automatically set by the logged in user, who creates the album.<br />\n"
1238
+ "4.6 Published. Choose whether to publish the album or not.<br />\n"
1239
+ "4.7 Preview Image. Choose the preview image for the album. If you leave it blank it will automatically use the first image used in the album.<br />\n"
1240
+ "4.8 Albums and Galleries. Choose gallery, galleries or already created albums to be used in the album. Here you can add multiple galleries and albums. There is no such limitation. \n"
1241
+ "4.9 Drag/Drop. After adding the albums you will be able to use drag/drop option to set the order for the albums to be displayed.<br />\n"
1242
+ "<h4>Step 5: Editing Options for Photo Gallery.</h4><br />\n"
1243
+ "Here you can change default options for different views of Photo Gallery, as well as general options of the galleries and albums. You can simply navigate here choosing the corresponding tab.<br />\n"
1244
+ "5.1 Global Options of Photo Gallery.<br />\n"
1245
+ "5.1.1 Images directory. Provide an image directory location which will host the uploaded gallery images.<br />\n"
1246
+ "5.1.2 Gallery role. Choose whether only author can make changes in the gallery or not.<br />\n"
1247
+ "5.1.3 Album role. Choose whether only author can make changes in the albums or not.<br />\n"
1248
+ "5.1.4 Image role. Choose whether only author can make changes in the gallery images or not.<br />\n"
1249
+ "5.1.5 Show Search box. Choose whether to display a search box for the image search in galleries or not.\n"
1250
+ "5.1.6 Search box width. Set the width for the search box displayed with the gallery. \n"
1251
+ "5.1.7. Preload images. Choose whether to have a preload for specific number of gallery images first or have them all loaded and only then displayed in the slideshow of the gallery.\n"
1252
+ "5.1.8. Count of images. Specify the number of gallery images which will be loaded before opening the slideshow. The rest of the images will be loaded during the processing of the slideshow."
1253
+ msgstr ""
1254
+
1255
+ #. Found in remaining content paragraph.
1256
+ msgid ""
1257
+ "5.2 Watermark. You can use this option to add different types of watermarks on your gallery images.<br />\n"
1258
+ "5.2.1 Watermark Type. Choose what kind of advertisement you want to use from provided 2 options (text, image) or not to use watermarks in your galleries and albums.<br />\n"
1259
+ "5.2.2 Text<br />\n"
1260
+ "Watermark text. Provide the text which will be displayed over the gallery/album images.<br />\n"
1261
+ "Watermark font size. Specify the font size of the watermark in percentage for the responsive look.<br />\n"
1262
+ "Watermark font style. Specify the font family for the watermark text. There will be two default font styles to select from, but you will be able to further add more styles by inserting the fonts into the <code>fonts</code> folder in the Plugin folder.<br />\n"
1263
+ "Watermark color. Select the watermark text font color.<br />\n"
1264
+ "Watermark opacity. Define the level of opacity for the watermark, providing its percentage.<br />\n"
1265
+ "Watermark position. Choose the positioning of the watermark from the available 9 options.<br />\n"
1266
+ "5.2.3 Image<br />\n"
1267
+ "Watermark URL. Provide the absolute URL of the image which will be used for the watermark.<br />\n"
1268
+ "Watermark image size. Define the size (in percentage for the responsive look) of the image used for the watermark.<br />\n"
1269
+ "Watermark position. Choose the positioning of the watermark from the available 9 options."
1270
+ msgstr ""
1271
+
1272
+ #. Found in remaining content paragraph.
1273
+ msgid ""
1274
+ "5.3. Advertisement. You can use this option to add advertisement over the gallery or album images.<br />\n"
1275
+ "5.3.1 Advertisement Type. Choose what kind of advertisement you want to use from the provided 2 options (text, image) or not to use ads in your galleries and albums.<br />\n"
1276
+ "5.3.2 Text<br />\n"
1277
+ "Advertisement text. Provide the text which will be displayed over the gallery/album images.<br />\n"
1278
+ "Advertisement link. Provide the link, which will open in a new window, when the user clicks on advertisement text.<br />\n"
1279
+ "Advertisement font size. Specify the font size of the advertisement text.<br />\n"
1280
+ "Advertisement font style. Specify the font family for the text used with the advertisement.<br />\n"
1281
+ "Advertisement color. Select the font color which will be used with the advertisements.<br />\n"
1282
+ "Advertisement opacity. Define the level of opacity for the advertisement, providing its percentage.<br />\n"
1283
+ "Advertisement position. Choose the positioning of the advertisement from the available 9 options.<br />\n"
1284
+ "5.3.3 Image<br />\n"
1285
+ "Advertisement URL. Provide the absolute URL of the image which will be used for the advertisement.<br />\n"
1286
+ "Advertisement link. Provide the link, which will open in a new window, when the user clicks on the advertisement image.<br />\n"
1287
+ "Advertisement dimensions. Define the dimensions of the image used for the advertisement.<br />\n"
1288
+ "Advertisement opacity. Define the level of opacity for the advertisement, providing its percentage.<br />\n"
1289
+ "Advertisement position. Choose the positioning of the advertisement from the available 9 options."
1290
+ msgstr ""
1291
+
1292
+ #. Found in remaining content paragraph.
1293
+ msgid ""
1294
+ "5.4 Lightbox<br />\n"
1295
+ "5.4.1 Ligthbox dimensions. Define the width and height of the lightbox which will be displayed with some of the gallery and album views.<br />\n"
1296
+ "5.4.2 Lightbox effect. Select the effect which will be applied to the slideshow of gallry images in the lightbox.<br />\n"
1297
+ "5.4.3 Interval. Provide the time interval between the display of slideshow images in seconds.<br />\n"
1298
+ "5.4.4 Enable filmstrip. Choose whether to include the filmstrip of gallery or album images in the lightbox or not.<br />\n"
1299
+ "5.4.5 Filmstrip height. Define the height of the filmstrip in pixels.<br />\n"
1300
+ "5.4.6 Enable control buttons. Choose whether to display control buttons in the lightbox or not.<br />\n"
1301
+ "5.4.7 Enable fullscreen. Choose whether to have a possibility of entering Fullscreen from the lightbox or not.\n"
1302
+ "5.4.8 Enable info. Choose whether to have possibility of displaying gallery image information (Title and description) in this view or not.\n"
1303
+ "5.4.9 Display info by default. Choose whether to display gallery image title by default when opening the lightbox or not. The image can be hidden hitting info button. \n"
1304
+ "5.4.10 Enable rating. Choose whether to display rating possibility for the gallery images or not.<br />\n"
1305
+ "5.4.11 Enable comments. Choose whether to display comments with the gallery images or not.<br />\n"
1306
+ "5.4.12 Enable Captcha for comments. Choose whether to have Captcha field for the possibility of adding comments as a human verification or not.<br />\n"
1307
+ "5.4.13 Enable original image display button. Choose whether to allow displaying original images upon clicking the button or not.<br />\n"
1308
+ "5.4.14 Enable image download. Choose whether to allow downloading the gallery images or not.<br />\n"
1309
+ "5.4.15 Enable Facebook button. Choose whether to display Facebook share button with the gallery images or not.<br />\n"
1310
+ "5.4.16 Enable Twitter button. Choose whether to display twit button with the gallery images or not.<br />\n"
1311
+ "5.4.17 Enable Google+ button. Choose whether to display Google+ share button with the gallery images or not.\n"
1312
+ "5.4.18 Enable Pinterest button. Choose whether to display Pinterest pin button with the gallery images or not.\n"
1313
+ "5.4.19 Enable Tumblr button. Choose whether to display Tumblr share button with the gallery images or not."
1314
+ msgstr ""
1315
+
1316
+ #. Found in remaining content paragraph.
1317
+ msgid ""
1318
+ "5.5 Album Options<br />\n"
1319
+ "5.5.1 Number of album columns. Provide the maximum number of columns to be displayed within a single album.<br />\n"
1320
+ "5.5.2 Albums per page. Provide the maximum number of albums available in a single page.<br />\n"
1321
+ "5.5.3 Enable pagination. Choose whether to provide pagination for the albums or not.<br />\n"
1322
+ "5.5.4 Show album title. Choose whether to display the album title or have it displayed only when hovered.<br />\n"
1323
+ "5.5.5 Enable extended album description. Choose whether to have extended album view option or not.<br />\n"
1324
+ "5.5.6 Album thumbnail dimensions. Define the width and height of the album thumbnails.<br />\n"
1325
+ "5.5.7 Extended album height. Define the height of the album in extended album view."
1326
+ msgstr ""
1327
+
1328
+ #. Found in remaining content paragraph.
1329
+ msgid ""
1330
+ "5.6 Slideshow<br />\n"
1331
+ "5.6.1 Slideshow effect. Select the slideshow effect to be applied to the galleries.<br />\n"
1332
+ "5.6.2 Interval. Provide the time interval between the slideshow images in seconds.<br />\n"
1333
+ "5.6.3 Slideshow dimensions. Define the width and height of the slideshow.<br />\n"
1334
+ "5.6.4 Enable autoplay. Choose either to have the slideshow auto played or allow the users to change the images with a click.<br />\n"
1335
+ "5.6.5 Enable shuffle. Choose whether to have the gallery images randomized in the slideshow or not.<br />\n"
1336
+ "5.6.6 Enable control buttons. Choose whether to display control buttons with image slideshow views or not.<br />\n"
1337
+ "5.6.7 Enable slideshow filmstrip. Choose whether to include the filmstrip of gallery images in the slideshow or not.<br />\n"
1338
+ "5.6.8 Slideshow filmstrip height. Define the height for the filmstrip for the slideshow.<br />\n"
1339
+ "5.6.9 Enable image title. Choose whether to display the titles for the slideshow images or not.<br />\n"
1340
+ "5.6.10 Title position. Select the positioning for the image title from the provided options.<br />\n"
1341
+ "5.6.11 Enable image description. Choose whether to have an image description or not.<br />\n"
1342
+ "5.6.12 Description position. Select the positioning for the image description from the provided options.<br />\n"
1343
+ "5.6.13 Enable slideshow music. Choose whether to have an audio track for the slideshow view or not.<br />\n"
1344
+ "5.6.14 Music URL. Provide the URL of the track which will be played alongside the slideshow."
1345
+ msgstr ""
1346
+
1347
+ #. Found in remaining content paragraph.
1348
+ msgid ""
1349
+ "5.7 Thumbnail Options<br />\n"
1350
+ "5.7.1 Number of image columns. Provide the maximum number of gallery image columns to be displayed with Thumbnails view.<br />\n"
1351
+ "5.7.2 Images per page. Provide the maximum number of gallery images to be displayed in a single page.<br />\n"
1352
+ "5.7.3 Show image title. Choose whether to always display the image title, have it displayed only when hovered or never display it.<br />\n"
1353
+ "5.7.4 Generated thumbnail dimensions. Provide the dimensions of the thumbnail image which will be generated from the original image.<br />\n"
1354
+ "5.7.5 Frontend thumbnail dimensions. Provide the dimensions of the image, which will be displayed in the front end as a thumbnail. This should be smaller than the generated thumbnail to keep the quality of the image.<br />\n"
1355
+ "5.7.6 Thumbnail dimensions. Specify the width and height of the gallery image thumbnails.<br />\n"
1356
+ "5.7.7 Enable image pagination. Choose whether to have image pagination or not."
1357
+ msgstr ""
1358
+
1359
+ #. Found in remaining content paragraph.
1360
+ msgid ""
1361
+ "5.8 Image Options<br />\n"
1362
+ "5.7.1 Enable image title for Image Browser view. Choose whether to display gallery image titles for the Image Browser view or not.<br />\n"
1363
+ "5.8.2 Enable image description for Image Browser view. Choose whether to have gallery image descriptions for the Image Browser view or not.<br />\n"
1364
+ "5.8.3 Image width. Define the gallery image width for the Image Browser view option.<br />\n"
1365
+ "5.8.4 Enable image title for Blog Style view. Choose whether to have gallery image titles in Blog Style view or not.<br />\n"
1366
+ "5.8.5 Image width for Blog Style view. Define the galllery image width for the Blog Style view.<br />\n"
1367
+ "5.8.6 Images per page in Blog Style view. Specify the number of gallery images to be displayed in a single page for the Blog Style view.<br />\n"
1368
+ "5.8.7 Enable Pagination for Blog Style view. Choose whether to have pagination for the Blog Style view or not."
1369
+ msgstr ""
1370
+
1371
+ #. Found in remaining content paragraph.
1372
+ msgid ""
1373
+ "Use one of the default Photo Gallery themes or click <code>Add new</code> button to create a new theme.<br />\n"
1374
+ "6.1 Thumbnails.<br />\n"
1375
+ "6.1.1 Name. Provide a name for the theme.<br />\n"
1376
+ "6.1.2 Margin. Define the space around the thumbnail in pixels.<br />\n"
1377
+ "6.1.3 Padding. Define the padding of the thumbnail.<br />\n"
1378
+ "6.1.4 Border width. Outline the border width of the thumbnail.<br />\n"
1379
+ "6.1.5 Border style. Choose the style to be applied to the border of the thumbnails.<br />\n"
1380
+ "6.1.6 Border color. Select the border color for the thumbnails.<br />\n"
1381
+ "6.1.7 Border radius. Define the border radius in CSS type values.<br />\n"
1382
+ "6.1.8 Shadow. Change the shadow of the image using CSS type values.<br />\n"
1383
+ "6.1.9 Thumbnail background color. Choose the background color for the thumbnails.<br />\n"
1384
+ "6.1.10 Thumbnail transparency. Specify the level of the transparency you want to apply to the thumbnails.<br />\n"
1385
+ "6.1.11 Full background color. Choose the background color for the overall thumbnail view box.<br />\n"
1386
+ "6.1.12 Full background transparency. Specify the level of the transparency you want to apply to the overall thumbnail view box.<br />\n"
1387
+ "6.1.13 Alignment. Select the alignment of the thumbnail box.\n"
1388
+ "6.1.14 Title position. Choose the position for the gallery title. \n"
1389
+ "6.1.15 Title font size. Define the font size for the gallery image title.<br />\n"
1390
+ "6.1.16 Title font color. Choose the gallery image title font color.<br />\n"
1391
+ "6.1.17 Title font family. Choose the font family for the gallery image title.\n"
1392
+ "6.1.18 Title font weight. Choose the font weight for the gallery image title.<br />\n"
1393
+ "6.1.19 Title box shadow. Using CSS type values set the box shadow for the gallery image title.<br />\n"
1394
+ "6.1.20 Title margin. Set the gallery image title margin using CSS type values."
1395
+ msgstr ""
1396
+
1397
+ #. Found in remaining content paragraph.
1398
+ msgid ""
1399
+ "6.2 Masonry<br />\n"
1400
+ "6.2.1 Name. Provide a name for the theme.<br />\n"
1401
+ "6.2.2 Padding. Define the padding of the individual gallery images.<br />\n"
1402
+ "6.2.3 Border width. Define the border with for the individual gallery images.<br />\n"
1403
+ "6.2.4 Border style. Select the style of the border from the provided options.<br />\n"
1404
+ "6.2.5 Border color. Select the border color for the border.<br />\n"
1405
+ "6.2.6 Border radius. Define the border radius for the individual gallery images using CSS type values.<br />\n"
1406
+ "6.2.7 Transparency. Specify the level of transparency for the individual gallery images.<br />\n"
1407
+ "6.2.8 Background color. Select a background color for the overall masonry box.<br />\n"
1408
+ "6.2.9 Background transparency. Specify the background transparency level.<br />\n"
1409
+ "6.2.10 Alignment. Choose the alignment of the masonry box in the page/post.<br />\n"
1410
+ "6.2.11 Hover effect. Select the effect of the individual gallery images when hovered or chose to have none.<br />\n"
1411
+ "6.2.12 Hover effect value. Specify the value of the chosen hover effect using CSS type values.<br />\n"
1412
+ "6.2.13 Transition. Choose whether to have a transition with hover effects or not."
1413
+ msgstr ""
1414
+
1415
+ #. Found in remaining content paragraph.
1416
+ msgid ""
1417
+ "6.3 Slideshow<br />\n"
1418
+ "6.3.1 Name. Provide a name for the theme.<br />\n"
1419
+ "6.3.2 Background color. Set the background color for the slideshow view.<br />\n"
1420
+ "6.3.3 Right, left buttons size. Determine the size for the Right and Left buttons.<br />\n"
1421
+ "6.3.4 Play, pause buttons size. Determine the size for Play and Pause buttons.<br />\n"
1422
+ "6.3.5 Buttons color. Pick the button color for the slideshow view.<br />\n"
1423
+ "6.3.6 Buttons transparency. Specify the level of transparency for the buttons.<br />\n"
1424
+ "6.3.7 Buttons hover color. Set the color for the buttons when hovered.<br />\n"
1425
+ "6.3.8 Right, left buttons width. Define the width for the Right and Left buttons.<br />\n"
1426
+ "6.3.9 Right, left buttons height. Define the height for the Right and Left buttons.<br />\n"
1427
+ "6.3.10 Right, left buttons background color. Choose the background color for the Right and Left buttons.<br />\n"
1428
+ "6.3.11 Right, left buttons border width. Set the border width for Right and Left buttons.<br />\n"
1429
+ "6.3.12 Right, left buttons border style. Select the border style for Right and Left buttons.<br />\n"
1430
+ "6.3.13 Right, left buttons border color. Pick the Right and Left button border color.<br />\n"
1431
+ "6.3.14 Right, left buttons border radius. Define the Right and Left button border radius.<br />\n"
1432
+ "6.3.15 Right, left buttons style. Choose a style to be applied to Right and Left buttons.<br />\n"
1433
+ "6.3.16 Right, left buttons box shadow. Determine the shadow level for the Right and Left buttons.<br />\n"
1434
+ "6.3.17 Filmstrip position. Specify the filmstrip position for the slideshow view.<br />\n"
1435
+ "6.3.18 Filmstrip margin. Set the margin for the filmstrip using CSS type values.<br />\n"
1436
+ "6.3.19 Filmstrip border width. Set the border width for the slideshow.<br />\n"
1437
+ "6.3.20 Filmstrip border style. Specify the border style for the filmstrip.<br />\n"
1438
+ "6.3.21 Filmstrip border color. Choose the border color for the filmstrip.<br />\n"
1439
+ "6.3.22 Filmstrip border radius . Define the border radius for the filmstrip.<br />\n"
1440
+ "6.3.23 Filmstrip active border width. Set the border width of the filmstrip item, which is currently displayed.<br />\n"
1441
+ "6.3.24 Filmstrip active border color. Select the border color of the filmstrip item, which is currently displayed.<br />\n"
1442
+ "6.3.25 Filmstrip deactive transparency. Specify the transparency level of the deactived filmstrip.<br />\n"
1443
+ "6.3.26 Filmstrip right, left buttons background color. Choose the background color for the Right and Left buttons used with the filmstrip.<br />\n"
1444
+ "6.3.27 Filmstrip right, left buttons color. Choose the button color for the Right and Left buttons used with the filmstrip.<br />\n"
1445
+ "6.3.28 Filmstrip right, left buttons size. Determine the button size for the Right and Left buttons used with the filmstrip.<br />\n"
1446
+ "6.3.29 Title background color. Set the background color for the slideshow image title.<br />\n"
1447
+ "6.3.30 Title transparency. Set the level of transparency for the slideshow image title. 6.3.31 Title border radius. Define the border radius for the slideshow image title.<br />\n"
1448
+ "6.3.32 Title padding. Set the slideshow image title padding using CSS type values.<br />\n"
1449
+ "6.3.33 Title font size. Define the font size for the slideshow image title.<br />\n"
1450
+ "6.3.34 Title color. Set the slideshow image title color.<br />\n"
1451
+ "6.3.35 Title font family. Determine the font family for the slideshow image title.<br />\n"
1452
+ "6.3.36 Description background color. Choose the background color for the slideshow image description.<br />\n"
1453
+ "6.3.37 Description transparency. Select the level of transparency for the slideshow image description.<br />\n"
1454
+ "6.3.38 Description border radius. Set the border radius for the slideshow image description.<br />\n"
1455
+ "6.3.39 Description padding. Set the padding for the slideshow image description.<br />\n"
1456
+ "6.3.40 Description font size. Define the font size for the slideshow image description.<br />\n"
1457
+ "6.3.41 Description color. Choose the color for the slideshow image description.<br />\n"
1458
+ "6.3.42 Description font family. Choose the font family for the slideshow image description.<br />\n"
1459
+ "6.3.43 Slider bullet width. Set the slider bullet width for the slideshow.<br />\n"
1460
+ "6.3.44 Slider bullet height. Set the slider bullet height for the slideshow.<br />\n"
1461
+ "6.3.45 Slider bullet border radius. Set the border radius for the slider bullet using CSS type values.<br />\n"
1462
+ "6.3.46 Slider bullet background color. Choose the background color for the slider bullet.<br />\n"
1463
+ "6.3.47 Slider bullet margin. Set the slider bullet margin using CSS type values.<br />\n"
1464
+ "6.3.48 Slider bullet active background color. Select the background color for the active slider bullet.<br />\n"
1465
+ "6.3.49 Slider bullet active border width. Set the border width for the active slider bullet.<br />\n"
1466
+ "6.3.50 Slider bullet active border color. Choose the border color for the active slider bullet."
1467
+ msgstr ""
1468
+
1469
+ #. Found in remaining content paragraph.
1470
+ msgid ""
1471
+ "6.4 Image Browser<br />\n"
1472
+ "6.4.1 Name. Provide a name for the theme.<br />\n"
1473
+ "6.4.2 Full padding. Using CSS type values set padding for the overall image browser box.<br />\n"
1474
+ "6.4.3 Full background color. Select the overall background color for the image browser view.<br />\n"
1475
+ "6.4.4 Full background transparency. Determine the level of background transparency for the overall image browser box.<br />\n"
1476
+ "6.4.5 Full border radius. Define the border radius of the overall image browse box using CSS type values.<br />\n"
1477
+ "6.4.6 Full border width. Set the overall border width in pixels.<br />\n"
1478
+ "6.4.7 Full border style. Choose the overall border style.<br />\n"
1479
+ "6.4.8 Full border color. Choose the overall border color.<br />\n"
1480
+ "6.4.9 Alignment. Determine the alignment of the image browser box in the page/post.<br />\n"
1481
+ "6.4.10 Margin. Set overall margins of the image browser box using CSS type values.<br />\n"
1482
+ "6.4.11 Padding. Set overall padding for the image browser box using CSS type values.<br />\n"
1483
+ "6.4.12 Border width. Define the border with for the images.<br />\n"
1484
+ "6.4.13 Border style. Select the border style for the images.<br />\n"
1485
+ "6.4.14 Border color. Choose the border color for the images.<br />\n"
1486
+ "6.4.15 Border radius. Define the border radius for the images.<br />\n"
1487
+ "6.4.16 Background color. Select the background color for the image browser box.<br />\n"
1488
+ "6.4.17 Background transparency. Specify the transparency level of the overall background.<br />\n"
1489
+ "6.4.18 Box shadow. Set the shadow values for the image browser box.<br />\n"
1490
+ "6.4.19 Title alignment. Define the alignment for the gallery image titles.<br />\n"
1491
+ "6.4.20 Font size. Set the font size for the text elements of the gallery images, e.g. title and description.<br />\n"
1492
+ "6.4.21 Font color. Choose the font color for the text elements of the images, e.g. title and description.<br />\n"
1493
+ "6.4.22 Font family. Choose the font family to be used for the image text elements, e.g. title and description.<br />\n"
1494
+ "6.4.23 Description margin. Using CSS type values set gallery image description padding.<br />\n"
1495
+ "6.4.24 Description padding. Using CSS type values set gallery image description padding.<br />\n"
1496
+ "6.4.25 Description border width. Define the border width for the gallery image descriptions.<br />\n"
1497
+ "6.4.26 Description border style. Select the border style for the gallery image description in image browser view.<br />\n"
1498
+ "6.4.27 Description border color. Choose the border color for the gallery image description in image browser view.<br />\n"
1499
+ "6.4.28 Description border radius. Define the border radius for the gallery image description in image browser view.<br />\n"
1500
+ "6.4.29 Description background color. Select the background color for the galleryimage description in the image browser view."
1501
+ msgstr ""
1502
+
1503
+ #. Found in remaining content paragraph.
1504
+ msgid ""
1505
+ "6.5 Compact Album<br />\n"
1506
+ "6.5.1 Name. Provide a name for the theme.<br />\n"
1507
+ "6.5.2 Padding. Define the padding for the compact album preview image.<br />\n"
1508
+ "6.5.3 Margin. Define the margin for the album preview image.<br />\n"
1509
+ "6.5.4 Border width. Set the border width for the album preview image.<br />\n"
1510
+ "6.5.5 Border style. Set the border style for the album preview image.<br />\n"
1511
+ "6.5.6 Border color. Select the color for the border.<br />\n"
1512
+ "6.5.7 Border radius. Using CSS type values define the border radius of the preview image.<br />\n"
1513
+ "6.5.8 Shadow. Set a preview image shadow using CSS type values.<br />\n"
1514
+ "6.5.9 Hover effect. Choose an effect to be applied to the preview image when hovered or avoid having one.<br />\n"
1515
+ "6.5.10 Hover effect value. Set the CSS type value for the chosen hover effect.<br />\n"
1516
+ "6.5.11 Thumbnail transition. Choose whether to have a transition for the thumbnail or not.<br />\n"
1517
+ "6.5.12 Thumbnail background color. Select a background color the preview thumbnail image.<br />\n"
1518
+ "6.5.13 Thumbnail transparency. Select the level of transparency for the preview thumbnail image.<br />\n"
1519
+ "6.5.14 Full background color. Select a background color the overall compact album view.<br />\n"
1520
+ "6.5.15 Full background transparency. Select the level of transparency for the background color the overall compact album view.<br />\n"
1521
+ "6.5.16 Alignment. Define the alignment of the compact album in the page or post.<br />\n"
1522
+ "6.5.17 Title font size. Define the font size for the album title.<br />\n"
1523
+ "6.5.18 Title font color. Choose the album title font color.<br />\n"
1524
+ "6.5.19 Title font family. Choose the font family for the album title.<br />\n"
1525
+ "6.5.20 Title font weight. Choose the font weight for the album title.<br />\n"
1526
+ "6.5.21 Title box shadow. Using CSS type values set the box shadow for the album title.<br />\n"
1527
+ "6.5.22 Title margin. Set the compact album title margin using CSS type values.<br />\n"
1528
+ "6.5.23 Font size. Define the font size for the additional texts (e.g. album is empty) and Back button label.<br />\n"
1529
+ "6.5.24 Font color. Choose the font color for the additional texts (e.g. album is empty) and Back button label.<br />\n"
1530
+ "6.5.25 Font family. Select the font family for the additional texts (e.g. album is empty) and Back button label.<br />\n"
1531
+ "6.5.26 Font weight. Choose the font weight for the additional texts (e.g. album is empty) and Back button label.<br />\n"
1532
+ "6.5.27 Back padding. Set padding for the Back button."
1533
+ msgstr ""
1534
+
1535
+ #. Found in remaining content paragraph.
1536
+ msgid ""
1537
+ "6.6 Extended Album<br />\n"
1538
+ "6.6.1 Name. Provide a name for the theme.<br />\n"
1539
+ "6.6.2 Thumbnail margin. Set the extended album thumbnail margin using CSS type values.<br />\n"
1540
+ "6.6.3 Thumbnail padding. Set the extended album thumbnail padding using CSS type values.<br />\n"
1541
+ "6.6.4 Thumbnail border width. Define the border width for the album preview image.<br />\n"
1542
+ "6.6.5 Thumbnail border style. Define the border style for the album preview image.<br />\n"
1543
+ "6.6.6 Thumbnail border color. Choose the border color for the album preview image.<br />\n"
1544
+ "6.6.7 Thumbnail border radius. Define the border radius for the album thumbnail.<br />\n"
1545
+ "6.6.8 Thumbnail box shadow. Specify the shadow for the preview thumbnail using CSS type values.<br />\n"
1546
+ "6.6.9 Thumbnail transition. Choose whether to have a transition for the preview thumbnail or not.<br />\n"
1547
+ "6.6.10 Thumbnail alignment. Specify the positioning of the album thumbnail in the page or post.<br />\n"
1548
+ "6.6.11 Thumbnail transparent. Choose the transparency level for the thumbnail.<br />\n"
1549
+ "6.6.12 Thumbnail hover effect. Choose the effect to be applied to the image when hovered or choose to have none.<br />\n"
1550
+ "6.6.13 Hover effect value. Give CSS type values to the selected hover effect for the thumbnail image.<br />\n"
1551
+ "6.6.14 Thumbnail background color. Select a background color for the thumbnail image.<br />\n"
1552
+ "6.6.15 Thumbnails background color. Select a background color for the overall view.<br />\n"
1553
+ "6.6.16 Thumbnail background transparency. Specify the level of transparency for the thumbnail.<br />\n"
1554
+ "6.6.17 Thumbnail div padding. Set padding for the thumbnail container using CSS type values.<br />\n"
1555
+ "6.6.18 Thumbnail div background color. Choose the background color for the thumbnail container.<br />\n"
1556
+ "6.6.19 Thumbnail div border width. Set the border width for the thumbnail container.<br />\n"
1557
+ "6.6.20 Thumbnail div border style. Select the border style for the thumbnail container.<br />\n"
1558
+ "6.6.21 Thumbnail div border color. Select the border color for the thumbnail container.<br />\n"
1559
+ "6.6.22 Thumbnail div border radius. Using CSS type values set the thumbnail container radius.<br />\n"
1560
+ "6.6.23 Margin. Set the margin for the overall extended album box.<br />\n"
1561
+ "6.6.24 Padding. Set padding for the overall extended album box.<br />\n"
1562
+ "6.6.25 Background color. Select the background color for the overall extended album box.<br />\n"
1563
+ "6.6.26 Background transparency. Select the level of transparency for the overall background.<br />\n"
1564
+ "6.6.27 Border radius. Set the overall border radius using CSS type values.<br />\n"
1565
+ "6.6.28 Separator width. Set the width for the image separators.<br />\n"
1566
+ "6.6.29 Separator style. Select the style for the image separator lines.<br />\n"
1567
+ "6.6.30 Separator color. Select the color for the image separators.<br />\n"
1568
+ "6.6.31 Back padding. Set padding for the Back button.<br />\n"
1569
+ "6.6.32 Back font size. Define the font size for the Back button.<br />\n"
1570
+ "6.6.33 Back font color. Select the font color for the Back button.<br />\n"
1571
+ "6.6.34 Back font family. Choose the font family for the Back button label.<br />\n"
1572
+ "6.6.35 Back font weight. Select the font weight for the Back button label.<br />\n"
1573
+ "6.6.36 Text div padding. Set padding for the text container (title and description).<br />\n"
1574
+ "6.6.37 Text div border width. Define the width for the text container (title and description).<br />\n"
1575
+ "6.6.38 Text border style. Select the border style for the text container (title and description).<br />\n"
1576
+ "6.6.39 Text border color. Choose the border color for the text container (title and description).<br />\n"
1577
+ "6.6.40 Text div border radius. Set the border radius for the text container (title and description) using CSS type values.<br />\n"
1578
+ "6.6.41 Text background color. Select the background color for the text container (title and description).<br />\n"
1579
+ "6.6.42 Title margin. Set the album title margin using CSS type values.<br />\n"
1580
+ "6.6.43 Title padding. Set the album title padding using CSS type values.<br />\n"
1581
+ "6.6.44 Title border width. Specify the album title border width.<br />\n"
1582
+ "6.6.45 Title border style. Select the album title border style.<br />\n"
1583
+ "6.6.46 Title border color. Choose the album title border color.<br />\n"
1584
+ "6.6.47 Title font size. Set the size for the album title.<br />\n"
1585
+ "6.6.48 Title font color. Choose the font color for the album title text.<br />\n"
1586
+ "6.6.49 Title font family. Choose the font family for the album title text.<br />\n"
1587
+ "6.6.50 Title font weight. Select the font weight for the album title.<br />\n"
1588
+ "6.6.51 Description padding. Define the album description padding using CSS type values.<br />\n"
1589
+ "6.6.52 Description border width. Set the album description border width.<br />\n"
1590
+ "6.6.53 Description border style. Choose the album description border style.<br />\n"
1591
+ "6.6.54 Description border color. Select the album description border color.<br />\n"
1592
+ "6.6.55 Description font size. Set the size for the album description.<br />\n"
1593
+ "6.6.56 Description font color. Choose the font color for the album description.<br />\n"
1594
+ "6.6.57 Description font family. Choose the font family for the album description.<br />\n"
1595
+ "6.6.58 Description font weight. Set the font weight for the album description text.<br />\n"
1596
+ "6.6.59 Description more size. Define the size for the More button in the description.<br />\n"
1597
+ "6.6.60 Description more color. Choose the color for the More button in the description."
1598
+ msgstr ""
1599
+
1600
+ #. Found in remaining content paragraph.
1601
+ msgid ""
1602
+ "6.7 Blog Style<br />\n"
1603
+ "6.7.1 Name. Provide a name for the theme.<br />\n"
1604
+ "6.7.2 Background color. Select the overall background color.<br />\n"
1605
+ "6.7.3 Background transparency. Specify the level of transparency for the overall background.<br />\n"
1606
+ "6.7.4 Alignment. Choose the overall alignment.<br />\n"
1607
+ "6.7.5 Margin. Set the view margin using CSS type values.<br />\n"
1608
+ "6.7.6 Padding. Set the view padding using CSS type values.<br />\n"
1609
+ "6.7.7 Box shadow. Set the view box shadow using CSS type values.<br />\n"
1610
+ "6.7.8 Font family. Choose the font family for the Blog Style view texts.<br />\n"
1611
+ "6.7.9 Font size. Set the font size for the Blog Style view texts.<br />\n"
1612
+ "6.7.10 Font color. Select the font color for the Blog Style view texts.<br />\n"
1613
+ "6.7.11 Border width. Set the image border width in pixels.<br />\n"
1614
+ "6.7.12 Border style. Select the image border style.<br />\n"
1615
+ "6.7.13 Border color. Choose the image border color.<br />\n"
1616
+ "6.7.14 Border radius. Set the image border radius using CSS type values.<br />\n"
1617
+ "6.7.15 Buttons and title margin. Set the buttons (social media sharing and comments) and title margins using CSS type values.<br />\n"
1618
+ "6.7.16 Buttons size. Set the buttons (social media sharing and comments) size in pixels.<br />\n"
1619
+ "6.7.17 Buttons color. Select the buttons (social media sharing and comments) color.<br />\n"
1620
+ "6.7.18 Buttons and title border width. Set the border width for the buttons (social media sharing and comments) and gallery image title.<br />\n"
1621
+ "6.7.19 Buttons and title border style. Select the border style for the buttons (social media sharing and comments) and gallery image title.<br />\n"
1622
+ "6.7.20 Buttons and title border color. Select the border color for the buttons (social media sharing and comments) and gallery image title.<br />\n"
1623
+ "6.7.21 Buttons and title border radius. Set the border radius for the buttons (social media sharing and comments) and gallery image title.<br />\n"
1624
+ "6.7.22 Buttons and title background color. Select the background color for the buttons (social media sharing and comments) and gallery image title.<br />\n"
1625
+ "6.7.23 Buttons and title background transparency. Set the level of the background transparency for the buttons (social media sharing and comments) and gallery image title.<br />\n"
1626
+ "6.7.24 Buttons or title alignment. Choose an alignment for either buttons or title. The second option will be adjusted automatically."
1627
+ msgstr ""
1628
+
1629
+ #. Found in remaining content paragraph.
1630
+ msgid ""
1631
+ "6.8 Lightbox\n"
1632
+ "6.8.1 Name. Provide a name for the theme.\n"
1633
+ "6.8.2 Overlay background color. Choose the background color for the gallery image background overlay. \n"
1634
+ "6.8.3 Overlay background transparency. Select the level of transparency for the background overlay. \n"
1635
+ "6.8.4 Lightbox background color. Select the overall background color for the lightbox. \n"
1636
+ "6.8.5 Control buttons height. Set the height for the control buttons in the lightbox.\n"
1637
+ "6.8.6 Control buttons margin (top). Set the top margin for the control buttons in the lightbox.\n"
1638
+ "6.8.7 Control buttons margin (left). Set the left margin for the control buttons in the lightbox.\n"
1639
+ "6.8.8 Control buttons position. Choose the position for the control buttons over the gallery images. \n"
1640
+ "6.8.9 Control buttons background color. Choose the background color for the control buttons of the gallery images.\n"
1641
+ "6.8.10 Control buttons container border radius. Set the border radius for the control buttons container.\n"
1642
+ "6.8.11 Control buttons container background transparency. Choose the transparency level for the control buttons container.\n"
1643
+ "6.8.12 Control buttons alignment. Set the positioning of the control buttons over the gallery images. \n"
1644
+ "6.8.13 Control buttons color. Choose the color to use for the control buttons.\n"
1645
+ "6.8.14 Control buttons transparency. Choose the level of transparency for the control buttons.\n"
1646
+ "6.8.15 Toggle button height. Set the height for the toggle button.\n"
1647
+ "6.8.16 Toggle button width. Set the width for the toggle button. \n"
1648
+ "6.8.17 Close button border radius. Define the border radius for the Right and Left buttons. \n"
1649
+ "6.8.18 Close button border width. Set the border width for the Close button.\n"
1650
+ "6.8.19 Close button border style. Choose the border style for the Close button.\n"
1651
+ "6.8.20 Close button border color. Select the border color for the Close button. \n"
1652
+ "6.8.21 Close button box shadow. Set the box shadow for the Close button. \n"
1653
+ "6.8.22 Close button background color. Select Close button background color. \n"
1654
+ "6.8.23 Close button transparency. Choose the level of transparency for the Close button. \n"
1655
+ "6.8.24 Close button width. Set the Close button width.\n"
1656
+ "6.8.25 Close button height. Set the Close button height. \n"
1657
+ "6.8.26 Close button top. Set the margin between the top border and the Close button. \n"
1658
+ "6.8.27 Close button right. Set the margin between the right border and the Close button. \n"
1659
+ "6.8.28 Close button size. Define the Close button size in pixels. \n"
1660
+ "6.8.29 Close button color. Choose a color for the Close button. \n"
1661
+ "6.8.30 Fullscreen close button color. Choose a color for the Fullscreen exit button. \n"
1662
+ "6.8.31 Share buttons color. Choose a color to be applied to all Social share buttons used with the view.\n"
1663
+ "6.8.32 Right, left buttons style. Choose the style for the Right and Left buttons. \n"
1664
+ "6.8.33 Right, left buttons background color. Select the background color for the Right and Left buttons. \n"
1665
+ "6.8.34 Right, left buttons transparency. Select the level of transparency for the Right and Left buttons.\n"
1666
+ "6.8.35 Right, left buttons box shadow. Set the Right and Left buttons box shadow using CSS type values. \n"
1667
+ "6.8.36 Right, left buttons height. Set the height for the Right and Left buttons. \n"
1668
+ "6.8.37 Right, left buttons width. Set the width for the Right and Left buttons. \n"
1669
+ "6.8.38 Right, left buttons size. Define the size for the Right and Left buttons. \n"
1670
+ "6.8.39 Right, left, close buttons hover color. Choose the Right, Left and Close buttons color when hovered.\n"
1671
+ "6.8.40 Right, left buttons color. Choose the Right and Left buttons color.\n"
1672
+ "6.8.41 Right, left buttons border radius. Set the border radius for the Right and Left buttons. \n"
1673
+ "6.8.42 Right, left buttons border width. Set the border width for the Right and Left buttons. \n"
1674
+ "6.8.43 Right, left buttons border style. Choose the border style for the Right and Left buttons. \n"
1675
+ "6.8.44 Right, left buttons border color. Choose the border color for the Right and Left buttons. \n"
1676
+ "6.8.45 Filmstrip position. Set the filmstrip position in the lightbox. \n"
1677
+ "6.8.46 Filmstrip thumbnail margin. Specify the margin for the filmstrip image using CSS type values. \n"
1678
+ "6.8.47 Filmstrip thumbnail border width. Set the border width for the lightbox filmstrip.\n"
1679
+ "6.8.48 Filmstrip thumbnail border style. Choose the border style for the lightbox filmstrip.\n"
1680
+ "6.8.49 Filmstrip thumbnail border color. Select the border color for the lightbox filmstrip. \n"
1681
+ "6.8.50 Filmstrip thumbnail border radius. Set the lightbox filmstrip border radius using CSS type values.\n"
1682
+ "6.8.51 Filmstrip thumbnail active border width. Set the border width for the lightbox filmstrip image which is currently displayed.\n"
1683
+ "6.8.52 Filmstrip thumbnail active border color. Choose the border style for the lightbox filmstrip image which is currently displayed.\n"
1684
+ "6.8.53 Filmstrip thumbnail deactive transparency. Choose the transparency level of the thumbnails except the currently displayed one. \n"
1685
+ "6.8.54 Filmstrip right, left buttons size. Define the button size for the Right and Left buttons of the filmstrip. \n"
1686
+ "6.8.55 Filmstrip right, left buttons color. Select the button color for the Right and Left buttons of the filmstrip. \n"
1687
+ "6.8.56 Filmstrip right, left button background color. Select the button background color for the Right and Left buttons of the filmstrip. \n"
1688
+ "6.8.57 Rating position. Set the position for the rating icons over the gallery images.\n"
1689
+ "6.8.58 Rating alignment. Set the alignment for the rating icon.\n"
1690
+ "6.8.59 Rating icon. Select the rating icon among six possible options.\n"
1691
+ "6.8.60 Rating color. Choose the color for the selected rating icon.\n"
1692
+ "6.8.61 Rating hover color. Choose the color for the selecting rating icon range when hovered.<br />\n"
1693
+ "6.8.62 Rating size. Define the rating dimensions.\n"
1694
+ "6.8.63 Rating icon count. Set the amount of the rating symbols to be displayed.\n"
1695
+ "6.8.64 Rating padding. Set the padding for the rating.\n"
1696
+ "6.8.65 Hit counter position. Set the position for the hit counter.\n"
1697
+ "6.8.66 Hit counter alignment. Set the alignment for the hit counter.\n"
1698
+ "6.8.67 Hit counter background color. Choose the background color for the hit counter box.\n"
1699
+ "6.8.68 Hit counter background transparency. Define the level of the background transparency for the hit counter box.\n"
1700
+ "6.8.69 Hit counter border width. Set the border width for the hit counter box.\n"
1701
+ "6.8.70 Hit counter border style. Specify the border style for the hit counter box.\n"
1702
+ "6.8.71 Hit counter border color. Choose the border color for the hit counter box.\n"
1703
+ "6.8.72 Hit counter border radius. Set the border radius for the hit counter box.\n"
1704
+ "6.8.73 Hit counter padding. Set the padding for the hit counter box.\n"
1705
+ "6.8.74 Hit counter margin. Set the margin for the hit counter box.\n"
1706
+ "6.8.75 Hit counter font color. Select the font color within the hit counter box.\n"
1707
+ "6.8.76 Hit counter font family. Choose the font family for the hit counter box text.<br />\n"
1708
+ "6.8.77 Hit counter font weight. Choose the font weight for the hit counter box text.\n"
1709
+ "6.8.78 Hit counter font size. Select the font size for the hit counter box text. \n"
1710
+ "6.8.79 Info position. Specify the position of the gallery image title and description.\n"
1711
+ "6.8.80 Info alignment. Select the alignment for the gallery image title and description.\n"
1712
+ "6.8.81 Info background color. Choose the background color for the gallery image information.<br />\n"
1713
+ "6.8.82 Info background transparency. Set the level of transparency for the gallery image information background.<br />\n"
1714
+ "6.8.83 Info border width. Set a border width for the gallery image information box.<br />\n"
1715
+ "6.8.84 Info border style. Set the border style for the gallery image information box.<br />\n"
1716
+ "6.8.85 Info border color. Set the border color for the gallery image information box. \n"
1717
+ "6.8.86 Info border radius. Set the border radius for the gallery image information box.<br />\n"
1718
+ "6.8.87 Info padding. Set the padding for the image information box using CSS style values.\n"
1719
+ "6.8.88 Info margin. Set the margin for the image information box using CSS style values.<br />\n"
1720
+ "6.8.89 Title font color. Choose the font color for the gallery image title. \n"
1721
+ "6.8.90 Title font family. Specify the font family for the gallery image title.<br />\n"
1722
+ "6.8.91 Title font weight. Specify the font style for the gallery image title.<br />\n"
1723
+ "6.8.92 Title font size. Set the font size for the gallery image title.\n"
1724
+ "6.8.93 Description font color. Choose the font color for the gallery image description.\n"
1725
+ "6.8.94 Description font family. Set the font family for the gallery image description. \n"
1726
+ "6.8.95 Description font weight. Set the font style for the gallery image description.\n"
1727
+ "6.8.96 Description font size. Define the font size for the gallery image description.\n"
1728
+ "6.8.97 Comments width. Define the width of the comment box for the gallery images in the lightbox.<br />\n"
1729
+ "6.8.98 Comments position. Select the comment position for the gallery images.\n"
1730
+ "6.8.99 Comments background color. Select the background color for the comment box in the lightbox.<br />\n"
1731
+ "6.8.100 Comments font size. Define the font size for the comments input field labels.\n"
1732
+ "6.8.101 Comments font color. Define the font color for the gallery image comments. \n"
1733
+ "6.8.102 Comments font family. Select the font family for the image comments.\n"
1734
+ "6.8.103 Comments author font size. Define the font size for the Author text in the image comment box.\n"
1735
+ "6.8.104 Comments date font size. Define the font size for the gallery image comment date.\n"
1736
+ "6.8.105 Comments body font size. Define the font size for the gallery image comments.\n"
1737
+ "6.8.106 Comment input border width. Define the border width for the comment box.<br />\n"
1738
+ "6.8.107 Comment input border style. Select the style to be applied to the comment box border.\n"
1739
+ "6.8.108 Comment input border color. Choose the border color for the comment box border\n"
1740
+ "6.8.109 Comment input border radius. Set the border radius for the comment box input field.\n"
1741
+ "6.8.110 Comment input padding. Set padding for the comment box input area using CSS type values.<br />\n"
1742
+ "6.8.111 Comment input background color. Choose the background color for the comment input field.\n"
1743
+ "6.8.112 Comment button background color. Choose a background color for the comment button.<br />\n"
1744
+ "6.8.113 Comment button padding. Set the comment button padding using CSS type values.<br />\n"
1745
+ "6.8.114 Comment button border width. Set the border width for the comment button.<br />\n"
1746
+ "6.8.115 Comment button border style. Select the border style for the comment button.<br />\n"
1747
+ "6.8.116 Comment button border color. Choose the border color for the comment button.\n"
1748
+ "6.8.117 Comment button border radius. Set the border radius for the comment button using CSS type values.\n"
1749
+ "6.8.118 Comment separator width. Set the width for the comment separators.<br />\n"
1750
+ "6.8.119 Comment separator style. Choose the style for the comment separator lines.<br />\n"
1751
+ "6.8.120 Comment separator color. Select the color for the comment separators."
1752
+ msgstr ""
1753
+
1754
+ #. Found in remaining content paragraph.
1755
+ msgid ""
1756
+ "6.9 Page Navigation.<br />\n"
1757
+ "6.9.1 Name. Provide a name for the theme.<br />\n"
1758
+ "6.9.2 Font size. Define the font size for the page navigation.<br />\n"
1759
+ "6.9.3 Font color. Choose the font color for the page navigation.<br />\n"
1760
+ "6.9.4 Font family. Select the font family for the page navigation.<br />\n"
1761
+ "6.9.5 Font weight. Select the font weight from the provided options to apply to page navigation.<br />\n"
1762
+ "6.9.6 Border width. Set the page navigation border width.<br />\n"
1763
+ "6.9.7 Border style. Select the border style for the page navigation.<br />\n"
1764
+ "6.9.8 Border color. Choose the page navigation border color.<br />\n"
1765
+ "6.9.9 Border radius. Set the border radius for the page navigation using CSS type values.<br />\n"
1766
+ "6.9.10 Margin. Set the margin for the page navigation using CSS type values.<br />\n"
1767
+ "6.9.11 Padding. Set padding using CSS type values for the page navigation.<br />\n"
1768
+ "6.9.12 Button background color. Choose the navigation button background color.<br />\n"
1769
+ "6.9.13 Button background transparency. Specify the level of transparency for the navigation button background.<br />\n"
1770
+ "6.9.14 Button transition. Choose whether to set a transition for the navigation button or not.<br />\n"
1771
+ "6.9.15 Box shadow. Set the box shadow for the navigation.<br />\n"
1772
+ "6.9.16 Position. Determine the position of the navigation buttons.<br />\n"
1773
+ "6.9.17 Alignment. Define the alignment for the navigation buttons.<br />\n"
1774
+ "6.9.18 Numbering. Choose whether to have numbers next to navigation buttons or not.<br />\n"
1775
+ "6.9.19 Button text. Choose whether to have text or navigation arrow set for the page navigation."
1776
+ msgstr ""
1777
+
1778
+ #. Found in remaining content paragraph.
1779
+ msgid ""
1780
+ "7.1 Image. Choose the gallery image you want to moderate the comments for.<br />\n"
1781
+ "7.2 Name. Choose the author of the comments, if there are multiple comments for the chosen gallery image.<br />\n"
1782
+ "7.3 Publish. Click to publish the gallery image comment.<br />\n"
1783
+ "7.4 Unpublish. Click to unpublish the gallery image comment.<br />\n"
1784
+ "7.5 Delete. Click to delete the gallery image comment."
1785
+ msgstr ""
1786
+
1787
+ #. Found in remaining content paragraph.
1788
+ msgid ""
1789
+ "To insert a gallery into a Page or a Post.<br />\n"
1790
+ "Open the post/page you want to display the gallery. Press the button named Photo Gallery. A camera icon will be inserted into the page/post. Click on the gallery image and select the gallery/album display you want to use for that specific page/post.<br />\n"
1791
+ "Each Photo Gallery shortcode uses three columns of parameters. The first column shows parameters specific for that Photo Gallery view only, the second one shows Lightbox (except Slideshow view) parameters, the third one is referred to the Advertisement.<br />\n"
1792
+ "In addition you can add the galllery shortcode using Shortcode Generator of the Photo Gallery.<br />\n"
1793
+ "8.1 General Parameters (First Column)<br />\n"
1794
+ "8.1.1Thumbnails<br />\n"
1795
+ "Theme. Select the theme to be applied to this Photo Gallery view.<br />\n"
1796
+ "Gallery. Select the gallery.<br />\n"
1797
+ "Sort by. Choose the option to use for the gallery image sequence.<br />\n"
1798
+ "Max. number of image columns. Provide the number of image columns in a page.<br />\n"
1799
+ "Images per page. Provide the maximum number of gallery images per page.<br />\n"
1800
+ "Enable pagination. Choose whether to have pagination for the view or not.<br />\n"
1801
+ "Image thumbnail dimensions. Define the thumbnail width and height in pixels.<br />\n"
1802
+ "8.1.2 Masonry<br />\n"
1803
+ "Theme. Select the theme to be applied to this Photo Gallery view.<br />\n"
1804
+ "Gallery. Select the gallery.<br />\n"
1805
+ "Sort by. Choose the option to use for image sequence.<br />\n"
1806
+ "Max. number of image columns. Provide the number of image columns in a page.<br />\n"
1807
+ "Images per page. Provide the maximum number of gallery images per page.<br />\n"
1808
+ "Enable pagination. Choose whether to have pagination for the view or not.<br />\n"
1809
+ "Image thumbnail width. Provide the thumbnail width for the images.<br />\n"
1810
+ "8.1.3 Slideshow<br />\n"
1811
+ "Theme. Select the theme to be applied to this Photo Gallery view.<br />\n"
1812
+ "Gallery. Select the gallery.<br />\n"
1813
+ "Sort by. Choose the option to use for the gallery image sequence.<br />\n"
1814
+ "Slideshow Effect. Select the effect to be applied to the slideshow.<br />\n"
1815
+ "Time interval. Specify the time interval between the images.<br />\n"
1816
+ "Slideshow dimensions. Define the width and height of the slideshow.<br />\n"
1817
+ "Enable autoplay. Choose whether to have an Autoplay of Slideshow or not.<br />\n"
1818
+ "Enable shuffle. Choose whether to have shuffle enabled for the slideshow view or not.<br />\n"
1819
+ "Enable control buttons. Choose whether to display control buttons or not.<br />\n"
1820
+ "Enable slideshow filmstrip. Choose whether to have a thumbnail filmstrip with slideshow view or not.<br />\n"
1821
+ "Slideshow Filmstrip height. Specify the height for the filmstrip.<br />\n"
1822
+ "8.1.4 Image Browser<br />\n"
1823
+ "Theme. Select the theme to be applied to this Photo Gallery view.<br />\n"
1824
+ "Gallery. Select the gallery.<br />\n"
1825
+ "Sort by. Choose the option to use for image sequence.<br />\n"
1826
+ "Image width. Set the width for the image.<br />\n"
1827
+ "Enable image title. Choose whether to have an image title displayed within the view or not.<br />\n"
1828
+ "Enable image description. Choose whether to have an image description displayed within the view or not.<br />\n"
1829
+ "8.1.5 Compact Album.<br />\n"
1830
+ "Theme. Select the theme to be applied to this Photo Gallery view.<br />\n"
1831
+ "Album. Select the album.<br />\n"
1832
+ "Max. number of album columns. Provide the maximum number of albums to be displayed in a single column.<br />\n"
1833
+ "Albums per page. Provide the number of albums to be displayed in a single page.<br />\n"
1834
+ "Album title. Choose whether to display a static album title or have it displayed only when hovered.<br />\n"
1835
+ "Album thumbnail dimensions. Choose the image thumbnail width and height used for album preview.<br />\n"
1836
+ "Max. number of image columns. Define the maximum number of image columns to be displayed in a single page.<br />\n"
1837
+ "Images per page. Set the number of images to be displayed in a single page.<br />\n"
1838
+ "Image thumbnail dimensions. Set the image thumbnail width and height for the album images.<br />\n"
1839
+ "Enable pagination. Choose whether to have pagination for the compact album view or not.<br />\n"
1840
+ "8.1.6 Extended Album<br />\n"
1841
+ "Theme. Select the theme to be applied to this Photo Gallery view.<br />\n"
1842
+ "Album. Select album.<br />\n"
1843
+ "Albums per page. Provide the number of albums to be displayed in a single page.<br />\n"
1844
+ "Album row height. Set the height for the album rows.<br />\n"
1845
+ "Enable album description. Choose whether to display album description or not.<br />\n"
1846
+ "Album thumbnail dimensions. Set the album preview thumbnail width and height.<br />\n"
1847
+ "Max. number of image columns. Define the maximum number of image columns to be displayed in a single page.<br />\n"
1848
+ "Images per page. Define the number of images to be displayed in a single page.<br />\n"
1849
+ "Image thumbnail dimensions. Define the image thumbnail width and height for the album images.<br />\n"
1850
+ "Enable pagination. Choose whether to have pagination for the extended albums or not.<br />\n"
1851
+ "8.1.7 Blog Style<br />\n"
1852
+ "Theme. Select the theme to be applied to this Photo Gallery view.<br />\n"
1853
+ "Gallery. Select the gallery.<br />\n"
1854
+ "Sort by. Choose the option to use for the image sequence.<br />\n"
1855
+ "Image width. Set the image width for the Blog Style view.<br />\n"
1856
+ "Enable image title. Choose whether to have image title displayed within this view or not.<br />\n"
1857
+ "Images per page. Set the number of images to be displayed in a single page.<br />\n"
1858
+ "Enable pagination. Choose whether to have pagination for the extended albums or not."
1859
+ msgstr ""
1860
+
1861
+ #. Found in remaining content paragraph.
1862
+ msgid ""
1863
+ "8.2 Lightbox Parameters (Second Column)<br />\n"
1864
+ "Lightbox dimensions. Define the lightbox height and width in pixels.<br />\n"
1865
+ "Lightbox effect. Select the lightbox effect from the provided options.<br />\n"
1866
+ "Time interval. Set the time interval between the display of the sequential image.<br />\n"
1867
+ "Enable filmstrip in lightbox. Choose whether to have filmstrip enabled in the pop-up or not.<br />\n"
1868
+ "Filmstrip height. Define the height of the filmstrip if applicable.<br />\n"
1869
+ "Enable control buttons. Choose whether to have control buttons enabled in the lightbox or not.<br />\n"
1870
+ "Enable fullscreen. Choose whether to have Fullscreen enabled for the lightbox or not.<br />\n"
1871
+ "Enable comments. Choose whether to display comment box in the pop-up or not.<br />\n"
1872
+ "Enable Facebook button. Choose whether to have Facebook social sharing button enabled in the pop-up or not.<br />\n"
1873
+ "Enable Twitter button. Choose whether to have Twitter social sharing button enabled in the pop-up or not.<br />\n"
1874
+ "Enable Google+ button. Choose whether to have Google+ social sharing button enabled in the pop-up or not."
1875
+ msgstr ""
1876
+
1877
+ #. Found in remaining content paragraph.
1878
+ msgid ""
1879
+ "(for Slideshow View only)<br />\n"
1880
+ "Enable image title. Choose whether to display gallery image titles during the slideshow or not.<br />\n"
1881
+ "Title position. Set the position of the title using the available options.<br />\n"
1882
+ "Enable image description. Choose whether to display gallery image description during the slideshow or not.<br />\n"
1883
+ "Description position. Set the position of the description using the available options.<br />\n"
1884
+ "Enable slideshow music. Choose whether to have background audio track during the slideshow or not.<br />\n"
1885
+ "Music URL. Provide the URL of the audio track to play during the slideshow."
1886
+ msgstr ""
1887
+
1888
+ #. Found in remaining content paragraph.
1889
+ msgid ""
1890
+ "8.3 Advertisement (Third Column)<br />\n"
1891
+ "Advertisement type. Select the type of advertisement you want to use (text, image) or choose not to use ads in your galleries and albums.<br />\n"
1892
+ "8.3.1 Text<br />\n"
1893
+ "Advertisement text. Provide the text which will be displayed over the gallery/album images.<br />\n"
1894
+ "Advertisement link. Provide the link, which will open in a new window, when the user clicks on advertisement text.<br />\n"
1895
+ "Advertisement font size. Specify the font size of the advertisement text.<br />\n"
1896
+ "Advertisement font style. Specify the font family for the text used with the advertisement.<br />\n"
1897
+ "Advertisement color. Select the text color which will be used with the advertisements.<br />\n"
1898
+ "Advertisement opacity. Define the level of opacity for the advertisement, providing its percentage.<br />\n"
1899
+ "Advertisement position. Choose the positioning of the advertisement from the available 9 options.<br />\n"
1900
+ "8.3.2 Image<br />\n"
1901
+ "Advertisement URL. Provide the absolute URL of the image which will be used for the advertisement.<br />\n"
1902
+ "Advertisement link. Provide the link, which will open in a new window, when the user clicks on advertisement image.<br />\n"
1903
+ "Advertisement dimensions. Define the dimensions of the image used for the advertisement.<br />\n"
1904
+ "Advertisement opacity. Define the level of opacity for the advertisement, providing its percentage.<br />\n"
1905
+ "Advertisement position. Choose the positioning of the advertisement from the available 9 options."
1906
+ msgstr ""
1907
+
1908
+ #. Found in remaining content paragraph.
1909
+ msgid ""
1910
+ "Go to Appearance&gt;Widgets. Here select the widget option you want to add to a custom location. Afterwards drag and drop the selected widget into the custom location, fill in the options and press Save button.<br />\n"
1911
+ "9.1 Tag Cloud. This widget is included as a hosted widget for the WordPress standard Tag Cloud. It will display the tags added to the albums and images. After the click, the images using the tags will be displayed in Thumbnails view.<br />\n"
1912
+ "9.1.1 Title. Provide a title for the tag cloud.<br />\n"
1913
+ "9.1.2 Taxonomy. Select Photo Gallery from the provided options."
1914
+ msgstr ""
1915
+
1916
+ #. Found in remaining content paragraph.
1917
+ msgid "Go to Appearance&gt;Widgets. Here select the gallery widget option you want to add to a custom location. Afterwards drag and drop the selected gallery widget into the custom location, fill in the options and press Save button."
1918
+ msgstr ""
1919
+
1920
+ #. Found in remaining content paragraph.
1921
+ msgid ""
1922
+ "9.2 Photo Gallery Tags Cloud. This dynamic widget allows having rotating tags or gallery images. After clicking on the tag a separate page will be opened displaying the gallery images corresponding to the tag. In case of the gallery images, the images will display with a pop-up.<br />\n"
1923
+ "9.2.1 Title. Provide a title for the dynamic tag cloud.<br />\n"
1924
+ "9.2.2 Choosing Text type:<br />\n"
1925
+ "Number. Provide the number of tags you want to display. If you leave it to 0 all gallery tags will be displayed.<br />\n"
1926
+ "Dimensions. Specify the width and height for the dynamic tag cloud.<br />\n"
1927
+ "Transparent background. Choose whether to have a transparent background or not for the gallery widget or not.<br />\n"
1928
+ "Background color. Choose the background color for the tag cloud.<br />\n"
1929
+ "Text color. Choose the tag text color.<br />\n"
1930
+ "Theme. Choose the theme, which will be applied to the gallery or album corresponding to the tag.<br />\n"
1931
+ "9.2.3 Choosing Image type:<br />\n"
1932
+ "Show tag names. Choose whether to display tag names or not.<br />\n"
1933
+ "Number. Provide the number of gallery images you want to display. If you leave it to 0 all gallery images will be displayed.<br />\n"
1934
+ "Dimensions. Specify the width and height for the dynamic image cloud.<br />\n"
1935
+ "Background color. Choose the background color for the image cloud.<br />\n"
1936
+ "Text color. Choose the tag text color.<br />\n"
1937
+ "Theme. Choose the theme, which will be applied to the gallery/album corresponding to the image/tag."
1938
+ msgstr ""
1939
+
1940
+ #. Found in remaining content paragraph.
1941
+ msgid ""
1942
+ "9.3 Photo Gallery Slideshow.<br />\n"
1943
+ "9.3.1 Title. Provide a title for the gallery slideshow.<br />\n"
1944
+ "9.3.2 Select Gallery. Specify the gallery you want to use for the slideshow.<br />\n"
1945
+ "9.3.3 Dimensions. Specify the width and height for the gallery slideshow.<br />\n"
1946
+ "9.3.4 Slideshow effect. Select the effect to apply to the slideshow.<br />\n"
1947
+ "9.3.5 Time interval. Define the time interval between the change of gallery images in seconds.<br />\n"
1948
+ "9.3.6 Enable shuffle. Choose whether to have shuffle for the slideshow images or not.<br />\n"
1949
+ "9.3.7 Theme. Choose the theme to be applied to the gallery image slideshow."
1950
+ msgstr ""
1951
+
1952
+ #. Found in remaining content paragraph.
1953
+ msgid ""
1954
+ "9.4 Photo Gallery Widget. You can add album and gallery images into a custom location as a gallery widget. After click the users will be redirected into compact album view, if it is an album. If it is a gallery included in the album it will open up in Thumbnails view. The gallery images will be displayed in a lightbox.<br />\n"
1955
+ "9.4.1 Title. Provide a title for the gallery widget.<br />\n"
1956
+ "9.4.2 Choose whether to display an album or gallery.<br />\n"
1957
+ "9.4.3 Select Gallery/Select Album. Select the gallery or album to be displayed with the widget.<br />\n"
1958
+ "9.4.4 Choose whether to display random or the last few images of the gallery or album.<br />\n"
1959
+ "9.4.5 Number. Provide the number of gallery images to be displayed with the widget.<br />\n"
1960
+ "9.4.6 Dimensions. Specify the width and height of the gallery widget.<br />\n"
1961
+ "9.4.7 Theme. Choose the theme, which will be applied to the gallery or album."
1962
+ msgstr ""
1963
+
1964
+ #. Found in remaining content paragraph.
1965
+ msgid "To use the created galleries and albums for the custom location, you can generate custom gallery shortcodes and edit the exisiting gallery shortcodes."
1966
+ msgstr ""
1967
+
1968
+ #. Found in remaining content paragraph.
1969
+ msgid ""
1970
+ "10.1 Generate. Clicking this button you will be able to create a special gallery shortcode based on your option choices. The created shortcode will appear in the box below. It can be copied/cut and pasted into a post/page for gallery/album display.<br />\n"
1971
+ "10.2 Import.Pasting the gallery shortcode in the box below and pressing the button, you will be able to edit and make changes in the gallery shortcode.The final shortcode can be copied/cut and pasted into a post/page for the gallery or album display."
1972
+ msgstr ""
update/bwg_update.php CHANGED
@@ -343,6 +343,12 @@ function bwg_update($version) {
343
  if (version_compare($version, '1.2.84') == -1) {
344
  $wpdb->query("ALTER TABLE " . $wpdb->prefix . "bwg_option ADD `placeholder` varchar(32) NOT NULL DEFAULT ''");
345
  }
 
 
 
 
 
 
346
  return;
347
  }
348
 
343
  if (version_compare($version, '1.2.84') == -1) {
344
  $wpdb->query("ALTER TABLE " . $wpdb->prefix . "bwg_option ADD `placeholder` varchar(32) NOT NULL DEFAULT ''");
345
  }
346
+ // Ecommerce update
347
+ if (version_compare($version, '1.2.86') == -1) {
348
+ $wpdb->query("ALTER TABLE " . $wpdb->prefix . "bwg_image ADD `pricelist_id` int(16) NOT NULL DEFAULT 0");
349
+ $wpdb->query("ALTER TABLE " . $wpdb->prefix . "bwg_option ADD `ecommerce_icon_show_hover` varchar(32) NOT NULL DEFAULT 0");
350
+ $wpdb->query("ALTER TABLE " . $wpdb->prefix . "bwg_option ADD `popup_enable_ecommerce` tinyint(1) NOT NULL DEFAULT 0");
351
+ }
352
  return;
353
  }
354