Version Description
[14 July 2021] = * [Improvement] Admin UI improvements * [Improvement] Performance improvement of Social Media Follow widget
Download this release
Release Info
Developer | Heateor |
Plugin | WordPress Social Sharing Plugin – Sassy Social Share |
Version | 3.3.22 |
Comparing to | |
See all releases |
Code changes from version 3.3.21 to 3.3.22
- admin/class-sassy-social-share-admin.php +1 -41
- admin/js/sassy-social-share-options.js +0 -15
- admin/partials/sassy-social-share-options-page.php +11 -77
- includes/class-sassy-social-share-sharing-networks.php +0 -6
- includes/class-sassy-social-share-widgets.php +1 -2
- includes/class-sassy-social-share.php +0 -2
- languages/sassy-social-share.pot +227 -265
- public/class-sassy-social-share-public.php +0 -26
- readme.txt +10 -2
- sassy-social-share.php +2 -4
admin/class-sassy-social-share-admin.php
CHANGED
@@ -215,7 +215,7 @@ class Sassy_Social_Share_Admin {
|
|
215 |
<?php _e( 'Disable Floating Sharing interface on this ' . $postType, 'sassy-social-share' ) ?>
|
216 |
</label>
|
217 |
<?php
|
218 |
-
$valid_networks = array( '
|
219 |
if ( isset( $this->options['hor_enable'] ) && isset( $this->options['horizontal_counts'] ) && isset( $this->options['horizontal_re_providers'] ) && count( $this->options['horizontal_re_providers'] ) > 0 ) {
|
220 |
?>
|
221 |
<p>
|
@@ -526,18 +526,6 @@ class Sassy_Social_Share_Admin {
|
|
526 |
|
527 |
}
|
528 |
|
529 |
-
/**
|
530 |
-
* Save Facebook share count notification flag in DB
|
531 |
-
*
|
532 |
-
* @since 3.2.20
|
533 |
-
*/
|
534 |
-
public function fb_count_notification_read() {
|
535 |
-
|
536 |
-
update_option( 'heateor_sss_fb_count_notification_read', '1' );
|
537 |
-
die;
|
538 |
-
|
539 |
-
}
|
540 |
-
|
541 |
/**
|
542 |
* Show notices in admin area
|
543 |
*
|
@@ -566,34 +554,6 @@ class Sassy_Social_Share_Admin {
|
|
566 |
<?php
|
567 |
}
|
568 |
|
569 |
-
if ( version_compare( '3.2.20', $this->version ) <= 0 ) {
|
570 |
-
if ( ( ( isset( $this->options['horizontal_re_providers'] ) && in_array( 'facebook', $this->options['horizontal_re_providers'] ) && ( isset( $this->options['horizontal_counts'] ) || isset( $this->options['horizontal_total_shares'] ) ) ) || ( isset( $this->options['vertical_re_providers'] ) && in_array( 'facebook', $this->options['vertical_re_providers'] ) && ( isset( $this->options['vertical_counts'] ) || isset( $this->options['vertical_total_shares'] ) ) ) ) && ! get_option( 'heateor_sss_fb_count_notification_read' ) ) {
|
571 |
-
?>
|
572 |
-
<script type="text/javascript">
|
573 |
-
function heateorSssFBCountNotificationRead(){
|
574 |
-
jQuery.ajax({
|
575 |
-
type: 'GET',
|
576 |
-
url: '<?php echo get_admin_url() ?>admin-ajax.php',
|
577 |
-
data: {
|
578 |
-
action: 'heateor_sss_fb_count_notification_read'
|
579 |
-
},
|
580 |
-
success: function(data, textStatus, XMLHttpRequest){
|
581 |
-
jQuery('#heateor_sss_fb_count_notification').fadeOut();
|
582 |
-
}
|
583 |
-
});
|
584 |
-
}
|
585 |
-
</script>
|
586 |
-
<div id="heateor_sss_fb_count_notification" class="notice notice-warning">
|
587 |
-
<h3>Sassy Social Share</h3>
|
588 |
-
<p>
|
589 |
-
<?php _e( 'Save Facebook App ID and Secret keys in "Standard Interface" and/or "Floating Interface" section(s) to fix the issue with Facebook share count. After that, clear share counts cache from "Miscellaneous" section.', 'sassy-social-share' ); ?>
|
590 |
-
<p><input type="button" onclick="heateorSssFBCountNotificationRead()" style="margin-left: 5px;" class="button button-primary" value="<?php _e( 'Okay', 'sassy-social-share' ) ?>" /></p>
|
591 |
-
</p>
|
592 |
-
</div>
|
593 |
-
<?php
|
594 |
-
}
|
595 |
-
}
|
596 |
-
|
597 |
if ( version_compare( '3.2.1', $this->version ) <= 0 ) {
|
598 |
if ( ! get_option( 'heateor_sss_gdpr_notification_read' ) ) {
|
599 |
?>
|
215 |
<?php _e( 'Disable Floating Sharing interface on this ' . $postType, 'sassy-social-share' ) ?>
|
216 |
</label>
|
217 |
<?php
|
218 |
+
$valid_networks = array( 'twitter', 'buffer', 'reddit', 'pinterest', 'vkontakte', 'Odnoklassniki', 'Fintel' );
|
219 |
if ( isset( $this->options['hor_enable'] ) && isset( $this->options['horizontal_counts'] ) && isset( $this->options['horizontal_re_providers'] ) && count( $this->options['horizontal_re_providers'] ) > 0 ) {
|
220 |
?>
|
221 |
<p>
|
526 |
|
527 |
}
|
528 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
529 |
/**
|
530 |
* Show notices in admin area
|
531 |
*
|
554 |
<?php
|
555 |
}
|
556 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
557 |
if ( version_compare( '3.2.1', $this->version ) <= 0 ) {
|
558 |
if ( ! get_option( 'heateor_sss_gdpr_notification_read' ) ) {
|
559 |
?>
|
admin/js/sassy-social-share-options.js
CHANGED
@@ -247,19 +247,6 @@ function heateorSssVerticalCounterPreview(val){
|
|
247 |
}
|
248 |
}
|
249 |
|
250 |
-
function heateor_sss_toggle_fb_share_count_options() {
|
251 |
-
if(heateorSssHorizontalFacebookShareEnabled || heateorSssVerticalFacebookShareEnabled){
|
252 |
-
jQuery('#heateor_sss_fb_share_count_options').css('display', 'block');
|
253 |
-
}else{
|
254 |
-
jQuery('#heateor_sss_fb_share_count_options').css('display', 'none');
|
255 |
-
}
|
256 |
-
if(((heateorSssHorizontalFacebookShareEnabled && (heateorSssHorizontalShares || heateorSssHorizontalTotalShares)) || (heateorSssVerticalFacebookShareEnabled && (heateorSssVerticalShares || heateorSssVerticalTotalShares))) && heateorSssFacebookIDSecretNotSaved){
|
257 |
-
jQuery('.heateor_sss_fb_share_count_msg').css('display', 'table-row-group');
|
258 |
-
}else{
|
259 |
-
jQuery('.heateor_sss_fb_share_count_msg').css('display', 'none');
|
260 |
-
}
|
261 |
-
}
|
262 |
-
|
263 |
jQuery(document).ready(function() {
|
264 |
// instagram username option
|
265 |
jQuery('input#heateor_sss_instagram').click(function(){
|
@@ -298,7 +285,6 @@ jQuery(document).ready(function() {
|
|
298 |
}else{
|
299 |
heateorSssHorizontalFacebookShareEnabled = false;
|
300 |
}
|
301 |
-
heateor_sss_toggle_fb_share_count_options();
|
302 |
});
|
303 |
jQuery('input#heateor_sss_vertical_sharing_facebook').click(function(){
|
304 |
if(jQuery(this).is(':checked')){
|
@@ -306,7 +292,6 @@ jQuery(document).ready(function() {
|
|
306 |
}else{
|
307 |
heateorSssVerticalFacebookShareEnabled = false;
|
308 |
}
|
309 |
-
heateor_sss_toggle_fb_share_count_options();
|
310 |
});
|
311 |
jQuery('input#heateor_sss_vertical_instagram_username').keyup(function(){
|
312 |
jQuery('#heateor_sss_instagram_username').val(jQuery(this).val().trim());
|
247 |
}
|
248 |
}
|
249 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
250 |
jQuery(document).ready(function() {
|
251 |
// instagram username option
|
252 |
jQuery('input#heateor_sss_instagram').click(function(){
|
285 |
}else{
|
286 |
heateorSssHorizontalFacebookShareEnabled = false;
|
287 |
}
|
|
|
288 |
});
|
289 |
jQuery('input#heateor_sss_vertical_sharing_facebook').click(function(){
|
290 |
if(jQuery(this).is(':checked')){
|
292 |
}else{
|
293 |
heateorSssVerticalFacebookShareEnabled = false;
|
294 |
}
|
|
|
295 |
});
|
296 |
jQuery('input#heateor_sss_vertical_instagram_username').keyup(function(){
|
297 |
jQuery('#heateor_sss_instagram_username').val(jQuery(this).val().trim());
|
admin/partials/sassy-social-share-options-page.php
CHANGED
@@ -853,7 +853,7 @@ defined( 'ABSPATH' ) or die( "Cheating........Uh!!" );
|
|
853 |
<td colspan="2">
|
854 |
<script>
|
855 |
// facebook app id and secret options toggle variables
|
856 |
-
var heateorSssHorizontalShares = <?php echo isset( $options['horizontal_counts'] ) ? 'true' : 'false' ?>, heateorSssHorizontalTotalShares = <?php echo isset( $options['horizontal_total_shares'] ) ? 'true' : 'false' ?>, heateorSssVerticalShares = <?php echo isset( $options['vertical_counts'] ) ? 'true' : 'false' ?>, heateorSssVerticalTotalShares = <?php echo isset( $options['vertical_total_shares'] ) ? 'true' : 'false' ?>, heateorSssHorizontalFacebookShareEnabled = <?php echo in_array( 'facebook', $options['horizontal_re_providers'] ) ? 'true' : 'false'; ?>, heateorSssVerticalFacebookShareEnabled = <?php echo in_array( 'facebook', $options['vertical_re_providers'] ) ? 'true' : 'false';
|
857 |
<?php
|
858 |
$horSharingStyle = 'width:' . ( $options['horizontal_sharing_shape'] != 'rectangle' ? $options['horizontal_sharing_size'] : $options['horizontal_sharing_width'] ) . 'px;height:' . $line_height . 'px;';
|
859 |
$horDeliciousRadius = '';
|
@@ -1089,16 +1089,6 @@ defined( 'ABSPATH' ) or die( "Cheating........Uh!!" );
|
|
1089 |
</div>
|
1090 |
</td>
|
1091 |
</tr>
|
1092 |
-
|
1093 |
-
<tbody class="heateor_sss_fb_share_count_msg" <?php echo ! ( ( ( in_array( 'facebook', $options['vertical_re_providers'] ) && ( isset( $options['vertical_counts'] ) || isset( $options['vertical_total_shares'] ) ) ) || ( in_array( 'facebook', $options['horizontal_re_providers'] ) && ( isset( $options['horizontal_counts'] ) || isset( $options['horizontal_total_shares'] ) ) ) ) && ! $options['fb_key'] && ! $options['fb_secret'] ) ? 'style = "display: none"' : '';?>>
|
1094 |
-
<tr>
|
1095 |
-
<td colspan="2">
|
1096 |
-
<div style="color:green">
|
1097 |
-
<?php _e( 'Save Facebook App Id and Secret in the "Miscellaneous" section to track Facebook shares', 'sassy-social-share' ) ?>
|
1098 |
-
</div>
|
1099 |
-
</td>
|
1100 |
-
</tr>
|
1101 |
-
</tbody>
|
1102 |
|
1103 |
<tr>
|
1104 |
<th>
|
@@ -1106,7 +1096,7 @@ defined( 'ABSPATH' ) or die( "Cheating........Uh!!" );
|
|
1106 |
<img id="heateor_sss_count_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
1107 |
</th>
|
1108 |
<td>
|
1109 |
-
<input id="heateor_sss_counts" name="heateor_sss[horizontal_counts]" type="checkbox" <?php echo isset( $options['horizontal_counts'] ) ? 'checked = "checked"' : '';?> value="1" onclick="if(this.checked){heateorSssHorizontalShares = true;}else{heateorSssHorizontalShares = false;}
|
1110 |
<br/>
|
1111 |
<span class="heateor_sss_help_content" style="display:block"><?php _e( 'Share counts are supported for Twitter, Buffer, Reddit, Pinterest, Odnoklassniki, Fintel and Vkontakte', 'sassy-social-share' ) ?></span>
|
1112 |
<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>
|
@@ -1128,7 +1118,7 @@ defined( 'ABSPATH' ) or die( "Cheating........Uh!!" );
|
|
1128 |
<img id="heateor_sss_total_hor_shares_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
1129 |
</th>
|
1130 |
<td>
|
1131 |
-
<input id="heateor_sss_total_hor_shares" name="heateor_sss[horizontal_total_shares]" type="checkbox" <?php echo isset( $options['horizontal_total_shares'] ) ? 'checked = "checked"' : '';?> value="1" onclick="if(this.checked){heateorSssHorizontalTotalShares = true;}else{heateorSssHorizontalTotalShares = false;}
|
1132 |
</td>
|
1133 |
</tr>
|
1134 |
|
@@ -1392,9 +1382,11 @@ defined( 'ABSPATH' ) or die( "Cheating........Uh!!" );
|
|
1392 |
foreach( $sharing_networks as $sharing_network) {
|
1393 |
?>
|
1394 |
<div class="heateorSssVerticalSharingProviderContainer">
|
1395 |
-
|
|
|
1396 |
<label for="heateor_sss_vertical_sharing_<?php echo $sharing_network ?>"><i style="display:block;width:18px;height:18px;" class="heateorSssSharing heateorSss<?php echo str_replace(array( '_', '.', ' ' ), '', ucfirst( $sharing_network) ) ?>Background"><ss style="display:block;" class="heateorSssSharingSvg heateorSss<?php echo str_replace(array( '_', '.', ' ' ), '', ucfirst( $sharing_network) ) ?>Svg"></ss></i></label>
|
1397 |
-
<label class="lblSocialNetwork"
|
|
|
1398 |
</div>
|
1399 |
<?php
|
1400 |
}
|
@@ -1556,23 +1548,13 @@ defined( 'ABSPATH' ) or die( "Cheating........Uh!!" );
|
|
1556 |
</td>
|
1557 |
</tr>
|
1558 |
|
1559 |
-
<tbody class="heateor_sss_fb_share_count_msg" <?php echo ! ( ( ( in_array( 'facebook', $options['vertical_re_providers'] ) && ( isset( $options['vertical_counts'] ) || isset( $options['vertical_total_shares'] ) ) ) || ( in_array( 'facebook', $options['horizontal_re_providers'] ) && ( isset( $options['horizontal_counts'] ) || isset( $options['horizontal_total_shares'] ) ) ) ) && ! $options['fb_key'] && ! $options['fb_secret'] ) ? 'style = "display: none"' : '';?>>
|
1560 |
-
<tr>
|
1561 |
-
<td colspan="2">
|
1562 |
-
<div style="color:green">
|
1563 |
-
<?php _e( 'Save Facebook App Id and Secret in the "Miscellaneous" section to track Facebook shares', 'sassy-social-share' ) ?>
|
1564 |
-
</div>
|
1565 |
-
</td>
|
1566 |
-
</tr>
|
1567 |
-
</tbody>
|
1568 |
-
|
1569 |
<tr>
|
1570 |
<th>
|
1571 |
<label for="heateor_sss_vertical_counts"><?php _e( "Show share counts", 'sassy-social-share' ); ?></label>
|
1572 |
<img id="heateor_sss_vertical_count_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
1573 |
</th>
|
1574 |
<td>
|
1575 |
-
<input id="heateor_sss_vertical_counts" name="heateor_sss[vertical_counts]" type="checkbox" <?php echo isset( $options['vertical_counts'] ) ? 'checked = "checked"' : '';?> value="1" onclick="if(this.checked){heateorSssVerticalShares = true;}else{heateorSssVerticalShares = false;}
|
1576 |
<br/>
|
1577 |
<span class="heateor_sss_help_content" style="display:block"><?php _e( 'Share counts are supported for Twitter, Buffer, Reddit, Pinterest, Odnoklassniki, Fintel and Vkontakte', 'sassy-social-share' ) ?></span>
|
1578 |
<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>
|
@@ -1594,7 +1576,7 @@ defined( 'ABSPATH' ) or die( "Cheating........Uh!!" );
|
|
1594 |
<img id="heateor_sss_total_vertical_shares_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
1595 |
</th>
|
1596 |
<td>
|
1597 |
-
<input id="heateor_sss_total_vertical_shares" name="heateor_sss[vertical_total_shares]" type="checkbox" onclick="if(this.checked){heateorSssVerticalTotalShares = true;}else{heateorSssVerticalTotalShares = false;}
|
1598 |
</td>
|
1599 |
</tr>
|
1600 |
|
@@ -1609,7 +1591,7 @@ defined( 'ABSPATH' ) or die( "Cheating........Uh!!" );
|
|
1609 |
|
1610 |
<tr>
|
1611 |
<th>
|
1612 |
-
<label for="heateor_sss_vmore"><?php _e("Enable 'More' icon", 'sassy-social-share' ); ?></label>
|
1613 |
<img id="heateor_sss_vmore_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
1614 |
</th>
|
1615 |
<td>
|
@@ -1718,54 +1700,6 @@ defined( 'ABSPATH' ) or die( "Cheating........Uh!!" );
|
|
1718 |
<a href="https://www.heateor.com/comparison-between-sassy-social-share-pro-and-premium/" target="_blank"><img style="margin-bottom:19px;" src="<?php echo plugins_url( '../../images/unlock/track-shares.png', __FILE__ ) ?>" /></a>
|
1719 |
</div>
|
1720 |
|
1721 |
-
<div class="stuffbox" id="heateor_sss_fb_share_count_options" <?php echo ! ( in_array( 'facebook', $options['vertical_re_providers'] ) || in_array( 'facebook', $options['horizontal_re_providers'] ) ) ? 'style = "display: none"' : '';?>>
|
1722 |
-
<h3><label><?php _e( 'Facebook Share Count', 'sassy-social-share' ) ?></label></h3>
|
1723 |
-
<div class="inside">
|
1724 |
-
<table width="100%" border="0" cellspacing="0" cellpadding="0" class="form-table editcomment menu_content_table">
|
1725 |
-
<tbody>
|
1726 |
-
<tr>
|
1727 |
-
<td colspan="2"><strong><?php _e( 'Note', 'sassy-social-share' ) ?>:</strong> <?php _e( 'Required only to track Facebook share count', 'sassy-social-share' ) ?></td>
|
1728 |
-
</tr>
|
1729 |
-
<tr>
|
1730 |
-
<th>
|
1731 |
-
<label for="heateor_sss_fb_key"><?php _e( "Facebook App ID", 'sassy-social-share' ); ?></label>
|
1732 |
-
<img id="heateor_sss_fb_key_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
1733 |
-
</th>
|
1734 |
-
<td>
|
1735 |
-
<input id="heateor_sss_fb_key" name="heateor_sss[fb_key]" type="text" value="<?php echo $options['fb_key'] ?>" />
|
1736 |
-
</td>
|
1737 |
-
</tr>
|
1738 |
-
|
1739 |
-
<tr class="heateor_sss_help_content" id="heateor_sss_fb_key_help_cont">
|
1740 |
-
<td colspan="2">
|
1741 |
-
<div>
|
1742 |
-
<?php echo sprintf( __( 'Required to track Facebook shares. Please follow the documentation at <a href="%s" target="_blank">this link</a> to get Facebook App ID', 'sassy-social-share' ), 'http://support.heateor.com/how-to-get-facebook-app-id/' ) ?>
|
1743 |
-
</div>
|
1744 |
-
</td>
|
1745 |
-
</tr>
|
1746 |
-
|
1747 |
-
<tr>
|
1748 |
-
<th>
|
1749 |
-
<label for="heateor_sss_fblogin_secret"><?php _e( "Facebook App Secret", 'sassy-social-share' ); ?></label>
|
1750 |
-
<img id="heateor_sss_fb_secret_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
1751 |
-
</th>
|
1752 |
-
<td>
|
1753 |
-
<input id="heateor_sss_fblogin_secret" name="heateor_sss[fb_secret]" type="text" value="<?php echo $options['fb_secret'] ?>" />
|
1754 |
-
</td>
|
1755 |
-
</tr>
|
1756 |
-
|
1757 |
-
<tr class="heateor_sss_help_content" id="heateor_sss_fb_secret_help_cont">
|
1758 |
-
<td colspan="2">
|
1759 |
-
<div>
|
1760 |
-
<?php echo sprintf( __( 'Required to track Facebook shares. Please follow the documentation at <a href="%s" target="_blank">this link</a> to get Facebook App Secret', 'sassy-social-share' ), 'http://support.heateor.com/how-to-get-facebook-app-id/' ) ?>
|
1761 |
-
</div>
|
1762 |
-
</td>
|
1763 |
-
</tr>
|
1764 |
-
</tbody>
|
1765 |
-
</table>
|
1766 |
-
</div>
|
1767 |
-
</div>
|
1768 |
-
|
1769 |
<div class="stuffbox">
|
1770 |
<h3><label><?php _e( 'Miscellaneous', 'sassy-social-share' ) ?></label></h3>
|
1771 |
<div class="inside">
|
@@ -2176,7 +2110,7 @@ defined( 'ABSPATH' ) or die( "Cheating........Uh!!" );
|
|
2176 |
<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>
|
2177 |
<p><a href="http://support.heateor.com/why-is-sharer-not-showing-the-correct-image-title-and-other-meta-tags-content" target="_blank"><?php _e( 'Why is sharer not showing the correct image, title and other content when sharing a webpage?', 'sassy-social-share' ) ?></a></p>
|
2178 |
<a href="javascript:void(0)"><?php _e( 'Why is Facebook share count not working?', 'sassy-social-share' ); ?></a>
|
2179 |
-
<div><?php
|
2180 |
<p><a href="http://support.heateor.com/how-to-customize-the-url-being-shared" target="_blank"><?php _e( 'How to Customize the Url being Shared?', 'sassy-social-share' ) ?></a></p>
|
2181 |
<a href="javascript:void(0)"><?php _e( 'Why is Instagram icon redirecting to Instagram website?', 'sassy-social-share' ); ?></a>
|
2182 |
<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>
|
853 |
<td colspan="2">
|
854 |
<script>
|
855 |
// facebook app id and secret options toggle variables
|
856 |
+
var heateorSssHorizontalShares = <?php echo isset( $options['horizontal_counts'] ) ? 'true' : 'false' ?>, heateorSssHorizontalTotalShares = <?php echo isset( $options['horizontal_total_shares'] ) ? 'true' : 'false' ?>, heateorSssVerticalShares = <?php echo isset( $options['vertical_counts'] ) ? 'true' : 'false' ?>, heateorSssVerticalTotalShares = <?php echo isset( $options['vertical_total_shares'] ) ? 'true' : 'false' ?>, heateorSssHorizontalFacebookShareEnabled = <?php echo in_array( 'facebook', $options['horizontal_re_providers'] ) ? 'true' : 'false'; ?>, heateorSssVerticalFacebookShareEnabled = <?php echo in_array( 'facebook', $options['vertical_re_providers'] ) ? 'true' : 'false'; ?>;
|
857 |
<?php
|
858 |
$horSharingStyle = 'width:' . ( $options['horizontal_sharing_shape'] != 'rectangle' ? $options['horizontal_sharing_size'] : $options['horizontal_sharing_width'] ) . 'px;height:' . $line_height . 'px;';
|
859 |
$horDeliciousRadius = '';
|
1089 |
</div>
|
1090 |
</td>
|
1091 |
</tr>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1092 |
|
1093 |
<tr>
|
1094 |
<th>
|
1096 |
<img id="heateor_sss_count_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
1097 |
</th>
|
1098 |
<td>
|
1099 |
+
<input id="heateor_sss_counts" name="heateor_sss[horizontal_counts]" type="checkbox" <?php echo isset( $options['horizontal_counts'] ) ? 'checked = "checked"' : '';?> value="1" onclick="if(this.checked){heateorSssHorizontalShares = true;}else{heateorSssHorizontalShares = false;}" />
|
1100 |
<br/>
|
1101 |
<span class="heateor_sss_help_content" style="display:block"><?php _e( 'Share counts are supported for Twitter, Buffer, Reddit, Pinterest, Odnoklassniki, Fintel and Vkontakte', 'sassy-social-share' ) ?></span>
|
1102 |
<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>
|
1118 |
<img id="heateor_sss_total_hor_shares_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
1119 |
</th>
|
1120 |
<td>
|
1121 |
+
<input id="heateor_sss_total_hor_shares" name="heateor_sss[horizontal_total_shares]" type="checkbox" <?php echo isset( $options['horizontal_total_shares'] ) ? 'checked = "checked"' : '';?> value="1" onclick="if(this.checked){heateorSssHorizontalTotalShares = true;}else{heateorSssHorizontalTotalShares = false;}" />
|
1122 |
</td>
|
1123 |
</tr>
|
1124 |
|
1382 |
foreach( $sharing_networks as $sharing_network) {
|
1383 |
?>
|
1384 |
<div class="heateorSssVerticalSharingProviderContainer">
|
1385 |
+
<?php echo $sharing_network == 'Goodreads' ? '<a href="https://www.heateor.com/comparison-between-sassy-social-share-pro-and-premium/" target="_blank">' : ''; ?>
|
1386 |
+
<input id="heateor_sss_vertical_sharing_<?php echo $sharing_network ?>" type="checkbox" <?php echo $sharing_network == 'Goodreads' ? 'disabled ' : ''; ?><?php echo isset( $options['vertical_re_providers'] ) && in_array( $sharing_network, $options['vertical_re_providers'] ) ? 'checked = "checked"' : '';?> value="<?php echo $sharing_network ?>" />
|
1387 |
<label for="heateor_sss_vertical_sharing_<?php echo $sharing_network ?>"><i style="display:block;width:18px;height:18px;" class="heateorSssSharing heateorSss<?php echo str_replace(array( '_', '.', ' ' ), '', ucfirst( $sharing_network) ) ?>Background"><ss style="display:block;" class="heateorSssSharingSvg heateorSss<?php echo str_replace(array( '_', '.', ' ' ), '', ucfirst( $sharing_network) ) ?>Svg"></ss></i></label>
|
1388 |
+
<label class="lblSocialNetwork" <?php echo $sharing_network != 'Goodreads' ? 'for="heateor_sss_' . $sharing_network . '"' : ''; ?>><?php echo str_replace( '_', ' ', ucfirst( $sharing_network ) ) ?></label>
|
1389 |
+
<?php echo $sharing_network == 'Goodreads' ? '</a>' : ''; ?>
|
1390 |
</div>
|
1391 |
<?php
|
1392 |
}
|
1548 |
</td>
|
1549 |
</tr>
|
1550 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1551 |
<tr>
|
1552 |
<th>
|
1553 |
<label for="heateor_sss_vertical_counts"><?php _e( "Show share counts", 'sassy-social-share' ); ?></label>
|
1554 |
<img id="heateor_sss_vertical_count_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
1555 |
</th>
|
1556 |
<td>
|
1557 |
+
<input id="heateor_sss_vertical_counts" name="heateor_sss[vertical_counts]" type="checkbox" <?php echo isset( $options['vertical_counts'] ) ? 'checked = "checked"' : '';?> value="1" onclick="if(this.checked){heateorSssVerticalShares = true;}else{heateorSssVerticalShares = false;}" />
|
1558 |
<br/>
|
1559 |
<span class="heateor_sss_help_content" style="display:block"><?php _e( 'Share counts are supported for Twitter, Buffer, Reddit, Pinterest, Odnoklassniki, Fintel and Vkontakte', 'sassy-social-share' ) ?></span>
|
1560 |
<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>
|
1576 |
<img id="heateor_sss_total_vertical_shares_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
1577 |
</th>
|
1578 |
<td>
|
1579 |
+
<input id="heateor_sss_total_vertical_shares" name="heateor_sss[vertical_total_shares]" type="checkbox" onclick="if(this.checked){heateorSssVerticalTotalShares = true;}else{heateorSssVerticalTotalShares = false;}" <?php echo isset( $options['vertical_total_shares'] ) ? 'checked = "checked"' : '';?> value="1" />
|
1580 |
</td>
|
1581 |
</tr>
|
1582 |
|
1591 |
|
1592 |
<tr>
|
1593 |
<th>
|
1594 |
+
<label for="heateor_sss_vmore"><?php _e( "Enable 'More' icon", 'sassy-social-share' ); ?></label>
|
1595 |
<img id="heateor_sss_vmore_help" class="heateor_sss_help_bubble" src="<?php echo plugins_url( '../../images/info.png', __FILE__ ) ?>" />
|
1596 |
</th>
|
1597 |
<td>
|
1700 |
<a href="https://www.heateor.com/comparison-between-sassy-social-share-pro-and-premium/" target="_blank"><img style="margin-bottom:19px;" src="<?php echo plugins_url( '../../images/unlock/track-shares.png', __FILE__ ) ?>" /></a>
|
1701 |
</div>
|
1702 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1703 |
<div class="stuffbox">
|
1704 |
<h3><label><?php _e( 'Miscellaneous', 'sassy-social-share' ) ?></label></h3>
|
1705 |
<div class="inside">
|
2110 |
<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>
|
2111 |
<p><a href="http://support.heateor.com/why-is-sharer-not-showing-the-correct-image-title-and-other-meta-tags-content" target="_blank"><?php _e( 'Why is sharer not showing the correct image, title and other content when sharing a webpage?', 'sassy-social-share' ) ?></a></p>
|
2112 |
<a href="javascript:void(0)"><?php _e( 'Why is Facebook share count not working?', 'sassy-social-share' ); ?></a>
|
2113 |
+
<div><?php echo sprintf( __( "After the recent changes introduced in the Facebook graph API, it's not possible to track Facebook shares using it. Pro and Premium versions of this plugin offer a feature that allows you to track shares not just for Facebook but for all the social networks. Comparison of the features of the Pro and Premium versions can be found at the <a href='%s' target='_blank'>link</a>", 'sassy-social-share' ), 'https://www.heateor.com/comparison-between-sassy-social-share-pro-and-premium/' ); ?></div>
|
2114 |
<p><a href="http://support.heateor.com/how-to-customize-the-url-being-shared" target="_blank"><?php _e( 'How to Customize the Url being Shared?', 'sassy-social-share' ) ?></a></p>
|
2115 |
<a href="javascript:void(0)"><?php _e( 'Why is Instagram icon redirecting to Instagram website?', 'sassy-social-share' ); ?></a>
|
2116 |
<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>
|
includes/class-sassy-social-share-sharing-networks.php
CHANGED
@@ -296,9 +296,6 @@ class Sassy_Social_Share_Sharing_Networks {
|
|
296 |
$this->sharing_networks['pinterest_pin'] = '<li style="padding:%padding%px 0!important;margin-top:-1px!important" class="heateor_sss_%network%">%like_count_container%<a data-pin-lang="%language%" href="//www.pinterest.com/pin/create/button/?url=%post_url%" ' . ( isset( $this->options[$sharing_type . '_counts'] ) ? 'data-pin-count="true"' : 'data-pin-count="false"' ) . ' data-pin-do="buttonPin" data-pin-config="beside"><img src="//assets.pinterest.com/images/pidgets/pinit_fg_en_rect_gray_20.png" /></a><script type="text/javascript" async src="//assets.pinterest.com/js/pinit.js"></script></li>';
|
297 |
$this->sharing_networks['xing_share'] = '<li style="padding:%padding%px 0 !important" class="heateor_sss_xing">%like_count_container%<div data-type="XING/Share" ' . ( isset( $this->options[$sharing_type . '_counts'] ) ? 'data-counter="right" ' : '' ) . 'data-url="%post_url%" data-lang="%language%"></div><script>(function (d, s) {var x = d.createElement(s), s = d.getElementsByTagName(s)[0]; x.src = "https://www.xing-share.com/js/external/share.js"; s.parentNode.insertBefore(x, s); })(document, "script");</script></li>';
|
298 |
$fb_key = '1904103319867886';
|
299 |
-
if ( $this->options['fb_key'] != '' ) {
|
300 |
-
$fb_key = $this->options['fb_key'];
|
301 |
-
}
|
302 |
$this->sharing_networks['Facebook_Messenger'] = '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="heateorSssSharing heateorSss%ucfirst_network%Background" onclick=\'heateorSssPopup("' . ( $this->check_if_mobile() ? 'fb-messenger://share/?link=%encoded_post_url%' : 'https://www.facebook.com/dialog/send?app_id='. $fb_key .'&display=popup&link=%encoded_post_url%&redirect_uri=%encoded_post_url%' ) . '")\'><ss style="%inner_style%" class="heateorSssSharingSvg heateorSss%ucfirst_network%Svg"></ss></i></li>';
|
303 |
$whatsapp_share_url = $this->whatsapp_share_api();
|
304 |
$this->sharing_networks['whatsapp'] = '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="heateorSssSharing heateorSss%ucfirst_network%Background" onclick=\'heateorSssPopup("https://' . $whatsapp_share_url . '.whatsapp.com/send?text=%post_title% %encoded_post_url%")\'><ss style="display:block" class="heateorSssSharingSvg heateorSss%ucfirst_network%Svg"></ss></i></li>';
|
@@ -333,9 +330,6 @@ class Sassy_Social_Share_Sharing_Networks {
|
|
333 |
$this->amp_sharing_networks['youtube'] = str_replace( '%youtube_username%', $this->options['youtube_username'] != '' ? $this->options['youtube_username'] : $this->options['vertical_youtube_username'], $this->amp_sharing_networks['youtube'] );
|
334 |
$this->amp_sharing_networks['Comment'] = str_replace( '%comment_container_id%', $this->options['comment_container_id'] != '' ? $this->options['comment_container_id'] : $this->options['vertical_comment_container_id'], $this->amp_sharing_networks['Comment'] );
|
335 |
$fb_key = '1904103319867886';
|
336 |
-
if ( $this->options['fb_key'] ) {
|
337 |
-
$fb_key = $this->options['fb_key'];
|
338 |
-
}
|
339 |
$this->amp_sharing_networks['Facebook_Messenger'] = '<a class="heateor_sss_amp heateor_sss_amp_facebook_messenger" href="' . ( $this->check_if_mobile() ? 'fb-messenger://share/?link=%encoded_post_url%' : 'https://www.facebook.com/dialog/send?app_id=' . $fb_key . '&display=popup&link=%encoded_post_url%&redirect_uri=%encoded_post_url%' ) . '" title="Facebook Messenger" rel="nofollow noopener" target="_blank"><amp-img src="%img_url%/facebook_messenger.svg" width="%width%" height="%height%" alt="Facebook Messenger" class="amp-wp-enforced-sizes" style="width:%width%px;"></amp-img></a>';
|
340 |
$this->amp_sharing_networks['pinterest'] = '<a class="heateor_sss_amp heateor_sss_amp_pinterest" href="' . $pinterest_share_url . '" title="Pinterest" rel="nofollow noopener" target="_blank"><amp-img src="%img_url%/pinterest.svg" width="%width%" height="%height%" alt="Pinterest" class="amp-wp-enforced-sizes" style="width:%width%px;"></amp-img></a>';
|
341 |
|
296 |
$this->sharing_networks['pinterest_pin'] = '<li style="padding:%padding%px 0!important;margin-top:-1px!important" class="heateor_sss_%network%">%like_count_container%<a data-pin-lang="%language%" href="//www.pinterest.com/pin/create/button/?url=%post_url%" ' . ( isset( $this->options[$sharing_type . '_counts'] ) ? 'data-pin-count="true"' : 'data-pin-count="false"' ) . ' data-pin-do="buttonPin" data-pin-config="beside"><img src="//assets.pinterest.com/images/pidgets/pinit_fg_en_rect_gray_20.png" /></a><script type="text/javascript" async src="//assets.pinterest.com/js/pinit.js"></script></li>';
|
297 |
$this->sharing_networks['xing_share'] = '<li style="padding:%padding%px 0 !important" class="heateor_sss_xing">%like_count_container%<div data-type="XING/Share" ' . ( isset( $this->options[$sharing_type . '_counts'] ) ? 'data-counter="right" ' : '' ) . 'data-url="%post_url%" data-lang="%language%"></div><script>(function (d, s) {var x = d.createElement(s), s = d.getElementsByTagName(s)[0]; x.src = "https://www.xing-share.com/js/external/share.js"; s.parentNode.insertBefore(x, s); })(document, "script");</script></li>';
|
298 |
$fb_key = '1904103319867886';
|
|
|
|
|
|
|
299 |
$this->sharing_networks['Facebook_Messenger'] = '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="heateorSssSharing heateorSss%ucfirst_network%Background" onclick=\'heateorSssPopup("' . ( $this->check_if_mobile() ? 'fb-messenger://share/?link=%encoded_post_url%' : 'https://www.facebook.com/dialog/send?app_id='. $fb_key .'&display=popup&link=%encoded_post_url%&redirect_uri=%encoded_post_url%' ) . '")\'><ss style="%inner_style%" class="heateorSssSharingSvg heateorSss%ucfirst_network%Svg"></ss></i></li>';
|
300 |
$whatsapp_share_url = $this->whatsapp_share_api();
|
301 |
$this->sharing_networks['whatsapp'] = '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="heateorSssSharing heateorSss%ucfirst_network%Background" onclick=\'heateorSssPopup("https://' . $whatsapp_share_url . '.whatsapp.com/send?text=%post_title% %encoded_post_url%")\'><ss style="display:block" class="heateorSssSharingSvg heateorSss%ucfirst_network%Svg"></ss></i></li>';
|
330 |
$this->amp_sharing_networks['youtube'] = str_replace( '%youtube_username%', $this->options['youtube_username'] != '' ? $this->options['youtube_username'] : $this->options['vertical_youtube_username'], $this->amp_sharing_networks['youtube'] );
|
331 |
$this->amp_sharing_networks['Comment'] = str_replace( '%comment_container_id%', $this->options['comment_container_id'] != '' ? $this->options['comment_container_id'] : $this->options['vertical_comment_container_id'], $this->amp_sharing_networks['Comment'] );
|
332 |
$fb_key = '1904103319867886';
|
|
|
|
|
|
|
333 |
$this->amp_sharing_networks['Facebook_Messenger'] = '<a class="heateor_sss_amp heateor_sss_amp_facebook_messenger" href="' . ( $this->check_if_mobile() ? 'fb-messenger://share/?link=%encoded_post_url%' : 'https://www.facebook.com/dialog/send?app_id=' . $fb_key . '&display=popup&link=%encoded_post_url%&redirect_uri=%encoded_post_url%' ) . '" title="Facebook Messenger" rel="nofollow noopener" target="_blank"><amp-img src="%img_url%/facebook_messenger.svg" width="%width%" height="%height%" alt="Facebook Messenger" class="amp-wp-enforced-sizes" style="width:%width%px;"></amp-img></a>';
|
334 |
$this->amp_sharing_networks['pinterest'] = '<a class="heateor_sss_amp heateor_sss_amp_pinterest" href="' . $pinterest_share_url . '" title="Pinterest" rel="nofollow noopener" target="_blank"><amp-img src="%img_url%/pinterest.svg" width="%width%" height="%height%" alt="Pinterest" class="amp-wp-enforced-sizes" style="width:%width%px;"></amp-img></a>';
|
335 |
|
includes/class-sassy-social-share-widgets.php
CHANGED
@@ -723,7 +723,6 @@ class Sassy_Social_Share_Follow_Widget extends WP_Widget {
|
|
723 |
$instance['flickr'] = isset( $new_instance['flickr'] ) ? $new_instance['flickr'] : '';
|
724 |
$instance['foursquare'] = isset( $new_instance['foursquare'] ) ? $new_instance['foursquare'] : '';
|
725 |
$instance['github'] = isset( $new_instance['github'] ) ? $new_instance['github'] : '';
|
726 |
-
$instance['gitlab'] = isset( $new_instance['gitlab'] ) ? $new_instance['gitlab'] : '';
|
727 |
$instance['linkedin'] = isset( $new_instance['linkedin'] ) ? $new_instance['linkedin'] : '';
|
728 |
$instance['linkedin_company'] = isset( $new_instance['linkedin_company'] ) ? $new_instance['linkedin_company'] : '';
|
729 |
$instance['medium'] = isset( $new_instance['medium'] ) ? $new_instance['medium'] : '';
|
@@ -754,7 +753,7 @@ class Sassy_Social_Share_Follow_Widget extends WP_Widget {
|
|
754 |
public function form( $instance ) {
|
755 |
|
756 |
/* default widget settings. */
|
757 |
-
$defaults = array( 'title' => '', 'type' => 'standard', 'alignment' => 'right', 'size' => '32', 'icon_shape' => 'round', 'custom_color' => '', 'facebook' => '', 'twitter' => '','parler' => '', 'gab' => '', 'instagram' => '', 'pinterest' => '', 'behance' => '', 'flickr' => '', 'foursquare' => '', 'github' => '', '
|
758 |
|
759 |
foreach ( $instance as $key => $value ) {
|
760 |
if ( is_string( $value ) ) {
|
723 |
$instance['flickr'] = isset( $new_instance['flickr'] ) ? $new_instance['flickr'] : '';
|
724 |
$instance['foursquare'] = isset( $new_instance['foursquare'] ) ? $new_instance['foursquare'] : '';
|
725 |
$instance['github'] = isset( $new_instance['github'] ) ? $new_instance['github'] : '';
|
|
|
726 |
$instance['linkedin'] = isset( $new_instance['linkedin'] ) ? $new_instance['linkedin'] : '';
|
727 |
$instance['linkedin_company'] = isset( $new_instance['linkedin_company'] ) ? $new_instance['linkedin_company'] : '';
|
728 |
$instance['medium'] = isset( $new_instance['medium'] ) ? $new_instance['medium'] : '';
|
753 |
public function form( $instance ) {
|
754 |
|
755 |
/* default widget settings. */
|
756 |
+
$defaults = array( 'title' => '', 'type' => 'standard', 'alignment' => 'right', 'size' => '32', 'icon_shape' => 'round', 'custom_color' => '', 'facebook' => '', 'twitter' => '','parler' => '', 'gab' => '', 'instagram' => '', 'pinterest' => '', 'behance' => '', 'flickr' => '', 'foursquare' => '', 'github' => '', 'linkedin' => '', 'linkedin_company' => '', 'medium' => '', 'mewe' => '', 'odnoklassniki' => '', 'snapchat' => '', 'telegram' => '', 'tumblr' => '', 'vimeo' => '', 'vkontakte' => '', 'whatsapp' => '', 'xing' => '', 'youtube' => '', 'youtube_channel' => '', 'rss_feed' => '', 'before_widget_content' => '', 'after_widget_content' => '', 'top_offset' => '200', 'alignment_value' => '0' );
|
757 |
|
758 |
foreach ( $instance as $key => $value ) {
|
759 |
if ( is_string( $value ) ) {
|
includes/class-sassy-social-share.php
CHANGED
@@ -129,8 +129,6 @@ class Sassy_Social_Share {
|
|
129 |
add_action( 'plugins_loaded', array( $plugin_admin, 'update_db_check' ) );
|
130 |
// save GDPR notification flag in DB
|
131 |
add_action( 'wp_ajax_heateor_sss_gdpr_notification_read', array( $plugin_admin, 'gdpr_notification_read' ) );
|
132 |
-
// save FB share count notification flag in DB
|
133 |
-
add_action( 'wp_ajax_heateor_sss_fb_count_notification_read', array( $plugin_admin, 'fb_count_notification_read' ) );
|
134 |
// save Twitter share count notification flag in DB
|
135 |
add_action( 'wp_ajax_heateor_sss_twitter_share_notification_read', array( $plugin_admin, 'twitter_share_notification_read' ) );
|
136 |
// save Twitcount notification flag in DB
|
129 |
add_action( 'plugins_loaded', array( $plugin_admin, 'update_db_check' ) );
|
130 |
// save GDPR notification flag in DB
|
131 |
add_action( 'wp_ajax_heateor_sss_gdpr_notification_read', array( $plugin_admin, 'gdpr_notification_read' ) );
|
|
|
|
|
132 |
// save Twitter share count notification flag in DB
|
133 |
add_action( 'wp_ajax_heateor_sss_twitter_share_notification_read', array( $plugin_admin, 'twitter_share_notification_read' ) );
|
134 |
// save Twitcount notification flag in DB
|
languages/sassy-social-share.pot
CHANGED
@@ -3,7 +3,7 @@ msgid ""
|
|
3 |
msgstr ""
|
4 |
"Project-Id-Version: Sassy Social Share\n"
|
5 |
"Report-Msgid-Bugs-To: \n"
|
6 |
-
"POT-Creation-Date: 2021-07-
|
7 |
"PO-Revision-Date: 2021-02-03 13:11+0530\n"
|
8 |
"Last-Translator: Heateor <hello@heateor.com>\n"
|
9 |
"Language-Team: Heateor <hello@heateor.com>\n"
|
@@ -75,35 +75,21 @@ msgstr "Configurações salvas"
|
|
75 |
msgid "Dismiss this notice"
|
76 |
msgstr "Dispense este aviso"
|
77 |
|
78 |
-
#: admin/class-sassy-social-share-admin.php:
|
79 |
msgid "Thanks for installing Sassy Social Share plugin"
|
80 |
msgstr ""
|
81 |
|
82 |
-
#: admin/class-sassy-social-share-admin.php:
|
83 |
msgid "Configure the Plugin"
|
84 |
msgstr ""
|
85 |
|
86 |
-
#: admin/class-sassy-social-share-admin.php:
|
87 |
msgid ""
|
88 |
"Update \"Social Share myCRED Integration\" add-on for maximum compatibility "
|
89 |
"with current version of Sassy Social Share"
|
90 |
msgstr ""
|
91 |
|
92 |
-
#: admin/class-sassy-social-share-admin.php:
|
93 |
-
msgid ""
|
94 |
-
"Save Facebook App ID and Secret keys in \"Standard Interface\" and/or "
|
95 |
-
"\"Floating Interface\" section(s) to fix the issue with Facebook share "
|
96 |
-
"count. After that, clear share counts cache from \"Miscellaneous\" section."
|
97 |
-
msgstr ""
|
98 |
-
|
99 |
-
#: admin/class-sassy-social-share-admin.php:590
|
100 |
-
#: admin/class-sassy-social-share-admin.php:616
|
101 |
-
#: admin/class-sassy-social-share-admin.php:642
|
102 |
-
#: admin/class-sassy-social-share-admin.php:665
|
103 |
-
msgid "Okay"
|
104 |
-
msgstr ""
|
105 |
-
|
106 |
-
#: admin/class-sassy-social-share-admin.php:616
|
107 |
#, php-format
|
108 |
msgid ""
|
109 |
"This plugin is GDPR compliant. You need to update the privacy policy of your "
|
@@ -111,7 +97,13 @@ msgid ""
|
|
111 |
"\"%s\" target=\"_blank\">here</a>"
|
112 |
msgstr ""
|
113 |
|
114 |
-
#: admin/class-sassy-social-share-admin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
115 |
#, php-format
|
116 |
msgid ""
|
117 |
"Twitter share counts are no longer working as newsharecounts.com is down. To "
|
@@ -119,7 +111,7 @@ msgid ""
|
|
119 |
"\"_blank\">here</a> with this domain. No other steps needed."
|
120 |
msgstr ""
|
121 |
|
122 |
-
#: admin/class-sassy-social-share-admin.php:
|
123 |
#, php-format
|
124 |
msgid ""
|
125 |
"Now plugin supports a new service Twitcount.com to show Twitter shares. To "
|
@@ -128,15 +120,15 @@ msgid ""
|
|
128 |
"your website %s with them. No need to copy-paste any code from their website."
|
129 |
msgstr ""
|
130 |
|
131 |
-
#: admin/class-sassy-social-share-admin.php:
|
132 |
msgid "Add-Ons"
|
133 |
msgstr ""
|
134 |
|
135 |
-
#: admin/class-sassy-social-share-admin.php:
|
136 |
msgid "Support Documentation"
|
137 |
msgstr ""
|
138 |
|
139 |
-
#: admin/class-sassy-social-share-admin.php:
|
140 |
#, fuzzy
|
141 |
msgid "Settings"
|
142 |
msgstr "Configurações"
|
@@ -224,7 +216,7 @@ msgid "Rate 5-star"
|
|
224 |
msgstr "Pontue como 5-strelas"
|
225 |
|
226 |
#: admin/partials/sassy-social-share-options-page.php:16
|
227 |
-
#: admin/partials/sassy-social-share-options-page.php:
|
228 |
#, php-format
|
229 |
msgid ""
|
230 |
"You can appreciate the effort put in this free plugin by rating it <a href="
|
@@ -247,7 +239,7 @@ msgid "Floating Interface"
|
|
247 |
msgstr "Interface Flutuante"
|
248 |
|
249 |
#: admin/partials/sassy-social-share-options-page.php:27
|
250 |
-
#: admin/partials/sassy-social-share-options-page.php:
|
251 |
#, fuzzy
|
252 |
msgid "Miscellaneous"
|
253 |
msgstr "Miscelânia"
|
@@ -257,7 +249,7 @@ msgid "3rd Party Integration"
|
|
257 |
msgstr ""
|
258 |
|
259 |
#: admin/partials/sassy-social-share-options-page.php:35
|
260 |
-
#: admin/partials/sassy-social-share-options-page.php:
|
261 |
#, fuzzy
|
262 |
msgid "Shortcode & Widget"
|
263 |
msgstr "Shortcode & Widget"
|
@@ -268,7 +260,7 @@ msgid "Troubleshooter"
|
|
268 |
msgstr "Resolução de Problemas"
|
269 |
|
270 |
#: admin/partials/sassy-social-share-options-page.php:37
|
271 |
-
#: admin/partials/sassy-social-share-options-page.php:
|
272 |
#, fuzzy
|
273 |
msgid "FAQ"
|
274 |
msgstr "P&R"
|
@@ -302,14 +294,14 @@ msgstr "Forma"
|
|
302 |
|
303 |
#: admin/partials/sassy-social-share-options-page.php:144
|
304 |
#: admin/partials/sassy-social-share-options-page.php:460
|
305 |
-
#: includes/class-sassy-social-share-widgets.php:
|
306 |
#, fuzzy
|
307 |
msgid "Round"
|
308 |
msgstr "Arredondada"
|
309 |
|
310 |
#: admin/partials/sassy-social-share-options-page.php:146
|
311 |
#: admin/partials/sassy-social-share-options-page.php:462
|
312 |
-
#: includes/class-sassy-social-share-widgets.php:
|
313 |
#, fuzzy
|
314 |
msgid "Square"
|
315 |
msgstr "Quadrada"
|
@@ -419,7 +411,7 @@ msgstr ""
|
|
419 |
|
420 |
#: admin/partials/sassy-social-share-options-page.php:280
|
421 |
#: admin/partials/sassy-social-share-options-page.php:596
|
422 |
-
#: admin/partials/sassy-social-share-options-page.php:
|
423 |
#: includes/class-sassy-social-share-widgets.php:505
|
424 |
#, fuzzy
|
425 |
msgid "Background Color"
|
@@ -483,9 +475,9 @@ msgstr "(aplica-se, caso o contador esteja habilitado)"
|
|
483 |
#: admin/partials/sassy-social-share-options-page.php:331
|
484 |
#: admin/partials/sassy-social-share-options-page.php:646
|
485 |
#: admin/partials/sassy-social-share-options-page.php:973
|
486 |
-
#: admin/partials/sassy-social-share-options-page.php:
|
487 |
#: includes/class-sassy-social-share-widgets.php:491
|
488 |
-
#: includes/class-sassy-social-share-widgets.php:
|
489 |
#, fuzzy
|
490 |
msgid "Left"
|
491 |
msgstr "Esquerda"
|
@@ -499,9 +491,9 @@ msgstr "Acima"
|
|
499 |
#: admin/partials/sassy-social-share-options-page.php:335
|
500 |
#: admin/partials/sassy-social-share-options-page.php:650
|
501 |
#: admin/partials/sassy-social-share-options-page.php:975
|
502 |
-
#: admin/partials/sassy-social-share-options-page.php:
|
503 |
#: includes/class-sassy-social-share-widgets.php:492
|
504 |
-
#: includes/class-sassy-social-share-widgets.php:
|
505 |
#, fuzzy
|
506 |
msgid "Right"
|
507 |
msgstr "Direita"
|
@@ -563,13 +555,13 @@ msgid "Master control to enable standard sharing"
|
|
563 |
msgstr "\"Controle Mestre para habilitar o compartilhamento padrão"
|
564 |
|
565 |
#: admin/partials/sassy-social-share-options-page.php:710
|
566 |
-
#: admin/partials/sassy-social-share-options-page.php:
|
567 |
#, fuzzy
|
568 |
msgid "Target Url"
|
569 |
msgstr "Url Destino"
|
570 |
|
571 |
#: admin/partials/sassy-social-share-options-page.php:715
|
572 |
-
#: admin/partials/sassy-social-share-options-page.php:
|
573 |
#: includes/class-sassy-social-share-widgets.php:239
|
574 |
#: includes/class-sassy-social-share-widgets.php:484
|
575 |
#, fuzzy
|
@@ -577,7 +569,7 @@ msgid "Url of the webpage where icons are located (default)"
|
|
577 |
msgstr "Url das webpages onde os ícones estão localizados (padrão)"
|
578 |
|
579 |
#: admin/partials/sassy-social-share-options-page.php:717
|
580 |
-
#: admin/partials/sassy-social-share-options-page.php:
|
581 |
#: includes/class-sassy-social-share-widgets.php:240
|
582 |
#: includes/class-sassy-social-share-widgets.php:485
|
583 |
#, fuzzy
|
@@ -585,19 +577,19 @@ msgid "Url of the homepage of your website"
|
|
585 |
msgstr "Url da homepage do seu website"
|
586 |
|
587 |
#: admin/partials/sassy-social-share-options-page.php:719
|
588 |
-
#: admin/partials/sassy-social-share-options-page.php:
|
589 |
#, fuzzy
|
590 |
msgid "Custom url"
|
591 |
msgstr "Url personalizada"
|
592 |
|
593 |
#: admin/partials/sassy-social-share-options-page.php:726
|
594 |
-
#: admin/partials/sassy-social-share-options-page.php:
|
595 |
#, fuzzy
|
596 |
msgid "Url to share"
|
597 |
msgstr "Url para compartilhar"
|
598 |
|
599 |
#: admin/partials/sassy-social-share-options-page.php:733
|
600 |
-
#: includes/class-sassy-social-share-widgets.php:
|
601 |
#, fuzzy
|
602 |
msgid "Title"
|
603 |
msgstr "Título"
|
@@ -608,20 +600,20 @@ msgid "The text to display above the sharing interface"
|
|
608 |
msgstr "Texto a ser exibido acima da interface de compartilhamento"
|
609 |
|
610 |
#: admin/partials/sassy-social-share-options-page.php:778
|
611 |
-
#: admin/partials/sassy-social-share-options-page.php:
|
612 |
msgid "Instagram username"
|
613 |
msgstr ""
|
614 |
|
615 |
#: admin/partials/sassy-social-share-options-page.php:789
|
616 |
-
#: admin/partials/sassy-social-share-options-page.php:
|
617 |
-
#: admin/partials/sassy-social-share-options-page.php:
|
618 |
msgid ""
|
619 |
"Username of the Instagram account you want to redirect users to, on clicking "
|
620 |
"the icon"
|
621 |
msgstr ""
|
622 |
|
623 |
#: admin/partials/sassy-social-share-options-page.php:798
|
624 |
-
#: admin/partials/sassy-social-share-options-page.php:
|
625 |
msgid "Youtube URL"
|
626 |
msgstr ""
|
627 |
|
@@ -632,37 +624,37 @@ msgid ""
|
|
632 |
msgstr ""
|
633 |
|
634 |
#: admin/partials/sassy-social-share-options-page.php:818
|
635 |
-
#: admin/partials/sassy-social-share-options-page.php:
|
636 |
msgid "HTML ID of container element of comment form"
|
637 |
msgstr ""
|
638 |
|
639 |
#: admin/partials/sassy-social-share-options-page.php:829
|
640 |
-
#: admin/partials/sassy-social-share-options-page.php:
|
641 |
msgid ""
|
642 |
"HTML ID of the element you want to focus on the webpage, on click of Comment "
|
643 |
"icon."
|
644 |
msgstr ""
|
645 |
|
646 |
#: admin/partials/sassy-social-share-options-page.php:847
|
647 |
-
#: admin/partials/sassy-social-share-options-page.php:
|
648 |
#, fuzzy
|
649 |
msgid "Rearrange icons"
|
650 |
msgstr "Rearranjar ícones"
|
651 |
|
652 |
#: admin/partials/sassy-social-share-options-page.php:915
|
653 |
-
#: admin/partials/sassy-social-share-options-page.php:
|
654 |
#, fuzzy
|
655 |
msgid "Drag the icons to rearrange in desired order"
|
656 |
msgstr "Arraste os ícones para rearanjar na ordem desejada"
|
657 |
|
658 |
#: admin/partials/sassy-social-share-options-page.php:922
|
659 |
-
#: admin/partials/sassy-social-share-options-page.php:
|
660 |
#, fuzzy
|
661 |
msgid "Select Sharing Services"
|
662 |
msgstr "Selecione os Serviços Compartilhados"
|
663 |
|
664 |
#: admin/partials/sassy-social-share-options-page.php:930
|
665 |
-
#: admin/partials/sassy-social-share-options-page.php:
|
666 |
#, fuzzy
|
667 |
msgid "Select sharing services to show in social share bar"
|
668 |
msgstr ""
|
@@ -670,12 +662,12 @@ msgstr ""
|
|
670 |
"compartilhamento social"
|
671 |
|
672 |
#: admin/partials/sassy-social-share-options-page.php:948
|
673 |
-
#: admin/partials/sassy-social-share-options-page.php:
|
674 |
msgid "Search social network"
|
675 |
msgstr ""
|
676 |
|
677 |
#: admin/partials/sassy-social-share-options-page.php:968
|
678 |
-
#: admin/partials/sassy-social-share-options-page.php:
|
679 |
#, fuzzy
|
680 |
msgid "Horizontal alignment"
|
681 |
msgstr "Alinhamento horizonal"
|
@@ -686,7 +678,7 @@ msgid "Center"
|
|
686 |
msgstr "Centro"
|
687 |
|
688 |
#: admin/partials/sassy-social-share-options-page.php:983
|
689 |
-
#: admin/partials/sassy-social-share-options-page.php:
|
690 |
#, fuzzy
|
691 |
msgid "Horizontal alignment of the sharing interface"
|
692 |
msgstr "Alinhamento horizontal da interface de compartilhamento"
|
@@ -713,42 +705,42 @@ msgstr ""
|
|
713 |
"Especifique a posição da interface de compartilhamento em relação ao conteúdo"
|
714 |
|
715 |
#: admin/partials/sassy-social-share-options-page.php:1019
|
716 |
-
#: admin/partials/sassy-social-share-options-page.php:
|
717 |
#, fuzzy
|
718 |
msgid "Placement"
|
719 |
msgstr "Localização"
|
720 |
|
721 |
#: admin/partials/sassy-social-share-options-page.php:1024
|
722 |
-
#: admin/partials/sassy-social-share-options-page.php:
|
723 |
#, fuzzy
|
724 |
msgid "Homepage"
|
725 |
msgstr "Homepage"
|
726 |
|
727 |
#: admin/partials/sassy-social-share-options-page.php:1026
|
728 |
-
#: admin/partials/sassy-social-share-options-page.php:
|
729 |
#, fuzzy
|
730 |
msgid "Posts"
|
731 |
msgstr "Posts"
|
732 |
|
733 |
#: admin/partials/sassy-social-share-options-page.php:1028
|
734 |
-
#: admin/partials/sassy-social-share-options-page.php:
|
735 |
#, fuzzy
|
736 |
msgid "Pages"
|
737 |
msgstr "Páginas"
|
738 |
|
739 |
#: admin/partials/sassy-social-share-options-page.php:1030
|
740 |
-
#: admin/partials/sassy-social-share-options-page.php:
|
741 |
msgid "Excerpts and Posts page"
|
742 |
msgstr ""
|
743 |
|
744 |
#: admin/partials/sassy-social-share-options-page.php:1032
|
745 |
-
#: admin/partials/sassy-social-share-options-page.php:
|
746 |
#, fuzzy
|
747 |
msgid "Category Archives"
|
748 |
msgstr "Arquivos de Categorias"
|
749 |
|
750 |
#: admin/partials/sassy-social-share-options-page.php:1034
|
751 |
-
#: admin/partials/sassy-social-share-options-page.php:
|
752 |
#, fuzzy
|
753 |
msgid "Archive Pages (Category, Tag, Author or Date based pages)"
|
754 |
msgstr "Página de arquivo (Páginas baseadas em Categoria, Tag, Autor ou Data)"
|
@@ -764,13 +756,13 @@ msgid "BuddyPress group (only at top of content)"
|
|
764 |
msgstr "Grupo BuddyPress (apenas acima do conteúdo)"
|
765 |
|
766 |
#: admin/partials/sassy-social-share-options-page.php:1058
|
767 |
-
#: admin/partials/sassy-social-share-options-page.php:
|
768 |
#, fuzzy
|
769 |
msgid "BBPress forum"
|
770 |
msgstr "Forum BBPress"
|
771 |
|
772 |
#: admin/partials/sassy-social-share-options-page.php:1061
|
773 |
-
#: admin/partials/sassy-social-share-options-page.php:
|
774 |
#, fuzzy
|
775 |
msgid "BBPress topic"
|
776 |
msgstr "Tópico BBPress"
|
@@ -802,29 +794,21 @@ msgstr ""
|
|
802 |
"Especifique as páginas onde você deseja habilitar a interface de "
|
803 |
"compartilhamento"
|
804 |
|
805 |
-
#: admin/partials/sassy-social-share-options-page.php:
|
806 |
-
#: admin/partials/sassy-social-share-options-page.php:
|
807 |
-
#: admin/partials/sassy-social-share-options-page.php:2179
|
808 |
-
msgid ""
|
809 |
-
"Save Facebook App Id and Secret in the \"Miscellaneous\" section to track "
|
810 |
-
"Facebook shares"
|
811 |
-
msgstr ""
|
812 |
-
|
813 |
-
#: admin/partials/sassy-social-share-options-page.php:1105
|
814 |
-
#: admin/partials/sassy-social-share-options-page.php:1571
|
815 |
#, fuzzy
|
816 |
msgid "Show share counts"
|
817 |
msgstr "Exibir contadores de compartilhamento"
|
818 |
|
819 |
-
#: admin/partials/sassy-social-share-options-page.php:
|
820 |
-
#: admin/partials/sassy-social-share-options-page.php:
|
821 |
msgid ""
|
822 |
"Share counts are supported for Twitter, Buffer, Reddit, Pinterest, "
|
823 |
"Odnoklassniki, Fintel and Vkontakte"
|
824 |
msgstr ""
|
825 |
|
826 |
-
#: admin/partials/sassy-social-share-options-page.php:
|
827 |
-
#: admin/partials/sassy-social-share-options-page.php:
|
828 |
#, php-format
|
829 |
msgid ""
|
830 |
"To show Twitter share count, you have to click \"Give me my Twitter counts "
|
@@ -833,36 +817,36 @@ msgid ""
|
|
833 |
"their website."
|
834 |
msgstr ""
|
835 |
|
836 |
-
#: admin/partials/sassy-social-share-options-page.php:
|
837 |
-
#: admin/partials/sassy-social-share-options-page.php:
|
838 |
#, fuzzy
|
839 |
msgid "If enabled, share counts are displayed above sharing icons."
|
840 |
msgstr ""
|
841 |
"Se habilitado, os contadores de compartilhamento são exibidos acima dos "
|
842 |
"ícones de compartilhamento."
|
843 |
|
844 |
-
#: admin/partials/sassy-social-share-options-page.php:
|
845 |
-
#: admin/partials/sassy-social-share-options-page.php:
|
846 |
#, fuzzy
|
847 |
msgid "Show total shares"
|
848 |
msgstr "Exibe total de compartilhamentos"
|
849 |
|
850 |
-
#: admin/partials/sassy-social-share-options-page.php:
|
851 |
-
#: admin/partials/sassy-social-share-options-page.php:
|
852 |
#, fuzzy
|
853 |
msgid "If enabled, total shares will be displayed with sharing icons"
|
854 |
msgstr ""
|
855 |
"Se habilitado, os totais de compartilhamentos serão exibidos com os ícones "
|
856 |
"de compartilhamento"
|
857 |
|
858 |
-
#: admin/partials/sassy-social-share-options-page.php:
|
859 |
-
#: admin/partials/sassy-social-share-options-page.php:
|
860 |
#, fuzzy
|
861 |
msgid "Enable 'More' icon"
|
862 |
msgstr "Habilitar 'Mais' ícones"
|
863 |
|
864 |
-
#: admin/partials/sassy-social-share-options-page.php:
|
865 |
-
#: admin/partials/sassy-social-share-options-page.php:
|
866 |
#, fuzzy
|
867 |
msgid ""
|
868 |
"If enabled, \"More\" icon will be displayed after selected sharing icons "
|
@@ -872,22 +856,22 @@ msgstr ""
|
|
872 |
"de compartilhamento com a exibição adicional das redes sociais "
|
873 |
"compartilhadas em um popup"
|
874 |
|
875 |
-
#: admin/partials/sassy-social-share-options-page.php:
|
876 |
#, fuzzy
|
877 |
msgid "Floating Sharing Interface Options"
|
878 |
msgstr "Opções da Interface de Compartilhamento Flutuante"
|
879 |
|
880 |
-
#: admin/partials/sassy-social-share-options-page.php:
|
881 |
#, fuzzy
|
882 |
msgid "Enable Floating sharing interface"
|
883 |
msgstr "Habilita interface de compartilhamento flutuante"
|
884 |
|
885 |
-
#: admin/partials/sassy-social-share-options-page.php:
|
886 |
#, fuzzy
|
887 |
msgid "Master control to enable floating sharing widget"
|
888 |
msgstr "Controle Mestre para habilitar o widget de compartilhamento flutuante"
|
889 |
|
890 |
-
#: admin/partials/sassy-social-share-options-page.php:
|
891 |
#, fuzzy
|
892 |
msgid ""
|
893 |
"Specify the color or hex code (example #cc78e0) for the background of "
|
@@ -900,15 +884,15 @@ msgstr ""
|
|
900 |
"Você pode obter o código hexadecimal que você requer por meio deste link <a "
|
901 |
"href=\\\"http://www.colorpicker.com/\\\" target=\\\"_blank\\\"> </a>"
|
902 |
|
903 |
-
#: admin/partials/sassy-social-share-options-page.php:
|
904 |
-
#: includes/class-sassy-social-share-widgets.php:
|
905 |
-
#: includes/class-sassy-social-share-widgets.php:
|
906 |
-
#: includes/class-sassy-social-share-widgets.php:
|
907 |
#, fuzzy
|
908 |
msgid "Left offset"
|
909 |
msgstr "Ajuste à esquerda"
|
910 |
|
911 |
-
#: admin/partials/sassy-social-share-options-page.php:
|
912 |
#, fuzzy
|
913 |
msgid ""
|
914 |
"Specify a number. Increase in number will shift sharing interface towards "
|
@@ -919,15 +903,15 @@ msgstr ""
|
|
919 |
"interface de compartilhamento para a esquerda. Os números podem também ser "
|
920 |
"negativos."
|
921 |
|
922 |
-
#: admin/partials/sassy-social-share-options-page.php:
|
923 |
-
#: includes/class-sassy-social-share-widgets.php:
|
924 |
-
#: includes/class-sassy-social-share-widgets.php:
|
925 |
-
#: includes/class-sassy-social-share-widgets.php:
|
926 |
#, fuzzy
|
927 |
msgid "Right offset"
|
928 |
msgstr "Ajuste à direita"
|
929 |
|
930 |
-
#: admin/partials/sassy-social-share-options-page.php:
|
931 |
#, fuzzy
|
932 |
msgid ""
|
933 |
"Specify a number. Increase in number will shift sharing interface towards "
|
@@ -938,12 +922,12 @@ msgstr ""
|
|
938 |
"interface de compartilhamento para a direita. Os números podem também ser "
|
939 |
"negativos."
|
940 |
|
941 |
-
#: admin/partials/sassy-social-share-options-page.php:
|
942 |
#, fuzzy
|
943 |
msgid "Top offset"
|
944 |
msgstr "Ajuste acima"
|
945 |
|
946 |
-
#: admin/partials/sassy-social-share-options-page.php:
|
947 |
#, fuzzy
|
948 |
msgid ""
|
949 |
"Specify a number. Increase in number will shift sharing interface towards "
|
@@ -953,38 +937,38 @@ msgstr ""
|
|
953 |
"compartilhamento para baixo e decrementos no número irão deslocar a "
|
954 |
"interface de compartilhamento para cima."
|
955 |
|
956 |
-
#: admin/partials/sassy-social-share-options-page.php:
|
957 |
#, fuzzy
|
958 |
msgid "BuddyPress group"
|
959 |
msgstr "Grupo BuddyPress"
|
960 |
|
961 |
-
#: admin/partials/sassy-social-share-options-page.php:
|
962 |
#, fuzzy
|
963 |
msgid "Specify the pages where you want to enable vertical Sharing interface"
|
964 |
msgstr ""
|
965 |
"Especifique as páginas onde você deseja habilitar a interface de "
|
966 |
"compartilhamento vertical"
|
967 |
|
968 |
-
#: admin/partials/sassy-social-share-options-page.php:
|
969 |
msgid "Hide floating slider"
|
970 |
msgstr ""
|
971 |
|
972 |
-
#: admin/partials/sassy-social-share-options-page.php:
|
973 |
msgid "Hides the slider arrow present below the floating share bar"
|
974 |
msgstr ""
|
975 |
|
976 |
-
#: admin/partials/sassy-social-share-options-page.php:
|
977 |
#, fuzzy
|
978 |
msgid "Vertical floating bar responsiveness"
|
979 |
msgstr "Sensibilidade da barra flutuante vertical"
|
980 |
|
981 |
-
#: admin/partials/sassy-social-share-options-page.php:
|
982 |
#, fuzzy, php-format
|
983 |
msgid "Display vertical interface only when screen is wider than %s pixels"
|
984 |
msgstr ""
|
985 |
"Exibe interface vertical apenas quando a tela é mais larga que %s pixels"
|
986 |
|
987 |
-
#: admin/partials/sassy-social-share-options-page.php:
|
988 |
#, fuzzy
|
989 |
msgid ""
|
990 |
"Display vertical interface only when screen is wider than the width "
|
@@ -993,12 +977,12 @@ msgstr ""
|
|
993 |
"Exibe interface vertical apenas quando a tela é mais larga que a largura "
|
994 |
"especificada."
|
995 |
|
996 |
-
#: admin/partials/sassy-social-share-options-page.php:
|
997 |
#, fuzzy
|
998 |
msgid "Horizontal floating bar responsiveness"
|
999 |
msgstr "Sensibilidade da barra flutuante horizontal"
|
1000 |
|
1001 |
-
#: admin/partials/sassy-social-share-options-page.php:
|
1002 |
#, fuzzy, php-format
|
1003 |
msgid ""
|
1004 |
"Stick vertical floating interface horizontally at bottom only when screen is "
|
@@ -1007,7 +991,7 @@ msgstr ""
|
|
1007 |
"Manter a vertical em baixo na interface de flutuação horizontal apenas "
|
1008 |
"quando a tela é mais estreita do que %s pixels"
|
1009 |
|
1010 |
-
#: admin/partials/sassy-social-share-options-page.php:
|
1011 |
#, fuzzy
|
1012 |
msgid ""
|
1013 |
"Stick vertical floating interface horizontally at bottom only when screen is "
|
@@ -1016,77 +1000,41 @@ msgstr ""
|
|
1016 |
"Manter a vertical em baixo na interface de flutuação horizontal apenas "
|
1017 |
"quando a tela é mais estreita do que a largura especificada"
|
1018 |
|
1019 |
-
#: admin/partials/sassy-social-share-options-page.php:
|
1020 |
#, fuzzy
|
1021 |
msgid "Horizontal floating bar position"
|
1022 |
msgstr "Posição da barra de flutuação horizontal"
|
1023 |
|
1024 |
-
#: admin/partials/sassy-social-share-options-page.php:
|
1025 |
#, fuzzy, php-format
|
1026 |
msgid "%s pixels from %s"
|
1027 |
msgstr "%s pixels de %s"
|
1028 |
|
1029 |
-
#: admin/partials/sassy-social-share-options-page.php:
|
1030 |
msgid "Auto-adjust according to screen width (responsive)"
|
1031 |
msgstr ""
|
1032 |
|
1033 |
-
#: admin/partials/sassy-social-share-options-page.php:
|
1034 |
#, fuzzy
|
1035 |
msgid "Alignment of horizontal floating interface. Number can be negative too."
|
1036 |
msgstr ""
|
1037 |
"Alinhamneto da interface de flutuação horizontal. O número pode ser negativo "
|
1038 |
"também."
|
1039 |
|
1040 |
-
#: admin/partials/sassy-social-share-options-page.php:
|
1041 |
-
msgid "Facebook Share Count"
|
1042 |
-
msgstr ""
|
1043 |
-
|
1044 |
-
#: admin/partials/sassy-social-share-options-page.php:1727
|
1045 |
-
#: includes/class-sassy-social-share-widgets.php:229
|
1046 |
-
msgid "Note"
|
1047 |
-
msgstr ""
|
1048 |
-
|
1049 |
-
#: admin/partials/sassy-social-share-options-page.php:1727
|
1050 |
-
msgid "Required only to track Facebook share count"
|
1051 |
-
msgstr ""
|
1052 |
-
|
1053 |
-
#: admin/partials/sassy-social-share-options-page.php:1731
|
1054 |
-
#, fuzzy
|
1055 |
-
msgid "Facebook App ID"
|
1056 |
-
msgstr "Facebook App ID"
|
1057 |
-
|
1058 |
-
#: admin/partials/sassy-social-share-options-page.php:1742
|
1059 |
-
#, php-format
|
1060 |
-
msgid ""
|
1061 |
-
"Required to track Facebook shares. Please follow the documentation at <a "
|
1062 |
-
"href=\"%s\" target=\"_blank\">this link</a> to get Facebook App ID"
|
1063 |
-
msgstr ""
|
1064 |
-
|
1065 |
-
#: admin/partials/sassy-social-share-options-page.php:1749
|
1066 |
-
msgid "Facebook App Secret"
|
1067 |
-
msgstr ""
|
1068 |
-
|
1069 |
-
#: admin/partials/sassy-social-share-options-page.php:1760
|
1070 |
-
#, php-format
|
1071 |
-
msgid ""
|
1072 |
-
"Required to track Facebook shares. Please follow the documentation at <a "
|
1073 |
-
"href=\"%s\" target=\"_blank\">this link</a> to get Facebook App Secret"
|
1074 |
-
msgstr ""
|
1075 |
-
|
1076 |
-
#: admin/partials/sassy-social-share-options-page.php:1775
|
1077 |
msgid "Use plain background for Instagram icon"
|
1078 |
msgstr ""
|
1079 |
|
1080 |
-
#: admin/partials/sassy-social-share-options-page.php:
|
1081 |
msgid ""
|
1082 |
"Uses plain background for Instagram icon instead of multicolored background"
|
1083 |
msgstr ""
|
1084 |
|
1085 |
-
#: admin/partials/sassy-social-share-options-page.php:
|
1086 |
msgid "Load Javascript files in footer"
|
1087 |
msgstr ""
|
1088 |
|
1089 |
-
#: admin/partials/sassy-social-share-options-page.php:
|
1090 |
#, fuzzy
|
1091 |
msgid ""
|
1092 |
"If enabled (recommended), Javascript files will be included in the footer of "
|
@@ -1095,22 +1043,22 @@ msgstr ""
|
|
1095 |
"Se habilitado (recomendado), o arquivo do Javascript será incluído no rodapé "
|
1096 |
"do seu website."
|
1097 |
|
1098 |
-
#: admin/partials/sassy-social-share-options-page.php:
|
1099 |
msgid "Load Javascript only when needed"
|
1100 |
msgstr ""
|
1101 |
|
1102 |
-
#: admin/partials/sassy-social-share-options-page.php:
|
1103 |
msgid ""
|
1104 |
"Javascript file will be loaded only at the webpages where share icons have "
|
1105 |
"been integrated"
|
1106 |
msgstr ""
|
1107 |
|
1108 |
-
#: admin/partials/sassy-social-share-options-page.php:
|
1109 |
#, fuzzy
|
1110 |
msgid "Delete all the options on plugin deletion"
|
1111 |
msgstr "Remove todas as opções na remoção do pluguin"
|
1112 |
|
1113 |
-
#: admin/partials/sassy-social-share-options-page.php:
|
1114 |
#, fuzzy
|
1115 |
msgid ""
|
1116 |
"If enabled, plugin options will get deleted when plugin is deleted/"
|
@@ -1121,17 +1069,17 @@ msgstr ""
|
|
1121 |
"removido/desistalado e você necessitará reconfigurar as opções quando você "
|
1122 |
"instalar o plugin da próxima vez."
|
1123 |
|
1124 |
-
#: admin/partials/sassy-social-share-options-page.php:
|
1125 |
#, fuzzy
|
1126 |
msgid "Share Count Cache"
|
1127 |
msgstr "Cache de Contador de Compartilhamento"
|
1128 |
|
1129 |
-
#: admin/partials/sassy-social-share-options-page.php:
|
1130 |
#, fuzzy
|
1131 |
msgid "Refresh Share Count cache every"
|
1132 |
msgstr "Atualizar o contador de compartilhamento a cada"
|
1133 |
|
1134 |
-
#: admin/partials/sassy-social-share-options-page.php:
|
1135 |
#, php-format
|
1136 |
msgid ""
|
1137 |
"Frequent cache refreshing results in slower loading of pages with share "
|
@@ -1139,52 +1087,52 @@ msgid ""
|
|
1139 |
"target=\"_blank\">here</a>"
|
1140 |
msgstr ""
|
1141 |
|
1142 |
-
#: admin/partials/sassy-social-share-options-page.php:
|
1143 |
#, fuzzy
|
1144 |
msgid "Clear Share Counts Cache"
|
1145 |
msgstr "Limpeza do Cache dos Contadores de Compartilhamento"
|
1146 |
|
1147 |
-
#: admin/partials/sassy-social-share-options-page.php:
|
1148 |
#, fuzzy
|
1149 |
msgid "Share Counts cache cleared successfully."
|
1150 |
msgstr "Sucesso na limpeza do Cache dos Contadores de Compartilhamento."
|
1151 |
|
1152 |
-
#: admin/partials/sassy-social-share-options-page.php:
|
1153 |
#, fuzzy
|
1154 |
msgid "Use this to clear cached share counts"
|
1155 |
msgstr "Use isso para limpeza do Cache dos Contadores de Compartilhamento"
|
1156 |
|
1157 |
-
#: admin/partials/sassy-social-share-options-page.php:
|
1158 |
#, fuzzy
|
1159 |
msgid "Url shortener"
|
1160 |
msgstr "Encurtador de Url"
|
1161 |
|
1162 |
-
#: admin/partials/sassy-social-share-options-page.php:
|
1163 |
#, fuzzy
|
1164 |
msgid "Use shortlinks already installed"
|
1165 |
msgstr "Use shortlinks já instalados"
|
1166 |
|
1167 |
-
#: admin/partials/sassy-social-share-options-page.php:
|
1168 |
msgid ""
|
1169 |
"Use default short url permalinks without the need for any additional plugin"
|
1170 |
msgstr ""
|
1171 |
|
1172 |
-
#: admin/partials/sassy-social-share-options-page.php:
|
1173 |
#, fuzzy
|
1174 |
msgid "Enable bit.ly url shortener for sharing"
|
1175 |
msgstr "Habilitar encurtador de url bit.ly para compartilhamento"
|
1176 |
|
1177 |
-
#: admin/partials/sassy-social-share-options-page.php:
|
1178 |
#, fuzzy
|
1179 |
msgid "Master control to enable bit.ly url shortening for sharing"
|
1180 |
msgstr ""
|
1181 |
"Controle Mestre para habilitar encurtador de url bit.ly para compartilhamento"
|
1182 |
|
1183 |
-
#: admin/partials/sassy-social-share-options-page.php:
|
1184 |
msgid "Bit.ly Generic Access Token"
|
1185 |
msgstr ""
|
1186 |
|
1187 |
-
#: admin/partials/sassy-social-share-options-page.php:
|
1188 |
#, php-format
|
1189 |
msgid ""
|
1190 |
"Login to your bit.ly account and navigate to <strong>Profile Settings > "
|
@@ -1193,17 +1141,17 @@ msgid ""
|
|
1193 |
"\">link</a>"
|
1194 |
msgstr ""
|
1195 |
|
1196 |
-
#: admin/partials/sassy-social-share-options-page.php:
|
1197 |
#, fuzzy
|
1198 |
msgid "Clear Bitly Cache"
|
1199 |
msgstr "Limpar o Cache Bitly"
|
1200 |
|
1201 |
-
#: admin/partials/sassy-social-share-options-page.php:
|
1202 |
#, fuzzy
|
1203 |
msgid "ShortUrl cache cleared successfully."
|
1204 |
msgstr "Cache ShortUrl limpo com sucesso."
|
1205 |
|
1206 |
-
#: admin/partials/sassy-social-share-options-page.php:
|
1207 |
#, fuzzy
|
1208 |
msgid ""
|
1209 |
"Use this to delete short urls saved in database. Handy, if urls of your "
|
@@ -1214,13 +1162,13 @@ msgstr ""
|
|
1214 |
"urls do seu website foram trocadas mas as short urls ainda estão sendo "
|
1215 |
"geradas para suas urls antigas."
|
1216 |
|
1217 |
-
#: admin/partials/sassy-social-share-options-page.php:
|
1218 |
-
#: admin/partials/sassy-social-share-options-page.php:
|
1219 |
#, fuzzy
|
1220 |
msgid "Language"
|
1221 |
msgstr "Languagem"
|
1222 |
|
1223 |
-
#: admin/partials/sassy-social-share-options-page.php:
|
1224 |
#, fuzzy, php-format
|
1225 |
msgid ""
|
1226 |
"Enter the code of the language you want to use for like buttons. You can "
|
@@ -1231,18 +1179,18 @@ msgstr ""
|
|
1231 |
"achar o código da linguagem <a href=\\\"%s\\\" target=\\\"_blank\\\">neste "
|
1232 |
"link</a>. Deixe-o em branco para a linguagem padrão (inglês)"
|
1233 |
|
1234 |
-
#: admin/partials/sassy-social-share-options-page.php:
|
1235 |
#, fuzzy
|
1236 |
msgid "Username in sharing"
|
1237 |
msgstr "Username no compartilhamento"
|
1238 |
|
1239 |
-
#: admin/partials/sassy-social-share-options-page.php:
|
1240 |
#, fuzzy
|
1241 |
msgid "Twitter username (without @)"
|
1242 |
msgstr "Username do Twitter (sem @)"
|
1243 |
|
1244 |
-
#: admin/partials/sassy-social-share-options-page.php:
|
1245 |
-
#: admin/partials/sassy-social-share-options-page.php:
|
1246 |
#, fuzzy
|
1247 |
msgid ""
|
1248 |
"Provided username will be appended after the content being shared as \"via "
|
@@ -1253,58 +1201,58 @@ msgstr ""
|
|
1253 |
"\\\"via @USERNAME\\\". Deixe em branco se você não desejar nenhum username "
|
1254 |
"no conteúdo sendo compartilhado."
|
1255 |
|
1256 |
-
#: admin/partials/sassy-social-share-options-page.php:
|
1257 |
#, fuzzy
|
1258 |
msgid "Buffer username (without @)"
|
1259 |
msgstr "Username do Buffer (sem @)"
|
1260 |
|
1261 |
-
#: admin/partials/sassy-social-share-options-page.php:
|
1262 |
msgid "AMP"
|
1263 |
msgstr ""
|
1264 |
|
1265 |
-
#: admin/partials/sassy-social-share-options-page.php:
|
1266 |
msgid "Enable sharing on AMP pages"
|
1267 |
msgstr ""
|
1268 |
|
1269 |
-
#: admin/partials/sassy-social-share-options-page.php:
|
1270 |
msgid "Enable this option to render sharing icons on AMP pages"
|
1271 |
msgstr ""
|
1272 |
|
1273 |
-
#: admin/partials/sassy-social-share-options-page.php:
|
1274 |
-
#: admin/partials/sassy-social-share-options-page.php:
|
1275 |
#, fuzzy
|
1276 |
msgid "Custom CSS"
|
1277 |
msgstr "CSS Personalizado"
|
1278 |
|
1279 |
-
#: admin/partials/sassy-social-share-options-page.php:
|
1280 |
#, fuzzy
|
1281 |
msgid "You can specify any additional CSS rules (without <style> tag)"
|
1282 |
msgstr ""
|
1283 |
"Você poderá especificar qualquer regra adicional de CSS (sem a tag <"
|
1284 |
"style> )"
|
1285 |
|
1286 |
-
#: admin/partials/sassy-social-share-options-page.php:
|
1287 |
msgid "myCRED"
|
1288 |
msgstr ""
|
1289 |
|
1290 |
-
#: admin/partials/sassy-social-share-options-page.php:
|
1291 |
msgid "Append myCRED referral ID to the urls being shared"
|
1292 |
msgstr ""
|
1293 |
|
1294 |
-
#: admin/partials/sassy-social-share-options-page.php:
|
1295 |
msgid "Social Share Shortcode & Widget"
|
1296 |
msgstr ""
|
1297 |
|
1298 |
-
#: admin/partials/sassy-social-share-options-page.php:
|
1299 |
msgid "Follow Icons Shortcode & Widget"
|
1300 |
msgstr ""
|
1301 |
|
1302 |
-
#: admin/partials/sassy-social-share-options-page.php:
|
1303 |
#, fuzzy
|
1304 |
msgid "Facebook Sharing Troubleshooter"
|
1305 |
msgstr "Solução de problema no compartilhamento com o Facebook"
|
1306 |
|
1307 |
-
#: admin/partials/sassy-social-share-options-page.php:
|
1308 |
msgid ""
|
1309 |
"If Facebook sharing is not working fine, click at the following link and "
|
1310 |
"enter the problematic url (where Facebook sharing is not working properly) "
|
@@ -1312,31 +1260,41 @@ msgid ""
|
|
1312 |
"button."
|
1313 |
msgstr ""
|
1314 |
|
1315 |
-
#: admin/partials/sassy-social-share-options-page.php:
|
1316 |
msgid ""
|
1317 |
"<strong>Note:</strong> Plugin will not work on local server. You should have "
|
1318 |
"an online website for the plugin to function properly."
|
1319 |
msgstr ""
|
1320 |
|
1321 |
-
#: admin/partials/sassy-social-share-options-page.php:
|
1322 |
msgid ""
|
1323 |
"Why is sharer not showing the correct image, title and other content when "
|
1324 |
"sharing a webpage?"
|
1325 |
msgstr ""
|
1326 |
|
1327 |
-
#: admin/partials/sassy-social-share-options-page.php:
|
1328 |
msgid "Why is Facebook share count not working?"
|
1329 |
msgstr ""
|
1330 |
|
1331 |
-
#: admin/partials/sassy-social-share-options-page.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1332 |
msgid "How to Customize the Url being Shared?"
|
1333 |
msgstr ""
|
1334 |
|
1335 |
-
#: admin/partials/sassy-social-share-options-page.php:
|
1336 |
msgid "Why is Instagram icon redirecting to Instagram website?"
|
1337 |
msgstr ""
|
1338 |
|
1339 |
-
#: admin/partials/sassy-social-share-options-page.php:
|
1340 |
msgid ""
|
1341 |
"Instagram icon is there to send website visitors to the Instagram page of "
|
1342 |
"your choice. You can save the desired Instagram handle in \"Instagram "
|
@@ -1344,48 +1302,48 @@ msgid ""
|
|
1344 |
"sections."
|
1345 |
msgstr ""
|
1346 |
|
1347 |
-
#: admin/partials/sassy-social-share-options-page.php:
|
1348 |
msgid ""
|
1349 |
"Why are Twitter shares not appearing even after registering at Twitcount.com?"
|
1350 |
msgstr ""
|
1351 |
|
1352 |
-
#: admin/partials/sassy-social-share-options-page.php:
|
1353 |
msgid ""
|
1354 |
"It takes some time for their service to track the shares made on Twitter "
|
1355 |
"from your website. If you still feel it's taking too long you can contact "
|
1356 |
"their support directly from their website."
|
1357 |
msgstr ""
|
1358 |
|
1359 |
-
#: admin/partials/sassy-social-share-options-page.php:
|
1360 |
msgid ""
|
1361 |
"How to restore Social Share counts lost after moving my website to SSL/Https?"
|
1362 |
msgstr ""
|
1363 |
|
1364 |
-
#: admin/partials/sassy-social-share-options-page.php:
|
1365 |
#, fuzzy
|
1366 |
msgid "How to integrate Google Analytics with sharing?"
|
1367 |
msgstr "Como integrar o Google Analytics com compartilhamento?"
|
1368 |
|
1369 |
-
#: admin/partials/sassy-social-share-options-page.php:
|
1370 |
msgid "Why the color of share icons is not being updated?"
|
1371 |
msgstr ""
|
1372 |
|
1373 |
-
#: admin/partials/sassy-social-share-options-page.php:
|
1374 |
msgid ""
|
1375 |
"How to show recent Facebook Comments from all over the website in a widget?"
|
1376 |
msgstr ""
|
1377 |
|
1378 |
-
#: admin/partials/sassy-social-share-options-page.php:
|
1379 |
msgid ""
|
1380 |
"How to recover the Facebook Comments lost after moving my website to SSL/"
|
1381 |
"Https?"
|
1382 |
msgstr ""
|
1383 |
|
1384 |
-
#: admin/partials/sassy-social-share-options-page.php:
|
1385 |
msgid "How to Place Title and Social Share Icons in the Same Row?"
|
1386 |
msgstr ""
|
1387 |
|
1388 |
-
#: admin/partials/sassy-social-share-options-page.php:
|
1389 |
#, fuzzy
|
1390 |
msgid ""
|
1391 |
"How can I show share counts of my website rather than of individual pages/"
|
@@ -1394,64 +1352,64 @@ msgstr ""
|
|
1394 |
"Como posso exibir os contadores de compartilhamento do meu website ao invés "
|
1395 |
"das páginas/posts individuais?"
|
1396 |
|
1397 |
-
#: admin/partials/sassy-social-share-options-page.php:
|
1398 |
#, fuzzy
|
1399 |
msgid "How can I disable sharing on particular page/post?"
|
1400 |
msgstr ""
|
1401 |
"Como posso desabilitar o compartilhamento em uma página/post em particular?"
|
1402 |
|
1403 |
-
#: admin/partials/sassy-social-share-options-page.php:
|
1404 |
#, fuzzy
|
1405 |
msgid "How can I specify minimum sharing count for sharing networks?"
|
1406 |
msgstr ""
|
1407 |
"Como posso especificar um contador mínimo de compartilhamento das redes "
|
1408 |
"sociais?"
|
1409 |
|
1410 |
-
#: admin/partials/sassy-social-share-options-page.php:
|
1411 |
#, fuzzy
|
1412 |
msgid "How to share specific page?"
|
1413 |
msgstr "Como compartilhar página específica?"
|
1414 |
|
1415 |
-
#: admin/partials/sassy-social-share-options-page.php:
|
1416 |
#, fuzzy
|
1417 |
msgid "How to customize the look of total share counts?"
|
1418 |
msgstr ""
|
1419 |
"Como personalizar a aparência dos contatores de compartilhamentos totais?"
|
1420 |
|
1421 |
-
#: admin/partials/sassy-social-share-options-page.php:
|
1422 |
#, fuzzy
|
1423 |
msgid "How to customize the look of individual share counts?"
|
1424 |
msgstr ""
|
1425 |
"Como personalizar a aparência dos contadores de compartilhamento individuais?"
|
1426 |
|
1427 |
-
#: admin/partials/sassy-social-share-options-page.php:
|
1428 |
#, fuzzy
|
1429 |
msgid "How to show Whatsapp icon only on mobile devices?"
|
1430 |
msgstr "Como exibir o ícone do Whatsapp apenas em dispositivos móveis?"
|
1431 |
|
1432 |
-
#: admin/partials/sassy-social-share-options-page.php:
|
1433 |
#, fuzzy
|
1434 |
msgid "How to hide arrow after floating sharing bar?"
|
1435 |
msgstr "Como esconder a seta após a barra de compartilahmento flutuante?"
|
1436 |
|
1437 |
-
#: admin/partials/sassy-social-share-options-page.php:
|
1438 |
msgid "Why is share count not getting updated?"
|
1439 |
msgstr ""
|
1440 |
|
1441 |
-
#: admin/partials/sassy-social-share-options-page.php:
|
1442 |
msgid "Why is there so much space between like buttons?"
|
1443 |
msgstr ""
|
1444 |
|
1445 |
-
#: admin/partials/sassy-social-share-options-page.php:
|
1446 |
msgid "Why are floating sharing/like buttons not appearing at homepage?"
|
1447 |
msgstr ""
|
1448 |
|
1449 |
-
#: admin/partials/sassy-social-share-options-page.php:
|
1450 |
#, fuzzy
|
1451 |
msgid "Save Changes"
|
1452 |
msgstr "Salvar Alterações"
|
1453 |
|
1454 |
-
#: admin/partials/sassy-social-share-options-page.php:
|
1455 |
msgid ""
|
1456 |
"If you can send (to hello@heateor.com) how this plugin is helping your "
|
1457 |
"business, we would be glad to shoutout on Instagram. You can also send any "
|
@@ -1495,6 +1453,10 @@ msgid ""
|
|
1495 |
"Social networks like Facebook, Twitter, Tumblr, Whatsapp and many more"
|
1496 |
msgstr ""
|
1497 |
|
|
|
|
|
|
|
|
|
1498 |
#: includes/class-sassy-social-share-widgets.php:229
|
1499 |
msgid ""
|
1500 |
"Make sure \"Standard Sharing Interface\" is enabled in \"Standard Interface"
|
@@ -1537,13 +1499,13 @@ msgid "Custom Url"
|
|
1537 |
msgstr "Url Personalizada"
|
1538 |
|
1539 |
#: includes/class-sassy-social-share-widgets.php:244
|
1540 |
-
#: includes/class-sassy-social-share-widgets.php:
|
1541 |
#, fuzzy
|
1542 |
msgid "Before widget content:"
|
1543 |
msgstr "Antes do conteúdo do widget:"
|
1544 |
|
1545 |
#: includes/class-sassy-social-share-widgets.php:246
|
1546 |
-
#: includes/class-sassy-social-share-widgets.php:
|
1547 |
#, fuzzy
|
1548 |
msgid "After widget content:"
|
1549 |
msgstr "Depois do conteúdo do widget:"
|
@@ -1594,151 +1556,151 @@ msgstr ""
|
|
1594 |
msgid "These icons link to your Social Media accounts"
|
1595 |
msgstr ""
|
1596 |
|
1597 |
-
#: includes/class-sassy-social-share-widgets.php:
|
1598 |
msgid "Type:"
|
1599 |
msgstr ""
|
1600 |
|
1601 |
-
#: includes/class-sassy-social-share-widgets.php:
|
1602 |
#, fuzzy
|
1603 |
msgid "Standard"
|
1604 |
msgstr "Opções de Interface Padrão"
|
1605 |
|
1606 |
-
#: includes/class-sassy-social-share-widgets.php:
|
1607 |
#, fuzzy
|
1608 |
msgid "Floating"
|
1609 |
msgstr "Habilitar botões like flutuantes"
|
1610 |
|
1611 |
-
#: includes/class-sassy-social-share-widgets.php:
|
1612 |
#, fuzzy
|
1613 |
msgid "Top offset:"
|
1614 |
msgstr "Ajuste acima"
|
1615 |
|
1616 |
-
#: includes/class-sassy-social-share-widgets.php:
|
1617 |
#, fuzzy
|
1618 |
msgid "Alignment:"
|
1619 |
msgstr "Alinhamento"
|
1620 |
|
1621 |
-
#: includes/class-sassy-social-share-widgets.php:
|
1622 |
msgid "Size of icons"
|
1623 |
msgstr ""
|
1624 |
|
1625 |
-
#: includes/class-sassy-social-share-widgets.php:
|
1626 |
msgid "Icon Shape"
|
1627 |
msgstr ""
|
1628 |
|
1629 |
-
#: includes/class-sassy-social-share-widgets.php:
|
1630 |
msgid "Apply icon color and background color from Theme Selection section:"
|
1631 |
msgstr ""
|
1632 |
|
1633 |
-
#: includes/class-sassy-social-share-widgets.php:
|
1634 |
msgid "No"
|
1635 |
msgstr ""
|
1636 |
|
1637 |
-
#: includes/class-sassy-social-share-widgets.php:
|
1638 |
msgid "Yes, Standard Interface Theme"
|
1639 |
msgstr ""
|
1640 |
|
1641 |
-
#: includes/class-sassy-social-share-widgets.php:
|
1642 |
msgid "Yes, Floating Interface Theme"
|
1643 |
msgstr ""
|
1644 |
|
1645 |
-
#: includes/class-sassy-social-share-widgets.php:
|
1646 |
msgid "Facebook URL:"
|
1647 |
msgstr ""
|
1648 |
|
1649 |
-
#: includes/class-sassy-social-share-widgets.php:
|
1650 |
msgid "Twitter URL:"
|
1651 |
msgstr ""
|
1652 |
|
1653 |
-
#: includes/class-sassy-social-share-widgets.php:
|
1654 |
msgid "Parler URL:"
|
1655 |
msgstr ""
|
1656 |
|
1657 |
-
#: includes/class-sassy-social-share-widgets.php:
|
1658 |
msgid "Instagram URL:"
|
1659 |
msgstr ""
|
1660 |
|
1661 |
-
#: includes/class-sassy-social-share-widgets.php:
|
1662 |
msgid "Pinterest URL:"
|
1663 |
msgstr ""
|
1664 |
|
1665 |
-
#: includes/class-sassy-social-share-widgets.php:
|
1666 |
msgid "Behance URL:"
|
1667 |
msgstr ""
|
1668 |
|
1669 |
-
#: includes/class-sassy-social-share-widgets.php:
|
1670 |
msgid "Flickr URL:"
|
1671 |
msgstr ""
|
1672 |
|
1673 |
-
#: includes/class-sassy-social-share-widgets.php:
|
1674 |
msgid "Foursquare URL:"
|
1675 |
msgstr ""
|
1676 |
|
1677 |
-
#: includes/class-sassy-social-share-widgets.php:
|
1678 |
msgid "Github URL:"
|
1679 |
msgstr ""
|
1680 |
|
1681 |
-
#: includes/class-sassy-social-share-widgets.php:
|
1682 |
msgid "LinkedIn URL:"
|
1683 |
msgstr ""
|
1684 |
|
1685 |
-
#: includes/class-sassy-social-share-widgets.php:
|
1686 |
msgid "LinkedIn Company URL:"
|
1687 |
msgstr ""
|
1688 |
|
1689 |
-
#: includes/class-sassy-social-share-widgets.php:
|
1690 |
msgid "Gab URL:"
|
1691 |
msgstr ""
|
1692 |
|
1693 |
-
#: includes/class-sassy-social-share-widgets.php:
|
1694 |
msgid "Medium URL:"
|
1695 |
msgstr ""
|
1696 |
|
1697 |
-
#: includes/class-sassy-social-share-widgets.php:
|
1698 |
msgid "MeWe URL:"
|
1699 |
msgstr ""
|
1700 |
|
1701 |
-
#: includes/class-sassy-social-share-widgets.php:
|
1702 |
msgid "Odnoklassniki URL:"
|
1703 |
msgstr ""
|
1704 |
|
1705 |
-
#: includes/class-sassy-social-share-widgets.php:
|
1706 |
msgid "Snapchat URL:"
|
1707 |
msgstr ""
|
1708 |
|
1709 |
-
#: includes/class-sassy-social-share-widgets.php:
|
1710 |
msgid "Telegram URL:"
|
1711 |
msgstr ""
|
1712 |
|
1713 |
-
#: includes/class-sassy-social-share-widgets.php:
|
1714 |
msgid "Tumblr URL:"
|
1715 |
msgstr ""
|
1716 |
|
1717 |
-
#: includes/class-sassy-social-share-widgets.php:
|
1718 |
msgid "Vimeo URL:"
|
1719 |
msgstr ""
|
1720 |
|
1721 |
-
#: includes/class-sassy-social-share-widgets.php:
|
1722 |
msgid "Vkontakte URL:"
|
1723 |
msgstr ""
|
1724 |
|
1725 |
-
#: includes/class-sassy-social-share-widgets.php:
|
1726 |
msgid "Whatsapp URL:"
|
1727 |
msgstr ""
|
1728 |
|
1729 |
-
#: includes/class-sassy-social-share-widgets.php:
|
1730 |
msgid "Xing URL:"
|
1731 |
msgstr ""
|
1732 |
|
1733 |
-
#: includes/class-sassy-social-share-widgets.php:
|
1734 |
msgid "Youtube URL:"
|
1735 |
msgstr ""
|
1736 |
|
1737 |
-
#: includes/class-sassy-social-share-widgets.php:
|
1738 |
msgid "Youtube Channel URL:"
|
1739 |
msgstr ""
|
1740 |
|
1741 |
-
#: includes/class-sassy-social-share-widgets.php:
|
1742 |
msgid "RSS Feed URL:"
|
1743 |
msgstr ""
|
1744 |
|
@@ -1752,13 +1714,13 @@ msgstr ""
|
|
1752 |
msgid "Archives"
|
1753 |
msgstr ""
|
1754 |
|
1755 |
-
#: public/class-sassy-social-share-public.php:
|
1756 |
-
#: public/class-sassy-social-share-public.php:
|
1757 |
#, fuzzy
|
1758 |
msgid "Invalid request"
|
1759 |
msgstr "Requisição inválida"
|
1760 |
|
1761 |
-
#: public/class-sassy-social-share-public.php:
|
1762 |
#, fuzzy
|
1763 |
msgid "Providers not selected"
|
1764 |
msgstr "Provedor não selecionado"
|
3 |
msgstr ""
|
4 |
"Project-Id-Version: Sassy Social Share\n"
|
5 |
"Report-Msgid-Bugs-To: \n"
|
6 |
+
"POT-Creation-Date: 2021-07-14 12:25+0530\n"
|
7 |
"PO-Revision-Date: 2021-02-03 13:11+0530\n"
|
8 |
"Last-Translator: Heateor <hello@heateor.com>\n"
|
9 |
"Language-Team: Heateor <hello@heateor.com>\n"
|
75 |
msgid "Dismiss this notice"
|
76 |
msgstr "Dispense este aviso"
|
77 |
|
78 |
+
#: admin/class-sassy-social-share-admin.php:539
|
79 |
msgid "Thanks for installing Sassy Social Share plugin"
|
80 |
msgstr ""
|
81 |
|
82 |
+
#: admin/class-sassy-social-share-admin.php:541
|
83 |
msgid "Configure the Plugin"
|
84 |
msgstr ""
|
85 |
|
86 |
+
#: admin/class-sassy-social-share-admin.php:552
|
87 |
msgid ""
|
88 |
"Update \"Social Share myCRED Integration\" add-on for maximum compatibility "
|
89 |
"with current version of Sassy Social Share"
|
90 |
msgstr ""
|
91 |
|
92 |
+
#: admin/class-sassy-social-share-admin.php:576
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
93 |
#, php-format
|
94 |
msgid ""
|
95 |
"This plugin is GDPR compliant. You need to update the privacy policy of your "
|
97 |
"\"%s\" target=\"_blank\">here</a>"
|
98 |
msgstr ""
|
99 |
|
100 |
+
#: admin/class-sassy-social-share-admin.php:576
|
101 |
+
#: admin/class-sassy-social-share-admin.php:602
|
102 |
+
#: admin/class-sassy-social-share-admin.php:625
|
103 |
+
msgid "Okay"
|
104 |
+
msgstr ""
|
105 |
+
|
106 |
+
#: admin/class-sassy-social-share-admin.php:602
|
107 |
#, php-format
|
108 |
msgid ""
|
109 |
"Twitter share counts are no longer working as newsharecounts.com is down. To "
|
111 |
"\"_blank\">here</a> with this domain. No other steps needed."
|
112 |
msgstr ""
|
113 |
|
114 |
+
#: admin/class-sassy-social-share-admin.php:625
|
115 |
#, php-format
|
116 |
msgid ""
|
117 |
"Now plugin supports a new service Twitcount.com to show Twitter shares. To "
|
120 |
"your website %s with them. No need to copy-paste any code from their website."
|
121 |
msgstr ""
|
122 |
|
123 |
+
#: admin/class-sassy-social-share-admin.php:643
|
124 |
msgid "Add-Ons"
|
125 |
msgstr ""
|
126 |
|
127 |
+
#: admin/class-sassy-social-share-admin.php:644
|
128 |
msgid "Support Documentation"
|
129 |
msgstr ""
|
130 |
|
131 |
+
#: admin/class-sassy-social-share-admin.php:645
|
132 |
#, fuzzy
|
133 |
msgid "Settings"
|
134 |
msgstr "Configurações"
|
216 |
msgstr "Pontue como 5-strelas"
|
217 |
|
218 |
#: admin/partials/sassy-social-share-options-page.php:16
|
219 |
+
#: admin/partials/sassy-social-share-options-page.php:2151
|
220 |
#, php-format
|
221 |
msgid ""
|
222 |
"You can appreciate the effort put in this free plugin by rating it <a href="
|
239 |
msgstr "Interface Flutuante"
|
240 |
|
241 |
#: admin/partials/sassy-social-share-options-page.php:27
|
242 |
+
#: admin/partials/sassy-social-share-options-page.php:1704
|
243 |
#, fuzzy
|
244 |
msgid "Miscellaneous"
|
245 |
msgstr "Miscelânia"
|
249 |
msgstr ""
|
250 |
|
251 |
#: admin/partials/sassy-social-share-options-page.php:35
|
252 |
+
#: admin/partials/sassy-social-share-options-page.php:2073
|
253 |
#, fuzzy
|
254 |
msgid "Shortcode & Widget"
|
255 |
msgstr "Shortcode & Widget"
|
260 |
msgstr "Resolução de Problemas"
|
261 |
|
262 |
#: admin/partials/sassy-social-share-options-page.php:37
|
263 |
+
#: admin/partials/sassy-social-share-options-page.php:2108
|
264 |
#, fuzzy
|
265 |
msgid "FAQ"
|
266 |
msgstr "P&R"
|
294 |
|
295 |
#: admin/partials/sassy-social-share-options-page.php:144
|
296 |
#: admin/partials/sassy-social-share-options-page.php:460
|
297 |
+
#: includes/class-sassy-social-share-widgets.php:816
|
298 |
#, fuzzy
|
299 |
msgid "Round"
|
300 |
msgstr "Arredondada"
|
301 |
|
302 |
#: admin/partials/sassy-social-share-options-page.php:146
|
303 |
#: admin/partials/sassy-social-share-options-page.php:462
|
304 |
+
#: includes/class-sassy-social-share-widgets.php:817
|
305 |
#, fuzzy
|
306 |
msgid "Square"
|
307 |
msgstr "Quadrada"
|
411 |
|
412 |
#: admin/partials/sassy-social-share-options-page.php:280
|
413 |
#: admin/partials/sassy-social-share-options-page.php:596
|
414 |
+
#: admin/partials/sassy-social-share-options-page.php:1399
|
415 |
#: includes/class-sassy-social-share-widgets.php:505
|
416 |
#, fuzzy
|
417 |
msgid "Background Color"
|
475 |
#: admin/partials/sassy-social-share-options-page.php:331
|
476 |
#: admin/partials/sassy-social-share-options-page.php:646
|
477 |
#: admin/partials/sassy-social-share-options-page.php:973
|
478 |
+
#: admin/partials/sassy-social-share-options-page.php:1422
|
479 |
#: includes/class-sassy-social-share-widgets.php:491
|
480 |
+
#: includes/class-sassy-social-share-widgets.php:793
|
481 |
#, fuzzy
|
482 |
msgid "Left"
|
483 |
msgstr "Esquerda"
|
491 |
#: admin/partials/sassy-social-share-options-page.php:335
|
492 |
#: admin/partials/sassy-social-share-options-page.php:650
|
493 |
#: admin/partials/sassy-social-share-options-page.php:975
|
494 |
+
#: admin/partials/sassy-social-share-options-page.php:1423
|
495 |
#: includes/class-sassy-social-share-widgets.php:492
|
496 |
+
#: includes/class-sassy-social-share-widgets.php:800
|
497 |
#, fuzzy
|
498 |
msgid "Right"
|
499 |
msgstr "Direita"
|
555 |
msgstr "\"Controle Mestre para habilitar o compartilhamento padrão"
|
556 |
|
557 |
#: admin/partials/sassy-social-share-options-page.php:710
|
558 |
+
#: admin/partials/sassy-social-share-options-page.php:1197
|
559 |
#, fuzzy
|
560 |
msgid "Target Url"
|
561 |
msgstr "Url Destino"
|
562 |
|
563 |
#: admin/partials/sassy-social-share-options-page.php:715
|
564 |
+
#: admin/partials/sassy-social-share-options-page.php:1202
|
565 |
#: includes/class-sassy-social-share-widgets.php:239
|
566 |
#: includes/class-sassy-social-share-widgets.php:484
|
567 |
#, fuzzy
|
569 |
msgstr "Url das webpages onde os ícones estão localizados (padrão)"
|
570 |
|
571 |
#: admin/partials/sassy-social-share-options-page.php:717
|
572 |
+
#: admin/partials/sassy-social-share-options-page.php:1204
|
573 |
#: includes/class-sassy-social-share-widgets.php:240
|
574 |
#: includes/class-sassy-social-share-widgets.php:485
|
575 |
#, fuzzy
|
577 |
msgstr "Url da homepage do seu website"
|
578 |
|
579 |
#: admin/partials/sassy-social-share-options-page.php:719
|
580 |
+
#: admin/partials/sassy-social-share-options-page.php:1206
|
581 |
#, fuzzy
|
582 |
msgid "Custom url"
|
583 |
msgstr "Url personalizada"
|
584 |
|
585 |
#: admin/partials/sassy-social-share-options-page.php:726
|
586 |
+
#: admin/partials/sassy-social-share-options-page.php:1213
|
587 |
#, fuzzy
|
588 |
msgid "Url to share"
|
589 |
msgstr "Url para compartilhar"
|
590 |
|
591 |
#: admin/partials/sassy-social-share-options-page.php:733
|
592 |
+
#: includes/class-sassy-social-share-widgets.php:769
|
593 |
#, fuzzy
|
594 |
msgid "Title"
|
595 |
msgstr "Título"
|
600 |
msgstr "Texto a ser exibido acima da interface de compartilhamento"
|
601 |
|
602 |
#: admin/partials/sassy-social-share-options-page.php:778
|
603 |
+
#: admin/partials/sassy-social-share-options-page.php:1221
|
604 |
msgid "Instagram username"
|
605 |
msgstr ""
|
606 |
|
607 |
#: admin/partials/sassy-social-share-options-page.php:789
|
608 |
+
#: admin/partials/sassy-social-share-options-page.php:1232
|
609 |
+
#: admin/partials/sassy-social-share-options-page.php:1253
|
610 |
msgid ""
|
611 |
"Username of the Instagram account you want to redirect users to, on clicking "
|
612 |
"the icon"
|
613 |
msgstr ""
|
614 |
|
615 |
#: admin/partials/sassy-social-share-options-page.php:798
|
616 |
+
#: admin/partials/sassy-social-share-options-page.php:1240
|
617 |
msgid "Youtube URL"
|
618 |
msgstr ""
|
619 |
|
624 |
msgstr ""
|
625 |
|
626 |
#: admin/partials/sassy-social-share-options-page.php:818
|
627 |
+
#: admin/partials/sassy-social-share-options-page.php:1261
|
628 |
msgid "HTML ID of container element of comment form"
|
629 |
msgstr ""
|
630 |
|
631 |
#: admin/partials/sassy-social-share-options-page.php:829
|
632 |
+
#: admin/partials/sassy-social-share-options-page.php:1272
|
633 |
msgid ""
|
634 |
"HTML ID of the element you want to focus on the webpage, on click of Comment "
|
635 |
"icon."
|
636 |
msgstr ""
|
637 |
|
638 |
#: admin/partials/sassy-social-share-options-page.php:847
|
639 |
+
#: admin/partials/sassy-social-share-options-page.php:1280
|
640 |
#, fuzzy
|
641 |
msgid "Rearrange icons"
|
642 |
msgstr "Rearranjar ícones"
|
643 |
|
644 |
#: admin/partials/sassy-social-share-options-page.php:915
|
645 |
+
#: admin/partials/sassy-social-share-options-page.php:1346
|
646 |
#, fuzzy
|
647 |
msgid "Drag the icons to rearrange in desired order"
|
648 |
msgstr "Arraste os ícones para rearanjar na ordem desejada"
|
649 |
|
650 |
#: admin/partials/sassy-social-share-options-page.php:922
|
651 |
+
#: admin/partials/sassy-social-share-options-page.php:1353
|
652 |
#, fuzzy
|
653 |
msgid "Select Sharing Services"
|
654 |
msgstr "Selecione os Serviços Compartilhados"
|
655 |
|
656 |
#: admin/partials/sassy-social-share-options-page.php:930
|
657 |
+
#: admin/partials/sassy-social-share-options-page.php:1361
|
658 |
#, fuzzy
|
659 |
msgid "Select sharing services to show in social share bar"
|
660 |
msgstr ""
|
662 |
"compartilhamento social"
|
663 |
|
664 |
#: admin/partials/sassy-social-share-options-page.php:948
|
665 |
+
#: admin/partials/sassy-social-share-options-page.php:1379
|
666 |
msgid "Search social network"
|
667 |
msgstr ""
|
668 |
|
669 |
#: admin/partials/sassy-social-share-options-page.php:968
|
670 |
+
#: admin/partials/sassy-social-share-options-page.php:1417
|
671 |
#, fuzzy
|
672 |
msgid "Horizontal alignment"
|
673 |
msgstr "Alinhamento horizonal"
|
678 |
msgstr "Centro"
|
679 |
|
680 |
#: admin/partials/sassy-social-share-options-page.php:983
|
681 |
+
#: admin/partials/sassy-social-share-options-page.php:1431
|
682 |
#, fuzzy
|
683 |
msgid "Horizontal alignment of the sharing interface"
|
684 |
msgstr "Alinhamento horizontal da interface de compartilhamento"
|
705 |
"Especifique a posição da interface de compartilhamento em relação ao conteúdo"
|
706 |
|
707 |
#: admin/partials/sassy-social-share-options-page.php:1019
|
708 |
+
#: admin/partials/sassy-social-share-options-page.php:1496
|
709 |
#, fuzzy
|
710 |
msgid "Placement"
|
711 |
msgstr "Localização"
|
712 |
|
713 |
#: admin/partials/sassy-social-share-options-page.php:1024
|
714 |
+
#: admin/partials/sassy-social-share-options-page.php:1501
|
715 |
#, fuzzy
|
716 |
msgid "Homepage"
|
717 |
msgstr "Homepage"
|
718 |
|
719 |
#: admin/partials/sassy-social-share-options-page.php:1026
|
720 |
+
#: admin/partials/sassy-social-share-options-page.php:1503
|
721 |
#, fuzzy
|
722 |
msgid "Posts"
|
723 |
msgstr "Posts"
|
724 |
|
725 |
#: admin/partials/sassy-social-share-options-page.php:1028
|
726 |
+
#: admin/partials/sassy-social-share-options-page.php:1505
|
727 |
#, fuzzy
|
728 |
msgid "Pages"
|
729 |
msgstr "Páginas"
|
730 |
|
731 |
#: admin/partials/sassy-social-share-options-page.php:1030
|
732 |
+
#: admin/partials/sassy-social-share-options-page.php:1507
|
733 |
msgid "Excerpts and Posts page"
|
734 |
msgstr ""
|
735 |
|
736 |
#: admin/partials/sassy-social-share-options-page.php:1032
|
737 |
+
#: admin/partials/sassy-social-share-options-page.php:1509
|
738 |
#, fuzzy
|
739 |
msgid "Category Archives"
|
740 |
msgstr "Arquivos de Categorias"
|
741 |
|
742 |
#: admin/partials/sassy-social-share-options-page.php:1034
|
743 |
+
#: admin/partials/sassy-social-share-options-page.php:1511
|
744 |
#, fuzzy
|
745 |
msgid "Archive Pages (Category, Tag, Author or Date based pages)"
|
746 |
msgstr "Página de arquivo (Páginas baseadas em Categoria, Tag, Autor ou Data)"
|
756 |
msgstr "Grupo BuddyPress (apenas acima do conteúdo)"
|
757 |
|
758 |
#: admin/partials/sassy-social-share-options-page.php:1058
|
759 |
+
#: admin/partials/sassy-social-share-options-page.php:1533
|
760 |
#, fuzzy
|
761 |
msgid "BBPress forum"
|
762 |
msgstr "Forum BBPress"
|
763 |
|
764 |
#: admin/partials/sassy-social-share-options-page.php:1061
|
765 |
+
#: admin/partials/sassy-social-share-options-page.php:1536
|
766 |
#, fuzzy
|
767 |
msgid "BBPress topic"
|
768 |
msgstr "Tópico BBPress"
|
794 |
"Especifique as páginas onde você deseja habilitar a interface de "
|
795 |
"compartilhamento"
|
796 |
|
797 |
+
#: admin/partials/sassy-social-share-options-page.php:1095
|
798 |
+
#: admin/partials/sassy-social-share-options-page.php:1553
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
799 |
#, fuzzy
|
800 |
msgid "Show share counts"
|
801 |
msgstr "Exibir contadores de compartilhamento"
|
802 |
|
803 |
+
#: admin/partials/sassy-social-share-options-page.php:1101
|
804 |
+
#: admin/partials/sassy-social-share-options-page.php:1559
|
805 |
msgid ""
|
806 |
"Share counts are supported for Twitter, Buffer, Reddit, Pinterest, "
|
807 |
"Odnoklassniki, Fintel and Vkontakte"
|
808 |
msgstr ""
|
809 |
|
810 |
+
#: admin/partials/sassy-social-share-options-page.php:1102
|
811 |
+
#: admin/partials/sassy-social-share-options-page.php:1560
|
812 |
#, php-format
|
813 |
msgid ""
|
814 |
"To show Twitter share count, you have to click \"Give me my Twitter counts "
|
817 |
"their website."
|
818 |
msgstr ""
|
819 |
|
820 |
+
#: admin/partials/sassy-social-share-options-page.php:1109
|
821 |
+
#: admin/partials/sassy-social-share-options-page.php:1567
|
822 |
#, fuzzy
|
823 |
msgid "If enabled, share counts are displayed above sharing icons."
|
824 |
msgstr ""
|
825 |
"Se habilitado, os contadores de compartilhamento são exibidos acima dos "
|
826 |
"ícones de compartilhamento."
|
827 |
|
828 |
+
#: admin/partials/sassy-social-share-options-page.php:1117
|
829 |
+
#: admin/partials/sassy-social-share-options-page.php:1575
|
830 |
#, fuzzy
|
831 |
msgid "Show total shares"
|
832 |
msgstr "Exibe total de compartilhamentos"
|
833 |
|
834 |
+
#: admin/partials/sassy-social-share-options-page.php:1128
|
835 |
+
#: admin/partials/sassy-social-share-options-page.php:1586
|
836 |
#, fuzzy
|
837 |
msgid "If enabled, total shares will be displayed with sharing icons"
|
838 |
msgstr ""
|
839 |
"Se habilitado, os totais de compartilhamentos serão exibidos com os ícones "
|
840 |
"de compartilhamento"
|
841 |
|
842 |
+
#: admin/partials/sassy-social-share-options-page.php:1136
|
843 |
+
#: admin/partials/sassy-social-share-options-page.php:1594
|
844 |
#, fuzzy
|
845 |
msgid "Enable 'More' icon"
|
846 |
msgstr "Habilitar 'Mais' ícones"
|
847 |
|
848 |
+
#: admin/partials/sassy-social-share-options-page.php:1147
|
849 |
+
#: admin/partials/sassy-social-share-options-page.php:1605
|
850 |
#, fuzzy
|
851 |
msgid ""
|
852 |
"If enabled, \"More\" icon will be displayed after selected sharing icons "
|
856 |
"de compartilhamento com a exibição adicional das redes sociais "
|
857 |
"compartilhadas em um popup"
|
858 |
|
859 |
+
#: admin/partials/sassy-social-share-options-page.php:1172
|
860 |
#, fuzzy
|
861 |
msgid "Floating Sharing Interface Options"
|
862 |
msgstr "Opções da Interface de Compartilhamento Flutuante"
|
863 |
|
864 |
+
#: admin/partials/sassy-social-share-options-page.php:1177
|
865 |
#, fuzzy
|
866 |
msgid "Enable Floating sharing interface"
|
867 |
msgstr "Habilita interface de compartilhamento flutuante"
|
868 |
|
869 |
+
#: admin/partials/sassy-social-share-options-page.php:1188
|
870 |
#, fuzzy
|
871 |
msgid "Master control to enable floating sharing widget"
|
872 |
msgstr "Controle Mestre para habilitar o widget de compartilhamento flutuante"
|
873 |
|
874 |
+
#: admin/partials/sassy-social-share-options-page.php:1410
|
875 |
#, fuzzy
|
876 |
msgid ""
|
877 |
"Specify the color or hex code (example #cc78e0) for the background of "
|
884 |
"Você pode obter o código hexadecimal que você requer por meio deste link <a "
|
885 |
"href=\\\"http://www.colorpicker.com/\\\" target=\\\"_blank\\\"> </a>"
|
886 |
|
887 |
+
#: admin/partials/sassy-social-share-options-page.php:1439
|
888 |
+
#: includes/class-sassy-social-share-widgets.php:806
|
889 |
+
#: includes/class-sassy-social-share-widgets.php:829
|
890 |
+
#: includes/class-sassy-social-share-widgets.php:831
|
891 |
#, fuzzy
|
892 |
msgid "Left offset"
|
893 |
msgstr "Ajuste à esquerda"
|
894 |
|
895 |
+
#: admin/partials/sassy-social-share-options-page.php:1450
|
896 |
#, fuzzy
|
897 |
msgid ""
|
898 |
"Specify a number. Increase in number will shift sharing interface towards "
|
903 |
"interface de compartilhamento para a esquerda. Os números podem também ser "
|
904 |
"negativos."
|
905 |
|
906 |
+
#: admin/partials/sassy-social-share-options-page.php:1459
|
907 |
+
#: includes/class-sassy-social-share-widgets.php:806
|
908 |
+
#: includes/class-sassy-social-share-widgets.php:829
|
909 |
+
#: includes/class-sassy-social-share-widgets.php:831
|
910 |
#, fuzzy
|
911 |
msgid "Right offset"
|
912 |
msgstr "Ajuste à direita"
|
913 |
|
914 |
+
#: admin/partials/sassy-social-share-options-page.php:1470
|
915 |
#, fuzzy
|
916 |
msgid ""
|
917 |
"Specify a number. Increase in number will shift sharing interface towards "
|
922 |
"interface de compartilhamento para a direita. Os números podem também ser "
|
923 |
"negativos."
|
924 |
|
925 |
+
#: admin/partials/sassy-social-share-options-page.php:1478
|
926 |
#, fuzzy
|
927 |
msgid "Top offset"
|
928 |
msgstr "Ajuste acima"
|
929 |
|
930 |
+
#: admin/partials/sassy-social-share-options-page.php:1489
|
931 |
#, fuzzy
|
932 |
msgid ""
|
933 |
"Specify a number. Increase in number will shift sharing interface towards "
|
937 |
"compartilhamento para baixo e decrementos no número irão deslocar a "
|
938 |
"interface de compartilhamento para cima."
|
939 |
|
940 |
+
#: admin/partials/sassy-social-share-options-page.php:1525
|
941 |
#, fuzzy
|
942 |
msgid "BuddyPress group"
|
943 |
msgstr "Grupo BuddyPress"
|
944 |
|
945 |
+
#: admin/partials/sassy-social-share-options-page.php:1546
|
946 |
#, fuzzy
|
947 |
msgid "Specify the pages where you want to enable vertical Sharing interface"
|
948 |
msgstr ""
|
949 |
"Especifique as páginas onde você deseja habilitar a interface de "
|
950 |
"compartilhamento vertical"
|
951 |
|
952 |
+
#: admin/partials/sassy-social-share-options-page.php:1612
|
953 |
msgid "Hide floating slider"
|
954 |
msgstr ""
|
955 |
|
956 |
+
#: admin/partials/sassy-social-share-options-page.php:1623
|
957 |
msgid "Hides the slider arrow present below the floating share bar"
|
958 |
msgstr ""
|
959 |
|
960 |
+
#: admin/partials/sassy-social-share-options-page.php:1631
|
961 |
#, fuzzy
|
962 |
msgid "Vertical floating bar responsiveness"
|
963 |
msgstr "Sensibilidade da barra flutuante vertical"
|
964 |
|
965 |
+
#: admin/partials/sassy-social-share-options-page.php:1634
|
966 |
#, fuzzy, php-format
|
967 |
msgid "Display vertical interface only when screen is wider than %s pixels"
|
968 |
msgstr ""
|
969 |
"Exibe interface vertical apenas quando a tela é mais larga que %s pixels"
|
970 |
|
971 |
+
#: admin/partials/sassy-social-share-options-page.php:1641
|
972 |
#, fuzzy
|
973 |
msgid ""
|
974 |
"Display vertical interface only when screen is wider than the width "
|
977 |
"Exibe interface vertical apenas quando a tela é mais larga que a largura "
|
978 |
"especificada."
|
979 |
|
980 |
+
#: admin/partials/sassy-social-share-options-page.php:1648
|
981 |
#, fuzzy
|
982 |
msgid "Horizontal floating bar responsiveness"
|
983 |
msgstr "Sensibilidade da barra flutuante horizontal"
|
984 |
|
985 |
+
#: admin/partials/sassy-social-share-options-page.php:1652
|
986 |
#, fuzzy, php-format
|
987 |
msgid ""
|
988 |
"Stick vertical floating interface horizontally at bottom only when screen is "
|
991 |
"Manter a vertical em baixo na interface de flutuação horizontal apenas "
|
992 |
"quando a tela é mais estreita do que %s pixels"
|
993 |
|
994 |
+
#: admin/partials/sassy-social-share-options-page.php:1659
|
995 |
#, fuzzy
|
996 |
msgid ""
|
997 |
"Stick vertical floating interface horizontally at bottom only when screen is "
|
1000 |
"Manter a vertical em baixo na interface de flutuação horizontal apenas "
|
1001 |
"quando a tela é mais estreita do que a largura especificada"
|
1002 |
|
1003 |
+
#: admin/partials/sassy-social-share-options-page.php:1668
|
1004 |
#, fuzzy
|
1005 |
msgid "Horizontal floating bar position"
|
1006 |
msgstr "Posição da barra de flutuação horizontal"
|
1007 |
|
1008 |
+
#: admin/partials/sassy-social-share-options-page.php:1672
|
1009 |
#, fuzzy, php-format
|
1010 |
msgid "%s pixels from %s"
|
1011 |
msgstr "%s pixels de %s"
|
1012 |
|
1013 |
+
#: admin/partials/sassy-social-share-options-page.php:1673
|
1014 |
msgid "Auto-adjust according to screen width (responsive)"
|
1015 |
msgstr ""
|
1016 |
|
1017 |
+
#: admin/partials/sassy-social-share-options-page.php:1680
|
1018 |
#, fuzzy
|
1019 |
msgid "Alignment of horizontal floating interface. Number can be negative too."
|
1020 |
msgstr ""
|
1021 |
"Alinhamneto da interface de flutuação horizontal. O número pode ser negativo "
|
1022 |
"também."
|
1023 |
|
1024 |
+
#: admin/partials/sassy-social-share-options-page.php:1709
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1025 |
msgid "Use plain background for Instagram icon"
|
1026 |
msgstr ""
|
1027 |
|
1028 |
+
#: admin/partials/sassy-social-share-options-page.php:1720
|
1029 |
msgid ""
|
1030 |
"Uses plain background for Instagram icon instead of multicolored background"
|
1031 |
msgstr ""
|
1032 |
|
1033 |
+
#: admin/partials/sassy-social-share-options-page.php:1727
|
1034 |
msgid "Load Javascript files in footer"
|
1035 |
msgstr ""
|
1036 |
|
1037 |
+
#: admin/partials/sassy-social-share-options-page.php:1738
|
1038 |
#, fuzzy
|
1039 |
msgid ""
|
1040 |
"If enabled (recommended), Javascript files will be included in the footer of "
|
1043 |
"Se habilitado (recomendado), o arquivo do Javascript será incluído no rodapé "
|
1044 |
"do seu website."
|
1045 |
|
1046 |
+
#: admin/partials/sassy-social-share-options-page.php:1745
|
1047 |
msgid "Load Javascript only when needed"
|
1048 |
msgstr ""
|
1049 |
|
1050 |
+
#: admin/partials/sassy-social-share-options-page.php:1756
|
1051 |
msgid ""
|
1052 |
"Javascript file will be loaded only at the webpages where share icons have "
|
1053 |
"been integrated"
|
1054 |
msgstr ""
|
1055 |
|
1056 |
+
#: admin/partials/sassy-social-share-options-page.php:1763
|
1057 |
#, fuzzy
|
1058 |
msgid "Delete all the options on plugin deletion"
|
1059 |
msgstr "Remove todas as opções na remoção do pluguin"
|
1060 |
|
1061 |
+
#: admin/partials/sassy-social-share-options-page.php:1774
|
1062 |
#, fuzzy
|
1063 |
msgid ""
|
1064 |
"If enabled, plugin options will get deleted when plugin is deleted/"
|
1069 |
"removido/desistalado e você necessitará reconfigurar as opções quando você "
|
1070 |
"instalar o plugin da próxima vez."
|
1071 |
|
1072 |
+
#: admin/partials/sassy-social-share-options-page.php:1783
|
1073 |
#, fuzzy
|
1074 |
msgid "Share Count Cache"
|
1075 |
msgstr "Cache de Contador de Compartilhamento"
|
1076 |
|
1077 |
+
#: admin/partials/sassy-social-share-options-page.php:1788
|
1078 |
#, fuzzy
|
1079 |
msgid "Refresh Share Count cache every"
|
1080 |
msgstr "Atualizar o contador de compartilhamento a cada"
|
1081 |
|
1082 |
+
#: admin/partials/sassy-social-share-options-page.php:1805
|
1083 |
#, php-format
|
1084 |
msgid ""
|
1085 |
"Frequent cache refreshing results in slower loading of pages with share "
|
1087 |
"target=\"_blank\">here</a>"
|
1088 |
msgstr ""
|
1089 |
|
1090 |
+
#: admin/partials/sassy-social-share-options-page.php:1812
|
1091 |
#, fuzzy
|
1092 |
msgid "Clear Share Counts Cache"
|
1093 |
msgstr "Limpeza do Cache dos Contadores de Compartilhamento"
|
1094 |
|
1095 |
+
#: admin/partials/sassy-social-share-options-page.php:1817
|
1096 |
#, fuzzy
|
1097 |
msgid "Share Counts cache cleared successfully."
|
1098 |
msgstr "Sucesso na limpeza do Cache dos Contadores de Compartilhamento."
|
1099 |
|
1100 |
+
#: admin/partials/sassy-social-share-options-page.php:1824
|
1101 |
#, fuzzy
|
1102 |
msgid "Use this to clear cached share counts"
|
1103 |
msgstr "Use isso para limpeza do Cache dos Contadores de Compartilhamento"
|
1104 |
|
1105 |
+
#: admin/partials/sassy-social-share-options-page.php:1833
|
1106 |
#, fuzzy
|
1107 |
msgid "Url shortener"
|
1108 |
msgstr "Encurtador de Url"
|
1109 |
|
1110 |
+
#: admin/partials/sassy-social-share-options-page.php:1838
|
1111 |
#, fuzzy
|
1112 |
msgid "Use shortlinks already installed"
|
1113 |
msgstr "Use shortlinks já instalados"
|
1114 |
|
1115 |
+
#: admin/partials/sassy-social-share-options-page.php:1849
|
1116 |
msgid ""
|
1117 |
"Use default short url permalinks without the need for any additional plugin"
|
1118 |
msgstr ""
|
1119 |
|
1120 |
+
#: admin/partials/sassy-social-share-options-page.php:1856
|
1121 |
#, fuzzy
|
1122 |
msgid "Enable bit.ly url shortener for sharing"
|
1123 |
msgstr "Habilitar encurtador de url bit.ly para compartilhamento"
|
1124 |
|
1125 |
+
#: admin/partials/sassy-social-share-options-page.php:1868
|
1126 |
#, fuzzy
|
1127 |
msgid "Master control to enable bit.ly url shortening for sharing"
|
1128 |
msgstr ""
|
1129 |
"Controle Mestre para habilitar encurtador de url bit.ly para compartilhamento"
|
1130 |
|
1131 |
+
#: admin/partials/sassy-social-share-options-page.php:1875
|
1132 |
msgid "Bit.ly Generic Access Token"
|
1133 |
msgstr ""
|
1134 |
|
1135 |
+
#: admin/partials/sassy-social-share-options-page.php:1886
|
1136 |
#, php-format
|
1137 |
msgid ""
|
1138 |
"Login to your bit.ly account and navigate to <strong>Profile Settings > "
|
1141 |
"\">link</a>"
|
1142 |
msgstr ""
|
1143 |
|
1144 |
+
#: admin/partials/sassy-social-share-options-page.php:1893
|
1145 |
#, fuzzy
|
1146 |
msgid "Clear Bitly Cache"
|
1147 |
msgstr "Limpar o Cache Bitly"
|
1148 |
|
1149 |
+
#: admin/partials/sassy-social-share-options-page.php:1898
|
1150 |
#, fuzzy
|
1151 |
msgid "ShortUrl cache cleared successfully."
|
1152 |
msgstr "Cache ShortUrl limpo com sucesso."
|
1153 |
|
1154 |
+
#: admin/partials/sassy-social-share-options-page.php:1905
|
1155 |
#, fuzzy
|
1156 |
msgid ""
|
1157 |
"Use this to delete short urls saved in database. Handy, if urls of your "
|
1162 |
"urls do seu website foram trocadas mas as short urls ainda estão sendo "
|
1163 |
"geradas para suas urls antigas."
|
1164 |
|
1165 |
+
#: admin/partials/sassy-social-share-options-page.php:1914
|
1166 |
+
#: admin/partials/sassy-social-share-options-page.php:1919
|
1167 |
#, fuzzy
|
1168 |
msgid "Language"
|
1169 |
msgstr "Languagem"
|
1170 |
|
1171 |
+
#: admin/partials/sassy-social-share-options-page.php:1930
|
1172 |
#, fuzzy, php-format
|
1173 |
msgid ""
|
1174 |
"Enter the code of the language you want to use for like buttons. You can "
|
1179 |
"achar o código da linguagem <a href=\\\"%s\\\" target=\\\"_blank\\\">neste "
|
1180 |
"link</a>. Deixe-o em branco para a linguagem padrão (inglês)"
|
1181 |
|
1182 |
+
#: admin/partials/sassy-social-share-options-page.php:1939
|
1183 |
#, fuzzy
|
1184 |
msgid "Username in sharing"
|
1185 |
msgstr "Username no compartilhamento"
|
1186 |
|
1187 |
+
#: admin/partials/sassy-social-share-options-page.php:1944
|
1188 |
#, fuzzy
|
1189 |
msgid "Twitter username (without @)"
|
1190 |
msgstr "Username do Twitter (sem @)"
|
1191 |
|
1192 |
+
#: admin/partials/sassy-social-share-options-page.php:1955
|
1193 |
+
#: admin/partials/sassy-social-share-options-page.php:1974
|
1194 |
#, fuzzy
|
1195 |
msgid ""
|
1196 |
"Provided username will be appended after the content being shared as \"via "
|
1201 |
"\\\"via @USERNAME\\\". Deixe em branco se você não desejar nenhum username "
|
1202 |
"no conteúdo sendo compartilhado."
|
1203 |
|
1204 |
+
#: admin/partials/sassy-social-share-options-page.php:1963
|
1205 |
#, fuzzy
|
1206 |
msgid "Buffer username (without @)"
|
1207 |
msgstr "Username do Buffer (sem @)"
|
1208 |
|
1209 |
+
#: admin/partials/sassy-social-share-options-page.php:1983
|
1210 |
msgid "AMP"
|
1211 |
msgstr ""
|
1212 |
|
1213 |
+
#: admin/partials/sassy-social-share-options-page.php:1988
|
1214 |
msgid "Enable sharing on AMP pages"
|
1215 |
msgstr ""
|
1216 |
|
1217 |
+
#: admin/partials/sassy-social-share-options-page.php:1999
|
1218 |
msgid "Enable this option to render sharing icons on AMP pages"
|
1219 |
msgstr ""
|
1220 |
|
1221 |
+
#: admin/partials/sassy-social-share-options-page.php:2008
|
1222 |
+
#: admin/partials/sassy-social-share-options-page.php:2013
|
1223 |
#, fuzzy
|
1224 |
msgid "Custom CSS"
|
1225 |
msgstr "CSS Personalizado"
|
1226 |
|
1227 |
+
#: admin/partials/sassy-social-share-options-page.php:2024
|
1228 |
#, fuzzy
|
1229 |
msgid "You can specify any additional CSS rules (without <style> tag)"
|
1230 |
msgstr ""
|
1231 |
"Você poderá especificar qualquer regra adicional de CSS (sem a tag <"
|
1232 |
"style> )"
|
1233 |
|
1234 |
+
#: admin/partials/sassy-social-share-options-page.php:2047
|
1235 |
msgid "myCRED"
|
1236 |
msgstr ""
|
1237 |
|
1238 |
+
#: admin/partials/sassy-social-share-options-page.php:2052
|
1239 |
msgid "Append myCRED referral ID to the urls being shared"
|
1240 |
msgstr ""
|
1241 |
|
1242 |
+
#: admin/partials/sassy-social-share-options-page.php:2075
|
1243 |
msgid "Social Share Shortcode & Widget"
|
1244 |
msgstr ""
|
1245 |
|
1246 |
+
#: admin/partials/sassy-social-share-options-page.php:2076
|
1247 |
msgid "Follow Icons Shortcode & Widget"
|
1248 |
msgstr ""
|
1249 |
|
1250 |
+
#: admin/partials/sassy-social-share-options-page.php:2088
|
1251 |
#, fuzzy
|
1252 |
msgid "Facebook Sharing Troubleshooter"
|
1253 |
msgstr "Solução de problema no compartilhamento com o Facebook"
|
1254 |
|
1255 |
+
#: admin/partials/sassy-social-share-options-page.php:2093
|
1256 |
msgid ""
|
1257 |
"If Facebook sharing is not working fine, click at the following link and "
|
1258 |
"enter the problematic url (where Facebook sharing is not working properly) "
|
1260 |
"button."
|
1261 |
msgstr ""
|
1262 |
|
1263 |
+
#: admin/partials/sassy-social-share-options-page.php:2110
|
1264 |
msgid ""
|
1265 |
"<strong>Note:</strong> Plugin will not work on local server. You should have "
|
1266 |
"an online website for the plugin to function properly."
|
1267 |
msgstr ""
|
1268 |
|
1269 |
+
#: admin/partials/sassy-social-share-options-page.php:2111
|
1270 |
msgid ""
|
1271 |
"Why is sharer not showing the correct image, title and other content when "
|
1272 |
"sharing a webpage?"
|
1273 |
msgstr ""
|
1274 |
|
1275 |
+
#: admin/partials/sassy-social-share-options-page.php:2112
|
1276 |
msgid "Why is Facebook share count not working?"
|
1277 |
msgstr ""
|
1278 |
|
1279 |
+
#: admin/partials/sassy-social-share-options-page.php:2113
|
1280 |
+
#, php-format
|
1281 |
+
msgid ""
|
1282 |
+
"After the recent changes introduced in the Facebook graph API, it's not "
|
1283 |
+
"possible to track Facebook shares using it. Pro and Premium versions of this "
|
1284 |
+
"plugin offer a feature that allows you to track shares not just for Facebook "
|
1285 |
+
"but for all the social networks. Comparison of the features of the Pro and "
|
1286 |
+
"Premium versions can be found at the <a href='%s' target='_blank'>link</a>"
|
1287 |
+
msgstr ""
|
1288 |
+
|
1289 |
+
#: admin/partials/sassy-social-share-options-page.php:2114
|
1290 |
msgid "How to Customize the Url being Shared?"
|
1291 |
msgstr ""
|
1292 |
|
1293 |
+
#: admin/partials/sassy-social-share-options-page.php:2115
|
1294 |
msgid "Why is Instagram icon redirecting to Instagram website?"
|
1295 |
msgstr ""
|
1296 |
|
1297 |
+
#: admin/partials/sassy-social-share-options-page.php:2116
|
1298 |
msgid ""
|
1299 |
"Instagram icon is there to send website visitors to the Instagram page of "
|
1300 |
"your choice. You can save the desired Instagram handle in \"Instagram "
|
1302 |
"sections."
|
1303 |
msgstr ""
|
1304 |
|
1305 |
+
#: admin/partials/sassy-social-share-options-page.php:2118
|
1306 |
msgid ""
|
1307 |
"Why are Twitter shares not appearing even after registering at Twitcount.com?"
|
1308 |
msgstr ""
|
1309 |
|
1310 |
+
#: admin/partials/sassy-social-share-options-page.php:2119
|
1311 |
msgid ""
|
1312 |
"It takes some time for their service to track the shares made on Twitter "
|
1313 |
"from your website. If you still feel it's taking too long you can contact "
|
1314 |
"their support directly from their website."
|
1315 |
msgstr ""
|
1316 |
|
1317 |
+
#: admin/partials/sassy-social-share-options-page.php:2121
|
1318 |
msgid ""
|
1319 |
"How to restore Social Share counts lost after moving my website to SSL/Https?"
|
1320 |
msgstr ""
|
1321 |
|
1322 |
+
#: admin/partials/sassy-social-share-options-page.php:2122
|
1323 |
#, fuzzy
|
1324 |
msgid "How to integrate Google Analytics with sharing?"
|
1325 |
msgstr "Como integrar o Google Analytics com compartilhamento?"
|
1326 |
|
1327 |
+
#: admin/partials/sassy-social-share-options-page.php:2123
|
1328 |
msgid "Why the color of share icons is not being updated?"
|
1329 |
msgstr ""
|
1330 |
|
1331 |
+
#: admin/partials/sassy-social-share-options-page.php:2124
|
1332 |
msgid ""
|
1333 |
"How to show recent Facebook Comments from all over the website in a widget?"
|
1334 |
msgstr ""
|
1335 |
|
1336 |
+
#: admin/partials/sassy-social-share-options-page.php:2125
|
1337 |
msgid ""
|
1338 |
"How to recover the Facebook Comments lost after moving my website to SSL/"
|
1339 |
"Https?"
|
1340 |
msgstr ""
|
1341 |
|
1342 |
+
#: admin/partials/sassy-social-share-options-page.php:2126
|
1343 |
msgid "How to Place Title and Social Share Icons in the Same Row?"
|
1344 |
msgstr ""
|
1345 |
|
1346 |
+
#: admin/partials/sassy-social-share-options-page.php:2127
|
1347 |
#, fuzzy
|
1348 |
msgid ""
|
1349 |
"How can I show share counts of my website rather than of individual pages/"
|
1352 |
"Como posso exibir os contadores de compartilhamento do meu website ao invés "
|
1353 |
"das páginas/posts individuais?"
|
1354 |
|
1355 |
+
#: admin/partials/sassy-social-share-options-page.php:2128
|
1356 |
#, fuzzy
|
1357 |
msgid "How can I disable sharing on particular page/post?"
|
1358 |
msgstr ""
|
1359 |
"Como posso desabilitar o compartilhamento em uma página/post em particular?"
|
1360 |
|
1361 |
+
#: admin/partials/sassy-social-share-options-page.php:2129
|
1362 |
#, fuzzy
|
1363 |
msgid "How can I specify minimum sharing count for sharing networks?"
|
1364 |
msgstr ""
|
1365 |
"Como posso especificar um contador mínimo de compartilhamento das redes "
|
1366 |
"sociais?"
|
1367 |
|
1368 |
+
#: admin/partials/sassy-social-share-options-page.php:2130
|
1369 |
#, fuzzy
|
1370 |
msgid "How to share specific page?"
|
1371 |
msgstr "Como compartilhar página específica?"
|
1372 |
|
1373 |
+
#: admin/partials/sassy-social-share-options-page.php:2131
|
1374 |
#, fuzzy
|
1375 |
msgid "How to customize the look of total share counts?"
|
1376 |
msgstr ""
|
1377 |
"Como personalizar a aparência dos contatores de compartilhamentos totais?"
|
1378 |
|
1379 |
+
#: admin/partials/sassy-social-share-options-page.php:2132
|
1380 |
#, fuzzy
|
1381 |
msgid "How to customize the look of individual share counts?"
|
1382 |
msgstr ""
|
1383 |
"Como personalizar a aparência dos contadores de compartilhamento individuais?"
|
1384 |
|
1385 |
+
#: admin/partials/sassy-social-share-options-page.php:2133
|
1386 |
#, fuzzy
|
1387 |
msgid "How to show Whatsapp icon only on mobile devices?"
|
1388 |
msgstr "Como exibir o ícone do Whatsapp apenas em dispositivos móveis?"
|
1389 |
|
1390 |
+
#: admin/partials/sassy-social-share-options-page.php:2134
|
1391 |
#, fuzzy
|
1392 |
msgid "How to hide arrow after floating sharing bar?"
|
1393 |
msgstr "Como esconder a seta após a barra de compartilahmento flutuante?"
|
1394 |
|
1395 |
+
#: admin/partials/sassy-social-share-options-page.php:2135
|
1396 |
msgid "Why is share count not getting updated?"
|
1397 |
msgstr ""
|
1398 |
|
1399 |
+
#: admin/partials/sassy-social-share-options-page.php:2136
|
1400 |
msgid "Why is there so much space between like buttons?"
|
1401 |
msgstr ""
|
1402 |
|
1403 |
+
#: admin/partials/sassy-social-share-options-page.php:2137
|
1404 |
msgid "Why are floating sharing/like buttons not appearing at homepage?"
|
1405 |
msgstr ""
|
1406 |
|
1407 |
+
#: admin/partials/sassy-social-share-options-page.php:2147
|
1408 |
#, fuzzy
|
1409 |
msgid "Save Changes"
|
1410 |
msgstr "Salvar Alterações"
|
1411 |
|
1412 |
+
#: admin/partials/sassy-social-share-options-page.php:2159
|
1413 |
msgid ""
|
1414 |
"If you can send (to hello@heateor.com) how this plugin is helping your "
|
1415 |
"business, we would be glad to shoutout on Instagram. You can also send any "
|
1453 |
"Social networks like Facebook, Twitter, Tumblr, Whatsapp and many more"
|
1454 |
msgstr ""
|
1455 |
|
1456 |
+
#: includes/class-sassy-social-share-widgets.php:229
|
1457 |
+
msgid "Note"
|
1458 |
+
msgstr ""
|
1459 |
+
|
1460 |
#: includes/class-sassy-social-share-widgets.php:229
|
1461 |
msgid ""
|
1462 |
"Make sure \"Standard Sharing Interface\" is enabled in \"Standard Interface"
|
1499 |
msgstr "Url Personalizada"
|
1500 |
|
1501 |
#: includes/class-sassy-social-share-widgets.php:244
|
1502 |
+
#: includes/class-sassy-social-share-widgets.php:767
|
1503 |
#, fuzzy
|
1504 |
msgid "Before widget content:"
|
1505 |
msgstr "Antes do conteúdo do widget:"
|
1506 |
|
1507 |
#: includes/class-sassy-social-share-widgets.php:246
|
1508 |
+
#: includes/class-sassy-social-share-widgets.php:920
|
1509 |
#, fuzzy
|
1510 |
msgid "After widget content:"
|
1511 |
msgstr "Depois do conteúdo do widget:"
|
1556 |
msgid "These icons link to your Social Media accounts"
|
1557 |
msgstr ""
|
1558 |
|
1559 |
+
#: includes/class-sassy-social-share-widgets.php:771
|
1560 |
msgid "Type:"
|
1561 |
msgstr ""
|
1562 |
|
1563 |
+
#: includes/class-sassy-social-share-widgets.php:774
|
1564 |
#, fuzzy
|
1565 |
msgid "Standard"
|
1566 |
msgstr "Opções de Interface Padrão"
|
1567 |
|
1568 |
+
#: includes/class-sassy-social-share-widgets.php:777
|
1569 |
#, fuzzy
|
1570 |
msgid "Floating"
|
1571 |
msgstr "Habilitar botões like flutuantes"
|
1572 |
|
1573 |
+
#: includes/class-sassy-social-share-widgets.php:782
|
1574 |
#, fuzzy
|
1575 |
msgid "Top offset:"
|
1576 |
msgstr "Ajuste acima"
|
1577 |
|
1578 |
+
#: includes/class-sassy-social-share-widgets.php:786
|
1579 |
#, fuzzy
|
1580 |
msgid "Alignment:"
|
1581 |
msgstr "Alinhamento"
|
1582 |
|
1583 |
+
#: includes/class-sassy-social-share-widgets.php:812
|
1584 |
msgid "Size of icons"
|
1585 |
msgstr ""
|
1586 |
|
1587 |
+
#: includes/class-sassy-social-share-widgets.php:814
|
1588 |
msgid "Icon Shape"
|
1589 |
msgstr ""
|
1590 |
|
1591 |
+
#: includes/class-sassy-social-share-widgets.php:839
|
1592 |
msgid "Apply icon color and background color from Theme Selection section:"
|
1593 |
msgstr ""
|
1594 |
|
1595 |
+
#: includes/class-sassy-social-share-widgets.php:841
|
1596 |
msgid "No"
|
1597 |
msgstr ""
|
1598 |
|
1599 |
+
#: includes/class-sassy-social-share-widgets.php:842
|
1600 |
msgid "Yes, Standard Interface Theme"
|
1601 |
msgstr ""
|
1602 |
|
1603 |
+
#: includes/class-sassy-social-share-widgets.php:843
|
1604 |
msgid "Yes, Floating Interface Theme"
|
1605 |
msgstr ""
|
1606 |
|
1607 |
+
#: includes/class-sassy-social-share-widgets.php:845
|
1608 |
msgid "Facebook URL:"
|
1609 |
msgstr ""
|
1610 |
|
1611 |
+
#: includes/class-sassy-social-share-widgets.php:848
|
1612 |
msgid "Twitter URL:"
|
1613 |
msgstr ""
|
1614 |
|
1615 |
+
#: includes/class-sassy-social-share-widgets.php:851
|
1616 |
msgid "Parler URL:"
|
1617 |
msgstr ""
|
1618 |
|
1619 |
+
#: includes/class-sassy-social-share-widgets.php:854
|
1620 |
msgid "Instagram URL:"
|
1621 |
msgstr ""
|
1622 |
|
1623 |
+
#: includes/class-sassy-social-share-widgets.php:857
|
1624 |
msgid "Pinterest URL:"
|
1625 |
msgstr ""
|
1626 |
|
1627 |
+
#: includes/class-sassy-social-share-widgets.php:860
|
1628 |
msgid "Behance URL:"
|
1629 |
msgstr ""
|
1630 |
|
1631 |
+
#: includes/class-sassy-social-share-widgets.php:863
|
1632 |
msgid "Flickr URL:"
|
1633 |
msgstr ""
|
1634 |
|
1635 |
+
#: includes/class-sassy-social-share-widgets.php:866
|
1636 |
msgid "Foursquare URL:"
|
1637 |
msgstr ""
|
1638 |
|
1639 |
+
#: includes/class-sassy-social-share-widgets.php:869
|
1640 |
msgid "Github URL:"
|
1641 |
msgstr ""
|
1642 |
|
1643 |
+
#: includes/class-sassy-social-share-widgets.php:872
|
1644 |
msgid "LinkedIn URL:"
|
1645 |
msgstr ""
|
1646 |
|
1647 |
+
#: includes/class-sassy-social-share-widgets.php:875
|
1648 |
msgid "LinkedIn Company URL:"
|
1649 |
msgstr ""
|
1650 |
|
1651 |
+
#: includes/class-sassy-social-share-widgets.php:878
|
1652 |
msgid "Gab URL:"
|
1653 |
msgstr ""
|
1654 |
|
1655 |
+
#: includes/class-sassy-social-share-widgets.php:881
|
1656 |
msgid "Medium URL:"
|
1657 |
msgstr ""
|
1658 |
|
1659 |
+
#: includes/class-sassy-social-share-widgets.php:884
|
1660 |
msgid "MeWe URL:"
|
1661 |
msgstr ""
|
1662 |
|
1663 |
+
#: includes/class-sassy-social-share-widgets.php:887
|
1664 |
msgid "Odnoklassniki URL:"
|
1665 |
msgstr ""
|
1666 |
|
1667 |
+
#: includes/class-sassy-social-share-widgets.php:890
|
1668 |
msgid "Snapchat URL:"
|
1669 |
msgstr ""
|
1670 |
|
1671 |
+
#: includes/class-sassy-social-share-widgets.php:893
|
1672 |
msgid "Telegram URL:"
|
1673 |
msgstr ""
|
1674 |
|
1675 |
+
#: includes/class-sassy-social-share-widgets.php:896
|
1676 |
msgid "Tumblr URL:"
|
1677 |
msgstr ""
|
1678 |
|
1679 |
+
#: includes/class-sassy-social-share-widgets.php:899
|
1680 |
msgid "Vimeo URL:"
|
1681 |
msgstr ""
|
1682 |
|
1683 |
+
#: includes/class-sassy-social-share-widgets.php:902
|
1684 |
msgid "Vkontakte URL:"
|
1685 |
msgstr ""
|
1686 |
|
1687 |
+
#: includes/class-sassy-social-share-widgets.php:905
|
1688 |
msgid "Whatsapp URL:"
|
1689 |
msgstr ""
|
1690 |
|
1691 |
+
#: includes/class-sassy-social-share-widgets.php:908
|
1692 |
msgid "Xing URL:"
|
1693 |
msgstr ""
|
1694 |
|
1695 |
+
#: includes/class-sassy-social-share-widgets.php:911
|
1696 |
msgid "Youtube URL:"
|
1697 |
msgstr ""
|
1698 |
|
1699 |
+
#: includes/class-sassy-social-share-widgets.php:914
|
1700 |
msgid "Youtube Channel URL:"
|
1701 |
msgstr ""
|
1702 |
|
1703 |
+
#: includes/class-sassy-social-share-widgets.php:917
|
1704 |
msgid "RSS Feed URL:"
|
1705 |
msgstr ""
|
1706 |
|
1714 |
msgid "Archives"
|
1715 |
msgstr ""
|
1716 |
|
1717 |
+
#: public/class-sassy-social-share-public.php:898
|
1718 |
+
#: public/class-sassy-social-share-public.php:1129
|
1719 |
#, fuzzy
|
1720 |
msgid "Invalid request"
|
1721 |
msgstr "Requisição inválida"
|
1722 |
|
1723 |
+
#: public/class-sassy-social-share-public.php:904
|
1724 |
#, fuzzy
|
1725 |
msgid "Providers not selected"
|
1726 |
msgstr "Provedor não selecionado"
|
public/class-sassy-social-share-public.php
CHANGED
@@ -882,21 +882,6 @@ class Sassy_Social_Share_Public {
|
|
882 |
|
883 |
}
|
884 |
|
885 |
-
/**
|
886 |
-
* Fetch Facebook access token
|
887 |
-
*
|
888 |
-
* @since 3.2.20
|
889 |
-
*/
|
890 |
-
private function fetch_fb_access_token() {
|
891 |
-
|
892 |
-
if ( $this->options['fb_key'] && $this->options['fb_secret'] ) {
|
893 |
-
return $this->options['fb_key'] . '|' . $this->options['fb_secret'];
|
894 |
-
}
|
895 |
-
|
896 |
-
return false;
|
897 |
-
|
898 |
-
}
|
899 |
-
|
900 |
/**
|
901 |
* Get share counts for sharing networks
|
902 |
*
|
@@ -962,20 +947,9 @@ class Sassy_Social_Share_Public {
|
|
962 |
$share_count_transient = array();
|
963 |
foreach ( $sharing_networks as $provider ) {
|
964 |
switch ( $provider ) {
|
965 |
-
case 'facebook':
|
966 |
-
$fb_access_token = $this->fetch_fb_access_token();
|
967 |
-
if ( $fb_access_token ) {
|
968 |
-
$url = "https://graph.facebook.com/?access_token=" . $fb_access_token . "&fields=engagement&id=" . $target_url;
|
969 |
-
} else {
|
970 |
-
$url = '';
|
971 |
-
}
|
972 |
-
break;
|
973 |
case 'twitter':
|
974 |
$url = "https://counts.twitcount.com/counts.php?url=" . $target_url;
|
975 |
break;
|
976 |
-
case 'linkedin':
|
977 |
-
$url = 'https://www.linkedin.com/countserv/count/share?url=' . $target_url . '&format=json';
|
978 |
-
break;
|
979 |
case 'reddit':
|
980 |
$url = 'https://www.reddit.com/api/info.json?url=' . $target_url;
|
981 |
break;
|
882 |
|
883 |
}
|
884 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
885 |
/**
|
886 |
* Get share counts for sharing networks
|
887 |
*
|
947 |
$share_count_transient = array();
|
948 |
foreach ( $sharing_networks as $provider ) {
|
949 |
switch ( $provider ) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
950 |
case 'twitter':
|
951 |
$url = "https://counts.twitcount.com/counts.php?url=" . $target_url;
|
952 |
break;
|
|
|
|
|
|
|
953 |
case 'reddit':
|
954 |
$url = 'https://www.reddit.com/api/info.json?url=' . $target_url;
|
955 |
break;
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ 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, whatsapp share, line share, gab share, parler share
|
5 |
Requires at least: 2.5.0
|
6 |
Tested up to: 5.7.2
|
7 |
-
Stable tag: 3.3.
|
8 |
License: GPLv2 or later
|
9 |
|
10 |
Slickest, Simplest and Optimized Share buttons. Facebook, Twitter, Reddit, Pinterest, Whatsapp, Parler, Gab and over 100 more.
|
@@ -123,6 +123,10 @@ Yes, we can help you with it. Just drop an email at support[at]heateor[dot]com
|
|
123 |
4. **Universal Sharing Popup**: Universal Sharing popup having all the supported sharing and bookmarking services
|
124 |
|
125 |
== Changelog ==
|
|
|
|
|
|
|
|
|
126 |
= 3.3.21 [29 June 2021] =
|
127 |
* [Bugfix] Floating share Bar was not appearing at the home page when Yoast SEO plugin was active
|
128 |
* [Bugfix] Pinterest share icon was not working in AMP
|
@@ -1003,4 +1007,8 @@ Yes, we can help you with it. Just drop an email at support[at]heateor[dot]com
|
|
1003 |
* [Improvement] Updated the Facebook JS SDK being used to the latest version 11.0
|
1004 |
* [Improvement] Admin UI improvement
|
1005 |
* [Improvement] Widgets enabled from the "Appearance > Widgets" page were causing PHP notices in some cases
|
1006 |
-
* [Improvement] Compatible with PHP 8
|
|
|
|
|
|
|
|
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, whatsapp share, line share, gab share, parler share
|
5 |
Requires at least: 2.5.0
|
6 |
Tested up to: 5.7.2
|
7 |
+
Stable tag: 3.3.22
|
8 |
License: GPLv2 or later
|
9 |
|
10 |
Slickest, Simplest and Optimized Share buttons. Facebook, Twitter, Reddit, Pinterest, Whatsapp, Parler, Gab and over 100 more.
|
123 |
4. **Universal Sharing Popup**: Universal Sharing popup having all the supported sharing and bookmarking services
|
124 |
|
125 |
== Changelog ==
|
126 |
+
= 3.3.22 [14 July 2021] =
|
127 |
+
* [Improvement] Admin UI improvements
|
128 |
+
* [Improvement] Performance improvement of Social Media Follow widget
|
129 |
+
|
130 |
= 3.3.21 [29 June 2021] =
|
131 |
* [Bugfix] Floating share Bar was not appearing at the home page when Yoast SEO plugin was active
|
132 |
* [Bugfix] Pinterest share icon was not working in AMP
|
1007 |
* [Improvement] Updated the Facebook JS SDK being used to the latest version 11.0
|
1008 |
* [Improvement] Admin UI improvement
|
1009 |
* [Improvement] Widgets enabled from the "Appearance > Widgets" page were causing PHP notices in some cases
|
1010 |
+
* [Improvement] Compatible with PHP 8
|
1011 |
+
|
1012 |
+
= 3.3.22 [14 July 2021] =
|
1013 |
+
* [Improvement] Admin UI improvements
|
1014 |
+
* [Improvement] Performance improvement of Social Media Follow widget
|
sassy-social-share.php
CHANGED
@@ -6,7 +6,7 @@
|
|
6 |
* Plugin Name: Sassy Social Share
|
7 |
* Plugin URI: https://www.heateor.com
|
8 |
* Description: Slickest, Simplest and Optimized Share buttons. Facebook, Twitter, Reddit, Pinterest, WhatsApp and over 100 more
|
9 |
-
* Version: 3.3.
|
10 |
* Author: Team Heateor
|
11 |
* Author URI: https://www.heateor.com
|
12 |
* Text Domain: sassy-social-share
|
@@ -20,7 +20,7 @@ if ( ! defined( 'WPINC' ) ) {
|
|
20 |
die;
|
21 |
}
|
22 |
|
23 |
-
define( 'HEATEOR_SSS_VERSION', '3.3.
|
24 |
define( 'HEATEOR_SSS_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
|
25 |
|
26 |
// plugin core class object
|
@@ -126,8 +126,6 @@ function heateor_sss_save_default_options() {
|
|
126 |
'buffer_username' => '',
|
127 |
'custom_css' => '',
|
128 |
'amp_enable' => '1',
|
129 |
-
'fb_key' => '',
|
130 |
-
'fb_secret' => '',
|
131 |
'instagram_username' => '',
|
132 |
'vertical_instagram_username' => '',
|
133 |
'youtube_username' => '',
|
6 |
* Plugin Name: Sassy Social Share
|
7 |
* Plugin URI: https://www.heateor.com
|
8 |
* Description: Slickest, Simplest and Optimized Share buttons. Facebook, Twitter, Reddit, Pinterest, WhatsApp and over 100 more
|
9 |
+
* Version: 3.3.22
|
10 |
* Author: Team Heateor
|
11 |
* Author URI: https://www.heateor.com
|
12 |
* Text Domain: sassy-social-share
|
20 |
die;
|
21 |
}
|
22 |
|
23 |
+
define( 'HEATEOR_SSS_VERSION', '3.3.22' );
|
24 |
define( 'HEATEOR_SSS_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
|
25 |
|
26 |
// plugin core class object
|
126 |
'buffer_username' => '',
|
127 |
'custom_css' => '',
|
128 |
'amp_enable' => '1',
|
|
|
|
|
129 |
'instagram_username' => '',
|
130 |
'vertical_instagram_username' => '',
|
131 |
'youtube_username' => '',
|