Testimonials Widget - Version 2.18.3

Version Description

  • CSS class .hide renamed .display-none
  • This is the last version supporting pre-bxSlider options
Download this release

Release Info

Developer comprock
Plugin Icon wp plugin Testimonials Widget
Version 2.18.3
Comparing to
See all releases

Code changes from version 2.18.2 to 2.18.3

CHANGELOG.md CHANGED
@@ -2,6 +2,15 @@
2
 
3
  ## master
4
 
 
 
 
 
 
 
 
 
 
5
  ## 2.18.2
6
  * RESOLVE #57 Testimonials Stacking on first load
7
 
2
 
3
  ## master
4
 
5
+ ## 2.18.3
6
+ * Add option "Exclude bxSlider CSS?"
7
+ * Exit if accessed directly
8
+ * Initially no show bxSlider widget testimonials entries
9
+ * RESOLVE #61 Horizontal transitions not working in widget
10
+ * RESOLVE #62 Bootstrap class name hide conflict
11
+ * RESOLVE #65 Widget blank options aren't saving correctly
12
+ * Update copyright year
13
+
14
  ## 2.18.2
15
  * RESOLVE #57 Testimonials Stacking on first load
16
 
assets/css/testimonials-widget-2.14.0.css CHANGED
@@ -13,7 +13,7 @@
13
  display: block;
14
  }
15
 
16
- .testimonials-widget-testimonials .hide {
17
  /* staged testimonials */
18
  display: none;
19
  }
13
  display: block;
14
  }
15
 
16
+ .testimonials-widget-testimonials .display-none {
17
  /* staged testimonials */
18
  display: none;
19
  }
assets/css/testimonials-widget.css CHANGED
@@ -9,7 +9,7 @@
9
  display: block;
10
  }
11
 
12
- .testimonials-widget-testimonials .hide {
13
  /* staged testimonials */
14
  display: none;
15
  }
9
  display: block;
10
  }
11
 
12
+ .testimonials-widget-testimonials .display-none {
13
  /* staged testimonials */
14
  display: none;
15
  }
includes/class-testimonials-widget-settings.php CHANGED
@@ -1,6 +1,6 @@
1
  <?php
