Version Description
If you have Smooth Slider 2.6 or plus, kindly update to 2.6.3 for proper height calcualtion for responsiveness.
= Before Upgrading =
- Note the Title and Content fonts on your old Smooth Slider.
- Go to 'Settings' panel and 'Save Changes'.
- Recheck the Slider Title, Post Title and the Slider Content fonts on the Settings Panel.
Get older versions
Download this release
Release Info
Developer | internet techies |
Plugin | Smooth Slider |
Version | 2.8.3 |
Comparing to | |
See all releases |
Code changes from version 2.8.2 to 2.8.3
- readme.txt +7 -2
- smooth-slider.php +8 -3
- tmp-smooth-slider-readme.pot +967 -0
- tmp-smooth-slider.pot +927 -0
readme.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: internet techies, slidervilla
|
|
3 |
Donate link: http://www.clickonf5.org/go/smooth-slider/
|
4 |
Tags: best slider plugin, carousel, carousel slider, coin slider, content slider, content slideshow, custom video slider, flex slider, free video slider, free video slideshow, Horizontal slider, Image Rotator, image slider, image slideshow, javascript slider, javascript slideshow, jquery slider, jquery slideshow, Photo Slider, posts slider, responsive slider, responsive slideshow, sidebar, slide, slide show, slider, slider plugin, slider widget, slides, slideshow,slideshow manager, slideshow plugin, vertical slider, video slider, video slideshow,vimeo slideshow, vimeo slider, widget slider, widget slideshow, wordpress slider, wordpress slideshow, wp slider, youtube slider, youtube slideshow, post slider, fullscreen Slider, css3 slider, responsive image slider, banner slider, social slider, cycle slider, text slider, revolution slider, thumbnail slider, touch slider, sliders, parallax slider, coinslider, featured-content-slider, image, images, picture, pictures, picture slider, responsive, shortcode, widget, vertical slides, autoplay, auto, jquery, rotate, flexslider, gallery, photo gallery, javascript, rotator, wordpress picture slider, wordpress responsive slider, animation, best slider, fullwidth slider, mobile slider, swipe, layer, layer slider, product slider, mp3, video
|
5 |
Requires at least: 3.0
|
6 |
-
Tested up to: 4.
|
7 |
-
Stable tag: 2.8.
|
8 |
License: GPLv2 or later
|
9 |
|
10 |
Responsive WordPress Slider for Featured Content, Videos and Media Images
|
@@ -151,6 +151,11 @@ Check the other FAQs on Smooth [Slider Documetation on SliderVilla](http://guide
|
|
151 |
|
152 |
|
153 |
== Changelog ==
|
|
|
|
|
|
|
|
|
|
|
154 |
Version 2.8.2 (11/25/2015)
|
155 |
|
156 |
1. New: WPML compatability
|
3 |
Donate link: http://www.clickonf5.org/go/smooth-slider/
|
4 |
Tags: best slider plugin, carousel, carousel slider, coin slider, content slider, content slideshow, custom video slider, flex slider, free video slider, free video slideshow, Horizontal slider, Image Rotator, image slider, image slideshow, javascript slider, javascript slideshow, jquery slider, jquery slideshow, Photo Slider, posts slider, responsive slider, responsive slideshow, sidebar, slide, slide show, slider, slider plugin, slider widget, slides, slideshow,slideshow manager, slideshow plugin, vertical slider, video slider, video slideshow,vimeo slideshow, vimeo slider, widget slider, widget slideshow, wordpress slider, wordpress slideshow, wp slider, youtube slider, youtube slideshow, post slider, fullscreen Slider, css3 slider, responsive image slider, banner slider, social slider, cycle slider, text slider, revolution slider, thumbnail slider, touch slider, sliders, parallax slider, coinslider, featured-content-slider, image, images, picture, pictures, picture slider, responsive, shortcode, widget, vertical slides, autoplay, auto, jquery, rotate, flexslider, gallery, photo gallery, javascript, rotator, wordpress picture slider, wordpress responsive slider, animation, best slider, fullwidth slider, mobile slider, swipe, layer, layer slider, product slider, mp3, video
|
5 |
Requires at least: 3.0
|
6 |
+
Tested up to: 4.4
|
7 |
+
Stable tag: 2.8.3
|
8 |
License: GPLv2 or later
|
9 |
|
10 |
Responsive WordPress Slider for Featured Content, Videos and Media Images
|
151 |
|
152 |
|
153 |
== Changelog ==
|
154 |
+
|
155 |
+
Version 2.8.3 (01/05/2016)
|
156 |
+
|
157 |
+
1. Fix - "Show All" button of slider post meta box was not working.
|
158 |
+
|
159 |
Version 2.8.2 (11/25/2015)
|
160 |
|
161 |
1. New: WPML compatability
|
smooth-slider.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Smooth Slider
|
4 |
Plugin URI: http://slidervilla.com/smooth-slider/
|
5 |
Description: Smooth slider adds a responsive featured content on image slider using shortcode, widget and template tags. Create and embed featured content slider, recent post slider, category slider in less than 60 seconds.
|
6 |
-
Version: 2.8.
|
7 |
Author: SliderVilla
|
8 |
Text Domain: smooth-slider
|
9 |
Author URI: http://slidervilla.com/
|
@@ -31,12 +31,12 @@ Wordpress version supported: 2.9 and above
|
|
31 |
//defined global variables and constants here
|
32 |
global $smooth_slider,$default_slider,$smooth_db_version,$default_smooth_slider_settings;
|
33 |
$smooth_slider = get_option('smooth_slider_options');
|
34 |
-
$smooth_db_version='2.8.
|
35 |
define('SLIDER_TABLE','smooth_slider'); //Slider TABLE NAME
|
36 |
define('PREV_SLIDER_TABLE','slider'); //Slider TABLE NAME
|
37 |
define('SLIDER_META','smooth_slider_meta'); //Meta TABLE NAME
|
38 |
define('SLIDER_POST_META','smooth_slider_postmeta'); //Meta TABLE NAME
|
39 |
-
define("SMOOTH_SLIDER_VER","2.8.
|
40 |
if ( ! defined( 'SMOOTH_SLIDER_PLUGIN_BASENAME' ) )
|
41 |
define( 'SMOOTH_SLIDER_PLUGIN_BASENAME', plugin_basename( __FILE__ ) );
|
42 |
if ( ! defined( 'SMOOTH_SLIDER_CSS_DIR' ) ){
|
@@ -547,6 +547,11 @@ function add_to_slider_checkbox() {
|
|
547 |
jQuery("#smooth_basic").css({"background":"buttonface","color":"#222222"});
|
548 |
|
549 |
});
|
|
|
|
|
|
|
|
|
|
|
550 |
jQuery(".smooth-add-to-slider").click(function() {
|
551 |
var added = 0;
|
552 |
jQuery(".smooth-add-to-slider").each(function() {
|
3 |
Plugin Name: Smooth Slider
|
4 |
Plugin URI: http://slidervilla.com/smooth-slider/
|
5 |
Description: Smooth slider adds a responsive featured content on image slider using shortcode, widget and template tags. Create and embed featured content slider, recent post slider, category slider in less than 60 seconds.
|
6 |
+
Version: 2.8.3
|
7 |
Author: SliderVilla
|
8 |
Text Domain: smooth-slider
|
9 |
Author URI: http://slidervilla.com/
|
31 |
//defined global variables and constants here
|
32 |
global $smooth_slider,$default_slider,$smooth_db_version,$default_smooth_slider_settings;
|
33 |
$smooth_slider = get_option('smooth_slider_options');
|
34 |
+
$smooth_db_version='2.8.3'; //current version of smooth slider database
|
35 |
define('SLIDER_TABLE','smooth_slider'); //Slider TABLE NAME
|
36 |
define('PREV_SLIDER_TABLE','slider'); //Slider TABLE NAME
|
37 |
define('SLIDER_META','smooth_slider_meta'); //Meta TABLE NAME
|
38 |
define('SLIDER_POST_META','smooth_slider_postmeta'); //Meta TABLE NAME
|
39 |
+
define("SMOOTH_SLIDER_VER","2.8.3",false);//Current Version of Smooth Slider
|
40 |
if ( ! defined( 'SMOOTH_SLIDER_PLUGIN_BASENAME' ) )
|
41 |
define( 'SMOOTH_SLIDER_PLUGIN_BASENAME', plugin_basename( __FILE__ ) );
|
42 |
if ( ! defined( 'SMOOTH_SLIDER_CSS_DIR' ) ){
|
547 |
jQuery("#smooth_basic").css({"background":"buttonface","color":"#222222"});
|
548 |
|
549 |
});
|
550 |
+
jQuery(".show-all").click(function() {
|
551 |
+
jQuery(this).fadeOut("fast");
|
552 |
+
jQuery(".slider-name").fadeIn("slow");
|
553 |
+
return false;
|
554 |
+
});
|
555 |
jQuery(".smooth-add-to-slider").click(function() {
|
556 |
var added = 0;
|
557 |
jQuery(".smooth-add-to-slider").each(function() {
|
tmp-smooth-slider-readme.pot
ADDED
@@ -0,0 +1,967 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr "MIME-Version: 1.0\n"
|
3 |
+
|
4 |
+
#. Name.
|
5 |
+
msgid "Smooth Slider"
|
6 |
+
msgstr ""
|
7 |
+
|
8 |
+
#. Short description.
|
9 |
+
msgid "Responsive WordPress Slider for Featured Content, Videos and Media Images"
|
10 |
+
msgstr ""
|
11 |
+
|
12 |
+
#. Screenshot description.
|
13 |
+
msgid "One Demo of Smooth Slider"
|
14 |
+
msgstr ""
|
15 |
+
|
16 |
+
#. Screenshot description.
|
17 |
+
msgid "Another demo with image in centre"
|
18 |
+
msgstr ""
|
19 |
+
|
20 |
+
#. Screenshot description.
|
21 |
+
msgid "Basic Settings Panel"
|
22 |
+
msgstr ""
|
23 |
+
|
24 |
+
#. Screenshot description.
|
25 |
+
msgid "Advance Setting options under Miscellaneous section"
|
26 |
+
msgstr ""
|
27 |
+
|
28 |
+
#. Screenshot description.
|
29 |
+
msgid "Control Live Preview Panel, Get Shortcode and Template Tag"
|
30 |
+
msgstr ""
|
31 |
+
|
32 |
+
#. Screenshot description.
|
33 |
+
msgid "Export/Import Setting Values, Get Quick Shortcode and Template Tag"
|
34 |
+
msgstr ""
|
35 |
+
|
36 |
+
#. Screenshot description.
|
37 |
+
msgid "Image auto fetch preferences, customize image width/height and other parameters"
|
38 |
+
msgstr ""
|
39 |
+
|
40 |
+
#. Screenshot description.
|
41 |
+
msgid "Drag and Drop reorder or added slides"
|
42 |
+
msgstr ""
|
43 |
+
|
44 |
+
#. Found in description header.
|
45 |
+
msgid "Features"
|
46 |
+
msgstr ""
|
47 |
+
|
48 |
+
#. Found in description header.
|
49 |
+
msgid "Premium Sliders"
|
50 |
+
msgstr ""
|
51 |
+
|
52 |
+
#. Found in description header.
|
53 |
+
msgid "<a href=\"http://slidervilla.com/sliders-list-view/\" rel=\"friend\" title=\"Premium WordPress Sliders\">15+ Premium WordPress Sliders</a>"
|
54 |
+
msgstr ""
|
55 |
+
|
56 |
+
#. Found in description list item.
|
57 |
+
msgid "Responsive Design and the slider works perfectly fine on mobile devices, tablets etc."
|
58 |
+
msgstr ""
|
59 |
+
|
60 |
+
#. Found in description list item.
|
61 |
+
msgid "Six transition effects ( Fade transition supported )"
|
62 |
+
msgstr ""
|
63 |
+
|
64 |
+
#. Found in description list item.
|
65 |
+
msgid "Custom Slider, Category Slider and Recent Posts Slider supported ( Template tags, Shortcode and Widget available )"
|
66 |
+
msgstr ""
|
67 |
+
|
68 |
+
#. Found in description list item.
|
69 |
+
msgid "Slider Preview in admin panel "
|
70 |
+
msgstr ""
|
71 |
+
|
72 |
+
#. Found in description list item.
|
73 |
+
msgid "Search Engine Optimized Slideshow"
|
74 |
+
msgstr ""
|
75 |
+
|
76 |
+
#. Found in description list item.
|
77 |
+
msgid "Full control over the looks thru the Settings Panel"
|
78 |
+
msgstr ""
|
79 |
+
|
80 |
+
#. Found in description list item.
|
81 |
+
msgid "Permission setting option to restrict the users from adding posts to Smooth Slider"
|
82 |
+
msgstr ""
|
83 |
+
|
84 |
+
#. Found in description list item.
|
85 |
+
msgid "The posts/pages/media library images/custom post types added to the slider can be re-ordered"
|
86 |
+
msgstr ""
|
87 |
+
|
88 |
+
#. Found in description list item.
|
89 |
+
msgid "No Need Of Knowledge of PHP, HTML or CSS. But for those having knowledge of CSS, you can create your own stylesheet."
|
90 |
+
msgstr ""
|
91 |
+
|
92 |
+
#. Found in description list item.
|
93 |
+
msgid "Slides can be removed from the slider in single click thru 'Sliders' admin panel"
|
94 |
+
msgstr ""
|
95 |
+
|
96 |
+
#. Found in description list item.
|
97 |
+
msgid "Create Unlimited Settings Panels"
|
98 |
+
msgstr ""
|
99 |
+
|
100 |
+
#. Found in description list item.
|
101 |
+
msgid "Created Unlimited Custom Sliders"
|
102 |
+
msgstr ""
|
103 |
+
|
104 |
+
#. Found in description list item.
|
105 |
+
msgid "Multiple Designs to Choose From"
|
106 |
+
msgstr ""
|
107 |
+
|
108 |
+
#. Found in description list item.
|
109 |
+
msgid "Export/Import Settings"
|
110 |
+
msgstr ""
|
111 |
+
|
112 |
+
#. Found in description list item.
|
113 |
+
msgid "Lightbox Effect"
|
114 |
+
msgstr ""
|
115 |
+
|
116 |
+
#. Found in description list item.
|
117 |
+
msgid "Logo Slider with Grayscale Effect (Placid)"
|
118 |
+
msgstr ""
|
119 |
+
|
120 |
+
#. Found in description list item.
|
121 |
+
msgid "Multiple Image Size Slider"
|
122 |
+
msgstr ""
|
123 |
+
|
124 |
+
#. Found in description list item.
|
125 |
+
msgid "Google Web Fonts option on Settings Panel"
|
126 |
+
msgstr ""
|
127 |
+
|
128 |
+
#. Found in description list item.
|
129 |
+
msgid "Very Prompt Support and Lifetime Upgrades"
|
130 |
+
msgstr ""
|
131 |
+
|
132 |
+
#. Found in description list item.
|
133 |
+
msgid "Placid Slider - <a href=\"http://slidervilla.com/placid/\" rel=\"friend\" title=\"Best Logo and Client Brand Slider\">Best Logo and Client Brand Slider</a>"
|
134 |
+
msgstr ""
|
135 |
+
|
136 |
+
#. Found in description list item.
|
137 |
+
msgid "Pointelle Slider - <a href=\"http://slidervilla.com/pointelle/\" rel=\"friend\" title=\"Best WordPress Slider Design for Homepage\">Best WordPress Slider Design for Homepage</a>"
|
138 |
+
msgstr ""
|
139 |
+
|
140 |
+
#. Found in description list item.
|
141 |
+
msgid "Glam Slider - <a href=\"http://slidervilla.com/glam/\" rel=\"friend\" title=\"Full Page Slider with Partial Visible Slides\">Full Page Slider with Partial Visible Slides</a>"
|
142 |
+
msgstr ""
|
143 |
+
|
144 |
+
#. Found in description list item.
|
145 |
+
msgid "Featured Slider - <a href=\"http://slidervilla.com/featured-slider/\" rel=\"friend\" title=\"Awesome WordPress Slider to Show Featured Content\">Awesome WordPress Slider to Show Featured Content</a>"
|
146 |
+
msgstr ""
|
147 |
+
|
148 |
+
#. Found in description list item.
|
149 |
+
msgid "Listic Slider - <a href=\"http://slidervilla.com/listic/\" rel=\"friend\" title=\"Best List View Slider for WordPress\">Best List View Slider for WordPress</a>"
|
150 |
+
msgstr ""
|
151 |
+
|
152 |
+
#. Found in description list item.
|
153 |
+
msgid "Roster Slider - <a href=\"http://slidervilla.com/roster/\" rel=\"friend\" title=\"Best Horizontal Carousal for WordPress\">Best Horizontal Carousal for WordPress</a>"
|
154 |
+
msgstr ""
|
155 |
+
|
156 |
+
#. Found in description list item.
|
157 |
+
msgid "Pinwheel Slider - <a href=\"http://slidervilla.com/pinwheel/\" rel=\"friend\" title=\"Ultimate rotator with responsive design\">Ultimate rotator with responsive design</a>"
|
158 |
+
msgstr ""
|
159 |
+
|
160 |
+
#. Found in description list item.
|
161 |
+
msgid "Akkord Slider - <a href=\"http://slidervilla.com/akkord/\" rel=\"friend\" title=\"Premium Accordion Slider for WordPress\">Premium Accordion Slider for WordPress</a>"
|
162 |
+
msgstr ""
|
163 |
+
|
164 |
+
#. Found in description list item.
|
165 |
+
msgid "Taxonomy Add-on"
|
166 |
+
msgstr ""
|
167 |
+
|
168 |
+
#. Found in description list item.
|
169 |
+
msgid "Post Attachments Add-on"
|
170 |
+
msgstr ""
|
171 |
+
|
172 |
+
#. Found in description list item.
|
173 |
+
msgid "RSS Feed Add-on"
|
174 |
+
msgstr ""
|
175 |
+
|
176 |
+
#. Found in description list item.
|
177 |
+
msgid "NextGEN Gallery Add-on"
|
178 |
+
msgstr ""
|
179 |
+
|
180 |
+
#. Found in description paragraph.
|
181 |
+
msgid "In less than 50 seconds, embed a recent posts, category specific or featured posts slider using Smooth Slider WordPress plugin. It creates a dynamic slideshow/s of featured Posts, Pages, Media Images and Custom Post Types on a WordPress site. With live preview on admin panel, one can customize the slider before implementation. At SliderVilla - <a href=\"http://slidervilla.com/\" rel=\"friend\" title=\"Best WordPress Slider Store\">Best WordPress Slider Store</a> , we develop only sliders of different needs and we know the requirements very well. Smooth Slider is a basic slider WordPress plugin but is capable of adding a nice carousel in no time. With shortcode, widgets and template tag, one can embed Smooth SLider anywhere in the site."
|
182 |
+
msgstr ""
|
183 |
+
|
184 |
+
#. Found in description paragraph.
|
185 |
+
msgid "Checkout Our Premium Responsive Sliders such as,"
|
186 |
+
msgstr ""
|
187 |
+
|
188 |
+
#. Found in description paragraph.
|
189 |
+
msgid ""
|
190 |
+
"<a href=\"http://slidervilla.com/smooth-slider/\" rel=\"friend\">Plugin Home Page</a> | \n"
|
191 |
+
"<a href=\"http://guides.slidervilla.com/smooth-slider/\">Plugin Documentation</a>"
|
192 |
+
msgstr ""
|
193 |
+
|
194 |
+
#. Found in description paragraph.
|
195 |
+
msgid "**Smooth Slider is now <a href=\"http://slidervilla.com/add-ons/\" rel=\"friend\">Add-ons</a> compatible. **"
|
196 |
+
msgstr ""
|
197 |
+
|
198 |
+
#. Found in installation header.
|
199 |
+
msgid "1. The super easy way"
|
200 |
+
msgstr ""
|
201 |
+
|
202 |
+
#. Found in installation header.
|
203 |
+
msgid "2. The easy way"
|
204 |
+
msgstr ""
|
205 |
+
|
206 |
+
#. Found in installation header.
|
207 |
+
msgid "3. The old way (FTP)"
|
208 |
+
msgstr ""
|
209 |
+
|
210 |
+
#. Found in installation header.
|
211 |
+
msgid "Usage"
|
212 |
+
msgstr ""
|
213 |
+
|
214 |
+
#. Found in installation list item.
|
215 |
+
msgid "In your Admin, go to menu Plugins > Add"
|
216 |
+
msgstr ""
|
217 |
+
|
218 |
+
#. Found in installation list item.
|
219 |
+
msgid "Search for Smooth Slider"
|
220 |
+
msgstr ""
|
221 |
+
|
222 |
+
#. Found in installation list item.
|
223 |
+
msgid "Click to install"
|
224 |
+
msgstr ""
|
225 |
+
|
226 |
+
#. Found in installation list item.
|
227 |
+
msgid "Activate the plugin"
|
228 |
+
msgstr ""
|
229 |
+
|
230 |
+
#. Found in installation list item.
|
231 |
+
msgid "A new menu <code>Smooth Slider</code> will appear in your Admin"
|
232 |
+
msgstr ""
|
233 |
+
|
234 |
+
#. Found in installation list item.
|
235 |
+
msgid "Download the plugin (.zip file) on the right column of this page"
|
236 |
+
msgstr ""
|
237 |
+
|
238 |
+
#. Found in installation list item.
|
239 |
+
msgid "Select the tab \"Upload\""
|
240 |
+
msgstr ""
|
241 |
+
|
242 |
+
#. Found in installation list item.
|
243 |
+
msgid "Upload the .zip file you just downloaded"
|
244 |
+
msgstr ""
|
245 |
+
|
246 |
+
#. Found in installation list item.
|
247 |
+
msgid "A new menu will appear in your Admin"
|
248 |
+
msgstr ""
|
249 |
+
|
250 |
+
#. Found in installation list item.
|
251 |
+
msgid "Unzip the downloaded .zip file"
|
252 |
+
msgstr ""
|
253 |
+
|
254 |
+
#. Found in installation list item.
|
255 |
+
msgid "Upload <code>smooth-slider</code> folder to the <code>/wp-content/plugins/</code> directory"
|
256 |
+
msgstr ""
|
257 |
+
|
258 |
+
#. Found in installation list item.
|
259 |
+
msgid "Activate the plugin through the 'Plugins' menu in WordPress"
|
260 |
+
msgstr ""
|
261 |
+
|
262 |
+
#. Found in installation list item.
|
263 |
+
msgid "<p>There is ready to use widget named 'Smooth Slider Widget - Simple', that you can directly use in your widgetized area of the theme. In case you use multiple sliders feature you can as well select the slider name from the dropdown on the widget.</p>"
|
264 |
+
msgstr ""
|
265 |
+
|
266 |
+
#. Found in installation list item.
|
267 |
+
msgid "<p>You can use the Smooth Slider shortcode [smoothslider] or [smoothslider id='1'] on your edit post/page panel to insert the slider anywhere on the post or page. In case you use multiple sliders feature, just replace the 'id' with your required slider's 'ID' that you would find on Sliders admin panel(settings).</p>"
|
268 |
+
msgstr ""
|
269 |
+
|
270 |
+
#. Found in installation list item.
|
271 |
+
msgid "<p>The content in the slider can be picked up from either the post content or the post excerpt or a custom field slider_content. You can add the custom field on the Edit Post panel for each of the posts.</p>"
|
272 |
+
msgstr ""
|
273 |
+
|
274 |
+
#. Found in installation list item.
|
275 |
+
msgid "<p>It is very easy to select which image you want as the thumbnail for the slides. You can choose to get the image from custom field, or 'Post thumbnail' or from the post content.</p>"
|
276 |
+
msgstr ""
|
277 |
+
|
278 |
+
#. Found in installation list item.
|
279 |
+
msgid "<p>Almost all the fields that appear in the Smooth Slider are customizable, you can change the looks of your Slider and make it suitable for your theme. The defaults set are according to the Default Wordpress theme. Also, you can change the number of posts appearing in the slider and the pause or interval between the two consecutive posts on the slider. For making these changes, there would be a settings page for Smooth Slider in the wp-admin screen of your blog, once you enable the plugin.</p>"
|
280 |
+
msgstr ""
|
281 |
+
|
282 |
+
#. Found in installation paragraph.
|
283 |
+
msgid "There's 3 ways to install this plugin:"
|
284 |
+
msgstr ""
|
285 |
+
|
286 |
+
#. Found in installation paragraph.
|
287 |
+
msgid "If you want the slideshow with all the added featured posts on your home page, open Index.php file from Dashboard by clicking on Tab Appearance / Editor and paste the following piece of code at the suitable place."
|
288 |
+
msgstr ""
|
289 |
+
|
290 |
+
#. Found in installation paragraph.
|
291 |
+
msgid ""
|
292 |
+
"if ( function_exists( 'get_smooth_slider' ) ) {\n"
|
293 |
+
" get_smooth_slider(); }"
|
294 |
+
msgstr ""
|
295 |
+
|
296 |
+
#. Found in installation paragraph.
|
297 |
+
msgid "If you want to put the slider before the list of articles on your Wordpress blog homepage, put the above piece of code before the Wordpress Loop (the code is a php code, so ensure that it is enclosed within the php tags). Wordpress loop code is shown below:"
|
298 |
+
msgstr ""
|
299 |
+
|
300 |
+
#. Found in installation paragraph.
|
301 |
+
msgid "if(have_posts()) : while(have_posts()) : the_post();"
|
302 |
+
msgstr ""
|
303 |
+
|
304 |
+
#. Found in installation paragraph.
|
305 |
+
msgid "There is ready to use widget named 'Smooth Slider Widget - Simple', that you can directly use in your widgetized area of the theme. In case you use multiple sliders feature you can as well select the slider name from the dropdown on the widget."
|
306 |
+
msgstr ""
|
307 |
+
|
308 |
+
#. Found in installation paragraph.
|
309 |
+
msgid "You can use the Smooth Slider shortcode [smoothslider] or [smoothslider id='1'] on your edit post/page panel to insert the slider anywhere on the post or page. In case you use multiple sliders feature, just replace the 'id' with your required slider's 'ID' that you would find on Sliders admin panel(settings)."
|
310 |
+
msgstr ""
|
311 |
+
|
312 |
+
#. Found in installation paragraph.
|
313 |
+
msgid "The content in the slider can be picked up from either the post content or the post excerpt or a custom field slider_content. You can add the custom field on the Edit Post panel for each of the posts."
|
314 |
+
msgstr ""
|
315 |
+
|
316 |
+
#. Found in installation paragraph.
|
317 |
+
msgid "It is very easy to select which image you want as the thumbnail for the slides. You can choose to get the image from custom field, or 'Post thumbnail' or from the post content."
|
318 |
+
msgstr ""
|
319 |
+
|
320 |
+
#. Found in installation paragraph.
|
321 |
+
msgid "Almost all the fields that appear in the Smooth Slider are customizable, you can change the looks of your Slider and make it suitable for your theme. The defaults set are according to the Default Wordpress theme. Also, you can change the number of posts appearing in the slider and the pause or interval between the two consecutive posts on the slider. For making these changes, there would be a settings page for Smooth Slider in the wp-admin screen of your blog, once you enable the plugin."
|
322 |
+
msgstr ""
|
323 |
+
|
324 |
+
#. Found in installation paragraph.
|
325 |
+
msgid "To get the category specific posts in reverse chronological order, use the following piece of code (template tag) at the necessary place in your theme's template file."
|
326 |
+
msgstr ""
|
327 |
+
|
328 |
+
#. Found in installation paragraph.
|
329 |
+
msgid ""
|
330 |
+
"if ( function_exists( 'get_smooth_slider_category' ) ) {\n"
|
331 |
+
" get_smooth_slider_category('apple'); }"
|
332 |
+
msgstr ""
|
333 |
+
|
334 |
+
#. Found in installation paragraph.
|
335 |
+
msgid "where 'apple' is the slug (url friendly version of the category name) of the category from which you want to extract the posts to be shown in the slider. Replace it with your own category slug and you are done."
|
336 |
+
msgstr ""
|
337 |
+
|
338 |
+
#. Found in installation paragraph.
|
339 |
+
msgid "For more documentation go to <a href=\"http://guides.slidervilla.com/smooth-slider/\">Smooth Slider Documentation</a>"
|
340 |
+
msgstr ""
|
341 |
+
|
342 |
+
#. Found in installation paragraph.
|
343 |
+
msgid "<strong>Find More Advanced Slider Styles at <a href=\"http://www.slidervilla.com/\">SliderVilla</a></strong>"
|
344 |
+
msgstr ""
|
345 |
+
|
346 |
+
#. Found in changelog list item.
|
347 |
+
msgid "New: WPML compatability"
|
348 |
+
msgstr ""
|
349 |
+
|
350 |
+
#. Found in changelog list item.
|
351 |
+
msgid "New: Add slide (post/page/CPT) to slider toggle button instead of checkbox"
|
352 |
+
msgstr ""
|
353 |
+
|
354 |
+
#. Found in changelog list item.
|
355 |
+
msgid "New � Added touch swipe feature for tocu input on mobile devices "
|
356 |
+
msgstr ""
|
357 |
+
|
358 |
+
#. Found in changelog list item.
|
359 |
+
msgid "New � Slide Expiry Date can be added for each slide in Custom Slider thru Smooth Slider Metabox on Edit Post/Page/Slide"
|
360 |
+
msgstr ""
|
361 |
+
|
362 |
+
#. Found in changelog list item.
|
363 |
+
msgid "Fix: UTF-8 characters appeared as question marks for Slider title and Category "
|
364 |
+
msgstr ""
|
365 |
+
|
366 |
+
#. Found in changelog list item.
|
367 |
+
msgid "Fix: Notice for WP_Widget constructor call"
|
368 |
+
msgstr ""
|
369 |
+
|
370 |
+
#. Found in changelog list item.
|
371 |
+
msgid "Fix: SQL query fixes and debug notices"
|
372 |
+
msgstr ""
|
373 |
+
|
374 |
+
#. Found in changelog list item.
|
375 |
+
msgid "Fix: Conflict with Pointelle Slider"
|
376 |
+
msgstr ""
|
377 |
+
|
378 |
+
#. Found in changelog list item.
|
379 |
+
msgid "Fix: Conflict with Logo Slider"
|
380 |
+
msgstr ""
|
381 |
+
|
382 |
+
#. Found in changelog list item.
|
383 |
+
msgid "Fix: Small issue with Reposiveness on resizing Smooth Slider with border specified"
|
384 |
+
msgstr ""
|
385 |
+
|
386 |
+
#. Found in changelog list item.
|
387 |
+
msgid "Fix: In case of multisite WordPress installation there was an issue while saving setting set."
|
388 |
+
msgstr ""
|
389 |
+
|
390 |
+
#. Found in changelog list item.
|
391 |
+
msgid "Fix: jquery.js was loaded in footer, should be loaded before the slider js (head section)"
|
392 |
+
msgstr ""
|
393 |
+
|
394 |
+
#. Found in changelog list item.
|
395 |
+
msgid "Fix: Slider was causing page to hide initially and appear on document ready. Resolved this issue. Now slider is workig perfectly for responsive heights."
|
396 |
+
msgstr ""
|
397 |
+
|
398 |
+
#. Found in changelog list item.
|
399 |
+
msgid "New: RSS Feed Add-on compatibility"
|
400 |
+
msgstr ""
|
401 |
+
|
402 |
+
#. Found in changelog list item.
|
403 |
+
msgid "Fix: Slider height not properly set initially for center aligned (large) images slider. Fixed the issue."
|
404 |
+
msgstr ""
|
405 |
+
|
406 |
+
#. Found in changelog list item.
|
407 |
+
msgid "Fix: Smooth Slider coming before content in case of shortcode"
|
408 |
+
msgstr ""
|
409 |
+
|
410 |
+
#. Found in changelog list item.
|
411 |
+
msgid "Fix: Words breaking improperly in the slider content area"
|
412 |
+
msgstr ""
|
413 |
+
|
414 |
+
#. Found in changelog list item.
|
415 |
+
msgid "Fix: JS conflict with ShareThis plugin"
|
416 |
+
msgstr ""
|
417 |
+
|
418 |
+
#. Found in changelog list item.
|
419 |
+
msgid "New: Image uploader for Sliders on 'Sliders' settings panel. No need to add individual media image to Smooth slider."
|
420 |
+
msgstr ""
|
421 |
+
|
422 |
+
#. Found in changelog list item.
|
423 |
+
msgid "New: Add any shortcode like video shortcode or button shortcode to slide which will be overlayed on it."
|
424 |
+
msgstr ""
|
425 |
+
|
426 |
+
#. Found in changelog list item.
|
427 |
+
msgid "New: Rename Slider field on Smooth Slider => Sliders panel"
|
428 |
+
msgstr ""
|
429 |
+
|
430 |
+
#. Found in changelog list item.
|
431 |
+
msgid "New: Smooth Slider post meta box now has two tabs named basic and advanced with respective fields for the purpose of easy understanding and saving the space."
|
432 |
+
msgstr ""
|
433 |
+
|
434 |
+
#. Found in changelog list item.
|
435 |
+
msgid "New: On settings panel of Smooth slider now it is possible to expand and collapse tabs which greatly reduces scrolling efforts."
|
436 |
+
msgstr ""
|
437 |
+
|
438 |
+
#. Found in changelog list item.
|
439 |
+
msgid "New: Preview Slider params simplified on Settings panel."
|
440 |
+
msgstr ""
|
441 |
+
|
442 |
+
#. Found in changelog list item.
|
443 |
+
msgid "New: Color picker changed from Farbtastic to \"wp-color-picker\"."
|
444 |
+
msgstr ""
|
445 |
+
|
446 |
+
#. Found in changelog list item.
|
447 |
+
msgid "Fix: Worked on responsiveness of slider. "
|
448 |
+
msgstr ""
|
449 |
+
|
450 |
+
#. Found in changelog list item.
|
451 |
+
msgid "Fix: Settings panel cleanup and restructuring."
|
452 |
+
msgstr ""
|
453 |
+
|
454 |
+
#. Found in changelog list item.
|
455 |
+
msgid "Fix: Solved the debug errors on Sliders panel."
|
456 |
+
msgstr ""
|
457 |
+
|
458 |
+
#. Found in changelog list item.
|
459 |
+
msgid "New: Removed promotional link text 'smooth slider' from the slider"
|
460 |
+
msgstr ""
|
461 |
+
|
462 |
+
#. Found in changelog list item.
|
463 |
+
msgid "Fix: Edit Media page having double post meta boxes"
|
464 |
+
msgstr ""
|
465 |
+
|
466 |
+
#. Found in changelog list item.
|
467 |
+
msgid "Fix: Add to Slider not working for media images"
|
468 |
+
msgstr ""
|
469 |
+
|
470 |
+
#. Found in changelog list item.
|
471 |
+
msgid "Fix: CSS changes for video slides and WordPress Video Shortcode"
|
472 |
+
msgstr ""
|
473 |
+
|
474 |
+
#. Found in changelog list item.
|
475 |
+
msgid "Fix: On Delete and Reinstall, options are not saved"
|
476 |
+
msgstr ""
|
477 |
+
|
478 |
+
#. Found in changelog list item.
|
479 |
+
msgid "Fix: Slider appears only if \"Display slider\" option is checked in Post Meta box "
|
480 |
+
msgstr ""
|
481 |
+
|
482 |
+
#. Found in changelog list item.
|
483 |
+
msgid "New: Create Multiple Sliders from Sliders Panel"
|
484 |
+
msgstr ""
|
485 |
+
|
486 |
+
#. Found in changelog list item.
|
487 |
+
msgid "New: Embed videos or other items using \"Embed Shortcode\" new field"
|
488 |
+
msgstr ""
|
489 |
+
|
490 |
+
#. Found in changelog list item.
|
491 |
+
msgid "New: Show/Hide Image Thumbnail if video inserted in slide"
|
492 |
+
msgstr ""
|
493 |
+
|
494 |
+
#. Found in changelog list item.
|
495 |
+
msgid "New: Made 100% Responsive Slider with Fluid Design"
|
496 |
+
msgstr ""
|
497 |
+
|
498 |
+
#. Found in changelog list item.
|
499 |
+
msgid "New: Export/Import Settings Set (useful when implementing customized Smooth SLider from dev to live site)"
|
500 |
+
msgstr ""
|
501 |
+
|
502 |
+
#. Found in changelog list item.
|
503 |
+
msgid "New: Reset Setting values to Global Derfault"
|
504 |
+
msgstr ""
|
505 |
+
|
506 |
+
#. Found in changelog list item.
|
507 |
+
msgid "New: Preview tab to select 'Recent Post Slider', Category Slider, Custom Slider to live preview on admin panel"
|
508 |
+
msgstr ""
|
509 |
+
|
510 |
+
#. Found in changelog list item.
|
511 |
+
msgid "New: Shortcode and Template Tags to embed the preview slider are shown on settings panel sidebar"
|
512 |
+
msgstr ""
|
513 |
+
|
514 |
+
#. Found in changelog list item.
|
515 |
+
msgid "New: Clean and minimal admin panel with almost no advertisement"
|
516 |
+
msgstr ""
|
517 |
+
|
518 |
+
#. Found in changelog list item.
|
519 |
+
msgid "New: Easy embed shortcode pop-up on setting changes"
|
520 |
+
msgstr ""
|
521 |
+
|
522 |
+
#. Found in changelog list item.
|
523 |
+
msgid "New: Change the color of \"Continue Reading\" text"
|
524 |
+
msgstr ""
|
525 |
+
|
526 |
+
#. Found in changelog list item.
|
527 |
+
msgid "New: Added validations on setting fields"
|
528 |
+
msgstr ""
|
529 |
+
|
530 |
+
#. Found in changelog list item.
|
531 |
+
msgid "Fix: Post Meta Box fields not updating"
|
532 |
+
msgstr ""
|
533 |
+
|
534 |
+
#. Found in changelog list item.
|
535 |
+
msgid "Fix: Disable Suto Play was not working properly"
|
536 |
+
msgstr ""
|
537 |
+
|
538 |
+
#. Found in changelog list item.
|
539 |
+
msgid "Fix: Admin Panel CSS issue"
|
540 |
+
msgstr ""
|
541 |
+
|
542 |
+
#. Found in changelog list item.
|
543 |
+
msgid "Fix: Debug notifications"
|
544 |
+
msgstr ""
|
545 |
+
|
546 |
+
#. Found in changelog list item.
|
547 |
+
msgid "New: Smooth Slider now Supports Responsive Design Layout"
|
548 |
+
msgstr ""
|
549 |
+
|
550 |
+
#. Found in changelog list item.
|
551 |
+
msgid "New: Shortcode for Category Slider"
|
552 |
+
msgstr ""
|
553 |
+
|
554 |
+
#. Found in changelog list item.
|
555 |
+
msgid "New: Template tag and Shortcode for Recent Posts Smooth Slider"
|
556 |
+
msgstr ""
|
557 |
+
|
558 |
+
#. Found in changelog list item.
|
559 |
+
msgid "New: Changes to Support Fade and a couple more transitions"
|
560 |
+
msgstr ""
|
561 |
+
|
562 |
+
#. Found in changelog list item.
|
563 |
+
msgid "New: Changes to Settings Panel design"
|
564 |
+
msgstr ""
|
565 |
+
|
566 |
+
#. Found in changelog list item.
|
567 |
+
msgid "New: Compatible with SliderVilla add-ons"
|
568 |
+
msgstr ""
|
569 |
+
|
570 |
+
#. Found in changelog list item.
|
571 |
+
msgid "Fix: Fixed the bug that Smooth Slider slides got jumbled up and Slider looked empty when the Chrome or Safari browser was zoomed in."
|
572 |
+
msgstr ""
|
573 |
+
|
574 |
+
#. Found in changelog list item.
|
575 |
+
msgid "Fix: Now the slider_style Custom Field or Post Meta will not appear for each Post or Page saved. This field was automatically created and displayed under the Custom Fields metabox on Edit Post/Page panel inprevious version of Smooth Slider."
|
576 |
+
msgstr ""
|
577 |
+
|
578 |
+
#. Found in changelog list item.
|
579 |
+
msgid "Fix: An extra div tag at the end of the slider html was causing the slider break on Safari in a particular case. Thanks to Michael Preisner for pointing out the issue."
|
580 |
+
msgstr ""
|
581 |
+
|
582 |
+
#. Found in changelog list item.
|
583 |
+
msgid "Fix: On new pages, posts, the default slider sltysheet should be the one selected thru Smooth Slider settings and not the actual 'default' stylesheet."
|
584 |
+
msgstr ""
|
585 |
+
|
586 |
+
#. Found in changelog list item.
|
587 |
+
msgid "Fix: noscript tags should have the text enclosed in 'p' tags to make Smooth Slider validate on XHTML strict. Thanks to Martin Wilcke for pointing this out."
|
588 |
+
msgstr ""
|
589 |
+
|
590 |
+
#. Found in changelog list item.
|
591 |
+
msgid "Fix: The shortcode stripping was not working when there was an immediate anchor tag within the shorcodes. Rectified this bug. Thanks to Oscar of Innovacionweb for pointing this issue."
|
592 |
+
msgstr ""
|
593 |
+
|
594 |
+
#. Found in changelog list item.
|
595 |
+
msgid "Fix: Using the WP Minify 1.1.6 plugin with Smooth Slider 2.3.4.1 caused a 400 Bad Request error and the resulting html page ended up with no composite CSS file since Minify failed. This was in a special case when the slider is embedded on single page or a post and you updated from the older version of Smooth Slider (2.3.2 or less) to new version. Added a fix for this. Thanks to Doug Foster of theideamechanics.com for pointing this out. "
|
596 |
+
msgstr ""
|
597 |
+
|
598 |
+
#. Found in changelog list item.
|
599 |
+
msgid "New: Option to enable the 'Flash of Unstyled content' while page load, which is disable by default. By default the slider will load once complete DOm elements are loaded (html page is ready to be served). Due to this default setting, some users feel that slider is loading slow. "
|
600 |
+
msgstr ""
|
601 |
+
|
602 |
+
#. Found in changelog list item.
|
603 |
+
msgid "Fix: Slider was not working on upgrade from older versions to version 2.3.3"
|
604 |
+
msgstr ""
|
605 |
+
|
606 |
+
#. Found in changelog list item.
|
607 |
+
msgid "Randomize the slides in Slider"
|
608 |
+
msgstr ""
|
609 |
+
|
610 |
+
#. Found in changelog list item.
|
611 |
+
msgid "Translation ready"
|
612 |
+
msgstr ""
|
613 |
+
|
614 |
+
#. Found in changelog list item.
|
615 |
+
msgid "Multiple sliders can have different titles"
|
616 |
+
msgstr ""
|
617 |
+
|
618 |
+
#. Found in changelog list item.
|
619 |
+
msgid "No script text option"
|
620 |
+
msgstr ""
|
621 |
+
|
622 |
+
#. Found in changelog list item.
|
623 |
+
msgid "Plugin compltibility will be now from WordPress 2.9 i.e. you should upgrade to Version 2.3 only if you hav WordPress 2.9 and above."
|
624 |
+
msgstr ""
|
625 |
+
|
626 |
+
#. Found in changelog list item.
|
627 |
+
msgid "Fixed: For those using Smooth Slider previous versions, some were facing issue with the loading of stylesheets and script specific to slider. Fixed it."
|
628 |
+
msgstr ""
|
629 |
+
|
630 |
+
#. Found in changelog list item.
|
631 |
+
msgid "Fixed: For some servers content was not pulled from the posts. "
|
632 |
+
msgstr ""
|
633 |
+
|
634 |
+
#. Found in changelog list item.
|
635 |
+
msgid "New - Smooth Slider Widget "
|
636 |
+
msgstr ""
|
637 |
+
|
638 |
+
#. Found in changelog list item.
|
639 |
+
msgid "New - Smooth Slider Shortcode "
|
640 |
+
msgstr ""
|
641 |
+
|
642 |
+
#. Found in changelog list item.
|
643 |
+
msgid "New - Slides can now be re-ordered thru the 'Slider Admin Panel'"
|
644 |
+
msgstr ""
|
645 |
+
|
646 |
+
#. Found in changelog list item.
|
647 |
+
msgid "New - Images existing and new images added to WordPress Media Gallery can be added to Smooth Slider along with posts and pages."
|
648 |
+
msgstr ""
|
649 |
+
|
650 |
+
#. Found in changelog list item.
|
651 |
+
msgid "New - Now images in the slider can be extracted in very intelligent manner. Added support for 'Post Thumbnails (WP 2.9+)'."
|
652 |
+
msgstr ""
|
653 |
+
|
654 |
+
#. Found in changelog list item.
|
655 |
+
msgid "New - Videos can be embedded in the slider. Ad can be added to the slider."
|
656 |
+
msgstr ""
|
657 |
+
|
658 |
+
#. Found in changelog list item.
|
659 |
+
msgid "New - Some slides can be linked to a webpage and others can be without a link as well. "
|
660 |
+
msgstr ""
|
661 |
+
|
662 |
+
#. Found in changelog list item.
|
663 |
+
msgid "New - Multiple settings to the sliders on different pages thru CSS files."
|
664 |
+
msgstr ""
|
665 |
+
|
666 |
+
#. Found in changelog list item.
|
667 |
+
msgid "Fixed - Scheduled Posts issue"
|
668 |
+
msgstr ""
|
669 |
+
|
670 |
+
#. Found in changelog list item.
|
671 |
+
msgid "Fixed - Image Caption Issue"
|
672 |
+
msgstr ""
|
673 |
+
|
674 |
+
#. Found in changelog list item.
|
675 |
+
msgid "Fixed - Retain HTML tags issue"
|
676 |
+
msgstr ""
|
677 |
+
|
678 |
+
#. Found in changelog list item.
|
679 |
+
msgid "Fixed - Permissions issue (Who can add post/page and slides to the slider and who cannot)"
|
680 |
+
msgstr ""
|
681 |
+
|
682 |
+
#. Found in changelog list item.
|
683 |
+
msgid "New - Multiple Sliders can now be created from the settings page. Post/Pages can be selectively put in the slider of your choice. Also, you could decide which post/page should display which slider (from the Edit Post/Page), though the page/single post template file contains regular Smooth Slider tag only."
|
684 |
+
msgstr ""
|
685 |
+
|
686 |
+
#. Found in changelog list item.
|
687 |
+
msgid "New - Added an option to limit the content on the slider by 'words'. Previously it was only with number of characters due to which sometimes for some posts the last word on the slider was shown broken. Now you can use any of the two, either limit content by number of characters or number of words"
|
688 |
+
msgstr ""
|
689 |
+
|
690 |
+
#. Found in changelog list item.
|
691 |
+
msgid "Fix - Fixed the issue with get_smooth_slider_cat tag. There was a bug when this tag ws used for home page. Now it is working as per the specifications."
|
692 |
+
msgstr ""
|
693 |
+
|
694 |
+
#. Found in changelog list item.
|
695 |
+
msgid "Fix - For using the custom images for navigation, there was an issue with 'getimagesize' php function for some servers. Removed this fuction and directly put options to specify the custom images height and width."
|
696 |
+
msgstr ""
|
697 |
+
|
698 |
+
#. Found in changelog list item.
|
699 |
+
msgid "Fix - When the navigation numbers are used, there was some clicking issue, like the numbers needed to be douoble clicked in order to go to that slide number. This issue was observed with some installations of Smooth Slider (like on demo page). Hopefully this would get fixed with this release."
|
700 |
+
msgstr ""
|
701 |
+
|
702 |
+
#. Found in changelog list item.
|
703 |
+
msgid "Fix - Changed the name of the database table from slider to smooth_slider to avoid any database conflicts and be more specific"
|
704 |
+
msgstr ""
|
705 |
+
|
706 |
+
#. Found in changelog list item.
|
707 |
+
msgid "New - Added an option to change the transition speed between two slides. Now you can control the speed with which one slide slides off and another slides in."
|
708 |
+
msgstr ""
|
709 |
+
|
710 |
+
#. Found in changelog list item.
|
711 |
+
msgid "New - Added an option to enable the autostepping or autosliding or disable it."
|
712 |
+
msgstr ""
|
713 |
+
|
714 |
+
#. Found in changelog list item.
|
715 |
+
msgid "Fixed - A blank slide appeared on the slider if the post which is in slider is deleted from wp-admin. Fixed the issue, now if the post which is also in slider is deleted, then it will also be removed from the slider, fixing the blank slide issue"
|
716 |
+
msgstr ""
|
717 |
+
|
718 |
+
#. Found in changelog list item.
|
719 |
+
msgid "Fixed - The scheduled or draft post placed into the slider will not appear on the actual slider. It will appear only in case when the post is published."
|
720 |
+
msgstr ""
|
721 |
+
|
722 |
+
#. Found in changelog list item.
|
723 |
+
msgid "Fixed - WPMU issue with get_smooth_slider_wpmu_all that the post permalinks direct to a wrong url, that represents the current blog only, though the posts are pulled from other blogs. This issue is fixed in this version of Smooth Slider."
|
724 |
+
msgstr ""
|
725 |
+
|
726 |
+
#. Found in changelog list item.
|
727 |
+
msgid "New - Added an option whether to crop images or not. This was essential after version 2.1 because, some of us use the images from other location than the wordpress installation. In that case timthumb does not operate"
|
728 |
+
msgstr ""
|
729 |
+
|
730 |
+
#. Found in changelog list item.
|
731 |
+
msgid "New - Now the images will not be sqashed to fit the size, rather they would be cropped properly. Used timthumb.Caution: Please use the images stored on the same domain on the slider."
|
732 |
+
msgstr ""
|
733 |
+
|
734 |
+
#. Found in changelog list item.
|
735 |
+
msgid "New - A new custom field slide_redirect_url can now be specified to redirect the slide to anothr URL than the permalink"
|
736 |
+
msgstr ""
|
737 |
+
|
738 |
+
#. Found in changelog list item.
|
739 |
+
msgid "Fixed - Admin menu dropdown were getting stuck only on Smooth Slider settings page, fixed that issue"
|
740 |
+
msgstr ""
|
741 |
+
|
742 |
+
#. Found in changelog list item.
|
743 |
+
msgid "New - Now you can add pages to Smooth Slider along with posts"
|
744 |
+
msgstr ""
|
745 |
+
|
746 |
+
#. Found in changelog list item.
|
747 |
+
msgid "New - Images Original Size Option"
|
748 |
+
msgstr ""
|
749 |
+
|
750 |
+
#. Found in changelog list item.
|
751 |
+
msgid "New - Pick image from content or the custom field"
|
752 |
+
msgstr ""
|
753 |
+
|
754 |
+
#. Found in changelog list item.
|
755 |
+
msgid "New - New custom field implementation, to allow not to display images on selective posts"
|
756 |
+
msgstr ""
|
757 |
+
|
758 |
+
#. Found in changelog list item.
|
759 |
+
msgid "New - A new template tag to display Category specific posts on Smooth Slider"
|
760 |
+
msgstr ""
|
761 |
+
|
762 |
+
#. Found in changelog list item.
|
763 |
+
msgid "New - A new template tag for WPMU, to get slider posts from all over the WPMU site"
|
764 |
+
msgstr ""
|
765 |
+
|
766 |
+
#. Found in changelog list item.
|
767 |
+
msgid "New - Option to change �Read More� text and also put it in your language"
|
768 |
+
msgstr ""
|
769 |
+
|
770 |
+
#. Found in changelog list item.
|
771 |
+
msgid "New - Permission setting option to restrict the users from adding posts to Smooth Slider"
|
772 |
+
msgstr ""
|
773 |
+
|
774 |
+
#. Found in changelog list item.
|
775 |
+
msgid "New - Remove posts and pages from Smooth Slider selectively from the settings page itself"
|
776 |
+
msgstr ""
|
777 |
+
|
778 |
+
#. Found in changelog list item.
|
779 |
+
msgid "New - Option to retain specific html tags in the slider posts"
|
780 |
+
msgstr ""
|
781 |
+
|
782 |
+
#. Found in changelog list item.
|
783 |
+
msgid "New - Option to specify custom text or html in place of navigation numbers or buttons"
|
784 |
+
msgstr ""
|
785 |
+
|
786 |
+
#. Found in changelog list item.
|
787 |
+
msgid "Fix - Fixed issue of Smooth Slider settings page with Internet Explorer"
|
788 |
+
msgstr ""
|
789 |
+
|
790 |
+
#. Found in changelog list item.
|
791 |
+
msgid "New - Optimized Smooth Slider code internally"
|
792 |
+
msgstr ""
|
793 |
+
|
794 |
+
#. Found in changelog list item.
|
795 |
+
msgid "New - Smooth Slider complete uninstall on plugin Delete"
|
796 |
+
msgstr ""
|
797 |
+
|
798 |
+
#. Found in changelog list item.
|
799 |
+
msgid "New - Slider Preview in Smooth Slider setting page"
|
800 |
+
msgstr ""
|
801 |
+
|
802 |
+
#. Found in changelog list item.
|
803 |
+
msgid "New - Facility to set transparent background to the slider"
|
804 |
+
msgstr ""
|
805 |
+
|
806 |
+
#. Found in changelog list item.
|
807 |
+
msgid "New - Facility to Convert it to pure Image Slider "
|
808 |
+
msgstr ""
|
809 |
+
|
810 |
+
#. Found in changelog list item.
|
811 |
+
msgid "New - Remove all the posts from Smooth Slider in one click"
|
812 |
+
msgstr ""
|
813 |
+
|
814 |
+
#. Found in changelog list item.
|
815 |
+
msgid "New - Custom Images in place of navigation numbers"
|
816 |
+
msgstr ""
|
817 |
+
|
818 |
+
#. Found in changelog list item.
|
819 |
+
msgid "Fixed - CSS id names and class name fixed, to avoid probable conflicts with theme styles and other plugin styles"
|
820 |
+
msgstr ""
|
821 |
+
|
822 |
+
#. Found in changelog list item.
|
823 |
+
msgid "New - Active Slide in the slideshow will now be highlighted with bolder and bigger navigation number"
|
824 |
+
msgstr ""
|
825 |
+
|
826 |
+
#. Found in changelog list item.
|
827 |
+
msgid "Fixed - Added No Script tag browsers not supporting JavaScript for showing the slideshow"
|
828 |
+
msgstr ""
|
829 |
+
|
830 |
+
#. Found in changelog list item.
|
831 |
+
msgid "Fixed - Issues with WordPress MU Smooth Slider Options update from setting page"
|
832 |
+
msgstr ""
|
833 |
+
|
834 |
+
#. Found in changelog paragraph.
|
835 |
+
msgid "Version 2.8.2 (11/25/2015)"
|
836 |
+
msgstr ""
|
837 |
+
|
838 |
+
#. Found in changelog paragraph.
|
839 |
+
msgid "Version 2.8.1 (10/23/2015)"
|
840 |
+
msgstr ""
|
841 |
+
|
842 |
+
#. Found in changelog paragraph.
|
843 |
+
msgid "Version 2.8 (10/13/2015)"
|
844 |
+
msgstr ""
|
845 |
+
|
846 |
+
#. Found in changelog paragraph.
|
847 |
+
msgid "Version 2.7.1 (08/21/2015)"
|
848 |
+
msgstr ""
|
849 |
+
|
850 |
+
#. Found in changelog paragraph.
|
851 |
+
msgid "Version 2.7 (07/18/2015)"
|
852 |
+
msgstr ""
|
853 |
+
|
854 |
+
#. Found in changelog paragraph.
|
855 |
+
msgid "Version 2.6.5 (09/19/2014)"
|
856 |
+
msgstr ""
|
857 |
+
|
858 |
+
#. Found in changelog paragraph.
|
859 |
+
msgid "Version 2.6.4 (09/10/2014)"
|
860 |
+
msgstr ""
|
861 |
+
|
862 |
+
#. Found in changelog paragraph.
|
863 |
+
msgid "Version 2.6.3 (08/13/2014)"
|
864 |
+
msgstr ""
|
865 |
+
|
866 |
+
#. Found in changelog paragraph.
|
867 |
+
msgid "Version 2.6.2 (08/12/2014)"
|
868 |
+
msgstr ""
|
869 |
+
|
870 |
+
#. Found in changelog paragraph.
|
871 |
+
msgid "Version 2.6.1 (07/30/2014)"
|
872 |
+
msgstr ""
|
873 |
+
|
874 |
+
#. Found in changelog paragraph.
|
875 |
+
msgid "Version 2.6 (07/29/2014)"
|
876 |
+
msgstr ""
|
877 |
+
|
878 |
+
#. Found in changelog paragraph.
|
879 |
+
msgid "Version 2.5.1 (06/04/2014)"
|
880 |
+
msgstr ""
|
881 |
+
|
882 |
+
#. Found in changelog paragraph.
|
883 |
+
msgid "Version 2.5 (05/30/2014)"
|
884 |
+
msgstr ""
|
885 |
+
|
886 |
+
#. Found in changelog paragraph.
|
887 |
+
msgid "Version 2.4 (09/10/2012)"
|
888 |
+
msgstr ""
|
889 |
+
|
890 |
+
#. Found in changelog paragraph.
|
891 |
+
msgid "Version 2.3.5 (06/13/2011)"
|
892 |
+
msgstr ""
|
893 |
+
|
894 |
+
#. Found in changelog paragraph.
|
895 |
+
msgid "Version 2.3.3 (04/24/2011)"
|
896 |
+
msgstr ""
|
897 |
+
|
898 |
+
#. Found in changelog paragraph.
|
899 |
+
msgid "Version 2.3.3 (04/16/2011)"
|
900 |
+
msgstr ""
|
901 |
+
|
902 |
+
#. Found in changelog paragraph.
|
903 |
+
msgid "Version 2.3.2 (10/13/2010)"
|
904 |
+
msgstr ""
|
905 |
+
|
906 |
+
#. Found in changelog paragraph.
|
907 |
+
msgid ""
|
908 |
+
"Minor fix to release of version 2.3\n"
|
909 |
+
"1. Fix: Pages added to Smooth Slider were not displayed. Smooth Slider was turning empty. Fixed this issue\n"
|
910 |
+
"2. Along with posts, pages and media images, Smooth Slider now supports Custom Post Types"
|
911 |
+
msgstr ""
|
912 |
+
|
913 |
+
#. Found in changelog paragraph.
|
914 |
+
msgid "Version 2.3.1 (10/13/2010)"
|
915 |
+
msgstr ""
|
916 |
+
|
917 |
+
#. Found in changelog paragraph.
|
918 |
+
msgid "Minor upgrade to fix small issues with 2.3"
|
919 |
+
msgstr ""
|
920 |
+
|
921 |
+
#. Found in changelog paragraph.
|
922 |
+
msgid "Version 2.3 (10/12/2010)"
|
923 |
+
msgstr ""
|
924 |
+
|
925 |
+
#. Found in changelog paragraph.
|
926 |
+
msgid "Version 2.2 (12/24/2009)"
|
927 |
+
msgstr ""
|
928 |
+
|
929 |
+
#. Found in changelog paragraph.
|
930 |
+
msgid "Version 2.1.2 (11/26/2009)"
|
931 |
+
msgstr ""
|
932 |
+
|
933 |
+
#. Found in changelog paragraph.
|
934 |
+
msgid "Version 2.1.1 (11/19/2009)"
|
935 |
+
msgstr ""
|
936 |
+
|
937 |
+
#. Found in changelog paragraph.
|
938 |
+
msgid "Version 2.1 (11/18/2009)"
|
939 |
+
msgstr ""
|
940 |
+
|
941 |
+
#. Found in changelog paragraph.
|
942 |
+
msgid "Version 2.0 (10/08/2009)"
|
943 |
+
msgstr ""
|
944 |
+
|
945 |
+
#. Found in changelog paragraph.
|
946 |
+
msgid "Version 1.2 (09/22/2009)"
|
947 |
+
msgstr ""
|
948 |
+
|
949 |
+
#. Found in changelog paragraph.
|
950 |
+
msgid "Version 1.1 (09/14/2009)"
|
951 |
+
msgstr ""
|
952 |
+
|
953 |
+
#. Found in changelog paragraph.
|
954 |
+
msgid "Visit the plugin page to see the changelog and release notes."
|
955 |
+
msgstr ""
|
956 |
+
|
957 |
+
#. Found in faq list item.
|
958 |
+
msgid "In case you have upgraded from previous versions (<= 2.3.2) using WordPress automatic upgradation, and the plugin is not working, please deactivate and reactivate the plugin. "
|
959 |
+
msgstr ""
|
960 |
+
|
961 |
+
#. Found in faq list item.
|
962 |
+
msgid "Also, in case you are still getting list of the entries, please go to the Smooth Slider Settings page and just 'Save' the settings. Check if the settings Miscellaneous => Smooth Slider Styles to use on other than Post/Pages is equal to default. Then save the settings."
|
963 |
+
msgstr ""
|
964 |
+
|
965 |
+
#. Found in faq paragraph.
|
966 |
+
msgid "Check the other FAQs on Smooth <a href=\"http://guides.slidervilla.com/smooth-slider/\">Slider Documetation on SliderVilla</a>."
|
967 |
+
msgstr ""
|
tmp-smooth-slider.pot
ADDED
@@ -0,0 +1,927 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Copyright (C) 2015 Smooth Slider
|
2 |
+
# This file is distributed under the same license as the Smooth Slider package.
|
3 |
+
msgid ""
|
4 |
+
msgstr ""
|
5 |
+
"Project-Id-Version: Smooth Slider 2.8.2\n"
|
6 |
+
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/smooth-slider\n"
|
7 |
+
"POT-Creation-Date: 2015-11-25 08:04:13+00:00\n"
|
8 |
+
"MIME-Version: 1.0\n"
|
9 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
+
"Content-Transfer-Encoding: 8bit\n"
|
11 |
+
"PO-Revision-Date: 2015-MO-DA HO:MI+ZONE\n"
|
12 |
+
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
13 |
+
"Language-Team: LANGUAGE <LL@li.org>\n"
|
14 |
+
|
15 |
+
#: includes/media-images.php:30
|
16 |
+
msgid "Check the box and select the slider"
|
17 |
+
msgstr ""
|
18 |
+
|
19 |
+
#: includes/media-images.php:32
|
20 |
+
msgid "Add this Image to "
|
21 |
+
msgstr ""
|
22 |
+
|
23 |
+
#: includes/media-images.php:53
|
24 |
+
msgid "Slide Link URL"
|
25 |
+
msgstr ""
|
26 |
+
|
27 |
+
#: includes/media-images.php:55
|
28 |
+
msgid "(If left empty, it will be by default linked to attachment permalink.)"
|
29 |
+
msgstr ""
|
30 |
+
|
31 |
+
#: includes/media-images.php:59 smooth-slider.php:599
|
32 |
+
msgid "Do not link this slide to any page(url)"
|
33 |
+
msgstr ""
|
34 |
+
|
35 |
+
#: settings/settings.php:127 settings/settings.php:128
|
36 |
+
msgid "Settings imported successfully "
|
37 |
+
msgstr ""
|
38 |
+
|
39 |
+
#: settings/settings.php:131 settings/settings.php:132
|
40 |
+
msgid ""
|
41 |
+
"Settings imported do not match to Smooth Slider Settings. Please check the "
|
42 |
+
"file."
|
43 |
+
msgstr ""
|
44 |
+
|
45 |
+
#: settings/settings.php:136 settings/settings.php:137
|
46 |
+
msgid ""
|
47 |
+
"Error in File, Settings not imported. Please check the file being imported. "
|
48 |
+
msgstr ""
|
49 |
+
|
50 |
+
#: settings/settings.php:147
|
51 |
+
msgid "Smooth Slider Settings "
|
52 |
+
msgstr ""
|
53 |
+
|
54 |
+
#: settings/settings.php:153
|
55 |
+
msgid "Preview"
|
56 |
+
msgstr ""
|
57 |
+
|
58 |
+
#: settings/settings.php:180
|
59 |
+
msgid "Basic Controls"
|
60 |
+
msgstr ""
|
61 |
+
|
62 |
+
#: settings/settings.php:184
|
63 |
+
msgid "Select Skin"
|
64 |
+
msgstr ""
|
65 |
+
|
66 |
+
#: settings/settings.php:200
|
67 |
+
msgid " Enable autostepping of slides"
|
68 |
+
msgstr ""
|
69 |
+
|
70 |
+
#: settings/settings.php:207
|
71 |
+
msgid "Slide Transition Effect"
|
72 |
+
msgstr ""
|
73 |
+
|
74 |
+
#: settings/settings.php:209
|
75 |
+
msgid "Scroll Horizontally"
|
76 |
+
msgstr ""
|
77 |
+
|
78 |
+
#: settings/settings.php:210
|
79 |
+
msgid "Scroll Vertically"
|
80 |
+
msgstr ""
|
81 |
+
|
82 |
+
#: settings/settings.php:211
|
83 |
+
msgid "Turn Up"
|
84 |
+
msgstr ""
|
85 |
+
|
86 |
+
#: settings/settings.php:212
|
87 |
+
msgid "Turn Down"
|
88 |
+
msgstr ""
|
89 |
+
|
90 |
+
#: settings/settings.php:213
|
91 |
+
msgid "Fade"
|
92 |
+
msgstr ""
|
93 |
+
|
94 |
+
#: settings/settings.php:214
|
95 |
+
msgid "Uncover Slide"
|
96 |
+
msgstr ""
|
97 |
+
|
98 |
+
#: settings/settings.php:219
|
99 |
+
msgid "Select the Transition Effect from six different effects."
|
100 |
+
msgstr ""
|
101 |
+
|
102 |
+
#: settings/settings.php:226
|
103 |
+
msgid "Slide Pause Interval"
|
104 |
+
msgstr ""
|
105 |
+
|
106 |
+
#: settings/settings.php:227
|
107 |
+
msgid "(in secs)"
|
108 |
+
msgstr ""
|
109 |
+
|
110 |
+
#: settings/settings.php:231
|
111 |
+
msgid ""
|
112 |
+
"Enter number of secs you want the slider to stop before sliding to next "
|
113 |
+
"slide."
|
114 |
+
msgstr ""
|
115 |
+
|
116 |
+
#: settings/settings.php:238
|
117 |
+
msgid "Slide Animation Length"
|
118 |
+
msgstr ""
|
119 |
+
|
120 |
+
#: settings/settings.php:243
|
121 |
+
msgid ""
|
122 |
+
"The duration of Slide Animation in milliseconds. Lower value indicates fast "
|
123 |
+
"animation"
|
124 |
+
msgstr ""
|
125 |
+
|
126 |
+
#: settings/settings.php:250
|
127 |
+
msgid "Number of Posts in the Slideshow"
|
128 |
+
msgstr ""
|
129 |
+
|
130 |
+
#: settings/settings.php:256
|
131 |
+
msgid "Slide Background Color"
|
132 |
+
msgstr ""
|
133 |
+
|
134 |
+
#: settings/settings.php:258
|
135 |
+
msgid " Use Transparent Background"
|
136 |
+
msgstr ""
|
137 |
+
|
138 |
+
#: settings/settings.php:262
|
139 |
+
msgid "Min. Slider Height"
|
140 |
+
msgstr ""
|
141 |
+
|
142 |
+
#: settings/settings.php:263 settings/settings.php:269
|
143 |
+
#: settings/settings.php:298 settings/settings.php:456
|
144 |
+
#: settings/settings.php:511 settings/settings.php:590
|
145 |
+
#: settings/settings.php:596 settings/settings.php:677
|
146 |
+
msgid "px"
|
147 |
+
msgstr ""
|
148 |
+
|
149 |
+
#: settings/settings.php:268
|
150 |
+
msgid "Slider Width"
|
151 |
+
msgstr ""
|
152 |
+
|
153 |
+
#: settings/settings.php:273 settings/settings.php:607
|
154 |
+
msgid "Border Thickness"
|
155 |
+
msgstr ""
|
156 |
+
|
157 |
+
#: settings/settings.php:278
|
158 |
+
msgid "Enter 0 if no border is required"
|
159 |
+
msgstr ""
|
160 |
+
|
161 |
+
#: settings/settings.php:285 settings/settings.php:619
|
162 |
+
msgid "Border Color"
|
163 |
+
msgstr ""
|
164 |
+
|
165 |
+
#: settings/settings.php:290 settings/settings.php:291
|
166 |
+
msgid "Navigation Buttons"
|
167 |
+
msgstr ""
|
168 |
+
|
169 |
+
#: settings/settings.php:294
|
170 |
+
msgid "Show Prev/Next navigation arrows"
|
171 |
+
msgstr ""
|
172 |
+
|
173 |
+
#: settings/settings.php:295
|
174 |
+
msgid "Show go to slide number links or images"
|
175 |
+
msgstr ""
|
176 |
+
|
177 |
+
#: settings/settings.php:296
|
178 |
+
msgid "None "
|
179 |
+
msgstr ""
|
180 |
+
|
181 |
+
#: settings/settings.php:297
|
182 |
+
msgid "Numbers"
|
183 |
+
msgstr ""
|
184 |
+
|
185 |
+
#: settings/settings.php:298
|
186 |
+
msgid "Custom Images for Navigation"
|
187 |
+
msgstr ""
|
188 |
+
|
189 |
+
#: settings/settings.php:298
|
190 |
+
msgid "Fixed Images for Navigation"
|
191 |
+
msgstr ""
|
192 |
+
|
193 |
+
#: settings/settings.php:298
|
194 |
+
msgid "Size: "
|
195 |
+
msgstr ""
|
196 |
+
|
197 |
+
#: settings/settings.php:299
|
198 |
+
msgid "Enter Custom Text or HTML"
|
199 |
+
msgstr ""
|
200 |
+
|
201 |
+
#: settings/settings.php:306 settings/settings.php:471
|
202 |
+
#: settings/settings.php:526 settings/settings.php:637
|
203 |
+
#: settings/settings.php:791 settings/settings.php:849
|
204 |
+
msgid "Save Changes"
|
205 |
+
msgstr ""
|
206 |
+
|
207 |
+
#: settings/settings.php:311
|
208 |
+
msgid "Miscellaneous"
|
209 |
+
msgstr ""
|
210 |
+
|
211 |
+
#: settings/settings.php:316
|
212 |
+
msgid "Retain these html tags"
|
213 |
+
msgstr ""
|
214 |
+
|
215 |
+
#: settings/settings.php:321
|
216 |
+
msgid ""
|
217 |
+
"Put the tags like <br><a><p> to retain them.Do not separate "
|
218 |
+
"them using commas, neither use ⁄ anywhere."
|
219 |
+
msgstr ""
|
220 |
+
|
221 |
+
#: settings/settings.php:327
|
222 |
+
msgid "Continue Reading Text"
|
223 |
+
msgstr ""
|
224 |
+
|
225 |
+
#: settings/settings.php:332
|
226 |
+
msgid "Color of \"Continue Reading Text\""
|
227 |
+
msgstr ""
|
228 |
+
|
229 |
+
#: settings/settings.php:338
|
230 |
+
msgid "Minimum User Level to add Post to the Slider"
|
231 |
+
msgstr ""
|
232 |
+
|
233 |
+
#: settings/settings.php:340
|
234 |
+
msgid "Administrator"
|
235 |
+
msgstr ""
|
236 |
+
|
237 |
+
#: settings/settings.php:341
|
238 |
+
msgid "Editor and Admininstrator"
|
239 |
+
msgstr ""
|
240 |
+
|
241 |
+
#: settings/settings.php:342
|
242 |
+
msgid "Author, Editor and Admininstrator"
|
243 |
+
msgstr ""
|
244 |
+
|
245 |
+
#: settings/settings.php:343
|
246 |
+
msgid "Contributor, Author, Editor and Admininstrator"
|
247 |
+
msgstr ""
|
248 |
+
|
249 |
+
#: settings/settings.php:349
|
250 |
+
msgid "Randomize Slides in Slider"
|
251 |
+
msgstr ""
|
252 |
+
|
253 |
+
#: settings/settings.php:354
|
254 |
+
msgid "check this if you want the slides added to appear in random order"
|
255 |
+
msgstr ""
|
256 |
+
|
257 |
+
#: settings/settings.php:361
|
258 |
+
msgid "Text to display in the JavaScript disabled browser"
|
259 |
+
msgstr ""
|
260 |
+
|
261 |
+
#: settings/settings.php:366
|
262 |
+
msgid "Add Shortcode Support"
|
263 |
+
msgstr ""
|
264 |
+
|
265 |
+
#: settings/settings.php:367
|
266 |
+
msgid ""
|
267 |
+
"check this if you want to use Smooth Slider Shortcode i.e [smoothslider]"
|
268 |
+
msgstr ""
|
269 |
+
|
270 |
+
#: settings/settings.php:371
|
271 |
+
msgid "Multiple Slider Feature"
|
272 |
+
msgstr ""
|
273 |
+
|
274 |
+
#: settings/settings.php:374
|
275 |
+
msgid "Enable Multiple Slider Function on Edit Post/Page"
|
276 |
+
msgstr ""
|
277 |
+
|
278 |
+
#: settings/settings.php:378
|
279 |
+
msgid "Enable FOUC"
|
280 |
+
msgstr ""
|
281 |
+
|
282 |
+
#: settings/settings.php:383
|
283 |
+
msgid ""
|
284 |
+
"(check this if you would not want to disable Flash of Unstyled Content in "
|
285 |
+
"the slider when the page is loaded)"
|
286 |
+
msgstr ""
|
287 |
+
|
288 |
+
#: settings/settings.php:390
|
289 |
+
msgid "Custom Styles"
|
290 |
+
msgstr ""
|
291 |
+
|
292 |
+
#: settings/settings.php:395
|
293 |
+
msgid ""
|
294 |
+
"(custom css styles that you would want to be applied to the slider elements)"
|
295 |
+
msgstr ""
|
296 |
+
|
297 |
+
#: settings/settings.php:408
|
298 |
+
msgid "Slider Title"
|
299 |
+
msgstr ""
|
300 |
+
|
301 |
+
#: settings/settings.php:409
|
302 |
+
msgid "Customize the looks of the main title of the Slideshow from here"
|
303 |
+
msgstr ""
|
304 |
+
|
305 |
+
#: settings/settings.php:413 settings/settings.php:420
|
306 |
+
msgid "Default Title Text"
|
307 |
+
msgstr ""
|
308 |
+
|
309 |
+
#: settings/settings.php:418
|
310 |
+
msgid "Pick Slider Title From"
|
311 |
+
msgstr ""
|
312 |
+
|
313 |
+
#: settings/settings.php:421
|
314 |
+
msgid "Slider Name"
|
315 |
+
msgstr ""
|
316 |
+
|
317 |
+
#: settings/settings.php:427 settings/settings.php:481
|
318 |
+
#: settings/settings.php:647
|
319 |
+
msgid "Font"
|
320 |
+
msgstr ""
|
321 |
+
|
322 |
+
#: settings/settings.php:451 settings/settings.php:505
|
323 |
+
#: settings/settings.php:671
|
324 |
+
msgid "Font Color"
|
325 |
+
msgstr ""
|
326 |
+
|
327 |
+
#: settings/settings.php:455 settings/settings.php:510
|
328 |
+
#: settings/settings.php:676
|
329 |
+
msgid "Font Size"
|
330 |
+
msgstr ""
|
331 |
+
|
332 |
+
#: settings/settings.php:460 settings/settings.php:515
|
333 |
+
#: settings/settings.php:681
|
334 |
+
msgid "Font Style"
|
335 |
+
msgstr ""
|
336 |
+
|
337 |
+
#: settings/settings.php:462 settings/settings.php:517
|
338 |
+
#: settings/settings.php:683
|
339 |
+
msgid "Bold"
|
340 |
+
msgstr ""
|
341 |
+
|
342 |
+
#: settings/settings.php:463 settings/settings.php:518
|
343 |
+
#: settings/settings.php:684
|
344 |
+
msgid "Bold Italic"
|
345 |
+
msgstr ""
|
346 |
+
|
347 |
+
#: settings/settings.php:464 settings/settings.php:519
|
348 |
+
#: settings/settings.php:685
|
349 |
+
msgid "Italic"
|
350 |
+
msgstr ""
|
351 |
+
|
352 |
+
#: settings/settings.php:465 settings/settings.php:520
|
353 |
+
#: settings/settings.php:686
|
354 |
+
msgid "Normal"
|
355 |
+
msgstr ""
|
356 |
+
|
357 |
+
#: settings/settings.php:476
|
358 |
+
msgid "Post Title"
|
359 |
+
msgstr ""
|
360 |
+
|
361 |
+
#: settings/settings.php:477
|
362 |
+
msgid "Customize the looks of the title of each of the sliding post here"
|
363 |
+
msgstr ""
|
364 |
+
|
365 |
+
#: settings/settings.php:531
|
366 |
+
msgid "Thumbnail Image"
|
367 |
+
msgstr ""
|
368 |
+
|
369 |
+
#: settings/settings.php:532
|
370 |
+
msgid ""
|
371 |
+
"Customize the looks of the thumbnail image for each of the sliding post here"
|
372 |
+
msgstr ""
|
373 |
+
|
374 |
+
#: settings/settings.php:536
|
375 |
+
msgid "Image Pick Preferences"
|
376 |
+
msgstr ""
|
377 |
+
|
378 |
+
#: settings/settings.php:536 settings/settings.php:537
|
379 |
+
msgid ""
|
380 |
+
"(The first one is having priority over second, the second having priority on "
|
381 |
+
"third and so on)"
|
382 |
+
msgstr ""
|
383 |
+
|
384 |
+
#: settings/settings.php:537
|
385 |
+
msgid "Image Pick Sequence"
|
386 |
+
msgstr ""
|
387 |
+
|
388 |
+
#: settings/settings.php:538
|
389 |
+
msgid "Use Custom Field/Key"
|
390 |
+
msgstr ""
|
391 |
+
|
392 |
+
#: settings/settings.php:539
|
393 |
+
msgid "Name of the Custom Field/Key"
|
394 |
+
msgstr ""
|
395 |
+
|
396 |
+
#: settings/settings.php:540
|
397 |
+
msgid "Use Featured Post/Thumbnail (Wordpress 3.0 + feature)"
|
398 |
+
msgstr ""
|
399 |
+
|
400 |
+
#: settings/settings.php:541
|
401 |
+
msgid "Consider Images attached to the post"
|
402 |
+
msgstr ""
|
403 |
+
|
404 |
+
#: settings/settings.php:542
|
405 |
+
msgid "Order of the Image attachment to pick"
|
406 |
+
msgstr ""
|
407 |
+
|
408 |
+
#: settings/settings.php:543
|
409 |
+
msgid ""
|
410 |
+
"Scan images from the post, in case there is no attached image to the post"
|
411 |
+
msgstr ""
|
412 |
+
|
413 |
+
#: settings/settings.php:548
|
414 |
+
msgid "Align to"
|
415 |
+
msgstr ""
|
416 |
+
|
417 |
+
#: settings/settings.php:550
|
418 |
+
msgid "Left"
|
419 |
+
msgstr ""
|
420 |
+
|
421 |
+
#: settings/settings.php:551
|
422 |
+
msgid "Right"
|
423 |
+
msgstr ""
|
424 |
+
|
425 |
+
#: settings/settings.php:552 settings/settings.php:868
|
426 |
+
msgid "None"
|
427 |
+
msgstr ""
|
428 |
+
|
429 |
+
#: settings/settings.php:558
|
430 |
+
msgid "Wordpress Image Extract Size"
|
431 |
+
msgstr ""
|
432 |
+
|
433 |
+
#: settings/settings.php:561
|
434 |
+
msgid "Full"
|
435 |
+
msgstr ""
|
436 |
+
|
437 |
+
#: settings/settings.php:562
|
438 |
+
msgid "Large"
|
439 |
+
msgstr ""
|
440 |
+
|
441 |
+
#: settings/settings.php:563
|
442 |
+
msgid "Medium"
|
443 |
+
msgstr ""
|
444 |
+
|
445 |
+
#: settings/settings.php:564
|
446 |
+
msgid "Thumbnail"
|
447 |
+
msgstr ""
|
448 |
+
|
449 |
+
#: settings/settings.php:569
|
450 |
+
msgid ""
|
451 |
+
"This is for fast page load, in case you choose 'Custom Size' setting from "
|
452 |
+
"below, you would not like to extract 'full' size image from the media "
|
453 |
+
"library. In this case you can use, 'medium' or 'thumbnail' image. This is "
|
454 |
+
"because, for every image upload to the media gallery WordPress creates four "
|
455 |
+
"sizes of the same image. So you can choose which to load in the slider and "
|
456 |
+
"then specify the actual size."
|
457 |
+
msgstr ""
|
458 |
+
|
459 |
+
#: settings/settings.php:578 settings/settings.php:579
|
460 |
+
msgid "Image Size"
|
461 |
+
msgstr ""
|
462 |
+
|
463 |
+
#: settings/settings.php:580
|
464 |
+
msgid "Original Size"
|
465 |
+
msgstr ""
|
466 |
+
|
467 |
+
#: settings/settings.php:584
|
468 |
+
msgid ""
|
469 |
+
"(In this case, the size would be equal to the extracted image (full/large/"
|
470 |
+
"medium/thumbnail) from the above settings"
|
471 |
+
msgstr ""
|
472 |
+
|
473 |
+
#: settings/settings.php:588
|
474 |
+
msgid "Custom Size:"
|
475 |
+
msgstr ""
|
476 |
+
|
477 |
+
#: settings/settings.php:589
|
478 |
+
msgid "Width"
|
479 |
+
msgstr ""
|
480 |
+
|
481 |
+
#: settings/settings.php:595
|
482 |
+
msgid "Maximum Height of the Image"
|
483 |
+
msgstr ""
|
484 |
+
|
485 |
+
#: settings/settings.php:600
|
486 |
+
msgid ""
|
487 |
+
"(This is necessary in order to keep the maximum image height in control)"
|
488 |
+
msgstr ""
|
489 |
+
|
490 |
+
#: settings/settings.php:612
|
491 |
+
msgid "px (put 0 if no border is required)"
|
492 |
+
msgstr ""
|
493 |
+
|
494 |
+
#: settings/settings.php:624
|
495 |
+
msgid "Make pure Image Slider"
|
496 |
+
msgstr ""
|
497 |
+
|
498 |
+
#: settings/settings.php:629
|
499 |
+
msgid "(check this to convert Smooth Slider to Image Slider with no content)"
|
500 |
+
msgstr ""
|
501 |
+
|
502 |
+
#: settings/settings.php:643
|
503 |
+
msgid "Slider Content"
|
504 |
+
msgstr ""
|
505 |
+
|
506 |
+
#: settings/settings.php:644
|
507 |
+
msgid "Customize the looks of the content of each of the sliding post here"
|
508 |
+
msgstr ""
|
509 |
+
|
510 |
+
#: settings/settings.php:692
|
511 |
+
msgid "Pick content From"
|
512 |
+
msgstr ""
|
513 |
+
|
514 |
+
#: settings/settings.php:694
|
515 |
+
msgid "Slider Content Custom field"
|
516 |
+
msgstr ""
|
517 |
+
|
518 |
+
#: settings/settings.php:695
|
519 |
+
msgid "Post Excerpt"
|
520 |
+
msgstr ""
|
521 |
+
|
522 |
+
#: settings/settings.php:696
|
523 |
+
msgid "From Content"
|
524 |
+
msgstr ""
|
525 |
+
|
526 |
+
#: settings/settings.php:702
|
527 |
+
msgid "Maximum content size (in words)"
|
528 |
+
msgstr ""
|
529 |
+
|
530 |
+
#: settings/settings.php:707
|
531 |
+
msgid ""
|
532 |
+
"If the number of Words are not specified in this field, the below field i.e. "
|
533 |
+
"the 'Maximum Content Size in Chracters' will be considered."
|
534 |
+
msgstr ""
|
535 |
+
|
536 |
+
#: settings/settings.php:714
|
537 |
+
msgid "Maximum content size (in characters)"
|
538 |
+
msgstr ""
|
539 |
+
|
540 |
+
#: settings/settings.php:715
|
541 |
+
msgid "characters"
|
542 |
+
msgstr ""
|
543 |
+
|
544 |
+
#: settings/settings.php:725
|
545 |
+
msgid "Preview on Settings Panel"
|
546 |
+
msgstr ""
|
547 |
+
|
548 |
+
#: settings/settings.php:730
|
549 |
+
msgid "Disable Preview Section"
|
550 |
+
msgstr ""
|
551 |
+
|
552 |
+
#: settings/settings.php:736
|
553 |
+
msgid ""
|
554 |
+
"If disabled, the 'Preview' of Slider on this Settings page will be removed."
|
555 |
+
msgstr ""
|
556 |
+
|
557 |
+
#: settings/settings.php:743
|
558 |
+
msgid "Type of Smooth Slider"
|
559 |
+
msgstr ""
|
560 |
+
|
561 |
+
#: settings/settings.php:745
|
562 |
+
msgid "Recent Posts Slider"
|
563 |
+
msgstr ""
|
564 |
+
|
565 |
+
#: settings/settings.php:746
|
566 |
+
msgid "Category Slider"
|
567 |
+
msgstr ""
|
568 |
+
|
569 |
+
#: settings/settings.php:747
|
570 |
+
msgid "Custom Slider"
|
571 |
+
msgstr ""
|
572 |
+
|
573 |
+
#: settings/settings.php:777 settings/settings.php:778
|
574 |
+
msgid "Preview Slider Params"
|
575 |
+
msgstr ""
|
576 |
+
|
577 |
+
#: settings/settings.php:780
|
578 |
+
msgid "Select Slider Name"
|
579 |
+
msgstr ""
|
580 |
+
|
581 |
+
#: settings/settings.php:783
|
582 |
+
msgid "Select Category"
|
583 |
+
msgstr ""
|
584 |
+
|
585 |
+
#: settings/settings.php:796
|
586 |
+
msgid "Shortcode"
|
587 |
+
msgstr ""
|
588 |
+
|
589 |
+
#: settings/settings.php:797
|
590 |
+
msgid ""
|
591 |
+
"Paste the below shortcode on Page/Post Edit Panel to get the slider as shown "
|
592 |
+
"in the above Preview"
|
593 |
+
msgstr ""
|
594 |
+
|
595 |
+
#: settings/settings.php:809
|
596 |
+
msgid "Template Tag"
|
597 |
+
msgstr ""
|
598 |
+
|
599 |
+
#: settings/settings.php:810
|
600 |
+
msgid ""
|
601 |
+
"Paste the below template tag in your theme template file like index.php or "
|
602 |
+
"page.php at required location to get the slider as shown in the above Preview"
|
603 |
+
msgstr ""
|
604 |
+
|
605 |
+
#: settings/settings.php:825
|
606 |
+
msgid "CSS Generated thru these settings"
|
607 |
+
msgstr ""
|
608 |
+
|
609 |
+
#: settings/settings.php:826
|
610 |
+
msgid ""
|
611 |
+
"Save Changes for the settings first and then view this data. You can use "
|
612 |
+
"this CSS in your 'custom' stylesheets if you use other than 'default' value "
|
613 |
+
"for the Stylesheet folder."
|
614 |
+
msgstr ""
|
615 |
+
|
616 |
+
#: settings/settings.php:866
|
617 |
+
msgid "Reset Settings to"
|
618 |
+
msgstr ""
|
619 |
+
|
620 |
+
#: settings/settings.php:869
|
621 |
+
msgid "Global Default"
|
622 |
+
msgstr ""
|
623 |
+
|
624 |
+
#: settings/settings.php:888
|
625 |
+
msgid "Reset Settings"
|
626 |
+
msgstr ""
|
627 |
+
|
628 |
+
#: settings/settings.php:896
|
629 |
+
msgid "Import Settings Set by uploading a Settings File"
|
630 |
+
msgstr ""
|
631 |
+
|
632 |
+
#: settings/settings.php:900
|
633 |
+
msgid "Import Settings from a file"
|
634 |
+
msgstr ""
|
635 |
+
|
636 |
+
#: settings/settings.php:909 settings/sliders.php:306
|
637 |
+
msgid ""
|
638 |
+
"Hey, I noticed you have created an awesome slider using Smooth Slider and "
|
639 |
+
"using it for more than a week. Could you please do me a BIG favor and give "
|
640 |
+
"it a 5-star rating on WordPress? Just to help us spread the word and boost "
|
641 |
+
"our motivation."
|
642 |
+
msgstr ""
|
643 |
+
|
644 |
+
#: settings/settings.php:910 settings/sliders.php:307
|
645 |
+
msgid "~ Tejaswini from SliderVilla"
|
646 |
+
msgstr ""
|
647 |
+
|
648 |
+
#: settings/settings.php:911 settings/sliders.php:308
|
649 |
+
msgid "Please review and rate Smooth Slider on WordPress.org"
|
650 |
+
msgstr ""
|
651 |
+
|
652 |
+
#: settings/settings.php:911 settings/sliders.php:308
|
653 |
+
msgid "Ok, you deserve it"
|
654 |
+
msgstr ""
|
655 |
+
|
656 |
+
#: settings/settings.php:912 settings/sliders.php:309
|
657 |
+
msgid "Rate Smooth Slider at some other time!"
|
658 |
+
msgstr ""
|
659 |
+
|
660 |
+
#: settings/settings.php:912 settings/sliders.php:309
|
661 |
+
msgid "Nope, maybe later"
|
662 |
+
msgstr ""
|
663 |
+
|
664 |
+
#: settings/settings.php:913 settings/sliders.php:310
|
665 |
+
msgid "Click this if you have already rated us 5-star!"
|
666 |
+
msgstr ""
|
667 |
+
|
668 |
+
#: settings/settings.php:913 settings/sliders.php:310
|
669 |
+
msgid "I already did"
|
670 |
+
msgstr ""
|
671 |
+
|
672 |
+
#: settings/settings.php:982
|
673 |
+
msgid "Quick Embed Shortcode"
|
674 |
+
msgstr ""
|
675 |
+
|
676 |
+
#: settings/settings.php:995
|
677 |
+
msgid "Quick Embed Template Tag"
|
678 |
+
msgstr ""
|
679 |
+
|
680 |
+
#: settings/settings.php:1008
|
681 |
+
msgid ""
|
682 |
+
"Go to Sliders page where you can re-order the slide posts, delete the slides "
|
683 |
+
"from the slider etc."
|
684 |
+
msgstr ""
|
685 |
+
|
686 |
+
#: settings/settings.php:1008
|
687 |
+
msgid "Go to Sliders Admin"
|
688 |
+
msgstr ""
|
689 |
+
|
690 |
+
#: settings/settings.php:1009
|
691 |
+
msgid "Export this Settings Set to a file"
|
692 |
+
msgstr ""
|
693 |
+
|
694 |
+
#: settings/settings.php:1010
|
695 |
+
msgid "Go to Import Settings Form"
|
696 |
+
msgstr ""
|
697 |
+
|
698 |
+
#: settings/settings.php:1024 settings/sliders.php:341
|
699 |
+
msgid "About this Plugin:"
|
700 |
+
msgstr ""
|
701 |
+
|
702 |
+
#: settings/settings.php:1027 settings/sliders.php:344
|
703 |
+
msgid "Smooth Slider Homepage"
|
704 |
+
msgstr ""
|
705 |
+
|
706 |
+
#: settings/settings.php:1027 settings/sliders.php:344
|
707 |
+
msgid "Plugin Homepage"
|
708 |
+
msgstr ""
|
709 |
+
|
710 |
+
#: settings/settings.php:1028 settings/sliders.php:345
|
711 |
+
msgid "Support Forum for Smooth Slider"
|
712 |
+
msgstr ""
|
713 |
+
|
714 |
+
#: settings/settings.php:1029 settings/sliders.php:346
|
715 |
+
msgid "Support Forum"
|
716 |
+
msgstr ""
|
717 |
+
|
718 |
+
#: settings/settings.php:1030 settings/sliders.php:347
|
719 |
+
msgid "Smooth Slider Author Page"
|
720 |
+
msgstr ""
|
721 |
+
|
722 |
+
#: settings/settings.php:1030 settings/sliders.php:347
|
723 |
+
msgid "About the Author"
|
724 |
+
msgstr ""
|
725 |
+
|
726 |
+
#: settings/settings.php:1031 settings/sliders.php:348
|
727 |
+
msgid ""
|
728 |
+
"Donate if you liked the plugin and support in enhancing Smooth Slider and "
|
729 |
+
"creating new plugins"
|
730 |
+
msgstr ""
|
731 |
+
|
732 |
+
#: settings/settings.php:1031 settings/sliders.php:348
|
733 |
+
msgid "Donate with Paypal"
|
734 |
+
msgstr ""
|
735 |
+
|
736 |
+
#: settings/sliders.php:6
|
737 |
+
msgid "Sliders Created"
|
738 |
+
msgstr ""
|
739 |
+
|
740 |
+
#: settings/sliders.php:28 settings/sliders.php:232
|
741 |
+
msgid "Remove All at Once"
|
742 |
+
msgstr ""
|
743 |
+
|
744 |
+
#: settings/sliders.php:39 settings/sliders.php:235
|
745 |
+
msgid "Delete Slider"
|
746 |
+
msgstr ""
|
747 |
+
|
748 |
+
#: settings/sliders.php:93 settings/sliders.php:293
|
749 |
+
msgid "Rename"
|
750 |
+
msgstr ""
|
751 |
+
|
752 |
+
#: settings/sliders.php:155
|
753 |
+
msgid ""
|
754 |
+
"Settings Page for Smooth Slider where you can change the color, font etc. "
|
755 |
+
"for the sliders"
|
756 |
+
msgstr ""
|
757 |
+
|
758 |
+
#: settings/sliders.php:155
|
759 |
+
msgid "Go to Smooth Slider Settings page"
|
760 |
+
msgstr ""
|
761 |
+
|
762 |
+
#: settings/sliders.php:164
|
763 |
+
msgid "Create New Slider"
|
764 |
+
msgstr ""
|
765 |
+
|
766 |
+
#: settings/sliders.php:179
|
767 |
+
msgid "Add Images to"
|
768 |
+
msgstr ""
|
769 |
+
|
770 |
+
#: settings/sliders.php:196
|
771 |
+
msgid "Posts/Pages Added To"
|
772 |
+
msgstr ""
|
773 |
+
|
774 |
+
#: settings/sliders.php:196
|
775 |
+
msgid "(Slider ID"
|
776 |
+
msgstr ""
|
777 |
+
|
778 |
+
#: settings/sliders.php:197
|
779 |
+
msgid "Check the Post/Page and Press \"Remove Selected\" to remove them From"
|
780 |
+
msgstr ""
|
781 |
+
|
782 |
+
#: settings/sliders.php:197
|
783 |
+
msgid "Press \"Remove All at Once\" to remove all the posts from the"
|
784 |
+
msgstr ""
|
785 |
+
|
786 |
+
#: settings/sliders.php:200 settings/sliders.php:228
|
787 |
+
msgid "Post/Page Title"
|
788 |
+
msgstr ""
|
789 |
+
|
790 |
+
#: settings/sliders.php:200 settings/sliders.php:228
|
791 |
+
msgid "Author"
|
792 |
+
msgstr ""
|
793 |
+
|
794 |
+
#: settings/sliders.php:200 settings/sliders.php:228
|
795 |
+
msgid "Post Date"
|
796 |
+
msgstr ""
|
797 |
+
|
798 |
+
#: settings/sliders.php:200 settings/sliders.php:228
|
799 |
+
msgid "Remove Post"
|
800 |
+
msgstr ""
|
801 |
+
|
802 |
+
#: settings/sliders.php:220
|
803 |
+
msgid "(Edit)"
|
804 |
+
msgstr ""
|
805 |
+
|
806 |
+
#: settings/sliders.php:220
|
807 |
+
msgid "(View)"
|
808 |
+
msgstr ""
|
809 |
+
|
810 |
+
#: settings/sliders.php:226 settings/sliders.php:271
|
811 |
+
msgid ""
|
812 |
+
"No posts/pages have been added to the Slider - You can add respective post/"
|
813 |
+
"page to slider on the Edit screen for that Post/Page"
|
814 |
+
msgstr ""
|
815 |
+
|
816 |
+
#: settings/sliders.php:232
|
817 |
+
msgid "Remove Selected"
|
818 |
+
msgstr ""
|
819 |
+
|
820 |
+
#: settings/sliders.php:247
|
821 |
+
msgid "Reorder the Posts/Pages Added To"
|
822 |
+
msgstr ""
|
823 |
+
|
824 |
+
#: settings/sliders.php:248
|
825 |
+
msgid ""
|
826 |
+
"Click on and drag the post/page title to a new spot within the list, and the "
|
827 |
+
"other items will adjust to fit."
|
828 |
+
msgstr ""
|
829 |
+
|
830 |
+
#: settings/sliders.php:284
|
831 |
+
msgid "Rename Slider"
|
832 |
+
msgstr ""
|
833 |
+
|
834 |
+
#: settings/sliders.php:288
|
835 |
+
msgid "Rename Slider to"
|
836 |
+
msgstr ""
|
837 |
+
|
838 |
+
#: settings/sliders.php:293
|
839 |
+
msgid "rename_slider"
|
840 |
+
msgstr ""
|
841 |
+
|
842 |
+
#: settings/sliders.php:324
|
843 |
+
msgid "Enter New Slider Name"
|
844 |
+
msgstr ""
|
845 |
+
|
846 |
+
#: settings/sliders.php:329
|
847 |
+
msgid "Create New"
|
848 |
+
msgstr ""
|
849 |
+
|
850 |
+
#. #-#-#-#-# tmp-smooth-slider.pot (Smooth Slider 2.8.2) #-#-#-#-#
|
851 |
+
#. Plugin Name of the plugin/theme
|
852 |
+
#: smooth-slider.php:433 smooth-slider.php:452
|
853 |
+
msgid "Smooth Slider"
|
854 |
+
msgstr ""
|
855 |
+
|
856 |
+
#: smooth-slider.php:575
|
857 |
+
msgid "Add this post/page to"
|
858 |
+
msgstr ""
|
859 |
+
|
860 |
+
#: smooth-slider.php:588
|
861 |
+
msgid "Show All"
|
862 |
+
msgstr ""
|
863 |
+
|
864 |
+
#: smooth-slider.php:595
|
865 |
+
msgid "Slide Link URL "
|
866 |
+
msgstr ""
|
867 |
+
|
868 |
+
#: smooth-slider.php:596
|
869 |
+
msgid "If left empty, it will be by default linked to the permalink."
|
870 |
+
msgstr ""
|
871 |
+
|
872 |
+
#: smooth-slider.php:609
|
873 |
+
msgid "Display "
|
874 |
+
msgstr ""
|
875 |
+
|
876 |
+
#: smooth-slider.php:614
|
877 |
+
msgid "on this Post/Page"
|
878 |
+
msgstr ""
|
879 |
+
|
880 |
+
#: smooth-slider.php:615
|
881 |
+
msgid ""
|
882 |
+
"(Add the Smooth Slider template tag manually on your page.php/single.php or "
|
883 |
+
"whatever page template file)"
|
884 |
+
msgstr ""
|
885 |
+
|
886 |
+
#: smooth-slider.php:619
|
887 |
+
msgid "Stylesheet to use if slider is displayed on this Post/Page"
|
888 |
+
msgstr ""
|
889 |
+
|
890 |
+
#: smooth-slider.php:638
|
891 |
+
msgid "Custom Thumbnail Image(url)"
|
892 |
+
msgstr ""
|
893 |
+
|
894 |
+
#: smooth-slider.php:643
|
895 |
+
msgid "Expiry Date"
|
896 |
+
msgstr ""
|
897 |
+
|
898 |
+
#: smooth-slider.php:648
|
899 |
+
msgid "Disable Thumbnail Image"
|
900 |
+
msgstr ""
|
901 |
+
|
902 |
+
#: smooth-slider.php:655
|
903 |
+
msgid "Embed Shortcode"
|
904 |
+
msgstr ""
|
905 |
+
|
906 |
+
#: smooth-slider.php:727
|
907 |
+
msgid "Settings"
|
908 |
+
msgstr ""
|
909 |
+
|
910 |
+
#. Plugin URI of the plugin/theme
|
911 |
+
msgid "http://slidervilla.com/smooth-slider/"
|
912 |
+
msgstr ""
|
913 |
+
|
914 |
+
#. Description of the plugin/theme
|
915 |
+
msgid ""
|
916 |
+
"Smooth slider adds a responsive featured content on image slider using "
|
917 |
+
"shortcode, widget and template tags. Create and embed featured content "
|
918 |
+
"slider, recent post slider, category slider in less than 60 seconds."
|
919 |
+
msgstr ""
|
920 |
+
|
921 |
+
#. Author of the plugin/theme
|
922 |
+
msgid "SliderVilla"
|
923 |
+
msgstr ""
|
924 |
+
|
925 |
+
#. Author URI of the plugin/theme
|
926 |
+
msgid "http://slidervilla.com/"
|
927 |
+
msgstr ""
|