Version Description
- Oct 26, 2018 =
- Fix bug in translation of slider text controls.
Download this release
Release Info
Developer | cdillon27 |
Plugin | Strong Testimonials |
Version | 2.32.1 |
Comparing to | |
See all releases |
Code changes from version 2.32 to 2.32.1
- includes/class-strong-view-slideshow.php +16 -0
- readme.txt +4 -1
- strong-testimonials.php +2 -2
includes/class-strong-view-slideshow.php
CHANGED
@@ -409,6 +409,22 @@ class Strong_View_Slideshow extends Strong_View_Display {
|
|
409 |
if ( ! $setting ) {
|
410 |
$setting = 'none';
|
411 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
412 |
if ( isset( $options[ $setting ] ) && isset( $options[ $setting ]['args'] ) ) {
|
413 |
$args = array_merge( $args, $options[ $setting ]['args'] );
|
414 |
}
|
409 |
if ( ! $setting ) {
|
410 |
$setting = 'none';
|
411 |
}
|
412 |
+
|
413 |
+
/**
|
414 |
+
* Quick fix for ticket 12014 to translate slider text controls.
|
415 |
+
* TODO Refactor; see fix-i18n branch in translations.strong.test.
|
416 |
+
*
|
417 |
+
* @since 2.32.1
|
418 |
+
*/
|
419 |
+
if ( 'text' == $setting ) {
|
420 |
+
$options['text']['args'] = array(
|
421 |
+
'startText' => _x( 'Play', 'slideshow control', 'strong-testimonials' ),
|
422 |
+
'stopText' => _x( 'Pause', 'slideshow control', 'strong-testimonials' ),
|
423 |
+
'prevText' => _x( 'Previous', 'slideshow_control', 'strong-testimonials' ),
|
424 |
+
'nextText' => _x( 'Next', 'slideshow_control', 'strong-testimonials' ),
|
425 |
+
);
|
426 |
+
}
|
427 |
+
|
428 |
if ( isset( $options[ $setting ] ) && isset( $options[ $setting ]['args'] ) ) {
|
429 |
$args = array_merge( $args, $options[ $setting ]['args'] );
|
430 |
}
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Tags: testimonials, testimonial slider, testimonial form, reviews, star ratings
|
|
4 |
Requires at least: 3.7
|
5 |
Requires PHP: 5.2.4
|
6 |
Tested up to: 4.9
|
7 |
-
Stable tag: 2.32
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -215,6 +215,9 @@ If you prefer, start a private support ticket at [support.strongplugins.com](htt
|
|
215 |
|
216 |
== Changelog ==
|
217 |
|
|
|
|
|
|
|
218 |
= 2.32 - Aug 6, 2018 =
|
219 |
* Add carousel option.
|
220 |
* Add filters to form field classes.
|
4 |
Requires at least: 3.7
|
5 |
Requires PHP: 5.2.4
|
6 |
Tested up to: 4.9
|
7 |
+
Stable tag: 2.32.1
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
215 |
|
216 |
== Changelog ==
|
217 |
|
218 |
+
= 2.32.1 - Oct 26, 2018 =
|
219 |
+
* Fix bug in translation of slider text controls.
|
220 |
+
|
221 |
= 2.32 - Aug 6, 2018 =
|
222 |
* Add carousel option.
|
223 |
* Add filters to form field classes.
|
strong-testimonials.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
* Plugin URI: https://strongplugins.com/plugins/strong-testimonials/
|
5 |
* Description: Collect and display your testimonials or reviews.
|
6 |
* Author: Chris Dillon
|
7 |
-
* Version: 2.32
|
8 |
*
|
9 |
* Author URI: https://strongplugins.com/
|
10 |
* Text Domain: strong-testimonials
|
@@ -34,7 +34,7 @@ if ( ! defined( 'ABSPATH' ) ) {
|
|
34 |
exit;
|
35 |
}
|
36 |
|
37 |
-
define( 'WPMTST_VERSION', '2.32' );
|
38 |
define( 'WPMTST_PLUGIN', plugin_basename( __FILE__ ) ); // strong-testimonials/strong-testimonials.php
|
39 |
define( 'WPMTST', dirname( WPMTST_PLUGIN ) ); // strong-testimonials
|
40 |
define( 'STRONGPLUGINS_STORE_URL', 'https://strongplugins.com' );
|
4 |
* Plugin URI: https://strongplugins.com/plugins/strong-testimonials/
|
5 |
* Description: Collect and display your testimonials or reviews.
|
6 |
* Author: Chris Dillon
|
7 |
+
* Version: 2.32.1
|
8 |
*
|
9 |
* Author URI: https://strongplugins.com/
|
10 |
* Text Domain: strong-testimonials
|
34 |
exit;
|
35 |
}
|
36 |
|
37 |
+
define( 'WPMTST_VERSION', '2.32.1' );
|
38 |
define( 'WPMTST_PLUGIN', plugin_basename( __FILE__ ) ); // strong-testimonials/strong-testimonials.php
|
39 |
define( 'WPMTST', dirname( WPMTST_PLUGIN ) ); // strong-testimonials
|
40 |
define( 'STRONGPLUGINS_STORE_URL', 'https://strongplugins.com' );
|