Version Description
= 3.0.0 =
This is a major overhaul without backwards compliance of over 80 changes. Please read the Testimonials Widget 3.0 and Testimonials Widget Premium 2.0 Upgrade Notice for more help.
If you use custom CSS, actions, or filters to modify Testimonials Widget and Testimonials Widget Premium actions or output, this upgrade will not be compatible with those modifications until corrections are made.
= Older Versions =
Read UPGRADING.
Download this release
Release Info
Developer | saurabhd |
Plugin | Testimonials Widget |
Version | 3.4.0 |
Comparing to | |
See all releases |
Code changes from version 3.3.6 to 3.4.0
- API.md +0 -24
- CHANGELOG.md +3 -0
- assets/js/tw-admin-scripts.js +3 -12
- composer.json +19 -0
- includes/class-testimonials-widget-settings.php +0 -9
- includes/class-testimonials-widget.php +1 -286
- languages/testimonials-widget.pot +172 -180
- readme.txt +2 -2
- testimonials-widget.php +2 -2
API.md
CHANGED
@@ -88,30 +88,6 @@ The [Testimonials Widget plugin](http://wordpress.org/plugins/testimonials-widge
|
|
88 |
|
89 |
Configure WP-PageNavi specifically for Testimonial Widgets. [example](https://axelerant.atlassian.net/wiki/display/WPFAQ/Follow+How+do+I+get+page+numbers+for+pagination)
|
90 |
|
91 |
-
* `tw_review_name_length`
|
92 |
-
|
93 |
-
Maximium length of review schema's name. Default is 156 characters.
|
94 |
-
|
95 |
-
* `tw_schema`
|
96 |
-
|
97 |
-
Customize schema contents.
|
98 |
-
|
99 |
-
* `tw_schema_review`
|
100 |
-
|
101 |
-
Customize schema review meta contents.
|
102 |
-
|
103 |
-
* `tw_schema_agg_rating`
|
104 |
-
|
105 |
-
Customize schema aggregate rating for item.
|
106 |
-
|
107 |
-
* `tw_schema_author`
|
108 |
-
|
109 |
-
Customize schema author contents.
|
110 |
-
|
111 |
-
* `tw_schema_item`
|
112 |
-
|
113 |
-
Customize schema reviewed item contents.
|
114 |
-
|
115 |
* `tw_get_template_part`
|
116 |
|
117 |
Allow template choices to be filtered. [Usage](https://github.com/GaryJones/Gamajo-Template-Loader/blob/develop/class-gamajo-template-loader.php#L120)
|
88 |
|
89 |
Configure WP-PageNavi specifically for Testimonial Widgets. [example](https://axelerant.atlassian.net/wiki/display/WPFAQ/Follow+How+do+I+get+page+numbers+for+pagination)
|
90 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
91 |
* `tw_get_template_part`
|
92 |
|
93 |
Allow template choices to be filtered. [Usage](https://github.com/GaryJones/Gamajo-Template-Loader/blob/develop/class-gamajo-template-loader.php#L120)
|
CHANGELOG.md
CHANGED
@@ -2,6 +2,9 @@
|
|
2 |
|
3 |
## master
|
4 |
|
|
|
|
|
|
|
5 |
## 3.3.6
|
6 |
* Change support email address to `support@axelerant.com`
|
7 |
* Require Aihrus Framework 1.2.9
|
2 |
|
3 |
## master
|
4 |
|
5 |
+
## 3.4.0
|
6 |
+
* Remove review schema code
|
7 |
+
|
8 |
## 3.3.6
|
9 |
* Change support email address to `support@axelerant.com`
|
10 |
* Require Aihrus Framework 1.2.9
|
assets/js/tw-admin-scripts.js
CHANGED
@@ -1,14 +1,5 @@
|
|
1 |
(function ($) {
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
url: ajaxurl,
|
6 |
-
data: {
|
7 |
-
action: 'tw_schema_notice',
|
8 |
-
nonce: tw_schema_notice.nonce
|
9 |
-
}
|
10 |
-
});
|
11 |
-
e.stopPropagation();
|
12 |
-
return false;
|
13 |
-
});
|
14 |
})(jQuery);
|
1 |
(function ($) {
|
2 |
+
|
3 |
+
//Add custom js code for TW Plugin in backend.
|
4 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5 |
})(jQuery);
|
composer.json
ADDED
@@ -0,0 +1,19 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"name": "axelerant/testimonials-widget",
|
3 |
+
"description": "Testimonials Widget plugin",
|
4 |
+
"keywords": ["wordpress", "plugin", "axelerant"],
|
5 |
+
"homepage": "https://store.axelerant.com",
|
6 |
+
"license": "GPLv2 or later",
|
7 |
+
"authors": [
|
8 |
+
{
|
9 |
+
"name": "Axelerant",
|
10 |
+
"email": "support@axelerant.com",
|
11 |
+
"homepage": "https://store.axelerant.com/"
|
12 |
+
}
|
13 |
+
],
|
14 |
+
"type": "wordpress-plugin",
|
15 |
+
"require": {
|
16 |
+
"php": ">=5.6",
|
17 |
+
"composer/installers": "v1.0.6"
|
18 |
+
}
|
19 |
+
}
|
includes/class-testimonials-widget-settings.php
CHANGED
@@ -273,15 +273,6 @@ class Axl_Testimonials_Widget_Settings extends Aihrus_Settings {
|
|
273 |
'widget' => 0,
|
274 |
);
|
275 |
|
276 |
-
$desc = __( '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.', 'testimonials-widget' );
|
277 |
-
|
278 |
-
self::$settings['enable_schema'] = array(
|
279 |
-
'title' => esc_html__( 'Enable Review Schema?', 'testimonials-widget' ),
|
280 |
-
'desc' => sprintf( $desc, 'http://schema.org/Review' ),
|
281 |
-
'type' => 'checkbox',
|
282 |
-
'validate' => 'is_true',
|
283 |
-
);
|
284 |
-
|
285 |
self::$settings['do_shortcode'] = array(
|
286 |
'title' => esc_html__( 'Enable [shortcodes]?', 'testimonials-widget' ),
|
287 |
'desc' => esc_html__( 'If unchecked, shortcodes are stripped.', 'testimonials-widget' ),
|
273 |
'widget' => 0,
|
274 |
);
|
275 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
276 |
self::$settings['do_shortcode'] = array(
|
277 |
'title' => esc_html__( 'Enable [shortcodes]?', 'testimonials-widget' ),
|
278 |
'desc' => esc_html__( 'If unchecked, shortcodes are stripped.', 'testimonials-widget' ),
|
includes/class-testimonials-widget.php
CHANGED
@@ -40,7 +40,6 @@ class Axl_Testimonials_Widget extends Aihrus_Common {
|
|
40 |
const VERSION = TW_VERSION;
|
41 |
|
42 |
const PT = 'testimonials-widget';
|
43 |
-
const NOTICE_KEY = 'tw_schema_notice';
|
44 |
|
45 |
public static $class = __CLASS__;
|
46 |
public static $cpt_category;
|
@@ -65,47 +64,6 @@ class Axl_Testimonials_Widget extends Aihrus_Common {
|
|
65 |
public static $widget_number = 100000;
|
66 |
public static $wp_query;
|
67 |
|
68 |
-
public static $aggregate_count = 'ratingCount';
|
69 |
-
public static $aggregate_data = array();
|
70 |
-
public static $aggregate_no_item = '__NO_ITEM__';
|
71 |
-
public static $aggregate_rating = 'aggregateRating';
|
72 |
-
public static $aggregate_review = 'reviewCount';
|
73 |
-
public static $aggregate_schema = 'http://schema.org/AggregateRating';
|
74 |
-
|
75 |
-
public static $rating_max = 5;
|
76 |
-
public static $rating_value = 'ratingValue';
|
77 |
-
|
78 |
-
public static $cw_author = 'author';
|
79 |
-
public static $cw_date = 'datePublished';
|
80 |
-
public static $cw_date_mod = 'dateModified';
|
81 |
-
public static $cw_review = 'review';
|
82 |
-
public static $cw_source_org = 'sourceOrganization';
|
83 |
-
|
84 |
-
public static $org_location = 'location';
|
85 |
-
public static $org_schema = 'http://schema.org/Organization';
|
86 |
-
|
87 |
-
public static $person_email = 'email';
|
88 |
-
public static $person_home = 'homeLocation';
|
89 |
-
public static $person_job_title = 'jobTitle';
|
90 |
-
public static $person_schema = 'http://schema.org/Person';
|
91 |
-
public static $person_member = 'memberOf';
|
92 |
-
|
93 |
-
public static $place_schema = 'http://schema.org/Place';
|
94 |
-
|
95 |
-
public static $review_body = 'reviewBody';
|
96 |
-
public static $review_item = 'itemReviewed';
|
97 |
-
public static $review_schema = 'http://schema.org/Review';
|
98 |
-
|
99 |
-
public static $schema_div_open = '<div itemscope itemtype="%1$s">';
|
100 |
-
public static $schema_div_prop = '<div itemprop="%1$s" itemscope itemtype="%2$s">%3$s</div>';
|
101 |
-
public static $schema_item_prop = 'itemprop="%1$s"';
|
102 |
-
public static $schema_meta = '<meta itemprop="%1$s" content="%2$s" />';
|
103 |
-
|
104 |
-
public static $thing_image = 'image';
|
105 |
-
public static $thing_name = 'name';
|
106 |
-
public static $thing_schema = 'http://schema.org/Thing';
|
107 |
-
public static $thing_url = 'url';
|
108 |
-
|
109 |
|
110 |
public function __construct() {
|
111 |
parent::__construct();
|
@@ -118,9 +76,7 @@ class Axl_Testimonials_Widget extends Aihrus_Common {
|
|
118 |
|
119 |
add_action( 'admin_init', array( __CLASS__, 'admin_init' ) );
|
120 |
add_action( 'admin_menu', array( __CLASS__, 'admin_menu' ) );
|
121 |
-
add_action( 'admin_notices', array( __CLASS__, 'notice_schema' ) );
|
122 |
add_action( 'admin_enqueue_scripts', array( __CLASS__, 'admin_scripts' ) );
|
123 |
-
add_action( 'wp_ajax_tw_schema_notice', array( __CLASS__, 'dismiss_schema_notice' ) );
|
124 |
add_action( 'dashboard_glance_items', array( __CLASS__, 'dashboard_glance_items' ) );
|
125 |
add_action( 'init', array( __CLASS__, 'init' ) );
|
126 |
add_action( 'widgets_init', array( __CLASS__, 'widgets_init' ) );
|
@@ -289,7 +245,6 @@ class Axl_Testimonials_Widget extends Aihrus_Common {
|
|
289 |
return;
|
290 |
}
|
291 |
|
292 |
-
self::reset_schema_notice();
|
293 |
flush_rewrite_rules();
|
294 |
}
|
295 |
|
@@ -308,7 +263,6 @@ class Axl_Testimonials_Widget extends Aihrus_Common {
|
|
308 |
delete_option( Axl_Testimonials_Widget_Settings::ID );
|
309 |
$wpdb->query( 'OPTIMIZE TABLE `' . $wpdb->options . '`' );
|
310 |
|
311 |
-
self::reset_schema_notice();
|
312 |
self::delete_testimonials();
|
313 |
}
|
314 |
}
|
@@ -390,45 +344,6 @@ class Axl_Testimonials_Widget extends Aihrus_Common {
|
|
390 |
}
|
391 |
|
392 |
|
393 |
-
public static function notice_schema() {
|
394 |
-
$notice_set = get_option( self::NOTICE_KEY );
|
395 |
-
|
396 |
-
if ( empty( $notice_set ) ) {
|
397 |
-
$settings_link = get_admin_url() . 'edit.php?post_type=' . self::PT . '&page=' . Axl_Testimonials_Widget_Settings::ID;
|
398 |
-
|
399 |
-
$text = sprintf( __( TW_NAME . ' uses <a href="http://schema.org/Review" target="_blank">Review schema</a> markup for the testimonials. A recent move by Google <a href="https://www.seroundtable.com/google-takes-action-on-flight-rich-snippet-markup-22029.html" target="_blank">may penalize your website for using improper schema snippets</a>. We recommend you <a href="%s">disable the Review schema</a> in settings.', 'testimonials-widget' ), esc_url( $settings_link ) );
|
400 |
-
|
401 |
-
$notice_content = '';
|
402 |
-
$notice_content .= '<div class="notice is-dismissible error twp-schema-notice"><p>';
|
403 |
-
$notice_content .= $text;
|
404 |
-
$notice_content .= '.</p></div>';
|
405 |
-
|
406 |
-
echo $notice_content;
|
407 |
-
}
|
408 |
-
}
|
409 |
-
|
410 |
-
|
411 |
-
/**
|
412 |
-
* @SuppressWarnings(PHPMD.Superglobals)
|
413 |
-
*/
|
414 |
-
public static function dismiss_schema_notice() {
|
415 |
-
$nonce = $_POST['nonce'];
|
416 |
-
|
417 |
-
if ( ! wp_verify_nonce( $nonce, 'tw_schema_notice' ) ) {
|
418 |
-
wp_die();
|
419 |
-
}
|
420 |
-
|
421 |
-
update_option( self::NOTICE_KEY, self::VERSION );
|
422 |
-
|
423 |
-
wp_die();
|
424 |
-
}
|
425 |
-
|
426 |
-
|
427 |
-
public static function reset_schema_notice() {
|
428 |
-
delete_option( self::NOTICE_KEY );
|
429 |
-
}
|
430 |
-
|
431 |
-
|
432 |
public static function update() {
|
433 |
$prior_version = tw_get_option( 'admin_notices' );
|
434 |
if ( $prior_version ) {
|
@@ -443,7 +358,6 @@ class Axl_Testimonials_Widget extends Aihrus_Common {
|
|
443 |
if ( $prior_version < self::VERSION ) {
|
444 |
tw_requirements_check( true );
|
445 |
tw_init_options();
|
446 |
-
self::reset_schema_notice();
|
447 |
self::init_post_type();
|
448 |
flush_rewrite_rules();
|
449 |
do_action( 'tw_update' );
|
@@ -799,13 +713,6 @@ class Axl_Testimonials_Widget extends Aihrus_Common {
|
|
799 |
wp_register_script( 'tw_admin_scripts', self::$plugin_assets . 'js/tw-admin-scripts.js', array( 'jquery' ), '1.0', true );
|
800 |
wp_enqueue_script( 'tw_admin_scripts' );
|
801 |
|
802 |
-
wp_localize_script(
|
803 |
-
'tw_admin_scripts',
|
804 |
-
'tw_schema_notice',
|
805 |
-
array(
|
806 |
-
'nonce' => wp_create_nonce( 'tw_schema_notice' ),
|
807 |
-
)
|
808 |
-
);
|
809 |
}
|
810 |
|
811 |
|
@@ -1018,14 +925,8 @@ EOF;
|
|
1018 |
$bottom_text = links_add_target( $bottom_text, $do_target );
|
1019 |
}
|
1020 |
|
1021 |
-
$schema = '';
|
1022 |
-
if ( $atts['enable_schema'] ) {
|
1023 |
-
$schema = self::get_schema( $testimonial, $atts );
|
1024 |
-
$schema .= "\n";
|
1025 |
-
}
|
1026 |
-
|
1027 |
$div_close = self::get_template_part( 'testimonial', 'close' );
|
1028 |
-
$div_close = $
|
1029 |
|
1030 |
$html = $div_open
|
1031 |
. $image
|
@@ -1541,192 +1442,6 @@ EOF;
|
|
1541 |
}
|
1542 |
|
1543 |
|
1544 |
-
/**
|
1545 |
-
*
|
1546 |
-
*
|
1547 |
-
* @SuppressWarnings(PHPMD.UnusedLocalVariable)
|
1548 |
-
*/
|
1549 |
-
public static function get_schema( $testimonial, $atts ) {
|
1550 |
-
if ( ! isset( $testimonial['post_id'] ) ) {
|
1551 |
-
return;
|
1552 |
-
}
|
1553 |
-
|
1554 |
-
foreach ( $testimonial as $key => $value ) {
|
1555 |
-
if ( 'testimonial_image' != $key ) {
|
1556 |
-
$testimonial[ $key ] = self::clean_string( $value );
|
1557 |
-
}
|
1558 |
-
}
|
1559 |
-
|
1560 |
-
extract( $testimonial );
|
1561 |
-
|
1562 |
-
$do_company = ! $atts['hide_company'] && ! empty( $testimonial_company );
|
1563 |
-
$do_content = ! empty( $testimonial['testimonial_content'] );
|
1564 |
-
$do_email = ! $atts['hide_email'] && ! empty( $testimonial_email ) && is_email( $testimonial_email );
|
1565 |
-
$do_image = ! $atts['hide_image'] && ! empty( $testimonial_image );
|
1566 |
-
$do_location = ! $atts['hide_location'] && ! empty( $testimonial_location );
|
1567 |
-
$do_source = ! $atts['hide_source'] && ! empty( $testimonial_source );
|
1568 |
-
$do_title = ! $atts['hide_title'] && ! empty( $testimonial_title );
|
1569 |
-
$do_url = ! $atts['hide_url'] && ! empty( $testimonial_url );
|
1570 |
-
|
1571 |
-
$item_reviewed = self::clean_string( $atts['item_reviewed'] );
|
1572 |
-
$item_reviewed_url = self::clean_string( $atts['item_reviewed_url'] );
|
1573 |
-
|
1574 |
-
$schema = sprintf( self::$schema_div_open, self::$review_schema );
|
1575 |
-
$schema .= "\n";
|
1576 |
-
|
1577 |
-
$author_meta = array();
|
1578 |
-
$item_meta = array();
|
1579 |
-
$location_meta = array();
|
1580 |
-
$org_meta = array();
|
1581 |
-
$review_meta = array();
|
1582 |
-
|
1583 |
-
if ( ! empty( $testimonial_author ) ) {
|
1584 |
-
$author_meta[ self::$thing_name ] = $testimonial_author;
|
1585 |
-
}
|
1586 |
-
|
1587 |
-
if ( $do_source ) {
|
1588 |
-
if ( empty( $testimonial_author ) ) {
|
1589 |
-
$author_meta[ self::$thing_name ] = $testimonial_source;
|
1590 |
-
} else {
|
1591 |
-
$review_meta[ self::$thing_name ] = $testimonial_source;
|
1592 |
-
}
|
1593 |
-
}
|
1594 |
-
|
1595 |
-
if ( $do_title ) {
|
1596 |
-
$author_meta[ self::$person_job_title ] = $testimonial_title;
|
1597 |
-
}
|
1598 |
-
|
1599 |
-
if ( $do_email ) {
|
1600 |
-
$author_meta[ self::$person_email ] = $testimonial_email;
|
1601 |
-
}
|
1602 |
-
|
1603 |
-
if ( ! $do_company ) {
|
1604 |
-
if ( $do_url ) {
|
1605 |
-
$author_meta[ self::$thing_url ] = $testimonial_url;
|
1606 |
-
}
|
1607 |
-
} else {
|
1608 |
-
if ( $do_url ) {
|
1609 |
-
$org_meta[ self::$thing_url ] = $testimonial_url;
|
1610 |
-
}
|
1611 |
-
|
1612 |
-
$org_meta[ self::$thing_name ] = $testimonial_company;
|
1613 |
-
}
|
1614 |
-
|
1615 |
-
if ( $do_location ) {
|
1616 |
-
$location_meta[ self::$thing_name ] = $testimonial_location;
|
1617 |
-
|
1618 |
-
if ( ! $do_company ) {
|
1619 |
-
$author_meta[ self::$person_home ] = array( self::$place_schema, $location_meta );
|
1620 |
-
} else {
|
1621 |
-
$org_meta[ self::$org_location ] = array( self::$place_schema, $location_meta );
|
1622 |
-
}
|
1623 |
-
}
|
1624 |
-
|
1625 |
-
if ( ! empty( $author_meta ) && ! empty( $org_meta ) ) {
|
1626 |
-
$author_meta[ self::$person_member ] = array( self::$org_schema, $org_meta );
|
1627 |
-
} elseif ( ! empty( $org_meta ) ) {
|
1628 |
-
$author_meta[ self::$cw_source_org ] = array( self::$org_schema, $org_meta );
|
1629 |
-
}
|
1630 |
-
|
1631 |
-
$author_meta = apply_filters( 'tw_schema_author', $author_meta, $testimonial, $atts );
|
1632 |
-
$author = self::create_schema_div_prop( self::$cw_author, self::$person_schema, $author_meta );
|
1633 |
-
$schema .= $author;
|
1634 |
-
$schema .= "\n";
|
1635 |
-
|
1636 |
-
$post = get_post( $testimonial['post_id'] );
|
1637 |
-
$the_date = mysql2date( 'Y-m-d', $post->post_date );
|
1638 |
-
$the_date_mod = mysql2date( 'Y-m-d', $post->post_modified );
|
1639 |
-
|
1640 |
-
$review_name_length = apply_filters( 'tw_review_name_length', 156 );
|
1641 |
-
|
1642 |
-
if ( $do_content ) {
|
1643 |
-
$review_meta[ self::$review_body ] = $testimonial['testimonial_content'];
|
1644 |
-
}
|
1645 |
-
|
1646 |
-
$review_meta[ self::$cw_date ] = $the_date;
|
1647 |
-
$review_meta[ self::$cw_date_mod ] = $the_date_mod;
|
1648 |
-
$review_meta[ self::$thing_url ] = get_permalink( $post->ID );
|
1649 |
-
if ( empty( $review_meta[ self::$thing_name ] ) ) {
|
1650 |
-
$review_meta[ self::$thing_name ] = self::testimonials_truncate( $testimonial_content, $review_name_length );
|
1651 |
-
}
|
1652 |
-
|
1653 |
-
if ( $do_image ) {
|
1654 |
-
$src = self::get_image_src( $testimonial_image );
|
1655 |
-
|
1656 |
-
$review_meta[ self::$thing_image ] = $src;
|
1657 |
-
}
|
1658 |
-
|
1659 |
-
$review_meta = apply_filters( 'tw_schema_review', $review_meta, $testimonial, $atts );
|
1660 |
-
$review = self::create_schema_meta( $review_meta );
|
1661 |
-
$schema .= $review;
|
1662 |
-
$schema .= "\n";
|
1663 |
-
|
1664 |
-
$item_meta[ self::$thing_name ] = $item_reviewed;
|
1665 |
-
$item_meta[ self::$thing_url ] = $item_reviewed_url;
|
1666 |
-
|
1667 |
-
$item_meta = apply_filters( 'tw_schema_item', $item_meta, $testimonial, $atts );
|
1668 |
-
$item = self::create_schema_div_prop( self::$review_item, self::$thing_schema, $item_meta );
|
1669 |
-
$schema .= $item;
|
1670 |
-
$schema .= "\n";
|
1671 |
-
|
1672 |
-
$schema .= '</div>';
|
1673 |
-
$schema .= "\n";
|
1674 |
-
|
1675 |
-
$schema = apply_filters( 'tw_schema', $schema, $testimonial, $atts );
|
1676 |
-
|
1677 |
-
return $schema;
|
1678 |
-
}
|
1679 |
-
|
1680 |
-
|
1681 |
-
public static function create_schema_meta( $meta_data ) {
|
1682 |
-
$meta = '';
|
1683 |
-
|
1684 |
-
if ( empty( $meta_data ) ) {
|
1685 |
-
return $meta;
|
1686 |
-
}
|
1687 |
-
|
1688 |
-
foreach ( $meta_data as $key => $value ) {
|
1689 |
-
if ( is_array( $value ) ) {
|
1690 |
-
$meta .= self::create_schema_div_prop( $key, $value[0], $value[1] );
|
1691 |
-
} else {
|
1692 |
-
$meta .= sprintf( self::$schema_meta, $key, $value );
|
1693 |
-
}
|
1694 |
-
|
1695 |
-
$meta .= "\n";
|
1696 |
-
}
|
1697 |
-
|
1698 |
-
return $meta;
|
1699 |
-
}
|
1700 |
-
|
1701 |
-
|
1702 |
-
public static function create_schema_div_prop( $property_name, $schema_name, $meta_data ) {
|
1703 |
-
$meta = '';
|
1704 |
-
$schema = '';
|
1705 |
-
|
1706 |
-
if ( empty( $meta_data ) ) {
|
1707 |
-
return $schema;
|
1708 |
-
}
|
1709 |
-
|
1710 |
-
if ( is_array( $meta_data ) ) {
|
1711 |
-
foreach ( $meta_data as $key => $value ) {
|
1712 |
-
if ( is_array( $value ) ) {
|
1713 |
-
$meta .= self::create_schema_div_prop( $key, $value[0], $value[1] );
|
1714 |
-
} else {
|
1715 |
-
$meta .= sprintf( self::$schema_meta, $key, $value );
|
1716 |
-
}
|
1717 |
-
|
1718 |
-
$meta .= "\n";
|
1719 |
-
}
|
1720 |
-
|
1721 |
-
$schema = sprintf( self::$schema_div_prop, $property_name, $schema_name, $meta );
|
1722 |
-
} else {
|
1723 |
-
$schema = sprintf( self::$schema_div_prop, $property_name, $schema_name, $meta_data );
|
1724 |
-
}
|
1725 |
-
|
1726 |
-
return $schema;
|
1727 |
-
}
|
1728 |
-
|
1729 |
-
|
1730 |
public static function generate_css( $atts, $widget_number = null ) {
|
1731 |
$atts['subtype'] = 'css';
|
1732 |
|
40 |
const VERSION = TW_VERSION;
|
41 |
|
42 |
const PT = 'testimonials-widget';
|
|
|
43 |
|
44 |
public static $class = __CLASS__;
|
45 |
public static $cpt_category;
|
64 |
public static $widget_number = 100000;
|
65 |
public static $wp_query;
|
66 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
67 |
|
68 |
public function __construct() {
|
69 |
parent::__construct();
|
76 |
|
77 |
add_action( 'admin_init', array( __CLASS__, 'admin_init' ) );
|
78 |
add_action( 'admin_menu', array( __CLASS__, 'admin_menu' ) );
|
|
|
79 |
add_action( 'admin_enqueue_scripts', array( __CLASS__, 'admin_scripts' ) );
|
|
|
80 |
add_action( 'dashboard_glance_items', array( __CLASS__, 'dashboard_glance_items' ) );
|
81 |
add_action( 'init', array( __CLASS__, 'init' ) );
|
82 |
add_action( 'widgets_init', array( __CLASS__, 'widgets_init' ) );
|
245 |
return;
|
246 |
}
|
247 |
|
|
|
248 |
flush_rewrite_rules();
|
249 |
}
|
250 |
|
263 |
delete_option( Axl_Testimonials_Widget_Settings::ID );
|
264 |
$wpdb->query( 'OPTIMIZE TABLE `' . $wpdb->options . '`' );
|
265 |
|
|
|
266 |
self::delete_testimonials();
|
267 |
}
|
268 |
}
|
344 |
}
|
345 |
|
346 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
347 |
public static function update() {
|
348 |
$prior_version = tw_get_option( 'admin_notices' );
|
349 |
if ( $prior_version ) {
|
358 |
if ( $prior_version < self::VERSION ) {
|
359 |
tw_requirements_check( true );
|
360 |
tw_init_options();
|
|
|
361 |
self::init_post_type();
|
362 |
flush_rewrite_rules();
|
363 |
do_action( 'tw_update' );
|
713 |
wp_register_script( 'tw_admin_scripts', self::$plugin_assets . 'js/tw-admin-scripts.js', array( 'jquery' ), '1.0', true );
|
714 |
wp_enqueue_script( 'tw_admin_scripts' );
|
715 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
716 |
}
|
717 |
|
718 |
|
925 |
$bottom_text = links_add_target( $bottom_text, $do_target );
|
926 |
}
|
927 |
|
|
|
|
|
|
|
|
|
|
|
|
|
928 |
$div_close = self::get_template_part( 'testimonial', 'close' );
|
929 |
+
$div_close = $div_close;
|
930 |
|
931 |
$html = $div_open
|
932 |
. $image
|
1442 |
}
|
1443 |
|
1444 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1445 |
public static function generate_css( $atts, $widget_number = null ) {
|
1446 |
$atts['subtype'] = 'css';
|
1447 |
|
languages/testimonials-widget.pot
CHANGED
@@ -2,9 +2,9 @@
|
|
2 |
# This file is distributed under the same license as the Testimonials Widget package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: Testimonials Widget 3.
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/testimonials-widget\n"
|
7 |
-
"POT-Creation-Date: 2017-
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -63,42 +63,42 @@ msgid "Testimonials Settings"
|
|
63 |
msgstr ""
|
64 |
|
65 |
#: includes/class-testimonials-widget-settings.php:97
|
66 |
-
#: includes/class-testimonials-widget.php:
|
67 |
msgid "Settings"
|
68 |
msgstr ""
|
69 |
|
70 |
#: includes/class-testimonials-widget-settings.php:113
|
71 |
-
#: includes/class-testimonials-widget-settings.php:
|
72 |
msgid "General"
|
73 |
msgstr ""
|
74 |
|
75 |
#: includes/class-testimonials-widget-settings.php:114
|
76 |
-
#: includes/class-testimonials-widget-settings.php:
|
77 |
msgid "Fields"
|
78 |
msgstr ""
|
79 |
|
80 |
#: includes/class-testimonials-widget-settings.php:115
|
81 |
-
#: includes/class-testimonials-widget-settings.php:
|
82 |
msgid "Selection"
|
83 |
msgstr ""
|
84 |
|
85 |
#: includes/class-testimonials-widget-settings.php:116
|
86 |
-
#: includes/class-testimonials-widget-settings.php:
|
87 |
msgid "Ordering"
|
88 |
msgstr ""
|
89 |
|
90 |
#: includes/class-testimonials-widget-settings.php:117
|
91 |
-
#: includes/class-testimonials-widget-settings.php:
|
92 |
msgid "Columns"
|
93 |
msgstr ""
|
94 |
|
95 |
#: includes/class-testimonials-widget-settings.php:118
|
96 |
-
#: includes/class-testimonials-widget-settings.php:
|
97 |
msgid "Post Type"
|
98 |
msgstr ""
|
99 |
|
100 |
#: includes/class-testimonials-widget-settings.php:119
|
101 |
-
#: includes/class-testimonials-widget-settings.php:
|
102 |
msgid "Slider Widget"
|
103 |
msgstr ""
|
104 |
|
@@ -116,8 +116,8 @@ msgid "Title"
|
|
116 |
msgstr ""
|
117 |
|
118 |
#: includes/class-testimonials-widget-settings.php:140
|
119 |
-
#: includes/class-testimonials-widget.php:
|
120 |
-
#: includes/class-testimonials-widget.php:
|
121 |
msgid "Testimonials"
|
122 |
msgstr ""
|
123 |
|
@@ -267,408 +267,400 @@ msgstr ""
|
|
267 |
msgid "After testimonials"
|
268 |
msgstr ""
|
269 |
|
270 |
-
#: includes/class-testimonials-widget-settings.php:
|
271 |
-
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."
|
272 |
-
msgstr ""
|
273 |
-
|
274 |
-
#: includes/class-testimonials-widget-settings.php:279
|
275 |
-
msgid "Enable Review Schema?"
|
276 |
-
msgstr ""
|
277 |
-
|
278 |
-
#: includes/class-testimonials-widget-settings.php:286
|
279 |
msgid "Enable [shortcodes]?"
|
280 |
msgstr ""
|
281 |
|
282 |
-
#: includes/class-testimonials-widget-settings.php:
|
283 |
msgid "If unchecked, shortcodes are stripped."
|
284 |
msgstr ""
|
285 |
|
286 |
-
#: includes/class-testimonials-widget-settings.php:
|
287 |
msgid "Enable Video?"
|
288 |
msgstr ""
|
289 |
|
290 |
-
#: includes/class-testimonials-widget-settings.php:
|
291 |
msgid "Only enable when displaying video content."
|
292 |
msgstr ""
|
293 |
|
294 |
-
#: includes/class-testimonials-widget-settings.php:
|
295 |
msgid "Exclude bxSlider CSS?"
|
296 |
msgstr ""
|
297 |
|
298 |
-
#: includes/class-testimonials-widget-settings.php:
|
299 |
msgid "For a bare-bones, unthemed slider."
|
300 |
msgstr ""
|
301 |
|
302 |
-
#: includes/class-testimonials-widget-settings.php:
|
303 |
msgid "Exclude default CSS?"
|
304 |
msgstr ""
|
305 |
|
306 |
-
#: includes/class-testimonials-widget-settings.php:
|
307 |
msgid "Prevent default CSS from being loaded."
|
308 |
msgstr ""
|
309 |
|
310 |
-
#: includes/class-testimonials-widget-settings.php:
|
311 |
msgid "Remove `.hentry` CSS?"
|
312 |
msgstr ""
|
313 |
|
314 |
-
#: includes/class-testimonials-widget-settings.php:
|
315 |
msgid "Some themes use class `.hentry` in a manner that breaks Testimonials' CSS."
|
316 |
msgstr ""
|
317 |
|
318 |
-
#: includes/class-testimonials-widget-settings.php:
|
319 |
msgid "URL Target"
|
320 |
msgstr ""
|
321 |
|
322 |
-
#: includes/class-testimonials-widget-settings.php:
|
323 |
msgid "Add target to all URLs; leave blank if none."
|
324 |
msgstr ""
|
325 |
|
326 |
-
#: includes/class-testimonials-widget-settings.php:
|
327 |
msgid "Use `<q>` tag?"
|
328 |
msgstr ""
|
329 |
|
330 |
-
#: includes/class-testimonials-widget-settings.php:
|
331 |
msgid "Not HTML5 compliant."
|
332 |
msgstr ""
|
333 |
|
334 |
-
#: includes/class-testimonials-widget-settings.php:
|
335 |
msgid "Field Options"
|
336 |
msgstr ""
|
337 |
|
338 |
-
#: includes/class-testimonials-widget-settings.php:
|
339 |
msgid "Hide Title Above Content?"
|
340 |
msgstr ""
|
341 |
|
342 |
-
#: includes/class-testimonials-widget-settings.php:
|
343 |
msgid "Don't display testimonial title above testimonial content."
|
344 |
msgstr ""
|
345 |
|
346 |
-
#: includes/class-testimonials-widget-settings.php:
|
347 |
-
#: includes/class-testimonials-widget-settings.php:
|
348 |
msgid "Hide Author?"
|
349 |
msgstr ""
|
350 |
|
351 |
-
#: includes/class-testimonials-widget-settings.php:
|
352 |
msgid "Don't display testimonial title in cite."
|
353 |
msgstr ""
|
354 |
|
355 |
-
#: includes/class-testimonials-widget-settings.php:
|
356 |
-
#: includes/class-testimonials-widget-settings.php:
|
357 |
msgid "Hide Company?"
|
358 |
msgstr ""
|
359 |
|
360 |
-
#: includes/class-testimonials-widget-settings.php:
|
361 |
msgid "Don't display testimonial company in cite."
|
362 |
msgstr ""
|
363 |
|
364 |
-
#: includes/class-testimonials-widget-settings.php:
|
365 |
msgid "Hide Content?"
|
366 |
msgstr ""
|
367 |
|
368 |
-
#: includes/class-testimonials-widget-settings.php:
|
369 |
msgid "Don't display testimonial content in a view."
|
370 |
msgstr ""
|
371 |
|
372 |
-
#: includes/class-testimonials-widget-settings.php:
|
373 |
-
#: includes/class-testimonials-widget-settings.php:
|
374 |
msgid "Hide Email?"
|
375 |
msgstr ""
|
376 |
|
377 |
-
#: includes/class-testimonials-widget-settings.php:
|
378 |
msgid "Don't display or link to testimonial email in cite."
|
379 |
msgstr ""
|
380 |
|
381 |
-
#: includes/class-testimonials-widget-settings.php:
|
382 |
msgid "Hide Gravatar?"
|
383 |
msgstr ""
|
384 |
|
385 |
-
#: includes/class-testimonials-widget-settings.php:
|
386 |
msgid "Don't display Gravatar image with testimonial."
|
387 |
msgstr ""
|
388 |
|
389 |
-
#: includes/class-testimonials-widget-settings.php:
|
390 |
-
#: includes/class-testimonials-widget-settings.php:
|
391 |
msgid "Hide Image?"
|
392 |
msgstr ""
|
393 |
|
394 |
-
#: includes/class-testimonials-widget-settings.php:
|
395 |
msgid "Don't display featured image with testimonial."
|
396 |
msgstr ""
|
397 |
|
398 |
-
#: includes/class-testimonials-widget-settings.php:
|
399 |
msgid "Hide Image in Single View?"
|
400 |
msgstr ""
|
401 |
|
402 |
-
#: includes/class-testimonials-widget-settings.php:
|
403 |
-
#: includes/class-testimonials-widget-settings.php:
|
404 |
msgid "Hide Job Title?"
|
405 |
msgstr ""
|
406 |
|
407 |
-
#: includes/class-testimonials-widget-settings.php:
|
408 |
msgid "Don't display testimonial job title in cite."
|
409 |
msgstr ""
|
410 |
|
411 |
-
#: includes/class-testimonials-widget-settings.php:
|
412 |
-
#: includes/class-testimonials-widget-settings.php:
|
413 |
msgid "Hide Location?"
|
414 |
msgstr ""
|
415 |
|
416 |
-
#: includes/class-testimonials-widget-settings.php:
|
417 |
msgid "Don't display testimonial location in cite."
|
418 |
msgstr ""
|
419 |
|
420 |
-
#: includes/class-testimonials-widget-settings.php:
|
421 |
-
#: includes/class-testimonials-widget-settings.php:
|
422 |
msgid "Hide URL?"
|
423 |
msgstr ""
|
424 |
|
425 |
-
#: includes/class-testimonials-widget-settings.php:
|
426 |
msgid "Don't display or link to testimonial URL in cite."
|
427 |
msgstr ""
|
428 |
|
429 |
-
#: includes/class-testimonials-widget-settings.php:
|
430 |
msgid "Selection Options"
|
431 |
msgstr ""
|
432 |
|
433 |
-
#: includes/class-testimonials-widget-settings.php:
|
434 |
msgid "Category Filter"
|
435 |
msgstr ""
|
436 |
|
437 |
-
#: includes/class-testimonials-widget-settings.php:
|
438 |
msgid "Comma separated category names or IDs."
|
439 |
msgstr ""
|
440 |
|
441 |
-
#: includes/class-testimonials-widget-settings.php:
|
442 |
msgid "Exclude IDs Filter"
|
443 |
msgstr ""
|
444 |
|
445 |
-
#: includes/class-testimonials-widget-settings.php:
|
446 |
-
#: includes/class-testimonials-widget-settings.php:
|
447 |
msgid "Comma separated testimonial IDs."
|
448 |
msgstr ""
|
449 |
|
450 |
-
#: includes/class-testimonials-widget-settings.php:
|
451 |
msgid "Include IDs Filter"
|
452 |
msgstr ""
|
453 |
|
454 |
-
#: includes/class-testimonials-widget-settings.php:
|
455 |
msgid "Limit"
|
456 |
msgstr ""
|
457 |
|
458 |
-
#: includes/class-testimonials-widget-settings.php:
|
459 |
msgid "Number of testimonials to select per instance."
|
460 |
msgstr ""
|
461 |
|
462 |
-
#: includes/class-testimonials-widget-settings.php:
|
463 |
msgid "Require All Tags?"
|
464 |
msgstr ""
|
465 |
|
466 |
-
#: includes/class-testimonials-widget-settings.php:
|
467 |
msgid "Select only testimonials with all of the given tags."
|
468 |
msgstr ""
|
469 |
|
470 |
-
#: includes/class-testimonials-widget-settings.php:
|
471 |
msgid "Tags Filter"
|
472 |
msgstr ""
|
473 |
|
474 |
-
#: includes/class-testimonials-widget-settings.php:
|
475 |
msgid "Comma separated tag slugs or IDs."
|
476 |
msgstr ""
|
477 |
|
478 |
-
#: includes/class-testimonials-widget-settings.php:
|
479 |
msgid "Ordering Options"
|
480 |
msgstr ""
|
481 |
|
482 |
-
#: includes/class-testimonials-widget-settings.php:
|
483 |
msgid "ORDER BY"
|
484 |
msgstr ""
|
485 |
|
486 |
-
#: includes/class-testimonials-widget-settings.php:
|
487 |
msgid "Used when \"Random Order\" is disabled."
|
488 |
msgstr ""
|
489 |
|
490 |
-
#: includes/class-testimonials-widget-settings.php:
|
491 |
msgid "Testimonial ID"
|
492 |
msgstr ""
|
493 |
|
494 |
-
#: includes/class-testimonials-widget-settings.php:
|
495 |
-
#: includes/class-testimonials-widget-settings.php:
|
496 |
-
#: includes/class-testimonials-widget.php:
|
497 |
-
#: includes/class-testimonials-widget.php:
|
498 |
-
#: includes/class-testimonials-widget.php:
|
499 |
msgid "Author"
|
500 |
msgstr ""
|
501 |
|
502 |
-
#: includes/class-testimonials-widget-settings.php:
|
503 |
-
#: includes/class-testimonials-widget.php:
|
504 |
msgid "Date"
|
505 |
msgstr ""
|
506 |
|
507 |
-
#: includes/class-testimonials-widget-settings.php:
|
508 |
msgid "Menu Order"
|
509 |
msgstr ""
|
510 |
|
511 |
-
#: includes/class-testimonials-widget-settings.php:
|
512 |
msgid "No order"
|
513 |
msgstr ""
|
514 |
|
515 |
-
#: includes/class-testimonials-widget-settings.php:
|
516 |
msgid "ORDER BY meta_key"
|
517 |
msgstr ""
|
518 |
|
519 |
-
#: includes/class-testimonials-widget-settings.php:
|
520 |
msgid "Used when \"Random Order\" is disabled and sorting by a testimonials meta key is needed. Overrides ORDER BY."
|
521 |
msgstr ""
|
522 |
|
523 |
-
#: includes/class-testimonials-widget-settings.php:
|
524 |
msgid "None"
|
525 |
msgstr ""
|
526 |
|
527 |
-
#: includes/class-testimonials-widget-settings.php:
|
528 |
-
#: includes/class-testimonials-widget.php:
|
529 |
-
#: includes/class-testimonials-widget.php:
|
530 |
msgid "Job Title"
|
531 |
msgstr ""
|
532 |
|
533 |
-
#: includes/class-testimonials-widget-settings.php:
|
534 |
-
#: includes/class-testimonials-widget.php:
|
535 |
-
#: includes/class-testimonials-widget.php:
|
536 |
msgid "Email"
|
537 |
msgstr ""
|
538 |
|
539 |
-
#: includes/class-testimonials-widget-settings.php:
|
540 |
-
#: includes/class-testimonials-widget.php:
|
541 |
-
#: includes/class-testimonials-widget.php:
|
542 |
msgid "Location"
|
543 |
msgstr ""
|
544 |
|
545 |
-
#: includes/class-testimonials-widget-settings.php:
|
546 |
-
#: includes/class-testimonials-widget.php:
|
547 |
-
#: includes/class-testimonials-widget.php:
|
548 |
msgid "Company"
|
549 |
msgstr ""
|
550 |
|
551 |
-
#: includes/class-testimonials-widget-settings.php:
|
552 |
-
#: includes/class-testimonials-widget.php:
|
553 |
-
#: includes/class-testimonials-widget.php:
|
554 |
msgid "URL"
|
555 |
msgstr ""
|
556 |
|
557 |
-
#: includes/class-testimonials-widget-settings.php:
|
558 |
msgid "ORDER BY Order"
|
559 |
msgstr ""
|
560 |
|
561 |
-
#: includes/class-testimonials-widget-settings.php:
|
562 |
msgid "Descending"
|
563 |
msgstr ""
|
564 |
|
565 |
-
#: includes/class-testimonials-widget-settings.php:
|
566 |
msgid "Ascending"
|
567 |
msgstr ""
|
568 |
|
569 |
-
#: includes/class-testimonials-widget-settings.php:
|
570 |
msgid "Random Order?"
|
571 |
msgstr ""
|
572 |
|
573 |
-
#: includes/class-testimonials-widget-settings.php:
|
574 |
msgid "If checked, ignores ORDER BY, ORDER BY meta_key, and ORDER BY Order. Widgets are random by default automatically."
|
575 |
msgstr ""
|
576 |
|
577 |
-
#: includes/class-testimonials-widget-settings.php:
|
578 |
msgid "Allow Comments?"
|
579 |
msgstr ""
|
580 |
|
581 |
-
#: includes/class-testimonials-widget-settings.php:
|
582 |
msgid "Only affects the Testimonials post edit page. Your theme controls the front-end view."
|
583 |
msgstr ""
|
584 |
|
585 |
-
#: includes/class-testimonials-widget-settings.php:
|
586 |
msgid "URL slug-name for <a href=\"%1s\">testimonials archive</a> page."
|
587 |
msgstr ""
|
588 |
|
589 |
-
#: includes/class-testimonials-widget-settings.php:
|
590 |
msgid "Archive Page URL"
|
591 |
msgstr ""
|
592 |
|
593 |
-
#: includes/class-testimonials-widget-settings.php:
|
594 |
msgid "Disable Default Taxonomies?"
|
595 |
msgstr ""
|
596 |
|
597 |
-
#: includes/class-testimonials-widget-settings.php:
|
598 |
msgid "If checked, use Testimonials' own category and tag taxonomies than WordPress' defaults."
|
599 |
msgstr ""
|
600 |
|
601 |
-
#: includes/class-testimonials-widget-settings.php:
|
602 |
msgid "Include testimonials in archive and category views."
|
603 |
msgstr ""
|
604 |
|
605 |
-
#: includes/class-testimonials-widget-settings.php:
|
606 |
msgid "Enable archives view?"
|
607 |
msgstr ""
|
608 |
|
609 |
-
#: includes/class-testimonials-widget-settings.php:
|
610 |
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."
|
611 |
msgstr ""
|
612 |
|
613 |
-
#: includes/class-testimonials-widget-settings.php:
|
614 |
msgid "Testimonial Page URL"
|
615 |
msgstr ""
|
616 |
|
617 |
-
#: includes/class-testimonials-widget-settings.php:
|
618 |
msgid "Hide ID?"
|
619 |
msgstr ""
|
620 |
|
621 |
-
#: includes/class-testimonials-widget-settings.php:
|
622 |
msgid "Hide Shortcode?"
|
623 |
msgstr ""
|
624 |
|
625 |
-
#: includes/class-testimonials-widget-settings.php:
|
626 |
-
#: includes/class-testimonials-widget-settings.php:
|
627 |
#: includes/libraries/aihrus-framework/includes/class-aihrus-settings.php:65
|
628 |
msgid "Reset"
|
629 |
msgstr ""
|
630 |
|
631 |
-
#: includes/class-testimonials-widget-settings.php:
|
632 |
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."
|
633 |
msgstr ""
|
634 |
|
635 |
-
#: includes/class-testimonials-widget-settings.php:
|
636 |
msgid "Shortcode option names are listed below each entry."
|
637 |
msgstr ""
|
638 |
|
639 |
-
#: includes/class-testimonials-widget-settings.php:
|
640 |
msgid "View the <a href=\"%s\">Testimonials documentation</a>."
|
641 |
msgstr ""
|
642 |
|
643 |
-
#: includes/class-testimonials-widget-settings.php:
|
644 |
msgid "General options."
|
645 |
msgstr ""
|
646 |
|
647 |
-
#: includes/class-testimonials-widget-settings.php:
|
648 |
msgid "Show or hide fields."
|
649 |
msgstr ""
|
650 |
|
651 |
-
#: includes/class-testimonials-widget-settings.php:
|
652 |
msgid "Options used to select testimonials."
|
653 |
msgstr ""
|
654 |
|
655 |
-
#: includes/class-testimonials-widget-settings.php:
|
656 |
msgid "Options used to determine displayed testimonials ordering."
|
657 |
msgstr ""
|
658 |
|
659 |
-
#: includes/class-testimonials-widget-settings.php:
|
660 |
msgid "Allowed columns to display on edit page."
|
661 |
msgstr ""
|
662 |
|
663 |
-
#: includes/class-testimonials-widget-settings.php:
|
664 |
msgid "Archive and singular page URL related testimonials options."
|
665 |
msgstr ""
|
666 |
|
667 |
-
#: includes/class-testimonials-widget-settings.php:
|
668 |
msgid "Options related to showing testimonials in widgets."
|
669 |
msgstr ""
|
670 |
|
671 |
-
#: includes/class-testimonials-widget-settings.php:
|
672 |
msgid "Backwards compatibility, import/export options, and reset options."
|
673 |
msgstr ""
|
674 |
|
@@ -698,15 +690,15 @@ msgstr ""
|
|
698 |
|
699 |
#: includes/class-testimonials-widget-tag-cloud-widget.php:63
|
700 |
#: includes/class-testimonials-widget-tag-cloud-widget.php:70
|
701 |
-
#: includes/class-testimonials-widget.php:
|
702 |
-
#: includes/class-testimonials-widget.php:
|
703 |
msgid "Category"
|
704 |
msgstr ""
|
705 |
|
706 |
#: includes/class-testimonials-widget-tag-cloud-widget.php:64
|
707 |
#: includes/class-testimonials-widget-tag-cloud-widget.php:71
|
708 |
-
#: includes/class-testimonials-widget.php:
|
709 |
-
#: includes/class-testimonials-widget.php:
|
710 |
msgid "Tags"
|
711 |
msgstr ""
|
712 |
|
@@ -714,140 +706,140 @@ msgstr ""
|
|
714 |
msgid "Taxonomy"
|
715 |
msgstr ""
|
716 |
|
717 |
-
#: includes/class-testimonials-widget.php:
|
718 |
msgid "If your Testimonials display has gone to funky town, please <a href=\"%s\">read the FAQ</a> about possible CSS fixes."
|
719 |
msgstr ""
|
720 |
|
721 |
-
#: includes/class-testimonials-widget.php:
|
722 |
msgid "Published by"
|
723 |
msgstr ""
|
724 |
|
725 |
-
#: includes/class-testimonials-widget.php:
|
726 |
msgid "ID"
|
727 |
msgstr ""
|
728 |
|
729 |
-
#: includes/class-testimonials-widget.php:
|
730 |
msgid "Image"
|
731 |
msgstr ""
|
732 |
|
733 |
-
#: includes/class-testimonials-widget.php:
|
734 |
msgid "Shortcodes"
|
735 |
msgstr ""
|
736 |
|
737 |
-
#: includes/class-testimonials-widget.php:
|
738 |
msgid "Add New"
|
739 |
msgstr ""
|
740 |
|
741 |
-
#: includes/class-testimonials-widget.php:
|
742 |
-
#: includes/class-testimonials-widget.php:
|
743 |
msgid "Add New Testimonial"
|
744 |
msgstr ""
|
745 |
|
746 |
-
#: includes/class-testimonials-widget.php:
|
747 |
msgid "Edit Testimonial"
|
748 |
msgstr ""
|
749 |
|
750 |
-
#: includes/class-testimonials-widget.php:
|
751 |
-
#: includes/class-testimonials-widget.php:
|
752 |
msgid "No testimonials found"
|
753 |
msgstr ""
|
754 |
|
755 |
-
#: includes/class-testimonials-widget.php:
|
756 |
msgid "No testimonials found in Trash"
|
757 |
msgstr ""
|
758 |
|
759 |
-
#: includes/class-testimonials-widget.php:
|
760 |
msgid "Search Testimonials"
|
761 |
msgstr ""
|
762 |
|
763 |
-
#: includes/class-testimonials-widget.php:
|
764 |
-
#: includes/class-testimonials-widget.php:
|
765 |
-
#: includes/class-testimonials-widget.php:
|
766 |
msgid "Testimonial"
|
767 |
msgstr ""
|
768 |
|
769 |
-
#: includes/class-testimonials-widget.php:
|
770 |
msgid "View Testimonial"
|
771 |
msgstr ""
|
772 |
|
773 |
-
#: includes/class-testimonials-widget.php:
|
774 |
msgid "Use when the testimonial title is not the authors' name."
|
775 |
msgstr ""
|
776 |
|
777 |
-
#: includes/class-testimonials-widget.php:
|
778 |
msgid "If an email is provided, but not an image, a Gravatar icon will be attempted to be loaded."
|
779 |
msgstr ""
|
780 |
|
781 |
-
#: includes/class-testimonials-widget.php:
|
782 |
msgid "Testimonial Data"
|
783 |
msgstr ""
|
784 |
|
785 |
-
#: includes/class-testimonials-widget.php:
|
786 |
msgid "Testimonial updated. <a href=\"%s\">View testimonial</a>"
|
787 |
msgstr ""
|
788 |
|
789 |
-
#: includes/class-testimonials-widget.php:
|
790 |
msgid "Custom field updated."
|
791 |
msgstr ""
|
792 |
|
793 |
-
#: includes/class-testimonials-widget.php:
|
794 |
msgid "Custom field deleted."
|
795 |
msgstr ""
|
796 |
|
797 |
-
#: includes/class-testimonials-widget.php:
|
798 |
msgid "Testimonial updated."
|
799 |
msgstr ""
|
800 |
|
801 |
#. translators: %s: date and time of the revision
|
802 |
|
803 |
-
#: includes/class-testimonials-widget.php:
|
804 |
msgid "Testimonial restored to revision from %s"
|
805 |
msgstr ""
|
806 |
|
807 |
-
#: includes/class-testimonials-widget.php:
|
808 |
msgid "Testimonial published. <a href=\"%s\">View testimonial</a>"
|
809 |
msgstr ""
|
810 |
|
811 |
-
#: includes/class-testimonials-widget.php:
|
812 |
msgid "Testimonial saved."
|
813 |
msgstr ""
|
814 |
|
815 |
-
#: includes/class-testimonials-widget.php:
|
816 |
msgid "Testimonial submitted. <a target=\"_blank\" href=\"%s\">Preview testimonial</a>"
|
817 |
msgstr ""
|
818 |
|
819 |
-
#: includes/class-testimonials-widget.php:
|
820 |
msgid "Testimonial scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Preview testimonial</a>"
|
821 |
msgstr ""
|
822 |
|
823 |
-
#: includes/class-testimonials-widget.php:
|
824 |
msgid "Testimonial draft updated. <a target=\"_blank\" href=\"%s\">Preview testimonial</a>"
|
825 |
msgstr ""
|
826 |
|
827 |
-
#: includes/class-testimonials-widget.php:
|
828 |
msgid "If your Testimonials display has gone to funky town, please <a href=\"%s\">read the FAQ</a> about possible fixes."
|
829 |
msgstr ""
|
830 |
|
831 |
-
#: includes/class-testimonials-widget.php:
|
832 |
msgid "Failed version check"
|
833 |
msgstr ""
|
834 |
|
835 |
-
#: includes/class-testimonials-widget.php:
|
836 |
msgid "Shortcode"
|
837 |
msgstr ""
|
838 |
|
839 |
-
#: includes/class-testimonials-widget.php:
|
840 |
-
#: includes/class-testimonials-widget.php:
|
841 |
msgid "Used with: "
|
842 |
msgstr ""
|
843 |
|
844 |
-
#: includes/class-testimonials-widget.php:
|
845 |
-
#: includes/class-testimonials-widget.php:
|
846 |
msgid "Options: "
|
847 |
msgstr ""
|
848 |
|
849 |
-
#: includes/class-testimonials-widget.php:
|
850 |
-
#: includes/class-testimonials-widget.php:
|
851 |
msgid "Usage: "
|
852 |
msgstr ""
|
853 |
|
2 |
# This file is distributed under the same license as the Testimonials Widget package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: Testimonials Widget 3.4.0\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/testimonials-widget\n"
|
7 |
+
"POT-Creation-Date: 2017-04-26 06:09:39+00:00\n"
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
63 |
msgstr ""
|
64 |
|
65 |
#: includes/class-testimonials-widget-settings.php:97
|
66 |
+
#: includes/class-testimonials-widget.php:99
|
67 |
msgid "Settings"
|
68 |
msgstr ""
|
69 |
|
70 |
#: includes/class-testimonials-widget-settings.php:113
|
71 |
+
#: includes/class-testimonials-widget-settings.php:944
|
72 |
msgid "General"
|
73 |
msgstr ""
|
74 |
|
75 |
#: includes/class-testimonials-widget-settings.php:114
|
76 |
+
#: includes/class-testimonials-widget-settings.php:952
|
77 |
msgid "Fields"
|
78 |
msgstr ""
|
79 |
|
80 |
#: includes/class-testimonials-widget-settings.php:115
|
81 |
+
#: includes/class-testimonials-widget-settings.php:960
|
82 |
msgid "Selection"
|
83 |
msgstr ""
|
84 |
|
85 |
#: includes/class-testimonials-widget-settings.php:116
|
86 |
+
#: includes/class-testimonials-widget-settings.php:968
|
87 |
msgid "Ordering"
|
88 |
msgstr ""
|
89 |
|
90 |
#: includes/class-testimonials-widget-settings.php:117
|
91 |
+
#: includes/class-testimonials-widget-settings.php:976
|
92 |
msgid "Columns"
|
93 |
msgstr ""
|
94 |
|
95 |
#: includes/class-testimonials-widget-settings.php:118
|
96 |
+
#: includes/class-testimonials-widget-settings.php:984
|
97 |
msgid "Post Type"
|
98 |
msgstr ""
|
99 |
|
100 |
#: includes/class-testimonials-widget-settings.php:119
|
101 |
+
#: includes/class-testimonials-widget-settings.php:992
|
102 |
msgid "Slider Widget"
|
103 |
msgstr ""
|
104 |
|
116 |
msgstr ""
|
117 |
|
118 |
#: includes/class-testimonials-widget-settings.php:140
|
119 |
+
#: includes/class-testimonials-widget.php:540
|
120 |
+
#: includes/class-testimonials-widget.php:588
|
121 |
msgid "Testimonials"
|
122 |
msgstr ""
|
123 |
|
267 |
msgid "After testimonials"
|
268 |
msgstr ""
|
269 |
|
270 |
+
#: includes/class-testimonials-widget-settings.php:277
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
271 |
msgid "Enable [shortcodes]?"
|
272 |
msgstr ""
|
273 |
|
274 |
+
#: includes/class-testimonials-widget-settings.php:278
|
275 |
msgid "If unchecked, shortcodes are stripped."
|
276 |
msgstr ""
|
277 |
|
278 |
+
#: includes/class-testimonials-widget-settings.php:285
|
279 |
msgid "Enable Video?"
|
280 |
msgstr ""
|
281 |
|
282 |
+
#: includes/class-testimonials-widget-settings.php:286
|
283 |
msgid "Only enable when displaying video content."
|
284 |
msgstr ""
|
285 |
|
286 |
+
#: includes/class-testimonials-widget-settings.php:292
|
287 |
msgid "Exclude bxSlider CSS?"
|
288 |
msgstr ""
|
289 |
|
290 |
+
#: includes/class-testimonials-widget-settings.php:293
|
291 |
msgid "For a bare-bones, unthemed slider."
|
292 |
msgstr ""
|
293 |
|
294 |
+
#: includes/class-testimonials-widget-settings.php:301
|
295 |
msgid "Exclude default CSS?"
|
296 |
msgstr ""
|
297 |
|
298 |
+
#: includes/class-testimonials-widget-settings.php:302
|
299 |
msgid "Prevent default CSS from being loaded."
|
300 |
msgstr ""
|
301 |
|
302 |
+
#: includes/class-testimonials-widget-settings.php:310
|
303 |
msgid "Remove `.hentry` CSS?"
|
304 |
msgstr ""
|
305 |
|
306 |
+
#: includes/class-testimonials-widget-settings.php:311
|
307 |
msgid "Some themes use class `.hentry` in a manner that breaks Testimonials' CSS."
|
308 |
msgstr ""
|
309 |
|
310 |
+
#: includes/class-testimonials-widget-settings.php:318
|
311 |
msgid "URL Target"
|
312 |
msgstr ""
|
313 |
|
314 |
+
#: includes/class-testimonials-widget-settings.php:319
|
315 |
msgid "Add target to all URLs; leave blank if none."
|
316 |
msgstr ""
|
317 |
|
318 |
+
#: includes/class-testimonials-widget-settings.php:324
|
319 |
msgid "Use `<q>` tag?"
|
320 |
msgstr ""
|
321 |
|
322 |
+
#: includes/class-testimonials-widget-settings.php:325
|
323 |
msgid "Not HTML5 compliant."
|
324 |
msgstr ""
|
325 |
|
326 |
+
#: includes/class-testimonials-widget-settings.php:337
|
327 |
msgid "Field Options"
|
328 |
msgstr ""
|
329 |
|
330 |
+
#: includes/class-testimonials-widget-settings.php:343
|
331 |
msgid "Hide Title Above Content?"
|
332 |
msgstr ""
|
333 |
|
334 |
+
#: includes/class-testimonials-widget-settings.php:347
|
335 |
msgid "Don't display testimonial title above testimonial content."
|
336 |
msgstr ""
|
337 |
|
338 |
+
#: includes/class-testimonials-widget-settings.php:352
|
339 |
+
#: includes/class-testimonials-widget-settings.php:618
|
340 |
msgid "Hide Author?"
|
341 |
msgstr ""
|
342 |
|
343 |
+
#: includes/class-testimonials-widget-settings.php:355
|
344 |
msgid "Don't display testimonial title in cite."
|
345 |
msgstr ""
|
346 |
|
347 |
+
#: includes/class-testimonials-widget-settings.php:360
|
348 |
+
#: includes/class-testimonials-widget-settings.php:628
|
349 |
msgid "Hide Company?"
|
350 |
msgstr ""
|
351 |
|
352 |
+
#: includes/class-testimonials-widget-settings.php:363
|
353 |
msgid "Don't display testimonial company in cite."
|
354 |
msgstr ""
|
355 |
|
356 |
+
#: includes/class-testimonials-widget-settings.php:368
|
357 |
msgid "Hide Content?"
|
358 |
msgstr ""
|
359 |
|
360 |
+
#: includes/class-testimonials-widget-settings.php:371
|
361 |
msgid "Don't display testimonial content in a view."
|
362 |
msgstr ""
|
363 |
|
364 |
+
#: includes/class-testimonials-widget-settings.php:376
|
365 |
+
#: includes/class-testimonials-widget-settings.php:638
|
366 |
msgid "Hide Email?"
|
367 |
msgstr ""
|
368 |
|
369 |
+
#: includes/class-testimonials-widget-settings.php:380
|
370 |
msgid "Don't display or link to testimonial email in cite."
|
371 |
msgstr ""
|
372 |
|
373 |
+
#: includes/class-testimonials-widget-settings.php:385
|
374 |
msgid "Hide Gravatar?"
|
375 |
msgstr ""
|
376 |
|
377 |
+
#: includes/class-testimonials-widget-settings.php:388
|
378 |
msgid "Don't display Gravatar image with testimonial."
|
379 |
msgstr ""
|
380 |
|
381 |
+
#: includes/class-testimonials-widget-settings.php:393
|
382 |
+
#: includes/class-testimonials-widget-settings.php:658
|
383 |
msgid "Hide Image?"
|
384 |
msgstr ""
|
385 |
|
386 |
+
#: includes/class-testimonials-widget-settings.php:396
|
387 |
msgid "Don't display featured image with testimonial."
|
388 |
msgstr ""
|
389 |
|
390 |
+
#: includes/class-testimonials-widget-settings.php:401
|
391 |
msgid "Hide Image in Single View?"
|
392 |
msgstr ""
|
393 |
|
394 |
+
#: includes/class-testimonials-widget-settings.php:409
|
395 |
+
#: includes/class-testimonials-widget-settings.php:667
|
396 |
msgid "Hide Job Title?"
|
397 |
msgstr ""
|
398 |
|
399 |
+
#: includes/class-testimonials-widget-settings.php:412
|
400 |
msgid "Don't display testimonial job title in cite."
|
401 |
msgstr ""
|
402 |
|
403 |
+
#: includes/class-testimonials-widget-settings.php:417
|
404 |
+
#: includes/class-testimonials-widget-settings.php:677
|
405 |
msgid "Hide Location?"
|
406 |
msgstr ""
|
407 |
|
408 |
+
#: includes/class-testimonials-widget-settings.php:420
|
409 |
msgid "Don't display testimonial location in cite."
|
410 |
msgstr ""
|
411 |
|
412 |
+
#: includes/class-testimonials-widget-settings.php:425
|
413 |
+
#: includes/class-testimonials-widget-settings.php:696
|
414 |
msgid "Hide URL?"
|
415 |
msgstr ""
|
416 |
|
417 |
+
#: includes/class-testimonials-widget-settings.php:428
|
418 |
msgid "Don't display or link to testimonial URL in cite."
|
419 |
msgstr ""
|
420 |
|
421 |
+
#: includes/class-testimonials-widget-settings.php:438
|
422 |
msgid "Selection Options"
|
423 |
msgstr ""
|
424 |
|
425 |
+
#: includes/class-testimonials-widget-settings.php:444
|
426 |
msgid "Category Filter"
|
427 |
msgstr ""
|
428 |
|
429 |
+
#: includes/class-testimonials-widget-settings.php:445
|
430 |
msgid "Comma separated category names or IDs."
|
431 |
msgstr ""
|
432 |
|
433 |
+
#: includes/class-testimonials-widget-settings.php:452
|
434 |
msgid "Exclude IDs Filter"
|
435 |
msgstr ""
|
436 |
|
437 |
+
#: includes/class-testimonials-widget-settings.php:453
|
438 |
+
#: includes/class-testimonials-widget-settings.php:460
|
439 |
msgid "Comma separated testimonial IDs."
|
440 |
msgstr ""
|
441 |
|
442 |
+
#: includes/class-testimonials-widget-settings.php:459
|
443 |
msgid "Include IDs Filter"
|
444 |
msgstr ""
|
445 |
|
446 |
+
#: includes/class-testimonials-widget-settings.php:466
|
447 |
msgid "Limit"
|
448 |
msgstr ""
|
449 |
|
450 |
+
#: includes/class-testimonials-widget-settings.php:467
|
451 |
msgid "Number of testimonials to select per instance."
|
452 |
msgstr ""
|
453 |
|
454 |
+
#: includes/class-testimonials-widget-settings.php:474
|
455 |
msgid "Require All Tags?"
|
456 |
msgstr ""
|
457 |
|
458 |
+
#: includes/class-testimonials-widget-settings.php:475
|
459 |
msgid "Select only testimonials with all of the given tags."
|
460 |
msgstr ""
|
461 |
|
462 |
+
#: includes/class-testimonials-widget-settings.php:482
|
463 |
msgid "Tags Filter"
|
464 |
msgstr ""
|
465 |
|
466 |
+
#: includes/class-testimonials-widget-settings.php:483
|
467 |
msgid "Comma separated tag slugs or IDs."
|
468 |
msgstr ""
|
469 |
|
470 |
+
#: includes/class-testimonials-widget-settings.php:496
|
471 |
msgid "Ordering Options"
|
472 |
msgstr ""
|
473 |
|
474 |
+
#: includes/class-testimonials-widget-settings.php:502
|
475 |
msgid "ORDER BY"
|
476 |
msgstr ""
|
477 |
|
478 |
+
#: includes/class-testimonials-widget-settings.php:503
|
479 |
msgid "Used when \"Random Order\" is disabled."
|
480 |
msgstr ""
|
481 |
|
482 |
+
#: includes/class-testimonials-widget-settings.php:506
|
483 |
msgid "Testimonial ID"
|
484 |
msgstr ""
|
485 |
|
486 |
+
#: includes/class-testimonials-widget-settings.php:507
|
487 |
+
#: includes/class-testimonials-widget-settings.php:510
|
488 |
+
#: includes/class-testimonials-widget.php:470
|
489 |
+
#: includes/class-testimonials-widget.php:501
|
490 |
+
#: includes/class-testimonials-widget.php:1339
|
491 |
msgid "Author"
|
492 |
msgstr ""
|
493 |
|
494 |
+
#: includes/class-testimonials-widget-settings.php:508
|
495 |
+
#: includes/class-testimonials-widget.php:472
|
496 |
msgid "Date"
|
497 |
msgstr ""
|
498 |
|
499 |
+
#: includes/class-testimonials-widget-settings.php:509
|
500 |
msgid "Menu Order"
|
501 |
msgstr ""
|
502 |
|
503 |
+
#: includes/class-testimonials-widget-settings.php:511
|
504 |
msgid "No order"
|
505 |
msgstr ""
|
506 |
|
507 |
+
#: includes/class-testimonials-widget-settings.php:519
|
508 |
msgid "ORDER BY meta_key"
|
509 |
msgstr ""
|
510 |
|
511 |
+
#: includes/class-testimonials-widget-settings.php:520
|
512 |
msgid "Used when \"Random Order\" is disabled and sorting by a testimonials meta key is needed. Overrides ORDER BY."
|
513 |
msgstr ""
|
514 |
|
515 |
+
#: includes/class-testimonials-widget-settings.php:523
|
516 |
msgid "None"
|
517 |
msgstr ""
|
518 |
|
519 |
+
#: includes/class-testimonials-widget-settings.php:524
|
520 |
+
#: includes/class-testimonials-widget.php:506
|
521 |
+
#: includes/class-testimonials-widget.php:1345
|
522 |
msgid "Job Title"
|
523 |
msgstr ""
|
524 |
|
525 |
+
#: includes/class-testimonials-widget-settings.php:525
|
526 |
+
#: includes/class-testimonials-widget.php:521
|
527 |
+
#: includes/class-testimonials-widget.php:1363
|
528 |
msgid "Email"
|
529 |
msgstr ""
|
530 |
|
531 |
+
#: includes/class-testimonials-widget-settings.php:526
|
532 |
+
#: includes/class-testimonials-widget.php:511
|
533 |
+
#: includes/class-testimonials-widget.php:1351
|
534 |
msgid "Location"
|
535 |
msgstr ""
|
536 |
|
537 |
+
#: includes/class-testimonials-widget-settings.php:527
|
538 |
+
#: includes/class-testimonials-widget.php:516
|
539 |
+
#: includes/class-testimonials-widget.php:1357
|
540 |
msgid "Company"
|
541 |
msgstr ""
|
542 |
|
543 |
+
#: includes/class-testimonials-widget-settings.php:528
|
544 |
+
#: includes/class-testimonials-widget.php:526
|
545 |
+
#: includes/class-testimonials-widget.php:1369
|
546 |
msgid "URL"
|
547 |
msgstr ""
|
548 |
|
549 |
+
#: includes/class-testimonials-widget-settings.php:535
|
550 |
msgid "ORDER BY Order"
|
551 |
msgstr ""
|
552 |
|
553 |
+
#: includes/class-testimonials-widget-settings.php:538
|
554 |
msgid "Descending"
|
555 |
msgstr ""
|
556 |
|
557 |
+
#: includes/class-testimonials-widget-settings.php:539
|
558 |
msgid "Ascending"
|
559 |
msgstr ""
|
560 |
|
561 |
+
#: includes/class-testimonials-widget-settings.php:547
|
562 |
msgid "Random Order?"
|
563 |
msgstr ""
|
564 |
|
565 |
+
#: includes/class-testimonials-widget-settings.php:548
|
566 |
msgid "If checked, ignores ORDER BY, ORDER BY meta_key, and ORDER BY Order. Widgets are random by default automatically."
|
567 |
msgstr ""
|
568 |
|
569 |
+
#: includes/class-testimonials-widget-settings.php:561
|
570 |
msgid "Allow Comments?"
|
571 |
msgstr ""
|
572 |
|
573 |
+
#: includes/class-testimonials-widget-settings.php:562
|
574 |
msgid "Only affects the Testimonials post edit page. Your theme controls the front-end view."
|
575 |
msgstr ""
|
576 |
|
577 |
+
#: includes/class-testimonials-widget-settings.php:569
|
578 |
msgid "URL slug-name for <a href=\"%1s\">testimonials archive</a> page."
|
579 |
msgstr ""
|
580 |
|
581 |
+
#: includes/class-testimonials-widget-settings.php:575
|
582 |
msgid "Archive Page URL"
|
583 |
msgstr ""
|
584 |
|
585 |
+
#: includes/class-testimonials-widget-settings.php:585
|
586 |
msgid "Disable Default Taxonomies?"
|
587 |
msgstr ""
|
588 |
|
589 |
+
#: includes/class-testimonials-widget-settings.php:588
|
590 |
msgid "If checked, use Testimonials' own category and tag taxonomies than WordPress' defaults."
|
591 |
msgstr ""
|
592 |
|
593 |
+
#: includes/class-testimonials-widget-settings.php:594
|
594 |
msgid "Include testimonials in archive and category views."
|
595 |
msgstr ""
|
596 |
|
597 |
+
#: includes/class-testimonials-widget-settings.php:597
|
598 |
msgid "Enable archives view?"
|
599 |
msgstr ""
|
600 |
|
601 |
+
#: includes/class-testimonials-widget-settings.php:603
|
602 |
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."
|
603 |
msgstr ""
|
604 |
|
605 |
+
#: includes/class-testimonials-widget-settings.php:607
|
606 |
msgid "Testimonial Page URL"
|
607 |
msgstr ""
|
608 |
|
609 |
+
#: includes/class-testimonials-widget-settings.php:648
|
610 |
msgid "Hide ID?"
|
611 |
msgstr ""
|
612 |
|
613 |
+
#: includes/class-testimonials-widget-settings.php:687
|
614 |
msgid "Hide Shortcode?"
|
615 |
msgstr ""
|
616 |
|
617 |
+
#: includes/class-testimonials-widget-settings.php:707
|
618 |
+
#: includes/class-testimonials-widget-settings.php:1000
|
619 |
#: includes/libraries/aihrus-framework/includes/class-aihrus-settings.php:65
|
620 |
msgid "Reset"
|
621 |
msgstr ""
|
622 |
|
623 |
+
#: includes/class-testimonials-widget-settings.php:930
|
624 |
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."
|
625 |
msgstr ""
|
626 |
|
627 |
+
#: includes/class-testimonials-widget-settings.php:932
|
628 |
msgid "Shortcode option names are listed below each entry."
|
629 |
msgstr ""
|
630 |
|
631 |
+
#: includes/class-testimonials-widget-settings.php:935
|
632 |
msgid "View the <a href=\"%s\">Testimonials documentation</a>."
|
633 |
msgstr ""
|
634 |
|
635 |
+
#: includes/class-testimonials-widget-settings.php:945
|
636 |
msgid "General options."
|
637 |
msgstr ""
|
638 |
|
639 |
+
#: includes/class-testimonials-widget-settings.php:953
|
640 |
msgid "Show or hide fields."
|
641 |
msgstr ""
|
642 |
|
643 |
+
#: includes/class-testimonials-widget-settings.php:961
|
644 |
msgid "Options used to select testimonials."
|
645 |
msgstr ""
|
646 |
|
647 |
+
#: includes/class-testimonials-widget-settings.php:969
|
648 |
msgid "Options used to determine displayed testimonials ordering."
|
649 |
msgstr ""
|
650 |
|
651 |
+
#: includes/class-testimonials-widget-settings.php:977
|
652 |
msgid "Allowed columns to display on edit page."
|
653 |
msgstr ""
|
654 |
|
655 |
+
#: includes/class-testimonials-widget-settings.php:985
|
656 |
msgid "Archive and singular page URL related testimonials options."
|
657 |
msgstr ""
|
658 |
|
659 |
+
#: includes/class-testimonials-widget-settings.php:993
|
660 |
msgid "Options related to showing testimonials in widgets."
|
661 |
msgstr ""
|
662 |
|
663 |
+
#: includes/class-testimonials-widget-settings.php:1001
|
664 |
msgid "Backwards compatibility, import/export options, and reset options."
|
665 |
msgstr ""
|
666 |
|
690 |
|
691 |
#: includes/class-testimonials-widget-tag-cloud-widget.php:63
|
692 |
#: includes/class-testimonials-widget-tag-cloud-widget.php:70
|
693 |
+
#: includes/class-testimonials-widget.php:477
|
694 |
+
#: includes/class-testimonials-widget.php:480
|
695 |
msgid "Category"
|
696 |
msgstr ""
|
697 |
|
698 |
#: includes/class-testimonials-widget-tag-cloud-widget.php:64
|
699 |
#: includes/class-testimonials-widget-tag-cloud-widget.php:71
|
700 |
+
#: includes/class-testimonials-widget.php:478
|
701 |
+
#: includes/class-testimonials-widget.php:481
|
702 |
msgid "Tags"
|
703 |
msgstr ""
|
704 |
|
706 |
msgid "Taxonomy"
|
707 |
msgstr ""
|
708 |
|
709 |
+
#: includes/class-testimonials-widget.php:331
|
710 |
msgid "If your Testimonials display has gone to funky town, please <a href=\"%s\">read the FAQ</a> about possible CSS fixes."
|
711 |
msgstr ""
|
712 |
|
713 |
+
#: includes/class-testimonials-widget.php:471
|
714 |
msgid "Published by"
|
715 |
msgstr ""
|
716 |
|
717 |
+
#: includes/class-testimonials-widget.php:486
|
718 |
msgid "ID"
|
719 |
msgstr ""
|
720 |
|
721 |
+
#: includes/class-testimonials-widget.php:491
|
722 |
msgid "Image"
|
723 |
msgstr ""
|
724 |
|
725 |
+
#: includes/class-testimonials-widget.php:496
|
726 |
msgid "Shortcodes"
|
727 |
msgstr ""
|
728 |
|
729 |
+
#: includes/class-testimonials-widget.php:537
|
730 |
msgid "Add New"
|
731 |
msgstr ""
|
732 |
|
733 |
+
#: includes/class-testimonials-widget.php:538
|
734 |
+
#: includes/class-testimonials-widget.php:541
|
735 |
msgid "Add New Testimonial"
|
736 |
msgstr ""
|
737 |
|
738 |
+
#: includes/class-testimonials-widget.php:539
|
739 |
msgid "Edit Testimonial"
|
740 |
msgstr ""
|
741 |
|
742 |
+
#: includes/class-testimonials-widget.php:542
|
743 |
+
#: includes/class-testimonials-widget.php:851
|
744 |
msgid "No testimonials found"
|
745 |
msgstr ""
|
746 |
|
747 |
+
#: includes/class-testimonials-widget.php:543
|
748 |
msgid "No testimonials found in Trash"
|
749 |
msgstr ""
|
750 |
|
751 |
+
#: includes/class-testimonials-widget.php:545
|
752 |
msgid "Search Testimonials"
|
753 |
msgstr ""
|
754 |
|
755 |
+
#: includes/class-testimonials-widget.php:546
|
756 |
+
#: includes/class-testimonials-widget.php:1430
|
757 |
+
#: includes/class-testimonials-widget.php:1605
|
758 |
msgid "Testimonial"
|
759 |
msgstr ""
|
760 |
|
761 |
+
#: includes/class-testimonials-widget.php:547
|
762 |
msgid "View Testimonial"
|
763 |
msgstr ""
|
764 |
|
765 |
+
#: includes/class-testimonials-widget.php:1342
|
766 |
msgid "Use when the testimonial title is not the authors' name."
|
767 |
msgstr ""
|
768 |
|
769 |
+
#: includes/class-testimonials-widget.php:1366
|
770 |
msgid "If an email is provided, but not an image, a Gravatar icon will be attempted to be loaded."
|
771 |
msgstr ""
|
772 |
|
773 |
+
#: includes/class-testimonials-widget.php:1381
|
774 |
msgid "Testimonial Data"
|
775 |
msgstr ""
|
776 |
|
777 |
+
#: includes/class-testimonials-widget.php:1405
|
778 |
msgid "Testimonial updated. <a href=\"%s\">View testimonial</a>"
|
779 |
msgstr ""
|
780 |
|
781 |
+
#: includes/class-testimonials-widget.php:1406
|
782 |
msgid "Custom field updated."
|
783 |
msgstr ""
|
784 |
|
785 |
+
#: includes/class-testimonials-widget.php:1407
|
786 |
msgid "Custom field deleted."
|
787 |
msgstr ""
|
788 |
|
789 |
+
#: includes/class-testimonials-widget.php:1408
|
790 |
msgid "Testimonial updated."
|
791 |
msgstr ""
|
792 |
|
793 |
#. translators: %s: date and time of the revision
|
794 |
|
795 |
+
#: includes/class-testimonials-widget.php:1410
|
796 |
msgid "Testimonial restored to revision from %s"
|
797 |
msgstr ""
|
798 |
|
799 |
+
#: includes/class-testimonials-widget.php:1411
|
800 |
msgid "Testimonial published. <a href=\"%s\">View testimonial</a>"
|
801 |
msgstr ""
|
802 |
|
803 |
+
#: includes/class-testimonials-widget.php:1412
|
804 |
msgid "Testimonial saved."
|
805 |
msgstr ""
|
806 |
|
807 |
+
#: includes/class-testimonials-widget.php:1413
|
808 |
msgid "Testimonial submitted. <a target=\"_blank\" href=\"%s\">Preview testimonial</a>"
|
809 |
msgstr ""
|
810 |
|
811 |
+
#: includes/class-testimonials-widget.php:1414
|
812 |
msgid "Testimonial scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Preview testimonial</a>"
|
813 |
msgstr ""
|
814 |
|
815 |
+
#: includes/class-testimonials-widget.php:1415
|
816 |
msgid "Testimonial draft updated. <a target=\"_blank\" href=\"%s\">Preview testimonial</a>"
|
817 |
msgstr ""
|
818 |
|
819 |
+
#: includes/class-testimonials-widget.php:1500
|
820 |
msgid "If your Testimonials display has gone to funky town, please <a href=\"%s\">read the FAQ</a> about possible fixes."
|
821 |
msgstr ""
|
822 |
|
823 |
+
#: includes/class-testimonials-widget.php:1519
|
824 |
msgid "Failed version check"
|
825 |
msgstr ""
|
826 |
|
827 |
+
#: includes/class-testimonials-widget.php:1550
|
828 |
msgid "Shortcode"
|
829 |
msgstr ""
|
830 |
|
831 |
+
#: includes/class-testimonials-widget.php:1988
|
832 |
+
#: includes/class-testimonials-widget.php:2061
|
833 |
msgid "Used with: "
|
834 |
msgstr ""
|
835 |
|
836 |
+
#: includes/class-testimonials-widget.php:2025
|
837 |
+
#: includes/class-testimonials-widget.php:2089
|
838 |
msgid "Options: "
|
839 |
msgstr ""
|
840 |
|
841 |
+
#: includes/class-testimonials-widget.php:2030
|
842 |
+
#: includes/class-testimonials-widget.php:2094
|
843 |
msgid "Usage: "
|
844 |
msgstr ""
|
845 |
|
readme.txt
CHANGED
@@ -4,8 +4,8 @@ Contributors: comprock,saurabhd,subharanjan
|
|
4 |
Donate link: https://axelerant.com/about-axelerant/donate/
|
5 |
Tags: axelerant, client, customer, portfolio, quote, quotes, random, recommendation, reference, review, reviews, slider, testimonial, testimonials, wpml
|
6 |
Requires at least: 3.9.2
|
7 |
-
Tested up to: 4.7.
|
8 |
-
Stable tag: 3.
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
4 |
Donate link: https://axelerant.com/about-axelerant/donate/
|
5 |
Tags: axelerant, client, customer, portfolio, quote, quotes, random, recommendation, reference, review, reviews, slider, testimonial, testimonials, wpml
|
6 |
Requires at least: 3.9.2
|
7 |
+
Tested up to: 4.7.4
|
8 |
+
Stable tag: 3.4.0
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
testimonials-widget.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
* Plugin URI: http://wordpress.org/plugins/testimonials-widget/
|
5 |
* Description: Easily add social proofing to your website with Testimonials Widget. List or slide reviews via functions, shortcodes, or widgets.
|
6 |
* lets you socially randomly slide or list selected portfolios, quotes, reviews, or text with images or videos on your WordPress site.
|
7 |
-
* Version: 3.
|
8 |
* Author: Axelerant
|
9 |
* Author URI: https://axelerant.com/
|
10 |
* License: GPLv2 or later
|
@@ -64,7 +64,7 @@ if ( ! defined( 'TW_PREMIUM_LINK' ) ) {
|
|
64 |
}
|
65 |
|
66 |
if ( ! defined( 'TW_VERSION' ) ) {
|
67 |
-
define( 'TW_VERSION', '3.
|
68 |
}
|
69 |
|
70 |
require_once TW_DIR_INC . 'requirements.php';
|
4 |
* Plugin URI: http://wordpress.org/plugins/testimonials-widget/
|
5 |
* Description: Easily add social proofing to your website with Testimonials Widget. List or slide reviews via functions, shortcodes, or widgets.
|
6 |
* lets you socially randomly slide or list selected portfolios, quotes, reviews, or text with images or videos on your WordPress site.
|
7 |
+
* Version: 3.4.0
|
8 |
* Author: Axelerant
|
9 |
* Author URI: https://axelerant.com/
|
10 |
* License: GPLv2 or later
|
64 |
}
|
65 |
|
66 |
if ( ! defined( 'TW_VERSION' ) ) {
|
67 |
+
define( 'TW_VERSION', '3.4.0' );
|
68 |
}
|
69 |
|
70 |
require_once TW_DIR_INC . 'requirements.php';
|