Testimonials Widget - Version 2.19.9

Version Description

  • Added margin-bottom: 2em; to .testimonials-widget-testimonial.list
Download this release

Release Info

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

Code changes from version 2.19.8 to 2.19.9

API.md CHANGED
@@ -183,6 +183,18 @@ The [Testimonials plugin](http://wordpress.org/plugins/testimonials-widget/) com
183
 
184
  Override settings defaults with your own.
185
 
 
 
 
 
 
 
 
 
 
 
 
 
186
  ## Need More?
187
 
188
  Further examples and more can be found by reading and searching the [Testimonials Knowledge Base](https://aihrus.zendesk.com/categories/20104507-Testimonials-Widget) and [source code](https://github.com/michael-cannon/testimonials-widget).
183
 
184
  Override settings defaults with your own.
185
 
186
+ * `tba_register_post_type_args`
187
+
188
+ Overrides `register_post_type` arguments. [example](https://gist.github.com/michael-cannon/8fc217199ae1e8d5eecb)
189
+
190
+ * `tba_register_category_args`
191
+
192
+ Overrides `register_taxonomy` arguments.
193
+
194
+ * `tba_register_tags_args`
195
+
196
+ Overrides `register_taxonomy` arguments.
197
+
198
  ## Need More?
199
 
200
  Further examples and more can be found by reading and searching the [Testimonials Knowledge Base](https://aihrus.zendesk.com/categories/20104507-Testimonials-Widget) and [source code](https://github.com/michael-cannon/testimonials-widget).
CHANGELOG.md CHANGED
@@ -2,6 +2,14 @@
2
 
3
  ## master
4
 
 
 
 
 
 
 
 
 
5
  ## 2.19.8
6
  * Add Configuration examples for filter testimonials_widget_meta_box
7
  * Add option Exclude default CSS?
2
 
3
  ## master
4
 
5
+ ## 2.19.9
6
+ * Add example for `tba_register_post_type_args`
7
+ * Add FAQ Gravity Forms
8
+ * Add filter `tba_register_category_args`
9
+ * Add filter `tba_register_post_type_args`
10
+ * Add filter `tba_register_tags_args`
11
+ * Add `margin-bottom: 2em;` to `.testimonials-widget-testimonial.list`
12
+
13
  ## 2.19.8
14
  * Add Configuration examples for filter testimonials_widget_meta_box
15
  * Add option Exclude default CSS?
assets/css/testimonials-widget.css CHANGED
@@ -36,7 +36,11 @@
36
  float: right;
37
  }
38
 
39
- .testimonials-widget-testimonial.list,
 
 
 
 
40
  .testimonials-widget-testimonial.single {
41
  clear: left;
42
  }
36
  float: right;
37
  }
38
 
39
+ .testimonials-widget-testimonial.list {
40
+ clear: left;
41
+ margin-bottom: 2em;
42
+ }
43
+
44
  .testimonials-widget-testimonial.single {
45
  clear: left;
46
  }
includes/class-testimonials-widget-settings.php CHANGED
@@ -76,11 +76,13 @@ class Testimonials_Widget_Settings extends Aihrus_Settings {
76
  self::$version = Testimonials_Widget::VERSION;
77
  self::$version = apply_filters( 'testimonials_widget_version', self::$version );
78
 
79
- if ( $version != self::$version )
80
  self::initialize_settings();
 
81
 
82
- if ( ! Testimonials_Widget::do_load() )
83
  return;
 
84
 
85
  self::load_options();
86
  self::register_settings();
@@ -757,19 +759,21 @@ class Testimonials_Widget_Settings extends Aihrus_Settings {
757
  case 'text':
758
  extract( $args );
759
 
760
- if ( is_null( $input ) )
761
  $options = get_option( self::ID );
762
- else {
763
  $options = array();
764
  $options[$id] = $input;
765
  }
766
 
767
- if ( ! isset( $options[$id] ) )
768
  $options[$id] = $std;
 
769
 
770
  $field_class = '';
771
- if ( ! empty( $class ) )
772
  $field_class = ' ' . $class;
 
773
 
774
  $field_class = esc_attr( $field_class );
775
 
76
  self::$version = Testimonials_Widget::VERSION;
77
  self::$version = apply_filters( 'testimonials_widget_version', self::$version );
78
 
79
+ if ( $version != self::$version ) {
80
  self::initialize_settings();
81
+ }
82
 
83
+ if ( ! Testimonials_Widget::do_load() ) {
84
  return;
85
+ }
86
 
87
  self::load_options();
88
  self::register_settings();
759
  case 'text':
760
  extract( $args );
761
 
762
+ if ( is_null( $input ) ) {
763
  $options = get_option( self::ID );
764
+ } else {
765
  $options = array();
766
  $options[$id] = $input;
767
  }
768
 
769
+ if ( ! isset( $options[$id] ) ) {
770
  $options[$id] = $std;
771
+ }
772
 
773
  $field_class = '';
774
+ if ( ! empty( $class ) ) {
775
  $field_class = ' ' . $class;
776
+ }
777
 
778
  $field_class = esc_attr( $field_class );
779
 
includes/class-testimonials-widget.php CHANGED
@@ -700,6 +700,7 @@ class Testimonials_Widget extends Aihrus_Common {
700
  'taxonomies' => $taxonomies,
701
  );
702
 
 
703
  register_post_type( self::PT, $args );
704
 
705
  if ( $do_register_taxonomy ) {
@@ -714,12 +715,14 @@ class Testimonials_Widget extends Aihrus_Common {
714
  'hierarchical' => true,
715
  'show_admin_column' => true,
716
  );
 
717
  register_taxonomy( self::$cpt_category, self::PT, $args );
718
 
719
  $args = array(
720
  'show_admin_column' => true,
721
  'update_count_callback' => '_update_post_term_count',
722
  );
 
723
  register_taxonomy( self::$cpt_tags, self::PT, $args );
724
  }
725
 
700
  'taxonomies' => $taxonomies,
701
  );
702
 
703
+ $args = apply_filters( 'tba_register_post_type_args', $args );
704
  register_post_type( self::PT, $args );
705
 
706
  if ( $do_register_taxonomy ) {
715
  'hierarchical' => true,
716
  'show_admin_column' => true,
717
  );
718
+ $args = apply_filters( 'tba_register_category_args', $args );
719
  register_taxonomy( self::$cpt_category, self::PT, $args );
720
 
721
  $args = array(
722
  'show_admin_column' => true,
723
  'update_count_callback' => '_update_post_term_count',
724
  );
725
+ $args = apply_filters( 'tba_register_tags_args', $args );
726
  register_taxonomy( self::$cpt_tags, self::PT, $args );
727
  }
728
 
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.19.8\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/testimonials-widget\n"
7
- "POT-Creation-Date: 2014-06-22 10:28:51+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
@@ -12,602 +12,602 @@ msgstr ""
12
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13
  "Language-Team: LANGUAGE <LL@li.org>\n"
14
 
15
- #: includes/class-testimonials-widget-settings.php:91
16
  msgid "Testimonials Settings"
17
  msgstr ""
18
 
19
- #: includes/class-testimonials-widget-settings.php:91
20
  #: includes/class-testimonials-widget.php:116
21
  msgid "Settings"
22
  msgstr ""
23
 
24
- #: includes/class-testimonials-widget-settings.php:107
25
- #: includes/class-testimonials-widget-settings.php:954
26
  msgid "General"
27
  msgstr ""
28
 
29
- #: includes/class-testimonials-widget-settings.php:108
30
- #: includes/class-testimonials-widget-settings.php:962
31
  msgid "Selection"
32
  msgstr ""
33
 
34
- #: includes/class-testimonials-widget-settings.php:109
35
- #: includes/class-testimonials-widget-settings.php:970
36
  msgid "Ordering"
37
  msgstr ""
38
 
39
- #: includes/class-testimonials-widget-settings.php:110
40
- #: includes/class-testimonials-widget-settings.php:978
41
  msgid "Widget"
42
  msgstr ""
43
 
44
- #: includes/class-testimonials-widget-settings.php:111
45
- #: includes/class-testimonials-widget-settings.php:986
46
  msgid "Post Type"
47
  msgstr ""
48
 
49
- #: includes/class-testimonials-widget-settings.php:112
50
- #: includes/class-testimonials-widget-settings.php:994
51
  msgid "Columns"
52
  msgstr ""
53
 
54
- #: includes/class-testimonials-widget-settings.php:129
55
  msgid "Widget Title"
56
  msgstr ""
57
 
58
- #: includes/class-testimonials-widget-settings.php:130
59
  #: includes/class-testimonials-widget-widget.php:32
60
  #: includes/class-testimonials-widget.php:640
61
  #: includes/class-testimonials-widget.php:687
62
  msgid "Testimonials"
63
  msgstr ""
64
 
65
- #: includes/class-testimonials-widget-settings.php:136
66
  msgid "Title Link"
67
  msgstr ""
68
 
69
- #: includes/class-testimonials-widget-settings.php:137
70
  msgid "URL, path, or post ID to link widget title to. Ex: http://example.com/stuff, /testimonials, or 123"
71
  msgstr ""
72
 
73
- #: includes/class-testimonials-widget-settings.php:143
74
  msgid "Character Limit"
75
  msgstr ""
76
 
77
- #: includes/class-testimonials-widget-settings.php:144
78
  msgid "Number of characters to limit non-single testimonial views to"
79
  msgstr ""
80
 
81
- #: includes/class-testimonials-widget-settings.php:150
82
  msgid "Rotation Speed"
83
  msgstr ""
84
 
85
- #: includes/class-testimonials-widget-settings.php:151
86
  msgid "Number of seconds between testimonial rotations or 0 for no rotation at all refresh"
87
  msgstr ""
88
 
89
- #: includes/class-testimonials-widget-settings.php:163
90
  msgid "Additional Widget Options"
91
  msgstr ""
92
 
93
- #: includes/class-testimonials-widget-settings.php:169
94
  msgid "Transition Mode?"
95
  msgstr ""
96
 
97
- #: includes/class-testimonials-widget-settings.php:170
98
  msgid "Type of transition between slides"
99
  msgstr ""
100
 
101
- #: includes/class-testimonials-widget-settings.php:173
102
  msgid "Fade"
103
  msgstr ""
104
 
105
- #: includes/class-testimonials-widget-settings.php:174
106
  msgid "Horizontal"
107
  msgstr ""
108
 
109
- #: includes/class-testimonials-widget-settings.php:175
110
  msgid "Vertical"
111
  msgstr ""
112
 
113
- #: includes/class-testimonials-widget-settings.php:182
114
  msgid "Show Play/Pause?"
115
  msgstr ""
116
 
117
- #: includes/class-testimonials-widget-settings.php:183
118
  msgid "Display start and stop buttons underneath the testimonial slider."
119
  msgstr ""
120
 
121
- #: includes/class-testimonials-widget-settings.php:191
122
  msgid "Keep Whitespace?"
123
  msgstr ""
124
 
125
- #: includes/class-testimonials-widget-settings.php:192
126
  msgid "Keeps testimonials looking as entered than sans auto-formatting"
127
  msgstr ""
128
 
129
- #: includes/class-testimonials-widget-settings.php:199
130
  msgid "Testimonial Bottom Text"
131
  msgstr ""
132
 
133
- #: includes/class-testimonials-widget-settings.php:200
134
  msgid "Custom text or HTML for bottom of testimonials"
135
  msgstr ""
136
 
137
- #: includes/class-testimonials-widget-settings.php:212
138
  msgid "General Options"
139
  msgstr ""
140
 
141
- #: includes/class-testimonials-widget-settings.php:217
142
  msgid "Use bxSlider?"
143
  msgstr ""
144
 
145
- #: includes/class-testimonials-widget-settings.php:218
146
  msgid "Prior to 2.15.0, Testimonials' used custom JavaScript for transitions."
147
  msgstr ""
148
 
149
- #: includes/class-testimonials-widget-settings.php:232
150
  msgid "Exclude bxSlider CSS?"
151
  msgstr ""
152
 
153
- #: includes/class-testimonials-widget-settings.php:233
154
  msgid "For a bare-bones, unthemed slider."
155
  msgstr ""
156
 
157
- #: includes/class-testimonials-widget-settings.php:241
158
  msgid "Exclude default CSS?"
159
  msgstr ""
160
 
161
- #: includes/class-testimonials-widget-settings.php:242
162
  msgid "Prevent default CSS from being loaded."
163
  msgstr ""
164
 
165
- #: includes/class-testimonials-widget-settings.php:249
166
  msgid "Include IE7 CSS?"
167
  msgstr ""
168
 
169
- #: includes/class-testimonials-widget-settings.php:256
170
  msgid "Hide built-in quotes?"
171
  msgstr ""
172
 
173
- #: includes/class-testimonials-widget-settings.php:257
174
  msgid "Remove open and close quote span tags surrounding testimonial content"
175
  msgstr ""
176
 
177
- #: includes/class-testimonials-widget-settings.php:263
178
  msgid "Remove `.hentry` CSS?"
179
  msgstr ""
180
 
181
- #: includes/class-testimonials-widget-settings.php:264
182
  msgid "Some themes use class `.hentry` in a manner that breaks Testimonials' CSS"
183
  msgstr ""
184
 
185
- #: includes/class-testimonials-widget-settings.php:271
186
  msgid "Use `&lt;q&gt;` tag?"
187
  msgstr ""
188
 
189
- #: includes/class-testimonials-widget-settings.php:272
190
  msgid "Not HTML5 compliant"
191
  msgstr ""
192
 
193
- #: includes/class-testimonials-widget-settings.php:278
194
  msgid "Fields to Show"
195
  msgstr ""
196
 
197
- #: includes/class-testimonials-widget-settings.php:283
198
  msgid "Hide Gravatar Image?"
199
  msgstr ""
200
 
201
- #: includes/class-testimonials-widget-settings.php:289
202
- #: includes/class-testimonials-widget-settings.php:589
203
  msgid "Hide Image?"
204
  msgstr ""
205
 
206
- #: includes/class-testimonials-widget-settings.php:295
207
  msgid "Hide Image in Single View?"
208
  msgstr ""
209
 
210
- #: includes/class-testimonials-widget-settings.php:302
211
  msgid "Hide Testimonial Content?"
212
  msgstr ""
213
 
214
- #: includes/class-testimonials-widget-settings.php:308
215
  msgid "Hide Author/Source?"
216
  msgstr ""
217
 
218
- #: includes/class-testimonials-widget-settings.php:311
219
  msgid "Don't display \"Post Title\" in cite"
220
  msgstr ""
221
 
222
- #: includes/class-testimonials-widget-settings.php:315
223
- #: includes/class-testimonials-widget-settings.php:623
224
  msgid "Hide Email?"
225
  msgstr ""
226
 
227
- #: includes/class-testimonials-widget-settings.php:322
228
- #: includes/class-testimonials-widget-settings.php:605
229
  msgid "Hide Job Title?"
230
  msgstr ""
231
 
232
- #: includes/class-testimonials-widget-settings.php:328
233
- #: includes/class-testimonials-widget-settings.php:614
234
  msgid "Hide Location?"
235
  msgstr ""
236
 
237
- #: includes/class-testimonials-widget-settings.php:334
238
- #: includes/class-testimonials-widget-settings.php:632
239
  msgid "Hide Company?"
240
  msgstr ""
241
 
242
- #: includes/class-testimonials-widget-settings.php:340
243
- #: includes/class-testimonials-widget-settings.php:641
244
  msgid "Hide URL?"
245
  msgstr ""
246
 
247
- #: includes/class-testimonials-widget-settings.php:346
248
  msgid "Miscellaneous"
249
  msgstr ""
250
 
251
- #: includes/class-testimonials-widget-settings.php:351
252
  msgid "Default Reviewed Item?"
253
  msgstr ""
254
 
255
- #: includes/class-testimonials-widget-settings.php:352
256
  msgid "Name of thing being referenced in testimonials"
257
  msgstr ""
258
 
259
- #: includes/class-testimonials-widget-settings.php:358
260
  msgid "Default Reviewed Item URL?"
261
  msgstr ""
262
 
263
- #: includes/class-testimonials-widget-settings.php:359
264
  msgid "URL of thing being referenced in testimonials"
265
  msgstr ""
266
 
267
- #: includes/class-testimonials-widget-settings.php:366
268
  msgid "Enable Paging?"
269
  msgstr ""
270
 
271
- #: includes/class-testimonials-widget-settings.php:367
272
  msgid "For `[testimonials]`"
273
  msgstr ""
274
 
275
- #: includes/class-testimonials-widget-settings.php:370
276
  msgid "Disable"
277
  msgstr ""
278
 
279
- #: includes/class-testimonials-widget-settings.php:371
280
  msgid "Enable"
281
  msgstr ""
282
 
283
- #: includes/class-testimonials-widget-settings.php:372
284
  msgid "Before testimonials"
285
  msgstr ""
286
 
287
- #: includes/class-testimonials-widget-settings.php:373
288
  msgid "After testimonials"
289
  msgstr ""
290
 
291
- #: includes/class-testimonials-widget-settings.php:379
292
  msgid "Adds HTML tag markup per the <a href=\"%s\">Review schema</a> to testimonials. Search engines including Bing, Google, Yahoo! and Yandex rely on this markup to improve the display of search results."
293
  msgstr ""
294
 
295
- #: includes/class-testimonials-widget-settings.php:382
296
  msgid "Enable Review Schema?"
297
  msgstr ""
298
 
299
- #: includes/class-testimonials-widget-settings.php:390
300
  msgid "Enable Video?"
301
  msgstr ""
302
 
303
- #: includes/class-testimonials-widget-settings.php:391
304
  msgid "Only enable when displaying video content."
305
  msgstr ""
306
 
307
- #: includes/class-testimonials-widget-settings.php:397
308
  msgid "Enable [shortcodes]?"
309
  msgstr ""
310
 
311
- #: includes/class-testimonials-widget-settings.php:398
312
  msgid "If unchecked, shortcodes are stripped."
313
  msgstr ""
314
 
315
- #: includes/class-testimonials-widget-settings.php:405
316
  msgid "Hide \"Testimonials Not Found\"?"
317
  msgstr ""
318
 
319
- #: includes/class-testimonials-widget-settings.php:411
320
  msgid "URL Target"
321
  msgstr ""
322
 
323
- #: includes/class-testimonials-widget-settings.php:412
324
  msgid "Add target to all URLs; leave blank if none"
325
  msgstr ""
326
 
327
- #: includes/class-testimonials-widget-settings.php:423
328
  msgid "Selection Options"
329
  msgstr ""
330
 
331
- #: includes/class-testimonials-widget-settings.php:429
332
  msgid "Category Filter"
333
  msgstr ""
334
 
335
- #: includes/class-testimonials-widget-settings.php:430
336
  msgid "Comma separated category names. Ex: Category A, Another category"
337
  msgstr ""
338
 
339
- #: includes/class-testimonials-widget-settings.php:437
340
  msgid "Tags Filter"
341
  msgstr ""
342
 
343
- #: includes/class-testimonials-widget-settings.php:438
344
  msgid "Comma separated tag names. Ex: Tag A, Another tag"
345
  msgstr ""
346
 
347
- #: includes/class-testimonials-widget-settings.php:445
348
  msgid "Require All Tags?"
349
  msgstr ""
350
 
351
- #: includes/class-testimonials-widget-settings.php:446
352
  msgid "Select only testimonials with all of the given tags"
353
  msgstr ""
354
 
355
- #: includes/class-testimonials-widget-settings.php:453
356
  msgid "Include IDs Filter"
357
  msgstr ""
358
 
359
- #: includes/class-testimonials-widget-settings.php:454
360
- #: includes/class-testimonials-widget-settings.php:461
361
  msgid "Comma separated testimonial IDs. Ex: 3,1,2"
362
  msgstr ""
363
 
364
- #: includes/class-testimonials-widget-settings.php:460
365
  msgid "Exclude IDs Filter"
366
  msgstr ""
367
 
368
- #: includes/class-testimonials-widget-settings.php:467
369
  msgid "Limit"
370
  msgstr ""
371
 
372
- #: includes/class-testimonials-widget-settings.php:468
373
  msgid "Number of testimonials to select per instance"
374
  msgstr ""
375
 
376
- #: includes/class-testimonials-widget-settings.php:481
377
  msgid "Ordering Options"
378
  msgstr ""
379
 
380
- #: includes/class-testimonials-widget-settings.php:487
381
  msgid "Random Order?"
382
  msgstr ""
383
 
384
- #: includes/class-testimonials-widget-settings.php:488
385
  msgid "If checked, ignores ORDER BY, ORDER BY meta_key, and ORDER BY Order. Widgets are random by default automatically"
386
  msgstr ""
387
 
388
- #: includes/class-testimonials-widget-settings.php:495
389
  msgid "ORDER BY"
390
  msgstr ""
391
 
392
- #: includes/class-testimonials-widget-settings.php:496
393
  msgid "Used when \"Random Order\" is disabled"
394
  msgstr ""
395
 
396
- #: includes/class-testimonials-widget-settings.php:499
397
  msgid "Testimonial ID"
398
  msgstr ""
399
 
400
- #: includes/class-testimonials-widget-settings.php:500
401
  msgid "Author"
402
  msgstr ""
403
 
404
- #: includes/class-testimonials-widget-settings.php:501
405
  #: includes/class-testimonials-widget.php:577
406
  msgid "Date"
407
  msgstr ""
408
 
409
- #: includes/class-testimonials-widget-settings.php:502
410
  msgid "Menu Order"
411
  msgstr ""
412
 
413
- #: includes/class-testimonials-widget-settings.php:503
414
  #: includes/class-testimonials-widget.php:575
415
  msgid "Source"
416
  msgstr ""
417
 
418
- #: includes/class-testimonials-widget-settings.php:504
419
  msgid "No order"
420
  msgstr ""
421
 
422
- #: includes/class-testimonials-widget-settings.php:512
423
  msgid "ORDER BY meta_key"
424
  msgstr ""
425
 
426
- #: includes/class-testimonials-widget-settings.php:513
427
  msgid "Used when \"Random Order\" is disabled and sorting by a testimonials meta key is needed. Overrides ORDER BY"
428
  msgstr ""
429
 
430
- #: includes/class-testimonials-widget-settings.php:516
431
  msgid "None"
432
  msgstr ""
433
 
434
- #: includes/class-testimonials-widget-settings.php:517
435
  #: includes/class-testimonials-widget.php:606
436
- #: includes/class-testimonials-widget.php:1766
437
  msgid "Job Title"
438
  msgstr ""
439
 
440
- #: includes/class-testimonials-widget-settings.php:518
441
  #: includes/class-testimonials-widget.php:616
442
- #: includes/class-testimonials-widget.php:1778
443
  msgid "Email"
444
  msgstr ""
445
 
446
- #: includes/class-testimonials-widget-settings.php:519
447
  #: includes/class-testimonials-widget.php:611
448
- #: includes/class-testimonials-widget.php:1772
449
  msgid "Location"
450
  msgstr ""
451
 
452
- #: includes/class-testimonials-widget-settings.php:520
453
  #: includes/class-testimonials-widget.php:621
454
- #: includes/class-testimonials-widget.php:1784
455
  msgid "Company"
456
  msgstr ""
457
 
458
- #: includes/class-testimonials-widget-settings.php:521
459
  #: includes/class-testimonials-widget.php:626
460
- #: includes/class-testimonials-widget.php:1790
461
  msgid "URL"
462
  msgstr ""
463
 
464
- #: includes/class-testimonials-widget-settings.php:528
465
  msgid "ORDER BY Order"
466
  msgstr ""
467
 
468
- #: includes/class-testimonials-widget-settings.php:531
469
  msgid "Descending"
470
  msgstr ""
471
 
472
- #: includes/class-testimonials-widget-settings.php:532
473
  msgid "Ascending"
474
  msgstr ""
475
 
476
- #: includes/class-testimonials-widget-settings.php:546
477
  msgid "Allow Comments?"
478
  msgstr ""
479
 
480
- #: includes/class-testimonials-widget-settings.php:547
481
  msgid "Only affects the Testimonials post edit page. Your theme controls the front-end view."
482
  msgstr ""
483
 
484
- #: includes/class-testimonials-widget-settings.php:553
485
  msgid "URL slug-name for <a href=\"%1s\">testimonials archive</a> page."
486
  msgstr ""
487
 
488
- #: includes/class-testimonials-widget-settings.php:559
489
  msgid "Archive Page URL"
490
  msgstr ""
491
 
492
- #: includes/class-testimonials-widget-settings.php:566
493
  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."
494
  msgstr ""
495
 
496
- #: includes/class-testimonials-widget-settings.php:570
497
  msgid "Testimonial Page URL"
498
  msgstr ""
499
 
500
- #: includes/class-testimonials-widget-settings.php:580
501
  msgid "Hide ID?"
502
  msgstr ""
503
 
504
- #: includes/class-testimonials-widget-settings.php:597
505
  msgid "Hide Shortcode?"
506
  msgstr ""
507
 
508
- #: includes/class-testimonials-widget-settings.php:651
509
  #: includes/libraries/aihrus-framework/includes/class-aihrus-settings.php:64
510
  msgid "Reset"
511
  msgstr ""
512
 
513
- #: includes/class-testimonials-widget-settings.php:657
514
  msgid "Don't Use Default Taxonomies?"
515
  msgstr ""
516
 
517
- #: includes/class-testimonials-widget-settings.php:660
518
  msgid "If checked, use Testimonials' own category and tag taxonomies instead"
519
  msgstr ""
520
 
521
- #: includes/class-testimonials-widget-settings.php:669
522
  msgid "Version Based Options"
523
  msgstr ""
524
 
525
- #: includes/class-testimonials-widget-settings.php:675
526
  msgid "Disable Animation?"
527
  msgstr ""
528
 
529
- #: includes/class-testimonials-widget-settings.php:676
530
  msgid "Prior to 2.15.0, Disable animation between testimonial transitions. Useful when stacking widgets."
531
  msgstr ""
532
 
533
- #: includes/class-testimonials-widget-settings.php:684
534
  msgid "Fade Out Speed"
535
  msgstr ""
536
 
537
- #: includes/class-testimonials-widget-settings.php:685
538
- #: includes/class-testimonials-widget-settings.php:693
539
  msgid "Prior to 2.15.0, Transition duration in milliseconds; higher values indicate slower animations, not faster ones."
540
  msgstr ""
541
 
542
- #: includes/class-testimonials-widget-settings.php:692
543
  msgid "Fade In Speed"
544
  msgstr ""
545
 
546
- #: includes/class-testimonials-widget-settings.php:700
547
  msgid "Height"
548
  msgstr ""
549
 
550
- #: includes/class-testimonials-widget-settings.php:701
551
  msgid "Prior to 2.15.0, Testimonials height, in pixels. Overrides minimum and maximum height"
552
  msgstr ""
553
 
554
- #: includes/class-testimonials-widget-settings.php:707
555
  msgid "Minimum Height"
556
  msgstr ""
557
 
558
- #: includes/class-testimonials-widget-settings.php:708
559
  msgid "Prior to 2.15.0, Set for minimum display height, in pixels"
560
  msgstr ""
561
 
562
- #: includes/class-testimonials-widget-settings.php:714
563
  msgid "Maximum Height"
564
  msgstr ""
565
 
566
- #: includes/class-testimonials-widget-settings.php:715
567
  msgid "Prior to 2.15.0, Set for maximum display height, in pixels"
568
  msgstr ""
569
 
570
- #: includes/class-testimonials-widget-settings.php:940
571
  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."
572
  msgstr ""
573
 
574
- #: includes/class-testimonials-widget-settings.php:942
575
  msgid "Shortcode option names are listed below each entry."
576
  msgstr ""
577
 
578
- #: includes/class-testimonials-widget-settings.php:945
579
  msgid "View the <a href=\"%s\">Testimonials documentation</a>."
580
  msgstr ""
581
 
582
- #: includes/class-testimonials-widget-settings.php:955
583
  msgid "Show or hide optional fields."
584
  msgstr ""
585
 
586
- #: includes/class-testimonials-widget-settings.php:963
587
  msgid "Options used to select testimonials."
588
  msgstr ""
589
 
590
- #: includes/class-testimonials-widget-settings.php:971
591
  msgid "Options used to determine displayed testimonials ordering."
592
  msgstr ""
593
 
594
- #: includes/class-testimonials-widget-settings.php:979
595
  msgid "Options related to showing testimonials in widgets."
596
  msgstr ""
597
 
598
- #: includes/class-testimonials-widget-settings.php:987
599
  msgid "Archive and singular page URL related testimonials options."
600
  msgstr ""
601
 
602
- #: includes/class-testimonials-widget-settings.php:995
603
  msgid "Allowed columns to display on edit page."
604
  msgstr ""
605
 
606
- #: includes/class-testimonials-widget-settings.php:1002
607
  msgid "Compatibility & Reset"
608
  msgstr ""
609
 
610
- #: includes/class-testimonials-widget-settings.php:1003
611
  msgid "Backwards compatibility, import/export options, and reset options."
612
  msgstr ""
613
 
@@ -624,7 +624,7 @@ msgid "This widget's unique CSS class for styling"
624
  msgstr ""
625
 
626
  #: includes/class-testimonials-widget.php:144
627
- #: includes/class-testimonials-widget.php:2150
628
  msgid "Testimonials Shortcode Examples"
629
  msgstr ""
630
 
@@ -676,7 +676,7 @@ msgid "Edit Testimonial"
676
  msgstr ""
677
 
678
  #: includes/class-testimonials-widget.php:642
679
- #: includes/class-testimonials-widget.php:1083
680
  msgid "No testimonials found"
681
  msgstr ""
682
 
@@ -689,8 +689,8 @@ msgid "Search Testimonials"
689
  msgstr ""
690
 
691
  #: includes/class-testimonials-widget.php:646
692
- #: includes/class-testimonials-widget.php:1878
693
- #: includes/class-testimonials-widget.php:2282
694
  msgid "Testimonial"
695
  msgstr ""
696
 
@@ -698,81 +698,81 @@ msgstr ""
698
  msgid "View Testimonial"
699
  msgstr ""
700
 
701
- #: includes/class-testimonials-widget.php:1258
702
  msgid "…"
703
  msgstr ""
704
 
705
- #: includes/class-testimonials-widget.php:1476
706
  msgid "&laquo;"
707
  msgstr ""
708
 
709
- #: includes/class-testimonials-widget.php:1484
710
  msgid "&raquo;"
711
  msgstr ""
712
 
713
- #: includes/class-testimonials-widget.php:1802
714
  msgid "Testimonial Data"
715
  msgstr ""
716
 
717
- #: includes/class-testimonials-widget.php:1827
718
  msgid "Enter title here"
719
  msgstr ""
720
 
721
- #: includes/class-testimonials-widget.php:1828
722
  msgid "Enter testimonial source here"
723
  msgstr ""
724
 
725
- #: includes/class-testimonials-widget.php:1853
726
  msgid "Testimonial updated. <a href=\"%s\">View testimonial</a>"
727
  msgstr ""
728
 
729
- #: includes/class-testimonials-widget.php:1854
730
  msgid "Custom field updated."
731
  msgstr ""
732
 
733
- #: includes/class-testimonials-widget.php:1855
734
  msgid "Custom field deleted."
735
  msgstr ""
736
 
737
- #: includes/class-testimonials-widget.php:1856
738
  msgid "Testimonial updated."
739
  msgstr ""
740
 
741
  #. translators: %s: date and time of the revision
742
 
743
- #: includes/class-testimonials-widget.php:1858
744
  msgid "Testimonial restored to revision from %s"
745
  msgstr ""
746
 
747
- #: includes/class-testimonials-widget.php:1859
748
  msgid "Testimonial published. <a href=\"%s\">View testimonial</a>"
749
  msgstr ""
750
 
751
- #: includes/class-testimonials-widget.php:1860
752
  msgid "Testimonial saved."
753
  msgstr ""
754
 
755
- #: includes/class-testimonials-widget.php:1861
756
  msgid "Testimonial submitted. <a target=\"_blank\" href=\"%s\">Preview testimonial</a>"
757
  msgstr ""
758
 
759
- #: includes/class-testimonials-widget.php:1862
760
  msgid "Testimonial scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Preview testimonial</a>"
761
  msgstr ""
762
 
763
- #: includes/class-testimonials-widget.php:1863
764
  msgid "Testimonial draft updated. <a target=\"_blank\" href=\"%s\">Preview testimonial</a>"
765
  msgstr ""
766
 
767
- #: includes/class-testimonials-widget.php:2141
768
  msgid "If your Testimonials display has gone to funky town, please <a href=\"%s\">read the FAQ</a> about possible fixes."
769
  msgstr ""
770
 
771
- #: includes/class-testimonials-widget.php:2196
772
  msgid "Failed version check"
773
  msgstr ""
774
 
775
- #: includes/class-testimonials-widget.php:2227
776
  msgid "Shortcode"
777
  msgstr ""
778
 
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.19.9\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/testimonials-widget\n"
7
+ "POT-Creation-Date: 2014-09-05 16:36:56+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
12
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13
  "Language-Team: LANGUAGE <LL@li.org>\n"
14
 
15
+ #: includes/class-testimonials-widget-settings.php:93
16
  msgid "Testimonials Settings"
17
  msgstr ""
18
 
19
+ #: includes/class-testimonials-widget-settings.php:93
20
  #: includes/class-testimonials-widget.php:116
21
  msgid "Settings"
22
  msgstr ""
23
 
24
+ #: includes/class-testimonials-widget-settings.php:109
25
+ #: includes/class-testimonials-widget-settings.php:958
26
  msgid "General"
27
  msgstr ""
28
 
29
+ #: includes/class-testimonials-widget-settings.php:110
30
+ #: includes/class-testimonials-widget-settings.php:966
31
  msgid "Selection"
32
  msgstr ""
33
 
34
+ #: includes/class-testimonials-widget-settings.php:111
35
+ #: includes/class-testimonials-widget-settings.php:974
36
  msgid "Ordering"
37
  msgstr ""
38
 
39
+ #: includes/class-testimonials-widget-settings.php:112
40
+ #: includes/class-testimonials-widget-settings.php:982
41
  msgid "Widget"
42
  msgstr ""
43
 
44
+ #: includes/class-testimonials-widget-settings.php:113
45
+ #: includes/class-testimonials-widget-settings.php:990
46
  msgid "Post Type"
47
  msgstr ""
48
 
49
+ #: includes/class-testimonials-widget-settings.php:114
50
+ #: includes/class-testimonials-widget-settings.php:998
51
  msgid "Columns"
52
  msgstr ""
53
 
54
+ #: includes/class-testimonials-widget-settings.php:131
55
  msgid "Widget Title"
56
  msgstr ""
57
 
58
+ #: includes/class-testimonials-widget-settings.php:132
59
  #: includes/class-testimonials-widget-widget.php:32
60
  #: includes/class-testimonials-widget.php:640
61
  #: includes/class-testimonials-widget.php:687
62
  msgid "Testimonials"
63
  msgstr ""
64
 
65
+ #: includes/class-testimonials-widget-settings.php:138
66
  msgid "Title Link"
67
  msgstr ""
68
 
69
+ #: includes/class-testimonials-widget-settings.php:139
70
  msgid "URL, path, or post ID to link widget title to. Ex: http://example.com/stuff, /testimonials, or 123"
71
  msgstr ""
72
 
73
+ #: includes/class-testimonials-widget-settings.php:145
74
  msgid "Character Limit"
75
  msgstr ""
76
 
77
+ #: includes/class-testimonials-widget-settings.php:146
78
  msgid "Number of characters to limit non-single testimonial views to"
79
  msgstr ""
80
 
81
+ #: includes/class-testimonials-widget-settings.php:152
82
  msgid "Rotation Speed"
83
  msgstr ""
84
 
85
+ #: includes/class-testimonials-widget-settings.php:153
86
  msgid "Number of seconds between testimonial rotations or 0 for no rotation at all refresh"
87
  msgstr ""
88
 
89
+ #: includes/class-testimonials-widget-settings.php:165
90
  msgid "Additional Widget Options"
91
  msgstr ""
92
 
93
+ #: includes/class-testimonials-widget-settings.php:171
94
  msgid "Transition Mode?"
95
  msgstr ""
96
 
97
+ #: includes/class-testimonials-widget-settings.php:172
98
  msgid "Type of transition between slides"
99
  msgstr ""
100
 
101
+ #: includes/class-testimonials-widget-settings.php:175
102
  msgid "Fade"
103
  msgstr ""
104
 
105
+ #: includes/class-testimonials-widget-settings.php:176
106
  msgid "Horizontal"
107
  msgstr ""
108
 
109
+ #: includes/class-testimonials-widget-settings.php:177
110
  msgid "Vertical"
111
  msgstr ""
112
 
113
+ #: includes/class-testimonials-widget-settings.php:184
114
  msgid "Show Play/Pause?"
115
  msgstr ""
116
 
117
+ #: includes/class-testimonials-widget-settings.php:185
118
  msgid "Display start and stop buttons underneath the testimonial slider."
119
  msgstr ""
120
 
121
+ #: includes/class-testimonials-widget-settings.php:193
122
  msgid "Keep Whitespace?"
123
  msgstr ""
124
 
125
+ #: includes/class-testimonials-widget-settings.php:194
126
  msgid "Keeps testimonials looking as entered than sans auto-formatting"
127
  msgstr ""
128
 
129
+ #: includes/class-testimonials-widget-settings.php:201
130
  msgid "Testimonial Bottom Text"
131
  msgstr ""
132
 
133
+ #: includes/class-testimonials-widget-settings.php:202
134
  msgid "Custom text or HTML for bottom of testimonials"
135
  msgstr ""
136
 
137
+ #: includes/class-testimonials-widget-settings.php:214
138
  msgid "General Options"
139
  msgstr ""
140
 
141
+ #: includes/class-testimonials-widget-settings.php:219
142
  msgid "Use bxSlider?"
143
  msgstr ""
144
 
145
+ #: includes/class-testimonials-widget-settings.php:220
146
  msgid "Prior to 2.15.0, Testimonials' used custom JavaScript for transitions."
147
  msgstr ""
148
 
149
+ #: includes/class-testimonials-widget-settings.php:234
150
  msgid "Exclude bxSlider CSS?"
151
  msgstr ""
152
 
153
+ #: includes/class-testimonials-widget-settings.php:235
154
  msgid "For a bare-bones, unthemed slider."
155
  msgstr ""
156
 
157
+ #: includes/class-testimonials-widget-settings.php:243
158
  msgid "Exclude default CSS?"
159
  msgstr ""
160
 
161
+ #: includes/class-testimonials-widget-settings.php:244
162
  msgid "Prevent default CSS from being loaded."
163
  msgstr ""
164
 
165
+ #: includes/class-testimonials-widget-settings.php:251
166
  msgid "Include IE7 CSS?"
167
  msgstr ""
168
 
169
+ #: includes/class-testimonials-widget-settings.php:258
170
  msgid "Hide built-in quotes?"
171
  msgstr ""
172
 
173
+ #: includes/class-testimonials-widget-settings.php:259
174
  msgid "Remove open and close quote span tags surrounding testimonial content"
175
  msgstr ""
176
 
177
+ #: includes/class-testimonials-widget-settings.php:265
178
  msgid "Remove `.hentry` CSS?"
179
  msgstr ""
180
 
181
+ #: includes/class-testimonials-widget-settings.php:266
182
  msgid "Some themes use class `.hentry` in a manner that breaks Testimonials' CSS"
183
  msgstr ""
184
 
185
+ #: includes/class-testimonials-widget-settings.php:273
186
  msgid "Use `&lt;q&gt;` tag?"
187
  msgstr ""
188
 
189
+ #: includes/class-testimonials-widget-settings.php:274
190
  msgid "Not HTML5 compliant"
191
  msgstr ""
192
 
193
+ #: includes/class-testimonials-widget-settings.php:280
194
  msgid "Fields to Show"
195
  msgstr ""
196
 
197
+ #: includes/class-testimonials-widget-settings.php:285
198
  msgid "Hide Gravatar Image?"
199
  msgstr ""
200
 
201
+ #: includes/class-testimonials-widget-settings.php:291
202
+ #: includes/class-testimonials-widget-settings.php:591
203
  msgid "Hide Image?"
204
  msgstr ""
205
 
206
+ #: includes/class-testimonials-widget-settings.php:297
207
  msgid "Hide Image in Single View?"
208
  msgstr ""
209
 
210
+ #: includes/class-testimonials-widget-settings.php:304
211
  msgid "Hide Testimonial Content?"
212
  msgstr ""
213
 
214
+ #: includes/class-testimonials-widget-settings.php:310
215
  msgid "Hide Author/Source?"
216
  msgstr ""
217
 
218
+ #: includes/class-testimonials-widget-settings.php:313
219
  msgid "Don't display \"Post Title\" in cite"
220
  msgstr ""
221
 
222
+ #: includes/class-testimonials-widget-settings.php:317
223
+ #: includes/class-testimonials-widget-settings.php:625
224
  msgid "Hide Email?"
225
  msgstr ""
226
 
227
+ #: includes/class-testimonials-widget-settings.php:324
228
+ #: includes/class-testimonials-widget-settings.php:607
229
  msgid "Hide Job Title?"
230
  msgstr ""
231
 
232
+ #: includes/class-testimonials-widget-settings.php:330
233
+ #: includes/class-testimonials-widget-settings.php:616
234
  msgid "Hide Location?"
235
  msgstr ""
236
 
237
+ #: includes/class-testimonials-widget-settings.php:336
238
+ #: includes/class-testimonials-widget-settings.php:634
239
  msgid "Hide Company?"
240
  msgstr ""
241
 
242
+ #: includes/class-testimonials-widget-settings.php:342
243
+ #: includes/class-testimonials-widget-settings.php:643
244
  msgid "Hide URL?"
245
  msgstr ""
246
 
247
+ #: includes/class-testimonials-widget-settings.php:348
248
  msgid "Miscellaneous"
249
  msgstr ""
250
 
251
+ #: includes/class-testimonials-widget-settings.php:353
252
  msgid "Default Reviewed Item?"
253
  msgstr ""
254
 
255
+ #: includes/class-testimonials-widget-settings.php:354
256
  msgid "Name of thing being referenced in testimonials"
257
  msgstr ""
258
 
259
+ #: includes/class-testimonials-widget-settings.php:360
260
  msgid "Default Reviewed Item URL?"
261
  msgstr ""
262
 
263
+ #: includes/class-testimonials-widget-settings.php:361
264
  msgid "URL of thing being referenced in testimonials"
265
  msgstr ""
266
 
267
+ #: includes/class-testimonials-widget-settings.php:368
268
  msgid "Enable Paging?"
269
  msgstr ""
270
 
271
+ #: includes/class-testimonials-widget-settings.php:369
272
  msgid "For `[testimonials]`"
273
  msgstr ""
274
 
275
+ #: includes/class-testimonials-widget-settings.php:372
276
  msgid "Disable"
277
  msgstr ""
278
 
279
+ #: includes/class-testimonials-widget-settings.php:373
280
  msgid "Enable"
281
  msgstr ""
282
 
283
+ #: includes/class-testimonials-widget-settings.php:374
284
  msgid "Before testimonials"
285
  msgstr ""
286
 
287
+ #: includes/class-testimonials-widget-settings.php:375
288
  msgid "After testimonials"
289
  msgstr ""
290
 
291
+ #: includes/class-testimonials-widget-settings.php:381
292
  msgid "Adds HTML tag markup per the <a href=\"%s\">Review schema</a> to testimonials. Search engines including Bing, Google, Yahoo! and Yandex rely on this markup to improve the display of search results."
293
  msgstr ""
294
 
295
+ #: includes/class-testimonials-widget-settings.php:384
296
  msgid "Enable Review Schema?"
297
  msgstr ""
298
 
299
+ #: includes/class-testimonials-widget-settings.php:392
300
  msgid "Enable Video?"
301
  msgstr ""
302
 
303
+ #: includes/class-testimonials-widget-settings.php:393
304
  msgid "Only enable when displaying video content."
305
  msgstr ""
306
 
307
+ #: includes/class-testimonials-widget-settings.php:399
308
  msgid "Enable [shortcodes]?"
309
  msgstr ""
310
 
311
+ #: includes/class-testimonials-widget-settings.php:400
312
  msgid "If unchecked, shortcodes are stripped."
313
  msgstr ""
314
 
315
+ #: includes/class-testimonials-widget-settings.php:407
316
  msgid "Hide \"Testimonials Not Found\"?"
317
  msgstr ""
318
 
319
+ #: includes/class-testimonials-widget-settings.php:413
320
  msgid "URL Target"
321
  msgstr ""
322
 
323
+ #: includes/class-testimonials-widget-settings.php:414
324
  msgid "Add target to all URLs; leave blank if none"
325
  msgstr ""
326
 
327
+ #: includes/class-testimonials-widget-settings.php:425
328
  msgid "Selection Options"
329
  msgstr ""
330
 
331
+ #: includes/class-testimonials-widget-settings.php:431
332
  msgid "Category Filter"
333
  msgstr ""
334
 
335
+ #: includes/class-testimonials-widget-settings.php:432
336
  msgid "Comma separated category names. Ex: Category A, Another category"
337
  msgstr ""
338
 
339
+ #: includes/class-testimonials-widget-settings.php:439
340
  msgid "Tags Filter"
341
  msgstr ""
342
 
343
+ #: includes/class-testimonials-widget-settings.php:440
344
  msgid "Comma separated tag names. Ex: Tag A, Another tag"
345
  msgstr ""
346
 
347
+ #: includes/class-testimonials-widget-settings.php:447
348
  msgid "Require All Tags?"
349
  msgstr ""
350
 
351
+ #: includes/class-testimonials-widget-settings.php:448
352
  msgid "Select only testimonials with all of the given tags"
353
  msgstr ""
354
 
355
+ #: includes/class-testimonials-widget-settings.php:455
356
  msgid "Include IDs Filter"
357
  msgstr ""
358
 
359
+ #: includes/class-testimonials-widget-settings.php:456
360
+ #: includes/class-testimonials-widget-settings.php:463
361
  msgid "Comma separated testimonial IDs. Ex: 3,1,2"
362
  msgstr ""
363
 
364
+ #: includes/class-testimonials-widget-settings.php:462
365
  msgid "Exclude IDs Filter"
366
  msgstr ""
367
 
368
+ #: includes/class-testimonials-widget-settings.php:469
369
  msgid "Limit"
370
  msgstr ""
371
 
372
+ #: includes/class-testimonials-widget-settings.php:470
373
  msgid "Number of testimonials to select per instance"
374
  msgstr ""
375
 
376
+ #: includes/class-testimonials-widget-settings.php:483
377
  msgid "Ordering Options"
378
  msgstr ""
379
 
380
+ #: includes/class-testimonials-widget-settings.php:489
381
  msgid "Random Order?"
382
  msgstr ""
383
 
384
+ #: includes/class-testimonials-widget-settings.php:490
385
  msgid "If checked, ignores ORDER BY, ORDER BY meta_key, and ORDER BY Order. Widgets are random by default automatically"
386
  msgstr ""
387
 
388
+ #: includes/class-testimonials-widget-settings.php:497
389
  msgid "ORDER BY"
390
  msgstr ""
391
 
392
+ #: includes/class-testimonials-widget-settings.php:498
393
  msgid "Used when \"Random Order\" is disabled"
394
  msgstr ""
395
 
396
+ #: includes/class-testimonials-widget-settings.php:501
397
  msgid "Testimonial ID"
398
  msgstr ""
399
 
400
+ #: includes/class-testimonials-widget-settings.php:502
401
  msgid "Author"
402
  msgstr ""
403
 
404
+ #: includes/class-testimonials-widget-settings.php:503
405
  #: includes/class-testimonials-widget.php:577
406
  msgid "Date"
407
  msgstr ""
408
 
409
+ #: includes/class-testimonials-widget-settings.php:504
410
  msgid "Menu Order"
411
  msgstr ""
412
 
413
+ #: includes/class-testimonials-widget-settings.php:505
414
  #: includes/class-testimonials-widget.php:575
415
  msgid "Source"
416
  msgstr ""
417
 
418
+ #: includes/class-testimonials-widget-settings.php:506
419
  msgid "No order"
420
  msgstr ""
421
 
422
+ #: includes/class-testimonials-widget-settings.php:514
423
  msgid "ORDER BY meta_key"
424
  msgstr ""
425
 
426
+ #: includes/class-testimonials-widget-settings.php:515
427
  msgid "Used when \"Random Order\" is disabled and sorting by a testimonials meta key is needed. Overrides ORDER BY"
428
  msgstr ""
429
 
430
+ #: includes/class-testimonials-widget-settings.php:518
431
  msgid "None"
432
  msgstr ""
433
 
434
+ #: includes/class-testimonials-widget-settings.php:519
435
  #: includes/class-testimonials-widget.php:606
436
+ #: includes/class-testimonials-widget.php:1769
437
  msgid "Job Title"
438
  msgstr ""
439
 
440
+ #: includes/class-testimonials-widget-settings.php:520
441
  #: includes/class-testimonials-widget.php:616
442
+ #: includes/class-testimonials-widget.php:1781
443
  msgid "Email"
444
  msgstr ""
445
 
446
+ #: includes/class-testimonials-widget-settings.php:521
447
  #: includes/class-testimonials-widget.php:611
448
+ #: includes/class-testimonials-widget.php:1775
449
  msgid "Location"
450
  msgstr ""
451
 
452
+ #: includes/class-testimonials-widget-settings.php:522
453
  #: includes/class-testimonials-widget.php:621
454
+ #: includes/class-testimonials-widget.php:1787
455
  msgid "Company"
456
  msgstr ""
457
 
458
+ #: includes/class-testimonials-widget-settings.php:523
459
  #: includes/class-testimonials-widget.php:626
460
+ #: includes/class-testimonials-widget.php:1793
461
  msgid "URL"
462
  msgstr ""
463
 
464
+ #: includes/class-testimonials-widget-settings.php:530
465
  msgid "ORDER BY Order"
466
  msgstr ""
467
 
468
+ #: includes/class-testimonials-widget-settings.php:533
469
  msgid "Descending"
470
  msgstr ""
471
 
472
+ #: includes/class-testimonials-widget-settings.php:534
473
  msgid "Ascending"
474
  msgstr ""
475
 
476
+ #: includes/class-testimonials-widget-settings.php:548
477
  msgid "Allow Comments?"
478
  msgstr ""
479
 
480
+ #: includes/class-testimonials-widget-settings.php:549
481
  msgid "Only affects the Testimonials post edit page. Your theme controls the front-end view."
482
  msgstr ""
483
 
484
+ #: includes/class-testimonials-widget-settings.php:555
485
  msgid "URL slug-name for <a href=\"%1s\">testimonials archive</a> page."
486
  msgstr ""
487
 
488
+ #: includes/class-testimonials-widget-settings.php:561
489
  msgid "Archive Page URL"
490
  msgstr ""
491
 
492
+ #: includes/class-testimonials-widget-settings.php:568
493
  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."
494
  msgstr ""
495
 
496
+ #: includes/class-testimonials-widget-settings.php:572
497
  msgid "Testimonial Page URL"
498
  msgstr ""
499
 
500
+ #: includes/class-testimonials-widget-settings.php:582
501
  msgid "Hide ID?"
502
  msgstr ""
503
 
504
+ #: includes/class-testimonials-widget-settings.php:599
505
  msgid "Hide Shortcode?"
506
  msgstr ""
507
 
508
+ #: includes/class-testimonials-widget-settings.php:653
509
  #: includes/libraries/aihrus-framework/includes/class-aihrus-settings.php:64
510
  msgid "Reset"
511
  msgstr ""
512
 
513
+ #: includes/class-testimonials-widget-settings.php:659
514
  msgid "Don't Use Default Taxonomies?"
515
  msgstr ""
516
 
517
+ #: includes/class-testimonials-widget-settings.php:662
518
  msgid "If checked, use Testimonials' own category and tag taxonomies instead"
519
  msgstr ""
520
 
521
+ #: includes/class-testimonials-widget-settings.php:671
522
  msgid "Version Based Options"
523
  msgstr ""
524
 
525
+ #: includes/class-testimonials-widget-settings.php:677
526
  msgid "Disable Animation?"
527
  msgstr ""
528
 
529
+ #: includes/class-testimonials-widget-settings.php:678
530
  msgid "Prior to 2.15.0, Disable animation between testimonial transitions. Useful when stacking widgets."
531
  msgstr ""
532
 
533
+ #: includes/class-testimonials-widget-settings.php:686
534
  msgid "Fade Out Speed"
535
  msgstr ""
536
 
537
+ #: includes/class-testimonials-widget-settings.php:687
538
+ #: includes/class-testimonials-widget-settings.php:695
539
  msgid "Prior to 2.15.0, Transition duration in milliseconds; higher values indicate slower animations, not faster ones."
540
  msgstr ""
541
 
542
+ #: includes/class-testimonials-widget-settings.php:694
543
  msgid "Fade In Speed"
544
  msgstr ""
545
 
546
+ #: includes/class-testimonials-widget-settings.php:702
547
  msgid "Height"
548
  msgstr ""
549
 
550
+ #: includes/class-testimonials-widget-settings.php:703
551
  msgid "Prior to 2.15.0, Testimonials height, in pixels. Overrides minimum and maximum height"
552
  msgstr ""
553
 
554
+ #: includes/class-testimonials-widget-settings.php:709
555
  msgid "Minimum Height"
556
  msgstr ""
557
 
558
+ #: includes/class-testimonials-widget-settings.php:710
559
  msgid "Prior to 2.15.0, Set for minimum display height, in pixels"
560
  msgstr ""
561
 
562
+ #: includes/class-testimonials-widget-settings.php:716
563
  msgid "Maximum Height"
564
  msgstr ""
565
 
566
+ #: includes/class-testimonials-widget-settings.php:717
567
  msgid "Prior to 2.15.0, Set for maximum display height, in pixels"
568
  msgstr ""
569
 
570
+ #: includes/class-testimonials-widget-settings.php:944
571
  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."
572
  msgstr ""
573
 
574
+ #: includes/class-testimonials-widget-settings.php:946
575
  msgid "Shortcode option names are listed below each entry."
576
  msgstr ""
577
 
578
+ #: includes/class-testimonials-widget-settings.php:949
579
  msgid "View the <a href=\"%s\">Testimonials documentation</a>."
580
  msgstr ""
581
 
582
+ #: includes/class-testimonials-widget-settings.php:959
583
  msgid "Show or hide optional fields."
584
  msgstr ""
585
 
586
+ #: includes/class-testimonials-widget-settings.php:967
587
  msgid "Options used to select testimonials."
588
  msgstr ""
589
 
590
+ #: includes/class-testimonials-widget-settings.php:975
591
  msgid "Options used to determine displayed testimonials ordering."
592
  msgstr ""
593
 
594
+ #: includes/class-testimonials-widget-settings.php:983
595
  msgid "Options related to showing testimonials in widgets."
596
  msgstr ""
597
 
598
+ #: includes/class-testimonials-widget-settings.php:991
599
  msgid "Archive and singular page URL related testimonials options."
600
  msgstr ""
601
 
602
+ #: includes/class-testimonials-widget-settings.php:999
603
  msgid "Allowed columns to display on edit page."
604
  msgstr ""
605
 
606
+ #: includes/class-testimonials-widget-settings.php:1006
607
  msgid "Compatibility & Reset"
608
  msgstr ""
609
 
610
+ #: includes/class-testimonials-widget-settings.php:1007
611
  msgid "Backwards compatibility, import/export options, and reset options."
612
  msgstr ""
613
 
624
  msgstr ""
625
 
626
  #: includes/class-testimonials-widget.php:144
627
+ #: includes/class-testimonials-widget.php:2153
628
  msgid "Testimonials Shortcode Examples"
629
  msgstr ""
630
 
676
  msgstr ""
677
 
678
  #: includes/class-testimonials-widget.php:642
679
+ #: includes/class-testimonials-widget.php:1086
680
  msgid "No testimonials found"
681
  msgstr ""
682
 
689
  msgstr ""
690
 
691
  #: includes/class-testimonials-widget.php:646
692
+ #: includes/class-testimonials-widget.php:1881
693
+ #: includes/class-testimonials-widget.php:2285
694
  msgid "Testimonial"
695
  msgstr ""
696
 
698
  msgid "View Testimonial"
699
  msgstr ""
700
 
701
+ #: includes/class-testimonials-widget.php:1261
702
  msgid "…"
703
  msgstr ""
704
 
705
+ #: includes/class-testimonials-widget.php:1479
706
  msgid "&laquo;"
707
  msgstr ""
708
 
709
+ #: includes/class-testimonials-widget.php:1487
710
  msgid "&raquo;"
711
  msgstr ""
712
 
713
+ #: includes/class-testimonials-widget.php:1805
714
  msgid "Testimonial Data"
715
  msgstr ""
716
 
717
+ #: includes/class-testimonials-widget.php:1830
718
  msgid "Enter title here"
719
  msgstr ""
720
 
721
+ #: includes/class-testimonials-widget.php:1831
722
  msgid "Enter testimonial source here"
723
  msgstr ""
724
 
725
+ #: includes/class-testimonials-widget.php:1856
726
  msgid "Testimonial updated. <a href=\"%s\">View testimonial</a>"
727
  msgstr ""
728
 
729
+ #: includes/class-testimonials-widget.php:1857
730
  msgid "Custom field updated."
731
  msgstr ""
732
 
733
+ #: includes/class-testimonials-widget.php:1858
734
  msgid "Custom field deleted."
735
  msgstr ""
736
 
737
+ #: includes/class-testimonials-widget.php:1859
738
  msgid "Testimonial updated."
739
  msgstr ""
740
 
741
  #. translators: %s: date and time of the revision
742
 
743
+ #: includes/class-testimonials-widget.php:1861
744
  msgid "Testimonial restored to revision from %s"
745
  msgstr ""
746
 
747
+ #: includes/class-testimonials-widget.php:1862
748
  msgid "Testimonial published. <a href=\"%s\">View testimonial</a>"
749
  msgstr ""
750
 
751
+ #: includes/class-testimonials-widget.php:1863
752
  msgid "Testimonial saved."
753
  msgstr ""
754
 
755
+ #: includes/class-testimonials-widget.php:1864
756
  msgid "Testimonial submitted. <a target=\"_blank\" href=\"%s\">Preview testimonial</a>"
757
  msgstr ""
758
 
759
+ #: includes/class-testimonials-widget.php:1865
760
  msgid "Testimonial scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Preview testimonial</a>"
761
  msgstr ""
762
 
763
+ #: includes/class-testimonials-widget.php:1866
764
  msgid "Testimonial draft updated. <a target=\"_blank\" href=\"%s\">Preview testimonial</a>"
765
  msgstr ""
766
 
767
+ #: includes/class-testimonials-widget.php:2144
768
  msgid "If your Testimonials display has gone to funky town, please <a href=\"%s\">read the FAQ</a> about possible fixes."
769
  msgstr ""
770
 
771
+ #: includes/class-testimonials-widget.php:2199
772
  msgid "Failed version check"
773
  msgstr ""
774
 
775
+ #: includes/class-testimonials-widget.php:2230
776
  msgid "Shortcode"
777
  msgstr ""
778
 
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: 4.0.0
8
- Stable tag: 2.19.8
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
@@ -330,8 +330,9 @@ Further, global settings are the baseline for shortcodes. If you want to alter t
330
 
331
  = Requirements =
332
 
333
- * [jQuery 1.10+](https://aihrus.zendesk.com/entries/23693363)
334
  * PHP 5.3+ [Read notice](https://aihrus.zendesk.com/entries/30678006) – Since 2.16.0
 
 
335
 
336
  = Install Methods =
337
 
@@ -377,7 +378,9 @@ Further, global settings are the baseline for shortcodes. If you want to alter t
377
  = Most Common Issues =
378
 
379
  * Got `Parse error: syntax error, unexpected T_STATIC…`? See [Most Aihrus Plugins Require PHP 5.3+](https://aihrus.zendesk.com/entries/30678006)
 
380
  * [404 - Page not found](https://aihrus.zendesk.com/entries/23679301)
 
381
  * [Change styling or debug CSS](https://aihrus.zendesk.com/entries/24910733)
382
  * [Customize bxSlider](http://bxslider.com/examples)
383
  * [Debug theme and plugin conflicts](https://aihrus.zendesk.com/entries/25119302)
@@ -446,6 +449,10 @@ See [Changelog](https://github.com/michael-cannon/testimonials-widget/blob/maste
446
 
447
  == Upgrade Notice ==
448
 
 
 
 
 
449
  = 2.19.8 =
450
 
451
  * Cite fields for company and location are swapped
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: 4.0.0
8
+ Stable tag: 2.19.9
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
330
 
331
  = Requirements =
332
 
 
333
  * PHP 5.3+ [Read notice](https://aihrus.zendesk.com/entries/30678006) – Since 2.16.0
334
+ * WordPress 3.6+
335
+ * [jQuery 1.10+](https://aihrus.zendesk.com/entries/23693363)
336
 
337
  = Install Methods =
338
 
378
  = Most Common Issues =
379
 
380
  * Got `Parse error: syntax error, unexpected T_STATIC…`? See [Most Aihrus Plugins Require PHP 5.3+](https://aihrus.zendesk.com/entries/30678006)
381
+ * Shortcode not working? Make sure your theme isn't using same shortcode.
382
  * [404 - Page not found](https://aihrus.zendesk.com/entries/23679301)
383
+ * [Add testimonials using Gravity Forms](http://webtrainingwheels.com/how-to-collect-user-submitted-testimonials-wordpress/)
384
  * [Change styling or debug CSS](https://aihrus.zendesk.com/entries/24910733)
385
  * [Customize bxSlider](http://bxslider.com/examples)
386
  * [Debug theme and plugin conflicts](https://aihrus.zendesk.com/entries/25119302)
449
 
450
  == Upgrade Notice ==
451
 
452
+ = 2.19.9 =
453
+
454
+ * Added `margin-bottom: 2em;` to `.testimonials-widget-testimonial.list`
455
+
456
  = 2.19.8 =
457
 
458
  * Cite fields for company and location are swapped
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.19.8
7
  * Author: Michael Cannon
8
  * Author URI: http://aihr.us/resume/
9
  * License: GPLv2 or later
@@ -52,7 +52,7 @@ if ( ! defined( 'TW_PREMIUM_LINK' ) )
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.19.8' );
56
 
57
  require_once TW_DIR_INC . 'requirements.php';
58
 
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.19.9
7
  * Author: Michael Cannon
8
  * Author URI: http://aihr.us/resume/
9
  * License: GPLv2 or later
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.19.9' );
56
 
57
  require_once TW_DIR_INC . 'requirements.php';
58