Version Description
- [Bugfix] Added TwitCount.com service to get Twitter share counts working again
Download this release
Release Info
Developer | Heateor |
Plugin | WordPress Social Sharing Plugin – Sassy Social Share |
Version | 3.2.9 |
Comparing to | |
See all releases |
Code changes from version 3.2.8 to 3.2.9
admin/class-sassy-social-share-admin.php
CHANGED
@@ -444,6 +444,18 @@ class Sassy_Social_Share_Admin {
|
|
444 |
|
445 |
}
|
446 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
447 |
/**
|
448 |
* Save GDPR notification flag in DB
|
449 |
*
|
@@ -522,6 +534,29 @@ class Sassy_Social_Share_Admin {
|
|
522 |
</div>
|
523 |
<?php
|
524 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
525 |
}
|
526 |
|
527 |
if ( ! get_option( 'heateor_sss_gdpr_notification_read' ) ) {
|
444 |
|
445 |
}
|
446 |
|
447 |
+
/**
|
448 |
+
* Save Twitcount notification flag in DB
|
449 |
+
*
|
450 |
+
* @since 3.2.9
|
451 |
+
*/
|
452 |
+
public function twitcount_notification_read() {
|
453 |
+
|
454 |
+
update_option( 'heateor_sss_twitcount_notification_read', '1' );
|
455 |
+
die;
|
456 |
+
|
457 |
+
}
|
458 |
+
|
459 |
/**
|
460 |
* Save GDPR notification flag in DB
|
461 |
*
|
534 |
</div>
|
535 |
<?php
|
536 |
}
|
537 |
+
|
538 |
+
if ( ! get_option( 'heateor_sss_twitcount_notification_read' ) ) {
|
539 |
+
?>
|
540 |
+
<script type="text/javascript">
|
541 |
+
function heateorSssTwitcountNotificationRead(){
|
542 |
+
jQuery.ajax({
|
543 |
+
type: 'GET',
|
544 |
+
url: '<?php echo get_admin_url() ?>admin-ajax.php',
|
545 |
+
data: {
|
546 |
+
action: 'heateor_sss_twitcount_notification_read'
|
547 |
+
},
|
548 |
+
success: function(data, textStatus, XMLHttpRequest){
|
549 |
+
jQuery('#heateor_sss_twitcount_notification').fadeOut();
|
550 |
+
}
|
551 |
+
});
|
552 |
+
}
|
553 |
+
</script>
|
554 |
+
<div id="heateor_sss_twitcount_notification" class="update-nag">
|
555 |
+
<h3>Sassy Social Share</h3>
|
556 |
+
<p><?php echo sprintf( __( 'Now plugin supports a new service Twitcount.com to show Twitter shares. To continue showing the Twitter shares, click "Give me my Twitter counts back" button at <a href="%s" target="_blank">their website</a> and register your website %s with them. No need to copy-paste any code from their website.', 'sassy-social-share' ), 'http://twitcount.com', home_url() ); ?><input type="button" onclick="heateorSssTwitcountNotificationRead()" style="margin-left: 5px;" class="button button-primary" value="<?php _e( 'Okay', 'sassy-social-share' ) ?>" /></p>
|
557 |
+
</div>
|
558 |
+
<?php
|
559 |
+
}
|
560 |
}
|
561 |
|
562 |
if ( ! get_option( 'heateor_sss_gdpr_notification_read' ) ) {
|
admin/partials/sassy-social-share-options-page.php
CHANGED
@@ -850,7 +850,7 @@ defined( 'ABSPATH' ) or die("Cheating........Uh!!");
|
|
850 |
<tr>
|
851 |
<th colspan="2">
|
852 |
<img id="heateor_sss_providers_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
853 |
-
<label><?php _e("Select Sharing Services", 'sassy-social-share' ); ?></label>
|
854 |
</th>
|
855 |
</tr>
|
856 |
|
@@ -865,7 +865,7 @@ defined( 'ABSPATH' ) or die("Cheating........Uh!!");
|
|
865 |
<tr>
|
866 |
<td colspan="2" class="selectSharingNetworks">
|
867 |
<?php
|
868 |
-
foreach( $likeButtons as $likeButton) {
|
869 |
?>
|
870 |
<div class="heateorSssHorizontalSharingProviderContainer">
|
871 |
<input id="heateor_sss_<?php echo $likeButton ?>" type="checkbox" <?php echo isset( $options['horizontal_re_providers'] ) && in_array( $likeButton, $options['horizontal_re_providers'] ) ? 'checked = "checked"' : '';?> value="<?php echo $likeButton ?>" />
|
@@ -1019,6 +1019,7 @@ defined( 'ABSPATH' ) or die("Cheating........Uh!!");
|
|
1019 |
<input id="heateor_sss_counts" name="heateor_sss[horizontal_counts]" type="checkbox" <?php echo isset( $options['horizontal_counts'] ) ? 'checked = "checked"' : '';?> value="1" />
|
1020 |
<br/>
|
1021 |
<span class="heateor_sss_help_content" style="display:block"><?php _e( 'Share counts are supported for Facebook, Twitter, Linkedin, Buffer, Reddit, Pinterest, Odnoklassniki and Vkontakte', 'sassy-social-share' ) ?></span>
|
|
|
1022 |
</td>
|
1023 |
</tr>
|
1024 |
|
@@ -1031,29 +1032,6 @@ defined( 'ABSPATH' ) or die("Cheating........Uh!!");
|
|
1031 |
</td>
|
1032 |
</tr>
|
1033 |
|
1034 |
-
<?php
|
1035 |
-
$tweet_count_service = 'newsharecounts';
|
1036 |
-
if ( isset( $options['tweet_count_service'] ) ) {
|
1037 |
-
$tweet_count_service = $options['tweet_count_service'];
|
1038 |
-
} elseif ( isset( $options['vertical_tweet_count_service'] ) ) {
|
1039 |
-
$tweet_count_service = $options['vertical_tweet_count_service'];
|
1040 |
-
}
|
1041 |
-
?>
|
1042 |
-
|
1043 |
-
<tr id="heateor_sss_twitter_share_count" <?php echo isset( $options['horizontal_counts'] ) ? '' : 'style="display:none"' ?>>
|
1044 |
-
<th>
|
1045 |
-
</th>
|
1046 |
-
<td>
|
1047 |
-
<input id="heateor_sss_newsharecounts" name="heateor_sss[tweet_count_service]" type="radio" <?php echo $tweet_count_service == 'newsharecounts' ? 'checked = "checked"' : '';?> value="newsharecounts" /><label for="heateor_sss_newsharecounts"><?php echo sprintf( __( 'Use <a href="%s" target="_blank">NewShareCounts</a> to show Twitter share counts', 'sassy-social-share' ), 'http://newsharecounts.com' ) ?></label>
|
1048 |
-
<br/>
|
1049 |
-
<span class="heateor_sss_help_content" style="display:block"><?php echo sprintf( __( 'For this to work, you have to enter your website url %s and sign in using Twitter at <a href="%s" target="_blank">their website</a>', 'sassy-social-share' ), home_url(), 'http://newsharecounts.com' ) ?></span>
|
1050 |
-
<br/>
|
1051 |
-
<input id="heateor_sss_opensharecount" name="heateor_sss[tweet_count_service]" type="radio" <?php echo $tweet_count_service == 'opensharecount' ? 'checked = "checked"' : '';?> value="opensharecount" /><label for="heateor_sss_opensharecount"><?php echo sprintf( __( 'Use <a href="%s" target="_blank">OpenShareCount</a> to show Twitter share counts', 'sassy-social-share' ), 'http://opensharecount.com' ) ?></label>
|
1052 |
-
<br/>
|
1053 |
-
<span class="heateor_sss_help_content" style="display:block"><?php echo sprintf( __( 'For this to work, you have to sign up and register your website url %s at <a href="%s" target="_blank">their website</a>', 'sassy-social-share' ), home_url(), 'http://opensharecount.com' ) ?></span>
|
1054 |
-
</td>
|
1055 |
-
</tr>
|
1056 |
-
|
1057 |
<tr>
|
1058 |
<th>
|
1059 |
<img id="heateor_sss_total_hor_shares_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
@@ -1457,12 +1435,13 @@ defined( 'ABSPATH' ) or die("Cheating........Uh!!");
|
|
1457 |
<tr>
|
1458 |
<th>
|
1459 |
<img id="heateor_sss_vertical_count_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
1460 |
-
<label for="heateor_sss_vertical_counts"><?php _e("Show share counts", 'sassy-social-share' ); ?></label>
|
1461 |
</th>
|
1462 |
<td>
|
1463 |
<input id="heateor_sss_vertical_counts" name="heateor_sss[vertical_counts]" type="checkbox" <?php echo isset( $options['vertical_counts'] ) ? 'checked = "checked"' : '';?> value="1" />
|
1464 |
<br/>
|
1465 |
<span class="heateor_sss_help_content" style="display:block"><?php _e( 'Share counts are supported for Facebook, Twitter, Linkedin, Buffer, Reddit, Pinterest, Odnoklassniki and Vkontakte', 'sassy-social-share' ) ?></span>
|
|
|
1466 |
</td>
|
1467 |
</tr>
|
1468 |
|
@@ -1475,24 +1454,10 @@ defined( 'ABSPATH' ) or die("Cheating........Uh!!");
|
|
1475 |
</td>
|
1476 |
</tr>
|
1477 |
|
1478 |
-
<tr id="heateor_sss_twitter_vertical_share_count" <?php echo isset( $options['vertical_counts'] ) ? '' : 'style="display:none"' ?>>
|
1479 |
-
<th>
|
1480 |
-
</th>
|
1481 |
-
<td>
|
1482 |
-
<input id="heateor_sss_vertical_newsharecounts" name="heateor_sss[vertical_tweet_count_service]" type="radio" <?php echo $tweet_count_service == 'newsharecounts' ? 'checked = "checked"' : '';?> value="newsharecounts" /><label for="heateor_sss_vertical_newsharecounts"><?php echo sprintf( __( 'Use <a href="%s" target="_blank">NewShareCounts</a> to show Twitter share counts', 'sassy-social-share' ), 'http://newsharecounts.com' ) ?></label>
|
1483 |
-
<br/>
|
1484 |
-
<span class="heateor_sss_help_content" style="display:block"><?php echo sprintf( __( 'For this to work, you have to enter your website url %s and sign in using Twitter at <a href="%s" target="_blank">their website</a>', 'sassy-social-share' ), home_url(), 'http://newsharecounts.com' ) ?></span>
|
1485 |
-
<br/>
|
1486 |
-
<input id="heateor_sss_vertical_opensharecount" name="heateor_sss[vertical_tweet_count_service]" type="radio" <?php echo $tweet_count_service == 'opensharecount' ? 'checked = "checked"' : '';?> value="opensharecount" /><label for="heateor_sss_vertical_opensharecount"><?php echo sprintf( __( 'Use <a href="%s" target="_blank">OpenShareCount</a> to show Twitter share counts', 'sassy-social-share' ), 'http://opensharecount.com' ) ?></label>
|
1487 |
-
<br/>
|
1488 |
-
<span class="heateor_sss_help_content" style="display:block"><?php echo sprintf( __( 'For this to work, you have to sign up and register your website url %s at <a href="%s" target="_blank">their website</a>', 'sassy-social-share' ), home_url(), 'http://opensharecount.com' ) ?></span>
|
1489 |
-
</td>
|
1490 |
-
</tr>
|
1491 |
-
|
1492 |
<tr>
|
1493 |
<th>
|
1494 |
<img id="heateor_sss_total_vertical_shares_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
1495 |
-
<label for="heateor_sss_total_vertical_shares"><?php _e("Show total shares", 'sassy-social-share' ); ?></label>
|
1496 |
</th>
|
1497 |
<td>
|
1498 |
<input id="heateor_sss_total_vertical_shares" name="heateor_sss[vertical_total_shares]" type="checkbox" <?php echo isset( $options['vertical_total_shares'] ) ? 'checked = "checked"' : '';?> value="1" />
|
@@ -1983,8 +1948,12 @@ defined( 'ABSPATH' ) or die("Cheating........Uh!!");
|
|
1983 |
<div class="inside faq">
|
1984 |
<p><?php _e( '<strong>Note:</strong> Plugin will not work on local server. You should have an online website for the plugin to function properly.', 'sassy-social-share' ); ?></p>
|
1985 |
<p>
|
1986 |
-
<a href="javascript:void(0)"><?php _e('Why is Instagram icon redirecting to Instagram website?', 'sassy-social-share'); ?></a>
|
1987 |
-
<div><?php _e('Instagram icon is there to send website visitors to the Instagram page of your choice. You can save the desired Instagram handle in "Instagram Username" option in "Standard Interface" and "Floating Interface" sections.', 'sassy-social-share'); ?></div>
|
|
|
|
|
|
|
|
|
1988 |
</p>
|
1989 |
<p><a href="https://www.heateor.com/recover-social-share-counts/" target="_blank"><?php _e('How to restore Social Share counts lost after moving my website to SSL/Https?', 'sassy-social-share' ) ?></a></p>
|
1990 |
<p><a href="http://support.heateor.com/how-to-integrate-google-analytics-with-sharing" target="_blank"><?php _e( 'How to integrate Google Analytics with sharing?', 'sassy-social-share' ) ?></a></p>
|
850 |
<tr>
|
851 |
<th colspan="2">
|
852 |
<img id="heateor_sss_providers_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
853 |
+
<label><?php _e( "Select Sharing Services", 'sassy-social-share' ); ?></label>
|
854 |
</th>
|
855 |
</tr>
|
856 |
|
865 |
<tr>
|
866 |
<td colspan="2" class="selectSharingNetworks">
|
867 |
<?php
|
868 |
+
foreach( $likeButtons as $likeButton ) {
|
869 |
?>
|
870 |
<div class="heateorSssHorizontalSharingProviderContainer">
|
871 |
<input id="heateor_sss_<?php echo $likeButton ?>" type="checkbox" <?php echo isset( $options['horizontal_re_providers'] ) && in_array( $likeButton, $options['horizontal_re_providers'] ) ? 'checked = "checked"' : '';?> value="<?php echo $likeButton ?>" />
|
1019 |
<input id="heateor_sss_counts" name="heateor_sss[horizontal_counts]" type="checkbox" <?php echo isset( $options['horizontal_counts'] ) ? 'checked = "checked"' : '';?> value="1" />
|
1020 |
<br/>
|
1021 |
<span class="heateor_sss_help_content" style="display:block"><?php _e( 'Share counts are supported for Facebook, Twitter, Linkedin, Buffer, Reddit, Pinterest, Odnoklassniki and Vkontakte', 'sassy-social-share' ) ?></span>
|
1022 |
+
<span class="heateor_sss_help_content" style="display:block"><strong><?php echo sprintf( __( 'To show Twitter share count, you have to click "Give me my Twitter counts back" button at <a href="%s" target="_blank">TwitCount.com</a> and register your website %s with them. No need to copy-paste any code from their website.', 'sassy-social-share' ), 'http://twitcount.com', home_url() ) ?></strong></span>
|
1023 |
</td>
|
1024 |
</tr>
|
1025 |
|
1032 |
</td>
|
1033 |
</tr>
|
1034 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1035 |
<tr>
|
1036 |
<th>
|
1037 |
<img id="heateor_sss_total_hor_shares_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
1435 |
<tr>
|
1436 |
<th>
|
1437 |
<img id="heateor_sss_vertical_count_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
1438 |
+
<label for="heateor_sss_vertical_counts"><?php _e( "Show share counts", 'sassy-social-share' ); ?></label>
|
1439 |
</th>
|
1440 |
<td>
|
1441 |
<input id="heateor_sss_vertical_counts" name="heateor_sss[vertical_counts]" type="checkbox" <?php echo isset( $options['vertical_counts'] ) ? 'checked = "checked"' : '';?> value="1" />
|
1442 |
<br/>
|
1443 |
<span class="heateor_sss_help_content" style="display:block"><?php _e( 'Share counts are supported for Facebook, Twitter, Linkedin, Buffer, Reddit, Pinterest, Odnoklassniki and Vkontakte', 'sassy-social-share' ) ?></span>
|
1444 |
+
<span class="heateor_sss_help_content" style="display:block"><strong><?php echo sprintf( __( 'To show Twitter share count, you have to click "Give me my Twitter counts back" button at <a href="%s" target="_blank">TwitCount.com</a> and register your website %s with them. No need to copy-paste any code from their website.', 'sassy-social-share' ), 'http://twitcount.com', home_url() ) ?></strong></span>
|
1445 |
</td>
|
1446 |
</tr>
|
1447 |
|
1454 |
</td>
|
1455 |
</tr>
|
1456 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1457 |
<tr>
|
1458 |
<th>
|
1459 |
<img id="heateor_sss_total_vertical_shares_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
1460 |
+
<label for="heateor_sss_total_vertical_shares"><?php _e( "Show total shares", 'sassy-social-share' ); ?></label>
|
1461 |
</th>
|
1462 |
<td>
|
1463 |
<input id="heateor_sss_total_vertical_shares" name="heateor_sss[vertical_total_shares]" type="checkbox" <?php echo isset( $options['vertical_total_shares'] ) ? 'checked = "checked"' : '';?> value="1" />
|
1948 |
<div class="inside faq">
|
1949 |
<p><?php _e( '<strong>Note:</strong> Plugin will not work on local server. You should have an online website for the plugin to function properly.', 'sassy-social-share' ); ?></p>
|
1950 |
<p>
|
1951 |
+
<a href="javascript:void(0)"><?php _e( 'Why is Instagram icon redirecting to Instagram website?', 'sassy-social-share' ); ?></a>
|
1952 |
+
<div><?php _e( 'Instagram icon is there to send website visitors to the Instagram page of your choice. You can save the desired Instagram handle in "Instagram Username" option in "Standard Interface" and "Floating Interface" sections.', 'sassy-social-share' ); ?></div>
|
1953 |
+
</p>
|
1954 |
+
<p>
|
1955 |
+
<a href="javascript:void(0)"><?php _e( 'Why are Twitter shares not appearing even after registering at Twitcount.com?', 'sassy-social-share' ); ?></a>
|
1956 |
+
<div><?php _e( "It takes some time for their service to track the shares made on Twitter from your website. If you still feel it's taking too long you can contact their support directly from their website.", 'sassy-social-share' ); ?></div>
|
1957 |
</p>
|
1958 |
<p><a href="https://www.heateor.com/recover-social-share-counts/" target="_blank"><?php _e('How to restore Social Share counts lost after moving my website to SSL/Https?', 'sassy-social-share' ) ?></a></p>
|
1959 |
<p><a href="http://support.heateor.com/how-to-integrate-google-analytics-with-sharing" target="_blank"><?php _e( 'How to integrate Google Analytics with sharing?', 'sassy-social-share' ) ?></a></p>
|
includes/class-sassy-social-share.php
CHANGED
@@ -117,7 +117,7 @@ class Sassy_Social_Share {
|
|
117 |
}
|
118 |
|
119 |
/**
|
120 |
-
* Register all of the hooks related to the admin area functionality of the plugin
|
121 |
*
|
122 |
* @since 1.0.0
|
123 |
*/
|
@@ -132,6 +132,8 @@ class Sassy_Social_Share {
|
|
132 |
add_action( 'wp_ajax_heateor_sss_gdpr_notification_read', array( $plugin_admin, 'gdpr_notification_read' ) );
|
133 |
// save Twitter share count notification flag in DB
|
134 |
add_action( 'wp_ajax_heateor_sss_twitter_share_notification_read', array( $plugin_admin, 'twitter_share_notification_read' ) );
|
|
|
|
|
135 |
// create admin menu
|
136 |
add_action( 'admin_menu', array( $plugin_admin, 'create_admin_menu' ) );
|
137 |
// set sanitization callback for plugin options
|
117 |
}
|
118 |
|
119 |
/**
|
120 |
+
* Register all of the hooks related to the admin area functionality of the plugin
|
121 |
*
|
122 |
* @since 1.0.0
|
123 |
*/
|
132 |
add_action( 'wp_ajax_heateor_sss_gdpr_notification_read', array( $plugin_admin, 'gdpr_notification_read' ) );
|
133 |
// save Twitter share count notification flag in DB
|
134 |
add_action( 'wp_ajax_heateor_sss_twitter_share_notification_read', array( $plugin_admin, 'twitter_share_notification_read' ) );
|
135 |
+
// save Twitcount notification flag in DB
|
136 |
+
add_action( 'wp_ajax_heateor_sss_twitcount_notification_read', array( $plugin_admin, 'twitcount_notification_read' ) );
|
137 |
// create admin menu
|
138 |
add_action( 'admin_menu', array( $plugin_admin, 'create_admin_menu' ) );
|
139 |
// set sanitization callback for plugin options
|
languages/sassy-social-share.pot
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Sassy Social Share\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2018-
|
6 |
-
"PO-Revision-Date: 2018-
|
7 |
"Last-Translator: Team Heateor <hello@heateor.com>\n"
|
8 |
"Language-Team: Heateor <hello@heateor.com>\n"
|
9 |
"Language: en_IN\n"
|
@@ -64,14 +64,14 @@ msgstr ""
|
|
64 |
msgid "Dismiss this notice"
|
65 |
msgstr ""
|
66 |
|
67 |
-
#: ../admin/class-sassy-social-share-admin.php:
|
68 |
msgid ""
|
69 |
"Update \"Social Share myCRED Integration\" add-on for maximum compatibility "
|
70 |
"with current version of Sassy Social Share"
|
71 |
msgstr ""
|
72 |
|
73 |
-
#: ../admin/class-sassy-social-share-admin.php:
|
74 |
-
#: ../admin/class-sassy-social-share-admin.php:
|
75 |
#, php-format
|
76 |
msgid ""
|
77 |
"This plugin is GDPR compliant. You need to update the privacy policy of your "
|
@@ -79,13 +79,14 @@ msgid ""
|
|
79 |
"\"%s\" target=\"_blank\">here</a>"
|
80 |
msgstr ""
|
81 |
|
82 |
-
#: ../admin/class-sassy-social-share-admin.php:
|
83 |
-
#: ../admin/class-sassy-social-share-admin.php:
|
84 |
-
#: ../admin/class-sassy-social-share-admin.php:
|
|
|
85 |
msgid "Okay"
|
86 |
msgstr ""
|
87 |
|
88 |
-
#: ../admin/class-sassy-social-share-admin.php:
|
89 |
#, php-format
|
90 |
msgid ""
|
91 |
"Twitter share counts are no longer working as newsharecounts.com is down. To "
|
@@ -93,15 +94,24 @@ msgid ""
|
|
93 |
"\"_blank\">here</a> with this domain. No other steps needed."
|
94 |
msgstr ""
|
95 |
|
96 |
-
#: ../admin/class-sassy-social-share-admin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
97 |
msgid "Add-Ons"
|
98 |
msgstr ""
|
99 |
|
100 |
-
#: ../admin/class-sassy-social-share-admin.php:
|
101 |
msgid "Support Documentation"
|
102 |
msgstr ""
|
103 |
|
104 |
-
#: ../admin/class-sassy-social-share-admin.php:
|
105 |
msgid "Settings"
|
106 |
msgstr ""
|
107 |
|
@@ -118,7 +128,7 @@ msgid "Floating Interface"
|
|
118 |
msgstr ""
|
119 |
|
120 |
#: ../admin/partials/sassy-social-share-options-page.php:22
|
121 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
122 |
msgid "Miscellaneous"
|
123 |
msgstr ""
|
124 |
|
@@ -127,8 +137,8 @@ msgid "3rd Party Integration"
|
|
127 |
msgstr ""
|
128 |
|
129 |
#: ../admin/partials/sassy-social-share-options-page.php:30
|
130 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
131 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
132 |
msgid "Shortcode & Widget"
|
133 |
msgstr ""
|
134 |
|
@@ -137,7 +147,7 @@ msgid "Troubleshooter"
|
|
137 |
msgstr ""
|
138 |
|
139 |
#: ../admin/partials/sassy-social-share-options-page.php:32
|
140 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
141 |
msgid "FAQ"
|
142 |
msgstr ""
|
143 |
|
@@ -259,7 +269,7 @@ msgstr ""
|
|
259 |
|
260 |
#: ../admin/partials/sassy-social-share-options-page.php:265
|
261 |
#: ../admin/partials/sassy-social-share-options-page.php:573
|
262 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
263 |
#: ../includes/class-sassy-social-share-widgets.php:413
|
264 |
msgid "Background Color"
|
265 |
msgstr ""
|
@@ -310,7 +320,7 @@ msgstr ""
|
|
310 |
#: ../admin/partials/sassy-social-share-options-page.php:315
|
311 |
#: ../admin/partials/sassy-social-share-options-page.php:622
|
312 |
#: ../admin/partials/sassy-social-share-options-page.php:901
|
313 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
314 |
#: ../includes/class-sassy-social-share-widgets.php:399
|
315 |
msgid "Left"
|
316 |
msgstr ""
|
@@ -323,7 +333,7 @@ msgstr ""
|
|
323 |
#: ../admin/partials/sassy-social-share-options-page.php:319
|
324 |
#: ../admin/partials/sassy-social-share-options-page.php:626
|
325 |
#: ../admin/partials/sassy-social-share-options-page.php:903
|
326 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
327 |
#: ../includes/class-sassy-social-share-widgets.php:400
|
328 |
msgid "Right"
|
329 |
msgstr ""
|
@@ -375,27 +385,27 @@ msgid "Master control to enable standard sharing"
|
|
375 |
msgstr ""
|
376 |
|
377 |
#: ../admin/partials/sassy-social-share-options-page.php:686
|
378 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
379 |
msgid "Target Url"
|
380 |
msgstr ""
|
381 |
|
382 |
#: ../admin/partials/sassy-social-share-options-page.php:690
|
383 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
384 |
msgid "Url of the webpage where icons are located (default)"
|
385 |
msgstr ""
|
386 |
|
387 |
#: ../admin/partials/sassy-social-share-options-page.php:692
|
388 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
389 |
msgid "Url of the homepage of your website"
|
390 |
msgstr ""
|
391 |
|
392 |
#: ../admin/partials/sassy-social-share-options-page.php:694
|
393 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
394 |
msgid "Custom url"
|
395 |
msgstr ""
|
396 |
|
397 |
#: ../admin/partials/sassy-social-share-options-page.php:701
|
398 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
399 |
msgid "Url to share"
|
400 |
msgstr ""
|
401 |
|
@@ -409,56 +419,56 @@ msgid "The text to display above the sharing interface"
|
|
409 |
msgstr ""
|
410 |
|
411 |
#: ../admin/partials/sassy-social-share-options-page.php:743
|
412 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
413 |
msgid "Instagram username"
|
414 |
msgstr ""
|
415 |
|
416 |
#: ../admin/partials/sassy-social-share-options-page.php:753
|
417 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
418 |
msgid ""
|
419 |
"Username of the Instagram account you want to redirect users to, on clicking "
|
420 |
"the icon"
|
421 |
msgstr ""
|
422 |
|
423 |
#: ../admin/partials/sassy-social-share-options-page.php:763
|
424 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
425 |
msgid "HTML ID of container element of comment form"
|
426 |
msgstr ""
|
427 |
|
428 |
#: ../admin/partials/sassy-social-share-options-page.php:773
|
429 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
430 |
msgid ""
|
431 |
"HTML ID of the element you want to focus on the webpage, on click of Comment "
|
432 |
"icon."
|
433 |
msgstr ""
|
434 |
|
435 |
#: ../admin/partials/sassy-social-share-options-page.php:786
|
436 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
437 |
msgid "Rearrange icons"
|
438 |
msgstr ""
|
439 |
|
440 |
#: ../admin/partials/sassy-social-share-options-page.php:845
|
441 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
442 |
msgid "Drag the icons to rearrange in desired order"
|
443 |
msgstr ""
|
444 |
|
445 |
#: ../admin/partials/sassy-social-share-options-page.php:853
|
446 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
447 |
msgid "Select Sharing Services"
|
448 |
msgstr ""
|
449 |
|
450 |
#: ../admin/partials/sassy-social-share-options-page.php:860
|
451 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
452 |
msgid "Select sharing services to show in social share bar"
|
453 |
msgstr ""
|
454 |
|
455 |
#: ../admin/partials/sassy-social-share-options-page.php:878
|
456 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
457 |
msgid "Search social network"
|
458 |
msgstr ""
|
459 |
|
460 |
#: ../admin/partials/sassy-social-share-options-page.php:897
|
461 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
462 |
msgid "Horizontal alignment"
|
463 |
msgstr ""
|
464 |
|
@@ -467,7 +477,7 @@ msgid "Center"
|
|
467 |
msgstr ""
|
468 |
|
469 |
#: ../admin/partials/sassy-social-share-options-page.php:911
|
470 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
471 |
msgid "Horizontal alignment of the sharing interface"
|
472 |
msgstr ""
|
473 |
|
@@ -488,37 +498,37 @@ msgid "Specify position of the sharing interface with respect to the content"
|
|
488 |
msgstr ""
|
489 |
|
490 |
#: ../admin/partials/sassy-social-share-options-page.php:940
|
491 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
492 |
msgid "Placement"
|
493 |
msgstr ""
|
494 |
|
495 |
#: ../admin/partials/sassy-social-share-options-page.php:944
|
496 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
497 |
msgid "Homepage"
|
498 |
msgstr ""
|
499 |
|
500 |
#: ../admin/partials/sassy-social-share-options-page.php:946
|
501 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
502 |
msgid "Posts"
|
503 |
msgstr ""
|
504 |
|
505 |
#: ../admin/partials/sassy-social-share-options-page.php:948
|
506 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
507 |
msgid "Pages"
|
508 |
msgstr ""
|
509 |
|
510 |
#: ../admin/partials/sassy-social-share-options-page.php:950
|
511 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
512 |
msgid "Excerpts and Posts page"
|
513 |
msgstr ""
|
514 |
|
515 |
#: ../admin/partials/sassy-social-share-options-page.php:952
|
516 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
517 |
msgid "Category Archives"
|
518 |
msgstr ""
|
519 |
|
520 |
#: ../admin/partials/sassy-social-share-options-page.php:954
|
521 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
522 |
msgid "Archive Pages (Category, Tag, Author or Date based pages)"
|
523 |
msgstr ""
|
524 |
|
@@ -531,12 +541,12 @@ msgid "BuddyPress group (only at top of content)"
|
|
531 |
msgstr ""
|
532 |
|
533 |
#: ../admin/partials/sassy-social-share-options-page.php:978
|
534 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
535 |
msgid "BBPress forum"
|
536 |
msgstr ""
|
537 |
|
538 |
#: ../admin/partials/sassy-social-share-options-page.php:981
|
539 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
540 |
msgid "BBPress topic"
|
541 |
msgstr ""
|
542 |
|
@@ -561,89 +571,67 @@ msgid "Specify the pages where you want to enable Sharing interface"
|
|
561 |
msgstr ""
|
562 |
|
563 |
#: ../admin/partials/sassy-social-share-options-page.php:1016
|
564 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
565 |
msgid "Show share counts"
|
566 |
msgstr ""
|
567 |
|
568 |
#: ../admin/partials/sassy-social-share-options-page.php:1021
|
569 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
570 |
msgid ""
|
571 |
"Share counts are supported for Facebook, Twitter, Linkedin, Buffer, Reddit, "
|
572 |
"Pinterest, Odnoklassniki and Vkontakte"
|
573 |
msgstr ""
|
574 |
|
575 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
576 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
577 |
-
msgid "If enabled, share counts are displayed above sharing icons."
|
578 |
-
msgstr ""
|
579 |
-
|
580 |
-
#: ../admin/partials/sassy-social-share-options-page.php:1047
|
581 |
-
#: ../admin/partials/sassy-social-share-options-page.php:1482
|
582 |
#, php-format
|
583 |
msgid ""
|
584 |
-
"
|
585 |
-
"
|
|
|
|
|
586 |
msgstr ""
|
587 |
|
588 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
589 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
590 |
-
|
591 |
-
msgid ""
|
592 |
-
"For this to work, you have to enter your website url %s and sign in using "
|
593 |
-
"Twitter at <a href=\"%s\" target=\"_blank\">their website</a>"
|
594 |
-
msgstr ""
|
595 |
-
|
596 |
-
#: ../admin/partials/sassy-social-share-options-page.php:1051
|
597 |
-
#: ../admin/partials/sassy-social-share-options-page.php:1486
|
598 |
-
#, php-format
|
599 |
-
msgid ""
|
600 |
-
"Use <a href=\"%s\" target=\"_blank\">OpenShareCount</a> to show Twitter "
|
601 |
-
"share counts"
|
602 |
-
msgstr ""
|
603 |
-
|
604 |
-
#: ../admin/partials/sassy-social-share-options-page.php:1053
|
605 |
-
#: ../admin/partials/sassy-social-share-options-page.php:1488
|
606 |
-
#, php-format
|
607 |
-
msgid ""
|
608 |
-
"For this to work, you have to sign up and register your website url %s at <a "
|
609 |
-
"href=\"%s\" target=\"_blank\">their website</a>"
|
610 |
msgstr ""
|
611 |
|
612 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
613 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
614 |
msgid "Show total shares"
|
615 |
msgstr ""
|
616 |
|
617 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
618 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
619 |
msgid "If enabled, total shares will be displayed with sharing icons"
|
620 |
msgstr ""
|
621 |
|
622 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
623 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
624 |
msgid "Enable 'More' icon"
|
625 |
msgstr ""
|
626 |
|
627 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
628 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
629 |
msgid ""
|
630 |
"If enabled, \"More\" icon will be displayed after selected sharing icons "
|
631 |
"which shows additional sharing networks in popup"
|
632 |
msgstr ""
|
633 |
|
634 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
635 |
msgid "Floating Sharing Interface Options"
|
636 |
msgstr ""
|
637 |
|
638 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
639 |
msgid "Enable Floating sharing interface"
|
640 |
msgstr ""
|
641 |
|
642 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
643 |
msgid "Master control to enable floating sharing widget"
|
644 |
msgstr ""
|
645 |
|
646 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
647 |
msgid ""
|
648 |
"Specify the color or hex code (example #cc78e0) for the background of "
|
649 |
"vertical sharing bar. Leave empty for transparent. You can get the hex code "
|
@@ -651,123 +639,123 @@ msgid ""
|
|
651 |
"\"_blank\">this link</a>"
|
652 |
msgstr ""
|
653 |
|
654 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
655 |
msgid "Left offset"
|
656 |
msgstr ""
|
657 |
|
658 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
659 |
msgid ""
|
660 |
"Specify a number. Increase in number will shift sharing interface towards "
|
661 |
"right and decrease will shift it towards left. Number can be negative too."
|
662 |
msgstr ""
|
663 |
|
664 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
665 |
msgid "Right offset"
|
666 |
msgstr ""
|
667 |
|
668 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
669 |
msgid ""
|
670 |
"Specify a number. Increase in number will shift sharing interface towards "
|
671 |
"left and decrease will shift it towards right. Number can be negative too."
|
672 |
msgstr ""
|
673 |
|
674 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
675 |
msgid "Top offset"
|
676 |
msgstr ""
|
677 |
|
678 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
679 |
msgid ""
|
680 |
"Specify a number. Increase in number will shift sharing interface towards "
|
681 |
"bottom and decrease will shift it towards top."
|
682 |
msgstr ""
|
683 |
|
684 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
685 |
msgid "BuddyPress group"
|
686 |
msgstr ""
|
687 |
|
688 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
689 |
msgid "Specify the pages where you want to enable vertical Sharing interface"
|
690 |
msgstr ""
|
691 |
|
692 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
693 |
msgid "Vertical floating bar responsiveness"
|
694 |
msgstr ""
|
695 |
|
696 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
697 |
#, php-format
|
698 |
msgid "Display vertical interface only when screen is wider than %s pixels"
|
699 |
msgstr ""
|
700 |
|
701 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
702 |
msgid ""
|
703 |
"Display vertical interface only when screen is wider than the width "
|
704 |
"specified."
|
705 |
msgstr ""
|
706 |
|
707 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
708 |
msgid "Horizontal floating bar responsiveness"
|
709 |
msgstr ""
|
710 |
|
711 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
712 |
#, php-format
|
713 |
msgid ""
|
714 |
"Stick vertical floating interface horizontally at bottom only when screen is "
|
715 |
"narrower than %s pixels"
|
716 |
msgstr ""
|
717 |
|
718 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
719 |
msgid ""
|
720 |
"Stick vertical floating interface horizontally at bottom only when screen is "
|
721 |
"narrower than the width specified"
|
722 |
msgstr ""
|
723 |
|
724 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
725 |
msgid "Horizontal floating bar position"
|
726 |
msgstr ""
|
727 |
|
728 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
729 |
#, php-format
|
730 |
msgid "%s pixels from %s"
|
731 |
msgstr ""
|
732 |
|
733 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
734 |
msgid "Auto-adjust according to screen width (responsive)"
|
735 |
msgstr ""
|
736 |
|
737 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
738 |
msgid "Alignment of horizontal floating interface. Number can be negative too."
|
739 |
msgstr ""
|
740 |
|
741 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
742 |
msgid "Load Javascript files in footer"
|
743 |
msgstr ""
|
744 |
|
745 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
746 |
msgid ""
|
747 |
"If enabled (recommended), Javascript files will be included in the footer of "
|
748 |
"your website."
|
749 |
msgstr ""
|
750 |
|
751 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
752 |
msgid "Delete all the options on plugin deletion"
|
753 |
msgstr ""
|
754 |
|
755 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
756 |
msgid ""
|
757 |
"If enabled, plugin options will get deleted when plugin is deleted/"
|
758 |
"uninstalled and you will need to reconfigure the options when you install "
|
759 |
"the plugin next time."
|
760 |
msgstr ""
|
761 |
|
762 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
763 |
msgid "Share Count Cache"
|
764 |
msgstr ""
|
765 |
|
766 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
767 |
msgid "Refresh Share Count cache every"
|
768 |
msgstr ""
|
769 |
|
770 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
771 |
#, php-format
|
772 |
msgid ""
|
773 |
"Frequent cache refreshing results in slower loading of pages with share "
|
@@ -775,82 +763,82 @@ msgid ""
|
|
775 |
"target=\"_blank\">here</a>"
|
776 |
msgstr ""
|
777 |
|
778 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
779 |
msgid "Clear Share Counts Cache"
|
780 |
msgstr ""
|
781 |
|
782 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
783 |
msgid "Share Counts cache cleared successfully."
|
784 |
msgstr ""
|
785 |
|
786 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
787 |
msgid "Use this to clear cached share counts"
|
788 |
msgstr ""
|
789 |
|
790 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
791 |
msgid "Url shortener"
|
792 |
msgstr ""
|
793 |
|
794 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
795 |
msgid "Use shortlinks already installed"
|
796 |
msgstr ""
|
797 |
|
798 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
799 |
msgid ""
|
800 |
"Use default short url permalinks without the need for any additional plugin"
|
801 |
msgstr ""
|
802 |
|
803 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
804 |
msgid "Enable bit.ly url shortener for sharing"
|
805 |
msgstr ""
|
806 |
|
807 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
808 |
msgid "Master control to enable bit.ly url shortening for sharing"
|
809 |
msgstr ""
|
810 |
|
811 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
812 |
msgid "bit.ly Login"
|
813 |
msgstr ""
|
814 |
|
815 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
816 |
#, php-format
|
817 |
msgid ""
|
818 |
"Login to your bit.ly account and navigate to <a href=\"%s\" target=\"_blank"
|
819 |
"\">this link</a> to get bit.ly Login"
|
820 |
msgstr ""
|
821 |
|
822 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
823 |
msgid "bit.ly API Key"
|
824 |
msgstr ""
|
825 |
|
826 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
827 |
#, php-format
|
828 |
msgid ""
|
829 |
"Login to your bit.ly account and navigate to <a href=\"%s\" target=\"_blank"
|
830 |
"\">this link</a> to get your API key"
|
831 |
msgstr ""
|
832 |
|
833 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
834 |
msgid "Clear Bitly Cache"
|
835 |
msgstr ""
|
836 |
|
837 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
838 |
msgid "ShortUrl cache cleared successfully."
|
839 |
msgstr ""
|
840 |
|
841 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
842 |
msgid ""
|
843 |
"Use this to delete short urls saved in database. Handy, if urls of your "
|
844 |
"website have been changed but short urls are still being generated for old "
|
845 |
"urls."
|
846 |
msgstr ""
|
847 |
|
848 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
849 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
850 |
msgid "Language"
|
851 |
msgstr ""
|
852 |
|
853 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
854 |
#, php-format
|
855 |
msgid ""
|
856 |
"Enter the code of the language you want to use for like buttons. You can "
|
@@ -858,60 +846,60 @@ msgid ""
|
|
858 |
"Leave it empty for default language(English)"
|
859 |
msgstr ""
|
860 |
|
861 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
862 |
msgid "Username in sharing"
|
863 |
msgstr ""
|
864 |
|
865 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
866 |
msgid "Twitter username (without @)"
|
867 |
msgstr ""
|
868 |
|
869 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
870 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
871 |
msgid ""
|
872 |
"Provided username will be appended after the content being shared as \"via "
|
873 |
"@USERNAME\". Leave empty if you do not want any username in the content "
|
874 |
"being shared."
|
875 |
msgstr ""
|
876 |
|
877 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
878 |
msgid "Buffer username (without @)"
|
879 |
msgstr ""
|
880 |
|
881 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
882 |
msgid "AMP"
|
883 |
msgstr ""
|
884 |
|
885 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
886 |
msgid "Enable sharing on AMP pages"
|
887 |
msgstr ""
|
888 |
|
889 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
890 |
msgid "Enable this option to render sharing icons on AMP pages"
|
891 |
msgstr ""
|
892 |
|
893 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
894 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
895 |
msgid "Custom CSS"
|
896 |
msgstr ""
|
897 |
|
898 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
899 |
msgid "You can specify any additional CSS rules (without <style> tag)"
|
900 |
msgstr ""
|
901 |
|
902 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
903 |
msgid "myCRED"
|
904 |
msgstr ""
|
905 |
|
906 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
907 |
msgid "Append myCRED referral ID to the urls being shared"
|
908 |
msgstr ""
|
909 |
|
910 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
911 |
msgid "Facebook Sharing Troubleshooter"
|
912 |
msgstr ""
|
913 |
|
914 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
915 |
msgid ""
|
916 |
"If Facebook sharing is not working fine, click at the following link and "
|
917 |
"enter the problematic url (where Facebook sharing is not working properly) "
|
@@ -919,17 +907,17 @@ msgid ""
|
|
919 |
"button."
|
920 |
msgstr ""
|
921 |
|
922 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
923 |
msgid ""
|
924 |
"<strong>Note:</strong> Plugin will not work on local server. You should have "
|
925 |
"an online website for the plugin to function properly."
|
926 |
msgstr ""
|
927 |
|
928 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
929 |
msgid "Why is Instagram icon redirecting to Instagram website?"
|
930 |
msgstr ""
|
931 |
|
932 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
933 |
msgid ""
|
934 |
"Instagram icon is there to send website visitors to the Instagram page of "
|
935 |
"your choice. You can save the desired Instagram handle in \"Instagram "
|
@@ -937,98 +925,110 @@ msgid ""
|
|
937 |
"sections."
|
938 |
msgstr ""
|
939 |
|
940 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
941 |
msgid ""
|
942 |
"How to restore Social Share counts lost after moving my website to SSL/Https?"
|
943 |
msgstr ""
|
944 |
|
945 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
946 |
msgid "How to integrate Google Analytics with sharing?"
|
947 |
msgstr ""
|
948 |
|
949 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
950 |
msgid "Why the color of share icons is not being updated?"
|
951 |
msgstr ""
|
952 |
|
953 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
954 |
msgid ""
|
955 |
"How to show recent Facebook Comments from all over the website in a widget?"
|
956 |
msgstr ""
|
957 |
|
958 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
959 |
msgid ""
|
960 |
"How to recover the Facebook Comments lost after moving my website to SSL/"
|
961 |
"Https?"
|
962 |
msgstr ""
|
963 |
|
964 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
965 |
msgid "How to Place Title and Social Share Icons in the Same Row?"
|
966 |
msgstr ""
|
967 |
|
968 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
969 |
msgid ""
|
970 |
"Why is sharer not showing the correct image, title and other meta tags "
|
971 |
"content?"
|
972 |
msgstr ""
|
973 |
|
974 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
975 |
msgid ""
|
976 |
"How can I show share counts of my website rather than of individual pages/"
|
977 |
"posts?"
|
978 |
msgstr ""
|
979 |
|
980 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
981 |
msgid "How can I disable sharing on particular page/post?"
|
982 |
msgstr ""
|
983 |
|
984 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
985 |
msgid "How can I specify minimum sharing count for sharing networks?"
|
986 |
msgstr ""
|
987 |
|
988 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
989 |
msgid "How to share specific page?"
|
990 |
msgstr ""
|
991 |
|
992 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
993 |
msgid "How to customize the look of total share counts?"
|
994 |
msgstr ""
|
995 |
|
996 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
997 |
msgid "How to customize the look of individual share counts?"
|
998 |
msgstr ""
|
999 |
|
1000 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
1001 |
msgid "How to show Whatsapp icon only on mobile devices?"
|
1002 |
msgstr ""
|
1003 |
|
1004 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
1005 |
msgid "How to hide arrow after floating sharing bar?"
|
1006 |
msgstr ""
|
1007 |
|
1008 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
1009 |
msgid "Why is share count not getting updated?"
|
1010 |
msgstr ""
|
1011 |
|
1012 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
1013 |
msgid "Why is there so much space between like buttons?"
|
1014 |
msgstr ""
|
1015 |
|
1016 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
1017 |
msgid "Why are floating sharing/like buttons not appearing at homepage?"
|
1018 |
msgstr ""
|
1019 |
|
1020 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
1021 |
msgid "Save Changes"
|
1022 |
msgstr ""
|
1023 |
|
1024 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
1025 |
msgid ""
|
1026 |
"If you can send (to hello@heateor.com) how our plugin is helping your "
|
1027 |
"business, we can share it on Instagram. You can also send any relevant "
|
1028 |
"hashtags and people to mention in the Instagram post."
|
1029 |
msgstr ""
|
1030 |
|
1031 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
1032 |
msgid ""
|
1033 |
"<b>Example</b> - Blah-Blah Online Coaching teaches various programming "
|
1034 |
"language courses through their website. They have emerged as one of the most "
|
@@ -1037,7 +1037,7 @@ msgid ""
|
|
1037 |
"time."
|
1038 |
msgstr ""
|
1039 |
|
1040 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
1041 |
msgid ""
|
1042 |
"@blahblahonlinecoaching proudly use #SassySocialShare to share content of "
|
1043 |
"their website. Be sure to visit their website at \n"
|
@@ -1314,7 +1314,7 @@ msgid "Archives"
|
|
1314 |
msgstr ""
|
1315 |
|
1316 |
#: ../public/class-sassy-social-share-public.php:1475
|
1317 |
-
#: ../public/class-sassy-social-share-public.php:
|
1318 |
msgid "Invalid request"
|
1319 |
msgstr ""
|
1320 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Sassy Social Share\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2018-11-27 11:34+0530\n"
|
6 |
+
"PO-Revision-Date: 2018-11-27 11:34+0530\n"
|
7 |
"Last-Translator: Team Heateor <hello@heateor.com>\n"
|
8 |
"Language-Team: Heateor <hello@heateor.com>\n"
|
9 |
"Language: en_IN\n"
|
64 |
msgid "Dismiss this notice"
|
65 |
msgstr ""
|
66 |
|
67 |
+
#: ../admin/class-sassy-social-share-admin.php:483
|
68 |
msgid ""
|
69 |
"Update \"Social Share myCRED Integration\" add-on for maximum compatibility "
|
70 |
"with current version of Sassy Social Share"
|
71 |
msgstr ""
|
72 |
|
73 |
+
#: ../admin/class-sassy-social-share-admin.php:507
|
74 |
+
#: ../admin/class-sassy-social-share-admin.php:580
|
75 |
#, php-format
|
76 |
msgid ""
|
77 |
"This plugin is GDPR compliant. You need to update the privacy policy of your "
|
79 |
"\"%s\" target=\"_blank\">here</a>"
|
80 |
msgstr ""
|
81 |
|
82 |
+
#: ../admin/class-sassy-social-share-admin.php:507
|
83 |
+
#: ../admin/class-sassy-social-share-admin.php:533
|
84 |
+
#: ../admin/class-sassy-social-share-admin.php:556
|
85 |
+
#: ../admin/class-sassy-social-share-admin.php:580
|
86 |
msgid "Okay"
|
87 |
msgstr ""
|
88 |
|
89 |
+
#: ../admin/class-sassy-social-share-admin.php:533
|
90 |
#, php-format
|
91 |
msgid ""
|
92 |
"Twitter share counts are no longer working as newsharecounts.com is down. To "
|
94 |
"\"_blank\">here</a> with this domain. No other steps needed."
|
95 |
msgstr ""
|
96 |
|
97 |
+
#: ../admin/class-sassy-social-share-admin.php:556
|
98 |
+
#, php-format
|
99 |
+
msgid ""
|
100 |
+
"Now plugin supports a new service Twitcount.com to show Twitter shares. To "
|
101 |
+
"continue showing the Twitter shares, click \"Give me my Twitter counts back"
|
102 |
+
"\" button at <a href=\"%s\" target=\"_blank\">their website</a> and register "
|
103 |
+
"your website %s with them. No need to copy-paste any code from their website."
|
104 |
+
msgstr ""
|
105 |
+
|
106 |
+
#: ../admin/class-sassy-social-share-admin.php:597
|
107 |
msgid "Add-Ons"
|
108 |
msgstr ""
|
109 |
|
110 |
+
#: ../admin/class-sassy-social-share-admin.php:598
|
111 |
msgid "Support Documentation"
|
112 |
msgstr ""
|
113 |
|
114 |
+
#: ../admin/class-sassy-social-share-admin.php:599
|
115 |
msgid "Settings"
|
116 |
msgstr ""
|
117 |
|
128 |
msgstr ""
|
129 |
|
130 |
#: ../admin/partials/sassy-social-share-options-page.php:22
|
131 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1566
|
132 |
msgid "Miscellaneous"
|
133 |
msgstr ""
|
134 |
|
137 |
msgstr ""
|
138 |
|
139 |
#: ../admin/partials/sassy-social-share-options-page.php:30
|
140 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1914
|
141 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1916
|
142 |
msgid "Shortcode & Widget"
|
143 |
msgstr ""
|
144 |
|
147 |
msgstr ""
|
148 |
|
149 |
#: ../admin/partials/sassy-social-share-options-page.php:32
|
150 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1947
|
151 |
msgid "FAQ"
|
152 |
msgstr ""
|
153 |
|
269 |
|
270 |
#: ../admin/partials/sassy-social-share-options-page.php:265
|
271 |
#: ../admin/partials/sassy-social-share-options-page.php:573
|
272 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1284
|
273 |
#: ../includes/class-sassy-social-share-widgets.php:413
|
274 |
msgid "Background Color"
|
275 |
msgstr ""
|
320 |
#: ../admin/partials/sassy-social-share-options-page.php:315
|
321 |
#: ../admin/partials/sassy-social-share-options-page.php:622
|
322 |
#: ../admin/partials/sassy-social-share-options-page.php:901
|
323 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1306
|
324 |
#: ../includes/class-sassy-social-share-widgets.php:399
|
325 |
msgid "Left"
|
326 |
msgstr ""
|
333 |
#: ../admin/partials/sassy-social-share-options-page.php:319
|
334 |
#: ../admin/partials/sassy-social-share-options-page.php:626
|
335 |
#: ../admin/partials/sassy-social-share-options-page.php:903
|
336 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1307
|
337 |
#: ../includes/class-sassy-social-share-widgets.php:400
|
338 |
msgid "Right"
|
339 |
msgstr ""
|
385 |
msgstr ""
|
386 |
|
387 |
#: ../admin/partials/sassy-social-share-options-page.php:686
|
388 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1110
|
389 |
msgid "Target Url"
|
390 |
msgstr ""
|
391 |
|
392 |
#: ../admin/partials/sassy-social-share-options-page.php:690
|
393 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1114
|
394 |
msgid "Url of the webpage where icons are located (default)"
|
395 |
msgstr ""
|
396 |
|
397 |
#: ../admin/partials/sassy-social-share-options-page.php:692
|
398 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1116
|
399 |
msgid "Url of the homepage of your website"
|
400 |
msgstr ""
|
401 |
|
402 |
#: ../admin/partials/sassy-social-share-options-page.php:694
|
403 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1118
|
404 |
msgid "Custom url"
|
405 |
msgstr ""
|
406 |
|
407 |
#: ../admin/partials/sassy-social-share-options-page.php:701
|
408 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1125
|
409 |
msgid "Url to share"
|
410 |
msgstr ""
|
411 |
|
419 |
msgstr ""
|
420 |
|
421 |
#: ../admin/partials/sassy-social-share-options-page.php:743
|
422 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1134
|
423 |
msgid "Instagram username"
|
424 |
msgstr ""
|
425 |
|
426 |
#: ../admin/partials/sassy-social-share-options-page.php:753
|
427 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1144
|
428 |
msgid ""
|
429 |
"Username of the Instagram account you want to redirect users to, on clicking "
|
430 |
"the icon"
|
431 |
msgstr ""
|
432 |
|
433 |
#: ../admin/partials/sassy-social-share-options-page.php:763
|
434 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1154
|
435 |
msgid "HTML ID of container element of comment form"
|
436 |
msgstr ""
|
437 |
|
438 |
#: ../admin/partials/sassy-social-share-options-page.php:773
|
439 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1164
|
440 |
msgid ""
|
441 |
"HTML ID of the element you want to focus on the webpage, on click of Comment "
|
442 |
"icon."
|
443 |
msgstr ""
|
444 |
|
445 |
#: ../admin/partials/sassy-social-share-options-page.php:786
|
446 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1173
|
447 |
msgid "Rearrange icons"
|
448 |
msgstr ""
|
449 |
|
450 |
#: ../admin/partials/sassy-social-share-options-page.php:845
|
451 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1232
|
452 |
msgid "Drag the icons to rearrange in desired order"
|
453 |
msgstr ""
|
454 |
|
455 |
#: ../admin/partials/sassy-social-share-options-page.php:853
|
456 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1240
|
457 |
msgid "Select Sharing Services"
|
458 |
msgstr ""
|
459 |
|
460 |
#: ../admin/partials/sassy-social-share-options-page.php:860
|
461 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1247
|
462 |
msgid "Select sharing services to show in social share bar"
|
463 |
msgstr ""
|
464 |
|
465 |
#: ../admin/partials/sassy-social-share-options-page.php:878
|
466 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1265
|
467 |
msgid "Search social network"
|
468 |
msgstr ""
|
469 |
|
470 |
#: ../admin/partials/sassy-social-share-options-page.php:897
|
471 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1302
|
472 |
msgid "Horizontal alignment"
|
473 |
msgstr ""
|
474 |
|
477 |
msgstr ""
|
478 |
|
479 |
#: ../admin/partials/sassy-social-share-options-page.php:911
|
480 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1315
|
481 |
msgid "Horizontal alignment of the sharing interface"
|
482 |
msgstr ""
|
483 |
|
498 |
msgstr ""
|
499 |
|
500 |
#: ../admin/partials/sassy-social-share-options-page.php:940
|
501 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1381
|
502 |
msgid "Placement"
|
503 |
msgstr ""
|
504 |
|
505 |
#: ../admin/partials/sassy-social-share-options-page.php:944
|
506 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1385
|
507 |
msgid "Homepage"
|
508 |
msgstr ""
|
509 |
|
510 |
#: ../admin/partials/sassy-social-share-options-page.php:946
|
511 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1387
|
512 |
msgid "Posts"
|
513 |
msgstr ""
|
514 |
|
515 |
#: ../admin/partials/sassy-social-share-options-page.php:948
|
516 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1389
|
517 |
msgid "Pages"
|
518 |
msgstr ""
|
519 |
|
520 |
#: ../admin/partials/sassy-social-share-options-page.php:950
|
521 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1391
|
522 |
msgid "Excerpts and Posts page"
|
523 |
msgstr ""
|
524 |
|
525 |
#: ../admin/partials/sassy-social-share-options-page.php:952
|
526 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1393
|
527 |
msgid "Category Archives"
|
528 |
msgstr ""
|
529 |
|
530 |
#: ../admin/partials/sassy-social-share-options-page.php:954
|
531 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1395
|
532 |
msgid "Archive Pages (Category, Tag, Author or Date based pages)"
|
533 |
msgstr ""
|
534 |
|
541 |
msgstr ""
|
542 |
|
543 |
#: ../admin/partials/sassy-social-share-options-page.php:978
|
544 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1417
|
545 |
msgid "BBPress forum"
|
546 |
msgstr ""
|
547 |
|
548 |
#: ../admin/partials/sassy-social-share-options-page.php:981
|
549 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1420
|
550 |
msgid "BBPress topic"
|
551 |
msgstr ""
|
552 |
|
571 |
msgstr ""
|
572 |
|
573 |
#: ../admin/partials/sassy-social-share-options-page.php:1016
|
574 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1438
|
575 |
msgid "Show share counts"
|
576 |
msgstr ""
|
577 |
|
578 |
#: ../admin/partials/sassy-social-share-options-page.php:1021
|
579 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1443
|
580 |
msgid ""
|
581 |
"Share counts are supported for Facebook, Twitter, Linkedin, Buffer, Reddit, "
|
582 |
"Pinterest, Odnoklassniki and Vkontakte"
|
583 |
msgstr ""
|
584 |
|
585 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1022
|
586 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1444
|
|
|
|
|
|
|
|
|
|
|
587 |
#, php-format
|
588 |
msgid ""
|
589 |
+
"To show Twitter share count, you have to click \"Give me my Twitter counts "
|
590 |
+
"back\" button at <a href=\"%s\" target=\"_blank\">TwitCount.com</a> and "
|
591 |
+
"register your website %s with them. No need to copy-paste any code from "
|
592 |
+
"their website."
|
593 |
msgstr ""
|
594 |
|
595 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1029
|
596 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1451
|
597 |
+
msgid "If enabled, share counts are displayed above sharing icons."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
598 |
msgstr ""
|
599 |
|
600 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1038
|
601 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1460
|
602 |
msgid "Show total shares"
|
603 |
msgstr ""
|
604 |
|
605 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1048
|
606 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1470
|
607 |
msgid "If enabled, total shares will be displayed with sharing icons"
|
608 |
msgstr ""
|
609 |
|
610 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1057
|
611 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1479
|
612 |
msgid "Enable 'More' icon"
|
613 |
msgstr ""
|
614 |
|
615 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1067
|
616 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1489
|
617 |
msgid ""
|
618 |
"If enabled, \"More\" icon will be displayed after selected sharing icons "
|
619 |
"which shows additional sharing networks in popup"
|
620 |
msgstr ""
|
621 |
|
622 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1084
|
623 |
msgid "Floating Sharing Interface Options"
|
624 |
msgstr ""
|
625 |
|
626 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1090
|
627 |
msgid "Enable Floating sharing interface"
|
628 |
msgstr ""
|
629 |
|
630 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1100
|
631 |
msgid "Master control to enable floating sharing widget"
|
632 |
msgstr ""
|
633 |
|
634 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1294
|
635 |
msgid ""
|
636 |
"Specify the color or hex code (example #cc78e0) for the background of "
|
637 |
"vertical sharing bar. Leave empty for transparent. You can get the hex code "
|
639 |
"\"_blank\">this link</a>"
|
640 |
msgstr ""
|
641 |
|
642 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1324
|
643 |
msgid "Left offset"
|
644 |
msgstr ""
|
645 |
|
646 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1334
|
647 |
msgid ""
|
648 |
"Specify a number. Increase in number will shift sharing interface towards "
|
649 |
"right and decrease will shift it towards left. Number can be negative too."
|
650 |
msgstr ""
|
651 |
|
652 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1344
|
653 |
msgid "Right offset"
|
654 |
msgstr ""
|
655 |
|
656 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1354
|
657 |
msgid ""
|
658 |
"Specify a number. Increase in number will shift sharing interface towards "
|
659 |
"left and decrease will shift it towards right. Number can be negative too."
|
660 |
msgstr ""
|
661 |
|
662 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1363
|
663 |
msgid "Top offset"
|
664 |
msgstr ""
|
665 |
|
666 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1373
|
667 |
msgid ""
|
668 |
"Specify a number. Increase in number will shift sharing interface towards "
|
669 |
"bottom and decrease will shift it towards top."
|
670 |
msgstr ""
|
671 |
|
672 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1409
|
673 |
msgid "BuddyPress group"
|
674 |
msgstr ""
|
675 |
|
676 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1430
|
677 |
msgid "Specify the pages where you want to enable vertical Sharing interface"
|
678 |
msgstr ""
|
679 |
|
680 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1497
|
681 |
msgid "Vertical floating bar responsiveness"
|
682 |
msgstr ""
|
683 |
|
684 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1500
|
685 |
#, php-format
|
686 |
msgid "Display vertical interface only when screen is wider than %s pixels"
|
687 |
msgstr ""
|
688 |
|
689 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1507
|
690 |
msgid ""
|
691 |
"Display vertical interface only when screen is wider than the width "
|
692 |
"specified."
|
693 |
msgstr ""
|
694 |
|
695 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1515
|
696 |
msgid "Horizontal floating bar responsiveness"
|
697 |
msgstr ""
|
698 |
|
699 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1518
|
700 |
#, php-format
|
701 |
msgid ""
|
702 |
"Stick vertical floating interface horizontally at bottom only when screen is "
|
703 |
"narrower than %s pixels"
|
704 |
msgstr ""
|
705 |
|
706 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1525
|
707 |
msgid ""
|
708 |
"Stick vertical floating interface horizontally at bottom only when screen is "
|
709 |
"narrower than the width specified"
|
710 |
msgstr ""
|
711 |
|
712 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1535
|
713 |
msgid "Horizontal floating bar position"
|
714 |
msgstr ""
|
715 |
|
716 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1538
|
717 |
#, php-format
|
718 |
msgid "%s pixels from %s"
|
719 |
msgstr ""
|
720 |
|
721 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1539
|
722 |
msgid "Auto-adjust according to screen width (responsive)"
|
723 |
msgstr ""
|
724 |
|
725 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1546
|
726 |
msgid "Alignment of horizontal floating interface. Number can be negative too."
|
727 |
msgstr ""
|
728 |
|
729 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1572
|
730 |
msgid "Load Javascript files in footer"
|
731 |
msgstr ""
|
732 |
|
733 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1582
|
734 |
msgid ""
|
735 |
"If enabled (recommended), Javascript files will be included in the footer of "
|
736 |
"your website."
|
737 |
msgstr ""
|
738 |
|
739 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1590
|
740 |
msgid "Delete all the options on plugin deletion"
|
741 |
msgstr ""
|
742 |
|
743 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1600
|
744 |
msgid ""
|
745 |
"If enabled, plugin options will get deleted when plugin is deleted/"
|
746 |
"uninstalled and you will need to reconfigure the options when you install "
|
747 |
"the plugin next time."
|
748 |
msgstr ""
|
749 |
|
750 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1609
|
751 |
msgid "Share Count Cache"
|
752 |
msgstr ""
|
753 |
|
754 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1615
|
755 |
msgid "Refresh Share Count cache every"
|
756 |
msgstr ""
|
757 |
|
758 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1631
|
759 |
#, php-format
|
760 |
msgid ""
|
761 |
"Frequent cache refreshing results in slower loading of pages with share "
|
763 |
"target=\"_blank\">here</a>"
|
764 |
msgstr ""
|
765 |
|
766 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1639
|
767 |
msgid "Clear Share Counts Cache"
|
768 |
msgstr ""
|
769 |
|
770 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1643
|
771 |
msgid "Share Counts cache cleared successfully."
|
772 |
msgstr ""
|
773 |
|
774 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1650
|
775 |
msgid "Use this to clear cached share counts"
|
776 |
msgstr ""
|
777 |
|
778 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1659
|
779 |
msgid "Url shortener"
|
780 |
msgstr ""
|
781 |
|
782 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1665
|
783 |
msgid "Use shortlinks already installed"
|
784 |
msgstr ""
|
785 |
|
786 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1675
|
787 |
msgid ""
|
788 |
"Use default short url permalinks without the need for any additional plugin"
|
789 |
msgstr ""
|
790 |
|
791 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1683
|
792 |
msgid "Enable bit.ly url shortener for sharing"
|
793 |
msgstr ""
|
794 |
|
795 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1693
|
796 |
msgid "Master control to enable bit.ly url shortening for sharing"
|
797 |
msgstr ""
|
798 |
|
799 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1701
|
800 |
msgid "bit.ly Login"
|
801 |
msgstr ""
|
802 |
|
803 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1711
|
804 |
#, php-format
|
805 |
msgid ""
|
806 |
"Login to your bit.ly account and navigate to <a href=\"%s\" target=\"_blank"
|
807 |
"\">this link</a> to get bit.ly Login"
|
808 |
msgstr ""
|
809 |
|
810 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1720
|
811 |
msgid "bit.ly API Key"
|
812 |
msgstr ""
|
813 |
|
814 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1730
|
815 |
#, php-format
|
816 |
msgid ""
|
817 |
"Login to your bit.ly account and navigate to <a href=\"%s\" target=\"_blank"
|
818 |
"\">this link</a> to get your API key"
|
819 |
msgstr ""
|
820 |
|
821 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1739
|
822 |
msgid "Clear Bitly Cache"
|
823 |
msgstr ""
|
824 |
|
825 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1743
|
826 |
msgid "ShortUrl cache cleared successfully."
|
827 |
msgstr ""
|
828 |
|
829 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1750
|
830 |
msgid ""
|
831 |
"Use this to delete short urls saved in database. Handy, if urls of your "
|
832 |
"website have been changed but short urls are still being generated for old "
|
833 |
"urls."
|
834 |
msgstr ""
|
835 |
|
836 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1759
|
837 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1765
|
838 |
msgid "Language"
|
839 |
msgstr ""
|
840 |
|
841 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1775
|
842 |
#, php-format
|
843 |
msgid ""
|
844 |
"Enter the code of the language you want to use for like buttons. You can "
|
846 |
"Leave it empty for default language(English)"
|
847 |
msgstr ""
|
848 |
|
849 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1784
|
850 |
msgid "Username in sharing"
|
851 |
msgstr ""
|
852 |
|
853 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1790
|
854 |
msgid "Twitter username (without @)"
|
855 |
msgstr ""
|
856 |
|
857 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1800
|
858 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1819
|
859 |
msgid ""
|
860 |
"Provided username will be appended after the content being shared as \"via "
|
861 |
"@USERNAME\". Leave empty if you do not want any username in the content "
|
862 |
"being shared."
|
863 |
msgstr ""
|
864 |
|
865 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1809
|
866 |
msgid "Buffer username (without @)"
|
867 |
msgstr ""
|
868 |
|
869 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1828
|
870 |
msgid "AMP"
|
871 |
msgstr ""
|
872 |
|
873 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1834
|
874 |
msgid "Enable sharing on AMP pages"
|
875 |
msgstr ""
|
876 |
|
877 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1844
|
878 |
msgid "Enable this option to render sharing icons on AMP pages"
|
879 |
msgstr ""
|
880 |
|
881 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1853
|
882 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1859
|
883 |
msgid "Custom CSS"
|
884 |
msgstr ""
|
885 |
|
886 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1869
|
887 |
msgid "You can specify any additional CSS rules (without <style> tag)"
|
888 |
msgstr ""
|
889 |
|
890 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1888
|
891 |
msgid "myCRED"
|
892 |
msgstr ""
|
893 |
|
894 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1894
|
895 |
msgid "Append myCRED referral ID to the urls being shared"
|
896 |
msgstr ""
|
897 |
|
898 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1927
|
899 |
msgid "Facebook Sharing Troubleshooter"
|
900 |
msgstr ""
|
901 |
|
902 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1932
|
903 |
msgid ""
|
904 |
"If Facebook sharing is not working fine, click at the following link and "
|
905 |
"enter the problematic url (where Facebook sharing is not working properly) "
|
907 |
"button."
|
908 |
msgstr ""
|
909 |
|
910 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1949
|
911 |
msgid ""
|
912 |
"<strong>Note:</strong> Plugin will not work on local server. You should have "
|
913 |
"an online website for the plugin to function properly."
|
914 |
msgstr ""
|
915 |
|
916 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1951
|
917 |
msgid "Why is Instagram icon redirecting to Instagram website?"
|
918 |
msgstr ""
|
919 |
|
920 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1952
|
921 |
msgid ""
|
922 |
"Instagram icon is there to send website visitors to the Instagram page of "
|
923 |
"your choice. You can save the desired Instagram handle in \"Instagram "
|
925 |
"sections."
|
926 |
msgstr ""
|
927 |
|
928 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1955
|
929 |
+
msgid ""
|
930 |
+
"Why are Twitter shares not appearing even after registering at Twitcount.com?"
|
931 |
+
msgstr ""
|
932 |
+
|
933 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1956
|
934 |
+
msgid ""
|
935 |
+
"It takes some time for their service to track the shares made on Twitter "
|
936 |
+
"from your website. If you still feel it's taking too long you can contact "
|
937 |
+
"their support directly from their website."
|
938 |
+
msgstr ""
|
939 |
+
|
940 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1958
|
941 |
msgid ""
|
942 |
"How to restore Social Share counts lost after moving my website to SSL/Https?"
|
943 |
msgstr ""
|
944 |
|
945 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1959
|
946 |
msgid "How to integrate Google Analytics with sharing?"
|
947 |
msgstr ""
|
948 |
|
949 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1960
|
950 |
msgid "Why the color of share icons is not being updated?"
|
951 |
msgstr ""
|
952 |
|
953 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1961
|
954 |
msgid ""
|
955 |
"How to show recent Facebook Comments from all over the website in a widget?"
|
956 |
msgstr ""
|
957 |
|
958 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1962
|
959 |
msgid ""
|
960 |
"How to recover the Facebook Comments lost after moving my website to SSL/"
|
961 |
"Https?"
|
962 |
msgstr ""
|
963 |
|
964 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1963
|
965 |
msgid "How to Place Title and Social Share Icons in the Same Row?"
|
966 |
msgstr ""
|
967 |
|
968 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1964
|
969 |
msgid ""
|
970 |
"Why is sharer not showing the correct image, title and other meta tags "
|
971 |
"content?"
|
972 |
msgstr ""
|
973 |
|
974 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1965
|
975 |
msgid ""
|
976 |
"How can I show share counts of my website rather than of individual pages/"
|
977 |
"posts?"
|
978 |
msgstr ""
|
979 |
|
980 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1966
|
981 |
msgid "How can I disable sharing on particular page/post?"
|
982 |
msgstr ""
|
983 |
|
984 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1967
|
985 |
msgid "How can I specify minimum sharing count for sharing networks?"
|
986 |
msgstr ""
|
987 |
|
988 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1968
|
989 |
msgid "How to share specific page?"
|
990 |
msgstr ""
|
991 |
|
992 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1969
|
993 |
msgid "How to customize the look of total share counts?"
|
994 |
msgstr ""
|
995 |
|
996 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1970
|
997 |
msgid "How to customize the look of individual share counts?"
|
998 |
msgstr ""
|
999 |
|
1000 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1971
|
1001 |
msgid "How to show Whatsapp icon only on mobile devices?"
|
1002 |
msgstr ""
|
1003 |
|
1004 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1972
|
1005 |
msgid "How to hide arrow after floating sharing bar?"
|
1006 |
msgstr ""
|
1007 |
|
1008 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1973
|
1009 |
msgid "Why is share count not getting updated?"
|
1010 |
msgstr ""
|
1011 |
|
1012 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1974
|
1013 |
msgid "Why is there so much space between like buttons?"
|
1014 |
msgstr ""
|
1015 |
|
1016 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1975
|
1017 |
msgid "Why are floating sharing/like buttons not appearing at homepage?"
|
1018 |
msgstr ""
|
1019 |
|
1020 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1985
|
1021 |
msgid "Save Changes"
|
1022 |
msgstr ""
|
1023 |
|
1024 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1991
|
1025 |
msgid ""
|
1026 |
"If you can send (to hello@heateor.com) how our plugin is helping your "
|
1027 |
"business, we can share it on Instagram. You can also send any relevant "
|
1028 |
"hashtags and people to mention in the Instagram post."
|
1029 |
msgstr ""
|
1030 |
|
1031 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1992
|
1032 |
msgid ""
|
1033 |
"<b>Example</b> - Blah-Blah Online Coaching teaches various programming "
|
1034 |
"language courses through their website. They have emerged as one of the most "
|
1037 |
"time."
|
1038 |
msgstr ""
|
1039 |
|
1040 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1993
|
1041 |
msgid ""
|
1042 |
"@blahblahonlinecoaching proudly use #SassySocialShare to share content of "
|
1043 |
"their website. Be sure to visit their website at \n"
|
1314 |
msgstr ""
|
1315 |
|
1316 |
#: ../public/class-sassy-social-share-public.php:1475
|
1317 |
+
#: ../public/class-sassy-social-share-public.php:1695
|
1318 |
msgid "Invalid request"
|
1319 |
msgstr ""
|
1320 |
|
public/class-sassy-social-share-public.php
CHANGED
@@ -1481,19 +1481,6 @@ class Sassy_Social_Share_Public {
|
|
1481 |
$this->ajax_response( array( 'status' => 0, 'message' => __( 'Providers not selected' ) ) );
|
1482 |
}
|
1483 |
|
1484 |
-
$tweet_count_service = 'newsharecounts';
|
1485 |
-
if ( isset( $this->options['tweet_count_service'] ) ) {
|
1486 |
-
$tweet_count_service = $this->options['tweet_count_service'];
|
1487 |
-
} elseif ( isset( $this->options['vertical_tweet_count_service'] ) ) {
|
1488 |
-
$tweet_count_service = $this->options['vertical_tweet_count_service'];
|
1489 |
-
}
|
1490 |
-
|
1491 |
-
if ( $tweet_count_service == 'opensharecount' ) {
|
1492 |
-
$twitter_count_api = 'http://opensharecount.com/count.json?url=';
|
1493 |
-
} elseif ( $tweet_count_service == 'newsharecounts' ) {
|
1494 |
-
$twitter_count_api = 'http://public.newsharecounts.com/count.json?url=';
|
1495 |
-
}
|
1496 |
-
|
1497 |
$response_data = array();
|
1498 |
$ajax_response = array();
|
1499 |
|
@@ -1542,7 +1529,7 @@ class Sassy_Social_Share_Public {
|
|
1542 |
foreach ( $sharing_networks as $provider ) {
|
1543 |
switch ( $provider ) {
|
1544 |
case 'twitter':
|
1545 |
-
$url =
|
1546 |
break;
|
1547 |
case 'linkedin':
|
1548 |
$url = 'https://www.linkedin.com/countserv/count/share?url=' . $target_url . '&format=json';
|
1481 |
$this->ajax_response( array( 'status' => 0, 'message' => __( 'Providers not selected' ) ) );
|
1482 |
}
|
1483 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1484 |
$response_data = array();
|
1485 |
$ajax_response = array();
|
1486 |
|
1529 |
foreach ( $sharing_networks as $provider ) {
|
1530 |
switch ( $provider ) {
|
1531 |
case 'twitter':
|
1532 |
+
$url = "https://counts.twitcount.com/counts.php?url=" . $target_url;
|
1533 |
break;
|
1534 |
case 'linkedin':
|
1535 |
$url = 'https://www.linkedin.com/countserv/count/share?url=' . $target_url . '&format=json';
|
readme.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: Heateor
|
|
3 |
Donate link: https://www.heateor.com/donate/?action=Sassy+Social+Share
|
4 |
Tags: social share, social sharing, social media share, share facebook, facebook social share, wordpress social share, share buttons, social share buttons, facebook like, twitter tweet, google +1, google plus share
|
5 |
Requires at least: 2.5.0
|
6 |
-
Tested up to:
|
7 |
-
Stable tag: 3.2.
|
8 |
License: GPLv2 or later
|
9 |
|
10 |
Slickest, Simplest and Optimized Share buttons. Facebook, Twitter, Google+, Pinterest, WhatsApp and over 100 more.
|
@@ -21,6 +21,7 @@ This is the Simplest and Smoothest Social Sharing plugin with optimized and grea
|
|
21 |
|
22 |
= Feature list =
|
23 |
* GDPR Compliant
|
|
|
24 |
* Around **100 Social Sharing/Bookmarking** services
|
25 |
* Social Media follow icons (Redirect website visitors to your Social Media pages)
|
26 |
* Share counts are supported for Facebook, Linkedin, Twitter, Buffer, Reddit, Pinterest, Odnoklassniki and Vkontakte
|
@@ -122,6 +123,9 @@ Yes, we can help you with it. Just drop an email at support[at]heateor[dot]com
|
|
122 |
4. **Universal Sharing Popup**: Universal Sharing popup having all the supported sharing and bookmarking services
|
123 |
|
124 |
== Changelog ==
|
|
|
|
|
|
|
125 |
= 3.2.8 =
|
126 |
* [Bugfix] Pinterest shares disappeared due to changes in Pinterest API
|
127 |
|
@@ -622,4 +626,7 @@ Yes, we can help you with it. Just drop an email at support[at]heateor[dot]com
|
|
622 |
* [Bugfix] Hover icon color was not working for Instagram, StockTwits, GentleReader and Mix social share logos (thanks danira-horses.ru)
|
623 |
|
624 |
= 3.2.8 =
|
625 |
-
* [Bugfix] Pinterest shares disappeared due to changes in Pinterest API
|
|
|
|
|
|
3 |
Donate link: https://www.heateor.com/donate/?action=Sassy+Social+Share
|
4 |
Tags: social share, social sharing, social media share, share facebook, facebook social share, wordpress social share, share buttons, social share buttons, facebook like, twitter tweet, google +1, google plus share
|
5 |
Requires at least: 2.5.0
|
6 |
+
Tested up to: 5.0
|
7 |
+
Stable tag: 3.2.9
|
8 |
License: GPLv2 or later
|
9 |
|
10 |
Slickest, Simplest and Optimized Share buttons. Facebook, Twitter, Google+, Pinterest, WhatsApp and over 100 more.
|
21 |
|
22 |
= Feature list =
|
23 |
* GDPR Compliant
|
24 |
+
* Compatible with Gutenberg editor
|
25 |
* Around **100 Social Sharing/Bookmarking** services
|
26 |
* Social Media follow icons (Redirect website visitors to your Social Media pages)
|
27 |
* Share counts are supported for Facebook, Linkedin, Twitter, Buffer, Reddit, Pinterest, Odnoklassniki and Vkontakte
|
123 |
4. **Universal Sharing Popup**: Universal Sharing popup having all the supported sharing and bookmarking services
|
124 |
|
125 |
== Changelog ==
|
126 |
+
= 3.2.9 =
|
127 |
+
* [Bugfix] Added TwitCount.com service to get Twitter share counts working again
|
128 |
+
|
129 |
= 3.2.8 =
|
130 |
* [Bugfix] Pinterest shares disappeared due to changes in Pinterest API
|
131 |
|
626 |
* [Bugfix] Hover icon color was not working for Instagram, StockTwits, GentleReader and Mix social share logos (thanks danira-horses.ru)
|
627 |
|
628 |
= 3.2.8 =
|
629 |
+
* [Bugfix] Pinterest shares disappeared due to changes in Pinterest API
|
630 |
+
|
631 |
+
= 3.2.9 =
|
632 |
+
* [Bugfix] Added TwitCount.com service to get Twitter share counts working again
|
sassy-social-share.php
CHANGED
@@ -7,7 +7,7 @@
|
|
7 |
* Plugin Name: Sassy Social Share
|
8 |
* Plugin URI: https://www.heateor.com
|
9 |
* Description: Slickest, Simplest and Optimized Share buttons. Facebook, Twitter, Google+, Pinterest, WhatsApp and over 100 more.
|
10 |
-
* Version: 3.2.
|
11 |
* Author: Team Heateor
|
12 |
* Author URI: https://www.heateor.com
|
13 |
* Text Domain: sassy-social-share
|
@@ -21,7 +21,7 @@ if ( ! defined( 'WPINC' ) ) {
|
|
21 |
die;
|
22 |
}
|
23 |
|
24 |
-
define( 'HEATEOR_SSS_VERSION', '3.2.
|
25 |
define( 'HEATEOR_SSS_PLUGIN_DIR', plugin_dir_path(__FILE__) );
|
26 |
|
27 |
// plugin core class object
|
@@ -127,7 +127,6 @@ function heateor_sss_save_default_options() {
|
|
127 |
'twitter_username' => '',
|
128 |
'buffer_username' => '',
|
129 |
'custom_css' => '',
|
130 |
-
'tweet_count_service' => 'opensharecount',
|
131 |
'amp_enable' => '1'
|
132 |
) );
|
133 |
|
7 |
* Plugin Name: Sassy Social Share
|
8 |
* Plugin URI: https://www.heateor.com
|
9 |
* Description: Slickest, Simplest and Optimized Share buttons. Facebook, Twitter, Google+, Pinterest, WhatsApp and over 100 more.
|
10 |
+
* Version: 3.2.9
|
11 |
* Author: Team Heateor
|
12 |
* Author URI: https://www.heateor.com
|
13 |
* Text Domain: sassy-social-share
|
21 |
die;
|
22 |
}
|
23 |
|
24 |
+
define( 'HEATEOR_SSS_VERSION', '3.2.9' );
|
25 |
define( 'HEATEOR_SSS_PLUGIN_DIR', plugin_dir_path(__FILE__) );
|
26 |
|
27 |
// plugin core class object
|
127 |
'twitter_username' => '',
|
128 |
'buffer_username' => '',
|
129 |
'custom_css' => '',
|
|
|
130 |
'amp_enable' => '1'
|
131 |
) );
|
132 |
|