2
  /*
3
- Copyright 2013 Michael Cannon (email: mc@aihr.us)
4
 
5
  This program is free software; you can redistribute it and/or modify
6
  it under the terms of the GNU General Public License, version 2, as
@@ -321,6 +321,14 @@ class Testimonials_Widget_Settings extends Aihrus_Settings {
321
  'validate' => 'is_true',
322
  );
323
 
 
 
 
 
 
 
 
 
324
  self::$settings['target'] = array(
325
  'title' => esc_html__( 'URL Target', 'testimonials-widget' ),
326
  'desc' => esc_html__( 'Add target to all URLs; leave blank if none', 'testimonials-widget' ),
1
  <?php
2
  /*
3
+ Copyright 2014 Michael Cannon (email: mc@aihr.us)
4
 
5
  This program is free software; you can redistribute it and/or modify
6
  it under the terms of the GNU General Public License, version 2, as
321
  'validate' => 'is_true',
322
  );
323
 
324
+ self::$settings['exclude_bxslider_css'] = array(
325
+ 'title' => esc_html__( 'Exclude bxSlider CSS?', 'testimonials-widget' ),
326
+ 'desc' => esc_html__( 'For a bare-bones, unthemed slider.', 'testimonials-widget' ),
327
+ 'type' => 'checkbox',
328
+ 'validate' => 'is_true',
329
+ 'widget' => 0,
330
+ );
331
+
332
  self::$settings['target'] = array(
333
  'title' => esc_html__( 'URL Target', 'testimonials-widget' ),
334
  'desc' => esc_html__( 'Add target to all URLs; leave blank if none', 'testimonials-widget' ),
includes/class-testimonials-widget-widget.php CHANGED
@@ -1,6 +1,6 @@
1
  <?php
2
  /*
3
- Copyright 2013 Michael Cannon (email: mc@aihr.us)
4
 
5
  This program is free software; you can redistribute it and/or modify
6
  it under the terms of the GNU General Public License, version 2, as
@@ -65,15 +65,9 @@ class Testimonials_Widget_Widget extends Aihrus_Widget {
65
  if ( empty( $instance ) ) {
66
  $do_number = false;
67
 
68
- if ( empty( $defaults['char_limit'] ) )
69
- $defaults['char_limit'] = 500;
70
-
71
- if ( empty( $defaults['random'] ) )
72
- $defaults['random'] = 1;
73
-
74
- $defaults['enable_schema'] = 0;
75
-
76
- $instance = array();
77
  } elseif ( ! empty( $instance['resetted'] ) ) {
78
  if ( empty( $instance['char_limit'] ) )
79
  $instance['char_limit'] = 500;
1
  <?php
2
  /*
3
+ Copyright 2014 Michael Cannon (email: mc@aihr.us)
4
 
5
  This program is free software; you can redistribute it and/or modify
6
  it under the terms of the GNU General Public License, version 2, as
65
  if ( empty( $instance ) ) {
66
  $do_number = false;
67
 
68
+ $instance['char_limit'] = 500;
69
+ $instance['random'] = 1;
70
+ $instance['enable_schema'] = 0;
 
 
 
 
 
 
71
  } elseif ( ! empty( $instance['resetted'] ) ) {
72
  if ( empty( $instance['char_limit'] ) )
73
  $instance['char_limit'] = 500;
includes/class-testimonials-widget.php CHANGED
@@ -1,6 +1,6 @@
1
  <?php
2
  /**
3
- * Copyright 2013 Michael Cannon (email: mc@aihr.us)
4
  * This program is free software; you can redistribute it and/or modify
5
  * it under the terms of the GNU General Public License, version 2, as
6
  * published by the Free Software Foundation.
@@ -762,8 +762,11 @@ class Testimonials_Widget extends Aihrus_Common {
762
 
763
  $use_bxslider = tw_get_option( 'use_bxslider' );
764
  if ( $use_bxslider ) {
765
- wp_register_style( 'jquery.bxslider', self::$plugin_assets . 'css/jquery.bxslider.css' );
766
- wp_enqueue_style( 'jquery.bxslider' );
 
 
 
767
 
768
  wp_register_style( __CLASS__, self::$plugin_assets . 'css/testimonials-widget.css' );
769
  } else {
@@ -904,7 +907,7 @@ function nextTestimonial{$widget_number}() {
904
  active.fadeOut({$fade_out_speed}, function() {
905
  active.removeClass('active');
906
  next.fadeIn({$fade_in_speed});
907
- next.removeClass('hide');
908
  next.addClass('active');
909
 
910
  {INTERNAL_SCRIPTS}
@@ -1034,17 +1037,27 @@ EOF;
1034
  $do_schema = $atts['enable_schema'];
1035
  $keep_whitespace = $atts['keep_whitespace'];
1036
  $remove_hentry = $atts['remove_hentry'];
 
 
1037
 
1038
  $class = 'testimonials-widget-testimonial';
1039
- if ( is_single() && empty( $widget_number ) )
1040
  $class .= ' single';
1041
- elseif ( $is_list )
1042
  $class .= ' list';
1043
- else {
1044
- if ( $is_first )
1045
- $class .= ' active';
1046
- elseif ( ! $is_first )
1047
- $class .= ' hide';
 
 
 
 
 
 
 
 
1048
  }
1049
 
1050
  if ( $keep_whitespace )
1
  <?php
2
  /**
3
+ * Copyright 2014 Michael Cannon (email: mc@aihr.us)
4
  * This program is free software; you can redistribute it and/or modify
5
  * it under the terms of the GNU General Public License, version 2, as
6
  * published by the Free Software Foundation.
762
 
763
  $use_bxslider = tw_get_option( 'use_bxslider' );
764
  if ( $use_bxslider ) {
765
+ $exclude_bxslider_css = tw_get_option( 'exclude_bxslider_css' );
766
+ if ( empty( $exclude_bxslider_css ) ) {
767
+ wp_register_style( 'jquery.bxslider', self::$plugin_assets . 'css/jquery.bxslider.css' );
768
+ wp_enqueue_style( 'jquery.bxslider' );
769
+ }
770
 
771
  wp_register_style( __CLASS__, self::$plugin_assets . 'css/testimonials-widget.css' );
772
  } else {
907
  active.fadeOut({$fade_out_speed}, function() {
908
  active.removeClass('active');
909
  next.fadeIn({$fade_in_speed});
910
+ next.removeClass('display-none');
911
  next.addClass('active');
912
 
913
  {INTERNAL_SCRIPTS}
1037
  $do_schema = $atts['enable_schema'];
1038
  $keep_whitespace = $atts['keep_whitespace'];
1039
  $remove_hentry = $atts['remove_hentry'];
1040
+ $transition_mode = $atts['transition_mode'];
1041
+ $use_bxslider = $atts['use_bxslider'];
1042
 
1043
  $class = 'testimonials-widget-testimonial';
1044
+ if ( is_single() && empty( $widget_number ) ) {
1045
  $class .= ' single';
1046
+ } elseif ( $is_list ) {
1047
  $class .= ' list';
1048
+ } else {
1049
+ // widget display
1050
+ if ( $use_bxslider ) {
1051
+ if ( ! in_array( $transition_mode, array( 'horizontal', 'vertical' ) ) ) {
1052
+ $class .= ' display-none';
1053
+ }
1054
+ } else {
1055
+ if ( $is_first ) {
1056
+ $class .= ' active';
1057
+ } else {
1058
+ $class .= ' display-none';
1059
+ }
1060
+ }
1061
  }
1062
 
1063
  if ( $keep_whitespace )
includes/libraries/aihrus-framework/CHANGELOG.md CHANGED
@@ -2,6 +2,11 @@
2
 
3
  ## master
4
 
 
 
 
 
 
5
  ## 1.0.3
6
  * RESOLVE Fatal error: Call to undefined function add_settings_error() in class-aihrus-settings.php on line 559
7
  * RESOLVE Featured image via Gravatar not saving correctly
2
 
3
  ## master
4
 
5
+ ## 1.0.4RC2
6
+ * Register `jquery-style`
7
+ * RESOLVE michael-cannon/testimonials-widget#65 Widget blank options aren't saving correctly
8
+ * Update copyright year
9
+
10
  ## 1.0.3
11
  * RESOLVE Fatal error: Call to undefined function add_settings_error() in class-aihrus-settings.php on line 559
12
  * RESOLVE Featured image via Gravatar not saving correctly
includes/libraries/aihrus-framework/class-aihrus-common.php CHANGED
@@ -1,6 +1,6 @@
1
  <?php
2
  /*
3
- Copyright 2013 Michael Cannon (email: mc@aihr.us)
4
 
5
  This program is free software; you can redistribute it and/or modify
6
  it under the terms of the GNU General Public License, version 2, as
1
  <?php
2
  /*
3
+ Copyright 2014 Michael Cannon (email: mc@aihr.us)
4
 
5
  This program is free software; you can redistribute it and/or modify
6
  it under the terms of the GNU General Public License, version 2, as
includes/libraries/aihrus-framework/class-aihrus-licensing.php CHANGED
@@ -1,6 +1,6 @@
1
  <?php
2
  /*
3
- Copyright 2013 Michael Cannon (email: mc@aihr.us)
4
 
5
  This program is free software; you can redistribute it and/or modify
6
  it under the terms of the GNU General Public License, version 2, as
1
  <?php
2
  /*
3
+ Copyright 2014 Michael Cannon (email: mc@aihr.us)
4
 
5
  This program is free software; you can redistribute it and/or modify
6
  it under the terms of the GNU General Public License, version 2, as
includes/libraries/aihrus-framework/class-aihrus-settings.php CHANGED
@@ -1,6 +1,6 @@
1
  <?php
2
  /*
3
- Copyright 2013 Michael Cannon (email: mc@aihr.us)
4
 
5
  This program is free software; you can redistribute it and/or modify
6
  it under the terms of the GNU General Public License, version 2, as
@@ -468,7 +468,8 @@ abstract class Aihrus_Settings {
468
 
469
 
470
  public static function styles() {
471
- wp_enqueue_style( 'jquery-style', '//ajax.googleapis.com/ajax/libs/jqueryui/1.8.2/themes/smoothness/jquery-ui.css' );
 
472
  }
473
 
474
 
@@ -484,8 +485,8 @@ abstract class Aihrus_Settings {
484
  if ( is_null( $options ) ) {
485
  $null_options = true;
486
 
487
- $options = self::get_settings();
488
  $defaults = static::get_defaults();
 
489
 
490
  if ( is_admin() ) {
491
  if ( ! empty( $input['reset_defaults'] ) ) {
@@ -516,10 +517,15 @@ abstract class Aihrus_Settings {
516
  $validations = explode( ',', $validations );
517
 
518
  if ( ! isset( $input[ $id ] ) ) {
519
- if ( 'checkbox' != $type )
520
  $input[ $id ] = $default;
521
- else
522
- $input[ $id ] = 0;
 
 
 
 
 
523
  }
524
 
525
  if ( $default == $input[ $id ] && ! in_array( 'required', $validations ) )
1
  <?php
2
  /*
3
+ Copyright 2014 Michael Cannon (email: mc@aihr.us)
4
 
5
  This program is free software; you can redistribute it and/or modify
6
  it under the terms of the GNU General Public License, version 2, as
468
 
469
 
470
  public static function styles() {
471
+ wp_register_style( 'jquery-style', '//ajax.googleapis.com/ajax/libs/jqueryui/1.8.2/themes/smoothness/jquery-ui.css' );
472
+ wp_enqueue_style( 'jquery-style' );
473
  }
474
 
475
 
485
  if ( is_null( $options ) ) {
486
  $null_options = true;
487
 
 
488
  $defaults = static::get_defaults();
489
+ $options = self::get_settings();
490
 
491
  if ( is_admin() ) {
492
  if ( ! empty( $input['reset_defaults'] ) ) {
517
  $validations = explode( ',', $validations );
518
 
519
  if ( ! isset( $input[ $id ] ) ) {
520
+ if ( 'checkbox' != $type ) {
521
  $input[ $id ] = $default;
522
+ } else {
523
+ if ( empty( $parts['widget'] ) ) {
524
+ continue;
525
+ } else {
526
+ $input[ $id ] = 0;
527
+ }
528
+ }
529
  }
530
 
531
  if ( $default == $input[ $id ] && ! in_array( 'required', $validations ) )
includes/libraries/aihrus-framework/class-aihrus-widget.php CHANGED
@@ -1,6 +1,6 @@
1
  <?php
2
  /*
3
- Copyright 2013 Michael Cannon (email: mc@aihr.us)
4
 
5
  This program is free software; you can redistribute it and/or modify
6
  it under the terms of the GNU General Public License, version 2, as
1
  <?php
2
  /*
3
+ Copyright 2014 Michael Cannon (email: mc@aihr.us)
4
 
5
  This program is free software; you can redistribute it and/or modify
6
  it under the terms of the GNU General Public License, version 2, as
includes/libraries/aihrus-framework/interface-aihrus-common.php CHANGED
@@ -1,6 +1,6 @@
1
  <?php
2
  /*
3
- Copyright 2013 Michael Cannon (email: mc@aihr.us)
4
 
5
  This program is free software; you can redistribute it and/or modify
6
  it under the terms of the GNU General Public License, version 2, as
1
  <?php
2
  /*
3
+ Copyright 2014 Michael Cannon (email: mc@aihr.us)
4
 
5
  This program is free software; you can redistribute it and/or modify
6
  it under the terms of the GNU General Public License, version 2, as
includes/libraries/aihrus-framework/interface-aihrus-licensing.php CHANGED
@@ -1,6 +1,6 @@
1
  <?php
2
  /*
3
- Copyright 2013 Michael Cannon (email: mc@aihr.us)
4
 
5
  This program is free software; you can redistribute it and/or modify
6
  it under the terms of the GNU General Public License, version 2, as
1
  <?php
2
  /*
3
+ Copyright 2014 Michael Cannon (email: mc@aihr.us)
4
 
5
  This program is free software; you can redistribute it and/or modify
6
  it under the terms of the GNU General Public License, version 2, as
includes/libraries/aihrus-framework/interface-aihrus-widget.php CHANGED
@@ -1,6 +1,6 @@
1
  <?php
2
  /*
3
- Copyright 2013 Michael Cannon (email: mc@aihr.us)
4
 
5
  This program is free software; you can redistribute it and/or modify
6
  it under the terms of the GNU General Public License, version 2, as
1
  <?php
2
  /*
3
+ Copyright 2014 Michael Cannon (email: mc@aihr.us)
4
 
5
  This program is free software; you can redistribute it and/or modify
6
  it under the terms of the GNU General Public License, version 2, as
includes/libraries/aihrus-framework/requirements.php CHANGED
@@ -1,6 +1,6 @@
1
  <?php
2
  /*
3
- Copyright 2013 Michael Cannon (email: mc@aihr.us)
4
 
5
  This program is free software; you can redistribute it and/or modify
6
  it under the terms of the GNU General Public License, version 2, as
@@ -20,7 +20,7 @@ if ( ! defined( 'AIHR_BASE' ) )
20
  define( 'AIHR_BASE', __FILE__ );
21
 
22
  if ( ! defined( 'AIHR_VERSION' ) )
23
- define( 'AIHR_VERSION', '1.0.3' );
24
 
25
  require_once ABSPATH . 'wp-admin/includes/plugin.php';
26
 
1
  <?php
2
  /*
3
+ Copyright 2014 Michael Cannon (email: mc@aihr.us)
4
 
5
  This program is free software; you can redistribute it and/or modify
6
  it under the terms of the GNU General Public License, version 2, as
20
  define( 'AIHR_BASE', __FILE__ );
21
 
22
  if ( ! defined( 'AIHR_VERSION' ) )
23
+ define( 'AIHR_VERSION', '1.0.4RC2' );
24
 
25
  require_once ABSPATH . 'wp-admin/includes/plugin.php';
26
 
includes/requirements.php CHANGED
@@ -1,6 +1,6 @@
1
  <?php
2
  /*
3
- Copyright 2013 Michael Cannon (email: mc@aihr.us)
4
 
5
  This program is free software; you can redistribute it and/or modify
6
  it under the terms of the GNU General Public License, version 2, as
1
  <?php
2
  /*
3
+ Copyright 2014 Michael Cannon (email: mc@aihr.us)
4
 
5
  This program is free software; you can redistribute it and/or modify
6
  it under the terms of the GNU General Public License, version 2, as
languages/testimonials-widget.pot CHANGED
@@ -2,9 +2,9 @@
2
  # This file is distributed under the same license as the Testimonials by Aihrus package.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Testimonials by Aihrus 2.18.2\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/testimonials-widget\n"
7
- "POT-Creation-Date: 2014-02-21 01:30:02+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
@@ -22,27 +22,27 @@ msgid "Settings"
22
  msgstr ""
23
 
24
  #: includes/class-testimonials-widget-settings.php:107
25
- #: includes/class-testimonials-widget-settings.php:869
26
  msgid "General"
27
  msgstr ""
28
 
29
  #: includes/class-testimonials-widget-settings.php:108
30
- #: includes/class-testimonials-widget-settings.php:877
31
  msgid "Selection"
32
  msgstr ""
33
 
34
  #: includes/class-testimonials-widget-settings.php:109
35
- #: includes/class-testimonials-widget-settings.php:885
36
  msgid "Ordering"
37
  msgstr ""
38
 
39
  #: includes/class-testimonials-widget-settings.php:110
40
- #: includes/class-testimonials-widget-settings.php:893
41
  msgid "Widget"
42
  msgstr ""
43
 
44
  #: includes/class-testimonials-widget-settings.php:111
45
- #: includes/class-testimonials-widget-settings.php:901
46
  msgid "Post Type"
47
  msgstr ""
48
 
@@ -222,348 +222,356 @@ msgid "Hide URL?"
222
  msgstr ""
223
 
224
  #: includes/class-testimonials-widget-settings.php:325
225
- msgid "URL Target"
226
  msgstr ""
227
 
228
  #: includes/class-testimonials-widget-settings.php:326
 
 
 
 
 
 
 
 
229
  msgid "Add target to all URLs; leave blank if none"
230
  msgstr ""
231
 
232
- #: includes/class-testimonials-widget-settings.php:331
233
  msgid "Enable Paging?"
234
  msgstr ""
235
 
236
- #: includes/class-testimonials-widget-settings.php:332
237
  msgid "For `[testimonialswidget_list]`"
238
  msgstr ""
239
 
240
- #: includes/class-testimonials-widget-settings.php:335
241
  msgid "Disable"
242
  msgstr ""
243
 
244
- #: includes/class-testimonials-widget-settings.php:336
245
  msgid "Enable"
246
  msgstr ""
247
 
248
- #: includes/class-testimonials-widget-settings.php:337
249
  msgid "Before testimonials"
250
  msgstr ""
251
 
252
- #: includes/class-testimonials-widget-settings.php:338
253
  msgid "After testimonials"
254
  msgstr ""
255
 
256
- #: includes/class-testimonials-widget-settings.php:345
257
  msgid "Enable [shortcodes]?"
258
  msgstr ""
259
 
260
- #: includes/class-testimonials-widget-settings.php:346
261
  msgid "If unchecked, shortcodes are stripped."
262
  msgstr ""
263
 
264
- #: includes/class-testimonials-widget-settings.php:359
265
  msgid "Selection Options"
266
  msgstr ""
267
 
268
- #: includes/class-testimonials-widget-settings.php:365
269
  msgid "Category Filter"
270
  msgstr ""
271
 
272
- #: includes/class-testimonials-widget-settings.php:366
273
  msgid "Comma separated category names. Ex: Category A, Another category"
274
  msgstr ""
275
 
276
- #: includes/class-testimonials-widget-settings.php:373
277
  msgid "Tags Filter"
278
  msgstr ""
279
 
280
- #: includes/class-testimonials-widget-settings.php:374
281
  msgid "Comma separated tag names. Ex: Tag A, Another tag"
282
  msgstr ""
283
 
284
- #: includes/class-testimonials-widget-settings.php:381
285
  msgid "Require All Tags?"
286
  msgstr ""
287
 
288
- #: includes/class-testimonials-widget-settings.php:382
289
  msgid "Select only testimonials with all of the given tags"
290
  msgstr ""
291
 
292
- #: includes/class-testimonials-widget-settings.php:389
293
  msgid "Include IDs Filter"
294
  msgstr ""
295
 
296
- #: includes/class-testimonials-widget-settings.php:390
297
- #: includes/class-testimonials-widget-settings.php:397
298
  msgid "Comma separated testimonial IDs. Ex: 3,1,2"
299
  msgstr ""
300
 
301
- #: includes/class-testimonials-widget-settings.php:396
302
  msgid "Exclude IDs Filter"
303
  msgstr ""
304
 
305
- #: includes/class-testimonials-widget-settings.php:403
306
  msgid "Limit"
307
  msgstr ""
308
 
309
- #: includes/class-testimonials-widget-settings.php:404
310
  msgid "Number of testimonials to select per instance"
311
  msgstr ""
312
 
313
- #: includes/class-testimonials-widget-settings.php:417
314
  msgid "Ordering Options"
315
  msgstr ""
316
 
317
- #: includes/class-testimonials-widget-settings.php:423
318
  msgid "Random Order?"
319
  msgstr ""
320
 
321
- #: includes/class-testimonials-widget-settings.php:424
322
  msgid "If checked, ignores ORDER BY, ORDER BY meta_key, and ORDER BY Order. Widgets are random by default automatically"
323
  msgstr ""
324
 
325
- #: includes/class-testimonials-widget-settings.php:431
326
  msgid "ORDER BY"
327
  msgstr ""
328
 
329
- #: includes/class-testimonials-widget-settings.php:432
330
  msgid "Used when \"Random Order\" is disabled"
331
  msgstr ""
332
 
333
- #: includes/class-testimonials-widget-settings.php:435
334
  msgid "Testimonial ID"
335
  msgstr ""
336
 
337
- #: includes/class-testimonials-widget-settings.php:436
338
  msgid "Author"
339
  msgstr ""
340
 
341
- #: includes/class-testimonials-widget-settings.php:437
342
  #: includes/class-testimonials-widget.php:553
343
  msgid "Date"
344
  msgstr ""
345
 
346
- #: includes/class-testimonials-widget-settings.php:438
347
  msgid "Menu Order"
348
  msgstr ""
349
 
350
- #: includes/class-testimonials-widget-settings.php:439
351
  #: includes/class-testimonials-widget.php:545
352
  msgid "Source"
353
  msgstr ""
354
 
355
- #: includes/class-testimonials-widget-settings.php:440
356
  msgid "No order"
357
  msgstr ""
358
 
359
- #: includes/class-testimonials-widget-settings.php:448
360
  msgid "ORDER BY meta_key"
361
  msgstr ""
362
 
363
- #: includes/class-testimonials-widget-settings.php:449
364
  msgid "Used when \"Random Order\" is disabled and sorting by a testimonials meta key is needed. Overrides ORDER BY"
365
  msgstr ""
366
 
367
- #: includes/class-testimonials-widget-settings.php:452
368
  msgid "None"
369
  msgstr ""
370
 
371
- #: includes/class-testimonials-widget-settings.php:453
372
  #: includes/class-testimonials-widget.php:547
373
- #: includes/class-testimonials-widget.php:1619
374
  msgid "Job Title"
375
  msgstr ""
376
 
377
- #: includes/class-testimonials-widget-settings.php:454
378
  #: includes/class-testimonials-widget.php:549
379
- #: includes/class-testimonials-widget.php:1631
380
  msgid "Email"
381
  msgstr ""
382
 
383
- #: includes/class-testimonials-widget-settings.php:455
384
  #: includes/class-testimonials-widget.php:548
385
- #: includes/class-testimonials-widget.php:1625
386
  msgid "Location"
387
  msgstr ""
388
 
389
- #: includes/class-testimonials-widget-settings.php:456
390
  #: includes/class-testimonials-widget.php:550
391
- #: includes/class-testimonials-widget.php:1637
392
  msgid "Company"
393
  msgstr ""
394
 
395
- #: includes/class-testimonials-widget-settings.php:457
396
  #: includes/class-testimonials-widget.php:551
397
- #: includes/class-testimonials-widget.php:1643
398
  msgid "URL"
399
  msgstr ""
400
 
401
- #: includes/class-testimonials-widget-settings.php:464
402
  msgid "ORDER BY Order"
403
  msgstr ""
404
 
405
- #: includes/class-testimonials-widget-settings.php:467
406
  msgid "Descending"
407
  msgstr ""
408
 
409
- #: includes/class-testimonials-widget-settings.php:468
410
  msgid "Ascending"
411
  msgstr ""
412
 
413
- #: includes/class-testimonials-widget-settings.php:482
414
  msgid "Allow Comments?"
415
  msgstr ""
416
 
417
- #: includes/class-testimonials-widget-settings.php:483
418
  msgid "Only affects the Testimonials post edit page. Your theme controls the front-end view."
419
  msgstr ""
420
 
421
- #: includes/class-testimonials-widget-settings.php:489
422
  msgid "URL slug-name for <a href=\"%1s\">testimonials archive</a> page."
423
  msgstr ""
424
 
425
- #: includes/class-testimonials-widget-settings.php:495
426
  msgid "Archive Page URL"
427
  msgstr ""
428
 
429
- #: includes/class-testimonials-widget-settings.php:502
430
  msgid "URL slug-name for testimonial view pages. Shouldn't be the same as the Archive Page URL nor should it match a page URL slug."
431
  msgstr ""
432
 
433
- #: includes/class-testimonials-widget-settings.php:506
434
  msgid "Testimonial Page URL"
435
  msgstr ""
436
 
437
- #: includes/class-testimonials-widget-settings.php:516
438
  msgid "Reset & Compatiblity Options"
439
  msgstr ""
440
 
441
- #: includes/class-testimonials-widget-settings.php:522
442
  msgid "Don't Use Default Taxonomies?"
443
  msgstr ""
444
 
445
- #: includes/class-testimonials-widget-settings.php:525
446
  msgid "If checked, use Testimonials' own category and tag taxonomies instead"
447
  msgstr ""
448
 
449
- #: includes/class-testimonials-widget-settings.php:533
450
  msgid "Version Based Options"
451
  msgstr ""
452
 
453
- #: includes/class-testimonials-widget-settings.php:539
454
  msgid "Use bxSlider?"
455
  msgstr ""
456
 
457
- #: includes/class-testimonials-widget-settings.php:540
458
  msgid "Pre 2.15.0, Testimonials' used custom JavaScript for transitions."
459
  msgstr ""
460
 
461
- #: includes/class-testimonials-widget-settings.php:553
462
  msgid "Disable Animation?"
463
  msgstr ""
464
 
465
- #: includes/class-testimonials-widget-settings.php:554
466
  msgid "Pre 2.15.0, Disable animation between testimonial transitions. Useful when stacking widgets."
467
  msgstr ""
468
 
469
- #: includes/class-testimonials-widget-settings.php:562
470
  msgid "Fade Out Speed"
471
  msgstr ""
472
 
473
- #: includes/class-testimonials-widget-settings.php:563
474
  #: includes/class-testimonials-widget-settings.php:571
 
475
  msgid "Pre 2.15.0, Transition duration in milliseconds; higher values indicate slower animations, not faster ones."
476
  msgstr ""
477
 
478
- #: includes/class-testimonials-widget-settings.php:570
479
  msgid "Fade In Speed"
480
  msgstr ""
481
 
482
- #: includes/class-testimonials-widget-settings.php:578
483
  msgid "Height"
484
  msgstr ""
485
 
486
- #: includes/class-testimonials-widget-settings.php:579
487
  msgid "Pre 2.15.0, Testimonials height, in pixels. Overrides minimum and maximum height"
488
  msgstr ""
489
 
490
- #: includes/class-testimonials-widget-settings.php:585
491
  msgid "Minimum Height"
492
  msgstr ""
493
 
494
- #: includes/class-testimonials-widget-settings.php:586
495
  msgid "Pre 2.15.0, Set for minimum display height, in pixels"
496
  msgstr ""
497
 
498
- #: includes/class-testimonials-widget-settings.php:592
499
  msgid "Maximum Height"
500
  msgstr ""
501
 
502
- #: includes/class-testimonials-widget-settings.php:593
503
  msgid "Pre 2.15.0, Set for maximum display height, in pixels"
504
  msgstr ""
505
 
506
- #: includes/class-testimonials-widget-settings.php:599
507
  msgid "Include IE7 CSS?"
508
  msgstr ""
509
 
510
- #: includes/class-testimonials-widget-settings.php:600
511
  msgid "IE7 specific CSS moved to separate CSS file in version 2.13.6."
512
  msgstr ""
513
 
514
- #: includes/class-testimonials-widget-settings.php:612
515
  msgid "Use `&lt;q&gt;` tag?"
516
  msgstr ""
517
 
518
- #: includes/class-testimonials-widget-settings.php:613
519
  msgid "Pre 2.11.0, not HTML5 compliant"
520
  msgstr ""
521
 
522
- #: includes/class-testimonials-widget-settings.php:624
523
  msgid "Remove `.hentry` CSS?"
524
  msgstr ""
525
 
526
- #: includes/class-testimonials-widget-settings.php:625
527
  msgid "Pre 2.6.4, some themes use class `.hentry` in a manner that breaks Testimonials' CSS"
528
  msgstr ""
529
 
530
- #: includes/class-testimonials-widget-settings.php:855
531
  msgid "These Testimonials Settings establish the default option values for shortcodes, theme functions, and widget instances. Widgets, once created no longer inherit these global settings. Therefore, you'll need to update each widget with the new settings. It might be easier to delete the widget and then recreate it."
532
  msgstr ""
533
 
534
- #: includes/class-testimonials-widget-settings.php:857
535
  msgid "Shortcode option names are listed below each entry."
536
  msgstr ""
537
 
538
- #: includes/class-testimonials-widget-settings.php:860
539
  msgid "View the <a href=\"%s\">Testimonials documentation</a>."
540
  msgstr ""
541
 
542
- #: includes/class-testimonials-widget-settings.php:870
543
  msgid "Show or hide optional fields."
544
  msgstr ""
545
 
546
- #: includes/class-testimonials-widget-settings.php:878
547
  msgid "Options used to select testimonials."
548
  msgstr ""
549
 
550
- #: includes/class-testimonials-widget-settings.php:886
551
  msgid "Options used to determine displayed testimonials ordering."
552
  msgstr ""
553
 
554
- #: includes/class-testimonials-widget-settings.php:894
555
  msgid "Options related to showing testimonials in widgets."
556
  msgstr ""
557
 
558
- #: includes/class-testimonials-widget-settings.php:902
559
  msgid "Archive and singular page URL related testimonials options."
560
  msgstr ""
561
 
562
- #: includes/class-testimonials-widget-settings.php:909
563
  msgid "Compatibility & Reset"
564
  msgstr ""
565
 
566
- #: includes/class-testimonials-widget-settings.php:910
567
  msgid "Backwards compatibility, import/export options, and reset options."
568
  msgstr ""
569
 
@@ -571,16 +579,16 @@ msgstr ""
571
  msgid "Display testimonials with multiple selection and display options"
572
  msgstr ""
573
 
574
- #: includes/class-testimonials-widget-widget.php:102
575
  msgid "CSS Class"
576
  msgstr ""
577
 
578
- #: includes/class-testimonials-widget-widget.php:103
579
  msgid "This widget's unique CSS class for styling"
580
  msgstr ""
581
 
582
  #: includes/class-testimonials-widget.php:141
583
- #: includes/class-testimonials-widget.php:1986
584
  msgid "Testimonials Shortcode Examples"
585
  msgstr ""
586
 
@@ -632,7 +640,7 @@ msgid "Edit Testimonial"
632
  msgstr ""
633
 
634
  #: includes/class-testimonials-widget.php:578
635
- #: includes/class-testimonials-widget.php:987
636
  msgid "No testimonials found"
637
  msgstr ""
638
 
@@ -645,7 +653,7 @@ msgid "Search Testimonials"
645
  msgstr ""
646
 
647
  #: includes/class-testimonials-widget.php:582
648
- #: includes/class-testimonials-widget.php:1731
649
  msgid "Testimonial"
650
  msgstr ""
651
 
@@ -653,77 +661,77 @@ msgstr ""
653
  msgid "View Testimonial"
654
  msgstr ""
655
 
656
- #: includes/class-testimonials-widget.php:1142
657
  msgid "…"
658
  msgstr ""
659
 
660
- #: includes/class-testimonials-widget.php:1349
661
  msgid "&laquo;"
662
  msgstr ""
663
 
664
- #: includes/class-testimonials-widget.php:1357
665
  msgid "&raquo;"
666
  msgstr ""
667
 
668
- #: includes/class-testimonials-widget.php:1655
669
  msgid "Testimonial Data"
670
  msgstr ""
671
 
672
- #: includes/class-testimonials-widget.php:1680
673
  msgid "Enter title here"
674
  msgstr ""
675
 
676
- #: includes/class-testimonials-widget.php:1681
677
  msgid "Enter testimonial source here"
678
  msgstr ""
679
 
680
- #: includes/class-testimonials-widget.php:1706
681
  msgid "Testimonial updated. <a href=\"%s\">View testimonial</a>"
682
  msgstr ""
683
 
684
- #: includes/class-testimonials-widget.php:1707
685
  msgid "Custom field updated."
686
  msgstr ""
687
 
688
- #: includes/class-testimonials-widget.php:1708
689
  msgid "Custom field deleted."
690
  msgstr ""
691
 
692
- #: includes/class-testimonials-widget.php:1709
693
  msgid "Testimonial updated."
694
  msgstr ""
695
 
696
  #. translators: %s: date and time of the revision
697
 
698
- #: includes/class-testimonials-widget.php:1711
699
  msgid "Testimonial restored to revision from %s"
700
  msgstr ""
701
 
702
- #: includes/class-testimonials-widget.php:1712
703
  msgid "Testimonial published. <a href=\"%s\">View testimonial</a>"
704
  msgstr ""
705
 
706
- #: includes/class-testimonials-widget.php:1713
707
  msgid "Testimonial saved."
708
  msgstr ""
709
 
710
- #: includes/class-testimonials-widget.php:1714
711
  msgid "Testimonial submitted. <a target=\"_blank\" href=\"%s\">Preview testimonial</a>"
712
  msgstr ""
713
 
714
- #: includes/class-testimonials-widget.php:1715
715
  msgid "Testimonial scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Preview testimonial</a>"
716
  msgstr ""
717
 
718
- #: includes/class-testimonials-widget.php:1716
719
  msgid "Testimonial draft updated. <a target=\"_blank\" href=\"%s\">Preview testimonial</a>"
720
  msgstr ""
721
 
722
- #: includes/class-testimonials-widget.php:1977
723
  msgid "If your Testimonials display has gone to funky town, please <a href=\"%s\">read the FAQ</a> about possible fixes."
724
  msgstr ""
725
 
726
- #: includes/class-testimonials-widget.php:2058
727
  msgid "Shortcode"
728
  msgstr ""
729
 
@@ -787,11 +795,11 @@ msgstr ""
787
  msgid "Copyright &copy;%1$s <a href=\"%2$s\">Aihrus</a>."
788
  msgstr ""
789
 
790
- #: includes/libraries/aihrus-framework/class-aihrus-settings.php:560
791
  msgid "Settings saved."
792
  msgstr ""
793
 
794
- #: includes/libraries/aihrus-framework/class-aihrus-settings.php:613
795
  msgid "Required"
796
  msgstr ""
797
 
2
  # This file is distributed under the same license as the Testimonials by Aihrus package.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Testimonials by Aihrus 2.18.3\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/testimonials-widget\n"
7
+ "POT-Creation-Date: 2014-03-07 07:02:06+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
22
  msgstr ""
23
 
24
  #: includes/class-testimonials-widget-settings.php:107
25
+ #: includes/class-testimonials-widget-settings.php:877
26
  msgid "General"
27
  msgstr ""
28
 
29
  #: includes/class-testimonials-widget-settings.php:108
30
+ #: includes/class-testimonials-widget-settings.php:885
31
  msgid "Selection"
32
  msgstr ""
33
 
34
  #: includes/class-testimonials-widget-settings.php:109
35
+ #: includes/class-testimonials-widget-settings.php:893
36
  msgid "Ordering"
37
  msgstr ""
38
 
39
  #: includes/class-testimonials-widget-settings.php:110
40
+ #: includes/class-testimonials-widget-settings.php:901
41
  msgid "Widget"
42
  msgstr ""
43
 
44
  #: includes/class-testimonials-widget-settings.php:111
45
+ #: includes/class-testimonials-widget-settings.php:909
46
  msgid "Post Type"
47
  msgstr ""
48
 
222
  msgstr ""
223
 
224
  #: includes/class-testimonials-widget-settings.php:325
225
+ msgid "Exclude bxSlider CSS?"
226
  msgstr ""
227
 
228
  #: includes/class-testimonials-widget-settings.php:326
229
+ msgid "For a bare-bones, unthemed slider."
230
+ msgstr ""
231
+
232
+ #: includes/class-testimonials-widget-settings.php:333
233
+ msgid "URL Target"
234
+ msgstr ""
235
+
236
+ #: includes/class-testimonials-widget-settings.php:334
237
  msgid "Add target to all URLs; leave blank if none"
238
  msgstr ""
239
 
240
+ #: includes/class-testimonials-widget-settings.php:339
241
  msgid "Enable Paging?"
242
  msgstr ""
243
 
244
+ #: includes/class-testimonials-widget-settings.php:340
245
  msgid "For `[testimonialswidget_list]`"
246
  msgstr ""
247
 
248
+ #: includes/class-testimonials-widget-settings.php:343
249
  msgid "Disable"
250
  msgstr ""
251
 
252
+ #: includes/class-testimonials-widget-settings.php:344
253
  msgid "Enable"
254
  msgstr ""
255
 
256
+ #: includes/class-testimonials-widget-settings.php:345
257
  msgid "Before testimonials"
258
  msgstr ""
259
 
260
+ #: includes/class-testimonials-widget-settings.php:346
261
  msgid "After testimonials"
262
  msgstr ""
263
 
264
+ #: includes/class-testimonials-widget-settings.php:353
265
  msgid "Enable [shortcodes]?"
266
  msgstr ""
267
 
268
+ #: includes/class-testimonials-widget-settings.php:354
269
  msgid "If unchecked, shortcodes are stripped."
270
  msgstr ""
271
 
272
+ #: includes/class-testimonials-widget-settings.php:367
273
  msgid "Selection Options"
274
  msgstr ""
275
 
276
+ #: includes/class-testimonials-widget-settings.php:373
277
  msgid "Category Filter"
278
  msgstr ""
279
 
280
+ #: includes/class-testimonials-widget-settings.php:374
281
  msgid "Comma separated category names. Ex: Category A, Another category"
282
  msgstr ""
283
 
284
+ #: includes/class-testimonials-widget-settings.php:381
285
  msgid "Tags Filter"
286
  msgstr ""
287
 
288
+ #: includes/class-testimonials-widget-settings.php:382
289
  msgid "Comma separated tag names. Ex: Tag A, Another tag"
290
  msgstr ""
291
 
292
+ #: includes/class-testimonials-widget-settings.php:389
293
  msgid "Require All Tags?"
294
  msgstr ""
295
 
296
+ #: includes/class-testimonials-widget-settings.php:390
297
  msgid "Select only testimonials with all of the given tags"
298
  msgstr ""
299
 
300
+ #: includes/class-testimonials-widget-settings.php:397
301
  msgid "Include IDs Filter"
302
  msgstr ""
303
 
304
+ #: includes/class-testimonials-widget-settings.php:398
305
+ #: includes/class-testimonials-widget-settings.php:405
306
  msgid "Comma separated testimonial IDs. Ex: 3,1,2"
307
  msgstr ""
308
 
309
+ #: includes/class-testimonials-widget-settings.php:404
310
  msgid "Exclude IDs Filter"
311
  msgstr ""
312
 
313
+ #: includes/class-testimonials-widget-settings.php:411
314
  msgid "Limit"
315
  msgstr ""
316
 
317
+ #: includes/class-testimonials-widget-settings.php:412
318
  msgid "Number of testimonials to select per instance"
319
  msgstr ""
320
 
321
+ #: includes/class-testimonials-widget-settings.php:425
322
  msgid "Ordering Options"
323
  msgstr ""
324
 
325
+ #: includes/class-testimonials-widget-settings.php:431
326
  msgid "Random Order?"
327
  msgstr ""
328
 
329
+ #: includes/class-testimonials-widget-settings.php:432
330
  msgid "If checked, ignores ORDER BY, ORDER BY meta_key, and ORDER BY Order. Widgets are random by default automatically"
331
  msgstr ""
332
 
333
+ #: includes/class-testimonials-widget-settings.php:439
334
  msgid "ORDER BY"
335
  msgstr ""
336
 
337
+ #: includes/class-testimonials-widget-settings.php:440
338
  msgid "Used when \"Random Order\" is disabled"
339
  msgstr ""
340
 
341
+ #: includes/class-testimonials-widget-settings.php:443
342
  msgid "Testimonial ID"
343
  msgstr ""
344
 
345
+ #: includes/class-testimonials-widget-settings.php:444
346
  msgid "Author"
347
  msgstr ""
348
 
349
+ #: includes/class-testimonials-widget-settings.php:445
350
  #: includes/class-testimonials-widget.php:553
351
  msgid "Date"
352
  msgstr ""
353
 
354
+ #: includes/class-testimonials-widget-settings.php:446
355
  msgid "Menu Order"
356
  msgstr ""
357
 
358
+ #: includes/class-testimonials-widget-settings.php:447
359
  #: includes/class-testimonials-widget.php:545
360
  msgid "Source"
361
  msgstr ""
362
 
363
+ #: includes/class-testimonials-widget-settings.php:448
364
  msgid "No order"
365
  msgstr ""
366
 
367
+ #: includes/class-testimonials-widget-settings.php:456
368
  msgid "ORDER BY meta_key"
369
  msgstr ""
370
 
371
+ #: includes/class-testimonials-widget-settings.php:457
372
  msgid "Used when \"Random Order\" is disabled and sorting by a testimonials meta key is needed. Overrides ORDER BY"
373
  msgstr ""
374
 
375
+ #: includes/class-testimonials-widget-settings.php:460
376
  msgid "None"
377
  msgstr ""
378
 
379
+ #: includes/class-testimonials-widget-settings.php:461
380
  #: includes/class-testimonials-widget.php:547
381
+ #: includes/class-testimonials-widget.php:1632
382
  msgid "Job Title"
383
  msgstr ""
384
 
385
+ #: includes/class-testimonials-widget-settings.php:462
386
  #: includes/class-testimonials-widget.php:549
387
+ #: includes/class-testimonials-widget.php:1644
388
  msgid "Email"
389
  msgstr ""
390
 
391
+ #: includes/class-testimonials-widget-settings.php:463
392
  #: includes/class-testimonials-widget.php:548
393
+ #: includes/class-testimonials-widget.php:1638
394
  msgid "Location"
395
  msgstr ""
396
 
397
+ #: includes/class-testimonials-widget-settings.php:464
398
  #: includes/class-testimonials-widget.php:550
399
+ #: includes/class-testimonials-widget.php:1650
400
  msgid "Company"
401
  msgstr ""
402
 
403
+ #: includes/class-testimonials-widget-settings.php:465
404
  #: includes/class-testimonials-widget.php:551
405
+ #: includes/class-testimonials-widget.php:1656
406
  msgid "URL"
407
  msgstr ""
408
 
409
+ #: includes/class-testimonials-widget-settings.php:472
410
  msgid "ORDER BY Order"
411
  msgstr ""
412
 
413
+ #: includes/class-testimonials-widget-settings.php:475
414
  msgid "Descending"
415
  msgstr ""
416
 
417
+ #: includes/class-testimonials-widget-settings.php:476
418
  msgid "Ascending"
419
  msgstr ""
420
 
421
+ #: includes/class-testimonials-widget-settings.php:490
422
  msgid "Allow Comments?"
423
  msgstr ""
424
 
425
+ #: includes/class-testimonials-widget-settings.php:491
426
  msgid "Only affects the Testimonials post edit page. Your theme controls the front-end view."
427
  msgstr ""
428
 
429
+ #: includes/class-testimonials-widget-settings.php:497
430
  msgid "URL slug-name for <a href=\"%1s\">testimonials archive</a> page."
431
  msgstr ""
432
 
433
+ #: includes/class-testimonials-widget-settings.php:503
434
  msgid "Archive Page URL"
435
  msgstr ""
436
 
437
+ #: includes/class-testimonials-widget-settings.php:510
438
  msgid "URL slug-name for testimonial view pages. Shouldn't be the same as the Archive Page URL nor should it match a page URL slug."
439
  msgstr ""
440
 
441
+ #: includes/class-testimonials-widget-settings.php:514
442
  msgid "Testimonial Page URL"
443
  msgstr ""
444
 
445
+ #: includes/class-testimonials-widget-settings.php:524
446
  msgid "Reset & Compatiblity Options"
447
  msgstr ""
448
 
449
+ #: includes/class-testimonials-widget-settings.php:530
450
  msgid "Don't Use Default Taxonomies?"
451
  msgstr ""
452
 
453
+ #: includes/class-testimonials-widget-settings.php:533
454
  msgid "If checked, use Testimonials' own category and tag taxonomies instead"
455
  msgstr ""
456
 
457
+ #: includes/class-testimonials-widget-settings.php:541
458
  msgid "Version Based Options"
459
  msgstr ""
460
 
461
+ #: includes/class-testimonials-widget-settings.php:547
462
  msgid "Use bxSlider?"
463
  msgstr ""
464
 
465
+ #: includes/class-testimonials-widget-settings.php:548
466
  msgid "Pre 2.15.0, Testimonials' used custom JavaScript for transitions."
467
  msgstr ""
468
 
469
+ #: includes/class-testimonials-widget-settings.php:561
470
  msgid "Disable Animation?"
471
  msgstr ""
472
 
473
+ #: includes/class-testimonials-widget-settings.php:562
474
  msgid "Pre 2.15.0, Disable animation between testimonial transitions. Useful when stacking widgets."
475
  msgstr ""
476
 
477
+ #: includes/class-testimonials-widget-settings.php:570
478
  msgid "Fade Out Speed"
479
  msgstr ""
480
 
 
481
  #: includes/class-testimonials-widget-settings.php:571
482
+ #: includes/class-testimonials-widget-settings.php:579
483
  msgid "Pre 2.15.0, Transition duration in milliseconds; higher values indicate slower animations, not faster ones."
484
  msgstr ""
485
 
486
+ #: includes/class-testimonials-widget-settings.php:578
487
  msgid "Fade In Speed"
488
  msgstr ""
489
 
490
+ #: includes/class-testimonials-widget-settings.php:586
491
  msgid "Height"
492
  msgstr ""
493
 
494
+ #: includes/class-testimonials-widget-settings.php:587
495
  msgid "Pre 2.15.0, Testimonials height, in pixels. Overrides minimum and maximum height"
496
  msgstr ""
497
 
498
+ #: includes/class-testimonials-widget-settings.php:593
499
  msgid "Minimum Height"
500
  msgstr ""
501
 
502
+ #: includes/class-testimonials-widget-settings.php:594
503
  msgid "Pre 2.15.0, Set for minimum display height, in pixels"
504
  msgstr ""
505
 
506
+ #: includes/class-testimonials-widget-settings.php:600
507
  msgid "Maximum Height"
508
  msgstr ""
509
 
510
+ #: includes/class-testimonials-widget-settings.php:601
511
  msgid "Pre 2.15.0, Set for maximum display height, in pixels"
512
  msgstr ""
513
 
514
+ #: includes/class-testimonials-widget-settings.php:607
515
  msgid "Include IE7 CSS?"
516
  msgstr ""
517
 
518
+ #: includes/class-testimonials-widget-settings.php:608
519
  msgid "IE7 specific CSS moved to separate CSS file in version 2.13.6."
520
  msgstr ""
521
 
522
+ #: includes/class-testimonials-widget-settings.php:620
523
  msgid "Use `&lt;q&gt;` tag?"
524
  msgstr ""
525
 
526
+ #: includes/class-testimonials-widget-settings.php:621
527
  msgid "Pre 2.11.0, not HTML5 compliant"
528
  msgstr ""
529
 
530
+ #: includes/class-testimonials-widget-settings.php:632
531
  msgid "Remove `.hentry` CSS?"
532
  msgstr ""
533
 
534
+ #: includes/class-testimonials-widget-settings.php:633
535
  msgid "Pre 2.6.4, some themes use class `.hentry` in a manner that breaks Testimonials' CSS"
536
  msgstr ""
537
 
538
+ #: includes/class-testimonials-widget-settings.php:863
539
  msgid "These Testimonials Settings establish the default option values for shortcodes, theme functions, and widget instances. Widgets, once created no longer inherit these global settings. Therefore, you'll need to update each widget with the new settings. It might be easier to delete the widget and then recreate it."
540
  msgstr ""
541
 
542
+ #: includes/class-testimonials-widget-settings.php:865
543
  msgid "Shortcode option names are listed below each entry."
544
  msgstr ""
545
 
546
+ #: includes/class-testimonials-widget-settings.php:868
547
  msgid "View the <a href=\"%s\">Testimonials documentation</a>."
548
  msgstr ""
549
 
550
+ #: includes/class-testimonials-widget-settings.php:878
551
  msgid "Show or hide optional fields."
552
  msgstr ""
553
 
554
+ #: includes/class-testimonials-widget-settings.php:886
555
  msgid "Options used to select testimonials."
556
  msgstr ""
557
 
558
+ #: includes/class-testimonials-widget-settings.php:894
559
  msgid "Options used to determine displayed testimonials ordering."
560
  msgstr ""
561
 
562
+ #: includes/class-testimonials-widget-settings.php:902
563
  msgid "Options related to showing testimonials in widgets."
564
  msgstr ""
565
 
566
+ #: includes/class-testimonials-widget-settings.php:910
567
  msgid "Archive and singular page URL related testimonials options."
568
  msgstr ""
569
 
570
+ #: includes/class-testimonials-widget-settings.php:917
571
  msgid "Compatibility & Reset"
572
  msgstr ""
573
 
574
+ #: includes/class-testimonials-widget-settings.php:918
575
  msgid "Backwards compatibility, import/export options, and reset options."
576
  msgstr ""
577
 
579
  msgid "Display testimonials with multiple selection and display options"
580
  msgstr ""
581
 
582
+ #: includes/class-testimonials-widget-widget.php:96
583
  msgid "CSS Class"
584
  msgstr ""
585
 
586
+ #: includes/class-testimonials-widget-widget.php:97
587
  msgid "This widget's unique CSS class for styling"
588
  msgstr ""
589
 
590
  #: includes/class-testimonials-widget.php:141
591
+ #: includes/class-testimonials-widget.php:1999
592
  msgid "Testimonials Shortcode Examples"
593
  msgstr ""
594
 
640
  msgstr ""
641
 
642
  #: includes/class-testimonials-widget.php:578
643
+ #: includes/class-testimonials-widget.php:990
644
  msgid "No testimonials found"
645
  msgstr ""
646
 
653
  msgstr ""
654
 
655
  #: includes/class-testimonials-widget.php:582
656
+ #: includes/class-testimonials-widget.php:1744
657
  msgid "Testimonial"
658
  msgstr ""
659
 
661
  msgid "View Testimonial"
662
  msgstr ""
663
 
664
+ #: includes/class-testimonials-widget.php:1155
665
  msgid "…"
666
  msgstr ""
667
 
668
+ #: includes/class-testimonials-widget.php:1362
669
  msgid "&laquo;"
670
  msgstr ""
671
 
672
+ #: includes/class-testimonials-widget.php:1370
673
  msgid "&raquo;"
674
  msgstr ""
675
 
676
+ #: includes/class-testimonials-widget.php:1668
677
  msgid "Testimonial Data"
678
  msgstr ""
679
 
680
+ #: includes/class-testimonials-widget.php:1693
681
  msgid "Enter title here"
682
  msgstr ""
683
 
684
+ #: includes/class-testimonials-widget.php:1694
685
  msgid "Enter testimonial source here"
686
  msgstr ""
687
 
688
+ #: includes/class-testimonials-widget.php:1719
689
  msgid "Testimonial updated. <a href=\"%s\">View testimonial</a>"
690
  msgstr ""
691
 
692
+ #: includes/class-testimonials-widget.php:1720
693
  msgid "Custom field updated."
694
  msgstr ""
695
 
696
+ #: includes/class-testimonials-widget.php:1721
697
  msgid "Custom field deleted."
698
  msgstr ""
699
 
700
+ #: includes/class-testimonials-widget.php:1722
701
  msgid "Testimonial updated."
702
  msgstr ""
703
 
704
  #. translators: %s: date and time of the revision
705
 
706
+ #: includes/class-testimonials-widget.php:1724
707
  msgid "Testimonial restored to revision from %s"
708
  msgstr ""
709
 
710
+ #: includes/class-testimonials-widget.php:1725
711
  msgid "Testimonial published. <a href=\"%s\">View testimonial</a>"
712
  msgstr ""
713
 
714
+ #: includes/class-testimonials-widget.php:1726
715
  msgid "Testimonial saved."
716
  msgstr ""
717
 
718
+ #: includes/class-testimonials-widget.php:1727
719
  msgid "Testimonial submitted. <a target=\"_blank\" href=\"%s\">Preview testimonial</a>"
720
  msgstr ""
721
 
722
+ #: includes/class-testimonials-widget.php:1728
723
  msgid "Testimonial scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Preview testimonial</a>"
724
  msgstr ""
725
 
726
+ #: includes/class-testimonials-widget.php:1729
727
  msgid "Testimonial draft updated. <a target=\"_blank\" href=\"%s\">Preview testimonial</a>"
728
  msgstr ""
729
 
730
+ #: includes/class-testimonials-widget.php:1990
731
  msgid "If your Testimonials display has gone to funky town, please <a href=\"%s\">read the FAQ</a> about possible fixes."
732
  msgstr ""
733
 
734
+ #: includes/class-testimonials-widget.php:2071
735
  msgid "Shortcode"
736
  msgstr ""
737
 
795
  msgid "Copyright &copy;%1$s <a href=\"%2$s\">Aihrus</a>."
796
  msgstr ""
797
 
798
+ #: includes/libraries/aihrus-framework/class-aihrus-settings.php:566
799
  msgid "Settings saved."
800
  msgstr ""
801
 
802
+ #: includes/libraries/aihrus-framework/class-aihrus-settings.php:619
803
  msgid "Required"
804
  msgstr ""
805
 
readme.txt CHANGED
@@ -5,7 +5,7 @@ Donate link: http://aihr.us/about-aihrus/donate/
5
  Tags: client, customer, portfolio, quotations, quote, quotes, random, recommendation, reference, review, reviews, testimonial, testimonials, testimony, wpml
6
  Requires at least: 3.6
7
  Tested up to: 3.9.0
8
- Stable tag: 2.18.2
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
@@ -212,6 +212,8 @@ Further, global settings are the baseline for shortcodes. If you want to alter t
212
  * `hide_company` - default show; hide_company=true
213
  * Hide URL?
214
  * `hide_url` - default show; hide_url=true
 
 
215
  * URL Target - Add target to all URLs; leave blank if none
216
  * `target` - default none; target=_new
217
  * Enable Paging? - for [[testimonialswidget_list]]
@@ -413,6 +415,11 @@ See [Changelog](https://github.com/michael-cannon/testimonials-widget/blob/maste
413
 
414
  == Upgrade Notice ==
415
 
 
 
 
 
 
416
  = 2.18.2 =
417
 
418
  * CSS class `.display-none` renamed `.hide`
5
  Tags: client, customer, portfolio, quotations, quote, quotes, random, recommendation, reference, review, reviews, testimonial, testimonials, testimony, wpml
6
  Requires at least: 3.6
7
  Tested up to: 3.9.0
8
+ Stable tag: 2.18.3
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
212
  * `hide_company` - default show; hide_company=true
213
  * Hide URL?
214
  * `hide_url` - default show; hide_url=true
215
+ * Exclude bxSlider CSS? - For a bare-bones, unthemed slider.
216
+ * `exclude_bxslider_css` - default show; exclude_bxslider_css=true
217
  * URL Target - Add target to all URLs; leave blank if none
218
  * `target` - default none; target=_new
219
  * Enable Paging? - for [[testimonialswidget_list]]
415
 
416
  == Upgrade Notice ==
417
 
418
+ = 2.18.3 =
419
+
420
+ * CSS class `.hide` renamed `.display-none`
421
+ * This is the last version supporting pre-bxSlider options
422
+
423
  = 2.18.2 =
424
 
425
  * CSS class `.display-none` renamed `.hide`
testimonials-widget.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: Testimonials by Aihrus
4
  * Plugin URI: http://wordpress.org/plugins/testimonials-widget/
5
  * Description: Testimonials by Aihrus lets you randomly slide or list selected portfolios, quotes, reviews, or text with images or videos on your WordPress site.
6
- * Version: 2.18.2
7
  * Author: Michael Cannon
8
  * Author URI: http://aihr.us/resume/
9
  * License: GPLv2 or later
@@ -13,7 +13,7 @@
13
 
14
 
15
  /**
16
- * Copyright 2013 Michael Cannon (email: mc@aihr.us)
17
  * This program is free software; you can redistribute it and/or modify
18
  * it under the terms of the GNU General Public License, version 2, as
19
  * published by the Free Software Foundation.
@@ -26,8 +26,12 @@
26
  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
27
  */
