Shortcodes Ultimate - Version 5.6.1

Version Description

What's new

  • Comments in the [su_posts] shortcode can now be disabled from post editing screen or, using the Disable Comments plugin. Thanks to Jrn Lund.
  • [su_image_carousel] will now display post titles instead of image captions, where applicable. Details & How to disable it.

Fixes

  • Fixed Warning: A non-numeric value encountered in [su_slider], [su_carousel], and [su_custom_gallery]
  • Fixed download attribute of the [su_button] shortcode
  • Fixed issue with [su_spoiler] where nested [su_youtube] remains clickable if spoiler is closed
Download this release

Release Info

Developer gn_themes
Plugin Icon 128x128 Shortcodes Ultimate
Version 5.6.1
Comparing to
See all releases

Code changes from version 5.6.0 to 5.6.1

admin/class-shortcodes-ultimate-admin-addons.php CHANGED
@@ -103,4 +103,18 @@ final class Shortcodes_Ultimate_Admin_Addons extends Shortcodes_Ultimate_Admin {
103
 
104
  }
105
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
106
  }
103
 
104
  }
105
 
106
+ public function get_addon_permalink( $addon ) {
107
+
108
+ $utm = array( 'admin-menu', 'add-ons', 'wp-dashboard' );
109
+
110
+ // phpcs:disable
111
+ if ( isset( $_GET['from-generator'] ) ) {
112
+ $utm[0] = 'generator';
113
+ }
114
+ // phpcs:enable
115
+
116
+ return su_get_utm_link( $addon['permalink'], $utm );
117
+
118
+ }
119
+
120
  }
admin/partials/extra/available-shortcodes.php CHANGED
@@ -6,7 +6,7 @@
6
  <h2 class="su-admin-shortcodes-extra-title"><?php esc_html_e( 'Extra Shortcodes', 'shortcodes-ultimate' ); ?></h2>
7
  <p class="su-admin-shortcodes-extra-description"><?php esc_html_e( 'This add-on extends Shortcodes Ultimate with 15 new shortcodes. Parallax sections, responsive content slider, pricing tables and more', 'shortcodes-ultimate' ); ?></p>
8
  <p class="su-admin-shortcodes-extra-action">
9
- <a href="https://getshortcodes.com/add-ons/extra-shortcodes/?utm_source=wp-dash&amp;utm_medium=available-shortcodes&amp;utm_campaign=extra-shortcode" target="_blank" class="button button-primary"><?php esc_html_e( 'Details & Pricing', 'shortcodes-ultimate' ); ?> &rarr;</a>
10
  </p>
11
  <div class="su-admin-shortcodes-extra-screenshot">
12
  <img src="<?php echo esc_attr( $this->get_image_url( 'screenshots/' . $data['id'] . '.png' ) ); ?>">
6
  <h2 class="su-admin-shortcodes-extra-title"><?php esc_html_e( 'Extra Shortcodes', 'shortcodes-ultimate' ); ?></h2>
7
  <p class="su-admin-shortcodes-extra-description"><?php esc_html_e( 'This add-on extends Shortcodes Ultimate with 15 new shortcodes. Parallax sections, responsive content slider, pricing tables and more', 'shortcodes-ultimate' ); ?></p>
8
  <p class="su-admin-shortcodes-extra-action">
9
+ <a href="<?php echo esc_attr( su_get_utm_link( 'https://getshortcodes.com/add-ons/extra-shortcodes/', array( 'available-shortcodes', 'extra-shortcode', 'wp-dashboard' ) ) ); ?>" target="_blank" class="button button-primary"><?php esc_html_e( 'Details & Pricing', 'shortcodes-ultimate' ); ?> &rarr;</a>
10
  </p>
11
  <div class="su-admin-shortcodes-extra-screenshot">
12
  <img src="<?php echo esc_attr( $this->get_image_url( 'screenshots/' . $data['id'] . '.png' ) ); ?>">
admin/partials/extra/generator.php CHANGED
@@ -14,7 +14,7 @@
14
  <h3 class="su-generator-extra-banner-title"><?php esc_html_e( 'Extra Shortcodes', 'shortcodes-ultimate' ); ?></h3>
15
  <p class="su-generator-extra-banner-description"><?php esc_html_e( 'This add-on extends Shortcodes Ultimate with 15 new shortcodes. Parallax sections, responsive content slider, pricing tables and more', 'shortcodes-ultimate' ); ?></p>
16
  <p class="su-generator-extra-banner-action">
17
- <a href="https://getshortcodes.com/add-ons/extra-shortcodes/?utm_source=wp-dash&amp;utm_medium=generator&amp;utm_campaign=extra-shortcode" target="_blank" class="button button-primary"><?php esc_html_e( 'Details & Pricing', 'shortcodes-ultimate' ); ?> &rarr;</a>
18
  </p>
19
  <div class="su-generator-extra-banner-screenshot">
20
  <img src="<?php echo esc_attr( $this->get_image_url( 'screenshots/' . $data['id'] . '.png' ) ); ?>">
14
  <h3 class="su-generator-extra-banner-title"><?php esc_html_e( 'Extra Shortcodes', 'shortcodes-ultimate' ); ?></h3>
15
  <p class="su-generator-extra-banner-description"><?php esc_html_e( 'This add-on extends Shortcodes Ultimate with 15 new shortcodes. Parallax sections, responsive content slider, pricing tables and more', 'shortcodes-ultimate' ); ?></p>
16
  <p class="su-generator-extra-banner-action">
17
+ <a href="<?php echo esc_attr( su_get_utm_link( 'https://getshortcodes.com/add-ons/extra-shortcodes/', array( 'generator', 'extra-shortcode', 'wp-dashboard' ) ) ); ?>" target="_blank" class="button button-primary"><?php esc_html_e( 'Details & Pricing', 'shortcodes-ultimate' ); ?> &rarr;</a>
18
  </p>
19
  <div class="su-generator-extra-banner-screenshot">
20
  <img src="<?php echo esc_attr( $this->get_image_url( 'screenshots/' . $data['id'] . '.png' ) ); ?>">
admin/partials/pages/addons.php CHANGED
@@ -27,7 +27,7 @@
27
  <span class="button"><?php esc_html_e( 'Learn more', 'shortcodes-ultimate' ); ?></span>
28
  </div>
29
  </div>
30
- <a href="<?php echo esc_attr( $addon['permalink'] ); ?>" target="_blank" rel="noopener" class="su-admin-addons-item-overlay"><?php esc_html_e( 'Learn more about', 'shortcodes-ultimate' ); ?> <?php echo esc_html( $addon['title'] ); ?></a>
31
  </div>
32
 
33
  <?php endforeach; ?>
27
  <span class="button"><?php esc_html_e( 'Learn more', 'shortcodes-ultimate' ); ?></span>
28
  </div>
29
  </div>
30
+ <a href="<?php echo esc_attr( $this->get_addon_permalink( $addon ) ); ?>" target="_blank" rel="noopener" class="su-admin-addons-item-overlay"><?php esc_html_e( 'Learn more about', 'shortcodes-ultimate' ); ?> <?php echo esc_html( $addon['title'] ); ?></a>
31
  </div>
32
 
33
  <?php endforeach; ?>
inc/core/generator.php CHANGED
@@ -179,7 +179,7 @@ class Su_Generator {
179
 
180
  // Add add-ons links
181
  if ( ! self::is_addons_active() ) {
182
- $tools[] = '<a href="' . admin_url( 'admin.php?page=shortcodes-ultimate-addons' ) . '" target="_blank" title="' . __( 'Add-ons', 'shortcodes-ultimate' ) . '" class="su-add-ons">&#9733; ' . __( 'Premium Add-ons', 'shortcodes-ultimate' ) . '</a>';
183
  }
184
  ?>
185
  <div id="su-generator-wrap" style="display:none">
179
 
180
  // Add add-ons links
181
  if ( ! self::is_addons_active() ) {
182
+ $tools[] = '<a href="' . admin_url( 'admin.php?page=shortcodes-ultimate-addons&from-generator' ) . '" target="_blank" title="' . __( 'Add-ons', 'shortcodes-ultimate' ) . '" class="su-add-ons">&#9733; ' . __( 'Premium Add-ons', 'shortcodes-ultimate' ) . '</a>';
183
  }
184
  ?>
185
  <div id="su-generator-wrap" style="display:none">
inc/core/tools.php CHANGED
@@ -32,8 +32,8 @@ function su_image_resize( $url, $width = null, $height = null, $crop = true, $re
32
  $file_path = str_replace( $blog_details->path . 'files/', '/wp-content/blogs.dir/' . $blog_id . '/files/', $file_path );
33
  }
34
  // Destination width and height variables
35
- $dest_width = $width * $retina;
36
- $dest_height = $height * $retina;
37
  // File name suffix (appended to original file name)
38
  $suffix = "{$dest_width}x{$dest_height}";
39
  // Some additional info about the image
32
  $file_path = str_replace( $blog_details->path . 'files/', '/wp-content/blogs.dir/' . $blog_id . '/files/', $file_path );
33
  }
34
  // Destination width and height variables
35
+ $dest_width = intval( $width ) * intval( $retina );
36
+ $dest_height = intval( $height ) * intval( $retina );
37
  // File name suffix (appended to original file name)
38
  $suffix = "{$dest_width}x{$dest_height}";
39
  // Some additional info about the image
