Version Description
- Added the third 'forced' images size mode for sliders
- Added forced support for Polylang multilingual plugin
- Added privacy policy info
- Updated plugin dashboard menu icon
- Fixed 'cryout_serious_slider_buttoncount' filter
- Fixed 'Deprecated: media_buttons_context' notice
Download this release
Release Info
Developer | Cryout Creations |
Plugin | Serious Slider |
Version | 1.2.0 |
Comparing to | |
See all releases |
Code changes from version 1.1.1 to 1.2.0
- cryout-serious-slider.php +54 -17
- inc/about.php +1 -1
- inc/shortcodes.php +1 -0
- inc/taxmeta.php +1 -1
- languages/cryout-serious-slider.pot +691 -0
- languages/default.mo +0 -0
- languages/default.po +0 -574
- readme.txt +10 -2
- resources/backend.css +6 -1
- resources/images/serious-slider-icon.svg +16 -0
- resources/slider.js +18 -3
cryout-serious-slider.php
CHANGED
@@ -1,10 +1,10 @@
|
|
1 |
<?php /*
|
2 |
Plugin Name: Cryout Serious Slider
|
3 |
-
Plugin URI:
|
4 |
Description: A highly efficient SEO friendly fully translatable accessibility ready free image slider for WordPress. Seriously!
|
5 |
-
Version: 1.
|
6 |
Author: Cryout Creations
|
7 |
-
Author URI:
|
8 |
Text Domain: cryout-serious-slider
|
9 |
License: GPLv3
|
10 |
License URI: http://www.gnu.org/licenses/gpl.html
|
@@ -15,7 +15,7 @@ if ( !defined( 'ABSPATH' ) ) exit;
|
|
15 |
|
16 |
class Cryout_Serious_Slider {
|
17 |
|
18 |
-
public $version = "1.
|
19 |
public $options = array();
|
20 |
public $shortcode_tag = 'serious-slider';
|
21 |
public $mce_tag = 'serious_slider';
|
@@ -30,9 +30,10 @@ class Cryout_Serious_Slider {
|
|
30 |
private $aboutpage = '';
|
31 |
private $addnewpage = '';
|
32 |
private $plugin_dir = '';
|
|
|
33 |
public $defaults = array(
|
34 |
'cryout_serious_slider_sort' => 'date', // date, order
|
35 |
-
'cryout_serious_slider_sizing' => 0, // 1 = force slider size
|
36 |
'cryout_serious_slider_width' => '1920', // px
|
37 |
'cryout_serious_slider_height' => '800', // px
|
38 |
'cryout_serious_slider_responsiveness' => 'maintain', // 'legacy', 'maintain'
|
@@ -74,15 +75,16 @@ class Cryout_Serious_Slider {
|
|
74 |
add_action( 'init', array( $this, 'register_post_types' ) );
|
75 |
add_action( 'setup_theme', array( $this, 'register_taxonomies' ) );
|
76 |
|
|
|
|
|
|
|
|
|
77 |
// disable wp auto-p on cpt - turned off in 1.0.4
|
78 |
// add_filter( 'the_post', array( $this, 'autop_control' ) );
|
79 |
|
80 |
// create slides from media images
|
81 |
add_action( 'created_term', array( $this, 'generate_slider' ), 10, 3 );
|
82 |
|
83 |
-
// slider buttons filter support
|
84 |
-
$this->butts = apply_filters( 'cryout_serious_slider_buttoncount', $this->butts );
|
85 |
-
|
86 |
} // __construct()
|
87 |
|
88 |
/**
|
@@ -124,6 +126,9 @@ class Cryout_Serious_Slider {
|
|
124 |
$this->title = __( 'Serious Slider', 'cryout-serious-slider' );
|
125 |
$this->aboutpage = 'edit.php?post_type=' . $this->posttype . '&page=' . $this->slug . '-about';
|
126 |
$this->addnewpage = 'post-new.php?post_type=' . $this->posttype;
|
|
|
|
|
|
|
127 |
|
128 |
if (! is_admin() ) {
|
129 |
// frontend script and style
|
@@ -156,7 +161,7 @@ class Cryout_Serious_Slider {
|
|
156 |
add_action( 'admin_enqueue_scripts', array($this , 'admin_enqueue_scripts' ) );
|
157 |
|
158 |
// mce slider button
|
159 |
-
|
160 |
$localized_mce_strings = array(
|
161 |
'text_retrieving_sliders' => __('Retrieving sliders...', 'cryout-serious-slider'),
|
162 |
'text_retrieving_sliders_error' => __('Error retrieving sliders', 'cryout-serious-slider'),
|
@@ -181,6 +186,9 @@ class Cryout_Serious_Slider {
|
|
181 |
// ajax handling for slider image
|
182 |
add_action( 'wp_ajax_cryout_serious_slider_set_image', array( $this, 'ajax_set_image' ) );
|
183 |
add_action( 'wp_ajax_cryout_serious_slider_delete_image', array( $this, 'ajax_delete_image' ) );
|
|
|
|
|
|
|
184 |
|
185 |
|
186 |
} // if (is_admin())
|
@@ -431,7 +439,7 @@ class Cryout_Serious_Slider {
|
|
431 |
'description' => __( 'Description.', 'cryout-serious-slider' ),
|
432 |
'show_in_nav_menus' => false,
|
433 |
'menu_position' => 21,
|
434 |
-
'menu_icon' => plugins_url('/resources/images/serious-slider-icon.
|
435 |
'capability_type' => 'page',
|
436 |
'supports' => array(
|
437 |
'title',
|
@@ -453,6 +461,11 @@ class Cryout_Serious_Slider {
|
|
453 |
'all_items' => __( 'All Slides', 'cryout-serious-slider' ),
|
454 |
'search_items' => __( 'Search Slide', 'cryout-serious-slider' ),
|
455 |
'parent_item_colon' => __( 'Parent Slides:', 'cryout-serious-slider' ),
|
|
|
|
|
|
|
|
|
|
|
456 |
'not_found' => sprintf( __( 'No slides found. Go ahead and <a href="%1$s">add some</a> or <a href="%2$s">load sample content</a>.', 'cryout-serious-slider' ), $this->addnewpage, $this->aboutpage ),
|
457 |
'not_found_in_trash' => __( 'No slides found in Trash.', 'cryout-serious-slider' )
|
458 |
),
|
@@ -486,6 +499,8 @@ class Cryout_Serious_Slider {
|
|
486 |
'new_item_name' => __( 'New Slider', 'cryout-serious-slider' ),
|
487 |
'menu_name' => __( 'Manage Sliders', 'cryout-serious-slider' ),
|
488 |
'not_found' => __( 'No sliders found', 'cryout-serious-slider' ),
|
|
|
|
|
489 |
),
|
490 |
'show_ui' => true,
|
491 |
'show_admin_column' => true,
|
@@ -504,6 +519,19 @@ class Cryout_Serious_Slider {
|
|
504 |
add_action( 'delete_' . $this->taxonomy, array($this, 'delete_taxonomy_custom_meta'), 10, 2 );
|
505 |
|
506 |
} // register_taxonomies()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
507 |
|
508 |
/**********************
|
509 |
* dashboard layout customization
|
@@ -765,23 +793,23 @@ class Cryout_Serious_Slider {
|
|
765 |
***********************/
|
766 |
|
767 |
// media button
|
768 |
-
public function media_slider_button(
|
769 |
|
770 |
if ( ! current_user_can( 'edit_others_posts' ) ) {
|
771 |
-
return
|
772 |
}
|
773 |
|
774 |
global $post_type;
|
775 |
global $pagenow;
|
776 |
|
777 |
if ( in_array( $pagenow, array( 'post.php', 'page.php', 'post-new.php', 'post-edit.php' ) ) && ( $this->posttype != $post_type ) ) {
|
778 |
-
$
|
779 |
-
|
780 |
-
|
781 |
-
|
|
|
782 |
}
|
783 |
|
784 |
-
return $context;
|
785 |
} // media_slider_button()
|
786 |
|
787 |
// mce button
|
@@ -830,6 +858,15 @@ class Cryout_Serious_Slider {
|
|
830 |
wp_enqueue_media();
|
831 |
};
|
832 |
} // admin_enqueue_scripts()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
833 |
|
834 |
|
835 |
/**********************
|
1 |
<?php /*
|
2 |
Plugin Name: Cryout Serious Slider
|
3 |
+
Plugin URI: https://www.cryoutcreations.eu/wordpress-plugins/cryout-serious-slider
|
4 |
Description: A highly efficient SEO friendly fully translatable accessibility ready free image slider for WordPress. Seriously!
|
5 |
+
Version: 1.2.0
|
6 |
Author: Cryout Creations
|
7 |
+
Author URI: https://www.cryoutcreations.eu
|
8 |
Text Domain: cryout-serious-slider
|
9 |
License: GPLv3
|
10 |
License URI: http://www.gnu.org/licenses/gpl.html
|
15 |
|
16 |
class Cryout_Serious_Slider {
|
17 |
|
18 |
+
public $version = "1.2.0";
|
19 |
public $options = array();
|
20 |
public $shortcode_tag = 'serious-slider';
|
21 |
public $mce_tag = 'serious_slider';
|
30 |
private $aboutpage = '';
|
31 |
private $addnewpage = '';
|
32 |
private $plugin_dir = '';
|
33 |
+
|
34 |
public $defaults = array(
|
35 |
'cryout_serious_slider_sort' => 'date', // date, order
|
36 |
+
'cryout_serious_slider_sizing' => 0, // 0 = flexible, 1 = keep max slider size, 2 = force images to slider size
|
37 |
'cryout_serious_slider_width' => '1920', // px
|
38 |
'cryout_serious_slider_height' => '800', // px
|
39 |
'cryout_serious_slider_responsiveness' => 'maintain', // 'legacy', 'maintain'
|
75 |
add_action( 'init', array( $this, 'register_post_types' ) );
|
76 |
add_action( 'setup_theme', array( $this, 'register_taxonomies' ) );
|
77 |
|
78 |
+
// force support in polylang
|
79 |
+
add_filter( 'pll_get_post_types', array( $this, 'pll_post_types' ) );
|
80 |
+
add_filter( 'pll_get_taxonomies', array( $this, 'pll_taxonomies' ) );
|
81 |
+
|
82 |
// disable wp auto-p on cpt - turned off in 1.0.4
|
83 |
// add_filter( 'the_post', array( $this, 'autop_control' ) );
|
84 |
|
85 |
// create slides from media images
|
86 |
add_action( 'created_term', array( $this, 'generate_slider' ), 10, 3 );
|
87 |
|
|
|
|
|
|
|
88 |
} // __construct()
|
89 |
|
90 |
/**
|
126 |
$this->title = __( 'Serious Slider', 'cryout-serious-slider' );
|
127 |
$this->aboutpage = 'edit.php?post_type=' . $this->posttype . '&page=' . $this->slug . '-about';
|
128 |
$this->addnewpage = 'post-new.php?post_type=' . $this->posttype;
|
129 |
+
|
130 |
+
// slider buttons filter support
|
131 |
+
$this->butts = apply_filters( 'cryout_serious_slider_buttoncount', $this->butts );
|
132 |
|
133 |
if (! is_admin() ) {
|
134 |
// frontend script and style
|
161 |
add_action( 'admin_enqueue_scripts', array($this , 'admin_enqueue_scripts' ) );
|
162 |
|
163 |
// mce slider button
|
164 |
+
add_action( 'media_buttons', array( $this, 'media_slider_button' ) );
|
165 |
$localized_mce_strings = array(
|
166 |
'text_retrieving_sliders' => __('Retrieving sliders...', 'cryout-serious-slider'),
|
167 |
'text_retrieving_sliders_error' => __('Error retrieving sliders', 'cryout-serious-slider'),
|
186 |
// ajax handling for slider image
|
187 |
add_action( 'wp_ajax_cryout_serious_slider_set_image', array( $this, 'ajax_set_image' ) );
|
188 |
add_action( 'wp_ajax_cryout_serious_slider_delete_image', array( $this, 'ajax_delete_image' ) );
|
189 |
+
|
190 |
+
// privacy policy info
|
191 |
+
add_action( 'admin_init', array( $this, 'privacy_content') );
|
192 |
|
193 |
|
194 |
} // if (is_admin())
|
439 |
'description' => __( 'Description.', 'cryout-serious-slider' ),
|
440 |
'show_in_nav_menus' => false,
|
441 |
'menu_position' => 21,
|
442 |
+
'menu_icon' => plugins_url('/resources/images/serious-slider-icon.svg',__FILE__),
|
443 |
'capability_type' => 'page',
|
444 |
'supports' => array(
|
445 |
'title',
|
461 |
'all_items' => __( 'All Slides', 'cryout-serious-slider' ),
|
462 |
'search_items' => __( 'Search Slide', 'cryout-serious-slider' ),
|
463 |
'parent_item_colon' => __( 'Parent Slides:', 'cryout-serious-slider' ),
|
464 |
+
'item_published' => __( 'Slide published.', 'cryout-serious-slider' ),
|
465 |
+
'item_published_privately' => __( 'Slide published privately.', 'cryout-serious-slider' ),
|
466 |
+
'item_reverted_to_draft' => __( 'Slide reverted to draft.', 'cryout-serious-slider' ),
|
467 |
+
'item_scheduled' => __( 'Slide scheduled.', 'cryout-serious-slider' ),
|
468 |
+
'item_updated' => __( 'Slide updated.', 'cryout-serious-slider' ),
|
469 |
'not_found' => sprintf( __( 'No slides found. Go ahead and <a href="%1$s">add some</a> or <a href="%2$s">load sample content</a>.', 'cryout-serious-slider' ), $this->addnewpage, $this->aboutpage ),
|
470 |
'not_found_in_trash' => __( 'No slides found in Trash.', 'cryout-serious-slider' )
|
471 |
),
|
499 |
'new_item_name' => __( 'New Slider', 'cryout-serious-slider' ),
|
500 |
'menu_name' => __( 'Manage Sliders', 'cryout-serious-slider' ),
|
501 |
'not_found' => __( 'No sliders found', 'cryout-serious-slider' ),
|
502 |
+
'no_terms' => __( 'No sliders', 'cryout-serious-slider' ),
|
503 |
+
'back_to_items' => __( '← Back to Sliders', 'cryout-serious-slider' ),
|
504 |
),
|
505 |
'show_ui' => true,
|
506 |
'show_admin_column' => true,
|
519 |
add_action( 'delete_' . $this->taxonomy, array($this, 'delete_taxonomy_custom_meta'), 10, 2 );
|
520 |
|
521 |
} // register_taxonomies()
|
522 |
+
|
523 |
+
/**
|
524 |
+
* Register post type in Polylang
|
525 |
+
*/
|
526 |
+
public function pll_post_types( $post_types ){
|
527 |
+
return array_merge( $post_types, array( $this->posttype ) );
|
528 |
+
} // pll_post_types()
|
529 |
+
/**
|
530 |
+
* Register taxonomy in Polylang
|
531 |
+
*/
|
532 |
+
public function pll_taxonomies( $taxonomies ){
|
533 |
+
return array_merge( $taxonomies, array( $this->taxonomy ) );
|
534 |
+
} // pll_taxonomies()
|
535 |
|
536 |
/**********************
|
537 |
* dashboard layout customization
|
793 |
***********************/
|
794 |
|
795 |
// media button
|
796 |
+
public function media_slider_button() {
|
797 |
|
798 |
if ( ! current_user_can( 'edit_others_posts' ) ) {
|
799 |
+
return;
|
800 |
}
|
801 |
|
802 |
global $post_type;
|
803 |
global $pagenow;
|
804 |
|
805 |
if ( in_array( $pagenow, array( 'post.php', 'page.php', 'post-new.php', 'post-edit.php' ) ) && ( $this->posttype != $post_type ) ) {
|
806 |
+
$content = sprintf('<a href="#" class="button media-serious-slider-button" title="%1$s"> <span class="wp-media-buttons-icon" style="background: url(\'%2$s\'); background-repeat: no-repeat; background-position: center 1px;"></span> %3$s </a>',
|
807 |
+
__( "Insert Serious Slider into post", "cryout-serious-slider" ),
|
808 |
+
$this->plugin_url . 'resources/images/serious-slider-editor-icon.png',
|
809 |
+
__( 'Add Slider', 'cryout-serious-slider' ) );
|
810 |
+
echo $content;
|
811 |
}
|
812 |
|
|
|
813 |
} // media_slider_button()
|
814 |
|
815 |
// mce button
|
858 |
wp_enqueue_media();
|
859 |
};
|
860 |
} // admin_enqueue_scripts()
|
861 |
+
|
862 |
+
public function privacy_content(){
|
863 |
+
if ( function_exists('wp_add_privacy_policy_content') ) {
|
864 |
+
wp_add_privacy_policy_content(
|
865 |
+
__('Cryout Serious Slider','cryout-serious-slider'),
|
866 |
+
__("This plugin doesn't collect any kind of data from either website visitors or administrators.",'cryout-serious-slider')
|
867 |
+
);
|
868 |
+
}
|
869 |
+
} // privacy_content()
|
870 |
|
871 |
|
872 |
/**********************
|
inc/about.php
CHANGED
@@ -88,7 +88,7 @@ if ( !defined( 'ABSPATH' ) ) exit;
|
|
88 |
<li>Schedule slides to automatically become visible at any time in the future.</li>
|
89 |
<li>Quickly restore deleted slides from the Trash</li>
|
90 |
<li>Use WordPress’ text editor to add HTML content and even shortcodes to your slides</li>
|
91 |
-
<li>Bulk edit slides and
|
92 |
</ul>
|
93 |
</div>
|
94 |
|
88 |
<li>Schedule slides to automatically become visible at any time in the future.</li>
|
89 |
<li>Quickly restore deleted slides from the Trash</li>
|
90 |
<li>Use WordPress’ text editor to add HTML content and even shortcodes to your slides</li>
|
91 |
+
<li>Bulk edit slides and sliders</li>
|
92 |
</ul>
|
93 |
</div>
|
94 |
|
inc/shortcodes.php
CHANGED
@@ -123,6 +123,7 @@ class Cryout_Serious_Slider_Shortcode {
|
|
123 |
ob_start(); ?>
|
124 |
.serious-slider-<?php echo $cid ?> { max-width: <?php echo intval( $width ); ?>px; }
|
125 |
.serious-slider-<?php echo $cid ?>.seriousslider-sizing1, .serious-slider-<?php echo $cid ?>.seriousslider-sizing1 img { max-height: <?php echo intval( $height ); ?>px; }
|
|
|
126 |
.serious-slider-<?php echo $cid ?> .seriousslider-caption-inside { max-width: <?php echo intval($caption_width) ?>px; font-size: <?php echo round($textsize,2) ?>em; }
|
127 |
|
128 |
.serious-slider-<?php echo $cid ?> .seriousslider-inner > .item {
|
123 |
ob_start(); ?>
|
124 |
.serious-slider-<?php echo $cid ?> { max-width: <?php echo intval( $width ); ?>px; }
|
125 |
.serious-slider-<?php echo $cid ?>.seriousslider-sizing1, .serious-slider-<?php echo $cid ?>.seriousslider-sizing1 img { max-height: <?php echo intval( $height ); ?>px; }
|
126 |
+
.serious-slider-<?php echo $cid ?>.seriousslider-sizing2, .serious-slider-<?php echo $cid ?>.seriousslider-sizing2 img.item-image { height: <?php echo intval( $height ); ?>px; }
|
127 |
.serious-slider-<?php echo $cid ?> .seriousslider-caption-inside { max-width: <?php echo intval($caption_width) ?>px; font-size: <?php echo round($textsize,2) ?>em; }
|
128 |
|
129 |
.serious-slider-<?php echo $cid ?> .seriousslider-inner > .item {
|
inc/taxmeta.php
CHANGED
@@ -44,7 +44,7 @@ if ( !defined( 'ABSPATH' ) ) exit;
|
|
44 |
);
|
45 |
echo $this->selectfield(
|
46 |
'term_meta[cryout_serious_slider_sizing]',
|
47 |
-
array( 0 => __('Adapt to images','cryout-serious-slider'), 1 => __('Force
|
48 |
$the_meta['cryout_serious_slider_sizing'],
|
49 |
__('Slider Size','cryout-serious-slider'),
|
50 |
'',
|
44 |
);
|
45 |
echo $this->selectfield(
|
46 |
'term_meta[cryout_serious_slider_sizing]',
|
47 |
+
array( 0 => __('Adapt to images','cryout-serious-slider'), 1 => __('Contain Images','cryout-serious-slider'), 2 => __('Force Images to Size','cryout-serious-slider') ),
|
48 |
$the_meta['cryout_serious_slider_sizing'],
|
49 |
__('Slider Size','cryout-serious-slider'),
|
50 |
'',
|
languages/cryout-serious-slider.pot
ADDED
@@ -0,0 +1,691 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
#, fuzzy
|
2 |
+
msgid ""
|
3 |
+
msgstr ""
|
4 |
+
"Project-Id-Version: Cryout Serious Slider\n"
|
5 |
+
"Report-Msgid-Bugs-To: \n"
|
6 |
+
"POT-Creation-Date: 2020-06-03 21:07+0000\n"
|
7 |
+
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
8 |
+
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
9 |
+
"Language-Team: \n"
|
10 |
+
"Language: \n"
|
11 |
+
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
|
12 |
+
"MIME-Version: 1.0\n"
|
13 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
14 |
+
"Content-Transfer-Encoding: 8bit\n"
|
15 |
+
"X-Generator: Loco https://localise.biz/\n"
|
16 |
+
"X-Loco-Version: 2.3.1; wp-5.4.1"
|
17 |
+
|
18 |
+
#: inc/right-column.php:13
|
19 |
+
msgid "« Manage Slides »"
|
20 |
+
msgstr ""
|
21 |
+
|
22 |
+
#: cryout-serious-slider.php:503
|
23 |
+
msgid "← Back to Sliders"
|
24 |
+
msgstr ""
|
25 |
+
|
26 |
+
#. Description of the plugin
|
27 |
+
msgid ""
|
28 |
+
"A highly efficient SEO friendly fully translatable accessibility ready free "
|
29 |
+
"image slider for WordPress. Seriously!"
|
30 |
+
msgstr ""
|
31 |
+
|
32 |
+
#: cryout-serious-slider.php:229
|
33 |
+
msgid "About"
|
34 |
+
msgstr ""
|
35 |
+
|
36 |
+
#: cryout-serious-slider.php:241
|
37 |
+
msgid "About Plugin"
|
38 |
+
msgstr ""
|
39 |
+
|
40 |
+
#: inc/taxmeta.php:160
|
41 |
+
msgid "Accent Color"
|
42 |
+
msgstr ""
|
43 |
+
|
44 |
+
#: inc/taxmeta.php:47
|
45 |
+
msgid "Adapt to images"
|
46 |
+
msgstr ""
|
47 |
+
|
48 |
+
#: cryout-serious-slider.php:455
|
49 |
+
msgctxt "add new on admin bar"
|
50 |
+
msgid "Serious Slide"
|
51 |
+
msgstr ""
|
52 |
+
|
53 |
+
#: cryout-serious-slider.php:457
|
54 |
+
msgid "Add New Slide"
|
55 |
+
msgstr ""
|
56 |
+
|
57 |
+
#: cryout-serious-slider.php:498 inc/taxmeta.php:14
|
58 |
+
msgid "Add New Slider"
|
59 |
+
msgstr ""
|
60 |
+
|
61 |
+
#: cryout-serious-slider.php:173 cryout-serious-slider.php:809
|
62 |
+
msgid "Add Slider"
|
63 |
+
msgstr ""
|
64 |
+
|
65 |
+
#: cryout-serious-slider.php:454
|
66 |
+
msgctxt "admin menu"
|
67 |
+
msgid "Serious Slider"
|
68 |
+
msgstr ""
|
69 |
+
|
70 |
+
#: cryout-serious-slider.php:493
|
71 |
+
msgid "All Sliders"
|
72 |
+
msgstr ""
|
73 |
+
|
74 |
+
#: cryout-serious-slider.php:461
|
75 |
+
msgid "All Slides"
|
76 |
+
msgstr ""
|
77 |
+
|
78 |
+
#: inc/taxmeta.php:107
|
79 |
+
msgid "Always hidden"
|
80 |
+
msgstr ""
|
81 |
+
|
82 |
+
#: inc/taxmeta.php:109
|
83 |
+
msgid "Always visible"
|
84 |
+
msgstr ""
|
85 |
+
|
86 |
+
#: cryout-serious-slider.php:456
|
87 |
+
msgctxt "and new in menu"
|
88 |
+
msgid "Add New Slide"
|
89 |
+
msgstr ""
|
90 |
+
|
91 |
+
#: inc/taxmeta.php:24
|
92 |
+
msgid "Animation"
|
93 |
+
msgstr ""
|
94 |
+
|
95 |
+
#: inc/taxmeta.php:108
|
96 |
+
msgid "Appear on hover"
|
97 |
+
msgstr ""
|
98 |
+
|
99 |
+
#: inc/taxmeta.php:23
|
100 |
+
msgid "Appearance"
|
101 |
+
msgstr ""
|
102 |
+
|
103 |
+
#: inc/taxmeta.php:175
|
104 |
+
msgid "Autoplay"
|
105 |
+
msgstr ""
|
106 |
+
|
107 |
+
#: inc/taxmeta.php:150
|
108 |
+
msgid "Background Color"
|
109 |
+
msgstr ""
|
110 |
+
|
111 |
+
#: inc/taxmeta.php:119
|
112 |
+
msgid "Base Font Size"
|
113 |
+
msgstr ""
|
114 |
+
|
115 |
+
#: inc/taxmeta.php:225
|
116 |
+
msgid "Blur"
|
117 |
+
msgstr ""
|
118 |
+
|
119 |
+
#: inc/taxmeta.php:112
|
120 |
+
msgid "Bullets and Navigation"
|
121 |
+
msgstr ""
|
122 |
+
|
123 |
+
#: inc/meta.php:12
|
124 |
+
#, php-format
|
125 |
+
msgid "Button %s Label:"
|
126 |
+
msgstr ""
|
127 |
+
|
128 |
+
#: inc/about.php:114
|
129 |
+
msgid "by"
|
130 |
+
msgstr ""
|
131 |
+
|
132 |
+
#: inc/taxmeta.php:36
|
133 |
+
msgid "by date"
|
134 |
+
msgstr ""
|
135 |
+
|
136 |
+
#: inc/taxmeta.php:37
|
137 |
+
msgid "by order value"
|
138 |
+
msgstr ""
|
139 |
+
|
140 |
+
#: cryout-serious-slider.php:171
|
141 |
+
msgid "Cancel"
|
142 |
+
msgstr ""
|
143 |
+
|
144 |
+
#: inc/taxmeta.php:134
|
145 |
+
msgid "Caption Alignment"
|
146 |
+
msgstr ""
|
147 |
+
|
148 |
+
#: inc/taxmeta.php:97
|
149 |
+
msgid "Caption Bottom"
|
150 |
+
msgstr ""
|
151 |
+
|
152 |
+
#: inc/taxmeta.php:96
|
153 |
+
msgid "Caption Left"
|
154 |
+
msgstr ""
|
155 |
+
|
156 |
+
#: inc/taxmeta.php:230
|
157 |
+
msgid "Caption Text Animation"
|
158 |
+
msgstr ""
|
159 |
+
|
160 |
+
#: inc/taxmeta.php:141
|
161 |
+
msgid "Caption Width"
|
162 |
+
msgstr ""
|
163 |
+
|
164 |
+
#: inc/taxmeta.php:129
|
165 |
+
msgid "Center"
|
166 |
+
msgstr ""
|
167 |
+
|
168 |
+
#: cryout-serious-slider.php:599
|
169 |
+
msgid "Change"
|
170 |
+
msgstr ""
|
171 |
+
|
172 |
+
#: cryout-serious-slider.php:363
|
173 |
+
msgid "Change Image"
|
174 |
+
msgstr ""
|
175 |
+
|
176 |
+
#: cryout-serious-slider.php:361 cryout-serious-slider.php:597
|
177 |
+
#, php-format
|
178 |
+
msgid "Change image for \"%s\""
|
179 |
+
msgstr ""
|
180 |
+
|
181 |
+
#: cryout-serious-slider.php:252
|
182 |
+
msgid "Changelog"
|
183 |
+
msgstr ""
|
184 |
+
|
185 |
+
#: inc/taxmeta.php:47
|
186 |
+
msgid "Contain Images"
|
187 |
+
msgstr ""
|
188 |
+
|
189 |
+
#: inc/about.php:139
|
190 |
+
msgid "Create Sample Slider"
|
191 |
+
msgstr ""
|
192 |
+
|
193 |
+
#. Author of the plugin
|
194 |
+
msgid "Cryout Creations"
|
195 |
+
msgstr ""
|
196 |
+
|
197 |
+
#. Name of the plugin
|
198 |
+
#: cryout-serious-slider.php:168 cryout-serious-slider.php:865
|
199 |
+
msgid "Cryout Serious Slider"
|
200 |
+
msgstr ""
|
201 |
+
|
202 |
+
#: inc/taxmeta.php:98
|
203 |
+
msgid "Cryout Theme"
|
204 |
+
msgstr ""
|
205 |
+
|
206 |
+
#: inc/taxmeta.php:93
|
207 |
+
msgid "Dark"
|
208 |
+
msgstr ""
|
209 |
+
|
210 |
+
#: cryout-serious-slider.php:546
|
211 |
+
msgid "Date"
|
212 |
+
msgstr ""
|
213 |
+
|
214 |
+
#: inc/about.php:134
|
215 |
+
msgid "Demo Content"
|
216 |
+
msgstr ""
|
217 |
+
|
218 |
+
#: cryout-serious-slider.php:439
|
219 |
+
msgid "Description."
|
220 |
+
msgstr ""
|
221 |
+
|
222 |
+
#: inc/taxmeta.php:173 inc/taxmeta.php:197
|
223 |
+
msgid "Disabled"
|
224 |
+
msgstr ""
|
225 |
+
|
226 |
+
#: inc/about.php:19 inc/about.php:24
|
227 |
+
msgid "Dismiss this notice."
|
228 |
+
msgstr ""
|
229 |
+
|
230 |
+
#: inc/widgets.php:25
|
231 |
+
msgid "Displayed Slider"
|
232 |
+
msgstr ""
|
233 |
+
|
234 |
+
#: inc/about.php:125
|
235 |
+
msgid "Documentation"
|
236 |
+
msgstr ""
|
237 |
+
|
238 |
+
#: cryout-serious-slider.php:459
|
239 |
+
msgid "Edit Slide"
|
240 |
+
msgstr ""
|
241 |
+
|
242 |
+
#: cryout-serious-slider.php:496
|
243 |
+
msgid "Edit Slider"
|
244 |
+
msgstr ""
|
245 |
+
|
246 |
+
#: cryout-serious-slider.php:570
|
247 |
+
msgid "Edit slider"
|
248 |
+
msgstr ""
|
249 |
+
|
250 |
+
#: inc/taxmeta.php:173 inc/taxmeta.php:197
|
251 |
+
msgid "Enabled"
|
252 |
+
msgstr ""
|
253 |
+
|
254 |
+
#: cryout-serious-slider.php:167
|
255 |
+
msgid "Error retrieving sliders"
|
256 |
+
msgstr ""
|
257 |
+
|
258 |
+
#: inc/taxmeta.php:182 inc/taxmeta.php:223
|
259 |
+
msgid "Fade"
|
260 |
+
msgstr ""
|
261 |
+
|
262 |
+
#: inc/taxmeta.php:47
|
263 |
+
msgid "Force Images to Size"
|
264 |
+
msgstr ""
|
265 |
+
|
266 |
+
#: inc/taxmeta.php:22
|
267 |
+
msgid "General"
|
268 |
+
msgstr ""
|
269 |
+
|
270 |
+
#: inc/taxmeta.php:64
|
271 |
+
msgid "Height"
|
272 |
+
msgstr ""
|
273 |
+
|
274 |
+
#: inc/taxmeta.php:81
|
275 |
+
msgid "Hide Caption Titles"
|
276 |
+
msgstr ""
|
277 |
+
|
278 |
+
#: inc/taxmeta.php:79
|
279 |
+
msgid "Hide titles"
|
280 |
+
msgstr ""
|
281 |
+
|
282 |
+
#: inc/taxmeta.php:187
|
283 |
+
msgid "Horizontal Flip"
|
284 |
+
msgstr ""
|
285 |
+
|
286 |
+
#. Author URI of the plugin
|
287 |
+
msgid "https://www.cryoutcreations.eu"
|
288 |
+
msgstr ""
|
289 |
+
|
290 |
+
#. URI of the plugin
|
291 |
+
msgid "https://www.cryoutcreations.eu/wordpress-plugins/cryout-serious-slider"
|
292 |
+
msgstr ""
|
293 |
+
|
294 |
+
#: cryout-serious-slider.php:807
|
295 |
+
msgid "Insert Serious Slider into post"
|
296 |
+
msgstr ""
|
297 |
+
|
298 |
+
#: cryout-serious-slider.php:170
|
299 |
+
msgid "Insert Slider"
|
300 |
+
msgstr ""
|
301 |
+
|
302 |
+
#. return error message to Ajax script
|
303 |
+
#: cryout-serious-slider.php:379
|
304 |
+
msgid "Item not added."
|
305 |
+
msgstr ""
|
306 |
+
|
307 |
+
#: inc/taxmeta.php:131
|
308 |
+
msgid "Justify"
|
309 |
+
msgstr ""
|
310 |
+
|
311 |
+
#: inc/meta.php:30
|
312 |
+
msgid "Leave fields empty to disable elements."
|
313 |
+
msgstr ""
|
314 |
+
|
315 |
+
#: inc/taxmeta.php:128
|
316 |
+
msgid "Left"
|
317 |
+
msgstr ""
|
318 |
+
|
319 |
+
#: inc/taxmeta.php:71
|
320 |
+
msgid "Legacy Resize"
|
321 |
+
msgstr ""
|
322 |
+
|
323 |
+
#: inc/taxmeta.php:91
|
324 |
+
msgid "Light"
|
325 |
+
msgstr ""
|
326 |
+
|
327 |
+
#: inc/taxmeta.php:92
|
328 |
+
msgid "Light 2"
|
329 |
+
msgstr ""
|
330 |
+
|
331 |
+
#: inc/meta.php:15
|
332 |
+
msgid "Link URL:"
|
333 |
+
msgstr ""
|
334 |
+
|
335 |
+
#: inc/taxmeta.php:71
|
336 |
+
msgid "Maintain Height"
|
337 |
+
msgstr ""
|
338 |
+
|
339 |
+
#: cryout-serious-slider.php:335 cryout-serious-slider.php:500
|
340 |
+
msgid "Manage Sliders"
|
341 |
+
msgstr ""
|
342 |
+
|
343 |
+
#: inc/about.php:122
|
344 |
+
msgid "Need help?"
|
345 |
+
msgstr ""
|
346 |
+
|
347 |
+
#: cryout-serious-slider.php:458
|
348 |
+
msgid "New Slide"
|
349 |
+
msgstr ""
|
350 |
+
|
351 |
+
#: cryout-serious-slider.php:499
|
352 |
+
msgid "New Slider"
|
353 |
+
msgstr ""
|
354 |
+
|
355 |
+
#: inc/shortcodes.php:360
|
356 |
+
msgid "Next Slide"
|
357 |
+
msgstr ""
|
358 |
+
|
359 |
+
#: cryout-serious-slider.php:502
|
360 |
+
msgid "No sliders"
|
361 |
+
msgstr ""
|
362 |
+
|
363 |
+
#: cryout-serious-slider.php:288
|
364 |
+
msgid "No sliders available. Create a slider first..."
|
365 |
+
msgstr ""
|
366 |
+
|
367 |
+
#: cryout-serious-slider.php:501
|
368 |
+
msgid "No sliders found"
|
369 |
+
msgstr ""
|
370 |
+
|
371 |
+
#: cryout-serious-slider.php:470
|
372 |
+
msgid "No slides found in Trash."
|
373 |
+
msgstr ""
|
374 |
+
|
375 |
+
#: cryout-serious-slider.php:469
|
376 |
+
#, php-format
|
377 |
+
msgid ""
|
378 |
+
"No slides found. Go ahead and <a href=\"%1$s\">add some</a> or <a "
|
379 |
+
"href=\"%2$s\">load sample content</a>."
|
380 |
+
msgstr ""
|
381 |
+
|
382 |
+
#: cryout-serious-slider.php:404 cryout-serious-slider.php:579
|
383 |
+
#: cryout-serious-slider.php:623 inc/taxmeta.php:148 inc/taxmeta.php:222
|
384 |
+
msgid "None"
|
385 |
+
msgstr ""
|
386 |
+
|
387 |
+
#: inc/meta.php:19 inc/meta.php:28
|
388 |
+
msgid "Open in New Window"
|
389 |
+
msgstr ""
|
390 |
+
|
391 |
+
#: cryout-serious-slider.php:547
|
392 |
+
msgid "Order"
|
393 |
+
msgstr ""
|
394 |
+
|
395 |
+
#: inc/taxmeta.php:184
|
396 |
+
msgid "Overslide"
|
397 |
+
msgstr ""
|
398 |
+
|
399 |
+
#: inc/taxmeta.php:186
|
400 |
+
msgid "Parallax"
|
401 |
+
msgstr ""
|
402 |
+
|
403 |
+
#: cryout-serious-slider.php:494
|
404 |
+
msgid "Parent Slider"
|
405 |
+
msgstr ""
|
406 |
+
|
407 |
+
#: cryout-serious-slider.php:495
|
408 |
+
msgid "Parent Slider:"
|
409 |
+
msgstr ""
|
410 |
+
|
411 |
+
#: cryout-serious-slider.php:463
|
412 |
+
msgid "Parent Slides:"
|
413 |
+
msgstr ""
|
414 |
+
|
415 |
+
#: inc/about.php:115
|
416 |
+
msgid "Plugin Homepage"
|
417 |
+
msgstr ""
|
418 |
+
|
419 |
+
#: cryout-serious-slider.php:250
|
420 |
+
msgid "Plugin homepage"
|
421 |
+
msgstr ""
|
422 |
+
|
423 |
+
#: cryout-serious-slider.php:452
|
424 |
+
msgctxt "post type general name"
|
425 |
+
msgid "Slides"
|
426 |
+
msgstr ""
|
427 |
+
|
428 |
+
#: cryout-serious-slider.php:453
|
429 |
+
msgctxt "post type singular name"
|
430 |
+
msgid "Slide"
|
431 |
+
msgstr ""
|
432 |
+
|
433 |
+
#: inc/shortcodes.php:356
|
434 |
+
msgid "Previous Slide"
|
435 |
+
msgstr ""
|
436 |
+
|
437 |
+
#: inc/about.php:126
|
438 |
+
msgid "Priority Support"
|
439 |
+
msgstr ""
|
440 |
+
|
441 |
+
#: inc/taxmeta.php:38
|
442 |
+
msgid "random"
|
443 |
+
msgstr ""
|
444 |
+
|
445 |
+
#: cryout-serious-slider.php:607
|
446 |
+
msgid "Remove"
|
447 |
+
msgstr ""
|
448 |
+
|
449 |
+
#: cryout-serious-slider.php:371
|
450 |
+
msgid "Remove Image"
|
451 |
+
msgstr ""
|
452 |
+
|
453 |
+
#: cryout-serious-slider.php:370 cryout-serious-slider.php:606
|
454 |
+
#, php-format
|
455 |
+
msgid "Remove image from \"%s\""
|
456 |
+
msgstr ""
|
457 |
+
|
458 |
+
#: inc/taxmeta.php:73
|
459 |
+
msgid "Responsiveness"
|
460 |
+
msgstr ""
|
461 |
+
|
462 |
+
#: cryout-serious-slider.php:166
|
463 |
+
msgid "Retrieving sliders..."
|
464 |
+
msgstr ""
|
465 |
+
|
466 |
+
#: inc/taxmeta.php:130
|
467 |
+
msgid "Right"
|
468 |
+
msgstr ""
|
469 |
+
|
470 |
+
#: inc/about.php:18
|
471 |
+
msgid ""
|
472 |
+
"Sample content added. Navigate to Slider and Slides sections to see the "
|
473 |
+
"sample content."
|
474 |
+
msgstr ""
|
475 |
+
|
476 |
+
#: inc/about.php:17
|
477 |
+
msgid "Sample slider created."
|
478 |
+
msgstr ""
|
479 |
+
|
480 |
+
#: cryout-serious-slider.php:462
|
481 |
+
msgid "Search Slide"
|
482 |
+
msgstr ""
|
483 |
+
|
484 |
+
#: cryout-serious-slider.php:492
|
485 |
+
msgid "Search Sliders"
|
486 |
+
msgstr ""
|
487 |
+
|
488 |
+
#: inc/taxmeta.php:9
|
489 |
+
msgid "Select Images"
|
490 |
+
msgstr ""
|
491 |
+
|
492 |
+
#: cryout-serious-slider.php:172
|
493 |
+
msgid "Select Slider"
|
494 |
+
msgstr ""
|
495 |
+
|
496 |
+
#: cryout-serious-slider.php:329
|
497 |
+
msgid "Select slider"
|
498 |
+
msgstr ""
|
499 |
+
|
500 |
+
#: cryout-serious-slider.php:681
|
501 |
+
#, php-format
|
502 |
+
msgctxt "select terms"
|
503 |
+
msgid "Select %s"
|
504 |
+
msgstr ""
|
505 |
+
|
506 |
+
#: cryout-serious-slider.php:126 cryout-serious-slider.php:169
|
507 |
+
msgid "Serious Slider"
|
508 |
+
msgstr ""
|
509 |
+
|
510 |
+
#: cryout-serious-slider.php:403 cryout-serious-slider.php:622
|
511 |
+
msgid "Set Image"
|
512 |
+
msgstr ""
|
513 |
+
|
514 |
+
#: cryout-serious-slider.php:650 inc/right-column.php:14
|
515 |
+
msgid "Shortcode"
|
516 |
+
msgstr ""
|
517 |
+
|
518 |
+
#: inc/taxmeta.php:79
|
519 |
+
msgid "Show titles"
|
520 |
+
msgstr ""
|
521 |
+
|
522 |
+
#: inc/taxmeta.php:183 inc/taxmeta.php:224
|
523 |
+
msgid "Slide"
|
524 |
+
msgstr ""
|
525 |
+
|
526 |
+
#: cryout-serious-slider.php:545
|
527 |
+
msgid "Slide Image"
|
528 |
+
msgstr ""
|
529 |
+
|
530 |
+
#: inc/meta.php:24
|
531 |
+
msgid "Slide Image Link URL:"
|
532 |
+
msgstr ""
|
533 |
+
|
534 |
+
#: cryout-serious-slider.php:704
|
535 |
+
msgid "Slide Properties"
|
536 |
+
msgstr ""
|
537 |
+
|
538 |
+
#: cryout-serious-slider.php:465
|
539 |
+
msgid "Slide published privately."
|
540 |
+
msgstr ""
|
541 |
+
|
542 |
+
#: cryout-serious-slider.php:464
|
543 |
+
msgid "Slide published."
|
544 |
+
msgstr ""
|
545 |
+
|
546 |
+
#: cryout-serious-slider.php:466
|
547 |
+
msgid "Slide reverted to draft."
|
548 |
+
msgstr ""
|
549 |
+
|
550 |
+
#: cryout-serious-slider.php:467
|
551 |
+
msgid "Slide scheduled."
|
552 |
+
msgstr ""
|
553 |
+
|
554 |
+
#: cryout-serious-slider.php:468
|
555 |
+
msgid "Slide updated."
|
556 |
+
msgstr ""
|
557 |
+
|
558 |
+
#: cryout-serious-slider.php:544
|
559 |
+
msgid "Slider"
|
560 |
+
msgstr ""
|
561 |
+
|
562 |
+
#: inc/taxmeta.php:49
|
563 |
+
msgid "Slider Size"
|
564 |
+
msgstr ""
|
565 |
+
|
566 |
+
#: cryout-serious-slider.php:345 cryout-serious-slider.php:388
|
567 |
+
msgid "Sorry, you are not allowed to edit this item."
|
568 |
+
msgstr ""
|
569 |
+
|
570 |
+
#: inc/taxmeta.php:41
|
571 |
+
msgid "Sort Order"
|
572 |
+
msgstr ""
|
573 |
+
|
574 |
+
#: inc/taxmeta.php:94
|
575 |
+
msgid "Square"
|
576 |
+
msgstr ""
|
577 |
+
|
578 |
+
#: inc/taxmeta.php:101
|
579 |
+
msgid "Style"
|
580 |
+
msgstr ""
|
581 |
+
|
582 |
+
#: inc/about.php:127
|
583 |
+
msgid "Support Forum"
|
584 |
+
msgstr ""
|
585 |
+
|
586 |
+
#: cryout-serious-slider.php:251
|
587 |
+
msgid "Support forum"
|
588 |
+
msgstr ""
|
589 |
+
|
590 |
+
#: inc/taxmeta.php:95
|
591 |
+
msgid "Tall"
|
592 |
+
msgstr ""
|
593 |
+
|
594 |
+
#: cryout-serious-slider.php:490
|
595 |
+
msgctxt "taxonomy general name"
|
596 |
+
msgid "Sliders"
|
597 |
+
msgstr ""
|
598 |
+
|
599 |
+
#: cryout-serious-slider.php:491
|
600 |
+
msgctxt "taxonomy singular name"
|
601 |
+
msgid "Slider"
|
602 |
+
msgstr ""
|
603 |
+
|
604 |
+
#: inc/right-column.php:18
|
605 |
+
msgid "Template"
|
606 |
+
msgstr ""
|
607 |
+
|
608 |
+
#: inc/taxmeta.php:149
|
609 |
+
msgid "Text Shadow"
|
610 |
+
msgstr ""
|
611 |
+
|
612 |
+
#: inc/taxmeta.php:153
|
613 |
+
msgid "Text Style"
|
614 |
+
msgstr ""
|
615 |
+
|
616 |
+
#: cryout-serious-slider.php:866
|
617 |
+
msgid ""
|
618 |
+
"This plugin doesn't collect any kind of data from either website visitors or "
|
619 |
+
"administrators."
|
620 |
+
msgstr ""
|
621 |
+
|
622 |
+
#: inc/about.php:141
|
623 |
+
msgid ""
|
624 |
+
"This will create a sample slider with 3 slides which you can use as a basis "
|
625 |
+
"for your own content."
|
626 |
+
msgstr ""
|
627 |
+
|
628 |
+
#: cryout-serious-slider.php:543
|
629 |
+
msgid "Title"
|
630 |
+
msgstr ""
|
631 |
+
|
632 |
+
#: inc/taxmeta.php:206
|
633 |
+
msgid "Transition Delay"
|
634 |
+
msgstr ""
|
635 |
+
|
636 |
+
#: inc/taxmeta.php:214
|
637 |
+
msgid "Transition Duration"
|
638 |
+
msgstr ""
|
639 |
+
|
640 |
+
#: inc/taxmeta.php:191
|
641 |
+
msgid "Transition Effect"
|
642 |
+
msgstr ""
|
643 |
+
|
644 |
+
#: inc/taxmeta.php:199
|
645 |
+
msgid "Transition Pause on Hover"
|
646 |
+
msgstr ""
|
647 |
+
|
648 |
+
#: inc/taxmeta.php:185
|
649 |
+
msgid "Underslide"
|
650 |
+
msgstr ""
|
651 |
+
|
652 |
+
#: cryout-serious-slider.php:497
|
653 |
+
msgid "Update Slider"
|
654 |
+
msgstr ""
|
655 |
+
|
656 |
+
#: inc/right-column.php:19
|
657 |
+
msgid "Use the PHP code to include the slider directly in files"
|
658 |
+
msgstr ""
|
659 |
+
|
660 |
+
#: inc/right-column.php:15
|
661 |
+
msgid "Use the shortcode to include the slider in posts, pages or widgets"
|
662 |
+
msgstr ""
|
663 |
+
|
664 |
+
#: inc/about.php:113
|
665 |
+
#, php-format
|
666 |
+
msgid "version: %s"
|
667 |
+
msgstr ""
|
668 |
+
|
669 |
+
#: inc/taxmeta.php:188
|
670 |
+
msgid "Vertical Flip"
|
671 |
+
msgstr ""
|
672 |
+
|
673 |
+
#: cryout-serious-slider.php:460
|
674 |
+
msgid "View Slide"
|
675 |
+
msgstr ""
|
676 |
+
|
677 |
+
#: inc/taxmeta.php:56
|
678 |
+
msgid "Width"
|
679 |
+
msgstr ""
|
680 |
+
|
681 |
+
#: inc/about.php:23
|
682 |
+
msgid "You do not have sufficient permissions to create sample content."
|
683 |
+
msgstr ""
|
684 |
+
|
685 |
+
#: inc/taxmeta.php:226
|
686 |
+
msgid "Zoom In"
|
687 |
+
msgstr ""
|
688 |
+
|
689 |
+
#: inc/taxmeta.php:227
|
690 |
+
msgid "Zoom Out"
|
691 |
+
msgstr ""
|
languages/default.mo
DELETED
Binary file
|
languages/default.po
DELETED
@@ -1,574 +0,0 @@
|
|
1 |
-
msgid ""
|
2 |
-
msgstr ""
|
3 |
-
"Project-Id-Version: Cryout Serious Slider\n"
|
4 |
-
"POT-Creation-Date: 2017-10-26 12:19+0200\n"
|
5 |
-
"PO-Revision-Date: 2017-10-26 12:20+0200\n"
|
6 |
-
"Last-Translator: Cryout Creations\n"
|
7 |
-
"Language-Team: Cryout Creations\n"
|
8 |
-
"Language: en_US\n"
|
9 |
-
"MIME-Version: 1.0\n"
|
10 |
-
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
-
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"X-Generator: Poedit 1.5.5\n"
|
13 |
-
"X-Poedit-KeywordsList: _e;_x;_n;__\n"
|
14 |
-
"X-Poedit-Basepath: .\n"
|
15 |
-
"X-Poedit-SearchPath-0: ..\n"
|
16 |
-
|
17 |
-
#: ../cryout-serious-slider.php:118 ../cryout-serious-slider.php:157
|
18 |
-
#: ../cryout-serious-slider.php:439
|
19 |
-
msgid "Serious Slider"
|
20 |
-
msgstr ""
|
21 |
-
|
22 |
-
#: ../cryout-serious-slider.php:154
|
23 |
-
msgid "Retrieving sliders..."
|
24 |
-
msgstr ""
|
25 |
-
|
26 |
-
#: ../cryout-serious-slider.php:155
|
27 |
-
msgid "Error retrieving sliders"
|
28 |
-
msgstr ""
|
29 |
-
|
30 |
-
#: ../cryout-serious-slider.php:156
|
31 |
-
msgid "Cryout Serious Slider"
|
32 |
-
msgstr ""
|
33 |
-
|
34 |
-
#: ../cryout-serious-slider.php:158
|
35 |
-
msgid "Insert Slider"
|
36 |
-
msgstr ""
|
37 |
-
|
38 |
-
#: ../cryout-serious-slider.php:159
|
39 |
-
msgid "Cancel"
|
40 |
-
msgstr ""
|
41 |
-
|
42 |
-
#: ../cryout-serious-slider.php:160
|
43 |
-
msgid "Select Slider"
|
44 |
-
msgstr ""
|
45 |
-
|
46 |
-
#: ../cryout-serious-slider.php:161 ../cryout-serious-slider.php:774
|
47 |
-
msgid "Add Slider"
|
48 |
-
msgstr ""
|
49 |
-
|
50 |
-
#: ../cryout-serious-slider.php:214
|
51 |
-
msgid "About"
|
52 |
-
msgstr ""
|
53 |
-
|
54 |
-
#: ../cryout-serious-slider.php:226
|
55 |
-
msgid "About Plugin"
|
56 |
-
msgstr ""
|
57 |
-
|
58 |
-
#: ../cryout-serious-slider.php:235
|
59 |
-
msgid "Plugin homepage"
|
60 |
-
msgstr ""
|
61 |
-
|
62 |
-
#: ../cryout-serious-slider.php:236
|
63 |
-
msgid "Support forum"
|
64 |
-
msgstr ""
|
65 |
-
|
66 |
-
#: ../cryout-serious-slider.php:237
|
67 |
-
msgid "Changelog"
|
68 |
-
msgstr ""
|
69 |
-
|
70 |
-
#: ../cryout-serious-slider.php:273
|
71 |
-
msgid "No sliders available. Create a slider first..."
|
72 |
-
msgstr ""
|
73 |
-
|
74 |
-
#: ../cryout-serious-slider.php:314
|
75 |
-
msgid "Select slider"
|
76 |
-
msgstr ""
|
77 |
-
|
78 |
-
#: ../cryout-serious-slider.php:321 ../cryout-serious-slider.php:480
|
79 |
-
msgid "Manage Sliders"
|
80 |
-
msgstr ""
|
81 |
-
|
82 |
-
#: ../cryout-serious-slider.php:330 ../cryout-serious-slider.php:373
|
83 |
-
msgid "Sorry, you are not allowed to edit this item."
|
84 |
-
msgstr ""
|
85 |
-
|
86 |
-
#: ../cryout-serious-slider.php:346 ../cryout-serious-slider.php:562
|
87 |
-
#, php-format
|
88 |
-
msgid "Change image for \"%s\""
|
89 |
-
msgstr ""
|
90 |
-
|
91 |
-
#: ../cryout-serious-slider.php:348
|
92 |
-
msgid "Change Image"
|
93 |
-
msgstr ""
|
94 |
-
|
95 |
-
#: ../cryout-serious-slider.php:355 ../cryout-serious-slider.php:571
|
96 |
-
#, php-format
|
97 |
-
msgid "Remove image from \"%s\""
|
98 |
-
msgstr ""
|
99 |
-
|
100 |
-
#: ../cryout-serious-slider.php:356
|
101 |
-
msgid "Remove Image"
|
102 |
-
msgstr ""
|
103 |
-
|
104 |
-
#: ../cryout-serious-slider.php:387 ../cryout-serious-slider.php:586
|
105 |
-
#, php-format
|
106 |
-
msgid "Set image for \"%s\""
|
107 |
-
msgstr ""
|
108 |
-
|
109 |
-
#: ../cryout-serious-slider.php:388 ../cryout-serious-slider.php:587
|
110 |
-
msgid "Set Image"
|
111 |
-
msgstr ""
|
112 |
-
|
113 |
-
#: ../cryout-serious-slider.php:389 ../cryout-serious-slider.php:544
|
114 |
-
#: ../cryout-serious-slider.php:588 ../inc/taxmeta.php:115
|
115 |
-
#: ../inc/taxmeta.php:181
|
116 |
-
msgid "None"
|
117 |
-
msgstr ""
|
118 |
-
|
119 |
-
#: ../cryout-serious-slider.php:424
|
120 |
-
msgid "Description."
|
121 |
-
msgstr ""
|
122 |
-
|
123 |
-
#: ../cryout-serious-slider.php:437
|
124 |
-
msgid "Slides"
|
125 |
-
msgstr ""
|
126 |
-
|
127 |
-
#: ../cryout-serious-slider.php:438 ../inc/taxmeta.php:142
|
128 |
-
#: ../inc/taxmeta.php:183
|
129 |
-
msgid "Slide"
|
130 |
-
msgstr ""
|
131 |
-
|
132 |
-
#: ../cryout-serious-slider.php:440
|
133 |
-
msgid "Serious Slide"
|
134 |
-
msgstr ""
|
135 |
-
|
136 |
-
#: ../cryout-serious-slider.php:441 ../cryout-serious-slider.php:442
|
137 |
-
msgid "Add New Slide"
|
138 |
-
msgstr ""
|
139 |
-
|
140 |
-
#: ../cryout-serious-slider.php:443
|
141 |
-
msgid "New Slide"
|
142 |
-
msgstr ""
|
143 |
-
|
144 |
-
#: ../cryout-serious-slider.php:444
|
145 |
-
msgid "Edit Slide"
|
146 |
-
msgstr ""
|
147 |
-
|
148 |
-
#: ../cryout-serious-slider.php:445
|
149 |
-
msgid "View Slide"
|
150 |
-
msgstr ""
|
151 |
-
|
152 |
-
#: ../cryout-serious-slider.php:446
|
153 |
-
msgid "All Slides"
|
154 |
-
msgstr ""
|
155 |
-
|
156 |
-
#: ../cryout-serious-slider.php:447
|
157 |
-
msgid "Search Slide"
|
158 |
-
msgstr ""
|
159 |
-
|
160 |
-
#: ../cryout-serious-slider.php:448
|
161 |
-
msgid "Parent Slides:"
|
162 |
-
msgstr ""
|
163 |
-
|
164 |
-
#: ../cryout-serious-slider.php:449
|
165 |
-
#, php-format
|
166 |
-
msgid ""
|
167 |
-
"No slides found. Go ahead and add <a href=\"%1$s\">add some</a> or <a href="
|
168 |
-
"\"%2$s\">load sample content</a>."
|
169 |
-
msgstr ""
|
170 |
-
|
171 |
-
#: ../cryout-serious-slider.php:450
|
172 |
-
msgid "No slides found in Trash."
|
173 |
-
msgstr ""
|
174 |
-
|
175 |
-
#: ../cryout-serious-slider.php:470
|
176 |
-
msgid "Sliders"
|
177 |
-
msgstr ""
|
178 |
-
|
179 |
-
#: ../cryout-serious-slider.php:471 ../cryout-serious-slider.php:509
|
180 |
-
msgid "Slider"
|
181 |
-
msgstr ""
|
182 |
-
|
183 |
-
#: ../cryout-serious-slider.php:472
|
184 |
-
msgid "Search Sliders"
|
185 |
-
msgstr ""
|
186 |
-
|
187 |
-
#: ../cryout-serious-slider.php:473
|
188 |
-
msgid "All Sliders"
|
189 |
-
msgstr ""
|
190 |
-
|
191 |
-
#: ../cryout-serious-slider.php:474
|
192 |
-
msgid "Parent Slider"
|
193 |
-
msgstr ""
|
194 |
-
|
195 |
-
#: ../cryout-serious-slider.php:475
|
196 |
-
msgid "Parent Slider:"
|
197 |
-
msgstr ""
|
198 |
-
|
199 |
-
#: ../cryout-serious-slider.php:476
|
200 |
-
msgid "Edit Slider"
|
201 |
-
msgstr ""
|
202 |
-
|
203 |
-
#: ../cryout-serious-slider.php:477
|
204 |
-
msgid "Update Slider"
|
205 |
-
msgstr ""
|
206 |
-
|
207 |
-
#: ../cryout-serious-slider.php:478
|
208 |
-
msgid "Add New Slider"
|
209 |
-
msgstr ""
|
210 |
-
|
211 |
-
#: ../cryout-serious-slider.php:479
|
212 |
-
msgid "New Slider"
|
213 |
-
msgstr ""
|
214 |
-
|
215 |
-
#: ../cryout-serious-slider.php:481
|
216 |
-
msgid "No sliders found"
|
217 |
-
msgstr ""
|
218 |
-
|
219 |
-
#: ../cryout-serious-slider.php:508
|
220 |
-
msgid "Title"
|
221 |
-
msgstr ""
|
222 |
-
|
223 |
-
#: ../cryout-serious-slider.php:510
|
224 |
-
msgid "Slide Image"
|
225 |
-
msgstr ""
|
226 |
-
|
227 |
-
#: ../cryout-serious-slider.php:511
|
228 |
-
msgid "Date"
|
229 |
-
msgstr ""
|
230 |
-
|
231 |
-
#: ../cryout-serious-slider.php:512
|
232 |
-
msgid "Order"
|
233 |
-
msgstr ""
|
234 |
-
|
235 |
-
#: ../cryout-serious-slider.php:535
|
236 |
-
msgid "Edit slider"
|
237 |
-
msgstr ""
|
238 |
-
|
239 |
-
#: ../cryout-serious-slider.php:564
|
240 |
-
msgid "Change"
|
241 |
-
msgstr ""
|
242 |
-
|
243 |
-
#: ../cryout-serious-slider.php:572
|
244 |
-
msgid "Remove"
|
245 |
-
msgstr ""
|
246 |
-
|
247 |
-
#: ../cryout-serious-slider.php:615 ../inc/right-column.php:7
|
248 |
-
msgid "Shortcode"
|
249 |
-
msgstr ""
|
250 |
-
|
251 |
-
#: ../cryout-serious-slider.php:646
|
252 |
-
#, php-format
|
253 |
-
msgid "Select %s"
|
254 |
-
msgstr ""
|
255 |
-
|
256 |
-
#: ../cryout-serious-slider.php:669
|
257 |
-
msgid "Slide Properties"
|
258 |
-
msgstr ""
|
259 |
-
|
260 |
-
#: ../cryout-serious-slider.php:772
|
261 |
-
msgid "Insert Serious Slider into post"
|
262 |
-
msgstr ""
|
263 |
-
|
264 |
-
#: ../inc/meta.php:5
|
265 |
-
#, php-format
|
266 |
-
msgid "Button %s Label:"
|
267 |
-
msgstr ""
|
268 |
-
|
269 |
-
#: ../inc/meta.php:8
|
270 |
-
msgid "Link URL:"
|
271 |
-
msgstr ""
|
272 |
-
|
273 |
-
#: ../inc/meta.php:12 ../inc/meta.php:21
|
274 |
-
msgid "Open in New Window"
|
275 |
-
msgstr ""
|
276 |
-
|
277 |
-
#: ../inc/meta.php:17
|
278 |
-
msgid "Slide Image Link URL:"
|
279 |
-
msgstr ""
|
280 |
-
|
281 |
-
#: ../inc/meta.php:23
|
282 |
-
msgid "Leave fields empty to disable elements."
|
283 |
-
msgstr ""
|
284 |
-
|
285 |
-
#: ../inc/right-column.php:6
|
286 |
-
msgid "« Manage Slides »"
|
287 |
-
msgstr ""
|
288 |
-
|
289 |
-
#: ../inc/right-column.php:8
|
290 |
-
msgid "Use the shortcode to include the slider in posts, pages or widgets"
|
291 |
-
msgstr ""
|
292 |
-
|
293 |
-
#: ../inc/right-column.php:11
|
294 |
-
msgid "Template"
|
295 |
-
msgstr ""
|
296 |
-
|
297 |
-
#: ../inc/right-column.php:12
|
298 |
-
msgid "Use the PHP code to include the slider directly in files"
|
299 |
-
msgstr ""
|
300 |
-
|
301 |
-
#: ../inc/settings.php:14
|
302 |
-
msgid "Sample slider created."
|
303 |
-
msgstr ""
|
304 |
-
|
305 |
-
#: ../inc/settings.php:15
|
306 |
-
msgid "Navigate to Slider and Slides sections to see the sample content."
|
307 |
-
msgstr ""
|
308 |
-
|
309 |
-
#: ../inc/settings.php:16 ../inc/settings.php:21
|
310 |
-
msgid "Dismiss this notice."
|
311 |
-
msgstr ""
|
312 |
-
|
313 |
-
#: ../inc/settings.php:20
|
314 |
-
msgid "You do not have sufficient permissions to create sample content."
|
315 |
-
msgstr ""
|
316 |
-
|
317 |
-
#: ../inc/settings.php:68
|
318 |
-
#, php-format
|
319 |
-
msgid "version: %s"
|
320 |
-
msgstr ""
|
321 |
-
|
322 |
-
#: ../inc/settings.php:69
|
323 |
-
msgid "by"
|
324 |
-
msgstr ""
|
325 |
-
|
326 |
-
#: ../inc/settings.php:77
|
327 |
-
msgid "Support"
|
328 |
-
msgstr ""
|
329 |
-
|
330 |
-
#: ../inc/settings.php:80
|
331 |
-
msgid "Need help?"
|
332 |
-
msgstr ""
|
333 |
-
|
334 |
-
#: ../inc/settings.php:81
|
335 |
-
msgid "Priority Support"
|
336 |
-
msgstr ""
|
337 |
-
|
338 |
-
#: ../inc/settings.php:82
|
339 |
-
msgid "Support Forum"
|
340 |
-
msgstr ""
|
341 |
-
|
342 |
-
#: ../inc/settings.php:89
|
343 |
-
msgid "Demo Content"
|
344 |
-
msgstr ""
|
345 |
-
|
346 |
-
#: ../inc/settings.php:94
|
347 |
-
msgid "Create Sample Slider"
|
348 |
-
msgstr ""
|
349 |
-
|
350 |
-
#: ../inc/settings.php:96
|
351 |
-
msgid ""
|
352 |
-
"This will create a sample slider with 3 slides which you can use as a basis "
|
353 |
-
"for your own content."
|
354 |
-
msgstr ""
|
355 |
-
|
356 |
-
#: ../inc/shortcodes.php:313
|
357 |
-
msgid "Previous"
|
358 |
-
msgstr ""
|
359 |
-
|
360 |
-
#: ../inc/shortcodes.php:317
|
361 |
-
msgid "Next"
|
362 |
-
msgstr ""
|
363 |
-
|
364 |
-
#: ../inc/taxmeta.php:4
|
365 |
-
msgid "Select Images"
|
366 |
-
msgstr ""
|
367 |
-
|
368 |
-
#: ../inc/taxmeta.php:9
|
369 |
-
msgid "General"
|
370 |
-
msgstr ""
|
371 |
-
|
372 |
-
#: ../inc/taxmeta.php:10
|
373 |
-
msgid "Appearance"
|
374 |
-
msgstr ""
|
375 |
-
|
376 |
-
#: ../inc/taxmeta.php:11
|
377 |
-
msgid "Animation"
|
378 |
-
msgstr ""
|
379 |
-
|
380 |
-
#: ../inc/taxmeta.php:22
|
381 |
-
msgid "by date"
|
382 |
-
msgstr ""
|
383 |
-
|
384 |
-
#: ../inc/taxmeta.php:22
|
385 |
-
msgid "by order value"
|
386 |
-
msgstr ""
|
387 |
-
|
388 |
-
#: ../inc/taxmeta.php:24
|
389 |
-
msgid "Sort Order"
|
390 |
-
msgstr ""
|
391 |
-
|
392 |
-
#: ../inc/taxmeta.php:30
|
393 |
-
msgid "Adapt to images"
|
394 |
-
msgstr ""
|
395 |
-
|
396 |
-
#: ../inc/taxmeta.php:30
|
397 |
-
msgid "Force constraints"
|
398 |
-
msgstr ""
|
399 |
-
|
400 |
-
#: ../inc/taxmeta.php:32
|
401 |
-
msgid "Slider Size"
|
402 |
-
msgstr ""
|
403 |
-
|
404 |
-
#: ../inc/taxmeta.php:39
|
405 |
-
msgid "Width"
|
406 |
-
msgstr ""
|
407 |
-
|
408 |
-
#: ../inc/taxmeta.php:47
|
409 |
-
msgid "Height"
|
410 |
-
msgstr ""
|
411 |
-
|
412 |
-
#: ../inc/taxmeta.php:58
|
413 |
-
msgid "Light"
|
414 |
-
msgstr ""
|
415 |
-
|
416 |
-
#: ../inc/taxmeta.php:59
|
417 |
-
msgid "Light 2"
|
418 |
-
msgstr ""
|
419 |
-
|
420 |
-
#: ../inc/taxmeta.php:60
|
421 |
-
msgid "Dark"
|
422 |
-
msgstr ""
|
423 |
-
|
424 |
-
#: ../inc/taxmeta.php:61
|
425 |
-
msgid "Square"
|
426 |
-
msgstr ""
|
427 |
-
|
428 |
-
#: ../inc/taxmeta.php:62
|
429 |
-
msgid "Tall"
|
430 |
-
msgstr ""
|
431 |
-
|
432 |
-
#: ../inc/taxmeta.php:63
|
433 |
-
msgid "Caption Left"
|
434 |
-
msgstr ""
|
435 |
-
|
436 |
-
#: ../inc/taxmeta.php:64
|
437 |
-
msgid "Caption Bottom"
|
438 |
-
msgstr ""
|
439 |
-
|
440 |
-
#: ../inc/taxmeta.php:65
|
441 |
-
msgid "Cryout Theme"
|
442 |
-
msgstr ""
|
443 |
-
|
444 |
-
#: ../inc/taxmeta.php:68
|
445 |
-
msgid "Style"
|
446 |
-
msgstr ""
|
447 |
-
|
448 |
-
#: ../inc/taxmeta.php:74
|
449 |
-
msgid "Always hidden"
|
450 |
-
msgstr ""
|
451 |
-
|
452 |
-
#: ../inc/taxmeta.php:75
|
453 |
-
msgid "Appear on hover"
|
454 |
-
msgstr ""
|
455 |
-
|
456 |
-
#: ../inc/taxmeta.php:76
|
457 |
-
msgid "Always visible"
|
458 |
-
msgstr ""
|
459 |
-
|
460 |
-
#: ../inc/taxmeta.php:79
|
461 |
-
msgid "Bullets and Navigation"
|
462 |
-
msgstr ""
|
463 |
-
|
464 |
-
#: ../inc/taxmeta.php:86
|
465 |
-
msgid "Base Font Size"
|
466 |
-
msgstr ""
|
467 |
-
|
468 |
-
#: ../inc/taxmeta.php:95
|
469 |
-
msgid "Left"
|
470 |
-
msgstr ""
|
471 |
-
|
472 |
-
#: ../inc/taxmeta.php:96
|
473 |
-
msgid "Center"
|
474 |
-
msgstr ""
|
475 |
-
|
476 |
-
#: ../inc/taxmeta.php:97
|
477 |
-
msgid "Right"
|
478 |
-
msgstr ""
|
479 |
-
|
480 |
-
#: ../inc/taxmeta.php:98
|
481 |
-
msgid "Justify"
|
482 |
-
msgstr ""
|
483 |
-
|
484 |
-
#: ../inc/taxmeta.php:101
|
485 |
-
msgid "Caption Alignment"
|
486 |
-
msgstr ""
|
487 |
-
|
488 |
-
#: ../inc/taxmeta.php:108
|
489 |
-
msgid "Caption Width"
|
490 |
-
msgstr ""
|
491 |
-
|
492 |
-
#: ../inc/taxmeta.php:116
|
493 |
-
msgid "Text Shadow"
|
494 |
-
msgstr ""
|
495 |
-
|
496 |
-
#: ../inc/taxmeta.php:117
|
497 |
-
msgid "Background Color"
|
498 |
-
msgstr ""
|
499 |
-
|
500 |
-
#: ../inc/taxmeta.php:120
|
501 |
-
msgid "Text Style"
|
502 |
-
msgstr ""
|
503 |
-
|
504 |
-
#: ../inc/taxmeta.php:127
|
505 |
-
msgid "Accent Color"
|
506 |
-
msgstr ""
|
507 |
-
|
508 |
-
#: ../inc/taxmeta.php:141 ../inc/taxmeta.php:182
|
509 |
-
msgid "Fade"
|
510 |
-
msgstr ""
|
511 |
-
|
512 |
-
#: ../inc/taxmeta.php:143
|
513 |
-
msgid "Overslide"
|
514 |
-
msgstr ""
|
515 |
-
|
516 |
-
#: ../inc/taxmeta.php:144
|
517 |
-
msgid "Underslide"
|
518 |
-
msgstr ""
|
519 |
-
|
520 |
-
#: ../inc/taxmeta.php:145
|
521 |
-
msgid "Parallax"
|
522 |
-
msgstr ""
|
523 |
-
|
524 |
-
#: ../inc/taxmeta.php:146
|
525 |
-
msgid "Horizontal Flip"
|
526 |
-
msgstr ""
|
527 |
-
|
528 |
-
#: ../inc/taxmeta.php:147
|
529 |
-
msgid "Vertical Flip"
|
530 |
-
msgstr ""
|
531 |
-
|
532 |
-
#: ../inc/taxmeta.php:150
|
533 |
-
msgid "Transition Effect"
|
534 |
-
msgstr ""
|
535 |
-
|
536 |
-
#: ../inc/taxmeta.php:156
|
537 |
-
msgid "Enabled"
|
538 |
-
msgstr ""
|
539 |
-
|
540 |
-
#: ../inc/taxmeta.php:156
|
541 |
-
msgid "Disabled"
|
542 |
-
msgstr ""
|
543 |
-
|
544 |
-
#: ../inc/taxmeta.php:158
|
545 |
-
msgid "Transition Pause on Hover"
|
546 |
-
msgstr ""
|
547 |
-
|
548 |
-
#: ../inc/taxmeta.php:165
|
549 |
-
msgid "Transition Delay"
|
550 |
-
msgstr ""
|
551 |
-
|
552 |
-
#: ../inc/taxmeta.php:173
|
553 |
-
msgid "Transition Duration"
|
554 |
-
msgstr ""
|
555 |
-
|
556 |
-
#: ../inc/taxmeta.php:184
|
557 |
-
msgid "Blur"
|
558 |
-
msgstr ""
|
559 |
-
|
560 |
-
#: ../inc/taxmeta.php:185
|
561 |
-
msgid "Zoom In"
|
562 |
-
msgstr ""
|
563 |
-
|
564 |
-
#: ../inc/taxmeta.php:186
|
565 |
-
msgid "Zoom Out"
|
566 |
-
msgstr ""
|
567 |
-
|
568 |
-
#: ../inc/taxmeta.php:189
|
569 |
-
msgid "Caption Text Animation"
|
570 |
-
msgstr ""
|
571 |
-
|
572 |
-
#: ../inc/widgets.php:26
|
573 |
-
msgid "Displayed Slider"
|
574 |
-
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
readme.txt
CHANGED
@@ -6,8 +6,8 @@ License URI: http://www.gnu.org/licenses/gpl.html
|
|
6 |
Tags: slider, slideshow, image slider, responsive slider, wordpress slider
|
7 |
Text Domain: cryout-serious-slider
|
8 |
Requires at least: 4.2
|
9 |
-
Tested up to: 4.
|
10 |
-
Stable tag: 1.
|
11 |
|
12 |
Serious Slider is a highly efficient SEO friendly fully translatable accessibility ready free image slider for WordPress. Seriously!
|
13 |
|
@@ -99,6 +99,14 @@ Serious Slider works with all WordPress themes and has been designed to integrat
|
|
99 |
|
100 |
== Changelog ==
|
101 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
102 |
= 1.1.1 =
|
103 |
* Added option to disable slider transitions autoplay
|
104 |
* Added option to hide slider captions
|
6 |
Tags: slider, slideshow, image slider, responsive slider, wordpress slider
|
7 |
Text Domain: cryout-serious-slider
|
8 |
Requires at least: 4.2
|
9 |
+
Tested up to: 5.4.1
|
10 |
+
Stable tag: 1.2.0
|
11 |
|
12 |
Serious Slider is a highly efficient SEO friendly fully translatable accessibility ready free image slider for WordPress. Seriously!
|
13 |
|
99 |
|
100 |
== Changelog ==
|
101 |
|
102 |
+
= 1.2.0 =
|
103 |
+
* Added the third 'forced' images size mode for sliders
|
104 |
+
* Added forced support for Polylang multilingual plugin
|
105 |
+
* Added privacy policy info
|
106 |
+
* Updated plugin dashboard menu icon
|
107 |
+
* Fixed 'cryout_serious_slider_buttoncount' filter
|
108 |
+
* Fixed 'Deprecated: media_buttons_context' notice
|
109 |
+
|
110 |
= 1.1.1 =
|
111 |
* Added option to disable slider transitions autoplay
|
112 |
* Added option to hide slider captions
|
resources/backend.css
CHANGED
@@ -119,7 +119,7 @@
|
|
119 |
.edit-tag-actions .button-primary,
|
120 |
.form-wrap .submit .button-primary {
|
121 |
height: auto;
|
122 |
-
margin-top:
|
123 |
padding: .5em 2em;
|
124 |
float: right;
|
125 |
}
|
@@ -130,6 +130,11 @@ body:not(.edit-tags-php) .seriousslider-new-slider-button .button-primary,
|
|
130 |
display: none;
|
131 |
}
|
132 |
|
|
|
|
|
|
|
|
|
|
|
133 |
.edit-tag-actions #delete-link {
|
134 |
display: none;
|
135 |
}
|
119 |
.edit-tag-actions .button-primary,
|
120 |
.form-wrap .submit .button-primary {
|
121 |
height: auto;
|
122 |
+
margin-top: 1em;
|
123 |
padding: .5em 2em;
|
124 |
float: right;
|
125 |
}
|
130 |
display: none;
|
131 |
}
|
132 |
|
133 |
+
.edit-tag-actions {
|
134 |
+
overflow: auto;
|
135 |
+
margin-top: 0;
|
136 |
+
}
|
137 |
+
|
138 |
.edit-tag-actions #delete-link {
|
139 |
display: none;
|
140 |
}
|
resources/images/serious-slider-icon.svg
ADDED
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
2 |
+
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
3 |
+
<svg
|
4 |
+
xmlns:svg="http://www.w3.org/2000/svg"
|
5 |
+
xmlns="http://www.w3.org/2000/svg"
|
6 |
+
version="1.0"
|
7 |
+
width="16"
|
8 |
+
height="16"
|
9 |
+
id="svg2">
|
10 |
+
<defs
|
11 |
+
id="defs5" />
|
12 |
+
<path
|
13 |
+
d="M 6.4106436,15.346774 C 6.1681096,14.989304 5.9700996,14.670694 5.9706216,14.638734 C 5.9711656,14.605534 6.1320696,14.457684 6.3459896,14.293824 C 6.8591566,13.900744 7.2488816,13.484214 7.3939356,13.173814 C 7.7330386,12.448154 7.6137576,11.648244 7.0162656,10.641104 C 6.9213836,10.481164 6.6294106,10.051864 6.3674376,9.6870835 C 5.7707336,8.8562236 5.4671256,8.3540336 5.2295716,7.8049536 C 4.9375116,7.1298836 4.8082506,6.6306636 4.7468856,5.9407436 C 4.6477796,4.8265236 4.9761006,3.4905136 5.6278956,2.3557336 C 6.0226086,1.6685336 6.6997026,0.84837363 7.3644976,0.25218367 C 7.6787646,-0.029646332 7.6820296,-0.031486332 7.7628176,0.027483668 C 7.8076176,0.060193668 8.0632306,0.25688367 8.3308476,0.46457367 C 8.5984637,0.67226363 9.3423257,1.2295636 9.9838737,1.7030136 C 10.625423,2.1764736 11.150326,2.5848036 11.150326,2.6104236 C 11.150326,2.6360536 11.081545,2.7090536 10.99748,2.7726536 C 10.70216,2.9960936 10.149172,3.4933636 9.8780397,3.7792936 C 9.0167757,4.6875936 8.6520887,5.7466136 8.8628597,6.7272936 C 8.9760317,7.2538736 9.1840747,7.6987236 9.8808997,8.9041636 C 10.489282,9.9566135 10.688205,10.472564 10.721801,11.085234 C 10.805041,12.603244 10.078537,13.961904 8.6082657,15.037814 C 8.2472356,15.302014 7.0204846,15.996704 6.9149766,15.996704 C 6.8704926,15.996704 6.7202376,15.803074 6.4106436,15.346774 z"
|
14 |
+
id="path2388"
|
15 |
+
style="fill:#ffffff" />
|
16 |
+
</svg>
|
resources/slider.js
CHANGED
@@ -313,8 +313,6 @@ if (typeof jQuery === 'undefined') {
|
|
313 |
.on('click.bs.carousel.data-api', '[data-slide]', clickHandler)
|
314 |
.on('click.bs.carousel.data-api', '[data-slide-to]', clickHandler)
|
315 |
|
316 |
-
|
317 |
-
|
318 |
/*$(window).on('load', function () {
|
319 |
$('[data-ride="carousel"]').each(function () {
|
320 |
var $carousel = $(this)
|
@@ -324,6 +322,23 @@ if (typeof jQuery === 'undefined') {
|
|
324 |
|
325 |
}(jQuery);
|
326 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
327 |
/* swipe support for mobile devices */
|
328 |
jQuery(document).ready(function() {
|
329 |
jQuery(".cryout-serious-slider").swiperight(function() {
|
@@ -334,4 +349,4 @@ jQuery(document).ready(function() {
|
|
334 |
});
|
335 |
});
|
336 |
|
337 |
-
/* FIN */
|
313 |
.on('click.bs.carousel.data-api', '[data-slide]', clickHandler)
|
314 |
.on('click.bs.carousel.data-api', '[data-slide-to]', clickHandler)
|
315 |
|
|
|
|
|
316 |
/*$(window).on('load', function () {
|
317 |
$('[data-ride="carousel"]').each(function () {
|
318 |
var $carousel = $(this)
|
322 |
|
323 |
}(jQuery);
|
324 |
|
325 |
+
/* zoom helper function for responsiveness */
|
326 |
+
/* jQuery.fn.cryZoom = function(level, origin) {
|
327 |
+
origin = origin ? origin : 'center center';
|
328 |
+
jQuery(this).data('zoom', level);
|
329 |
+
return jQuery(this).css({
|
330 |
+
// 'zoom': level, // Doesn't work correctly for mobiles
|
331 |
+
'-moz-transform': 'scale('+ level+ ')',
|
332 |
+
'-moz-transform-origin': origin,
|
333 |
+
'-o-transform': 'scale('+ level+ ')',
|
334 |
+
'-o-transform-origin': origin,
|
335 |
+
'-webkit-transform': 'scale('+ level+ ')',
|
336 |
+
'-webkit-transform-origin': origin,
|
337 |
+
'transform': 'scale('+ level+ ')',
|
338 |
+
'transform-origin': origin
|
339 |
+
});
|
340 |
+
}; */
|
341 |
+
|
342 |
/* swipe support for mobile devices */
|
343 |
jQuery(document).ready(function() {
|
344 |
jQuery(".cryout-serious-slider").swiperight(function() {
|
349 |
});
|
350 |
});
|
351 |
|
352 |
+
/* FIN */
|