28
 
 
 
 
 
29
  if ( ! defined( 'TW_AIHR_VERSION' ) )
30
- define( 'TW_AIHR_VERSION', '1.0.3' );
31
 
32
  if ( ! defined( 'TW_BASE' ) )
33
  define( 'TW_BASE', plugin_basename( __FILE__ ) );
@@ -48,7 +52,7 @@ if ( ! defined( 'TW_PREMIUM_LINK' ) )
48
  define( 'TW_PREMIUM_LINK', '<a href="http://aihr.us/downloads/testimonials-widget-premium-wordpress-plugin/">Buy Premium</a>' );
49
 
50
  if ( ! defined( 'TW_VERSION' ) )
51
- define( 'TW_VERSION', '2.18.2' );
52
 
53
  require_once TW_DIR_INC . 'requirements.php';
54
 
3
  * Plugin Name: Testimonials by Aihrus
4
  * Plugin URI: http://wordpress.org/plugins/testimonials-widget/
5
  * Description: Testimonials by Aihrus lets you randomly slide or list selected portfolios, quotes, reviews, or text with images or videos on your WordPress site.
6
+ * Version: 2.18.3
7
  * Author: Michael Cannon
8
  * Author URI: http://aihr.us/resume/
9
  * License: GPLv2 or later
13
 
14
 
15
  /**
16
+ * Copyright 2014 Michael Cannon (email: mc@aihr.us)
17
  * This program is free software; you can redistribute it and/or modify
18
  * it under the terms of the GNU General Public License, version 2, as
19
  * published by the Free Software Foundation.
26
  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
27
  */
28
 
29
+ // Exit if accessed directly
30
+ if ( ! defined( 'ABSPATH' ) )
31
+ exit;
32
+
33
  if ( ! defined( 'TW_AIHR_VERSION' ) )
34
+ define( 'TW_AIHR_VERSION', '1.0.4RC2' );
35
 
36
  if ( ! defined( 'TW_BASE' ) )
37
  define( 'TW_BASE', plugin_basename( __FILE__ ) );
52
  define( 'TW_PREMIUM_LINK', '<a href="http://aihr.us/downloads/testimonials-widget-premium-wordpress-plugin/">Buy Premium</a>' );
53
 
54
  if ( ! defined( 'TW_VERSION' ) )
55
+ define( 'TW_VERSION', '2.18.3' );
56
 
57
  require_once TW_DIR_INC . 'requirements.php';
58