includes/css/shortcodes.css CHANGED
@@ -1 +1 @@
1
- .su-u-clearfix::after{content:'';display:table;clear:both}.su-u-trim>:first-child{margin-top:0}.su-u-trim>:last-child{margin-bottom:0}.su-u-responsive-media-yes{position:relative;padding-bottom:56.25%;height:0;overflow:hidden}.su-u-responsive-media-yes .fluid-width-video-wrapper,.su-u-responsive-media-yes .video-holder{position:static !important}.su-u-responsive-media-yes iframe,.su-u-responsive-media-yes object,.su-u-responsive-media-yes embed{position:absolute;top:0;left:0;width:100%;height:100%}.su-accordion{margin-bottom:1.5em}.su-accordion .su-spoiler{margin-bottom:0.5em}.su-audio{position:relative;width:100%;height:30px;margin-bottom:1.5em;background:#7c8781;background:-webkit-gradient(linear, left top, left bottom, from(#7c8781), to(#0a0809));background:-webkit-linear-gradient(top, #7c8781 0%, #0a0809 100%);background:linear-gradient(to bottom, #7c8781 0%, #0a0809 100%);border-radius:3px}.su-audio .jp-play,.su-audio .jp-pause{position:absolute;left:0;top:0;display:block;width:30px;height:30px;border-top-left-radius:3px;border-bottom-left-radius:3px;cursor:pointer;border-right:1px solid #454947;background-image:url("../images/player/default.png");background-repeat:no-repeat}.su-audio .jp-play{background-position:0 0}.su-audio .jp-pause{background-position:-30px 0}.su-audio .jp-current-time,.su-audio .jp-duration{position:absolute;top:0;display:block;height:30px;line-height:30px;font-size:10px;color:#eee;text-shadow:0 -1px 0 #000}.su-audio .jp-current-time{left:45px}.su-audio .jp-duration{right:10px}.su-audio .jp-seek-bar,.su-audio .jp-play-bar{position:absolute;top:0;left:0;height:10px;border-radius:3px;cursor:pointer}.su-audio .jp-progress{position:absolute;top:10px;left:85px;right:50px;height:10px;background:#333;box-shadow:0 0 5px #000 inset;border-radius:3px}.su-audio .jp-seek-bar{background:#0b0b0b;background:-webkit-gradient(linear, left top, left bottom, from(#0b0b0b), to(#666));background:-webkit-linear-gradient(top, #0b0b0b 0%, #666 100%);background:linear-gradient(to bottom, #0b0b0b 0%, #666 100%)}.su-audio .jp-play-bar{background:#6db3f2;background:-webkit-gradient(linear, left top, left bottom, from(#6db3f2), color-stop(50%, #54a3ee), color-stop(51%, #3690f0), to(#1e69de));background:-webkit-linear-gradient(top, #6db3f2 0%, #54a3ee 50%, #3690f0 51%, #1e69de 100%);background:linear-gradient(to bottom, #6db3f2 0%, #54a3ee 50%, #3690f0 51%, #1e69de 100%)}.su-box{margin:0 0 1.5em;border-width:2px;border-style:solid}.su-box-title{display:block;padding:0.5em 1em;font-weight:bold;font-size:1.1em}.su-box-content{background-color:#fff;color:#444;padding:1em}.su-box-style-soft .su-box-title{background-image:url("../images/styles/style-soft.png");background-position:0 0;background-repeat:repeat-x}.su-box-style-glass .su-box-title{background-image:url("../images/styles/style-glass.png");background-position:0 50%;background-repeat:repeat-x}.su-box-style-bubbles .su-box-title{background-image:url("../images/styles/style-bubbles.png");background-position:0 50%;background-repeat:repeat-x}.su-box-style-noise .su-box-title{background-image:url("../images/styles/style-noise.png");background-position:0 0;background-repeat:repeat-x}.su-button{display:inline-block !important;text-align:center;text-decoration:none !important;box-sizing:content-box !important;-webkit-transition:all 0.2s;transition:all 0.2s}.su-button-wide{display:block !important;margin:1em 0}.su-button-center{text-align:center}.su-button span{display:block !important;text-decoration:none !important;box-sizing:content-box !important;-webkit-transition:all 0.2s;transition:all 0.2s}.su-button img{border:none !important;vertical-align:middle !important;margin:-0.2em 0.4em 0 -0.3em !important;box-shadow:none !important}.su-button i{display:inline-block;width:1em;height:1em;margin:0 0.5em 0 0 !important;text-align:center;line-height:1em}.su-button.su-button-float-icon img{margin:0 0.5em !important}.su-button small{display:block;margin:-0.2em 0 0;color:inherit;text-align:center;font-style:normal;font-size:0.8em;line-height:1;opacity:0.7}@media screen and (max-width: 768px){.su-button span{padding-top:0.25em !important;padding-bottom:0.25em !important;line-height:1.2 !important}.su-button small{margin-top:0.2em !important}}.su-button-style-default{border-width:1px;border-style:solid}.su-button-style-default:hover{opacity:0.7}.su-button-style-default span{border-top-width:1px;border-bottom-width:1px;border-top-style:solid;border-bottom-style:solid}.su-button-style-flat,.su-button-style-flat span{border:none}.su-button-style-flat span{position:relative}.su-button-style-flat:hover span{top:1px}.su-button-style-ghost{background:transparent !important}.su-button-style-ghost span{border-width:3px;border-style:solid}.su-button-style-ghost:hover span{border-color:inherit !important}.su-button-style-soft span{background:0 -20px url("../images/styles/style-soft.png") repeat-x}.su-button-style-soft:hover span{background:0 0 url("../images/styles/style-soft.png") repeat-x}.su-button-style-glass span{background:0 50% url("../images/styles/style-glass.png") repeat-x}.su-button-style-glass:hover span{background:100% 50% url("../images/styles/style-glass.png") repeat-x}.su-button-style-bubbles span{background:0 50% url("../images/styles/style-bubbles.png") no-repeat}.su-button-style-bubbles:hover span{background:-710px 50% url("../images/styles/style-bubbles.png") no-repeat}.su-button-style-noise span{background:0 0 url("../images/styles/style-noise.png") repeat-x}.su-button-style-noise:hover span{background:0 0 url("../images/styles/style-noise.png") repeat-x}.su-button-style-stroked span{margin:1px;border:1px dashed #fff !important}.su-button-style-stroked:hover span{opacity:0.7}.su-button-style-3d{border-bottom-style:solid;border-bottom-width:6px}.su-button-style-3d span{border-bottom-style:solid;border-bottom-width:1px}.su-button-style-3d:hover{position:relative;top:3px;border-bottom-width:3px}.su-carousel{position:relative;margin-bottom:1.5em;overflow:hidden;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1}.su-carousel-centered{margin:0 auto 1.5em}.su-carousel-slides{position:relative;width:100%;-webkit-transition-property:-webkit-transform, left, top;-webkit-transition-duration:0s;-webkit-transform:translate3d(0, 0, 0);-webkit-transition-timing-function:ease;-moz-transition-property:-moz-transform, left, top;-moz-transition-duration:0s;-moz-transform:translate3d(0, 0, 0);-moz-transition-timing-function:ease;-o-transition-property:-o-transform, left, top;-o-transition-duration:0s;-o-transform:translate3d(0, 0, 0);-o-transition-timing-function:ease;-o-transform:translate(0, 0);-ms-transition-property:-ms-transform, left, top;-ms-transition-duration:0s;-ms-transform:translate3d(0, 0, 0);-ms-transition-timing-function:ease;-webkit-transition-property:left, top, -webkit-transform;transition-property:left, top, -webkit-transform;transition-property:transform, left, top;transition-property:transform, left, top, -webkit-transform;transition-duration:0s;transform:translate3d(0, 0, 0);transition-timing-function:ease}.swiper-free-mode>.su-carousel-slides{-webkit-transition-timing-function:ease-out;transition-timing-function:ease-out;margin:0 auto}.su-carousel-slide{position:relative;float:left}.su-carousel-slide>a,.su-carousel-slide>img,.su-carousel-slide>a>img{position:relative;display:block;width:100%;height:100%;text-decoration:none;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box}.su-carousel-responsive-yes .su-carousel-slide>a,.su-carousel-responsive-yes .su-carousel-slide>img,.su-carousel-responsive-yes .su-carousel-slide>a>img{height:auto}.su-carousel-pages-no .su-carousel-pagination{display:none}.swiper-wp8-horizontal{-ms-touch-action:pan-y}.swiper-wp8-vertical{-ms-touch-action:pan-x}.su-carousel .su-carousel-slide a{padding:0 5px}.su-carousel .su-carousel-slide img{padding:3px;border:1px solid #ccc;background:#fff;border-radius:5px;-moz-border-radius:5px;-webkit-border-radius:5px}.su-carousel .su-carousel-slide-title{position:absolute;left:9px;right:9px;bottom:4px;display:block;padding:2px 3px;color:#fff;line-height:1.2;font-size:11px;background:#000;background:rgba(0,0,0,0.5);box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;transition:opacity 1s;-o-transition:opacity 1s;-moz-transition:opacity 1s;-webkit-transition:opacity 1s}.su-carousel .su-carousel-prev,.su-carousel .su-carousel-next{position:absolute;top:50%;display:block;width:40px;height:40px;margin-top:-20px;background:#000 0 0 url("../images/swiper/default.png") no-repeat;background-color:rgba(0,0,0,0.5);cursor:pointer;border-radius:50%;-moz-border-radius:50%;-webkit-border-radius:50%;filter:alpha(opacity=0);opacity:0;-webkit-transition:all 0.2s;transition:all 0.2s}.su-carousel .su-carousel-prev{right:20px;margin-right:40px;background-position:-40px 0}.su-carousel .su-carousel-next{left:20px;margin-left:40px;background-position:0 0}.su-carousel:hover .su-carousel-prev,.su-carousel:hover .su-carousel-next{margin-left:0;margin-right:0;filter:alpha(opacity=70);opacity:0.7}.su-carousel .su-carousel-prev:hover,.su-carousel .su-carousel-next:hover{filter:alpha(opacity=100);opacity:1}.su-carousel .su-carousel-pagination{position:absolute;left:15%;right:15%;top:50%;width:70%;height:0;margin-top:-7px;text-align:center;cursor:default;filter:alpha(opacity=0);opacity:0;-webkit-transition:all 0.2s;transition:all 0.2s}.su-carousel:hover .su-carousel-pagination{bottom:20px;filter:alpha(opacity=100);opacity:1}.su-carousel .su-carousel-pagination span{display:inline-block;width:14px;height:14px;margin:0;background:#000 0 -999px url("../images/swiper/default.png") no-repeat;background-color:rgba(0,0,0,0.5);cursor:pointer;border-radius:50%;-moz-border-radius:50%;-webkit-border-radius:50%;-webkit-transition:all 0.2s;transition:all 0.2s}.su-carousel:hover .su-carousel-pagination span{margin:0 3px}.su-carousel .su-carousel-pagination span.swiper-visible-switch{background-color:#fff;background-color:rgba(255,255,255,0.5)}.su-carousel .su-carousel-pagination span:hover,.su-carousel .su-carousel-pagination span.swiper-active-switch{background-position:0 -40px}.su-row{clear:both;zoom:1;margin-bottom:1.5em}.su-row:before,.su-row:after{display:table;content:''}.su-row:after{clear:both}.su-column{display:block;margin:0 4% 0 0;float:left;box-sizing:border-box}.su-column-last{margin-right:0}.su-row .su-column{margin:0 0 0 4%}.su-row .su-column.su-column-size-1-1{margin-left:0;margin-right:0}.su-row .su-column:first-child{margin-left:0}.su-row .su-column.su-column-centered{margin-right:auto;margin-left:auto;float:none}.su-column img,.su-column iframe,.su-column object,.su-column embed{max-width:100%}@media only screen{[class*='su-column']+[class*='su-column']:last-child{float:right}}.su-column-size-1-1{width:100%}.su-column-size-1-2{width:48%}.su-column-size-1-3{width:30.66%}.su-column-size-2-3{width:65.33%}.su-column-size-1-4{width:22%}.su-column-size-3-4{width:74%}.su-column-size-1-5{width:16.8%}.su-column-size-2-5{width:37.6%}.su-column-size-3-5{width:58.4%}.su-column-size-4-5{width:79.2%}.su-column-size-1-6{width:13.33%}.su-column-size-5-6{width:82.66%}@media only screen and (max-width: 768px){.su-row .su-column{width:100%;margin:0 0 1.5em;float:none}.su-row .su-column:last-child{margin-bottom:0}}.su-custom-gallery{margin-bottom:1.5em}.su-custom-gallery:after,.su-custom-gallery:before{content:'';display:table}.su-custom-gallery:after{clear:both}.su-custom-gallery-slide{position:relative;float:left;margin:0.5em;overflow:hidden}.su-custom-gallery-slide a{display:block;width:100%;height:100%}.su-custom-gallery-slide img{display:block;margin:0;padding:3px;border:1px solid #ccc;background:#fff;box-sizing:border-box;border-radius:5px;box-shadow:none;-webkit-transition:all 0.2s;transition:all 0.2s}.su-custom-gallery-slide:hover img{background:#eee;border:1px solid #aaa}.su-custom-gallery-slide span{position:absolute;left:4px;bottom:4px;right:4px;display:block;padding:2px 4px;font-size:12px;color:#fff;background:#000;background:rgba(0,0,0,0.5);line-height:1.3;opacity:0;-webkit-transition:all 0.2s;transition:all 0.2s}.su-custom-gallery-slide:hover span{opacity:1}.su-custom-gallery-title-never span{display:none}.su-custom-gallery-title-always span{opacity:1}.su-dailymotion{margin:0 0 1.5em}.su-dailymotion iframe{border:none !important}.su-divider{clear:both;border:none;text-align:right;line-height:1}.su-divider a{display:inline-block;font-size:0.8em;text-decoration:none;outline:none;padding-bottom:5px}.su-divider-style-default{border-bottom-style:solid}.su-divider-style-dotted{border-bottom-style:dotted}.su-divider-style-dashed{border-bottom-style:dashed}.su-divider-style-double{border-bottom-style:double}.su-document{margin:0 0 1.5em}.su-document iframe{border:none !important}.su-dropcap{float:left;display:inline-block;width:2em;height:2em;margin:0.2em 0.5em 0.2em 0;line-height:2em;text-align:center;overflow:hidden;text-transform:uppercase}.su-dropcap-style-default{color:white;background:#45484d;background:-webkit-gradient(linear, left top, left bottom, from(#45484d), to(black));background:-webkit-linear-gradient(top, #45484d 0%, black 100%);background:linear-gradient(to bottom, #45484d 0%, black 100%);text-shadow:-1px -1px 0 black;border-radius:50%}.su-dropcap-style-flat{background:#444;color:#fff}.su-dropcap-style-light{color:#333;border-radius:50%;background:white;background:-webkit-gradient(linear, left top, left bottom, from(white), to(#eaeaea));background:-webkit-linear-gradient(top, white 0%, #eaeaea 100%);background:linear-gradient(to bottom, white 0%, #eaeaea 100%)}.su-dropcap-style-simple{width:1em;height:1em;line-height:1em;text-align:left}.su-expand{margin:0 0 1.5em}.su-expand-content{overflow:hidden}.su-expand-link{margin-top:0.5em;cursor:pointer}.su-expand-link:hover{opacity:0.7}.su-expand-link a,.su-expand-link a:hover,.su-expand-link a:active,.su-expand-link a:visited,.su-expand-link a:focus{display:inline;text-decoration:none;box-shadow:none;background:transparent;border:none}.su-expand-link-style-underlined .su-expand-link span{text-decoration:underline}.su-expand-link-style-dotted .su-expand-link span{border-bottom:1px dotted #333}.su-expand-link-style-dashed .su-expand-link span{border-bottom:1px dashed #333}.su-expand-link-style-button .su-expand-link a{display:inline-block;margin-top:0.2em;padding:0.2em 0.4em;border:2px solid #333}.su-expand-link-more{display:none}.su-expand-link-less{display:block}.su-expand-collapsed .su-expand-link-more{display:block}.su-expand-collapsed .su-expand-link-less{display:none}.su-expand-link i{display:inline-block;margin:0 0.3em 0 0;vertical-align:middle;color:inherit}.su-expand-link img{display:inline-block;width:1em;height:1em;margin:0 0.3em 0 0;vertical-align:middle}.su-frame,.su-frame-inner{display:block}.su-frame-align-left{float:left;margin:0 1em 1em 0}.su-frame-align-center{float:none;margin:1em auto}.su-frame-align-right{float:right;margin:0 0 1em 1em}.su-frame img{display:block !important;float:none !important;padding:0 !important;margin:0 !important;border:none !important;box-shadow:none !important}.su-frame-style-default{padding:2px;border:1px solid #999;background:#fff;box-shadow:1px 1px 4px #ccc}.su-frame-style-default .su-frame-inner{padding:2px;border:4px solid #eee}.su-gmap{margin:0 0 1.5em}.su-gmap iframe{border:none !important}.su-guests{margin-bottom:1.5em}.su-heading-style-default{padding:2px 0;border-top:1px solid #999;border-bottom:1px solid #999}.su-heading-style-default .su-heading-inner{padding:1em 0.5em;border-top:4px solid #eee;border-bottom:4px solid #eee}.su-heading.su-heading-align-left{text-align:left}.su-heading.su-heading-align-left .su-heading-inner{padding-left:0.2em}.su-heading.su-heading-align-right{text-align:right}.su-heading.su-heading-align-right .su-heading-inner{padding-right:0.2em}.su-heading.su-heading-align-center{text-align:center}.su-highlight{display:inline;padding:1px 0}.su-image-carousel{width:100%;margin:1.5em 0}.su-image-carousel:first-child{margin-top:0}.su-image-carousel:last-child{margin-bottom:0}.su-image-carousel-item{width:100%;box-sizing:border-box}.su-image-carousel .su-image-carousel-item-content{position:relative}.su-image-carousel .su-image-carousel-item-content a,.su-image-carousel .su-image-carousel-item-content a:hover,.su-image-carousel .su-image-carousel-item-content a:focus,.su-image-carousel .su-image-carousel-item-content a:visited,.su-image-carousel .su-image-carousel-item-content a:active,.su-image-carousel .su-image-carousel-item-content img{display:block;width:100%;height:100%;margin:0;padding:0;box-sizing:border-box;box-shadow:none;text-decoration:none;border:none;border-radius:0}.su-image-carousel .su-image-carousel-item-content a::before,.su-image-carousel .su-image-carousel-item-content a::after,.su-image-carousel .su-image-carousel-item-content img::before,.su-image-carousel .su-image-carousel-item-content img::after{display:none}.su-image-carousel .su-image-carousel-item-content span{position:absolute;display:block;font-size:0.9em;max-height:60%;overflow:auto;line-height:1.3;word-wrap:break-word}.su-image-carousel .su-image-carousel-item-content span:empty{display:none}.su-image-carousel-columns-2 .su-image-carousel-item{width:50%}.su-image-carousel-columns-2.su-image-carousel-has-spacing .su-image-carousel-item{width:48.5%;margin-right:3%}.su-image-carousel-columns-3 .su-image-carousel-item{width:33.33333%}.su-image-carousel-columns-3.su-image-carousel-has-spacing .su-image-carousel-item{width:31.4%;margin-right:2.9%}.su-image-carousel-columns-4 .su-image-carousel-item{width:25%}.su-image-carousel-columns-4.su-image-carousel-has-spacing .su-image-carousel-item{width:22.9%;margin-right:2.8%}.su-image-carousel-columns-5 .su-image-carousel-item{width:20%}.su-image-carousel-columns-5.su-image-carousel-has-spacing .su-image-carousel-item{width:18%;margin-right:2.5%}.su-image-carousel-columns-6 .su-image-carousel-item{width:16.66667%}.su-image-carousel-columns-6.su-image-carousel-has-spacing .su-image-carousel-item{width:14.5%;margin-right:2.6%}.su-image-carousel-columns-7 .su-image-carousel-item{width:14.28571%}.su-image-carousel-columns-7.su-image-carousel-has-spacing .su-image-carousel-item{width:12.4%;margin-right:2.2%}.su-image-carousel-columns-8 .su-image-carousel-item{width:12.5%}.su-image-carousel-columns-8.su-image-carousel-has-spacing .su-image-carousel-item{width:10.75%;margin-right:2%}@media screen and (max-width: 768px){.su-image-carousel-adaptive .su-image-carousel-item{width:100% !important;margin-right:0 !important}}.su-image-carousel-crop .su-image-carousel-item-content::before{float:left;width:1px;margin-left:-1px;height:0;content:''}.su-image-carousel-crop .su-image-carousel-item-content::after{content:'';display:table;clear:both}.su-image-carousel-crop .su-image-carousel-item-content img{position:absolute;left:0;top:0;right:0;bottom:0;width:100%;height:100%;-o-object-fit:cover;object-fit:cover}.su-image-carousel-crop-16-9 .su-image-carousel-item-content::before{padding-top:56.25%}.su-image-carousel-crop-16-10 .su-image-carousel-item-content::before{padding-top:62.5%}.su-image-carousel-crop-21-9 .su-image-carousel-item-content::before{padding-top:42.85714%}.su-image-carousel-crop-5-4 .su-image-carousel-item-content::before{padding-top:80%}.su-image-carousel-crop-4-3 .su-image-carousel-item-content::before{padding-top:75%}.su-image-carousel-crop-3-2 .su-image-carousel-item-content::before{padding-top:66.66667%}.su-image-carousel-crop-2-1 .su-image-carousel-item-content::before{padding-top:50%}.su-image-carousel-crop-1-1 .su-image-carousel-item-content::before{padding-top:100%}.su-image-carousel-crop-1-2 .su-image-carousel-item-content::before{padding-top:200%}.su-image-carousel-crop-2-3 .su-image-carousel-item-content::before{padding-top:150%}.su-image-carousel-crop-3-4 .su-image-carousel-item-content::before{padding-top:133.33333%}.su-image-carousel-crop-4-5 .su-image-carousel-item-content::before{padding-top:125%}.su-image-carousel-crop-9-21 .su-image-carousel-item-content::before{padding-top:233.33333%}.su-image-carousel-crop-10-16 .su-image-carousel-item-content::before{padding-top:160%}.su-image-carousel-crop-9-16 .su-image-carousel-item-content::before{padding-top:177.77778%}.su-image-carousel-align-left{float:left;margin-right:1.5em;margin-top:0}.su-image-carousel-align-right{float:right;margin-left:1.5em;margin-top:0}.su-image-carousel-align-center{margin-right:auto;margin-left:auto}.su-image-carousel-align-full{margin-left:calc(50% - 50vw);margin-right:calc(50% - 50vw);max-width:100vw !important;width:100vw !important}.su-image-carousel button.flickity-prev-next-button{position:absolute;top:50%;display:block;width:44px;height:44px;margin:-22px 0 0;padding:0;opacity:0;outline:none;border-radius:50%;-webkit-transform:none;transform:none;-webkit-transition:opacity 0.2s ease, -webkit-transform 0.2s ease;transition:opacity 0.2s ease, -webkit-transform 0.2s ease;transition:opacity 0.2s ease, transform 0.2s ease;transition:opacity 0.2s ease, transform 0.2s ease, -webkit-transform 0.2s ease}.su-image-carousel:hover button.flickity-prev-next-button{opacity:0.5}.su-image-carousel button.flickity-prev-next-button:hover,.su-image-carousel button.flickity-prev-next-button:focus{opacity:1;box-shadow:none}.su-image-carousel button.flickity-prev-next-button:focus{-webkit-transform:scale(1.05);transform:scale(1.05)}.su-image-carousel button.flickity-prev-next-button[disabled]{display:none}.su-image-carousel button.flickity-prev-next-button.previous{left:20px}.su-image-carousel button.flickity-prev-next-button.next{right:20px}.su-image-carousel>ol.flickity-page-dots{position:absolute;top:50%;left:50%;bottom:auto;width:auto;margin:0;padding:0;list-style:none;-webkit-transform:translate(-50%, -50%);transform:translate(-50%, -50%);pointer-events:none;opacity:0;-webkit-transition:opacity 0.2s ease;transition:opacity 0.2s ease}.su-image-carousel>ol.flickity-page-dots>li.dot{position:relative;width:20px;height:20px;display:inline-block;margin:5px;padding:0;list-style:none;pointer-events:all;border-radius:50%;opacity:0.5;-webkit-transition:opacity 0.2s ease;transition:opacity 0.2s ease}.su-image-carousel>ol.flickity-page-dots>li.dot:hover{opacity:1}.su-image-carousel>ol.flickity-page-dots>li.dot::before{position:absolute;top:50%;left:50%;display:none;width:10px;height:10px;margin:0;padding:0;content:'';border-radius:50%;-webkit-transform:translate(-50%, -50%);transform:translate(-50%, -50%)}.su-image-carousel>ol.flickity-page-dots>li.dot.is-selected::before{display:block}.su-image-carousel:hover ol.flickity-page-dots{opacity:1}.su-image-carousel-controls-style-dark button.flickity-prev-next-button{background:black;color:white}.su-image-carousel-controls-style-dark ol.flickity-page-dots li.dot{background:black}.su-image-carousel-controls-style-dark ol.flickity-page-dots li.dot::before{background:white}.su-image-carousel-controls-style-light button.flickity-prev-next-button{background:white;color:black}.su-image-carousel-controls-style-light ol.flickity-page-dots li.dot{background:white}.su-image-carousel-controls-style-light ol.flickity-page-dots li.dot::before{background:black}.su-image-carousel-slides-style-default .su-image-carousel-item-content{margin:1px}.su-image-carousel-slides-style-default .su-image-carousel-item-content img{padding:3px;background:white;border:1px solid #ccc;border-radius:7px}.su-image-carousel-slides-style-default .su-image-carousel-item-content span{bottom:4px;right:4px;left:4px;padding:0.5em 0.7em;background:-webkit-gradient(linear, left bottom, left top, from(rgba(0,0,0,0.7)), to(transparent));background:-webkit-linear-gradient(bottom, rgba(0,0,0,0.7), transparent);background:linear-gradient(to top, rgba(0,0,0,0.7), transparent);text-shadow:0 2px 5px black;color:white;border-bottom-right-radius:2px;border-bottom-left-radius:2px}.su-image-carousel-slides-style-minimal .su-image-carousel-item-content{margin:1px}.su-image-carousel-slides-style-minimal .su-image-carousel-item-content span{right:0;bottom:0;left:0;padding:0.7em;background:-webkit-gradient(linear, left bottom, left top, from(rgba(0,0,0,0.7)), to(transparent));background:-webkit-linear-gradient(bottom, rgba(0,0,0,0.7), transparent);background:linear-gradient(to top, rgba(0,0,0,0.7), transparent);text-shadow:0 2px 5px black;color:white}.su-image-carousel-slides-style-photo .su-image-carousel-item-content{padding:7px}.su-image-carousel-slides-style-photo .su-image-carousel-item-content img{border:5px solid white;border-radius:7px;box-shadow:0 2px 5px rgba(0,0,0,0.5)}.su-image-carousel-slides-style-photo .su-image-carousel-item-content span{right:12px;bottom:12px;left:12px;padding:0.3em 0.5em;background:white;color:black;font-size:0.9em}.su-image-carousel-slides-style-photo.su-image-carousel-crop .su-image-carousel-item-content img{top:7px;right:7px;left:7px;bottom:7px;width:calc(100% - 14px);height:calc(100% - 14px)}.su-image-carousel-mfp.mfp-bg{z-index:102000 !important}.su-image-carousel-mfp.mfp-wrap{z-index:102001 !important}.su-image-carousel-mfp.mfp-wrap .mfp-preloader{z-index:102002 !important}.su-image-carousel-mfp.mfp-wrap .mfp-content{z-index:102003 !important}.su-image-carousel-mfp.mfp-wrap button.mfp-close,.su-image-carousel-mfp.mfp-wrap button.mfp-arrow{z-index:102004 !important}.su-image-carousel-has-outline button.flickity-prev-next-button:focus,.su-image-carousel-has-outline .su-image-carousel-item-content a:focus img{outline-width:2px;outline-style:solid;outline-color:Highlight}@media (-webkit-min-device-pixel-ratio: 0){.su-image-carousel-has-outline button.flickity-prev-next-button:focus,.su-image-carousel-has-outline .su-image-carousel-item-content a:focus{outline-color:-webkit-focus-ring-color;outline-style:auto}}.su-label{display:inline;margin-right:0.3em;padding:0.1em 0.3em;font-size:0.8em;height:0.8em;line-height:0.8em;color:#fff;border-radius:3px}.su-label-type-default{background:#999}.su-label-type-success{background:#090}.su-label-type-warning{background:#f90}.su-label-type-important{background:#f03}.su-label-type-black{background:#111}.su-label-type-info{background:#09c}.su-lightbox-content{position:relative;margin:0 auto}.mfp-content .su-lightbox-content,#su-generator .su-lightbox-content{display:block !important}.su-lightbox-content-preview{width:100%;min-height:300px;background:#444;overflow:hidden}.su-lightbox-content h1,.su-lightbox-content h2,.su-lightbox-content h3,.su-lightbox-content h4,.su-lightbox-content h5,.su-lightbox-content h6{color:inherit}.su-lightbox{cursor:pointer}.su-list{margin-bottom:1.5em}.su-list ul{margin:0 !important;padding:0 !important;list-style:none !important}.su-list ul li{position:relative;display:block !important;margin:0 !important;padding:4px 0 4px 2em !important;list-style-type:none !important;line-height:1.3em}.su-list ul li>img{position:absolute;left:0;top:4px;width:1.3em;height:1.3em;padding:0;margin:0;border:none}.su-list ul li>i{position:absolute;left:0;top:4px;width:1.3em;height:1.3em;line-height:1.3em;text-align:center}.su-members{margin-bottom:1.5em;padding:1em;border-width:1px 0;border-style:solid;text-align:center}.su-members a{text-decoration:underline;color:inherit}.su-note{margin:0 0 1.5em;border-width:1px;border-style:solid}.su-note-inner{padding:1em;border-width:1px;border-style:solid}.su-posts-default-loop .su-post{margin-bottom:2.5em;line-height:1.5}.su-posts-default-loop .su-post:after{content:'';display:table;clear:both}.su-posts-default-loop .su-post-thumbnail{float:left;display:block;width:100px;height:100px;margin-right:1em}.su-posts-default-loop .su-post-thumbnail img{max-width:100px;max-height:100px}.su-posts-default-loop h2.su-post-title{clear:none;margin:0 0 0.3em;font-size:1.2em;font-weight:bold}.su-posts-default-loop .su-post-meta{margin-bottom:0.7em;font-size:0.8em;opacity:0.6;filter:alpha(opacity=60)}.su-posts-default-loop .su-post-excerpt{margin-bottom:0.5em}.su-posts-default-loop .su-post-excerpt p:last-child{margin-bottom:0}.su-posts-default-loop .su-post-comments-link{font-size:0.9em}.su-posts-teaser-loop .su-post{margin-bottom:1.5em;line-height:1.2}.su-posts-teaser-loop .su-post:after{content:'';display:table;clear:both}.su-posts-teaser-loop .su-post-thumbnail{float:left;display:block;width:56px;height:56px;margin:0 1em 0 0}.su-posts-teaser-loop .su-post-thumbnail img{display:block;margin:0;padding:2px;border:1px solid #ccc;border-radius:5px;max-width:100%;max-height:100%}.su-posts-teaser-loop h2.su-post-title{display:block;margin:0;padding:0;border:none;font-size:0.9em;font-weight:normal;clear:none}.su-posts-single-post .su-post{margin-bottom:2.5em;line-height:1.5}.su-posts-single-post .su-post:after{content:'';display:table;clear:both}.su-posts-single-post h1.su-post-title{clear:none;margin:0 0 0.3em;font-size:1.2em;font-weight:bold}.su-posts-single-post .su-post-meta{margin-bottom:0.7em;font-size:0.8em;opacity:0.6;filter:alpha(opacity=60)}.su-posts-single-post .su-post-content{margin-bottom:0.5em}.su-posts-single-post .su-post-content p:last-child{margin-bottom:0}.su-private{margin:0 0 1.5em}.su-pullquote{display:block;width:30%;padding:0.5em 1em}.su-pullquote-align-left{margin:0.5em 1.5em 1em 0;padding-left:0;float:left;border-right:5px solid #eee}.su-pullquote-align-right{margin:0.5em 0 1em 1.5em;padding-right:0;float:right;border-left:5px solid #eee}@media screen and (max-width: 48em){.su-pullquote{width:auto}.su-pullquote-align-left,.su-pullquote-align-right{float:none;margin:1.5em 0;padding:0.5em 1em}}.su-qrcode{display:inline-block}.su-qrcode-align-left{float:left;margin:0 0.5em 0.5em 0}.su-qrcode-align-center{display:block;clear:both;margin:1em auto;text-align:center}.su-qrcode-align-right{float:right;margin:0 0 0.5em 0.5em}.su-qrcode a,.su-qrcode a:hover,.su-qrcode a:active,.su-qrcode a:focus{background:transparent;outline:none;display:inline;text-decoration:none}.su-qrcode-clickable a:hover{opacity:0.7}.su-qrcode img{max-width:100%}.su-quote-style-default{position:relative;margin-bottom:1.5em;padding:0.5em 3em;font-style:italic}.su-quote-style-default:before,.su-quote-style-default:after{position:absolute;display:block;width:20px;height:20px;background-image:url("../images/quote.png");content:''}.su-quote-style-default:before{top:0;left:0;background-position:0 0}.su-quote-style-default:after{right:0;bottom:0;background-position:-20px 0}.su-quote-style-default .su-quote-cite{display:block;text-align:right;font-style:normal}.su-quote-style-default .su-quote-cite:before{content:'\2014\0000a0'}.su-quote-style-default .su-quote-cite a{text-decoration:underline}.su-screenr{margin:0 0 1.5em}.su-screenr iframe{border:none !important}.su-service{position:relative;margin:0 0 1.5em}.su-service-title{display:block;margin-bottom:0.5em;color:#333;font-weight:bold;font-size:1.1em}.su-service-title img{position:absolute;top:0;left:0;display:block !important;margin:0 !important;padding:0 !important;border:none !important;box-shadow:none !important}.su-service-title i{position:absolute;top:0;left:0;display:block !important;width:1em;height:1em;text-align:center;line-height:1em}.su-service-content{line-height:1.4}.su-slider{position:relative;margin-bottom:1.5em;overflow:hidden;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1}.su-slider-centered{margin:0 auto 1.5em}.su-slider-slides{position:relative;width:100%;-webkit-transition-property:-webkit-transform, left, top;-webkit-transition-duration:0s;-webkit-transform:translate3d(0, 0, 0);-webkit-transition-timing-function:ease;-moz-transition-property:-moz-transform, left, top;-moz-transition-duration:0s;-moz-transform:translate3d(0, 0, 0);-moz-transition-timing-function:ease;-o-transition-property:-o-transform, left, top;-o-transition-duration:0s;-o-transform:translate3d(0, 0, 0);-o-transition-timing-function:ease;-o-transform:translate(0, 0);-ms-transition-property:-ms-transform, left, top;-ms-transition-duration:0s;-ms-transform:translate3d(0, 0, 0);-ms-transition-timing-function:ease;-webkit-transition-property:left, top, -webkit-transform;transition-property:left, top, -webkit-transform;transition-property:transform, left, top;transition-property:transform, left, top, -webkit-transform;transition-duration:0s;transform:translate3d(0, 0, 0);transition-timing-function:ease}.swiper-free-mode>.su-slider-slides{-webkit-transition-timing-function:ease-out;transition-timing-function:ease-out;margin:0 auto}.su-slider-slide{position:relative;float:left}.su-slider-slide>a,.su-slider-slide>img,.su-slider-slide>a>img{position:relative;display:block;width:100%;height:100%;text-decoration:none}.su-slider-responsive-yes .su-slider-slide>a,.su-slider-responsive-yes .su-slider-slide>img,.su-slider-responsive-yes .su-slider-slide>a>img{height:auto}.su-slider-pages-no .su-slider-pagination{display:none}.swiper-wp8-horizontal{-ms-touch-action:pan-y}.swiper-wp8-vertical{-ms-touch-action:pan-x}.su-slider-slide-title{position:absolute;left:20px;bottom:20px;display:block;max-width:90%;padding:5px 10px;color:#fff;line-height:1.3;background:#000;background:rgba(0,0,0,0.5);border-radius:5px;-moz-border-radius:5px;-webkit-border-radius:5px;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;filter:alpha(opacity=0);opacity:0;transition:opacity 1s;-o-transition:opacity 1s;-moz-transition:opacity 1s;-webkit-transition:opacity 1s}.su-slider-slide-visible .su-slider-slide-title{filter:alpha(opacity=100);opacity:1}.su-slider-prev,.su-slider-next{position:absolute;top:50%;display:block;width:40px;height:40px;margin-top:-20px !important;background:#000 0 0 url("../images/swiper/default.png") no-repeat;background-color:rgba(0,0,0,0.5);cursor:pointer;border-radius:50%;-moz-border-radius:50%;-webkit-border-radius:50%;filter:alpha(opacity=0);opacity:0;-webkit-transition:all 0.2s;transition:all 0.2s}.su-slider-prev{right:10px;margin-right:30px;background-position:-40px 0}.su-slider-next{left:10px;margin-left:30px;background-position:0 0}.su-slider:hover .su-slider-prev,.su-slider:hover .su-slider-next{margin-left:0;margin-right:0;filter:alpha(opacity=70);opacity:0.7}.su-slider .su-slider-prev:hover,.su-slider .su-slider-next:hover{filter:alpha(opacity=100);opacity:1}.su-slider-pagination{position:absolute;left:15%;right:15%;top:50%;width:70%;height:0;margin-top:-7px;text-align:center;cursor:default;filter:alpha(opacity=0);opacity:0;-webkit-transition:all 0.2s;transition:all 0.2s}.su-slider:hover .su-slider-pagination{bottom:20px;filter:alpha(opacity=100);opacity:1}.su-slider-pagination span{display:inline-block;width:14px;height:14px;margin:0;background:#000 0 -999px url("../images/swiper/default.png") no-repeat;background-color:rgba(0,0,0,0.5);cursor:pointer;border-radius:50%;-moz-border-radius:50%;-webkit-border-radius:50%;-webkit-transition:all 0.2s;transition:all 0.2s}.su-slider:hover .su-slider-pagination span{margin:0 3px}.su-slider .su-slider-pagination span.swiper-visible-switch{background-color:#fff;background-color:rgba(255,255,255,0.5)}.su-slider-pagination span:hover,.su-slider-pagination span.swiper-active-switch{background-position:0 -40px}.su-spacer{display:block;height:0;clear:both;overflow:hidden}.su-spacer-5{height:5px}.su-spacer-10{height:10px}.su-spacer-20{height:20px}.su-spacer-30{height:30px}.su-spacer-40{height:40px}.su-spoiler{margin-bottom:1.5em}.su-spoiler .su-spoiler:last-child{margin-bottom:0}.su-spoiler-title{position:relative;cursor:pointer;min-height:20px;line-height:20px;padding:7px 7px 7px 34px;font-weight:bold;font-size:13px}.su-spoiler-title:focus{outline:currentColor thin dotted}.su-spoiler-icon{position:absolute;left:7px;top:7px;display:block;width:20px;height:20px;line-height:21px;text-align:center;font-size:14px;font-family:ShortcodesUltimateIcons;font-weight:normal;font-style:normal;-webkit-font-smoothing:antialiased;*margin-right:0.3em}.su-spoiler-content{padding:14px;-webkit-transition:padding-top 0.2s;transition:padding-top 0.2s;-ie-transition:padding-top 0.2s}.su-spoiler.su-spoiler-closed>.su-spoiler-content{height:0;margin:0;padding:0;overflow:hidden;border:none;opacity:0}.su-spoiler-icon-plus .su-spoiler-icon:before{content:'\f068'}.su-spoiler-icon-plus.su-spoiler-closed .su-spoiler-icon:before{content:'\f067'}.su-spoiler-icon-plus-circle .su-spoiler-icon:before{content:'\f056'}.su-spoiler-icon-plus-circle.su-spoiler-closed .su-spoiler-icon:before{content:'\f055'}.su-spoiler-icon-plus-square-1 .su-spoiler-icon:before{content:'\f146'}.su-spoiler-icon-plus-square-1.su-spoiler-closed .su-spoiler-icon:before{content:'\f0fe'}.su-spoiler-icon-plus-square-2 .su-spoiler-icon:before{content:'\f147'}.su-spoiler-icon-plus-square-2.su-spoiler-closed .su-spoiler-icon:before{content:'\f196'}.su-spoiler-icon-arrow .su-spoiler-icon:before{content:'\f063'}.su-spoiler-icon-arrow.su-spoiler-closed .su-spoiler-icon:before{content:'\f061'}.su-spoiler-icon-arrow-circle-1 .su-spoiler-icon:before{content:'\f0ab'}.su-spoiler-icon-arrow-circle-1.su-spoiler-closed .su-spoiler-icon:before{content:'\f0a9'}.su-spoiler-icon-arrow-circle-2 .su-spoiler-icon:before{content:'\f01a'}.su-spoiler-icon-arrow-circle-2.su-spoiler-closed .su-spoiler-icon:before{content:'\f18e'}.su-spoiler-icon-chevron .su-spoiler-icon:before{content:'\f078'}.su-spoiler-icon-chevron.su-spoiler-closed .su-spoiler-icon:before{content:'\f054'}.su-spoiler-icon-chevron-circle .su-spoiler-icon:before{content:'\f13a'}.su-spoiler-icon-chevron-circle.su-spoiler-closed .su-spoiler-icon:before{content:'\f138'}.su-spoiler-icon-caret .su-spoiler-icon:before{content:'\f0d7'}.su-spoiler-icon-caret.su-spoiler-closed .su-spoiler-icon:before{content:'\f0da'}.su-spoiler-icon-caret-square .su-spoiler-icon:before{content:'\f150'}.su-spoiler-icon-caret-square.su-spoiler-closed .su-spoiler-icon:before{content:'\f152'}.su-spoiler-icon-folder-1 .su-spoiler-icon:before{content:'\f07c'}.su-spoiler-icon-folder-1.su-spoiler-closed .su-spoiler-icon:before{content:'\f07b'}.su-spoiler-icon-folder-2 .su-spoiler-icon:before{content:'\f115'}.su-spoiler-icon-folder-2.su-spoiler-closed .su-spoiler-icon:before{content:'\f114'}.su-spoiler-style-default>.su-spoiler-title{padding-left:27px;padding-right:0}.su-spoiler-style-default>.su-spoiler-title>.su-spoiler-icon{left:0}.su-spoiler-style-default>.su-spoiler-content{padding:1em 0 1em 27px}.su-spoiler-style-fancy{border:1px solid #ccc;border-radius:10px;background:#fff;color:#333}.su-spoiler-style-fancy>.su-spoiler-title{border-bottom:1px solid #ccc;border-radius:10px;background:#f0f0f0;font-size:0.9em}.su-spoiler-style-fancy.su-spoiler-closed>.su-spoiler-title{border:none}.su-spoiler-style-fancy>.su-spoiler-content{border-radius:10px}.su-spoiler-style-simple{border-top:1px solid #ccc;border-bottom:1px solid #ccc}.su-spoiler-style-simple>.su-spoiler-title{padding:5px 10px;background:#f0f0f0;color:#333;font-size:0.9em}.su-spoiler-style-simple>.su-spoiler-title>.su-spoiler-icon{display:none}.su-spoiler-style-simple>.su-spoiler-content{padding:1em 10px;background:#fff;color:#333}.su-table{width:100%;margin-bottom:1.5em}.su-table table{width:100% !important;margin:0 !important;border-collapse:collapse !important;font-size:1em !important;border:1px solid #ccc !important;table-layout:auto !important}.su-table table th{text-align:center !important;padding:1em !important;font-size:1em !important;font-weight:bold !important;color:#333 !important;border:1px solid #ccc !important;background:#f0f0f0 !important}.su-table table td{padding:0.5em 1em !important;border:1px solid #ccc !important;background:#fff !important}.su-table-responsive{overflow-x:auto}.su-table-responsive table{width:auto !important;min-width:100% !important}.su-table-responsive table th,.su-table-responsive table td{word-break:initial !important}.su-table-alternate table tr:nth-child(even) td{background-color:#f7f7f7 !important}.su-table-fixed table{table-layout:fixed !important}.su-tabs{margin:0 0 1.5em;padding:3px;border-radius:3px;background:#eee}.su-tabs-nav span{display:inline-block;margin-right:3px;padding:10px 15px;min-height:40px;border-top-left-radius:3px;border-top-right-radius:3px;color:#333;font-size:13px;line-height:20px;cursor:pointer;-webkit-transition:all 0.2s;transition:all 0.2s}.su-tabs-nav span:hover{background:#f5f5f5}.su-tabs-nav span.su-tabs-current{background:#fff;cursor:default}.su-tabs-nav span:focus{outline:currentColor thin dotted}.su-tabs-nav span.su-tabs-disabled{opacity:0.5;cursor:default}.su-tabs-pane{padding:15px;border-bottom-right-radius:3px;border-bottom-left-radius:3px;background:#fff;color:#333;font-size:13px}.su-tabs-pane:not(.su-tabs-pane-open){overflow:hidden !important;padding:0 !important;min-height:0 !important;height:0 !important;border:none !important}.su-tabs-nav,.su-tabs-nav span,.su-tabs-panes,.su-tabs-pane{box-sizing:border-box !important}.su-tabs-vertical{display:-webkit-box;display:flex}.su-tabs-vertical .su-tabs-nav{width:30%}.su-tabs-vertical .su-tabs-nav>span{display:block;margin-right:0;border-radius:0;border-top-left-radius:3px;border-bottom-left-radius:3px}.su-tabs-vertical .su-tabs-panes{width:70%}.su-tabs-vertical .su-tabs-panes .su-tabs-pane{height:100%;border-radius:0;border-top-right-radius:3px;border-bottom-right-radius:3px}@media only screen and (max-width: 768px){.su-tabs-vertical{-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-direction:column}.su-tabs-vertical .su-tabs-nav,.su-tabs-vertical .su-tabs-panes{width:100%}.su-tabs-vertical .su-tabs-nav>span,.su-tabs-vertical .su-tabs-nav .su-tabs-pane,.su-tabs-vertical .su-tabs-panes>span,.su-tabs-vertical .su-tabs-panes .su-tabs-pane{border-radius:3px}.su-tabs-mobile-stack .su-tabs-nav span{display:block}.su-tabs-mobile-scroll .su-tabs-nav{display:-webkit-box;display:flex;-webkit-box-align:end;align-items:flex-end;white-space:nowrap;overflow-x:auto}}.qtip.su-qtip{max-width:480px !important}.su-tooltip{display:inline-block}.su-qtip-size-1{font-size:0.8em !important}.su-qtip-size-2{font-size:0.9em !important}.su-qtip-size-3{font-size:1em !important}.su-qtip-size-4{font-size:1.1em !important}.su-qtip-size-5{font-size:1.2em !important}.su-qtip-size-6{font-size:1.3em !important}.su-tooltip-content{display:none}.su-tooltip-content>:last-child{margin-bottom:0}.qtip-content .su-tooltip-content img,.qtip-content .su-tooltip-content object,.qtip-content .su-tooltip-content iframe,.qtip-content .su-tooltip-content embed{max-width:430px}.qtip-content .su-tooltip-content .su-u-responsive-media-yes{width:430px}.su-video{position:relative;margin-bottom:1.5em;overflow:hidden}.su-video .jp-title{position:absolute;top:-100px;left:0;width:100%;height:30px;padding:0 1em;line-height:30px;font-size:0.9em;background:#000;background:rgba(0,0,0,0.5);color:#fff;-webkit-transition:top 0.2s;transition:top 0.2s}.su-video:hover .jp-title{top:0}.su-video .jp-start{position:absolute;left:0;top:0;width:100%;height:100%;cursor:pointer;opacity:0.5;-webkit-transition:opacity 0.2s;transition:opacity 0.2s;background:50% 50% url("../images/player/default-start.png") no-repeat}.su-video:hover .jp-start{opacity:0.8}.su-video.jp-video-full{position:fixed;left:0;top:0;width:100%;height:100%}.su-video.jp-video-full .jp-jplayer{position:fixed !important;left:0;top:0;overflow:hidden}.su-video .jp-gui{position:relative;height:30px;background:#7c8781;background:-webkit-gradient(linear, left top, left bottom, from(#7c8781), to(#0a0809));background:-webkit-linear-gradient(top, #7c8781 0%, #0a0809 100%);background:linear-gradient(to bottom, #7c8781 0%, #0a0809 100%);border-bottom-right-radius:3px;border-bottom-left-radius:3px}.su-video.jp-video-full .jp-gui{position:fixed;left:0;bottom:0;width:100%}.su-video-controls-no .jp-gui{position:absolute !important;bottom:-100px;left:0;right:0;-webkit-transition:bottom 0.2s;transition:bottom 0.2s}.su-video-controls-no:hover .jp-gui{bottom:0}.su-video img{border-radius:0 !important;border:none !important;margin:0 !important;padding:0 !important}.su-video .jp-gui .jp-play,.su-video .jp-gui .jp-pause{position:absolute;left:0;top:0;display:block;width:30px;height:30px;border-right:1px solid #454947;cursor:pointer}.su-video .jp-gui .jp-play{background:0 0 url("../images/player/default.png") no-repeat}.su-video .jp-gui .jp-pause{background:-30px 0 url("../images/player/default.png") no-repeat}.su-video .jp-full-screen,.su-video .jp-restore-screen{position:absolute;top:0;right:0;display:block;width:30px;height:30px;border-left:1px solid #454947;cursor:pointer}.su-video .jp-full-screen{background:0 -30px url("../images/player/default.png") no-repeat}.su-video .jp-restore-screen{background:-30px -30px url("../images/player/default.png") no-repeat}.su-video .jp-progress{position:absolute;top:10px;left:90px;right:90px;height:10px;background:#333;border-radius:3px;box-shadow:0 0 5px #000 inset}.su-video .jp-seek-bar,.su-video .jp-play-bar{position:absolute;top:0;left:0;height:100%;cursor:pointer;border-radius:3px}.su-video .jp-seek-bar{background:#0b0b0b;background:-webkit-gradient(linear, left top, left bottom, from(#0b0b0b), to(#666));background:-webkit-linear-gradient(top, #0b0b0b 0%, #666 100%);background:linear-gradient(to bottom, #0b0b0b 0%, #666 100%)}.su-video .jp-play-bar{background:#6db3f2;background:-webkit-gradient(linear, left top, left bottom, from(#6db3f2), color-stop(50%, #54a3ee), color-stop(51%, #3690f0), to(#1e69de));background:-webkit-linear-gradient(top, #6db3f2 0%, #54a3ee 50%, #3690f0 51%, #1e69de 100%);background:linear-gradient(to bottom, #6db3f2 0%, #54a3ee 50%, #3690f0 51%, #1e69de 100%)}.su-video .jp-current-time,.su-video .jp-duration{position:absolute;top:0;display:block;height:30px;line-height:30px;color:#f5f5f5;font-size:10px}.su-video .jp-current-time{left:50px}.su-video .jp-duration{right:50px}.su-vimeo{margin:0 0 1.5em}.su-vimeo iframe{border:none !important}.su-youtube{margin:0 0 1.5em}.su-youtube iframe{border:none !important}
1
+ .su-u-clearfix::after{content:'';display:table;clear:both}.su-u-trim>:first-child{margin-top:0}.su-u-trim>:last-child{margin-bottom:0}.su-u-responsive-media-yes{position:relative;padding-bottom:56.25%;height:0;overflow:hidden}.su-u-responsive-media-yes .fluid-width-video-wrapper,.su-u-responsive-media-yes .video-holder{position:static !important}.su-u-responsive-media-yes iframe,.su-u-responsive-media-yes object,.su-u-responsive-media-yes embed{position:absolute;top:0;left:0;width:100%;height:100%}.su-accordion{margin-bottom:1.5em}.su-accordion .su-spoiler{margin-bottom:0.5em}.su-audio{position:relative;width:100%;height:30px;margin-bottom:1.5em;background:#7c8781;background:-webkit-gradient(linear, left top, left bottom, from(#7c8781), to(#0a0809));background:-webkit-linear-gradient(top, #7c8781 0%, #0a0809 100%);background:linear-gradient(to bottom, #7c8781 0%, #0a0809 100%);border-radius:3px}.su-audio .jp-play,.su-audio .jp-pause{position:absolute;left:0;top:0;display:block;width:30px;height:30px;border-top-left-radius:3px;border-bottom-left-radius:3px;cursor:pointer;border-right:1px solid #454947;background-image:url("../images/player/default.png");background-repeat:no-repeat}.su-audio .jp-play{background-position:0 0}.su-audio .jp-pause{background-position:-30px 0}.su-audio .jp-current-time,.su-audio .jp-duration{position:absolute;top:0;display:block;height:30px;line-height:30px;font-size:10px;color:#eee;text-shadow:0 -1px 0 #000}.su-audio .jp-current-time{left:45px}.su-audio .jp-duration{right:10px}.su-audio .jp-seek-bar,.su-audio .jp-play-bar{position:absolute;top:0;left:0;height:10px;border-radius:3px;cursor:pointer}.su-audio .jp-progress{position:absolute;top:10px;left:85px;right:50px;height:10px;background:#333;box-shadow:0 0 5px #000 inset;border-radius:3px}.su-audio .jp-seek-bar{background:#0b0b0b;background:-webkit-gradient(linear, left top, left bottom, from(#0b0b0b), to(#666));background:-webkit-linear-gradient(top, #0b0b0b 0%, #666 100%);background:linear-gradient(to bottom, #0b0b0b 0%, #666 100%)}.su-audio .jp-play-bar{background:#6db3f2;background:-webkit-gradient(linear, left top, left bottom, from(#6db3f2), color-stop(50%, #54a3ee), color-stop(51%, #3690f0), to(#1e69de));background:-webkit-linear-gradient(top, #6db3f2 0%, #54a3ee 50%, #3690f0 51%, #1e69de 100%);background:linear-gradient(to bottom, #6db3f2 0%, #54a3ee 50%, #3690f0 51%, #1e69de 100%)}.su-box{margin:0 0 1.5em;border-width:2px;border-style:solid}.su-box-title{display:block;padding:0.5em 1em;font-weight:bold;font-size:1.1em}.su-box-content{background-color:#fff;color:#444;padding:1em}.su-box-style-soft .su-box-title{background-image:url("../images/styles/style-soft.png");background-position:0 0;background-repeat:repeat-x}.su-box-style-glass .su-box-title{background-image:url("../images/styles/style-glass.png");background-position:0 50%;background-repeat:repeat-x}.su-box-style-bubbles .su-box-title{background-image:url("../images/styles/style-bubbles.png");background-position:0 50%;background-repeat:repeat-x}.su-box-style-noise .su-box-title{background-image:url("../images/styles/style-noise.png");background-position:0 0;background-repeat:repeat-x}.su-button{display:inline-block !important;text-align:center;text-decoration:none !important;box-sizing:content-box !important;-webkit-transition:all 0.2s;transition:all 0.2s}.su-button-wide{display:block !important;margin:1em 0}.su-button-center{text-align:center}.su-button span{display:block !important;text-decoration:none !important;box-sizing:content-box !important;-webkit-transition:all 0.2s;transition:all 0.2s}.su-button img{border:none !important;vertical-align:middle !important;margin:-0.2em 0.4em 0 -0.3em !important;box-shadow:none !important}.su-button i{display:inline-block;width:1em;height:1em;margin:0 0.5em 0 0 !important;text-align:center;line-height:1em}.su-button.su-button-float-icon img{margin:0 0.5em !important}.su-button small{display:block;margin:-0.2em 0 0;color:inherit;text-align:center;font-style:normal;font-size:0.8em;line-height:1;opacity:0.7}@media screen and (max-width: 768px){.su-button span{padding-top:0.25em !important;padding-bottom:0.25em !important;line-height:1.2 !important}.su-button small{margin-top:0.2em !important}}.su-button-style-default{border-width:1px;border-style:solid}.su-button-style-default:hover{opacity:0.7}.su-button-style-default span{border-top-width:1px;border-bottom-width:1px;border-top-style:solid;border-bottom-style:solid}.su-button-style-flat,.su-button-style-flat span{border:none}.su-button-style-flat span{position:relative}.su-button-style-flat:hover span{top:1px}.su-button-style-ghost{background:transparent !important}.su-button-style-ghost span{border-width:3px;border-style:solid}.su-button-style-ghost:hover span{border-color:inherit !important}.su-button-style-soft span{background:0 -20px url("../images/styles/style-soft.png") repeat-x}.su-button-style-soft:hover span{background:0 0 url("../images/styles/style-soft.png") repeat-x}.su-button-style-glass span{background:0 50% url("../images/styles/style-glass.png") repeat-x}.su-button-style-glass:hover span{background:100% 50% url("../images/styles/style-glass.png") repeat-x}.su-button-style-bubbles span{background:0 50% url("../images/styles/style-bubbles.png") no-repeat}.su-button-style-bubbles:hover span{background:-710px 50% url("../images/styles/style-bubbles.png") no-repeat}.su-button-style-noise span{background:0 0 url("../images/styles/style-noise.png") repeat-x}.su-button-style-noise:hover span{background:0 0 url("../images/styles/style-noise.png") repeat-x}.su-button-style-stroked span{margin:1px;border:1px dashed #fff !important}.su-button-style-stroked:hover span{opacity:0.7}.su-button-style-3d{border-bottom-style:solid;border-bottom-width:6px}.su-button-style-3d span{border-bottom-style:solid;border-bottom-width:1px}.su-button-style-3d:hover{position:relative;top:3px;border-bottom-width:3px}.su-carousel{position:relative;margin-bottom:1.5em;overflow:hidden;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1}.su-carousel-centered{margin:0 auto 1.5em}.su-carousel-slides{position:relative;width:100%;-webkit-transition-property:-webkit-transform, left, top;-webkit-transition-duration:0s;-webkit-transform:translate3d(0, 0, 0);-webkit-transition-timing-function:ease;-moz-transition-property:-moz-transform, left, top;-moz-transition-duration:0s;-moz-transform:translate3d(0, 0, 0);-moz-transition-timing-function:ease;-o-transition-property:-o-transform, left, top;-o-transition-duration:0s;-o-transform:translate3d(0, 0, 0);-o-transition-timing-function:ease;-o-transform:translate(0, 0);-ms-transition-property:-ms-transform, left, top;-ms-transition-duration:0s;-ms-transform:translate3d(0, 0, 0);-ms-transition-timing-function:ease;-webkit-transition-property:left, top, -webkit-transform;transition-property:left, top, -webkit-transform;transition-property:transform, left, top;transition-property:transform, left, top, -webkit-transform;transition-duration:0s;transform:translate3d(0, 0, 0);transition-timing-function:ease}.swiper-free-mode>.su-carousel-slides{-webkit-transition-timing-function:ease-out;transition-timing-function:ease-out;margin:0 auto}.su-carousel-slide{position:relative;float:left}.su-carousel-slide>a,.su-carousel-slide>img,.su-carousel-slide>a>img{position:relative;display:block;width:100%;height:100%;text-decoration:none;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box}.su-carousel-responsive-yes .su-carousel-slide>a,.su-carousel-responsive-yes .su-carousel-slide>img,.su-carousel-responsive-yes .su-carousel-slide>a>img{height:auto}.su-carousel-pages-no .su-carousel-pagination{display:none}.swiper-wp8-horizontal{-ms-touch-action:pan-y}.swiper-wp8-vertical{-ms-touch-action:pan-x}.su-carousel .su-carousel-slide a{padding:0 5px}.su-carousel .su-carousel-slide img{padding:3px;border:1px solid #ccc;background:#fff;border-radius:5px;-moz-border-radius:5px;-webkit-border-radius:5px}.su-carousel .su-carousel-slide-title{position:absolute;left:9px;right:9px;bottom:4px;display:block;padding:2px 3px;color:#fff;line-height:1.2;font-size:11px;background:#000;background:rgba(0,0,0,0.5);box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;transition:opacity 1s;-o-transition:opacity 1s;-moz-transition:opacity 1s;-webkit-transition:opacity 1s}.su-carousel .su-carousel-prev,.su-carousel .su-carousel-next{position:absolute;top:50%;display:block;width:40px;height:40px;margin-top:-20px;background:#000 0 0 url("../images/swiper/default.png") no-repeat;background-color:rgba(0,0,0,0.5);cursor:pointer;border-radius:50%;-moz-border-radius:50%;-webkit-border-radius:50%;filter:alpha(opacity=0);opacity:0;-webkit-transition:all 0.2s;transition:all 0.2s}.su-carousel .su-carousel-prev{right:20px;margin-right:40px;background-position:-40px 0}.su-carousel .su-carousel-next{left:20px;margin-left:40px;background-position:0 0}.su-carousel:hover .su-carousel-prev,.su-carousel:hover .su-carousel-next{margin-left:0;margin-right:0;filter:alpha(opacity=70);opacity:0.7}.su-carousel .su-carousel-prev:hover,.su-carousel .su-carousel-next:hover{filter:alpha(opacity=100);opacity:1}.su-carousel .su-carousel-pagination{position:absolute;left:15%;right:15%;top:50%;width:70%;height:0;margin-top:-7px;text-align:center;cursor:default;filter:alpha(opacity=0);opacity:0;-webkit-transition:all 0.2s;transition:all 0.2s}.su-carousel:hover .su-carousel-pagination{bottom:20px;filter:alpha(opacity=100);opacity:1}.su-carousel .su-carousel-pagination span{display:inline-block;width:14px;height:14px;margin:0;background:#000 0 -999px url("../images/swiper/default.png") no-repeat;background-color:rgba(0,0,0,0.5);cursor:pointer;border-radius:50%;-moz-border-radius:50%;-webkit-border-radius:50%;-webkit-transition:all 0.2s;transition:all 0.2s}.su-carousel:hover .su-carousel-pagination span{margin:0 3px}.su-carousel .su-carousel-pagination span.swiper-visible-switch{background-color:#fff;background-color:rgba(255,255,255,0.5)}.su-carousel .su-carousel-pagination span:hover,.su-carousel .su-carousel-pagination span.swiper-active-switch{background-position:0 -40px}.su-row{clear:both;zoom:1;margin-bottom:1.5em}.su-row:before,.su-row:after{display:table;content:''}.su-row:after{clear:both}.su-column{display:block;margin:0 4% 0 0;float:left;box-sizing:border-box}.su-column-last{margin-right:0}.su-row .su-column{margin:0 0 0 4%}.su-row .su-column.su-column-size-1-1{margin-left:0;margin-right:0}.su-row .su-column:first-child{margin-left:0}.su-row .su-column.su-column-centered{margin-right:auto;margin-left:auto;float:none}.su-column img,.su-column iframe,.su-column object,.su-column embed{max-width:100%}@media only screen{[class*='su-column']+[class*='su-column']:last-child{float:right}}.su-column-size-1-1{width:100%}.su-column-size-1-2{width:48%}.su-column-size-1-3{width:30.66%}.su-column-size-2-3{width:65.33%}.su-column-size-1-4{width:22%}.su-column-size-3-4{width:74%}.su-column-size-1-5{width:16.8%}.su-column-size-2-5{width:37.6%}.su-column-size-3-5{width:58.4%}.su-column-size-4-5{width:79.2%}.su-column-size-1-6{width:13.33%}.su-column-size-5-6{width:82.66%}@media only screen and (max-width: 768px){.su-row .su-column{width:100%;margin:0 0 1.5em;float:none}.su-row .su-column:last-child{margin-bottom:0}}.su-custom-gallery{margin-bottom:1.5em}.su-custom-gallery:after,.su-custom-gallery:before{content:'';display:table}.su-custom-gallery:after{clear:both}.su-custom-gallery-slide{position:relative;float:left;margin:0.5em;overflow:hidden}.su-custom-gallery-slide a{display:block;width:100%;height:100%}.su-custom-gallery-slide img{display:block;margin:0;padding:3px;border:1px solid #ccc;background:#fff;box-sizing:border-box;border-radius:5px;box-shadow:none;-webkit-transition:all 0.2s;transition:all 0.2s}.su-custom-gallery-slide:hover img{background:#eee;border:1px solid #aaa}.su-custom-gallery-slide span{position:absolute;left:4px;bottom:4px;right:4px;display:block;padding:2px 4px;font-size:12px;color:#fff;background:#000;background:rgba(0,0,0,0.5);line-height:1.3;opacity:0;-webkit-transition:all 0.2s;transition:all 0.2s}.su-custom-gallery-slide:hover span{opacity:1}.su-custom-gallery-title-never span{display:none}.su-custom-gallery-title-always span{opacity:1}.su-dailymotion{margin:0 0 1.5em}.su-dailymotion iframe{border:none !important}.su-divider{clear:both;border:none;text-align:right;line-height:1}.su-divider a{display:inline-block;font-size:0.8em;text-decoration:none;outline:none;padding-bottom:5px}.su-divider-style-default{border-bottom-style:solid}.su-divider-style-dotted{border-bottom-style:dotted}.su-divider-style-dashed{border-bottom-style:dashed}.su-divider-style-double{border-bottom-style:double}.su-document{margin:0 0 1.5em}.su-document iframe{border:none !important}.su-dropcap{float:left;display:inline-block;width:2em;height:2em;margin:0.2em 0.5em 0.2em 0;line-height:2em;text-align:center;overflow:hidden;text-transform:uppercase}.su-dropcap-style-default{color:white;background:#45484d;background:-webkit-gradient(linear, left top, left bottom, from(#45484d), to(black));background:-webkit-linear-gradient(top, #45484d 0%, black 100%);background:linear-gradient(to bottom, #45484d 0%, black 100%);text-shadow:-1px -1px 0 black;border-radius:50%}.su-dropcap-style-flat{background:#444;color:#fff}.su-dropcap-style-light{color:#333;border-radius:50%;background:white;background:-webkit-gradient(linear, left top, left bottom, from(white), to(#eaeaea));background:-webkit-linear-gradient(top, white 0%, #eaeaea 100%);background:linear-gradient(to bottom, white 0%, #eaeaea 100%)}.su-dropcap-style-simple{width:1em;height:1em;line-height:1em;text-align:left}.su-expand{margin:0 0 1.5em}.su-expand-content{overflow:hidden}.su-expand-link{margin-top:0.5em;cursor:pointer}.su-expand-link:hover{opacity:0.7}.su-expand-link a,.su-expand-link a:hover,.su-expand-link a:active,.su-expand-link a:visited,.su-expand-link a:focus{display:inline;text-decoration:none;box-shadow:none;background:transparent;border:none}.su-expand-link-style-underlined .su-expand-link span{text-decoration:underline}.su-expand-link-style-dotted .su-expand-link span{border-bottom:1px dotted #333}.su-expand-link-style-dashed .su-expand-link span{border-bottom:1px dashed #333}.su-expand-link-style-button .su-expand-link a{display:inline-block;margin-top:0.2em;padding:0.2em 0.4em;border:2px solid #333}.su-expand-link-more{display:none}.su-expand-link-less{display:block}.su-expand-collapsed .su-expand-link-more{display:block}.su-expand-collapsed .su-expand-link-less{display:none}.su-expand-link i{display:inline-block;margin:0 0.3em 0 0;vertical-align:middle;color:inherit}.su-expand-link img{display:inline-block;width:1em;height:1em;margin:0 0.3em 0 0;vertical-align:middle}.su-frame,.su-frame-inner{display:block}.su-frame-align-left{float:left;margin:0 1em 1em 0}.su-frame-align-center{float:none;margin:1em auto}.su-frame-align-right{float:right;margin:0 0 1em 1em}.su-frame img{display:block !important;float:none !important;padding:0 !important;margin:0 !important;border:none !important;box-shadow:none !important}.su-frame-style-default{padding:2px;border:1px solid #999;background:#fff;box-shadow:1px 1px 4px #ccc}.su-frame-style-default .su-frame-inner{padding:2px;border:4px solid #eee}.su-gmap{margin:0 0 1.5em}.su-gmap iframe{border:none !important}.su-guests{margin-bottom:1.5em}.su-heading-style-default{padding:2px 0;border-top:1px solid #999;border-bottom:1px solid #999}.su-heading-style-default .su-heading-inner{padding:1em 0.5em;border-top:4px solid #eee;border-bottom:4px solid #eee}.su-heading.su-heading-align-left{text-align:left}.su-heading.su-heading-align-left .su-heading-inner{padding-left:0.2em}.su-heading.su-heading-align-right{text-align:right}.su-heading.su-heading-align-right .su-heading-inner{padding-right:0.2em}.su-heading.su-heading-align-center{text-align:center}.su-highlight{display:inline;padding:1px 0}.su-image-carousel{width:100%;margin:1.5em 0}.su-image-carousel:first-child{margin-top:0}.su-image-carousel:last-child{margin-bottom:0}.su-image-carousel-item{width:100%;box-sizing:border-box}.su-image-carousel .su-image-carousel-item-content{position:relative}.su-image-carousel .su-image-carousel-item-content a,.su-image-carousel .su-image-carousel-item-content a:hover,.su-image-carousel .su-image-carousel-item-content a:focus,.su-image-carousel .su-image-carousel-item-content a:visited,.su-image-carousel .su-image-carousel-item-content a:active,.su-image-carousel .su-image-carousel-item-content img{display:block;width:100%;height:100%;margin:0;padding:0;box-sizing:border-box;box-shadow:none;text-decoration:none;border:none;border-radius:0}.su-image-carousel .su-image-carousel-item-content a::before,.su-image-carousel .su-image-carousel-item-content a::after,.su-image-carousel .su-image-carousel-item-content img::before,.su-image-carousel .su-image-carousel-item-content img::after{display:none}.su-image-carousel .su-image-carousel-item-content span{position:absolute;display:block;font-size:0.9em;max-height:60%;overflow:auto;line-height:1.3;word-wrap:break-word}.su-image-carousel .su-image-carousel-item-content span:empty{display:none}.su-image-carousel-columns-2 .su-image-carousel-item{width:50%}.su-image-carousel-columns-2.su-image-carousel-has-spacing .su-image-carousel-item{width:48.5%;margin-right:3%}.su-image-carousel-columns-3 .su-image-carousel-item{width:33.33333%}.su-image-carousel-columns-3.su-image-carousel-has-spacing .su-image-carousel-item{width:31.4%;margin-right:2.9%}.su-image-carousel-columns-4 .su-image-carousel-item{width:25%}.su-image-carousel-columns-4.su-image-carousel-has-spacing .su-image-carousel-item{width:22.9%;margin-right:2.8%}.su-image-carousel-columns-5 .su-image-carousel-item{width:20%}.su-image-carousel-columns-5.su-image-carousel-has-spacing .su-image-carousel-item{width:18%;margin-right:2.5%}.su-image-carousel-columns-6 .su-image-carousel-item{width:16.66667%}.su-image-carousel-columns-6.su-image-carousel-has-spacing .su-image-carousel-item{width:14.5%;margin-right:2.6%}.su-image-carousel-columns-7 .su-image-carousel-item{width:14.28571%}.su-image-carousel-columns-7.su-image-carousel-has-spacing .su-image-carousel-item{width:12.4%;margin-right:2.2%}.su-image-carousel-columns-8 .su-image-carousel-item{width:12.5%}.su-image-carousel-columns-8.su-image-carousel-has-spacing .su-image-carousel-item{width:10.75%;margin-right:2%}@media screen and (max-width: 768px){.su-image-carousel-adaptive .su-image-carousel-item{width:100% !important;margin-right:0 !important}}.su-image-carousel-crop .su-image-carousel-item-content::before{float:left;width:1px;margin-left:-1px;height:0;content:''}.su-image-carousel-crop .su-image-carousel-item-content::after{content:'';display:table;clear:both}.su-image-carousel-crop .su-image-carousel-item-content img{position:absolute;left:0;top:0;right:0;bottom:0;width:100%;height:100%;-o-object-fit:cover;object-fit:cover}.su-image-carousel-crop-16-9 .su-image-carousel-item-content::before{padding-top:56.25%}.su-image-carousel-crop-16-10 .su-image-carousel-item-content::before{padding-top:62.5%}.su-image-carousel-crop-21-9 .su-image-carousel-item-content::before{padding-top:42.85714%}.su-image-carousel-crop-5-4 .su-image-carousel-item-content::before{padding-top:80%}.su-image-carousel-crop-4-3 .su-image-carousel-item-content::before{padding-top:75%}.su-image-carousel-crop-3-2 .su-image-carousel-item-content::before{padding-top:66.66667%}.su-image-carousel-crop-2-1 .su-image-carousel-item-content::before{padding-top:50%}.su-image-carousel-crop-1-1 .su-image-carousel-item-content::before{padding-top:100%}.su-image-carousel-crop-1-2 .su-image-carousel-item-content::before{padding-top:200%}.su-image-carousel-crop-2-3 .su-image-carousel-item-content::before{padding-top:150%}.su-image-carousel-crop-3-4 .su-image-carousel-item-content::before{padding-top:133.33333%}.su-image-carousel-crop-4-5 .su-image-carousel-item-content::before{padding-top:125%}.su-image-carousel-crop-9-21 .su-image-carousel-item-content::before{padding-top:233.33333%}.su-image-carousel-crop-10-16 .su-image-carousel-item-content::before{padding-top:160%}.su-image-carousel-crop-9-16 .su-image-carousel-item-content::before{padding-top:177.77778%}.su-image-carousel-align-left{float:left;margin-right:1.5em;margin-top:0}.su-image-carousel-align-right{float:right;margin-left:1.5em;margin-top:0}.su-image-carousel-align-center{margin-right:auto;margin-left:auto}.su-image-carousel-align-full{margin-left:calc(50% - 50vw);margin-right:calc(50% - 50vw);max-width:100vw !important;width:100vw !important}.su-image-carousel button.flickity-prev-next-button{position:absolute;top:50%;display:block;width:44px;height:44px;margin:-22px 0 0;padding:0;opacity:0;outline:none;border-radius:50%;-webkit-transform:none;transform:none;-webkit-transition:opacity 0.2s ease, -webkit-transform 0.2s ease;transition:opacity 0.2s ease, -webkit-transform 0.2s ease;transition:opacity 0.2s ease, transform 0.2s ease;transition:opacity 0.2s ease, transform 0.2s ease, -webkit-transform 0.2s ease}.su-image-carousel:hover button.flickity-prev-next-button{opacity:0.5}.su-image-carousel button.flickity-prev-next-button:hover,.su-image-carousel button.flickity-prev-next-button:focus{opacity:1;box-shadow:none}.su-image-carousel button.flickity-prev-next-button:focus{-webkit-transform:scale(1.05);transform:scale(1.05)}.su-image-carousel button.flickity-prev-next-button[disabled]{display:none}.su-image-carousel button.flickity-prev-next-button.previous{left:20px}.su-image-carousel button.flickity-prev-next-button.next{right:20px}.su-image-carousel>ol.flickity-page-dots{position:absolute;top:50%;left:50%;bottom:auto;width:auto;margin:0;padding:0;list-style:none;-webkit-transform:translate(-50%, -50%);transform:translate(-50%, -50%);pointer-events:none;opacity:0;-webkit-transition:opacity 0.2s ease;transition:opacity 0.2s ease}.su-image-carousel>ol.flickity-page-dots>li.dot{position:relative;width:20px;height:20px;display:inline-block;margin:5px;padding:0;list-style:none;pointer-events:all;border-radius:50%;opacity:0.5;-webkit-transition:opacity 0.2s ease;transition:opacity 0.2s ease}.su-image-carousel>ol.flickity-page-dots>li.dot:hover{opacity:1}.su-image-carousel>ol.flickity-page-dots>li.dot::before{position:absolute;top:50%;left:50%;display:none;width:10px;height:10px;margin:0;padding:0;content:'';border-radius:50%;-webkit-transform:translate(-50%, -50%);transform:translate(-50%, -50%)}.su-image-carousel>ol.flickity-page-dots>li.dot.is-selected::before{display:block}.su-image-carousel:hover ol.flickity-page-dots{opacity:1}.su-image-carousel-controls-style-dark button.flickity-prev-next-button{background:black;color:white}.su-image-carousel-controls-style-dark ol.flickity-page-dots li.dot{background:black}.su-image-carousel-controls-style-dark ol.flickity-page-dots li.dot::before{background:white}.su-image-carousel-controls-style-light button.flickity-prev-next-button{background:white;color:black}.su-image-carousel-controls-style-light ol.flickity-page-dots li.dot{background:white}.su-image-carousel-controls-style-light ol.flickity-page-dots li.dot::before{background:black}.su-image-carousel-slides-style-default .su-image-carousel-item-content{margin:1px}.su-image-carousel-slides-style-default .su-image-carousel-item-content img{padding:3px;background:white;border:1px solid #ccc;border-radius:7px}.su-image-carousel-slides-style-default .su-image-carousel-item-content span{bottom:4px;right:4px;left:4px;padding:0.5em 0.7em;background:-webkit-gradient(linear, left bottom, left top, from(rgba(0,0,0,0.7)), to(transparent));background:-webkit-linear-gradient(bottom, rgba(0,0,0,0.7), transparent);background:linear-gradient(to top, rgba(0,0,0,0.7), transparent);text-shadow:0 2px 5px black;color:white;border-bottom-right-radius:2px;border-bottom-left-radius:2px}.su-image-carousel-slides-style-minimal .su-image-carousel-item-content{margin:1px}.su-image-carousel-slides-style-minimal .su-image-carousel-item-content span{right:0;bottom:0;left:0;padding:0.7em;background:-webkit-gradient(linear, left bottom, left top, from(rgba(0,0,0,0.7)), to(transparent));background:-webkit-linear-gradient(bottom, rgba(0,0,0,0.7), transparent);background:linear-gradient(to top, rgba(0,0,0,0.7), transparent);text-shadow:0 2px 5px black;color:white}.su-image-carousel-slides-style-photo .su-image-carousel-item-content{padding:7px}.su-image-carousel-slides-style-photo .su-image-carousel-item-content img{border:5px solid white;border-radius:7px;box-shadow:0 2px 5px rgba(0,0,0,0.5)}.su-image-carousel-slides-style-photo .su-image-carousel-item-content span{right:12px;bottom:12px;left:12px;padding:0.3em 0.5em;background:white;color:black;font-size:0.9em}.su-image-carousel-slides-style-photo.su-image-carousel-crop .su-image-carousel-item-content img{top:7px;right:7px;left:7px;bottom:7px;width:calc(100% - 14px);height:calc(100% - 14px)}.su-image-carousel-mfp.mfp-bg{z-index:102000 !important}.su-image-carousel-mfp.mfp-wrap{z-index:102001 !important}.su-image-carousel-mfp.mfp-wrap .mfp-preloader{z-index:102002 !important}.su-image-carousel-mfp.mfp-wrap .mfp-content{z-index:102003 !important}.su-image-carousel-mfp.mfp-wrap button.mfp-close,.su-image-carousel-mfp.mfp-wrap button.mfp-arrow{z-index:102004 !important}.su-image-carousel-has-outline button.flickity-prev-next-button:focus,.su-image-carousel-has-outline .su-image-carousel-item-content a:focus img{outline-width:2px;outline-style:solid;outline-color:Highlight}@media (-webkit-min-device-pixel-ratio: 0){.su-image-carousel-has-outline button.flickity-prev-next-button:focus,.su-image-carousel-has-outline .su-image-carousel-item-content a:focus{outline-color:-webkit-focus-ring-color;outline-style:auto}}.su-label{display:inline;margin-right:0.3em;padding:0.1em 0.3em;font-size:0.8em;height:0.8em;line-height:0.8em;color:#fff;border-radius:3px}.su-label-type-default{background:#999}.su-label-type-success{background:#090}.su-label-type-warning{background:#f90}.su-label-type-important{background:#f03}.su-label-type-black{background:#111}.su-label-type-info{background:#09c}.su-lightbox-content{position:relative;margin:0 auto}.mfp-content .su-lightbox-content,#su-generator .su-lightbox-content{display:block !important}.su-lightbox-content-preview{width:100%;min-height:300px;background:#444;overflow:hidden}.su-lightbox-content h1,.su-lightbox-content h2,.su-lightbox-content h3,.su-lightbox-content h4,.su-lightbox-content h5,.su-lightbox-content h6{color:inherit}.su-lightbox{cursor:pointer}.su-list{margin-bottom:1.5em}.su-list ul{margin:0 !important;padding:0 !important;list-style:none !important}.su-list ul li{position:relative;display:block !important;margin:0 !important;padding:4px 0 4px 2em !important;list-style-type:none !important;line-height:1.3em}.su-list ul li>img{position:absolute;left:0;top:4px;width:1.3em;height:1.3em;padding:0;margin:0;border:none}.su-list ul li>i{position:absolute;left:0;top:4px;width:1.3em;height:1.3em;line-height:1.3em;text-align:center}.su-members{margin-bottom:1.5em;padding:1em;border-width:1px 0;border-style:solid;text-align:center}.su-members a{text-decoration:underline;color:inherit}.su-note{margin:0 0 1.5em;border-width:1px;border-style:solid}.su-note-inner{padding:1em;border-width:1px;border-style:solid}.su-posts-default-loop .su-post{margin-bottom:2.5em;line-height:1.5}.su-posts-default-loop .su-post:after{content:'';display:table;clear:both}.su-posts-default-loop .su-post-thumbnail{float:left;display:block;width:100px;height:100px;margin-right:1em}.su-posts-default-loop .su-post-thumbnail img{max-width:100px;max-height:100px}.su-posts-default-loop h2.su-post-title{clear:none;margin:0 0 0.3em;font-size:1.2em;font-weight:bold}.su-posts-default-loop .su-post-meta{margin-bottom:0.7em;font-size:0.8em;opacity:0.6;filter:alpha(opacity=60)}.su-posts-default-loop .su-post-excerpt{margin-bottom:0.5em}.su-posts-default-loop .su-post-excerpt p:last-child{margin-bottom:0}.su-posts-default-loop .su-post-comments-link{font-size:0.9em}.su-posts-teaser-loop .su-post{margin-bottom:1.5em;line-height:1.2}.su-posts-teaser-loop .su-post:after{content:'';display:table;clear:both}.su-posts-teaser-loop .su-post-thumbnail{float:left;display:block;width:56px;height:56px;margin:0 1em 0 0}.su-posts-teaser-loop .su-post-thumbnail img{display:block;margin:0;padding:2px;border:1px solid #ccc;border-radius:5px;max-width:100%;max-height:100%}.su-posts-teaser-loop h2.su-post-title{display:block;margin:0;padding:0;border:none;font-size:0.9em;font-weight:normal;clear:none}.su-posts-single-post .su-post{margin-bottom:2.5em;line-height:1.5}.su-posts-single-post .su-post:after{content:'';display:table;clear:both}.su-posts-single-post h1.su-post-title{clear:none;margin:0 0 0.3em;font-size:1.2em;font-weight:bold}.su-posts-single-post .su-post-meta{margin-bottom:0.7em;font-size:0.8em;opacity:0.6;filter:alpha(opacity=60)}.su-posts-single-post .su-post-content{margin-bottom:0.5em}.su-posts-single-post .su-post-content p:last-child{margin-bottom:0}.su-private{margin:0 0 1.5em}.su-pullquote{display:block;width:30%;padding:0.5em 1em}.su-pullquote-align-left{margin:0.5em 1.5em 1em 0;padding-left:0;float:left;border-right:5px solid #eee}.su-pullquote-align-right{margin:0.5em 0 1em 1.5em;padding-right:0;float:right;border-left:5px solid #eee}@media screen and (max-width: 48em){.su-pullquote{width:auto}.su-pullquote-align-left,.su-pullquote-align-right{float:none;margin:1.5em 0;padding:0.5em 1em}}.su-qrcode{display:inline-block}.su-qrcode-align-left{float:left;margin:0 0.5em 0.5em 0}.su-qrcode-align-center{display:block;clear:both;margin:1em auto;text-align:center}.su-qrcode-align-right{float:right;margin:0 0 0.5em 0.5em}.su-qrcode a,.su-qrcode a:hover,.su-qrcode a:active,.su-qrcode a:focus{background:transparent;outline:none;display:inline;text-decoration:none}.su-qrcode-clickable a:hover{opacity:0.7}.su-qrcode img{max-width:100%}.su-quote-style-default{position:relative;margin-bottom:1.5em;padding:0.5em 3em;font-style:italic}.su-quote-style-default:before,.su-quote-style-default:after{position:absolute;display:block;width:20px;height:20px;background-image:url("../images/quote.png");content:''}.su-quote-style-default:before{top:0;left:0;background-position:0 0}.su-quote-style-default:after{right:0;bottom:0;background-position:-20px 0}.su-quote-style-default .su-quote-cite{display:block;text-align:right;font-style:normal}.su-quote-style-default .su-quote-cite:before{content:'\2014\0000a0'}.su-quote-style-default .su-quote-cite a{text-decoration:underline}.su-screenr{margin:0 0 1.5em}.su-screenr iframe{border:none !important}.su-service{position:relative;margin:0 0 1.5em}.su-service-title{display:block;margin-bottom:0.5em;color:#333;font-weight:bold;font-size:1.1em}.su-service-title img{position:absolute;top:0;left:0;display:block !important;margin:0 !important;padding:0 !important;border:none !important;box-shadow:none !important}.su-service-title i{position:absolute;top:0;left:0;display:block !important;width:1em;height:1em;text-align:center;line-height:1em}.su-service-content{line-height:1.4}.su-slider{position:relative;margin-bottom:1.5em;overflow:hidden;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1}.su-slider-centered{margin:0 auto 1.5em}.su-slider-slides{position:relative;width:100%;-webkit-transition-property:-webkit-transform, left, top;-webkit-transition-duration:0s;-webkit-transform:translate3d(0, 0, 0);-webkit-transition-timing-function:ease;-moz-transition-property:-moz-transform, left, top;-moz-transition-duration:0s;-moz-transform:translate3d(0, 0, 0);-moz-transition-timing-function:ease;-o-transition-property:-o-transform, left, top;-o-transition-duration:0s;-o-transform:translate3d(0, 0, 0);-o-transition-timing-function:ease;-o-transform:translate(0, 0);-ms-transition-property:-ms-transform, left, top;-ms-transition-duration:0s;-ms-transform:translate3d(0, 0, 0);-ms-transition-timing-function:ease;-webkit-transition-property:left, top, -webkit-transform;transition-property:left, top, -webkit-transform;transition-property:transform, left, top;transition-property:transform, left, top, -webkit-transform;transition-duration:0s;transform:translate3d(0, 0, 0);transition-timing-function:ease}.swiper-free-mode>.su-slider-slides{-webkit-transition-timing-function:ease-out;transition-timing-function:ease-out;margin:0 auto}.su-slider-slide{position:relative;float:left}.su-slider-slide>a,.su-slider-slide>img,.su-slider-slide>a>img{position:relative;display:block;width:100%;height:100%;text-decoration:none}.su-slider-responsive-yes .su-slider-slide>a,.su-slider-responsive-yes .su-slider-slide>img,.su-slider-responsive-yes .su-slider-slide>a>img{height:auto}.su-slider-pages-no .su-slider-pagination{display:none}.swiper-wp8-horizontal{-ms-touch-action:pan-y}.swiper-wp8-vertical{-ms-touch-action:pan-x}.su-slider-slide-title{position:absolute;left:20px;bottom:20px;display:block;max-width:90%;padding:5px 10px;color:#fff;line-height:1.3;background:#000;background:rgba(0,0,0,0.5);border-radius:5px;-moz-border-radius:5px;-webkit-border-radius:5px;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;filter:alpha(opacity=0);opacity:0;transition:opacity 1s;-o-transition:opacity 1s;-moz-transition:opacity 1s;-webkit-transition:opacity 1s}.su-slider-slide-visible .su-slider-slide-title{filter:alpha(opacity=100);opacity:1}.su-slider-prev,.su-slider-next{position:absolute;top:50%;display:block;width:40px;height:40px;margin-top:-20px !important;background:#000 0 0 url("../images/swiper/default.png") no-repeat;background-color:rgba(0,0,0,0.5);cursor:pointer;border-radius:50%;-moz-border-radius:50%;-webkit-border-radius:50%;filter:alpha(opacity=0);opacity:0;-webkit-transition:all 0.2s;transition:all 0.2s}.su-slider-prev{right:10px;margin-right:30px;background-position:-40px 0}.su-slider-next{left:10px;margin-left:30px;background-position:0 0}.su-slider:hover .su-slider-prev,.su-slider:hover .su-slider-next{margin-left:0;margin-right:0;filter:alpha(opacity=70);opacity:0.7}.su-slider .su-slider-prev:hover,.su-slider .su-slider-next:hover{filter:alpha(opacity=100);opacity:1}.su-slider-pagination{position:absolute;left:15%;right:15%;top:50%;width:70%;height:0;margin-top:-7px;text-align:center;cursor:default;filter:alpha(opacity=0);opacity:0;-webkit-transition:all 0.2s;transition:all 0.2s}.su-slider:hover .su-slider-pagination{bottom:20px;filter:alpha(opacity=100);opacity:1}.su-slider-pagination span{display:inline-block;width:14px;height:14px;margin:0;background:#000 0 -999px url("../images/swiper/default.png") no-repeat;background-color:rgba(0,0,0,0.5);cursor:pointer;border-radius:50%;-moz-border-radius:50%;-webkit-border-radius:50%;-webkit-transition:all 0.2s;transition:all 0.2s}.su-slider:hover .su-slider-pagination span{margin:0 3px}.su-slider .su-slider-pagination span.swiper-visible-switch{background-color:#fff;background-color:rgba(255,255,255,0.5)}.su-slider-pagination span:hover,.su-slider-pagination span.swiper-active-switch{background-position:0 -40px}.su-spacer{display:block;height:0;clear:both;overflow:hidden}.su-spacer-5{height:5px}.su-spacer-10{height:10px}.su-spacer-20{height:20px}.su-spacer-30{height:30px}.su-spacer-40{height:40px}.su-spoiler{margin-bottom:1.5em}.su-spoiler .su-spoiler:last-child{margin-bottom:0}.su-spoiler-title{position:relative;cursor:pointer;min-height:20px;line-height:20px;padding:7px 7px 7px 34px;font-weight:bold;font-size:13px}.su-spoiler-title:focus{outline:currentColor thin dotted}.su-spoiler-icon{position:absolute;left:7px;top:7px;display:block;width:20px;height:20px;line-height:21px;text-align:center;font-size:14px;font-family:ShortcodesUltimateIcons;font-weight:normal;font-style:normal;-webkit-font-smoothing:antialiased;*margin-right:0.3em}.su-spoiler-content{padding:14px;-webkit-transition:padding-top 0.2s;transition:padding-top 0.2s;-ie-transition:padding-top 0.2s}.su-spoiler.su-spoiler-closed>.su-spoiler-content{height:0;margin:0;padding:0;overflow:hidden;border:none;opacity:0}.su-spoiler.su-spoiler-closed>.su-spoiler-content iframe{display:none}.su-spoiler-icon-plus .su-spoiler-icon:before{content:'\f068'}.su-spoiler-icon-plus.su-spoiler-closed .su-spoiler-icon:before{content:'\f067'}.su-spoiler-icon-plus-circle .su-spoiler-icon:before{content:'\f056'}.su-spoiler-icon-plus-circle.su-spoiler-closed .su-spoiler-icon:before{content:'\f055'}.su-spoiler-icon-plus-square-1 .su-spoiler-icon:before{content:'\f146'}.su-spoiler-icon-plus-square-1.su-spoiler-closed .su-spoiler-icon:before{content:'\f0fe'}.su-spoiler-icon-plus-square-2 .su-spoiler-icon:before{content:'\f147'}.su-spoiler-icon-plus-square-2.su-spoiler-closed .su-spoiler-icon:before{content:'\f196'}.su-spoiler-icon-arrow .su-spoiler-icon:before{content:'\f063'}.su-spoiler-icon-arrow.su-spoiler-closed .su-spoiler-icon:before{content:'\f061'}.su-spoiler-icon-arrow-circle-1 .su-spoiler-icon:before{content:'\f0ab'}.su-spoiler-icon-arrow-circle-1.su-spoiler-closed .su-spoiler-icon:before{content:'\f0a9'}.su-spoiler-icon-arrow-circle-2 .su-spoiler-icon:before{content:'\f01a'}.su-spoiler-icon-arrow-circle-2.su-spoiler-closed .su-spoiler-icon:before{content:'\f18e'}.su-spoiler-icon-chevron .su-spoiler-icon:before{content:'\f078'}.su-spoiler-icon-chevron.su-spoiler-closed .su-spoiler-icon:before{content:'\f054'}.su-spoiler-icon-chevron-circle .su-spoiler-icon:before{content:'\f13a'}.su-spoiler-icon-chevron-circle.su-spoiler-closed .su-spoiler-icon:before{content:'\f138'}.su-spoiler-icon-caret .su-spoiler-icon:before{content:'\f0d7'}.su-spoiler-icon-caret.su-spoiler-closed .su-spoiler-icon:before{content:'\f0da'}.su-spoiler-icon-caret-square .su-spoiler-icon:before{content:'\f150'}.su-spoiler-icon-caret-square.su-spoiler-closed .su-spoiler-icon:before{content:'\f152'}.su-spoiler-icon-folder-1 .su-spoiler-icon:before{content:'\f07c'}.su-spoiler-icon-folder-1.su-spoiler-closed .su-spoiler-icon:before{content:'\f07b'}.su-spoiler-icon-folder-2 .su-spoiler-icon:before{content:'\f115'}.su-spoiler-icon-folder-2.su-spoiler-closed .su-spoiler-icon:before{content:'\f114'}.su-spoiler-style-default>.su-spoiler-title{padding-left:27px;padding-right:0}.su-spoiler-style-default>.su-spoiler-title>.su-spoiler-icon{left:0}.su-spoiler-style-default>.su-spoiler-content{padding:1em 0 1em 27px}.su-spoiler-style-fancy{border:1px solid #ccc;border-radius:10px;background:#fff;color:#333}.su-spoiler-style-fancy>.su-spoiler-title{border-bottom:1px solid #ccc;border-radius:10px;background:#f0f0f0;font-size:0.9em}.su-spoiler-style-fancy.su-spoiler-closed>.su-spoiler-title{border:none}.su-spoiler-style-fancy>.su-spoiler-content{border-radius:10px}.su-spoiler-style-simple{border-top:1px solid #ccc;border-bottom:1px solid #ccc}.su-spoiler-style-simple>.su-spoiler-title{padding:5px 10px;background:#f0f0f0;color:#333;font-size:0.9em}.su-spoiler-style-simple>.su-spoiler-title>.su-spoiler-icon{display:none}.su-spoiler-style-simple>.su-spoiler-content{padding:1em 10px;background:#fff;color:#333}.su-table{width:100%;margin-bottom:1.5em}.su-table table{width:100% !important;margin:0 !important;border-collapse:collapse !important;font-size:1em !important;border:1px solid #ccc !important;table-layout:auto !important}.su-table table th{text-align:center !important;padding:1em !important;font-size:1em !important;font-weight:bold !important;color:#333 !important;border:1px solid #ccc !important;background:#f0f0f0 !important}.su-table table td{padding:0.5em 1em !important;border:1px solid #ccc !important;background:#fff !important}.su-table-responsive{overflow-x:auto}.su-table-responsive table{width:auto !important;min-width:100% !important}.su-table-responsive table th,.su-table-responsive table td{word-break:initial !important}.su-table-alternate table tr:nth-child(even) td{background-color:#f7f7f7 !important}.su-table-fixed table{table-layout:fixed !important}.su-tabs{margin:0 0 1.5em;padding:3px;border-radius:3px;background:#eee}.su-tabs-nav span{display:inline-block;margin-right:3px;padding:10px 15px;min-height:40px;border-top-left-radius:3px;border-top-right-radius:3px;color:#333;font-size:13px;line-height:20px;cursor:pointer;-webkit-transition:all 0.2s;transition:all 0.2s}.su-tabs-nav span:hover{background:#f5f5f5}.su-tabs-nav span.su-tabs-current{background:#fff;cursor:default}.su-tabs-nav span:focus{outline:currentColor thin dotted}.su-tabs-nav span.su-tabs-disabled{opacity:0.5;cursor:default}.su-tabs-pane{padding:15px;border-bottom-right-radius:3px;border-bottom-left-radius:3px;background:#fff;color:#333;font-size:13px}.su-tabs-pane:not(.su-tabs-pane-open){overflow:hidden !important;padding:0 !important;min-height:0 !important;height:0 !important;border:none !important}.su-tabs-nav,.su-tabs-nav span,.su-tabs-panes,.su-tabs-pane{box-sizing:border-box !important}.su-tabs-vertical{display:-webkit-box;display:flex}.su-tabs-vertical .su-tabs-nav{width:30%}.su-tabs-vertical .su-tabs-nav>span{display:block;margin-right:0;border-radius:0;border-top-left-radius:3px;border-bottom-left-radius:3px}.su-tabs-vertical .su-tabs-panes{width:70%}.su-tabs-vertical .su-tabs-panes .su-tabs-pane{height:100%;border-radius:0;border-top-right-radius:3px;border-bottom-right-radius:3px}@media only screen and (max-width: 768px){.su-tabs-vertical{-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-direction:column}.su-tabs-vertical .su-tabs-nav,.su-tabs-vertical .su-tabs-panes{width:100%}.su-tabs-vertical .su-tabs-nav>span,.su-tabs-vertical .su-tabs-nav .su-tabs-pane,.su-tabs-vertical .su-tabs-panes>span,.su-tabs-vertical .su-tabs-panes .su-tabs-pane{border-radius:3px}.su-tabs-mobile-stack .su-tabs-nav span{display:block}.su-tabs-mobile-scroll .su-tabs-nav{display:-webkit-box;display:flex;-webkit-box-align:end;align-items:flex-end;white-space:nowrap;overflow-x:auto}}.qtip.su-qtip{max-width:480px !important}.su-tooltip{display:inline-block}.su-qtip-size-1{font-size:0.8em !important}.su-qtip-size-2{font-size:0.9em !important}.su-qtip-size-3{font-size:1em !important}.su-qtip-size-4{font-size:1.1em !important}.su-qtip-size-5{font-size:1.2em !important}.su-qtip-size-6{font-size:1.3em !important}.su-tooltip-content{display:none}.su-tooltip-content>:last-child{margin-bottom:0}.qtip-content .su-tooltip-content img,.qtip-content .su-tooltip-content object,.qtip-content .su-tooltip-content iframe,.qtip-content .su-tooltip-content embed{max-width:430px}.qtip-content .su-tooltip-content .su-u-responsive-media-yes{width:430px}.su-video{position:relative;margin-bottom:1.5em;overflow:hidden}.su-video .jp-title{position:absolute;top:-100px;left:0;width:100%;height:30px;padding:0 1em;line-height:30px;font-size:0.9em;background:#000;background:rgba(0,0,0,0.5);color:#fff;-webkit-transition:top 0.2s;transition:top 0.2s}.su-video:hover .jp-title{top:0}.su-video .jp-start{position:absolute;left:0;top:0;width:100%;height:100%;cursor:pointer;opacity:0.5;-webkit-transition:opacity 0.2s;transition:opacity 0.2s;background:50% 50% url("../images/player/default-start.png") no-repeat}.su-video:hover .jp-start{opacity:0.8}.su-video.jp-video-full{position:fixed;left:0;top:0;width:100%;height:100%}.su-video.jp-video-full .jp-jplayer{position:fixed !important;left:0;top:0;overflow:hidden}.su-video .jp-gui{position:relative;height:30px;background:#7c8781;background:-webkit-gradient(linear, left top, left bottom, from(#7c8781), to(#0a0809));background:-webkit-linear-gradient(top, #7c8781 0%, #0a0809 100%);background:linear-gradient(to bottom, #7c8781 0%, #0a0809 100%);border-bottom-right-radius:3px;border-bottom-left-radius:3px}.su-video.jp-video-full .jp-gui{position:fixed;left:0;bottom:0;width:100%}.su-video-controls-no .jp-gui{position:absolute !important;bottom:-100px;left:0;right:0;-webkit-transition:bottom 0.2s;transition:bottom 0.2s}.su-video-controls-no:hover .jp-gui{bottom:0}.su-video img{border-radius:0 !important;border:none !important;margin:0 !important;padding:0 !important}.su-video .jp-gui .jp-play,.su-video .jp-gui .jp-pause{position:absolute;left:0;top:0;display:block;width:30px;height:30px;border-right:1px solid #454947;cursor:pointer}.su-video .jp-gui .jp-play{background:0 0 url("../images/player/default.png") no-repeat}.su-video .jp-gui .jp-pause{background:-30px 0 url("../images/player/default.png") no-repeat}.su-video .jp-full-screen,.su-video .jp-restore-screen{position:absolute;top:0;right:0;display:block;width:30px;height:30px;border-left:1px solid #454947;cursor:pointer}.su-video .jp-full-screen{background:0 -30px url("../images/player/default.png") no-repeat}.su-video .jp-restore-screen{background:-30px -30px url("../images/player/default.png") no-repeat}.su-video .jp-progress{position:absolute;top:10px;left:90px;right:90px;height:10px;background:#333;border-radius:3px;box-shadow:0 0 5px #000 inset}.su-video .jp-seek-bar,.su-video .jp-play-bar{position:absolute;top:0;left:0;height:100%;cursor:pointer;border-radius:3px}.su-video .jp-seek-bar{background:#0b0b0b;background:-webkit-gradient(linear, left top, left bottom, from(#0b0b0b), to(#666));background:-webkit-linear-gradient(top, #0b0b0b 0%, #666 100%);background:linear-gradient(to bottom, #0b0b0b 0%, #666 100%)}.su-video .jp-play-bar{background:#6db3f2;background:-webkit-gradient(linear, left top, left bottom, from(#6db3f2), color-stop(50%, #54a3ee), color-stop(51%, #3690f0), to(#1e69de));background:-webkit-linear-gradient(top, #6db3f2 0%, #54a3ee 50%, #3690f0 51%, #1e69de 100%);background:linear-gradient(to bottom, #6db3f2 0%, #54a3ee 50%, #3690f0 51%, #1e69de 100%)}.su-video .jp-current-time,.su-video .jp-duration{position:absolute;top:0;display:block;height:30px;line-height:30px;color:#f5f5f5;font-size:10px}.su-video .jp-current-time{left:50px}.su-video .jp-duration{right:50px}.su-vimeo{margin:0 0 1.5em}.su-vimeo iframe{border:none !important}.su-youtube{margin:0 0 1.5em}.su-youtube iframe{border:none !important}
includes/css/shortcodes.full.css CHANGED
@@ -2194,6 +2194,10 @@
2194
  opacity: 0;
2195
  }
2196
 
 
 
 
 
2197
  .su-spoiler-icon-plus .su-spoiler-icon:before {
2198
  content: '\f068';
2199
  }
2194
  opacity: 0;
2195
  }
