Responsive Lightbox & Gallery - Version 2.3.3

Version Description

  • Fix: Invalid argument in upgrader process
  • Fix: Widgets warning in WordPress 5.8
  • Fix: Warning in wp_localize_script usage
Download this release

Release Info

Developer dfactory
Plugin Icon 128x128 Responsive Lightbox & Gallery
Version 2.3.3
Comparing to
See all releases

Code changes from version 2.3.2 to 2.3.3

css/gutenberg.min.css CHANGED
@@ -1 +1 @@
1
- .wp-block-responsive-lightbox-remote-library-image{padding:1em 0 0}.wp-block-responsive-lightbox-remote-library-image .components-placeholder__fieldset{max-width:100%}.wp-block-responsive-lightbox-remote-library-image .rl-block-image-preview{display:none}.wp-block-responsive-lightbox-remote-library-image.rl-image-selected{padding:0}.wp-block-responsive-lightbox-remote-library-image.rl-image-selected .components-placeholder__fieldset,.wp-block-responsive-lightbox-remote-library-image.rl-image-selected .components-placeholder__instructions,.wp-block-responsive-lightbox-remote-library-image.rl-image-selected .components-placeholder__label{display:none}.wp-block-responsive-lightbox-remote-library-image.rl-image-selected .rl-block-image-preview{display:block}.wp-block-responsive-lightbox-gallery{padding:1em 0 0}.wp-block-responsive-lightbox-gallery .components-placeholder__fieldset{max-width:100%}.wp-block-responsive-lightbox-gallery .rl-block-image-preview{display:none}.wp-block-responsive-lightbox-gallery.rl-gallery-selected{padding:0}.wp-block-responsive-lightbox-gallery.rl-gallery-selected .components-placeholder__fieldset,.wp-block-responsive-lightbox-gallery.rl-gallery-selected .components-placeholder__instructions,.wp-block-responsive-lightbox-gallery.rl-gallery-selected .components-placeholder__label{display:none}.wp-block-responsive-lightbox-gallery.rl-gallery-selected .rl-block-image-preview{display:block}
1
+ .wp-block-responsive-lightbox-remote-library-image{padding:1em 0 0}.wp-block-responsive-lightbox-remote-library-image .components-placeholder__fieldset{max-width:100%}.wp-block-responsive-lightbox-remote-library-image .rl-block-image-preview{display:none}.wp-block-responsive-lightbox-remote-library-image.rl-image-selected{padding:0}.wp-block-responsive-lightbox-remote-library-image.rl-image-selected .components-placeholder__fieldset,.wp-block-responsive-lightbox-remote-library-image.rl-image-selected .components-placeholder__instructions,.wp-block-responsive-lightbox-remote-library-image.rl-image-selected .components-placeholder__label{display:none}.wp-block-responsive-lightbox-remote-library-image.rl-image-selected .rl-block-image-preview{display:block;max-width:100%;height:auto}.wp-block-responsive-lightbox-gallery{padding:1em 0 0}.wp-block-responsive-lightbox-gallery .components-placeholder__fieldset{max-width:100%}.wp-block-responsive-lightbox-gallery .rl-block-image-preview{display:none}.wp-block-responsive-lightbox-gallery.rl-gallery-selected{padding:0}.wp-block-responsive-lightbox-gallery.rl-gallery-selected .components-placeholder__fieldset,.wp-block-responsive-lightbox-gallery.rl-gallery-selected .components-placeholder__instructions,.wp-block-responsive-lightbox-gallery.rl-gallery-selected .components-placeholder__label{display:none}.wp-block-responsive-lightbox-gallery.rl-gallery-selected .rl-block-image-preview{display:block;max-width:100%;height:auto}
includes/class-frontend.php CHANGED
@@ -631,7 +631,17 @@ class Responsive_Lightbox_Frontend {
631
  if ( $field['type'] === 'checkbox' ) {
632
  // valid argument?
633
  if ( array_key_exists( $field_key, $atts ) ) {
634
- $atts[$field_key] = $rl->galleries->sanitize_field( $field_key, array_flip( $atts[$field_key] ), $field );
 
 
 
 
 
 
 
 
 
 
635
  }
636
  // boolean field?
637
  } elseif ( $field['type'] === 'boolean' ) {
@@ -1825,8 +1835,8 @@ class Responsive_Lightbox_Frontend {
1825
  wp_localize_script(
1826
  'responsive-lightbox-basicslider-gallery',
1827
  'rlArgsBasicSliderGallery' . ( $gallery_no + 1 ),
1828
- json_encode(
1829
- array(
1830
  'adaptive_height' => $atts['adaptive_height'],
1831
  'loop' => $atts['loop'],
1832
  'captions' => $atts['captions'],
@@ -2088,8 +2098,8 @@ class Responsive_Lightbox_Frontend {
2088
  wp_localize_script(
2089
  'responsive-lightbox-basicmasonry-gallery',
2090
  'rlArgsBasicMasonryGallery' . ( $gallery_no + 1 ),
2091
- json_encode(
2092
- array(
2093
  'originLeft' => $atts['origin_left'],
2094
  'originTop' => $atts['origin_top']
2095
  )
631
  if ( $field['type'] === 'checkbox' ) {
632
  // valid argument?
633
  if ( array_key_exists( $field_key, $atts ) ) {
634
+ if ( is_array( $atts[$field_key] ) )
635
+ $array = $atts[$field_key];
636
+ elseif ( is_string( $atts[$field_key] ) ) {
637
+ if ( $atts[$field_key] === '' )
638
+ $array = [];
639
+ else
640
+ $array = explode( ',', $atts[$field_key] );
641
+ } else
642
+ $array = [];
643
+
644
+ $atts[$field_key] = $rl->galleries->sanitize_field( $field_key, array_flip( $array ), $field );
645
  }
646
  // boolean field?
647
  } elseif ( $field['type'] === 'boolean' ) {
1835
  wp_localize_script(
1836
  'responsive-lightbox-basicslider-gallery',
1837
  'rlArgsBasicSliderGallery' . ( $gallery_no + 1 ),
1838
+ array(
1839
+ 'data' => array(
1840
  'adaptive_height' => $atts['adaptive_height'],
1841
  'loop' => $atts['loop'],
1842
  'captions' => $atts['captions'],
2098
  wp_localize_script(
2099
  'responsive-lightbox-basicmasonry-gallery',
2100
  'rlArgsBasicMasonryGallery' . ( $gallery_no + 1 ),
2101
+ array(
2102
+ 'data' => array(
2103
  'originLeft' => $atts['origin_left'],
2104
  'originTop' => $atts['origin_top']
2105
  )
includes/class-galleries.php CHANGED
@@ -36,6 +36,7 @@ class Responsive_Lightbox_Galleries {
36
  add_action( 'admin_init', array( $this, 'init_admin' ) );
37
  add_action( 'edit_form_after_title', array( $this, 'after_title_nav_menu' ) );
38
  add_action( 'admin_footer', array( $this, 'modal_gallery_template' ) );
 
39
  add_action( 'media_buttons', array( $this, 'add_gallery_button' ) );
40
  add_action( 'add_meta_boxes_rl_gallery', array( $this, 'add_meta_boxes' ) );
41
  add_action( 'save_post_rl_gallery', array( $this, 'save_post' ), 10, 3 );
@@ -953,6 +954,8 @@ class Responsive_Lightbox_Galleries {
953
  * @return void
954
  */
955
  public function enqueue_gallery_scripts_styles() {
 
 
956
  // count how many times function was executed
957
  static $run = 0;
958
 
@@ -972,7 +975,8 @@ class Responsive_Lightbox_Galleries {
972
  'rlArgsGallery',
973
  array(
974
  'nonce' => wp_create_nonce( 'rl-gallery-post' ),
975
- 'post_id' => get_the_ID()
 
976
  )
977
  );
978
 
@@ -985,14 +989,17 @@ class Responsive_Lightbox_Galleries {
985
  * @return void
986
  */
987
  public function modal_gallery_template() {
 
988
  global $pagenow;
989
 
990
  // display only for post edit pages
991
- if ( ! ( ( $pagenow === 'post.php' || $pagenow === 'post-new.php' ) && get_post_type() !== 'rl_gallery' ) )
992
  return;
993
 
 
994
  $rl = Responsive_Lightbox();
995
 
 
996
  if ( $rl->options['builder']['categories'] ) {
997
  $terms = get_terms(
998
  array(
@@ -1004,6 +1011,7 @@ class Responsive_Lightbox_Galleries {
1004
  )
1005
  );
1006
 
 
1007
  $categories = wp_dropdown_categories(
1008
  array(
1009
  'orderby' => 'name',
@@ -2532,7 +2540,20 @@ class Responsive_Lightbox_Galleries {
2532
  * @return void
2533
  */
2534
  public function post_gallery_preview() {
2535
- if ( ! isset( $_POST['post_id'], $_POST['gallery_id'], $_POST['nonce'] ) || ! check_ajax_referer( 'rl-gallery-post', 'nonce', false ) || ! current_user_can( 'edit_post', (int) $_POST['post_id'] ) )
 
 
 
 
 
 
 
 
 
 
 
 
 
2536
  wp_send_json_error();
2537
 
2538
  // parse gallery ID
@@ -2581,7 +2602,20 @@ class Responsive_Lightbox_Galleries {
2581
  * @return void
2582
  */
2583
  public function post_get_galleries() {
2584
- if ( ! isset( $_POST['post_id'], $_POST['search'], $_POST['nonce'] ) || ! check_ajax_referer( 'rl-gallery-post', 'nonce', false ) || ! current_user_can( 'edit_post', $post_id = (int) $_POST['post_id'] ) )
 
 
 
 
 
 
 
 
 
 
 
 
 
2585
  wp_send_json_error();
2586
 
2587
  $args = array(
36
  add_action( 'admin_init', array( $this, 'init_admin' ) );
37
  add_action( 'edit_form_after_title', array( $this, 'after_title_nav_menu' ) );
38
  add_action( 'admin_footer', array( $this, 'modal_gallery_template' ) );
39
+ add_action( 'customize_controls_print_footer_scripts', array( $this, 'modal_gallery_template' ) );
40
  add_action( 'media_buttons', array( $this, 'add_gallery_button' ) );
41
  add_action( 'add_meta_boxes_rl_gallery', array( $this, 'add_meta_boxes' ) );
42
  add_action( 'save_post_rl_gallery', array( $this, 'save_post' ), 10, 3 );
954
  * @return void
955
  */
956
  public function enqueue_gallery_scripts_styles() {
957
+ global $pagenow;
958
+
959
  // count how many times function was executed
960
  static $run = 0;
961
 
975
  'rlArgsGallery',
976
  array(
977
  'nonce' => wp_create_nonce( 'rl-gallery-post' ),
978
+ 'post_id' => get_the_ID(),
979
+ 'page' => esc_url( $pagenow )
980
  )
981
  );
982
 
989
  * @return void
990
  */
991
  public function modal_gallery_template() {
992
+ global $wp_version;
993
  global $pagenow;
994
 
995
  // display only for post edit pages
996
+ if ( ! ( ( ( $pagenow === 'post.php' || $pagenow === 'post-new.php' ) && get_post_type() !== 'rl_gallery' ) || ( version_compare( $wp_version, '5.8', '>=' ) && ( $pagenow === 'widgets.php' || $pagenow === 'customize.php' ) ) ) )
997
  return;
998
 
999
+ // get main instance
1000
  $rl = Responsive_Lightbox();
1001
 
1002
+ // builder categories?
1003
  if ( $rl->options['builder']['categories'] ) {
1004
  $terms = get_terms(
1005
  array(
1011
  )
1012
  );
1013
 
1014
+ // get categories dropdown
1015
  $categories = wp_dropdown_categories(
1016
  array(
1017
  'orderby' => 'name',
2540
  * @return void
2541
  */
2542
  public function post_gallery_preview() {
2543
+ // check data
2544
+ if ( ! isset( $_POST['post_id'], $_POST['gallery_id'], $_POST['nonce'], $_POST['page'] ) || ! check_ajax_referer( 'rl-gallery-post', 'nonce', false ) )
2545
+ wp_send_json_error();
2546
+
2547
+ // check page
2548
+ if ( ! in_array( $_POST['page'], [ 'widgets.php', 'customize.php', 'post.php', 'post-new.php' ], true ) )
2549
+ wp_send_json_error();
2550
+
2551
+ // check edit_post capability
2552
+ if ( ( $_POST['page'] === 'post.php' || $_POST['page'] === 'post-new.php' ) && ! current_user_can( 'edit_post', (int) $_POST['post_id'] ) )
2553
+ wp_send_json_error();
2554
+
2555
+ // check edit_theme_options capability
2556
+ if ( ( $_POST['page'] === 'widgets.php' || $_POST['page'] === 'customize.php' ) && ! current_user_can( 'edit_theme_options' ) )
2557
  wp_send_json_error();
2558
 
2559
  // parse gallery ID
2602
  * @return void
2603
  */
2604
  public function post_get_galleries() {
2605
+ // check data
2606
+ if ( ! isset( $_POST['post_id'], $_POST['search'], $_POST['nonce'], $_POST['page'] ) || ! check_ajax_referer( 'rl-gallery-post', 'nonce', false ) )
2607
+ wp_send_json_error();
2608
+
2609
+ // check page
2610
+ if ( ! in_array( $_POST['page'], [ 'widgets.php', 'customize.php', 'post.php', 'post-new.php' ], true ) )
2611
+ wp_send_json_error();
2612
+
2613
+ // check edit_post capability
2614
+ if ( ( $_POST['page'] === 'post.php' || $_POST['page'] === 'post-new.php' ) && ! current_user_can( 'edit_post', (int) $_POST['post_id'] ) )
2615
+ wp_send_json_error();
2616
+
2617
+ // check edit_theme_options capability
2618
+ if ( ( $_POST['page'] === 'widgets.php' || $_POST['page'] === 'customize.php' ) && ! current_user_can( 'edit_theme_options' ) )
2619
  wp_send_json_error();
2620
 
2621
  $args = array(
includes/class-remote-library.php CHANGED
@@ -143,10 +143,11 @@ class Responsive_Lightbox_Remote_Library {
143
  * @return void
144
  */
145
  public function remote_library_scripts() {
 
146
  global $pagenow;
147
 
148
  // display only for post edit pages
149
- if ( ! ( $pagenow === 'post.php' || $pagenow === 'post-new.php' ) )
150
  return;
151
 
152
  // get main instance
143
  * @return void
144
  */
145
  public function remote_library_scripts() {
146
+ global $wp_version;
147
  global $pagenow;
148
 
149
  // display only for post edit pages
150
+ if ( ! ( ( $pagenow === 'post.php' || $pagenow === 'post-new.php' ) || ( version_compare( $wp_version, '5.8', '>=' ) && ( $pagenow === 'widgets.php' || $pagenow === 'customize.php' ) ) ) )
151
  return;
152
 
153
  // get main instance
js/admin-gallery.js CHANGED
@@ -150,6 +150,7 @@
150
  action: 'rl-post-gallery-preview',
151
  post_id: rlArgsGallery.post_id,
152
  gallery_id: gallery_id,
 
153
  nonce: rlArgsGallery.nonce
154
  } ).done( function( response ) {
155
  try {
@@ -222,6 +223,7 @@
222
  action: 'rl-post-get-galleries',
223
  post_id: rlArgsGallery.post_id,
224
  search: search,
 
225
  nonce: rlArgsGallery.nonce,
226
  category: _this.resetFilters ? 0 : modal.find( '#rl-media-attachment-categories' ).val()
227
  } ).done( function( response ) {
150
  action: 'rl-post-gallery-preview',
151
  post_id: rlArgsGallery.post_id,
152
  gallery_id: gallery_id,
153
+ page: rlArgsGallery.page,
154
  nonce: rlArgsGallery.nonce
155
  } ).done( function( response ) {
156
  try {
223
  action: 'rl-post-get-galleries',
224
  post_id: rlArgsGallery.post_id,
225
  search: search,
226
+ page: rlArgsGallery.page,
227
  nonce: rlArgsGallery.nonce,
228
  category: _this.resetFilters ? 0 : modal.find( '#rl-media-attachment-categories' ).val()
229
  } ).done( function( response ) {
js/front-basicmasonry.js CHANGED
@@ -16,7 +16,7 @@
16
  elements = $( event.infinite.response ).find( '.rl-gallery-container[data-gallery_id="' + event.gallery_id + '"] .rl-gallery-item' );
17
 
18
  if ( typeof window['rlArgsBasicMasonryGallery' + gallery_no] !== 'undefined' ) {
19
- var options = JSON.parse( window['rlArgsBasicMasonryGallery' + gallery_no] );
20
 
21
  // init masonry
22
  grid = gallery.masonry( {
@@ -50,7 +50,7 @@
50
  gallery_no = parseInt( grid.data( 'gallery_no' ) ) + 1;
51
 
52
  if ( typeof window['rlArgsBasicMasonryGallery' + gallery_no] !== 'undefined' ) {
53
- var options = JSON.parse( window['rlArgsBasicMasonryGallery' + gallery_no] );
54
 
55
  // init masonry
56
  grid.masonry( {
@@ -73,7 +73,7 @@
73
  gallery_no = parseInt( grid.data( 'gallery_no' ) ) + 1;
74
 
75
  if ( typeof window['rlArgsBasicMasonryGallery' + gallery_no] !== 'undefined' ) {
76
- var options = JSON.parse( window['rlArgsBasicMasonryGallery' + gallery_no] );
77
 
78
  // init masonry
79
  grid.masonry( {
16
  elements = $( event.infinite.response ).find( '.rl-gallery-container[data-gallery_id="' + event.gallery_id + '"] .rl-gallery-item' );
17
 
18
  if ( typeof window['rlArgsBasicMasonryGallery' + gallery_no] !== 'undefined' ) {
19
+ var options = window['rlArgsBasicMasonryGallery' + gallery_no].data;
20
 
21
  // init masonry
22
  grid = gallery.masonry( {
50
  gallery_no = parseInt( grid.data( 'gallery_no' ) ) + 1;
51
 
52
  if ( typeof window['rlArgsBasicMasonryGallery' + gallery_no] !== 'undefined' ) {
53
+ var options = window['rlArgsBasicMasonryGallery' + gallery_no].data;
54
 
55
  // init masonry
56
  grid.masonry( {
73
  gallery_no = parseInt( grid.data( 'gallery_no' ) ) + 1;
74
 
75
  if ( typeof window['rlArgsBasicMasonryGallery' + gallery_no] !== 'undefined' ) {
76
+ var options = window['rlArgsBasicMasonryGallery' + gallery_no].data;
77
 
78
  // init masonry
79
  grid.masonry( {
js/front-basicslider.js CHANGED
@@ -6,7 +6,7 @@
6
  $( document ).on( 'doResponsiveLightbox', function() {
7
  $( '.rl-basicslider-gallery' ).each( function( index ) {
8
  var gallery = $( this ),
9
- options = JSON.parse( window['rlArgsBasicSliderGallery' + ( gallery.data( 'gallery_no' ) + 1 )] );
10
 
11
  if ( typeof options !== 'undefined' && typeof options !== false ) {
12
  gallery.slippry( {
6
  $( document ).on( 'doResponsiveLightbox', function() {
7
  $( '.rl-basicslider-gallery' ).each( function( index ) {
8
  var gallery = $( this ),
9
+ options = window['rlArgsBasicSliderGallery' + ( gallery.data( 'gallery_no' ) + 1 )].data;
10
 
11
  if ( typeof options !== 'undefined' && typeof options !== false ) {
12
  gallery.slippry( {
js/gutenberg.min.js CHANGED
@@ -1,7 +1,7 @@
1
- !function(l){var r={};function a(e){if(r[e])return r[e].exports;var t=r[e]={i:e,l:!1,exports:{}};return l[e].call(t.exports,t,t.exports,a),t.l=!0,t.exports}a.m=l,a.c=r,a.d=function(e,t,l){a.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:l})},a.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},a.t=function(t,e){if(1&e&&(t=a(t)),8&e)return t;if(4&e&&"object"==typeof t&&t&&t.__esModule)return t;var l=Object.create(null);if(a.r(l),Object.defineProperty(l,"default",{enumerable:!0,value:t}),2&e&&"string"!=typeof t)for(var r in t)a.d(l,r,function(e){return t[e]}.bind(null,r));return l},a.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return a.d(t,"a",t),t},a.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},a.p="",a(a.s=0)}([function(e,t,l){var o=l(1),r=wp.blockEditor,i=r.MediaUpload,s=r.BlockControls,a=wp.components,m=a.Button,c=a.Dashicon,p=a.ToolbarButton,u=a.ToolbarGroup,n=wp.blocks.registerBlockType,d=wp.i18n.__;n("responsive-lightbox/remote-library-image",{title:d("Remote Library Image"),description:d("Remote Library images"),icon:"format-image",category:"responsive-lightbox",keywords:[d("image"),d("photo")],attributes:{imageURL:{type:"string",default:""},imageID:{type:"string",default:""}},edit:function(e){var t=e.setAttributes,l=e.attributes,r=""!==l.imageID,a=o("components-placeholder",e.className,r?"rl-image-selected":"");function n(e){t({imageURL:e.sizes.full.url,imageID:e.id})}return wp.element.createElement("div",null,wp.element.createElement(s,null,r&&wp.element.createElement(u,null,wp.element.createElement(i,{title:d("Remote Library Images"),addToGallery:!0,gallery:!0,multiple:!1,onSelect:n,allowedTypes:["image"],value:l.imageID,render:function(e){var t=e.open;return wp.element.createElement(p,{className:["components-toolbar__control","rl-remote-library-media-button"],label:d("Edit image"),icon:"edit",onClick:t})}}))),wp.element.createElement("div",{className:a},wp.element.createElement("div",{className:"components-placeholder__label"},wp.element.createElement(c,{icon:"format-image"}),d("Responsive Lightbox | Remote Library Image")),wp.element.createElement("div",{className:"components-placeholder__instructions"},d("Select a file from your remote libraries.")),wp.element.createElement("div",{className:"components-placeholder__fieldset"},wp.element.createElement(i,{title:d("Remote Library Images"),addToGallery:!0,gallery:!0,multiple:!1,onSelect:n,allowedTypes:["image"],value:l.imageID,render:function(e){var t=e.open;return wp.element.createElement(m,{className:["editor-media-placeholder__button","editor-media-placeholder__media-library-button","rl-remote-library-media-button"],onClick:function(e){e.stopPropagation(),t()}},d("Select image"))}})),wp.element.createElement("img",{className:"rl-block-image-preview",src:l.imageURL})))},save:function(e){var t=e.attributes;return wp.element.createElement("figure",{className:"rl-image wp-block-image"},wp.element.createElement("img",{src:t.imageURL}))}}),n("responsive-lightbox/gallery",{title:d("Gallery"),description:d("Galleries"),icon:"format-gallery",category:"responsive-lightbox",keywords:[d("images"),d("photos"),d("gallery")],attributes:{imageURL:{type:"string",default:""},galleryID:{type:"integer",default:0}},edit:function(e){var t=e.setAttributes,l=e.attributes,r=0!==l.galleryID,a=o("components-placeholder",e.className,r?"rl-gallery-selected":"");function n(){t({imageURL:ResponsiveLightboxGallery.lastGalleryImage,galleryID:parseInt(ResponsiveLightboxGallery.lastGalleryID)}),this.removeEventListener("click",n)}return wp.element.createElement("div",null,wp.element.createElement(s,null,r&&wp.element.createElement(u,null,wp.element.createElement(p,{className:["components-toolbar__control","rl-gallery-media-button"],label:d("Edit gallery"),icon:"edit",onClick:function(e){e.stopPropagation(),ResponsiveLightboxGallery.resetFilters=!0,ResponsiveLightboxGallery.open(l.galleryID),ResponsiveLightboxGallery.getModalButton().addEventListener("click",n)}}))),wp.element.createElement("div",{className:a},wp.element.createElement("div",{className:"components-placeholder__label"},wp.element.createElement(c,{icon:"format-image"}),d("Responsive Lightbox | Gallery")),wp.element.createElement("div",{className:"components-placeholder__instructions"},d("Select a gallery.")),wp.element.createElement("div",{className:"components-placeholder__fieldset"},wp.element.createElement(m,{className:["editor-media-placeholder__button","editor-media-placeholder__media-library-button","rl-gallery-media-button"],onClick:function(e){e.stopPropagation(),ResponsiveLightboxGallery.resetFilters=!0,ResponsiveLightboxGallery.open(),ResponsiveLightboxGallery.getModalButton().addEventListener("click",n)}},d("Select gallery"))),wp.element.createElement("img",{className:"rl-block-image-preview",src:l.imageURL})))},save:function(e){var t=e.attributes;return wp.element.createElement("div",null,'[rl_gallery id="',t.galleryID,'"]')}})},function(e,t,l){var r;
2
  /*!
3
- Copyright (c) 2017 Jed Watson.
4
  Licensed under the MIT License (MIT), see
5
  http://jedwatson.github.io/classnames
6
  */
7
- !function(){"use strict";var o={}.hasOwnProperty;function i(){for(var e=[],t=0;t<arguments.length;t++){var l=arguments[t];if(l){var r=typeof l;if("string"==r||"number"==r)e.push(l);else if(Array.isArray(l)&&l.length){var a=i.apply(null,l);a&&e.push(a)}else if("object"==r)for(var n in l)o.call(l,n)&&l[n]&&e.push(n)}}return e.join(" ")}e.exports?(i.default=i,e.exports=i):void 0===(r=function(){return i}.apply(t,[]))||(e.exports=r)}()}]);
1
+ !function(l){var r={};function n(e){if(r[e])return r[e].exports;var t=r[e]={i:e,l:!1,exports:{}};return l[e].call(t.exports,t,t.exports,n),t.l=!0,t.exports}n.m=l,n.c=r,n.d=function(e,t,l){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:l})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(t,e){if(1&e&&(t=n(t)),8&e)return t;if(4&e&&"object"==typeof t&&t&&t.__esModule)return t;var l=Object.create(null);if(n.r(l),Object.defineProperty(l,"default",{enumerable:!0,value:t}),2&e&&"string"!=typeof t)for(var r in t)n.d(l,r,function(e){return t[e]}.bind(null,r));return l},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="",n(n.s=0)}([function(e,t,l){var o=l(1),r=void 0===wp.blockEditor?wp.editor:wp.blockEditor,i=r.MediaUpload,s=r.MediaUploadCheck,c=r.BlockControls,n=wp.components,m=n.Button,p=n.Dashicon,u=n.ToolbarButton,a=n.ToolbarGroup,d=n.Toolbar,g=wp.blocks.registerBlockType,b=wp.i18n.__,y=void 0===a?d:a;g("responsive-lightbox/remote-library-image",{title:b("Remote Library Image"),description:b("Remote Library images"),icon:"format-image",category:"responsive-lightbox",keywords:[b("image"),b("photo")],attributes:{imageURL:{type:"string",default:""},imageID:{type:"integer",default:""}},edit:function(e){var t=e.setAttributes,l=e.attributes,r=""!==l.imageURL,n=o("components-placeholder",e.className,r?"rl-image-selected":"");function a(e){t({imageURL:e.sizes.full.url,imageID:e.id})}return wp.element.createElement("div",null,wp.element.createElement(c,null,r&&wp.element.createElement(y,null,wp.element.createElement(s,null,wp.element.createElement(i,{title:b("Remote Library Images"),addToGallery:!0,gallery:!0,multiple:!1,onSelect:a,allowedTypes:["image"],value:l.imageID,render:function(e){var t=e.open;return wp.element.createElement(u,{className:["components-toolbar__control","rl-remote-library-media-button"],label:b("Edit image"),icon:"edit",onClick:t})}})))),wp.element.createElement("div",{className:n},wp.element.createElement("div",{className:"components-placeholder__label"},wp.element.createElement(p,{icon:"format-image"}),b("Responsive Lightbox | Remote Library Image")),wp.element.createElement("div",{className:"components-placeholder__instructions"},b("Select a file from your remote libraries.")),wp.element.createElement("div",{className:"components-placeholder__fieldset"},wp.element.createElement(s,null,wp.element.createElement(i,{title:b("Remote Library Images"),addToGallery:!0,gallery:!0,multiple:!1,onSelect:a,allowedTypes:["image"],value:l.imageID,render:function(e){var t=e.open;return wp.element.createElement(m,{className:["is-button","is-secondary","is-default","is-large","editor-media-placeholder__button","editor-media-placeholder__media-library-button","rl-remote-library-media-button"],onClick:function(){t()}},b("Select image"))}}))),wp.element.createElement("img",{className:"rl-block-image-preview",src:l.imageURL})))},save:function(e){var t=e.attributes;return wp.element.createElement("figure",{className:"rl-image wp-block-image"},wp.element.createElement("img",{src:t.imageURL}))}}),g("responsive-lightbox/gallery",{title:b("Gallery"),description:b("Galleries"),icon:"format-gallery",category:"responsive-lightbox",keywords:[b("images"),b("photos"),b("gallery")],attributes:{imageURL:{type:"string",default:""},galleryID:{type:"integer",default:0}},edit:function(e){var t=e.setAttributes,l=e.attributes,r=0!==l.galleryID,n=o("components-placeholder",e.className,r?"rl-gallery-selected":"");function a(){t({imageURL:ResponsiveLightboxGallery.lastGalleryImage,galleryID:parseInt(ResponsiveLightboxGallery.lastGalleryID)}),this.removeEventListener("click",a)}return wp.element.createElement("div",null,wp.element.createElement(c,null,r&&wp.element.createElement(y,null,wp.element.createElement(u,{className:["components-toolbar__control","rl-gallery-media-button"],label:b("Edit gallery"),icon:"edit",onClick:function(){ResponsiveLightboxGallery.resetFilters=!0,ResponsiveLightboxGallery.open(l.galleryID),ResponsiveLightboxGallery.getModalButton().addEventListener("click",a)}}))),wp.element.createElement("div",{className:n},wp.element.createElement("div",{className:"components-placeholder__label"},wp.element.createElement(p,{icon:"format-image"}),b("Responsive Lightbox | Gallery")),wp.element.createElement("div",{className:"components-placeholder__instructions"},b("Select a gallery.")),wp.element.createElement("div",{className:"components-placeholder__fieldset"},wp.element.createElement(m,{className:["is-button","is-secondary","is-default","is-large","editor-media-placeholder__button","editor-media-placeholder__media-library-button","rl-gallery-media-button"],onClick:function(){ResponsiveLightboxGallery.resetFilters=!0,ResponsiveLightboxGallery.open(),ResponsiveLightboxGallery.getModalButton().addEventListener("click",a)}},b("Select gallery"))),wp.element.createElement("img",{className:"rl-block-image-preview",src:l.imageURL})))},save:function(e){var t=e.attributes;return wp.element.createElement("div",null,'[rl_gallery id="',t.galleryID,'"]')}})},function(e,t,l){var r;
2
  /*!
3
+ Copyright (c) 2018 Jed Watson.
4
  Licensed under the MIT License (MIT), see
5
  http://jedwatson.github.io/classnames
6
  */
7
+ !function(){"use strict";var o={}.hasOwnProperty;function i(){for(var e=[],t=0;t<arguments.length;t++){var l=arguments[t];if(l){var r=typeof l;if("string"==r||"number"==r)e.push(l);else if(Array.isArray(l)){if(l.length){var n=i.apply(null,l);n&&e.push(n)}}else if("object"==r)if(l.toString===Object.prototype.toString)for(var a in l)o.call(l,a)&&l[a]&&e.push(a);else e.push(l.toString())}}return e.join(" ")}e.exports?(i.default=i,e.exports=i):void 0===(r=function(){return i}.apply(t,[]))||(e.exports=r)}()}]);
languages/responsive-lightbox.pot CHANGED
@@ -1,3425 +1,3425 @@
1
- #, fuzzy
2
- msgid ""
3
- msgstr ""
4
- "Project-Id-Version: Responsive Lightbox\n"
5
- "POT-Creation-Date: 2021-02-19 13:28+0100\n"
6
- "PO-Revision-Date: 2015-05-12 12:06+0100\n"
7
- "Last-Translator: Bartosz Arendt <info@dfactory.eu>\n"
8
- "Language-Team: dFactory <info@dfactory.eu>\n"
9
- "Language: en\n"
10
- "MIME-Version: 1.0\n"
11
- "Content-Type: text/plain; charset=UTF-8\n"
12
- "Content-Transfer-Encoding: 8bit\n"
13
- "X-Generator: Poedit 2.4.2\n"
14
- "X-Poedit-KeywordsList: gettext;gettext_noop;__;_e\n"
15
- "X-Poedit-Basepath: .\n"
16
- "X-Poedit-SourceCharset: UTF-8\n"
17
- "X-Poedit-SearchPath-0: ..\n"
18
-
19
- #: ../includes/class-folders.php:181 ../includes/class-folders.php:195
20
- #: ../includes/class-folders.php:247 ../includes/class-folders.php:261
21
- #: ../includes/class-folders.php:440 ../includes/class-folders.php:1085
22
- #: ../includes/class-folders.php:1109 ../includes/class-folders.php:1140
23
- #: ../includes/class-galleries.php:1181
24
- msgid "Root Folder"
25
- msgstr ""
26
-
27
- #: ../includes/class-folders.php:266
28
- msgid "Upload files to"
29
- msgstr ""
30
-
31
- #: ../includes/class-folders.php:307 ../includes/class-folders.php:319
32
- #: ../includes/class-folders.php:1082 ../includes/class-folders.php:1114
33
- #: ../includes/class-folders.php:1141 ../includes/class-folders.php:1150
34
- #: ../responsive-lightbox.php:1550
35
- msgid "All Files"
36
- msgstr ""
37
-
38
- #: ../includes/class-folders.php:1142
39
- msgid "New Folder"
40
- msgstr ""
41
-
42
- #: ../includes/class-folders.php:1143
43
- msgid "Are you sure you want to delete this folder?"
44
- msgstr ""
45
-
46
- #: ../includes/class-folders.php:1144
47
- msgid "Are you sure you want to delete this folder with all subfolders?"
48
- msgstr ""
49
-
50
- #: ../includes/class-folders.php:1166
51
- #, php-format
52
- msgid "Save new %s"
53
- msgstr ""
54
-
55
- #: ../includes/class-folders.php:1167
56
- #, php-format
57
- msgid "Cancel adding new %s"
58
- msgstr ""
59
-
60
- #: ../includes/class-folders.php:1169
61
- #, php-format
62
- msgid "Save %s"
63
- msgstr ""
64
-
65
- #: ../includes/class-folders.php:1170
66
- #, php-format
67
- msgid "Cancel renaming %s"
68
- msgstr ""
69
-
70
- #: ../includes/class-folders.php:1171
71
- #, php-format
72
- msgid "Delete %s"
73
- msgstr ""
74
-
75
- #: ../includes/class-folders.php:1172
76
- #, php-format
77
- msgid "Expand %s"
78
- msgstr ""
79
-
80
- #: ../includes/class-folders.php:1173
81
- #, php-format
82
- msgid "Collapse %s"
83
- msgstr ""
84
-
85
- #: ../includes/class-frontend.php:567 ../includes/class-widgets.php:476
86
- msgid "Size"
87
- msgstr ""
88
-
89
- #: ../includes/class-frontend.php:569
90
- msgid "Specify the image size to use for the thumbnail display."
91
- msgstr ""
92
-
93
- #: ../includes/class-frontend.php:574
94
- msgid "Link To"
95
- msgstr ""
96
-
97
- #: ../includes/class-frontend.php:576
98
- msgid "Specify where you want the image to link."
99
- msgstr ""
100
-
101
- #: ../includes/class-frontend.php:579 ../includes/class-widgets.php:342
102
- msgid "Attachment Page"
103
- msgstr ""
104
-
105
- #: ../includes/class-frontend.php:580 ../includes/class-widgets.php:341
106
- msgid "Media File"
107
- msgstr ""
108
-
109
- #: ../includes/class-frontend.php:581 ../includes/class-galleries.php:160
110
- #: ../includes/class-settings.php:150 ../includes/class-settings.php:650
111
- #: ../includes/class-settings.php:709 ../includes/class-widgets.php:93
112
- #: ../includes/class-widgets.php:340 ../includes/class-widgets.php:347
113
- msgid "None"
114
- msgstr ""
115
-
116
- #: ../includes/class-frontend.php:585
117
- msgid "Orderby"
118
- msgstr ""
119
-
120
- #: ../includes/class-frontend.php:587
121
- msgid "Specify how to sort the display thumbnails."
122
- msgstr ""
123
-
124
- #: ../includes/class-frontend.php:590 ../includes/class-galleries.php:218
125
- #: ../includes/class-widgets.php:79
126
- msgid "ID"
127
- msgstr ""
128
-
129
- #: ../includes/class-frontend.php:591 ../includes/class-galleries.php:220
130
- #: ../includes/class-widgets.php:77 ../includes/class-widgets.php:133
131
- #: ../includes/class-widgets.php:457
132
- msgid "Title"
133
- msgstr ""
134
-
135
- #: ../includes/class-frontend.php:592 ../includes/class-galleries.php:222
136
- msgid "Date"
137
- msgstr ""
138
-
139
- #: ../includes/class-frontend.php:593
140
- msgid "Menu Order"
141
- msgstr ""
142
-
143
- #: ../includes/class-frontend.php:594 ../includes/class-galleries.php:225
144
- #: ../includes/class-widgets.php:80
145
- msgid "Random"
146
- msgstr ""
147
-
148
- #: ../includes/class-frontend.php:598 ../includes/class-widgets.php:192
149
- msgid "Order"
150
- msgstr ""
151
-
152
- #: ../includes/class-frontend.php:600
153
- msgid "Specify the sort order."
154
- msgstr ""
155
-
156
- #: ../includes/class-frontend.php:603 ../includes/class-galleries.php:234
157
- #: ../includes/class-widgets.php:84
158
- msgid "Ascending"
159
- msgstr ""
160
-
161
- #: ../includes/class-frontend.php:604 ../includes/class-galleries.php:235
162
- #: ../includes/class-widgets.php:85
163
- msgid "Descending"
164
- msgstr ""
165
-
166
- #: ../includes/class-frontend.php:608
167
- msgid "Columns"
168
- msgstr ""
169
-
170
- #: ../includes/class-frontend.php:610
171
- msgid "Specify the number of columns."
172
- msgstr ""
173
-
174
- #: ../includes/class-galleries.php:85 ../includes/class-galleries.php:3640
175
- msgid "Status"
176
- msgstr ""
177
-
178
- #: ../includes/class-galleries.php:86
179
- msgid "Edit image"
180
- msgstr ""
181
-
182
- #: ../includes/class-galleries.php:87 ../responsive-lightbox.php:1734
183
- msgid "Remove image"
184
- msgstr ""
185
-
186
- #: ../includes/class-galleries.php:105 ../includes/class-galleries.php:155
187
- #: ../includes/class-galleries.php:166
188
- msgid "Global"
189
- msgstr ""
190
-
191
- #: ../includes/class-galleries.php:112 ../includes/class-settings.php:209
192
- msgid "Images"
193
- msgstr ""
194
-
195
- #: ../includes/class-galleries.php:113
196
- msgid "The settings below adjust the contents of the gallery."
197
- msgstr ""
198
-
199
- #: ../includes/class-galleries.php:115 ../includes/class-galleries.php:4074
200
- msgid "Media Library"
201
- msgstr ""
202
-
203
- #: ../includes/class-galleries.php:116
204
- msgid "Featured Content"
205
- msgstr ""
206
-
207
- #: ../includes/class-galleries.php:120
208
- msgid "Config"
209
- msgstr ""
210
-
211
- #: ../includes/class-galleries.php:121
212
- msgid "The settings below adjust the configuration options for the gallery."
213
- msgstr ""
214
-
215
- #: ../includes/class-galleries.php:125
216
- msgid "Design"
217
- msgstr ""
218
-
219
- #: ../includes/class-galleries.php:126
220
- msgid "The settings below adjust the gallery design options."
221
- msgstr ""
222
-
223
- #: ../includes/class-galleries.php:129
224
- msgid "Paging"
225
- msgstr ""
226
-
227
- #: ../includes/class-galleries.php:130
228
- msgid "The settings below adjust the gallery pagination options."
229
- msgstr ""
230
-
231
- #: ../includes/class-galleries.php:133 ../includes/class-settings.php:1840
232
- msgid "Lightbox"
233
- msgstr ""
234
-
235
- #: ../includes/class-galleries.php:134
236
- msgid "The settings below adjust the lightbox options."
237
- msgstr ""
238
-
239
- #: ../includes/class-galleries.php:137
240
- msgid "Misc"
241
- msgstr ""
242
-
243
- #: ../includes/class-galleries.php:138
244
- msgid "The settings below adjust miscellaneous options."
245
- msgstr ""
246
-
247
- #: ../includes/class-galleries.php:144
248
- msgid "Media Folders"
249
- msgstr ""
250
-
251
- #: ../includes/class-galleries.php:147 ../includes/class-settings.php:499
252
- #: ../includes/class-settings.php:1028
253
- msgid "Remote Library"
254
- msgstr ""
255
-
256
- #: ../includes/class-galleries.php:154
257
- msgid "Full size"
258
- msgstr ""
259
-
260
- #: ../includes/class-galleries.php:156 ../includes/class-galleries.php:538
261
- msgid "Custom size"
262
- msgstr ""
263
-
264
- #: ../includes/class-galleries.php:161
265
- msgid "Top"
266
- msgstr ""
267
-
268
- #: ../includes/class-galleries.php:162
269
- msgid "Bottom"
270
- msgstr ""
271
-
272
- #: ../includes/class-galleries.php:206
273
- msgid "Number of Posts"
274
- msgstr ""
275
-
276
- #: ../includes/class-galleries.php:208
277
- msgid "Enter the number of posts."
278
- msgstr ""
279
-
280
- #: ../includes/class-galleries.php:213
281
- msgid "Posts Sorting"
282
- msgstr ""
283
-
284
- #: ../includes/class-galleries.php:215
285
- msgid "Select the posts sorting."
286
- msgstr ""
287
-
288
- #: ../includes/class-galleries.php:219
289
- msgid "Author"
290
- msgstr ""
291
-
292
- #: ../includes/class-galleries.php:221
293
- msgid "Slug"
294
- msgstr ""
295
-
296
- #: ../includes/class-galleries.php:223
297
- msgid "Last modified date"
298
- msgstr ""
299
-
300
- #: ../includes/class-galleries.php:224
301
- msgid "Parent ID"
302
- msgstr ""
303
-
304
- #: ../includes/class-galleries.php:229
305
- msgid "Posts Order"
306
- msgstr ""
307
-
308
- #: ../includes/class-galleries.php:231
309
- msgid "Select the posts order."
310
- msgstr ""
311
-
312
- #: ../includes/class-galleries.php:239
313
- msgid "Posts Offset"
314
- msgstr ""
315
-
316
- #: ../includes/class-galleries.php:241
317
- msgid "Enter the posts offset."
318
- msgstr ""
319
-
320
- #: ../includes/class-galleries.php:246
321
- msgid "Image Source"
322
- msgstr ""
323
-
324
- #: ../includes/class-galleries.php:248
325
- msgid "Select the image source."
326
- msgstr ""
327
-
328
- #: ../includes/class-galleries.php:251
329
- msgid "Post Thumbnails"
330
- msgstr ""
331
-
332
- #: ../includes/class-galleries.php:252
333
- msgid "Post Attached Images"
334
- msgstr ""
335
-
336
- #: ../includes/class-galleries.php:256
337
- msgid "Images per Post"
338
- msgstr ""
339
-
340
- #: ../includes/class-galleries.php:258
341
- msgid "Enter maximum number of images for a post."
342
- msgstr ""
343
-
344
- #: ../includes/class-galleries.php:263
345
- msgid "Post Type"
346
- msgstr ""
347
-
348
- #: ../includes/class-galleries.php:265
349
- msgid "Select the post types to query."
350
- msgstr ""
351
-
352
- #: ../includes/class-galleries.php:270
353
- msgid "Post Status"
354
- msgstr ""
355
-
356
- #: ../includes/class-galleries.php:272
357
- msgid "Select the post status."
358
- msgstr ""
359
-
360
- #: ../includes/class-galleries.php:277
361
- msgid "Post Format"
362
- msgstr ""
363
-
364
- #: ../includes/class-galleries.php:279
365
- msgid "Select the post format."
366
- msgstr ""
367
-
368
- #: ../includes/class-galleries.php:284
369
- msgid "Post Term"
370
- msgstr ""
371
-
372
- #: ../includes/class-galleries.php:286
373
- msgid "Select the post taxonomy terms to query."
374
- msgstr ""
375
-
376
- #: ../includes/class-galleries.php:291
377
- msgid "Post Author"
378
- msgstr ""
379
-
380
- #: ../includes/class-galleries.php:293
381
- msgid "Select the post author."
382
- msgstr ""
383
-
384
- #: ../includes/class-galleries.php:298
385
- msgid "Page Parent"
386
- msgstr ""
387
-
388
- #: ../includes/class-galleries.php:300
389
- msgid "Select the post parent."
390
- msgstr ""
391
-
392
- #: ../includes/class-galleries.php:305
393
- msgid "Page Template"
394
- msgstr ""
395
-
396
- #: ../includes/class-galleries.php:307
397
- msgid "Select the page template."
398
- msgstr ""
399
-
400
- #: ../includes/class-galleries.php:328
401
- msgid "Media Folder"
402
- msgstr ""
403
-
404
- #: ../includes/class-galleries.php:330
405
- msgid "Select media folder."
406
- msgstr ""
407
-
408
- #: ../includes/class-galleries.php:355
409
- msgid "Search string"
410
- msgstr ""
411
-
412
- #: ../includes/class-galleries.php:357
413
- msgid "Enter the search phrase."
414
- msgstr ""
415
-
416
- #: ../includes/class-galleries.php:361 ../includes/class-settings.php:491
417
- msgid "Media Providers"
418
- msgstr ""
419
-
420
- #: ../includes/class-galleries.php:363
421
- msgid "Select which remote library should be used."
422
- msgstr ""
423
-
424
- #: ../includes/class-galleries.php:366
425
- msgid "All Media Providers"
426
- msgstr ""
427
-
428
- #: ../includes/class-galleries.php:382
429
- msgid "Thumbnail title"
430
- msgstr ""
431
-
432
- #: ../includes/class-galleries.php:384
433
- msgid "Select title for the gallery thumbnails."
434
- msgstr ""
435
-
436
- #: ../includes/class-galleries.php:389
437
- msgid "Thumbnail caption"
438
- msgstr ""
439
-
440
- #: ../includes/class-galleries.php:391
441
- msgid "Select caption for the gallery thumbnails."
442
- msgstr ""
443
-
444
- #: ../includes/class-galleries.php:396
445
- msgid "Thumbnail icon"
446
- msgstr ""
447
-
448
- #: ../includes/class-galleries.php:398
449
- msgid "Select icon for the gallery thumbnails."
450
- msgstr ""
451
-
452
- #: ../includes/class-galleries.php:401 ../includes/class-galleries.php:420
453
- #: ../includes/class-settings.php:100
454
- msgid "none"
455
- msgstr ""
456
-
457
- #: ../includes/class-galleries.php:415
458
- msgid "Hover effect"
459
- msgstr ""
460
-
461
- #: ../includes/class-galleries.php:417
462
- msgid "Select thumbnail effect on hover."
463
- msgstr ""
464
-
465
- #: ../includes/class-galleries.php:421 ../includes/class-galleries.php:422
466
- #: ../includes/class-galleries.php:423 ../includes/class-galleries.php:424
467
- #: ../includes/class-galleries.php:425 ../includes/class-galleries.php:426
468
- #: ../includes/class-galleries.php:427 ../includes/class-galleries.php:428
469
- #: ../includes/class-galleries.php:429
470
- #, php-format
471
- msgid "Effect %s"
472
- msgstr ""
473
-
474
- #: ../includes/class-galleries.php:433
475
- msgid "Title Color"
476
- msgstr ""
477
-
478
- #: ../includes/class-galleries.php:438
479
- msgid "Caption Color"
480
- msgstr ""
481
-
482
- #: ../includes/class-galleries.php:443
483
- msgid "Background Color"
484
- msgstr ""
485
-
486
- #: ../includes/class-galleries.php:448
487
- msgid "Background Opacity"
488
- msgstr ""
489
-
490
- #: ../includes/class-galleries.php:457
491
- msgid "Border Color"
492
- msgstr ""
493
-
494
- #: ../includes/class-galleries.php:462
495
- msgid "Border Width"
496
- msgstr ""
497
-
498
- #: ../includes/class-galleries.php:475
499
- msgid "Use pagination"
500
- msgstr ""
501
-
502
- #: ../includes/class-galleries.php:477
503
- msgid "Enable pagination."
504
- msgstr ""
505
-
506
- #: ../includes/class-galleries.php:481
507
- msgid "Pagination type"
508
- msgstr ""
509
-
510
- #: ../includes/class-galleries.php:483
511
- msgid "Select pagination type."
512
- msgstr ""
513
-
514
- #: ../includes/class-galleries.php:486
515
- msgid "standard"
516
- msgstr ""
517
-
518
- #: ../includes/class-galleries.php:487
519
- msgid "AJAX"
520
- msgstr ""
521
-
522
- #: ../includes/class-galleries.php:488
523
- msgid "infinite scroll"
524
- msgstr ""
525
-
526
- #: ../includes/class-galleries.php:492
527
- msgid "Pagination position"
528
- msgstr ""
529
-
530
- #: ../includes/class-galleries.php:494
531
- msgid "Select pagination position."
532
- msgstr ""
533
-
534
- #: ../includes/class-galleries.php:497
535
- msgid "bottom"
536
- msgstr ""
537
-
538
- #: ../includes/class-galleries.php:498
539
- msgid "top"
540
- msgstr ""
541
-
542
- #: ../includes/class-galleries.php:499
543
- msgid "top & bottom"
544
- msgstr ""
545
-
546
- #: ../includes/class-galleries.php:503
547
- msgid "Images per page"
548
- msgstr ""
549
-
550
- #: ../includes/class-galleries.php:505
551
- msgid "Number of images per page."
552
- msgstr ""
553
-
554
- #: ../includes/class-galleries.php:511
555
- msgid "Load More"
556
- msgstr ""
557
-
558
- #: ../includes/class-galleries.php:513
559
- msgid "Select the load more trigger (infinite scroll only)."
560
- msgstr ""
561
-
562
- #: ../includes/class-galleries.php:516
563
- msgid "Automatically"
564
- msgstr ""
565
-
566
- #: ../includes/class-galleries.php:517
567
- msgid "On click"
568
- msgstr ""
569
-
570
- #: ../includes/class-galleries.php:525
571
- msgid "Enable Lightbox"
572
- msgstr ""
573
-
574
- #: ../includes/class-galleries.php:527
575
- msgid "Enable lightbox effect for the gallery."
576
- msgstr ""
577
-
578
- #: ../includes/class-galleries.php:531
579
- msgid "Image Size"
580
- msgstr ""
581
-
582
- #: ../includes/class-galleries.php:533
583
- msgid "Select image size for gallery lightbox."
584
- msgstr ""
585
-
586
- #: ../includes/class-galleries.php:540
587
- msgid ""
588
- "Choose the custom image size for gallery lightbox (used if Custom Image size "
589
- "is selected)."
590
- msgstr ""
591
-
592
- #: ../includes/class-galleries.php:544
593
- msgid "width in px"
594
- msgstr ""
595
-
596
- #: ../includes/class-galleries.php:549
597
- msgid "height in px"
598
- msgstr ""
599
-
600
- #: ../includes/class-galleries.php:555 ../includes/class-settings.php:151
601
- msgid "Image Title"
602
- msgstr ""
603
-
604
- #: ../includes/class-galleries.php:557
605
- msgid "Select image title for gallery lightbox."
606
- msgstr ""
607
-
608
- #: ../includes/class-galleries.php:562 ../includes/class-settings.php:152
609
- msgid "Image Caption"
610
- msgstr ""
611
-
612
- #: ../includes/class-galleries.php:564
613
- msgid ""
614
- "Select image caption for gallery lightbox (used if supported by selected "
615
- "lightbox effect)."
616
- msgstr ""
617
-
618
- #: ../includes/class-galleries.php:573
619
- msgid "Title Position"
620
- msgstr ""
621
-
622
- #: ../includes/class-galleries.php:575
623
- msgid "Select where to display the title."
624
- msgstr ""
625
-
626
- #: ../includes/class-galleries.php:580
627
- msgid "Description Position"
628
- msgstr ""
629
-
630
- #: ../includes/class-galleries.php:582
631
- msgid "Select where to display the description."
632
- msgstr ""
633
-
634
- #: ../includes/class-galleries.php:587
635
- msgid "Gallery Description"
636
- msgstr ""
637
-
638
- #: ../includes/class-galleries.php:589
639
- msgid "Enter the gallery description (optional)."
640
- msgstr ""
641
-
642
- #: ../includes/class-galleries.php:594
643
- msgid "Custom Classes"
644
- msgstr ""
645
-
646
- #: ../includes/class-galleries.php:596
647
- msgid "Add custom, space saparated CSS classes (optional)."
648
- msgstr ""
649
-
650
- #: ../includes/class-galleries.php:625 ../includes/class-galleries.php:631
651
- msgid "No gallery to duplicate has been supplied!"
652
- msgstr ""
653
-
654
- #: ../includes/class-galleries.php:634
655
- msgid "You do not have permission to copy this gallery."
656
- msgstr ""
657
-
658
- #: ../includes/class-galleries.php:646
659
- msgid "Copy creation failed, could not find original gallery:"
660
- msgstr ""
661
-
662
- #: ../includes/class-galleries.php:666
663
- msgid "Duplicate"
664
- msgstr ""
665
-
666
- #: ../includes/class-galleries.php:947
667
- msgid "Add Gallery"
668
- msgstr ""
669
-
670
- #: ../includes/class-galleries.php:1011 ../includes/class-galleries.php:1012
671
- msgid "All categories"
672
- msgstr ""
673
-
674
- #: ../includes/class-galleries.php:1031 ../includes/class-tour.php:255
675
- msgid "Close"
676
- msgstr ""
677
-
678
- #: ../includes/class-galleries.php:1035
679
- msgid "Insert Gallery"
680
- msgstr ""
681
-
682
- #: ../includes/class-galleries.php:1035
683
- msgid "Reload"
684
- msgstr ""
685
-
686
- #: ../includes/class-galleries.php:1050
687
- msgid "Search galleries"
688
- msgstr ""
689
-
690
- #: ../includes/class-galleries.php:1056
691
- msgid "Select A Gallery"
692
- msgstr ""
693
-
694
- #: ../includes/class-galleries.php:1057
695
- msgid "To select a gallery simply click on one of the boxes to the left."
696
- msgstr ""
697
-
698
- #: ../includes/class-galleries.php:1058
699
- msgid ""
700
- "To insert your gallery into the editor, click on the \"Insert Gallery\" "
701
- "button below."
702
- msgstr ""
703
-
704
- #: ../includes/class-galleries.php:1068 ../responsive-lightbox.php:1287
705
- msgid "Edit gallery"
706
- msgstr ""
707
-
708
- #: ../includes/class-galleries.php:1078
709
- msgid "Insert gallery into post"
710
- msgstr ""
711
-
712
- #: ../includes/class-galleries.php:1079
713
- msgid "Select gallery"
714
- msgstr ""
715
-
716
- #: ../includes/class-galleries.php:1080 ../responsive-lightbox.php:976
717
- msgid "Cancel"
718
- msgstr ""
719
-
720
- #: ../includes/class-galleries.php:1295 ../includes/class-widgets.php:140
721
- #: ../responsive-lightbox.php:1611 ../responsive-lightbox.php:1735
722
- msgid "Select images"
723
- msgstr ""
724
-
725
- #: ../includes/class-galleries.php:1331
726
- msgid "Update preview"
727
- msgstr ""
728
-
729
- #: ../includes/class-galleries.php:1423
730
- msgid "First page"
731
- msgstr ""
732
-
733
- #: ../includes/class-galleries.php:1434
734
- msgid "Previous page"
735
- msgstr ""
736
-
737
- #: ../includes/class-galleries.php:1441
738
- msgid "Current Page"
739
- msgstr ""
740
-
741
- #: ../includes/class-galleries.php:1456
742
- msgid "Next page"
743
- msgstr ""
744
-
745
- #: ../includes/class-galleries.php:1467
746
- msgid "Last page"
747
- msgstr ""
748
-
749
- #: ../includes/class-galleries.php:1838
750
- #, php-format
751
- msgid "Gallery %s"
752
- msgstr ""
753
-
754
- #: ../includes/class-galleries.php:1842
755
- msgid "Gallery Code"
756
- msgstr ""
757
-
758
- #: ../includes/class-galleries.php:1881
759
- msgid "Remote Library is disabled. Enable it in the settings."
760
- msgstr ""
761
-
762
- #: ../includes/class-galleries.php:1885
763
- msgid "Media Folders are disabled. Enable it in the settings."
764
- msgstr ""
765
-
766
- #: ../includes/class-galleries.php:1987
767
- msgid "No data"
768
- msgstr ""
769
-
770
- #: ../includes/class-galleries.php:2501
771
- msgid "&laquo; Previous"
772
- msgstr ""
773
-
774
- #: ../includes/class-galleries.php:2502
775
- msgid "Next &raquo;"
776
- msgstr ""
777
-
778
- #: ../includes/class-galleries.php:2632
779
- msgid "(no title)"
780
- msgstr ""
781
-
782
- #: ../includes/class-galleries.php:2646
783
- msgid "Deselect"
784
- msgstr ""
785
-
786
- #: ../includes/class-galleries.php:3551
787
- msgid "Untitled"
788
- msgstr ""
789
-
790
- #: ../includes/class-galleries.php:3632
791
- msgid "Aside"
792
- msgstr ""
793
-
794
- #: ../includes/class-galleries.php:3633
795
- msgid "Audio"
796
- msgstr ""
797
-
798
- #: ../includes/class-galleries.php:3634
799
- msgid "Chat"
800
- msgstr ""
801
-
802
- #: ../includes/class-galleries.php:3635 ../includes/class-galleries.php:3937
803
- #: ../includes/class-widgets.php:57 ../includes/class-widgets.php:65
804
- #: ../responsive-lightbox.php:1162
805
- msgid "Gallery"
806
- msgstr ""
807
-
808
- #: ../includes/class-galleries.php:3636
809
- msgid "Link"
810
- msgstr ""
811
-
812
- #: ../includes/class-galleries.php:3637
813
- msgid "Photo"
814
- msgstr ""
815
-
816
- #: ../includes/class-galleries.php:3638
817
- msgid "Quote"
818
- msgstr ""
819
-
820
- #: ../includes/class-galleries.php:3639
821
- msgid "Standard"
822
- msgstr ""
823
-
824
- #: ../includes/class-galleries.php:3641
825
- msgid "Video"
826
- msgstr ""
827
-
828
- #: ../includes/class-galleries.php:3742
829
- msgid "Default Template"
830
- msgstr ""
831
-
832
- #: ../includes/class-galleries.php:3917
833
- msgid ""
834
- "You can place this gallery anywhere into your posts, pages, custom post "
835
- "types or widgets by using the shortcode below"
836
- msgstr ""
837
-
838
- #: ../includes/class-galleries.php:3919
839
- msgid ""
840
- "You can also place this gallery into your template files by using the "
841
- "template tag below"
842
- msgstr ""
843
-
844
- #: ../includes/class-galleries.php:3946
845
- msgid "Shortcode"
846
- msgstr ""
847
-
848
- #: ../includes/class-galleries.php:3947
849
- msgid "Type"
850
- msgstr ""
851
-
852
- #: ../includes/class-galleries.php:3948
853
- msgid "Source"
854
- msgstr ""
855
-
856
- #: ../includes/class-galleries.php:4072
857
- msgid "Select gallery featured image source:"
858
- msgstr ""
859
-
860
- #: ../includes/class-galleries.php:4073
861
- msgid "First gallery image"
862
- msgstr ""
863
-
864
- #: ../includes/class-galleries.php:4075 ../includes/class-widgets.php:343
865
- msgid "Custom URL"
866
- msgstr ""
867
-
868
- #: ../includes/class-galleries.php:4081
869
- msgid "Custom featured image URL"
870
- msgstr ""
871
-
872
- #: ../includes/class-galleries.php:4083
873
- msgid "Dynamically generated first gallery image"
874
- msgstr ""
875
-
876
- #: ../includes/class-remote-library-api.php:145
877
- msgid "Request error"
878
- msgstr ""
879
-
880
- #: ../includes/class-remote-library-api.php:194
881
- #, php-format
882
- msgid "Image from %s"
883
- msgstr ""
884
-
885
- #: ../includes/class-remote-library-api.php:196
886
- #, php-format
887
- msgid "Image from <a href=\"%s\" target=\"_blank\">%s</a>"
888
- msgstr ""
889
-
890
- #: ../includes/class-remote-library-api.php:201
891
- #, php-format
892
- msgid "via %s"
893
- msgstr ""
894
-
895
- #: ../includes/class-remote-library-api.php:203
896
- #, php-format
897
- msgid "via <a href=\"%s\" target=\"_blank\">%s</a>"
898
- msgstr ""
899
-
900
- #: ../includes/class-remote-library.php:165
901
- msgid "All providers"
902
- msgstr ""
903
-
904
- #: ../includes/class-remote-library.php:166
905
- msgid "Upload and Insert"
906
- msgstr ""
907
-
908
- #: ../includes/class-remote-library.php:167
909
- msgid "Upload and Select"
910
- msgstr ""
911
-
912
- #: ../includes/class-remote-library.php:168
913
- msgid "Filter by remote library"
914
- msgstr ""
915
-
916
- #: ../includes/class-remote-library.php:345
917
- msgid "F j Y"
918
- msgstr ""
919
-
920
- #: ../includes/class-settings.php:64
921
- msgid "SwipeBox"
922
- msgstr ""
923
-
924
- #: ../includes/class-settings.php:66
925
- msgid "CSS"
926
- msgstr ""
927
-
928
- #: ../includes/class-settings.php:67
929
- msgid "jQuery"
930
- msgstr ""
931
-
932
- #: ../includes/class-settings.php:72
933
- msgid "prettyPhoto"
934
- msgstr ""
935
-
936
- #: ../includes/class-settings.php:74
937
- msgid "slow"
938
- msgstr ""
939
-
940
- #: ../includes/class-settings.php:75
941
- msgid "normal"
942
- msgstr ""
943
-
944
- #: ../includes/class-settings.php:76
945
- msgid "fast"
946
- msgstr ""
947
-
948
- #: ../includes/class-settings.php:79
949
- msgid "default"
950
- msgstr ""
951
-
952
- #: ../includes/class-settings.php:80
953
- msgid "light rounded"
954
- msgstr ""
955
-
956
- #: ../includes/class-settings.php:81
957
- msgid "dark rounded"
958
- msgstr ""
959
-
960
- #: ../includes/class-settings.php:82
961
- msgid "light square"
962
- msgstr ""
963
-
964
- #: ../includes/class-settings.php:83
965
- msgid "dark square"
966
- msgstr ""
967
-
968
- #: ../includes/class-settings.php:84
969
- msgid "facebook"
970
- msgstr ""
971
-
972
- #: ../includes/class-settings.php:87
973
- msgid "window"
974
- msgstr ""
975
-
976
- #: ../includes/class-settings.php:88
977
- msgid "transparent"
978
- msgstr ""
979
-
980
- #: ../includes/class-settings.php:89
981
- msgid "opaque"
982
- msgstr ""
983
-
984
- #: ../includes/class-settings.php:90
985
- msgid "direct"
986
- msgstr ""
987
-
988
- #: ../includes/class-settings.php:91
989
- msgid "gpu"
990
- msgstr ""
991
-
992
- #: ../includes/class-settings.php:96
993
- msgid "FancyBox"
994
- msgstr ""
995
-
996
- #: ../includes/class-settings.php:98
997
- msgid "elastic"
998
- msgstr ""
999
-
1000
- #: ../includes/class-settings.php:99 ../includes/class-settings.php:121
1001
- #: ../includes/class-settings.php:1580
1002
- msgid "fade"
1003
- msgstr ""
1004
-
1005
- #: ../includes/class-settings.php:103
1006
- msgid "auto"
1007
- msgstr ""
1008
-
1009
- #: ../includes/class-settings.php:104
1010
- msgid "yes"
1011
- msgstr ""
1012
-
1013
- #: ../includes/class-settings.php:105
1014
- msgid "no"
1015
- msgstr ""
1016
-
1017
- #: ../includes/class-settings.php:108
1018
- msgid "swing"
1019
- msgstr ""
1020
-
1021
- #: ../includes/class-settings.php:109
1022
- msgid "linear"
1023
- msgstr ""
1024
-
1025
- #: ../includes/class-settings.php:112
1026
- msgid "outside"
1027
- msgstr ""
1028
-
1029
- #: ../includes/class-settings.php:113
1030
- msgid "inside"
1031
- msgstr ""
1032
-
1033
- #: ../includes/class-settings.php:114
1034
- msgid "over"
1035
- msgstr ""
1036
-
1037
- #: ../includes/class-settings.php:119
1038
- msgid "Nivo Lightbox"
1039
- msgstr ""
1040
-
1041
- #: ../includes/class-settings.php:122
1042
- msgid "fade scale"
1043
- msgstr ""
1044
-
1045
- #: ../includes/class-settings.php:123
1046
- msgid "slide left"
1047
- msgstr ""
1048
-
1049
- #: ../includes/class-settings.php:124
1050
- msgid "slide right"
1051
- msgstr ""
1052
-
1053
- #: ../includes/class-settings.php:125
1054
- msgid "slide up"
1055
- msgstr ""
1056
-
1057
- #: ../includes/class-settings.php:126
1058
- msgid "slide down"
1059
- msgstr ""
1060
-
1061
- #: ../includes/class-settings.php:127
1062
- msgid "fall"
1063
- msgstr ""
1064
-
1065
- #: ../includes/class-settings.php:132
1066
- msgid "Image Lightbox"
1067
- msgstr ""
1068
-
1069
- #: ../includes/class-settings.php:136
1070
- msgid "TosRUs"
1071
- msgstr ""
1072
-
1073
- #: ../includes/class-settings.php:140
1074
- msgid "Featherlight"
1075
- msgstr ""
1076
-
1077
- #: ../includes/class-settings.php:144
1078
- msgid "Magnific Popup"
1079
- msgstr ""
1080
-
1081
- #: ../includes/class-settings.php:153
1082
- msgid "Image Alt Text"
1083
- msgstr ""
1084
-
1085
- #: ../includes/class-settings.php:154
1086
- msgid "Image Description"
1087
- msgstr ""
1088
-
1089
- #: ../includes/class-settings.php:164
1090
- msgid "Thumbnail"
1091
- msgstr ""
1092
-
1093
- #: ../includes/class-settings.php:165
1094
- msgid "Medium"
1095
- msgstr ""
1096
-
1097
- #: ../includes/class-settings.php:166
1098
- msgid "Large"
1099
- msgstr ""
1100
-
1101
- #: ../includes/class-settings.php:167
1102
- msgid "Full Size"
1103
- msgstr ""
1104
-
1105
- #: ../includes/class-settings.php:181 ../includes/class-tour.php:151
1106
- msgid "General Settings"
1107
- msgstr ""
1108
-
1109
- #: ../includes/class-settings.php:187
1110
- msgid "Introduction Tour"
1111
- msgstr ""
1112
-
1113
- #: ../includes/class-settings.php:190 ../includes/class-welcome.php:68
1114
- msgid "Start Tour"
1115
- msgstr ""
1116
-
1117
- #: ../includes/class-settings.php:191
1118
- msgid "Take this tour to quickly learn about the use of this plugin."
1119
- msgstr ""
1120
-
1121
- #: ../includes/class-settings.php:195
1122
- msgid "Default lightbox"
1123
- msgstr ""
1124
-
1125
- #: ../includes/class-settings.php:199
1126
- #, php-format
1127
- msgid ""
1128
- "Select your preferred ligthbox effect script or get our <a href=\"%s"
1129
- "\">premium extensions</a>."
1130
- msgstr ""
1131
-
1132
- #: ../includes/class-settings.php:203
1133
- msgid "Selector"
1134
- msgstr ""
1135
-
1136
- #: ../includes/class-settings.php:206
1137
- msgid "Enter the rel selector lightbox effect will be applied to."
1138
- msgstr ""
1139
-
1140
- #: ../includes/class-settings.php:212
1141
- msgid "Enable lightbox for WordPress image links."
1142
- msgstr ""
1143
-
1144
- #: ../includes/class-settings.php:215
1145
- msgid "Single image title"
1146
- msgstr ""
1147
-
1148
- #: ../includes/class-settings.php:218
1149
- msgid "Select title for single images."
1150
- msgstr ""
1151
-
1152
- #: ../includes/class-settings.php:222
1153
- msgid "Single image caption"
1154
- msgstr ""
1155
-
1156
- #: ../includes/class-settings.php:225
1157
- msgid ""
1158
- "Select caption for single images (if supported by selected lightbox and/or "
1159
- "gallery)."
1160
- msgstr ""
1161
-
1162
- #: ../includes/class-settings.php:229
1163
- msgid "Single images as gallery"
1164
- msgstr ""
1165
-
1166
- #: ../includes/class-settings.php:232
1167
- msgid "Display single post images as a gallery."
1168
- msgstr ""
1169
-
1170
- #: ../includes/class-settings.php:235 ../includes/class-settings.php:997
1171
- #: ../responsive-lightbox.php:1276 ../responsive-lightbox.php:1282
1172
- #: ../responsive-lightbox.php:1293 ../responsive-lightbox.php:1304
1173
- msgid "Galleries"
1174
- msgstr ""
1175
-
1176
- #: ../includes/class-settings.php:238
1177
- msgid "Enable lightbox for WordPress image galleries."
1178
- msgstr ""
1179
-
1180
- #: ../includes/class-settings.php:241
1181
- msgid "WordPress gallery"
1182
- msgstr ""
1183
-
1184
- #: ../includes/class-settings.php:244
1185
- msgid "Select your preferred default WordPress gallery style."
1186
- msgstr ""
1187
-
1188
- #: ../includes/class-settings.php:248
1189
- msgid "Builder gallery"
1190
- msgstr ""
1191
-
1192
- #: ../includes/class-settings.php:251
1193
- msgid "Select your preferred default builder gallery style."
1194
- msgstr ""
1195
-
1196
- #: ../includes/class-settings.php:255
1197
- msgid "WooCommerce gallery"
1198
- msgstr ""
1199
-
1200
- #: ../includes/class-settings.php:259
1201
- msgid "Select your preferred gallery style for WooCommerce product gallery."
1202
- msgstr ""
1203
-
1204
- #: ../includes/class-settings.php:263
1205
- msgid "Gallery image size"
1206
- msgstr ""
1207
-
1208
- #: ../includes/class-settings.php:266
1209
- msgid "Select image size for gallery image links."
1210
- msgstr ""
1211
-
1212
- #: ../includes/class-settings.php:270
1213
- msgid "Gallery image title"
1214
- msgstr ""
1215
-
1216
- #: ../includes/class-settings.php:273
1217
- msgid "Select title for the gallery images."
1218
- msgstr ""
1219
-
1220
- #: ../includes/class-settings.php:277
1221
- msgid "Gallery image caption"
1222
- msgstr ""
1223
-
1224
- #: ../includes/class-settings.php:280
1225
- msgid ""
1226
- "Select caption for the gallery images (if supported by selected lightbox and/"
1227
- "or gallery)."
1228
- msgstr ""
1229
-
1230
- #: ../includes/class-settings.php:284
1231
- msgid "Videos"
1232
- msgstr ""
1233
-
1234
- #: ../includes/class-settings.php:287
1235
- msgid "Enable lightbox for YouTube and Vimeo video links."
1236
- msgstr ""
1237
-
1238
- #: ../includes/class-settings.php:290
1239
- msgid "Widgets"
1240
- msgstr ""
1241
-
1242
- #: ../includes/class-settings.php:293
1243
- msgid "Enable lightbox for widgets content."
1244
- msgstr ""
1245
-
1246
- #: ../includes/class-settings.php:296
1247
- msgid "Comments"
1248
- msgstr ""
1249
-
1250
- #: ../includes/class-settings.php:299
1251
- msgid "Enable lightbox for comments content."
1252
- msgstr ""
1253
-
1254
- #: ../includes/class-settings.php:302
1255
- msgid "Force lightbox"
1256
- msgstr ""
1257
-
1258
- #: ../includes/class-settings.php:305
1259
- msgid ""
1260
- "Try to force lightbox for custom WP gallery replacements, like Jetpack or "
1261
- "Visual Composer galleries."
1262
- msgstr ""
1263
-
1264
- #: ../includes/class-settings.php:308
1265
- msgid "WooCommerce lightbox"
1266
- msgstr ""
1267
-
1268
- #: ../includes/class-settings.php:311
1269
- msgid "Replace WooCommerce product gallery lightbox."
1270
- msgstr ""
1271
-
1272
- #: ../includes/class-settings.php:315
1273
- msgid "Custom events"
1274
- msgstr ""
1275
-
1276
- #: ../includes/class-settings.php:321
1277
- msgid "Enable triggering lightbox on custom jQuery events."
1278
- msgstr ""
1279
-
1280
- #: ../includes/class-settings.php:325
1281
- msgid "Enter a space separated list of events."
1282
- msgstr ""
1283
-
1284
- #: ../includes/class-settings.php:330
1285
- msgid "Loading place"
1286
- msgstr ""
1287
-
1288
- #: ../includes/class-settings.php:333
1289
- msgid "Select where all the lightbox scripts should be placed."
1290
- msgstr ""
1291
-
1292
- #: ../includes/class-settings.php:335
1293
- msgid "Header"
1294
- msgstr ""
1295
-
1296
- #: ../includes/class-settings.php:336
1297
- msgid "Footer"
1298
- msgstr ""
1299
-
1300
- #: ../includes/class-settings.php:340
1301
- msgid "Conditional loading"
1302
- msgstr ""
1303
-
1304
- #: ../includes/class-settings.php:343
1305
- msgid ""
1306
- "Enable to load scripts and styles only on pages that have images or "
1307
- "galleries in post content."
1308
- msgstr ""
1309
-
1310
- #: ../includes/class-settings.php:346
1311
- msgid "Delete data"
1312
- msgstr ""
1313
-
1314
- #: ../includes/class-settings.php:349
1315
- msgid "Delete all plugin settings on deactivation."
1316
- msgstr ""
1317
-
1318
- #: ../includes/class-settings.php:350
1319
- msgid ""
1320
- "Enable this to delete all plugin settings and also delete all plugin "
1321
- "capabilities from all users on deactivation."
1322
- msgstr ""
1323
-
1324
- #: ../includes/class-settings.php:359
1325
- msgid "Gallery Builder Settings"
1326
- msgstr ""
1327
-
1328
- #: ../includes/class-settings.php:365 ../includes/class-tour.php:102
1329
- msgid "Gallery Builder"
1330
- msgstr ""
1331
-
1332
- #: ../includes/class-settings.php:368
1333
- msgid "Enable advanced gallery builder."
1334
- msgstr ""
1335
-
1336
- #: ../includes/class-settings.php:371 ../responsive-lightbox.php:1077
1337
- #: ../responsive-lightbox.php:1313 ../responsive-lightbox.php:1324
1338
- msgid "Categories"
1339
- msgstr ""
1340
-
1341
- #: ../includes/class-settings.php:374
1342
- msgid "Enable Gallery Categories."
1343
- msgstr ""
1344
-
1345
- #: ../includes/class-settings.php:375
1346
- msgid "Enable if you want to use Gallery Categories."
1347
- msgstr ""
1348
-
1349
- #: ../includes/class-settings.php:378 ../responsive-lightbox.php:1123
1350
- #: ../responsive-lightbox.php:1333 ../responsive-lightbox.php:1344
1351
- msgid "Tags"
1352
- msgstr ""
1353
-
1354
- #: ../includes/class-settings.php:381
1355
- msgid "Enable Gallery Tags."
1356
- msgstr ""
1357
-
1358
- #: ../includes/class-settings.php:382
1359
- msgid "Enable if you want to use Gallery Tags."
1360
- msgstr ""
1361
-
1362
- #: ../includes/class-settings.php:385
1363
- msgid "Gallery Permalink"
1364
- msgstr ""
1365
-
1366
- #: ../includes/class-settings.php:388
1367
- msgid "Enter gallery page slug."
1368
- msgstr ""
1369
-
1370
- #: ../includes/class-settings.php:391
1371
- msgid "Categories Permalink"
1372
- msgstr ""
1373
-
1374
- #: ../includes/class-settings.php:394
1375
- msgid "Enter gallery categories archive page slug."
1376
- msgstr ""
1377
-
1378
- #: ../includes/class-settings.php:397
1379
- msgid "Tags Permalink"
1380
- msgstr ""
1381
-
1382
- #: ../includes/class-settings.php:400
1383
- msgid "Enter gallery tags archive page slug."
1384
- msgstr ""
1385
-
1386
- #: ../includes/class-settings.php:403
1387
- msgid "Archives"
1388
- msgstr ""
1389
-
1390
- #: ../includes/class-settings.php:406
1391
- msgid "Enable gallery archives."
1392
- msgstr ""
1393
-
1394
- #: ../includes/class-settings.php:409
1395
- msgid "Archives category"
1396
- msgstr ""
1397
-
1398
- #: ../includes/class-settings.php:412
1399
- msgid "Select category for gallery archives."
1400
- msgstr ""
1401
-
1402
- #: ../includes/class-settings.php:414 ../includes/class-settings.php:673
1403
- msgid "All"
1404
- msgstr ""
1405
-
1406
- #: ../includes/class-settings.php:424 ../includes/class-tour.php:196
1407
- msgid "Folders Settings"
1408
- msgstr ""
1409
-
1410
- #: ../includes/class-settings.php:430 ../includes/class-settings.php:441
1411
- #: ../includes/class-settings.php:1014
1412
- msgid "Folders"
1413
- msgstr ""
1414
-
1415
- #: ../includes/class-settings.php:433
1416
- msgid "Enable media folders."
1417
- msgstr ""
1418
-
1419
- #: ../includes/class-settings.php:436
1420
- msgid "Media taxonomy"
1421
- msgstr ""
1422
-
1423
- #: ../includes/class-settings.php:439
1424
- msgid "Select media taxonomy."
1425
- msgstr ""
1426
-
1427
- #: ../includes/class-settings.php:439
1428
- msgid ""
1429
- "If you have ever used custom media taxonomies you may try to <a id="
1430
- "\"rl_folders_load_old_taxonomies\" href=\"#\">load and use them.</a>"
1431
- msgstr ""
1432
-
1433
- #: ../includes/class-settings.php:444
1434
- msgid "Media tags"
1435
- msgstr ""
1436
-
1437
- #: ../includes/class-settings.php:447
1438
- msgid "Enable media tags."
1439
- msgstr ""
1440
-
1441
- #: ../includes/class-settings.php:448
1442
- msgid "Enable if you want to use media tags."
1443
- msgstr ""
1444
-
1445
- #: ../includes/class-settings.php:451
1446
- msgid "Show in menu"
1447
- msgstr ""
1448
-
1449
- #: ../includes/class-settings.php:454
1450
- msgid "Enable to show the taxonomy in the admin menu."
1451
- msgstr ""
1452
-
1453
- #: ../includes/class-settings.php:457
1454
- msgid "Subfolder removal"
1455
- msgstr ""
1456
-
1457
- #: ../includes/class-settings.php:460
1458
- msgid "Select to remove subfolders when parent folder is deleted."
1459
- msgstr ""
1460
-
1461
- #: ../includes/class-settings.php:476
1462
- msgid "Whole row"
1463
- msgstr ""
1464
-
1465
- #: ../includes/class-settings.php:479
1466
- msgid "Enable to highlight folder's row as a clickable area."
1467
- msgstr ""
1468
-
1469
- #: ../includes/class-settings.php:488 ../includes/class-tour.php:214
1470
- msgid "Remote Library Settings"
1471
- msgstr ""
1472
-
1473
- #: ../includes/class-settings.php:502
1474
- msgid "Enable remote libraries."
1475
- msgstr ""
1476
-
1477
- #: ../includes/class-settings.php:503
1478
- msgid "Check this to enable remote access to the following image libraries."
1479
- msgstr ""
1480
-
1481
- #: ../includes/class-settings.php:506
1482
- msgid "Caching"
1483
- msgstr ""
1484
-
1485
- #: ../includes/class-settings.php:509
1486
- msgid "Enable remote library requests caching."
1487
- msgstr ""
1488
-
1489
- #: ../includes/class-settings.php:512
1490
- msgid "Cache expiry"
1491
- msgstr ""
1492
-
1493
- #: ../includes/class-settings.php:516
1494
- msgid "Enter the cache expiry time."
1495
- msgstr ""
1496
-
1497
- #: ../includes/class-settings.php:517
1498
- msgid "hour(s)"
1499
- msgstr ""
1500
-
1501
- #: ../includes/class-settings.php:526 ../includes/class-settings.php:1062
1502
- #, php-format
1503
- msgid "%s Settings"
1504
- msgstr ""
1505
-
1506
- #: ../includes/class-settings.php:538 ../includes/class-tour.php:205
1507
- msgid "Capabilities Settings"
1508
- msgstr ""
1509
-
1510
- #: ../includes/class-settings.php:548 ../includes/class-settings.php:1021
1511
- msgid "Capabilities"
1512
- msgstr ""
1513
-
1514
- #: ../includes/class-settings.php:551
1515
- msgid "Enable advanced capability management."
1516
- msgstr ""
1517
-
1518
- #: ../includes/class-settings.php:552
1519
- msgid "Check this to enable access to plugin features for selected user roles."
1520
- msgstr ""
1521
-
1522
- #: ../includes/class-settings.php:561
1523
- msgid "Basic Grid Gallery Settings"
1524
- msgstr ""
1525
-
1526
- #: ../includes/class-settings.php:567 ../includes/class-settings.php:843
1527
- msgid "Screen sizes"
1528
- msgstr ""
1529
-
1530
- #: ../includes/class-settings.php:570 ../includes/class-settings.php:846
1531
- msgid ""
1532
- "Number of columns in a gallery depending on the device screen size. (if "
1533
- "greater than 0 overrides the Columns option)"
1534
- msgstr ""
1535
-
1536
- #: ../includes/class-settings.php:576 ../includes/class-settings.php:853
1537
- msgid "large devices / desktops (&ge;1200px)"
1538
- msgstr ""
1539
-
1540
- #: ../includes/class-settings.php:582 ../includes/class-settings.php:860
1541
- msgid "medium devices / desktops (&ge;992px)"
1542
- msgstr ""
1543
-
1544
- #: ../includes/class-settings.php:588 ../includes/class-settings.php:867
1545
- msgid "small devices / tablets (&ge;768px)"
1546
- msgstr ""
1547
-
1548
- #: ../includes/class-settings.php:594 ../includes/class-settings.php:874
1549
- msgid "extra small devices / phones (<768px)"
1550
- msgstr ""
1551
-
1552
- #: ../includes/class-settings.php:599 ../includes/class-settings.php:879
1553
- msgid "Gutter"
1554
- msgstr ""
1555
-
1556
- #: ../includes/class-settings.php:603
1557
- msgid "Set the pixel width between the columns and rows."
1558
- msgstr ""
1559
-
1560
- #: ../includes/class-settings.php:607
1561
- msgid "Force height"
1562
- msgstr ""
1563
-
1564
- #: ../includes/class-settings.php:610
1565
- msgid "Enable to force the thumbnail row height."
1566
- msgstr ""
1567
-
1568
- #: ../includes/class-settings.php:613
1569
- msgid "Row height"
1570
- msgstr ""
1571
-
1572
- #: ../includes/class-settings.php:617
1573
- msgid ""
1574
- "Enter the thumbnail row height in pixels (used if Force height is enabled). "
1575
- "Defaults to 150px."
1576
- msgstr ""
1577
-
1578
- #: ../includes/class-settings.php:627
1579
- msgid "Basic Slider Gallery Settings"
1580
- msgstr ""
1581
-
1582
- #: ../includes/class-settings.php:633
1583
- msgid "Adaptive Height"
1584
- msgstr ""
1585
-
1586
- #: ../includes/class-settings.php:636
1587
- msgid ""
1588
- "The slider height should change on the fly according to the current slide."
1589
- msgstr ""
1590
-
1591
- #: ../includes/class-settings.php:639
1592
- msgid "Loop"
1593
- msgstr ""
1594
-
1595
- #: ../includes/class-settings.php:642
1596
- msgid ""
1597
- "Whether the slider should loop (i.e. the first slide goes to the last, the "
1598
- "last slide goes to the first)."
1599
- msgstr ""
1600
-
1601
- #: ../includes/class-settings.php:645
1602
- msgid "Captions Position"
1603
- msgstr ""
1604
-
1605
- #: ../includes/class-settings.php:648
1606
- msgid "Specifies the position of captions or no captions at all."
1607
- msgstr ""
1608
-
1609
- #: ../includes/class-settings.php:651
1610
- msgid "Overlay"
1611
- msgstr ""
1612
-
1613
- #: ../includes/class-settings.php:652
1614
- msgid "Below"
1615
- msgstr ""
1616
-
1617
- #: ../includes/class-settings.php:656
1618
- msgid "Single Image Slider"
1619
- msgstr ""
1620
-
1621
- #: ../includes/class-settings.php:659
1622
- msgid ""
1623
- "Whether the slider should initialize even if there is only one slide element."
1624
- msgstr ""
1625
-
1626
- #: ../includes/class-settings.php:662
1627
- msgid "Responsive"
1628
- msgstr ""
1629
-
1630
- #: ../includes/class-settings.php:665
1631
- msgid "Whether the slider should be responsive."
1632
- msgstr ""
1633
-
1634
- #: ../includes/class-settings.php:668
1635
- msgid "Preload"
1636
- msgstr ""
1637
-
1638
- #: ../includes/class-settings.php:671
1639
- msgid "Elements that are preloaded before slider shows."
1640
- msgstr ""
1641
-
1642
- #: ../includes/class-settings.php:674
1643
- msgid "Only visible"
1644
- msgstr ""
1645
-
1646
- #: ../includes/class-settings.php:678
1647
- msgid "Pager"
1648
- msgstr ""
1649
-
1650
- #: ../includes/class-settings.php:681
1651
- msgid "Whether the slider should have a pager."
1652
- msgstr ""
1653
-
1654
- #: ../includes/class-settings.php:684
1655
- msgid "Controls"
1656
- msgstr ""
1657
-
1658
- #: ../includes/class-settings.php:687
1659
- msgid "Whether the slider should have controls (next, previous arrows)."
1660
- msgstr ""
1661
-
1662
- #: ../includes/class-settings.php:690
1663
- msgid "Hide Controls on End"
1664
- msgstr ""
1665
-
1666
- #: ../includes/class-settings.php:693
1667
- msgid ""
1668
- "Hide the previous or next control when it reaches the first or last slide "
1669
- "respectively."
1670
- msgstr ""
1671
-
1672
- #: ../includes/class-settings.php:696
1673
- msgid "Slide Margin"
1674
- msgstr ""
1675
-
1676
- #: ../includes/class-settings.php:700
1677
- msgid "The spacing between slides."
1678
- msgstr ""
1679
-
1680
- #: ../includes/class-settings.php:704
1681
- msgid "Transition"
1682
- msgstr ""
1683
-
1684
- #: ../includes/class-settings.php:707
1685
- msgid "Transition type to use, or no transitions."
1686
- msgstr ""
1687
-
1688
- #: ../includes/class-settings.php:710
1689
- msgid "Fade"
1690
- msgstr ""
1691
-
1692
- #: ../includes/class-settings.php:711
1693
- msgid "Horizontal"
1694
- msgstr ""
1695
-
1696
- #: ../includes/class-settings.php:712
1697
- msgid "Vertical"
1698
- msgstr ""
1699
-
1700
- #: ../includes/class-settings.php:713
1701
- msgid "Ken Burns"
1702
- msgstr ""
1703
-
1704
- #: ../includes/class-settings.php:717
1705
- msgid "Ken Burns Zoom"
1706
- msgstr ""
1707
-
1708
- #: ../includes/class-settings.php:721
1709
- msgid "Max zoom level use for the Ken Burns transition."
1710
- msgstr ""
1711
-
1712
- #: ../includes/class-settings.php:725
1713
- msgid "Transition Speed"
1714
- msgstr ""
1715
-
1716
- #: ../includes/class-settings.php:729
1717
- msgid "The time the transition takes to complete."
1718
- msgstr ""
1719
-
1720
- #: ../includes/class-settings.php:733
1721
- msgid "Easing Effect"
1722
- msgstr ""
1723
-
1724
- #: ../includes/class-settings.php:736
1725
- msgid "The easing effect to use for the selected transition."
1726
- msgstr ""
1727
-
1728
- #: ../includes/class-settings.php:773
1729
- msgid "Continuous"
1730
- msgstr ""
1731
-
1732
- #: ../includes/class-settings.php:776
1733
- msgid ""
1734
- "Whether the slider should run continuously (seamless transition between the "
1735
- "first and last slides)."
1736
- msgstr ""
1737
-
1738
- #: ../includes/class-settings.php:779
1739
- msgid "Use CSS"
1740
- msgstr ""
1741
-
1742
- #: ../includes/class-settings.php:782
1743
- msgid ""
1744
- "Whether the slider should use CSS transitions. If the user's browser doesn't "
1745
- "support CSS transitions the slider will fallback to jQuery."
1746
- msgstr ""
1747
-
1748
- #: ../includes/class-settings.php:785 ../includes/class-settings.php:1148
1749
- msgid "Slideshow"
1750
- msgstr ""
1751
-
1752
- #: ../includes/class-settings.php:788
1753
- msgid "Whether the slider should run automatically on load."
1754
- msgstr ""
1755
-
1756
- #: ../includes/class-settings.php:791
1757
- msgid "Slideshow Direction"
1758
- msgstr ""
1759
-
1760
- #: ../includes/class-settings.php:794
1761
- msgid "Which direction the slider should move in if in slideshow mode."
1762
- msgstr ""
1763
-
1764
- #: ../includes/class-settings.php:796 ../includes/class-tour.php:104
1765
- #: ../includes/class-tour.php:125 ../includes/class-tour.php:139
1766
- #: ../includes/class-tour.php:153 ../includes/class-tour.php:171
1767
- #: ../includes/class-tour.php:180 ../includes/class-tour.php:189
1768
- #: ../includes/class-tour.php:198 ../includes/class-tour.php:207
1769
- #: ../includes/class-tour.php:216 ../includes/class-tour.php:226
1770
- msgid "Next"
1771
- msgstr ""
1772
-
1773
- #: ../includes/class-settings.php:797
1774
- msgid "Previous"
1775
- msgstr ""
1776
-
1777
- #: ../includes/class-settings.php:801
1778
- msgid "Slideshow Hover"
1779
- msgstr ""
1780
-
1781
- #: ../includes/class-settings.php:804
1782
- msgid "Whether the slideshow should pause automatically on hover."
1783
- msgstr ""
1784
-
1785
- #: ../includes/class-settings.php:807
1786
- msgid "Slideshow Hover Delay"
1787
- msgstr ""
1788
-
1789
- #: ../includes/class-settings.php:811
1790
- msgid "The delay (if any) before the slider resumes automatically after hover."
1791
- msgstr ""
1792
-
1793
- #: ../includes/class-settings.php:815
1794
- msgid "Slideshow Delay"
1795
- msgstr ""
1796
-
1797
- #: ../includes/class-settings.php:819
1798
- msgid "The delay (if any) before the slider runs automatically on load."
1799
- msgstr ""
1800
-
1801
- #: ../includes/class-settings.php:823
1802
- msgid "Slideshow Pause"
1803
- msgstr ""
1804
-
1805
- #: ../includes/class-settings.php:827
1806
- msgid "The time a slide lasts."
1807
- msgstr ""
1808
-
1809
- #: ../includes/class-settings.php:837
1810
- msgid "Basic Masonry Gallery Settings"
1811
- msgstr ""
1812
-
1813
- #: ../includes/class-settings.php:882
1814
- msgid "Horizontal space between gallery items."
1815
- msgstr ""
1816
-
1817
- #: ../includes/class-settings.php:886 ../includes/class-settings.php:1459
1818
- msgid "Margin"
1819
- msgstr ""
1820
-
1821
- #: ../includes/class-settings.php:889
1822
- msgid "Vertical space between gallery items."
1823
- msgstr ""
1824
-
1825
- #: ../includes/class-settings.php:893
1826
- msgid "Origin Left"
1827
- msgstr ""
1828
-
1829
- #: ../includes/class-settings.php:896
1830
- msgid "Enable left-to-right layouts."
1831
- msgstr ""
1832
-
1833
- #: ../includes/class-settings.php:897
1834
- msgid ""
1835
- "Controls the horizontal flow of the layout. By default, item elements start "
1836
- "positioning at the left. Uncheck it for right-to-left layouts."
1837
- msgstr ""
1838
-
1839
- #: ../includes/class-settings.php:900
1840
- msgid "Origin Top"
1841
- msgstr ""
1842
-
1843
- #: ../includes/class-settings.php:903
1844
- msgid "Enable top-to-bottom layouts."
1845
- msgstr ""
1846
-
1847
- #: ../includes/class-settings.php:904
1848
- msgid ""
1849
- "Controls the vetical flow of the layout. By default, item elements start "
1850
- "positioning at the top. Uncheck it for bottom-up layouts."
1851
- msgstr ""
1852
-
1853
- #: ../includes/class-settings.php:912 ../includes/class-settings.php:1840
1854
- msgid "General"
1855
- msgstr ""
1856
-
1857
- #: ../includes/class-settings.php:918
1858
- msgid "Lightboxes"
1859
- msgstr ""
1860
-
1861
- #: ../includes/class-settings.php:926 ../responsive-lightbox.php:641
1862
- msgid "Basic Grid"
1863
- msgstr ""
1864
-
1865
- #: ../includes/class-settings.php:932 ../responsive-lightbox.php:642
1866
- msgid "Basic Slider"
1867
- msgstr ""
1868
-
1869
- #: ../includes/class-settings.php:938 ../responsive-lightbox.php:643
1870
- msgid "Basic Masonry"
1871
- msgstr ""
1872
-
1873
- #: ../includes/class-settings.php:1007
1874
- msgid "Builder"
1875
- msgstr ""
1876
-
1877
- #: ../includes/class-settings.php:1048 ../includes/class-settings.php:2072
1878
- msgid "Licenses"
1879
- msgstr ""
1880
-
1881
- #: ../includes/class-settings.php:1056 ../includes/class-tour.php:233
1882
- #: ../responsive-lightbox.php:930
1883
- msgid "Add-ons"
1884
- msgstr ""
1885
-
1886
- #: ../includes/class-settings.php:1070
1887
- msgid "Animation type"
1888
- msgstr ""
1889
-
1890
- #: ../includes/class-settings.php:1074
1891
- msgid "Select a method of applying a lightbox effect."
1892
- msgstr ""
1893
-
1894
- #: ../includes/class-settings.php:1079
1895
- msgid "Force PNG icons"
1896
- msgstr ""
1897
-
1898
- #: ../includes/class-settings.php:1082
1899
- msgid ""
1900
- "Enable this if you're having problems with navigation icons not visible on "
1901
- "some devices."
1902
- msgstr ""
1903
-
1904
- #: ../includes/class-settings.php:1086
1905
- msgid "Hide close on mobile"
1906
- msgstr ""
1907
-
1908
- #: ../includes/class-settings.php:1089
1909
- msgid "Hide the close button on mobile devices."
1910
- msgstr ""
1911
-
1912
- #: ../includes/class-settings.php:1093
1913
- msgid "Remove bars on mobile"
1914
- msgstr ""
1915
-
1916
- #: ../includes/class-settings.php:1096
1917
- msgid "Hide the top and bottom bars on mobile devices."
1918
- msgstr ""
1919
-
1920
- #: ../includes/class-settings.php:1100
1921
- msgid "Top and bottom bars"
1922
- msgstr ""
1923
-
1924
- #: ../includes/class-settings.php:1106
1925
- msgid "Hide top and bottom bars after a period of time."
1926
- msgstr ""
1927
-
1928
- #: ../includes/class-settings.php:1111
1929
- msgid ""
1930
- "Enter the time after which the top and bottom bars will be hidden (when "
1931
- "hiding is enabled)."
1932
- msgstr ""
1933
-
1934
- #: ../includes/class-settings.php:1118
1935
- msgid "Video max width"
1936
- msgstr ""
1937
-
1938
- #: ../includes/class-settings.php:1121
1939
- msgid "Enter the max video width in a lightbox."
1940
- msgstr ""
1941
-
1942
- #: ../includes/class-settings.php:1126
1943
- msgid "Loop at end"
1944
- msgstr ""
1945
-
1946
- #: ../includes/class-settings.php:1129
1947
- msgid "True will return to the first image after the last image is reached."
1948
- msgstr ""
1949
-
1950
- #: ../includes/class-settings.php:1139 ../includes/class-settings.php:1525
1951
- msgid "Animation speed"
1952
- msgstr ""
1953
-
1954
- #: ../includes/class-settings.php:1143
1955
- msgid "Select animation speed for lightbox effect."
1956
- msgstr ""
1957
-
1958
- #: ../includes/class-settings.php:1154
1959
- msgid "Display images as slideshow"
1960
- msgstr ""
1961
-
1962
- #: ../includes/class-settings.php:1159
1963
- msgid "Enter time (in miliseconds)."
1964
- msgstr ""
1965
-
1966
- #: ../includes/class-settings.php:1166
1967
- msgid "Slideshow autoplay"
1968
- msgstr ""
1969
-
1970
- #: ../includes/class-settings.php:1169 ../includes/class-settings.php:1605
1971
- msgid "Automatically start slideshow."
1972
- msgstr ""
1973
-
1974
- #: ../includes/class-settings.php:1173 ../includes/class-settings.php:1373
1975
- msgid "Opacity"
1976
- msgstr ""
1977
-
1978
- #: ../includes/class-settings.php:1176
1979
- msgid "Value between 0 and 100, 100 for no opacity."
1980
- msgstr ""
1981
-
1982
- #: ../includes/class-settings.php:1182
1983
- msgid "Show title"
1984
- msgstr ""
1985
-
1986
- #: ../includes/class-settings.php:1185
1987
- msgid "Display image title."
1988
- msgstr ""
1989
-
1990
- #: ../includes/class-settings.php:1189
1991
- msgid "Allow resize big images"
1992
- msgstr ""
1993
-
1994
- #: ../includes/class-settings.php:1192
1995
- msgid "Resize the photos bigger than viewport."
1996
- msgstr ""
1997
-
1998
- #: ../includes/class-settings.php:1196
1999
- msgid "Allow expand"
2000
- msgstr ""
2001
-
2002
- #: ../includes/class-settings.php:1199
2003
- msgid "Allow expanding images."
2004
- msgstr ""
2005
-
2006
- #: ../includes/class-settings.php:1203 ../includes/class-settings.php:1467
2007
- msgid "Video width"
2008
- msgstr ""
2009
-
2010
- #: ../includes/class-settings.php:1210 ../includes/class-settings.php:1475
2011
- msgid "Video height"
2012
- msgstr ""
2013
-
2014
- #: ../includes/class-settings.php:1217
2015
- msgid "Theme"
2016
- msgstr ""
2017
-
2018
- #: ../includes/class-settings.php:1220
2019
- msgid "Select the theme for lightbox effect."
2020
- msgstr ""
2021
-
2022
- #: ../includes/class-settings.php:1225
2023
- msgid "Horizontal padding"
2024
- msgstr ""
2025
-
2026
- #: ../includes/class-settings.php:1232
2027
- msgid "Hide Flash"
2028
- msgstr ""
2029
-
2030
- #: ../includes/class-settings.php:1235
2031
- msgid ""
2032
- "Hide all the flash objects on a page. Enable this if flash appears over "
2033
- "prettyPhoto."
2034
- msgstr ""
2035
-
2036
- #: ../includes/class-settings.php:1239
2037
- msgid "Flash Window Mode (wmode)"
2038
- msgstr ""
2039
-
2040
- #: ../includes/class-settings.php:1242
2041
- msgid "Select flash window mode."
2042
- msgstr ""
2043
-
2044
- #: ../includes/class-settings.php:1247
2045
- msgid "Video autoplay"
2046
- msgstr ""
2047
-
2048
- #: ../includes/class-settings.php:1250
2049
- msgid "Automatically start videos."
2050
- msgstr ""
2051
-
2052
- #: ../includes/class-settings.php:1254 ../includes/class-settings.php:1295
2053
- msgid "Modal"
2054
- msgstr ""
2055
-
2056
- #: ../includes/class-settings.php:1257
2057
- msgid "If set to true, only the close button will close the window."
2058
- msgstr ""
2059
-
2060
- #: ../includes/class-settings.php:1261
2061
- msgid "Deeplinking"
2062
- msgstr ""
2063
-
2064
- #: ../includes/class-settings.php:1264
2065
- msgid "Allow prettyPhoto to update the url to enable deeplinking."
2066
- msgstr ""
2067
-
2068
- #: ../includes/class-settings.php:1268
2069
- msgid "Overlay gallery"
2070
- msgstr ""
2071
-
2072
- #: ../includes/class-settings.php:1271
2073
- msgid "If enabled, a gallery will overlay the fullscreen image on mouse over."
2074
- msgstr ""
2075
-
2076
- #: ../includes/class-settings.php:1275
2077
- msgid "Keyboard shortcuts"
2078
- msgstr ""
2079
-
2080
- #: ../includes/class-settings.php:1278
2081
- msgid "Set to false if you open forms inside prettyPhoto."
2082
- msgstr ""
2083
-
2084
- #: ../includes/class-settings.php:1282
2085
- msgid "Social (Twitter, Facebook)"
2086
- msgstr ""
2087
-
2088
- #: ../includes/class-settings.php:1285
2089
- msgid "Display links to Facebook and Twitter."
2090
- msgstr ""
2091
-
2092
- #: ../includes/class-settings.php:1298
2093
- msgid ""
2094
- "When true, \"overlayShow\" is set to true and \"hideOnOverlayClick\", "
2095
- "\"hideOnContentClick\", \"enableEscapeButton\", \"showCloseButton\" are set "
2096
- "to false."
2097
- msgstr ""
2098
-
2099
- #: ../includes/class-settings.php:1302
2100
- msgid "Show overlay"
2101
- msgstr ""
2102
-
2103
- #: ../includes/class-settings.php:1305
2104
- msgid "Toggle overlay."
2105
- msgstr ""
2106
-
2107
- #: ../includes/class-settings.php:1309 ../includes/class-settings.php:1758
2108
- msgid "Show close button"
2109
- msgstr ""
2110
-
2111
- #: ../includes/class-settings.php:1312
2112
- msgid "Toggle close button."
2113
- msgstr ""
2114
-
2115
- #: ../includes/class-settings.php:1316
2116
- msgid "Enable escape button"
2117
- msgstr ""
2118
-
2119
- #: ../includes/class-settings.php:1319 ../includes/class-settings.php:1689
2120
- msgid "Toggle if pressing Esc button closes lightbox."
2121
- msgstr ""
2122
-
2123
- #: ../includes/class-settings.php:1323
2124
- msgid "Hide on overlay click"
2125
- msgstr ""
2126
-
2127
- #: ../includes/class-settings.php:1326
2128
- msgid "Toggle if clicking the overlay should close FancyBox."
2129
- msgstr ""
2130
-
2131
- #: ../includes/class-settings.php:1330
2132
- msgid "Hide on content click"
2133
- msgstr ""
2134
-
2135
- #: ../includes/class-settings.php:1333
2136
- msgid "Toggle if clicking the content should close FancyBox."
2137
- msgstr ""
2138
-
2139
- #: ../includes/class-settings.php:1337
2140
- msgid "Cyclic"
2141
- msgstr ""
2142
-
2143
- #: ../includes/class-settings.php:1340
2144
- msgid ""
2145
- "When true, galleries will be cyclic, allowing you to keep pressing next/back."
2146
- msgstr ""
2147
-
2148
- #: ../includes/class-settings.php:1344
2149
- msgid "Show nav arrows"
2150
- msgstr ""
2151
-
2152
- #: ../includes/class-settings.php:1347
2153
- msgid "Toggle navigation arrows."
2154
- msgstr ""
2155
-
2156
- #: ../includes/class-settings.php:1351
2157
- msgid "Auto scale"
2158
- msgstr ""
2159
-
2160
- #: ../includes/class-settings.php:1354
2161
- msgid "If true, FancyBox is scaled to fit in viewport."
2162
- msgstr ""
2163
-
2164
- #: ../includes/class-settings.php:1358
2165
- msgid "Scrolling (in/out)"
2166
- msgstr ""
2167
-
2168
- #: ../includes/class-settings.php:1361
2169
- msgid "Set the overflow CSS property to create or hide scrollbars."
2170
- msgstr ""
2171
-
2172
- #: ../includes/class-settings.php:1366
2173
- msgid "Center on scroll"
2174
- msgstr ""
2175
-
2176
- #: ../includes/class-settings.php:1369
2177
- msgid "When true, FancyBox is centered while scrolling page."
2178
- msgstr ""
2179
-
2180
- #: ../includes/class-settings.php:1376
2181
- msgid "When true, transparency of content is changed for elastic transitions."
2182
- msgstr ""
2183
-
2184
- #: ../includes/class-settings.php:1380
2185
- msgid "Overlay opacity"
2186
- msgstr ""
2187
-
2188
- #: ../includes/class-settings.php:1383
2189
- msgid "Opacity of the overlay."
2190
- msgstr ""
2191
-
2192
- #: ../includes/class-settings.php:1389
2193
- msgid "Overlay color"
2194
- msgstr ""
2195
-
2196
- #: ../includes/class-settings.php:1392
2197
- msgid "Color of the overlay."
2198
- msgstr ""
2199
-
2200
- #: ../includes/class-settings.php:1396
2201
- msgid "Title show"
2202
- msgstr ""
2203
-
2204
- #: ../includes/class-settings.php:1399
2205
- msgid "Toggle title."
2206
- msgstr ""
2207
-
2208
- #: ../includes/class-settings.php:1403
2209
- msgid "Title position"
2210
- msgstr ""
2211
-
2212
- #: ../includes/class-settings.php:1406
2213
- msgid "The position of title."
2214
- msgstr ""
2215
-
2216
- #: ../includes/class-settings.php:1411
2217
- msgid "Transition (in/out)"
2218
- msgstr ""
2219
-
2220
- #: ../includes/class-settings.php:1414
2221
- msgid "The transition type."
2222
- msgstr ""
2223
-
2224
- #: ../includes/class-settings.php:1419
2225
- msgid "Easings (in/out)"
2226
- msgstr ""
2227
-
2228
- #: ../includes/class-settings.php:1422
2229
- msgid "Easing used for elastic animations."
2230
- msgstr ""
2231
-
2232
- #: ../includes/class-settings.php:1427
2233
- msgid "Speed (in/out)"
2234
- msgstr ""
2235
-
2236
- #: ../includes/class-settings.php:1430
2237
- msgid "Speed of the fade and elastic transitions, in milliseconds."
2238
- msgstr ""
2239
-
2240
- #: ../includes/class-settings.php:1435
2241
- msgid "Change speed"
2242
- msgstr ""
2243
-
2244
- #: ../includes/class-settings.php:1438
2245
- msgid "Speed of resizing when changing gallery items, in milliseconds."
2246
- msgstr ""
2247
-
2248
- #: ../includes/class-settings.php:1443
2249
- msgid "Change fade"
2250
- msgstr ""
2251
-
2252
- #: ../includes/class-settings.php:1446
2253
- msgid "Speed of the content fading while changing gallery items."
2254
- msgstr ""
2255
-
2256
- #: ../includes/class-settings.php:1451
2257
- msgid "Padding"
2258
- msgstr ""
2259
-
2260
- #: ../includes/class-settings.php:1454
2261
- msgid "Space between FancyBox wrapper and content."
2262
- msgstr ""
2263
-
2264
- #: ../includes/class-settings.php:1462
2265
- msgid "Space between viewport and FancyBox wrapper."
2266
- msgstr ""
2267
-
2268
- #: ../includes/class-settings.php:1470
2269
- msgid "Width of the video."
2270
- msgstr ""
2271
-
2272
- #: ../includes/class-settings.php:1478
2273
- msgid "Height of the video."
2274
- msgstr ""
2275
-
2276
- #: ../includes/class-settings.php:1489
2277
- msgid "Effect"
2278
- msgstr ""
2279
-
2280
- #: ../includes/class-settings.php:1492
2281
- msgid "The effect to use when showing the lightbox."
2282
- msgstr ""
2283
-
2284
- #: ../includes/class-settings.php:1497 ../includes/class-settings.php:1592
2285
- msgid "Keyboard navigation"
2286
- msgstr ""
2287
-
2288
- #: ../includes/class-settings.php:1500 ../includes/class-settings.php:1595
2289
- msgid "Enable keyboard navigation (left/right/escape)."
2290
- msgstr ""
2291
-
2292
- #: ../includes/class-settings.php:1504
2293
- msgid "Click overlay to close"
2294
- msgstr ""
2295
-
2296
- #: ../includes/class-settings.php:1507 ../includes/class-settings.php:1648
2297
- msgid "Enable to close lightbox on overlay click."
2298
- msgstr ""
2299
-
2300
- #: ../includes/class-settings.php:1511
2301
- msgid "Error message"
2302
- msgstr ""
2303
-
2304
- #: ../includes/class-settings.php:1515
2305
- msgid "Error message if the content cannot be loaded."
2306
- msgstr ""
2307
-
2308
- #: ../includes/class-settings.php:1528
2309
- msgid "Animation speed."
2310
- msgstr ""
2311
-
2312
- #: ../includes/class-settings.php:1533
2313
- msgid "Preload next image"
2314
- msgstr ""
2315
-
2316
- #: ../includes/class-settings.php:1536
2317
- msgid "Silently preload the next image."
2318
- msgstr ""
2319
-
2320
- #: ../includes/class-settings.php:1540
2321
- msgid "Enable keyboard keys"
2322
- msgstr ""
2323
-
2324
- #: ../includes/class-settings.php:1543
2325
- msgid "Enable keyboard shortcuts (arrows Left/Right and Esc)."
2326
- msgstr ""
2327
-
2328
- #: ../includes/class-settings.php:1547
2329
- msgid "Quit after last image"
2330
- msgstr ""
2331
-
2332
- #: ../includes/class-settings.php:1550
2333
- msgid "Quit after viewing the last image."
2334
- msgstr ""
2335
-
2336
- #: ../includes/class-settings.php:1554
2337
- msgid "Quit on image click"
2338
- msgstr ""
2339
-
2340
- #: ../includes/class-settings.php:1557
2341
- msgid "Quit when the viewed image is clicked."
2342
- msgstr ""
2343
-
2344
- #: ../includes/class-settings.php:1561
2345
- msgid "Quit on anything click"
2346
- msgstr ""
2347
-
2348
- #: ../includes/class-settings.php:1564
2349
- msgid "Quit when anything but the viewed image is clicked."
2350
- msgstr ""
2351
-
2352
- #: ../includes/class-settings.php:1574
2353
- msgid "Transition effect"
2354
- msgstr ""
2355
-
2356
- #: ../includes/class-settings.php:1577
2357
- msgid "What effect to use for the transition."
2358
- msgstr ""
2359
-
2360
- #: ../includes/class-settings.php:1579
2361
- msgid "slide"
2362
- msgstr ""
2363
-
2364
- #: ../includes/class-settings.php:1585
2365
- msgid "Infinite loop"
2366
- msgstr ""
2367
-
2368
- #: ../includes/class-settings.php:1588
2369
- msgid ""
2370
- "Whether or not to slide back to the first slide when the last has been "
2371
- "reached."
2372
- msgstr ""
2373
-
2374
- #: ../includes/class-settings.php:1599
2375
- msgid "Autoplay"
2376
- msgstr ""
2377
-
2378
- #: ../includes/class-settings.php:1610
2379
- msgid "The timeout between sliding to the next slide in milliseconds."
2380
- msgstr ""
2381
-
2382
- #: ../includes/class-settings.php:1617
2383
- msgid "Pause on hover"
2384
- msgstr ""
2385
-
2386
- #: ../includes/class-settings.php:1620
2387
- msgid "Whether or not to pause on hover."
2388
- msgstr ""
2389
-
2390
- #: ../includes/class-settings.php:1624
2391
- msgid "Pagination"
2392
- msgstr ""
2393
-
2394
- #: ../includes/class-settings.php:1630
2395
- msgid "Whether or not to add a pagination."
2396
- msgstr ""
2397
-
2398
- #: ../includes/class-settings.php:1635
2399
- msgid "What type of pagination to use."
2400
- msgstr ""
2401
-
2402
- #: ../includes/class-settings.php:1637
2403
- msgid "Bullets"
2404
- msgstr ""
2405
-
2406
- #: ../includes/class-settings.php:1638
2407
- msgid "Thumbnails"
2408
- msgstr ""
2409
-
2410
- #: ../includes/class-settings.php:1645
2411
- msgid "Overlay close"
2412
- msgstr ""
2413
-
2414
- #: ../includes/class-settings.php:1658
2415
- msgid "Opening speed"
2416
- msgstr ""
2417
-
2418
- #: ../includes/class-settings.php:1661
2419
- msgid "Duration of opening animation."
2420
- msgstr ""
2421
-
2422
- #: ../includes/class-settings.php:1666
2423
- msgid "Closing speed"
2424
- msgstr ""
2425
-
2426
- #: ../includes/class-settings.php:1669
2427
- msgid "Duration of closing animation."
2428
- msgstr ""
2429
-
2430
- #: ../includes/class-settings.php:1674
2431
- msgid "Close on click"
2432
- msgstr ""
2433
-
2434
- #: ../includes/class-settings.php:1677
2435
- msgid "Select how to close lightbox."
2436
- msgstr ""
2437
-
2438
- #: ../includes/class-settings.php:1679
2439
- msgid "background"
2440
- msgstr ""
2441
-
2442
- #: ../includes/class-settings.php:1680
2443
- msgid "anywhere"
2444
- msgstr ""
2445
-
2446
- #: ../includes/class-settings.php:1681
2447
- msgid "false"
2448
- msgstr ""
2449
-
2450
- #: ../includes/class-settings.php:1686
2451
- msgid "Close on Esc"
2452
- msgstr ""
2453
-
2454
- #: ../includes/class-settings.php:1693
2455
- msgid "Gallery fade in"
2456
- msgstr ""
2457
-
2458
- #: ../includes/class-settings.php:1696
2459
- msgid "Animation speed when image is loaded."
2460
- msgstr ""
2461
-
2462
- #: ../includes/class-settings.php:1701
2463
- msgid "Gallery fade out"
2464
- msgstr ""
2465
-
2466
- #: ../includes/class-settings.php:1704
2467
- msgid "Animation speed before image is loaded."
2468
- msgstr ""
2469
-
2470
- #: ../includes/class-settings.php:1715
2471
- msgid "Disable on"
2472
- msgstr ""
2473
-
2474
- #: ../includes/class-settings.php:1718
2475
- msgid ""
2476
- "If window width is less than the number in this option lightbox will not be "
2477
- "opened and the default behavior of the element will be triggered. Set to 0 "
2478
- "to disable behavior."
2479
- msgstr ""
2480
-
2481
- #: ../includes/class-settings.php:1723
2482
- msgid "Middle click"
2483
- msgstr ""
2484
-
2485
- #: ../includes/class-settings.php:1726
2486
- msgid ""
2487
- "If option enabled, lightbox is opened if the user clicked on the middle "
2488
- "mouse button, or click with Command/Ctrl key."
2489
- msgstr ""
2490
-
2491
- #: ../includes/class-settings.php:1730
2492
- msgid "Preloader"
2493
- msgstr ""
2494
-
2495
- #: ../includes/class-settings.php:1733
2496
- msgid ""
2497
- "If option enabled, it's always present in DOM only text inside of it changes."
2498
- msgstr ""
2499
-
2500
- #: ../includes/class-settings.php:1737
2501
- msgid "Close on content click"
2502
- msgstr ""
2503
-
2504
- #: ../includes/class-settings.php:1740
2505
- msgid ""
2506
- "Close popup when user clicks on content of it. It's recommended to enable "
2507
- "this option when you have only image in popup."
2508
- msgstr ""
2509
-
2510
- #: ../includes/class-settings.php:1744
2511
- msgid "Close on background click"
2512
- msgstr ""
2513
-
2514
- #: ../includes/class-settings.php:1747
2515
- msgid "Close the popup when user clicks on the dark overlay."
2516
- msgstr ""
2517
-
2518
- #: ../includes/class-settings.php:1751
2519
- msgid "Close button inside"
2520
- msgstr ""
2521
-
2522
- #: ../includes/class-settings.php:1754
2523
- msgid ""
2524
- "If enabled, Magnific Popup will put close button inside content of popup."
2525
- msgstr ""
2526
-
2527
- #: ../includes/class-settings.php:1761
2528
- msgid "Controls whether the close button will be displayed or not."
2529
- msgstr ""
2530
-
2531
- #: ../includes/class-settings.php:1765
2532
- msgid "Enable escape key"
2533
- msgstr ""
2534
-
2535
- #: ../includes/class-settings.php:1768
2536
- msgid ""
2537
- "Controls whether pressing the escape key will dismiss the active popup or "
2538
- "not."
2539
- msgstr ""
2540
-
2541
- #: ../includes/class-settings.php:1772
2542
- msgid "Align top"
2543
- msgstr ""
2544
-
2545
- #: ../includes/class-settings.php:1775
2546
- msgid "If set to true popup is aligned to top instead of to center."
2547
- msgstr ""
2548
-
2549
- #: ../includes/class-settings.php:1779
2550
- msgid "Content position type"
2551
- msgstr ""
2552
-
2553
- #: ../includes/class-settings.php:1782
2554
- msgid ""
2555
- "Popup content position. If set to \"auto\" popup will automatically disable "
2556
- "this option when browser doesn't support fixed position properly."
2557
- msgstr ""
2558
-
2559
- #: ../includes/class-settings.php:1784 ../includes/class-settings.php:1796
2560
- msgid "Auto"
2561
- msgstr ""
2562
-
2563
- #: ../includes/class-settings.php:1785 ../includes/class-settings.php:1797
2564
- msgid "Fixed"
2565
- msgstr ""
2566
-
2567
- #: ../includes/class-settings.php:1786 ../includes/class-settings.php:1798
2568
- msgid "Absolute"
2569
- msgstr ""
2570
-
2571
- #: ../includes/class-settings.php:1791
2572
- msgid "Fixed background position"
2573
- msgstr ""
2574
-
2575
- #: ../includes/class-settings.php:1794
2576
- msgid "Dark transluscent overlay content position."
2577
- msgstr ""
2578
-
2579
- #: ../includes/class-settings.php:1803
2580
- msgid "Auto focus last"
2581
- msgstr ""
2582
-
2583
- #: ../includes/class-settings.php:1806
2584
- msgid ""
2585
- "If set to true last focused element before popup showup will be focused "
2586
- "after popup close."
2587
- msgstr ""
2588
-
2589
- #: ../includes/class-settings.php:1828
2590
- #, php-format
2591
- msgid ""
2592
- "Below you'll find a list of available remote media libraries. If you're "
2593
- "looking for Pixabay, Pexels, Instagram and other integrations please check "
2594
- "the <a href=\"%s\" target=\"_blank\">Remote Library Pro addon</a>."
2595
- msgstr ""
2596
-
2597
- #: ../includes/class-settings.php:1878 ../includes/class-settings.php:1891
2598
- #: ../responsive-lightbox.php:1355
2599
- msgid "Responsive Lightbox & Gallery"
2600
- msgstr ""
2601
-
2602
- #: ../includes/class-settings.php:1893
2603
- msgid "Need support?"
2604
- msgstr ""
2605
-
2606
- #: ../includes/class-settings.php:1894
2607
- #, php-format
2608
- msgid ""
2609
- "If you are having problems with this plugin, please browse it's <a href=\"%s"
2610
- "\" target=\"_blank\">Documentation</a> or talk about them in the <a href=\"%s"
2611
- "\" target=\"_blank\">Support forum</a>"
2612
- msgstr ""
2613
-
2614
- #: ../includes/class-settings.php:1896
2615
- msgid "Do you like this plugin?"
2616
- msgstr ""
2617
-
2618
- #: ../includes/class-settings.php:1897
2619
- #, php-format
2620
- msgid "<a href=\"%s\" target=\"_blank\">Rate it 5</a> on WordPress.org"
2621
- msgstr ""
2622
-
2623
- #: ../includes/class-settings.php:1898
2624
- #, php-format
2625
- msgid ""
2626
- "Blog about it & link to the <a href=\"%s\" target=\"_blank\">plugin page</a>."
2627
- msgstr ""
2628
-
2629
- #: ../includes/class-settings.php:1899
2630
- #, php-format
2631
- msgid ""
2632
- "Check out our other <a href=\"%s\" target=\"_blank\">WordPress plugins</a>."
2633
- msgstr ""
2634
-
2635
- #: ../includes/class-settings.php:1943
2636
- msgid "Reset to defaults"
2637
- msgstr ""
2638
-
2639
- #: ../includes/class-settings.php:2341 ../includes/class-settings.php:2396
2640
- msgid "Settings restored to defaults."
2641
- msgstr ""
2642
-
2643
- #: ../includes/class-settings.php:2418
2644
- msgid "Role"
2645
- msgstr ""
2646
-
2647
- #: ../includes/class-settings.php:2464
2648
- msgid "Add-ons / Extensions"
2649
- msgstr ""
2650
-
2651
- #: ../includes/class-settings.php:2465
2652
- msgid ""
2653
- "Enhance your website with these beautiful, easy to use extensions, designed "
2654
- "with Responsive Lightbox & Gallery integration in mind."
2655
- msgstr ""
2656
-
2657
- #: ../includes/class-settings.php:2477
2658
- msgid ""
2659
- "There was an error retrieving the extensions list from the server. Please "
2660
- "try again later."
2661
- msgstr ""
2662
-
2663
- #: ../includes/class-settings.php:2489
2664
- msgid "A list of licenses for your Responsive Lightbox & Gallery extensions."
2665
- msgstr ""
2666
-
2667
- #: ../includes/class-settings.php:2509
2668
- #, php-format
2669
- msgid ""
2670
- "Enter your license key to activate %s extension and enable automatic upgrade "
2671
- "notices."
2672
- msgstr ""
2673
-
2674
- #: ../includes/class-tour.php:103
2675
- msgid ""
2676
- "This is an advanced gallery builder. Here you can see a preview of all "
2677
- "created galleries along with their settings, such as the name, type, source "
2678
- "of images, author or date of publication. You can also add a new gallery, "
2679
- "edit existing ones or quickly copy the code allowing its use on the site."
2680
- msgstr ""
2681
-
2682
- #: ../includes/class-tour.php:123
2683
- msgid "Gallery Categories"
2684
- msgstr ""
2685
-
2686
- #: ../includes/class-tour.php:124
2687
- msgid ""
2688
- "Gallery categories allow you to arrange galleries into individual groups "
2689
- "that you can potentially use. Here you can create, name and edit them. "
2690
- "However, assigning the gallery to the category takes place on the gallery "
2691
- "editing screen."
2692
- msgstr ""
2693
-
2694
- #: ../includes/class-tour.php:137
2695
- msgid "Gallery Tags"
2696
- msgstr ""
2697
-
2698
- #: ../includes/class-tour.php:138
2699
- msgid ""
2700
- "Gallery tags, like categories, allow you to arrange galleries into groups. "
2701
- "You can think of them as keywords, which you can use to further specify your "
2702
- "galleries. Here you can create, name and edit them."
2703
- msgstr ""
2704
-
2705
- #: ../includes/class-tour.php:152
2706
- msgid ""
2707
- "Here are the main settings for Responsive Lightbox & Gallery. They allow you "
2708
- "to specify general rules of the plugin's operation and technical parameters "
2709
- "of the lightbox effect and gallery. For example - you can choose your "
2710
- "favorite lightbox effect, specify for which elements it will automatically "
2711
- "launch and set its parameters. You can also choose the default gallery and "
2712
- "its settings."
2713
- msgstr ""
2714
-
2715
- #: ../includes/class-tour.php:169
2716
- msgid "Lightboxes Settings"
2717
- msgstr ""
2718
-
2719
- #: ../includes/class-tour.php:170
2720
- msgid ""
2721
- "Each lightbox has different look, possibilities and parameters. Here is a "
2722
- "list of available lightbox effects along with their settings. After entering "
2723
- "the tab you can see the settings of the currently selected lightbox, but you "
2724
- "can also modify or restore the settings of the others."
2725
- msgstr ""
2726
-
2727
- #: ../includes/class-tour.php:178
2728
- msgid "Gallery Settings"
2729
- msgstr ""
2730
-
2731
- #: ../includes/class-tour.php:179
2732
- msgid ""
2733
- "This is the screen of the default gallery settings. As in the case of "
2734
- "lightbox effects, there is a list of available galleries and their "
2735
- "parameters. After entering the tab you can see the settings of the currently "
2736
- "selected gallery. You can modify and adjust them to your needs or restore "
2737
- "it's default settings."
2738
- msgstr ""
2739
-
2740
- #: ../includes/class-tour.php:187
2741
- msgid "Builder Settings"
2742
- msgstr ""
2743
-
2744
- #: ../includes/class-tour.php:188
2745
- msgid ""
2746
- "You can use the galleries in many ways - insert them into posts using the "
2747
- "Add Gallery button, insert manually using shortcodes or add to the theme "
2748
- "using functions. But you can also display them in archives just like other "
2749
- "post types. Use these settings to specify the functionality of the gallery "
2750
- "builder like categories, tags, archives and permalinks."
2751
- msgstr ""
2752
-
2753
- #: ../includes/class-tour.php:197
2754
- msgid ""
2755
- "Responsive Lithbox & Gallery comes with an optional Media Folders feature "
2756
- "that extends your WordPress Media Library with visual folders. It allows you "
2757
- "to organize your attachments in a folder tree structure. Move, copy, rename "
2758
- "and delete files and folders with a nice drag and drop interface."
2759
- msgstr ""
2760
-
2761
- #: ../includes/class-tour.php:206
2762
- msgid ""
2763
- "Capabilities give you the ability to control what users can and cannot do "
2764
- "within the plugin. By default only the Administrator role allows a user to "
2765
- "perform all possible capabilities. But you can fine tune these settings to "
2766
- "match your specific requirements."
2767
- msgstr ""
2768
-
2769
- #: ../includes/class-tour.php:215
2770
- msgid ""
2771
- "Are you looking for free royalty free public domain and CC0-Licensed images "
2772
- "for your website? Or you need to access your images stored in photo-sharing "
2773
- "apps? Remote Library allows you to use images from multiple sources like "
2774
- "Unsplash, Pixabay, Flickr or Instagram directly in your WordPress Media "
2775
- "Manager. Now you can create galleries, browse, insert and import images as "
2776
- "never before."
2777
- msgstr ""
2778
-
2779
- #: ../includes/class-tour.php:224
2780
- msgid "License Settings"
2781
- msgstr ""
2782
-
2783
- #: ../includes/class-tour.php:225
2784
- msgid ""
2785
- "This section contains a list of currently installed premium extensions. "
2786
- "Activate your licenses to have access to automatic updates from your site. "
2787
- "To activate the license, copy and paste the license key for the extension "
2788
- "and save the changes. Available license keys can be found on your account on "
2789
- "our website."
2790
- msgstr ""
2791
-
2792
- #: ../includes/class-tour.php:234
2793
- msgid ""
2794
- "Responsive Lightbox & Gallery is more than that. Do you need a beautiful "
2795
- "lightbox effect, integration with social media, an attractive image gallery? "
2796
- "Among our products you will surely find something for yourself. Boost your "
2797
- "creativity and enhance your website with these beautiful, easy to use "
2798
- "extensions, designed with Responsive Lightbox & Gallery integration in mind."
2799
- msgstr ""
2800
-
2801
- #: ../includes/class-welcome.php:33
2802
- msgid "Welcome to Responsive Lightbox & Gallery"
2803
- msgstr ""
2804
-
2805
- #: ../includes/class-welcome.php:56
2806
- msgid "Welcome to"
2807
- msgstr ""
2808
-
2809
- #: ../includes/class-welcome.php:57
2810
- #, php-format
2811
- msgid "Responsive Lightbox & Gallery %s"
2812
- msgstr ""
2813
-
2814
- #: ../includes/class-welcome.php:61
2815
- msgid ""
2816
- "Thank you for choosing Responsive Lightbox & Gallery - the most popular "
2817
- "lightbox plugin and a powerful gallery builder for WordPress."
2818
- msgstr ""
2819
-
2820
- #: ../includes/class-welcome.php:69 ../responsive-lightbox.php:927
2821
- #: ../responsive-lightbox.php:1237
2822
- msgid "Settings"
2823
- msgstr ""
2824
-
2825
- #: ../includes/class-welcome.php:70
2826
- msgid "Addons"
2827
- msgstr ""
2828
-
2829
- #: ../includes/class-welcome.php:89
2830
- msgid "Advanced Gallery Builder"
2831
- msgstr ""
2832
-
2833
- #: ../includes/class-welcome.php:90
2834
- msgid ""
2835
- "Responsive Lightbox & Gallery comes with a powerful gallery builder right "
2836
- "out of the box that lets you manage galleries the same way you manage posts "
2837
- "and pages on your WordPress website. You can add images to your gallery, "
2838
- "adjust its settings and lightbox scripts, and configure its display options."
2839
- msgstr ""
2840
-
2841
- #: ../includes/class-welcome.php:95
2842
- msgid "Multiple Lightbox Effects"
2843
- msgstr ""
2844
-
2845
- #: ../includes/class-welcome.php:96
2846
- msgid ""
2847
- "Responsive Lightbox & Gallery gives you the control to beautify your images, "
2848
- "videos, and galleries using lightbox scripts that look great on all devices. "
2849
- "We've got everything from lightweight, functional lightboxes to heavy-"
2850
- "customizable, fancy ones."
2851
- msgstr ""
2852
-
2853
- #: ../includes/class-welcome.php:100
2854
- msgid "Easy Setup"
2855
- msgstr ""
2856
-
2857
- #: ../includes/class-welcome.php:101
2858
- msgid ""
2859
- "A lot goes into making a good first impression - especially when your site "
2860
- "is doing all the talking. Responsive Lightbox & Gallery automatically adds "
2861
- "lightbox effects to all of your image galleries, image links, and video "
2862
- "links so you can sit back and relax while we make sure your website looks "
2863
- "its best."
2864
- msgstr ""
2865
-
2866
- #: ../includes/class-welcome.php:105
2867
- msgid "Powerful Addons"
2868
- msgstr ""
2869
-
2870
- #: ../includes/class-welcome.php:106
2871
- #, php-format
2872
- msgid ""
2873
- "Responsive Lightbox & Gallery enhances your site by making its images and "
2874
- "galleries look visually appealing to your site users. And when you want to "
2875
- "kick things up a notch you can pair the free, core plugin with <del>one of "
2876
- "10</del> one of 12 <a href=\"%s\" target=\"_blank\">premium extensions.</a>"
2877
- msgstr ""
2878
-
2879
- #: ../includes/class-welcome.php:112
2880
- msgid "Go to Settings"
2881
- msgstr ""
2882
-
2883
- #: ../includes/class-widgets.php:59
2884
- msgid "Displays an image gallery."
2885
- msgstr ""
2886
-
2887
- #: ../includes/class-widgets.php:76
2888
- msgid "Menu order"
2889
- msgstr ""
2890
-
2891
- #: ../includes/class-widgets.php:78
2892
- msgid "Image date"
2893
- msgstr ""
2894
-
2895
- #: ../includes/class-widgets.php:94 ../responsive-lightbox.php:640
2896
- msgid "Default"
2897
- msgstr ""
2898
-
2899
- #: ../includes/class-widgets.php:152
2900
- msgid "Delete image"
2901
- msgstr ""
2902
-
2903
- #: ../includes/class-widgets.php:165
2904
- msgid "Gallery type"
2905
- msgstr ""
2906
-
2907
- #: ../includes/class-widgets.php:180
2908
- msgid "Order by"
2909
- msgstr ""
2910
-
2911
- #: ../includes/class-widgets.php:204
2912
- msgid "Image size"
2913
- msgstr ""
2914
-
2915
- #: ../includes/class-widgets.php:216
2916
- msgid "Number of columns"
2917
- msgstr ""
2918
-
2919
- #: ../includes/class-widgets.php:220
2920
- msgid "Custom attributes"
2921
- msgstr ""
2922
-
2923
- #: ../includes/class-widgets.php:222
2924
- msgid "Custom gallery shortcode attributes (optional)."
2925
- msgstr ""
2926
-
2927
- #: ../includes/class-widgets.php:313 ../includes/class-widgets.php:321
2928
- msgid "Image"
2929
- msgstr ""
2930
-
2931
- #: ../includes/class-widgets.php:315
2932
- msgid "Displays a single image."
2933
- msgstr ""
2934
-
2935
- #: ../includes/class-widgets.php:335
2936
- msgid "Below the image"
2937
- msgstr ""
2938
-
2939
- #: ../includes/class-widgets.php:336
2940
- msgid "Above the image"
2941
- msgstr ""
2942
-
2943
- #: ../includes/class-widgets.php:348
2944
- msgid "Left"
2945
- msgstr ""
2946
-
2947
- #: ../includes/class-widgets.php:349
2948
- msgid "Center"
2949
- msgstr ""
2950
-
2951
- #: ../includes/class-widgets.php:350
2952
- msgid "Right"
2953
- msgstr ""
2954
-
2955
- #: ../includes/class-widgets.php:351
2956
- msgid "Justify"
2957
- msgstr ""
2958
-
2959
- #: ../includes/class-widgets.php:462 ../responsive-lightbox.php:1736
2960
- msgid "Select image"
2961
- msgstr ""
2962
-
2963
- #: ../includes/class-widgets.php:471
2964
- msgid "Force responsive"
2965
- msgstr ""
2966
-
2967
- #: ../includes/class-widgets.php:490
2968
- msgid "Link to"
2969
- msgstr ""
2970
-
2971
- #: ../includes/class-widgets.php:504
2972
- msgid "URL"
2973
- msgstr ""
2974
-
2975
- #: ../includes/class-widgets.php:510
2976
- msgid "Image align"
2977
- msgstr ""
2978
-
2979
- #: ../includes/class-widgets.php:523
2980
- msgid "Text"
2981
- msgstr ""
2982
-
2983
- #: ../includes/class-widgets.php:527
2984
- msgid "Automatically add paragraphs"
2985
- msgstr ""
2986
-
2987
- #: ../includes/class-widgets.php:532
2988
- msgid "Text position"
2989
- msgstr ""
2990
-
2991
- #: ../includes/class-widgets.php:543
2992
- msgid "Text align"
2993
- msgstr ""
2994
-
2995
- #: ../includes/providers/class-flickr.php:22
2996
- msgid "Flickr"
2997
- msgstr ""
2998
-
2999
- #: ../includes/providers/class-flickr.php:49
3000
- msgid "Enable Flickr."
3001
- msgstr ""
3002
-
3003
- #: ../includes/providers/class-flickr.php:51
3004
- msgid "API key"
3005
- msgstr ""
3006
-
3007
- #: ../includes/providers/class-flickr.php:52
3008
- #, php-format
3009
- msgid "Provide your <a href=\"%s\">Flickr API key</a>."
3010
- msgstr ""
3011
-
3012
- #: ../includes/providers/class-flickr.php:128
3013
- #: ../includes/providers/class-unsplash.php:126
3014
- #: ../includes/providers/class-wikimedia.php:127
3015
- msgid "Responsive Lightbox"
3016
- msgstr ""
3017
-
3018
- #: ../includes/providers/class-flickr.php:142
3019
- #: ../includes/providers/class-unsplash.php:140
3020
- #: ../includes/providers/class-wikimedia.php:141
3021
- msgid "Parsing request error"
3022
- msgstr ""
3023
-
3024
- #: ../includes/providers/class-unsplash.php:22
3025
- msgid "Unsplash"
3026
- msgstr ""
3027
-
3028
- #: ../includes/providers/class-unsplash.php:49
3029
- msgid "Enable Unsplash."
3030
- msgstr ""
3031
-
3032
- #: ../includes/providers/class-unsplash.php:51
3033
- msgid "Access key"
3034
- msgstr ""
3035
-
3036
- #: ../includes/providers/class-unsplash.php:52
3037
- #, php-format
3038
- msgid "Provide your <a href=\"%s\">Unsplash API key</a>."
3039
- msgstr ""
3040
-
3041
- #: ../includes/providers/class-wikimedia.php:22
3042
- msgid "Wikimedia"
3043
- msgstr ""
3044
-
3045
- #: ../includes/providers/class-wikimedia.php:56
3046
- msgid "Enable Wikimedia."
3047
- msgstr ""
3048
-
3049
- #: ../responsive-lightbox.php:690
3050
- msgid "Publish Galleries"
3051
- msgstr ""
3052
-
3053
- #: ../responsive-lightbox.php:691
3054
- msgid "Edit Galleries"
3055
- msgstr ""
3056
-
3057
- #: ../responsive-lightbox.php:692
3058
- msgid "Edit Published Galleries"
3059
- msgstr ""
3060
-
3061
- #: ../responsive-lightbox.php:693
3062
- msgid "Edit Others Galleries"
3063
- msgstr ""
3064
-
3065
- #: ../responsive-lightbox.php:694
3066
- msgid "Edit Private Galleries"
3067
- msgstr ""
3068
-
3069
- #: ../responsive-lightbox.php:695
3070
- msgid "Delete Galleries"
3071
- msgstr ""
3072
-
3073
- #: ../responsive-lightbox.php:696
3074
- msgid "Delete Published Galleries"
3075
- msgstr ""
3076
-
3077
- #: ../responsive-lightbox.php:697
3078
- msgid "Delete Others Galleries"
3079
- msgstr ""
3080
-
3081
- #: ../responsive-lightbox.php:698
3082
- msgid "Delete Private Galleries"
3083
- msgstr ""
3084
-
3085
- #: ../responsive-lightbox.php:699
3086
- msgid "Read Private Galleries"
3087
- msgstr ""
3088
-
3089
- #: ../responsive-lightbox.php:700
3090
- msgid "Manage Gallery Categories"
3091
- msgstr ""
3092
-
3093
- #: ../responsive-lightbox.php:701
3094
- msgid "Manage Gallery Tags"
3095
- msgstr ""
3096
-
3097
- #: ../responsive-lightbox.php:702
3098
- msgid "Manage Settings"
3099
- msgstr ""
3100
-
3101
- #: ../responsive-lightbox.php:764
3102
- #, php-format
3103
- msgid ""
3104
- "Hey, you've been using <strong>Responsive Lightbox & Gallery</strong> for "
3105
- "more than %s"
3106
- msgstr ""
3107
-
3108
- #: ../responsive-lightbox.php:764
3109
- msgid ""
3110
- "Could you please do me a BIG favor and give it a 5-star rating on WordPress "
3111
- "to help us spread the word and boost our motivation."
3112
- msgstr ""
3113
-
3114
- #: ../responsive-lightbox.php:764
3115
- msgid "Your help is much appreciated. Thank you very much"
3116
- msgstr ""
3117
-
3118
- #: ../responsive-lightbox.php:764
3119
- #, php-format
3120
- msgid "founder of <a href=\"%s\" target=\"_blank\">dFactory</a> plugins."
3121
- msgstr ""
3122
-
3123
- #: ../responsive-lightbox.php:764
3124
- #, php-format
3125
- msgid ""
3126
- "<a href=\"%s\" class=\"rl-dismissible-notice\" target=\"_blank\" rel="
3127
- "\"noopener\">Ok, you deserve it</a><br /><a href=\"javascript:void(0);\" "
3128
- "class=\"rl-dismissible-notice rl-delay-notice\" rel=\"noopener\">Nope, maybe "
3129
- "later</a><br /><a href=\"javascript:void(0);\" class=\"rl-dismissible-notice"
3130
- "\" rel=\"noopener\">I already did</a>"
3131
- msgstr ""
3132
-
3133
- #: ../responsive-lightbox.php:889
3134
- msgid "Support"
3135
- msgstr ""
3136
-
3137
- #: ../responsive-lightbox.php:953
3138
- msgid "We're sorry to see you go. Could you please tell us what happened?"
3139
- msgstr ""
3140
-
3141
- #: ../responsive-lightbox.php:957
3142
- msgid "I couldn't figure out how to make it work."
3143
- msgstr ""
3144
-
3145
- #: ../responsive-lightbox.php:958
3146
- msgid "I found another plugin to use for the same task."
3147
- msgstr ""
3148
-
3149
- #: ../responsive-lightbox.php:959
3150
- msgid "The User Interface is not clear to me."
3151
- msgstr ""
3152
-
3153
- #: ../responsive-lightbox.php:960
3154
- msgid "The plugin is not what I was looking for."
3155
- msgstr ""
3156
-
3157
- #: ../responsive-lightbox.php:961
3158
- msgid "Support isn't timely."
3159
- msgstr ""
3160
-
3161
- #: ../responsive-lightbox.php:962
3162
- msgid "Other"
3163
- msgstr ""
3164
-
3165
- #: ../responsive-lightbox.php:977
3166
- msgid "Deactivate"
3167
- msgstr ""
3168
-
3169
- #: ../responsive-lightbox.php:978
3170
- msgid "Deactivate & Submit"
3171
- msgstr ""
3172
-
3173
- #: ../responsive-lightbox.php:1068
3174
- msgid "Search Gallery Categories"
3175
- msgstr ""
3176
-
3177
- #: ../responsive-lightbox.php:1069
3178
- msgid "All Gallery Categories"
3179
- msgstr ""
3180
-
3181
- #: ../responsive-lightbox.php:1070
3182
- msgid "Parent Gallery Category"
3183
- msgstr ""
3184
-
3185
- #: ../responsive-lightbox.php:1071
3186
- msgid "Parent Gallery Category:"
3187
- msgstr ""
3188
-
3189
- #: ../responsive-lightbox.php:1072
3190
- msgid "Edit Gallery Category"
3191
- msgstr ""
3192
-
3193
- #: ../responsive-lightbox.php:1073
3194
- msgid "View Gallery Category"
3195
- msgstr ""
3196
-
3197
- #: ../responsive-lightbox.php:1074
3198
- msgid "Update Gallery Category"
3199
- msgstr ""
3200
-
3201
- #: ../responsive-lightbox.php:1075
3202
- msgid "Add New Gallery Category"
3203
- msgstr ""
3204
-
3205
- #: ../responsive-lightbox.php:1076
3206
- msgid "New Gallery Category Name"
3207
- msgstr ""
3208
-
3209
- #: ../responsive-lightbox.php:1111
3210
- msgid "Search Gallery Tags"
3211
- msgstr ""
3212
-
3213
- #: ../responsive-lightbox.php:1112
3214
- msgid "Popular Gallery Tags"
3215
- msgstr ""
3216
-
3217
- #: ../responsive-lightbox.php:1113
3218
- msgid "All Gallery Tags"
3219
- msgstr ""
3220
-
3221
- #: ../responsive-lightbox.php:1116
3222
- msgid "Edit Gallery Tag"
3223
- msgstr ""
3224
-
3225
- #: ../responsive-lightbox.php:1117
3226
- msgid "Update Gallery Tag"
3227
- msgstr ""
3228
-
3229
- #: ../responsive-lightbox.php:1118
3230
- msgid "Add New Gallery Tag"
3231
- msgstr ""
3232
-
3233
- #: ../responsive-lightbox.php:1119
3234
- msgid "New Gallery Tag Name"
3235
- msgstr ""
3236
-
3237
- #: ../responsive-lightbox.php:1120
3238
- msgid "Separate gallery tags with commas"
3239
- msgstr ""
3240
-
3241
- #: ../responsive-lightbox.php:1121
3242
- msgid "Add or remove gallery tags"
3243
- msgstr ""
3244
-
3245
- #: ../responsive-lightbox.php:1122
3246
- msgid "Choose from the most used gallery tags"
3247
- msgstr ""
3248
-
3249
- #: ../responsive-lightbox.php:1152
3250
- msgid "Add New"
3251
- msgstr ""
3252
-
3253
- #: ../responsive-lightbox.php:1153
3254
- msgid "Add New Gallery"
3255
- msgstr ""
3256
-
3257
- #: ../responsive-lightbox.php:1154
3258
- msgid "Edit Gallery"
3259
- msgstr ""
3260
-
3261
- #: ../responsive-lightbox.php:1155
3262
- msgid "New Gallery"
3263
- msgstr ""
3264
-
3265
- #: ../responsive-lightbox.php:1156
3266
- msgid "View Gallery"
3267
- msgstr ""
3268
-
3269
- #: ../responsive-lightbox.php:1157
3270
- msgid "View Galleries"
3271
- msgstr ""
3272
-
3273
- #: ../responsive-lightbox.php:1158
3274
- msgid "Search Galleries"
3275
- msgstr ""
3276
-
3277
- #: ../responsive-lightbox.php:1159
3278
- msgid "No galleries found"
3279
- msgstr ""
3280
-
3281
- #: ../responsive-lightbox.php:1160
3282
- msgid "No galleries found in trash"
3283
- msgstr ""
3284
-
3285
- #: ../responsive-lightbox.php:1161
3286
- msgid "All Galleries"
3287
- msgstr ""
3288
-
3289
- #: ../responsive-lightbox.php:1298
3290
- msgid "New gallery"
3291
- msgstr ""
3292
-
3293
- #: ../responsive-lightbox.php:1318
3294
- msgid "Edit category"
3295
- msgstr ""
3296
-
3297
- #: ../responsive-lightbox.php:1338
3298
- msgid "Edit tag"
3299
- msgstr ""
3300
-
3301
- #: ../responsive-lightbox.php:1411 ../responsive-lightbox.php:1412
3302
- msgid "Gallery updated."
3303
- msgstr ""
3304
-
3305
- #: ../responsive-lightbox.php:1413
3306
- #, php-format
3307
- msgid "Gallery restored to revision from %s"
3308
- msgstr ""
3309
-
3310
- #: ../responsive-lightbox.php:1414
3311
- msgid "Gallery published."
3312
- msgstr ""
3313
-
3314
- #: ../responsive-lightbox.php:1415
3315
- msgid "Gallery saved."
3316
- msgstr ""
3317
-
3318
- #: ../responsive-lightbox.php:1416
3319
- msgid "Gallery submitted."
3320
- msgstr ""
3321
-
3322
- #: ../responsive-lightbox.php:1418
3323
- #, php-format
3324
- msgid "Gallery scheduled for: <strong>%1$s</strong>."
3325
- msgstr ""
3326
-
3327
- #: ../responsive-lightbox.php:1419
3328
- msgid "M j, Y @ G:i"
3329
- msgstr ""
3330
-
3331
- #: ../responsive-lightbox.php:1421
3332
- msgid "Gallery draft updated."
3333
- msgstr ""
3334
-
3335
- #: ../responsive-lightbox.php:1427
3336
- msgid "View gallery"
3337
- msgstr ""
3338
-
3339
- #: ../responsive-lightbox.php:1433
3340
- msgid "Preview gallery"
3341
- msgstr ""
3342
-
3343
- #: ../responsive-lightbox.php:1468
3344
- msgid "Search Tags"
3345
- msgstr ""
3346
-
3347
- #: ../responsive-lightbox.php:1469
3348
- msgid "All Tags"
3349
- msgstr ""
3350
-
3351
- #: ../responsive-lightbox.php:1470
3352
- msgid "Edit Tag"
3353
- msgstr ""
3354
-
3355
- #: ../responsive-lightbox.php:1471
3356
- msgid "Update Tag"
3357
- msgstr ""
3358
-
3359
- #: ../responsive-lightbox.php:1472
3360
- msgid "Add New Tag"
3361
- msgstr ""
3362
-
3363
- #: ../responsive-lightbox.php:1473
3364
- msgid "New Tag Name"
3365
- msgstr ""
3366
-
3367
- #: ../responsive-lightbox.php:1474
3368
- msgid "No tags found."
3369
- msgstr ""
3370
-
3371
- #: ../responsive-lightbox.php:1549
3372
- msgid "Search Folders"
3373
- msgstr ""
3374
-
3375
- #: ../responsive-lightbox.php:1551
3376
- msgid "Parent Folder"
3377
- msgstr ""
3378
-
3379
- #: ../responsive-lightbox.php:1552
3380
- msgid "Parent Folder:"
3381
- msgstr ""
3382
-
3383
- #: ../responsive-lightbox.php:1553
3384
- msgid "Edit Folder"
3385
- msgstr ""
3386
-
3387
- #: ../responsive-lightbox.php:1554
3388
- msgid "Update Folder"
3389
- msgstr ""
3390
-
3391
- #: ../responsive-lightbox.php:1555
3392
- msgid "Add New Folder"
3393
- msgstr ""
3394
-
3395
- #: ../responsive-lightbox.php:1556
3396
- msgid "New Folder Name"
3397
- msgstr ""
3398
-
3399
- #: ../responsive-lightbox.php:1557
3400
- msgid "No folders found."
3401
- msgstr ""
3402
-
3403
- #: ../responsive-lightbox.php:1590
3404
- msgid "Are you sure you want to reset these settings to defaults?"
3405
- msgstr ""
3406
-
3407
- #: ../responsive-lightbox.php:1612 ../responsive-lightbox.php:1737
3408
- msgid "Use these images"
3409
- msgstr ""
3410
-
3411
- #: ../responsive-lightbox.php:1613
3412
- msgid "Edit attachment"
3413
- msgstr ""
3414
-
3415
- #: ../responsive-lightbox.php:1614
3416
- msgid "Save attachment"
3417
- msgstr ""
3418
-
3419
- #: ../responsive-lightbox.php:1639
3420
- msgid "Responsive Lightbox & Gallery - Deactivation survey"
3421
- msgstr ""
3422
-
3423
- #: ../responsive-lightbox.php:1738
3424
- msgid "Use this image"
3425
- msgstr ""
1
+ #, fuzzy
2
+ msgid ""
3
+ msgstr ""
4
+ "Project-Id-Version: Responsive Lightbox\n"
5
+ "POT-Creation-Date: 2021-02-19 13:28+0100\n"
6
+ "PO-Revision-Date: 2015-05-12 12:06+0100\n"
7
+ "Last-Translator: Bartosz Arendt <info@dfactory.eu>\n"
8
+ "Language-Team: dFactory <info@dfactory.eu>\n"
9
+ "Language: en\n"
10
+ "MIME-Version: 1.0\n"
11
+ "Content-Type: text/plain; charset=UTF-8\n"
12
+ "Content-Transfer-Encoding: 8bit\n"
13
+ "X-Generator: Poedit 2.4.2\n"
14
+ "X-Poedit-KeywordsList: gettext;gettext_noop;__;_e\n"
15
+ "X-Poedit-Basepath: .\n"
16
+ "X-Poedit-SourceCharset: UTF-8\n"
17
+ "X-Poedit-SearchPath-0: ..\n"
18
+
19
+ #: ../includes/class-folders.php:181 ../includes/class-folders.php:195
20
+ #: ../includes/class-folders.php:247 ../includes/class-folders.php:261
21
+ #: ../includes/class-folders.php:440 ../includes/class-folders.php:1085
22
+ #: ../includes/class-folders.php:1109 ../includes/class-folders.php:1140
23
+ #: ../includes/class-galleries.php:1181
24
+ msgid "Root Folder"
25
+ msgstr ""
26
+
27
+ #: ../includes/class-folders.php:266
28
+ msgid "Upload files to"
29
+ msgstr ""
30
+
31
+ #: ../includes/class-folders.php:307 ../includes/class-folders.php:319
32
+ #: ../includes/class-folders.php:1082 ../includes/class-folders.php:1114
33
+ #: ../includes/class-folders.php:1141 ../includes/class-folders.php:1150
34
+ #: ../responsive-lightbox.php:1550
35
+ msgid "All Files"
36
+ msgstr ""
37
+
38
+ #: ../includes/class-folders.php:1142
39
+ msgid "New Folder"
40
+ msgstr ""
41
+
42
+ #: ../includes/class-folders.php:1143
43
+ msgid "Are you sure you want to delete this folder?"
44
+ msgstr ""
45
+
46
+ #: ../includes/class-folders.php:1144
47
+ msgid "Are you sure you want to delete this folder with all subfolders?"
48
+ msgstr ""
49
+
50
+ #: ../includes/class-folders.php:1166
51
+ #, php-format
52
+ msgid "Save new %s"
53
+ msgstr ""
54
+
55
+ #: ../includes/class-folders.php:1167
56
+ #, php-format
57
+ msgid "Cancel adding new %s"
58
+ msgstr ""
59
+
60
+ #: ../includes/class-folders.php:1169
61
+ #, php-format
62
+ msgid "Save %s"
63
+ msgstr ""
64
+
65
+ #: ../includes/class-folders.php:1170
66
+ #, php-format
67
+ msgid "Cancel renaming %s"
68
+ msgstr ""
69
+
70
+ #: ../includes/class-folders.php:1171
71
+ #, php-format
72
+ msgid "Delete %s"
73
+ msgstr ""
74
+
75
+ #: ../includes/class-folders.php:1172
76
+ #, php-format
77
+ msgid "Expand %s"
78
+ msgstr ""
79
+
80
+ #: ../includes/class-folders.php:1173
81
+ #, php-format
82
+ msgid "Collapse %s"
83
+ msgstr ""
84
+
85
+ #: ../includes/class-frontend.php:567 ../includes/class-widgets.php:476
86
+ msgid "Size"
87
+ msgstr ""
88
+
89
+ #: ../includes/class-frontend.php:569
90
+ msgid "Specify the image size to use for the thumbnail display."
91
+ msgstr ""
92
+
93
+ #: ../includes/class-frontend.php:574
94
+ msgid "Link To"
95
+ msgstr ""
96
+
97
+ #: ../includes/class-frontend.php:576
98
+ msgid "Specify where you want the image to link."
99
+ msgstr ""
100
+
101
+ #: ../includes/class-frontend.php:579 ../includes/class-widgets.php:342
102
+ msgid "Attachment Page"
103
+ msgstr ""
104
+
105
+ #: ../includes/class-frontend.php:580 ../includes/class-widgets.php:341
106
+ msgid "Media File"
107
+ msgstr ""
108
+
109
+ #: ../includes/class-frontend.php:581 ../includes/class-galleries.php:160
110
+ #: ../includes/class-settings.php:150 ../includes/class-settings.php:650
111
+ #: ../includes/class-settings.php:709 ../includes/class-widgets.php:93
112
+ #: ../includes/class-widgets.php:340 ../includes/class-widgets.php:347
113
+ msgid "None"
114
+ msgstr ""
115
+
116
+ #: ../includes/class-frontend.php:585
117
+ msgid "Orderby"
118
+ msgstr ""
119
+
120
+ #: ../includes/class-frontend.php:587
121
+ msgid "Specify how to sort the display thumbnails."
122
+ msgstr ""
123
+
124
+ #: ../includes/class-frontend.php:590 ../includes/class-galleries.php:218
125
+ #: ../includes/class-widgets.php:79
126
+ msgid "ID"
127
+ msgstr ""
128
+
129
+ #: ../includes/class-frontend.php:591 ../includes/class-galleries.php:220
130
+ #: ../includes/class-widgets.php:77 ../includes/class-widgets.php:133
131
+ #: ../includes/class-widgets.php:457
132
+ msgid "Title"
133
+ msgstr ""
134
+
135
+ #: ../includes/class-frontend.php:592 ../includes/class-galleries.php:222
136
+ msgid "Date"
137
+ msgstr ""
138
+
139
+ #: ../includes/class-frontend.php:593
140
+ msgid "Menu Order"
141
+ msgstr ""
142
+
143
+ #: ../includes/class-frontend.php:594 ../includes/class-galleries.php:225
144
+ #: ../includes/class-widgets.php:80
145
+ msgid "Random"
146
+ msgstr ""
147
+
148
+ #: ../includes/class-frontend.php:598 ../includes/class-widgets.php:192
149
+ msgid "Order"
150
+ msgstr ""
151
+
152
+ #: ../includes/class-frontend.php:600
153
+ msgid "Specify the sort order."
154
+ msgstr ""
155
+
156
+ #: ../includes/class-frontend.php:603 ../includes/class-galleries.php:234
157
+ #: ../includes/class-widgets.php:84
158
+ msgid "Ascending"
159
+ msgstr ""
160
+
161
+ #: ../includes/class-frontend.php:604 ../includes/class-galleries.php:235
162
+ #: ../includes/class-widgets.php:85
163
+ msgid "Descending"
164
+ msgstr ""
165
+
166
+ #: ../includes/class-frontend.php:608
167
+ msgid "Columns"
168
+ msgstr ""
169
+
170
+ #: ../includes/class-frontend.php:610
171
+ msgid "Specify the number of columns."
172
+ msgstr ""
173
+
174
+ #: ../includes/class-galleries.php:85 ../includes/class-galleries.php:3640
175
+ msgid "Status"
176
+ msgstr ""
177
+
178
+ #: ../includes/class-galleries.php:86
179
+ msgid "Edit image"
180
+ msgstr ""
181
+
182
+ #: ../includes/class-galleries.php:87 ../responsive-lightbox.php:1734
183
+ msgid "Remove image"
184
+ msgstr ""
185
+
186
+ #: ../includes/class-galleries.php:105 ../includes/class-galleries.php:155
187
+ #: ../includes/class-galleries.php:166
188
+ msgid "Global"
189
+ msgstr ""
190
+
191
+ #: ../includes/class-galleries.php:112 ../includes/class-settings.php:209
192
+ msgid "Images"
193
+ msgstr ""
194
+
195
+ #: ../includes/class-galleries.php:113
196
+ msgid "The settings below adjust the contents of the gallery."
197
+ msgstr ""
198
+
199
+ #: ../includes/class-galleries.php:115 ../includes/class-galleries.php:4074
200
+ msgid "Media Library"
201
+ msgstr ""
202
+
203
+ #: ../includes/class-galleries.php:116
204
+ msgid "Featured Content"
205
+ msgstr ""
206
+
207
+ #: ../includes/class-galleries.php:120
208
+ msgid "Config"
209
+ msgstr ""
210
+
211
+ #: ../includes/class-galleries.php:121
212
+ msgid "The settings below adjust the configuration options for the gallery."
213
+ msgstr ""
214
+
215
+ #: ../includes/class-galleries.php:125
216
+ msgid "Design"
217
+ msgstr ""
218
+
219
+ #: ../includes/class-galleries.php:126
220
+ msgid "The settings below adjust the gallery design options."
221
+ msgstr ""
222
+
223
+ #: ../includes/class-galleries.php:129
224
+ msgid "Paging"
225
+ msgstr ""
226
+
227
+ #: ../includes/class-galleries.php:130
228
+ msgid "The settings below adjust the gallery pagination options."
229
+ msgstr ""
230
+
231
+ #: ../includes/class-galleries.php:133 ../includes/class-settings.php:1840
232
+ msgid "Lightbox"
233
+ msgstr ""
234
+
235
+ #: ../includes/class-galleries.php:134
236
+ msgid "The settings below adjust the lightbox options."
237
+ msgstr ""
238
+
239
+ #: ../includes/class-galleries.php:137
240
+ msgid "Misc"
241
+ msgstr ""
242
+
243
+ #: ../includes/class-galleries.php:138
244
+ msgid "The settings below adjust miscellaneous options."
245
+ msgstr ""
246
+
247
+ #: ../includes/class-galleries.php:144
248
+ msgid "Media Folders"
249
+ msgstr ""
250
+
251
+ #: ../includes/class-galleries.php:147 ../includes/class-settings.php:499
252
+ #: ../includes/class-settings.php:1028
253
+ msgid "Remote Library"
254
+ msgstr ""
255
+
256
+ #: ../includes/class-galleries.php:154
257
+ msgid "Full size"
258
+ msgstr ""
259
+
260
+ #: ../includes/class-galleries.php:156 ../includes/class-galleries.php:538
261
+ msgid "Custom size"
262
+ msgstr ""
263
+
264
+ #: ../includes/class-galleries.php:161
265
+ msgid "Top"
266
+ msgstr ""
267
+
268
+ #: ../includes/class-galleries.php:162
269
+ msgid "Bottom"
270
+ msgstr ""
271
+
272
+ #: ../includes/class-galleries.php:206
273
+ msgid "Number of Posts"
274
+ msgstr ""
275
+
276
+ #: ../includes/class-galleries.php:208
277
+ msgid "Enter the number of posts."
278
+ msgstr ""
279
+
280
+ #: ../includes/class-galleries.php:213
281
+ msgid "Posts Sorting"
282
+ msgstr ""
283
+
284
+ #: ../includes/class-galleries.php:215
285
+ msgid "Select the posts sorting."
286
+ msgstr ""
287
+
288
+ #: ../includes/class-galleries.php:219
289
+ msgid "Author"
290
+ msgstr ""
291
+
292
+ #: ../includes/class-galleries.php:221
293
+ msgid "Slug"
294
+ msgstr ""
295
+
296
+ #: ../includes/class-galleries.php:223
297
+ msgid "Last modified date"
298
+ msgstr ""
299
+
300
+ #: ../includes/class-galleries.php:224
301
+ msgid "Parent ID"
302
+ msgstr ""
303
+
304
+ #: ../includes/class-galleries.php:229
305
+ msgid "Posts Order"
306
+ msgstr ""
307
+
308
+ #: ../includes/class-galleries.php:231
309
+ msgid "Select the posts order."
310
+ msgstr ""
311
+
312
+ #: ../includes/class-galleries.php:239
313
+ msgid "Posts Offset"
314
+ msgstr ""
315
+
316
+ #: ../includes/class-galleries.php:241
317
+ msgid "Enter the posts offset."
318
+ msgstr ""
319
+
320
+ #: ../includes/class-galleries.php:246
321
+ msgid "Image Source"
322
+ msgstr ""
323
+
324
+ #: ../includes/class-galleries.php:248
325
+ msgid "Select the image source."
326
+ msgstr ""
327
+
328
+ #: ../includes/class-galleries.php:251
329
+ msgid "Post Thumbnails"
330
+ msgstr ""
331
+
332
+ #: ../includes/class-galleries.php:252
333
+ msgid "Post Attached Images"
334
+ msgstr ""
335
+
336
+ #: ../includes/class-galleries.php:256
337
+ msgid "Images per Post"
338
+ msgstr ""
339
+
340
+ #: ../includes/class-galleries.php:258
341
+ msgid "Enter maximum number of images for a post."
342
+ msgstr ""
343
+
344
+ #: ../includes/class-galleries.php:263
345
+ msgid "Post Type"
346
+ msgstr ""
347
+
348
+ #: ../includes/class-galleries.php:265
349
+ msgid "Select the post types to query."
350
+ msgstr ""
351
+
352
+ #: ../includes/class-galleries.php:270
353
+ msgid "Post Status"
354
+ msgstr ""
355
+
356
+ #: ../includes/class-galleries.php:272
357
+ msgid "Select the post status."
358
+ msgstr ""
359
+
360
+ #: ../includes/class-galleries.php:277
361
+ msgid "Post Format"
362
+ msgstr ""
363
+
364
+ #: ../includes/class-galleries.php:279
365
+ msgid "Select the post format."
366
+ msgstr ""
367
+
368
+ #: ../includes/class-galleries.php:284
369
+ msgid "Post Term"
370
+ msgstr ""
371
+
372
+ #: ../includes/class-galleries.php:286
373
+ msgid "Select the post taxonomy terms to query."
374
+ msgstr ""
375
+
376
+ #: ../includes/class-galleries.php:291
377
+ msgid "Post Author"
378
+ msgstr ""
379
+
380
+ #: ../includes/class-galleries.php:293
381
+ msgid "Select the post author."
382
+ msgstr ""
383
+
384
+ #: ../includes/class-galleries.php:298
385
+ msgid "Page Parent"
386
+ msgstr ""
387
+
388
+ #: ../includes/class-galleries.php:300
389
+ msgid "Select the post parent."
390
+ msgstr ""
391
+
392
+ #: ../includes/class-galleries.php:305
393
+ msgid "Page Template"
394
+ msgstr ""
395
+
396
+ #: ../includes/class-galleries.php:307
397
+ msgid "Select the page template."
398
+ msgstr ""
399
+
400
+ #: ../includes/class-galleries.php:328
401
+ msgid "Media Folder"
402
+ msgstr ""
403
+
404
+ #: ../includes/class-galleries.php:330
405
+ msgid "Select media folder."
406
+ msgstr ""
407
+
408
+ #: ../includes/class-galleries.php:355
409
+ msgid "Search string"
410
+ msgstr ""
411
+
412
+ #: ../includes/class-galleries.php:357
413
+ msgid "Enter the search phrase."
414
+ msgstr ""
415
+
416
+ #: ../includes/class-galleries.php:361 ../includes/class-settings.php:491
417
+ msgid "Media Providers"
418
+ msgstr ""
419
+
420
+ #: ../includes/class-galleries.php:363
421
+ msgid "Select which remote library should be used."
422
+ msgstr ""
423
+
424
+ #: ../includes/class-galleries.php:366
425
+ msgid "All Media Providers"
426
+ msgstr ""
427
+
428
+ #: ../includes/class-galleries.php:382
429
+ msgid "Thumbnail title"
430
+ msgstr ""
431
+
432
+ #: ../includes/class-galleries.php:384
433
+ msgid "Select title for the gallery thumbnails."
434
+ msgstr ""
435
+
436
+ #: ../includes/class-galleries.php:389
437
+ msgid "Thumbnail caption"
438
+ msgstr ""
439
+
440
+ #: ../includes/class-galleries.php:391
441
+ msgid "Select caption for the gallery thumbnails."
442
+ msgstr ""
443
+
444
+ #: ../includes/class-galleries.php:396
445
+ msgid "Thumbnail icon"
446
+ msgstr ""
447
+
448
+ #: ../includes/class-galleries.php:398
449
+ msgid "Select icon for the gallery thumbnails."
450
+ msgstr ""
451
+
452
+ #: ../includes/class-galleries.php:401 ../includes/class-galleries.php:420
453
+ #: ../includes/class-settings.php:100
454
+ msgid "none"
455
+ msgstr ""
456
+
457
+ #: ../includes/class-galleries.php:415
458
+ msgid "Hover effect"
459
+ msgstr ""
460
+
461
+ #: ../includes/class-galleries.php:417
462
+ msgid "Select thumbnail effect on hover."
463
+ msgstr ""
464
+
465
+ #: ../includes/class-galleries.php:421 ../includes/class-galleries.php:422
466
+ #: ../includes/class-galleries.php:423 ../includes/class-galleries.php:424
467
+ #: ../includes/class-galleries.php:425 ../includes/class-galleries.php:426
468
+ #: ../includes/class-galleries.php:427 ../includes/class-galleries.php:428
469
+ #: ../includes/class-galleries.php:429
470
+ #, php-format
471
+ msgid "Effect %s"
472
+ msgstr ""
473
+
474
+ #: ../includes/class-galleries.php:433
475
+ msgid "Title Color"
476
+ msgstr ""
477
+
478
+ #: ../includes/class-galleries.php:438
479
+ msgid "Caption Color"
480
+ msgstr ""
481
+
482
+ #: ../includes/class-galleries.php:443
483
+ msgid "Background Color"
484
+ msgstr ""
485
+
486
+ #: ../includes/class-galleries.php:448
487
+ msgid "Background Opacity"
488
+ msgstr ""
489
+
490
+ #: ../includes/class-galleries.php:457
491
+ msgid "Border Color"
492
+ msgstr ""
493
+
494
+ #: ../includes/class-galleries.php:462
495
+ msgid "Border Width"
496
+ msgstr ""
497
+
498
+ #: ../includes/class-galleries.php:475
499
+ msgid "Use pagination"
500
+ msgstr ""
501
+
502
+ #: ../includes/class-galleries.php:477
503
+ msgid "Enable pagination."
504
+ msgstr ""
505
+
506
+ #: ../includes/class-galleries.php:481
507
+ msgid "Pagination type"
508
+ msgstr ""
509
+
510
+ #: ../includes/class-galleries.php:483
511
+ msgid "Select pagination type."
512
+ msgstr ""
513
+
514
+ #: ../includes/class-galleries.php:486
515
+ msgid "standard"
516
+ msgstr ""
517
+
518
+ #: ../includes/class-galleries.php:487
519
+ msgid "AJAX"
520
+ msgstr ""
521
+
522
+ #: ../includes/class-galleries.php:488
523
+ msgid "infinite scroll"
524
+ msgstr ""
525
+
526
+ #: ../includes/class-galleries.php:492
527
+ msgid "Pagination position"
528
+ msgstr ""
529
+
530
+ #: ../includes/class-galleries.php:494
531
+ msgid "Select pagination position."
532
+ msgstr ""
533
+
534
+ #: ../includes/class-galleries.php:497
535
+ msgid "bottom"
536
+ msgstr ""
537
+
538
+ #: ../includes/class-galleries.php:498
539
+ msgid "top"
540
+ msgstr ""
541
+
542
+ #: ../includes/class-galleries.php:499
543
+ msgid "top & bottom"
544
+ msgstr ""
545
+
546
+ #: ../includes/class-galleries.php:503
547
+ msgid "Images per page"
548
+ msgstr ""
549
+
550
+ #: ../includes/class-galleries.php:505
551
+ msgid "Number of images per page."
552
+ msgstr ""
553
+
554
+ #: ../includes/class-galleries.php:511
555
+ msgid "Load More"
556
+ msgstr ""
557
+
558
+ #: ../includes/class-galleries.php:513
559
+ msgid "Select the load more trigger (infinite scroll only)."
560
+ msgstr ""
561
+
562
+ #: ../includes/class-galleries.php:516
563
+ msgid "Automatically"
564
+ msgstr ""
565
+
566
+ #: ../includes/class-galleries.php:517
567
+ msgid "On click"
568
+ msgstr ""
569
+
570
+ #: ../includes/class-galleries.php:525
571
+ msgid "Enable Lightbox"
572
+ msgstr ""
573
+
574
+ #: ../includes/class-galleries.php:527
575
+ msgid "Enable lightbox effect for the gallery."
576
+ msgstr ""
577
+
578
+ #: ../includes/class-galleries.php:531
579
+ msgid "Image Size"
580
+ msgstr ""
581
+
582
+ #: ../includes/class-galleries.php:533
583
+ msgid "Select image size for gallery lightbox."
584
+ msgstr ""
585
+
586
+ #: ../includes/class-galleries.php:540
587
+ msgid ""
588
+ "Choose the custom image size for gallery lightbox (used if Custom Image size "
589
+ "is selected)."
590
+ msgstr ""
591
+
592
+ #: ../includes/class-galleries.php:544
593
+ msgid "width in px"
594
+ msgstr ""
595
+
596
+ #: ../includes/class-galleries.php:549
597
+ msgid "height in px"
598
+ msgstr ""
599
+
600
+ #: ../includes/class-galleries.php:555 ../includes/class-settings.php:151
601
+ msgid "Image Title"
602
+ msgstr ""
603
+
604
+ #: ../includes/class-galleries.php:557
605
+ msgid "Select image title for gallery lightbox."
606
+ msgstr ""
607
+
608
+ #: ../includes/class-galleries.php:562 ../includes/class-settings.php:152
609
+ msgid "Image Caption"
610
+ msgstr ""
611
+
612
+ #: ../includes/class-galleries.php:564
613
+ msgid ""
614
+ "Select image caption for gallery lightbox (used if supported by selected "
615
+ "lightbox effect)."
616
+ msgstr ""
617
+
618
+ #: ../includes/class-galleries.php:573
619
+ msgid "Title Position"
620
+ msgstr ""
621
+
622
+ #: ../includes/class-galleries.php:575
623
+ msgid "Select where to display the title."
624
+ msgstr ""
625
+
626
+ #: ../includes/class-galleries.php:580
627
+ msgid "Description Position"
628
+ msgstr ""
629
+
630
+ #: ../includes/class-galleries.php:582
631
+ msgid "Select where to display the description."
632
+ msgstr ""
633
+
634
+ #: ../includes/class-galleries.php:587
635
+ msgid "Gallery Description"
636
+ msgstr ""
637
+
638
+ #: ../includes/class-galleries.php:589
639
+ msgid "Enter the gallery description (optional)."
640
+ msgstr ""
641
+
642
+ #: ../includes/class-galleries.php:594
643
+ msgid "Custom Classes"
644
+ msgstr ""
645
+
646
+ #: ../includes/class-galleries.php:596
647
+ msgid "Add custom, space saparated CSS classes (optional)."
648
+ msgstr ""
649
+
650
+ #: ../includes/class-galleries.php:625 ../includes/class-galleries.php:631
651
+ msgid "No gallery to duplicate has been supplied!"
652
+ msgstr ""
653
+
654
+ #: ../includes/class-galleries.php:634
655
+ msgid "You do not have permission to copy this gallery."
656
+ msgstr ""
657
+
658
+ #: ../includes/class-galleries.php:646
659
+ msgid "Copy creation failed, could not find original gallery:"
660
+ msgstr ""
661
+
662
+ #: ../includes/class-galleries.php:666
663
+ msgid "Duplicate"
664
+ msgstr ""
665
+
666
+ #: ../includes/class-galleries.php:947
667
+ msgid "Add Gallery"
668
+ msgstr ""
669
+
670
+ #: ../includes/class-galleries.php:1011 ../includes/class-galleries.php:1012
671
+ msgid "All categories"
672
+ msgstr ""
673
+
674
+ #: ../includes/class-galleries.php:1031 ../includes/class-tour.php:255
675
+ msgid "Close"
676
+ msgstr ""
677
+
678
+ #: ../includes/class-galleries.php:1035
679
+ msgid "Insert Gallery"
680
+ msgstr ""
681
+
682
+ #: ../includes/class-galleries.php:1035
683
+ msgid "Reload"
684
+ msgstr ""
685
+
686
+ #: ../includes/class-galleries.php:1050
687
+ msgid "Search galleries"
688
+ msgstr ""
689
+
690
+ #: ../includes/class-galleries.php:1056
691
+ msgid "Select A Gallery"
692
+ msgstr ""
693
+
694
+ #: ../includes/class-galleries.php:1057
695
+ msgid "To select a gallery simply click on one of the boxes to the left."
696
+ msgstr ""
697
+
698
+ #: ../includes/class-galleries.php:1058
699
+ msgid ""
700
+ "To insert your gallery into the editor, click on the \"Insert Gallery\" "
701
+ "button below."
702
+ msgstr ""
703
+
704
+ #: ../includes/class-galleries.php:1068 ../responsive-lightbox.php:1287
705
+ msgid "Edit gallery"
706
+ msgstr ""
707
+
708
+ #: ../includes/class-galleries.php:1078
709
+ msgid "Insert gallery into post"
710
+ msgstr ""
711
+
712
+ #: ../includes/class-galleries.php:1079
713
+ msgid "Select gallery"
714
+ msgstr ""
715
+
716
+ #: ../includes/class-galleries.php:1080 ../responsive-lightbox.php:976
717
+ msgid "Cancel"
718
+ msgstr ""
719
+
720
+ #: ../includes/class-galleries.php:1295 ../includes/class-widgets.php:140
721
+ #: ../responsive-lightbox.php:1611 ../responsive-lightbox.php:1735
722
+ msgid "Select images"
723
+ msgstr ""
724
+
725
+ #: ../includes/class-galleries.php:1331
726
+ msgid "Update preview"
727
+ msgstr ""
728
+
729
+ #: ../includes/class-galleries.php:1423
730
+ msgid "First page"
731
+ msgstr ""
732
+
733
+ #: ../includes/class-galleries.php:1434
734
+ msgid "Previous page"
735
+ msgstr ""
736
+
737
+ #: ../includes/class-galleries.php:1441
738
+ msgid "Current Page"
739
+ msgstr ""
740
+
741
+ #: ../includes/class-galleries.php:1456
742
+ msgid "Next page"
743
+ msgstr ""
744
+
745
+ #: ../includes/class-galleries.php:1467
746
+ msgid "Last page"
747
+ msgstr ""
748
+
749
+ #: ../includes/class-galleries.php:1838
750
+ #, php-format
751
+ msgid "Gallery %s"
752
+ msgstr ""
753
+
754
+ #: ../includes/class-galleries.php:1842
755
+ msgid "Gallery Code"
756
+ msgstr ""
757
+
758
+ #: ../includes/class-galleries.php:1881
759
+ msgid "Remote Library is disabled. Enable it in the settings."
760
+ msgstr ""
761
+
762
+ #: ../includes/class-galleries.php:1885
763
+ msgid "Media Folders are disabled. Enable it in the settings."
764
+ msgstr ""
765
+
766
+ #: ../includes/class-galleries.php:1987
767
+ msgid "No data"
768
+ msgstr ""
769
+
770
+ #: ../includes/class-galleries.php:2501
771
+ msgid "&laquo; Previous"
772
+ msgstr ""
773
+
774
+ #: ../includes/class-galleries.php:2502
775
+ msgid "Next &raquo;"
776
+ msgstr ""
777
+
778
+ #: ../includes/class-galleries.php:2632
779
+ msgid "(no title)"
780
+ msgstr ""
781
+
782
+ #: ../includes/class-galleries.php:2646
783
+ msgid "Deselect"
784
+ msgstr ""
785
+
786
+ #: ../includes/class-galleries.php:3551
787
+ msgid "Untitled"
788
+ msgstr ""
789
+
790
+ #: ../includes/class-galleries.php:3632
791
+ msgid "Aside"
792
+ msgstr ""
793
+
794
+ #: ../includes/class-galleries.php:3633
795
+ msgid "Audio"
796
+ msgstr ""
797
+
798
+ #: ../includes/class-galleries.php:3634
799
+ msgid "Chat"
800
+ msgstr ""
801
+
802
+ #: ../includes/class-galleries.php:3635 ../includes/class-galleries.php:3937
803
+ #: ../includes/class-widgets.php:57 ../includes/class-widgets.php:65
804
+ #: ../responsive-lightbox.php:1162
805
+ msgid "Gallery"
806
+ msgstr ""
807
+
808
+ #: ../includes/class-galleries.php:3636
809
+ msgid "Link"
810
+ msgstr ""
811
+
812
+ #: ../includes/class-galleries.php:3637
813
+ msgid "Photo"
814
+ msgstr ""
815
+
816
+ #: ../includes/class-galleries.php:3638
817
+ msgid "Quote"
818
+ msgstr ""
819
+
820
+ #: ../includes/class-galleries.php:3639
821
+ msgid "Standard"
822
+ msgstr ""
823
+
824
+ #: ../includes/class-galleries.php:3641
825
+ msgid "Video"
826
+ msgstr ""
827
+
828
+ #: ../includes/class-galleries.php:3742
829
+ msgid "Default Template"
830
+ msgstr ""
831
+
832
+ #: ../includes/class-galleries.php:3917
833
+ msgid ""
834
+ "You can place this gallery anywhere into your posts, pages, custom post "
835
+ "types or widgets by using the shortcode below"
836
+ msgstr ""
837
+
838
+ #: ../includes/class-galleries.php:3919
839
+ msgid ""
840
+ "You can also place this gallery into your template files by using the "
841
+ "template tag below"
842
+ msgstr ""
843
+
844
+ #: ../includes/class-galleries.php:3946
845
+ msgid "Shortcode"
846
+ msgstr ""
847
+
848
+ #: ../includes/class-galleries.php:3947
849
+ msgid "Type"
850
+ msgstr ""
851
+
852
+ #: ../includes/class-galleries.php:3948
853
+ msgid "Source"
854
+ msgstr ""
855
+
856
+ #: ../includes/class-galleries.php:4072
857
+ msgid "Select gallery featured image source:"
858
+ msgstr ""
859
+
860
+ #: ../includes/class-galleries.php:4073
861
+ msgid "First gallery image"
862
+ msgstr ""
863
+
864
+ #: ../includes/class-galleries.php:4075 ../includes/class-widgets.php:343
865
+ msgid "Custom URL"
866
+ msgstr ""
867
+
868
+ #: ../includes/class-galleries.php:4081
869
+ msgid "Custom featured image URL"
870
+ msgstr ""
871
+
872
+ #: ../includes/class-galleries.php:4083
873
+ msgid "Dynamically generated first gallery image"
874
+ msgstr ""
875
+
876
+ #: ../includes/class-remote-library-api.php:145
877
+ msgid "Request error"
878
+ msgstr ""
879
+
880
+ #: ../includes/class-remote-library-api.php:194
881
+ #, php-format
882
+ msgid "Image from %s"
883
+ msgstr ""
884
+
885
+ #: ../includes/class-remote-library-api.php:196
886
+ #, php-format
887
+ msgid "Image from <a href=\"%s\" target=\"_blank\">%s</a>"
888
+ msgstr ""
889
+
890
+ #: ../includes/class-remote-library-api.php:201
891
+ #, php-format
892
+ msgid "via %s"
893
+ msgstr ""
894
+
895
+ #: ../includes/class-remote-library-api.php:203
896
+ #, php-format
897
+ msgid "via <a href=\"%s\" target=\"_blank\">%s</a>"
898
+ msgstr ""
899
+
900
+ #: ../includes/class-remote-library.php:165
901
+ msgid "All providers"
902
+ msgstr ""
903
+
904
+ #: ../includes/class-remote-library.php:166
905
+ msgid "Upload and Insert"
906
+ msgstr ""
907
+
908
+ #: ../includes/class-remote-library.php:167
909
+ msgid "Upload and Select"
910
+ msgstr ""
911
+
912
+ #: ../includes/class-remote-library.php:168
913
+ msgid "Filter by remote library"
914
+ msgstr ""
915
+
916
+ #: ../includes/class-remote-library.php:345
917
+ msgid "F j Y"
918
+ msgstr ""
919
+
920
+ #: ../includes/class-settings.php:64
921
+ msgid "SwipeBox"
922
+ msgstr ""
923
+
924
+ #: ../includes/class-settings.php:66
925
+ msgid "CSS"
926
+ msgstr ""
927
+
928
+ #: ../includes/class-settings.php:67
929
+ msgid "jQuery"
930
+ msgstr ""
931
+
932
+ #: ../includes/class-settings.php:72
933
+ msgid "prettyPhoto"
934
+ msgstr ""
935
+
936
+ #: ../includes/class-settings.php:74
937
+ msgid "slow"
938
+ msgstr ""
939
+
940
+ #: ../includes/class-settings.php:75
941
+ msgid "normal"
942
+ msgstr ""
943
+
944
+ #: ../includes/class-settings.php:76
945
+ msgid "fast"
946
+ msgstr ""
947
+
948
+ #: ../includes/class-settings.php:79
949
+ msgid "default"
950
+ msgstr ""
951
+
952
+ #: ../includes/class-settings.php:80
953
+ msgid "light rounded"
954
+ msgstr ""
955
+
956
+ #: ../includes/class-settings.php:81
957
+ msgid "dark rounded"
958
+ msgstr ""
959
+
960
+ #: ../includes/class-settings.php:82
961
+ msgid "light square"
962
+ msgstr ""
963
+
964
+ #: ../includes/class-settings.php:83
965
+ msgid "dark square"
966
+ msgstr ""
967
+
968
+ #: ../includes/class-settings.php:84
969
+ msgid "facebook"
970
+ msgstr ""
971
+
972
+ #: ../includes/class-settings.php:87
973
+ msgid "window"
974
+ msgstr ""
975
+
976
+ #: ../includes/class-settings.php:88
977
+ msgid "transparent"
978
+ msgstr ""
979
+
980
+ #: ../includes/class-settings.php:89
981
+ msgid "opaque"
982
+ msgstr ""
983
+
984
+ #: ../includes/class-settings.php:90
985
+ msgid "direct"
986
+ msgstr ""
987
+
988
+ #: ../includes/class-settings.php:91
989
+ msgid "gpu"
990
+ msgstr ""
991
+
992
+ #: ../includes/class-settings.php:96
993
+ msgid "FancyBox"
994
+ msgstr ""
995
+
996
+ #: ../includes/class-settings.php:98
997
+ msgid "elastic"
998
+ msgstr ""
999
+
1000
+ #: ../includes/class-settings.php:99 ../includes/class-settings.php:121
1001
+ #: ../includes/class-settings.php:1580
1002
+ msgid "fade"
1003
+ msgstr ""
1004
+
1005
+ #: ../includes/class-settings.php:103
1006
+ msgid "auto"
1007
+ msgstr ""
1008
+
1009
+ #: ../includes/class-settings.php:104
1010
+ msgid "yes"
1011
+ msgstr ""
1012
+
1013
+ #: ../includes/class-settings.php:105
1014
+ msgid "no"
1015
+ msgstr ""
1016
+
1017
+ #: ../includes/class-settings.php:108
1018
+ msgid "swing"
1019
+ msgstr ""
1020
+
1021
+ #: ../includes/class-settings.php:109
1022
+ msgid "linear"
1023
+ msgstr ""
1024
+
1025
+ #: ../includes/class-settings.php:112
1026
+ msgid "outside"
1027
+ msgstr ""
1028
+
1029
+ #: ../includes/class-settings.php:113
1030
+ msgid "inside"
1031
+ msgstr ""
1032
+
1033
+ #: ../includes/class-settings.php:114
1034
+ msgid "over"
1035
+ msgstr ""
1036
+
1037
+ #: ../includes/class-settings.php:119
1038
+ msgid "Nivo Lightbox"
1039
+ msgstr ""
1040
+
1041
+ #: ../includes/class-settings.php:122
1042
+ msgid "fade scale"
1043
+ msgstr ""
1044
+
1045
+ #: ../includes/class-settings.php:123
1046
+ msgid "slide left"
1047
+ msgstr ""
1048
+
1049
+ #: ../includes/class-settings.php:124
1050
+ msgid "slide right"
1051
+ msgstr ""
1052
+
1053
+ #: ../includes/class-settings.php:125
1054
+ msgid "slide up"
1055
+ msgstr ""
1056
+
1057
+ #: ../includes/class-settings.php:126
1058
+ msgid "slide down"
1059
+ msgstr ""
1060
+
1061
+ #: ../includes/class-settings.php:127
1062
+ msgid "fall"
1063
+ msgstr ""
1064
+
1065
+ #: ../includes/class-settings.php:132
1066
+ msgid "Image Lightbox"
1067
+ msgstr ""
1068
+
1069
+ #: ../includes/class-settings.php:136
1070
+ msgid "TosRUs"
1071
+ msgstr ""
1072
+
1073
+ #: ../includes/class-settings.php:140
1074
+ msgid "Featherlight"
1075
+ msgstr ""
1076
+
1077
+ #: ../includes/class-settings.php:144
1078
+ msgid "Magnific Popup"
1079
+ msgstr ""
1080
+
1081
+ #: ../includes/class-settings.php:153
1082
+ msgid "Image Alt Text"
1083
+ msgstr ""
1084
+
1085
+ #: ../includes/class-settings.php:154
1086
+ msgid "Image Description"
1087
+ msgstr ""
1088
+
1089
+ #: ../includes/class-settings.php:164
1090
+ msgid "Thumbnail"
1091
+ msgstr ""
1092
+
1093
+ #: ../includes/class-settings.php:165
1094
+ msgid "Medium"
1095
+ msgstr ""
1096
+
1097
+ #: ../includes/class-settings.php:166
1098
+ msgid "Large"
1099
+ msgstr ""
1100
+
1101
+ #: ../includes/class-settings.php:167
1102
+ msgid "Full Size"
1103
+ msgstr ""
1104
+
1105
+ #: ../includes/class-settings.php:181 ../includes/class-tour.php:151
1106
+ msgid "General Settings"
1107
+ msgstr ""
1108
+
1109
+ #: ../includes/class-settings.php:187
1110
+ msgid "Introduction Tour"
1111
+ msgstr ""
1112
+
1113
+ #: ../includes/class-settings.php:190 ../includes/class-welcome.php:68
1114
+ msgid "Start Tour"
1115
+ msgstr ""
1116
+
1117
+ #: ../includes/class-settings.php:191
1118
+ msgid "Take this tour to quickly learn about the use of this plugin."
1119
+ msgstr ""
1120
+
1121
+ #: ../includes/class-settings.php:195
1122
+ msgid "Default lightbox"
1123
+ msgstr ""
1124
+
1125
+ #: ../includes/class-settings.php:199
1126
+ #, php-format
1127
+ msgid ""
1128
+ "Select your preferred ligthbox effect script or get our <a href=\"%s"
1129
+ "\">premium extensions</a>."
1130
+ msgstr ""
1131
+
1132
+ #: ../includes/class-settings.php:203
1133
+ msgid "Selector"
1134
+ msgstr ""
1135
+
1136
+ #: ../includes/class-settings.php:206
1137
+ msgid "Enter the rel selector lightbox effect will be applied to."
1138
+ msgstr ""
1139
+
1140
+ #: ../includes/class-settings.php:212
1141
+ msgid "Enable lightbox for WordPress image links."
1142
+ msgstr ""
1143
+
1144
+ #: ../includes/class-settings.php:215
1145
+ msgid "Single image title"
1146
+ msgstr ""
1147
+
1148
+ #: ../includes/class-settings.php:218
1149
+ msgid "Select title for single images."
1150
+ msgstr ""
1151
+
1152
+ #: ../includes/class-settings.php:222
1153
+ msgid "Single image caption"
1154
+ msgstr ""
1155
+
1156
+ #: ../includes/class-settings.php:225
1157
+ msgid ""
1158
+ "Select caption for single images (if supported by selected lightbox and/or "
1159
+ "gallery)."
1160
+ msgstr ""
1161
+
1162
+ #: ../includes/class-settings.php:229
1163
+ msgid "Single images as gallery"
1164
+ msgstr ""
1165
+
1166
+ #: ../includes/class-settings.php:232
1167
+ msgid "Display single post images as a gallery."
1168
+ msgstr ""
1169
+
1170
+ #: ../includes/class-settings.php:235 ../includes/class-settings.php:997
1171
+ #: ../responsive-lightbox.php:1276 ../responsive-lightbox.php:1282
1172
+ #: ../responsive-lightbox.php:1293 ../responsive-lightbox.php:1304
1173
+ msgid "Galleries"
1174
+ msgstr ""
1175
+
1176
+ #: ../includes/class-settings.php:238
1177
+ msgid "Enable lightbox for WordPress image galleries."
1178
+ msgstr ""
1179
+
1180
+ #: ../includes/class-settings.php:241
1181
+ msgid "WordPress gallery"
1182
+ msgstr ""
1183
+
1184
+ #: ../includes/class-settings.php:244
1185
+ msgid "Select your preferred default WordPress gallery style."
1186
+ msgstr ""
1187
+
1188
+ #: ../includes/class-settings.php:248
1189
+ msgid "Builder gallery"
1190
+ msgstr ""
1191
+
1192
+ #: ../includes/class-settings.php:251
1193
+ msgid "Select your preferred default builder gallery style."
1194
+ msgstr ""
1195
+
1196
+ #: ../includes/class-settings.php:255
1197
+ msgid "WooCommerce gallery"
1198
+ msgstr ""
1199
+
1200
+ #: ../includes/class-settings.php:259
1201
+ msgid "Select your preferred gallery style for WooCommerce product gallery."
1202
+ msgstr ""
1203
+
1204
+ #: ../includes/class-settings.php:263
1205
+ msgid "Gallery image size"
1206
+ msgstr ""
1207
+
1208
+ #: ../includes/class-settings.php:266
1209
+ msgid "Select image size for gallery image links."
1210
+ msgstr ""
1211
+
1212
+ #: ../includes/class-settings.php:270
1213
+ msgid "Gallery image title"
1214
+ msgstr ""
1215
+
1216
+ #: ../includes/class-settings.php:273
1217
+ msgid "Select title for the gallery images."
1218
+ msgstr ""
1219
+
1220
+ #: ../includes/class-settings.php:277
1221
+ msgid "Gallery image caption"
1222
+ msgstr ""
1223
+
1224
+ #: ../includes/class-settings.php:280
1225
+ msgid ""
1226
+ "Select caption for the gallery images (if supported by selected lightbox and/"
1227
+ "or gallery)."
1228
+ msgstr ""
1229
+
1230
+ #: ../includes/class-settings.php:284
1231
+ msgid "Videos"
1232
+ msgstr ""
1233
+
1234
+ #: ../includes/class-settings.php:287
1235
+ msgid "Enable lightbox for YouTube and Vimeo video links."
1236
+ msgstr ""
1237
+
1238
+ #: ../includes/class-settings.php:290
1239
+ msgid "Widgets"
1240
+ msgstr ""
1241
+
1242
+ #: ../includes/class-settings.php:293
1243
+ msgid "Enable lightbox for widgets content."
1244
+ msgstr ""
1245
+
1246
+ #: ../includes/class-settings.php:296
1247
+ msgid "Comments"
1248
+ msgstr ""
1249
+
1250
+ #: ../includes/class-settings.php:299
1251
+ msgid "Enable lightbox for comments content."
1252
+ msgstr ""
1253
+
1254
+ #: ../includes/class-settings.php:302
1255
+ msgid "Force lightbox"
1256
+ msgstr ""
1257
+
1258
+ #: ../includes/class-settings.php:305
1259
+ msgid ""
1260
+ "Try to force lightbox for custom WP gallery replacements, like Jetpack or "
1261
+ "Visual Composer galleries."
1262
+ msgstr ""
1263
+
1264
+ #: ../includes/class-settings.php:308
1265
+ msgid "WooCommerce lightbox"
1266
+ msgstr ""
1267
+
1268
+ #: ../includes/class-settings.php:311
1269
+ msgid "Replace WooCommerce product gallery lightbox."
1270
+ msgstr ""
1271
+
1272
+ #: ../includes/class-settings.php:315
1273
+ msgid "Custom events"
1274
+ msgstr ""
1275
+
1276
+ #: ../includes/class-settings.php:321
1277
+ msgid "Enable triggering lightbox on custom jQuery events."
1278
+ msgstr ""
1279
+
1280
+ #: ../includes/class-settings.php:325
1281
+ msgid "Enter a space separated list of events."
1282
+ msgstr ""
1283
+
1284
+ #: ../includes/class-settings.php:330
1285
+ msgid "Loading place"
1286
+ msgstr ""
1287
+
1288
+ #: ../includes/class-settings.php:333
1289
+ msgid "Select where all the lightbox scripts should be placed."
1290
+ msgstr ""
1291
+
1292
+ #: ../includes/class-settings.php:335
1293
+ msgid "Header"
1294
+ msgstr ""
1295
+
1296
+ #: ../includes/class-settings.php:336
1297
+ msgid "Footer"
1298
+ msgstr ""
1299
+
1300
+ #: ../includes/class-settings.php:340
1301
+ msgid "Conditional loading"
1302
+ msgstr ""
1303
+
1304
+ #: ../includes/class-settings.php:343
1305
+ msgid ""
1306
+ "Enable to load scripts and styles only on pages that have images or "
1307
+ "galleries in post content."
1308
+ msgstr ""
1309
+
1310
+ #: ../includes/class-settings.php:346
1311
+ msgid "Delete data"
1312
+ msgstr ""
1313
+
1314
+ #: ../includes/class-settings.php:349
1315
+ msgid "Delete all plugin settings on deactivation."
1316
+ msgstr ""
1317
+
1318
+ #: ../includes/class-settings.php:350
1319
+ msgid ""
1320
+ "Enable this to delete all plugin settings and also delete all plugin "
1321
+ "capabilities from all users on deactivation."
1322
+ msgstr ""
1323
+
1324
+ #: ../includes/class-settings.php:359
1325
+ msgid "Gallery Builder Settings"
1326
+ msgstr ""
1327
+
1328
+ #: ../includes/class-settings.php:365 ../includes/class-tour.php:102
1329
+ msgid "Gallery Builder"
1330
+ msgstr ""
1331
+
1332
+ #: ../includes/class-settings.php:368
1333
+ msgid "Enable advanced gallery builder."
1334
+ msgstr ""
1335
+
1336
+ #: ../includes/class-settings.php:371 ../responsive-lightbox.php:1077
1337
+ #: ../responsive-lightbox.php:1313 ../responsive-lightbox.php:1324
1338
+ msgid "Categories"
1339
+ msgstr ""
1340
+
1341
+ #: ../includes/class-settings.php:374
1342
+ msgid "Enable Gallery Categories."
1343
+ msgstr ""
1344
+
1345
+ #: ../includes/class-settings.php:375
1346
+ msgid "Enable if you want to use Gallery Categories."
1347
+ msgstr ""
1348
+
1349
+ #: ../includes/class-settings.php:378 ../responsive-lightbox.php:1123
1350
+ #: ../responsive-lightbox.php:1333 ../responsive-lightbox.php:1344
1351
+ msgid "Tags"
1352
+ msgstr ""
1353
+
1354
+ #: ../includes/class-settings.php:381
1355
+ msgid "Enable Gallery Tags."
1356
+ msgstr ""
1357
+
1358
+ #: ../includes/class-settings.php:382
1359
+ msgid "Enable if you want to use Gallery Tags."
1360
+ msgstr ""
1361
+
1362
+ #: ../includes/class-settings.php:385
1363
+ msgid "Gallery Permalink"
1364
+ msgstr ""
1365
+
1366
+ #: ../includes/class-settings.php:388
1367
+ msgid "Enter gallery page slug."
1368
+ msgstr ""
1369
+
1370
+ #: ../includes/class-settings.php:391
1371
+ msgid "Categories Permalink"
1372
+ msgstr ""
1373
+
1374
+ #: ../includes/class-settings.php:394
1375
+ msgid "Enter gallery categories archive page slug."
1376
+ msgstr ""
1377
+
1378
+ #: ../includes/class-settings.php:397
1379
+ msgid "Tags Permalink"
1380
+ msgstr ""
1381
+
1382
+ #: ../includes/class-settings.php:400
1383
+ msgid "Enter gallery tags archive page slug."
1384
+ msgstr ""
1385
+
1386
+ #: ../includes/class-settings.php:403
1387
+ msgid "Archives"
1388
+ msgstr ""
1389
+
1390
+ #: ../includes/class-settings.php:406
1391
+ msgid "Enable gallery archives."
1392
+ msgstr ""
1393
+
1394
+ #: ../includes/class-settings.php:409
1395
+ msgid "Archives category"
1396
+ msgstr ""
1397
+
1398
+ #: ../includes/class-settings.php:412
1399
+ msgid "Select category for gallery archives."
1400
+ msgstr ""
1401
+
1402
+ #: ../includes/class-settings.php:414 ../includes/class-settings.php:673
1403
+ msgid "All"
1404
+ msgstr ""
1405
+
1406
+ #: ../includes/class-settings.php:424 ../includes/class-tour.php:196
1407
+ msgid "Folders Settings"
1408
+ msgstr ""
1409
+
1410
+ #: ../includes/class-settings.php:430 ../includes/class-settings.php:441
1411
+ #: ../includes/class-settings.php:1014
1412
+ msgid "Folders"
1413
+ msgstr ""
1414
+
1415
+ #: ../includes/class-settings.php:433
1416
+ msgid "Enable media folders."
1417
+ msgstr ""
1418
+
1419
+ #: ../includes/class-settings.php:436
1420
+ msgid "Media taxonomy"
1421
+ msgstr ""
1422
+
1423
+ #: ../includes/class-settings.php:439
1424
+ msgid "Select media taxonomy."
1425
+ msgstr ""
1426
+
1427
+ #: ../includes/class-settings.php:439
1428
+ msgid ""
1429
+ "If you have ever used custom media taxonomies you may try to <a id="
1430
+ "\"rl_folders_load_old_taxonomies\" href=\"#\">load and use them.</a>"
1431
+ msgstr ""
1432
+
1433
+ #: ../includes/class-settings.php:444
1434
+ msgid "Media tags"
1435
+ msgstr ""
1436
+
1437
+ #: ../includes/class-settings.php:447
1438
+ msgid "Enable media tags."
1439
+ msgstr ""
1440
+
1441
+ #: ../includes/class-settings.php:448
1442
+ msgid "Enable if you want to use media tags."
1443
+ msgstr ""
1444
+
1445
+ #: ../includes/class-settings.php:451
1446
+ msgid "Show in menu"
1447
+ msgstr ""
1448
+
1449
+ #: ../includes/class-settings.php:454
1450
+ msgid "Enable to show the taxonomy in the admin menu."
1451
+ msgstr ""
1452
+
1453
+ #: ../includes/class-settings.php:457
1454
+ msgid "Subfolder removal"
1455
+ msgstr ""
1456
+
1457
+ #: ../includes/class-settings.php:460
1458
+ msgid "Select to remove subfolders when parent folder is deleted."
1459
+ msgstr ""
1460
+
1461
+ #: ../includes/class-settings.php:476
1462
+ msgid "Whole row"
1463
+ msgstr ""
1464
+
1465
+ #: ../includes/class-settings.php:479
1466
+ msgid "Enable to highlight folder's row as a clickable area."
1467
+ msgstr ""
1468
+
1469
+ #: ../includes/class-settings.php:488 ../includes/class-tour.php:214
1470
+ msgid "Remote Library Settings"
1471
+ msgstr ""
1472
+
1473
+ #: ../includes/class-settings.php:502
1474
+ msgid "Enable remote libraries."
1475
+ msgstr ""
1476
+
1477
+ #: ../includes/class-settings.php:503
1478
+ msgid "Check this to enable remote access to the following image libraries."
1479
+ msgstr ""
1480
+
1481
+ #: ../includes/class-settings.php:506
1482
+ msgid "Caching"
1483
+ msgstr ""
1484
+
1485
+ #: ../includes/class-settings.php:509
1486
+ msgid "Enable remote library requests caching."
1487
+ msgstr ""
1488
+
1489
+ #: ../includes/class-settings.php:512
1490
+ msgid "Cache expiry"
1491
+ msgstr ""
1492
+
1493
+ #: ../includes/class-settings.php:516
1494
+ msgid "Enter the cache expiry time."
1495
+ msgstr ""
1496
+
1497
+ #: ../includes/class-settings.php:517
1498
+ msgid "hour(s)"
1499
+ msgstr ""
1500
+
1501
+ #: ../includes/class-settings.php:526 ../includes/class-settings.php:1062
1502
+ #, php-format
1503
+ msgid "%s Settings"
1504
+ msgstr ""
1505
+
1506
+ #: ../includes/class-settings.php:538 ../includes/class-tour.php:205
1507
+ msgid "Capabilities Settings"
1508
+ msgstr ""
1509
+
1510
+ #: ../includes/class-settings.php:548 ../includes/class-settings.php:1021
1511
+ msgid "Capabilities"
1512
+ msgstr ""
1513
+
1514
+ #: ../includes/class-settings.php:551
1515
+ msgid "Enable advanced capability management."
1516
+ msgstr ""
1517
+
1518
+ #: ../includes/class-settings.php:552
1519
+ msgid "Check this to enable access to plugin features for selected user roles."
1520
+ msgstr ""
1521
+
1522
+ #: ../includes/class-settings.php:561
1523
+ msgid "Basic Grid Gallery Settings"
1524
+ msgstr ""
1525
+
1526
+ #: ../includes/class-settings.php:567 ../includes/class-settings.php:843
1527
+ msgid "Screen sizes"
1528
+ msgstr ""
1529
+
1530
+ #: ../includes/class-settings.php:570 ../includes/class-settings.php:846
1531
+ msgid ""
1532
+ "Number of columns in a gallery depending on the device screen size. (if "
1533
+ "greater than 0 overrides the Columns option)"
1534
+ msgstr ""
1535
+
1536
+ #: ../includes/class-settings.php:576 ../includes/class-settings.php:853
1537
+ msgid "large devices / desktops (&ge;1200px)"
1538
+ msgstr ""
1539
+
1540
+ #: ../includes/class-settings.php:582 ../includes/class-settings.php:860
1541
+ msgid "medium devices / desktops (&ge;992px)"
1542
+ msgstr ""
1543
+
1544
+ #: ../includes/class-settings.php:588 ../includes/class-settings.php:867
1545
+ msgid "small devices / tablets (&ge;768px)"
1546
+ msgstr ""
1547
+
1548
+ #: ../includes/class-settings.php:594 ../includes/class-settings.php:874
1549
+ msgid "extra small devices / phones (<768px)"
1550
+ msgstr ""
1551
+
1552
+ #: ../includes/class-settings.php:599 ../includes/class-settings.php:879
1553
+ msgid "Gutter"
1554
+ msgstr ""
1555
+
1556
+ #: ../includes/class-settings.php:603
1557
+ msgid "Set the pixel width between the columns and rows."
1558
+ msgstr ""
1559
+
1560
+ #: ../includes/class-settings.php:607
1561
+ msgid "Force height"
1562
+ msgstr ""
1563
+
1564
+ #: ../includes/class-settings.php:610
1565
+ msgid "Enable to force the thumbnail row height."
1566
+ msgstr ""
1567
+
1568
+ #: ../includes/class-settings.php:613
1569
+ msgid "Row height"
1570
+ msgstr ""
1571
+
1572
+ #: ../includes/class-settings.php:617
1573
+ msgid ""
1574
+ "Enter the thumbnail row height in pixels (used if Force height is enabled). "
1575
+ "Defaults to 150px."
1576
+ msgstr ""
1577
+
1578
+ #: ../includes/class-settings.php:627
1579
+ msgid "Basic Slider Gallery Settings"
1580
+ msgstr ""
1581
+
1582
+ #: ../includes/class-settings.php:633
1583
+ msgid "Adaptive Height"
1584
+ msgstr ""
1585
+
1586
+ #: ../includes/class-settings.php:636
1587
+ msgid ""
1588
+ "The slider height should change on the fly according to the current slide."
1589
+ msgstr ""
1590
+
1591
+ #: ../includes/class-settings.php:639
1592
+ msgid "Loop"
1593
+ msgstr ""
1594
+
1595
+ #: ../includes/class-settings.php:642
1596
+ msgid ""
1597
+ "Whether the slider should loop (i.e. the first slide goes to the last, the "
1598
+ "last slide goes to the first)."
1599
+ msgstr ""
1600
+
1601
+ #: ../includes/class-settings.php:645
1602
+ msgid "Captions Position"
1603
+ msgstr ""
1604
+
1605
+ #: ../includes/class-settings.php:648
1606
+ msgid "Specifies the position of captions or no captions at all."
1607
+ msgstr ""
1608
+
1609
+ #: ../includes/class-settings.php:651
1610
+ msgid "Overlay"
1611
+ msgstr ""
1612
+
1613
+ #: ../includes/class-settings.php:652
1614
+ msgid "Below"
1615
+ msgstr ""
1616
+
1617
+ #: ../includes/class-settings.php:656
1618
+ msgid "Single Image Slider"
1619
+ msgstr ""
1620
+
1621
+ #: ../includes/class-settings.php:659
1622
+ msgid ""
1623
+ "Whether the slider should initialize even if there is only one slide element."
1624
+ msgstr ""
1625
+
1626
+ #: ../includes/class-settings.php:662
1627
+ msgid "Responsive"
1628
+ msgstr ""
1629
+
1630
+ #: ../includes/class-settings.php:665
1631
+ msgid "Whether the slider should be responsive."
1632
+ msgstr ""
1633
+
1634
+ #: ../includes/class-settings.php:668
1635
+ msgid "Preload"
1636
+ msgstr ""
1637
+
1638
+ #: ../includes/class-settings.php:671
1639
+ msgid "Elements that are preloaded before slider shows."
1640
+ msgstr ""
1641
+
1642
+ #: ../includes/class-settings.php:674
1643
+ msgid "Only visible"
1644
+ msgstr ""
1645
+
1646
+ #: ../includes/class-settings.php:678
1647
+ msgid "Pager"
1648
+ msgstr ""
1649
+
1650
+ #: ../includes/class-settings.php:681
1651
+ msgid "Whether the slider should have a pager."
1652
+ msgstr ""
1653
+
1654
+ #: ../includes/class-settings.php:684
1655
+ msgid "Controls"
1656
+ msgstr ""
1657
+
1658
+ #: ../includes/class-settings.php:687
1659
+ msgid "Whether the slider should have controls (next, previous arrows)."
1660
+ msgstr ""
1661
+
1662
+ #: ../includes/class-settings.php:690
1663
+ msgid "Hide Controls on End"
1664
+ msgstr ""
1665
+
1666
+ #: ../includes/class-settings.php:693
1667
+ msgid ""
1668
+ "Hide the previous or next control when it reaches the first or last slide "
1669
+ "respectively."
1670
+ msgstr ""
1671
+
1672
+ #: ../includes/class-settings.php:696
1673
+ msgid "Slide Margin"
1674
+ msgstr ""
1675
+
1676
+ #: ../includes/class-settings.php:700
1677
+ msgid "The spacing between slides."
1678
+ msgstr ""
1679
+
1680
+ #: ../includes/class-settings.php:704
1681
+ msgid "Transition"
1682
+ msgstr ""
1683
+
1684
+ #: ../includes/class-settings.php:707
1685
+ msgid "Transition type to use, or no transitions."
1686
+ msgstr ""
1687
+
1688
+ #: ../includes/class-settings.php:710
1689
+ msgid "Fade"
1690
+ msgstr ""
1691
+
1692
+ #: ../includes/class-settings.php:711
1693
+ msgid "Horizontal"
1694
+ msgstr ""
1695
+
1696
+ #: ../includes/class-settings.php:712
1697
+ msgid "Vertical"
1698
+ msgstr ""
1699
+
1700
+ #: ../includes/class-settings.php:713
1701
+ msgid "Ken Burns"
1702
+ msgstr ""
1703
+
1704
+ #: ../includes/class-settings.php:717
1705
+ msgid "Ken Burns Zoom"
1706
+ msgstr ""
1707
+
1708
+ #: ../includes/class-settings.php:721
1709
+ msgid "Max zoom level use for the Ken Burns transition."
1710
+ msgstr ""
1711
+
1712
+ #: ../includes/class-settings.php:725
1713
+ msgid "Transition Speed"
1714
+ msgstr ""
1715
+
1716
+ #: ../includes/class-settings.php:729
1717
+ msgid "The time the transition takes to complete."
1718
+ msgstr ""
1719
+
1720
+ #: ../includes/class-settings.php:733
1721
+ msgid "Easing Effect"
1722
+ msgstr ""
1723
+
1724
+ #: ../includes/class-settings.php:736
1725
+ msgid "The easing effect to use for the selected transition."
1726
+ msgstr ""
1727
+
1728
+ #: ../includes/class-settings.php:773
1729
+ msgid "Continuous"
1730
+ msgstr ""
1731
+
1732
+ #: ../includes/class-settings.php:776
1733
+ msgid ""
1734
+ "Whether the slider should run continuously (seamless transition between the "
1735
+ "first and last slides)."
1736
+ msgstr ""
1737
+
1738
+ #: ../includes/class-settings.php:779
1739
+ msgid "Use CSS"
1740
+ msgstr ""
1741
+
1742
+ #: ../includes/class-settings.php:782
1743
+ msgid ""
1744
+ "Whether the slider should use CSS transitions. If the user's browser doesn't "
1745
+ "support CSS transitions the slider will fallback to jQuery."
1746
+ msgstr ""
1747
+
1748
+ #: ../includes/class-settings.php:785 ../includes/class-settings.php:1148
1749
+ msgid "Slideshow"
1750
+ msgstr ""
1751
+
1752
+ #: ../includes/class-settings.php:788
1753
+ msgid "Whether the slider should run automatically on load."
1754
+ msgstr ""
1755
+
1756
+ #: ../includes/class-settings.php:791
1757
+ msgid "Slideshow Direction"
1758
+ msgstr ""
1759
+
1760
+ #: ../includes/class-settings.php:794
1761
+ msgid "Which direction the slider should move in if in slideshow mode."
1762
+ msgstr ""
1763
+
1764
+ #: ../includes/class-settings.php:796 ../includes/class-tour.php:104
1765
+ #: ../includes/class-tour.php:125 ../includes/class-tour.php:139
1766
+ #: ../includes/class-tour.php:153 ../includes/class-tour.php:171
1767
+ #: ../includes/class-tour.php:180 ../includes/class-tour.php:189
1768
+ #: ../includes/class-tour.php:198 ../includes/class-tour.php:207
1769
+ #: ../includes/class-tour.php:216 ../includes/class-tour.php:226
1770
+ msgid "Next"
1771
+ msgstr ""
1772
+
1773
+ #: ../includes/class-settings.php:797
1774
+ msgid "Previous"
1775
+ msgstr ""
1776
+
1777
+ #: ../includes/class-settings.php:801
1778
+ msgid "Slideshow Hover"
1779
+ msgstr ""
1780
+
1781
+ #: ../includes/class-settings.php:804
1782
+ msgid "Whether the slideshow should pause automatically on hover."
1783
+ msgstr ""
1784
+
1785
+ #: ../includes/class-settings.php:807
1786
+ msgid "Slideshow Hover Delay"
1787
+ msgstr ""
1788
+
1789
+ #: ../includes/class-settings.php:811
1790
+ msgid "The delay (if any) before the slider resumes automatically after hover."
1791
+ msgstr ""
1792
+
1793
+ #: ../includes/class-settings.php:815
1794
+ msgid "Slideshow Delay"
1795
+ msgstr ""
1796
+
1797
+ #: ../includes/class-settings.php:819
1798
+ msgid "The delay (if any) before the slider runs automatically on load."
1799
+ msgstr ""
1800
+
1801
+ #: ../includes/class-settings.php:823
1802
+ msgid "Slideshow Pause"
1803
+ msgstr ""
1804
+
1805
+ #: ../includes/class-settings.php:827
1806
+ msgid "The time a slide lasts."
1807
+ msgstr ""
1808
+
1809
+ #: ../includes/class-settings.php:837
1810
+ msgid "Basic Masonry Gallery Settings"
1811
+ msgstr ""
1812
+
1813
+ #: ../includes/class-settings.php:882
1814
+ msgid "Horizontal space between gallery items."
1815
+ msgstr ""
1816
+
1817
+ #: ../includes/class-settings.php:886 ../includes/class-settings.php:1459
1818
+ msgid "Margin"
1819
+ msgstr ""
1820
+
1821
+ #: ../includes/class-settings.php:889
1822
+ msgid "Vertical space between gallery items."
1823
+ msgstr ""
1824
+
1825
+ #: ../includes/class-settings.php:893
1826
+ msgid "Origin Left"
1827
+ msgstr ""
1828
+
1829
+ #: ../includes/class-settings.php:896
1830
+ msgid "Enable left-to-right layouts."
1831
+ msgstr ""
1832
+
1833
+ #: ../includes/class-settings.php:897
1834
+ msgid ""
1835
+ "Controls the horizontal flow of the layout. By default, item elements start "
1836
+ "positioning at the left. Uncheck it for right-to-left layouts."
1837
+ msgstr ""
1838
+
1839
+ #: ../includes/class-settings.php:900
1840
+ msgid "Origin Top"
1841
+ msgstr ""
1842
+
1843
+ #: ../includes/class-settings.php:903
1844
+ msgid "Enable top-to-bottom layouts."
1845
+ msgstr ""
1846
+
1847
+ #: ../includes/class-settings.php:904
1848
+ msgid ""
1849
+ "Controls the vetical flow of the layout. By default, item elements start "
1850
+ "positioning at the top. Uncheck it for bottom-up layouts."
1851
+ msgstr ""
1852
+
1853
+ #: ../includes/class-settings.php:912 ../includes/class-settings.php:1840
1854
+ msgid "General"
1855
+ msgstr ""
1856
+
1857
+ #: ../includes/class-settings.php:918
1858
+ msgid "Lightboxes"
1859
+ msgstr ""
1860
+
1861
+ #: ../includes/class-settings.php:926 ../responsive-lightbox.php:641
1862
+ msgid "Basic Grid"
1863
+ msgstr ""
1864
+
1865
+ #: ../includes/class-settings.php:932 ../responsive-lightbox.php:642
1866
+ msgid "Basic Slider"
1867
+ msgstr ""
1868
+
1869
+ #: ../includes/class-settings.php:938 ../responsive-lightbox.php:643
1870
+ msgid "Basic Masonry"
1871
+ msgstr ""
1872
+
1873
+ #: ../includes/class-settings.php:1007
1874
+ msgid "Builder"
1875
+ msgstr ""
1876
+
1877
+ #: ../includes/class-settings.php:1048 ../includes/class-settings.php:2072
1878
+ msgid "Licenses"
1879
+ msgstr ""
1880
+
1881
+ #: ../includes/class-settings.php:1056 ../includes/class-tour.php:233
1882
+ #: ../responsive-lightbox.php:930
1883
+ msgid "Add-ons"
1884
+ msgstr ""
1885
+
1886
+ #: ../includes/class-settings.php:1070
1887
+ msgid "Animation type"
1888
+ msgstr ""
1889
+
1890
+ #: ../includes/class-settings.php:1074
1891
+ msgid "Select a method of applying a lightbox effect."
1892
+ msgstr ""
1893
+
1894
+ #: ../includes/class-settings.php:1079
1895
+ msgid "Force PNG icons"
1896
+ msgstr ""
1897
+
1898
+ #: ../includes/class-settings.php:1082
1899
+ msgid ""
1900
+ "Enable this if you're having problems with navigation icons not visible on "
1901
+ "some devices."
1902
+ msgstr ""
1903
+
1904
+ #: ../includes/class-settings.php:1086
1905
+ msgid "Hide close on mobile"
1906
+ msgstr ""
1907
+
1908
+ #: ../includes/class-settings.php:1089
1909
+ msgid "Hide the close button on mobile devices."
1910
+ msgstr ""
1911
+
1912
+ #: ../includes/class-settings.php:1093
1913
+ msgid "Remove bars on mobile"
1914
+ msgstr ""
1915
+
1916
+ #: ../includes/class-settings.php:1096
1917
+ msgid "Hide the top and bottom bars on mobile devices."
1918
+ msgstr ""
1919
+
1920
+ #: ../includes/class-settings.php:1100
1921
+ msgid "Top and bottom bars"
1922
+ msgstr ""
1923
+
1924
+ #: ../includes/class-settings.php:1106
1925
+ msgid "Hide top and bottom bars after a period of time."
1926
+ msgstr ""
1927
+
1928
+ #: ../includes/class-settings.php:1111
1929
+ msgid ""
1930
+ "Enter the time after which the top and bottom bars will be hidden (when "
1931
+ "hiding is enabled)."
1932
+ msgstr ""
1933
+
1934
+ #: ../includes/class-settings.php:1118
1935
+ msgid "Video max width"
1936
+ msgstr ""
1937
+
1938
+ #: ../includes/class-settings.php:1121
1939
+ msgid "Enter the max video width in a lightbox."
1940
+ msgstr ""
1941
+
1942
+ #: ../includes/class-settings.php:1126
1943
+ msgid "Loop at end"
1944
+ msgstr ""
1945
+
1946
+ #: ../includes/class-settings.php:1129
1947
+ msgid "True will return to the first image after the last image is reached."
1948
+ msgstr ""
1949
+
1950
+ #: ../includes/class-settings.php:1139 ../includes/class-settings.php:1525
1951
+ msgid "Animation speed"
1952
+ msgstr ""
1953
+
1954
+ #: ../includes/class-settings.php:1143
1955
+ msgid "Select animation speed for lightbox effect."
1956
+ msgstr ""
1957
+
1958
+ #: ../includes/class-settings.php:1154
1959
+ msgid "Display images as slideshow"
1960
+ msgstr ""
1961
+
1962
+ #: ../includes/class-settings.php:1159
1963
+ msgid "Enter time (in miliseconds)."
1964
+ msgstr ""
1965
+
1966
+ #: ../includes/class-settings.php:1166
1967
+ msgid "Slideshow autoplay"
1968
+ msgstr ""
1969
+
1970
+ #: ../includes/class-settings.php:1169 ../includes/class-settings.php:1605
1971
+ msgid "Automatically start slideshow."
1972
+ msgstr ""
1973
+
1974
+ #: ../includes/class-settings.php:1173 ../includes/class-settings.php:1373
1975
+ msgid "Opacity"
1976
+ msgstr ""
1977
+
1978
+ #: ../includes/class-settings.php:1176
1979
+ msgid "Value between 0 and 100, 100 for no opacity."
1980
+ msgstr ""
1981
+
1982
+ #: ../includes/class-settings.php:1182
1983
+ msgid "Show title"
1984
+ msgstr ""
1985
+
1986
+ #: ../includes/class-settings.php:1185
1987
+ msgid "Display image title."
1988
+ msgstr ""
1989
+
1990
+ #: ../includes/class-settings.php:1189
1991
+ msgid "Allow resize big images"
1992
+ msgstr ""
1993
+
1994
+ #: ../includes/class-settings.php:1192
1995
+ msgid "Resize the photos bigger than viewport."
1996
+ msgstr ""
1997
+
1998
+ #: ../includes/class-settings.php:1196
1999
+ msgid "Allow expand"
2000
+ msgstr ""
2001
+
2002
+ #: ../includes/class-settings.php:1199
2003
+ msgid "Allow expanding images."
2004
+ msgstr ""
2005
+
2006
+ #: ../includes/class-settings.php:1203 ../includes/class-settings.php:1467
2007
+ msgid "Video width"
2008
+ msgstr ""
2009
+
2010
+ #: ../includes/class-settings.php:1210 ../includes/class-settings.php:1475
2011
+ msgid "Video height"
2012
+ msgstr ""
2013
+
2014
+ #: ../includes/class-settings.php:1217
2015
+ msgid "Theme"
2016
+ msgstr ""
2017
+
2018
+ #: ../includes/class-settings.php:1220
2019
+ msgid "Select the theme for lightbox effect."
2020
+ msgstr ""
2021
+
2022
+ #: ../includes/class-settings.php:1225
2023
+ msgid "Horizontal padding"
2024
+ msgstr ""
2025
+
2026
+ #: ../includes/class-settings.php:1232
2027
+ msgid "Hide Flash"
2028
+ msgstr ""
2029
+
2030
+ #: ../includes/class-settings.php:1235
2031
+ msgid ""
2032
+ "Hide all the flash objects on a page. Enable this if flash appears over "
2033
+ "prettyPhoto."
2034
+ msgstr ""
2035
+
2036
+ #: ../includes/class-settings.php:1239
2037
+ msgid "Flash Window Mode (wmode)"
2038
+ msgstr ""
2039
+
2040
+ #: ../includes/class-settings.php:1242
2041
+ msgid "Select flash window mode."
2042
+ msgstr ""
2043
+
2044
+ #: ../includes/class-settings.php:1247
2045
+ msgid "Video autoplay"
2046
+ msgstr ""
2047
+
2048
+ #: ../includes/class-settings.php:1250
2049
+ msgid "Automatically start videos."
2050
+ msgstr ""
2051
+
2052
+ #: ../includes/class-settings.php:1254 ../includes/class-settings.php:1295
2053
+ msgid "Modal"
2054
+ msgstr ""
2055
+
2056
+ #: ../includes/class-settings.php:1257
2057
+ msgid "If set to true, only the close button will close the window."
2058
+ msgstr ""
2059
+
2060
+ #: ../includes/class-settings.php:1261
2061
+ msgid "Deeplinking"
2062
+ msgstr ""
2063
+
2064
+ #: ../includes/class-settings.php:1264
2065
+ msgid "Allow prettyPhoto to update the url to enable deeplinking."
2066
+ msgstr ""
2067
+
2068
+ #: ../includes/class-settings.php:1268
2069
+ msgid "Overlay gallery"
2070
+ msgstr ""
2071
+
2072
+ #: ../includes/class-settings.php:1271
2073
+ msgid "If enabled, a gallery will overlay the fullscreen image on mouse over."
2074
+ msgstr ""
2075
+
2076
+ #: ../includes/class-settings.php:1275
2077
+ msgid "Keyboard shortcuts"
2078
+ msgstr ""
2079
+
2080
+ #: ../includes/class-settings.php:1278
2081
+ msgid "Set to false if you open forms inside prettyPhoto."
2082
+ msgstr ""
2083
+
2084
+ #: ../includes/class-settings.php:1282
2085
+ msgid "Social (Twitter, Facebook)"
2086
+ msgstr ""
2087
+
2088
+ #: ../includes/class-settings.php:1285
2089
+ msgid "Display links to Facebook and Twitter."
2090
+ msgstr ""
2091
+
2092
+ #: ../includes/class-settings.php:1298
2093
+ msgid ""
2094
+ "When true, \"overlayShow\" is set to true and \"hideOnOverlayClick\", "
2095
+ "\"hideOnContentClick\", \"enableEscapeButton\", \"showCloseButton\" are set "
2096
+ "to false."
2097
+ msgstr ""
2098
+
2099
+ #: ../includes/class-settings.php:1302
2100
+ msgid "Show overlay"
2101
+ msgstr ""
2102
+
2103
+ #: ../includes/class-settings.php:1305
2104
+ msgid "Toggle overlay."
2105
+ msgstr ""
2106
+
2107
+ #: ../includes/class-settings.php:1309 ../includes/class-settings.php:1758
2108
+ msgid "Show close button"
2109
+ msgstr ""
2110
+
2111
+ #: ../includes/class-settings.php:1312
2112
+ msgid "Toggle close button."
2113
+ msgstr ""
2114
+
2115
+ #: ../includes/class-settings.php:1316
2116
+ msgid "Enable escape button"
2117
+ msgstr ""
2118
+
2119
+ #: ../includes/class-settings.php:1319 ../includes/class-settings.php:1689
2120
+ msgid "Toggle if pressing Esc button closes lightbox."
2121
+ msgstr ""
2122
+
2123
+ #: ../includes/class-settings.php:1323
2124
+ msgid "Hide on overlay click"
2125
+ msgstr ""
2126
+
2127
+ #: ../includes/class-settings.php:1326
2128
+ msgid "Toggle if clicking the overlay should close FancyBox."
2129
+ msgstr ""
2130
+
2131
+ #: ../includes/class-settings.php:1330
2132
+ msgid "Hide on content click"
2133
+ msgstr ""
2134
+
2135
+ #: ../includes/class-settings.php:1333
2136
+ msgid "Toggle if clicking the content should close FancyBox."
2137
+ msgstr ""
2138
+
2139
+ #: ../includes/class-settings.php:1337
2140
+ msgid "Cyclic"
2141
+ msgstr ""
2142
+
2143
+ #: ../includes/class-settings.php:1340
2144
+ msgid ""
2145
+ "When true, galleries will be cyclic, allowing you to keep pressing next/back."
2146
+ msgstr ""
2147
+
2148
+ #: ../includes/class-settings.php:1344
2149
+ msgid "Show nav arrows"
2150
+ msgstr ""
2151
+
2152
+ #: ../includes/class-settings.php:1347
2153
+ msgid "Toggle navigation arrows."
2154
+ msgstr ""
2155
+
2156
+ #: ../includes/class-settings.php:1351
2157
+ msgid "Auto scale"
2158
+ msgstr ""
2159
+
2160
+ #: ../includes/class-settings.php:1354
2161
+ msgid "If true, FancyBox is scaled to fit in viewport."
2162
+ msgstr ""
2163
+
2164
+ #: ../includes/class-settings.php:1358
2165
+ msgid "Scrolling (in/out)"
2166
+ msgstr ""
2167
+
2168
+ #: ../includes/class-settings.php:1361
2169
+ msgid "Set the overflow CSS property to create or hide scrollbars."
2170
+ msgstr ""
2171
+
2172
+ #: ../includes/class-settings.php:1366
2173
+ msgid "Center on scroll"
2174
+ msgstr ""
2175
+
2176
+ #: ../includes/class-settings.php:1369
2177
+ msgid "When true, FancyBox is centered while scrolling page."
2178
+ msgstr ""
2179
+
2180
+ #: ../includes/class-settings.php:1376
2181
+ msgid "When true, transparency of content is changed for elastic transitions."
2182
+ msgstr ""
2183
+
2184
+ #: ../includes/class-settings.php:1380
2185
+ msgid "Overlay opacity"
2186
+ msgstr ""
2187
+
2188
+ #: ../includes/class-settings.php:1383
2189
+ msgid "Opacity of the overlay."
2190
+ msgstr ""
2191
+
2192
+ #: ../includes/class-settings.php:1389
2193
+ msgid "Overlay color"
2194
+ msgstr ""
2195
+
2196
+ #: ../includes/class-settings.php:1392
2197
+ msgid "Color of the overlay."
2198
+ msgstr ""
2199
+
2200
+ #: ../includes/class-settings.php:1396
2201
+ msgid "Title show"
2202
+ msgstr ""
2203
+
2204
+ #: ../includes/class-settings.php:1399
2205
+ msgid "Toggle title."
2206
+ msgstr ""
2207
+
2208
+ #: ../includes/class-settings.php:1403
2209
+ msgid "Title position"
2210
+ msgstr ""
2211
+
2212
+ #: ../includes/class-settings.php:1406
2213
+ msgid "The position of title."
2214
+ msgstr ""
2215
+
2216
+ #: ../includes/class-settings.php:1411
2217
+ msgid "Transition (in/out)"
2218
+ msgstr ""
2219
+
2220
+ #: ../includes/class-settings.php:1414
2221
+ msgid "The transition type."
2222
+ msgstr ""
2223
+
2224
+ #: ../includes/class-settings.php:1419
2225
+ msgid "Easings (in/out)"
2226
+ msgstr ""
2227
+
2228
+ #: ../includes/class-settings.php:1422
2229
+ msgid "Easing used for elastic animations."
2230
+ msgstr ""
2231
+
2232
+ #: ../includes/class-settings.php:1427
2233
+ msgid "Speed (in/out)"
2234
+ msgstr ""
2235
+
2236
+ #: ../includes/class-settings.php:1430
2237
+ msgid "Speed of the fade and elastic transitions, in milliseconds."
2238
+ msgstr ""
2239
+
2240
+ #: ../includes/class-settings.php:1435
2241
+ msgid "Change speed"
2242
+ msgstr ""
2243
+
2244
+ #: ../includes/class-settings.php:1438
2245
+ msgid "Speed of resizing when changing gallery items, in milliseconds."
2246
+ msgstr ""
2247
+
2248
+ #: ../includes/class-settings.php:1443
2249
+ msgid "Change fade"
2250
+ msgstr ""
2251
+
2252
+ #: ../includes/class-settings.php:1446
2253
+ msgid "Speed of the content fading while changing gallery items."
2254
+ msgstr ""
2255
+
2256
+ #: ../includes/class-settings.php:1451
2257
+ msgid "Padding"
2258
+ msgstr ""
2259
+
2260
+ #: ../includes/class-settings.php:1454
2261
+ msgid "Space between FancyBox wrapper and content."
2262
+ msgstr ""
2263
+
2264
+ #: ../includes/class-settings.php:1462
2265
+ msgid "Space between viewport and FancyBox wrapper."
2266
+ msgstr ""
2267
+
2268
+ #: ../includes/class-settings.php:1470
2269
+ msgid "Width of the video."
2270
+ msgstr ""
2271
+
2272
+ #: ../includes/class-settings.php:1478
2273
+ msgid "Height of the video."
2274
+ msgstr ""
2275
+
2276
+ #: ../includes/class-settings.php:1489
2277
+ msgid "Effect"
2278
+ msgstr ""
2279
+
2280
+ #: ../includes/class-settings.php:1492
2281
+ msgid "The effect to use when showing the lightbox."
2282
+ msgstr ""
2283
+
2284
+ #: ../includes/class-settings.php:1497 ../includes/class-settings.php:1592
2285
+ msgid "Keyboard navigation"
2286
+ msgstr ""
2287
+
2288
+ #: ../includes/class-settings.php:1500 ../includes/class-settings.php:1595
2289
+ msgid "Enable keyboard navigation (left/right/escape)."
2290
+ msgstr ""
2291
+
2292
+ #: ../includes/class-settings.php:1504
2293
+ msgid "Click overlay to close"
2294
+ msgstr ""
2295
+
2296
+ #: ../includes/class-settings.php:1507 ../includes/class-settings.php:1648
2297
+ msgid "Enable to close lightbox on overlay click."
2298
+ msgstr ""
2299
+
2300
+ #: ../includes/class-settings.php:1511
2301
+ msgid "Error message"
2302
+ msgstr ""
2303
+
2304
+ #: ../includes/class-settings.php:1515
2305
+ msgid "Error message if the content cannot be loaded."
2306
+ msgstr ""
2307
+
2308
+ #: ../includes/class-settings.php:1528
2309
+ msgid "Animation speed."
2310
+ msgstr ""
2311
+
2312
+ #: ../includes/class-settings.php:1533
2313
+ msgid "Preload next image"
2314
+ msgstr ""
2315
+
2316
+ #: ../includes/class-settings.php:1536
2317
+ msgid "Silently preload the next image."
2318
+ msgstr ""
2319
+
2320
+ #: ../includes/class-settings.php:1540
2321
+ msgid "Enable keyboard keys"
2322
+ msgstr ""
2323
+
2324
+ #: ../includes/class-settings.php:1543
2325
+ msgid "Enable keyboard shortcuts (arrows Left/Right and Esc)."
2326
+ msgstr ""
2327
+
2328
+ #: ../includes/class-settings.php:1547
2329
+ msgid "Quit after last image"
2330
+ msgstr ""
2331
+
2332
+ #: ../includes/class-settings.php:1550
2333
+ msgid "Quit after viewing the last image."
2334
+ msgstr ""
2335
+
2336
+ #: ../includes/class-settings.php:1554
2337
+ msgid "Quit on image click"
2338
+ msgstr ""
2339
+
2340
+ #: ../includes/class-settings.php:1557
2341
+ msgid "Quit when the viewed image is clicked."
2342
+ msgstr ""
2343
+
2344
+ #: ../includes/class-settings.php:1561
2345
+ msgid "Quit on anything click"
2346
+ msgstr ""
2347
+
2348
+ #: ../includes/class-settings.php:1564
2349
+ msgid "Quit when anything but the viewed image is clicked."
2350
+ msgstr ""
2351
+
2352
+ #: ../includes/class-settings.php:1574
2353
+ msgid "Transition effect"
2354
+ msgstr ""
2355
+
2356
+ #: ../includes/class-settings.php:1577
2357
+ msgid "What effect to use for the transition."
2358
+ msgstr ""
2359
+
2360
+ #: ../includes/class-settings.php:1579
2361
+ msgid "slide"
2362
+ msgstr ""
2363
+
2364
+ #: ../includes/class-settings.php:1585
2365
+ msgid "Infinite loop"
2366
+ msgstr ""
2367
+
2368
+ #: ../includes/class-settings.php:1588
2369
+ msgid ""
2370
+ "Whether or not to slide back to the first slide when the last has been "
2371
+ "reached."
2372
+ msgstr ""
2373
+
2374
+ #: ../includes/class-settings.php:1599
2375
+ msgid "Autoplay"
2376
+ msgstr ""
2377
+
2378
+ #: ../includes/class-settings.php:1610
2379
+ msgid "The timeout between sliding to the next slide in milliseconds."
2380
+ msgstr ""
2381
+
2382
+ #: ../includes/class-settings.php:1617
2383
+ msgid "Pause on hover"
2384
+ msgstr ""
2385
+
2386
+ #: ../includes/class-settings.php:1620
2387
+ msgid "Whether or not to pause on hover."
2388
+ msgstr ""
2389
+
2390
+ #: ../includes/class-settings.php:1624
2391
+ msgid "Pagination"
2392
+ msgstr ""
2393
+
2394
+ #: ../includes/class-settings.php:1630
2395
+ msgid "Whether or not to add a pagination."
2396
+ msgstr ""
2397
+
2398
+ #: ../includes/class-settings.php:1635
2399
+ msgid "What type of pagination to use."
2400
+ msgstr ""
2401
+
2402
+ #: ../includes/class-settings.php:1637
2403
+ msgid "Bullets"
2404
+ msgstr ""
2405
+
2406
+ #: ../includes/class-settings.php:1638
2407
+ msgid "Thumbnails"
2408
+ msgstr ""
2409
+
2410
+ #: ../includes/class-settings.php:1645
2411
+ msgid "Overlay close"
2412
+ msgstr ""
2413
+
2414
+ #: ../includes/class-settings.php:1658
2415
+ msgid "Opening speed"
2416
+ msgstr ""
2417
+
2418
+ #: ../includes/class-settings.php:1661
2419
+ msgid "Duration of opening animation."
2420
+ msgstr ""
2421
+
2422
+ #: ../includes/class-settings.php:1666
2423
+ msgid "Closing speed"
2424
+ msgstr ""
2425
+
2426
+ #: ../includes/class-settings.php:1669
2427
+ msgid "Duration of closing animation."
2428
+ msgstr ""
2429
+
2430
+ #: ../includes/class-settings.php:1674
2431
+ msgid "Close on click"
2432
+ msgstr ""
2433
+
2434
+ #: ../includes/class-settings.php:1677
2435
+ msgid "Select how to close lightbox."
2436
+ msgstr ""
2437
+
2438
+ #: ../includes/class-settings.php:1679
2439
+ msgid "background"
2440
+ msgstr ""
2441
+
2442
+ #: ../includes/class-settings.php:1680
2443
+ msgid "anywhere"
2444
+ msgstr ""
2445
+
2446
+ #: ../includes/class-settings.php:1681
2447
+ msgid "false"
2448
+ msgstr ""
2449
+
2450
+ #: ../includes/class-settings.php:1686
2451
+ msgid "Close on Esc"
2452
+ msgstr ""
2453
+
2454
+ #: ../includes/class-settings.php:1693
2455
+ msgid "Gallery fade in"
2456
+ msgstr ""
2457
+
2458
+ #: ../includes/class-settings.php:1696
2459
+ msgid "Animation speed when image is loaded."
2460
+ msgstr ""
2461
+
2462
+ #: ../includes/class-settings.php:1701
2463
+ msgid "Gallery fade out"
2464
+ msgstr ""
2465
+
2466
+ #: ../includes/class-settings.php:1704
2467
+ msgid "Animation speed before image is loaded."
2468
+ msgstr ""
2469
+
2470
+ #: ../includes/class-settings.php:1715
2471
+ msgid "Disable on"
2472
+ msgstr ""
2473
+
2474
+ #: ../includes/class-settings.php:1718
2475
+ msgid ""
2476
+ "If window width is less than the number in this option lightbox will not be "
2477
+ "opened and the default behavior of the element will be triggered. Set to 0 "
2478
+ "to disable behavior."
2479
+ msgstr ""
2480
+
2481
+ #: ../includes/class-settings.php:1723
2482
+ msgid "Middle click"
2483
+ msgstr ""
2484
+
2485
+ #: ../includes/class-settings.php:1726
2486
+ msgid ""
2487
+ "If option enabled, lightbox is opened if the user clicked on the middle "
2488
+ "mouse button, or click with Command/Ctrl key."
2489
+ msgstr ""
2490
+
2491
+ #: ../includes/class-settings.php:1730
2492
+ msgid "Preloader"
2493
+ msgstr ""
2494
+
2495
+ #: ../includes/class-settings.php:1733
2496
+ msgid ""
2497
+ "If option enabled, it's always present in DOM only text inside of it changes."
2498
+ msgstr ""
2499
+
2500
+ #: ../includes/class-settings.php:1737
2501
+ msgid "Close on content click"
2502
+ msgstr ""
2503
+
2504
+ #: ../includes/class-settings.php:1740
2505
+ msgid ""
2506
+ "Close popup when user clicks on content of it. It's recommended to enable "
2507
+ "this option when you have only image in popup."
2508
+ msgstr ""
2509
+
2510
+ #: ../includes/class-settings.php:1744
2511
+ msgid "Close on background click"
2512
+ msgstr ""
2513
+
2514
+ #: ../includes/class-settings.php:1747
2515
+ msgid "Close the popup when user clicks on the dark overlay."
2516
+ msgstr ""
2517
+
2518
+ #: ../includes/class-settings.php:1751
2519
+ msgid "Close button inside"
2520
+ msgstr ""
2521
+
2522
+ #: ../includes/class-settings.php:1754
2523
+ msgid ""
2524
+ "If enabled, Magnific Popup will put close button inside content of popup."
2525
+ msgstr ""
2526
+
2527
+ #: ../includes/class-settings.php:1761
2528
+ msgid "Controls whether the close button will be displayed or not."
2529
+ msgstr ""
2530
+
2531
+ #: ../includes/class-settings.php:1765
2532
+ msgid "Enable escape key"
2533
+ msgstr ""
2534
+
2535
+ #: ../includes/class-settings.php:1768
2536
+ msgid ""
2537
+ "Controls whether pressing the escape key will dismiss the active popup or "
2538
+ "not."
2539
+ msgstr ""
2540
+
2541
+ #: ../includes/class-settings.php:1772
2542
+ msgid "Align top"
2543
+ msgstr ""
2544
+
2545
+ #: ../includes/class-settings.php:1775
2546
+ msgid "If set to true popup is aligned to top instead of to center."
2547
+ msgstr ""
2548
+
2549
+ #: ../includes/class-settings.php:1779
2550
+ msgid "Content position type"
2551
+ msgstr ""
2552
+
2553
+ #: ../includes/class-settings.php:1782
2554
+ msgid ""
2555
+ "Popup content position. If set to \"auto\" popup will automatically disable "
2556
+ "this option when browser doesn't support fixed position properly."
2557
+ msgstr ""
2558
+
2559
+ #: ../includes/class-settings.php:1784 ../includes/class-settings.php:1796
2560
+ msgid "Auto"
2561
+ msgstr ""
2562
+
2563
+ #: ../includes/class-settings.php:1785 ../includes/class-settings.php:1797
2564
+ msgid "Fixed"
2565
+ msgstr ""
2566
+
2567
+ #: ../includes/class-settings.php:1786 ../includes/class-settings.php:1798
2568
+ msgid "Absolute"
2569
+ msgstr ""
2570
+
2571
+ #: ../includes/class-settings.php:1791
2572
+ msgid "Fixed background position"
2573
+ msgstr ""
2574
+
2575
+ #: ../includes/class-settings.php:1794
2576
+ msgid "Dark transluscent overlay content position."
2577
+ msgstr ""
2578
+
2579
+ #: ../includes/class-settings.php:1803
2580
+ msgid "Auto focus last"
2581
+ msgstr ""
2582
+
2583
+ #: ../includes/class-settings.php:1806
2584
+ msgid ""
2585
+ "If set to true last focused element before popup showup will be focused "
2586
+ "after popup close."
2587
+ msgstr ""
2588
+
2589
+ #: ../includes/class-settings.php:1828
2590
+ #, php-format
2591
+ msgid ""
2592
+ "Below you'll find a list of available remote media libraries. If you're "
2593
+ "looking for Pixabay, Pexels, Instagram and other integrations please check "
2594
+ "the <a href=\"%s\" target=\"_blank\">Remote Library Pro addon</a>."
2595
+ msgstr ""
2596
+
2597
+ #: ../includes/class-settings.php:1878 ../includes/class-settings.php:1891
2598
+ #: ../responsive-lightbox.php:1355
2599
+ msgid "Responsive Lightbox & Gallery"
2600
+ msgstr ""
2601
+
2602
+ #: ../includes/class-settings.php:1893
2603
+ msgid "Need support?"
2604
+ msgstr ""
2605
+
2606
+ #: ../includes/class-settings.php:1894
2607
+ #, php-format
2608
+ msgid ""
2609
+ "If you are having problems with this plugin, please browse it's <a href=\"%s"
2610
+ "\" target=\"_blank\">Documentation</a> or talk about them in the <a href=\"%s"
2611
+ "\" target=\"_blank\">Support forum</a>"
2612
+ msgstr ""
2613
+
2614
+ #: ../includes/class-settings.php:1896
2615
+ msgid "Do you like this plugin?"
2616
+ msgstr ""
2617
+
2618
+ #: ../includes/class-settings.php:1897
2619
+ #, php-format
2620
+ msgid "<a href=\"%s\" target=\"_blank\">Rate it 5</a> on WordPress.org"
2621
+ msgstr ""
2622
+
2623
+ #: ../includes/class-settings.php:1898
2624
+ #, php-format
2625
+ msgid ""
2626
+ "Blog about it & link to the <a href=\"%s\" target=\"_blank\">plugin page</a>."
2627
+ msgstr ""
2628
+
2629
+ #: ../includes/class-settings.php:1899
2630
+ #, php-format
2631
+ msgid ""
2632
+ "Check out our other <a href=\"%s\" target=\"_blank\">WordPress plugins</a>."
2633
+ msgstr ""
2634
+
2635
+ #: ../includes/class-settings.php:1943
2636
+ msgid "Reset to defaults"
2637
+ msgstr ""
2638
+
2639
+ #: ../includes/class-settings.php:2341 ../includes/class-settings.php:2396
2640
+ msgid "Settings restored to defaults."
2641
+ msgstr ""
2642
+
2643
+ #: ../includes/class-settings.php:2418
2644
+ msgid "Role"
2645
+ msgstr ""
2646
+
2647
+ #: ../includes/class-settings.php:2464
2648
+ msgid "Add-ons / Extensions"
2649
+ msgstr ""
2650
+
2651
+ #: ../includes/class-settings.php:2465
2652
+ msgid ""
2653
+ "Enhance your website with these beautiful, easy to use extensions, designed "
2654
+ "with Responsive Lightbox & Gallery integration in mind."
2655
+ msgstr ""
2656
+
2657
+ #: ../includes/class-settings.php:2477
2658
+ msgid ""
2659
+ "There was an error retrieving the extensions list from the server. Please "
2660
+ "try again later."
2661
+ msgstr ""
2662
+
2663
+ #: ../includes/class-settings.php:2489
2664
+ msgid "A list of licenses for your Responsive Lightbox & Gallery extensions."
2665
+ msgstr ""
2666
+
2667
+ #: ../includes/class-settings.php:2509
2668
+ #, php-format
2669
+ msgid ""
2670
+ "Enter your license key to activate %s extension and enable automatic upgrade "
2671
+ "notices."
2672
+ msgstr ""
2673
+
2674
+ #: ../includes/class-tour.php:103
2675
+ msgid ""
2676
+ "This is an advanced gallery builder. Here you can see a preview of all "
2677
+ "created galleries along with their settings, such as the name, type, source "
2678
+ "of images, author or date of publication. You can also add a new gallery, "
2679
+ "edit existing ones or quickly copy the code allowing its use on the site."
2680
+ msgstr ""
2681
+
2682
+ #: ../includes/class-tour.php:123
2683
+ msgid "Gallery Categories"
2684
+ msgstr ""
2685
+
2686
+ #: ../includes/class-tour.php:124
2687
+ msgid ""
2688
+ "Gallery categories allow you to arrange galleries into individual groups "
2689
+ "that you can potentially use. Here you can create, name and edit them. "
2690
+ "However, assigning the gallery to the category takes place on the gallery "
2691
+ "editing screen."
2692
+ msgstr ""
2693
+
2694
+ #: ../includes/class-tour.php:137
2695
+ msgid "Gallery Tags"
2696
+ msgstr ""
2697
+
2698
+ #: ../includes/class-tour.php:138
2699
+ msgid ""
2700
+ "Gallery tags, like categories, allow you to arrange galleries into groups. "
2701
+ "You can think of them as keywords, which you can use to further specify your "
2702
+ "galleries. Here you can create, name and edit them."
2703
+ msgstr ""
2704
+
2705
+ #: ../includes/class-tour.php:152
2706
+ msgid ""
2707
+ "Here are the main settings for Responsive Lightbox & Gallery. They allow you "
2708
+ "to specify general rules of the plugin's operation and technical parameters "
2709
+ "of the lightbox effect and gallery. For example - you can choose your "
2710
+ "favorite lightbox effect, specify for which elements it will automatically "
2711
+ "launch and set its parameters. You can also choose the default gallery and "
2712
+ "its settings."
2713
+ msgstr ""
2714
+
2715
+ #: ../includes/class-tour.php:169
2716
+ msgid "Lightboxes Settings"
2717
+ msgstr ""
2718
+
2719
+ #: ../includes/class-tour.php:170
2720
+ msgid ""
2721
+ "Each lightbox has different look, possibilities and parameters. Here is a "
2722
+ "list of available lightbox effects along with their settings. After entering "
2723
+ "the tab you can see the settings of the currently selected lightbox, but you "
2724
+ "can also modify or restore the settings of the others."
2725
+ msgstr ""
2726
+
2727
+ #: ../includes/class-tour.php:178
2728
+ msgid "Gallery Settings"
2729
+ msgstr ""
2730
+
2731
+ #: ../includes/class-tour.php:179
2732
+ msgid ""
2733
+ "This is the screen of the default gallery settings. As in the case of "
2734
+ "lightbox effects, there is a list of available galleries and their "
2735
+ "parameters. After entering the tab you can see the settings of the currently "
2736
+ "selected gallery. You can modify and adjust them to your needs or restore "
2737
+ "it's default settings."
2738
+ msgstr ""
2739
+
2740
+ #: ../includes/class-tour.php:187
2741
+ msgid "Builder Settings"
2742
+ msgstr ""
2743
+
2744
+ #: ../includes/class-tour.php:188
2745
+ msgid ""
2746
+ "You can use the galleries in many ways - insert them into posts using the "
2747
+ "Add Gallery button, insert manually using shortcodes or add to the theme "
2748
+ "using functions. But you can also display them in archives just like other "
2749
+ "post types. Use these settings to specify the functionality of the gallery "
2750
+ "builder like categories, tags, archives and permalinks."
2751
+ msgstr ""
2752
+
2753
+ #: ../includes/class-tour.php:197
2754
+ msgid ""
2755
+ "Responsive Lithbox & Gallery comes with an optional Media Folders feature "
2756
+ "that extends your WordPress Media Library with visual folders. It allows you "
2757
+ "to organize your attachments in a folder tree structure. Move, copy, rename "
2758
+ "and delete files and folders with a nice drag and drop interface."
2759
+ msgstr ""
2760
+
2761
+ #: ../includes/class-tour.php:206
2762
+ msgid ""
2763
+ "Capabilities give you the ability to control what users can and cannot do "
2764
+ "within the plugin. By default only the Administrator role allows a user to "
2765
+ "perform all possible capabilities. But you can fine tune these settings to "
2766
+ "match your specific requirements."
2767
+ msgstr ""
2768
+
2769
+ #: ../includes/class-tour.php:215
2770
+ msgid ""
2771
+ "Are you looking for free royalty free public domain and CC0-Licensed images "
2772
+ "for your website? Or you need to access your images stored in photo-sharing "
2773
+ "apps? Remote Library allows you to use images from multiple sources like "
2774
+ "Unsplash, Pixabay, Flickr or Instagram directly in your WordPress Media "
2775
+ "Manager. Now you can create galleries, browse, insert and import images as "
2776
+ "never before."
2777
+ msgstr ""
2778
+
2779
+ #: ../includes/class-tour.php:224
2780
+ msgid "License Settings"
2781
+ msgstr ""
2782
+
2783
+ #: ../includes/class-tour.php:225
2784
+ msgid ""
2785
+ "This section contains a list of currently installed premium extensions. "
2786
+ "Activate your licenses to have access to automatic updates from your site. "
2787
+ "To activate the license, copy and paste the license key for the extension "
2788
+ "and save the changes. Available license keys can be found on your account on "
2789
+ "our website."
2790
+ msgstr ""
2791
+
2792
+ #: ../includes/class-tour.php:234
2793
+ msgid ""
2794
+ "Responsive Lightbox & Gallery is more than that. Do you need a beautiful "
2795
+ "lightbox effect, integration with social media, an attractive image gallery? "
2796
+ "Among our products you will surely find something for yourself. Boost your "
2797
+ "creativity and enhance your website with these beautiful, easy to use "
2798
+ "extensions, designed with Responsive Lightbox & Gallery integration in mind."
2799
+ msgstr ""
2800
+
2801
+ #: ../includes/class-welcome.php:33
2802
+ msgid "Welcome to Responsive Lightbox & Gallery"
2803
+ msgstr ""
2804
+
2805
+ #: ../includes/class-welcome.php:56
2806
+ msgid "Welcome to"
2807
+ msgstr ""
2808
+
2809
+ #: ../includes/class-welcome.php:57
2810
+ #, php-format
2811
+ msgid "Responsive Lightbox & Gallery %s"
2812
+ msgstr ""
2813
+
2814
+ #: ../includes/class-welcome.php:61
2815
+ msgid ""
2816
+ "Thank you for choosing Responsive Lightbox & Gallery - the most popular "
2817
+ "lightbox plugin and a powerful gallery builder for WordPress."
2818
+ msgstr ""
2819
+
2820
+ #: ../includes/class-welcome.php:69 ../responsive-lightbox.php:927
2821
+ #: ../responsive-lightbox.php:1237
2822
+ msgid "Settings"
2823
+ msgstr ""
2824
+
2825
+ #: ../includes/class-welcome.php:70
2826
+ msgid "Addons"
2827
+ msgstr ""
2828
+
2829
+ #: ../includes/class-welcome.php:89
2830
+ msgid "Advanced Gallery Builder"
2831
+ msgstr ""
2832
+
2833
+ #: ../includes/class-welcome.php:90
2834
+ msgid ""
2835
+ "Responsive Lightbox & Gallery comes with a powerful gallery builder right "
2836
+ "out of the box that lets you manage galleries the same way you manage posts "
2837
+ "and pages on your WordPress website. You can add images to your gallery, "
2838
+ "adjust its settings and lightbox scripts, and configure its display options."
2839
+ msgstr ""
2840
+
2841
+ #: ../includes/class-welcome.php:95
2842
+ msgid "Multiple Lightbox Effects"
2843
+ msgstr ""
2844
+
2845
+ #: ../includes/class-welcome.php:96
2846
+ msgid ""
2847
+ "Responsive Lightbox & Gallery gives you the control to beautify your images, "
2848
+ "videos, and galleries using lightbox scripts that look great on all devices. "
2849
+ "We've got everything from lightweight, functional lightboxes to heavy-"
2850
+ "customizable, fancy ones."
2851
+ msgstr ""
2852
+
2853
+ #: ../includes/class-welcome.php:100
2854
+ msgid "Easy Setup"
2855
+ msgstr ""
2856
+
2857
+ #: ../includes/class-welcome.php:101
2858
+ msgid ""
2859
+ "A lot goes into making a good first impression - especially when your site "
2860
+ "is doing all the talking. Responsive Lightbox & Gallery automatically adds "
2861
+ "lightbox effects to all of your image galleries, image links, and video "
2862
+ "links so you can sit back and relax while we make sure your website looks "
2863
+ "its best."
2864
+ msgstr ""
2865
+
2866
+ #: ../includes/class-welcome.php:105
2867
+ msgid "Powerful Addons"
2868
+ msgstr ""
2869
+
2870
+ #: ../includes/class-welcome.php:106
2871
+ #, php-format
2872
+ msgid ""
2873
+ "Responsive Lightbox & Gallery enhances your site by making its images and "
2874
+ "galleries look visually appealing to your site users. And when you want to "
2875
+ "kick things up a notch you can pair the free, core plugin with <del>one of "
2876
+ "10</del> one of 12 <a href=\"%s\" target=\"_blank\">premium extensions.</a>"
2877
+ msgstr ""
2878
+
2879
+ #: ../includes/class-welcome.php:112
2880
+ msgid "Go to Settings"
2881
+ msgstr ""
2882
+
2883
+ #: ../includes/class-widgets.php:59
2884
+ msgid "Displays an image gallery."
2885
+ msgstr ""
2886
+
2887
+ #: ../includes/class-widgets.php:76
2888
+ msgid "Menu order"
2889
+ msgstr ""
2890
+
2891
+ #: ../includes/class-widgets.php:78
2892
+ msgid "Image date"
2893
+ msgstr ""
2894
+
2895
+ #: ../includes/class-widgets.php:94 ../responsive-lightbox.php:640
2896
+ msgid "Default"
2897
+ msgstr ""
2898
+
2899
+ #: ../includes/class-widgets.php:152
2900
+ msgid "Delete image"
2901
+ msgstr ""
2902
+
2903
+ #: ../includes/class-widgets.php:165
2904
+ msgid "Gallery type"
2905
+ msgstr ""
2906
+
2907
+ #: ../includes/class-widgets.php:180
2908
+ msgid "Order by"
2909
+ msgstr ""
2910
+
2911
+ #: ../includes/class-widgets.php:204
2912
+ msgid "Image size"
2913
+ msgstr ""
2914
+
2915
+ #: ../includes/class-widgets.php:216
2916
+ msgid "Number of columns"
2917
+ msgstr ""
2918
+
2919
+ #: ../includes/class-widgets.php:220
2920
+ msgid "Custom attributes"
2921
+ msgstr ""
2922
+
2923
+ #: ../includes/class-widgets.php:222
2924
+ msgid "Custom gallery shortcode attributes (optional)."
2925
+ msgstr ""
2926
+
2927
+ #: ../includes/class-widgets.php:313 ../includes/class-widgets.php:321
2928
+ msgid "Image"
2929
+ msgstr ""
2930
+
2931
+ #: ../includes/class-widgets.php:315
2932
+ msgid "Displays a single image."
2933
+ msgstr ""
2934
+
2935
+ #: ../includes/class-widgets.php:335
2936
+ msgid "Below the image"
2937
+ msgstr ""
2938
+
2939
+ #: ../includes/class-widgets.php:336
2940
+ msgid "Above the image"
2941
+ msgstr ""
2942
+
2943
+ #: ../includes/class-widgets.php:348
2944
+ msgid "Left"
2945
+ msgstr ""
2946
+
2947
+ #: ../includes/class-widgets.php:349
2948
+ msgid "Center"
2949
+ msgstr ""
2950
+
2951
+ #: ../includes/class-widgets.php:350
2952
+ msgid "Right"
2953
+ msgstr ""
2954
+
2955
+ #: ../includes/class-widgets.php:351
2956
+ msgid "Justify"
2957
+ msgstr ""
2958
+
2959
+ #: ../includes/class-widgets.php:462 ../responsive-lightbox.php:1736
2960
+ msgid "Select image"
2961
+ msgstr ""
2962
+
2963
+ #: ../includes/class-widgets.php:471
2964
+ msgid "Force responsive"
2965
+ msgstr ""
2966
+
2967
+ #: ../includes/class-widgets.php:490
2968
+ msgid "Link to"
2969
+ msgstr ""
2970
+
2971
+ #: ../includes/class-widgets.php:504
2972
+ msgid "URL"
2973
+ msgstr ""
2974
+
2975
+ #: ../includes/class-widgets.php:510
2976
+ msgid "Image align"
2977
+ msgstr ""
2978
+
2979
+ #: ../includes/class-widgets.php:523
2980
+ msgid "Text"
2981
+ msgstr ""
2982
+
2983
+ #: ../includes/class-widgets.php:527
2984
+ msgid "Automatically add paragraphs"
2985
+ msgstr ""
2986
+
2987
+ #: ../includes/class-widgets.php:532
2988
+ msgid "Text position"
2989
+ msgstr ""
2990
+
2991
+ #: ../includes/class-widgets.php:543
2992
+ msgid "Text align"
2993
+ msgstr ""
2994
+
2995
+ #: ../includes/providers/class-flickr.php:22
2996
+ msgid "Flickr"
2997
+ msgstr ""
2998
+
2999
+ #: ../includes/providers/class-flickr.php:49
3000
+ msgid "Enable Flickr."
3001
+ msgstr ""
3002
+
3003
+ #: ../includes/providers/class-flickr.php:51
3004
+ msgid "API key"
3005
+ msgstr ""
3006
+
3007
+ #: ../includes/providers/class-flickr.php:52
3008
+ #, php-format
3009
+ msgid "Provide your <a href=\"%s\">Flickr API key</a>."
3010
+ msgstr ""
3011
+
3012
+ #: ../includes/providers/class-flickr.php:128
3013
+ #: ../includes/providers/class-unsplash.php:126
3014
+ #: ../includes/providers/class-wikimedia.php:127
3015
+ msgid "Responsive Lightbox"
3016
+ msgstr ""
3017
+
3018
+ #: ../includes/providers/class-flickr.php:142
3019
+ #: ../includes/providers/class-unsplash.php:140
3020
+ #: ../includes/providers/class-wikimedia.php:141
3021
+ msgid "Parsing request error"
3022
+ msgstr ""
3023
+
3024
+ #: ../includes/providers/class-unsplash.php:22
3025
+ msgid "Unsplash"
3026
+ msgstr ""
3027
+
3028
+ #: ../includes/providers/class-unsplash.php:49
3029
+ msgid "Enable Unsplash."
3030
+ msgstr ""
3031
+
3032
+ #: ../includes/providers/class-unsplash.php:51
3033
+ msgid "Access key"
3034
+ msgstr ""
3035
+
3036
+ #: ../includes/providers/class-unsplash.php:52
3037
+ #, php-format
3038
+ msgid "Provide your <a href=\"%s\">Unsplash API key</a>."
3039
+ msgstr ""
3040
+
3041
+ #: ../includes/providers/class-wikimedia.php:22
3042
+ msgid "Wikimedia"
3043
+ msgstr ""
3044
+
3045
+ #: ../includes/providers/class-wikimedia.php:56
3046
+ msgid "Enable Wikimedia."
3047
+ msgstr ""
3048
+
3049
+ #: ../responsive-lightbox.php:690
3050
+ msgid "Publish Galleries"
3051
+ msgstr ""
3052
+
3053
+ #: ../responsive-lightbox.php:691
3054
+ msgid "Edit Galleries"
3055
+ msgstr ""
3056
+
3057
+ #: ../responsive-lightbox.php:692
3058
+ msgid "Edit Published Galleries"
3059
+ msgstr ""
3060
+
3061
+ #: ../responsive-lightbox.php:693
3062
+ msgid "Edit Others Galleries"
3063
+ msgstr ""
3064
+
3065
+ #: ../responsive-lightbox.php:694
3066
+ msgid "Edit Private Galleries"
3067
+ msgstr ""
3068
+
3069
+ #: ../responsive-lightbox.php:695
3070
+ msgid "Delete Galleries"
3071
+ msgstr ""
3072
+
3073
+ #: ../responsive-lightbox.php:696
3074
+ msgid "Delete Published Galleries"
3075
+ msgstr ""
3076
+
3077
+ #: ../responsive-lightbox.php:697
3078
+ msgid "Delete Others Galleries"
3079
+ msgstr ""
3080
+
3081
+ #: ../responsive-lightbox.php:698
3082
+ msgid "Delete Private Galleries"
3083
+ msgstr ""
3084
+
3085
+ #: ../responsive-lightbox.php:699
3086
+ msgid "Read Private Galleries"
3087
+ msgstr ""
3088
+
3089
+ #: ../responsive-lightbox.php:700
3090
+ msgid "Manage Gallery Categories"
3091
+ msgstr ""
3092
+
3093
+ #: ../responsive-lightbox.php:701
3094
+ msgid "Manage Gallery Tags"
3095
+ msgstr ""
3096
+
3097
+ #: ../responsive-lightbox.php:702
3098
+ msgid "Manage Settings"
3099
+ msgstr ""
3100
+
3101
+ #: ../responsive-lightbox.php:764
3102
+ #, php-format
3103
+ msgid ""
3104
+ "Hey, you've been using <strong>Responsive Lightbox & Gallery</strong> for "
3105
+ "more than %s"
3106
+ msgstr ""
3107
+
3108
+ #: ../responsive-lightbox.php:764
3109
+ msgid ""
3110
+ "Could you please do me a BIG favor and give it a 5-star rating on WordPress "
3111
+ "to help us spread the word and boost our motivation."
3112
+ msgstr ""
3113
+
3114
+ #: ../responsive-lightbox.php:764
3115
+ msgid "Your help is much appreciated. Thank you very much"
3116
+ msgstr ""
3117
+
3118
+ #: ../responsive-lightbox.php:764
3119
+ #, php-format
3120
+ msgid "founder of <a href=\"%s\" target=\"_blank\">dFactory</a> plugins."
3121
+ msgstr ""
3122
+
3123
+ #: ../responsive-lightbox.php:764
3124
+ #, php-format
3125
+ msgid ""
3126
+ "<a href=\"%s\" class=\"rl-dismissible-notice\" target=\"_blank\" rel="
3127
+ "\"noopener\">Ok, you deserve it</a><br /><a href=\"javascript:void(0);\" "
3128
+ "class=\"rl-dismissible-notice rl-delay-notice\" rel=\"noopener\">Nope, maybe "
3129
+ "later</a><br /><a href=\"javascript:void(0);\" class=\"rl-dismissible-notice"
3130
+ "\" rel=\"noopener\">I already did</a>"
3131
+ msgstr ""
3132
+
3133
+ #: ../responsive-lightbox.php:889
3134
+ msgid "Support"
3135
+ msgstr ""
3136
+
3137
+ #: ../responsive-lightbox.php:953
3138
+ msgid "We're sorry to see you go. Could you please tell us what happened?"
3139
+ msgstr ""
3140
+
3141
+ #: ../responsive-lightbox.php:957
3142
+ msgid "I couldn't figure out how to make it work."
3143
+ msgstr ""
3144
+
3145
+ #: ../responsive-lightbox.php:958
3146
+ msgid "I found another plugin to use for the same task."
3147
+ msgstr ""
3148
+
3149
+ #: ../responsive-lightbox.php:959
3150
+ msgid "The User Interface is not clear to me."
3151
+ msgstr ""
3152
+
3153
+ #: ../responsive-lightbox.php:960
3154
+ msgid "The plugin is not what I was looking for."
3155
+ msgstr ""
3156
+
3157
+ #: ../responsive-lightbox.php:961
3158
+ msgid "Support isn't timely."
3159
+ msgstr ""
3160
+
3161
+ #: ../responsive-lightbox.php:962
3162
+ msgid "Other"
3163
+ msgstr ""
3164
+
3165
+ #: ../responsive-lightbox.php:977
3166
+ msgid "Deactivate"
3167
+ msgstr ""
3168
+
3169
+ #: ../responsive-lightbox.php:978
3170
+ msgid "Deactivate & Submit"
3171
+ msgstr ""
3172
+
3173
+ #: ../responsive-lightbox.php:1068
3174
+ msgid "Search Gallery Categories"
3175
+ msgstr ""
3176
+
3177
+ #: ../responsive-lightbox.php:1069
3178
+ msgid "All Gallery Categories"
3179
+ msgstr ""
3180
+
3181
+ #: ../responsive-lightbox.php:1070
3182
+ msgid "Parent Gallery Category"
3183
+ msgstr ""
3184
+
3185
+ #: ../responsive-lightbox.php:1071
3186
+ msgid "Parent Gallery Category:"
3187
+ msgstr ""
3188
+
3189
+ #: ../responsive-lightbox.php:1072
3190
+ msgid "Edit Gallery Category"
3191
+ msgstr ""
3192
+
3193
+ #: ../responsive-lightbox.php:1073
3194
+ msgid "View Gallery Category"
3195
+ msgstr ""
3196
+
3197
+ #: ../responsive-lightbox.php:1074
3198
+ msgid "Update Gallery Category"
3199
+ msgstr ""
3200
+
3201
+ #: ../responsive-lightbox.php:1075
3202
+ msgid "Add New Gallery Category"
3203
+ msgstr ""
3204
+
3205
+ #: ../responsive-lightbox.php:1076
3206
+ msgid "New Gallery Category Name"
3207
+ msgstr ""
3208
+
3209
+ #: ../responsive-lightbox.php:1111
3210
+ msgid "Search Gallery Tags"
3211
+ msgstr ""
3212
+
3213
+ #: ../responsive-lightbox.php:1112
3214
+ msgid "Popular Gallery Tags"
3215
+ msgstr ""
3216
+
3217
+ #: ../responsive-lightbox.php:1113
3218
+ msgid "All Gallery Tags"
3219
+ msgstr ""
3220
+
3221
+ #: ../responsive-lightbox.php:1116
3222
+ msgid "Edit Gallery Tag"
3223
+ msgstr ""
3224
+
3225
+ #: ../responsive-lightbox.php:1117
3226
+ msgid "Update Gallery Tag"
3227
+ msgstr ""
3228
+
3229
+ #: ../responsive-lightbox.php:1118
3230
+ msgid "Add New Gallery Tag"
3231
+ msgstr ""
3232
+
3233
+ #: ../responsive-lightbox.php:1119
3234
+ msgid "New Gallery Tag Name"
3235
+ msgstr ""
3236
+
3237
+ #: ../responsive-lightbox.php:1120
3238
+ msgid "Separate gallery tags with commas"
3239
+ msgstr ""
3240
+
3241
+ #: ../responsive-lightbox.php:1121
3242
+ msgid "Add or remove gallery tags"
3243
+ msgstr ""
3244
+
3245
+ #: ../responsive-lightbox.php:1122
3246
+ msgid "Choose from the most used gallery tags"
3247
+ msgstr ""
3248
+
3249
+ #: ../responsive-lightbox.php:1152
3250
+ msgid "Add New"
3251
+ msgstr ""
3252
+
3253
+ #: ../responsive-lightbox.php:1153
3254
+ msgid "Add New Gallery"
3255
+ msgstr ""
3256
+
3257
+ #: ../responsive-lightbox.php:1154
3258
+ msgid "Edit Gallery"
3259
+ msgstr ""
3260
+
3261
+ #: ../responsive-lightbox.php:1155
3262
+ msgid "New Gallery"
3263
+ msgstr ""
3264
+
3265
+ #: ../responsive-lightbox.php:1156
3266
+ msgid "View Gallery"
3267
+ msgstr ""
3268
+
3269
+ #: ../responsive-lightbox.php:1157
3270
+ msgid "View Galleries"
3271
+ msgstr ""
3272
+
3273
+ #: ../responsive-lightbox.php:1158
3274
+ msgid "Search Galleries"
3275
+ msgstr ""
3276
+
3277
+ #: ../responsive-lightbox.php:1159
3278
+ msgid "No galleries found"
3279
+ msgstr ""
3280
+
3281
+ #: ../responsive-lightbox.php:1160
3282
+ msgid "No galleries found in trash"
3283
+ msgstr ""
3284
+
3285
+ #: ../responsive-lightbox.php:1161
3286
+ msgid "All Galleries"
3287
+ msgstr ""
3288
+
3289
+ #: ../responsive-lightbox.php:1298
3290
+ msgid "New gallery"
3291
+ msgstr ""
3292
+
3293
+ #: ../responsive-lightbox.php:1318
3294
+ msgid "Edit category"
3295
+ msgstr ""
3296
+
3297
+ #: ../responsive-lightbox.php:1338
3298
+ msgid "Edit tag"
3299
+ msgstr ""
3300
+
3301
+ #: ../responsive-lightbox.php:1411 ../responsive-lightbox.php:1412
3302
+ msgid "Gallery updated."
3303
+ msgstr ""
3304
+
3305
+ #: ../responsive-lightbox.php:1413
3306
+ #, php-format
3307
+ msgid "Gallery restored to revision from %s"
3308
+ msgstr ""
3309
+
3310
+ #: ../responsive-lightbox.php:1414
3311
+ msgid "Gallery published."
3312
+ msgstr ""
3313
+
3314
+ #: ../responsive-lightbox.php:1415
3315
+ msgid "Gallery saved."
3316
+ msgstr ""
3317
+
3318
+ #: ../responsive-lightbox.php:1416
3319
+ msgid "Gallery submitted."
3320
+ msgstr ""
3321
+
3322
+ #: ../responsive-lightbox.php:1418
3323
+ #, php-format
3324
+ msgid "Gallery scheduled for: <strong>%1$s</strong>."
3325
+ msgstr ""
3326
+
3327
+ #: ../responsive-lightbox.php:1419
3328
+ msgid "M j, Y @ G:i"
3329
+ msgstr ""
3330
+
3331
+ #: ../responsive-lightbox.php:1421
3332
+ msgid "Gallery draft updated."
3333
+ msgstr ""
3334
+
3335
+ #: ../responsive-lightbox.php:1427
3336
+ msgid "View gallery"
3337
+ msgstr ""
3338
+
3339
+ #: ../responsive-lightbox.php:1433
3340
+ msgid "Preview gallery"
3341
+ msgstr ""
3342
+
3343
+ #: ../responsive-lightbox.php:1468
3344
+ msgid "Search Tags"
3345
+ msgstr ""
3346
+
3347
+ #: ../responsive-lightbox.php:1469
3348
+ msgid "All Tags"
3349
+ msgstr ""
3350
+
3351
+ #: ../responsive-lightbox.php:1470
3352
+ msgid "Edit Tag"
3353
+ msgstr ""
3354
+
3355
+ #: ../responsive-lightbox.php:1471
3356
+ msgid "Update Tag"
3357
+ msgstr ""
3358
+
3359
+ #: ../responsive-lightbox.php:1472
3360
+ msgid "Add New Tag"
3361
+ msgstr ""
3362
+
3363
+ #: ../responsive-lightbox.php:1473
3364
+ msgid "New Tag Name"
3365
+ msgstr ""
3366
+
3367
+ #: ../responsive-lightbox.php:1474
3368
+ msgid "No tags found."
3369
+ msgstr ""
3370
+
3371
+ #: ../responsive-lightbox.php:1549
3372
+ msgid "Search Folders"
3373
+ msgstr ""
3374
+
3375
+ #: ../responsive-lightbox.php:1551
3376
+ msgid "Parent Folder"
3377
+ msgstr ""
3378
+
3379
+ #: ../responsive-lightbox.php:1552
3380
+ msgid "Parent Folder:"
3381
+ msgstr ""
3382
+
3383
+ #: ../responsive-lightbox.php:1553
3384
+ msgid "Edit Folder"
3385
+ msgstr ""
3386
+
3387
+ #: ../responsive-lightbox.php:1554
3388
+ msgid "Update Folder"
3389
+ msgstr ""
3390
+
3391
+ #: ../responsive-lightbox.php:1555
3392
+ msgid "Add New Folder"
3393
+ msgstr ""
3394
+
3395
+ #: ../responsive-lightbox.php:1556
3396
+ msgid "New Folder Name"
3397
+ msgstr ""
3398
+
3399
+ #: ../responsive-lightbox.php:1557
3400
+ msgid "No folders found."
3401
+ msgstr ""
3402
+
3403
+ #: ../responsive-lightbox.php:1590
3404
+ msgid "Are you sure you want to reset these settings to defaults?"
3405
+ msgstr ""
3406
+
3407
+ #: ../responsive-lightbox.php:1612 ../responsive-lightbox.php:1737
3408
+ msgid "Use these images"
3409
+ msgstr ""
3410
+
3411
+ #: ../responsive-lightbox.php:1613
3412
+ msgid "Edit attachment"
3413
+ msgstr ""
3414
+
3415
+ #: ../responsive-lightbox.php:1614
3416
+ msgid "Save attachment"
3417
+ msgstr ""
3418
+
3419
+ #: ../responsive-lightbox.php:1639
3420
+ msgid "Responsive Lightbox & Gallery - Deactivation survey"
3421
+ msgstr ""
3422
+
3423
+ #: ../responsive-lightbox.php:1738
3424
+ msgid "Use this image"
3425
+ msgstr ""
readme.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: dfactory
3
  Donate link: http://www.dfactory.eu/
4
  Tags: gallery, galleries, image, images, responsive, lightbox, photo, photography, masonry, video, builder
5
  Requires at least: 5.0
6
- Tested up to: 5.6.1
7
- Stable tag: 2.3.2
8
  Requires PHP: 5.2.4
9
  License: MIT License
10
  License URI: http://opensource.org/licenses/MIT
@@ -139,6 +139,11 @@ Responsive Lightbox and Gallery plugin comes with many styles and effects alread
139
 
140
  == Changelog ==
141
 
 
 
 
 
 
142
  = 2.3.2 =
143
  * Fix: Add option to enable/disable advanced capability management
144
  * Fix: Insert gallery into post not working in Gutenberg editor
@@ -460,5 +465,7 @@ Initial release
460
 
461
  == Upgrade Notice ==
462
 
463
- = 2.3.2 =
464
- * Fix: Multiple bugfixes and improvements
 
 
3
  Donate link: http://www.dfactory.eu/
4
  Tags: gallery, galleries, image, images, responsive, lightbox, photo, photography, masonry, video, builder
5
  Requires at least: 5.0
6
+ Tested up to: 5.8.1
7
+ Stable tag: 2.3.3
8
  Requires PHP: 5.2.4
9
  License: MIT License
10
  License URI: http://opensource.org/licenses/MIT
139
 
140
  == Changelog ==
141
 
142
+ = 2.3.3 =
143
+ * Fix: Invalid argument in upgrader process
144
+ * Fix: Widgets warning in WordPress 5.8
145
+ * Fix: Warning in wp_localize_script usage
146
+
147
  = 2.3.2 =
148
  * Fix: Add option to enable/disable advanced capability management
149
  * Fix: Insert gallery into post not working in Gutenberg editor
465
 
466
  == Upgrade Notice ==
467
 
468
+ = 2.3.3 =
469
+ * Fix: Invalid argument in upgrader process
470
+ * Fix: Widgets warning in WordPress 5.8
471
+ * Fix: Warning in wp_localize_script usage
responsive-lightbox.php CHANGED
@@ -2,7 +2,7 @@
2
  /*
3
  Plugin Name: Responsive Lightbox & Gallery
4
  Description: Responsive Lightbox & Gallery allows users to create galleries and view larger versions of images, galleries and videos in a lightbox (overlay) effect optimized for mobile devices.
5
- Version: 2.3.2
6
  Author: dFactory
7
  Author URI: http://www.dfactory.eu/
8
  Plugin URI: http://www.dfactory.eu/plugins/responsive-lightbox/
@@ -43,7 +43,7 @@ include_once( RESPONSIVE_LIGHTBOX_PATH . 'includes' . DIRECTORY_SEPARATOR . 'fun
43
  * Responsive Lightbox class.
44
  *
45
  * @class Responsive_Lightbox
46
- * @version 2.3.2
47
  */
48
  class Responsive_Lightbox {
49
 
@@ -305,7 +305,7 @@ class Responsive_Lightbox {
305
  'origin_left' => true,
306
  'origin_top' => true
307
  ),
308
- 'version' => '2.3.2',
309
  'activation_date' => ''
310
  );
311
  public $options = array();
@@ -560,7 +560,7 @@ class Responsive_Lightbox {
560
  */
561
  public function update_plugin( $upgrader_object, $options ) {
562
  // plugin update?
563
- if ( $options['action'] === 'update' && $options['type'] === 'plugin' ) {
564
  // get current plugin name
565
  $current_plugin = plugin_basename( __FILE__ );
566
 
@@ -1651,11 +1651,16 @@ class Responsive_Lightbox {
1651
  * @return void
1652
  */
1653
  public function init_gutenberg() {
 
 
1654
  // actions
1655
  add_action( 'enqueue_block_editor_assets', array( $this, 'gutenberg_enqueue_scripts' ) );
1656
 
1657
  // filters
1658
- add_filter( 'block_categories', array( $this, 'block_category' ) );
 
 
 
1659
  }
1660
 
1661
  /**
@@ -1681,10 +1686,26 @@ class Responsive_Lightbox {
1681
  * @return void
1682
  */
1683
  public function gutenberg_enqueue_scripts() {
 
 
 
1684
  $rl = Responsive_Lightbox();
1685
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1686
  // enqueue script
1687
- wp_enqueue_script( 'responsive-lightbox-block-editor-script', RESPONSIVE_LIGHTBOX_URL . '/js/gutenberg.min.js', array( 'wp-blocks', 'wp-i18n', 'wp-element', 'wp-editor', 'wp-components' ), $rl->defaults['version'] );
1688
 
1689
  // enqueue styles
1690
  wp_enqueue_style( 'responsive-lightbox-block-editor-styles', RESPONSIVE_LIGHTBOX_URL . '/css/gutenberg.min.css', '', $rl->defaults['version'] );
2
  /*
3
  Plugin Name: Responsive Lightbox & Gallery
4
  Description: Responsive Lightbox & Gallery allows users to create galleries and view larger versions of images, galleries and videos in a lightbox (overlay) effect optimized for mobile devices.
5
+ Version: 2.3.3
6
  Author: dFactory
7
  Author URI: http://www.dfactory.eu/
8
  Plugin URI: http://www.dfactory.eu/plugins/responsive-lightbox/
43
  * Responsive Lightbox class.
44
  *
45
  * @class Responsive_Lightbox
46
+ * @version 2.3.3
47
  */
48
  class Responsive_Lightbox {
49
 
305
  'origin_left' => true,
306
  'origin_top' => true
307
  ),
308
+ 'version' => '2.3.3',
309
  'activation_date' => ''
310
  );
311
  public $options = array();
560
  */
561
  public function update_plugin( $upgrader_object, $options ) {
562
  // plugin update?
563
+ if ( $options['action'] === 'update' && $options['type'] === 'plugin' && array_key_exists( 'plugins', $options ) && is_array( $options['plugins'] ) ) {
564
  // get current plugin name
565
  $current_plugin = plugin_basename( __FILE__ );
566
 
1651
  * @return void
1652
  */
1653
  public function init_gutenberg() {
1654
+ global $wp_version;
1655
+
1656
  // actions
1657
  add_action( 'enqueue_block_editor_assets', array( $this, 'gutenberg_enqueue_scripts' ) );
1658
 
1659
  // filters
1660
+ if ( version_compare( $wp_version, '5.8', '>=' ) )
1661
+ add_filter( 'block_categories_all', array( $this, 'block_category' ) );
1662
+ else
1663
+ add_filter( 'block_categories', array( $this, 'block_category' ) );
1664
  }
1665
 
1666
  /**
1686
  * @return void
1687
  */
1688
  public function gutenberg_enqueue_scripts() {
1689
+ global $pagenow;
1690
+
1691
+ // get main instance
1692
  $rl = Responsive_Lightbox();
1693
 
1694
+ // block editor dependencies
1695
+ $dependencies = [ 'wp-blocks', 'wp-i18n', 'wp-element', 'wp-components' ];
1696
+
1697
+ // widgets page?
1698
+ if ( $pagenow === 'widgets.php' )
1699
+ $dependencies[] = 'wp-edit-widgets';
1700
+ // customizer?
1701
+ elseif ( $pagenow === 'customize.php' )
1702
+ $dependencies[] = 'wp-customize-widgets';
1703
+ // post page?
1704
+ else
1705
+ $dependencies[] = 'wp-editor';
1706
+
1707
  // enqueue script
1708
+ wp_enqueue_script( 'responsive-lightbox-block-editor-script', RESPONSIVE_LIGHTBOX_URL . '/js/gutenberg.min.js', $dependencies, $rl->defaults['version'] );
1709
 
1710
  // enqueue styles
1711
  wp_enqueue_style( 'responsive-lightbox-block-editor-styles', RESPONSIVE_LIGHTBOX_URL . '/css/gutenberg.min.css', '', $rl->defaults['version'] );