2196
 
2197
+ .su-spoiler.su-spoiler-closed > .su-spoiler-content iframe {
2198
+ display: none;
2199
+ }
2200
+
2201
  .su-spoiler-icon-plus .su-spoiler-icon:before {
2202
  content: '\f068';
2203
  }
includes/functions-galleries.php CHANGED
@@ -272,7 +272,7 @@ function su_get_gallery_slides( $source, $args = array() ) {
272
 
273
  foreach ( $query->posts as $post ) {
274
 
275
- $attachment_id = 'media' === $source['type'] || 'attachment' === $post->post_type
276
  ? $post->ID
277
  : get_post_thumbnail_id( $post->ID );
278
 
@@ -280,9 +280,13 @@ function su_get_gallery_slides( $source, $args = array() ) {
280
  continue;
281
  }
282
 
 
 
 
 
283
  $slide = array(
284
- 'attachment_id' => $attachment_id,
285
- 'caption' => trim( wp_get_attachment_caption( $attachment_id ) ),
286
  );
287
 
288
  switch ( $args['link'] ) {
272
 
273
  foreach ( $query->posts as $post ) {
274
 
275
+ $attachment_id = 'attachment' === $post->post_type
276
  ? $post->ID
277
  : get_post_thumbnail_id( $post->ID );
278
 
280
  continue;
281
  }
282
 
283
+ $caption = 'attachment' === $post->post_type || 'yes' === $args['prefer_caption']
284
+ ? wp_get_attachment_caption( $attachment_id )
285
+ : get_the_title( $post->ID );
286
+
287
  $slide = array(
288
+ 'attachment_id' => intval( $attachment_id ),
289
+ 'caption' => trim( $caption ),
290
  );
291
 
292
  switch ( $args['link'] ) {
includes/functions-helpers.php CHANGED
@@ -259,3 +259,21 @@ function su_set_file_extension( $path, $extension ) {
259
  return $path;
260
 
261
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
259
  return $path;
260
 
261
  }
262
+
263
+ /**
264
+ * Helper function to add utm-args to an URL.
265
+ *
266
+ * @since 5.6.1
267
+ */
268
+ function su_get_utm_link( $url, $utm ) {
269
+
270
+ return add_query_arg(
271
+ array(
272
+ 'utm_source' => $utm[0],
273
+ 'utm_medium' => $utm[1],
274
+ 'utm_campaign' => $utm[2],
275
+ ),
276
+ $url
277
+ );
278
+
279
+ }
includes/shortcodes/button.php CHANGED
@@ -388,6 +388,6 @@ function su_shortcode_button( $atts = null, $content = null ) {
388
 
389
  su_query_asset( 'css', 'su-shortcodes' );
390
 
391
- return $before . '<a href="' . su_do_attribute( $atts['url'] ) . '" class="' . implode( $classes, ' ' ) . '" style="' . implode( $a_css, ';' ) . '" target="_' . $atts['target'] . '"' . $atts['onclick'] . $atts['rel'] . $atts['title'] . $atts['id'] . '><span style="' . implode( $span_css, ';' ) . '">' . do_shortcode( stripcslashes( $content ) ) . $desc . '</span></a>' . $after;
392
 
393
  }
388
 
389
  su_query_asset( 'css', 'su-shortcodes' );
390
 
391
+ return $before . '<a href="' . su_do_attribute( $atts['url'] ) . '" class="' . implode( $classes, ' ' ) . '" style="' . implode( $a_css, ';' ) . '" target="_' . $atts['target'] . '"' . $atts['onclick'] . $atts['rel'] . $atts['title'] . $atts['id'] . $atts['download'] . '><span style="' . implode( $span_css, ';' ) . '">' . do_shortcode( stripcslashes( $content ) ) . $desc . '</span></a>' . $after;
392
 
393
  }
includes/shortcodes/image-carousel.php CHANGED
@@ -194,7 +194,11 @@ su_add_shortcode(
194
 
195
  function su_shortcode_image_carousel( $atts = null, $content = null ) {
196
 
197
- $atts = su_parse_shortcode_atts( 'image_carousel', $atts );
 
 
 
 
198
 
199
  $atts['columns'] = intval( $atts['columns'] );
200
  $atts['autoplay'] = floatval( str_replace( ',', '.', $atts['autoplay'] ) );
@@ -210,8 +214,9 @@ function su_shortcode_image_carousel( $atts = null, $content = null ) {
210
  $slides = su_get_gallery_slides(
211
  $atts['source'],
212
  array(
213
- 'limit' => $atts['limit'],
214
- 'link' => $atts['link'],
 
215
  )
216
  );
217
  $link_target_attr = 'blank' === $atts['target']
194
 
195
  function su_shortcode_image_carousel( $atts = null, $content = null ) {
196
 
197
+ $atts = su_parse_shortcode_atts(
198
+ 'image_carousel',
199
+ $atts,
200
+ array( 'prefer_caption' => 'no' )
201
+ );
202
 
203
  $atts['columns'] = intval( $atts['columns'] );
204
  $atts['autoplay'] = floatval( str_replace( ',', '.', $atts['autoplay'] ) );
214
  $slides = su_get_gallery_slides(
215
  $atts['source'],
216
  array(
217
+ 'limit' => $atts['limit'],
218
+ 'link' => $atts['link'],
219
+ 'prefer_caption' => $atts['prefer_caption'],
220
  )
221
  );
222
  $link_target_attr = 'blank' === $atts['target']
languages/shortcodes-ultimate.pot ADDED
@@ -0,0 +1,3836 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Copyright (C) 2019 Shortcodes Ultimate
2
+ # This file is distributed under the same license as the Shortcodes Ultimate package.
3
+ msgid ""
4
+ msgstr ""
5
+ "Project-Id-Version: Shortcodes Ultimate\n"
6
+ "MIME-Version: 1.0\n"
7
+ "Content-Type: text/plain; charset=UTF-8\n"
8
+ "Content-Transfer-Encoding: 8bit\n"
9
+ "X-Poedit-Basepath: ..\n"
10
+ "X-Poedit-KeywordsList: __;_e;_ex:1,2c;_n:1,2;_n_noop:1,2;_nx:1,2,4c;_nx_noop:1,2,3c;_x:1,2c;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c\n"
11
+ "X-Poedit-SearchPath-0: .\n"
12
+ "X-Poedit-SearchPathExcluded-0: *.js\n"
13
+ "X-Poedit-SourceCharset: UTF-8\n"
14
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
+
16
+ #: admin/class-shortcodes-ultimate-admin-addons.php:26, admin/class-shortcodes-ultimate-admin-addons.php:29, admin/class-shortcodes-ultimate-admin-addons.php:54, inc/core/generator.php:182, admin/partials/help/sidebar.php:6
17
+ msgid "Add-ons"
18
+ msgstr ""
19
+
20
+ #: admin/class-shortcodes-ultimate-admin-extra-shortcodes.php:38
21
+ msgctxt "Custom shortcodes group name"
22
+ msgid "Extra Shortcodes"
23
+ msgstr ""
24
+
25
+ #: admin/class-shortcodes-ultimate-admin-extra-shortcodes.php:70
26
+ msgid "Splash screen"
27
+ msgstr ""
28
+
29
+ #: admin/class-shortcodes-ultimate-admin-extra-shortcodes.php:74
30
+ msgid "Exit popup"
31
+ msgstr ""
32
+
33
+ #: admin/class-shortcodes-ultimate-admin-extra-shortcodes.php:78
34
+ msgid "Panel"
35
+ msgstr ""
36
+
37
+ #: admin/class-shortcodes-ultimate-admin-extra-shortcodes.php:82
38
+ msgid "Photo panel"
39
+ msgstr ""
40
+
41
+ #: admin/class-shortcodes-ultimate-admin-extra-shortcodes.php:86
42
+ msgid "Icon panel"
43
+ msgstr ""
44
+
45
+ #: admin/class-shortcodes-ultimate-admin-extra-shortcodes.php:90
46
+ msgid "Text with icon"
47
+ msgstr ""
48
+
49
+ #: admin/class-shortcodes-ultimate-admin-extra-shortcodes.php:94
50
+ msgid "Progress pie"
51
+ msgstr ""
52
+
53
+ #: admin/class-shortcodes-ultimate-admin-extra-shortcodes.php:98
54
+ msgid "Progress bar"
55
+ msgstr ""
56
+
57
+ #: admin/class-shortcodes-ultimate-admin-extra-shortcodes.php:102
58
+ msgid "Member"
59
+ msgstr ""
60
+
61
+ #: admin/class-shortcodes-ultimate-admin-extra-shortcodes.php:106
62
+ msgid "Section"
63
+ msgstr ""
64
+
65
+ #: admin/class-shortcodes-ultimate-admin-extra-shortcodes.php:110
66
+ msgid "Pricing table"
67
+ msgstr ""
68
+
69
+ #: admin/class-shortcodes-ultimate-admin-extra-shortcodes.php:114
70
+ msgid "Testimonial"
71
+ msgstr ""
72
+
73
+ #: admin/class-shortcodes-ultimate-admin-extra-shortcodes.php:118, includes/shortcodes/button.php:97, includes/shortcodes/list.php:15, includes/shortcodes/service.php:21, includes/shortcodes/spoiler.php:51
74
+ msgid "Icon"
75
+ msgstr ""
76
+
77
+ #: admin/class-shortcodes-ultimate-admin-extra-shortcodes.php:122
78
+ msgid "Content slider"
79
+ msgstr ""
80
+
81
+ #: admin/class-shortcodes-ultimate-admin-extra-shortcodes.php:126, includes/shortcodes/lightbox-content.php:73, includes/shortcodes/tooltip.php:46
82
+ msgid "Shadow"
83
+ msgstr ""
84
+
85
+ #: admin/class-shortcodes-ultimate-admin-settings.php:70, admin/class-shortcodes-ultimate-admin-settings.php:71, admin/class-shortcodes-ultimate-admin-settings.php:184, inc/core/generator.php:176
86
+ msgid "Settings"
87
+ msgstr ""
88
+
89
+ #: admin/class-shortcodes-ultimate-admin-settings.php:88, admin/class-shortcodes-ultimate-admin-settings.php:163
90
+ msgid "General settings"
91
+ msgstr ""
92
+
93
+ #: admin/class-shortcodes-ultimate-admin-settings.php:211
94
+ msgid "Custom CSS code"
95
+ msgstr ""
96
+
97
+ #: admin/class-shortcodes-ultimate-admin-settings.php:212
98
+ msgid "In this field you can write your custom CSS code for shortcodes. These styles will have higher priority compared to original styles of shortcodes. You can use variables in your CSS code. These variables will be replaced by respective values."
99
+ msgstr ""
100
+
101
+ #: admin/class-shortcodes-ultimate-admin-settings.php:219
102
+ msgid "Supported blocks"
103
+ msgstr ""
104
+
105
+ #: admin/class-shortcodes-ultimate-admin-settings.php:220
106
+ msgid "Enable the \"Insert Shortcode\" button in selected blocks"
107
+ msgstr ""
108
+
109
+ #: admin/class-shortcodes-ultimate-admin-settings.php:228
110
+ msgid "Enable shortcodes in"
111
+ msgstr ""
112
+
113
+ #: admin/class-shortcodes-ultimate-admin-settings.php:229
114
+ msgid "This option allows you to enable shortcodes in places where they are disabled by default"
115
+ msgstr ""
116
+
117
+ #: admin/class-shortcodes-ultimate-admin-settings.php:231
118
+ msgid "Term descriptions (Categories, Tags, Custom Taxonomies)"
119
+ msgstr ""
120
+
121
+ #: admin/class-shortcodes-ultimate-admin-settings.php:232
122
+ msgid "Text widgets"
123
+ msgstr ""
124
+
125
+ #: admin/class-shortcodes-ultimate-admin-settings.php:246
126
+ msgid "Shortcodes prefix"
127
+ msgstr ""
128
+
129
+ #: admin/class-shortcodes-ultimate-admin-settings.php:247
130
+ msgid "This prefix will be used in shortcode names. For example: set <code>MY_</code> prefix and shortcodes will look like <code>[MY_button]</code>. Please note that this setting does not change shortcodes that have been inserted earlier. Change this setting very carefully."
131
+ msgstr ""
132
+
133
+ #: admin/class-shortcodes-ultimate-admin-settings.php:257
134
+ msgid "Custom formatting"
135
+ msgstr ""
136
+
137
+ #: admin/class-shortcodes-ultimate-admin-settings.php:258
138
+ msgid "Enable this option if you face any problems with formatting of nested shortcodes."
139
+ msgstr ""
140
+
141
+ #: admin/class-shortcodes-ultimate-admin-settings.php:268
142
+ msgid "Skip default settings"
143
+ msgstr ""
144
+
145
+ #: admin/class-shortcodes-ultimate-admin-settings.php:269
146
+ msgid "Enable this option if you don't want the inserted shortcode to contain any settings that were not changed by you. As a result, inserted shortcodes will be much shorter."
147
+ msgstr ""
148
+
149
+ #: admin/class-shortcodes-ultimate-admin-settings.php:277
150
+ msgid "Required user capability"
151
+ msgstr ""
152
+
153
+ #: admin/class-shortcodes-ultimate-admin-settings.php:278
154
+ msgid "A user must have this capability to be able to use the \"Insert Shortcode\" button. Do not change this value if you do not understand its meaning as this may lower the plugin security."
155
+ msgstr ""
156
+
157
+ #: admin/class-shortcodes-ultimate-admin-settings.php:288
158
+ msgid "Hide deprecated shortcodes"
159
+ msgstr ""
160
+
161
+ #: admin/class-shortcodes-ultimate-admin-settings.php:289
162
+ msgid "This option hides all deprecated shortcodes from the Insert Shortcode window and at the Available Shortcodes page. Hidden shortcodes will continue to work."
163
+ msgstr ""
164
+
165
+ #: admin/class-shortcodes-ultimate-admin-shortcodes.php:26, admin/class-shortcodes-ultimate-admin-shortcodes.php:27
166
+ msgid "Available shortcodes"
167
+ msgstr ""
168
+
169
+ #: admin/class-shortcodes-ultimate-admin-shortcodes.php:88, admin/class-shortcodes-ultimate-admin-top-level.php:39, admin/class-shortcodes-ultimate-admin.php:267, includes/filters.php:65, inc/core/widget.php:14, inc/core/widget.php:40, admin/partials/help/sidebar.php:3
170
+ msgid "Shortcodes Ultimate"
171
+ msgstr ""
172
+
173
+ #: admin/class-shortcodes-ultimate-admin-shortcodes.php:305, inc/core/generator.php:247, admin/partials/extra/generator.php:2
174
+ msgid "All shortcodes"
175
+ msgstr ""
176
+
177
+ #: admin/class-shortcodes-ultimate-admin-shortcodes.php:392
178
+ msgid "Media file IDs"
179
+ msgstr ""
180
+
181
+ #: admin/class-shortcodes-ultimate-admin-shortcodes.php:393
182
+ msgid "Post IDs"
183
+ msgstr ""
184
+
185
+ #: admin/class-shortcodes-ultimate-admin-shortcodes.php:394, inc/core/generator-views.php:147, includes/shortcodes/image-carousel.php:20
186
+ msgid "Recent posts"
187
+ msgstr ""
188
+
189
+ #: admin/class-shortcodes-ultimate-admin-shortcodes.php:395
190
+ msgid "Taxonomy term slug / term IDs"
191
+ msgstr ""
192
+
193
+ #: admin/class-shortcodes-ultimate-admin-shortcodes.php:400
194
+ msgid "#HEX color"
195
+ msgstr ""
196
+
197
+ #: admin/class-shortcodes-ultimate-admin-shortcodes.php:401
198
+ msgid "Any text value"
199
+ msgstr ""
200
+
201
+ #: admin/class-shortcodes-ultimate-admin-shortcodes.php:402
202
+ msgid "CSS border shorthand property"
203
+ msgstr ""
204
+
205
+ #: admin/class-shortcodes-ultimate-admin-shortcodes.php:403
206
+ msgid "CSS box/text-shadow shorthand property"
207
+ msgstr ""
208
+
209
+ #: admin/class-shortcodes-ultimate-admin-shortcodes.php:404
210
+ msgid "CSS class name(s) separated by space(s)"
211
+ msgstr ""
212
+
213
+ #: admin/class-shortcodes-ultimate-admin-shortcodes.php:405
214
+ msgid "Post type slug(s) separated by comma(s)"
215
+ msgstr ""
216
+
217
+ #: admin/class-shortcodes-ultimate-admin-shortcodes.php:406
218
+ msgid "Taxonomy slug(s) separated by comma(s)"
219
+ msgstr ""
220
+
221
+ #: admin/class-shortcodes-ultimate-admin-shortcodes.php:407
222
+ msgid "Term slug(s) separated by comma(s)"
223
+ msgstr ""
224
+
225
+ #: admin/class-shortcodes-ultimate-admin-shortcodes.php:408
226
+ msgid "The URL of uploaded file"
227
+ msgstr ""
228
+
229
+ #: admin/class-shortcodes-ultimate-admin-shortcodes.php:409
230
+ msgid "%1$s or %2$s"
231
+ msgstr ""
232
+
233
+ #: admin/class-shortcodes-ultimate-admin-shortcodes.php:410, admin/class-shortcodes-ultimate-admin-shortcodes.php:411
234
+ msgid "Number from %1$s to %2$s"
235
+ msgstr ""
236
+
237
+ #: admin/class-shortcodes-ultimate-admin-shortcodes.php:412
238
+ msgid "Fork Awesome icon name (with \"icon:\" prefix) or image URL"
239
+ msgstr ""
240
+
241
+ #: admin/class-shortcodes-ultimate-admin-shortcodes.php:412
242
+ msgid "Examples"
243
+ msgstr ""
244
+
245
+ #: admin/class-shortcodes-ultimate-admin-shortcodes.php:412
246
+ msgid "See available Fork Awesome icons"
247
+ msgstr ""
248
+
249
+ #: admin/class-shortcodes-ultimate-admin-shortcodes.php:433
250
+ msgid "none"
251
+ msgstr ""
252
+
253
+ #: admin/class-shortcodes-ultimate-admin-shortcodes.php:506, admin/class-shortcodes-ultimate-admin-top-level.php:40
254
+ msgid "Shortcodes"
255
+ msgstr ""
256
+
257
+ #. translators: %1$s - required version number, %2$s - current version number
258
+ #: includes/class-shortcodes-ultimate-activator.php:49
259
+ msgid "Shortcodes Ultimate is not activated, because it requires PHP version %1$s (or higher). You have version %2$s."
260
+ msgstr ""
261
+
262
+ #. translators: %1$s - required version number, %2$s - current version number
263
+ #: includes/class-shortcodes-ultimate-activator.php:74
264
+ msgid "Shortcodes Ultimate is not activated, because it requires WordPress version %1$s (or higher). You have version %2$s."
265
+ msgstr ""
266
+
267
+ #: includes/filters.php:62
268
+ msgid "Slide link"
269
+ msgstr ""
270
+
271
+ #: includes/filters.php:65
272
+ msgid "Use this field to add custom links to slides used with Slider, Carousel and Custom Gallery shortcodes"
273
+ msgstr ""
274
+
275
+ #: includes/functions-galleries.php:395
276
+ msgid "Original image size"
277
+ msgstr ""
278
+
279
+ #: templates/default-loop.php:16, templates/single-post.php:17
280
+ msgid "Posted"
281
+ msgstr ""
282
+
283
+ #: templates/default-loop.php:24, templates/single-post.php:19
284
+ msgid "0 comments"
285
+ msgstr ""
286
+
287
+ #: templates/default-loop.php:24, templates/single-post.php:19
288
+ msgid "1 comment"
289
+ msgstr ""
290
+
291
+ #: templates/default-loop.php:32, templates/list-loop.php:16, templates/single-post.php:32, templates/teaser-loop.php:20
292
+ msgid "Posts not found"
293
+ msgstr ""
294
+
295
+ #: templates/single-post.php:19
296
+ msgid "%n comments"
297
+ msgstr ""
298
+
299
+ #: inc/core/assets.php:83
300
+ msgid "Choose file"
301
+ msgstr ""
302
+
303
+ #: inc/core/assets.php:84
304
+ msgid "Insert"
305
+ msgstr ""
306
+
307
+ #: inc/core/assets.php:85
308
+ msgid "Select images"
309
+ msgstr ""
310
+
311
+ #: inc/core/assets.php:86
312
+ msgid "Add selected images"
313
+ msgstr ""
314
+
315
+ #: inc/core/assets.php:87
316
+ msgid "Please enter a name for new preset"
317
+ msgstr ""
318
+
319
+ #: inc/core/assets.php:88
320
+ msgid "New preset"
321
+ msgstr ""
322
+
323
+ #: inc/core/assets.php:89
324
+ msgid "Last used settings"
325
+ msgstr ""
326
+
327
+ #: inc/core/assets.php:118
328
+ msgid "This shortcode doesn't work in live preview. Please insert it into editor and preview on the site."
329
+ msgstr ""
330
+
331
+ #: inc/core/assets.php:120
332
+ msgid "Close (Esc)"
333
+ msgstr ""
334
+
335
+ #: inc/core/assets.php:121
336
+ msgid "Loading..."
337
+ msgstr ""
338
+
339
+ #: inc/core/assets.php:122
340
+ msgid "Previous (Left arrow key)"
341
+ msgstr ""
342
+
343
+ #: inc/core/assets.php:123
344
+ msgid "Next (Right arrow key)"
345
+ msgstr ""
346
+
347
+ #. translators: %1$s of %2$s represents image counter in lightbox, will be replaced with "1 of 5"
348
+ #: inc/core/assets.php:125
349
+ msgid "%1$s of %2$s"
350
+ msgstr ""
351
+
352
+ #: inc/core/assets.php:126
353
+ msgid "Failed to load content."
354
+ msgstr ""
355
+
356
+ #: inc/core/assets.php:126
357
+ msgid "Open link"
358
+ msgstr ""
359
+
360
+ #: inc/core/generator-views.php:93
361
+ msgid "Yes"
362
+ msgstr ""
363
+
364
+ #: inc/core/generator-views.php:93
365
+ msgid "No"
366
+ msgstr ""
367
+
368
+ #: inc/core/generator-views.php:98, inc/core/generator-views.php:98, inc/core/generator-views.php:103, inc/core/generator-views.php:103
369
+ msgid "Media manager"
370
+ msgstr ""
371
+
372
+ #: inc/core/generator-views.php:103, inc/core/generator-views.php:103
373
+ msgid "Icon picker"
374
+ msgstr ""
375
+
376
+ #: inc/core/generator-views.php:103
377
+ msgid "Filter icons"
378
+ msgstr ""
379
+
380
+ #: inc/core/generator-views.php:124
381
+ msgid "Horizontal offset"
382
+ msgstr ""
383
+
384
+ #: inc/core/generator-views.php:124
385
+ msgid "Vertical offset"
386
+ msgstr ""
387
+
388
+ #: inc/core/generator-views.php:124
389
+ msgid "Blur"
390
+ msgstr ""
391
+
392
+ #: inc/core/generator-views.php:124, includes/shortcodes/box.php:33
393
+ msgid "Color"
394
+ msgstr ""
395
+
396
+ #: inc/core/generator-views.php:135
397
+ msgid "Border width"
398
+ msgstr ""
399
+
400
+ #: inc/core/generator-views.php:135
401
+ msgid "Border style"
402
+ msgstr ""
403
+
404
+ #: inc/core/generator-views.php:135
405
+ msgid "Border color"
406
+ msgstr ""
407
+
408
+ #: inc/core/generator-views.php:146, includes/shortcodes/image-carousel.php:18
409
+ msgid "Media library"
410
+ msgstr ""
411
+
412
+ #: inc/core/generator-views.php:148, includes/shortcodes/image-carousel.php:21, includes/shortcodes/posts.php:56
413
+ msgid "Taxonomy"
414
+ msgstr ""
415
+
416
+ #: inc/core/generator-views.php:155
417
+ msgid "Select images source"
418
+ msgstr ""
419
+
420
+ #: inc/core/generator-views.php:166
421
+ msgid "Select taxonomy"
422
+ msgstr ""
423
+
424
+ #: inc/core/generator-views.php:177
425
+ msgid "Add images"
426
+ msgstr ""
427
+
428
+ #: inc/core/generator-views.php:177
429
+ msgid "Click the button above and select images.<br>You can select multimple images with Ctrl (Cmd) key"
430
+ msgstr ""
431
+
432
+ #: inc/core/generator-views.php:177
433
+ msgid "Select categories to retrieve posts from.<br>You can select multiple categories with Ctrl (Cmd) key"
434
+ msgstr ""
435
+
436
+ #: inc/core/generator-views.php:177
437
+ msgid "Select taxonomy and it's terms.<br>You can select multiple terms with Ctrl (Cmd) key"
438
+ msgstr ""
439
+
440
+ #: inc/core/generator.php:54, inc/core/generator.php:119, inc/core/generator.php:242
441
+ msgid "Insert shortcode"
442
+ msgstr ""
443
+
444
+ #: inc/core/generator.php:176
445
+ msgid "Plugin settings"
446
+ msgstr ""
447
+
448
+ #: inc/core/generator.php:177, inc/core/generator.php:177
449
+ msgid "Plugin homepage"
450
+ msgstr ""
451
+
452
+ #: inc/core/generator.php:182, admin/partials/pages/addons.php:14
453
+ msgid "Premium Add-ons"
454
+ msgstr ""
455
+
456
+ #: inc/core/generator.php:189
457
+ msgid "Search for shortcodes"
458
+ msgstr ""
459
+
460
+ #: inc/core/generator.php:190
461
+ msgid "Pro Tip"
462
+ msgstr ""
463
+
464
+ #: inc/core/generator.php:192
465
+ msgid "Filter by type"
466
+ msgstr ""
467
+
468
+ #: inc/core/generator.php:227
469
+ msgid "Shortcode not specified"
470
+ msgstr ""
471
+
472
+ #: inc/core/generator.php:243
473
+ msgid "Live preview"
474
+ msgstr ""
475
+
476
+ #: inc/core/generator.php:247, admin/partials/extra/generator.php:2
477
+ msgid "Click to return to the shortcodes list"
478
+ msgstr ""
479
+
480
+ #: inc/core/generator.php:268
481
+ msgid "Click to set this value"
482
+ msgstr ""
483
+
484
+ #: inc/core/generator.php:286, includes/config/groups.php:7
485
+ msgid "Content"
486
+ msgstr ""
487
+
488
+ #: inc/core/generator.php:303, admin/partials/pages/shortcodes-single-content.php:18
489
+ msgid "Preview"
490
+ msgstr ""
491
+
492
+ #: inc/core/generator.php:311
493
+ msgid "Access denied"
494
+ msgstr ""
495
+
496
+ #: inc/core/generator.php:356
497
+ msgid "Presets"
498
+ msgstr ""
499
+
500
+ #: inc/core/generator.php:359
501
+ msgid "Save current settings as preset"
502
+ msgstr ""
503
+
504
+ #: inc/core/generator.php:388, inc/core/generator.php:391
505
+ msgid "Presets not found"
506
+ msgstr ""
507
+
508
+ #: inc/core/generator.php:598
509
+ msgid "Additional skins successfully installed"
510
+ msgstr ""
511
+
512
+ #: inc/core/generator.php:599
513
+ msgid "Open dropdown to choose one of new styles"
514
+ msgstr ""
515
+
516
+ #: inc/core/generator.php:607
517
+ msgid "Get more styles"
518
+ msgstr ""
519
+
520
+ #: inc/core/widget.php:7
521
+ msgid "Shortcodes Ultimate widget"
522
+ msgstr ""
523
+
524
+ #: inc/core/widget.php:46
525
+ msgid "Title:"
526
+ msgstr ""
527
+
528
+ #: includes/config/addons.php:9
529
+ msgid "Add-ons Bundle"
530
+ msgstr ""
531
+
532
+ #: includes/config/addons.php:10
533
+ msgid "Three-in-one, best price, simple"
534
+ msgstr ""
535
+
536
+ #: includes/config/addons.php:17, admin/partials/extra/available-shortcodes.php:6, admin/partials/extra/generator.php:14
537
+ msgid "Extra Shortcodes"
538
+ msgstr ""
539
+
540
+ #: includes/config/addons.php:18
541
+ msgid "A set of 15 additional shortcodes"
542
+ msgstr ""
543
+
544
+ #: includes/config/addons.php:24
545
+ msgid "Shortcode Creator"
546
+ msgstr ""
547
+
548
+ #: includes/config/addons.php:25
549
+ msgid "Create your own shortcodes"
550
+ msgstr ""
551
+
552
+ #: includes/config/addons.php:31
553
+ msgid "Additional Skins"
554
+ msgstr ""
555
+
556
+ #: includes/config/addons.php:32
557
+ msgid "Add more style to your shortcodes"
558
+ msgstr ""
559
+
560
+ #: includes/config/borders.php:6, includes/shortcodes/carousel.php:34, includes/shortcodes/custom-gallery.php:30, includes/shortcodes/image-carousel.php:87, includes/shortcodes/image-carousel.php:130, includes/shortcodes/posts.php:139, includes/shortcodes/qrcode.php:43, includes/shortcodes/slider.php:34
561
+ msgid "None"
562
+ msgstr ""
563
+
564
+ #: includes/config/borders.php:7
565
+ msgid "Solid"
566
+ msgstr ""
567
+
568
+ #: includes/config/borders.php:8, includes/shortcodes/divider.php:26, includes/shortcodes/expand.php:55
569
+ msgid "Dotted"
570
+ msgstr ""
571
+
572
+ #: includes/config/borders.php:9, includes/shortcodes/divider.php:27, includes/shortcodes/expand.php:56
573
+ msgid "Dashed"
574
+ msgstr ""
575
+
576
+ #: includes/config/borders.php:10, includes/shortcodes/divider.php:28
577
+ msgid "Double"
578
+ msgstr ""
579
+
580
+ #: includes/config/borders.php:11
581
+ msgid "Groove"
582
+ msgstr ""
583
+
584
+ #: includes/config/borders.php:12
585
+ msgid "Ridge"
586
+ msgstr ""
587
+
588
+ #: includes/config/crop-ratios.php:8, includes/config/crop-ratios.php:13, includes/config/crop-ratios.php:18, includes/config/crop-ratios.php:23, includes/config/crop-ratios.php:28, includes/config/crop-ratios.php:33, includes/config/crop-ratios.php:38
589
+ msgid "Landscape"
590
+ msgstr ""
591
+
592
+ #: includes/config/crop-ratios.php:43, includes/shortcodes/button.php:85
593
+ msgid "Square"
594
+ msgstr ""
595
+
596
+ #: includes/config/crop-ratios.php:48, includes/config/crop-ratios.php:53, includes/config/crop-ratios.php:58, includes/config/crop-ratios.php:63, includes/config/crop-ratios.php:68, includes/config/crop-ratios.php:73, includes/config/crop-ratios.php:78
597
+ msgid "Portrait"
598
+ msgstr ""
599
+
600
+ #: includes/config/groups.php:6
601
+ msgid "All"
602
+ msgstr ""
603
+
604
+ #: includes/config/groups.php:8, includes/shortcodes/box.php:7
605
+ msgid "Box"
606
+ msgstr ""
607
+
608
+ #: includes/config/groups.php:9
609
+ msgid "Media"
610
+ msgstr ""
611
+
612
+ #: includes/config/groups.php:10, includes/shortcodes/custom-gallery.php:8
613
+ msgid "Gallery"
614
+ msgstr ""
615
+
616
+ #: includes/config/groups.php:11, includes/shortcodes/qrcode.php:14
617
+ msgid "Data"
618
+ msgstr ""
619
+
620
+ #: includes/config/groups.php:12
621
+ msgid "Other"
622
+ msgstr ""
623
+
624
+ #: includes/config/supported-blocks.php:6
625
+ msgid "Paragraph"
626
+ msgstr ""
627
+
628
+ #: includes/config/supported-blocks.php:7, admin/partials/pages/shortcodes-single-content.php:27
629
+ msgid "Shortcode"
630
+ msgstr ""
631
+
632
+ #: includes/config/supported-blocks.php:8
633
+ msgid "Classic"
634
+ msgstr ""
635
+
636
+ #: includes/shortcodes/accordion.php:7
637
+ msgid "Accordion"
638
+ msgstr ""
639
+
640
+ #: includes/shortcodes/accordion.php:14, includes/shortcodes/animate.php:44, includes/shortcodes/audio.php:37, includes/shortcodes/box.php:53, includes/shortcodes/button.php:144, includes/shortcodes/carousel.php:141, includes/shortcodes/column.php:40, includes/shortcodes/csv-table.php:52, includes/shortcodes/custom-gallery.php:82, includes/shortcodes/dailymotion.php:103, includes/shortcodes/divider.php:68, includes/shortcodes/document.php:49, includes/shortcodes/dropcap.php:33, includes/shortcodes/dummy-image.php:53, includes/shortcodes/dummy-text.php:46, includes/shortcodes/expand.php:88, includes/shortcodes/feed.php:27, includes/shortcodes/frame.php:25, includes/shortcodes/gmap.php:58, includes/shortcodes/guests.php:13, includes/shortcodes/heading.php:56, includes/shortcodes/highlight.php:26, includes/shortcodes/image-carousel.php:187, includes/shortcodes/label.php:27, includes/shortcodes/lightbox-content.php:78, includes/shortcodes/lightbox.php:38, includes/shortcodes/list.php:35, includes/shortcodes/members.php:35, includes/shortcodes/menu.php:18, includes/shortcodes/note.php:37, includes/shortcodes/permalink.php:38, includes/shortcodes/private.php:13, includes/shortcodes/pullquote.php:22, includes/shortcodes/qrcode.php:81, includes/shortcodes/quote.php:33, includes/shortcodes/row.php:15, includes/shortcodes/service.php:41, includes/shortcodes/siblings.php:19, includes/shortcodes/slider.php:122, includes/shortcodes/spacer.php:22, includes/shortcodes/spoiler.php:61, includes/shortcodes/subpages.php:25, includes/shortcodes/table.php:34, includes/shortcodes/tabs.php:52, includes/shortcodes/tabs.php:111, includes/shortcodes/tooltip.php:99, includes/shortcodes/video.php:67, includes/shortcodes/vimeo.php:71, includes/shortcodes/youtube-advanced.php:134, includes/shortcodes/youtube.php:60
641
+ msgid "Extra CSS class"
642
+ msgstr ""
643
+
644
+ #: includes/shortcodes/accordion.php:15, includes/shortcodes/animate.php:45, includes/shortcodes/audio.php:38, includes/shortcodes/box.php:54, includes/shortcodes/button.php:145, includes/shortcodes/carousel.php:142, includes/shortcodes/column.php:41, includes/shortcodes/csv-table.php:53, includes/shortcodes/custom-gallery.php:83, includes/shortcodes/dailymotion.php:104, includes/shortcodes/divider.php:69, includes/shortcodes/document.php:50, includes/shortcodes/dropcap.php:34, includes/shortcodes/dummy-image.php:54, includes/shortcodes/dummy-text.php:47, includes/shortcodes/expand.php:89, includes/shortcodes/feed.php:28, includes/shortcodes/gmap.php:59, includes/shortcodes/guests.php:14, includes/shortcodes/heading.php:57, includes/shortcodes/highlight.php:27, includes/shortcodes/image-carousel.php:188, includes/shortcodes/label.php:28, includes/shortcodes/lightbox-content.php:79, includes/shortcodes/lightbox.php:39, includes/shortcodes/list.php:36, includes/shortcodes/members.php:36, includes/shortcodes/menu.php:19, includes/shortcodes/note.php:38, includes/shortcodes/permalink.php:39, includes/shortcodes/private.php:14, includes/shortcodes/pullquote.php:23, includes/shortcodes/qrcode.php:82, includes/shortcodes/quote.php:34, includes/shortcodes/row.php:16, includes/shortcodes/service.php:42, includes/shortcodes/siblings.php:20, includes/shortcodes/slider.php:123, includes/shortcodes/spacer.php:23, includes/shortcodes/spoiler.php:62, includes/shortcodes/subpages.php:26, includes/shortcodes/table.php:35, includes/shortcodes/tabs.php:53, includes/shortcodes/tabs.php:112, includes/shortcodes/tooltip.php:100, includes/shortcodes/video.php:68, includes/shortcodes/vimeo.php:72, includes/shortcodes/youtube-advanced.php:135, includes/shortcodes/youtube.php:61
645
+ msgid "Additional CSS class name(s) separated by space(s)"
646
+ msgstr ""
647
+
648
+ #: includes/shortcodes/accordion.php:23
649
+ msgid "Accordion with spoilers"
650
+ msgstr ""
651
+
652
+ #: includes/shortcodes/accordion.php:24, includes/shortcodes/spoiler.php:68
653
+ msgid "Did you know that you can wrap multiple spoilers with [accordion] shortcode to create accordion effect?"
654
+ msgstr ""
655
+
656
+ #: includes/shortcodes/animate.php:7, includes/shortcodes/animate.php:15
657
+ msgid "Animation"
658
+ msgstr ""
659
+
660
+ #: includes/shortcodes/animate.php:16
661
+ msgid "Select animation type"
662
+ msgstr ""
663
+
664
+ #: includes/shortcodes/animate.php:24
665
+ msgid "Duration"
666
+ msgstr ""
667
+
668
+ #: includes/shortcodes/animate.php:25
669
+ msgid "Animation duration (seconds)"
670
+ msgstr ""
671
+
672
+ #: includes/shortcodes/animate.php:33
673
+ msgid "Delay"
674
+ msgstr ""
675
+
676
+ #: includes/shortcodes/animate.php:34
677
+ msgid "Animation delay (seconds)"
678
+ msgstr ""
679
+
680
+ #: includes/shortcodes/animate.php:39
681
+ msgid "Inline"
682
+ msgstr ""
683
+
684
+ #: includes/shortcodes/animate.php:40
685
+ msgid "This parameter determines what HTML tag will be used for animation wrapper. Turn this option to YES and animated element will be wrapped in SPAN instead of DIV. Useful for inline animations, like buttons"
686
+ msgstr ""
687
+
688
+ #: includes/shortcodes/animate.php:49
689
+ msgid "Animated content"
690
+ msgstr ""
691
+
692
+ #: includes/shortcodes/animate.php:50
693
+ msgid "Wrapper for animation. Any nested element will be animated"
694
+ msgstr ""
695
+
696
+ #: includes/shortcodes/audio.php:7
697
+ msgid "Audio"
698
+ msgstr ""
699
+
700
+ #: includes/shortcodes/audio.php:14, includes/shortcodes/video.php:14
701
+ msgid "File"
702
+ msgstr ""
703
+
704
+ #: includes/shortcodes/audio.php:15
705
+ msgid "Audio file url. Supported formats: mp3, ogg"
706
+ msgstr ""
707
+
708
+ #: includes/shortcodes/audio.php:20, includes/shortcodes/carousel.php:61, includes/shortcodes/custom-gallery.php:57, includes/shortcodes/dailymotion.php:23, includes/shortcodes/document.php:24, includes/shortcodes/dummy-image.php:17, includes/shortcodes/gmap.php:18, includes/shortcodes/lightbox-content.php:20, includes/shortcodes/slider.php:61, includes/shortcodes/video.php:35, includes/shortcodes/vimeo.php:23, includes/shortcodes/youtube-advanced.php:29, includes/shortcodes/youtube.php:23
709
+ msgid "Width"
710
+ msgstr ""
711
+
712
+ #: includes/shortcodes/audio.php:21
713
+ msgid "Player width. You can specify width in percents and player will be responsive. Example values: <b%value>200px</b>, <b%value>100&#37;</b>"
714
+ msgstr ""
715
+
716
+ #: includes/shortcodes/audio.php:26, includes/shortcodes/carousel.php:128, includes/shortcodes/dailymotion.php:44, includes/shortcodes/image-carousel.php:157, includes/shortcodes/slider.php:109, includes/shortcodes/video.php:56, includes/shortcodes/vimeo.php:44, includes/shortcodes/youtube-advanced.php:72, includes/shortcodes/youtube.php:44
717
+ msgid "Autoplay"
718
+ msgstr ""
719
+
720
+ #: includes/shortcodes/audio.php:27, includes/shortcodes/video.php:57
721
+ msgid "Play file automatically when page is loaded"
722
+ msgstr ""
723
+
724
+ #: includes/shortcodes/audio.php:32, includes/shortcodes/video.php:62, includes/shortcodes/youtube-advanced.php:84
725
+ msgid "Loop"
726
+ msgstr ""
727
+
728
+ #: includes/shortcodes/audio.php:33, includes/shortcodes/video.php:63
729
+ msgid "Repeat when playback is ended"
730
+ msgstr ""
731
+
732
+ #: includes/shortcodes/audio.php:42
733
+ msgid "Custom audio player"
734
+ msgstr ""
735
+
736
+ #: includes/shortcodes/audio.php:59, includes/shortcodes/audio.php:71, includes/shortcodes/dailymotion.php:137, includes/shortcodes/dailymotion.php:144, includes/shortcodes/screenr.php:24, includes/shortcodes/screenr.php:31, includes/shortcodes/video.php:92, includes/shortcodes/video.php:100, includes/shortcodes/vimeo.php:102, includes/shortcodes/vimeo.php:112, includes/shortcodes/youtube-advanced.php:174, includes/shortcodes/youtube-advanced.php:184, includes/shortcodes/youtube.php:89, includes/shortcodes/youtube.php:99
737
+ msgid "please specify correct url"
738
+ msgstr ""
739
+
740
+ #: includes/shortcodes/box.php:13
741
+ msgid "Box title"
742
+ msgstr ""
743
+
744
+ #: includes/shortcodes/box.php:14, includes/shortcodes/dailymotion.php:97, includes/shortcodes/document.php:43, includes/shortcodes/gmap.php:52, includes/shortcodes/permalink.php:28, includes/shortcodes/qrcode.php:19, includes/shortcodes/service.php:15, includes/shortcodes/spoiler.php:13, includes/shortcodes/tabs.php:80, includes/shortcodes/video.php:26, includes/shortcodes/vimeo.php:60, includes/shortcodes/youtube-advanced.php:128, includes/shortcodes/youtube.php:54
745
+ msgid "Title"
746
+ msgstr ""
747
+
748
+ #: includes/shortcodes/box.php:14
749
+ msgid "Text for the box title"
750
+ msgstr ""
751
+
752
+ #: includes/shortcodes/box.php:19, includes/shortcodes/button.php:31, includes/shortcodes/divider.php:25, includes/shortcodes/dropcap.php:14, includes/shortcodes/expand.php:53, includes/shortcodes/heading.php:14, includes/shortcodes/image-carousel.php:38, includes/shortcodes/label.php:14, includes/shortcodes/meta.php:18, includes/shortcodes/post.php:43, includes/shortcodes/quote.php:14, includes/shortcodes/spoiler.php:25, includes/shortcodes/tabs.php:18, includes/shortcodes/tooltip.php:58, includes/shortcodes/user.php:30
753
+ msgid "Default"
754
+ msgstr ""
755
+
756
+ #: includes/shortcodes/box.php:20, includes/shortcodes/button.php:34
757
+ msgid "Soft"
758
+ msgstr ""
759
+
760
+ #: includes/shortcodes/box.php:21, includes/shortcodes/button.php:35
761
+ msgid "Glass"
762
+ msgstr ""
763
+
764
+ #: includes/shortcodes/box.php:22, includes/shortcodes/button.php:36
765
+ msgid "Bubbles"
766
+ msgstr ""
767
+
768
+ #: includes/shortcodes/box.php:23, includes/shortcodes/button.php:37
769
+ msgid "Noise"
770
+ msgstr ""
771
+
772
+ #: includes/shortcodes/box.php:26, includes/shortcodes/button.php:42, includes/shortcodes/divider.php:31, includes/shortcodes/dropcap.php:20, includes/shortcodes/heading.php:17, includes/shortcodes/quote.php:17, includes/shortcodes/spoiler.php:30, includes/shortcodes/tabs.php:21, includes/shortcodes/tooltip.php:28
773
+ msgid "Style"
774
+ msgstr ""
775
+
776
+ #: includes/shortcodes/box.php:27
777
+ msgid "Box style preset"
778
+ msgstr ""
779
+
780
+ #: includes/shortcodes/box.php:34
781
+ msgid "Color for the box title and borders"
782
+ msgstr ""
783
+
784
+ #: includes/shortcodes/box.php:40
785
+ msgid "Title text color"
786
+ msgstr ""
787
+
788
+ #: includes/shortcodes/box.php:40
789
+ msgid "Color for the box title text"
790
+ msgstr ""
791
+
792
+ #: includes/shortcodes/box.php:48, includes/shortcodes/button.php:91, includes/shortcodes/note.php:32
793
+ msgid "Radius"
794
+ msgstr ""
795
+
796
+ #: includes/shortcodes/box.php:49
797
+ msgid "Box corners radius"
798
+ msgstr ""
799
+
800
+ #: includes/shortcodes/box.php:58
801
+ msgid "Box content"
802
+ msgstr ""
803
+
804
+ #: includes/shortcodes/box.php:59
805
+ msgid "Colored box with caption"
806
+ msgstr ""
807
+
808
+ #: includes/shortcodes/box.php:66
809
+ msgid "This is box title"
810
+ msgstr ""
811
+
812
+ #: includes/shortcodes/button.php:8, includes/shortcodes/expand.php:57
813
+ msgid "Button"
814
+ msgstr ""
815
+
816
+ #: includes/shortcodes/button.php:15, includes/shortcodes/qrcode.php:54
817
+ msgid "Link"
818
+ msgstr ""
819
+
820
+ #: includes/shortcodes/button.php:16
821
+ msgid "Button link"
822
+ msgstr ""
823
+
824
+ #: includes/shortcodes/button.php:21, includes/shortcodes/carousel.php:48, includes/shortcodes/custom-gallery.php:44, includes/shortcodes/image-carousel.php:144, includes/shortcodes/permalink.php:19, includes/shortcodes/qrcode.php:60, includes/shortcodes/slider.php:48, includes/shortcodes/tabs.php:102
825
+ msgid "Open in same tab"
826
+ msgstr ""
827
+
828
+ #: includes/shortcodes/button.php:22, includes/shortcodes/carousel.php:49, includes/shortcodes/custom-gallery.php:45, includes/shortcodes/image-carousel.php:145, includes/shortcodes/permalink.php:20, includes/shortcodes/qrcode.php:61, includes/shortcodes/slider.php:49, includes/shortcodes/tabs.php:103
829
+ msgid "Open in new tab"
830
+ msgstr ""
831
+
832
+ #: includes/shortcodes/button.php:25, includes/shortcodes/permalink.php:23
833
+ msgid "Target"
834
+ msgstr ""
835
+
836
+ #: includes/shortcodes/button.php:26
837
+ msgid "Button link target"
838
+ msgstr ""
839
+
840
+ #: includes/shortcodes/button.php:32, includes/shortcodes/dropcap.php:15
841
+ msgid "Flat"
842
+ msgstr ""
843
+
844
+ #: includes/shortcodes/button.php:33
845
+ msgid "Ghost"
846
+ msgstr ""
847
+
848
+ #: includes/shortcodes/button.php:38
849
+ msgid "Stroked"
850
+ msgstr ""
851
+
852
+ #: includes/shortcodes/button.php:39
853
+ msgid "3D"
854
+ msgstr ""
855
+
856
+ #: includes/shortcodes/button.php:43
857
+ msgid "Button background style preset"
858
+ msgstr ""
859
+
860
+ #: includes/shortcodes/button.php:49, includes/shortcodes/highlight.php:15, includes/shortcodes/note.php:16
861
+ msgid "Background"
862
+ msgstr ""
863
+
864
+ #: includes/shortcodes/button.php:50
865
+ msgid "Button background color"
866
+ msgstr ""
867
+
868
+ #: includes/shortcodes/button.php:56, includes/shortcodes/expand.php:40, includes/shortcodes/highlight.php:22, includes/shortcodes/lightbox-content.php:61, includes/shortcodes/lightbox-content.php:67, includes/shortcodes/note.php:23
869
+ msgid "Text color"
870
+ msgstr ""
871
+
872
+ #: includes/shortcodes/button.php:57
873
+ msgid "Button text color"
874
+ msgstr ""
875
+
876
+ #: includes/shortcodes/button.php:65, includes/shortcodes/column.php:29, includes/shortcodes/divider.php:54, includes/shortcodes/dropcap.php:28, includes/shortcodes/heading.php:26, includes/shortcodes/qrcode.php:28
877
+ msgid "Size"
878
+ msgstr ""
879
+
880
+ #: includes/shortcodes/button.php:66
881
+ msgid "Button size"
882
+ msgstr ""
883
+
884
+ #: includes/shortcodes/button.php:71
885
+ msgid "Fluid"
886
+ msgstr ""
887
+
888
+ #: includes/shortcodes/button.php:72
889
+ msgid "Fluid buttons has 100% width"
890
+ msgstr ""
891
+
892
+ #: includes/shortcodes/button.php:77, includes/shortcodes/column.php:35
893
+ msgid "Centered"
894
+ msgstr ""
895
+
896
+ #: includes/shortcodes/button.php:78
897
+ msgid "Is button centered on the page"
898
+ msgstr ""
899
+
900
+ #: includes/shortcodes/button.php:83
901
+ msgid "Auto"
902
+ msgstr ""
903
+
904
+ #: includes/shortcodes/button.php:84
905
+ msgid "Round"
906
+ msgstr ""
907
+
908
+ #: includes/shortcodes/button.php:92
909
+ msgid "Radius of button corners. Auto-radius calculation based on button size"
910
+ msgstr ""
911
+
912
+ #: includes/shortcodes/button.php:98
913
+ msgid "You can upload custom icon for this button or pick a built-in icon"
914
+ msgstr ""
915
+
916
+ #: includes/shortcodes/button.php:103, includes/shortcodes/list.php:21, includes/shortcodes/service.php:27
917
+ msgid "Icon color"
918
+ msgstr ""
919
+
920
+ #: includes/shortcodes/button.php:104, includes/shortcodes/list.php:22, includes/shortcodes/service.php:28
921
+ msgid "This color will be applied to the selected icon. Does not works with uploaded icons"
922
+ msgstr ""
923
+
924
+ #: includes/shortcodes/button.php:109
925
+ msgid "Text shadow"
926
+ msgstr ""
927
+
928
+ #: includes/shortcodes/button.php:110
929
+ msgid "Button text shadow"
930
+ msgstr ""
931
+
932
+ #: includes/shortcodes/button.php:114
933
+ msgid "Description"
934
+ msgstr ""
935
+
936
+ #: includes/shortcodes/button.php:115
937
+ msgid "Small description under button text. This option is incompatible with icon."
938
+ msgstr ""
939
+
940
+ #: includes/shortcodes/button.php:119
941
+ msgid "Download"
942
+ msgstr ""
943
+
944
+ #: includes/shortcodes/button.php:120
945
+ msgid "The download attribute specifies that the button URL will be downloaded when a user clicks on the button. The value of the attribute will be the name of the downloaded file."
946
+ msgstr ""
947
+
948
+ #: includes/shortcodes/button.php:124
949
+ msgid "onClick"
950
+ msgstr ""
951
+
952
+ #: includes/shortcodes/button.php:125
953
+ msgid "Advanced JavaScript code for onClick action"
954
+ msgstr ""
955
+
956
+ #: includes/shortcodes/button.php:129
957
+ msgid "Rel attribute"
958
+ msgstr ""
959
+
960
+ #: includes/shortcodes/button.php:130
961
+ msgid "Here you can add value for the rel attribute.<br>Example values: <b%value>nofollow</b>, <b%value>lightbox</b>"
962
+ msgstr ""
963
+
964
+ #: includes/shortcodes/button.php:134
965
+ msgid "Title attribute"
966
+ msgstr ""
967
+
968
+ #: includes/shortcodes/button.php:135
969
+ msgid "Here you can add value for the title attribute"
970
+ msgstr ""
971
+
972
+ #: includes/shortcodes/button.php:139
973
+ msgid "Button ID"
974
+ msgstr ""
975
+
976
+ #: includes/shortcodes/button.php:140
977
+ msgid "Custom value for the ID attribute"
978
+ msgstr ""
979
+
980
+ #: includes/shortcodes/button.php:149
981
+ msgid "Button text"
982
+ msgstr ""
983
+
984
+ #: includes/shortcodes/button.php:150
985
+ msgid "Styled button"
986
+ msgstr ""
987
+
988
+ #: includes/shortcodes/carousel.php:7
989
+ msgid "Carousel"
990
+ msgstr ""
991
+
992
+ #: includes/shortcodes/carousel.php:12, includes/shortcodes/slider.php:12
993
+ msgid "There is a much better shortcode for your images. Have you already tried the Image Carousel? It can create both sliders and carousels."
994
+ msgstr ""
995
+
996
+ #: includes/shortcodes/carousel.php:13, includes/shortcodes/slider.php:13
997
+ msgid "Switch to Image Carousel"
998
+ msgstr ""
999
+
1000
+ #: includes/shortcodes/carousel.php:19, includes/shortcodes/custom-gallery.php:15, includes/shortcodes/slider.php:19
1001
+ msgid "Source"
1002
+ msgstr ""
1003
+
1004
+ #: includes/shortcodes/carousel.php:20, includes/shortcodes/custom-gallery.php:16, includes/shortcodes/slider.php:20
1005
+ msgid "Choose images source. You can use images from Media library or retrieve it from posts (thumbnails) posted under specified blog category. You can also pick any custom taxonomy"
1006
+ msgstr ""
1007
+
1008
+ #: includes/shortcodes/carousel.php:28, includes/shortcodes/custom-gallery.php:24, includes/shortcodes/feed.php:23, includes/shortcodes/image-carousel.php:32, includes/shortcodes/slider.php:28
1009
+ msgid "Limit"
1010
+ msgstr ""
1011
+
1012
+ #: includes/shortcodes/carousel.php:29, includes/shortcodes/custom-gallery.php:25, includes/shortcodes/slider.php:29
1013
+ msgid "Maximum number of image source posts (for recent posts, category and custom taxonomy)"
1014
+ msgstr ""
1015
+
1016
+ #: includes/shortcodes/carousel.php:35, includes/shortcodes/custom-gallery.php:31, includes/shortcodes/image-carousel.php:131, includes/shortcodes/slider.php:35
1017
+ msgid "Full-size image"
1018
+ msgstr ""
1019
+
1020
+ #: includes/shortcodes/carousel.php:36, includes/shortcodes/custom-gallery.php:32, includes/shortcodes/image-carousel.php:132, includes/shortcodes/lightbox.php:8, includes/shortcodes/slider.php:36
1021
+ msgid "Lightbox"
1022
+ msgstr ""
1023
+
1024
+ #: includes/shortcodes/carousel.php:37, includes/shortcodes/custom-gallery.php:33, includes/shortcodes/slider.php:37
1025
+ msgid "Slide link (added in media editor)"
1026
+ msgstr ""
1027
+
1028
+ #: includes/shortcodes/carousel.php:38, includes/shortcodes/custom-gallery.php:34, includes/shortcodes/image-carousel.php:134, includes/shortcodes/slider.php:38
1029
+ msgid "Attachment page"
1030
+ msgstr ""
1031
+
1032
+ #: includes/shortcodes/carousel.php:39, includes/shortcodes/custom-gallery.php:35, includes/shortcodes/slider.php:39
1033
+ msgid "Post permalink"
1034
+ msgstr ""
1035
+
1036
+ #: includes/shortcodes/carousel.php:42, includes/shortcodes/custom-gallery.php:38, includes/shortcodes/slider.php:42
1037
+ msgid "Links"
1038
+ msgstr ""
1039
+
1040
+ #: includes/shortcodes/carousel.php:43, includes/shortcodes/custom-gallery.php:39, includes/shortcodes/slider.php:43
1041
+ msgid "Select which links will be used for images in this gallery"
1042
+ msgstr ""
1043
+
1044
+ #: includes/shortcodes/carousel.php:52, includes/shortcodes/custom-gallery.php:48, includes/shortcodes/image-carousel.php:148, includes/shortcodes/slider.php:52
1045
+ msgid "Links target"
1046
+ msgstr ""
1047
+
1048
+ #: includes/shortcodes/carousel.php:53, includes/shortcodes/custom-gallery.php:49, includes/shortcodes/slider.php:53
1049
+ msgid "Open links in"
1050
+ msgstr ""
1051
+
1052
+ #: includes/shortcodes/carousel.php:62
1053
+ msgid "Carousel width (in pixels)"
1054
+ msgstr ""
1055
+
1056
+ #: includes/shortcodes/carousel.php:70, includes/shortcodes/custom-gallery.php:66, includes/shortcodes/dailymotion.php:32, includes/shortcodes/document.php:33, includes/shortcodes/dummy-image.php:26, includes/shortcodes/expand.php:27, includes/shortcodes/gmap.php:27, includes/shortcodes/slider.php:69, includes/shortcodes/spacer.php:17, includes/shortcodes/video.php:44, includes/shortcodes/vimeo.php:32, includes/shortcodes/youtube-advanced.php:38, includes/shortcodes/youtube.php:32
1057
+ msgid "Height"
1058
+ msgstr ""
1059
+
1060
+ #: includes/shortcodes/carousel.php:71
1061
+ msgid "Carousel height (in pixels)"
1062
+ msgstr ""
1063
+
1064
+ #: includes/shortcodes/carousel.php:76, includes/shortcodes/csv-table.php:35, includes/shortcodes/dailymotion.php:38, includes/shortcodes/document.php:39, includes/shortcodes/gmap.php:33, includes/shortcodes/slider.php:74, includes/shortcodes/table.php:17, includes/shortcodes/vimeo.php:38, includes/shortcodes/youtube-advanced.php:44, includes/shortcodes/youtube.php:38
1065
+ msgid "Responsive"
1066
+ msgstr ""
1067
+
1068
+ #: includes/shortcodes/carousel.php:77
1069
+ msgid "Ignore width and height parameters and make carousel responsive"
1070
+ msgstr ""
1071
+
1072
+ #: includes/shortcodes/carousel.php:85
1073
+ msgid "Items to show"
1074
+ msgstr ""
1075
+
1076
+ #: includes/shortcodes/carousel.php:86
1077
+ msgid "How much carousel items is visible"
1078
+ msgstr ""
1079
+
1080
+ #: includes/shortcodes/carousel.php:93
1081
+ msgid "Scroll number"
1082
+ msgstr ""
1083
+
1084
+ #: includes/shortcodes/carousel.php:94
1085
+ msgid "How much items are scrolled in one transition"
1086
+ msgstr ""
1087
+
1088
+ #: includes/shortcodes/carousel.php:99, includes/shortcodes/custom-gallery.php:77, includes/shortcodes/slider.php:80
1089
+ msgid "Show titles"
1090
+ msgstr ""
1091
+
1092
+ #: includes/shortcodes/carousel.php:99
1093
+ msgid "Display titles for each item"
1094
+ msgstr ""
1095
+
1096
+ #: includes/shortcodes/carousel.php:104, includes/shortcodes/expand.php:67, includes/shortcodes/frame.php:15, includes/shortcodes/heading.php:33, includes/shortcodes/image-carousel.php:90, includes/shortcodes/lightbox-content.php:45, includes/shortcodes/qrcode.php:45, includes/shortcodes/slider.php:85
1097
+ msgid "Center"
1098
+ msgstr ""
1099
+
1100
+ #: includes/shortcodes/carousel.php:104
1101
+ msgid "Is carousel centered on the page"
1102
+ msgstr ""
1103
+
1104
+ #: includes/shortcodes/carousel.php:109, includes/shortcodes/slider.php:90
1105
+ msgid "Arrows"
1106
+ msgstr ""
1107
+
1108
+ #: includes/shortcodes/carousel.php:109, includes/shortcodes/slider.php:90
1109
+ msgid "Show left and right arrows"
1110
+ msgstr ""
1111
+
1112
+ #: includes/shortcodes/carousel.php:114, includes/shortcodes/slider.php:95
1113
+ msgid "Pagination"
1114
+ msgstr ""
1115
+
1116
+ #: includes/shortcodes/carousel.php:115, includes/shortcodes/slider.php:96
1117
+ msgid "Show pagination"
1118
+ msgstr ""
1119
+
1120
+ #: includes/shortcodes/carousel.php:119, includes/shortcodes/slider.php:100
1121
+ msgid "Mouse wheel control"
1122
+ msgstr ""
1123
+
1124
+ #: includes/shortcodes/carousel.php:120
1125
+ msgid "Allow to rotate carousel with mouse wheel"
1126
+ msgstr ""
1127
+
1128
+ #: includes/shortcodes/carousel.php:129
1129
+ msgid "Choose interval between auto animations. Set to 0 to disable autoplay"
1130
+ msgstr ""
1131
+
1132
+ #: includes/shortcodes/carousel.php:137, includes/shortcodes/slider.php:118
1133
+ msgid "Speed"
1134
+ msgstr ""
1135
+
1136
+ #: includes/shortcodes/carousel.php:137, includes/shortcodes/slider.php:118
1137
+ msgid "Specify animation speed"
1138
+ msgstr ""
1139
+
1140
+ #: includes/shortcodes/carousel.php:146
1141
+ msgid "Customizable image carousel"
1142
+ msgstr ""
1143
+
1144
+ #: includes/shortcodes/carousel.php:231, includes/shortcodes/custom-gallery.php:157, includes/shortcodes/image-carousel.php:236, includes/shortcodes/slider.php:209
1145
+ msgid "images not found"
1146
+ msgstr ""
1147
+
1148
+ #: includes/shortcodes/column.php:7
1149
+ msgid "Column"
1150
+ msgstr ""
1151
+
1152
+ #: includes/shortcodes/column.php:15
1153
+ msgid "Full width"
1154
+ msgstr ""
1155
+
1156
+ #: includes/shortcodes/column.php:16
1157
+ msgid "One half"
1158
+ msgstr ""
1159
+
1160
+ #: includes/shortcodes/column.php:17
1161
+ msgid "One third"
1162
+ msgstr ""
1163
+
1164
+ #: includes/shortcodes/column.php:18
1165
+ msgid "Two third"
1166
+ msgstr ""
1167
+
1168
+ #: includes/shortcodes/column.php:19
1169
+ msgid "One fourth"
1170
+ msgstr ""
1171
+
1172
+ #: includes/shortcodes/column.php:20
1173
+ msgid "Three fourth"
1174
+ msgstr ""
1175
+
1176
+ #: includes/shortcodes/column.php:21
1177
+ msgid "One fifth"
1178
+ msgstr ""
1179
+
1180
+ #: includes/shortcodes/column.php:22
1181
+ msgid "Two fifth"
1182
+ msgstr ""
1183
+
1184
+ #: includes/shortcodes/column.php:23
1185
+ msgid "Three fifth"
1186
+ msgstr ""
1187
+
1188
+ #: includes/shortcodes/column.php:24
1189
+ msgid "Four fifth"
1190
+ msgstr ""
1191
+
1192
+ #: includes/shortcodes/column.php:25
1193
+ msgid "One sixth"
1194
+ msgstr ""
1195
+
1196
+ #: includes/shortcodes/column.php:26
1197
+ msgid "Five sixth"
1198
+ msgstr ""
1199
+
1200
+ #: includes/shortcodes/column.php:30
1201
+ msgid "Select column width. This width will be calculated depend page width"
1202
+ msgstr ""
1203
+
1204
+ #: includes/shortcodes/column.php:36
1205
+ msgid "Is this column centered on the page"
1206
+ msgstr ""
1207
+
1208
+ #: includes/shortcodes/column.php:45
1209
+ msgid "Column content"
1210
+ msgstr ""
1211
+
1212
+ #: includes/shortcodes/column.php:46
1213
+ msgid "Flexible and responsive columns"
1214
+ msgstr ""
1215
+
1216
+ #: includes/shortcodes/column.php:47
1217
+ msgid "Did you know that you need to wrap columns with [row] shortcode?"
1218
+ msgstr ""
1219
+
1220
+ #: includes/shortcodes/csv-table.php:8
1221
+ msgid "CSV Table"
1222
+ msgstr ""
1223
+
1224
+ #: includes/shortcodes/csv-table.php:9
1225
+ msgid "Styled table from CSV file"
1226
+ msgstr ""
1227
+
1228
+ #: includes/shortcodes/csv-table.php:17
1229
+ msgid "CSV file URL"
1230
+ msgstr ""
1231
+
1232
+ #: includes/shortcodes/csv-table.php:18
1233
+ msgid "The URL of a CSV file that will be displayed"
1234
+ msgstr ""
1235
+
1236
+ #: includes/shortcodes/csv-table.php:23
1237
+ msgid "Delimiter"
1238
+ msgstr ""
1239
+
1240
+ #: includes/shortcodes/csv-table.php:24
1241
+ msgid "Set the field delimiter (one character only)"
1242
+ msgstr ""
1243
+
1244
+ #: includes/shortcodes/csv-table.php:29
1245
+ msgid "Display header"
1246
+ msgstr ""
1247
+
1248
+ #: includes/shortcodes/csv-table.php:30
1249
+ msgid "Display first row as table header"
1250
+ msgstr ""
1251
+
1252
+ #: includes/shortcodes/csv-table.php:36, includes/shortcodes/table.php:18
1253
+ msgid "Add horizontal scrollbar if table width larger than page width"
1254
+ msgstr ""
1255
+
1256
+ #: includes/shortcodes/csv-table.php:41, includes/shortcodes/table.php:23
1257
+ msgid "Alternate row color"
1258
+ msgstr ""
1259
+
1260
+ #: includes/shortcodes/csv-table.php:42, includes/shortcodes/table.php:24
1261
+ msgid "Enable to use alternative background color for even rows"
1262
+ msgstr ""
1263
+
1264
+ #: includes/shortcodes/csv-table.php:47, includes/shortcodes/table.php:29
1265
+ msgid "Fixed layout"
1266
+ msgstr ""
1267
+
1268
+ #: includes/shortcodes/csv-table.php:48, includes/shortcodes/table.php:30
1269
+ msgid "Fixed width table cells"
1270
+ msgstr ""
1271
+
1272
+ #: includes/shortcodes/csv-table.php:77, includes/shortcodes/csv-table.php:83
1273
+ msgid "invalid URL"
1274
+ msgstr ""
1275
+
1276
+ #: includes/shortcodes/csv-table.php:87
1277
+ msgid "invalid delimiter"
1278
+ msgstr ""
1279
+
1280
+ #: includes/shortcodes/custom-gallery.php:58
1281
+ msgid "Single item width (in pixels)"
1282
+ msgstr ""
1283
+
1284
+ #: includes/shortcodes/custom-gallery.php:67
1285
+ msgid "Single item height (in pixels)"
1286
+ msgstr ""
1287
+
1288
+ #: includes/shortcodes/custom-gallery.php:72
1289
+ msgid "Never"
1290
+ msgstr ""
1291
+
1292
+ #: includes/shortcodes/custom-gallery.php:73
1293
+ msgid "On mouse over"
1294
+ msgstr ""
1295
+
1296
+ #: includes/shortcodes/custom-gallery.php:74
1297
+ msgid "Always"
1298
+ msgstr ""
1299
+
1300
+ #: includes/shortcodes/custom-gallery.php:78
1301
+ msgid "Title display mode"
1302
+ msgstr ""
1303
+
1304
+ #: includes/shortcodes/custom-gallery.php:87
1305
+ msgid "Customizable image gallery"
1306
+ msgstr ""
1307
+
1308
+ #: includes/shortcodes/dailymotion.php:8
1309
+ msgid "Dailymotion"
1310
+ msgstr ""
1311
+
1312
+ #: includes/shortcodes/dailymotion.php:14, includes/shortcodes/document.php:15, includes/shortcodes/feed.php:14, includes/shortcodes/vimeo.php:14, includes/shortcodes/youtube-advanced.php:15, includes/shortcodes/youtube.php:14
1313
+ msgid "Url"
1314
+ msgstr ""
1315
+
1316
+ #: includes/shortcodes/dailymotion.php:15
1317
+ msgid "Url of Dailymotion page with video"
1318
+ msgstr ""
1319
+
1320
+ #: includes/shortcodes/dailymotion.php:24, includes/shortcodes/video.php:36, includes/shortcodes/vimeo.php:24, includes/shortcodes/youtube-advanced.php:30, includes/shortcodes/youtube.php:24
1321
+ msgid "Player width"
1322
+ msgstr ""
1323
+
1324
+ #: includes/shortcodes/dailymotion.php:33, includes/shortcodes/video.php:45, includes/shortcodes/vimeo.php:33, includes/shortcodes/youtube-advanced.php:39, includes/shortcodes/youtube.php:33
1325
+ msgid "Player height"
1326
+ msgstr ""
1327
+
1328
+ #: includes/shortcodes/dailymotion.php:39, includes/shortcodes/vimeo.php:39, includes/shortcodes/youtube-advanced.php:45, includes/shortcodes/youtube.php:39
1329
+ msgid "Ignore width and height parameters and make player responsive"
1330
+ msgstr ""
1331
+
1332
+ #: includes/shortcodes/dailymotion.php:45
1333
+ msgid "Start the playback of the video automatically after the player load. May not work on some mobile OS versions"
1334
+ msgstr ""
1335
+
1336
+ #: includes/shortcodes/dailymotion.php:50, includes/shortcodes/lightbox-content.php:55, includes/shortcodes/qrcode.php:76
1337
+ msgid "Background color"
1338
+ msgstr ""
1339
+
1340
+ #: includes/shortcodes/dailymotion.php:51
1341
+ msgid "HTML color of the background of controls elements"
1342
+ msgstr ""
1343
+
1344
+ #: includes/shortcodes/dailymotion.php:56
1345
+ msgid "Foreground color"
1346
+ msgstr ""
1347
+
1348
+ #: includes/shortcodes/dailymotion.php:57
1349
+ msgid "HTML color of the foreground of controls elements"
1350
+ msgstr ""
1351
+
1352
+ #: includes/shortcodes/dailymotion.php:62
1353
+ msgid "Highlight color"
1354
+ msgstr ""
1355
+
1356
+ #: includes/shortcodes/dailymotion.php:63
1357
+ msgid "HTML color of the controls elements' highlights"
1358
+ msgstr ""
1359
+
1360
+ #: includes/shortcodes/dailymotion.php:68
1361
+ msgid "Show logo"
1362
+ msgstr ""
1363
+
1364
+ #: includes/shortcodes/dailymotion.php:69
1365
+ msgid "Allows to hide or show the Dailymotion logo"
1366
+ msgstr ""
1367
+
1368
+ #: includes/shortcodes/dailymotion.php:81
1369
+ msgid "Quality"
1370
+ msgstr ""
1371
+
1372
+ #: includes/shortcodes/dailymotion.php:82
1373
+ msgid "Determines the quality that must be played by default if available"
1374
+ msgstr ""
1375
+
1376
+ #: includes/shortcodes/dailymotion.php:87
1377
+ msgid "Show related videos"
1378
+ msgstr ""
1379
+
1380
+ #: includes/shortcodes/dailymotion.php:88
1381
+ msgid "Show related videos at the end of the video"
1382
+ msgstr ""
1383
+
1384
+ #: includes/shortcodes/dailymotion.php:93
1385
+ msgid "Show video info"
1386
+ msgstr ""
1387
+
1388
+ #: includes/shortcodes/dailymotion.php:94
1389
+ msgid "Show videos info (title/author) on the start screen"
1390
+ msgstr ""
1391
+
1392
+ #: includes/shortcodes/dailymotion.php:98, includes/shortcodes/document.php:44, includes/shortcodes/gmap.php:53, includes/shortcodes/vimeo.php:61, includes/shortcodes/youtube-advanced.php:129, includes/shortcodes/youtube.php:55
1393
+ msgid "A brief description of the embedded content (used by screenreaders)"
1394
+ msgstr ""
1395
+
1396
+ #: includes/shortcodes/dailymotion.php:108
1397
+ msgid "Dailymotion video"
1398
+ msgstr ""
1399
+
1400
+ #: includes/shortcodes/divider.php:7
1401
+ msgid "Divider"
1402
+ msgstr ""
1403
+
1404
+ #: includes/shortcodes/divider.php:14
1405
+ msgid "Show TOP link"
1406
+ msgstr ""
1407
+
1408
+ #: includes/shortcodes/divider.php:15
1409
+ msgid "Show link to top of the page or not"
1410
+ msgstr ""
1411
+
1412
+ #: includes/shortcodes/divider.php:19, includes/shortcodes/divider.php:81
1413
+ msgid "Go to top"
1414
+ msgstr ""
1415
+
1416
+ #: includes/shortcodes/divider.php:20
1417
+ msgid "Link text"
1418
+ msgstr ""
1419
+
1420
+ #: includes/shortcodes/divider.php:20
1421
+ msgid "Text for the GO TOP link"
1422
+ msgstr ""
1423
+
1424
+ #: includes/shortcodes/divider.php:32
1425
+ msgid "Choose style for this divider"
1426
+ msgstr ""
1427
+
1428
+ #: includes/shortcodes/divider.php:38
1429
+ msgid "Divider color"
1430
+ msgstr ""
1431
+
1432
+ #: includes/shortcodes/divider.php:39
1433
+ msgid "Pick the color for divider"
1434
+ msgstr ""
1435
+
1436
+ #: includes/shortcodes/divider.php:45, includes/shortcodes/expand.php:47
1437
+ msgid "Link color"
1438
+ msgstr ""
1439
+
1440
+ #: includes/shortcodes/divider.php:46
1441
+ msgid "Pick the color for TOP link"
1442
+ msgstr ""
1443
+
1444
+ #: includes/shortcodes/divider.php:55
1445
+ msgid "Height of the divider (in pixels)"
1446
+ msgstr ""
1447
+
1448
+ #: includes/shortcodes/divider.php:63, includes/shortcodes/heading.php:46, includes/shortcodes/lightbox-content.php:29, includes/shortcodes/qrcode.php:37
1449
+ msgid "Margin"
1450
+ msgstr ""
1451
+
1452
+ #: includes/shortcodes/divider.php:64
1453
+ msgid "Adjust the top and bottom margins of this divider (in pixels)"
1454
+ msgstr ""
1455
+
1456
+ #: includes/shortcodes/divider.php:73
1457
+ msgid "Content divider with optional TOP link"
1458
+ msgstr ""
1459
+
1460
+ #: includes/shortcodes/document.php:8
1461
+ msgid "Document"
1462
+ msgstr ""
1463
+
1464
+ #: includes/shortcodes/document.php:16
1465
+ msgid "Url to uploaded document. Supported formats: doc, xls, pdf etc."
1466
+ msgstr ""
1467
+
1468
+ #: includes/shortcodes/document.php:25
1469
+ msgid "Viewer width"
1470
+ msgstr ""
1471
+
1472
+ #: includes/shortcodes/document.php:34
1473
+ msgid "Viewer height"
1474
+ msgstr ""
1475
+
1476
+ #: includes/shortcodes/document.php:40
1477
+ msgid "Ignore width and height parameters and make viewer responsive"
1478
+ msgstr ""
1479
+
1480
+ #: includes/shortcodes/document.php:54
1481
+ msgid "Document viewer by Google"
1482
+ msgstr ""
1483
+
1484
+ #: includes/shortcodes/dropcap.php:7, includes/shortcodes/dropcap.php:39
1485
+ msgid "Dropcap"
1486
+ msgstr ""
1487
+
1488
+ #: includes/shortcodes/dropcap.php:16, includes/shortcodes/image-carousel.php:50
1489
+ msgid "Light"
1490
+ msgstr ""
1491
+
1492
+ #: includes/shortcodes/dropcap.php:17, includes/shortcodes/spoiler.php:27
1493
+ msgid "Simple"
1494
+ msgstr ""
1495
+
1496
+ #: includes/shortcodes/dropcap.php:20
1497
+ msgid "Dropcap style preset"
1498
+ msgstr ""
1499
+
1500
+ #: includes/shortcodes/dropcap.php:29
1501
+ msgid "Choose dropcap size"
1502
+ msgstr ""
1503
+
1504
+ #: includes/shortcodes/dropcap.php:38
1505
+ msgid "D"
1506
+ msgstr ""
1507
+
1508
+ #: includes/shortcodes/dummy-image.php:7, includes/shortcodes/dummy-image.php:71
1509
+ msgid "Dummy image"
1510
+ msgstr ""
1511
+
1512
+ #: includes/shortcodes/dummy-image.php:18
1513
+ msgid "Image width"
1514
+ msgstr ""
1515
+
1516
+ #: includes/shortcodes/dummy-image.php:27
1517
+ msgid "Image height"
1518
+ msgstr ""
1519
+
1520
+ #: includes/shortcodes/dummy-image.php:32, includes/shortcodes/posts.php:175
1521
+ msgid "Any"
1522
+ msgstr ""
1523
+
1524
+ #: includes/shortcodes/dummy-image.php:33
1525
+ msgid "Abstract"
1526
+ msgstr ""
1527
+
1528
+ #: includes/shortcodes/dummy-image.php:34
1529
+ msgid "Animals"
1530
+ msgstr ""
1531
+
1532
+ #: includes/shortcodes/dummy-image.php:35
1533
+ msgid "Business"
1534
+ msgstr ""
1535
+
1536
+ #: includes/shortcodes/dummy-image.php:36
1537
+ msgid "Cats"
1538
+ msgstr ""
1539
+
1540
+ #: includes/shortcodes/dummy-image.php:37
1541
+ msgid "City"
1542
+ msgstr ""
1543
+
1544
+ #: includes/shortcodes/dummy-image.php:38
1545
+ msgid "Food"
1546
+ msgstr ""
1547
+
1548
+ #: includes/shortcodes/dummy-image.php:39
1549
+ msgid "Night life"
1550
+ msgstr ""
1551
+
1552
+ #: includes/shortcodes/dummy-image.php:40
1553
+ msgid "Fashion"
1554
+ msgstr ""
1555
+
1556
+ #: includes/shortcodes/dummy-image.php:41
1557
+ msgid "People"
1558
+ msgstr ""
1559
+
1560
+ #: includes/shortcodes/dummy-image.php:42
1561
+ msgid "Nature"
1562
+ msgstr ""
1563
+
1564
+ #: includes/shortcodes/dummy-image.php:43
1565
+ msgid "Sports"
1566
+ msgstr ""
1567
+
1568
+ #: includes/shortcodes/dummy-image.php:44
1569
+ msgid "Technics"
1570
+ msgstr ""
1571
+
1572
+ #: includes/shortcodes/dummy-image.php:45
1573
+ msgid "Transport"
1574
+ msgstr ""
1575
+
1576
+ #: includes/shortcodes/dummy-image.php:48, includes/shortcodes/youtube-advanced.php:112
1577
+ msgid "Theme"
1578
+ msgstr ""
1579
+
1580
+ #: includes/shortcodes/dummy-image.php:49
1581
+ msgid "Select the theme for this image"
1582
+ msgstr ""
1583
+
1584
+ #: includes/shortcodes/dummy-image.php:58
1585
+ msgid "Image placeholder with random image"
1586
+ msgstr ""
1587
+
1588
+ #: includes/shortcodes/dummy-text.php:8
1589
+ msgid "Dummy text"
1590
+ msgstr ""
1591
+
1592
+ #: includes/shortcodes/dummy-text.php:15
1593
+ msgid "Paragraphs"
1594
+ msgstr ""
1595
+
1596
+ #: includes/shortcodes/dummy-text.php:16
1597
+ msgid "Words"
1598
+ msgstr ""
1599
+
1600
+ #: includes/shortcodes/dummy-text.php:17
1601
+ msgid "Bytes"
1602
+ msgstr ""
1603
+
1604
+ #: includes/shortcodes/dummy-text.php:20
1605
+ msgid "What"
1606
+ msgstr ""
1607
+
1608
+ #: includes/shortcodes/dummy-text.php:21
1609
+ msgid "What to generate"
1610
+ msgstr ""
1611
+
1612
+ #: includes/shortcodes/dummy-text.php:29
1613
+ msgid "Amount"
1614
+ msgstr ""
1615
+
1616
+ #: includes/shortcodes/dummy-text.php:30
1617
+ msgid "How many items (paragraphs or words) to generate. Minimum words amount is 5"
1618
+ msgstr ""
1619
+
1620
+ #: includes/shortcodes/dummy-text.php:35
1621
+ msgid "Cache"
1622
+ msgstr ""
1623
+
1624
+ #: includes/shortcodes/dummy-text.php:36
1625
+ msgid "Generated text will be cached. Be careful with this option. If you disable it and insert many dummy_text shortcodes the page load time will be highly increased"
1626
+ msgstr ""
1627
+
1628
+ #: includes/shortcodes/dummy-text.php:41
1629
+ msgid "Wrapper"
1630
+ msgstr ""
1631
+
1632
+ #: includes/shortcodes/dummy-text.php:42
1633
+ msgid "Wrap the dummy text with a div container"
1634
+ msgstr ""
1635
+
1636
+ #: includes/shortcodes/dummy-text.php:51
1637
+ msgid "Text placeholder"
1638
+ msgstr ""
1639
+
1640
+ #: includes/shortcodes/expand.php:7
1641
+ msgid "Expand"
1642
+ msgstr ""
1643
+
1644
+ #: includes/shortcodes/expand.php:12, includes/shortcodes/expand.php:101
1645
+ msgid "Show more"
1646
+ msgstr ""
1647
+
1648
+ #: includes/shortcodes/expand.php:13
1649
+ msgid "More text"
1650
+ msgstr ""
1651
+
1652
+ #: includes/shortcodes/expand.php:14
1653
+ msgid "Enter the text for more link"
1654
+ msgstr ""
1655
+
1656
+ #: includes/shortcodes/expand.php:17, includes/shortcodes/expand.php:102
1657
+ msgid "Show less"
1658
+ msgstr ""
1659
+
1660
+ #: includes/shortcodes/expand.php:18
1661
+ msgid "Less text"
1662
+ msgstr ""
1663
+
1664
+ #: includes/shortcodes/expand.php:19
1665
+ msgid "Enter the text for less link"
1666
+ msgstr ""
1667
+
1668
+ #: includes/shortcodes/expand.php:28
1669
+ msgid "Height for collapsed state (in pixels)"
1670
+ msgstr ""
1671
+
1672
+ #: includes/shortcodes/expand.php:33
1673
+ msgid "Hide less link"
1674
+ msgstr ""
1675
+
1676
+ #: includes/shortcodes/expand.php:34
1677
+ msgid "This option allows you to hide less link, when the text block has been expanded"
1678
+ msgstr ""
1679
+
1680
+ #: includes/shortcodes/expand.php:41
1681
+ msgid "Pick the text color"
1682
+ msgstr ""
1683
+
1684
+ #: includes/shortcodes/expand.php:48
1685
+ msgid "Pick the link color"
1686
+ msgstr ""
1687
+
1688
+ #: includes/shortcodes/expand.php:54
1689
+ msgid "Underlined"
1690
+ msgstr ""
1691
+
1692
+ #: includes/shortcodes/expand.php:60
1693
+ msgid "Link style"
1694
+ msgstr ""
1695
+
1696
+ #: includes/shortcodes/expand.php:61
1697
+ msgid "Select the style for more/less link"
1698
+ msgstr ""
1699
+
1700
+ #: includes/shortcodes/expand.php:66, includes/shortcodes/frame.php:14, includes/shortcodes/heading.php:32, includes/shortcodes/image-carousel.php:88, includes/shortcodes/lightbox-content.php:44, includes/shortcodes/pullquote.php:14, includes/shortcodes/qrcode.php:44, includes/shortcodes/tooltip.php:36
1701
+ msgid "Left"
1702
+ msgstr ""
1703
+
1704
+ #: includes/shortcodes/expand.php:68, includes/shortcodes/frame.php:16, includes/shortcodes/heading.php:34, includes/shortcodes/image-carousel.php:89, includes/shortcodes/lightbox-content.php:46, includes/shortcodes/pullquote.php:15, includes/shortcodes/qrcode.php:46, includes/shortcodes/tooltip.php:37
1705
+ msgid "Right"
1706
+ msgstr ""
1707
+
1708
+ #: includes/shortcodes/expand.php:71
1709
+ msgid "Link align"
1710
+ msgstr ""
1711
+
1712
+ #: includes/shortcodes/expand.php:72
1713
+ msgid "Select link alignment"
1714
+ msgstr ""
1715
+
1716
+ #: includes/shortcodes/expand.php:77
1717
+ msgid "More icon"
1718
+ msgstr ""
1719
+
1720
+ #: includes/shortcodes/expand.php:78
1721
+ msgid "Add an icon to the more link"
1722
+ msgstr ""
1723
+
1724
+ #: includes/shortcodes/expand.php:83
1725
+ msgid "Less icon"
1726
+ msgstr ""
1727
+
1728
+ #: includes/shortcodes/expand.php:84
1729
+ msgid "Add an icon to the less link"
1730
+ msgstr ""
1731
+
1732
+ #: includes/shortcodes/expand.php:93
1733
+ msgid "This text block can be expanded"
1734
+ msgstr ""
1735
+
1736
+ #: includes/shortcodes/expand.php:94
1737
+ msgid "Expandable text block"
1738
+ msgstr ""
1739
+
1740
+ #: includes/shortcodes/feed.php:7
1741
+ msgid "RSS feed"
1742
+ msgstr ""
1743
+
1744
+ #: includes/shortcodes/feed.php:15
1745
+ msgid "Url to RSS-feed"
1746
+ msgstr ""
1747
+
1748
+ #: includes/shortcodes/feed.php:23
1749
+ msgid "Number of items to show"
1750
+ msgstr ""
1751
+
1752
+ #: includes/shortcodes/feed.php:32
1753
+ msgid "Feed grabber"
1754
+ msgstr ""
1755
+
1756
+ #: includes/shortcodes/frame.php:7
1757
+ msgid "Frame"
1758
+ msgstr ""
1759
+
1760
+ #: includes/shortcodes/frame.php:19, includes/shortcodes/heading.php:37, includes/shortcodes/pullquote.php:18, includes/shortcodes/qrcode.php:49
1761
+ msgid "Align"
1762
+ msgstr ""
1763
+
1764
+ #: includes/shortcodes/frame.php:20
1765
+ msgid "Frame alignment"
1766
+ msgstr ""
1767
+
1768
+ #: includes/shortcodes/frame.php:24
1769
+ msgid "Class"
1770
+ msgstr ""
1771
+
1772
+ #: includes/shortcodes/frame.php:29
1773
+ msgid "Styled image frame"
1774
+ msgstr ""
1775
+
1776
+ #: includes/shortcodes/gmap.php:8
1777
+ msgid "Google map"
1778
+ msgstr ""
1779
+
1780
+ #: includes/shortcodes/gmap.php:19
1781
+ msgid "Map width"
1782
+ msgstr ""
1783
+
1784
+ #: includes/shortcodes/gmap.php:28
1785
+ msgid "Map height"
1786
+ msgstr ""
1787
+
1788
+ #: includes/shortcodes/gmap.php:34
1789
+ msgid "Ignore width and height parameters and make map responsive"
1790
+ msgstr ""
1791
+
1792
+ #: includes/shortcodes/gmap.php:39
1793
+ msgid "Marker"
1794
+ msgstr ""
1795
+
1796
+ #: includes/shortcodes/gmap.php:40
1797
+ msgid "Address for the marker. You can type it in any language"
1798
+ msgstr ""
1799
+
1800
+ #: includes/shortcodes/gmap.php:48
1801
+ msgid "Zoom"
1802
+ msgstr ""
1803
+
1804
+ #: includes/shortcodes/gmap.php:49
1805
+ msgid "Zoom sets the initial zoom level of the map. Accepted values range from 1 (the whole world) to 21 (individual buildings). Use 0 (zero) to set zoom level depending on displayed object (automatic)"
1806
+ msgstr ""
1807
+
1808
+ #: includes/shortcodes/gmap.php:63
1809
+ msgid "Maps by Google"
1810
+ msgstr ""
1811
+
1812
+ #: includes/shortcodes/guests.php:7
1813
+ msgid "Guests"
1814
+ msgstr ""
1815
+
1816
+ #: includes/shortcodes/guests.php:18
1817
+ msgid "This content will be available only for non-logged visitors"
1818
+ msgstr ""
1819
+
1820
+ #: includes/shortcodes/guests.php:19
1821
+ msgid "Content for guests only"
1822
+ msgstr ""
1823
+
1824
+ #: includes/shortcodes/heading.php:7
1825
+ msgid "Heading"
1826
+ msgstr ""
1827
+
1828
+ #: includes/shortcodes/heading.php:18
1829
+ msgid "Choose style for this heading"
1830
+ msgstr ""
1831
+
1832
+ #: includes/shortcodes/heading.php:27
1833
+ msgid "Select heading size (pixels)"
1834
+ msgstr ""
1835
+
1836
+ #: includes/shortcodes/heading.php:38
1837
+ msgid "Heading text alignment"
1838
+ msgstr ""
1839
+
1840
+ #: includes/shortcodes/heading.php:47
1841
+ msgid "Bottom margin (pixels)"
1842
+ msgstr ""
1843
+
1844
+ #: includes/shortcodes/heading.php:50
1845
+ msgid "HTML Anchor (ID)"
1846
+ msgstr ""
1847
+
1848
+ #: includes/shortcodes/heading.php:51
1849
+ msgid "Anchors lets you link directly to a heading on a page."
1850
+ msgstr ""
1851
+
1852
+ #: includes/shortcodes/heading.php:61
1853
+ msgid "Heading text"
1854
+ msgstr ""
1855
+
1856
+ #: includes/shortcodes/heading.php:62
1857
+ msgid "Styled heading"
1858
+ msgstr ""
1859
+
1860
+ #: includes/shortcodes/highlight.php:7
1861
+ msgid "Highlight"
1862
+ msgstr ""
1863
+
1864
+ #: includes/shortcodes/highlight.php:16
1865
+ msgid "Highlighted text background color"
1866
+ msgstr ""
1867
+
1868
+ #: includes/shortcodes/highlight.php:22
1869
+ msgid "Highlighted text color"
1870
+ msgstr ""
1871
+
1872
+ #: includes/shortcodes/highlight.php:31, includes/shortcodes/highlight.php:32
1873
+ msgid "Highlighted text"
1874
+ msgstr ""
1875
+
1876
+ #: includes/shortcodes/image-carousel.php:8
1877
+ msgid "Image carousel"
1878
+ msgstr ""
1879
+
1880
+ #: includes/shortcodes/image-carousel.php:9
1881
+ msgid "Customizable image gallery (slider and carousel)"
1882
+ msgstr ""
1883
+
1884
+ #: includes/shortcodes/image-carousel.php:19
1885
+ msgid "Recent media"
1886
+ msgstr ""
1887
+
1888
+ #: includes/shortcodes/image-carousel.php:23
1889
+ msgid "Images source"
1890
+ msgstr ""
1891
+
1892
+ #: includes/shortcodes/image-carousel.php:24
1893
+ msgid "This option defines which images will be shown in the gallery. Images can be selected manually from media library or fetched automatically from post featured images, or even filtered by a taxonomy."
1894
+ msgstr ""
1895
+
1896
+ #: includes/shortcodes/image-carousel.php:33
1897
+ msgid "Maximum number of posts to search featured images in (for recent media, recent posts, and taxonomy)"
1898
+ msgstr ""
1899
+
1900
+ #: includes/shortcodes/image-carousel.php:39
1901
+ msgid "Minimal"
1902
+ msgstr ""
1903
+
1904
+ #: includes/shortcodes/image-carousel.php:40
1905
+ msgid "Photo"
1906
+ msgstr ""
1907
+
1908
+ #: includes/shortcodes/image-carousel.php:43
1909
+ msgid "Slides style"
1910
+ msgstr ""
1911
+
1912
+ #: includes/shortcodes/image-carousel.php:44
1913
+ msgid "This option control carousel slides appearance."
1914
+ msgstr ""
1915
+
1916
+ #: includes/shortcodes/image-carousel.php:49
1917
+ msgid "Dark"
1918
+ msgstr ""
1919
+
1920
+ #: includes/shortcodes/image-carousel.php:53
1921
+ msgid "Controls style"
1922
+ msgstr ""
1923
+
1924
+ #: includes/shortcodes/image-carousel.php:54
1925
+ msgid "This option control carousel controls appearance."
1926
+ msgstr ""
1927
+
1928
+ #: includes/shortcodes/image-carousel.php:58
1929
+ msgid "Do not crop images"
1930
+ msgstr ""
1931
+
1932
+ #: includes/shortcodes/image-carousel.php:60
1933
+ msgid "Crop images"
1934
+ msgstr ""
1935
+
1936
+ #: includes/shortcodes/image-carousel.php:61
1937
+ msgid "This option allows to enable/disable image cropping and crop aspect ratio."
1938
+ msgstr ""
1939
+
1940
+ #: includes/shortcodes/image-carousel.php:69, includes/shortcodes/row.php:7
1941
+ msgid "Columns"
1942
+ msgstr ""
1943
+
1944
+ #: includes/shortcodes/image-carousel.php:70
1945
+ msgid "This option control the number of columns used in the carousel."
1946
+ msgstr ""
1947
+
1948
+ #: includes/shortcodes/image-carousel.php:75
1949
+ msgid "Adaptive"
1950
+ msgstr ""
1951
+
1952
+ #: includes/shortcodes/image-carousel.php:76
1953
+ msgid "Set this option to Yes to ignore the columns parameter and display a single column on mobile devices."
1954
+ msgstr ""
1955
+
1956
+ #: includes/shortcodes/image-carousel.php:81
1957
+ msgid "Spacing"
1958
+ msgstr ""
1959
+
1960
+ #: includes/shortcodes/image-carousel.php:82
1961
+ msgid "Adds spacing between carousel columns."
1962
+ msgstr ""
1963
+
1964
+ #: includes/shortcodes/image-carousel.php:91
1965
+ msgid "Full"
1966
+ msgstr ""
1967
+
1968
+ #: includes/shortcodes/image-carousel.php:94
1969
+ msgid "Alignment"
1970
+ msgstr ""
1971
+
1972
+ #: includes/shortcodes/image-carousel.php:95
1973
+ msgid "This option controls how the gallery will be aligned within a page. Left, Right, and Center options require Max Width to be set. Full option requires page template with no sidebar."
1974
+ msgstr ""
1975
+
1976
+ #: includes/shortcodes/image-carousel.php:99
1977
+ msgid "Max width"
1978
+ msgstr ""
1979
+
1980
+ #: includes/shortcodes/image-carousel.php:102
1981
+ msgid "Sets maximum width of the carousel container. CSS uints are allowed."
1982
+ msgstr ""
1983
+
1984
+ #: includes/shortcodes/image-carousel.php:103
1985
+ msgid "Example values"
1986
+ msgstr ""
1987
+
1988
+ #: includes/shortcodes/image-carousel.php:104, admin/partials/pages/shortcodes-single-content.php:53
1989
+ msgid "Default value"
1990
+ msgstr ""
1991
+
1992
+ #: includes/shortcodes/image-carousel.php:112
1993
+ msgid "Captions"
1994
+ msgstr ""
1995
+
1996
+ #: includes/shortcodes/image-carousel.php:113
1997
+ msgid "Set this option to Yes to display image captions."
1998
+ msgstr ""
1999
+
2000
+ #: includes/shortcodes/image-carousel.php:118
2001
+ msgid "Arrows (left / right)"
2002
+ msgstr ""
2003
+
2004
+ #: includes/shortcodes/image-carousel.php:119
2005
+ msgid "This option enables left/right arrow navigation."
2006
+ msgstr ""
2007
+
2008
+ #: includes/shortcodes/image-carousel.php:124
2009
+ msgid "Dots (pagination)"
2010
+ msgstr ""
2011
+
2012
+ #: includes/shortcodes/image-carousel.php:125
2013
+ msgid "This option enables dots/pages navigation."
2014
+ msgstr ""
2015
+
2016
+ #: includes/shortcodes/image-carousel.php:133
2017
+ msgid "Custom link (added in media editor)"
2018
+ msgstr ""
2019
+
2020
+ #: includes/shortcodes/image-carousel.php:135
2021
+ msgid "Post"
2022
+ msgstr ""
2023
+
2024
+ #: includes/shortcodes/image-carousel.php:138
2025
+ msgid "Link to"
2026
+ msgstr ""
2027
+
2028
+ #: includes/shortcodes/image-carousel.php:139
2029
+ msgid "This option adds links to carousel slides."
2030
+ msgstr ""
2031
+
2032
+ #: includes/shortcodes/image-carousel.php:149
2033
+ msgid "This option controls how slide links will be opened."
2034
+ msgstr ""
2035
+
2036
+ #: includes/shortcodes/image-carousel.php:158
2037
+ msgid "Sets the time interval between automatic slide transitions, in seconds. Set to 0 to disable autoplay."
2038
+ msgstr ""
2039
+
2040
+ #: includes/shortcodes/image-carousel.php:163
2041
+ msgid "Immediate"
2042
+ msgstr ""
2043
+
2044
+ #: includes/shortcodes/image-carousel.php:164
2045
+ msgid "Fast"
2046
+ msgstr ""
2047
+
2048
+ #: includes/shortcodes/image-carousel.php:165
2049
+ msgid "Medium"
2050
+ msgstr ""
2051
+
2052
+ #: includes/shortcodes/image-carousel.php:166
2053
+ msgid "Slow"
2054
+ msgstr ""
2055
+
2056
+ #: includes/shortcodes/image-carousel.php:169
2057
+ msgid "Transition speed"
2058
+ msgstr ""
2059
+
2060
+ #: includes/shortcodes/image-carousel.php:170
2061
+ msgid "This option control slides transition speed."
2062
+ msgstr ""
2063
+
2064
+ #: includes/shortcodes/image-carousel.php:176
2065
+ msgid "Images size (quality)"
2066
+ msgstr ""
2067
+
2068
+ #: includes/shortcodes/image-carousel.php:177
2069
+ msgid "This option controls the size of carousel slide images. This option only affects image quality, not the actual slide size."
2070
+ msgstr ""
2071
+
2072
+ #: includes/shortcodes/image-carousel.php:182
2073
+ msgid "Outline on focus"
2074
+ msgstr ""
2075
+
2076
+ #: includes/shortcodes/image-carousel.php:183
2077
+ msgid "This option enables outline when carousel gets focus. The outline improves keyboard navigation."
2078
+ msgstr ""
2079
+
2080
+ #: includes/shortcodes/label.php:7, includes/shortcodes/label.php:32
2081
+ msgid "Label"
2082
+ msgstr ""
2083
+
2084
+ #: includes/shortcodes/label.php:15
2085
+ msgid "Success"
2086
+ msgstr ""
2087
+
2088
+ #: includes/shortcodes/label.php:16
2089
+ msgid "Warning"
2090
+ msgstr ""
2091
+
2092
+ #: includes/shortcodes/label.php:17
2093
+ msgid "Important"
2094
+ msgstr ""
2095
+
2096
+ #: includes/shortcodes/label.php:18
2097
+ msgid "Black"
2098
+ msgstr ""
2099
+
2100
+ #: includes/shortcodes/label.php:19
2101
+ msgid "Info"
2102
+ msgstr ""
2103
+
2104
+ #: includes/shortcodes/label.php:22
2105
+ msgid "Type"
2106
+ msgstr ""
2107
+
2108
+ #: includes/shortcodes/label.php:23
2109
+ msgid "Style of the label"
2110
+ msgstr ""
2111
+
2112
+ #: includes/shortcodes/label.php:33
2113
+ msgid "Styled label"
2114
+ msgstr ""
2115
+
2116
+ #: includes/shortcodes/lightbox-content.php:7
2117
+ msgid "Lightbox content"
2118
+ msgstr ""
2119
+
2120
+ #: includes/shortcodes/lightbox-content.php:15, includes/shortcodes/permalink.php:13, includes/shortcodes/user.php:15
2121
+ msgid "ID"
2122
+ msgstr ""
2123
+
2124
+ #: includes/shortcodes/lightbox-content.php:16
2125
+ msgid "Enter here the ID from Content source field. %s Example value: %s"
2126
+ msgstr ""
2127
+
2128
+ #: includes/shortcodes/lightbox-content.php:21
2129
+ msgid "Adjust the width for inline content (in pixels or percents). %s Example values: %s, %s, %s"
2130
+ msgstr ""
2131
+
2132
+ #: includes/shortcodes/lightbox-content.php:30
2133
+ msgid "Adjust the margin for inline content (in pixels)"
2134
+ msgstr ""
2135
+
2136
+ #: includes/shortcodes/lightbox-content.php:38
2137
+ msgid "Padding"
2138
+ msgstr ""
2139
+
2140
+ #: includes/shortcodes/lightbox-content.php:39
2141
+ msgid "Adjust the padding for inline content (in pixels)"
2142
+ msgstr ""
2143
+
2144
+ #: includes/shortcodes/lightbox-content.php:49
2145
+ msgid "Text alignment"
2146
+ msgstr ""
2147
+
2148
+ #: includes/shortcodes/lightbox-content.php:50
2149
+ msgid "Select the text alignment"
2150
+ msgstr ""
2151
+
2152
+ #: includes/shortcodes/lightbox-content.php:56, includes/shortcodes/qrcode.php:77
2153
+ msgid "Pick a background color"
2154
+ msgstr ""
2155
+
2156
+ #: includes/shortcodes/lightbox-content.php:62, includes/shortcodes/lightbox-content.php:68
2157
+ msgid "Pick a text color"
2158
+ msgstr ""
2159
+
2160
+ #: includes/shortcodes/lightbox-content.php:74
2161
+ msgid "Adjust the shadow for content box"
2162
+ msgstr ""
2163
+
2164
+ #: includes/shortcodes/lightbox-content.php:83
2165
+ msgid "Inline content"
2166
+ msgstr ""
2167
+
2168
+ #: includes/shortcodes/lightbox-content.php:84
2169
+ msgid "Inline content for lightbox"
2170
+ msgstr ""
2171
+
2172
+ #: includes/shortcodes/lightbox-content.php:105
2173
+ msgid "please specify correct ID for this block. You should use same ID as in the Content source field (when inserting lightbox shortcode)"
2174
+ msgstr ""
2175
+
2176
+ #: includes/shortcodes/lightbox.php:17
2177
+ msgid "Iframe"
2178
+ msgstr ""
2179
+
2180
+ #: includes/shortcodes/lightbox.php:18
2181
+ msgid "Image"
2182
+ msgstr ""
2183
+
2184
+ #: includes/shortcodes/lightbox.php:19
2185
+ msgid "Inline (html content)"
2186
+ msgstr ""
2187
+
2188
+ #: includes/shortcodes/lightbox.php:22
2189
+ msgid "Content type"
2190
+ msgstr ""
2191
+
2192
+ #: includes/shortcodes/lightbox.php:23
2193
+ msgid "Select type of the lightbox window content"
2194
+ msgstr ""
2195
+
2196
+ #: includes/shortcodes/lightbox.php:27
2197
+ msgid "Content source"
2198
+ msgstr ""
2199
+
2200
+ #: includes/shortcodes/lightbox.php:28
2201
+ msgid "Insert here URL or CSS selector. Use URL for Iframe and Image content types. Use CSS selector for Inline content type.<br />Example values:<br /><b%value>http://www.youtube.com/watch?v=XXXXXXXXX</b> - YouTube video (iframe)<br /><b%value>http://example.com/wp-content/uploads/image.jpg</b> - uploaded image (image)<br /><b%value>http://example.com/</b> - any web page (iframe)<br /><b%value>#my-custom-popup</b> - any HTML content (inline)"
2202
+ msgstr ""
2203
+
2204
+ #: includes/shortcodes/lightbox.php:33
2205
+ msgid "Enable on mobile devices"
2206
+ msgstr ""
2207
+
2208
+ #: includes/shortcodes/lightbox.php:34
2209
+ msgid "Set this option to No to disable lightbox on mobile devices (≤768px)"
2210
+ msgstr ""
2211
+
2212
+ #: includes/shortcodes/lightbox.php:43
2213
+ msgid "Click here to open lightbox"
2214
+ msgstr ""
2215
+
2216
+ #: includes/shortcodes/lightbox.php:44
2217
+ msgid "Lightbox window with custom content"
2218
+ msgstr ""
2219
+
2220
+ #: includes/shortcodes/lightbox.php:63
2221
+ msgid "please specify correct source"
2222
+ msgstr ""
2223
+
2224
+ #: includes/shortcodes/list.php:8
2225
+ msgid "List"
2226
+ msgstr ""
2227
+
2228
+ #: includes/shortcodes/list.php:16
2229
+ msgid "You can upload custom icon for this list or pick a built-in icon"
2230
+ msgstr ""
2231
+
2232
+ #: includes/shortcodes/list.php:30
2233
+ msgid "Indent"
2234
+ msgstr ""
2235
+
2236
+ #: includes/shortcodes/list.php:31
2237
+ msgid "Defines list indent size (in pixels). Negative numbers are also allowed"
2238
+ msgstr ""
2239
+
2240
+ #: includes/shortcodes/list.php:40
2241
+ msgid ""
2242
+ "<ul>\n"
2243
+ "<li>List item</li>\n"
2244
+ "<li>List item</li>\n"
2245
+ "<li>List item</li>\n"
2246
+ "</ul>"
2247
+ msgstr ""
2248
+
2249
+ #: includes/shortcodes/list.php:41
2250
+ msgid "Styled unordered list"
2251
+ msgstr ""
2252
+
2253
+ #: includes/shortcodes/members.php:8
2254
+ msgid "Members"
2255
+ msgstr ""
2256
+
2257
+ #: includes/shortcodes/members.php:13, includes/shortcodes/members.php:50
2258
+ msgid "This content is for registered users only. Please %login%."
2259
+ msgstr ""
2260
+
2261
+ #: includes/shortcodes/members.php:14
2262
+ msgid "Message"
2263
+ msgstr ""
2264
+
2265
+ #: includes/shortcodes/members.php:15
2266
+ msgid "Message for not logged users"
2267
+ msgstr ""
2268
+
2269
+ #: includes/shortcodes/members.php:20
2270
+ msgid "Box color"
2271
+ msgstr ""
2272
+
2273
+ #: includes/shortcodes/members.php:21
2274
+ msgid "This color will applied only to box for not logged users"
2275
+ msgstr ""
2276
+
2277
+ #: includes/shortcodes/members.php:24, includes/shortcodes/members.php:53
2278
+ msgid "login"
2279
+ msgstr ""
2280
+
2281
+ #: includes/shortcodes/members.php:25
2282
+ msgid "Login link text"
2283
+ msgstr ""
2284
+
2285
+ #: includes/shortcodes/members.php:26
2286
+ msgid "Text for the login link"
2287
+ msgstr ""
2288
+
2289
+ #: includes/shortcodes/members.php:30, includes/shortcodes/members.php:31
2290
+ msgid "Login link url"
2291
+ msgstr ""
2292
+
2293
+ #: includes/shortcodes/members.php:40
2294
+ msgid "Content for logged members"
2295
+ msgstr ""
2296
+
2297
+ #: includes/shortcodes/members.php:41
2298
+ msgid "Content for logged in members only"
2299
+ msgstr ""
2300
+
2301
+ #: includes/shortcodes/menu.php:7
2302
+ msgid "Menu"
2303
+ msgstr ""
2304
+
2305
+ #: includes/shortcodes/menu.php:14
2306
+ msgid "Menu name"
2307
+ msgstr ""
2308
+
2309
+ #: includes/shortcodes/menu.php:14
2310
+ msgid "Custom menu name. Ex: Main menu"
2311
+ msgstr ""
2312
+
2313
+ #: includes/shortcodes/menu.php:23
2314
+ msgid "Custom menu by name"
2315
+ msgstr ""
2316
+
2317
+ #: includes/shortcodes/menu.php:43
2318
+ msgid "This menu doesn't exists, or has no elements"
2319
+ msgstr ""
2320
+
2321
+ #: includes/shortcodes/meta.php:7
2322
+ msgid "Meta data"
2323
+ msgstr ""
2324
+
2325
+ #: includes/shortcodes/meta.php:13
2326
+ msgid "Key"
2327
+ msgstr ""
2328
+
2329
+ #: includes/shortcodes/meta.php:14
2330
+ msgid "Meta key name"
2331
+ msgstr ""
2332
+
2333
+ #: includes/shortcodes/meta.php:19, includes/shortcodes/post.php:44, includes/shortcodes/user.php:31
2334
+ msgid "This text will be shown if data is not found"
2335
+ msgstr ""
2336
+
2337
+ #: includes/shortcodes/meta.php:23, includes/shortcodes/post.php:48, includes/shortcodes/user.php:35
2338
+ msgid "Before"
2339
+ msgstr ""
2340
+
2341
+ #: includes/shortcodes/meta.php:24, includes/shortcodes/post.php:49, includes/shortcodes/user.php:36
2342
+ msgid "This content will be shown before the value"
2343
+ msgstr ""
2344
+
2345
+ #: includes/shortcodes/meta.php:28, includes/shortcodes/post.php:53, includes/shortcodes/user.php:40
2346
+ msgid "After"
2347
+ msgstr ""
2348
+
2349
+ #: includes/shortcodes/meta.php:29, includes/shortcodes/post.php:54, includes/shortcodes/user.php:41
2350
+ msgid "This content will be shown after the value"
2351
+ msgstr ""
2352
+
2353
+ #: includes/shortcodes/meta.php:33, includes/shortcodes/post.php:16, includes/shortcodes/post.php:58, includes/shortcodes/posts.php:140
2354
+ msgid "Post ID"
2355
+ msgstr ""
2356
+
2357
+ #: includes/shortcodes/meta.php:34
2358
+ msgid "You can specify custom post ID. Leave this field empty to use an ID of the current post. Current post ID may not work in Live Preview mode"
2359
+ msgstr ""
2360
+
2361
+ #: includes/shortcodes/meta.php:38, includes/shortcodes/post.php:69, includes/shortcodes/user.php:50
2362
+ msgid "Filter"
2363
+ msgstr ""
2364
+
2365
+ #: includes/shortcodes/meta.php:39, includes/shortcodes/post.php:70, includes/shortcodes/user.php:51
2366
+ msgid "You can apply custom filter to the retrieved value. Enter here function name. Your function must accept one argument and return modified value. Name of your function must include word <b>filter</b>. Example function: "
2367
+ msgstr ""
2368
+
2369
+ #: includes/shortcodes/meta.php:42
2370
+ msgid "Post meta"
2371
+ msgstr ""
2372
+
2373
+ #: includes/shortcodes/meta.php:58
2374
+ msgid "post ID is incorrect"
2375
+ msgstr ""
2376
+
2377
+ #: includes/shortcodes/meta.php:60
2378
+ msgid "please specify meta key name"
2379
+ msgstr ""
2380
+
2381
+ #: includes/shortcodes/note.php:8
2382
+ msgid "Note"
2383
+ msgstr ""
2384
+
2385
+ #: includes/shortcodes/note.php:17
2386
+ msgid "Note background color"
2387
+ msgstr ""
2388
+
2389
+ #: includes/shortcodes/note.php:24
2390
+ msgid "Note text color"
2391
+ msgstr ""
2392
+
2393
+ #: includes/shortcodes/note.php:33
2394
+ msgid "Note corners radius"
2395
+ msgstr ""
2396
+
2397
+ #: includes/shortcodes/note.php:42
2398
+ msgid "Note text"
2399
+ msgstr ""
2400
+
2401
+ #: includes/shortcodes/note.php:43
2402
+ msgid "Colored box"
2403
+ msgstr ""
2404
+
2405
+ #: includes/shortcodes/permalink.php:7
2406
+ msgid "Permalink"
2407
+ msgstr ""
2408
+
2409
+ #: includes/shortcodes/permalink.php:14
2410
+ msgid "Post or page ID"
2411
+ msgstr ""
2412
+
2413
+ #: includes/shortcodes/permalink.php:24, includes/shortcodes/qrcode.php:64, includes/shortcodes/tabs.php:106
2414
+ msgid "Link target"
2415
+ msgstr ""
2416
+
2417
+ #: includes/shortcodes/permalink.php:29
2418
+ msgid "A value for the title attribute of the link"
2419
+ msgstr ""
2420
+
2421
+ #: includes/shortcodes/permalink.php:33
2422
+ msgid "Rel"
2423
+ msgstr ""
2424
+
2425
+ #: includes/shortcodes/permalink.php:34
2426
+ msgid "A value for the rel attribute of the link"
2427
+ msgstr ""
2428
+
2429
+ #: includes/shortcodes/permalink.php:44
2430
+ msgid "Permalink to specified post/page"
2431
+ msgstr ""
2432
+
2433
+ #: includes/shortcodes/post.php:10
2434
+ msgid "Post data"
2435
+ msgstr ""
2436
+
2437
+ #: includes/shortcodes/post.php:11
2438
+ msgid "The utility shortcode to display various post data, like post title, status or excerpt"
2439
+ msgstr ""
2440
+
2441
+ #: includes/shortcodes/post.php:17, includes/shortcodes/posts.php:141
2442
+ msgid "Post author"
2443
+ msgstr ""
2444
+
2445
+ #: includes/shortcodes/post.php:18, includes/shortcodes/post.php:19
2446
+ msgid "Post date"
2447
+ msgstr ""
2448
+
2449
+ #: includes/shortcodes/post.php:20
2450
+ msgid "Post content"
2451
+ msgstr ""
2452
+
2453
+ #: includes/shortcodes/post.php:21, includes/shortcodes/posts.php:142
2454
+ msgid "Post title"
2455
+ msgstr ""
2456
+
2457
+ #: includes/shortcodes/post.php:22
2458
+ msgid "Post excerpt"
2459
+ msgstr ""
2460
+
2461
+ #: includes/shortcodes/post.php:23, includes/shortcodes/posts.php:178
2462
+ msgid "Post status"
2463
+ msgstr ""
2464
+
2465
+ #: includes/shortcodes/post.php:24
2466
+ msgid "Comment status"
2467
+ msgstr ""
2468
+
2469
+ #: includes/shortcodes/post.php:25
2470
+ msgid "Ping status"
2471
+ msgstr ""
2472
+
2473
+ #: includes/shortcodes/post.php:26
2474
+ msgid "Post name"
2475
+ msgstr ""
2476
+
2477
+ #: includes/shortcodes/post.php:27, includes/shortcodes/post.php:28
2478
+ msgid "Post modified"
2479
+ msgstr ""
2480
+
2481
+ #: includes/shortcodes/post.php:29
2482
+ msgid "Filtered post content"
2483
+ msgstr ""
2484
+
2485
+ #: includes/shortcodes/post.php:30, includes/shortcodes/posts.php:146, includes/shortcodes/posts.php:158
2486
+ msgid "Post parent"
2487
+ msgstr ""
2488
+
2489
+ #: includes/shortcodes/post.php:31
2490
+ msgid "GUID"
2491
+ msgstr ""
2492
+
2493
+ #: includes/shortcodes/post.php:32, includes/shortcodes/posts.php:149
2494
+ msgid "Menu order"
2495
+ msgstr ""
2496
+
2497
+ #: includes/shortcodes/post.php:33, includes/shortcodes/post.php:64
2498
+ msgid "Post type"
2499
+ msgstr ""
2500
+
2501
+ #: includes/shortcodes/post.php:34
2502
+ msgid "Post mime type"
2503
+ msgstr ""
2504
+
2505
+ #: includes/shortcodes/post.php:35
2506
+ msgid "Comment count"
2507
+ msgstr ""
2508
+
2509
+ #: includes/shortcodes/post.php:38, includes/shortcodes/user.php:25
2510
+ msgid "Field"
2511
+ msgstr ""
2512
+
2513
+ #: includes/shortcodes/post.php:39
2514
+ msgid "Post data field name"
2515
+ msgstr ""
2516
+
2517
+ #: includes/shortcodes/post.php:59
2518
+ msgid "You can specify custom post ID. Post slug is also allowed. Leave this field empty to use ID of the current post. Current post ID may not work in Live Preview mode"
2519
+ msgstr ""
2520
+
2521
+ #: includes/shortcodes/post.php:65
2522
+ msgid "Post type of the post you want to display the data from"
2523
+ msgstr ""
2524
+
2525
+ #: includes/shortcodes/post.php:92
2526
+ msgid "invalid post ID"
2527
+ msgstr ""
2528
+
2529
+ #: includes/shortcodes/posts.php:8
2530
+ msgid "Posts"
2531
+ msgstr ""
2532
+
2533
+ #: includes/shortcodes/posts.php:15, includes/shortcodes/template.php:8
2534
+ msgid "Template"
2535
+ msgstr ""
2536
+
2537
+ #: includes/shortcodes/posts.php:16
2538
+ msgid "Relative path to the template file. Default templates placed in the plugin directory (templates folder). You can copy them under your theme directory and modify as you want. You can use following default templates that already available in the plugin directory:<br/><b%value>templates/default-loop.php</b> - posts loop<br/><b%value>templates/teaser-loop.php</b> - posts loop with thumbnail and title<br/><b%value>templates/single-post.php</b> - single post template<br/><b%value>templates/list-loop.php</b> - unordered list with posts titles"
2539
+ msgstr ""
2540
+
2541
+ #: includes/shortcodes/posts.php:23
2542
+ msgid "Post ID's"
2543
+ msgstr ""
2544
+
2545
+ #: includes/shortcodes/posts.php:24
2546
+ msgid "Enter comma separated ID's of the posts that you want to show"
2547
+ msgstr ""
2548
+
2549
+ #: includes/shortcodes/posts.php:35
2550
+ msgid "Posts per page"
2551
+ msgstr ""
2552
+
2553
+ #: includes/shortcodes/posts.php:36
2554
+ msgid "Specify number of posts that you want to show. Enter -1 to get all posts"
2555
+ msgstr ""
2556
+
2557
+ #: includes/shortcodes/posts.php:46
2558
+ msgid "Post types"
2559
+ msgstr ""
2560
+
2561
+ #: includes/shortcodes/posts.php:47
2562
+ msgid "Select post types. Hold Ctrl key to select multiple post types"
2563
+ msgstr ""
2564
+
2565
+ #: includes/shortcodes/posts.php:57
2566
+ msgid "Select taxonomy to show posts from"
2567
+ msgstr ""
2568
+
2569
+ #: includes/shortcodes/posts.php:67
2570
+ msgid "Terms"
2571
+ msgstr ""
2572
+
2573
+ #: includes/shortcodes/posts.php:68
2574
+ msgid "Select terms to show posts from"
2575
+ msgstr ""
2576
+
2577
+ #: includes/shortcodes/posts.php:73
2578
+ msgid "IN - posts that have any of selected categories terms"
2579
+ msgstr ""
2580
+
2581
+ #: includes/shortcodes/posts.php:77
2582
+ msgid "NOT IN - posts that is does not have any of selected terms"
2583
+ msgstr ""
2584
+
2585
+ #: includes/shortcodes/posts.php:81
2586
+ msgid "AND - posts that have all selected terms"
2587
+ msgstr ""
2588
+
2589
+ #: includes/shortcodes/posts.php:87
2590
+ msgid "Taxonomy term operator"
2591
+ msgstr ""
2592
+
2593
+ #: includes/shortcodes/posts.php:88
2594
+ msgid "Operator to test"
2595
+ msgstr ""
2596
+
2597
+ #: includes/shortcodes/posts.php:100
2598
+ msgid "Authors"
2599
+ msgstr ""
2600
+
2601
+ #: includes/shortcodes/posts.php:101
2602
+ msgid "Enter here comma-separated list of author's IDs. Example: 1,7,18"
2603
+ msgstr ""
2604
+
2605
+ #: includes/shortcodes/posts.php:108
2606
+ msgid "Meta key"
2607
+ msgstr ""
2608
+
2609
+ #: includes/shortcodes/posts.php:109
2610
+ msgid "Enter meta key name to show posts that have this key"
2611
+ msgstr ""
2612
+
2613
+ #: includes/shortcodes/posts.php:120
2614
+ msgid "Offset"
2615
+ msgstr ""
2616
+
2617
+ #: includes/shortcodes/posts.php:121
2618
+ msgid "Specify offset to start posts loop not from first post"
2619
+ msgstr ""
2620
+
2621
+ #: includes/shortcodes/posts.php:129
2622
+ msgid "Descending"
2623
+ msgstr ""
2624
+
2625
+ #: includes/shortcodes/posts.php:130
2626
+ msgid "Ascending"
2627
+ msgstr ""
2628
+
2629
+ #: includes/shortcodes/posts.php:133
2630
+ msgid "Order"
2631
+ msgstr ""
2632
+
2633
+ #: includes/shortcodes/posts.php:134
2634
+ msgid "Posts order"
2635
+ msgstr ""
2636
+
2637
+ #: includes/shortcodes/posts.php:143
2638
+ msgid "Post slug"
2639
+ msgstr ""
2640
+
2641
+ #: includes/shortcodes/posts.php:144
2642
+ msgid "Date"
2643
+ msgstr ""
2644
+
2645
+ #: includes/shortcodes/posts.php:145
2646
+ msgid "Last modified date"
2647
+ msgstr ""
2648
+
2649
+ #: includes/shortcodes/posts.php:147
2650
+ msgid "Random"
2651
+ msgstr ""
2652
+
2653
+ #: includes/shortcodes/posts.php:148
2654
+ msgid "Comments number"
2655
+ msgstr ""
2656
+
2657
+ #: includes/shortcodes/posts.php:150
2658
+ msgid "Meta key values"
2659
+ msgstr ""
2660
+
2661
+ #: includes/shortcodes/posts.php:153
2662
+ msgid "Order by"
2663
+ msgstr ""
2664
+
2665
+ #: includes/shortcodes/posts.php:154
2666
+ msgid "Order posts by"
2667
+ msgstr ""
2668
+
2669
+ #: includes/shortcodes/posts.php:159
2670
+ msgid "Show childrens of entered post (enter post ID)"
2671
+ msgstr ""
2672
+
2673
+ #: includes/shortcodes/posts.php:167
2674
+ msgid "Published"
2675
+ msgstr ""
2676
+
2677
+ #: includes/shortcodes/posts.php:168
2678
+ msgid "Pending"
2679
+ msgstr ""
2680
+
2681
+ #: includes/shortcodes/posts.php:169
2682
+ msgid "Draft"
2683
+ msgstr ""
2684
+
2685
+ #: includes/shortcodes/posts.php:170
2686
+ msgid "Auto-draft"
2687
+ msgstr ""
2688
+
2689
+ #: includes/shortcodes/posts.php:171
2690
+ msgid "Future post"
2691
+ msgstr ""
2692
+
2693
+ #: includes/shortcodes/posts.php:172
2694
+ msgid "Private post"
2695
+ msgstr ""
2696
+
2697
+ #: includes/shortcodes/posts.php:173
2698
+ msgid "Inherit"
2699
+ msgstr ""
2700
+
2701
+ #: includes/shortcodes/posts.php:174
2702
+ msgid "Trashed"
2703
+ msgstr ""
2704
+
2705
+ #: includes/shortcodes/posts.php:179
2706
+ msgid "Show only posts with selected status"
2707
+ msgstr ""
2708
+
2709
+ #: includes/shortcodes/posts.php:187
2710
+ msgid "Ignore sticky"
2711
+ msgstr ""
2712
+
2713
+ #: includes/shortcodes/posts.php:188
2714
+ msgid "Select Yes to ignore posts that is sticked"
2715
+ msgstr ""
2716
+
2717
+ #: includes/shortcodes/posts.php:194
2718
+ msgid "Custom posts query with customizable template"
2719
+ msgstr ""
2720
+
2721
+ #: includes/shortcodes/posts.php:231, includes/shortcodes/template.php:33
2722
+ msgid "invalid template name"
2723
+ msgstr ""
2724
+
2725
+ #: includes/shortcodes/posts.php:408
2726
+ msgid "template not found"
2727
+ msgstr ""
2728
+
2729
+ #: includes/shortcodes/private.php:7
2730
+ msgid "Private"
2731
+ msgstr ""
2732
+
2733
+ #: includes/shortcodes/private.php:18
2734
+ msgid "Private note text"
2735
+ msgstr ""
2736
+
2737
+ #: includes/shortcodes/private.php:19
2738
+ msgid "Private note for post authors. Any content wrapped with this shortcode will only be visible to post authors (users with publish_posts capability)."
2739
+ msgstr ""
2740
+
2741
+ #: includes/shortcodes/pullquote.php:7, includes/shortcodes/pullquote.php:27, includes/shortcodes/pullquote.php:28
2742
+ msgid "Pullquote"
2743
+ msgstr ""
2744
+
2745
+ #: includes/shortcodes/pullquote.php:18
2746
+ msgid "Pullquote alignment (float)"
2747
+ msgstr ""
2748
+
2749
+ #: includes/shortcodes/qrcode.php:8
2750
+ msgid "QR code"
2751
+ msgstr ""
2752
+
2753
+ #: includes/shortcodes/qrcode.php:15
2754
+ msgid "The text to store within the QR code. You can use here any text or even URL"
2755
+ msgstr ""
2756
+
2757
+ #: includes/shortcodes/qrcode.php:20
2758
+ msgid "Enter here short description. This text will be used in alt attribute of QR code"
2759
+ msgstr ""
2760
+
2761
+ #: includes/shortcodes/qrcode.php:29
2762
+ msgid "Image width and height (in pixels)"
2763
+ msgstr ""
2764
+
2765
+ #: includes/shortcodes/qrcode.php:38
2766
+ msgid "Thickness of a margin (in pixels)"
2767
+ msgstr ""
2768
+
2769
+ #: includes/shortcodes/qrcode.php:50
2770
+ msgid "Choose image alignment"
2771
+ msgstr ""
2772
+
2773
+ #: includes/shortcodes/qrcode.php:55
2774
+ msgid "You can make this QR code clickable. Enter here the URL"
2775
+ msgstr ""
2776
+
2777
+ #: includes/shortcodes/qrcode.php:65
2778
+ msgid "Select link target"
2779
+ msgstr ""
2780
+
2781
+ #: includes/shortcodes/qrcode.php:70
2782
+ msgid "Primary color"
2783
+ msgstr ""
2784
+
2785
+ #: includes/shortcodes/qrcode.php:71
2786
+ msgid "Pick a primary color"
2787
+ msgstr ""
2788
+
2789
+ #: includes/shortcodes/qrcode.php:86
2790
+ msgid "Advanced QR code generator"
2791
+ msgstr ""
2792
+
2793
+ #: includes/shortcodes/qrcode.php:110
2794
+ msgid "please specify the data"
2795
+ msgstr ""
2796
+
2797
+ #: includes/shortcodes/quote.php:7, includes/shortcodes/quote.php:38
2798
+ msgid "Quote"
2799
+ msgstr ""
2800
+
2801
+ #: includes/shortcodes/quote.php:18
2802
+ msgid "Choose style for this quote"
2803
+ msgstr ""
2804
+
2805
+ #: includes/shortcodes/quote.php:22
2806
+ msgid "Cite"
2807
+ msgstr ""
2808
+
2809
+ #: includes/shortcodes/quote.php:23
2810
+ msgid "Quote author name"
2811
+ msgstr ""
2812
+
2813
+ #: includes/shortcodes/quote.php:28
2814
+ msgid "Cite url"
2815
+ msgstr ""
2816
+
2817
+ #: includes/shortcodes/quote.php:29
2818
+ msgid "Url of the quote author. Leave empty to disable link"
2819
+ msgstr ""
2820
+
2821
+ #: includes/shortcodes/quote.php:39
2822
+ msgid "Blockquote alternative"
2823
+ msgstr ""
2824
+
2825
+ #: includes/shortcodes/row.php:24
2826
+ msgid "Row for flexible columns"
2827
+ msgstr ""
2828
+
2829
+ #: includes/shortcodes/scheduler.php:7
2830
+ msgid "Scheduler"
2831
+ msgstr ""
2832
+
2833
+ #: includes/shortcodes/scheduler.php:13
2834
+ msgid "Time"
2835
+ msgstr ""
2836
+
2837
+ #: includes/shortcodes/scheduler.php:14
2838
+ msgid "In this field you can specify one or more time ranges. Every day at this time the content of shortcode will be visible. %s %s %s - show content from 9:00 to 18:00 %s - show content from 9:00 to 13:00 and from 14:00 to 18:00 %s - example with minutes (content will be visible each day, 45 minutes) %s - example with seconds"
2839
+ msgstr ""
2840
+
2841
+ #: includes/shortcodes/scheduler.php:14, includes/shortcodes/scheduler.php:19, includes/shortcodes/scheduler.php:24, includes/shortcodes/scheduler.php:29, includes/shortcodes/scheduler.php:34
2842
+ msgid "Examples (click to set)"
2843
+ msgstr ""
2844
+
2845
+ #: includes/shortcodes/scheduler.php:18
2846
+ msgid "Days of the week"
2847
+ msgstr ""
2848
+
2849
+ #: includes/shortcodes/scheduler.php:19
2850
+ msgid "In this field you can specify one or more days of the week. Every week at these days the content of shortcode will be visible. %s 0 - Sunday %s 1 - Monday %s 2 - Tuesday %s 3 - Wednesday %s 4 - Thursday %s 5 - Friday %s 6 - Saturday %s %s %s - show content from Monday to Friday %s - show content only at Sunday %s - show content at Sunday and from Wednesday to Friday"
2851
+ msgstr ""
2852
+
2853
+ #: includes/shortcodes/scheduler.php:23
2854
+ msgid "Days of the month"
2855
+ msgstr ""
2856
+
2857
+ #: includes/shortcodes/scheduler.php:24
2858
+ msgid "In this field you can specify one or more days of the month. Every month at these days the content of shortcode will be visible. %s %s %s - show content only at first day of month %s - show content from 1th to 5th %s - show content from 10th to 15th and from 20th to 25th"
2859
+ msgstr ""
2860
+
2861
+ #: includes/shortcodes/scheduler.php:28
2862
+ msgid "Months"
2863
+ msgstr ""
2864
+
2865
+ #: includes/shortcodes/scheduler.php:29
2866
+ msgid "In this field you can specify the month or months in which the content will be visible. %s %s %s - show content only in January %s - show content from February to June %s - show content in January, March and from May to July"
2867
+ msgstr ""
2868
+
2869
+ #: includes/shortcodes/scheduler.php:33
2870
+ msgid "Years"
2871
+ msgstr ""
2872
+
2873
+ #: includes/shortcodes/scheduler.php:34
2874
+ msgid "In this field you can specify the year or years in which the content will be visible. %s %s %s - show content only in 2014 %s - show content from 2014 to 2016 %s - show content in 2014, 2018 and from 2020 to 2022"
2875
+ msgstr ""
2876
+
2877
+ #: includes/shortcodes/scheduler.php:38
2878
+ msgid "Alternative text"
2879
+ msgstr ""
2880
+
2881
+ #: includes/shortcodes/scheduler.php:39
2882
+ msgid "In this field you can type the text which will be shown if content is not visible at the current moment"
2883
+ msgstr ""
2884
+
2885
+ #: includes/shortcodes/scheduler.php:42
2886
+ msgid "Scheduled content"
2887
+ msgstr ""
2888
+
2889
+ #: includes/shortcodes/scheduler.php:43
2890
+ msgid "Allows to show the content only at the specified time period"
2891
+ msgstr ""
2892
+
2893
+ #: includes/shortcodes/scheduler.php:44
2894
+ msgid "This shortcode allows you to show content only at the specified time."
2895
+ msgstr ""
2896
+
2897
+ #: includes/shortcodes/scheduler.php:44
2898
+ msgid "Please pay special attention to the descriptions, which are located below each text field. It will save you a lot of time"
2899
+ msgstr ""
2900
+
2901
+ #: includes/shortcodes/scheduler.php:44
2902
+ msgid "By default, the content of this shortcode will be visible all the time. By using fields below, you can add some limitations. For example, if you type 1-5 in the Days of the week field, content will be only shown from Monday to Friday. Using the same principles, you can limit content visibility from years to seconds."
2903
+ msgstr ""
2904
+
2905
+ #: includes/shortcodes/screenr.php:9
2906
+ msgid "Screenr"
2907
+ msgstr ""
2908
+
2909
+ #: includes/shortcodes/service.php:8
2910
+ msgid "Service"
2911
+ msgstr ""
2912
+
2913
+ #: includes/shortcodes/service.php:14, includes/shortcodes/service.php:56
2914
+ msgid "Service title"
2915
+ msgstr ""
2916
+
2917
+ #: includes/shortcodes/service.php:16
2918
+ msgid "Service name"
2919
+ msgstr ""
2920
+
2921
+ #: includes/shortcodes/service.php:22
2922
+ msgid "You can upload custom icon for this box"
2923
+ msgstr ""
2924
+
2925
+ #: includes/shortcodes/service.php:36
2926
+ msgid "Icon size"
2927
+ msgstr ""
2928
+
2929
+ #: includes/shortcodes/service.php:37
2930
+ msgid "Size of the uploaded icon in pixels"
2931
+ msgstr ""
2932
+
2933
+ #: includes/shortcodes/service.php:46
2934
+ msgid "Service description"
2935
+ msgstr ""
2936
+
2937
+ #: includes/shortcodes/service.php:47
2938
+ msgid "Service box with title"
2939
+ msgstr ""
2940
+
2941
+ #: includes/shortcodes/siblings.php:7
2942
+ msgid "Siblings"
2943
+ msgstr ""
2944
+
2945
+ #: includes/shortcodes/siblings.php:14, includes/shortcodes/subpages.php:14
2946
+ msgid "Depth"
2947
+ msgstr ""
2948
+
2949
+ #: includes/shortcodes/siblings.php:15
2950
+ msgid "Max depth level"
2951
+ msgstr ""
2952
+
2953
+ #: includes/shortcodes/siblings.php:24
2954
+ msgid "List of cureent page siblings"
2955
+ msgstr ""
2956
+
2957
+ #: includes/shortcodes/slider.php:7
2958
+ msgid "Slider"
2959
+ msgstr ""
2960
+
2961
+ #: includes/shortcodes/slider.php:61
2962
+ msgid "Slider width (in pixels)"
2963
+ msgstr ""
2964
+
2965
+ #: includes/shortcodes/slider.php:69
2966
+ msgid "Slider height (in pixels)"
2967
+ msgstr ""
2968
+
2969
+ #: includes/shortcodes/slider.php:75
2970
+ msgid "Ignore width and height parameters and make slider responsive"
2971
+ msgstr ""
2972
+
2973
+ #: includes/shortcodes/slider.php:80
2974
+ msgid "Display slide titles"
2975
+ msgstr ""
2976
+
2977
+ #: includes/shortcodes/slider.php:85
2978
+ msgid "Is slider centered on the page"
2979
+ msgstr ""
2980
+
2981
+ #: includes/shortcodes/slider.php:101
2982
+ msgid "Allow to change slides with mouse wheel"
2983
+ msgstr ""
2984
+
2985
+ #: includes/shortcodes/slider.php:110
2986
+ msgid "Choose interval between slide animations. Set to 0 to disable autoplay"
2987
+ msgstr ""
2988
+
2989
+ #: includes/shortcodes/slider.php:127
2990
+ msgid "Customizable image slider"
2991
+ msgstr ""
2992
+
2993
+ #: includes/shortcodes/spacer.php:7
2994
+ msgid "Spacer"
2995
+ msgstr ""
2996
+
2997
+ #: includes/shortcodes/spacer.php:18
2998
+ msgid "Height of the spacer in pixels"
2999
+ msgstr ""
3000
+
3001
+ #: includes/shortcodes/spacer.php:27
3002
+ msgid "Empty space with adjustable height"
3003
+ msgstr ""
3004
+
3005
+ #: includes/shortcodes/spoiler.php:7
3006
+ msgid "Spoiler"
3007
+ msgstr ""
3008
+
3009
+ #: includes/shortcodes/spoiler.php:12, includes/shortcodes/spoiler.php:78
3010
+ msgid "Spoiler title"
3011
+ msgstr ""
3012
+
3013
+ #: includes/shortcodes/spoiler.php:14
3014
+ msgid "Text in spoiler title"
3015
+ msgstr ""
3016
+
3017
+ #: includes/shortcodes/spoiler.php:19
3018
+ msgid "Open"
3019
+ msgstr ""
3020
+
3021
+ #: includes/shortcodes/spoiler.php:20
3022
+ msgid "Is spoiler content visible by default"
3023
+ msgstr ""
3024
+
3025
+ #: includes/shortcodes/spoiler.php:26
3026
+ msgid "Fancy"
3027
+ msgstr ""
3028
+
3029
+ #: includes/shortcodes/spoiler.php:31
3030
+ msgid "Choose style for this spoiler"
3031
+ msgstr ""
3032
+
3033
+ #: includes/shortcodes/spoiler.php:36
3034
+ msgid "Plus"
3035
+ msgstr ""
3036
+
3037
+ #: includes/shortcodes/spoiler.php:37
3038
+ msgid "Plus circle"
3039
+ msgstr ""
3040
+
3041
+ #: includes/shortcodes/spoiler.php:38
3042
+ msgid "Plus square 1"
3043
+ msgstr ""
3044
+
3045
+ #: includes/shortcodes/spoiler.php:39
3046
+ msgid "Plus square 2"
3047
+ msgstr ""
3048
+
3049
+ #: includes/shortcodes/spoiler.php:40
3050
+ msgid "Arrow"
3051
+ msgstr ""
3052
+
3053
+ #: includes/shortcodes/spoiler.php:41
3054
+ msgid "Arrow circle 1"
3055
+ msgstr ""
3056
+
3057
+ #: includes/shortcodes/spoiler.php:42
3058
+ msgid "Arrow circle 2"
3059
+ msgstr ""
3060
+
3061
+ #: includes/shortcodes/spoiler.php:43
3062
+ msgid "Chevron"
3063
+ msgstr ""
3064
+
3065
+ #: includes/shortcodes/spoiler.php:44
3066
+ msgid "Chevron circle"
3067
+ msgstr ""
3068
+
3069
+ #: includes/shortcodes/spoiler.php:45
3070
+ msgid "Caret"
3071
+ msgstr ""
3072
+
3073
+ #: includes/shortcodes/spoiler.php:46
3074
+ msgid "Caret square"
3075
+ msgstr ""
3076
+
3077
+ #: includes/shortcodes/spoiler.php:47
3078
+ msgid "Folder 1"
3079
+ msgstr ""
3080
+
3081
+ #: includes/shortcodes/spoiler.php:48
3082
+ msgid "Folder 2"
3083
+ msgstr ""
3084
+
3085
+ #: includes/shortcodes/spoiler.php:52
3086
+ msgid "Icons for spoiler"
3087
+ msgstr ""
3088
+
3089
+ #: includes/shortcodes/spoiler.php:56, includes/shortcodes/tabs.php:91
3090
+ msgid "Anchor"
3091
+ msgstr ""
3092
+
3093
+ #: includes/shortcodes/spoiler.php:57
3094
+ msgid "You can use unique anchor for this spoiler to access it with hash in page url. For example: type here <b%value>Hello</b> and then use url like http://example.com/page-url#Hello. This spoiler will be open and scrolled in"
3095
+ msgstr ""
3096
+
3097
+ #: includes/shortcodes/spoiler.php:66
3098
+ msgid "Hidden content"
3099
+ msgstr ""
3100
+
3101
+ #: includes/shortcodes/spoiler.php:67
3102
+ msgid "Spoiler with hidden content"
3103
+ msgstr ""
3104
+
3105
+ #: includes/shortcodes/subpages.php:7
3106
+ msgid "Sub pages"
3107
+ msgstr ""
3108
+
3109
+ #: includes/shortcodes/subpages.php:15
3110
+ msgid "Max depth level of children pages"
3111
+ msgstr ""
3112
+
3113
+ #: includes/shortcodes/subpages.php:20
3114
+ msgid "Parent ID"
3115
+ msgstr ""
3116
+
3117
+ #: includes/shortcodes/subpages.php:21
3118
+ msgid "ID of the parent page. Leave blank to use current page"
3119
+ msgstr ""
3120
+
3121
+ #: includes/shortcodes/subpages.php:30
3122
+ msgid "List of sub pages"
3123
+ msgstr ""
3124
+
3125
+ #: includes/shortcodes/table.php:8
3126
+ msgid "Table"
3127
+ msgstr ""
3128
+
3129
+ #: includes/shortcodes/table.php:9
3130
+ msgid "Styled table"
3131
+ msgstr ""
3132
+
3133
+ #: includes/shortcodes/table.php:39
3134
+ msgid ""
3135
+ "<table>\n"
3136
+ "<tr>\n"
3137
+ " <td>Table</td>\n"
3138
+ " <td>Table</td>\n"
3139
+ "</tr>\n"
3140
+ "<tr>\n"
3141
+ " <td>Table</td>\n"
3142
+ " <td>Table</td>\n"
3143
+ "</tr>\n"
3144
+ "</table>"
3145
+ msgstr ""
3146
+
3147
+ #: includes/shortcodes/tabs.php:7
3148
+ msgid "Tabs"
3149
+ msgstr ""
3150
+
3151
+ #: includes/shortcodes/tabs.php:11
3152
+ msgid "Tabs container"
3153
+ msgstr ""
3154
+
3155
+ #: includes/shortcodes/tabs.php:22
3156
+ msgid "Choose style for this tabs"
3157
+ msgstr ""
3158
+
3159
+ #: includes/shortcodes/tabs.php:30
3160
+ msgid "Active tab"
3161
+ msgstr ""
3162
+
3163
+ #: includes/shortcodes/tabs.php:31
3164
+ msgid "Select which tab is open by default"
3165
+ msgstr ""
3166
+
3167
+ #: includes/shortcodes/tabs.php:36
3168
+ msgid "Vertical"
3169
+ msgstr ""
3170
+
3171
+ #: includes/shortcodes/tabs.php:37
3172
+ msgid "Align tabs vertically"
3173
+ msgstr ""
3174
+
3175
+ #: includes/shortcodes/tabs.php:42
3176
+ msgid "Stack – tab handles will stack vertically"
3177
+ msgstr ""
3178
+
3179
+ #: includes/shortcodes/tabs.php:43
3180
+ msgid "Desktop – tabs will be displayed as on the desktop"
3181
+ msgstr ""
3182
+
3183
+ #: includes/shortcodes/tabs.php:44
3184
+ msgid "Scroll – tab bar will be scrollable horizontally"
3185
+ msgstr ""
3186
+
3187
+ #: includes/shortcodes/tabs.php:47
3188
+ msgid "Appearance on mobile devices"
3189
+ msgstr ""
3190
+
3191
+ #: includes/shortcodes/tabs.php:48
3192
+ msgid "This option controls how shortcode will look and function on mobile devices."
3193
+ msgstr ""
3194
+
3195
+ #: includes/shortcodes/tabs.php:68
3196
+ msgid "Tab"
3197
+ msgstr ""
3198
+
3199
+ #: includes/shortcodes/tabs.php:72
3200
+ msgid "Tab content"
3201
+ msgstr ""
3202
+
3203
+ #: includes/shortcodes/tabs.php:73
3204
+ msgid "Single tab"
3205
+ msgstr ""
3206
+
3207
+ #: includes/shortcodes/tabs.php:74
3208
+ msgid "Did you know that you need to wrap single tabs with [tabs] shortcode?"
3209
+ msgstr ""
3210
+
3211
+ #: includes/shortcodes/tabs.php:79
3212
+ msgid "Tab name"
3213
+ msgstr ""
3214
+
3215
+ #: includes/shortcodes/tabs.php:81, includes/shortcodes/tabs.php:189
3216
+ msgid "Tab title"
3217
+ msgstr ""
3218
+
3219
+ #: includes/shortcodes/tabs.php:86
3220
+ msgid "Disabled"
3221
+ msgstr ""
3222
+
3223
+ #: includes/shortcodes/tabs.php:87
3224
+ msgid "Is this tab disabled"
3225
+ msgstr ""
3226
+
3227
+ #: includes/shortcodes/tabs.php:92
3228
+ msgid "You can use unique anchor for this tab to access it with hash in page url. For example: use <b%value>Hello</b> and then navigate to url like http://example.com/page-url#Hello. This tab will be activated and scrolled in"
3229
+ msgstr ""
3230
+
3231
+ #: includes/shortcodes/tabs.php:96, includes/shortcodes/user.php:19
3232
+ msgid "URL"
3233
+ msgstr ""
3234
+
3235
+ #: includes/shortcodes/tabs.php:97
3236
+ msgid "Link tab to any webpage. Use full URL to turn the tab title into link"
3237
+ msgstr ""
3238
+
3239
+ #: includes/shortcodes/tabs.php:107
3240
+ msgid "Choose how to open the custom tab link"
3241
+ msgstr ""
3242
+
3243
+ #: includes/shortcodes/template.php:14
3244
+ msgid "Template name"
3245
+ msgstr ""
3246
+
3247
+ #. translators: %1$s, %2$s, %3$s – example values for the shortcode attribute
3248
+ #: includes/shortcodes/template.php:16
3249
+ msgid "Use template file name (with optional .php extension). If you need to use templates from theme sub-folder, use relative path. Example values: %1$s, %2$s, %3$s"
3250
+ msgstr ""
3251
+
3252
+ #: includes/shortcodes/template.php:19
3253
+ msgid "Theme template"
3254
+ msgstr ""
3255
+
3256
+ #: includes/shortcodes/template.php:29
3257
+ msgid "please specify template name"
3258
+ msgstr ""
3259
+
3260
+ #: includes/shortcodes/tooltip.php:7
3261
+ msgid "Tooltip"
3262
+ msgstr ""
3263
+
3264
+ #: includes/shortcodes/tooltip.php:14
3265
+ msgid "Basic: Light"
3266
+ msgstr ""
3267
+
3268
+ #: includes/shortcodes/tooltip.php:15
3269
+ msgid "Basic: Dark"
3270
+ msgstr ""
3271
+
3272
+ #: includes/shortcodes/tooltip.php:16
3273
+ msgid "Basic: Yellow"
3274
+ msgstr ""
3275
+
3276
+ #: includes/shortcodes/tooltip.php:17
3277
+ msgid "Basic: Green"
3278
+ msgstr ""
3279
+
3280
+ #: includes/shortcodes/tooltip.php:18
3281
+ msgid "Basic: Red"
3282
+ msgstr ""
3283
+
3284
+ #: includes/shortcodes/tooltip.php:19
3285
+ msgid "Basic: Blue"
3286
+ msgstr ""
3287
+
3288
+ #: includes/shortcodes/tooltip.php:20
3289
+ msgid "Youtube"
3290
+ msgstr ""
3291
+
3292
+ #: includes/shortcodes/tooltip.php:21
3293
+ msgid "Tipsy"
3294
+ msgstr ""
3295
+
3296
+ #: includes/shortcodes/tooltip.php:22
3297
+ msgid "Bootstrap"
3298
+ msgstr ""
3299
+
3300
+ #: includes/shortcodes/tooltip.php:23
3301
+ msgid "jTools"
3302
+ msgstr ""
3303
+
3304
+ #: includes/shortcodes/tooltip.php:24
3305
+ msgid "Tipped"
3306
+ msgstr ""
3307
+
3308
+ #: includes/shortcodes/tooltip.php:25
3309
+ msgid "Cluetip"
3310
+ msgstr ""
3311
+
3312
+ #: includes/shortcodes/tooltip.php:29
3313
+ msgid "Tooltip window style"
3314
+ msgstr ""
3315
+
3316
+ #: includes/shortcodes/tooltip.php:34
3317
+ msgid "Top"
3318
+ msgstr ""
3319
+
3320
+ #: includes/shortcodes/tooltip.php:35
3321
+ msgid "Bottom"
3322
+ msgstr ""
3323
+
3324
+ #: includes/shortcodes/tooltip.php:40
3325
+ msgid "Position"
3326
+ msgstr ""
3327
+
3328
+ #: includes/shortcodes/tooltip.php:41
3329
+ msgid "Tooltip position"
3330
+ msgstr ""
3331
+
3332
+ #: includes/shortcodes/tooltip.php:47
3333
+ msgid "Add shadow to tooltip. This option is only works with basic styes, e.g. blue, green etc."
3334
+ msgstr ""
3335
+
3336
+ #: includes/shortcodes/tooltip.php:52
3337
+ msgid "Rounded corners"
3338
+ msgstr ""
3339
+
3340
+ #: includes/shortcodes/tooltip.php:53
3341
+ msgid "Use rounded for tooltip. This option is only works with basic styes, e.g. blue, green etc."
3342
+ msgstr ""
3343
+
3344
+ #: includes/shortcodes/tooltip.php:67
3345
+ msgid "Font size"
3346
+ msgstr ""
3347
+
3348
+ #: includes/shortcodes/tooltip.php:68
3349
+ msgid "Tooltip font size"
3350
+ msgstr ""
3351
+
3352
+ #: includes/shortcodes/tooltip.php:72
3353
+ msgid "Tooltip title"
3354
+ msgstr ""
3355
+
3356
+ #: includes/shortcodes/tooltip.php:73
3357
+ msgid "Enter title for tooltip window. Leave this field empty to hide the title"
3358
+ msgstr ""
3359
+
3360
+ #: includes/shortcodes/tooltip.php:76, includes/shortcodes/tooltip.php:118
3361
+ msgid "Tooltip text"
3362
+ msgstr ""
3363
+
3364
+ #: includes/shortcodes/tooltip.php:77
3365
+ msgid "Tooltip content"
3366
+ msgstr ""
3367
+
3368
+ #: includes/shortcodes/tooltip.php:78
3369
+ msgid "Enter tooltip content here"
3370
+ msgstr ""
3371
+
3372
+ #: includes/shortcodes/tooltip.php:83
3373
+ msgid "Show and hide on mouse hover"
3374
+ msgstr ""
3375
+
3376
+ #: includes/shortcodes/tooltip.php:84
3377
+ msgid "Show and hide by mouse click"
3378
+ msgstr ""
3379
+
3380
+ #: includes/shortcodes/tooltip.php:85
3381
+ msgid "Always visible"
3382
+ msgstr ""
3383
+
3384
+ #: includes/shortcodes/tooltip.php:88
3385
+ msgid "Behavior"
3386
+ msgstr ""
3387
+
3388
+ #: includes/shortcodes/tooltip.php:89
3389
+ msgid "Select tooltip behavior"
3390
+ msgstr ""
3391
+
3392
+ #: includes/shortcodes/tooltip.php:94
3393
+ msgid "Close button"
3394
+ msgstr ""
3395
+
3396
+ #: includes/shortcodes/tooltip.php:95
3397
+ msgid "Show close button"
3398
+ msgstr ""
3399
+
3400
+ #: includes/shortcodes/tooltip.php:104
3401
+ msgid "Hover me to open tooltip"
3402
+ msgstr ""
3403
+
3404
+ #: includes/shortcodes/tooltip.php:105
3405
+ msgid "Tooltip window with custom content"
3406
+ msgstr ""
3407
+
3408
+ #: includes/shortcodes/user.php:7, includes/shortcodes/user.php:54
3409
+ msgid "User data"
3410
+ msgstr ""
3411
+
3412
+ #: includes/shortcodes/user.php:14
3413
+ msgid "Display name"
3414
+ msgstr ""
3415
+
3416
+ #: includes/shortcodes/user.php:16
3417
+ msgid "Login"
3418
+ msgstr ""
3419
+
3420
+ #: includes/shortcodes/user.php:17
3421
+ msgid "Nice name"
3422
+ msgstr ""
3423
+
3424
+ #: includes/shortcodes/user.php:18
3425
+ msgid "Email"
3426
+ msgstr ""
3427
+
3428
+ #: includes/shortcodes/user.php:20
3429
+ msgid "Registered"
3430
+ msgstr ""
3431
+
3432
+ #: includes/shortcodes/user.php:21
3433
+ msgid "Activation key"
3434
+ msgstr ""
3435
+
3436
+ #: includes/shortcodes/user.php:22
3437
+ msgid "Status"
3438
+ msgstr ""
3439
+
3440
+ #: includes/shortcodes/user.php:26
3441
+ msgid "User data field name"
3442
+ msgstr ""
3443
+
3444
+ #: includes/shortcodes/user.php:45
3445
+ msgid "User ID"
3446
+ msgstr ""
3447
+
3448
+ #: includes/shortcodes/user.php:46
3449
+ msgid "You can specify custom user ID. Leave this field empty to use an ID of the current user"
3450
+ msgstr ""
3451
+
3452
+ #: includes/shortcodes/user.php:68
3453
+ msgid "password field is not allowed"
3454
+ msgstr ""
3455
+
3456
+ #: includes/shortcodes/user.php:72
3457
+ msgid "user ID is incorrect"
3458
+ msgstr ""
3459
+
3460
+ #: includes/shortcodes/video.php:7
3461
+ msgid "Video"
3462
+ msgstr ""
3463
+
3464
+ #: includes/shortcodes/video.php:15
3465
+ msgid "Url to mp4/flv video-file"
3466
+ msgstr ""
3467
+
3468
+ #: includes/shortcodes/video.php:20
3469
+ msgid "Poster"
3470
+ msgstr ""
3471
+
3472
+ #: includes/shortcodes/video.php:21
3473
+ msgid "Url to poster image, that will be shown before playback"
3474
+ msgstr ""
3475
+
3476
+ #: includes/shortcodes/video.php:27
3477
+ msgid "Player title"
3478
+ msgstr ""
3479
+
3480
+ #: includes/shortcodes/video.php:50, includes/shortcodes/youtube-advanced.php:55
3481
+ msgid "Controls"
3482
+ msgstr ""
3483
+
3484
+ #: includes/shortcodes/video.php:51
3485
+ msgid "Show player controls (play/pause etc.) or not"
3486
+ msgstr ""
3487
+
3488
+ #: includes/shortcodes/video.php:72
3489
+ msgid "Custom video player"
3490
+ msgstr ""
3491
+
3492
+ #: includes/shortcodes/vimeo.php:8
3493
+ msgid "Vimeo"
3494
+ msgstr ""
3495
+
3496
+ #: includes/shortcodes/vimeo.php:15
3497
+ msgid "Url of Vimeo page with video"
3498
+ msgstr ""
3499
+
3500
+ #: includes/shortcodes/vimeo.php:45, includes/shortcodes/youtube-advanced.php:73, includes/shortcodes/youtube.php:45
3501
+ msgid "This parameter specifies whether the video will automatically start to play when the player loads. Please note, in modern browsers autoplay option only works with the mute option enabled"
3502
+ msgstr ""
3503
+
3504
+ #: includes/shortcodes/vimeo.php:50, includes/shortcodes/youtube-advanced.php:78, includes/shortcodes/youtube.php:50
3505
+ msgid "Mute"
3506
+ msgstr ""
3507
+
3508
+ #: includes/shortcodes/vimeo.php:51, includes/shortcodes/youtube-advanced.php:79, includes/shortcodes/youtube.php:51
3509
+ msgid "Mute the player"
3510
+ msgstr ""
3511
+
3512
+ #: includes/shortcodes/vimeo.php:56
3513
+ msgid "Do not track"
3514
+ msgstr ""
3515
+
3516
+ #: includes/shortcodes/vimeo.php:57
3517
+ msgid "Setting this parameter to YES will block the player from tracking any playback session data. Will have the same effect as enabling a Do Not Track header in your browser"
3518
+ msgstr ""
3519
+
3520
+ #: includes/shortcodes/vimeo.php:65
3521
+ msgid "Subtitles"
3522
+ msgstr ""
3523
+
3524
+ #: includes/shortcodes/vimeo.php:66
3525
+ msgid "Use language code as the value to enable subtitles. Example values: en, es"
3526
+ msgstr ""
3527
+
3528
+ #: includes/shortcodes/vimeo.php:76
3529
+ msgid "Vimeo video"
3530
+ msgstr ""
3531
+
3532
+ #: includes/shortcodes/youtube-advanced.php:8
3533
+ msgid "YouTube advanced"
3534
+ msgstr ""
3535
+
3536
+ #: includes/shortcodes/youtube-advanced.php:16, includes/shortcodes/youtube.php:15
3537
+ msgid "Url of YouTube page with video. Ex: http://youtube.com/watch?v=XXXXXX"
3538
+ msgstr ""
3539
+
3540
+ #: includes/shortcodes/youtube-advanced.php:20
3541
+ msgid "Playlist"
3542
+ msgstr ""
3543
+
3544
+ #: includes/shortcodes/youtube-advanced.php:21
3545
+ msgid "Value is a comma-separated list of video IDs to play. If you specify a value, the first video that plays will be the VIDEO_ID specified in the URL path, and the videos specified in the playlist parameter will play thereafter"
3546
+ msgstr ""
3547
+
3548
+ #: includes/shortcodes/youtube-advanced.php:50
3549
+ msgid "0 - Hide controls"
3550
+ msgstr ""
3551
+
3552
+ #: includes/shortcodes/youtube-advanced.php:51
3553
+ msgid "1 - Show controls"
3554
+ msgstr ""
3555
+
3556
+ #: includes/shortcodes/youtube-advanced.php:52
3557
+ msgid "2 - Show controls when playback is started"
3558
+ msgstr ""
3559
+
3560
+ #: includes/shortcodes/youtube-advanced.php:56
3561
+ msgid "This parameter indicates whether the video player controls will display"
3562
+ msgstr ""
3563
+
3564
+ #: includes/shortcodes/youtube-advanced.php:61
3565
+ msgid "0 - Do not hide controls"
3566
+ msgstr ""
3567
+
3568
+ #: includes/shortcodes/youtube-advanced.php:62
3569
+ msgid "1 - Hide all controls on mouse out"
3570
+ msgstr ""
3571
+
3572
+ #: includes/shortcodes/youtube-advanced.php:63
3573
+ msgid "2 - Hide progress bar on mouse out"
3574
+ msgstr ""
3575
+
3576
+ #: includes/shortcodes/youtube-advanced.php:66
3577
+ msgid "Autohide"
3578
+ msgstr ""
3579
+
3580
+ #: includes/shortcodes/youtube-advanced.php:67
3581
+ msgid "This parameter indicates whether the video controls will automatically hide after a video begins playing"
3582
+ msgstr ""
3583
+
3584
+ #: includes/shortcodes/youtube-advanced.php:85
3585
+ msgid "Setting of YES will cause the player to play the initial video again and again"
3586
+ msgstr ""
3587
+
3588
+ #: includes/shortcodes/youtube-advanced.php:90
3589
+ msgid "Display related videos from the same channel"
3590
+ msgstr ""
3591
+
3592
+ #: includes/shortcodes/youtube-advanced.php:91
3593
+ msgid "If this parameter is set to YES, related videos will come from the same channel as the video that was just played."
3594
+ msgstr ""
3595
+
3596
+ #: includes/shortcodes/youtube-advanced.php:96
3597
+ msgid "Show full-screen button"
3598
+ msgstr ""
3599
+
3600
+ #: includes/shortcodes/youtube-advanced.php:97
3601
+ msgid "Setting this parameter to NO prevents the fullscreen button from displaying"
3602
+ msgstr ""
3603
+
3604
+ #: includes/shortcodes/youtube-advanced.php:103
3605
+ msgid "This parameter lets you use a YouTube player that does not show a YouTube logo. Set the parameter value to YES to prevent the YouTube logo from displaying in the control bar. Note that a small YouTube text label will still display in the upper-right corner of a paused video when the user's mouse pointer hovers over the player"
3606
+ msgstr ""
3607
+
3608
+ #: includes/shortcodes/youtube-advanced.php:108
3609
+ msgid "Dark theme"
3610
+ msgstr ""
3611
+
3612
+ #: includes/shortcodes/youtube-advanced.php:109
3613
+ msgid "Light theme"
3614
+ msgstr ""
3615
+
3616
+ #: includes/shortcodes/youtube-advanced.php:113
3617
+ msgid "This parameter indicates whether the embedded player will display player controls (like a play button or volume control) within a dark or light control bar"
3618
+ msgstr ""
3619
+
3620
+ #: includes/shortcodes/youtube-advanced.php:117
3621
+ msgid "WMode"
3622
+ msgstr ""
3623
+
3624
+ #. translators: %1$s, %2$s - example values for shortcode attribute
3625
+ #: includes/shortcodes/youtube-advanced.php:119
3626
+ msgid "Here you can specify wmode value for the embed URL.<br>Example values: %1$s, %2$s"
3627
+ msgstr ""
3628
+
3629
+ #: includes/shortcodes/youtube-advanced.php:124
3630
+ msgid "Plays inline"
3631
+ msgstr ""
3632
+
3633
+ #: includes/shortcodes/youtube-advanced.php:125
3634
+ msgid "This parameter controls whether videos play inline or fullscreen in an HTML5 player on iOS"
3635
+ msgstr ""
3636
+
3637
+ #: includes/shortcodes/youtube-advanced.php:139
3638
+ msgid "YouTube video player with advanced settings"
3639
+ msgstr ""
3640
+
3641
+ #: includes/shortcodes/youtube.php:8
3642
+ msgid "YouTube"
3643
+ msgstr ""
3644
+
3645
+ #: includes/shortcodes/youtube.php:65
3646
+ msgid "YouTube video"
3647
+ msgstr ""
3648
+
3649
+ #: admin/partials/extra/available-shortcodes.php:4, admin/partials/extra/generator.php:11
3650
+ msgid "This shortcode is available with the Extra Shortcodes add-on"
3651
+ msgstr ""
3652
+
3653
+ #: admin/partials/extra/available-shortcodes.php:7, admin/partials/extra/generator.php:15
3654
+ msgid "This add-on extends Shortcodes Ultimate with 15 new shortcodes. Parallax sections, responsive content slider, pricing tables and more"
3655
+ msgstr ""
3656
+
3657
+ #: admin/partials/extra/available-shortcodes.php:9, admin/partials/extra/generator.php:17
3658
+ msgid "Details & Pricing"
3659
+ msgstr ""
3660
+
3661
+ #: admin/partials/help/addons.php:4
3662
+ msgid "How to install add-on"
3663
+ msgstr ""
3664
+
3665
+ #: admin/partials/help/addons.php:5
3666
+ msgid "How to get updates"
3667
+ msgstr ""
3668
+
3669
+ #: admin/partials/help/addons.php:6
3670
+ msgid "How to activate license key"
3671
+ msgstr ""
3672
+
3673
+ #: admin/partials/help/addons.php:7
3674
+ msgid "Full add-ons documentation"
3675
+ msgstr ""
3676
+
3677
+ #: admin/partials/help/settings.php:4, admin/partials/help/shortcodes.php:4
3678
+ msgid "Getting started"
3679
+ msgstr ""
3680
+
3681
+ #: admin/partials/help/settings.php:5
3682
+ msgid "Plugin settings overview"
3683
+ msgstr ""
3684
+
3685
+ #: admin/partials/help/settings.php:6, admin/partials/settings/fields/css.php:62
3686
+ msgid "How to use Custom CSS editor"
3687
+ msgstr ""
3688
+
3689
+ #: admin/partials/help/shortcodes.php:5
3690
+ msgid "Full documentation"
3691
+ msgstr ""
3692
+
3693
+ #: admin/partials/help/shortcodes.php:6
3694
+ msgid "FAQ & Support"
3695
+ msgstr ""
3696
+
3697
+ #: admin/partials/help/sidebar.php:4
3698
+ msgid "Plugin website"
3699
+ msgstr ""
3700
+
3701
+ #: admin/partials/help/sidebar.php:5
3702
+ msgid "Documentation"
3703
+ msgstr ""
3704
+
3705
+ #: admin/partials/help/sidebar.php:7
3706
+ msgid "WordPress.org"
3707
+ msgstr ""
3708
+
3709
+ #: admin/partials/help/sidebar.php:8
3710
+ msgid "GitHub"
3711
+ msgstr ""
3712
+
3713
+ #: admin/partials/notices/rate.php:5
3714
+ msgid "Vladimir Anokhin"
3715
+ msgstr ""
3716
+
3717
+ #: admin/partials/notices/rate.php:10
3718
+ msgid "Hello"
3719
+ msgstr ""
3720
+
3721
+ #: admin/partials/notices/rate.php:11
3722
+ msgid "my name is Vladimir Anokhin. I am the developer of the Shortcodes Ultimate plugin.<br>If you like this plugin, please write a few words about it at wordpress.org or twitter. Your opinion will help other people."
3723
+ msgstr ""
3724
+
3725
+ #: admin/partials/notices/rate.php:12
3726
+ msgid "Thank you!"
3727
+ msgstr ""
3728
+
3729
+ #: admin/partials/notices/rate.php:16
3730
+ msgid "Rate plugin"
3731
+ msgstr ""
3732
+
3733
+ #: admin/partials/notices/rate.php:17
3734
+ msgid "Remind me later"
3735
+ msgstr ""
3736
+
3737
+ #: admin/partials/notices/rate.php:18
3738
+ msgid "Dismiss"
3739
+ msgstr ""
3740
+
3741
+ #: admin/partials/pages/addons.php:27
3742
+ msgid "Learn more"
3743
+ msgstr ""
3744
+
3745
+ #: admin/partials/pages/addons.php:30
3746
+ msgid "Learn more about"
3747
+ msgstr ""
3748
+
3749
+ #: admin/partials/pages/settings.php:15
3750
+ msgid "Warning!"
3751
+ msgstr ""
3752
+
3753
+ #: admin/partials/pages/settings.php:16
3754
+ msgid "You are editing advanced settings. Do NOT modify anything in here unless you know what you are doing."
3755
+ msgstr ""
3756
+
3757
+ #: admin/partials/pages/settings.php:19
3758
+ msgid "Return to main settings"
3759
+ msgstr ""
3760
+
3761
+ #: admin/partials/pages/settings.php:38
3762
+ msgid "Advanced settings"
3763
+ msgstr ""
3764
+
3765
+ #: admin/partials/pages/shortcodes-list.php:42
3766
+ msgid "No shortcodes found."
3767
+ msgstr ""
3768
+
3769
+ #: admin/partials/pages/shortcodes-single-content.php:10
3770
+ msgid "Shortcode documentation"
3771
+ msgstr ""
3772
+
3773
+ #: admin/partials/pages/shortcodes-single-content.php:34
3774
+ msgid "Shortcode options"
3775
+ msgstr ""
3776
+
3777
+ #: admin/partials/pages/shortcodes-single-content.php:45
3778
+ msgid "This shortcode do not have options"
3779
+ msgstr ""
3780
+
3781
+ #: admin/partials/pages/shortcodes-single-content.php:51
3782
+ msgid "Option name"
3783
+ msgstr ""
3784
+
3785
+ #: admin/partials/pages/shortcodes-single-content.php:52
3786
+ msgid "Possible values"
3787
+ msgstr ""
3788
+
3789
+ #: admin/partials/pages/shortcodes-single.php:13, admin/partials/pages/shortcodes-single.php:24
3790
+ msgid "Back to shortcodes list"
3791
+ msgstr ""
3792
+
3793
+ #: admin/partials/settings/fields/checkbox.php:3
3794
+ msgid "Enabled"
3795
+ msgstr ""
3796
+
3797
+ #: admin/partials/settings/fields/css.php:29
3798
+ msgid "Available variables"
3799
+ msgstr ""
3800
+
3801
+ #: admin/partials/settings/fields/css.php:34
3802
+ msgid "Variable"
3803
+ msgstr ""
3804
+
3805
+ #: admin/partials/settings/fields/css.php:35
3806
+ msgid "Will be replaced with"
3807
+ msgstr ""
3808
+
3809
+ #: admin/partials/settings/fields/css.php:41
3810
+ msgid "the URL of the site home page"
3811
+ msgstr ""
3812
+
3813
+ #: admin/partials/settings/fields/css.php:41, admin/partials/settings/fields/css.php:45, admin/partials/settings/fields/css.php:49
3814
+ msgid "with trailing slash"
3815
+ msgstr ""
3816
+
3817
+ #: admin/partials/settings/fields/css.php:45
3818
+ msgid "the URL of the directory of the current theme"
3819
+ msgstr ""
3820
+
3821
+ #: admin/partials/settings/fields/css.php:49
3822
+ msgid "the URL of the directory of the plugin"
3823
+ msgstr ""
3824
+
3825
+ #: admin/partials/settings/fields/css.php:57
3826
+ msgid "More information"
3827
+ msgstr ""
3828
+
3829
+ #. translators: %s - link to the shortcodes.css file
3830
+ #: admin/partials/settings/fields/css.php:61
3831
+ msgid "Open %s file to see default styles"
3832
+ msgstr ""
3833
+
3834
+ #: admin/partials/settings/fields/css.php:62
3835
+ msgid "Help article"
3836
+ msgstr ""
readme.txt CHANGED
@@ -3,10 +3,10 @@ Contributors: gn_themes
3
  License: GPLv3
4
  Donate link: https://paypal.me/anovladimir
5
  Tags: shortcode, toggle, columns, button, slider, video, map, visual, responsive, shortcodes, youtube, vimeo, audio, mp3, tabs, jquery, box, accordion, toggle, pullquote, list, image, gallery, navigation, permalink, feed, rss, members, membership, guests, carousel, icons, rtl, multilingual
6
- Requires at least: 3.5
7
- Requires PHP: 5.2.4
8
  Tested up to: 5.3
9
- Stable tag: trunk
10
 
11
  A comprehensive collection of visual components for your site
12
 
@@ -151,6 +151,20 @@ For help with premium add-ons, please [open new support ticket](https://getshort
151
 
152
  == Changelog ==
153
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
154
  = 5.6.0 =
155
 
156
  **What's new**
3
  License: GPLv3
4
  Donate link: https://paypal.me/anovladimir
5
  Tags: shortcode, toggle, columns, button, slider, video, map, visual, responsive, shortcodes, youtube, vimeo, audio, mp3, tabs, jquery, box, accordion, toggle, pullquote, list, image, gallery, navigation, permalink, feed, rss, members, membership, guests, carousel, icons, rtl, multilingual
6
+ Requires at least: 4.5
7
+ Requires PHP: 5.3
8
  Tested up to: 5.3
9
+ Stable tag: 5.6.1
10
 
11
  A comprehensive collection of visual components for your site
12
 
151
 
152
  == Changelog ==
153
 
154
+ = 5.6.1 =
155
+
156
+ **What's new**
157
+
158
+ - Comments in the `[su_posts]` shortcode can now be disabled from post editing screen or, using the Disable Comments plugin. Thanks to [Jörn Lund](https://github.com/vanokhin/shortcodes-ultimate/pull/98).
159
+ - `[su_image_carousel]` will now display post titles instead of image captions, where applicable. [Details & How to disable it](https://getshortcodes.com/docs/display-image-captions-instead-of-post-titles-in-the-image-carousel-shortcode/).
160
+
161
+ **Fixes**
162
+
163
+ - Fixed `Warning: A non-numeric value encountered` in `[su_slider]`, `[su_carousel]`, and `[su_custom_gallery]`
164
+ - Fixed `download` attribute of the `[su_button]` shortcode
165
+ - Fixed issue with `[su_spoiler]` where nested `[su_youtube]` remains clickable if spoiler is closed
166
+
167
+
168
  = 5.6.0 =
169
 
170
  **What's new**
shortcodes-ultimate.php CHANGED
@@ -2,12 +2,12 @@
2
  /**
3
  * Plugin Name: Shortcodes Ultimate
4
  * Plugin URI: https://getshortcodes.com/
5
- * Version: 5.6.0
6
  * Author: Vladimir Anokhin
7
  * Author URI: https://vanokhin.com/
8
  * Description: A comprehensive collection of visual components for WordPress
9
  * Text Domain: shortcodes-ultimate
10
- * Domain Path: /languages
11
  * License: GPLv3
12
  */
13
 
@@ -15,7 +15,7 @@
15
  * Define plugin constants.
16
  */
17
  define( 'SU_PLUGIN_FILE', __FILE__ );
18
- define( 'SU_PLUGIN_VERSION', '5.6.0' );
19
 
20
  /**
21
  * Load dependencies.
2
  /**
3
  * Plugin Name: Shortcodes Ultimate
4
  * Plugin URI: https://getshortcodes.com/
5
+ * Version: 5.6.1
6
  * Author: Vladimir Anokhin
7
  * Author URI: https://vanokhin.com/
8
  * Description: A comprehensive collection of visual components for WordPress
9
  * Text Domain: shortcodes-ultimate
10
+ * Domain Path: /languages/
11
  * License: GPLv3
12
  */
13
 
15
  * Define plugin constants.
16
  */
17
  define( 'SU_PLUGIN_FILE', __FILE__ );
18
+ define( 'SU_PLUGIN_VERSION', '5.6.1' );
19
 
20
  /**
21
  * Load dependencies.
templates/default-loop.php CHANGED
@@ -20,7 +20,9 @@
20
  <?php the_excerpt(); ?>
21
  </div>
22
 
23
- <a href="<?php comments_link(); ?>" class="su-post-comments-link"><?php comments_number( __( '0 comments', 'shortcodes-ultimate' ), __( '1 comment', 'shortcodes-ultimate' ), '% comments' ); ?></a>
 
 
24
 
25
  </div>
26
 
20
  <?php the_excerpt(); ?>
21
  </div>
22
 
23
+ <?php if ( have_comments() || comments_open() ) : ?>
24
+ <a href="<?php comments_link(); ?>" class="su-post-comments-link"><?php comments_number( __( '0 comments', 'shortcodes-ultimate' ), __( '1 comment', 'shortcodes-ultimate' ), '% comments' ); ?></a>
25
+ <?php endif; ?>
26
 
27
  </div>
28
 
templates/single-post.php CHANGED
@@ -14,7 +14,11 @@
14
  ?>
15
  <div id="su-post-<?php the_ID(); ?>" class="su-post">
16
  <h1 class="su-post-title"><?php the_title(); ?></h1>
17
- <div class="su-post-meta"><?php _e( 'Posted', 'shortcodes-ultimate' ); ?>: <?php the_time( get_option( 'date_format' ) ); ?> | <a href="<?php comments_link(); ?>" class="su-post-comments-link"><?php comments_number( __( '0 comments', 'shortcodes-ultimate' ), __( '1 comment', 'shortcodes-ultimate' ), __( '%n comments', 'shortcodes-ultimate' ) ); ?></a></div>
 
 
 
 
18
  <div class="su-post-content">
19
  <?php the_content(); ?>
20
  </div>
@@ -28,4 +32,4 @@
28
  echo '<h4>' . __( 'Posts not found', 'shortcodes-ultimate' ) . '</h4>';
29
  }
30
  ?>
31
- </div>
14
  ?>
15
  <div id="su-post-<?php the_ID(); ?>" class="su-post">
16
  <h1 class="su-post-title"><?php the_title(); ?></h1>
17
+ <div class="su-post-meta"><?php _e( 'Posted', 'shortcodes-ultimate' ); ?>: <?php the_time( get_option( 'date_format' ) ); ?>
18
+ <?php if ( have_comments() || comments_open() ) : ?>
19
+ | <a href="<?php comments_link(); ?>" class="su-post-comments-link"><?php comments_number( __( '0 comments', 'shortcodes-ultimate' ), __( '1 comment', 'shortcodes-ultimate' ), __( '%n comments', 'shortcodes-ultimate' ) ); ?></a>
20
+ <?php endif; ?>
21
+ </div>
22
  <div class="su-post-content">
23
  <?php the_content(); ?>
24
  </div>
32
  echo '<h4>' . __( 'Posts not found', 'shortcodes-ultimate' ) . '</h4>';
33
  }
34
  ?>
35
+ </div>