WordPress Social Share, Social Login and Social Comments Plugin – Super Socializer - Version 7.2

Version Description

  • [Bugfix] Website title was appearing in homepage content in a few cases
  • [Bugfix] Share counts were not appearing in a few cases
  • [Improvement] Share counts are now being cached (using WordPress transients) resulting in faster page loading with share counts enabled
  • [Improvement] Twitter logo background color updated to match Twitter's brand guidelines
  • [New] Added option to clear share counts cache
  • [New] Added option to specify time duration to refresh share count cache
Download this release

Release Info

Developer the_champ
Plugin Icon 128x128 WordPress Social Share, Social Login and Social Comments Plugin – Super Socializer
Version 7.2
Comparing to
See all releases

Code changes from version 7.1 to 7.2

admin/social_sharing.php CHANGED
@@ -1519,7 +1519,7 @@
1519
  <tr class="the_champ_help_content" id="the_champ_surl_enable_help_cont">
1520
  <td colspan="2">
1521
  <div>
1522
- <?php _e('Allows for shortened URLs to be used when sharing content if a shortening plugin is installed', 'Super-Socializer' ) ?>
1523
  </div>
1524
  </td>
1525
  </tr>
@@ -1602,6 +1602,56 @@
1602
  </div>
1603
  </div>
1604
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1605
  <div class="stuffbox">
1606
  <h3><label><?php _e('Language', 'Super-Socializer' );?></label></h3>
1607
  <div class="inside">
@@ -1719,6 +1769,8 @@
1719
  <p><a href="http://support.heateor.com/how-to-customize-the-look-of-total-share-counts" target="_blank"><?php _e('How to customize the look of total share counts?', 'Super-Socializer' ) ?></a></p>
1720
  <p><a href="http://support.heateor.com/how-to-customize-the-look-of-individual-share-counts" target="_blank"><?php _e('How to customize the look of individual share counts?', 'Super-Socializer' ) ?></a></p>
1721
  <p><a href="http://support.heateor.com/how-to-show-whatsapp-icon-only-on-mobile-devices" target="_blank"><?php _e('How to show Whatsapp icon only on mobile devices?', 'Super-Socializer' ) ?></a></p>
 
 
1722
  </div>
1723
  </div>
1724
 
1519
  <tr class="the_champ_help_content" id="the_champ_surl_enable_help_cont">
1520
  <td colspan="2">
1521
  <div>
1522
+ <?php _e('Uses default short url permalinks without using any additional plugin', 'Super-Socializer' ) ?>
1523
  </div>
1524
  </td>
1525
  </tr>
1602
  </div>
1603
  </div>
1604
 
1605
+ <div class="stuffbox">
1606
+ <h3><label><?php _e( 'Share Count Cache', 'Super-Socializer' ) ?></label></h3>
1607
+ <div class="inside">
1608
+ <table width="100%" border="0" cellspacing="0" cellpadding="0" class="form-table editcomment menu_content_table">
1609
+ <tr>
1610
+ <th>
1611
+ <img id="the_champ_share_count_cache_help" class="the_champ_help_bubble" src="<?php echo plugins_url( '../images/info.png', __FILE__ ) ?>" />
1612
+ <label for="the_champ_share_count_cache"><?php _e( "Refresh Share Count cache every", 'Super-Socializer' ) ?></label>
1613
+ </th>
1614
+ <td>
1615
+ <input style="width: 50px;" id="the_champ_share_count_cache" name="the_champ_sharing[share_count_cache_refresh_count]" type="text" value="<?php echo $theChampSharingOptions['share_count_cache_refresh_count']; ?>" />
1616
+ <select name="the_champ_sharing[share_count_cache_refresh_unit]">
1617
+ <option value="seconds" <?php echo $theChampSharingOptions['share_count_cache_refresh_unit'] == 'seconds' ? 'selected' : ''; ?>>Second(s)</option>
1618
+ <option value="minutes" <?php echo $theChampSharingOptions['share_count_cache_refresh_unit'] == 'minutes' ? 'selected' : ''; ?>>Minute(s)</option>
1619
+ <option value="hours" <?php echo $theChampSharingOptions['share_count_cache_refresh_unit'] == 'hours' ? 'selected' : ''; ?>>Hour(s)</option>
1620
+ <option value="days" <?php echo $theChampSharingOptions['share_count_cache_refresh_unit'] == 'days' ? 'selected' : ''; ?>>Day(s)</option>
1621
+ </select>
1622
+ </td>
1623
+ </tr>
1624
+
1625
+ <tr class="the_champ_help_content" id="the_champ_share_count_cache_help_cont">
1626
+ <td colspan="2">
1627
+ <div>
1628
+ <?php _e( 'Frequent cache refreshing results in slower loading of pages with share counts enabled', 'Super-Socializer' ) ?>
1629
+ </div>
1630
+ </td>
1631
+ </tr>
1632
+
1633
+ <tr>
1634
+ <th style="width:215px">
1635
+ <img id="the_champ_clear_share_count_cache_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
1636
+ <input type="button" class="button-primary" value="<?php _e( 'Clear Share Counts Cache', 'Super-Socializer') ?>" onclick="heateorSsClearShareCountCache()" />
1637
+ </th>
1638
+ <td>
1639
+ <img src="<?php echo plugins_url('../images/ajax_loader.gif', __FILE__) ?>" id="share_count_cache_loading" style="display:none" />
1640
+ <div id="the_champ_share_count_cache_clear_message" style="color:green;display:none;"><?php _e('Share Counts cache cleared successfully.', 'Super-Socializer' ); ?></div>
1641
+ </td>
1642
+ </tr>
1643
+
1644
+ <tr class="the_champ_help_content" id="the_champ_clear_share_count_cache_help_cont">
1645
+ <td colspan="2">
1646
+ <div>
1647
+ <?php _e( 'Use this to clear cached share counts', 'Super-Socializer' ) ?>
1648
+ </div>
1649
+ </td>
1650
+ </tr>
1651
+ </table>
1652
+ </div>
1653
+ </div>
1654
+
1655
  <div class="stuffbox">
1656
  <h3><label><?php _e('Language', 'Super-Socializer' );?></label></h3>
1657
  <div class="inside">
1769
  <p><a href="http://support.heateor.com/how-to-customize-the-look-of-total-share-counts" target="_blank"><?php _e('How to customize the look of total share counts?', 'Super-Socializer' ) ?></a></p>
1770
  <p><a href="http://support.heateor.com/how-to-customize-the-look-of-individual-share-counts" target="_blank"><?php _e('How to customize the look of individual share counts?', 'Super-Socializer' ) ?></a></p>
1771
  <p><a href="http://support.heateor.com/how-to-show-whatsapp-icon-only-on-mobile-devices" target="_blank"><?php _e('How to show Whatsapp icon only on mobile devices?', 'Super-Socializer' ) ?></a></p>
1772
+ <p><a href="http://support.heateor.com/how-to-hide-arrow-after-floating-sharing-bar" target="_blank"><?php _e( 'How to hide arrow after floating sharing bar?', 'Super-Socializer' ) ?></a></p>
1773
+ <p><a href="http://support.heateor.com/why-are-share-counts-not-updating" target="_blank"><?php _e( 'Why are Share Counts Not Updating?', 'Super-Socializer' ) ?></a></p>
1774
  </div>
1775
  </div>
1776
 
css/admin.css CHANGED
@@ -1,4 +1,4 @@
1
- @charset "utf-8";.clr,.the_champ_clear{clear:both}#the_champ_sl_curl{color:#900}.the_champ_master_control h2,.the_champ_master_control input{float: left;}.the_champ_master_control h2{margin:0 10px 0 0}.the_champ_master_control input{margin-top:2px}h2.nav-tab-wrapper{border-bottom: 1px solid #ccc;padding-bottom: 0;padding-left: 10px;}h2.nav-tab-wrapper>ul>li{float:left;margin-left:5px}li.ui-tabs-active{border-bottom-color:#f1f1f1;border-bottom-style:solid;border-bottom-width:5px}li.ui-tabs-active a.nav-tab{background:0 0}.submit a{margin-left:20px}div.menu_containt_div>.stuffbox{width:763px}div.inside td,div.inside th{padding:7px}div.stuffbox h3{border-bottom:1px solid #eee}.theChampHorizontalSharingProviderContainer,.theChampVerticalSharingProviderContainer{font-size: 11px;width:165px;float:left;margin-bottom: 4px}.theChampHorizontalSharingProviderContainer input,.theChampVerticalSharingProviderContainer input{margin-top: 0;float: left;}.theChampHorizontalSharingProviderContainer label,.theChampVerticalSharingProviderContainer label{float: left;margin:0 1px;}.the_champ_help_content{display:none;font-size:12px;color:#797979;line-height:15px;font-style:italic}.the_champ_help_content img{box-shadow:4px 4px 4px 4px #888;margin:8px 0}.the_champ_help_bubble{cursor:pointer;vertical-align:middle}#the_champ_ss_rearrange li,#the_champ_ss_vertical_rearrange li{cursor:move;float:left;display:block;margin:2px}#the_champ_sc_rearrange,#the_champ_sc_vertical_rearrange,#the_champ_ss_rearrange,#the_champ_ss_vertical_rearrange{margin:0}#the_champ_sc_rearrange li,#the_champ_sc_vertical_rearrange li{cursor:move;float:left;display:block;width:175px;margin:0}#the_champ_sc_rearrange label,#the_champ_sc_vertical_rearrange label{cursor:move}.the_champ_left_column{float:left;width:72%!important}.the_champ_right_column{float:left;width:26.5%;margin-left:10px}.the_champ_right_column a:focus{outline:0!important;border:none!important}.the_champ_right_column td{display:block;width:120px!important;margin:0}.the_champ_error{background-color:#FFFFE0;border:1px solid #E6DB55;padding:5px;margin:10px}input[type=text]{width:90%}.theChampLoginButton{background:url(../images/login/login.png) no-repeat;cursor:pointer;display:block;float:left;margin-right:10px}.theChampGoogleButton{background-position:-32px 0;width:32px;height:32px}.theChampFacebookButton{background-position:0 0;width:32px;height:32px}.theChampWordpressButton{background-position:0 -96px;width:32px;height:32px}.theChampLinkedinButton{background-position:-32px -32px;width:32px;height:32px}.theChampTwitterButton{background-position:0 -64px;width:32px;height:32px}.theChampHorizontalSharingButton,.theChampVerticalSharingButton{display:block}.theChampSharingDeliciousButton{background-position:0 0;width:32px;height:32px}.theChampSharingDiggButton{background-position:-32px 0;width:32px;height:32px}.theChampSharingEmailButton{background-position:-64px 0;width:32px;height:32px}.theChampSharingFacebookButton{background-position:-96px 0;width:32px;height:32px}.theChampSharingFloatitButton{background-position:0 -32px;width:32px;height:32px}.theChampSharingGoogleButton{background-position:-32px -32px;width:32px;height:32px}.theChampSharingLinkedinButton{background-position:-64px -32px;width:32px;height:32px}.theChampSharingPinterestButton{background-position:0 -64px;width:32px;height:32px}.theChampSharingPrintButton{background-position:-32px -64px;width:32px;height:32px}.theChampSharingRedditButton{background-position:-64px -64px;width:32px;height:32px}.theChampSharingStumbleuponButton{background-position:-96px -64px;width:32px;height:32px}.theChampSharingTumblrButton{background-position:0 -96px;width:32px;height:32px}.theChampSharingTwitterButton{background-position:-32px -96px;width:32px;height:32px}.theChampSharingVkontakteButton{background-position:-64px -96px;width:32px;height:32px}.theChampSharingYahooButton{background-position:-96px -96px;width:32px;height:32px}.theChampSharingXingButton{background-position:0 -128px;width:32px;height:32px}.theChampSharingWhatsappButton{background-position:-32px -128px;width:32px;height:32px}#the_champ_troubleshoot_notification{color:red}.theChampYummlyBackground{background-color:#E16120}.theChampFacebookBackground{background-color:#3C589A}.theChampBufferBackground{background-color:#000}.theChampDiggBackground{background-color:#006094}.theChampEmailBackground{background-color:#649A3F}.theChampFloatitBackground{background-color:#53BEEE}.theChampGoogleBackground{background-color:#dd4b39}.theChampLinkedinBackground{background-color:#2886EF}.theChampMoreBackground{background-color:#EE8E2D}.theChampPinterestBackground{background-color:#CC2329}.theChampPrintBackground{background-color:#FD6500}.theChampRedditBackground{background-color:#247CED}.theChampStumbleuponBackground{background-color:#EA4823}.theChampTumblrBackground{background-color:#29435D}.theChampTwitterBackground{background-color:#14B2C8}.theChampVkontakteBackground{background-color:#5E84AC}.theChampYahooBackground{background-color:#8F03CC}.theChampXingBackground{background-color:#00797D}.theChampWhatsappBackground{background-color:#55EB4C}.theChampSharingSvg{width:100%;height:100%}.theChampYummlySvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAzMCAzMCI+PHBhdGggc3Ryb2tlPSIjZmZmIiBkPSJNIDEwLjUgMTAgcSA0IC0yIDIuNSAxIGwgLTEgNCBxIDAgMiA1IDAgbCAxIC02LjUgbSAtMSA2LjUgbCAtMSA0IGMgLTMgNiAtNiAtMSAwIC0xIHEgMSAtMSA1IDEiIHN0cm9rZS13aWR0aD0iMiIgZmlsbD0ibm9uZSI+PC9wYXRoPjwvc3ZnPg==) left no-repeat}.theChampBufferSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii00IC00IDM4IDM5Ij48cGF0aCBzdHJva2U9IiNmZmYiIGQ9Ik0gMTUgNiBsIC0xMCA1IGwgMTAgNSBsIDEwIC01IHoiIHN0cm9rZS13aWR0aD0iMCIgZmlsbD0iI2ZmZiI+PC9wYXRoPjxwYXRoIHN0cm9rZT0iI2ZmZiIgZD0iTSA1LjUgMTQuNSBsIDkuNSA1IGwgOS41IC01IG0gLTE5IDQgbCA5LjUgNSBsIDkuNSAtNSIgc3Ryb2tlLXdpZHRoPSIyIiBmaWxsPSJub25lIj48L3BhdGg+PC9zdmc+) left no-repeat}.theChampFacebookSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii01IC01IDQwIDQwIj48cGF0aCBzdHJva2U9IiNmZmYiIGQ9Ik0xNCAyNSB2IC0xMyBRIDEzIDYgMjEgNy41IE0gMTAgMTQgTCAyMCAxNCIgc3Ryb2tlLXdpZHRoPSI0IiBmaWxsPSJub25lIj48L3BhdGg+PC9zdmc+) left no-repeat}.theChampDeliciousSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAzMCAzMCI+DQo8cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTUiIGhlaWdodD0iMTUiIHN0eWxlPSJmaWxsOiNlZWU7IiAvPg0KPHJlY3QgeD0iMTUiIHk9IjAiIHdpZHRoPSIxNSIgaGVpZ2h0PSIxNSIgc3R5bGU9ImZpbGw6IzMxNzNEMDsiIC8+DQo8cmVjdCB4PSIwIiB5PSIxNSIgd2lkdGg9IjE1IiBoZWlnaHQ9IjE1IiBzdHlsZT0iZmlsbDojMDAwOyIgLz4NCjxyZWN0IHg9IjE1IiB5PSIxNSIgd2lkdGg9IjE1IiBoZWlnaHQ9IjE1IiBzdHlsZT0iZmlsbDojQkRCREJEOyIgLz4NCjwvc3ZnPg==) left no-repeat}.theChampDiggSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii01IC01IDQ5IDQ5Ij48cGF0aCBkPSJNIDYgMjAgaCAxMCBjIDAgLTE0IC05IC0xNCAtOSAwIG0gNSAwIHYgNyBtIC0xIDAgdiAtNyBtIDQgLTcgaCA0LjUgdiAtNSBoIDggdiA4IGggLTggdiAtMyBtIDggMCBoIDQgdiA1LjUgaCAtMyB2IDEyIGggLTQgdiAtOCBtIDAgOCBoIC02LjUgdiAtMTIgaCAtMiIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2U9IiNmZmYiIGZpbGw9Im5vbmUiPjwvcGF0aD48ZWxsaXBzZSBjeD0iMTEuNSIgY3k9IjI4LjUiIHJ4PSI0IiByeT0iMiIgc3R5bGU9ImZpbGw6d2hpdGU7Ij48L2VsbGlwc2U+PC9zdmc+) left no-repeat}.theChampEmailSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii00IC00IDQzIDQzIj48cGF0aCBkPSJNIDUuNSAxMSBoIDIzIHYgMSBsIC0xMSA2IGwgLTExIC02IHYgLTEgbSAwIDIgbCAxMSA2IGwgMTEgLTYgdiAxMSBoIC0yMiB2IC0xMSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSIjZmZmIj48L3BhdGg+PC9zdmc+) left no-repeat}.theChampFloatitSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii01IC01IDQwIDQwIj48Y2lyY2xlIGN4PSIxNSIgY3k9IjE1IiByPSIxMCIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIzIiBmaWxsPSJub25lIj48L2NpcmNsZT48Y2lyY2xlIGN4PSIxNSIgY3k9IjE1IiByPSI1IiBzdHJva2U9IndoaXRlIiBzdHJva2Utd2lkdGg9IjMiIGZpbGw9Im5vbmUiPjwvY2lyY2xlPjxwYXRoIGQ9Ik0gNSAxNSBoIDUgTSAxNSA1IHYgNSBNIDI1IDE1IGggLTUgTSAxNSAyNSB2IC01IiBzdHJva2Utd2lkdGg9IjMiIHN0cm9rZT0iI2ZmZiIgZmlsbD0ibm9uZSI+PC9wYXRoPjwvc3ZnPg==) left no-repeat}.theChampGoogleSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAxMDAgMTAwIj48cGF0aCBkPSJNIDUxLjIyODc3NjYwNTc1NzA3IDM4LjE5MDgwNzcwMjE5NzA1IEEgMTcgMTcgMCAxIDAgNTYgNTAuMDAwMDAwMDAwMDAwMDEgaCAtMTciIHN0cm9rZT0iI2ZmZiIgc3Ryb2tlLXdpZHRoPSI4IiBmaWxsPSJub25lIj48L3BhdGg+PHBhdGggZD0iTSA2NSA0OSBoIDE4IG0gLTkgLTkgdiAxOCIgc3Ryb2tlPSIjZmZmIiBzdHJva2Utd2lkdGg9IjUiIGZpbGw9Im5vbmUiPjwvcGF0aD48L3N2Zz4=) left no-repeat}.theChampLinkedinSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii00IC00IDM4IDM4Ij4NCjxjaXJjbGUgY3g9IjEwIiBjeT0iOCIgcj0iMiIgZmlsbD0id2hpdGUiPjwvY2lyY2xlPg0KPHBhdGggZD0iTSAxMCAxMSB2IDExIG0gNSAwIHYgLTExIG0gMCAzIHEgNiAtMyA3IDAgdiA4IiBzdHJva2Utd2lkdGg9IjMiIHN0cm9rZT0iI2ZmZiIgZmlsbD0ibm9uZSI+PC9wYXRoPg0KPC9zdmc+) left no-repeat}.theChampMoreSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii00IC00IDM4IDM4Ij48Y2lyY2xlIGN4PSIxMCIgY3k9IjE1IiByPSIzIiBmaWxsPSJ3aGl0ZSI+PC9jaXJjbGU+PGNpcmNsZSBjeD0iMjAiIGN5PSIxMCIgcj0iMyIgZmlsbD0id2hpdGUiPjwvY2lyY2xlPjxjaXJjbGUgY3g9IjIwIiBjeT0iMjAiIHI9IjMiIGZpbGw9IndoaXRlIj48L2NpcmNsZT48cGF0aCBkPSJNIDEwIDE1IEwgMjAgMTAgbSAwIDEwIEwgMTAgMTUiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlPSIjZmZmIj48L3BhdGg+PC9zdmc+) left no-repeat}.theChampPinterestSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii02LjUgLTUgNDIgNDIiPjxwYXRoIGQ9Ik0gNiAyMCBjIC0zIC00IC0yIC0xMCAzIC0xMy41IGMgNCAtMyAxMSAtMyAxNSAzIGMgMyA1IDIgMTMgLTYgMTUgcSAtNCAxIC02IC0zIGwgLTIgNiBsIC0xLjIgMiBsIC0wLjggLTIgbCAyLjUgLTExIGMgLTIgLTQgMSAtOCA0IC02IHEgMCA1IC0xLjQgOC41IGMgMyA4IDEwIDAgOS41IC00IGMgMCAtOSAtMTEgLTExIC0xNC41IC00IGMgMCAwIC0zIDUgMCA4IGwgLTEgMiB6IiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9IiNmZmYiPjwvcGF0aD48L3N2Zz4=) left no-repeat}.theChampPrintSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii00IC02IDM4IDM4Ij48cGF0aCBzdHJva2U9IiNmZmYiIGQ9Ik0gNyAxMCBoIDIgdiAzIGggMTIgdiAtMyBoIDIgdiA3IGggLTIgdiAtMyBoIC0xMiB2IDMgaCAtMiB6IiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9IiNmZmYiPjwvcGF0aD48cmVjdCBzdHJva2U9IiNmZmYiIHN0cm9rZS13aWR0aD0iMS44IiBoZWlnaHQ9IjciIHdpZHRoPSIxMCIgeD0iMTAiIHk9IjUiIGZpbGw9Im5vbmUiPjwvcmVjdD48cmVjdCBzdHJva2U9IiNmZmYiIHN0cm9rZS13aWR0aD0iMSIgaGVpZ2h0PSI1IiB3aWR0aD0iOCIgeD0iMTEiIHk9IjE2IiBmaWxsPSIjZmZmIj48L3JlY3Q+PC9zdmc+) left no-repeat}.theChampRedditSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii02IC02IDQyIDQyIj48ZWxsaXBzZSBjeD0iMTUiIGN5PSIxOSIgcng9IjkiIHJ5PSI3IiBzdHlsZT0ic3Ryb2tlOndoaXRlO3N0cm9rZS13aWR0aDoyIiBmaWxsPSJub25lIj48L2VsbGlwc2U+PGNpcmNsZSBjeD0iMTEiIGN5PSIxNyIgcj0iMiIgZmlsbD0id2hpdGUiPjwvY2lyY2xlPjxjaXJjbGUgY3g9IjE5IiBjeT0iMTciIHI9IjIiIGZpbGw9IndoaXRlIj48L2NpcmNsZT48Y2lyY2xlIGN4PSIyMiIgY3k9IjciIHI9IjIiIGZpbGw9IndoaXRlIj48L2NpcmNsZT48Y2lyY2xlIGN4PSI3IiBjeT0iMTQiIHI9IjIiIGZpbGw9IndoaXRlIj48L2NpcmNsZT48Y2lyY2xlIGN4PSIyMyIgY3k9IjE0IiByPSIyIiBmaWxsPSJ3aGl0ZSI+PC9jaXJjbGU+PHBhdGggZD0iTSAxMCAyMiBxIDUgMyAxMCAwIE0gMTUgMTIgbCAxIC02IGwgNiAxIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZT0iI2ZmZiIgZmlsbD0ibm9uZSI+PC9wYXRoPjwvc3ZnPg==) left no-repeat}.theChampStumbleuponSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii01IC01IDQwIDQwIj48cGF0aCBkPSJNIDYuNiAxNSB2IDEgYyAtMSA3IDYuNSA3IDUuNSAwIHYgLTQgYyAtMSAtNyA2IC03IDYgLTIgdiAyLjUgbSAwIDIuNSB2IDEgYyAtMSA3IDYuNSA3IDUuNSAwIHYgLTEiIHN0cm9rZS13aWR0aD0iMy41IiBzdHJva2U9IiNmZmYiIGZpbGw9Im5vbmUiPjwvcGF0aD48L3N2Zz4=) left no-repeat}.theChampTumblrSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii00IC00IDM4IDM4Ij48cGF0aCBkPSJNIDE0IDcgdiAxNCBxIDMgMiA2IDAgTSAxNCA3LjUgcSAwIDUuNSAtNCA1LjUgaCA5IiBzdHJva2Utd2lkdGg9IjMiIHN0cm9rZT0iI2ZmZiIgZmlsbD0ibm9uZSI+PC9wYXRoPjwvc3ZnPg==) left no-repeat}.theChampTwitterSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii04IC04IDY0IDY0Ij4NCjxwYXRoIGQ9Ik0gMzggMTkgcSAyIC0xIDQgLTUgcSAtMS41IDIgLTQgMiBxIDEuNSAtMSAzLjUgLTUgcSAtMS41IDIgLTUgMiBjIC01IC01IC0xMyAtMiAtMTIgNiBxIC03IDEgLTE1IC04IHEgLTIgNCAxIDkgcSAtMSAwIC0zIC0xIHEgMCA1IDUgNyBxIC0xIC41IC0zIDAgcSAxIDQgOCA2IHEgLTUgMyAtMTEgMyBjIDE0IDggMzAgMCAzMS41IC0xNCIgc3Ryb2tlLXdpZHRoPSIwLjMiIGZpbGw9IiNmZmYiPjwvcGF0aD4NCjwvc3ZnPg==) left no-repeat}.theChampVkontakteSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii01IC01IDQwIDQwIj4NCjxwYXRoIGQ9Ik0gMi41IDkgaCA0LjUgbCA1IDcgdiAtNyBoIDQuNSB2IDcgbCA1IC03IGggNSBsIC01IDcgbCA1IDcgaCAtNSBsIC01IC03IHYgNyBoIC00LjUgcSAtMiAwIC01IC02IHoiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0iI2ZmZiI+PC9wYXRoPg0KPC9zdmc+) left no-repeat}.theChampYahooSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii00IC00IDM4IDM4Ij48cGF0aCBkPSJNIDggMTAgbCA3IDcgbCA1IC01IG0gLTQuNyA1IHYgMyBoIC0wLjUgdiAtMyBtIDggLTQgdiA1IG0gMCAxIHYgMSIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2U9IiNmZmYiIGZpbGw9Im5vbmUiPjwvcGF0aD48cGF0aCBkPSJNIDYgMTAgaCA2IG0gNSAyIGggNiBtIC0xMSA5LjUgaCA2IiBzdHJva2Utd2lkdGg9IjEuNCIgc3Ryb2tlPSIjZmZmIiBmaWxsPSJub25lIj48L3BhdGg+PC9zdmc+) left no-repeat}.theChampXingSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii02IC02IDQyIDQyIj4NCjxwYXRoIGQ9Ik0gNiA5IGggNSBsIDQgNCBsIC01IDcgaCAtNSBsIDUgLTcgeiBtIDE1IC00IGggNSBsIC05IDEzIGwgNCA4IGggLTUgbCAtNCAtOCB6IiBmaWxsPSIjZmZmIj48L3BhdGg+DQo8L3N2Zz4=) left no-repeat}.theChampWhatsappSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii01IC01IDQwIDQwIj48cGF0aCBpZD0iYXJjMSIgc3Ryb2tlPSIjZmZmIiBzdHJva2Utd2lkdGg9IjIiIGZpbGw9Im5vbmUiIGQ9Ik0gMTEuNTc5Nzk4NTY2NzQzMzE0IDI0LjM5NjkyNjIwNzg1OTA4NSBBIDEwIDEwIDAgMSAwIDYuODA4NDc5NTU3MTEwMDc5IDIwLjczNTc2NDM2MzUxMDQ2Ij48L3BhdGg+PHBhdGggZD0iTSA3IDE5IGwgLTEgNiBsIDYgLTEiIHN0cm9rZT0iI2ZmZiIgc3Ryb2tlLXdpZHRoPSIyIiBmaWxsPSJub25lIj48L3BhdGg+PHBhdGggZD0iTSAxMCAxMCBxIC0xIDggOCAxMSBjIDUgLTEgMCAtNiAtMSAtMyBxIC00IC0zIC01IC01IGMgNCAtMiAtMSAtNSAtMSAtNCIgZmlsbD0iI2ZmZiI+PC9wYXRoPjwvc3ZnPg==) left no-repeat}.ss_demo{background-color:#1D9AFC;padding:8px 0 10px;font-size:18px;border:0;color:#fff;border-radius:8px;margin:0 auto;font-weight:bolder;width:100%;cursor:pointer}.ss_demo:hover{background-color:#5BACEC};
2
- .theChampYummlyBackground{background-color:#E16120}.theChampFacebookBackground{background-color:#3C589A}.theChampBufferBackground{background-color:#000}.theChampDiggBackground{background-color:#006094}.theChampEmailBackground{background-color:#649A3F}.theChampFloatitBackground{background-color:#53BEEE}.theChampGoogleplusBackground{background-color:#dd4b39}.theChampLinkedinBackground{background-color:#2886EF}.theChampMoreBackground{background-color:#EE8E2D}.theChampPinterestBackground{background-color:#CC2329}.theChampPrintBackground{background-color:#FD6500}.theChampRedditBackground{background-color:#247CED}.theChampStumbleuponBackground{background-color:#EA4823}.theChampTumblrBackground{background-color:#29435D}.theChampTwitterBackground{background-color:#14B2C8}.theChampVkontakteBackground{background-color:#5E84AC}.theChampYahooBackground{background-color:#8F03CC}.theChampXingBackground{background-color:#00797D}.theChampDeliciousBackground{background-color:#53BEEE}.theChampWhatsappBackground{background-color:#55EB4C}.theChampLinkedinshareBackground{width:66px!important;}.theChampFacebookrecommendBackground{width:95px!important;}.theChampFacebooklikeBackground{width:50px!important;}.theChampTwittertweetBackground{width:57px!important;}.theChampGoogleplusoneBackground{width:35px!important;}.theChampGoogleplusshareBackground{width:57px!important;}.theChampPinterestpinBackground{width:44px!important;}.theChampBuffershareBackground{width:58px!important;}.theChampXingshareBackground{width:63px!important;}.theChampRedditbadgeBackground{width:124px!important;}.theChampStumbleuponbadgeBackground{width:79px!important;}.theChampSharingSvg{width:100%;height:100%}.theChampLinkedinshareSvg{background:url(../images/sharing/linkedin_share.png) left no-repeat;border-radius: 0!important}.theChampFacebooklikeSvg{background:url(../images/sharing/facebook_like.png) left no-repeat;border-radius: 0!important}.theChampStumbleuponbadgeSvg{background:url(../images/sharing/stumbleupon_badge.png) left no-repeat;border-radius: 0!important}.theChampRedditbadgeSvg{background:url(../images/sharing/reddit_badge.png) left no-repeat;border-radius: 0!important}.theChampYummlyshareSvg{background:url(../images/sharing/yummly_share.png) left no-repeat;border-radius: 0!important}.theChampBuffershareSvg{background:url(../images/sharing/buffer_share.png) left no-repeat;border-radius: 0!important}.theChampXingshareSvg{background:url(../images/sharing/xing_share.png) left no-repeat;border-radius: 0!important}.theChampPinterestpinSvg{background:url(../images/sharing/pinterest_pin.png) left no-repeat;border-radius: 0!important}.theChampGoogleplusshareSvg{background:url(../images/sharing/google_plus_share.png) left no-repeat;border-radius: 0!important}.theChampGoogleplusoneSvg{background:url(../images/sharing/google_plusone.png) left no-repeat;border-radius: 0!important}.theChampTwittertweetSvg{background:url(../images/sharing/twitter_tweet.png) left no-repeat;border-radius: 0!important}.theChampFacebookrecommendSvg{background:url(../images/sharing/facebook_recommend.png) left no-repeat;border-radius:0!important;}
3
  .theChampAIMBackground{background-color: #fff}.theChampAmazonWishListBackground{background-color: #fff}.theChampAOLMailBackground{background-color: #2A2A2A}.theChampAppnetBackground{background-color: #5D5D5D}.theChampBaiduBackground{background-color: #fff}.theChampBalatarinBackground{background-color: #fff}.theChampBibSonomyBackground{background-color: #fff}.theChampBittyBrowserBackground{background-color: #EFEFEF}.theChampBlinklistBackground{background-color: #3D3C3B}.theChampBloggerPostBackground{background-color: #FDA352}.theChampBlogMarksBackground{background-color: #535353}.theChampBookmarksfrBackground{background-color: #E8EAD4}.theChampBoxnetBackground{background-color: #1A74B0}.theChampBuddyMarksBackground{background-color: #fff}.theChampCare2NewsBackground{background-color: #6EB43F}.theChampCiteULikeBackground{background-color: #2781CD}.theChampDiaryRuBackground{background-color: #E8D8C6}.theChampDiasporaBackground{background-color: #2E3436}.theChampDiHITTBackground{background-color: #FF6300}.theChampDiigoBackground{background-color: #4A8BCA}.theChampDZoneBackground{background-color: #fff}.theChampEvernoteBackground{background-color: #8BE056}.theChampFarkBackground{background-color: #555}
4
  .theChampFlipboardBackground{background-color: #CC0000}.theChampFolkdBackground{background-color: #fff}.theChampGoogleBookmarksBackground{background-color: #CB0909}.theChampGoogleGmailBackground{background-color: #E5E5E5}.theChampHackerNewsBackground{background-color: #F60}.theChampHatenaBackground{background-color: #00A6DB}.theChampInstapaperBackground{background-color: #EDEDED}.theChampJamespotBackground{background-color: #FF9E2C}.theChampKakaoBackground{background-color: #FCB700}.theChampKindleItBackground{background-color: #2A2A2A}.theChampKnownBackground{background-color: #FFF}.theChampLineBackground{background-color: #00C300}.theChampLiveJournalBackground{background-color: #EDEDED}.theChampMailRuBackground{background-color: #356FAC}.theChampMendeleyBackground{background-color: #A70805}.theChampMeneameBackground{background-color: #FF7D12}.theChampMixiBackground{background-color: #EDEDED}.theChampMySpaceBackground{background-color: #2A2A2A}.theChampNetlogBackground{background-color: #2A2A2A}.theChampNetvouzBackground{background-color: #fff}.theChampNewsVineBackground{background-color: #055D00}.theChampNUjijBackground{background-color: #D40000}.theChampOdnoklassnikiBackground{background-color: #F2720C}.theChampOknotizieBackground{background-color: #fff}.theChampOutlookcomBackground{background-color: #fff}.theChampPinboardBackground{background-color: #1341DE}.theChampPlurkBackground{background-color: #CF682F}.theChampPocketBackground{background-color: #fff}.theChampPrintFriendlyBackground{background-color: #61D1D5}.theChampProtopageBookmarksBackground{background-color: #413FFF}.theChampPushaBackground{background-color: #0072B8}.theChampQzoneBackground{background-color: #2B82D9}.theChampRediffMyPageBackground{background-color: #D20000}.theChampRenrenBackground{background-color: #005EAC}.theChampSegnaloBackground{background-color: #fff}.theChampSinaWeiboBackground{background-color: #fff}.theChampSiteJotBackground{background-color: #fff}.theChampSlashdotBackground{background-color: #004242}.theChampStumpediaBackground{background-color: #EDEDED}.theChampSvejoBackground{background-color: #FAFAFA}.theChampSymbalooFeedsBackground{background-color: #6DA8F7}.theChampTuentiBackground{background-color: #0075C9}.theChampTwiddlaBackground{background-color: #EDEDED}.theChampTypePadPostBackground{background-color: #2A2A2A}.theChampViadeoBackground{background-color: #2A2A2A}.theChampWaneloBackground{background-color: #fff}.theChampWebnewsBackground{background-color: #CC2512}.theChampWordPressBackground{background-color: #464646}.theChampWykopBackground{background-color: #367DA9}.theChampYahooMailBackground{background-color: #400090}.theChampYahooMessengerBackground{background-color: #400090}.theChampYoolinkBackground{background-color: #A2C538}.theChampYouMobBackground{background-color: #3B599D}.theChampYummlyshareBackground{width: 43px!important}.faq a{text-decoration: none;}.theChampCounterPreviewLeft,.theChampCounterVerticalPreviewLeft,.theChampCounterVerticalPreviewRight,.theChampCounterPreviewRight{float:left;text-align: center;font-family:sans-serif;width:30px;visibility: hidden;}.theChampCounterVerticalPreviewTop,.theChampCounterVerticalPreviewBottom,.theChampCounterPreviewTop,.theChampCounterPreviewBottom{text-align: center;line-height: 30px;height: 30px;visibility: hidden;clear: both}.theChampCounterVerticalPreviewInnerleft,.theChampCounterVerticalPreviewInnerright,.theChampCounterPreviewInnerleft,.theChampCounterPreviewInnerright{float: left;display: none;height: 100%;width:50%;text-align:center}.theChampCounterVerticalPreviewInnertop,.theChampCounterVerticalPreviewInnerbottom,.theChampCounterPreviewInnertop,.theChampCounterPreviewInnerbottom{clear: both;text-align:center;display: none;width:100%;height:30%}h2.nav-tab-wrapper{border-bottom: 1px solid #ccc;padding-bottom: 0;padding-left: 10px;}
1
+ @charset "utf-8";.clr,.the_champ_clear{clear:both}#the_champ_sl_curl{color:#900}.the_champ_master_control h2,.the_champ_master_control input{float: left;}.the_champ_master_control h2{margin:0 10px 0 0}.the_champ_master_control input{margin-top:2px}h2.nav-tab-wrapper{border-bottom: 1px solid #ccc;padding-bottom: 0;padding-left: 10px;}h2.nav-tab-wrapper>ul>li{float:left;margin-left:5px}li.ui-tabs-active{border-bottom-color:#f1f1f1;border-bottom-style:solid;border-bottom-width:5px}li.ui-tabs-active a.nav-tab{background:0 0}.submit a{margin-left:20px}div.menu_containt_div>.stuffbox{width:763px}div.inside td,div.inside th{padding:7px}div.stuffbox h3{border-bottom:1px solid #eee}.theChampHorizontalSharingProviderContainer,.theChampVerticalSharingProviderContainer{font-size: 11px;width:165px;float:left;margin-bottom: 4px}.theChampHorizontalSharingProviderContainer input,.theChampVerticalSharingProviderContainer input{margin-top: 0;float: left;}.theChampHorizontalSharingProviderContainer label,.theChampVerticalSharingProviderContainer label{float: left;margin:0 1px;}.the_champ_help_content{display:none;font-size:12px;color:#797979;line-height:15px;font-style:italic}.the_champ_help_content img{box-shadow:4px 4px 4px 4px #888;margin:8px 0}.the_champ_help_bubble{cursor:pointer;vertical-align:middle}#the_champ_ss_rearrange li,#the_champ_ss_vertical_rearrange li{cursor:move;float:left;display:block;margin:2px}#the_champ_sc_rearrange,#the_champ_sc_vertical_rearrange,#the_champ_ss_rearrange,#the_champ_ss_vertical_rearrange{margin:0}#the_champ_sc_rearrange li,#the_champ_sc_vertical_rearrange li{cursor:move;float:left;display:block;width:175px;margin:0}#the_champ_sc_rearrange label,#the_champ_sc_vertical_rearrange label{cursor:move}.the_champ_left_column{float:left;width:72%!important}.the_champ_right_column{float:left;width:26.5%;margin-left:10px}.the_champ_right_column a:focus{outline:0!important;border:none!important}.the_champ_right_column td{display:block;width:120px!important;margin:0}.the_champ_error{background-color:#FFFFE0;border:1px solid #E6DB55;padding:5px;margin:10px}input[type=text]{width:90%}.theChampLoginButton{background:url(../images/login/login.png) no-repeat;cursor:pointer;display:block;float:left;margin-right:10px}.theChampGoogleButton{background-position:-32px 0;width:32px;height:32px}.theChampFacebookButton{background-position:0 0;width:32px;height:32px}.theChampWordpressButton{background-position:0 -96px;width:32px;height:32px}.theChampLinkedinButton{background-position:-32px -32px;width:32px;height:32px}.theChampTwitterButton{background-position:0 -64px;width:32px;height:32px}.theChampHorizontalSharingButton,.theChampVerticalSharingButton{display:block}.theChampSharingDeliciousButton{background-position:0 0;width:32px;height:32px}.theChampSharingDiggButton{background-position:-32px 0;width:32px;height:32px}.theChampSharingEmailButton{background-position:-64px 0;width:32px;height:32px}.theChampSharingFacebookButton{background-position:-96px 0;width:32px;height:32px}.theChampSharingFloatitButton{background-position:0 -32px;width:32px;height:32px}.theChampSharingGoogleButton{background-position:-32px -32px;width:32px;height:32px}.theChampSharingLinkedinButton{background-position:-64px -32px;width:32px;height:32px}.theChampSharingPinterestButton{background-position:0 -64px;width:32px;height:32px}.theChampSharingPrintButton{background-position:-32px -64px;width:32px;height:32px}.theChampSharingRedditButton{background-position:-64px -64px;width:32px;height:32px}.theChampSharingStumbleuponButton{background-position:-96px -64px;width:32px;height:32px}.theChampSharingTumblrButton{background-position:0 -96px;width:32px;height:32px}.theChampSharingTwitterButton{background-position:-32px -96px;width:32px;height:32px}.theChampSharingVkontakteButton{background-position:-64px -96px;width:32px;height:32px}.theChampSharingYahooButton{background-position:-96px -96px;width:32px;height:32px}.theChampSharingXingButton{background-position:0 -128px;width:32px;height:32px}.theChampSharingWhatsappButton{background-position:-32px -128px;width:32px;height:32px}#the_champ_troubleshoot_notification{color:red}.theChampYummlyBackground{background-color:#E16120}.theChampFacebookBackground{background-color:#3C589A}.theChampBufferBackground{background-color:#000}.theChampDiggBackground{background-color:#006094}.theChampEmailBackground{background-color:#649A3F}.theChampFloatitBackground{background-color:#53BEEE}.theChampGoogleBackground{background-color:#dd4b39}.theChampLinkedinBackground{background-color:#2886EF}.theChampMoreBackground{background-color:#EE8E2D}.theChampPinterestBackground{background-color:#CC2329}.theChampPrintBackground{background-color:#FD6500}.theChampRedditBackground{background-color:#247CED}.theChampStumbleuponBackground{background-color:#EA4823}.theChampTumblrBackground{background-color:#29435D}.theChampTwitterBackground{background-color:#55acee}.theChampVkontakteBackground{background-color:#5E84AC}.theChampYahooBackground{background-color:#8F03CC}.theChampXingBackground{background-color:#00797D}.theChampWhatsappBackground{background-color:#55EB4C}.theChampSharingSvg{width:100%;height:100%}.theChampYummlySvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAzMCAzMCI+PHBhdGggc3Ryb2tlPSIjZmZmIiBkPSJNIDEwLjUgMTAgcSA0IC0yIDIuNSAxIGwgLTEgNCBxIDAgMiA1IDAgbCAxIC02LjUgbSAtMSA2LjUgbCAtMSA0IGMgLTMgNiAtNiAtMSAwIC0xIHEgMSAtMSA1IDEiIHN0cm9rZS13aWR0aD0iMiIgZmlsbD0ibm9uZSI+PC9wYXRoPjwvc3ZnPg==) left no-repeat}.theChampBufferSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii00IC00IDM4IDM5Ij48cGF0aCBzdHJva2U9IiNmZmYiIGQ9Ik0gMTUgNiBsIC0xMCA1IGwgMTAgNSBsIDEwIC01IHoiIHN0cm9rZS13aWR0aD0iMCIgZmlsbD0iI2ZmZiI+PC9wYXRoPjxwYXRoIHN0cm9rZT0iI2ZmZiIgZD0iTSA1LjUgMTQuNSBsIDkuNSA1IGwgOS41IC01IG0gLTE5IDQgbCA5LjUgNSBsIDkuNSAtNSIgc3Ryb2tlLXdpZHRoPSIyIiBmaWxsPSJub25lIj48L3BhdGg+PC9zdmc+) left no-repeat}.theChampFacebookSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii01IC01IDQwIDQwIj48cGF0aCBzdHJva2U9IiNmZmYiIGQ9Ik0xNCAyNSB2IC0xMyBRIDEzIDYgMjEgNy41IE0gMTAgMTQgTCAyMCAxNCIgc3Ryb2tlLXdpZHRoPSI0IiBmaWxsPSJub25lIj48L3BhdGg+PC9zdmc+) left no-repeat}.theChampDeliciousSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAzMCAzMCI+DQo8cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTUiIGhlaWdodD0iMTUiIHN0eWxlPSJmaWxsOiNlZWU7IiAvPg0KPHJlY3QgeD0iMTUiIHk9IjAiIHdpZHRoPSIxNSIgaGVpZ2h0PSIxNSIgc3R5bGU9ImZpbGw6IzMxNzNEMDsiIC8+DQo8cmVjdCB4PSIwIiB5PSIxNSIgd2lkdGg9IjE1IiBoZWlnaHQ9IjE1IiBzdHlsZT0iZmlsbDojMDAwOyIgLz4NCjxyZWN0IHg9IjE1IiB5PSIxNSIgd2lkdGg9IjE1IiBoZWlnaHQ9IjE1IiBzdHlsZT0iZmlsbDojQkRCREJEOyIgLz4NCjwvc3ZnPg==) left no-repeat}.theChampDiggSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii01IC01IDQ5IDQ5Ij48cGF0aCBkPSJNIDYgMjAgaCAxMCBjIDAgLTE0IC05IC0xNCAtOSAwIG0gNSAwIHYgNyBtIC0xIDAgdiAtNyBtIDQgLTcgaCA0LjUgdiAtNSBoIDggdiA4IGggLTggdiAtMyBtIDggMCBoIDQgdiA1LjUgaCAtMyB2IDEyIGggLTQgdiAtOCBtIDAgOCBoIC02LjUgdiAtMTIgaCAtMiIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2U9IiNmZmYiIGZpbGw9Im5vbmUiPjwvcGF0aD48ZWxsaXBzZSBjeD0iMTEuNSIgY3k9IjI4LjUiIHJ4PSI0IiByeT0iMiIgc3R5bGU9ImZpbGw6d2hpdGU7Ij48L2VsbGlwc2U+PC9zdmc+) left no-repeat}.theChampEmailSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii00IC00IDQzIDQzIj48cGF0aCBkPSJNIDUuNSAxMSBoIDIzIHYgMSBsIC0xMSA2IGwgLTExIC02IHYgLTEgbSAwIDIgbCAxMSA2IGwgMTEgLTYgdiAxMSBoIC0yMiB2IC0xMSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSIjZmZmIj48L3BhdGg+PC9zdmc+) left no-repeat}.theChampFloatitSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii01IC01IDQwIDQwIj48Y2lyY2xlIGN4PSIxNSIgY3k9IjE1IiByPSIxMCIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIzIiBmaWxsPSJub25lIj48L2NpcmNsZT48Y2lyY2xlIGN4PSIxNSIgY3k9IjE1IiByPSI1IiBzdHJva2U9IndoaXRlIiBzdHJva2Utd2lkdGg9IjMiIGZpbGw9Im5vbmUiPjwvY2lyY2xlPjxwYXRoIGQ9Ik0gNSAxNSBoIDUgTSAxNSA1IHYgNSBNIDI1IDE1IGggLTUgTSAxNSAyNSB2IC01IiBzdHJva2Utd2lkdGg9IjMiIHN0cm9rZT0iI2ZmZiIgZmlsbD0ibm9uZSI+PC9wYXRoPjwvc3ZnPg==) left no-repeat}.theChampGoogleSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAxMDAgMTAwIj48cGF0aCBkPSJNIDUxLjIyODc3NjYwNTc1NzA3IDM4LjE5MDgwNzcwMjE5NzA1IEEgMTcgMTcgMCAxIDAgNTYgNTAuMDAwMDAwMDAwMDAwMDEgaCAtMTciIHN0cm9rZT0iI2ZmZiIgc3Ryb2tlLXdpZHRoPSI4IiBmaWxsPSJub25lIj48L3BhdGg+PHBhdGggZD0iTSA2NSA0OSBoIDE4IG0gLTkgLTkgdiAxOCIgc3Ryb2tlPSIjZmZmIiBzdHJva2Utd2lkdGg9IjUiIGZpbGw9Im5vbmUiPjwvcGF0aD48L3N2Zz4=) left no-repeat}.theChampLinkedinSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii00IC00IDM4IDM4Ij4NCjxjaXJjbGUgY3g9IjEwIiBjeT0iOCIgcj0iMiIgZmlsbD0id2hpdGUiPjwvY2lyY2xlPg0KPHBhdGggZD0iTSAxMCAxMSB2IDExIG0gNSAwIHYgLTExIG0gMCAzIHEgNiAtMyA3IDAgdiA4IiBzdHJva2Utd2lkdGg9IjMiIHN0cm9rZT0iI2ZmZiIgZmlsbD0ibm9uZSI+PC9wYXRoPg0KPC9zdmc+) left no-repeat}.theChampMoreSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii00IC00IDM4IDM4Ij48Y2lyY2xlIGN4PSIxMCIgY3k9IjE1IiByPSIzIiBmaWxsPSJ3aGl0ZSI+PC9jaXJjbGU+PGNpcmNsZSBjeD0iMjAiIGN5PSIxMCIgcj0iMyIgZmlsbD0id2hpdGUiPjwvY2lyY2xlPjxjaXJjbGUgY3g9IjIwIiBjeT0iMjAiIHI9IjMiIGZpbGw9IndoaXRlIj48L2NpcmNsZT48cGF0aCBkPSJNIDEwIDE1IEwgMjAgMTAgbSAwIDEwIEwgMTAgMTUiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlPSIjZmZmIj48L3BhdGg+PC9zdmc+) left no-repeat}.theChampPinterestSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii02LjUgLTUgNDIgNDIiPjxwYXRoIGQ9Ik0gNiAyMCBjIC0zIC00IC0yIC0xMCAzIC0xMy41IGMgNCAtMyAxMSAtMyAxNSAzIGMgMyA1IDIgMTMgLTYgMTUgcSAtNCAxIC02IC0zIGwgLTIgNiBsIC0xLjIgMiBsIC0wLjggLTIgbCAyLjUgLTExIGMgLTIgLTQgMSAtOCA0IC02IHEgMCA1IC0xLjQgOC41IGMgMyA4IDEwIDAgOS41IC00IGMgMCAtOSAtMTEgLTExIC0xNC41IC00IGMgMCAwIC0zIDUgMCA4IGwgLTEgMiB6IiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9IiNmZmYiPjwvcGF0aD48L3N2Zz4=) left no-repeat}.theChampPrintSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii00IC02IDM4IDM4Ij48cGF0aCBzdHJva2U9IiNmZmYiIGQ9Ik0gNyAxMCBoIDIgdiAzIGggMTIgdiAtMyBoIDIgdiA3IGggLTIgdiAtMyBoIC0xMiB2IDMgaCAtMiB6IiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9IiNmZmYiPjwvcGF0aD48cmVjdCBzdHJva2U9IiNmZmYiIHN0cm9rZS13aWR0aD0iMS44IiBoZWlnaHQ9IjciIHdpZHRoPSIxMCIgeD0iMTAiIHk9IjUiIGZpbGw9Im5vbmUiPjwvcmVjdD48cmVjdCBzdHJva2U9IiNmZmYiIHN0cm9rZS13aWR0aD0iMSIgaGVpZ2h0PSI1IiB3aWR0aD0iOCIgeD0iMTEiIHk9IjE2IiBmaWxsPSIjZmZmIj48L3JlY3Q+PC9zdmc+) left no-repeat}.theChampRedditSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii02IC02IDQyIDQyIj48ZWxsaXBzZSBjeD0iMTUiIGN5PSIxOSIgcng9IjkiIHJ5PSI3IiBzdHlsZT0ic3Ryb2tlOndoaXRlO3N0cm9rZS13aWR0aDoyIiBmaWxsPSJub25lIj48L2VsbGlwc2U+PGNpcmNsZSBjeD0iMTEiIGN5PSIxNyIgcj0iMiIgZmlsbD0id2hpdGUiPjwvY2lyY2xlPjxjaXJjbGUgY3g9IjE5IiBjeT0iMTciIHI9IjIiIGZpbGw9IndoaXRlIj48L2NpcmNsZT48Y2lyY2xlIGN4PSIyMiIgY3k9IjciIHI9IjIiIGZpbGw9IndoaXRlIj48L2NpcmNsZT48Y2lyY2xlIGN4PSI3IiBjeT0iMTQiIHI9IjIiIGZpbGw9IndoaXRlIj48L2NpcmNsZT48Y2lyY2xlIGN4PSIyMyIgY3k9IjE0IiByPSIyIiBmaWxsPSJ3aGl0ZSI+PC9jaXJjbGU+PHBhdGggZD0iTSAxMCAyMiBxIDUgMyAxMCAwIE0gMTUgMTIgbCAxIC02IGwgNiAxIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZT0iI2ZmZiIgZmlsbD0ibm9uZSI+PC9wYXRoPjwvc3ZnPg==) left no-repeat}.theChampStumbleuponSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii01IC01IDQwIDQwIj48cGF0aCBkPSJNIDYuNiAxNSB2IDEgYyAtMSA3IDYuNSA3IDUuNSAwIHYgLTQgYyAtMSAtNyA2IC03IDYgLTIgdiAyLjUgbSAwIDIuNSB2IDEgYyAtMSA3IDYuNSA3IDUuNSAwIHYgLTEiIHN0cm9rZS13aWR0aD0iMy41IiBzdHJva2U9IiNmZmYiIGZpbGw9Im5vbmUiPjwvcGF0aD48L3N2Zz4=) left no-repeat}.theChampTumblrSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii00IC00IDM4IDM4Ij48cGF0aCBkPSJNIDE0IDcgdiAxNCBxIDMgMiA2IDAgTSAxNCA3LjUgcSAwIDUuNSAtNCA1LjUgaCA5IiBzdHJva2Utd2lkdGg9IjMiIHN0cm9rZT0iI2ZmZiIgZmlsbD0ibm9uZSI+PC9wYXRoPjwvc3ZnPg==) left no-repeat}.theChampTwitterSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii04IC04IDY0IDY0Ij4NCjxwYXRoIGQ9Ik0gMzggMTkgcSAyIC0xIDQgLTUgcSAtMS41IDIgLTQgMiBxIDEuNSAtMSAzLjUgLTUgcSAtMS41IDIgLTUgMiBjIC01IC01IC0xMyAtMiAtMTIgNiBxIC03IDEgLTE1IC04IHEgLTIgNCAxIDkgcSAtMSAwIC0zIC0xIHEgMCA1IDUgNyBxIC0xIC41IC0zIDAgcSAxIDQgOCA2IHEgLTUgMyAtMTEgMyBjIDE0IDggMzAgMCAzMS41IC0xNCIgc3Ryb2tlLXdpZHRoPSIwLjMiIGZpbGw9IiNmZmYiPjwvcGF0aD4NCjwvc3ZnPg==) left no-repeat}.theChampVkontakteSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii01IC01IDQwIDQwIj4NCjxwYXRoIGQ9Ik0gMi41IDkgaCA0LjUgbCA1IDcgdiAtNyBoIDQuNSB2IDcgbCA1IC03IGggNSBsIC01IDcgbCA1IDcgaCAtNSBsIC01IC03IHYgNyBoIC00LjUgcSAtMiAwIC01IC02IHoiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0iI2ZmZiI+PC9wYXRoPg0KPC9zdmc+) left no-repeat}.theChampYahooSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii00IC00IDM4IDM4Ij48cGF0aCBkPSJNIDggMTAgbCA3IDcgbCA1IC01IG0gLTQuNyA1IHYgMyBoIC0wLjUgdiAtMyBtIDggLTQgdiA1IG0gMCAxIHYgMSIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2U9IiNmZmYiIGZpbGw9Im5vbmUiPjwvcGF0aD48cGF0aCBkPSJNIDYgMTAgaCA2IG0gNSAyIGggNiBtIC0xMSA5LjUgaCA2IiBzdHJva2Utd2lkdGg9IjEuNCIgc3Ryb2tlPSIjZmZmIiBmaWxsPSJub25lIj48L3BhdGg+PC9zdmc+) left no-repeat}.theChampXingSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii02IC02IDQyIDQyIj4NCjxwYXRoIGQ9Ik0gNiA5IGggNSBsIDQgNCBsIC01IDcgaCAtNSBsIDUgLTcgeiBtIDE1IC00IGggNSBsIC05IDEzIGwgNCA4IGggLTUgbCAtNCAtOCB6IiBmaWxsPSIjZmZmIj48L3BhdGg+DQo8L3N2Zz4=) left no-repeat}.theChampWhatsappSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii01IC01IDQwIDQwIj48cGF0aCBpZD0iYXJjMSIgc3Ryb2tlPSIjZmZmIiBzdHJva2Utd2lkdGg9IjIiIGZpbGw9Im5vbmUiIGQ9Ik0gMTEuNTc5Nzk4NTY2NzQzMzE0IDI0LjM5NjkyNjIwNzg1OTA4NSBBIDEwIDEwIDAgMSAwIDYuODA4NDc5NTU3MTEwMDc5IDIwLjczNTc2NDM2MzUxMDQ2Ij48L3BhdGg+PHBhdGggZD0iTSA3IDE5IGwgLTEgNiBsIDYgLTEiIHN0cm9rZT0iI2ZmZiIgc3Ryb2tlLXdpZHRoPSIyIiBmaWxsPSJub25lIj48L3BhdGg+PHBhdGggZD0iTSAxMCAxMCBxIC0xIDggOCAxMSBjIDUgLTEgMCAtNiAtMSAtMyBxIC00IC0zIC01IC01IGMgNCAtMiAtMSAtNSAtMSAtNCIgZmlsbD0iI2ZmZiI+PC9wYXRoPjwvc3ZnPg==) left no-repeat}.ss_demo{background-color:#1D9AFC;padding:8px 0 10px;font-size:18px;border:0;color:#fff;border-radius:8px;margin:0 auto;font-weight:bolder;width:100%;cursor:pointer}.ss_demo:hover{background-color:#5BACEC};
2
+ .theChampYummlyBackground{background-color:#E16120}.theChampFacebookBackground{background-color:#3C589A}.theChampBufferBackground{background-color:#000}.theChampDiggBackground{background-color:#006094}.theChampEmailBackground{background-color:#649A3F}.theChampFloatitBackground{background-color:#53BEEE}.theChampGoogleplusBackground{background-color:#dd4b39}.theChampLinkedinBackground{background-color:#2886EF}.theChampMoreBackground{background-color:#EE8E2D}.theChampPinterestBackground{background-color:#CC2329}.theChampPrintBackground{background-color:#FD6500}.theChampRedditBackground{background-color:#247CED}.theChampStumbleuponBackground{background-color:#EA4823}.theChampTumblrBackground{background-color:#29435D}.theChampTwitterBackground{background-color:#55acee}.theChampVkontakteBackground{background-color:#5E84AC}.theChampYahooBackground{background-color:#8F03CC}.theChampXingBackground{background-color:#00797D}.theChampDeliciousBackground{background-color:#53BEEE}.theChampWhatsappBackground{background-color:#55EB4C}.theChampLinkedinshareBackground{width:66px!important;}.theChampFacebookrecommendBackground{width:95px!important;}.theChampFacebooklikeBackground{width:50px!important;}.theChampTwittertweetBackground{width:57px!important;}.theChampGoogleplusoneBackground{width:35px!important;}.theChampGoogleplusshareBackground{width:57px!important;}.theChampPinterestpinBackground{width:44px!important;}.theChampBuffershareBackground{width:58px!important;}.theChampXingshareBackground{width:63px!important;}.theChampRedditbadgeBackground{width:124px!important;}.theChampStumbleuponbadgeBackground{width:79px!important;}.theChampSharingSvg{width:100%;height:100%}.theChampLinkedinshareSvg{background:url(../images/sharing/linkedin_share.png) left no-repeat;border-radius: 0!important}.theChampFacebooklikeSvg{background:url(../images/sharing/facebook_like.png) left no-repeat;border-radius: 0!important}.theChampStumbleuponbadgeSvg{background:url(../images/sharing/stumbleupon_badge.png) left no-repeat;border-radius: 0!important}.theChampRedditbadgeSvg{background:url(../images/sharing/reddit_badge.png) left no-repeat;border-radius: 0!important}.theChampYummlyshareSvg{background:url(../images/sharing/yummly_share.png) left no-repeat;border-radius: 0!important}.theChampBuffershareSvg{background:url(../images/sharing/buffer_share.png) left no-repeat;border-radius: 0!important}.theChampXingshareSvg{background:url(../images/sharing/xing_share.png) left no-repeat;border-radius: 0!important}.theChampPinterestpinSvg{background:url(../images/sharing/pinterest_pin.png) left no-repeat;border-radius: 0!important}.theChampGoogleplusshareSvg{background:url(../images/sharing/google_plus_share.png) left no-repeat;border-radius: 0!important}.theChampGoogleplusoneSvg{background:url(../images/sharing/google_plusone.png) left no-repeat;border-radius: 0!important}.theChampTwittertweetSvg{background:url(../images/sharing/twitter_tweet.png) left no-repeat;border-radius: 0!important}.theChampFacebookrecommendSvg{background:url(../images/sharing/facebook_recommend.png) left no-repeat;border-radius:0!important;}
3
  .theChampAIMBackground{background-color: #fff}.theChampAmazonWishListBackground{background-color: #fff}.theChampAOLMailBackground{background-color: #2A2A2A}.theChampAppnetBackground{background-color: #5D5D5D}.theChampBaiduBackground{background-color: #fff}.theChampBalatarinBackground{background-color: #fff}.theChampBibSonomyBackground{background-color: #fff}.theChampBittyBrowserBackground{background-color: #EFEFEF}.theChampBlinklistBackground{background-color: #3D3C3B}.theChampBloggerPostBackground{background-color: #FDA352}.theChampBlogMarksBackground{background-color: #535353}.theChampBookmarksfrBackground{background-color: #E8EAD4}.theChampBoxnetBackground{background-color: #1A74B0}.theChampBuddyMarksBackground{background-color: #fff}.theChampCare2NewsBackground{background-color: #6EB43F}.theChampCiteULikeBackground{background-color: #2781CD}.theChampDiaryRuBackground{background-color: #E8D8C6}.theChampDiasporaBackground{background-color: #2E3436}.theChampDiHITTBackground{background-color: #FF6300}.theChampDiigoBackground{background-color: #4A8BCA}.theChampDZoneBackground{background-color: #fff}.theChampEvernoteBackground{background-color: #8BE056}.theChampFarkBackground{background-color: #555}
4
  .theChampFlipboardBackground{background-color: #CC0000}.theChampFolkdBackground{background-color: #fff}.theChampGoogleBookmarksBackground{background-color: #CB0909}.theChampGoogleGmailBackground{background-color: #E5E5E5}.theChampHackerNewsBackground{background-color: #F60}.theChampHatenaBackground{background-color: #00A6DB}.theChampInstapaperBackground{background-color: #EDEDED}.theChampJamespotBackground{background-color: #FF9E2C}.theChampKakaoBackground{background-color: #FCB700}.theChampKindleItBackground{background-color: #2A2A2A}.theChampKnownBackground{background-color: #FFF}.theChampLineBackground{background-color: #00C300}.theChampLiveJournalBackground{background-color: #EDEDED}.theChampMailRuBackground{background-color: #356FAC}.theChampMendeleyBackground{background-color: #A70805}.theChampMeneameBackground{background-color: #FF7D12}.theChampMixiBackground{background-color: #EDEDED}.theChampMySpaceBackground{background-color: #2A2A2A}.theChampNetlogBackground{background-color: #2A2A2A}.theChampNetvouzBackground{background-color: #fff}.theChampNewsVineBackground{background-color: #055D00}.theChampNUjijBackground{background-color: #D40000}.theChampOdnoklassnikiBackground{background-color: #F2720C}.theChampOknotizieBackground{background-color: #fff}.theChampOutlookcomBackground{background-color: #fff}.theChampPinboardBackground{background-color: #1341DE}.theChampPlurkBackground{background-color: #CF682F}.theChampPocketBackground{background-color: #fff}.theChampPrintFriendlyBackground{background-color: #61D1D5}.theChampProtopageBookmarksBackground{background-color: #413FFF}.theChampPushaBackground{background-color: #0072B8}.theChampQzoneBackground{background-color: #2B82D9}.theChampRediffMyPageBackground{background-color: #D20000}.theChampRenrenBackground{background-color: #005EAC}.theChampSegnaloBackground{background-color: #fff}.theChampSinaWeiboBackground{background-color: #fff}.theChampSiteJotBackground{background-color: #fff}.theChampSlashdotBackground{background-color: #004242}.theChampStumpediaBackground{background-color: #EDEDED}.theChampSvejoBackground{background-color: #FAFAFA}.theChampSymbalooFeedsBackground{background-color: #6DA8F7}.theChampTuentiBackground{background-color: #0075C9}.theChampTwiddlaBackground{background-color: #EDEDED}.theChampTypePadPostBackground{background-color: #2A2A2A}.theChampViadeoBackground{background-color: #2A2A2A}.theChampWaneloBackground{background-color: #fff}.theChampWebnewsBackground{background-color: #CC2512}.theChampWordPressBackground{background-color: #464646}.theChampWykopBackground{background-color: #367DA9}.theChampYahooMailBackground{background-color: #400090}.theChampYahooMessengerBackground{background-color: #400090}.theChampYoolinkBackground{background-color: #A2C538}.theChampYouMobBackground{background-color: #3B599D}.theChampYummlyshareBackground{width: 43px!important}.faq a{text-decoration: none;}.theChampCounterPreviewLeft,.theChampCounterVerticalPreviewLeft,.theChampCounterVerticalPreviewRight,.theChampCounterPreviewRight{float:left;text-align: center;font-family:sans-serif;width:30px;visibility: hidden;}.theChampCounterVerticalPreviewTop,.theChampCounterVerticalPreviewBottom,.theChampCounterPreviewTop,.theChampCounterPreviewBottom{text-align: center;line-height: 30px;height: 30px;visibility: hidden;clear: both}.theChampCounterVerticalPreviewInnerleft,.theChampCounterVerticalPreviewInnerright,.theChampCounterPreviewInnerleft,.theChampCounterPreviewInnerright{float: left;display: none;height: 100%;width:50%;text-align:center}.theChampCounterVerticalPreviewInnertop,.theChampCounterVerticalPreviewInnerbottom,.theChampCounterPreviewInnertop,.theChampCounterPreviewInnerbottom{clear: both;text-align:center;display: none;width:100%;height:30%}h2.nav-tab-wrapper{border-bottom: 1px solid #ccc;padding-bottom: 0;padding-left: 10px;}
css/front.css CHANGED
@@ -1,2 +1,2 @@
1
- @charset "utf-8";#the_champ_error{color:red;margin:7px 0}.the_champ_login_container{margin:2px 0}.the_champ_login_container img,.the_champ_sharing_container img{cursor:pointer;margin:2px;border:none}.the_champ_login_container img{display:none;float:left}#the_champ_loading_image{display:block!important;float:none}.the_champ_error{background-color:#FFFFE0;border:1px solid #E6DB55;padding:5px;margin:10px}#the_champ_sharing_more_providers{position:fixed;top:50%;left:47%;background:#FAFAFA;width:650px;margin:-180px 0 0 -300px;z-index:10000000;text-shadow:none!important;height:308px}#the_champ_popup_bg{background:url(../images/transparent_bg.png);bottom:0;display:block;left:0;position:fixed;right:0;top:0;z-index:10000}#the_champ_sharing_more_providers .title{font-size:14px!important;height:auto!important;background:#58B8F8!important;border-bottom:1px solid #D7D7D7!important;color:#fff;font-weight:700;letter-spacing:inherit;line-height:34px!important;padding:0!important;text-align:center;text-transform:none;margin:0!important;text-shadow:none!important;width:100%}#the_champ_sharing_more_providers *{font-family:Arial,Helvetica,sans-serif}#the_champ_sharing_more_providers #the_champ_sharing_more_content{background:#FAFAFA;border-radius:4px;color:#555;height:100%;width:100%}#the_champ_sharing_more_providers .filter{margin:0;padding:10px 0 0;position:relative;width:100%}#the_champ_sharing_more_providers .all-services{clear:both;height:250px;overflow:auto}#the_champ_sharing_more_content .all-services ul{margin:10px!important;overflow:hidden;list-style:none;padding-left:0!important;position:static!important;width:auto!important}#the_champ_sharing_more_content .all-services ul li{margin:0;background:0 0!important;float:left;width:33.3333%!important;text-align:left!important}#the_champ_sharing_more_providers .close-button img{margin:0;}#the_champ_sharing_more_providers .close-button.separated{background:0 0!important;border:none!important;box-shadow:none!important;width:auto!important;height:auto!important;z-index:1000}#the_champ_sharing_more_providers .close-button{height:auto!important;width:auto!important;left:auto!important;display:block!important;color:#555!important;cursor:pointer!important;font-size:29px!important;line-height:29px!important;margin:0!important;padding:0!important;position:absolute;right:-13px;top:-11px}#the_champ_sharing_more_providers .filter input.search{width:94%;display:block;float:none;font-family:"open sans","helvetica neue",helvetica,arial,sans-serif;font-weight:300;height:auto;line-height:inherit;margin:0 auto;padding:5px 8px 5px 10px;border:1px solid #ccc!important;color:#000;background:#FFF!important;font-size:16px!important;text-align:left!important}#the_champ_sharing_more_providers .footer-panel{background:#fff;border-top:1px solid #D7D7D7;padding:6px 0;width:100%;color:#fff}#the_champ_sharing_more_providers .footer-panel p{background-color:transparent;top:0;text-align:left!important;color:#000;font-family:'helvetica neue',arial,helvetica,sans-serif;font-size:12px;line-height:1.2;margin:0!important;padding:0 6px!important;text-indent:0!important}#the_champ_sharing_more_providers .footer-panel a{color:#fff;text-decoration:none;font-weight:700;text-indent:0!important}#the_champ_sharing_more_providers .all-services ul li a{border-radius:3px;color:#666!important;display:block;font-size:18px;height:auto;line-height:28px;overflow:hidden;padding:8px;text-decoration:none!important;text-overflow:ellipsis;white-space:nowrap;border:none!important;text-indent:0!important;background:0 0!important;text-shadow:none;box-shadow:none!important}.the_champ_share_count{display:block;text-indent:0!important;visibility:hidden;background-color:#58B8F8!important;width:5px;height:auto;text-align:center;min-width:8px!important;padding:1px 4px!important;color:#fff!important;font-family:'Open Sans',arial,sans-serif!important;font-size:10px!important;font-weight:600!important;-webkit-border-radius:15px!important;border-radius:15px!important;-webkit-box-shadow:0 2px 2px rgba(0,0,0,.4);box-shadow:0 2px 2px rgba(0,0,0,.4);text-shadow:0 -1px 0 rgba(0,0,0,.2);line-height:14px!important;border:2px solid #fff!important;z-index:1;margin:2px auto!important;box-sizing:content-box!important}.the_champ_share_count,.the_champ_vertical_counter,.the_champ_vertical_sharing{-webkit-box-sizing:content-box!important;-moz-box-sizing:content-box!important}ul.the_champ_login_ul,ul.the_champ_sharing_ul{list-style:none!important;padding-left:0!important}#the_champ_comment_toggle{margin-bottom:10px}ul.the_champ_login_ul{margin:3px 0!important}ul.the_champ_login_ul li{background:0 0!important;float:left;padding:0!important;margin:0!important;border:0!important;width:auto!important;clear:none!important;list-style-type:none!important}.theChampLoginSvg{width:100%;height:100%}.theChampXingLoginSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAzMCAzMCI+DQo8cGF0aCBkPSJNIDYgOSBoIDUgbCA0IDQgbCAtNSA3IGggLTUgbCA1IC03IHogbSAxNSAtNCBoIDUgbCAtOSAxMyBsIDQgOCBoIC01IGwgLTQgLTggeiIgZmlsbD0iI2ZmZiI+PC9wYXRoPg0KPC9zdmc+) left no-repeat}.theChampGoogleLoginSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAxMDAgMTAwIj48cGF0aCBkPSJNIDUxLjIyODc3NjYwNTc1NzA3IDM4LjE5MDgwNzcwMjE5NzA1IEEgMTcgMTcgMCAxIDAgNTYgNTAuMDAwMDAwMDAwMDAwMDEgaCAtMTciIHN0cm9rZT0iI2ZmZiIgc3Ryb2tlLXdpZHRoPSI4IiBmaWxsPSJub25lIj48L3BhdGg+PHBhdGggZD0iTSA2NSA0OSBoIDE4IG0gLTkgLTkgdiAxOCIgc3Ryb2tlPSIjZmZmIiBzdHJva2Utd2lkdGg9IjUiIGZpbGw9Im5vbmUiPjwvcGF0aD48L3N2Zz4=) left no-repeat}.theChampLinkedinLoginSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAzMCAzMCI+DQo8Y2lyY2xlIGN4PSIxMCIgY3k9IjgiIHI9IjIiIGZpbGw9IndoaXRlIj48L2NpcmNsZT4NCjxwYXRoIGQ9Ik0gMTAgMTEgdiAxMSBtIDUgMCB2IC0xMSBtIDAgMyBxIDYgLTMgNyAwIHYgOCIgc3Ryb2tlLXdpZHRoPSIzIiBzdHJva2U9IiNmZmYiIGZpbGw9Im5vbmUiPjwvcGF0aD4NCjwvc3ZnPg==) left no-repeat}.theChampTwitterLoginSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCA0OCA0OCI+DQo8cGF0aCBkPSJNIDM4IDE5IHEgMiAtMSA0IC01IHEgLTEuNSAyIC00IDIgcSAxLjUgLTEgMy41IC01IHEgLTEuNSAyIC01IDIgYyAtNSAtNSAtMTMgLTIgLTEyIDYgcSAtNyAxIC0xNSAtOCBxIC0yIDQgMSA5IHEgLTEgMCAtMyAtMSBxIDAgNSA1IDcgcSAtMSAuNSAtMyAwIHEgMSA0IDggNiBxIC01IDMgLTExIDMgYyAxNCA4IDMwIDAgMzEuNSAtMTQiIHN0cm9rZS13aWR0aD0iMC4zIiBmaWxsPSIjZmZmIj48L3BhdGg+DQo8L3N2Zz4=) left no-repeat}.theChampVkontakteLoginSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAzMCAzMCI+DQo8cGF0aCBkPSJNIDIuNSA5IGggNC41IGwgNSA3IHYgLTcgaCA0LjUgdiA3IGwgNSAtNyBoIDUgbCAtNSA3IGwgNSA3IGggLTUgbCAtNSAtNyB2IDcgaCAtNC41IHEgLTIgMCAtNSAtNiB6IiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9IiNmZmYiPjwvcGF0aD4NCjwvc3ZnPg==) left no-repeat}.theChampFacebookLoginSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAzMCAzMCI+PHBhdGggc3Ryb2tlPSIjZmZmIiBkPSJNMTQgMjUgdiAtMTMgUSAxMyA2IDIxIDcuNSBNIDEwIDE0IEwgMjAgMTQiIHN0cm9rZS13aWR0aD0iNCIgZmlsbD0ibm9uZSI+PC9wYXRoPjwvc3ZnPg==) left no-repeat}.theChampInstagramLoginSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAzMCAzMCI+DQo8Y2lyY2xlIGN4PSIxNSIgY3k9IjE1IiByPSI2IiBmaWxsPSIjZmZmIj48L2NpcmNsZT4NCjxwYXRoIGQ9Ik0gMiAxNSB2IDEzIGggMjYgdiAtMTMgaCAtNCBjIC0zIDEyIC0xNSAxMiAtMTggMCB6IG0gMiAtMTMgdiA1IG0gMiAtNSB2IDUgbSAyIC01IHYgNCBtIC02IDYgdiAtMTAgaCAyNiB2IDEwIGggLTQgYyAtNCAtOC41IC0xNCAtOC41IC0xOCAwIHoiIHN0cm9rZS13aWR0aD0iMSIgc3Ryb2tlPSIjZmZmIiBmaWxsPSJub25lIj48L3BhdGg+PHJlY3Qgd2lkdGg9IjUiIGhlaWdodD0iNSIgZmlsbD0iI2ZmZiIgeD0iMjMiIHk9IjIiPjwvcmVjdD4NCjwvc3ZnPg==) left no-repeat}.theChampLoginButton{background:url(../images/login/login.png) no-repeat}.theChampLogin{padding:0!important;margin:2px;height:35px;width:35px;float:left;cursor:pointer;border:none}.theChampInstagramLogin,.theChampTwitterLogin,.theChampXingLogin{display:block}.theChampFacebookLogin,.theChampGoogleLogin,.theChampLinkedinLogin,.theChampVkontakteLogin{display:none}.theChampXingButton{background-position:-64px 0;width:32px;height:32px;display:block}.theChampFacebookButton{background-position:0 0;width:32px;height:32px;display:none}.theChampLiveButton{background-position:-32px -96px;width:32px;height:32px;display:block}.theChampGoogleButton{background-position:-32px 0;width:32px;height:32px;display:none}.theChampInstagramButton{background-position:0 -32px;width:32px;height:32px;display:block!important}.theChampLinkedinButton{background-position:-32px -32px;width:32px;height:32px;display:none}.theChampTwitterButton{background-position:0 -64px;width:32px;height:32px;display:block!important}.theChampVkontakteButton{background-position:-32px -64px;width:32px;height:32px;display:none}ul.the_champ_sharing_ul{margin:1px 0!important}#the_champ_sharing_popup_close img{opacity: 1!important;background:0 0!important;border:none!important;outline:0!important;box-shadow:none!important;width:auto!important;height:auto!important;top:inherit!important;right:inherit!important;left:9px!important;padding:0!important}ul.the_champ_sharing_ul li.theChampSharingRound{background:0 0!important}.the_champ_square_count{display:none;text-align:center;font-weight:bolder;font-family:sans-serif;font-style: normal;font-size: .8em;visibility:hidden}ul.the_champ_sharing_ul li{float:left!important;margin:0!important;padding:0!important;list-style:none!important;border:none!important}.theChampSharing{display:block;cursor:pointer;margin:2px}ul.the_champ_login_ul li:before,ul.the_champ_sharing_ul li:before{content:none!important}.theChampSharingDeliciousButton{background-position:0 0;width:32px;height:32px}.theChampSharingDiggButton{background-position:-32px 0;width:32px;height:32px}.theChampSharingEmailButton{background-position:-64px 0;width:32px;height:32px}.theChampSharingXingButton{background-position:0 -128px;width:32px;height:32px}.theChampSharingWhatsappButton{background-position:-32px -128px;width:32px;height:32px}.theChampSharingYummlyButton{background-position:-64px -128px;width:32px;height:32px}.theChampSharingBufferButton{background-position:-96px -128px;width:32px;height:32px}.theChampSharingTotalsharesButton{background-position: -200px -200px}.theChampSharingFacebookButton{background-position:-96px 0;width:32px;height:32px}.theChampSharingFloatitButton{background-position:0 -32px;width:32px;height:32px}.theChampSharingGoogleButton{background-position:-32px -32px;width:32px;height:32px}.theChampSharingLinkedinButton{background-position:-64px -32px;width:32px;height:32px}.theChampSharingMoreButton{background-position:-96px -32px;width:32px;height:32px}.theChampSharingPinterestButton{background-position:0 -64px;width:32px;height:32px}.theChampSharingPrintButton{background-position:-32px -64px;width:32px;height:32px}.theChampSharingRedditButton{background-position:-64px -64px;width:32px;height:32px}.theChampSharingStumbleuponButton{background-position:-96px -64px;width:32px;height:32px}.theChampSharingTumblrButton{background-position:0 -96px;width:32px;height:32px}.theChampSharingTwitterButton{background-position:-32px -96px;width:32px;height:32px}.theChampSharingVkontakteButton{background-position:-64px -96px;width:32px;height:32px}.theChampSharingYahooButton{background-position:-96px -96px;width:32px;height:32px}.the_champ_vertical_counter,.the_champ_vertical_sharing{background:0 0;-webkit-box-shadow:0 1px 4px 1px rgba(0,0,0,.1);-moz-box-shadow:0 1px 4px 1px rgba(0,0,0,.1);box-shadow:0 1px 4px 1px rgba(0,0,0,.1);position:fixed;overflow:visible;z-index:10000000;display:block;padding:10px;border-radius:4px;opacity:1;box-sizing:content-box!important}.the_champ_vertical_counter li{clear:both}li.the_champ_facebook_like .fb-like span,li.the_champ_facebook_recommend .fb-like span{vertical-align:top!important}li.the_champ_facebook_like .fb-like span iframe,li.the_champ_facebook_recommend .fb-like span iframe{max-width:none!important;z-index:1000!important}div.the_champ_horizontal_sharing li{width:auto}div.the_champ_horizontal_sharing li.the_champ_facebook_like{width:110px}div.the_champ_horizontal_sharing li.the_champ_facebook_recommend{width:145px}div.the_champ_horizontal_sharing li.the_champ_twitter_tweet{width:95px}div.the_champ_horizontal_sharing li.the_champ_linkedin_share{width:117px}div.the_champ_horizontal_sharing li.the_champ_google_plusone{width:74px}div.the_champ_horizontal_sharing li.the_champ_buffer{width:81px;}div.the_champ_horizontal_sharing li.the_champ_reddit{width:130px}div.the_champ_horizontal_sharing li.the_champ_yummly{width:81px}div.the_champ_horizontal_sharing li.the_champ_gp_share{width:95px}div.the_champ_horizontal_sharing li.the_champ_pinterest_pin{width:76px}div.the_champ_horizontal_sharing li.the_champ_xing{width:98px}div.the_champ_horizontal_sharing .the_champ_stumbleupon{width:80px}.the_champ_counter_container li{height:21px}input#user_login,input#user_pass{height:auto!important}.theChampHorizontalSharingButton,.theChampVerticalSharingButton{display:block}.theChampDeliciousSquareBackground{background-color:#474749}.theChampInstagramBackground{background-color:#624E47}.theChampYummlyBackground{background-color:#E16120}.theChampBufferBackground{background-color:#000}.theChampFacebookBackground{background-color:#3C589A}.theChampDiggBackground{background-color:#006094}.theChampEmailBackground{background-color:#649A3F}.theChampFloatitBackground{background-color:#53BEEE}.theChampGoogleBackground{background-color:#dd4b39}.theChampGoogleplusBackground{background-color:#dd4b39}.theChampLinkedinBackground{background-color:#2886EF}.theChampMoreBackground{background-color:#EE8E2D}.theChampPinterestBackground{background-color:#CC2329}.theChampPrintBackground{background-color:#FD6500}.theChampRedditBackground{background-color:#247CED}.theChampStumbleuponBackground{background-color:#EA4823}.theChampTumblrBackground{background-color:#29435D}.theChampTwitterBackground{background-color:#14B2C8}.theChampVkontakteBackground{background-color:#5E84AC}.theChampYahooBackground{background-color:#8F03CC}.theChampXingBackground{background-color:#00797D}.theChampWhatsappBackground{background-color:#55EB4C}.theChampTCBackground,.theChampTCBackground:hover{border-width: 0!important;background-color:transparent;}.theChampTCBackground{background-color:transparent!important;font-style:normal!important;word-wrap:normal;color:#666;line-height:1;visibility:hidden;}.theChampSharingTotalsharesButton{font-style:normal!important;word-wrap:normal;color:#666;line-height:1}.theChampSharingSvg{width:100%;height:100%}.theChampYummlySvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAzMCAzMCI+PHBhdGggc3Ryb2tlPSIjZmZmIiBkPSJNIDEwLjUgMTAgcSA0IC0yIDIuNSAxIGwgLTEgNCBxIDAgMiA1IDAgbCAxIC02LjUgbSAtMSA2LjUgbCAtMSA0IGMgLTMgNiAtNiAtMSAwIC0xIHEgMSAtMSA1IDEiIHN0cm9rZS13aWR0aD0iMiIgZmlsbD0ibm9uZSI+PC9wYXRoPjwvc3ZnPg==) left no-repeat}.theChampBufferSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii00IC00IDM4IDM5Ij48cGF0aCBzdHJva2U9IiNmZmYiIGQ9Ik0gMTUgNiBsIC0xMCA1IGwgMTAgNSBsIDEwIC01IHoiIHN0cm9rZS13aWR0aD0iMCIgZmlsbD0iI2ZmZiI+PC9wYXRoPjxwYXRoIHN0cm9rZT0iI2ZmZiIgZD0iTSA1LjUgMTQuNSBsIDkuNSA1IGwgOS41IC01IG0gLTE5IDQgbCA5LjUgNSBsIDkuNSAtNSIgc3Ryb2tlLXdpZHRoPSIyIiBmaWxsPSJub25lIj48L3BhdGg+PC9zdmc+) left no-repeat}.theChampFacebookSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii01IC01IDQwIDQwIj48cGF0aCBzdHJva2U9IiNmZmYiIGQ9Ik0xNCAyNSB2IC0xMyBRIDEzIDYgMjEgNy41IE0gMTAgMTQgTCAyMCAxNCIgc3Ryb2tlLXdpZHRoPSI0IiBmaWxsPSJub25lIj48L3BhdGg+PC9zdmc+) left no-repeat}.theChampDeliciousSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAzMCAzMCI+DQo8cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTUiIGhlaWdodD0iMTUiIHN0eWxlPSJmaWxsOiNlZWU7IiAvPg0KPHJlY3QgeD0iMTUiIHk9IjAiIHdpZHRoPSIxNSIgaGVpZ2h0PSIxNSIgc3R5bGU9ImZpbGw6IzMxNzNEMDsiIC8+DQo8cmVjdCB4PSIwIiB5PSIxNSIgd2lkdGg9IjE1IiBoZWlnaHQ9IjE1IiBzdHlsZT0iZmlsbDojMDAwOyIgLz4NCjxyZWN0IHg9IjE1IiB5PSIxNSIgd2lkdGg9IjE1IiBoZWlnaHQ9IjE1IiBzdHlsZT0iZmlsbDojQkRCREJEOyIgLz4NCjwvc3ZnPg==) left no-repeat}.theChampDiggSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii01IC01IDQ5IDQ5Ij48cGF0aCBkPSJNIDYgMjAgaCAxMCBjIDAgLTE0IC05IC0xNCAtOSAwIG0gNSAwIHYgNyBtIC0xIDAgdiAtNyBtIDQgLTcgaCA0LjUgdiAtNSBoIDggdiA4IGggLTggdiAtMyBtIDggMCBoIDQgdiA1LjUgaCAtMyB2IDEyIGggLTQgdiAtOCBtIDAgOCBoIC02LjUgdiAtMTIgaCAtMiIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2U9IiNmZmYiIGZpbGw9Im5vbmUiPjwvcGF0aD48ZWxsaXBzZSBjeD0iMTEuNSIgY3k9IjI4LjUiIHJ4PSI0IiByeT0iMiIgc3R5bGU9ImZpbGw6d2hpdGU7Ij48L2VsbGlwc2U+PC9zdmc+) left no-repeat}.theChampEmailSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii00IC00IDQzIDQzIj48cGF0aCBkPSJNIDUuNSAxMSBoIDIzIHYgMSBsIC0xMSA2IGwgLTExIC02IHYgLTEgbSAwIDIgbCAxMSA2IGwgMTEgLTYgdiAxMSBoIC0yMiB2IC0xMSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSIjZmZmIj48L3BhdGg+PC9zdmc+) left no-repeat}.theChampFloatitSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii01IC01IDQwIDQwIj48Y2lyY2xlIGN4PSIxNSIgY3k9IjE1IiByPSIxMCIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIzIiBmaWxsPSJub25lIj48L2NpcmNsZT48Y2lyY2xlIGN4PSIxNSIgY3k9IjE1IiByPSI1IiBzdHJva2U9IndoaXRlIiBzdHJva2Utd2lkdGg9IjMiIGZpbGw9Im5vbmUiPjwvY2lyY2xlPjxwYXRoIGQ9Ik0gNSAxNSBoIDUgTSAxNSA1IHYgNSBNIDI1IDE1IGggLTUgTSAxNSAyNSB2IC01IiBzdHJva2Utd2lkdGg9IjMiIHN0cm9rZT0iI2ZmZiIgZmlsbD0ibm9uZSI+PC9wYXRoPjwvc3ZnPg==) left no-repeat}.theChampGoogleSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAxMDAgMTAwIj48cGF0aCBkPSJNIDUxLjIyODc3NjYwNTc1NzA3IDM4LjE5MDgwNzcwMjE5NzA1IEEgMTcgMTcgMCAxIDAgNTYgNTAuMDAwMDAwMDAwMDAwMDEgaCAtMTciIHN0cm9rZT0iI2ZmZiIgc3Ryb2tlLXdpZHRoPSI4IiBmaWxsPSJub25lIj48L3BhdGg+PHBhdGggZD0iTSA2NSA0OSBoIDE4IG0gLTkgLTkgdiAxOCIgc3Ryb2tlPSIjZmZmIiBzdHJva2Utd2lkdGg9IjUiIGZpbGw9Im5vbmUiPjwvcGF0aD48L3N2Zz4=) left no-repeat}.theChampLinkedinSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii00IC00IDM4IDM4Ij4NCjxjaXJjbGUgY3g9IjEwIiBjeT0iOCIgcj0iMiIgZmlsbD0id2hpdGUiPjwvY2lyY2xlPg0KPHBhdGggZD0iTSAxMCAxMSB2IDExIG0gNSAwIHYgLTExIG0gMCAzIHEgNiAtMyA3IDAgdiA4IiBzdHJva2Utd2lkdGg9IjMiIHN0cm9rZT0iI2ZmZiIgZmlsbD0ibm9uZSI+PC9wYXRoPg0KPC9zdmc+) left no-repeat}.theChampMoreSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii00IC00IDM4IDM4Ij48Y2lyY2xlIGN4PSIxMCIgY3k9IjE1IiByPSIzIiBmaWxsPSJ3aGl0ZSI+PC9jaXJjbGU+PGNpcmNsZSBjeD0iMjAiIGN5PSIxMCIgcj0iMyIgZmlsbD0id2hpdGUiPjwvY2lyY2xlPjxjaXJjbGUgY3g9IjIwIiBjeT0iMjAiIHI9IjMiIGZpbGw9IndoaXRlIj48L2NpcmNsZT48cGF0aCBkPSJNIDEwIDE1IEwgMjAgMTAgbSAwIDEwIEwgMTAgMTUiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlPSIjZmZmIj48L3BhdGg+PC9zdmc+) left no-repeat}.theChampPinterestSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii02LjUgLTUgNDIgNDIiPjxwYXRoIGQ9Ik0gNiAyMCBjIC0zIC00IC0yIC0xMCAzIC0xMy41IGMgNCAtMyAxMSAtMyAxNSAzIGMgMyA1IDIgMTMgLTYgMTUgcSAtNCAxIC02IC0zIGwgLTIgNiBsIC0xLjIgMiBsIC0wLjggLTIgbCAyLjUgLTExIGMgLTIgLTQgMSAtOCA0IC02IHEgMCA1IC0xLjQgOC41IGMgMyA4IDEwIDAgOS41IC00IGMgMCAtOSAtMTEgLTExIC0xNC41IC00IGMgMCAwIC0zIDUgMCA4IGwgLTEgMiB6IiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9IiNmZmYiPjwvcGF0aD48L3N2Zz4=) left no-repeat}.theChampPrintSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii00IC02IDM4IDM4Ij48cGF0aCBzdHJva2U9IiNmZmYiIGQ9Ik0gNyAxMCBoIDIgdiAzIGggMTIgdiAtMyBoIDIgdiA3IGggLTIgdiAtMyBoIC0xMiB2IDMgaCAtMiB6IiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9IiNmZmYiPjwvcGF0aD48cmVjdCBzdHJva2U9IiNmZmYiIHN0cm9rZS13aWR0aD0iMS44IiBoZWlnaHQ9IjciIHdpZHRoPSIxMCIgeD0iMTAiIHk9IjUiIGZpbGw9Im5vbmUiPjwvcmVjdD48cmVjdCBzdHJva2U9IiNmZmYiIHN0cm9rZS13aWR0aD0iMSIgaGVpZ2h0PSI1IiB3aWR0aD0iOCIgeD0iMTEiIHk9IjE2IiBmaWxsPSIjZmZmIj48L3JlY3Q+PC9zdmc+) left no-repeat}.theChampRedditSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii02IC02IDQyIDQyIj48ZWxsaXBzZSBjeD0iMTUiIGN5PSIxOSIgcng9IjkiIHJ5PSI3IiBzdHlsZT0ic3Ryb2tlOndoaXRlO3N0cm9rZS13aWR0aDoyIiBmaWxsPSJub25lIj48L2VsbGlwc2U+PGNpcmNsZSBjeD0iMTEiIGN5PSIxNyIgcj0iMiIgZmlsbD0id2hpdGUiPjwvY2lyY2xlPjxjaXJjbGUgY3g9IjE5IiBjeT0iMTciIHI9IjIiIGZpbGw9IndoaXRlIj48L2NpcmNsZT48Y2lyY2xlIGN4PSIyMiIgY3k9IjciIHI9IjIiIGZpbGw9IndoaXRlIj48L2NpcmNsZT48Y2lyY2xlIGN4PSI3IiBjeT0iMTQiIHI9IjIiIGZpbGw9IndoaXRlIj48L2NpcmNsZT48Y2lyY2xlIGN4PSIyMyIgY3k9IjE0IiByPSIyIiBmaWxsPSJ3aGl0ZSI+PC9jaXJjbGU+PHBhdGggZD0iTSAxMCAyMiBxIDUgMyAxMCAwIE0gMTUgMTIgbCAxIC02IGwgNiAxIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZT0iI2ZmZiIgZmlsbD0ibm9uZSI+PC9wYXRoPjwvc3ZnPg==) left no-repeat}.theChampStumbleuponSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii01IC01IDQwIDQwIj48cGF0aCBkPSJNIDYuNiAxNSB2IDEgYyAtMSA3IDYuNSA3IDUuNSAwIHYgLTQgYyAtMSAtNyA2IC03IDYgLTIgdiAyLjUgbSAwIDIuNSB2IDEgYyAtMSA3IDYuNSA3IDUuNSAwIHYgLTEiIHN0cm9rZS13aWR0aD0iMy41IiBzdHJva2U9IiNmZmYiIGZpbGw9Im5vbmUiPjwvcGF0aD48L3N2Zz4=) left no-repeat}.theChampTumblrSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii00IC00IDM4IDM4Ij48cGF0aCBkPSJNIDE0IDcgdiAxNCBxIDMgMiA2IDAgTSAxNCA3LjUgcSAwIDUuNSAtNCA1LjUgaCA5IiBzdHJva2Utd2lkdGg9IjMiIHN0cm9rZT0iI2ZmZiIgZmlsbD0ibm9uZSI+PC9wYXRoPjwvc3ZnPg==) left no-repeat}.theChampTwitterSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii04IC04IDY0IDY0Ij4NCjxwYXRoIGQ9Ik0gMzggMTkgcSAyIC0xIDQgLTUgcSAtMS41IDIgLTQgMiBxIDEuNSAtMSAzLjUgLTUgcSAtMS41IDIgLTUgMiBjIC01IC01IC0xMyAtMiAtMTIgNiBxIC03IDEgLTE1IC04IHEgLTIgNCAxIDkgcSAtMSAwIC0zIC0xIHEgMCA1IDUgNyBxIC0xIC41IC0zIDAgcSAxIDQgOCA2IHEgLTUgMyAtMTEgMyBjIDE0IDggMzAgMCAzMS41IC0xNCIgc3Ryb2tlLXdpZHRoPSIwLjMiIGZpbGw9IiNmZmYiPjwvcGF0aD4NCjwvc3ZnPg==) left no-repeat}.theChampVkontakteSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii01IC01IDQwIDQwIj4NCjxwYXRoIGQ9Ik0gMi41IDkgaCA0LjUgbCA1IDcgdiAtNyBoIDQuNSB2IDcgbCA1IC03IGggNSBsIC01IDcgbCA1IDcgaCAtNSBsIC01IC03IHYgNyBoIC00LjUgcSAtMiAwIC01IC02IHoiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0iI2ZmZiI+PC9wYXRoPg0KPC9zdmc+) left no-repeat}.theChampYahooSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii00IC00IDM4IDM4Ij48cGF0aCBkPSJNIDggMTAgbCA3IDcgbCA1IC01IG0gLTQuNyA1IHYgMyBoIC0wLjUgdiAtMyBtIDggLTQgdiA1IG0gMCAxIHYgMSIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2U9IiNmZmYiIGZpbGw9Im5vbmUiPjwvcGF0aD48cGF0aCBkPSJNIDYgMTAgaCA2IG0gNSAyIGggNiBtIC0xMSA5LjUgaCA2IiBzdHJva2Utd2lkdGg9IjEuNCIgc3Ryb2tlPSIjZmZmIiBmaWxsPSJub25lIj48L3BhdGg+PC9zdmc+) left no-repeat}.theChampXingSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii02IC02IDQyIDQyIj4NCjxwYXRoIGQ9Ik0gNiA5IGggNSBsIDQgNCBsIC01IDcgaCAtNSBsIDUgLTcgeiBtIDE1IC00IGggNSBsIC05IDEzIGwgNCA4IGggLTUgbCAtNCAtOCB6IiBmaWxsPSIjZmZmIj48L3BhdGg+DQo8L3N2Zz4=) left no-repeat}.theChampWhatsappSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii01IC01IDQwIDQwIj48cGF0aCBpZD0iYXJjMSIgc3Ryb2tlPSIjZmZmIiBzdHJva2Utd2lkdGg9IjIiIGZpbGw9Im5vbmUiIGQ9Ik0gMTEuNTc5Nzk4NTY2NzQzMzE0IDI0LjM5NjkyNjIwNzg1OTA4NSBBIDEwIDEwIDAgMSAwIDYuODA4NDc5NTU3MTEwMDc5IDIwLjczNTc2NDM2MzUxMDQ2Ij48L3BhdGg+PHBhdGggZD0iTSA3IDE5IGwgLTEgNiBsIDYgLTEiIHN0cm9rZT0iI2ZmZiIgc3Ryb2tlLXdpZHRoPSIyIiBmaWxsPSJub25lIj48L3BhdGg+PHBhdGggZD0iTSAxMCAxMCBxIC0xIDggOCAxMSBjIDUgLTEgMCAtNiAtMSAtMyBxIC00IC0zIC01IC01IGMgNCAtMiAtMSAtNSAtMSAtNCIgZmlsbD0iI2ZmZiI+PC9wYXRoPjwvc3ZnPg==) left no-repeat}.theChampSharing{float:left;border:none}.theChampSharingArrow{background-color:#000!important;height:16px;width:16px;cursor:pointer;margin-top:10px}.theChampPushIn{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAzMCAzMCI+DQo8cGF0aCBkPSJNIDcgNiBxIDIgNiAxMCA2IHYgLTYgbCA2IDkgbCAtNiA5IHYgLTYgcSAtMTAgMiAtMTAgLTEyIiBzdHJva2Utd2lkdGg9IjEiIHN0cm9rZT0iI2ZmZiIgZmlsbD0id2hpdGUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjwvc3ZnPg==) left no-repeat}.theChampPushInPng{background:url(../images/sharing/pushin.png) left no-repeat}.theChampPullOut{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAzMCAzMCI+DQo8cGF0aCBkPSJNIDIzIDYgcSAtMiA2IC0xMCA2IHYgLTYgbCAtNiA5IGwgNiA5IHYgLTYgcSAxMCAyIDEwIC0xMiIgc3Ryb2tlLXdpZHRoPSIxIiBzdHJva2U9IiNmZmYiIGZpbGw9IndoaXRlIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48L3N2Zz4=) left no-repeat}.theChampPullOutPng{background:url(../images/sharing/pullout.png) left no-repeat}.theChampCommentingTabs li{padding-left:0!important;float:left;margin:0 1em 0 0!important;list-style:none;color:#aaa;display:block;cursor:pointer;font-size:.85em}.theChampCommentingTabs ul{float:left;padding-left:0;margin-left:0}li.theChampSelectedTab{color:#333;border-bottom:2px solid #23a9e1}.fb-comments,.fb-comments span,.fb-comments span iframe[style]{min-width:100%!important;width:100%!important}#mc-input,#user_email,#user_login{height:auto!important}div.the_champ_horizontal_counter li{margin-right:14px!important}div.theChampTotalShareCount{word-wrap:normal!important;font-weight: bolder;font-family: sans-serif;padding: 0;margin: 0;text-align:center}div.theChampTotalShareText{word-wrap:normal!important;margin: 0;padding: 0;text-align: center;}.theChampAIMBackground{background-color: #fff}.theChampAmazonWishListBackground{background-color: #fff}.theChampAOLMailBackground{background-color: #2A2A2A}.theChampAppnetBackground{background-color: #5D5D5D}.theChampBaiduBackground{background-color: #fff}.theChampBalatarinBackground{background-color: #fff}.theChampBibSonomyBackground{background-color: #fff}.theChampBittyBrowserBackground{background-color: #EFEFEF}.theChampBlinklistBackground{background-color: #3D3C3B}.theChampBloggerPostBackground{background-color: #FDA352}.theChampDeliciousBackground{background-color:#53BEEE}.theChampBlogMarksBackground{background-color: #535353}.theChampBookmarksfrBackground{background-color: #E8EAD4}.theChampBoxnetBackground{background-color: #1A74B0}.theChampBuddyMarksBackground{background-color: #fff}.theChampCare2NewsBackground{background-color: #6EB43F}.theChampCiteULikeBackground{background-color: #2781CD}.theChampDiaryRuBackground{background-color: #E8D8C6}.theChampDiasporaBackground{background-color: #2E3436}.theChampDiHITTBackground{background-color: #FF6300}.theChampDiigoBackground{background-color: #4A8BCA}.theChampDZoneBackground{background-color: #fff}.theChampEvernoteBackground{background-color: #8BE056}.theChampFarkBackground{background-color: #555}
2
  .theChampFlipboardBackground{background-color: #CC0000}.theChampFolkdBackground{background-color: #fff}.theChampGoogleBookmarksBackground{background-color: #CB0909}.theChampGoogleGmailBackground{background-color: #E5E5E5}.theChampHackerNewsBackground{background-color: #F60}.theChampHatenaBackground{background-color: #00A6DB}.theChampInstapaperBackground{background-color: #EDEDED}.theChampJamespotBackground{background-color: #FF9E2C}.theChampKakaoBackground{background-color: #FCB700}.theChampKindleItBackground{background-color: #2A2A2A}.theChampKnownBackground{background-color: #FFF}.theChampLineBackground{background-color: #00C300}.theChampLiveJournalBackground{background-color: #EDEDED}.theChampMailRuBackground{background-color: #356FAC}.theChampMendeleyBackground{background-color: #A70805}.theChampMeneameBackground{background-color: #FF7D12}.theChampMixiBackground{background-color: #EDEDED}.theChampMySpaceBackground{background-color: #2A2A2A}.theChampNetlogBackground{background-color: #2A2A2A}.theChampNetvouzBackground{background-color: #fff}.theChampNewsVineBackground{background-color: #055D00}.theChampNUjijBackground{background-color: #D40000}.theChampOdnoklassnikiBackground{background-color: #F2720C}.theChampOknotizieBackground{background-color: #fff}.theChampOutlookcomBackground{background-color: #fff}.theChampPinboardBackground{background-color: #1341DE}.theChampPlurkBackground{background-color: #CF682F}.theChampPocketBackground{background-color: #fff}.theChampPrintFriendlyBackground{background-color: #61D1D5}.theChampProtopageBookmarksBackground{background-color: #413FFF}.theChampPushaBackground{background-color: #0072B8}.theChampQzoneBackground{background-color: #2B82D9}.theChampRediffMyPageBackground{background-color: #D20000}.theChampRenrenBackground{background-color: #005EAC}.theChampSegnaloBackground{background-color: #fff}.theChampSinaWeiboBackground{background-color: #fff}.theChampSiteJotBackground{background-color: #fff}.theChampSlashdotBackground{background-color: #004242}.theChampStumpediaBackground{background-color: #EDEDED}.theChampSvejoBackground{background-color: #FAFAFA}.theChampSymbalooFeedsBackground{background-color: #6DA8F7}.theChampTuentiBackground{background-color: #0075C9}.theChampTwiddlaBackground{background-color: #EDEDED}.theChampTypePadPostBackground{background-color: #2A2A2A}.theChampViadeoBackground{background-color: #2A2A2A}.theChampWaneloBackground{background-color: #fff}.theChampWebnewsBackground{background-color: #CC2512}.theChampWordPressBackground{background-color: #464646}.theChampWykopBackground{background-color: #367DA9}.theChampYahooMailBackground{background-color: #400090}.theChampYahooMessengerBackground{background-color: #400090}.theChampYoolinkBackground{background-color: #A2C538}.theChampYouMobBackground{background-color: #3B599D}i.theChampWhatsappBackground a{display: inline!important}i.theChampLineBackground a{display: inline!important;}.the_champ_sharing_container a{box-shadow:none!important;border:none!important}@media screen and (max-width:783px){#the_champ_sharing_more_providers{width:80%;left:60%;margin-left:-50%;text-shadow:none!important}#the_champ_sharing_more_providers .filter input.search{border:1px solid #ccc;width:92%}}
1
+ @charset "utf-8";#the_champ_error{color:red;margin:7px 0}.the_champ_login_container{margin:2px 0}.the_champ_login_container img,.the_champ_sharing_container img{cursor:pointer;margin:2px;border:none}.the_champ_login_container img{display:none;float:left}#the_champ_loading_image{display:block!important;float:none}.the_champ_error{background-color:#FFFFE0;border:1px solid #E6DB55;padding:5px;margin:10px}#the_champ_sharing_more_providers{position:fixed;top:50%;left:47%;background:#FAFAFA;width:650px;margin:-180px 0 0 -300px;z-index:10000000;text-shadow:none!important;height:308px}#the_champ_popup_bg{background:url(../images/transparent_bg.png);bottom:0;display:block;left:0;position:fixed;right:0;top:0;z-index:10000}#the_champ_sharing_more_providers .title{font-size:14px!important;height:auto!important;background:#58B8F8!important;border-bottom:1px solid #D7D7D7!important;color:#fff;font-weight:700;letter-spacing:inherit;line-height:34px!important;padding:0!important;text-align:center;text-transform:none;margin:0!important;text-shadow:none!important;width:100%}#the_champ_sharing_more_providers *{font-family:Arial,Helvetica,sans-serif}#the_champ_sharing_more_providers #the_champ_sharing_more_content{background:#FAFAFA;border-radius:4px;color:#555;height:100%;width:100%}#the_champ_sharing_more_providers .filter{margin:0;padding:10px 0 0;position:relative;width:100%}#the_champ_sharing_more_providers .all-services{clear:both;height:250px;overflow:auto}#the_champ_sharing_more_content .all-services ul{margin:10px!important;overflow:hidden;list-style:none;padding-left:0!important;position:static!important;width:auto!important}#the_champ_sharing_more_content .all-services ul li{margin:0;background:0 0!important;float:left;width:33.3333%!important;text-align:left!important}#the_champ_sharing_more_providers .close-button img{margin:0;}#the_champ_sharing_more_providers .close-button.separated{background:0 0!important;border:none!important;box-shadow:none!important;width:auto!important;height:auto!important;z-index:1000}#the_champ_sharing_more_providers .close-button{height:auto!important;width:auto!important;left:auto!important;display:block!important;color:#555!important;cursor:pointer!important;font-size:29px!important;line-height:29px!important;margin:0!important;padding:0!important;position:absolute;right:-13px;top:-11px}#the_champ_sharing_more_providers .filter input.search{width:94%;display:block;float:none;font-family:"open sans","helvetica neue",helvetica,arial,sans-serif;font-weight:300;height:auto;line-height:inherit;margin:0 auto;padding:5px 8px 5px 10px;border:1px solid #ccc!important;color:#000;background:#FFF!important;font-size:16px!important;text-align:left!important}#the_champ_sharing_more_providers .footer-panel{background:#fff;border-top:1px solid #D7D7D7;padding:6px 0;width:100%;color:#fff}#the_champ_sharing_more_providers .footer-panel p{background-color:transparent;top:0;text-align:left!important;color:#000;font-family:'helvetica neue',arial,helvetica,sans-serif;font-size:12px;line-height:1.2;margin:0!important;padding:0 6px!important;text-indent:0!important}#the_champ_sharing_more_providers .footer-panel a{color:#fff;text-decoration:none;font-weight:700;text-indent:0!important}#the_champ_sharing_more_providers .all-services ul li a{border-radius:3px;color:#666!important;display:block;font-size:18px;height:auto;line-height:28px;overflow:hidden;padding:8px;text-decoration:none!important;text-overflow:ellipsis;white-space:nowrap;border:none!important;text-indent:0!important;background:0 0!important;text-shadow:none;box-shadow:none!important}.the_champ_share_count{display:block;text-indent:0!important;visibility:hidden;background-color:#58B8F8!important;width:5px;height:auto;text-align:center;min-width:8px!important;padding:1px 4px!important;color:#fff!important;font-family:'Open Sans',arial,sans-serif!important;font-size:10px!important;font-weight:600!important;-webkit-border-radius:15px!important;border-radius:15px!important;-webkit-box-shadow:0 2px 2px rgba(0,0,0,.4);box-shadow:0 2px 2px rgba(0,0,0,.4);text-shadow:0 -1px 0 rgba(0,0,0,.2);line-height:14px!important;border:2px solid #fff!important;z-index:1;margin:2px auto!important;box-sizing:content-box!important}.the_champ_share_count,.the_champ_vertical_counter,.the_champ_vertical_sharing{-webkit-box-sizing:content-box!important;-moz-box-sizing:content-box!important}ul.the_champ_login_ul,ul.the_champ_sharing_ul{list-style:none!important;padding-left:0!important}#the_champ_comment_toggle{margin-bottom:10px}ul.the_champ_login_ul{margin:3px 0!important}ul.the_champ_login_ul li{background:0 0!important;float:left;padding:0!important;margin:0!important;border:0!important;width:auto!important;clear:none!important;list-style-type:none!important}.theChampLoginSvg{width:100%;height:100%}.theChampXingLoginSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAzMCAzMCI+DQo8cGF0aCBkPSJNIDYgOSBoIDUgbCA0IDQgbCAtNSA3IGggLTUgbCA1IC03IHogbSAxNSAtNCBoIDUgbCAtOSAxMyBsIDQgOCBoIC01IGwgLTQgLTggeiIgZmlsbD0iI2ZmZiI+PC9wYXRoPg0KPC9zdmc+) left no-repeat}.theChampGoogleLoginSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAxMDAgMTAwIj48cGF0aCBkPSJNIDUxLjIyODc3NjYwNTc1NzA3IDM4LjE5MDgwNzcwMjE5NzA1IEEgMTcgMTcgMCAxIDAgNTYgNTAuMDAwMDAwMDAwMDAwMDEgaCAtMTciIHN0cm9rZT0iI2ZmZiIgc3Ryb2tlLXdpZHRoPSI4IiBmaWxsPSJub25lIj48L3BhdGg+PHBhdGggZD0iTSA2NSA0OSBoIDE4IG0gLTkgLTkgdiAxOCIgc3Ryb2tlPSIjZmZmIiBzdHJva2Utd2lkdGg9IjUiIGZpbGw9Im5vbmUiPjwvcGF0aD48L3N2Zz4=) left no-repeat}.theChampLinkedinLoginSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAzMCAzMCI+DQo8Y2lyY2xlIGN4PSIxMCIgY3k9IjgiIHI9IjIiIGZpbGw9IndoaXRlIj48L2NpcmNsZT4NCjxwYXRoIGQ9Ik0gMTAgMTEgdiAxMSBtIDUgMCB2IC0xMSBtIDAgMyBxIDYgLTMgNyAwIHYgOCIgc3Ryb2tlLXdpZHRoPSIzIiBzdHJva2U9IiNmZmYiIGZpbGw9Im5vbmUiPjwvcGF0aD4NCjwvc3ZnPg==) left no-repeat}.theChampTwitterLoginSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCA0OCA0OCI+DQo8cGF0aCBkPSJNIDM4IDE5IHEgMiAtMSA0IC01IHEgLTEuNSAyIC00IDIgcSAxLjUgLTEgMy41IC01IHEgLTEuNSAyIC01IDIgYyAtNSAtNSAtMTMgLTIgLTEyIDYgcSAtNyAxIC0xNSAtOCBxIC0yIDQgMSA5IHEgLTEgMCAtMyAtMSBxIDAgNSA1IDcgcSAtMSAuNSAtMyAwIHEgMSA0IDggNiBxIC01IDMgLTExIDMgYyAxNCA4IDMwIDAgMzEuNSAtMTQiIHN0cm9rZS13aWR0aD0iMC4zIiBmaWxsPSIjZmZmIj48L3BhdGg+DQo8L3N2Zz4=) left no-repeat}.theChampVkontakteLoginSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAzMCAzMCI+DQo8cGF0aCBkPSJNIDIuNSA5IGggNC41IGwgNSA3IHYgLTcgaCA0LjUgdiA3IGwgNSAtNyBoIDUgbCAtNSA3IGwgNSA3IGggLTUgbCAtNSAtNyB2IDcgaCAtNC41IHEgLTIgMCAtNSAtNiB6IiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9IiNmZmYiPjwvcGF0aD4NCjwvc3ZnPg==) left no-repeat}.theChampFacebookLoginSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAzMCAzMCI+PHBhdGggc3Ryb2tlPSIjZmZmIiBkPSJNMTQgMjUgdiAtMTMgUSAxMyA2IDIxIDcuNSBNIDEwIDE0IEwgMjAgMTQiIHN0cm9rZS13aWR0aD0iNCIgZmlsbD0ibm9uZSI+PC9wYXRoPjwvc3ZnPg==) left no-repeat}.theChampInstagramLoginSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAzMCAzMCI+DQo8Y2lyY2xlIGN4PSIxNSIgY3k9IjE1IiByPSI2IiBmaWxsPSIjZmZmIj48L2NpcmNsZT4NCjxwYXRoIGQ9Ik0gMiAxNSB2IDEzIGggMjYgdiAtMTMgaCAtNCBjIC0zIDEyIC0xNSAxMiAtMTggMCB6IG0gMiAtMTMgdiA1IG0gMiAtNSB2IDUgbSAyIC01IHYgNCBtIC02IDYgdiAtMTAgaCAyNiB2IDEwIGggLTQgYyAtNCAtOC41IC0xNCAtOC41IC0xOCAwIHoiIHN0cm9rZS13aWR0aD0iMSIgc3Ryb2tlPSIjZmZmIiBmaWxsPSJub25lIj48L3BhdGg+PHJlY3Qgd2lkdGg9IjUiIGhlaWdodD0iNSIgZmlsbD0iI2ZmZiIgeD0iMjMiIHk9IjIiPjwvcmVjdD4NCjwvc3ZnPg==) left no-repeat}.theChampLoginButton{background:url(../images/login/login.png) no-repeat}.theChampLogin{padding:0!important;margin:2px;height:35px;width:35px;float:left;cursor:pointer;border:none}.theChampInstagramLogin,.theChampTwitterLogin,.theChampXingLogin{display:block}.theChampFacebookLogin,.theChampGoogleLogin,.theChampLinkedinLogin,.theChampVkontakteLogin{display:none}.theChampXingButton{background-position:-64px 0;width:32px;height:32px;display:block}.theChampFacebookButton{background-position:0 0;width:32px;height:32px;display:none}.theChampLiveButton{background-position:-32px -96px;width:32px;height:32px;display:block}.theChampGoogleButton{background-position:-32px 0;width:32px;height:32px;display:none}.theChampInstagramButton{background-position:0 -32px;width:32px;height:32px;display:block!important}.theChampLinkedinButton{background-position:-32px -32px;width:32px;height:32px;display:none}.theChampTwitterButton{background-position:0 -64px;width:32px;height:32px;display:block!important}.theChampVkontakteButton{background-position:-32px -64px;width:32px;height:32px;display:none}ul.the_champ_sharing_ul{margin:1px 0!important}#the_champ_sharing_popup_close img{opacity: 1!important;background:0 0!important;border:none!important;outline:0!important;box-shadow:none!important;width:auto!important;height:auto!important;top:inherit!important;right:inherit!important;left:9px!important;padding:0!important}ul.the_champ_sharing_ul li.theChampSharingRound{background:0 0!important}.the_champ_square_count{display:none;text-align:center;font-weight:bolder;font-family:sans-serif;font-style: normal;font-size: .8em;visibility:hidden}ul.the_champ_sharing_ul li{float:left!important;margin:0!important;padding:0!important;list-style:none!important;border:none!important}.theChampSharing{display:block;cursor:pointer;margin:2px}ul.the_champ_login_ul li:before,ul.the_champ_sharing_ul li:before{content:none!important}.theChampSharingDeliciousButton{background-position:0 0;width:32px;height:32px}.theChampSharingDiggButton{background-position:-32px 0;width:32px;height:32px}.theChampSharingEmailButton{background-position:-64px 0;width:32px;height:32px}.theChampSharingXingButton{background-position:0 -128px;width:32px;height:32px}.theChampSharingWhatsappButton{background-position:-32px -128px;width:32px;height:32px}.theChampSharingYummlyButton{background-position:-64px -128px;width:32px;height:32px}.theChampSharingBufferButton{background-position:-96px -128px;width:32px;height:32px}.theChampSharingTotalsharesButton{background-position: -200px -200px}.theChampSharingFacebookButton{background-position:-96px 0;width:32px;height:32px}.theChampSharingFloatitButton{background-position:0 -32px;width:32px;height:32px}.theChampSharingGoogleButton{background-position:-32px -32px;width:32px;height:32px}.theChampSharingLinkedinButton{background-position:-64px -32px;width:32px;height:32px}.theChampSharingMoreButton{background-position:-96px -32px;width:32px;height:32px}.theChampSharingPinterestButton{background-position:0 -64px;width:32px;height:32px}.theChampSharingPrintButton{background-position:-32px -64px;width:32px;height:32px}.theChampSharingRedditButton{background-position:-64px -64px;width:32px;height:32px}.theChampSharingStumbleuponButton{background-position:-96px -64px;width:32px;height:32px}.theChampSharingTumblrButton{background-position:0 -96px;width:32px;height:32px}.theChampSharingTwitterButton{background-position:-32px -96px;width:32px;height:32px}.theChampSharingVkontakteButton{background-position:-64px -96px;width:32px;height:32px}.theChampSharingYahooButton{background-position:-96px -96px;width:32px;height:32px}.the_champ_vertical_counter,.the_champ_vertical_sharing{background:0 0;-webkit-box-shadow:0 1px 4px 1px rgba(0,0,0,.1);-moz-box-shadow:0 1px 4px 1px rgba(0,0,0,.1);box-shadow:0 1px 4px 1px rgba(0,0,0,.1);position:fixed;overflow:visible;z-index:10000000;display:block;padding:10px;border-radius:4px;opacity:1;box-sizing:content-box!important}.the_champ_vertical_counter li{clear:both}li.the_champ_facebook_like .fb-like span,li.the_champ_facebook_recommend .fb-like span{vertical-align:top!important}li.the_champ_facebook_like .fb-like span iframe,li.the_champ_facebook_recommend .fb-like span iframe{max-width:none!important;z-index:1000!important}div.the_champ_horizontal_sharing li{width:auto}div.the_champ_horizontal_sharing li.the_champ_facebook_like{width:110px}div.the_champ_horizontal_sharing li.the_champ_facebook_recommend{width:145px}div.the_champ_horizontal_sharing li.the_champ_twitter_tweet{width:95px}div.the_champ_horizontal_sharing li.the_champ_linkedin_share{width:117px}div.the_champ_horizontal_sharing li.the_champ_google_plusone{width:74px}div.the_champ_horizontal_sharing li.the_champ_buffer{width:81px;}div.the_champ_horizontal_sharing li.the_champ_reddit{width:130px}div.the_champ_horizontal_sharing li.the_champ_yummly{width:81px}div.the_champ_horizontal_sharing li.the_champ_gp_share{width:95px}div.the_champ_horizontal_sharing li.the_champ_pinterest_pin{width:76px}div.the_champ_horizontal_sharing li.the_champ_xing{width:98px}div.the_champ_horizontal_sharing .the_champ_stumbleupon{width:80px}.the_champ_counter_container li{height:21px}input#user_login,input#user_pass{height:auto!important}.theChampHorizontalSharingButton,.theChampVerticalSharingButton{display:block}.theChampDeliciousSquareBackground{background-color:#474749}.theChampInstagramBackground{background-color:#624E47}.theChampYummlyBackground{background-color:#E16120}.theChampBufferBackground{background-color:#000}.theChampFacebookBackground{background-color:#3C589A}.theChampDiggBackground{background-color:#006094}.theChampEmailBackground{background-color:#649A3F}.theChampFloatitBackground{background-color:#53BEEE}.theChampGoogleBackground{background-color:#dd4b39}.theChampGoogleplusBackground{background-color:#dd4b39}.theChampLinkedinBackground{background-color:#2886EF}.theChampMoreBackground{background-color:#EE8E2D}.theChampPinterestBackground{background-color:#CC2329}.theChampPrintBackground{background-color:#FD6500}.theChampRedditBackground{background-color:#247CED}.theChampStumbleuponBackground{background-color:#EA4823}.theChampTumblrBackground{background-color:#29435D}.theChampTwitterBackground{background-color:#55acee}.theChampVkontakteBackground{background-color:#5E84AC}.theChampYahooBackground{background-color:#8F03CC}.theChampXingBackground{background-color:#00797D}.theChampWhatsappBackground{background-color:#55EB4C}.theChampTCBackground,.theChampTCBackground:hover{border-width: 0!important;background-color:transparent;}.theChampTCBackground{background-color:transparent!important;font-style:normal!important;word-wrap:normal;color:#666;line-height:1;visibility:hidden;}.theChampSharingTotalsharesButton{font-style:normal!important;word-wrap:normal;color:#666;line-height:1}.theChampSharingSvg{width:100%;height:100%}.theChampYummlySvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAzMCAzMCI+PHBhdGggc3Ryb2tlPSIjZmZmIiBkPSJNIDEwLjUgMTAgcSA0IC0yIDIuNSAxIGwgLTEgNCBxIDAgMiA1IDAgbCAxIC02LjUgbSAtMSA2LjUgbCAtMSA0IGMgLTMgNiAtNiAtMSAwIC0xIHEgMSAtMSA1IDEiIHN0cm9rZS13aWR0aD0iMiIgZmlsbD0ibm9uZSI+PC9wYXRoPjwvc3ZnPg==) left no-repeat}.theChampBufferSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii00IC00IDM4IDM5Ij48cGF0aCBzdHJva2U9IiNmZmYiIGQ9Ik0gMTUgNiBsIC0xMCA1IGwgMTAgNSBsIDEwIC01IHoiIHN0cm9rZS13aWR0aD0iMCIgZmlsbD0iI2ZmZiI+PC9wYXRoPjxwYXRoIHN0cm9rZT0iI2ZmZiIgZD0iTSA1LjUgMTQuNSBsIDkuNSA1IGwgOS41IC01IG0gLTE5IDQgbCA5LjUgNSBsIDkuNSAtNSIgc3Ryb2tlLXdpZHRoPSIyIiBmaWxsPSJub25lIj48L3BhdGg+PC9zdmc+) left no-repeat}.theChampFacebookSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii01IC01IDQwIDQwIj48cGF0aCBzdHJva2U9IiNmZmYiIGQ9Ik0xNCAyNSB2IC0xMyBRIDEzIDYgMjEgNy41IE0gMTAgMTQgTCAyMCAxNCIgc3Ryb2tlLXdpZHRoPSI0IiBmaWxsPSJub25lIj48L3BhdGg+PC9zdmc+) left no-repeat}.theChampDeliciousSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAzMCAzMCI+DQo8cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTUiIGhlaWdodD0iMTUiIHN0eWxlPSJmaWxsOiNlZWU7IiAvPg0KPHJlY3QgeD0iMTUiIHk9IjAiIHdpZHRoPSIxNSIgaGVpZ2h0PSIxNSIgc3R5bGU9ImZpbGw6IzMxNzNEMDsiIC8+DQo8cmVjdCB4PSIwIiB5PSIxNSIgd2lkdGg9IjE1IiBoZWlnaHQ9IjE1IiBzdHlsZT0iZmlsbDojMDAwOyIgLz4NCjxyZWN0IHg9IjE1IiB5PSIxNSIgd2lkdGg9IjE1IiBoZWlnaHQ9IjE1IiBzdHlsZT0iZmlsbDojQkRCREJEOyIgLz4NCjwvc3ZnPg==) left no-repeat}.theChampDiggSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii01IC01IDQ5IDQ5Ij48cGF0aCBkPSJNIDYgMjAgaCAxMCBjIDAgLTE0IC05IC0xNCAtOSAwIG0gNSAwIHYgNyBtIC0xIDAgdiAtNyBtIDQgLTcgaCA0LjUgdiAtNSBoIDggdiA4IGggLTggdiAtMyBtIDggMCBoIDQgdiA1LjUgaCAtMyB2IDEyIGggLTQgdiAtOCBtIDAgOCBoIC02LjUgdiAtMTIgaCAtMiIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2U9IiNmZmYiIGZpbGw9Im5vbmUiPjwvcGF0aD48ZWxsaXBzZSBjeD0iMTEuNSIgY3k9IjI4LjUiIHJ4PSI0IiByeT0iMiIgc3R5bGU9ImZpbGw6d2hpdGU7Ij48L2VsbGlwc2U+PC9zdmc+) left no-repeat}.theChampEmailSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii00IC00IDQzIDQzIj48cGF0aCBkPSJNIDUuNSAxMSBoIDIzIHYgMSBsIC0xMSA2IGwgLTExIC02IHYgLTEgbSAwIDIgbCAxMSA2IGwgMTEgLTYgdiAxMSBoIC0yMiB2IC0xMSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSIjZmZmIj48L3BhdGg+PC9zdmc+) left no-repeat}.theChampFloatitSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii01IC01IDQwIDQwIj48Y2lyY2xlIGN4PSIxNSIgY3k9IjE1IiByPSIxMCIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIzIiBmaWxsPSJub25lIj48L2NpcmNsZT48Y2lyY2xlIGN4PSIxNSIgY3k9IjE1IiByPSI1IiBzdHJva2U9IndoaXRlIiBzdHJva2Utd2lkdGg9IjMiIGZpbGw9Im5vbmUiPjwvY2lyY2xlPjxwYXRoIGQ9Ik0gNSAxNSBoIDUgTSAxNSA1IHYgNSBNIDI1IDE1IGggLTUgTSAxNSAyNSB2IC01IiBzdHJva2Utd2lkdGg9IjMiIHN0cm9rZT0iI2ZmZiIgZmlsbD0ibm9uZSI+PC9wYXRoPjwvc3ZnPg==) left no-repeat}.theChampGoogleSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAxMDAgMTAwIj48cGF0aCBkPSJNIDUxLjIyODc3NjYwNTc1NzA3IDM4LjE5MDgwNzcwMjE5NzA1IEEgMTcgMTcgMCAxIDAgNTYgNTAuMDAwMDAwMDAwMDAwMDEgaCAtMTciIHN0cm9rZT0iI2ZmZiIgc3Ryb2tlLXdpZHRoPSI4IiBmaWxsPSJub25lIj48L3BhdGg+PHBhdGggZD0iTSA2NSA0OSBoIDE4IG0gLTkgLTkgdiAxOCIgc3Ryb2tlPSIjZmZmIiBzdHJva2Utd2lkdGg9IjUiIGZpbGw9Im5vbmUiPjwvcGF0aD48L3N2Zz4=) left no-repeat}.theChampLinkedinSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii00IC00IDM4IDM4Ij4NCjxjaXJjbGUgY3g9IjEwIiBjeT0iOCIgcj0iMiIgZmlsbD0id2hpdGUiPjwvY2lyY2xlPg0KPHBhdGggZD0iTSAxMCAxMSB2IDExIG0gNSAwIHYgLTExIG0gMCAzIHEgNiAtMyA3IDAgdiA4IiBzdHJva2Utd2lkdGg9IjMiIHN0cm9rZT0iI2ZmZiIgZmlsbD0ibm9uZSI+PC9wYXRoPg0KPC9zdmc+) left no-repeat}.theChampMoreSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii00IC00IDM4IDM4Ij48Y2lyY2xlIGN4PSIxMCIgY3k9IjE1IiByPSIzIiBmaWxsPSJ3aGl0ZSI+PC9jaXJjbGU+PGNpcmNsZSBjeD0iMjAiIGN5PSIxMCIgcj0iMyIgZmlsbD0id2hpdGUiPjwvY2lyY2xlPjxjaXJjbGUgY3g9IjIwIiBjeT0iMjAiIHI9IjMiIGZpbGw9IndoaXRlIj48L2NpcmNsZT48cGF0aCBkPSJNIDEwIDE1IEwgMjAgMTAgbSAwIDEwIEwgMTAgMTUiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlPSIjZmZmIj48L3BhdGg+PC9zdmc+) left no-repeat}.theChampPinterestSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii02LjUgLTUgNDIgNDIiPjxwYXRoIGQ9Ik0gNiAyMCBjIC0zIC00IC0yIC0xMCAzIC0xMy41IGMgNCAtMyAxMSAtMyAxNSAzIGMgMyA1IDIgMTMgLTYgMTUgcSAtNCAxIC02IC0zIGwgLTIgNiBsIC0xLjIgMiBsIC0wLjggLTIgbCAyLjUgLTExIGMgLTIgLTQgMSAtOCA0IC02IHEgMCA1IC0xLjQgOC41IGMgMyA4IDEwIDAgOS41IC00IGMgMCAtOSAtMTEgLTExIC0xNC41IC00IGMgMCAwIC0zIDUgMCA4IGwgLTEgMiB6IiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9IiNmZmYiPjwvcGF0aD48L3N2Zz4=) left no-repeat}.theChampPrintSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii00IC02IDM4IDM4Ij48cGF0aCBzdHJva2U9IiNmZmYiIGQ9Ik0gNyAxMCBoIDIgdiAzIGggMTIgdiAtMyBoIDIgdiA3IGggLTIgdiAtMyBoIC0xMiB2IDMgaCAtMiB6IiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9IiNmZmYiPjwvcGF0aD48cmVjdCBzdHJva2U9IiNmZmYiIHN0cm9rZS13aWR0aD0iMS44IiBoZWlnaHQ9IjciIHdpZHRoPSIxMCIgeD0iMTAiIHk9IjUiIGZpbGw9Im5vbmUiPjwvcmVjdD48cmVjdCBzdHJva2U9IiNmZmYiIHN0cm9rZS13aWR0aD0iMSIgaGVpZ2h0PSI1IiB3aWR0aD0iOCIgeD0iMTEiIHk9IjE2IiBmaWxsPSIjZmZmIj48L3JlY3Q+PC9zdmc+) left no-repeat}.theChampRedditSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii02IC02IDQyIDQyIj48ZWxsaXBzZSBjeD0iMTUiIGN5PSIxOSIgcng9IjkiIHJ5PSI3IiBzdHlsZT0ic3Ryb2tlOndoaXRlO3N0cm9rZS13aWR0aDoyIiBmaWxsPSJub25lIj48L2VsbGlwc2U+PGNpcmNsZSBjeD0iMTEiIGN5PSIxNyIgcj0iMiIgZmlsbD0id2hpdGUiPjwvY2lyY2xlPjxjaXJjbGUgY3g9IjE5IiBjeT0iMTciIHI9IjIiIGZpbGw9IndoaXRlIj48L2NpcmNsZT48Y2lyY2xlIGN4PSIyMiIgY3k9IjciIHI9IjIiIGZpbGw9IndoaXRlIj48L2NpcmNsZT48Y2lyY2xlIGN4PSI3IiBjeT0iMTQiIHI9IjIiIGZpbGw9IndoaXRlIj48L2NpcmNsZT48Y2lyY2xlIGN4PSIyMyIgY3k9IjE0IiByPSIyIiBmaWxsPSJ3aGl0ZSI+PC9jaXJjbGU+PHBhdGggZD0iTSAxMCAyMiBxIDUgMyAxMCAwIE0gMTUgMTIgbCAxIC02IGwgNiAxIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZT0iI2ZmZiIgZmlsbD0ibm9uZSI+PC9wYXRoPjwvc3ZnPg==) left no-repeat}.theChampStumbleuponSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii01IC01IDQwIDQwIj48cGF0aCBkPSJNIDYuNiAxNSB2IDEgYyAtMSA3IDYuNSA3IDUuNSAwIHYgLTQgYyAtMSAtNyA2IC03IDYgLTIgdiAyLjUgbSAwIDIuNSB2IDEgYyAtMSA3IDYuNSA3IDUuNSAwIHYgLTEiIHN0cm9rZS13aWR0aD0iMy41IiBzdHJva2U9IiNmZmYiIGZpbGw9Im5vbmUiPjwvcGF0aD48L3N2Zz4=) left no-repeat}.theChampTumblrSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii00IC00IDM4IDM4Ij48cGF0aCBkPSJNIDE0IDcgdiAxNCBxIDMgMiA2IDAgTSAxNCA3LjUgcSAwIDUuNSAtNCA1LjUgaCA5IiBzdHJva2Utd2lkdGg9IjMiIHN0cm9rZT0iI2ZmZiIgZmlsbD0ibm9uZSI+PC9wYXRoPjwvc3ZnPg==) left no-repeat}.theChampTwitterSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii04IC04IDY0IDY0Ij4NCjxwYXRoIGQ9Ik0gMzggMTkgcSAyIC0xIDQgLTUgcSAtMS41IDIgLTQgMiBxIDEuNSAtMSAzLjUgLTUgcSAtMS41IDIgLTUgMiBjIC01IC01IC0xMyAtMiAtMTIgNiBxIC03IDEgLTE1IC04IHEgLTIgNCAxIDkgcSAtMSAwIC0zIC0xIHEgMCA1IDUgNyBxIC0xIC41IC0zIDAgcSAxIDQgOCA2IHEgLTUgMyAtMTEgMyBjIDE0IDggMzAgMCAzMS41IC0xNCIgc3Ryb2tlLXdpZHRoPSIwLjMiIGZpbGw9IiNmZmYiPjwvcGF0aD4NCjwvc3ZnPg==) left no-repeat}.theChampVkontakteSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii01IC01IDQwIDQwIj4NCjxwYXRoIGQ9Ik0gMi41IDkgaCA0LjUgbCA1IDcgdiAtNyBoIDQuNSB2IDcgbCA1IC03IGggNSBsIC01IDcgbCA1IDcgaCAtNSBsIC01IC03IHYgNyBoIC00LjUgcSAtMiAwIC01IC02IHoiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0iI2ZmZiI+PC9wYXRoPg0KPC9zdmc+) left no-repeat}.theChampYahooSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii00IC00IDM4IDM4Ij48cGF0aCBkPSJNIDggMTAgbCA3IDcgbCA1IC01IG0gLTQuNyA1IHYgMyBoIC0wLjUgdiAtMyBtIDggLTQgdiA1IG0gMCAxIHYgMSIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2U9IiNmZmYiIGZpbGw9Im5vbmUiPjwvcGF0aD48cGF0aCBkPSJNIDYgMTAgaCA2IG0gNSAyIGggNiBtIC0xMSA5LjUgaCA2IiBzdHJva2Utd2lkdGg9IjEuNCIgc3Ryb2tlPSIjZmZmIiBmaWxsPSJub25lIj48L3BhdGg+PC9zdmc+) left no-repeat}.theChampXingSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii02IC02IDQyIDQyIj4NCjxwYXRoIGQ9Ik0gNiA5IGggNSBsIDQgNCBsIC01IDcgaCAtNSBsIDUgLTcgeiBtIDE1IC00IGggNSBsIC05IDEzIGwgNCA4IGggLTUgbCAtNCAtOCB6IiBmaWxsPSIjZmZmIj48L3BhdGg+DQo8L3N2Zz4=) left no-repeat}.theChampWhatsappSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii01IC01IDQwIDQwIj48cGF0aCBpZD0iYXJjMSIgc3Ryb2tlPSIjZmZmIiBzdHJva2Utd2lkdGg9IjIiIGZpbGw9Im5vbmUiIGQ9Ik0gMTEuNTc5Nzk4NTY2NzQzMzE0IDI0LjM5NjkyNjIwNzg1OTA4NSBBIDEwIDEwIDAgMSAwIDYuODA4NDc5NTU3MTEwMDc5IDIwLjczNTc2NDM2MzUxMDQ2Ij48L3BhdGg+PHBhdGggZD0iTSA3IDE5IGwgLTEgNiBsIDYgLTEiIHN0cm9rZT0iI2ZmZiIgc3Ryb2tlLXdpZHRoPSIyIiBmaWxsPSJub25lIj48L3BhdGg+PHBhdGggZD0iTSAxMCAxMCBxIC0xIDggOCAxMSBjIDUgLTEgMCAtNiAtMSAtMyBxIC00IC0zIC01IC01IGMgNCAtMiAtMSAtNSAtMSAtNCIgZmlsbD0iI2ZmZiI+PC9wYXRoPjwvc3ZnPg==) left no-repeat}.theChampSharing{float:left;border:none}.theChampSharingArrow{background-color:#000!important;height:16px;width:16px;cursor:pointer;margin-top:10px}.theChampPushIn{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAzMCAzMCI+DQo8cGF0aCBkPSJNIDcgNiBxIDIgNiAxMCA2IHYgLTYgbCA2IDkgbCAtNiA5IHYgLTYgcSAtMTAgMiAtMTAgLTEyIiBzdHJva2Utd2lkdGg9IjEiIHN0cm9rZT0iI2ZmZiIgZmlsbD0id2hpdGUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjwvc3ZnPg==) left no-repeat}.theChampPullOut{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAzMCAzMCI+DQo8cGF0aCBkPSJNIDIzIDYgcSAtMiA2IC0xMCA2IHYgLTYgbCAtNiA5IGwgNiA5IHYgLTYgcSAxMCAyIDEwIC0xMiIgc3Ryb2tlLXdpZHRoPSIxIiBzdHJva2U9IiNmZmYiIGZpbGw9IndoaXRlIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48L3N2Zz4=) left no-repeat}.theChampCommentingTabs li{padding-left:0!important;float:left;margin:0 1em 0 0!important;list-style:none;color:#aaa;display:block;cursor:pointer;font-size:.85em}.theChampCommentingTabs ul{float:left;padding-left:0;margin-left:0}li.theChampSelectedTab{color:#333;border-bottom:2px solid #23a9e1}.fb-comments,.fb-comments span,.fb-comments span iframe[style]{min-width:100%!important;width:100%!important}#mc-input,#user_email,#user_login{height:auto!important}div.the_champ_horizontal_counter li{margin-right:14px!important}div.theChampTotalShareCount{word-wrap:normal!important;font-weight: bolder;font-family: sans-serif;padding: 0;margin: 0;text-align:center}div.theChampTotalShareText{word-wrap:normal!important;margin: 0;padding: 0;text-align: center;}.theChampAIMBackground{background-color: #fff}.theChampAmazonWishListBackground{background-color: #fff}.theChampAOLMailBackground{background-color: #2A2A2A}.theChampAppnetBackground{background-color: #5D5D5D}.theChampBaiduBackground{background-color: #fff}.theChampBalatarinBackground{background-color: #fff}.theChampBibSonomyBackground{background-color: #fff}.theChampBittyBrowserBackground{background-color: #EFEFEF}.theChampBlinklistBackground{background-color: #3D3C3B}.theChampBloggerPostBackground{background-color: #FDA352}.theChampDeliciousBackground{background-color:#53BEEE}.theChampBlogMarksBackground{background-color: #535353}.theChampBookmarksfrBackground{background-color: #E8EAD4}.theChampBoxnetBackground{background-color: #1A74B0}.theChampBuddyMarksBackground{background-color: #fff}.theChampCare2NewsBackground{background-color: #6EB43F}.theChampCiteULikeBackground{background-color: #2781CD}.theChampDiaryRuBackground{background-color: #E8D8C6}.theChampDiasporaBackground{background-color: #2E3436}.theChampDiHITTBackground{background-color: #FF6300}.theChampDiigoBackground{background-color: #4A8BCA}.theChampDZoneBackground{background-color: #fff}.theChampEvernoteBackground{background-color: #8BE056}.theChampFarkBackground{background-color: #555}
2
  .theChampFlipboardBackground{background-color: #CC0000}.theChampFolkdBackground{background-color: #fff}.theChampGoogleBookmarksBackground{background-color: #CB0909}.theChampGoogleGmailBackground{background-color: #E5E5E5}.theChampHackerNewsBackground{background-color: #F60}.theChampHatenaBackground{background-color: #00A6DB}.theChampInstapaperBackground{background-color: #EDEDED}.theChampJamespotBackground{background-color: #FF9E2C}.theChampKakaoBackground{background-color: #FCB700}.theChampKindleItBackground{background-color: #2A2A2A}.theChampKnownBackground{background-color: #FFF}.theChampLineBackground{background-color: #00C300}.theChampLiveJournalBackground{background-color: #EDEDED}.theChampMailRuBackground{background-color: #356FAC}.theChampMendeleyBackground{background-color: #A70805}.theChampMeneameBackground{background-color: #FF7D12}.theChampMixiBackground{background-color: #EDEDED}.theChampMySpaceBackground{background-color: #2A2A2A}.theChampNetlogBackground{background-color: #2A2A2A}.theChampNetvouzBackground{background-color: #fff}.theChampNewsVineBackground{background-color: #055D00}.theChampNUjijBackground{background-color: #D40000}.theChampOdnoklassnikiBackground{background-color: #F2720C}.theChampOknotizieBackground{background-color: #fff}.theChampOutlookcomBackground{background-color: #fff}.theChampPinboardBackground{background-color: #1341DE}.theChampPlurkBackground{background-color: #CF682F}.theChampPocketBackground{background-color: #fff}.theChampPrintFriendlyBackground{background-color: #61D1D5}.theChampProtopageBookmarksBackground{background-color: #413FFF}.theChampPushaBackground{background-color: #0072B8}.theChampQzoneBackground{background-color: #2B82D9}.theChampRediffMyPageBackground{background-color: #D20000}.theChampRenrenBackground{background-color: #005EAC}.theChampSegnaloBackground{background-color: #fff}.theChampSinaWeiboBackground{background-color: #fff}.theChampSiteJotBackground{background-color: #fff}.theChampSlashdotBackground{background-color: #004242}.theChampStumpediaBackground{background-color: #EDEDED}.theChampSvejoBackground{background-color: #FAFAFA}.theChampSymbalooFeedsBackground{background-color: #6DA8F7}.theChampTuentiBackground{background-color: #0075C9}.theChampTwiddlaBackground{background-color: #EDEDED}.theChampTypePadPostBackground{background-color: #2A2A2A}.theChampViadeoBackground{background-color: #2A2A2A}.theChampWaneloBackground{background-color: #fff}.theChampWebnewsBackground{background-color: #CC2512}.theChampWordPressBackground{background-color: #464646}.theChampWykopBackground{background-color: #367DA9}.theChampYahooMailBackground{background-color: #400090}.theChampYahooMessengerBackground{background-color: #400090}.theChampYoolinkBackground{background-color: #A2C538}.theChampYouMobBackground{background-color: #3B599D}i.theChampWhatsappBackground a{display: inline!important}i.theChampLineBackground a{display: inline!important;}.the_champ_sharing_container a{box-shadow:none!important;border:none!important}@media screen and (max-width:783px){#the_champ_sharing_more_providers{width:80%;left:60%;margin-left:-50%;text-shadow:none!important}#the_champ_sharing_more_providers .filter input.search{border:1px solid #ccc;width:92%}}
helper.php CHANGED
@@ -842,7 +842,8 @@ function the_champ_sanitize_user($username, $rawUsername, $strict) {
842
  $username = preg_replace('/&.+?;/', '', $username);
843
  // If strict, reduce to ASCII and Cyrillic characters for max portability.
844
  if($strict){
845
- $username = preg_replace( '|[^a-zа-я0-9 _.\-@]|iu', '', $username );
 
846
  }
847
  $username = trim($username);
848
  // Consolidate contiguous whitespace
@@ -904,4 +905,14 @@ function the_champ_clear_shorturl_cache(){
904
  $wpdb->query("DELETE FROM $wpdb->postmeta WHERE meta_key = '_the_champ_ss_bitly_url'");
905
  die;
906
  }
907
- add_action('wp_ajax_the_champ_clear_shorturl_cache', 'the_champ_clear_shorturl_cache');
 
 
 
 
 
 
 
 
 
 
842
  $username = preg_replace('/&.+?;/', '', $username);
843
  // If strict, reduce to ASCII and Cyrillic characters for max portability.
844
  if($strict){
845
+ $settings = get_option('wscu_settings');
846
+ $username = preg_replace('|[^a-z\p{Arabic}\p{Cyrillic}0-9 _.\-@]|iu', '', $username);
847
  }
848
  $username = trim($username);
849
  // Consolidate contiguous whitespace
905
  $wpdb->query("DELETE FROM $wpdb->postmeta WHERE meta_key = '_the_champ_ss_bitly_url'");
906
  die;
907
  }
908
+ add_action('wp_ajax_the_champ_clear_shorturl_cache', 'the_champ_clear_shorturl_cache');
909
+
910
+ /**
911
+ * Clear share counts cache
912
+ */
913
+ function heateor_ss_clear_share_count_cache() {
914
+ global $wpdb;
915
+ $wpdb->query( "DELETE FROM $wpdb->options WHERE option_name LIKE '_transient_heateor_ss_share_count_%'" );
916
+ die;
917
+ }
918
+ add_action('wp_ajax_heateor_ss_clear_share_count_cache', 'heateor_ss_clear_share_count_cache');
inc/shortcode.php CHANGED
@@ -64,14 +64,14 @@ function the_champ_sharing_shortcode($params){
64
  if( $type == 'horizontal' && $title != '' ) {
65
  $html .= '<div style="font-weight:bold">' . ucfirst( $title ) . '</div>';
66
  }
67
- $html .= the_champ_prepare_sharing_html($shortUrl == '' ? $targetUrl : $shortUrl, $type, $count, $total_shares == 'ON' ? 1 : 0);
68
  $html .= '</div>';
69
  if($count || $total_shares == 'ON'){
70
  $html .= '<script>theChampLoadEvent(
71
  function(){
72
  // sharing counts
73
  theChampCallAjax(function(){
74
- theChampGetSharingCounts('. ($type == 'horizontal' ? 1 : 0) .', '. ($type == 'vertical' ? 1 : 0) .');
75
  });
76
  }
77
  );</script>';
64
  if( $type == 'horizontal' && $title != '' ) {
65
  $html .= '<div style="font-weight:bold">' . ucfirst( $title ) . '</div>';
66
  }
67
+ $html .= the_champ_prepare_sharing_html($shortUrl == '' ? $targetUrl : $shortUrl, $type, $count, $total_shares == 'ON' ? 1 : 0, '');
68
  $html .= '</div>';
69
  if($count || $total_shares == 'ON'){
70
  $html .= '<script>theChampLoadEvent(
71
  function(){
72
  // sharing counts
73
  theChampCallAjax(function(){
74
+ theChampGetSharingCounts();
75
  });
76
  }
77
  );</script>';
inc/social_sharing.php CHANGED
@@ -4,15 +4,15 @@ defined('ABSPATH') or die("Cheating........Uh!!");
4
  * File contains the functions necessary for Social Sharing functionality
5
  */
6
 
7
- function the_champ_prepare_sharing_html( $postUrl, $sharingType = 'horizontal', $displayCount, $totalShares ) {
 
 
 
8
 
9
  global $post, $theChampSharingOptions;
10
 
11
  if ( $sharingType == 'vertical' && ( is_front_page() || is_home() ) ) {
12
- $postTitle = wp_title( '', false );
13
- if ( $postTitle == '' ) {
14
- $postTitle = get_bloginfo( 'name' ) . " - " . get_bloginfo( 'description' );
15
- }
16
  } else {
17
  $postTitle = $post->post_title;
18
  }
@@ -36,7 +36,8 @@ function the_champ_prepare_sharing_html( $postUrl, $sharingType = 'horizontal',
36
  $sharingNetworks = fetch_sharing_networks();
37
 
38
  $html = '<ul ' . ( $sharingType == 'horizontal' && $theChampSharingOptions['hor_sharing_alignment'] == "center" ? "style='list-style: none;position: relative;left: 50%;'" : "" ) .' class="the_champ_sharing_ul">';
39
- $style = 'style="width:' . ( $theChampSharingOptions[$sharingType . '_sharing_shape'] != 'rectangle' ? $theChampSharingOptions[$sharingType . '_sharing_size'] : $theChampSharingOptions[$sharingType . '_sharing_width'] ) . 'px;height:' . ( $theChampSharingOptions[$sharingType . '_sharing_shape'] != 'rectangle' ? $theChampSharingOptions[$sharingType . '_sharing_size'] : $theChampSharingOptions[$sharingType . '_sharing_height'] ) . 'px;';
 
40
  $counterContainerInitHtml = '<ss class="the_champ_square_count';
41
  $counterContainerEndHtml = '</ss>';
42
  $innerStyle = 'display:block;';
@@ -59,8 +60,16 @@ function the_champ_prepare_sharing_html( $postUrl, $sharingType = 'horizontal',
59
  $likeButtonCountContainer = $counterContainerInitHtml . '">&nbsp;' . $counterContainerEndHtml;
60
  }
61
 
 
 
 
 
 
 
 
62
  $counterPlaceholder = '';
63
  $counterPlaceholderValue = '';
 
64
 
65
  if ( $displayCount ) {
66
  if ( ! isset( $theChampSharingOptions[$sharingType . '_counter_position'] ) ) {
@@ -70,19 +79,34 @@ function the_champ_prepare_sharing_html( $postUrl, $sharingType = 'horizontal',
70
  }
71
  switch ( $counterPosition ) {
72
  case 'left':
 
 
 
73
  case 'top':
74
  $counterPlaceholder = '><i';
75
  break;
76
  case 'right':
 
 
 
77
  case 'bottom':
 
78
  $counterPlaceholder = 'i><';
79
  break;
80
  case 'inner_left':
 
 
 
81
  case 'inner_top':
 
82
  $counterPlaceholder = '><ss';
83
  break;
84
  case 'inner_right':
 
 
 
85
  case 'inner_bottom':
 
86
  $counterPlaceholder = 'ss><';
87
  break;
88
  default:
@@ -91,8 +115,13 @@ function the_champ_prepare_sharing_html( $postUrl, $sharingType = 'horizontal',
91
  }
92
 
93
  $twitterUsername = $theChampSharingOptions['twitter_username'] != '' ? $theChampSharingOptions['twitter_username'] : '';
 
94
 
 
95
  foreach ( $theChampSharingOptions[$sharingType.'_re_providers'] as $provider ) {
 
 
 
96
  $liItems .= str_replace(
97
  array(
98
  '%padding%',
@@ -125,9 +154,9 @@ function the_champ_prepare_sharing_html( $postUrl, $sharingType = 'horizontal',
125
  $language,
126
  $theChampSharingOptions['buffer_username'] != '' ? $theChampSharingOptions['buffer_username'] : '',
127
  $style,
128
- $innerStyle,
129
  $liClass,
130
- str_replace( '%network%', $provider, isset( $sharingMeta[$provider . '_' . $sharingType . '_count'] ) && $sharingMeta[$provider . '_' . $sharingType . '_count'] != '' ? str_replace( '>&nbsp;', ' ss_st_count="' . $sharingMeta[$provider . '_' . $sharingType . '_count'] . '">&nbsp;', $counterPlaceholderValue ) : $counterPlaceholderValue ),
131
  ucfirst( str_replace( '_', ' ', $provider ) )
132
  ),
133
  $sharingNetworks[$provider]
@@ -153,9 +182,9 @@ function the_champ_prepare_sharing_html( $postUrl, $sharingType = 'horizontal',
153
  } else {
154
  $addStyle = ';margin-bottom:9px !important;';
155
  }
156
- $addStyle .= '"';
157
  $style = str_replace( ';"', $addStyle, $style );
158
- $totalSharesHtml .= '<i ' . $style . ' title="Total Shares" alt="Total Shares" class="theChampSharing theChampTCBackground"></i></li>';
159
  }
160
 
161
  if ( $sharingType == 'vertical' ) {
@@ -169,6 +198,32 @@ function the_champ_prepare_sharing_html( $postUrl, $sharingType = 'horizontal',
169
  return $html;
170
  }
171
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
172
  /**
173
  * Render counter interface html.
174
  */
@@ -487,7 +542,8 @@ function the_champ_render_sharing($content){
487
  }
488
  }
489
 
490
- $sharingDiv = the_champ_prepare_sharing_html($sharingUrl, 'horizontal', isset($theChampSharingOptions['horizontal_counts']), isset($theChampSharingOptions['horizontal_total_shares']));
 
491
  $sharingContainerStyle = '';
492
  $sharingTitleStyle = 'style="font-weight:bold"';
493
  if(isset($theChampSharingOptions['hor_sharing_alignment'])){
@@ -498,7 +554,7 @@ function the_champ_render_sharing($content){
498
  $sharingTitleStyle = 'style="font-weight: bold;list-style: none;position: relative;left: 50%;"';
499
  }
500
  }
501
- $horizontalDiv = "<div style='clear: both'></div><div ". $sharingContainerStyle ." class='the_champ_sharing_container the_champ_horizontal_sharing' super-socializer-data-href='".$postUrl."'><div class='the_champ_sharing_title' ". $sharingTitleStyle ." >".ucfirst($theChampSharingOptions['title'])."</div>".$sharingDiv."</div><div style='clear: both'></div>";
502
  if($sharingBpActivity){
503
  echo $horizontalDiv;
504
  }
@@ -563,9 +619,10 @@ function the_champ_render_sharing($content){
563
  }
564
  }
565
 
566
- $sharingDiv = the_champ_prepare_sharing_html($sharingUrl, 'vertical', isset($theChampSharingOptions['vertical_counts']), isset($theChampSharingOptions['vertical_total_shares']));
 
567
  $offset = (isset($theChampSharingOptions['alignment']) && $theChampSharingOptions['alignment'] != '' && isset($theChampSharingOptions[$theChampSharingOptions['alignment'].'_offset']) && $theChampSharingOptions[$theChampSharingOptions['alignment'].'_offset'] != '' ? $theChampSharingOptions['alignment'].': '.$theChampSharingOptions[$theChampSharingOptions['alignment'].'_offset'].'px;' : '').(isset($theChampSharingOptions['top_offset']) && $theChampSharingOptions['top_offset'] != '' ? 'top: '.$theChampSharingOptions['top_offset'].'px;' : '');
568
- $verticalDiv = "<div class='the_champ_sharing_container the_champ_vertical_sharing" . ( isset( $theChampSharingOptions['hide_mobile_sharing'] ) ? ' the_champ_hide_sharing' : '' ) . ( isset( $theChampSharingOptions['bottom_mobile_sharing'] ) ? ' the_champ_bottom_sharing' : '' ) . "' style='width:" . ($theChampSharingOptions['vertical_sharing_size'] + 4) . "px;" . $offset . (isset($theChampSharingOptions['vertical_bg']) && $theChampSharingOptions['vertical_bg'] != '' ? 'background-color: '.$theChampSharingOptions['vertical_bg'] : '-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;') . "' super-socializer-data-href='".$postUrl."'>".$sharingDiv."</div>";
569
  // show vertical sharing
570
  if((isset( $theChampSharingOptions['vertical_home']) && is_front_page()) || (isset( $theChampSharingOptions['vertical_category']) && is_category()) || (isset( $theChampSharingOptions['vertical_archive']) && is_archive()) || ( isset( $theChampSharingOptions['vertical_post'] ) && is_single() && isset($post -> post_type) && $post -> post_type == 'post' ) || ( isset( $theChampSharingOptions['vertical_page'] ) && is_page() && isset($post -> post_type) && $post -> post_type == 'page' ) || ( isset( $theChampSharingOptions['vertical_excerpt'] ) && is_front_page() && current_filter() == 'get_the_excerpt' ) || ( isset( $theChampSharingOptions['vertical_bb_forum'] ) && current_filter() == 'bbp_template_before_single_forum') || ( isset( $theChampSharingOptions['vertical_bb_topic'] ) && in_array(current_filter(), array('bbp_template_before_single_topic', 'bbp_template_before_lead_topic'))) || (current_filter() == 'bp_before_group_header' && isset($theChampSharingOptions['vertical_bp_group']))) {
571
  if( in_array( current_filter(), array('bbp_template_before_single_topic', 'bbp_template_before_lead_topic', 'bbp_template_before_single_forum', 'bp_before_group_header') ) ){
@@ -591,9 +648,9 @@ function the_champ_render_sharing($content){
591
  $sharingUrl = $shortUrl;
592
  }
593
  }
594
-
595
- $sharingDiv = the_champ_prepare_sharing_html($sharingUrl, 'vertical', isset($theChampSharingOptions['vertical_counts']), isset($theChampSharingOptions['vertical_total_shares']));
596
- $verticalDiv = "<div class='the_champ_sharing_container the_champ_vertical_sharing" . ( isset( $theChampSharingOptions['hide_mobile_sharing'] ) ? ' the_champ_hide_sharing' : '' ) . ( isset( $theChampSharingOptions['bottom_mobile_sharing'] ) ? ' the_champ_bottom_sharing' : '' ) . "' style='width:" . ($theChampSharingOptions['vertical_sharing_size'] + 4) . "px;" . $offset . (isset($theChampSharingOptions['vertical_bg']) && $theChampSharingOptions['vertical_bg'] != '' ? 'background-color: '.$theChampSharingOptions['vertical_bg'] : '-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;') . "' super-socializer-data-href='".$postUrl."'>".$sharingDiv."</div>";
597
  }
598
  $content = $content.$verticalDiv;
599
  $$var++;
@@ -662,7 +719,7 @@ function the_champ_sharing_count(){
662
  $tweetCountService = 'newsharecounts';
663
  if ( isset( $theChampSharingOptions['tweet_count_service'] ) ) {
664
  $tweetCountService = $theChampSharingOptions['tweet_count_service'];
665
- } elseif ( isset( $this->options['vertical_tweet_count_service'] ) ) {
666
  $tweetCountService = $theChampSharingOptions['vertical_tweet_count_service'];
667
  }
668
 
@@ -673,7 +730,33 @@ function the_champ_sharing_count(){
673
  }
674
 
675
  $responseData = array();
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
676
  foreach($targetUrls as $targetUrl){
 
677
  foreach($sharingNetworks as $provider){
678
  switch($provider){
679
  case 'facebook':
@@ -723,6 +806,7 @@ function the_champ_sharing_count(){
723
  case 'facebook':
724
  if(!empty($body[0] -> total_count)){
725
  $responseData[$targetUrl]['facebook'] = $body[0] -> total_count;
 
726
  }else{
727
  $responseData[$targetUrl]['facebook'] = 0;
728
  }
@@ -730,6 +814,7 @@ function the_champ_sharing_count(){
730
  case 'twitter':
731
  if ( ! empty( $body -> count ) ) {
732
  $responseData[$targetUrl]['twitter'] = $body -> count;
 
733
  } else {
734
  $responseData[$targetUrl]['twitter'] = 0;
735
  }
@@ -737,6 +822,7 @@ function the_champ_sharing_count(){
737
  case 'linkedin':
738
  if(!empty($body -> count)){
739
  $responseData[$targetUrl]['linkedin'] = $body -> count;
 
740
  }else{
741
  $responseData[$targetUrl]['linkedin'] = 0;
742
  }
@@ -747,12 +833,14 @@ function the_champ_sharing_count(){
747
  $children = $body -> data -> children;
748
  if(!empty($children[0] -> data -> score)){
749
  $responseData[$targetUrl]['reddit'] = $children[0] -> data -> score;
 
750
  }
751
  }
752
  break;
753
  case 'delicious':
754
  if(!empty($body[0] -> total_posts)){
755
  $responseData[$targetUrl]['delicious'] = $body[0] -> total_posts;
 
756
  }else{
757
  $responseData[$targetUrl]['delicious'] = 0;
758
  }
@@ -760,6 +848,7 @@ function the_champ_sharing_count(){
760
  case 'pinterest':
761
  if(!empty($body -> count)){
762
  $responseData[$targetUrl]['pinterest'] = $body -> count;
 
763
  }else{
764
  $responseData[$targetUrl]['pinterest'] = 0;
765
  }
@@ -767,6 +856,7 @@ function the_champ_sharing_count(){
767
  case 'buffer':
768
  if(!empty($body -> shares)){
769
  $responseData[$targetUrl]['buffer'] = $body -> shares;
 
770
  }else{
771
  $responseData[$targetUrl]['buffer'] = 0;
772
  }
@@ -774,6 +864,7 @@ function the_champ_sharing_count(){
774
  case 'stumbleupon':
775
  if(!empty($body -> result) && isset( $body -> result -> views )){
776
  $responseData[$targetUrl]['stumbleupon'] = $body -> result -> views;
 
777
  }else{
778
  $responseData[$targetUrl]['stumbleupon'] = 0;
779
  }
@@ -781,6 +872,7 @@ function the_champ_sharing_count(){
781
  case 'google_plus':
782
  if(!empty($body)){
783
  $responseData[$targetUrl]['google_plus'] = $body;
 
784
  }else{
785
  $responseData[$targetUrl]['google_plus'] = 0;
786
  }
@@ -788,6 +880,7 @@ function the_champ_sharing_count(){
788
  case 'vkontakte':
789
  if(!empty($body)){
790
  $responseData[$targetUrl]['vkontakte'] = $body;
 
791
  }else{
792
  $responseData[$targetUrl]['vkontakte'] = 0;
793
  }
@@ -795,9 +888,24 @@ function the_champ_sharing_count(){
795
  }
796
  }
797
  }
 
798
  }
 
799
  the_champ_ajax_response(array('status' => 1, 'message' => $responseData));
800
  }
801
 
802
  add_action('wp_ajax_the_champ_sharing_count', 'the_champ_sharing_count');
803
- add_action('wp_ajax_nopriv_the_champ_sharing_count', 'the_champ_sharing_count');
 
 
 
 
 
 
 
 
 
 
 
 
 
4
  * File contains the functions necessary for Social Sharing functionality
5
  */
6
 
7
+ /**
8
+ * Render sharing interface html.
9
+ */
10
+ function the_champ_prepare_sharing_html( $postUrl, $sharingType = 'horizontal', $displayCount, $totalShares, $shareCountTransientId ) {
11
 
12
  global $post, $theChampSharingOptions;
13
 
14
  if ( $sharingType == 'vertical' && ( is_front_page() || is_home() ) ) {
15
+ $postTitle = get_bloginfo( 'name' ) . " - " . get_bloginfo( 'description' );
 
 
 
16
  } else {
17
  $postTitle = $post->post_title;
18
  }
36
  $sharingNetworks = fetch_sharing_networks();
37
 
38
  $html = '<ul ' . ( $sharingType == 'horizontal' && $theChampSharingOptions['hor_sharing_alignment'] == "center" ? "style='list-style: none;position: relative;left: 50%;'" : "" ) .' class="the_champ_sharing_ul">';
39
+ $iconHeight = $theChampSharingOptions[$sharingType . '_sharing_shape'] != 'rectangle' ? $theChampSharingOptions[$sharingType . '_sharing_size'] : $theChampSharingOptions[$sharingType . '_sharing_height'];
40
+ $style = 'style="width:' . ( $theChampSharingOptions[$sharingType . '_sharing_shape'] != 'rectangle' ? $theChampSharingOptions[$sharingType . '_sharing_size'] : $theChampSharingOptions[$sharingType . '_sharing_width'] ) . 'px;height:' . $iconHeight . 'px;';
41
  $counterContainerInitHtml = '<ss class="the_champ_square_count';
42
  $counterContainerEndHtml = '</ss>';
43
  $innerStyle = 'display:block;';
60
  $likeButtonCountContainer = $counterContainerInitHtml . '">&nbsp;' . $counterContainerEndHtml;
61
  }
62
 
63
+ // share count
64
+ if ( false !== ( $cachedShareCount = heateor_ss_get_cached_share_count( $shareCountTransientId ) ) ) {
65
+ $shareCounts = $cachedShareCount;
66
+ } else {
67
+ $shareCounts = '&nbsp;';
68
+ }
69
+
70
  $counterPlaceholder = '';
71
  $counterPlaceholderValue = '';
72
+ $innerStyleConditional = '';
73
 
74
  if ( $displayCount ) {
75
  if ( ! isset( $theChampSharingOptions[$sharingType . '_counter_position'] ) ) {
79
  }
80
  switch ( $counterPosition ) {
81
  case 'left':
82
+ $innerStyleConditional = 'display:block;';
83
+ $counterPlaceholder = '><i';
84
+ break;
85
  case 'top':
86
  $counterPlaceholder = '><i';
87
  break;
88
  case 'right':
89
+ $innerStyleConditional = 'display:block;';
90
+ $counterPlaceholder = 'i><';
91
+ break;
92
  case 'bottom':
93
+ $innerStyleConditional = 'display:block;';
94
  $counterPlaceholder = 'i><';
95
  break;
96
  case 'inner_left':
97
+ $innerStyleConditional = 'float:left;';
98
+ $counterPlaceholder = '><ss';
99
+ break;
100
  case 'inner_top':
101
+ $innerStyleConditional = 'margin-top:0;';
102
  $counterPlaceholder = '><ss';
103
  break;
104
  case 'inner_right':
105
+ $innerStyleConditional = 'float:left;';
106
+ $counterPlaceholder = 'ss><';
107
+ break;
108
  case 'inner_bottom':
109
+ $innerStyleConditional = 'margin-top:0;';
110
  $counterPlaceholder = 'ss><';
111
  break;
112
  default:
115
  }
116
 
117
  $twitterUsername = $theChampSharingOptions['twitter_username'] != '' ? $theChampSharingOptions['twitter_username'] : '';
118
+ $totalShareCount = 0;
119
 
120
+ $shareCount = array();
121
  foreach ( $theChampSharingOptions[$sharingType.'_re_providers'] as $provider ) {
122
+ $shareCount[$provider] = $shareCounts == '&nbsp;' ? '' : ( isset( $shareCounts[$provider] ) ? $shareCounts[$provider] : '' );
123
+ $issetStartingShareCount = isset( $sharingMeta[$provider . '_' . $sharingType . '_count'] ) && $sharingMeta[$provider . '_' . $sharingType . '_count'] != '' ? true : false;
124
+ $totalShareCount += intval( $shareCount[$provider] ) + ($issetStartingShareCount ? $sharingMeta[$provider . '_' . $sharingType . '_count'] : 0) ;
125
  $liItems .= str_replace(
126
  array(
127
  '%padding%',
154
  $language,
155
  $theChampSharingOptions['buffer_username'] != '' ? $theChampSharingOptions['buffer_username'] : '',
156
  $style,
157
+ $innerStyle . ( $shareCount[$provider] || ($issetStartingShareCount && $shareCounts != '&nbsp;') ? $innerStyleConditional : '' ),
158
  $liClass,
159
+ str_replace( '%network%', $provider, $issetStartingShareCount ? str_replace( '>&nbsp;', ' ss_st_count="' . $sharingMeta[$provider . '_' . $sharingType . '_count'] . '"' . ( $shareCounts == '&nbsp;' ? '>&nbsp;' : ' style="visibility:visible;' . ( $innerStyleConditional ? 'display:block;' : '' ) . '">' . heateor_ss_round_off_counts( $shareCount[$provider] + $sharingMeta[$provider . '_' . $sharingType . '_count'] ) ) , $counterPlaceholderValue ) : str_replace( '>&nbsp;', $shareCount[$provider] ? ' style="visibility:visible;' . ( $innerStyleConditional ? 'display:block;' : '' ) . '">' . heateor_ss_round_off_counts( $shareCount[$provider] ) : '>&nbsp;', $counterPlaceholderValue ) ),
160
  ucfirst( str_replace( '_', ' ', $provider ) )
161
  ),
162
  $sharingNetworks[$provider]
182
  } else {
183
  $addStyle = ';margin-bottom:9px !important;';
184
  }
185
+ $addStyle .= ( $totalShareCount && $shareCounts != '&nbsp;' ? 'visibility:visible;' : '' ) . '"';
186
  $style = str_replace( ';"', $addStyle, $style );
187
+ $totalSharesHtml .= '<i ' . $style . ' title="Total Shares" alt="Total Shares" class="theChampSharing theChampTCBackground">' . ( $totalShareCount ? '<div class="theChampTotalShareCount" style="font-size: ' . ( $iconHeight * 62/100 ) . 'px">' . heateor_ss_round_off_counts( $totalShareCount ) . '</div><div class="theChampTotalShareText" style="font-size: ' . ( $iconHeight * 38/100 ) . 'px">Shares</div>' : '' ) . '</i></li>';
188
  }
189
 
190
  if ( $sharingType == 'vertical' ) {
198
  return $html;
199
  }
200
 
201
+ /**
202
+ * Roud off share counts
203
+ */
204
+ function heateor_ss_round_off_counts($sharingCount){
205
+ if ( $sharingCount > 999 && $sharingCount < 10000 ) {
206
+ $sharingCount = round( $sharingCount/1000 ) . 'K';
207
+ } elseif ( $sharingCount > 9999 && $sharingCount < 100000 ) {
208
+ $sharingCount = round( $sharingCount/1000 ) . 'K';
209
+ } else if( $sharingCount > 99999 && $sharingCount < 1000000 ) {
210
+ $sharingCount = round( $sharingCount/1000 ) . 'K';
211
+ } else if ( $sharingCount > 999999 ) {
212
+ $sharingCount = round( $sharingCount/1000000 ) . 'M';
213
+ }
214
+
215
+ return $sharingCount;
216
+ }
217
+
218
+ /**
219
+ * Get cached share counts for given post ID
220
+ */
221
+ function heateor_ss_get_cached_share_count($postId){
222
+ $shareCountTransient = get_transient( 'heateor_ss_share_count_' . $postId );
223
+ do_action( 'heateor_ss_share_count_transient_hook', $shareCountTransient, $postId );
224
+ return $shareCountTransient;
225
+ }
226
+
227
  /**
228
  * Render counter interface html.
229
  */
542
  }
543
  }
544
 
545
+ $shareCountTransientId = heateor_ss_get_share_count_transient_id($postUrl);
546
+ $sharingDiv = the_champ_prepare_sharing_html($sharingUrl, 'horizontal', isset($theChampSharingOptions['horizontal_counts']), isset($theChampSharingOptions['horizontal_total_shares']), $shareCountTransientId);
547
  $sharingContainerStyle = '';
548
  $sharingTitleStyle = 'style="font-weight:bold"';
549
  if(isset($theChampSharingOptions['hor_sharing_alignment'])){
554
  $sharingTitleStyle = 'style="font-weight: bold;list-style: none;position: relative;left: 50%;"';
555
  }
556
  }
557
+ $horizontalDiv = "<div style='clear: both'></div><div ". $sharingContainerStyle ." class='the_champ_sharing_container the_champ_horizontal_sharing' " . ( heateor_ss_get_cached_share_count($shareCountTransientId) === false ? "super-socializer-data-href='" . $postUrl . "'" : '' ) . "><div class='the_champ_sharing_title' ". $sharingTitleStyle ." >".ucfirst($theChampSharingOptions['title'])."</div>".$sharingDiv."</div><div style='clear: both'></div>";
558
  if($sharingBpActivity){
559
  echo $horizontalDiv;
560
  }
619
  }
620
  }
621
 
622
+ $shareCountTransientId = heateor_ss_get_share_count_transient_id($postUrl);
623
+ $sharingDiv = the_champ_prepare_sharing_html($sharingUrl, 'vertical', isset($theChampSharingOptions['vertical_counts']), isset($theChampSharingOptions['vertical_total_shares']), $shareCountTransientId);
624
  $offset = (isset($theChampSharingOptions['alignment']) && $theChampSharingOptions['alignment'] != '' && isset($theChampSharingOptions[$theChampSharingOptions['alignment'].'_offset']) && $theChampSharingOptions[$theChampSharingOptions['alignment'].'_offset'] != '' ? $theChampSharingOptions['alignment'].': '.$theChampSharingOptions[$theChampSharingOptions['alignment'].'_offset'].'px;' : '').(isset($theChampSharingOptions['top_offset']) && $theChampSharingOptions['top_offset'] != '' ? 'top: '.$theChampSharingOptions['top_offset'].'px;' : '');
625
+ $verticalDiv = "<div class='the_champ_sharing_container the_champ_vertical_sharing" . ( isset( $theChampSharingOptions['hide_mobile_sharing'] ) ? ' the_champ_hide_sharing' : '' ) . ( isset( $theChampSharingOptions['bottom_mobile_sharing'] ) ? ' the_champ_bottom_sharing' : '' ) . "' style='width:" . ($theChampSharingOptions['vertical_sharing_size'] + 4) . "px;" . $offset . (isset($theChampSharingOptions['vertical_bg']) && $theChampSharingOptions['vertical_bg'] != '' ? 'background-color: '.$theChampSharingOptions['vertical_bg'] : '-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;') . "' " . ( heateor_ss_get_cached_share_count( $shareCountTransientId ) === false ? "super-socializer-data-href='" . $postUrl . "'" : '' ) . ">".$sharingDiv."</div>";
626
  // show vertical sharing
627
  if((isset( $theChampSharingOptions['vertical_home']) && is_front_page()) || (isset( $theChampSharingOptions['vertical_category']) && is_category()) || (isset( $theChampSharingOptions['vertical_archive']) && is_archive()) || ( isset( $theChampSharingOptions['vertical_post'] ) && is_single() && isset($post -> post_type) && $post -> post_type == 'post' ) || ( isset( $theChampSharingOptions['vertical_page'] ) && is_page() && isset($post -> post_type) && $post -> post_type == 'page' ) || ( isset( $theChampSharingOptions['vertical_excerpt'] ) && is_front_page() && current_filter() == 'get_the_excerpt' ) || ( isset( $theChampSharingOptions['vertical_bb_forum'] ) && current_filter() == 'bbp_template_before_single_forum') || ( isset( $theChampSharingOptions['vertical_bb_topic'] ) && in_array(current_filter(), array('bbp_template_before_single_topic', 'bbp_template_before_lead_topic'))) || (current_filter() == 'bp_before_group_header' && isset($theChampSharingOptions['vertical_bp_group']))) {
628
  if( in_array( current_filter(), array('bbp_template_before_single_topic', 'bbp_template_before_lead_topic', 'bbp_template_before_single_forum', 'bp_before_group_header') ) ){
648
  $sharingUrl = $shortUrl;
649
  }
650
  }
651
+ $shareCountTransientId = heateor_ss_get_share_count_transient_id($postUrl);
652
+ $sharingDiv = the_champ_prepare_sharing_html($sharingUrl, 'vertical', isset($theChampSharingOptions['vertical_counts']), isset($theChampSharingOptions['vertical_total_shares']), $shareCountTransientId);
653
+ $verticalDiv = "<div class='the_champ_sharing_container the_champ_vertical_sharing" . ( isset( $theChampSharingOptions['hide_mobile_sharing'] ) ? ' the_champ_hide_sharing' : '' ) . ( isset( $theChampSharingOptions['bottom_mobile_sharing'] ) ? ' the_champ_bottom_sharing' : '' ) . "' style='width:" . ($theChampSharingOptions['vertical_sharing_size'] + 4) . "px;" . $offset . (isset($theChampSharingOptions['vertical_bg']) && $theChampSharingOptions['vertical_bg'] != '' ? 'background-color: '.$theChampSharingOptions['vertical_bg'] : '-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;') . "' " . ( heateor_ss_get_cached_share_count($shareCountTransientId) === false ? "super-socializer-data-href='" . $postUrl . "'" : '' ) . ">".$sharingDiv."</div>";
654
  }
655
  $content = $content.$verticalDiv;
656
  $$var++;
719
  $tweetCountService = 'newsharecounts';
720
  if ( isset( $theChampSharingOptions['tweet_count_service'] ) ) {
721
  $tweetCountService = $theChampSharingOptions['tweet_count_service'];
722
+ } elseif ( isset( $theChampSharingOptions['vertical_tweet_count_service'] ) ) {
723
  $tweetCountService = $theChampSharingOptions['vertical_tweet_count_service'];
724
  }
725
 
730
  }
731
 
732
  $responseData = array();
733
+
734
+ $multiplier = 60;
735
+ switch ( $theChampSharingOptions['share_count_cache_refresh_unit'] ) {
736
+ case 'seconds':
737
+ $multiplier = 1;
738
+ break;
739
+
740
+ case 'minutes':
741
+ $multiplier = 60;
742
+ break;
743
+
744
+ case 'hours':
745
+ $multiplier = 3600;
746
+ break;
747
+
748
+ case 'days':
749
+ $multiplier = 3600*24;
750
+ break;
751
+
752
+ default:
753
+ $multiplier = 60;
754
+ break;
755
+ }
756
+ $transientExpirationTime = $multiplier * $theChampSharingOptions['share_count_cache_refresh_count'];
757
+
758
  foreach($targetUrls as $targetUrl){
759
+ $shareCountTransient = array();
760
  foreach($sharingNetworks as $provider){
761
  switch($provider){
762
  case 'facebook':
806
  case 'facebook':
807
  if(!empty($body[0] -> total_count)){
808
  $responseData[$targetUrl]['facebook'] = $body[0] -> total_count;
809
+ $shareCountTransient['facebook'] = $body[0] -> total_count;
810
  }else{
811
  $responseData[$targetUrl]['facebook'] = 0;
812
  }
814
  case 'twitter':
815
  if ( ! empty( $body -> count ) ) {
816
  $responseData[$targetUrl]['twitter'] = $body -> count;
817
+ $shareCountTransient['twitter'] = $body -> count;
818
  } else {
819
  $responseData[$targetUrl]['twitter'] = 0;
820
  }
822
  case 'linkedin':
823
  if(!empty($body -> count)){
824
  $responseData[$targetUrl]['linkedin'] = $body -> count;
825
+ $shareCountTransient['linkedin'] = $body -> count;
826
  }else{
827
  $responseData[$targetUrl]['linkedin'] = 0;
828
  }
833
  $children = $body -> data -> children;
834
  if(!empty($children[0] -> data -> score)){
835
  $responseData[$targetUrl]['reddit'] = $children[0] -> data -> score;
836
+ $shareCountTransient['reddit'] = $children[0] -> data -> score;
837
  }
838
  }
839
  break;
840
  case 'delicious':
841
  if(!empty($body[0] -> total_posts)){
842
  $responseData[$targetUrl]['delicious'] = $body[0] -> total_posts;
843
+ $shareCountTransient['delicious'] = $body[0] -> total_posts;
844
  }else{
845
  $responseData[$targetUrl]['delicious'] = 0;
846
  }
848
  case 'pinterest':
849
  if(!empty($body -> count)){
850
  $responseData[$targetUrl]['pinterest'] = $body -> count;
851
+ $shareCountTransient['pinterest'] = $body -> count;
852
  }else{
853
  $responseData[$targetUrl]['pinterest'] = 0;
854
  }
856
  case 'buffer':
857
  if(!empty($body -> shares)){
858
  $responseData[$targetUrl]['buffer'] = $body -> shares;
859
+ $shareCountTransient['buffer'] = $body -> shares;
860
  }else{
861
  $responseData[$targetUrl]['buffer'] = 0;
862
  }
864
  case 'stumbleupon':
865
  if(!empty($body -> result) && isset( $body -> result -> views )){
866
  $responseData[$targetUrl]['stumbleupon'] = $body -> result -> views;
867
+ $shareCountTransient['stumbleupon'] = $body -> result -> views;
868
  }else{
869
  $responseData[$targetUrl]['stumbleupon'] = 0;
870
  }
872
  case 'google_plus':
873
  if(!empty($body)){
874
  $responseData[$targetUrl]['google_plus'] = $body;
875
+ $shareCountTransient['google_plus'] = (int) str_replace( '"', '', $body );
876
  }else{
877
  $responseData[$targetUrl]['google_plus'] = 0;
878
  }
880
  case 'vkontakte':
881
  if(!empty($body)){
882
  $responseData[$targetUrl]['vkontakte'] = $body;
883
+ $shareCountTransient['vkontakte'] = $body;
884
  }else{
885
  $responseData[$targetUrl]['vkontakte'] = 0;
886
  }
888
  }
889
  }
890
  }
891
+ set_transient('heateor_ss_share_count_' . heateor_ss_get_share_count_transient_id($targetUrl), $shareCountTransient, $transientExpirationTime);
892
  }
893
+ do_action('heateor_ss_share_count_ajax_hook', $responseData);
894
  the_champ_ajax_response(array('status' => 1, 'message' => $responseData));
895
  }
896
 
897
  add_action('wp_ajax_the_champ_sharing_count', 'the_champ_sharing_count');
898
+ add_action('wp_ajax_nopriv_the_champ_sharing_count', 'the_champ_sharing_count');
899
+
900
+ /**
901
+ * Get ID of the share count transient
902
+ */
903
+ function heateor_ss_get_share_count_transient_id($targetUrl){
904
+ global $theChampSharingOptions;
905
+ if($theChampSharingOptions['horizontal_target_url_custom'] == $targetUrl || $theChampSharingOptions['vertical_target_url_custom'] == $targetUrl){
906
+ $postId = 'custom';
907
+ }else{
908
+ $postId = url_to_postid($targetUrl);
909
+ }
910
+ return $postId;
911
+ }
inc/widget.php CHANGED
@@ -159,7 +159,7 @@ class TheChampSharingWidget extends WP_Widget {
159
  $sharingUrl = $shortUrl;
160
  }
161
  }
162
- echo the_champ_prepare_sharing_html($sharingUrl, 'horizontal', isset($instance['show_counts']), isset($instance['total_shares']));
163
 
164
  if( !empty( $instance['after_widget_content'] ) ){
165
  echo '<div>' . $instance['after_widget_content'] . '</div>';
@@ -171,7 +171,7 @@ class TheChampSharingWidget extends WP_Widget {
171
  function(){
172
  // sharing counts
173
  theChampCallAjax(function(){
174
- theChampGetSharingCounts(1, 0);
175
  });
176
  }
177
  );</script>';
@@ -304,14 +304,14 @@ class TheChampVerticalSharingWidget extends WP_Widget {
304
  }
305
  }
306
  //echo $before_widget;
307
- echo the_champ_prepare_sharing_html($sharingUrl, 'vertical', isset($instance['show_counts']), isset($instance['total_shares']));
308
  echo '</div>';
309
  if(isset($instance['show_counts']) || isset($instance['total_shares'])){
310
  echo '<script>theChampLoadEvent(
311
  function(){
312
  // sharing counts
313
  theChampCallAjax(function(){
314
- theChampGetSharingCounts(0, 1);
315
  });
316
  }
317
  );</script>';
159
  $sharingUrl = $shortUrl;
160
  }
161
  }
162
+ echo the_champ_prepare_sharing_html($sharingUrl, 'horizontal', isset($instance['show_counts']), isset($instance['total_shares']), '');
163
 
164
  if( !empty( $instance['after_widget_content'] ) ){
165
  echo '<div>' . $instance['after_widget_content'] . '</div>';
171
  function(){
172
  // sharing counts
173
  theChampCallAjax(function(){
174
+ theChampGetSharingCounts();
175
  });
176
  }
177
  );</script>';
304
  }
305
  }
306
  //echo $before_widget;
307
+ echo the_champ_prepare_sharing_html($sharingUrl, 'vertical', isset($instance['show_counts']), isset($instance['total_shares']), '');
308
  echo '</div>';
309
  if(isset($instance['show_counts']) || isset($instance['total_shares'])){
310
  echo '<script>theChampLoadEvent(
311
  function(){
312
  // sharing counts
313
  theChampCallAjax(function(){
314
+ theChampGetSharingCounts();
315
  });
316
  }
317
  );</script>';
js/admin/sharing/admin.js CHANGED
@@ -36,6 +36,22 @@ function theChampClearShorturlCache(){
36
  });
37
  }
38
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
39
  function theChampIncrement(e, t, r, a, i) {
40
  var h, s, c = !1,
41
  _ = a;
36
  });
37
  }
38
 
39
+ function heateorSsClearShareCountCache(){
40
+ jQuery('#share_count_cache_loading').css('display', 'block');
41
+ jQuery.ajax({
42
+ type: 'GET',
43
+ dataType: 'json',
44
+ url: theChampSharingAjaxUrl,
45
+ data: {
46
+ action: 'heateor_ss_clear_share_count_cache'
47
+ },
48
+ success: function(data, textStatus, XMLHttpRequest){
49
+ jQuery('#share_count_cache_loading').css('display', 'none');
50
+ jQuery('#the_champ_share_count_cache_clear_message').css('display', 'block');
51
+ }
52
+ });
53
+ }
54
+
55
  function theChampIncrement(e, t, r, a, i) {
56
  var h, s, c = !1,
57
  _ = a;
js/front/combined.js CHANGED
@@ -535,7 +535,7 @@ if( theChampHorizontalSharingCountEnable || theChampVerticalSharingCountEnable )
535
  function(){
536
  // sharing counts
537
  theChampCallAjax(function(){
538
- theChampGetSharingCounts(theChampHorizontalSharingCountEnable, theChampVerticalSharingCountEnable);
539
  });
540
  }
541
  );
@@ -557,10 +557,14 @@ function theChampFilterSharing(val) {
557
  /**
558
  * Get sharing counts
559
  */
560
- function theChampGetSharingCounts(horizontalCounts, verticalCounts){
561
  var targetUrls = [];
562
  jQuery('.the_champ_sharing_container').each(function(){
563
- targetUrls.push(jQuery(this).attr('super-socializer-data-href'));
 
 
 
 
564
  });
565
  if(targetUrls.length == 0){
566
  return;
@@ -576,47 +580,40 @@ function theChampGetSharingCounts(horizontalCounts, verticalCounts){
576
  success: function(data, textStatus, XMLHttpRequest){
577
  if(data.status == 1){
578
  for(var i in data.message){
579
- var totalCount = 0, sharingContainer;
580
-
581
- if(!(verticalCounts) && !(horizontalCounts)){
582
- sharingContainer = jQuery("div[super-socializer-data-href='"+i+"']:not(.the_champ_vertical_sharing, .the_champ_horizontal_sharing)");
583
- } else if (!(horizontalCounts)){
584
- sharingContainer = jQuery("div[super-socializer-data-href='"+i+"']:not(.the_champ_horizontal_sharing)");
585
- } else if (!(verticalCounts)){
586
- sharingContainer = jQuery("div[super-socializer-data-href='"+i+"']:not(.the_champ_vertical_sharing)");
587
- } else {
588
- sharingContainer = jQuery("div[super-socializer-data-href='"+i+"']");
589
- }
590
 
591
- for(var j in data.message[i]){
592
- if(j == 'google_plus'){
593
- var sharingCount = parseInt(data.message[i][j]) || 0;
594
- }else if(j == 'vkontakte'){
595
- var sharingCount = parseInt(data.message[i][j].replace('VK.Share.count(0, ', '').replace(');', ''));
596
- }else{
597
- var sharingCount = data.message[i][j];
598
- }
 
 
599
 
600
- var targetElement = jQuery(sharingContainer).find('.the_champ_'+j+'_count');
601
-
602
- if(jQuery(targetElement).attr('ss_st_count')){
603
- sharingCount = parseInt(sharingCount) + parseInt(jQuery(targetElement).attr('ss_st_count'));
604
- }
605
- totalCount += parseInt(sharingCount);
606
- if(sharingCount < 1){ continue; }
607
- jQuery(targetElement).html(theChampCalculateCountWidth(sharingCount)).css({'visibility': 'visible', 'display': 'block'});
608
-
609
- if ( ( typeof theChampReduceHorizontalSvgWidth != 'undefined' && jQuery(sharingContainer).hasClass('the_champ_horizontal_sharing') ) || ( typeof theChampReduceVerticalSvgWidth != 'undefined' && jQuery(sharingContainer).hasClass('the_champ_vertical_sharing') ) ) {
610
- jQuery(targetElement).parents('li').find('.theChampSharingSvg').css('float', 'left');
611
- }
612
- if ( ( typeof theChampReduceHorizontalSvgHeight != 'undefined' && jQuery(sharingContainer).hasClass('the_champ_horizontal_sharing') ) || ( typeof theChampReduceVerticalSvgHeight != 'undefined' && jQuery(sharingContainer).hasClass('the_champ_vertical_sharing') ) ) {
613
- jQuery(targetElement).parents('li').find('.theChampSharingSvg').css('marginTop', '0');
 
614
  }
615
- }
616
- var totalCountContainer = jQuery(sharingContainer).find('.theChampTCBackground');
617
- jQuery(totalCountContainer).each(function(){
618
- var containerHeight = jQuery(this).css('height');
619
- jQuery(this).html('<div class="theChampTotalShareCount" style="font-size: '+ (parseInt(containerHeight) * 62/100) +'px">' + theChampCalculateCountWidth(totalCount) + '</div><div class="theChampTotalShareText" style="font-size: '+ (parseInt(containerHeight) * 38/100) +'px">Shares</div>').css('visibility', 'visible');
620
  });
621
  }
622
  }
535
  function(){
536
  // sharing counts
537
  theChampCallAjax(function(){
538
+ theChampGetSharingCounts();
539
  });
540
  }
541
  );
557
  /**
558
  * Get sharing counts
559
  */
560
+ function theChampGetSharingCounts(){
561
  var targetUrls = [];
562
  jQuery('.the_champ_sharing_container').each(function(){
563
+ var currentTargetUrl = jQuery(this).attr('super-socializer-data-href');
564
+ if(currentTargetUrl != null && jQuery.inArray(currentTargetUrl, heateorSsUrlCountFetched) == -1){
565
+ targetUrls.push(currentTargetUrl);
566
+ heateorSsUrlCountFetched.push(currentTargetUrl);
567
+ }
568
  });
569
  if(targetUrls.length == 0){
570
  return;
580
  success: function(data, textStatus, XMLHttpRequest){
581
  if(data.status == 1){
582
  for(var i in data.message){
583
+ var sharingContainers = jQuery("div[super-socializer-data-href='"+i+"']");
 
 
 
 
 
 
 
 
 
 
584
 
585
+ jQuery(sharingContainers).each(function(){
586
+ var totalCount = 0;
587
+ for(var j in data.message[i]){
588
+ if(j == 'google_plus'){
589
+ var sharingCount = parseInt(data.message[i][j]) || 0;
590
+ }else if(j == 'vkontakte'){
591
+ var sharingCount = parseInt(data.message[i][j].replace('VK.Share.count(0, ', '').replace(');', ''));
592
+ }else{
593
+ var sharingCount = data.message[i][j];
594
+ }
595
 
596
+ var targetElement = jQuery(this).find('.the_champ_'+j+'_count');
597
+
598
+ if(jQuery(targetElement).attr('ss_st_count')){
599
+ sharingCount = parseInt(sharingCount) + parseInt(jQuery(targetElement).attr('ss_st_count'));
600
+ }
601
+ totalCount += parseInt(sharingCount);
602
+ if(sharingCount < 1){ continue; }
603
+ jQuery(targetElement).html(theChampCalculateCountWidth(sharingCount)).css({'visibility': 'visible', 'display': 'block'});
604
+
605
+ if ( ( typeof theChampReduceHorizontalSvgWidth != 'undefined' && jQuery(this).hasClass('the_champ_horizontal_sharing') ) || ( typeof theChampReduceVerticalSvgWidth != 'undefined' && jQuery(this).hasClass('the_champ_vertical_sharing') ) ) {
606
+ jQuery(targetElement).parents('li').find('.theChampSharingSvg').css('float', 'left');
607
+ }
608
+ if ( ( typeof theChampReduceHorizontalSvgHeight != 'undefined' && jQuery(this).hasClass('the_champ_horizontal_sharing') ) || ( typeof theChampReduceVerticalSvgHeight != 'undefined' && jQuery(this).hasClass('the_champ_vertical_sharing') ) ) {
609
+ jQuery(targetElement).parents('li').find('.theChampSharingSvg').css('marginTop', '0');
610
+ }
611
  }
612
+ var totalCountContainer = jQuery(this).find('.theChampTCBackground');
613
+ jQuery(totalCountContainer).each(function(){
614
+ var containerHeight = jQuery(this).css('height');
615
+ jQuery(this).html('<div class="theChampTotalShareCount" style="font-size: '+ (parseInt(containerHeight) * 62/100) +'px">' + theChampCalculateCountWidth(totalCount) + '</div><div class="theChampTotalShareText" style="font-size: '+ (parseInt(containerHeight) * 38/100) +'px">Shares</div>').css('visibility', 'visible');
616
+ });
617
  });
618
  }
619
  }
js/front/sharing/sharing.js CHANGED
@@ -511,7 +511,7 @@ if(theChampHorizontalSharingCountEnable || theChampVerticalSharingCountEnable){
511
  function(){
512
  // sharing counts
513
  theChampCallAjax(function(){
514
- theChampGetSharingCounts(theChampHorizontalSharingCountEnable, theChampVerticalSharingCountEnable);
515
  });
516
  }
517
  );
@@ -533,10 +533,14 @@ function theChampFilterSharing(val) {
533
  /**
534
  * Get sharing counts
535
  */
536
- function theChampGetSharingCounts(horizontalCounts, verticalCounts){
537
  var targetUrls = [];
538
  jQuery('.the_champ_sharing_container').each(function(){
539
- targetUrls.push(jQuery(this).attr('super-socializer-data-href'));
 
 
 
 
540
  });
541
  if(targetUrls.length == 0){
542
  return;
@@ -552,47 +556,40 @@ function theChampGetSharingCounts(horizontalCounts, verticalCounts){
552
  success: function(data, textStatus, XMLHttpRequest){
553
  if(data.status == 1){
554
  for(var i in data.message){
555
- var totalCount = 0, sharingContainer;
556
-
557
- if(!(verticalCounts) && !(horizontalCounts)){
558
- sharingContainer = jQuery("div[super-socializer-data-href='"+i+"']:not(.the_champ_vertical_sharing, .the_champ_horizontal_sharing)");
559
- } else if (!(horizontalCounts)){
560
- sharingContainer = jQuery("div[super-socializer-data-href='"+i+"']:not(.the_champ_horizontal_sharing)");
561
- } else if (!(verticalCounts)){
562
- sharingContainer = jQuery("div[super-socializer-data-href='"+i+"']:not(.the_champ_vertical_sharing)");
563
- } else {
564
- sharingContainer = jQuery("div[super-socializer-data-href='"+i+"']");
565
- }
566
 
567
- for(var j in data.message[i]){
568
- if(j == 'google_plus'){
569
- var sharingCount = parseInt(data.message[i][j]) || 0;
570
- }else if(j == 'vkontakte'){
571
- var sharingCount = parseInt(data.message[i][j].replace('VK.Share.count(0, ', '').replace(');', ''));
572
- }else{
573
- var sharingCount = data.message[i][j];
574
- }
 
 
575
 
576
- var targetElement = jQuery(sharingContainer).find('.the_champ_'+j+'_count');
577
-
578
- if(jQuery(targetElement).attr('ss_st_count')){
579
- sharingCount = parseInt(sharingCount) + parseInt(jQuery(targetElement).attr('ss_st_count'));
580
- }
581
- totalCount += parseInt(sharingCount);
582
- if(sharingCount < 1){ continue; }
583
- jQuery(targetElement).html(theChampCalculateCountWidth(sharingCount)).css({'visibility': 'visible', 'display': 'block'});
584
-
585
- if ( ( typeof theChampReduceHorizontalSvgWidth != 'undefined' && jQuery(sharingContainer).hasClass('the_champ_horizontal_sharing') ) || ( typeof theChampReduceVerticalSvgWidth != 'undefined' && jQuery(sharingContainer).hasClass('the_champ_vertical_sharing') ) ) {
586
- jQuery(targetElement).parents('li').find('.theChampSharingSvg').css('float', 'left');
587
- }
588
- if ( ( typeof theChampReduceHorizontalSvgHeight != 'undefined' && jQuery(sharingContainer).hasClass('the_champ_horizontal_sharing') ) || ( typeof theChampReduceVerticalSvgHeight != 'undefined' && jQuery(sharingContainer).hasClass('the_champ_vertical_sharing') ) ) {
589
- jQuery(targetElement).parents('li').find('.theChampSharingSvg').css('marginTop', '0');
 
590
  }
591
- }
592
- var totalCountContainer = jQuery(sharingContainer).find('.theChampTCBackground');
593
- jQuery(totalCountContainer).each(function(){
594
- var containerHeight = jQuery(this).css('height');
595
- jQuery(this).html('<div class="theChampTotalShareCount" style="font-size: '+ (parseInt(containerHeight) * 62/100) +'px">' + theChampCalculateCountWidth(totalCount) + '</div><div class="theChampTotalShareText" style="font-size: '+ (parseInt(containerHeight) * 38/100) +'px">Shares</div>').css('visibility', 'visible');
596
  });
597
  }
598
  }
511
  function(){
512
  // sharing counts
513
  theChampCallAjax(function(){
514
+ theChampGetSharingCounts();
515
  });
516
  }
517
  );
533
  /**
534
  * Get sharing counts
535
  */
536
+ function theChampGetSharingCounts(){
537
  var targetUrls = [];
538
  jQuery('.the_champ_sharing_container').each(function(){
539
+ var currentTargetUrl = jQuery(this).attr('super-socializer-data-href');
540
+ if(currentTargetUrl != null && jQuery.inArray(currentTargetUrl, heateorSsUrlCountFetched) == -1){
541
+ targetUrls.push(currentTargetUrl);
542
+ heateorSsUrlCountFetched.push(currentTargetUrl);
543
+ }
544
  });
545
  if(targetUrls.length == 0){
546
  return;
556
  success: function(data, textStatus, XMLHttpRequest){
557
  if(data.status == 1){
558
  for(var i in data.message){
559
+ var sharingContainers = jQuery("div[super-socializer-data-href='"+i+"']");
 
 
 
 
 
 
 
 
 
 
560
 
561
+ jQuery(sharingContainers).each(function(){
562
+ var totalCount = 0;
563
+ for(var j in data.message[i]){
564
+ if(j == 'google_plus'){
565
+ var sharingCount = parseInt(data.message[i][j]) || 0;
566
+ }else if(j == 'vkontakte'){
567
+ var sharingCount = parseInt(data.message[i][j].replace('VK.Share.count(0, ', '').replace(');', ''));
568
+ }else{
569
+ var sharingCount = data.message[i][j];
570
+ }
571
 
572
+ var targetElement = jQuery(this).find('.the_champ_'+j+'_count');
573
+
574
+ if(jQuery(targetElement).attr('ss_st_count')){
575
+ sharingCount = parseInt(sharingCount) + parseInt(jQuery(targetElement).attr('ss_st_count'));
576
+ }
577
+ totalCount += parseInt(sharingCount);
578
+ if(sharingCount < 1){ continue; }
579
+ jQuery(targetElement).html(theChampCalculateCountWidth(sharingCount)).css({'visibility': 'visible', 'display': 'block'});
580
+
581
+ if ( ( typeof theChampReduceHorizontalSvgWidth != 'undefined' && jQuery(this).hasClass('the_champ_horizontal_sharing') ) || ( typeof theChampReduceVerticalSvgWidth != 'undefined' && jQuery(this).hasClass('the_champ_vertical_sharing') ) ) {
582
+ jQuery(targetElement).parents('li').find('.theChampSharingSvg').css('float', 'left');
583
+ }
584
+ if ( ( typeof theChampReduceHorizontalSvgHeight != 'undefined' && jQuery(this).hasClass('the_champ_horizontal_sharing') ) || ( typeof theChampReduceVerticalSvgHeight != 'undefined' && jQuery(this).hasClass('the_champ_vertical_sharing') ) ) {
585
+ jQuery(targetElement).parents('li').find('.theChampSharingSvg').css('marginTop', '0');
586
+ }
587
  }
588
+ var totalCountContainer = jQuery(this).find('.theChampTCBackground');
589
+ jQuery(totalCountContainer).each(function(){
590
+ var containerHeight = jQuery(this).css('height');
591
+ jQuery(this).html('<div class="theChampTotalShareCount" style="font-size: '+ (parseInt(containerHeight) * 62/100) +'px">' + theChampCalculateCountWidth(totalCount) + '</div><div class="theChampTotalShareText" style="font-size: '+ (parseInt(containerHeight) * 38/100) +'px">Shares</div>').css('visibility', 'visible');
592
+ });
593
  });
594
  }
595
  }
languages/Super-Socializer-ar_AR.mo CHANGED
Binary file
languages/Super-Socializer-ar_AR.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Super Socializer\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2016-01-08 07:39+0530\n"
6
- "PO-Revision-Date: 2016-01-08 07:39+0530\n"
7
  "Last-Translator: The Champ <lordofthechamps@gmail.com>\n"
8
  "Language-Team: Heateor <support@heateor.com>\n"
9
  "Language: ar\n"
@@ -79,11 +79,11 @@ msgstr "صغير الرمزية رابط"
79
  msgid "Large Avatar Url"
80
  msgstr "الرابط المصدر و الرابط الهدف لا يمكن أن يكونا متطابقين."
81
 
82
- #: ../super_socializer.php:848
83
  msgid "Email you entered is already registered or invalid"
84
  msgstr "البريد الإلكتروني الذي أدخلته غير مسجل من قبل أو غير صالحة"
85
 
86
- #: ../super_socializer.php:852
87
  msgid "Please enter a valid email address. You might be required to verify it"
88
  msgstr "يرجى إدخال عنوان بريد إلكتروني صالح. قد تكون هناك حاجة للتحقق من ذلك"
89
 
@@ -175,32 +175,32 @@ msgstr "بدء العد حصة ل"
175
  msgid "Floating Sharing Interface"
176
  msgstr "المشاركات الأفقي"
177
 
178
- #: ../helper.php:878
179
  #, fuzzy
180
  msgid "Social Avatar"
181
  msgstr "صغير الرمزية رابط"
182
 
183
- #: ../helper.php:881
184
  msgid "Do not fetch and update social avatar from my profile, next time I Social Login"
185
  msgstr ""
186
 
187
- #: ../helper.php:882
188
  msgid "Update social avatar, next time I Social Login"
189
  msgstr ""
190
 
191
- #: ../helper.php:885
192
  #, fuzzy
193
  msgid "Small Avatar"
194
  msgstr "صغير الرمزية رابط"
195
 
196
- #: ../helper.php:889
197
  #, fuzzy
198
  msgid "Large Avatar"
199
  msgstr "الرابط المصدر و الرابط الهدف لا يمكن أن يكونا متطابقين."
200
 
201
- #: ../helper.php:893
202
  #: ../admin/general_options.php:89
203
- #: ../admin/social_sharing.php:1732
204
  #: ../admin/social_commenting.php:464
205
  #: ../admin/social_login.php:778
206
  #: ../admin/like_buttons.php:764
@@ -362,8 +362,8 @@ msgid "Miscellaneous"
362
  msgstr ""
363
 
364
  #: ../admin/social_sharing.php:39
365
- #: ../admin/social_sharing.php:1681
366
- #: ../admin/social_sharing.php:1683
367
  #: ../admin/social_login.php:37
368
  #: ../admin/social_login.php:764
369
  #: ../admin/like_buttons.php:40
@@ -378,7 +378,7 @@ msgid "Troubleshooter"
378
  msgstr "مستكشف أخطاء مشاركة في ألفيس بوك"
379
 
380
  #: ../admin/social_sharing.php:41
381
- #: ../admin/social_sharing.php:1712
382
  #: ../admin/social_commenting.php:36
383
  #: ../admin/social_commenting.php:452
384
  #, fuzzy
@@ -1037,10 +1037,8 @@ msgid "Use shortlinks already installed"
1037
  msgstr "تمّ التنصيب مسبقاً"
1038
 
1039
  #: ../admin/social_sharing.php:1522
1040
- #: ../admin/like_buttons.php:592
1041
- #, fuzzy
1042
- msgid "Allows for shortened URLs to be used when sharing content if a shortening plugin is installed"
1043
- msgstr "يسمح لاختصار عناوين المواقع المراد استخدامه عند مشاركة محتوى إذا تم تثبيت البرنامج المساعد التقصير"
1044
 
1045
  #: ../admin/social_sharing.php:1530
1046
  #, fuzzy
@@ -1077,6 +1075,11 @@ msgstr "مفتاح API الخاص | API Private Key"
1077
  msgid "Login to your bit.ly account and navigate to <a href=\"%s\" target=\"_blank\">this link</a> to get your API key"
1078
  msgstr "تسجيل الدخول إلى جهاز bit.ly الحساب والانتقال إلى <a href=\"%s\" target=\"_blank\">هذا الارتباط</a> للحصول على مفتاح API الخاص بك"
1079
 
 
 
 
 
 
1080
  #: ../admin/social_sharing.php:1590
1081
  #: ../admin/like_buttons.php:660
1082
  #, fuzzy
@@ -1089,7 +1092,32 @@ msgid "Use this to delete short urls saved in database. Handy, if urls of your w
1089
  msgstr ""
1090
 
1091
  #: ../admin/social_sharing.php:1606
 
 
 
1092
  #: ../admin/social_sharing.php:1612
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1093
  #: ../admin/social_commenting.php:311
1094
  #: ../admin/like_buttons.php:676
1095
  #: ../admin/like_buttons.php:682
@@ -1097,77 +1125,81 @@ msgstr ""
1097
  msgid "Language"
1098
  msgstr "يمكنك استخدام أكواد <abbr title=\"HyperText Markup Language\">HTML</abbr> والخصائص التالية: %s"
1099
 
1100
- #: ../admin/social_sharing.php:1622
1101
  #, fuzzy, php-format
1102
  msgid "Enter the code of the language you want to use for like buttons. You can find the language codes at <a href=\"%s\" target=\"_blank\">this link</a>. Leave it empty for default language(English)"
1103
  msgstr "أدخل التعليمة البرمجية للغة التي تريد استخدامها لعرض عدادات. يمكنك العثور على رموز اللغة على <a href=\"%s\" target=\"_blank\">هذا الرابط</a>. اتركه فارغاً ل language(English) الافتراضي"
1104
 
1105
- #: ../admin/social_sharing.php:1631
1106
  #, fuzzy
1107
  msgid "Username in sharing"
1108
  msgstr "شارك الأخرين عبر تويتر"
1109
 
1110
- #: ../admin/social_sharing.php:1637
1111
  #, fuzzy
1112
  msgid "Twitter username (without @)"
1113
  msgstr "قالب بدون %1$s"
1114
 
1115
- #: ../admin/social_sharing.php:1647
1116
- #: ../admin/social_sharing.php:1666
1117
  #, fuzzy
1118
  msgid "Provided username will be appended after the content being shared as \"via @USERNAME\". Leave empty if you do not want any username in the content being shared."
1119
  msgstr "سيتم إلحاق اسم المستخدم المقدمة بعد المحتوى ويجري تقاسم \"عبر @USERNAME\". ترك فارغاً إذا كنت لا تريد أي اسم مستخدم في محتوى يجري تقاسمها."
1120
 
1121
- #: ../admin/social_sharing.php:1656
1122
  #, fuzzy
1123
  msgid "Buffer username (without @)"
1124
  msgstr "قالب بدون %1$s"
1125
 
1126
- #: ../admin/social_sharing.php:1693
1127
  msgid "Facebook Sharing Troubleshooter"
1128
  msgstr "مستكشف أخطاء مشاركة في ألفيس بوك"
1129
 
1130
- #: ../admin/social_sharing.php:1698
1131
  msgid "If Facebook sharing is not working fine, click at the following link and enter the problematic url (where Facebook sharing is not working properly) of your website in the text field:"
1132
  msgstr "إذا كان تقاسم بوك لا تعمل بشكل جيد، انقر على الرابط التالي وأدخل عنوان url إشكالية (حيث تقاسم بوك لا يعمل بشكل صحيح) من موقع الويب الخاص بك في حقل النص:"
1133
 
1134
- #: ../admin/social_sharing.php:1714
1135
  #, fuzzy
1136
  msgid "How can I show share counts of my website rather than of individual pages/posts?"
1137
  msgstr "كيف يمكن إظهار التهم حصة من موقع الويب الخاص بي بدلاً من الصفحات الفردية/الوظائف؟"
1138
 
1139
- #: ../admin/social_sharing.php:1715
1140
  #, fuzzy
1141
  msgid "How can I disable sharing on particular page/post?"
1142
  msgstr "كيف يمكن تعطيل مشاركة في الصفحة/وظيفة معينة؟"
1143
 
1144
- #: ../admin/social_sharing.php:1716
1145
  #, fuzzy
1146
  msgid "How can I specify minimum sharing count for sharing networks?"
1147
  msgstr "كيف يمكن تحديد الحد الأدنى من عدد مرات مشاركة لشبكات تبادل؟"
1148
 
1149
- #: ../admin/social_sharing.php:1717
1150
  msgid "How to share specific page?"
1151
  msgstr ""
1152
 
1153
- #: ../admin/social_sharing.php:1718
1154
  msgid "How to integrate Google Analytics with sharing?"
1155
  msgstr ""
1156
 
1157
- #: ../admin/social_sharing.php:1719
1158
  msgid "How to customize the look of total share counts?"
1159
  msgstr ""
1160
 
1161
- #: ../admin/social_sharing.php:1720
1162
  #, fuzzy
1163
  msgid "How to customize the look of individual share counts?"
1164
  msgstr "عرض عدد المقالات"
1165
 
1166
- #: ../admin/social_sharing.php:1721
1167
  #, fuzzy
1168
  msgid "How to show Whatsapp icon only on mobile devices?"
1169
  msgstr "إخفاء تقاسم على الأجهزة النقالة"
1170
 
 
 
 
 
1171
  #: ../admin/social_commenting.php:13
1172
  #, fuzzy
1173
  msgid "Enable Social Commenting"
@@ -2020,6 +2052,11 @@ msgstr "إذا تمكين، وأزرار تشبه العمودية لا تظهر
2020
  msgid "Use shortlinks already installed, for tweet button"
2021
  msgstr "استخدام شورتلينكس مثبتة بالفعل، لزر سقسقة"
2022
 
 
 
 
 
 
2023
  #: ../admin/like_buttons.php:600
2024
  #, fuzzy
2025
  msgid "Enable bit.ly url shortener for tweet button"
@@ -2065,12 +2102,12 @@ msgstr "استخدم كود مختصر | Include the shortcode"
2065
  msgid "Enable Social Login from \"Basic Configuration\" section at \"Super Socializer > Social Login\" page in admin panel"
2066
  msgstr "تأكد من أن يتم تمكين \"تسجيل الدخول الاجتماعي\" من \"سوبر سسليزر > الاجتماعية صفحة تسجيل الدخول\"."
2067
 
2068
- #: ../inc/social_sharing.php:652
2069
  #, fuzzy
2070
  msgid "Invalid request"
2071
  msgstr "طلب غير صحيح"
2072
 
2073
- #: ../inc/social_sharing.php:659
2074
  #, fuzzy
2075
  msgid "Providers not selected"
2076
  msgstr "محدد | selected"
2
  msgstr ""
3
  "Project-Id-Version: Super Socializer\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2016-01-29 18:56+0530\n"
6
+ "PO-Revision-Date: 2016-01-29 18:56+0530\n"
7
  "Last-Translator: The Champ <lordofthechamps@gmail.com>\n"
8
  "Language-Team: Heateor <support@heateor.com>\n"
9
  "Language: ar\n"
79
  msgid "Large Avatar Url"
80
  msgstr "الرابط المصدر و الرابط الهدف لا يمكن أن يكونا متطابقين."
81
 
82
+ #: ../super_socializer.php:846
83
  msgid "Email you entered is already registered or invalid"
84
  msgstr "البريد الإلكتروني الذي أدخلته غير مسجل من قبل أو غير صالحة"
85
 
86
+ #: ../super_socializer.php:850
87
  msgid "Please enter a valid email address. You might be required to verify it"
88
  msgstr "يرجى إدخال عنوان بريد إلكتروني صالح. قد تكون هناك حاجة للتحقق من ذلك"
89
 
175
  msgid "Floating Sharing Interface"
176
  msgstr "المشاركات الأفقي"
177
 
178
+ #: ../helper.php:879
179
  #, fuzzy
180
  msgid "Social Avatar"
181
  msgstr "صغير الرمزية رابط"
182
 
183
+ #: ../helper.php:882
184
  msgid "Do not fetch and update social avatar from my profile, next time I Social Login"
185
  msgstr ""
186
 
187
+ #: ../helper.php:883
188
  msgid "Update social avatar, next time I Social Login"
189
  msgstr ""
190
 
191
+ #: ../helper.php:886
192
  #, fuzzy
193
  msgid "Small Avatar"
194
  msgstr "صغير الرمزية رابط"
195
 
196
+ #: ../helper.php:890
197
  #, fuzzy
198
  msgid "Large Avatar"
199
  msgstr "الرابط المصدر و الرابط الهدف لا يمكن أن يكونا متطابقين."
200
 
201
+ #: ../helper.php:894
202
  #: ../admin/general_options.php:89
203
+ #: ../admin/social_sharing.php:1783
204
  #: ../admin/social_commenting.php:464
205
  #: ../admin/social_login.php:778
206
  #: ../admin/like_buttons.php:764
362
  msgstr ""
363
 
364
  #: ../admin/social_sharing.php:39
365
+ #: ../admin/social_sharing.php:1731
366
+ #: ../admin/social_sharing.php:1733
367
  #: ../admin/social_login.php:37
368
  #: ../admin/social_login.php:764
369
  #: ../admin/like_buttons.php:40
378
  msgstr "مستكشف أخطاء مشاركة في ألفيس بوك"
379
 
380
  #: ../admin/social_sharing.php:41
381
+ #: ../admin/social_sharing.php:1762
382
  #: ../admin/social_commenting.php:36
383
  #: ../admin/social_commenting.php:452
384
  #, fuzzy
1037
  msgstr "تمّ التنصيب مسبقاً"
1038
 
1039
  #: ../admin/social_sharing.php:1522
1040
+ msgid "Uses default short url permalinks without using any additional plugin"
1041
+ msgstr ""
 
 
1042
 
1043
  #: ../admin/social_sharing.php:1530
1044
  #, fuzzy
1075
  msgid "Login to your bit.ly account and navigate to <a href=\"%s\" target=\"_blank\">this link</a> to get your API key"
1076
  msgstr "تسجيل الدخول إلى جهاز bit.ly الحساب والانتقال إلى <a href=\"%s\" target=\"_blank\">هذا الارتباط</a> للحصول على مفتاح API الخاص بك"
1077
 
1078
+ #: ../admin/social_sharing.php:1586
1079
+ #: ../admin/like_buttons.php:656
1080
+ msgid "Clear Bitly Cache"
1081
+ msgstr ""
1082
+
1083
  #: ../admin/social_sharing.php:1590
1084
  #: ../admin/like_buttons.php:660
1085
  #, fuzzy
1092
  msgstr ""
1093
 
1094
  #: ../admin/social_sharing.php:1606
1095
+ msgid "Share Count Cache"
1096
+ msgstr ""
1097
+
1098
  #: ../admin/social_sharing.php:1612
1099
+ msgid "Refresh Share Count cache every"
1100
+ msgstr ""
1101
+
1102
+ #: ../admin/social_sharing.php:1628
1103
+ msgid "Frequent cache refreshing results in slower loading of pages with share counts enabled"
1104
+ msgstr ""
1105
+
1106
+ #: ../admin/social_sharing.php:1636
1107
+ msgid "Clear Share Counts Cache"
1108
+ msgstr ""
1109
+
1110
+ #: ../admin/social_sharing.php:1640
1111
+ #, fuzzy
1112
+ msgid "Share Counts cache cleared successfully."
1113
+ msgstr "تم ربط حسابك بنجاح"
1114
+
1115
+ #: ../admin/social_sharing.php:1647
1116
+ msgid "Use this to clear cached share counts"
1117
+ msgstr ""
1118
+
1119
+ #: ../admin/social_sharing.php:1656
1120
+ #: ../admin/social_sharing.php:1662
1121
  #: ../admin/social_commenting.php:311
1122
  #: ../admin/like_buttons.php:676
1123
  #: ../admin/like_buttons.php:682
1125
  msgid "Language"
1126
  msgstr "يمكنك استخدام أكواد <abbr title=\"HyperText Markup Language\">HTML</abbr> والخصائص التالية: %s"
1127
 
1128
+ #: ../admin/social_sharing.php:1672
1129
  #, fuzzy, php-format
1130
  msgid "Enter the code of the language you want to use for like buttons. You can find the language codes at <a href=\"%s\" target=\"_blank\">this link</a>. Leave it empty for default language(English)"
1131
  msgstr "أدخل التعليمة البرمجية للغة التي تريد استخدامها لعرض عدادات. يمكنك العثور على رموز اللغة على <a href=\"%s\" target=\"_blank\">هذا الرابط</a>. اتركه فارغاً ل language(English) الافتراضي"
1132
 
1133
+ #: ../admin/social_sharing.php:1681
1134
  #, fuzzy
1135
  msgid "Username in sharing"
1136
  msgstr "شارك الأخرين عبر تويتر"
1137
 
1138
+ #: ../admin/social_sharing.php:1687
1139
  #, fuzzy
1140
  msgid "Twitter username (without @)"
1141
  msgstr "قالب بدون %1$s"
1142
 
1143
+ #: ../admin/social_sharing.php:1697
1144
+ #: ../admin/social_sharing.php:1716
1145
  #, fuzzy
1146
  msgid "Provided username will be appended after the content being shared as \"via @USERNAME\". Leave empty if you do not want any username in the content being shared."
1147
  msgstr "سيتم إلحاق اسم المستخدم المقدمة بعد المحتوى ويجري تقاسم \"عبر @USERNAME\". ترك فارغاً إذا كنت لا تريد أي اسم مستخدم في محتوى يجري تقاسمها."
1148
 
1149
+ #: ../admin/social_sharing.php:1706
1150
  #, fuzzy
1151
  msgid "Buffer username (without @)"
1152
  msgstr "قالب بدون %1$s"
1153
 
1154
+ #: ../admin/social_sharing.php:1743
1155
  msgid "Facebook Sharing Troubleshooter"
1156
  msgstr "مستكشف أخطاء مشاركة في ألفيس بوك"
1157
 
1158
+ #: ../admin/social_sharing.php:1748
1159
  msgid "If Facebook sharing is not working fine, click at the following link and enter the problematic url (where Facebook sharing is not working properly) of your website in the text field:"
1160
  msgstr "إذا كان تقاسم بوك لا تعمل بشكل جيد، انقر على الرابط التالي وأدخل عنوان url إشكالية (حيث تقاسم بوك لا يعمل بشكل صحيح) من موقع الويب الخاص بك في حقل النص:"
1161
 
1162
+ #: ../admin/social_sharing.php:1764
1163
  #, fuzzy
1164
  msgid "How can I show share counts of my website rather than of individual pages/posts?"
1165
  msgstr "كيف يمكن إظهار التهم حصة من موقع الويب الخاص بي بدلاً من الصفحات الفردية/الوظائف؟"
1166
 
1167
+ #: ../admin/social_sharing.php:1765
1168
  #, fuzzy
1169
  msgid "How can I disable sharing on particular page/post?"
1170
  msgstr "كيف يمكن تعطيل مشاركة في الصفحة/وظيفة معينة؟"
1171
 
1172
+ #: ../admin/social_sharing.php:1766
1173
  #, fuzzy
1174
  msgid "How can I specify minimum sharing count for sharing networks?"
1175
  msgstr "كيف يمكن تحديد الحد الأدنى من عدد مرات مشاركة لشبكات تبادل؟"
1176
 
1177
+ #: ../admin/social_sharing.php:1767
1178
  msgid "How to share specific page?"
1179
  msgstr ""
1180
 
1181
+ #: ../admin/social_sharing.php:1768
1182
  msgid "How to integrate Google Analytics with sharing?"
1183
  msgstr ""
1184
 
1185
+ #: ../admin/social_sharing.php:1769
1186
  msgid "How to customize the look of total share counts?"
1187
  msgstr ""
1188
 
1189
+ #: ../admin/social_sharing.php:1770
1190
  #, fuzzy
1191
  msgid "How to customize the look of individual share counts?"
1192
  msgstr "عرض عدد المقالات"
1193
 
1194
+ #: ../admin/social_sharing.php:1771
1195
  #, fuzzy
1196
  msgid "How to show Whatsapp icon only on mobile devices?"
1197
  msgstr "إخفاء تقاسم على الأجهزة النقالة"
1198
 
1199
+ #: ../admin/social_sharing.php:1772
1200
+ msgid "How to hide arrow after floating sharing bar?"
1201
+ msgstr ""
1202
+
1203
  #: ../admin/social_commenting.php:13
1204
  #, fuzzy
1205
  msgid "Enable Social Commenting"
2052
  msgid "Use shortlinks already installed, for tweet button"
2053
  msgstr "استخدام شورتلينكس مثبتة بالفعل، لزر سقسقة"
2054
 
2055
+ #: ../admin/like_buttons.php:592
2056
+ #, fuzzy
2057
+ msgid "Allows for shortened URLs to be used when sharing content if a shortening plugin is installed"
2058
+ msgstr "يسمح لاختصار عناوين المواقع المراد استخدامه عند مشاركة محتوى إذا تم تثبيت البرنامج المساعد التقصير"
2059
+
2060
  #: ../admin/like_buttons.php:600
2061
  #, fuzzy
2062
  msgid "Enable bit.ly url shortener for tweet button"
2102
  msgid "Enable Social Login from \"Basic Configuration\" section at \"Super Socializer > Social Login\" page in admin panel"
2103
  msgstr "تأكد من أن يتم تمكين \"تسجيل الدخول الاجتماعي\" من \"سوبر سسليزر > الاجتماعية صفحة تسجيل الدخول\"."
2104
 
2105
+ #: ../inc/social_sharing.php:706
2106
  #, fuzzy
2107
  msgid "Invalid request"
2108
  msgstr "طلب غير صحيح"
2109
 
2110
+ #: ../inc/social_sharing.php:713
2111
  #, fuzzy
2112
  msgid "Providers not selected"
2113
  msgstr "محدد | selected"
languages/Super-Socializer-es_ES.mo CHANGED
Binary file
languages/Super-Socializer-es_ES.po CHANGED
@@ -1,37 +1,37 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: Super Socializer 2.8.0\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2016-01-08 07:39+0530\n"
6
- "PO-Revision-Date: 2016-01-08 07:39+0530\n"
7
  "Last-Translator: The Champ <lordofthechamps@gmail.com>\n"
8
- "Language-Team: The Champ <lordofthechamps@gmail.com>\n"
9
  "Language: es\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
- "X-Generator: Poedit 1.6.5\n"
14
  "X-Poedit-Basepath: .\n"
 
15
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
16
- "X-Poedit-KeywordsList: __;_e\n"
17
  "X-Poedit-SearchPath-0: ..\n"
18
 
19
  #: ../super_socializer.php:222
20
  #, php-format
21
  msgid "Enter exactly the following url in <strong>Website</strong> and <strong>Callback Url</strong> options in your Twitter app (see step 3 %s)"
22
- msgstr "Introduzca exactamente la siguiente url en <strong> Website </ strong> y <strong> Callback URL </ strong> opciones en su aplicación de Twitter (ver paso 3 %s)"
23
 
24
  #: ../super_socializer.php:225
25
  msgid "Make sure cURL is enabled at your website server. You may need to contact the server administrator of your website to verify this"
26
- msgstr "Asegúrese CURL está activado en tu servidor web. Puede que tenga que ponerse en contacto con el administrador del servidor de su sitio web para comprobar esto"
27
 
28
  #: ../super_socializer.php:395
29
  msgid "Please verify your email address to login."
30
- msgstr "Verifique por favor su dirección de correo electrónico para iniciar sesión"
31
 
32
  #: ../super_socializer.php:395
33
  msgid "Your email has been verified. Now you can login to your account"
34
- msgstr "Su email ha sido verificado. Ahora puede acceder a su cuenta"
35
 
36
  #: ../super_socializer.php:399
37
  msgid "Notification"
@@ -40,88 +40,81 @@ msgstr "Notificación"
40
  #: ../super_socializer.php:417
41
  #: ../admin/social_login.php:561
42
  msgid "Email required"
43
- msgstr "Requiere E-mail"
44
 
45
  #: ../super_socializer.php:420
46
  msgid "Please check your email inbox to complete the registration."
47
- msgstr "Por favor revise su bandeja de entrada de correo electrónico para completar el registro"
48
 
49
  #: ../super_socializer.php:435
50
  msgid "Follow steps 11 and 12 at GooglePlus app configuration page, about to open"
51
- msgstr "Siga los pasos 11 y 12 en la página de configuración de aplicación de Google Plus, a punto de abrir"
52
 
53
  #: ../super_socializer.php:522
54
  msgid "Leave a reply"
55
- msgstr "Deja una Respuesta"
56
 
57
  #: ../super_socializer.php:711
58
- #, fuzzy
59
  msgid "Super Socializer - General Options"
60
- msgstr "Super Socializer - Login"
61
 
62
  #: ../super_socializer.php:711
63
  #: ../admin/general_options.php:11
64
  #: ../admin/social_commenting.php:42
65
- #, fuzzy
66
  msgid "General Options"
67
- msgstr "Ubicación de uso compartido"
68
 
69
  #: ../super_socializer.php:772
70
- #, fuzzy
71
  msgid "Super Socializer - Social Avatar"
72
- msgstr "Super Socializer - Login"
73
 
74
  #: ../super_socializer.php:775
75
  msgid "Small Avatar Url"
76
- msgstr "Pequeño Avatar Url"
77
 
78
  #: ../super_socializer.php:780
79
- #, fuzzy
80
  msgid "Large Avatar Url"
81
- msgstr "Target Url"
82
 
83
- #: ../super_socializer.php:848
84
  msgid "Email you entered is already registered or invalid"
85
- msgstr "Enviar que ha introducido ya está registrado o no válido"
86
 
87
- #: ../super_socializer.php:852
88
  msgid "Please enter a valid email address. You might be required to verify it"
89
- msgstr "Por favor, introduce una dirección de correo electrónico válida. Es posible que tenga para verificarla"
90
 
91
  #: ../helper.php:8
92
- #, fuzzy
93
  msgid "Settings saved"
94
- msgstr "Configuración"
95
 
96
  #: ../helper.php:8
97
  msgid "Dismiss this notice"
98
- msgstr "Descartar este aviso"
99
 
100
  #: ../helper.php:155
101
  msgid "Click to show help"
102
- msgstr "Haga clic para mostrar ayuda"
103
 
104
  #: ../helper.php:155
105
  msgid "Click to hide help"
106
- msgstr "Haga clic para ocultar ayuda"
107
 
108
  #: ../helper.php:249
109
  msgid "Settings"
110
- msgstr "Configuración"
111
 
112
  #: ../helper.php:572
113
- #, fuzzy
114
  msgid "Account linked successfully"
115
- msgstr "Opciones guardadas correctamente"
116
 
117
  #: ../helper.php:576
118
  msgid "Account already exists or linked"
119
- msgstr "Cuenta ya existe o vinculado"
120
 
121
  #: ../helper.php:585
122
- #, fuzzy
123
  msgid "You are already connected with"
124
- msgstr "Usted está listo para Socializar su sitio web."
125
 
126
  #: ../helper.php:585
127
  msgid "as primary social network"
@@ -129,125 +122,113 @@ msgstr "como red social primaria"
129
 
130
  #: ../helper.php:600
131
  msgid "Link your social account to login to your account at this website"
132
- msgstr "Vincula tu cuenta social para acceder a su cuenta en esta web"
133
 
134
  #: ../helper.php:637
135
  msgid "Currently"
136
- msgstr "actualmente"
137
 
138
  #: ../helper.php:637
139
  msgid "Remove"
140
- msgstr "quitar"
141
 
142
  #: ../helper.php:738
143
- #, fuzzy
144
  msgid "Disable Standard Social Sharing on this "
145
- msgstr "Desactivar Vertical Intercambio Social en esta"
146
 
147
  #: ../helper.php:743
148
- #, fuzzy
149
  msgid "Disable Floating Social Sharing on this "
150
- msgstr "Desactivar Horizontal Intercambio Social en esta"
151
 
152
  #: ../helper.php:748
153
- #, fuzzy
154
  msgid "Disable Standard like buttons on this "
155
- msgstr "Desactivar Vertical Intercambio Social en esta"
156
 
157
  #: ../helper.php:753
158
- #, fuzzy
159
  msgid "Disable Floating like buttons on this "
160
- msgstr "Desactivar Horizontal Intercambio Social en esta"
161
 
162
  #: ../helper.php:758
163
- #, fuzzy
164
  msgid "Disable Social Commenting on this "
165
- msgstr "Habilitar Comentarios Facebook"
166
 
167
  #: ../helper.php:767
168
- #, fuzzy
169
  msgid "Standard Sharing Interface"
170
- msgstr "Horizontales Opciones para compartir la interfaz de"
171
 
172
  #: ../helper.php:773
173
  #: ../helper.php:792
174
- #, fuzzy
175
  msgid "Starting share count for "
176
- msgstr "conteos muestran acciones"
177
 
178
  #: ../helper.php:786
179
- #, fuzzy
180
  msgid "Floating Sharing Interface"
181
- msgstr "Horizontales Opciones para compartir la interfaz de"
182
 
183
- #: ../helper.php:878
184
- #, fuzzy
185
  msgid "Social Avatar"
186
- msgstr "Pequeño Avatar Url"
187
 
188
- #: ../helper.php:881
189
  msgid "Do not fetch and update social avatar from my profile, next time I Social Login"
190
- msgstr ""
191
 
192
- #: ../helper.php:882
193
  msgid "Update social avatar, next time I Social Login"
194
- msgstr ""
195
 
196
- #: ../helper.php:885
197
- #, fuzzy
198
  msgid "Small Avatar"
199
- msgstr "Pequeño Avatar Url"
200
 
201
- #: ../helper.php:889
202
- #, fuzzy
203
  msgid "Large Avatar"
204
- msgstr "Target Url"
205
 
206
- #: ../helper.php:893
207
  #: ../admin/general_options.php:89
208
- #: ../admin/social_sharing.php:1732
209
  #: ../admin/social_commenting.php:464
210
  #: ../admin/social_login.php:778
211
  #: ../admin/like_buttons.php:764
212
  msgid "Save Changes"
213
- msgstr "Guardar cambios"
214
 
215
  #: ../admin/general_options.php:17
216
  msgid "Include Javascript in website footer"
217
- msgstr "Incluir Javascript en el pie de página del sitio web"
218
 
219
  #: ../admin/general_options.php:27
220
  msgid "If enabled (recommended), Javascript files will be included in the footer of your website."
221
- msgstr "Si está activado (recomendado), archivos Javascript se incluirán en el pie de página de su sitio web."
222
 
223
  #: ../admin/general_options.php:35
224
  msgid "Load all Javascript files in single file"
225
- msgstr ""
226
 
227
  #: ../admin/general_options.php:45
228
  msgid "Loads Javascript in single request."
229
- msgstr ""
230
 
231
  #: ../admin/general_options.php:53
232
  msgid "Delete all the options on plugin deletion"
233
- msgstr "Eliminar todas las opciones de plugin de eliminación"
234
 
235
  #: ../admin/general_options.php:63
236
  msgid "If enabled, plugin options will get deleted when plugin is deleted/uninstalled and you will need to reconfigure the options when you install the plugin next time."
237
- msgstr "Si se activa, las opciones del plugin será borrado cuando se elimina el plugin / desinstalado y tendrá que volver a configurar las opciones al instalar el plugin próxima vez."
238
 
239
  #: ../admin/general_options.php:71
240
- #, fuzzy
241
  msgid "Custom CSS"
242
- msgstr "Url personalizada"
243
 
244
  #: ../admin/general_options.php:81
245
  msgid "You can specify any additional CSS rules (without &lt;style&gt; tag)"
246
- msgstr ""
247
 
248
  #: ../admin/help.php:4
249
  msgid "About"
250
- msgstr "Acerca de"
251
 
252
  #: ../admin/help.php:4
253
  msgid "Version"
@@ -259,7 +240,7 @@ msgstr "por"
259
 
260
  #: ../admin/help.php:7
261
  msgid "We are a creative team with unique ideas in mind and service in heart. We love what we do. For more info join us at"
262
- msgstr "Somos un equipo creativo con ideas únicas en la mente y el servicio en el corazón. Nos encanta lo que hacemos. Para obtener más información, únase a nosotros en"
263
 
264
  #: ../admin/help.php:17
265
  msgid "Donate"
@@ -267,47 +248,43 @@ msgstr "Donar"
267
 
268
  #: ../admin/help.php:19
269
  msgid "You can help us continue the development of this free plugin by donating"
270
- msgstr ""
271
 
272
  #: ../admin/help.php:20
273
- #, fuzzy
274
  msgid "Donate Now"
275
- msgstr "Donar"
276
 
277
  #: ../admin/help.php:26
278
  msgid "Plugin Demo"
279
- msgstr "Demostración Plugin"
280
 
281
  #: ../admin/help.php:32
282
  msgid "Integrate with Google Analytics"
283
- msgstr ""
284
 
285
  #: ../admin/help.php:38
286
  msgid "Boost sharing by awarding points"
287
- msgstr "Impulsar el intercambio mediante la concesión de puntos"
288
 
289
  #: ../admin/help.php:44
290
  msgid "Award points for Social Login"
291
- msgstr "Otorgar puntos para Social Login"
292
 
293
  #: ../admin/help.php:50
294
- #, fuzzy
295
  msgid "Other Add-ons"
296
- msgstr "Complementos"
297
 
298
  #: ../admin/help.php:55
299
  msgid "Need Help?"
300
- msgstr "Necesitas Ayuda?"
301
 
302
  #: ../admin/help.php:57
303
- #, fuzzy
304
  msgid "If you <strong>have any query</strong>, need help regarding <strong>plugin setup</strong>, want <strong>custom features</strong> in the plugin or <strong>have any suggestion</strong> to improve the plugin, just drop an email at <a href=\"mailto:support@heateor.com\">support@heateor.com</a>"
305
- msgstr "Si quieres características personalizadas en el plugin, lo que puedo hacer por usted. Simplemente envíeme un correo electrónico a lordofthechamps@gmail.com"
306
 
307
  #: ../admin/help.php:62
308
- #, fuzzy
309
  msgid "Support Us"
310
- msgstr "Soporte"
311
 
312
  #: ../admin/help.php:65
313
  #: ../admin/help.php:68
@@ -316,79 +293,76 @@ msgstr "Soporte"
316
  #: ../admin/help.php:71
317
  #: ../admin/help.php:72
318
  msgid "Rate 5-star"
319
- msgstr "Tasa de 5 estrellas"
320
 
321
  #: ../admin/social_sharing.php:9
322
  #: ../admin/social_commenting.php:8
323
  #: ../admin/social_login.php:8
324
  #: ../admin/like_buttons.php:10
325
  msgid "Master Control"
326
- msgstr ""
327
 
328
  #: ../admin/social_sharing.php:14
329
  msgid "Enable Social Sharing"
330
- msgstr "Habilitar Social Sharing"
331
 
332
  #: ../admin/social_sharing.php:23
333
- #, fuzzy
334
  msgid "Master control to enable Social Sharing"
335
- msgstr "Control maestro para permitir el intercambio horizontal"
336
 
337
  #: ../admin/social_sharing.php:35
338
  msgid "Theme Selection"
339
- msgstr ""
340
 
341
  #: ../admin/social_sharing.php:36
342
  #: ../admin/like_buttons.php:37
343
- #, fuzzy
344
  msgid "Standard Interface"
345
- msgstr "Horizontales Opciones para compartir la interfaz de"
346
 
347
  #: ../admin/social_sharing.php:37
348
  #: ../admin/like_buttons.php:38
349
- #, fuzzy
350
  msgid "Floating Interface"
351
- msgstr "Horizontales Opciones para compartir la interfaz de"
352
 
353
  #: ../admin/social_sharing.php:38
354
  #: ../admin/like_buttons.php:39
355
  msgid "Miscellaneous"
356
- msgstr ""
357
 
358
  #: ../admin/social_sharing.php:39
359
- #: ../admin/social_sharing.php:1681
360
- #: ../admin/social_sharing.php:1683
361
  #: ../admin/social_login.php:37
362
  #: ../admin/social_login.php:764
363
  #: ../admin/like_buttons.php:40
364
  #: ../admin/like_buttons.php:751
365
  msgid "Shortcode & Widget"
366
- msgstr "Widgets y shortcodes"
367
 
368
  #: ../admin/social_sharing.php:40
369
  msgid "Troubleshooter"
370
- msgstr "Solucionador de problemas"
371
 
372
  #: ../admin/social_sharing.php:41
373
- #: ../admin/social_sharing.php:1712
374
  #: ../admin/social_commenting.php:36
375
  #: ../admin/social_commenting.php:452
376
  msgid "FAQ"
377
- msgstr ""
378
 
379
  #: ../admin/social_sharing.php:48
380
  msgid "Standard interface theme"
381
- msgstr ""
382
 
383
  #: ../admin/social_sharing.php:53
384
  #: ../admin/social_sharing.php:360
385
  msgid "Icon Preview"
386
- msgstr "Icono Vista previa"
387
 
388
  #: ../admin/social_sharing.php:125
389
  #: ../admin/social_sharing.php:433
390
  msgid "Do not forget to save the configuration after making changes by clicking the save button below"
391
- msgstr "No se olvide de guardar la configuración después de realizar cambios haciendo clic en el botón de guardar a continuación"
392
 
393
  #: ../admin/social_sharing.php:132
394
  #: ../admin/social_sharing.php:440
@@ -398,7 +372,7 @@ msgstr "Forma"
398
  #: ../admin/social_sharing.php:136
399
  #: ../admin/social_sharing.php:444
400
  msgid "Round"
401
- msgstr "Ronda"
402
 
403
  #: ../admin/social_sharing.php:138
404
  #: ../admin/social_sharing.php:446
@@ -408,65 +382,57 @@ msgstr "Cuadrado"
408
  #: ../admin/social_sharing.php:140
409
  #: ../admin/social_sharing.php:448
410
  msgid "Rectangle"
411
- msgstr ""
412
 
413
  #: ../admin/social_sharing.php:147
414
  #: ../admin/social_sharing.php:455
415
- #, fuzzy
416
  msgid "Shape of the sharing icons"
417
- msgstr "conteos muestran acciones"
418
 
419
  #: ../admin/social_sharing.php:156
420
  #: ../admin/social_sharing.php:464
421
  msgid "Size (in pixels)"
422
- msgstr "Tamaño (en píxeles)"
423
 
424
  #: ../admin/social_sharing.php:172
425
  #: ../admin/social_sharing.php:480
426
- #, fuzzy
427
  msgid "Size of the sharing icons"
428
- msgstr "Habilitar interfaz de intercambio horizontal"
429
 
430
  #: ../admin/social_sharing.php:182
431
  #: ../admin/social_sharing.php:490
432
- #, fuzzy
433
  msgid "Width (in pixels)"
434
- msgstr "Tamaño (en píxeles)"
435
 
436
  #: ../admin/social_sharing.php:198
437
  #: ../admin/social_sharing.php:506
438
- #, fuzzy
439
  msgid "Width of the sharing icons"
440
- msgstr "Habilitar interfaz de intercambio horizontal"
441
 
442
  #: ../admin/social_sharing.php:206
443
  #: ../admin/social_sharing.php:514
444
- #, fuzzy
445
  msgid "Height (in pixels)"
446
- msgstr "Tamaño (en píxeles)"
447
 
448
  #: ../admin/social_sharing.php:222
449
  #: ../admin/social_sharing.php:530
450
- #, fuzzy
451
  msgid "Height of the sharing icons"
452
- msgstr "Habilitar interfaz de intercambio horizontal"
453
 
454
  #: ../admin/social_sharing.php:232
455
  #: ../admin/social_sharing.php:540
456
- #, fuzzy
457
  msgid "Border radius (in pixels)"
458
- msgstr "Tamaño (en píxeles)"
459
 
460
  #: ../admin/social_sharing.php:242
461
  #: ../admin/social_sharing.php:550
462
  msgid "Specify a value for rounded corners. More the value, more rounded will the corners be. Leave empty for sharp corners."
463
- msgstr ""
464
 
465
  #: ../admin/social_sharing.php:251
466
  #: ../admin/social_sharing.php:559
467
- #, fuzzy
468
  msgid "Logo Color"
469
- msgstr "color de fondo"
470
 
471
  #: ../admin/social_sharing.php:255
472
  #: ../admin/social_sharing.php:276
@@ -475,7 +441,7 @@ msgstr "color de fondo"
475
  #: ../admin/social_sharing.php:584
476
  #: ../admin/social_sharing.php:603
477
  msgid "Default"
478
- msgstr ""
479
 
480
  #: ../admin/social_sharing.php:257
481
  #: ../admin/social_sharing.php:277
@@ -484,63 +450,58 @@ msgstr ""
484
  #: ../admin/social_sharing.php:585
485
  #: ../admin/social_sharing.php:608
486
  msgid "On Hover"
487
- msgstr ""
488
 
489
  #: ../admin/social_sharing.php:265
490
  #: ../admin/social_sharing.php:573
491
- #, fuzzy
492
  msgid "Specify the color or hex code (example #cc78e0) for the logo of icon. Leave empty for default. You can get the hex code of the required color from <a href=\"http://www.colorpicker.com/\" target=\"_blank\">this link</a>"
493
- msgstr "Especifique el color o el código hexadecimal (ejemplo # cc78e0) para el fondo de barra de bar vertical. Dejar vacío para transparente. Puede obtener el código hexadecimal del color deseado de <a href=\"http://www.colorpicker.com/\" target=\"_blank\"> este enlace </a>"
494
 
495
  #: ../admin/social_sharing.php:273
496
  #: ../admin/social_sharing.php:581
497
  #: ../admin/social_sharing.php:1213
498
  #: ../admin/like_buttons.php:395
499
  msgid "Background Color"
500
- msgstr "color de fondo"
501
 
502
  #: ../admin/social_sharing.php:284
503
  #: ../admin/social_sharing.php:592
504
- #, fuzzy
505
  msgid "Specify the color or hex code (example #cc78e0) for icon background. Save \"transparent\" for transparent background. Leave empty for default. You can get the hex code of the required color from <a href=\"http://www.colorpicker.com/\" target=\"_blank\">this link</a>"
506
- msgstr "Especifique el color o el código hexadecimal (ejemplo # cc78e0) para el fondo de la barra de compartir vertical. Dejar vacío para transparente. Puede obtener el código hexadecimal del color deseado de <a href=\"http://www.colorpicker.com/\" target=\"_blank\"> este enlace </a>"
507
 
508
  #: ../admin/social_sharing.php:292
509
  #: ../admin/social_sharing.php:600
510
  msgid "Border"
511
- msgstr ""
512
 
513
  #: ../admin/social_sharing.php:298
514
  #: ../admin/social_sharing.php:303
515
  #: ../admin/social_sharing.php:605
516
  #: ../admin/social_sharing.php:610
517
- #, fuzzy
518
  msgid "Border Width"
519
- msgstr "Widgets y shortcodes"
520
 
521
  #: ../admin/social_sharing.php:299
522
  #: ../admin/social_sharing.php:304
523
  #: ../admin/social_sharing.php:606
524
  #: ../admin/social_sharing.php:611
525
- #, fuzzy
526
  msgid "Border Color"
527
- msgstr "color de fondo"
528
 
529
  #: ../admin/social_sharing.php:311
530
  #: ../admin/social_sharing.php:618
531
- #, fuzzy
532
  msgid "Icon border"
533
- msgstr "Icono Vista previa"
534
 
535
  #: ../admin/social_sharing.php:319
536
  #: ../admin/social_sharing.php:626
537
  msgid "Counter Position"
538
- msgstr ""
539
 
540
  #: ../admin/social_sharing.php:319
541
  #: ../admin/social_sharing.php:626
542
  msgid "(applies, if counter enabled)"
543
- msgstr ""
544
 
545
  #: ../admin/social_sharing.php:323
546
  #: ../admin/social_sharing.php:630
@@ -549,12 +510,12 @@ msgstr ""
549
  #: ../admin/like_buttons.php:170
550
  #: ../admin/like_buttons.php:417
551
  msgid "Left"
552
- msgstr "izquierda"
553
 
554
  #: ../admin/social_sharing.php:325
555
  #: ../admin/social_sharing.php:632
556
  msgid "Top"
557
- msgstr ""
558
 
559
  #: ../admin/social_sharing.php:327
560
  #: ../admin/social_sharing.php:634
@@ -562,61 +523,54 @@ msgstr ""
562
  #: ../admin/social_sharing.php:1236
563
  #: ../admin/like_buttons.php:172
564
  #: ../admin/like_buttons.php:418
565
- #, fuzzy
566
  msgid "Right"
567
- msgstr "Claro"
568
 
569
  #: ../admin/social_sharing.php:329
570
  #: ../admin/social_sharing.php:636
571
  msgid "Bottom"
572
- msgstr ""
573
 
574
  #: ../admin/social_sharing.php:331
575
  #: ../admin/social_sharing.php:638
576
  msgid "Inner Left"
577
- msgstr ""
578
 
579
  #: ../admin/social_sharing.php:333
580
  #: ../admin/social_sharing.php:640
581
  msgid "Inner Top"
582
- msgstr ""
583
 
584
  #: ../admin/social_sharing.php:335
585
  #: ../admin/social_sharing.php:642
586
- #, fuzzy
587
  msgid "Inner Right"
588
- msgstr "Claro"
589
 
590
  #: ../admin/social_sharing.php:337
591
  #: ../admin/social_sharing.php:644
592
  msgid "Inner Bottom"
593
- msgstr ""
594
 
595
  #: ../admin/social_sharing.php:345
596
  #: ../admin/social_sharing.php:652
597
- #, fuzzy
598
  msgid "Position of share counter"
599
- msgstr "Parte inferior del contenido"
600
 
601
  #: ../admin/social_sharing.php:355
602
- #, fuzzy
603
  msgid "Floating interface theme"
604
- msgstr "Horizontales Opciones para compartir la interfaz de"
605
 
606
  #: ../admin/social_sharing.php:667
607
- #, fuzzy
608
  msgid "Standard Sharing Interface Options"
609
- msgstr "Horizontales Opciones para compartir la interfaz de"
610
 
611
  #: ../admin/social_sharing.php:673
612
- #, fuzzy
613
  msgid "Enable Standard sharing interface"
614
- msgstr "Habilitar interfaz de intercambio horizontal"
615
 
616
  #: ../admin/social_sharing.php:683
617
- #, fuzzy
618
  msgid "Master control to enable standard sharing"
619
- msgstr "Control maestro para permitir el intercambio horizontal"
620
 
621
  #: ../admin/social_sharing.php:693
622
  #: ../admin/social_sharing.php:1081
@@ -630,37 +584,36 @@ msgstr "Target Url"
630
  #: ../admin/like_buttons.php:77
631
  #: ../admin/like_buttons.php:325
632
  msgid "Url of the webpage where icons are located (default)"
633
- msgstr "Url de la página web donde se encuentran los iconos (por defecto)"
634
 
635
  #: ../admin/social_sharing.php:699
636
  #: ../admin/social_sharing.php:1087
637
  #: ../admin/like_buttons.php:79
638
  #: ../admin/like_buttons.php:327
639
  msgid "Url of the homepage of your website"
640
- msgstr "Url de la página principal de su sitio web"
641
 
642
  #: ../admin/social_sharing.php:701
643
  #: ../admin/social_sharing.php:1089
644
  #: ../admin/like_buttons.php:81
645
  #: ../admin/like_buttons.php:329
646
- #, fuzzy
647
  msgid "Custom url"
648
  msgstr "Url personalizada"
649
 
650
  #: ../admin/social_sharing.php:708
651
  #: ../admin/social_sharing.php:1096
652
  msgid "Url to share"
653
- msgstr "Url compartir"
654
 
655
  #: ../admin/social_sharing.php:716
656
  #: ../admin/social_login.php:343
657
  #: ../admin/like_buttons.php:96
658
  msgid "Title"
659
- msgstr "Titulo"
660
 
661
  #: ../admin/social_sharing.php:726
662
  msgid "The text to display above the sharing interface"
663
- msgstr "El texto que se muestra por encima de la interfaz compartida "
664
 
665
  #: ../admin/social_sharing.php:738
666
  #: ../admin/social_sharing.php:1104
@@ -670,61 +623,58 @@ msgstr "Reorganizar iconos"
670
  #: ../admin/social_sharing.php:797
671
  #: ../admin/social_sharing.php:1163
672
  msgid "Drag the icons to rearrange in desired order"
673
- msgstr "Arrastre los iconos para reorganizar estos con el fin deseado "
674
 
675
  #: ../admin/social_sharing.php:805
676
  #: ../admin/social_sharing.php:1171
677
- #, fuzzy
678
  msgid "Select Sharing Services"
679
- msgstr "Seleccionar proveedores"
680
 
681
  #: ../admin/social_sharing.php:812
682
  #: ../admin/social_sharing.php:1178
683
  msgid "Select sharing services to show in social share bar"
684
- msgstr ""
685
 
686
  #: ../admin/social_sharing.php:847
687
  #: ../admin/social_sharing.php:1231
688
  #: ../admin/like_buttons.php:166
689
  #: ../admin/like_buttons.php:413
690
- #, fuzzy
691
  msgid "Horizontal alignment"
692
- msgstr "Horizontales Opciones para compartir la interfaz de"
693
 
694
  #: ../admin/social_sharing.php:852
695
  #: ../admin/like_buttons.php:171
696
  msgid "Center"
697
- msgstr "centro"
698
 
699
  #: ../admin/social_sharing.php:861
700
  #: ../admin/social_sharing.php:1244
701
- #, fuzzy
702
  msgid "Horizontal alignment of the sharing interface"
703
- msgstr "Habilitar interfaz de intercambio horizontal"
704
 
705
  #: ../admin/social_sharing.php:869
706
  #: ../admin/like_buttons.php:188
707
  msgid "Position with respect to content"
708
- msgstr "Posición con respecto al contenido"
709
 
710
  #: ../admin/social_sharing.php:873
711
  #: ../admin/like_buttons.php:192
712
  msgid "Top of the content"
713
- msgstr "Parte superior del contenido"
714
 
715
  #: ../admin/social_sharing.php:875
716
  #: ../admin/like_buttons.php:194
717
  msgid "Bottom of the content"
718
- msgstr "Parte inferior del contenido"
719
 
720
  #: ../admin/social_sharing.php:882
721
  msgid "Specify position of the sharing interface with respect to the content"
722
- msgstr "Especificar la posición de la interfaz compartir con respecto al contenido"
723
 
724
  #: ../admin/social_sharing.php:890
725
  #: ../admin/social_sharing.php:1310
726
  msgid "Placement"
727
- msgstr ""
728
 
729
  #: ../admin/social_sharing.php:894
730
  #: ../admin/social_sharing.php:1314
@@ -733,14 +683,14 @@ msgstr ""
733
  #: ../admin/like_buttons.php:213
734
  #: ../admin/like_buttons.php:496
735
  msgid "Homepage"
736
- msgstr "Página de inicio"
737
 
738
  #: ../admin/social_sharing.php:896
739
  #: ../admin/social_sharing.php:1316
740
  #: ../admin/like_buttons.php:215
741
  #: ../admin/like_buttons.php:498
742
  msgid "Posts"
743
- msgstr "Publicaciones"
744
 
745
  #: ../admin/social_sharing.php:898
746
  #: ../admin/social_sharing.php:1318
@@ -752,247 +702,232 @@ msgstr "Páginas"
752
  #: ../admin/social_sharing.php:900
753
  #: ../admin/social_sharing.php:1320
754
  msgid "Excerpts (at Homepage)"
755
- msgstr ""
756
 
757
  #: ../admin/social_sharing.php:902
758
  #: ../admin/social_sharing.php:1322
759
  #: ../admin/like_buttons.php:221
760
  #: ../admin/like_buttons.php:504
761
  msgid "Category Archives"
762
- msgstr "Archivos de la categoría"
763
 
764
  #: ../admin/social_sharing.php:904
765
  #: ../admin/social_sharing.php:1324
766
  #: ../admin/like_buttons.php:223
767
  #: ../admin/like_buttons.php:506
768
  msgid "Archive Pages (Category, Tag, Author or Date based pages)"
769
- msgstr "Archivo Páginas (Categoría, Tag, Autor o páginas Fecha basado)"
770
 
771
  #: ../admin/social_sharing.php:920
772
  #: ../admin/like_buttons.php:239
773
- #, fuzzy
774
  msgid "BuddyPress activity"
775
- msgstr "Actividad y grupos BuddyPress"
776
 
777
  #: ../admin/social_sharing.php:922
778
  #: ../admin/like_buttons.php:242
779
  msgid "BuddyPress group (only at top of content)"
780
- msgstr ""
781
 
782
  #: ../admin/social_sharing.php:928
783
  #: ../admin/social_sharing.php:1346
784
  #: ../admin/like_buttons.php:249
785
  #: ../admin/like_buttons.php:527
786
  msgid "BBPress forum"
787
- msgstr "foro BBPress"
788
 
789
  #: ../admin/social_sharing.php:931
790
  #: ../admin/social_sharing.php:1349
791
  #: ../admin/like_buttons.php:252
792
  #: ../admin/like_buttons.php:530
793
  msgid "BBPress topic"
794
- msgstr "tema BBPress"
795
 
796
  #: ../admin/social_sharing.php:934
797
  #: ../admin/like_buttons.php:255
798
  msgid "BBPress reply"
799
- msgstr "BBPress respuesta"
800
 
801
  #: ../admin/social_sharing.php:941
802
  #: ../admin/like_buttons.php:261
803
  msgid "After individual product at WooCommerce Shop page"
804
- msgstr "Después de cada producto en la página WooCommerce Shop"
805
 
806
  #: ../admin/social_sharing.php:944
807
  #: ../admin/like_buttons.php:264
808
  msgid "WooCommerce Product Page"
809
- msgstr "WooCommerce Product Page"
810
 
811
  #: ../admin/social_sharing.php:947
812
  #: ../admin/like_buttons.php:267
813
  msgid "WooCommerce Thankyou Page"
814
- msgstr "WooCommerce Gracias Página"
815
 
816
  #: ../admin/social_sharing.php:958
817
  msgid "Specify the pages where you want to enable Sharing interface"
818
- msgstr "Especifique las páginas en las que desee habilitar la interfaz Uso compartido"
819
 
820
  #: ../admin/social_sharing.php:966
821
  #: ../admin/social_sharing.php:1367
822
  msgid "Show share counts"
823
- msgstr "conteos muestran acciones"
824
 
825
  #: ../admin/social_sharing.php:971
826
  #: ../admin/social_sharing.php:1372
827
  msgid "Official share counts are supported for Facebook, Linkedin, GooglePlus, Delicious, Buffer, Reddit, Pinterest, Stumbleupon and Vkontakte"
828
- msgstr ""
829
 
830
  #: ../admin/social_sharing.php:988
831
  #: ../admin/social_sharing.php:1380
832
  #, php-format
833
  msgid "Use <a href=\"%s\" target=\"_blank\">NewShareCounts</a> to show Twitter share counts"
834
- msgstr ""
835
 
836
  #: ../admin/social_sharing.php:990
837
  #: ../admin/social_sharing.php:1382
838
- #, fuzzy, php-format
839
  msgid "For this to work, you have to enter your website url %s and sign in using Twitter at <a href=\"%s\" target=\"_blank\">their website</a>"
840
- msgstr "Para utilizar esta función, siga los pasos mencionados en <a href=\"%s\" target=\"_blank\">este enlace</ a>"
841
 
842
  #: ../admin/social_sharing.php:992
843
  #: ../admin/social_sharing.php:1384
844
  #, php-format
845
  msgid "Use <a href=\"%s\" target=\"_blank\">OpenShareCount</a> to show Twitter share counts"
846
- msgstr ""
847
 
848
  #: ../admin/social_sharing.php:994
849
  #: ../admin/social_sharing.php:1386
850
- #, fuzzy, php-format
851
  msgid "For this to work, you have to sign up and register your website url %s at <a href=\"%s\" target=\"_blank\">their website</a>"
852
- msgstr "Para utilizar esta función, siga los pasos mencionados en <a href=\"%s\" target=\"_blank\">este enlace</ a>"
853
 
854
  #: ../admin/social_sharing.php:1001
855
  #: ../admin/social_sharing.php:1393
856
  msgid "If enabled, share counts are displayed above sharing icons."
857
- msgstr "Si está habilitado, el recuento de acciones se muestran por encima de los iconos para compartir."
858
 
859
  #: ../admin/social_sharing.php:1010
860
  #: ../admin/social_sharing.php:1402
861
- #, fuzzy
862
  msgid "Show total shares"
863
- msgstr "conteos muestran acciones"
864
 
865
  #: ../admin/social_sharing.php:1020
866
  #: ../admin/social_sharing.php:1412
867
- #, fuzzy
868
  msgid "If enabled, total shares will be displayed with sharing icons"
869
- msgstr "Si está habilitado, el recuento de acciones se muestran por encima de los iconos para compartir."
870
 
871
  #: ../admin/social_sharing.php:1029
872
  #: ../admin/social_sharing.php:1421
873
- #, fuzzy
874
  msgid "Enable 'More' icon"
875
- msgstr "Habilitar verificación de correo electrónico"
876
 
877
  #: ../admin/social_sharing.php:1039
878
  #: ../admin/social_sharing.php:1431
879
  msgid "If enabled, \"More\" icon will be displayed after selected sharing icons which shows additional sharing networks in popup"
880
- msgstr "Si se activa, icono \"Más\" se mostrará iconos de intercambio después de seleccionados que muestra las redes de intercambio adicionales en popup"
881
 
882
  #: ../admin/social_sharing.php:1055
883
- #, fuzzy
884
  msgid "Floating Sharing Interface Options"
885
- msgstr "Vertical (flotante) Opciones de interfaz compartir"
886
 
887
  #: ../admin/social_sharing.php:1061
888
- #, fuzzy
889
  msgid "Enable Floating sharing interface"
890
- msgstr "Habilitar vertical (flotante) interfaz compartida"
891
 
892
  #: ../admin/social_sharing.php:1071
893
- #, fuzzy
894
  msgid "Master control to enable floating sharing widget"
895
- msgstr "Control maestro para permitir vertical (flotante) widget de intercambio"
896
 
897
  #: ../admin/social_sharing.php:1223
898
  msgid "Specify the color or hex code (example #cc78e0) for the background of vertical sharing bar. Leave empty for transparent. You can get the hex code of the required color from <a href=\"http://www.colorpicker.com/\" target=\"_blank\">this link</a>"
899
- msgstr "Especifique el color o el código hexadecimal (ejemplo # cc78e0) para el fondo de la barra de compartir vertical. Dejar vacío para transparente. Puede obtener el código hexadecimal del color deseado de <a href=\"http://www.colorpicker.com/\" target=\"_blank\"> este enlace </a>"
900
 
901
  #: ../admin/social_sharing.php:1253
902
  #: ../admin/like_buttons.php:435
903
  msgid "Left offset"
904
- msgstr "desplazamiento izquierda"
905
 
906
  #: ../admin/social_sharing.php:1263
907
- #, fuzzy
908
  msgid "Specify a number. Increase in number will shift sharing interface towards right and decrease will shift it towards left. Number can be negative too."
909
- msgstr "Especifique un número. Aumento del número cambiará interfaz compartida hacia la derecha y la disminución se desplazará hacia la izquierda."
910
 
911
  #: ../admin/social_sharing.php:1273
912
  #: ../admin/like_buttons.php:455
913
- #, fuzzy
914
  msgid "Right offset"
915
- msgstr "desplazamiento izquierda"
916
 
917
  #: ../admin/social_sharing.php:1283
918
- #, fuzzy
919
  msgid "Specify a number. Increase in number will shift sharing interface towards left and decrease will shift it towards right. Number can be negative too."
920
- msgstr "Especifique un número. Aumento del número cambiará interfaz compartida hacia la derecha y la disminución se desplazará hacia la izquierda."
921
 
922
  #: ../admin/social_sharing.php:1292
923
  #: ../admin/like_buttons.php:474
924
  msgid "Top offset"
925
- msgstr "superior compensar"
926
 
927
  #: ../admin/social_sharing.php:1302
928
  msgid "Specify a number. Increase in number will shift sharing interface towards bottom and decrease will shift it towards top."
929
- msgstr "Especifique un número. Aumento del número cambiará compartir la interfaz hacia la parte inferior y el descenso se desplazará hacia la parte superior."
930
 
931
  #: ../admin/social_sharing.php:1338
932
  #: ../admin/like_buttons.php:520
933
- #, fuzzy
934
  msgid "BuddyPress group"
935
- msgstr "Página de perfil BuddyPress"
936
 
937
  #: ../admin/social_sharing.php:1359
938
  msgid "Specify the pages where you want to enable vertical Sharing interface"
939
- msgstr "Especifique las páginas en las que desee habilitar la interfaz Uso compartido verticales"
940
 
941
  #: ../admin/social_sharing.php:1439
942
- #, fuzzy
943
  msgid "Vertical floating bar responsiveness"
944
- msgstr "Vertical (flotante) Opciones de interfaz compartir"
945
 
946
  #: ../admin/social_sharing.php:1442
947
  #, php-format
948
  msgid "Display vertical interface only when screen is wider than %s pixels"
949
- msgstr ""
950
 
951
  #: ../admin/social_sharing.php:1449
952
  msgid "Display vertical interface only when screen is wider than the width specified."
953
- msgstr ""
954
 
955
  #: ../admin/social_sharing.php:1457
956
  msgid "Horizontal floating bar responsiveness"
957
- msgstr ""
958
 
959
  #: ../admin/social_sharing.php:1460
960
- #, fuzzy, php-format
961
  msgid "Stick vertical floating interface horizontally at bottom only when screen is narrower than %s pixels"
962
- msgstr "Si se activa, la interfaz de intercambio vertical no aparecerá en los dispositivos móviles"
963
 
964
  #: ../admin/social_sharing.php:1467
965
  msgid "Stick vertical floating interface horizontally at bottom only when screen is narrower than the width specified"
966
- msgstr ""
967
 
968
  #: ../admin/social_sharing.php:1477
969
- #, fuzzy
970
  msgid "Horizontal floating bar position"
971
- msgstr "Horizontales Opciones para compartir la interfaz de"
972
 
973
  #: ../admin/social_sharing.php:1480
974
  #, php-format
975
  msgid "%s pixels from %s"
976
- msgstr ""
977
 
978
  #: ../admin/social_sharing.php:1487
979
  msgid "Alignment of horizontal floating interface. Number can be negative too."
980
- msgstr ""
981
 
982
  #: ../admin/social_sharing.php:1506
983
  #: ../admin/like_buttons.php:576
984
- #, fuzzy
985
  msgid "Url shortener"
986
- msgstr "bit.ly url acortador"
987
 
988
  #: ../admin/social_sharing.php:1512
989
  msgid "Use shortlinks already installed"
990
- msgstr "Use shortlinks ya instalados"
991
 
992
  #: ../admin/social_sharing.php:1522
993
- #: ../admin/like_buttons.php:592
994
- msgid "Allows for shortened URLs to be used when sharing content if a shortening plugin is installed"
995
- msgstr "Permite URLs acortadas que se usará al compartir contenido, si se instala un plugin acortamiento"
996
 
997
  #: ../admin/social_sharing.php:1530
998
  msgid "Enable bit.ly url shortener for sharing"
@@ -1000,220 +935,235 @@ msgstr "Habilitar acortador de url bit.ly para compartir"
1000
 
1001
  #: ../admin/social_sharing.php:1540
1002
  #: ../admin/like_buttons.php:610
1003
- #, fuzzy
1004
  msgid "Master control to enable bit.ly url shortening for sharing"
1005
- msgstr "Control maestro para permitir el intercambio horizontal"
1006
 
1007
  #: ../admin/social_sharing.php:1548
1008
  #: ../admin/like_buttons.php:618
1009
  msgid "bit.ly username"
1010
- msgstr "bit.ly nombre de usuario"
1011
 
1012
  #: ../admin/social_sharing.php:1558
1013
  #: ../admin/like_buttons.php:628
1014
- #, fuzzy, php-format
1015
  msgid "Login to your bit.ly account and navigate to <a href=\"%s\" target=\"_blank\">this link</a> to get bit.ly username"
1016
- msgstr "Requerido para que funcione Twitter Social Login. Por favor, siga la documentación <a href=\"%s\" target=\"_blank\">en este enlace</a> para obtener Twitter Secreto del Consumidor"
1017
 
1018
  #: ../admin/social_sharing.php:1567
1019
  #: ../admin/like_buttons.php:637
1020
- #, fuzzy
1021
  msgid "bit.ly API Key"
1022
- msgstr "Clave Consumidor Twitter"
1023
 
1024
  #: ../admin/social_sharing.php:1577
1025
  #: ../admin/like_buttons.php:647
1026
- #, fuzzy, php-format
1027
  msgid "Login to your bit.ly account and navigate to <a href=\"%s\" target=\"_blank\">this link</a> to get your API key"
1028
- msgstr "Requerida para que funcione Twitter Social Login. Por favor, siga la documentación <a href=\"%s\" target=\"_blank\"> en este enlace</a> para obtener su Clave Consumidor Twitter"
 
 
 
 
 
1029
 
1030
  #: ../admin/social_sharing.php:1590
1031
  #: ../admin/like_buttons.php:660
1032
- #, fuzzy
1033
  msgid "ShortUrl cache cleared successfully."
1034
- msgstr "Opciones guardadas correctamente"
1035
 
1036
  #: ../admin/social_sharing.php:1597
1037
  #: ../admin/like_buttons.php:667
1038
  msgid "Use this to delete short urls saved in database. Handy, if urls of your website have been changed but short urls are still being generated for old urls."
1039
- msgstr ""
1040
 
1041
  #: ../admin/social_sharing.php:1606
 
 
 
1042
  #: ../admin/social_sharing.php:1612
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1043
  #: ../admin/social_commenting.php:311
1044
  #: ../admin/like_buttons.php:676
1045
  #: ../admin/like_buttons.php:682
1046
  msgid "Language"
1047
  msgstr "Idioma"
1048
 
1049
- #: ../admin/social_sharing.php:1622
1050
- #, fuzzy, php-format
1051
  msgid "Enter the code of the language you want to use for like buttons. You can find the language codes at <a href=\"%s\" target=\"_blank\">this link</a>. Leave it empty for default language(English)"
1052
- msgstr "Introduzca el código del idioma que desea utilizar para mostrar los comentarios. Usted puede encontrar los códigos de idioma en <a href=\"%s\" target=\"_blank\"> este enlace </ a>. Déjelo vacío para el idioma predeterminado (Inglés)"
1053
 
1054
- #: ../admin/social_sharing.php:1631
1055
- #, fuzzy
1056
  msgid "Username in sharing"
1057
- msgstr "Twitter nombre de usuario en el intercambio"
1058
 
1059
- #: ../admin/social_sharing.php:1637
1060
  msgid "Twitter username (without @)"
1061
- msgstr "Twitter nombre de usuario (sin @)"
1062
 
1063
- #: ../admin/social_sharing.php:1647
1064
- #: ../admin/social_sharing.php:1666
1065
  msgid "Provided username will be appended after the content being shared as \"via @USERNAME\". Leave empty if you do not want any username in the content being shared."
1066
- msgstr "Nombre de usuario proporcionado se añadirá después del contenido que se comparte como \"a travésUSERNAME\". Dejar vacío si no desea que cualquier nombre de usuario en el contenido que se comparte."
1067
 
1068
- #: ../admin/social_sharing.php:1656
1069
- #, fuzzy
1070
  msgid "Buffer username (without @)"
1071
- msgstr "Twitter nombre de usuario (sin @)"
1072
 
1073
- #: ../admin/social_sharing.php:1693
1074
  msgid "Facebook Sharing Troubleshooter"
1075
- msgstr "Facebook Sharing Solucionador de problemas"
1076
 
1077
- #: ../admin/social_sharing.php:1698
1078
  msgid "If Facebook sharing is not working fine, click at the following link and enter the problematic url (where Facebook sharing is not working properly) of your website in the text field:"
1079
- msgstr "Si Facebook compartir no está funcionando bien, haga clic en el siguiente enlace e introduzca la url problemático (donde compartir en Facebook no funciona correctamente) de su sitio web en el campo de texto:"
1080
 
1081
- #: ../admin/social_sharing.php:1714
1082
  msgid "How can I show share counts of my website rather than of individual pages/posts?"
1083
- msgstr "¿Cómo puedo mostrar comparten cargos de mi sitio web y no de páginas individuales / mensajes?"
1084
 
1085
- #: ../admin/social_sharing.php:1715
1086
- #, fuzzy
1087
  msgid "How can I disable sharing on particular page/post?"
1088
- msgstr "¿Cómo puedo mostrar comparten cargos de mi sitio web y no de páginas individuales / mensajes?"
1089
 
1090
- #: ../admin/social_sharing.php:1716
1091
  msgid "How can I specify minimum sharing count for sharing networks?"
1092
- msgstr "¿Cómo puedo especificar conteo mínimo compartido para las redes de intercambio?"
1093
 
1094
- #: ../admin/social_sharing.php:1717
1095
  msgid "How to share specific page?"
1096
- msgstr ""
1097
 
1098
- #: ../admin/social_sharing.php:1718
1099
  msgid "How to integrate Google Analytics with sharing?"
1100
- msgstr ""
1101
 
1102
- #: ../admin/social_sharing.php:1719
1103
  msgid "How to customize the look of total share counts?"
1104
- msgstr ""
1105
 
1106
- #: ../admin/social_sharing.php:1720
1107
- #, fuzzy
1108
  msgid "How to customize the look of individual share counts?"
1109
- msgstr "conteos muestran acciones"
1110
 
1111
- #: ../admin/social_sharing.php:1721
1112
- #, fuzzy
1113
  msgid "How to show Whatsapp icon only on mobile devices?"
1114
- msgstr "Ocultar compartir en dispositivos móviles"
 
 
 
 
1115
 
1116
  #: ../admin/social_commenting.php:13
1117
- #, fuzzy
1118
  msgid "Enable Social Commenting"
1119
- msgstr "Habilitar Social Login"
1120
 
1121
  #: ../admin/social_commenting.php:23
1122
- #, fuzzy
1123
  msgid "Master control to enable Social Commenting"
1124
- msgstr "Control maestro para permitir el intercambio horizontal"
1125
 
1126
  #: ../admin/social_commenting.php:34
1127
- #, fuzzy
1128
  msgid "Social Commenting"
1129
- msgstr "Comentarios Facebook"
1130
 
1131
  #: ../admin/social_commenting.php:35
1132
  #: ../admin/social_commenting.php:440
1133
  msgid "Shortcode"
1134
- msgstr "Shortcodes"
1135
 
1136
  #: ../admin/social_commenting.php:48
1137
  msgid "Order of tabs in commenting interface"
1138
- msgstr "Orden de pestañas en la interfaz comentar"
1139
 
1140
  #: ../admin/social_commenting.php:58
1141
  msgid "Order of the tabs shown in social commenting interface. Defaults to wordpress,facebook,googleplus,disqus"
1142
- msgstr "Orden de las pestañas que se muestran en la interfaz comentando social. Por defecto es wordpress,facebook,googleplus,disqus"
1143
 
1144
  #: ../admin/social_commenting.php:66
1145
  msgid "Comment area label"
1146
- msgstr "Etiqueta área Comentario"
1147
 
1148
  #: ../admin/social_commenting.php:76
1149
- #, fuzzy
1150
  msgid "Label for comment area"
1151
- msgstr "Comentarios Facebook"
1152
 
1153
  #: ../admin/social_commenting.php:89
1154
- #, fuzzy
1155
  msgid "Enable Social Commenting at"
1156
- msgstr "Habilitar Social Login"
1157
 
1158
  #: ../admin/social_commenting.php:108
1159
- #, fuzzy
1160
  msgid "Specify the page/post groups where you want to enable Social Commenting"
1161
- msgstr "Especifique las páginas en las que desee habilitar la interfaz Uso compartido"
1162
 
1163
  #: ../admin/social_commenting.php:119
1164
  msgid "HTML ID of comment form container"
1165
- msgstr "Identificación HTML del formulario de comentarios de contenedores"
1166
 
1167
  #: ../admin/social_commenting.php:129
1168
  msgid "HTML ID of container element of the default comment form at front end. Leave empty for default ID - \"respond\". You need to specify it if default comment form is appearing and Social Commenting is not getting enabled at front-end of your website."
1169
- msgstr "Identificación HTML del elemento contenedor de la forma de comentario por defecto en el extremo delantero. Dejar en blanco para el ID por defecto - \"responder\". Es necesario especificar si el formulario de comentarios por defecto está apareciendo y comentar Social no está consiguiendo permitido al front-end de su sitio web."
1170
 
1171
  #: ../admin/social_commenting.php:139
1172
  msgid "Labels"
1173
  msgstr "Etiquetas"
1174
 
1175
  #: ../admin/social_commenting.php:144
1176
- #, fuzzy
1177
  msgid "Label for WordPress Commenting tab"
1178
- msgstr "WordPress Comentarios"
1179
 
1180
  #: ../admin/social_commenting.php:153
1181
- #, fuzzy
1182
  msgid "Label for Facebook Commenting tab"
1183
- msgstr "Habilitar Comentarios Facebook"
1184
 
1185
  #: ../admin/social_commenting.php:162
1186
- #, fuzzy
1187
  msgid "Label for G+ Commenting tab"
1188
- msgstr "Comentarios Facebook"
1189
 
1190
  #: ../admin/social_commenting.php:171
1191
  msgid "Label for Disqus Commenting tab"
1192
- msgstr "Etiqueta para pestaña Comentando Disqus"
1193
 
1194
  #: ../admin/social_commenting.php:182
1195
  msgid "Facebook Commenting Options"
1196
- msgstr "Opciones de Comentarios Facebook"
1197
 
1198
  #: ../admin/social_commenting.php:188
1199
- #, fuzzy
1200
  msgid "Enable Facebook Comments notification and moderation"
1201
- msgstr "Habilitar Comentarios Facebook"
1202
 
1203
  #: ../admin/social_commenting.php:196
1204
  #: ../admin/social_commenting.php:206
1205
  msgid "Enable Facebook Commenting"
1206
- msgstr "Habilitar Comentarios Facebook"
1207
 
1208
  #: ../admin/social_commenting.php:214
1209
  #: ../admin/social_commenting.php:372
1210
  msgid "Url to comment on"
1211
- msgstr "URL donde comentar"
1212
 
1213
  #: ../admin/social_commenting.php:224
1214
- #, fuzzy
1215
  msgid "The absolute URL that comments posted will be permanently associated with. Stories on Facebook about comments posted, will link to this URL.<br/>If left empty <strong>(Recommended)</strong>, url of the webpage will be used at which commenting is enabled."
1216
- msgstr "La URL absoluta a la que los comentarios publicados en el plugin se asociarán permanentemente. Historias en Facebook acerca de los comentarios publicados en el plugin se enlazarán a esta URL.<br/> Si se deja en blanco <strong>(recomendado)</strong>, se utilizará la URL de la página web en la que se habilita comentar"
1217
 
1218
  #: ../admin/social_commenting.php:232
1219
  #: ../admin/social_commenting.php:354
@@ -1222,11 +1172,11 @@ msgstr "Ancho"
1222
 
1223
  #: ../admin/social_commenting.php:242
1224
  msgid "Leave empty to auto-adjust the width. The width (in pixels) of the Comments block."
1225
- msgstr "Dejar en blanco para la auto-ajustar el ancho. El ancho (en píxeles) del bloque de comentarios."
1226
 
1227
  #: ../admin/social_commenting.php:250
1228
  msgid "Color Scheme"
1229
- msgstr "Esquema de colores"
1230
 
1231
  #: ../admin/social_commenting.php:254
1232
  msgid "Light"
@@ -1234,20 +1184,19 @@ msgstr "Claro"
1234
 
1235
  #: ../admin/social_commenting.php:255
1236
  msgid "Dark"
1237
- msgstr "Obscuro"
1238
 
1239
  #: ../admin/social_commenting.php:263
1240
  msgid "The color scheme used by the plugin. Can be \"light\" or \"dark\"."
1241
- msgstr "El esquema de color usado por el plugin. Puede ser \"\"claro\"\" u \"\"obscuro\"\"."
1242
 
1243
  #: ../admin/social_commenting.php:271
1244
- #, fuzzy
1245
  msgid "Number of comments"
1246
- msgstr "Número de publicaciones"
1247
 
1248
  #: ../admin/social_commenting.php:281
1249
  msgid "The number of comments to show by default. The minimum value is 1. Defaults to 10"
1250
- msgstr "El número de comentarios para mostrar por defecto. El valor mínimo es 1. El valor predeterminado es 10"
1251
 
1252
  #: ../admin/social_commenting.php:289
1253
  msgid "Order by"
@@ -1259,400 +1208,381 @@ msgstr "Social"
1259
 
1260
  #: ../admin/social_commenting.php:294
1261
  msgid "Reverse Time"
1262
- msgstr "Revertir tiempo"
1263
 
1264
  #: ../admin/social_commenting.php:295
1265
  msgid "Time"
1266
- msgstr "Tiempo"
1267
 
1268
  #: ../admin/social_commenting.php:303
1269
  msgid "The order to use when displaying comments."
1270
- msgstr "El orden a utilizar cuando se muestran los comentarios."
1271
 
1272
  #: ../admin/social_commenting.php:321
1273
  #, php-format
1274
  msgid "Enter the code of the language you want to use to display commenting. You can find the language codes at <a href=\"%s\" target=\"_blank\">this link</a>. Leave it empty for default language(English)"
1275
- msgstr "Introduzca el código del idioma que desea utilizar para mostrar los comentarios. Usted puede encontrar los códigos de idioma en <a href=\"%s\" target=\"_blank\"> este enlace </ a>. Déjelo vacío para el idioma predeterminado (Inglés)"
1276
 
1277
  #: ../admin/social_commenting.php:330
1278
- #, fuzzy
1279
  msgid "Google Plus Commenting Options"
1280
- msgstr "Opciones de Comentarios Facebook"
1281
 
1282
  #: ../admin/social_commenting.php:336
1283
  #: ../admin/social_commenting.php:346
1284
- #, fuzzy
1285
  msgid "Enable Google Plus Commenting"
1286
- msgstr "Habilitar Comentarios Facebook"
1287
 
1288
  #: ../admin/social_commenting.php:364
1289
  msgid "Width of GooglePlus Commenting interface. Leave empty for auto adjust"
1290
- msgstr "Ancho de la interfaz Comentando GooglePlus. Dejar en blanco para el ajuste automático"
1291
 
1292
  #: ../admin/social_commenting.php:382
1293
- #, fuzzy
1294
  msgid "The absolute URL that comments posted will be permanently associated with. Stories on Google Plus about comments posted, will link to this URL.<br/>If left empty <strong>(Recommended)</strong>, url of the webpage will be used at which commenting is enabled."
1295
- msgstr "La URL absoluta a la que los comentarios publicados en el plugin se asociarán permanentemente. Historias en Facebook acerca de los comentarios publicados en el plugin se enlazarán a esta URL.<br/> Si se deja en blanco <strong>(recomendado)</strong>, se utilizará la URL de la página web en la que se habilita comentar"
1296
 
1297
  #: ../admin/social_commenting.php:391
1298
- #, fuzzy
1299
  msgid "Disqus Commenting Options"
1300
- msgstr "Opciones de Comentarios Facebook"
1301
 
1302
  #: ../admin/social_commenting.php:397
1303
  #: ../admin/social_commenting.php:407
1304
- #, fuzzy
1305
  msgid "Enable Disqus Commenting"
1306
- msgstr "Habilitar Comentarios Facebook"
1307
 
1308
  #: ../admin/social_commenting.php:415
1309
  msgid "Disqus Shortname"
1310
- msgstr ""
1311
 
1312
  #: ../admin/social_commenting.php:425
1313
- #, fuzzy
1314
  msgid "<strong>Required to use Disqus commenting.</strong> For more info on shortname, visit following link."
1315
- msgstr "<strong>Necesario para utilizar Disqus comentar.</strong> Lo puedes encontrar en la sección de configuración del plugin Disqus como se muestra en la siguiente imagen"
1316
 
1317
  #: ../admin/social_commenting.php:442
1318
- #, fuzzy
1319
  msgid "Social Commenting Shortcode"
1320
- msgstr "Comentarios Facebook"
1321
 
1322
  #: ../admin/social_commenting.php:454
1323
- #, fuzzy
1324
  msgid "How can I disable Social Commenting at individual page/post?"
1325
- msgstr "¿Cómo puedo mostrar comparten cargos de mi sitio web y no de páginas individuales / mensajes?"
1326
 
1327
  #: ../admin/social_commenting.php:455
1328
  msgid "How to disable default comment form from Social Commenting?"
1329
- msgstr "Cómo desactivar la forma de comentario por defecto desde Comentando Social?"
1330
 
1331
  #: ../admin/social_login.php:14
1332
  msgid "Enable Social Login"
1333
- msgstr "Habilitar Social Login"
1334
 
1335
  #: ../admin/social_login.php:24
1336
  msgid "Master control for Social Login. It must be checked to enable Social Login functionality"
1337
- msgstr "Control Maestro para Social Login. Debe comprobarse para permitir la funcionalidad de Social Login"
1338
 
1339
  #: ../admin/social_login.php:35
1340
  #: ../admin/social_login.php:43
1341
  msgid "Basic Configuration"
1342
- msgstr "Configuración Básica"
1343
 
1344
  #: ../admin/social_login.php:36
1345
  msgid "Social Login"
1346
- msgstr "Social Login"
1347
 
1348
  #: ../admin/social_login.php:50
1349
  msgid "Disable user registration via Social Login"
1350
- msgstr "Registro de usuario Desactivar través Social Login"
1351
 
1352
  #: ../admin/social_login.php:60
1353
  msgid "After enabling this option, new users will not be able to login through social login. Only existing users will be able to social login."
1354
- msgstr "Después de habilitar esta opción, los nuevos usuarios no podrán acceder a través de conexión social. Sólo los usuarios existentes podrán entrada social."
1355
 
1356
  #: ../admin/social_login.php:69
1357
- #, fuzzy
1358
  msgid "Redirection url"
1359
- msgstr "Redireccionamiento de inicio de sesión"
1360
 
1361
  #: ../admin/social_login.php:79
1362
  msgid "User will be redirected to this page after unsuccessful registration attempt via Social Login. You can specify the url of registration form or of a page showing message regarding disabled registration through Social Login."
1363
- msgstr "Usuario será redirigido a esta página después de intento de registro sin éxito a través de Social Login. Puede especificar la url del formulario de registro o de un mensaje de la página que muestra con respecto al registro discapacitados a través de Social Login."
1364
 
1365
  #: ../admin/social_login.php:88
1366
  msgid "Select providers"
1367
- msgstr "Seleccionar proveedores"
1368
 
1369
  #: ../admin/social_login.php:93
1370
  msgid "Facebook"
1371
- msgstr ""
1372
 
1373
  #: ../admin/social_login.php:97
1374
  msgid "Twitter"
1375
- msgstr ""
1376
 
1377
  #: ../admin/social_login.php:101
1378
  msgid "LinkedIn"
1379
- msgstr ""
1380
 
1381
  #: ../admin/social_login.php:105
1382
  msgid "Google+"
1383
- msgstr ""
1384
 
1385
  #: ../admin/social_login.php:109
1386
  msgid "Vkontakte"
1387
- msgstr ""
1388
 
1389
  #: ../admin/social_login.php:113
1390
  msgid "Instagram"
1391
- msgstr ""
1392
 
1393
  #: ../admin/social_login.php:117
1394
  msgid "Xing"
1395
- msgstr ""
1396
 
1397
  #: ../admin/social_login.php:125
1398
  msgid "Select Social ID provider to enable in Social Login"
1399
- msgstr "Seleccione un proveedor de Identificación Social para habilitarse en Social Login"
1400
 
1401
  #: ../admin/social_login.php:133
1402
  msgid "Facebook App ID"
1403
- msgstr "ID de App. Facebook"
1404
 
1405
  #: ../admin/social_login.php:143
1406
  #, php-format
1407
  msgid "Required for Facebook Social Login to work. Please follow the documentation at <a href=\"%s\" target=\"_blank\">this link</a> to get Facebook App ID"
1408
- msgstr "Necesario para que funcione Facebook Social Login. Por favor, siga la documentación <a href=\"%s\" target=\"_blank\">en este enlace</a> para obtener ID de App. Facebook"
1409
 
1410
  #: ../admin/social_login.php:145
1411
  msgid "Paste following url in <strong>Site URL</strong> option at the link mentioned"
1412
- msgstr "Pegue siguiente url en <strong>Site URL</ strong> en el enlace mencionado"
1413
 
1414
  #: ../admin/social_login.php:155
1415
- #, fuzzy
1416
  msgid "Twitter API Key"
1417
- msgstr "Clave Consumidor Twitter"
1418
 
1419
  #: ../admin/social_login.php:165
1420
- #, fuzzy, php-format
1421
  msgid "Required for Twitter Social Login to work. Please follow the documentation at <a href=\"%s\" target=\"_blank\">this link</a> to get Twitter API Key"
1422
- msgstr "Requerida para que funcione Twitter Social Login. Por favor, siga la documentación <a href=\"%s\" target=\"_blank\"> en este enlace</a> para obtener su Clave Consumidor Twitter"
1423
 
1424
  #: ../admin/social_login.php:167
1425
  #: ../admin/social_login.php:189
1426
  msgid "Paste following url in <strong>Website</strong> and <strong>Callback URL</strong> options at the link mentioned"
1427
- msgstr "Pegue siguiente url en <strong>Website</strong> y <strong>Callback URL</ strong> Opciones en el enlace mencionado"
1428
 
1429
  #: ../admin/social_login.php:177
1430
- #, fuzzy
1431
  msgid "Twitter API Secret"
1432
- msgstr "Twitter Secreto del Consumidor"
1433
 
1434
  #: ../admin/social_login.php:187
1435
- #, fuzzy, php-format
1436
  msgid "Required for Twitter Social Login to work. Please follow the documentation at <a href=\"%s\" target=\"_blank\">this link</a> to get Twitter API Secret"
1437
- msgstr "Requerido para que funcione Twitter Social Login. Por favor, siga la documentación <a href=\"%s\" target=\"_blank\">en este enlace</a> para obtener Twitter Secreto del Consumidor"
1438
 
1439
  #: ../admin/social_login.php:199
1440
  msgid "LinkedIn API Key"
1441
- msgstr "Clave LinkedIn API"
1442
 
1443
  #: ../admin/social_login.php:209
1444
  #, php-format
1445
  msgid "Required for LinkedIn Social Login to work. Please follow the documentation at <a href=\"%s\" target=\"_blank\">this link</a> to get LinkedIn API Key"
1446
- msgstr "Requerida para que funcione LinkedIn Social Login. Por favor, siga la documentación <a href=\"%s\" target=\"_blank\">en este enlace</a> para obtener su Clave LinkedIn API"
1447
 
1448
  #: ../admin/social_login.php:211
1449
  #: ../admin/social_login.php:277
1450
  msgid "Paste following url in <strong>Website URL</strong> option at the link mentioned"
1451
- msgstr "Pegar siguiente url en <strong>Website URL</strong> en el enlace mencionado"
1452
 
1453
  #: ../admin/social_login.php:221
1454
  msgid "Google+ Client ID"
1455
- msgstr "ID Cliente Google+"
1456
 
1457
  #: ../admin/social_login.php:231
1458
  #, php-format
1459
  msgid "Required for GooglePlus Social Login to work. Please follow the documentation at <a href=\"%s\" target=\"_blank\">this link</a> to get GooglePlus Client ID"
1460
- msgstr "Requerida para que funcione GooglePlus Social Login. Por favor, siga la documentación <a href=\"%s\" target=\"_blank\">en este enlace</a> para obtener ID Cliente GooglePlus"
1461
 
1462
  #: ../admin/social_login.php:233
1463
  msgid "Paste following url in <strong>AUTHORIZED JAVASCRIPT ORIGINS</strong> and <strong>AUTHORIZED REDIRECT URI</strong> options at the link mentioned"
1464
- msgstr "Pegar siguiente url en <strong>AUTHORIZED JAVASCRIPT ORIGINS</ strong> y <strong>AUTHORIZED REDIRECT URI</ strong> Opciones en el enlace mencionado"
1465
 
1466
  #: ../admin/social_login.php:243
1467
  msgid "Vkontakte Application ID"
1468
- msgstr "ID de App. Vkontakte"
1469
 
1470
  #: ../admin/social_login.php:253
1471
  #, php-format
1472
  msgid "Required for Vkontakte Social Login to work. Please follow the documentation at <a href=\"%s\" target=\"_blank\">this link</a> to get Vkontakte Application ID"
1473
- msgstr "Requerida para que funcione Vkontakte Social Login. Por favor, siga la documentación <a href=\"%s\" target=\"_blank\">en este enlace</a> para obtener ID de app Vkontakte"
1474
 
1475
  #: ../admin/social_login.php:255
1476
  msgid "Paste following url in <strong>Site address</strong> option at the link mentioned"
1477
- msgstr "Pegar siguiente url en <strong>Site address</ strong> en el enlace mencionado"
1478
 
1479
  #: ../admin/social_login.php:265
1480
  msgid "Instagram Client ID"
1481
- msgstr "ID Cliente Instagram"
1482
 
1483
  #: ../admin/social_login.php:275
1484
  #, php-format
1485
  msgid "Required for Instagram Social Login to work. Please follow the documentation at <a href=\"%s\" target=\"_blank\">this link</a> to get Instagram Client ID"
1486
- msgstr "Requerida para que funcione Instagram Social Login. Por favor, siga la documentación <a href=\"%s\" target=\"_blank\">en este enlace</a> para obtener ID Cliente Instagram"
1487
 
1488
  #: ../admin/social_login.php:287
1489
  msgid "Xing Consumer Key"
1490
- msgstr ""
1491
 
1492
  #: ../admin/social_login.php:297
1493
- #, fuzzy, php-format
1494
  msgid "Required for Xing Social Login to work. Please follow the documentation at <a href=\"%s\" target=\"_blank\">this link</a> to get Xing Consumer Key"
1495
- msgstr "Requerida para que funcione LinkedIn Social Login. Por favor, siga la documentación <a href=\"%s\" target=\"_blank\">en este enlace</a> para obtener su Clave LinkedIn API"
1496
 
1497
  #: ../admin/social_login.php:299
1498
  #: ../admin/social_login.php:321
1499
  msgid "Paste following url in <strong>Callback domain</strong> option at the link mentioned"
1500
- msgstr "Pegar siguiente url en el dominio de devolución de llamada <strong>Callback domain</ strong> en el enlace mencionado"
1501
 
1502
  #: ../admin/social_login.php:309
1503
  msgid "Xing Consumer Secret"
1504
- msgstr ""
1505
 
1506
  #: ../admin/social_login.php:319
1507
- #, fuzzy, php-format
1508
  msgid "Required for Xing Social Login to work. Please follow the documentation at <a href=\"%s\" target=\"_blank\">this link</a> to get Xing Consumer Secret"
1509
- msgstr "Requerido para que funcione Twitter Social Login. Por favor, siga la documentación <a href=\"%s\" target=\"_blank\">en este enlace</a> para obtener Twitter Secreto del Consumidor"
1510
 
1511
  #: ../admin/social_login.php:337
1512
  msgid "Login options"
1513
- msgstr "Opciones Inicio de Sesión"
1514
 
1515
  #: ../admin/social_login.php:353
1516
  msgid "Text to display above the Social Login interface"
1517
- msgstr "Texto para mostrar por encima de la interfaz Social Login"
1518
 
1519
  #: ../admin/social_login.php:362
1520
  msgid "Enable at login page"
1521
- msgstr "Activar en la página de inicio de sesión"
1522
 
1523
  #: ../admin/social_login.php:372
1524
- #, fuzzy
1525
  msgid "Social Login interface will get enabled at the login page of your website"
1526
- msgstr "La interfaz Social Login se activará en su página de inicio de sesión Wordpress"
1527
 
1528
  #: ../admin/social_login.php:380
1529
  msgid "Enable at register page"
1530
- msgstr "Habilitar en página de registro"
1531
 
1532
  #: ../admin/social_login.php:390
1533
- #, fuzzy
1534
  msgid "Social Login interface will get enabled at the registration page of your website"
1535
- msgstr "La interfaz Social Login se habilitará en su página de registro Wordpress"
1536
 
1537
  #: ../admin/social_login.php:398
1538
  msgid "Enable at comment form"
1539
- msgstr "Habilitar en formulario de Comentario"
1540
 
1541
  #: ../admin/social_login.php:408
1542
- #, fuzzy
1543
  msgid "Social Login interface will get enabled at your Wordpress Comment form"
1544
- msgstr "La interfaz Social Login se activará en su página de inicio de sesión Wordpress"
1545
 
1546
  #: ../admin/social_login.php:422
1547
  msgid "Enable before WooCommerce Customer Login Form"
1548
- msgstr "Habilitar antes WooCommerce Formulario Cliente Login"
1549
 
1550
  #: ../admin/social_login.php:432
1551
- #, fuzzy
1552
  msgid "Social Login Interface will get enabled before the customer login form at WooCommerce My Account page"
1553
- msgstr "La interfaz Social Login se activará en su página de inicio de sesión Wordpress"
1554
 
1555
  #: ../admin/social_login.php:440
1556
  msgid "Enable after WooCommerce Customer Login Form"
1557
- msgstr "Activar después WooCommerce Formulario Cliente Login"
1558
 
1559
  #: ../admin/social_login.php:450
1560
- #, fuzzy
1561
  msgid "Social Login Interface will get enabled after the customer login form at WooCommerce My Account page"
1562
- msgstr "La interfaz Social Login se activará en su página de inicio de sesión Wordpress"
1563
 
1564
  #: ../admin/social_login.php:458
1565
- #, fuzzy
1566
  msgid "Enable at WooCommerce checkout page"
1567
- msgstr "Habilitar en página de registro"
1568
 
1569
  #: ../admin/social_login.php:468
1570
- #, fuzzy
1571
  msgid "Social Login Interface will get enabled at WooCommerce checkout page"
1572
- msgstr "La interfaz Social Login se activará en su página de inicio de sesión Wordpress"
1573
 
1574
  #: ../admin/social_login.php:479
1575
  msgid "Auto-approve comments made by Social Login users"
1576
- msgstr "Auto-aprobar los comentarios realizados por los usuarios Social Iniciar sesión"
1577
 
1578
  #: ../admin/social_login.php:489
1579
  msgid "If this option is enabled, and WordPress comment is made by Social Login user, comment will get approved immediately without keeping in moderation."
1580
- msgstr "Si esta opción está activada, y WordPress comentario es hecho por Social Login usuario, comentario será aprobado inmediatamente sin tener en moderación."
1581
 
1582
  #: ../admin/social_login.php:490
1583
  msgid "Note: This is not related to Facebook comments"
1584
- msgstr "Nota: Esto no está relacionado con los comentarios de Facebook"
1585
 
1586
  #: ../admin/social_login.php:500
1587
  msgid "Enable social avatar"
1588
- msgstr "Habilitar avatar Social"
1589
 
1590
  #: ../admin/social_login.php:510
1591
  msgid "Social profile pictures of the logged in user will be displayed as profile avatar"
1592
- msgstr "Imágenes de Perfil Social del usuario registrado aparecerán como avatar del perfil"
1593
 
1594
  #: ../admin/social_login.php:520
1595
  msgid "Avatar quality"
1596
- msgstr "Avatar calidad"
1597
 
1598
  #: ../admin/social_login.php:523
1599
  msgid "Average"
1600
- msgstr "promedio"
1601
 
1602
  #: ../admin/social_login.php:524
1603
  msgid "Best"
1604
- msgstr "Mejor"
1605
 
1606
  #: ../admin/social_login.php:531
1607
  msgid "Choose avatar quality"
1608
- msgstr "Elija la calidad avatar"
1609
 
1610
  #: ../admin/social_login.php:540
1611
- #, fuzzy
1612
  msgid "Show option for users to update social avatar at BuddyPress profile page"
1613
- msgstr "Active esta opción para mostrar la cuenta social de interfaz de enlace en la página de perfil BuddyPress"
1614
 
1615
  #: ../admin/social_login.php:550
1616
  msgid "If enabled, users would be able to update their social avatar from \"Profile photo\" section in BuddyPress profile at front-end"
1617
- msgstr ""
1618
 
1619
  #: ../admin/social_login.php:571
1620
  msgid "If enabled and Social ID provider does not provide user's email address on login, user will be asked to provide his/her email address. Otherwise, a dummy email will be generated"
1621
- msgstr "Si lo habilita y el proveedor de Identificación Social no proporciona dirección de correo electrónico del usuario al iniciar sesión, se le pedirá al usuario proporcionar su dirección de correo electrónico De lo contrario, un correo electrónico ficticio, se generará"
1622
 
1623
  #: ../admin/social_login.php:580
1624
  msgid "Send username-password after user registration"
1625
- msgstr "Enviar nombre de usuario/contraseña tras el registro del usuario"
1626
 
1627
  #: ../admin/social_login.php:590
1628
  msgid "If enabled, an email will be sent to user after registration through Social Login, regarding his/her login credentials (username-password to be able to login via traditional login form)"
1629
- msgstr "Si está habilitada, un correo electrónico será enviado al usuario después del registro a través de Social Login, con respecto a su / sus credenciales de inicio de sesión (nombre de usuario-contraseña para poder ingresar a través del formulario de inicio de sesión tradicional)"
1630
 
1631
  #: ../admin/social_login.php:599
1632
  msgid "Enable social account linking at BuddyPress profile page"
1633
- msgstr "Activar cuenta los aspectos sociales de enlace en la página de perfil BuddyPress"
1634
 
1635
  #: ../admin/social_login.php:609
1636
  msgid "Enable this option to show social account linking interface at BuddyPress profile page"
1637
- msgstr "Active esta opción para mostrar la cuenta social de interfaz de enlace en la página de perfil BuddyPress"
1638
 
1639
  #: ../admin/social_login.php:618
1640
  msgid "Login redirection"
1641
- msgstr "Redireccionamiento de inicio de sesión"
1642
 
1643
  #: ../admin/social_login.php:622
1644
  msgid "Same page where user logged in"
1645
- msgstr "La misma página donde el usuario ha iniciado sesión"
1646
 
1647
  #: ../admin/social_login.php:626
1648
  #: ../admin/social_login.php:656
1649
  msgid "Account dashboard"
1650
- msgstr "Panel de cuenta"
1651
 
1652
  #: ../admin/social_login.php:629
1653
  #: ../admin/social_login.php:659
1654
  msgid "BuddyPress profile page"
1655
- msgstr "Página de perfil BuddyPress"
1656
 
1657
  #: ../admin/social_login.php:632
1658
  #: ../admin/social_login.php:662
@@ -1661,164 +1591,148 @@ msgstr "Url personalizada"
1661
 
1662
  #: ../admin/social_login.php:640
1663
  msgid "User will be redirected to the selected page after Social Login"
1664
- msgstr "El usuario será redirigido a la página seleccionada después de Social Login"
1665
 
1666
  #: ../admin/social_login.php:648
1667
  msgid "Registration redirection"
1668
- msgstr "redirección de registro"
1669
 
1670
  #: ../admin/social_login.php:652
1671
- #, fuzzy
1672
  msgid "Same page from where user registered"
1673
- msgstr "La misma página donde el usuario ha iniciado sesión"
1674
 
1675
  #: ../admin/social_login.php:670
1676
  msgid "User will be redirected to the selected page after registration (first Social Login) through Social Login"
1677
- msgstr "Usuario será redirigido a la página seleccionada después de Registrarse (primero Ingresa Social) a través de Social Login"
1678
 
1679
  #: ../admin/social_login.php:678
1680
  msgid "Email popup options"
1681
- msgstr "opciones emergentes de correo electrónico"
1682
 
1683
  #: ../admin/social_login.php:684
1684
  msgid "Text on 'Email required' popup"
1685
- msgstr "Texto en 'Email required' popup"
1686
 
1687
  #: ../admin/social_login.php:694
1688
  msgid "This text will be displayed on email required popup. Leave empty if not required."
1689
- msgstr "Este texto se mostrará en el correo electrónico popup necesario. Dejar en blanco si no es necesario."
1690
 
1691
  #: ../admin/social_login.php:703
1692
  msgid "Error message for 'Email required' popup"
1693
- msgstr "Mensaje de error para ventana emergente de \"\"Correo electrónico requerido'"
1694
 
1695
  #: ../admin/social_login.php:713
1696
  msgid "This message will be displayed to user if it provides invalid or already registered email"
1697
- msgstr "Este mensaje se mostrará al usuario si proporciona correo electrónico no válido o ya registrado"
1698
 
1699
  #: ../admin/social_login.php:722
1700
  msgid "Email popup height"
1701
- msgstr "email altura popup"
1702
 
1703
  #: ../admin/social_login.php:732
1704
  msgid "If you are seeing vertical scrollbar in the \"Email required\" popup, you can increase the height of popup by specifying in this option. Leave empty for default."
1705
- msgstr "Si usted está viendo la barra de desplazamiento vertical en el \"Correo electrónico requerido\" emergente, puede aumentar la altura del elemento emergente mediante la especificación de esta opción. Dejar en blanco para el defecto."
1706
 
1707
  #: ../admin/social_login.php:740
1708
  msgid "Enable email verification"
1709
- msgstr "Habilitar verificación de correo electrónico"
1710
 
1711
  #: ../admin/social_login.php:750
1712
  msgid "If enabled, email provided by the user will be verified by sending a confirmation link to that email. User would not be able to login without verifying his/her email"
1713
- msgstr "Si está activado, el correo electrónico proporcionado por el usuario se verificará mediante el envío de un enlace de confirmación a ese correo electrónico. El usuario no podrá iniciar sesión sin verificar su email"
1714
 
1715
  #: ../admin/social_login.php:766
1716
- #, fuzzy
1717
  msgid "Social Login Shortcode & Widget"
1718
- msgstr "Widgets y shortcodes"
1719
 
1720
  #: ../admin/social_login.php:767
1721
  msgid "Social Linking Shortcode"
1722
- msgstr ""
1723
 
1724
  #: ../admin/admin.php:8
1725
  msgid "Welcome"
1726
- msgstr "Bienvenida"
1727
 
1728
  #: ../admin/admin.php:10
1729
  msgid "You are ready to Socialize your website."
1730
- msgstr "Usted está listo para Socializar su sitio web."
1731
 
1732
  #: ../admin/admin.php:11
1733
  msgid "Getting Started"
1734
- msgstr "Para empezar"
1735
 
1736
  #: ../admin/admin.php:12
1737
- #, fuzzy
1738
  msgid "Start configuring the options in the sections below the <strong>Super Socializer</strong> menu in the left sidebar. <strong>Social Sharing</strong> is enabled at your website by default."
1739
- msgstr "Comience a configurar las opciones en las siguientes secciones del menú de Super Socializer en el panel izquierdo. Intercambio Social está habilitado en su sitio web por defecto."
1740
 
1741
  #: ../admin/admin.php:13
1742
- #, fuzzy
1743
  msgid "In <strong>Social Commenting</strong> section, you can configure Social Commenting."
1744
- msgstr "En la sección de Facebook, puede configurar Comentarios y Transmisiones Facebook."
1745
 
1746
  #: ../admin/admin.php:14
1747
  msgid "In <strong>Social Login</strong> section, you can select Social ID provders and configure the Social Login options."
1748
- msgstr "En la sección Social Login, puede seleccionar proveedores de Identificación Social y configurar las opciones de Social Login."
1749
 
1750
  #: ../admin/admin.php:15
1751
- #, fuzzy
1752
  msgid "In <strong>Social Sharing</strong> section, you can choose the Social Networks for Sharing and configure the options for sharing."
1753
- msgstr "En la sección Uso compartido Social, puede elegir las Redes Sociales para compartir y configurar los opciones para compartir."
1754
 
1755
  #: ../admin/admin.php:16
1756
- #, fuzzy
1757
  msgid "In <strong>Like Buttons</strong> section, you can choose the like/+1 buttons and configure the options for the same"
1758
- msgstr "En la sección Uso compartido Social, puede elegir las Redes Sociales para compartir y configurar los opciones para compartir."
1759
 
1760
  #: ../admin/like_buttons.php:16
1761
  msgid "Enable Like Buttons"
1762
- msgstr "Habilitar como botones"
1763
 
1764
  #: ../admin/like_buttons.php:26
1765
- #, fuzzy
1766
  msgid "Master control for like buttons. It must be checked to enable like buttons functionality"
1767
- msgstr "Control Maestro para Social Login. Debe comprobarse para permitir la funcionalidad de Social Login"
1768
 
1769
  #: ../admin/like_buttons.php:47
1770
- #, fuzzy
1771
  msgid "Standard Interface Options"
1772
- msgstr "Horizontales Opciones para compartir la interfaz de"
1773
 
1774
  #: ../admin/like_buttons.php:53
1775
- #, fuzzy
1776
  msgid "Enable standard interface"
1777
- msgstr "Habilitar interfaz de intercambio horizontal"
1778
 
1779
  #: ../admin/like_buttons.php:63
1780
- #, fuzzy
1781
  msgid "Master control to enable horizontal like buttons"
1782
- msgstr "Control maestro para permitir el intercambio horizontal"
1783
 
1784
  #: ../admin/like_buttons.php:88
1785
  #: ../admin/like_buttons.php:336
1786
  msgid "Url to like/share/tweet and display like/share/tweet counts"
1787
- msgstr "Url gustarle/share/tweet y pantalla como conteos/share/pío"
1788
 
1789
  #: ../admin/like_buttons.php:106
1790
- #, fuzzy
1791
  msgid "The text to display above the interface"
1792
- msgstr "El texto que se muestra por encima de la interfaz compartida "
1793
 
1794
  #: ../admin/like_buttons.php:114
1795
  #: ../admin/like_buttons.php:344
1796
- #, fuzzy
1797
  msgid "Select and rearrange providers"
1798
- msgstr "Seleccionar proveedores"
1799
 
1800
  #: ../admin/like_buttons.php:158
1801
  #: ../admin/like_buttons.php:387
1802
- #, fuzzy
1803
  msgid "Select the providers for interface. Drag them to rearrange."
1804
- msgstr "Seleccione los proveedores para compartir la interfaz"
1805
 
1806
  #: ../admin/like_buttons.php:180
1807
  #: ../admin/like_buttons.php:426
1808
- #, fuzzy
1809
  msgid "Horizontal alignment of the interface"
1810
- msgstr "Habilitar interfaz de intercambio horizontal"
1811
 
1812
  #: ../admin/like_buttons.php:201
1813
- #, fuzzy
1814
  msgid "Specify position of the interface with respect to the content"
1815
- msgstr "Especificar la posición de la interfaz compartir con respecto al contenido"
1816
 
1817
  #: ../admin/like_buttons.php:209
1818
  #: ../admin/like_buttons.php:492
1819
- #, fuzzy
1820
  msgid "Interface location"
1821
- msgstr "Ubicación de uso compartido"
1822
 
1823
  #: ../admin/like_buttons.php:219
1824
  #: ../admin/like_buttons.php:502
@@ -1826,162 +1740,150 @@ msgid "Excerpts"
1826
  msgstr "Extractos"
1827
 
1828
  #: ../admin/like_buttons.php:278
1829
- #, fuzzy
1830
  msgid "Specify the pages where you want to enable interface"
1831
- msgstr "Especifique las páginas en las que desee habilitar la interfaz Uso compartido"
1832
 
1833
  #: ../admin/like_buttons.php:295
1834
- #, fuzzy
1835
  msgid "Vertical (Floating) like buttons Options"
1836
- msgstr "Vertical (flotante) Opciones de interfaz compartir"
1837
 
1838
  #: ../admin/like_buttons.php:301
1839
- #, fuzzy
1840
  msgid "Enable floating like buttons"
1841
- msgstr "Habilitar vertical (flotante) interfaz compartida"
1842
 
1843
  #: ../admin/like_buttons.php:311
1844
- #, fuzzy
1845
  msgid "Master control to enable vertical (floating) counter widget"
1846
- msgstr "Control maestro para permitir vertical (flotante) widget de intercambio"
1847
 
1848
  #: ../admin/like_buttons.php:405
1849
- #, fuzzy
1850
  msgid "Specify the color or hex code (example #cc78e0) for the background of vertical interface. Leave empty for transparent. You can get the hex code of the required color from <a href=\"http://www.colorpicker.com/\" target=\"_blank\">this link</a>"
1851
- msgstr "Especifique el color o el código hexadecimal (ejemplo # cc78e0) para el fondo de barra de bar vertical. Dejar vacío para transparente. Puede obtener el código hexadecimal del color deseado de <a href=\"http://www.colorpicker.com/\" target=\"_blank\"> este enlace </a>"
1852
 
1853
  #: ../admin/like_buttons.php:445
1854
- #, fuzzy
1855
  msgid "Specify a number. Increase in number will shift interface towards right and decrease will shift it towards left. Number can be negative too."
1856
- msgstr "Especifique un número. Aumento del número cambiará interfaz compartida hacia la derecha y la disminución se desplazará hacia la izquierda."
1857
 
1858
  #: ../admin/like_buttons.php:465
1859
- #, fuzzy
1860
  msgid "Specify a number. Increase in number will shift interface towards left and decrease will shift it towards right. Number can be negative too."
1861
- msgstr "Especifique un número. Aumento del número cambiará interfaz compartida hacia la derecha y la disminución se desplazará hacia la izquierda."
1862
 
1863
  #: ../admin/like_buttons.php:484
1864
- #, fuzzy
1865
  msgid "Specify a number. Increase in number will shift interface towards bottom and decrease will shift it towards top."
1866
- msgstr "Especifique un número. Aumento del número cambiará compartir la interfaz hacia la parte inferior y el descenso se desplazará hacia la parte superior."
1867
 
1868
  #: ../admin/like_buttons.php:540
1869
- #, fuzzy
1870
  msgid "Specify the pages where you want to enable vertical interface"
1871
- msgstr "Especifique las páginas en las que desee habilitar la interfaz Uso compartido verticales"
1872
 
1873
  #: ../admin/like_buttons.php:548
1874
  msgid "Hide like buttons on mobile devices"
1875
- msgstr "Ocultar como botones en dispositivos móviles"
1876
 
1877
  #: ../admin/like_buttons.php:558
1878
  msgid "If enabled, vertical like buttons will not appear on mobile devices"
1879
- msgstr "Si está activado, los botones verticales como no van a aparecer en dispositivos móviles"
1880
 
1881
  #: ../admin/like_buttons.php:582
1882
  msgid "Use shortlinks already installed, for tweet button"
1883
- msgstr "Utilice shortlinks ya instalados, para botón de Tweet"
 
 
 
 
1884
 
1885
  #: ../admin/like_buttons.php:600
1886
  msgid "Enable bit.ly url shortener for tweet button"
1887
- msgstr "Habilitar acortador de url bit.ly para el botón de Twitter"
1888
 
1889
  #: ../admin/like_buttons.php:692
1890
- #, fuzzy, php-format
1891
  msgid "Enter the code of the language you want to use to render counters. You can find the language codes at <a href=\"%s\" target=\"_blank\">this link</a>. Leave it empty for default language(English)"
1892
- msgstr "Introduzca el código del idioma que desea utilizar para mostrar los comentarios. Usted puede encontrar los códigos de idioma en <a href=\"%s\" target=\"_blank\"> este enlace </ a>. Déjelo vacío para el idioma predeterminado (Inglés)"
1893
 
1894
  #: ../admin/like_buttons.php:701
1895
- #, fuzzy
1896
  msgid "Twitter Username"
1897
- msgstr "Twitter nombre de usuario en el intercambio"
1898
 
1899
  #: ../admin/like_buttons.php:707
1900
- #, fuzzy
1901
  msgid "Twitter username for Tweet (without @)"
1902
- msgstr "Twitter nombre de usuario (sin @)"
1903
 
1904
  #: ../admin/like_buttons.php:717
1905
  msgid "Provided username will be appended after the content being tweeted as \"via @USERNAME\". Leave empty if you do not want any username."
1906
- msgstr "Nombre de usuario proporcionado se añadirá después del contenido que se está tuiteó como \"a travésUSERNAME\". Dejar vacío si no desea ningún nombre de usuario."
1907
 
1908
  #: ../admin/like_buttons.php:726
1909
- #, fuzzy
1910
  msgid "Twitter username for Buffer sharing (without @)"
1911
- msgstr "Twitter nombre de usuario (sin @)"
1912
 
1913
  #: ../admin/like_buttons.php:736
1914
- #, fuzzy
1915
  msgid "Provided username will be appended after the content in Buffer sharing as \"via @USERNAME\". Leave empty if you do not want any username."
1916
- msgstr "Nombre de usuario proporcionado se añadirá después del contenido que se está tuiteó como \"a travésUSERNAME\". Dejar vacío si no desea ningún nombre de usuario."
1917
 
1918
  #: ../admin/like_buttons.php:753
1919
- #, fuzzy
1920
  msgid "Like Buttons Shortcode & Widget"
1921
- msgstr "Widgets y shortcodes"
1922
 
1923
  #: ../inc/shortcode.php:245
1924
- #, fuzzy
1925
  msgid "Enable Social Login from \"Basic Configuration\" section at \"Super Socializer > Social Login\" page in admin panel"
1926
- msgstr "Asegúrese Social Login se habilita desde página \"Super Socializer > Social Login\"."
1927
 
1928
- #: ../inc/social_sharing.php:652
1929
  msgid "Invalid request"
1930
- msgstr "petición no válida"
1931
 
1932
- #: ../inc/social_sharing.php:659
1933
  msgid "Providers not selected"
1934
- msgstr "Los proveedores no seleccionados"
1935
 
1936
  #: ../inc/social_login.php:232
1937
  #, php-format
1938
  msgid "Username: %s"
1939
- msgstr ""
1940
 
1941
  #: ../inc/social_login.php:233
1942
  #, php-format
1943
  msgid "Password: %s"
1944
- msgstr ""
1945
 
1946
  #: ../inc/social_login.php:236
1947
  #, php-format
1948
  msgid "[%s] Your username and password"
1949
- msgstr ""
1950
 
1951
  #: ../inc/widget.php:11
1952
  msgid "Super Socializer - Login"
1953
- msgstr "Super Socializer - Login"
1954
 
1955
  #: ../inc/widget.php:13
1956
  msgid "Let your website users login/register using their favorite Social ID Provider, such as Facebook, Twitter, Google+, LinkedIn"
1957
- msgstr "Permita que sus usuarios del website se conecten/registren usando su proveedor de ID Social favorito, tales como Facebook, Twitter, Google+, LinkedIn"
1958
 
1959
  #: ../inc/widget.php:47
1960
  msgid "Log Out"
1961
  msgstr "Cerrar sesión"
1962
 
1963
  #: ../inc/widget.php:78
1964
- #, fuzzy
1965
  msgid "Make sure Social Login is enabled at \"Super Socializer > Social Login\" page."
1966
- msgstr "Asegúrese Social Login se habilita desde página \"Super Socializer > Social Login\"."
1967
 
1968
  #: ../inc/widget.php:79
1969
  #: ../inc/widget.php:219
1970
  #: ../inc/widget.php:524
1971
  msgid "Title:"
1972
- msgstr "Titulo:"
1973
 
1974
  #: ../inc/widget.php:81
1975
  #: ../inc/widget.php:233
1976
  #: ../inc/widget.php:534
1977
  msgid "Before widget content:"
1978
- msgstr " Antes del contenido del widget:"
1979
 
1980
  #: ../inc/widget.php:83
1981
  #: ../inc/widget.php:235
1982
  #: ../inc/widget.php:536
1983
  msgid "After widget content:"
1984
- msgstr "Después del contenido del widget:"
1985
 
1986
  #: ../inc/widget.php:86
1987
  #: ../inc/widget.php:237
@@ -1989,29 +1891,25 @@ msgstr "Después del contenido del widget:"
1989
  #: ../inc/widget.php:538
1990
  #: ../inc/widget.php:688
1991
  msgid "Hide for logged in users:"
1992
- msgstr "Ocultar para los usuarios registrados:"
1993
 
1994
  #: ../inc/widget.php:105
1995
- #, fuzzy
1996
  msgid "Horizontal sharing widget. Let your website users share content on popular Social networks like Facebook, Twitter, Tumblr, Google+ and many more"
1997
- msgstr "Widget Horizontal. ​​Deje que sus usuarios del website compartan contenidos en las redes sociales populares como Facebook, Twitter, Tumblr, Google+ y muchos más "
1998
 
1999
  #: ../inc/widget.php:218
2000
- #, fuzzy
2001
  msgid "Make sure \"Horizontal Social Sharing\" is enabled at \"Super Socializer > Social Sharing\" page."
2002
- msgstr "Asegúrese de que \"Horizontal Social Sharing\" se habilita desde página \"Super Socializer > Social Sharing\"."
2003
 
2004
  #: ../inc/widget.php:221
2005
  #: ../inc/widget.php:370
2006
- #, fuzzy
2007
  msgid "Show individual share counts:"
2008
- msgstr "conteos muestran acciones"
2009
 
2010
  #: ../inc/widget.php:223
2011
  #: ../inc/widget.php:372
2012
- #, fuzzy
2013
  msgid "Show total shares:"
2014
- msgstr "conteos muestran acciones"
2015
 
2016
  #: ../inc/widget.php:225
2017
  #: ../inc/widget.php:374
@@ -2025,769 +1923,49 @@ msgstr "Target Url:"
2025
  #: ../inc/widget.php:528
2026
  #: ../inc/widget.php:663
2027
  msgid "Select"
2028
- msgstr "seleccionar"
2029
 
2030
  #: ../inc/widget.php:256
2031
- #, fuzzy
2032
  msgid "Vertical floating sharing widget. Let your website users share content on popular Social networks like Facebook, Twitter, Tumblr, Google+ and many more"
2033
- msgstr "Widget de flotación vertical. ​​Deje que sus usuarios del website compartan contenidos en las redes sociales populares como Facebook, Twitter, Tumblr, Google+ y muchos más "
2034
 
2035
  #: ../inc/widget.php:369
2036
- #, fuzzy
2037
  msgid "Make sure \"Vertical Social Sharing\" is enabled at \"Super Socializer > Social Sharing\" page."
2038
- msgstr "Asegúrese de que \"Vertical Social Sharing\" se habilita desde página \"Super Socializer > Social Sharing\"."
2039
 
2040
  #: ../inc/widget.php:382
2041
  #: ../inc/widget.php:669
2042
  msgid "Alignment"
2043
- msgstr "Alineamiento"
2044
 
2045
  #: ../inc/widget.php:388
2046
  #: ../inc/widget.php:675
2047
- #, fuzzy
2048
  msgid "Left Offset"
2049
- msgstr "Desplazamiento hacia la izquierda:"
2050
 
2051
  #: ../inc/widget.php:392
2052
  #: ../inc/widget.php:679
2053
- #, fuzzy
2054
  msgid "Right Offset"
2055
- msgstr "desplazamiento izquierda"
2056
 
2057
  #: ../inc/widget.php:395
2058
  #: ../inc/widget.php:682
2059
- #, fuzzy
2060
  msgid "Top Offset"
2061
- msgstr "Margen superior:"
2062
 
2063
  #: ../inc/widget.php:420
2064
- #, fuzzy
2065
  msgid "Horizontal like buttons widget. Let your website users share/like content on popular Social networks like Facebook, Twitter, Google+ and many more"
2066
- msgstr "Widget Horizontal. ​​Deje que sus usuarios del website compartan contenidos en las redes sociales populares como Facebook, Twitter, Tumblr, Google+ y muchos más "
2067
 
2068
  #: ../inc/widget.php:523
2069
  msgid "Make sure \"Horizontal Like Buttons\" are enabled from \"Super Socializer > Like Buttons\" page."
2070
- msgstr "Asegúrese de que los \"horizontal como botones\" están habilitados de \"Super Socializer > Como Botones\" página."
2071
 
2072
  #: ../inc/widget.php:557
2073
- #, fuzzy
2074
  msgid "Vertical floating like buttons widget. Let your website users share/like content on popular Social networks like Facebook, Twitter, Google+ and many more"
2075
- msgstr "Widget de flotación vertical. ​​Deje que sus usuarios del website compartan contenidos en las redes sociales populares como Facebook, Twitter, Tumblr, Google+ y muchos más "
2076
 
2077
  #: ../inc/widget.php:660
2078
  msgid "Make sure \"Vertical Like Buttons\" are enabled from \"Super Socializer > Like Buttons\" page."
2079
- msgstr "Asegúrese de que los \"vertical como botones\" están habilitados de \"Super Socializer > Como Botones\" página."
2080
-
2081
- #, fuzzy
2082
- #~ msgid "Horizontal sharing"
2083
- #~ msgstr "Horizontales Opciones para compartir la interfaz de"
2084
-
2085
- #, fuzzy
2086
- #~ msgid "Vertical sharing"
2087
- #~ msgstr "Social Sharing"
2088
-
2089
- #, fuzzy
2090
- #~ msgid "Sharing Options"
2091
- #~ msgstr "Ubicación de uso compartido"
2092
-
2093
- #~ msgid ""
2094
- #~ "Master control for Social Sharing. It must be checked to enable Social "
2095
- #~ "Sharing functionality"
2096
- #~ msgstr ""
2097
- #~ "Control maestro para compartir en redes sociales. Esto debe estar marcado "
2098
- #~ "para habilitar la funcionalidad de Social Sharing "
2099
-
2100
- #, fuzzy
2101
- #~ msgid "Horizontal interface options"
2102
- #~ msgstr "Horizontales Opciones para compartir la interfaz de"
2103
-
2104
- #, fuzzy
2105
- #~ msgid "Vertical interface options"
2106
- #~ msgstr "Vertical (flotante) Opciones de interfaz compartir"
2107
-
2108
- #~ msgid "Do not load Modernizr JS"
2109
- #~ msgstr "No cargue Modernizr JS"
2110
-
2111
- #~ msgid ""
2112
- #~ "If you find the plugin breaking your theme, you can try enabling this "
2113
- #~ "option"
2114
- #~ msgstr ""
2115
- #~ "Si usted encuentra el plugin romper su tema, puede intentar activar esta "
2116
- #~ "opción"
2117
-
2118
- #~ msgid "Print"
2119
- #~ msgstr "Impresión"
2120
-
2121
- #~ msgid "Select the providers for sharing interface"
2122
- #~ msgstr "Seleccione los proveedores para compartir la interfaz"
2123
-
2124
- #~ msgid "Sharing location"
2125
- #~ msgstr "Ubicación de uso compartido"
2126
-
2127
- #, fuzzy
2128
- #~ msgid "Stick sharing bar horizontally at bottom on mobile devices"
2129
- #~ msgstr "Ocultar compartir en dispositivos móviles"
2130
 
2131
- #~ msgid ""
2132
- #~ "If enabled, vertical sharing interface will not appear on mobile devices"
2133
- #~ msgstr ""
2134
- #~ "Si se activa, la interfaz de intercambio vertical no aparecerá en los "
2135
- #~ "dispositivos móviles"
2136
-
2137
- #, fuzzy
2138
- #~ msgid "Social Sharing Shortcode & Widget"
2139
- #~ msgstr "Widgets y shortcodes"
2140
-
2141
- #~ msgid "Like Buttons"
2142
- #~ msgstr "Como Botones"
2143
-
2144
- #~ msgid "Options saved successfully"
2145
- #~ msgstr "Opciones guardadas correctamente"
2146
-
2147
- #~ msgid "Better"
2148
- #~ msgstr "mejor"
2149
-
2150
- #~ msgid "You can see the plugin in action at following link"
2151
- #~ msgstr "Usted puede ver el plugin en acción en el siguiente enlace"
2152
-
2153
- #, fuzzy
2154
- #~ msgid ""
2155
- #~ "If you like the plugin or have any query, drop an email at <a href="
2156
- #~ "\"mailto:support@heateor.com\">support@heateor.com</a>, like our "
2157
- #~ "<strong>Facebook</strong> page and follow us at <strong>Twitter</strong>."
2158
- #~ msgstr ""
2159
- #~ "Si le gusta mi plugin y le resulta útil, puede enviarme un correo "
2160
- #~ "electrónico a lordofthechamps@gmail.com, dar Me Gusta a mis páginas "
2161
- #~ "Facebook y seguirme en Twitter"
2162
-
2163
- #~ msgid "Want plugin customization?"
2164
- #~ msgstr "¿Quieres plugin de personalización?"
2165
-
2166
- #~ msgid ""
2167
- #~ "<strong>Note:</strong> Drop us an email at support@heateor.com to enable "
2168
- #~ "Facebook Comments notification and moderation."
2169
- #~ msgstr ""
2170
- #~ "<strong>Nota:</strong> Envíanos un email a support@heateor.com habilitar "
2171
- #~ "Facebook Comentarios notificación y la moderación."
2172
-
2173
- #~ msgid "Mobile"
2174
- #~ msgstr "Móvil "
2175
-
2176
- #~ msgid "Auto Detect"
2177
- #~ msgstr "Auto detectar"
2178
-
2179
- #~ msgid "True"
2180
- #~ msgstr "Verdadero"
2181
-
2182
- #~ msgid "False"
2183
- #~ msgstr "Falso"
2184
-
2185
- #~ msgid ""
2186
- #~ "A boolean value that specifies whether to show the mobile-optimized "
2187
- #~ "version or not."
2188
- #~ msgstr ""
2189
- #~ "Un valor booleano que especifica si se mostrará la versión optimizada "
2190
- #~ "para móviles o no. "
2191
-
2192
- #~ msgid "Twitter username in tweet button"
2193
- #~ msgstr "Twitter nombre de usuario en el botón de Twitter"
2194
-
2195
- #~ msgid ""
2196
- #~ "Paste following url in <strong>Website</strong> and <strong>OAuth "
2197
- #~ "redirect_uri</strong> options at the link mentioned"
2198
- #~ msgstr ""
2199
- #~ "Pegue siguiente url en <strong>Website</ strong> y <strong>OAuth "
2200
- #~ "redirect_uri</ strong> Opciones en el enlace mencionado"
2201
-
2202
- #~ msgid ""
2203
- #~ "I am a tech enthusiast. I like to play with code and build great stuff "
2204
- #~ "(and like to call myself - The Champ....:) ). You can connect with me "
2205
- #~ "(and my upcoming work) via:"
2206
- #~ msgstr ""
2207
- #~ "Soy un entusiasta de la tecnología. Me gusta jugar con los códigos y "
2208
- #~ "construir grandes cosas (y me gusta decir que soy - El Champ .... :)). "
2209
- #~ "Puede conectar conmigo (y mi próximo trabajo) a través de:"
2210
-
2211
- #~ msgid "Plugin Fan Page"
2212
- #~ msgstr "Plugin de Página de fans"
2213
-
2214
- #~ msgid "My Fan Page"
2215
- #~ msgstr "Mi página de fans"
2216
-
2217
- #, fuzzy
2218
- #~ msgid "Social Counter"
2219
- #~ msgstr "Social Login"
2220
-
2221
- #, fuzzy
2222
- #~ msgid ""
2223
- #~ "Master control for Social Counter. It must be checked to enable Social "
2224
- #~ "Counter functionality"
2225
- #~ msgstr ""
2226
- #~ "Control Maestro para Social Login. Debe comprobarse para permitir la "
2227
- #~ "funcionalidad de Social Login"
2228
-
2229
- #, fuzzy
2230
- #~ msgid ""
2231
- #~ "<strong>Note:</strong> To disable counter on particular page/post, edit "
2232
- #~ "that page/post and check the options at the bottom in <strong>\"Super "
2233
- #~ "Socializer\"</strong> section"
2234
- #~ msgstr ""
2235
- #~ "<strong> Nota: </ strong> Para deshabilitar el uso compartido en concreto "
2236
- #~ "la página / post, edite la página / post y comprobar el <strong> "
2237
- #~ "\"Desactivar Intercambio Social en esta página \" </ strong> la opción en "
2238
- #~ "la parte inferior de <strong > \"Super Socializer \" </ strong>"
2239
-
2240
- #, fuzzy
2241
- #~ msgid ""
2242
- #~ "You can use <strong>[TheChamp-Counter]</strong> Shortcode in the content "
2243
- #~ "of required page/post where you want to display Social Counter interface."
2244
- #~ msgstr ""
2245
- #~ "Usted puede utilizar <strong> [TheChamp-Sharing] </ strong> Código corto "
2246
- #~ "en el contenido de la página requerida / post en el que desea mostrar la "
2247
- #~ "interfaz Uso compartido Social."
2248
-
2249
- #~ msgid "Example"
2250
- #~ msgstr "ejemplo"
2251
-
2252
- #~ msgid "You can use following attributes in the Shortcode"
2253
- #~ msgstr "Puede utilizar los atributos siguientes en el Código corto"
2254
-
2255
- #, fuzzy
2256
- #~ msgid ""
2257
- #~ "Use <strong>style</strong> attribute to style the rendered Social Counter "
2258
- #~ "interface"
2259
- #~ msgstr ""
2260
- #~ "Utilice <strong>style</ strong> atributo de estilo de la interfaz Uso "
2261
- #~ "compartido sociales prestados"
2262
-
2263
- #, fuzzy
2264
- #~ msgid ""
2265
- #~ "Use <strong>type</strong> attribute to specify the type (\"horizontal\" "
2266
- #~ "or \"vertical\") of Social Counter interface. Default type is \"horizontal"
2267
- #~ "\"."
2268
- #~ msgstr ""
2269
- #~ "Utilice <strong>type</ strong> atributo para especificar el tipo "
2270
- #~ "(\"horizontal \" o \"vertical \") de la interfaz Uso compartido Social. "
2271
- #~ "Tipo por defecto es \"horizontal \"."
2272
-
2273
- #~ msgid "Left (Works with \"Vertical\" type interface only)"
2274
- #~ msgstr "Izquierda (Trabaja con interfaz tipo \"vertical \" solamente)"
2275
-
2276
- #, fuzzy
2277
- #~ msgid ""
2278
- #~ "Use <strong>left</strong> attribute to specify the left offset (distance "
2279
- #~ "form the left side of the screen) of Social Counter interface."
2280
- #~ msgstr ""
2281
- #~ "Uso <strong> left</strong> atributo para especificar el desplazamiento "
2282
- #~ "izquierda (distancia formar el lado izquierdo de la pantalla) de interfaz "
2283
- #~ "de uso compartido Social."
2284
-
2285
- #~ msgid "Top (Works with \"Vertical\" type interface only)"
2286
- #~ msgstr "Top (Trabaja con \"vertical \" tipo de interfaz única)"
2287
-
2288
- #, fuzzy
2289
- #~ msgid ""
2290
- #~ "Use <strong>top</strong> attribute to specify the top offset (distance "
2291
- #~ "form the top of the screen) of Social Counter interface."
2292
- #~ msgstr ""
2293
- #~ "Utilice <strong>top</strong> atributo para especificar el desplazamiento "
2294
- #~ "superior (distancia forman la parte superior de la pantalla) de la "
2295
- #~ "interfaz Uso compartido Social."
2296
-
2297
- #, fuzzy
2298
- #~ msgid "Use <strong>url</strong> attribute to specify the url to be liked"
2299
- #~ msgstr ""
2300
- #~ "Utilice <strong>style</ strong> atributo de estilo de la interfaz Uso "
2301
- #~ "compartido sociales prestados"
2302
-
2303
- #, fuzzy
2304
- #~ msgid "You can use shortcode in PHP file as following"
2305
- #~ msgstr "Usted puede ver el plugin en acción en el siguiente enlace"
2306
-
2307
- #, fuzzy
2308
- #~ msgid ""
2309
- #~ "Replace <strong>SHORTCODE</strong> in above code with the required "
2310
- #~ "shortcode like <strong>[TheChamp-Counter style=\"background-color:#000;\"]"
2311
- #~ "</strong>, so the final code looks like following"
2312
- #~ msgstr ""
2313
- #~ "Reemplace <strong>SHORTCODE</ strong> en el código anterior con el código "
2314
- #~ "corto requerido como <strong>[TheChamp-Login style=\"background-color: "
2315
- #~ "#000;\"]</ strong>, por lo que el código final se parece a siguiente"
2316
-
2317
- #, fuzzy
2318
- #~ msgid ""
2319
- #~ "You can navigate to the <strong>Appearance</strong> > <strong>Widgets</"
2320
- #~ "strong> section in the left pan and drag <strong>Super Socializer - "
2321
- #~ "Counter (Horizontal Widget)</strong> and <strong>Super Socializer - "
2322
- #~ "Counter (Vertical Floating Widget)</strong> widgets in the required area."
2323
- #~ msgstr ""
2324
- #~ "Usted puede navegar a la <strong>Apariencia</ strong >> <strong> "
2325
- #~ "Reproductores </ strong> en el platillo izquierdo y arrastre <strong> "
2326
- #~ "Súper Socializer - Sharing (Horizontal Widget) </ strong> y <strong> "
2327
- #~ "Súper Socializer - Sharing (Vertical Floating Widget) </ strong> widgets "
2328
- #~ "en el área requerida."
2329
-
2330
- #, fuzzy
2331
- #~ msgid ""
2332
- #~ "How can I show like counts of my website rather than of individual pages/"
2333
- #~ "posts?"
2334
- #~ msgstr ""
2335
- #~ "¿Cómo puedo mostrar comparten cargos de mi sitio web y no de páginas "
2336
- #~ "individuales / mensajes?"
2337
-
2338
- #, fuzzy
2339
- #~ msgid ""
2340
- #~ "Choose \"Url of the homepage of your website\" in \"Target Url\" option"
2341
- #~ msgstr ""
2342
- #~ "Elija la opción \"Url de la página principal de su sitio web \" en la "
2343
- #~ "opción \"Target Url \" y permitir \"cuenta Share \""
2344
-
2345
- #, fuzzy
2346
- #~ msgid "How can I disable social counter on particular page/post?"
2347
- #~ msgstr ""
2348
- #~ "¿Cómo puedo mostrar comparten cargos de mi sitio web y no de páginas "
2349
- #~ "individuales / mensajes?"
2350
-
2351
- #, fuzzy
2352
- #~ msgid ""
2353
- #~ "Edit that page/post and check the options at the bottom in \"Super "
2354
- #~ "Socializer\" section"
2355
- #~ msgstr ""
2356
- #~ "Editar esta página/post y marque la opción \"Desactivar Comentarios "
2357
- #~ "Facebook en este post/página \" en la parte inferior en section \"Super "
2358
- #~ "Socializer\""
2359
-
2360
- #~ msgid "Social Sharing"
2361
- #~ msgstr "Social Sharing"
2362
-
2363
- #, fuzzy
2364
- #~ msgid ""
2365
- #~ "<strong>Note:</strong> To disable sharing and specify minimum share "
2366
- #~ "counts per social network on particular page/post, edit that page/post "
2367
- #~ "and check the options at the bottom in <strong>\"Super Socializer\"</"
2368
- #~ "strong> section"
2369
- #~ msgstr ""
2370
- #~ "<strong> Nota: </ strong> Para deshabilitar el uso compartido en concreto "
2371
- #~ "la página / post, edite la página / post y comprobar el <strong> "
2372
- #~ "\"Desactivar Intercambio Social en esta página \" </ strong> la opción en "
2373
- #~ "la parte inferior de <strong > \"Super Socializer \" </ strong>"
2374
-
2375
- #~ msgid ""
2376
- #~ "You can use <strong>[TheChamp-Sharing]</strong> Shortcode in the content "
2377
- #~ "of required page/post where you want to display Social Sharing interface."
2378
- #~ msgstr ""
2379
- #~ "Usted puede utilizar <strong> [TheChamp-Sharing] </ strong> Código corto "
2380
- #~ "en el contenido de la página requerida / post en el que desea mostrar la "
2381
- #~ "interfaz Uso compartido Social."
2382
-
2383
- #~ msgid ""
2384
- #~ "Use <strong>style</strong> attribute to style the rendered Social Sharing "
2385
- #~ "interface"
2386
- #~ msgstr ""
2387
- #~ "Utilice <strong>style</ strong> atributo de estilo de la interfaz Uso "
2388
- #~ "compartido sociales prestados"
2389
-
2390
- #, fuzzy
2391
- #~ msgid ""
2392
- #~ "Use <strong>type</strong> attribute to specify the type (\"horizontal\" "
2393
- #~ "or \"vertical\") of Social Sharing interface. Default type is \"horizontal"
2394
- #~ "\"."
2395
- #~ msgstr ""
2396
- #~ "Utilice <strong>type</ strong> atributo para especificar el tipo "
2397
- #~ "(\"horizontal \" o \"vertical \") de la interfaz Uso compartido Social. "
2398
- #~ "Tipo por defecto es \"horizontal \"."
2399
-
2400
- #, fuzzy
2401
- #~ msgid ""
2402
- #~ "Use <strong>count</strong> attribute to enable the share counts on Social "
2403
- #~ "Sharing interface"
2404
- #~ msgstr ""
2405
- #~ "Utilice <strong>style</ strong> atributo de estilo de la interfaz Uso "
2406
- #~ "compartido sociales prestados"
2407
-
2408
- #, fuzzy
2409
- #~ msgid "left (Works with \"Vertical\" type interface only)"
2410
- #~ msgstr "Izquierda (Trabaja con interfaz tipo \"vertical \" solamente)"
2411
-
2412
- #~ msgid ""
2413
- #~ "Use <strong>left</strong> attribute to specify the left offset (distance "
2414
- #~ "form the left side of the screen) of Social Sharing interface."
2415
- #~ msgstr ""
2416
- #~ "Uso <strong> left</strong> atributo para especificar el desplazamiento "
2417
- #~ "izquierda (distancia formar el lado izquierdo de la pantalla) de interfaz "
2418
- #~ "de uso compartido Social."
2419
-
2420
- #, fuzzy
2421
- #~ msgid "top (Works with \"Vertical\" type interface only)"
2422
- #~ msgstr "Top (Trabaja con \"vertical \" tipo de interfaz única)"
2423
-
2424
- #~ msgid ""
2425
- #~ "Use <strong>top</strong> attribute to specify the top offset (distance "
2426
- #~ "form the top of the screen) of Social Sharing interface."
2427
- #~ msgstr ""
2428
- #~ "Utilice <strong>top</strong> atributo para especificar el desplazamiento "
2429
- #~ "superior (distancia forman la parte superior de la pantalla) de la "
2430
- #~ "interfaz Uso compartido Social."
2431
-
2432
- #, fuzzy
2433
- #~ msgid "Use <strong>url</strong> attribute to specify the url to be shared"
2434
- #~ msgstr ""
2435
- #~ "Utilice <strong>style</ strong> atributo de estilo de la interfaz Uso "
2436
- #~ "compartido sociales prestados"
2437
-
2438
- #~ msgid ""
2439
- #~ "Replace <strong>SHORTCODE</strong> in above code with the required "
2440
- #~ "shortcode like <strong>[TheChamp-Sharing style=\"background-color:#000;\"]"
2441
- #~ "</strong>, so the final code looks like following"
2442
- #~ msgstr ""
2443
- #~ "Reemplace <strong>SHORTCODE</ strong> en el código anterior con el código "
2444
- #~ "corto requerido como <strong>[TheChamp-Sharing style=\"background-color: "
2445
- #~ "#000;\"]</ strong>, por lo que el código final se parece a siguiente"
2446
-
2447
- #~ msgid ""
2448
- #~ "You can navigate to the <strong>Appearance</strong> > <strong>Widgets</"
2449
- #~ "strong> section in the left pan and drag <strong>Super Socializer - "
2450
- #~ "Sharing (Horizontal Widget)</strong> and <strong>Super Socializer - "
2451
- #~ "Sharing (Vertical Floating Widget)</strong> widgets in the required area."
2452
- #~ msgstr ""
2453
- #~ "Usted puede navegar a la <strong>Apariencia</ strong >> <strong> "
2454
- #~ "Reproductores </ strong> en el platillo izquierdo y arrastre <strong> "
2455
- #~ "Súper Socializer - Sharing (Horizontal Widget) </ strong> y <strong> "
2456
- #~ "Súper Socializer - Sharing (Vertical Floating Widget) </ strong> widgets "
2457
- #~ "en el área requerida."
2458
-
2459
- #~ msgid ""
2460
- #~ "Choose \"Url of the homepage of your website\" in \"Target Url\" option "
2461
- #~ "and enable \"Show share counts\" option"
2462
- #~ msgstr ""
2463
- #~ "Elija la opción \"Url de la página principal de su sitio web \" en la "
2464
- #~ "opción \"Target Url \" y permitir \"cuenta Share \""
2465
-
2466
- #, fuzzy
2467
- #~ msgid ""
2468
- #~ "After enabling this option, Facebook commenting will appear before "
2469
- #~ "Wordpress comment form at your website"
2470
- #~ msgstr ""
2471
- #~ "Después de habilitar esta opción, Comentarios Facebook aparecerá en lugar "
2472
- #~ "del formulario de comentarios de Wordpress en su sitio web."
2473
-
2474
- #~ msgid "Keep only Facebook Commenting"
2475
- #~ msgstr "Consérvese únicamente Facebook Comentando"
2476
-
2477
- #, fuzzy
2478
- #~ msgid ""
2479
- #~ "If enabled, only Facebook commenting would be visible without default "
2480
- #~ "comment form"
2481
- #~ msgstr ""
2482
- #~ "Si está habilitado, sólo Facebook comentando estarán allí sin la opción "
2483
- #~ "de cambiar a WordPress comentar"
2484
-
2485
- #~ msgid ""
2486
- #~ "You can use <strong>[TheChamp-FB-Comments]</strong> Shortcode in the "
2487
- #~ "content of required page/post where you want to display Facebook "
2488
- #~ "Commenting interface."
2489
- #~ msgstr ""
2490
- #~ "Usted puede utilizar <strong> [TheChamp-FB-Comments] </strong> Código "
2491
- #~ "corto en el contenido de la página requerida/post en el que desea mostrar "
2492
- #~ "la interfaz Uso compartido Social."
2493
-
2494
- #, fuzzy
2495
- #~ msgid ""
2496
- #~ "Use <strong>style</strong> attribute to style the rendered commenting "
2497
- #~ "interface"
2498
- #~ msgstr ""
2499
- #~ "Utilice <strong>style</ strong> atributo de estilo de la interfaz Uso "
2500
- #~ "compartido sociales prestados"
2501
-
2502
- #~ msgid ""
2503
- #~ "Use <strong>url</strong> attribute to specify the target url for "
2504
- #~ "comments. This defaults to the page where shortcode is used."
2505
- #~ msgstr ""
2506
- #~ "Uso <strong> url</strong> atributo para especificar el desplazamiento "
2507
- #~ "izquierda (distancia formar el lado izquierdo de la pantalla) de interfaz "
2508
- #~ "de uso compartido Social."
2509
-
2510
- #, fuzzy
2511
- #~ msgid ""
2512
- #~ "Use <strong>num_posts</strong> attribute to specify the number of "
2513
- #~ "comments to display."
2514
- #~ msgstr ""
2515
- #~ "Utilice <strong>style</ strong> atributo de estilo de la interfaz Uso "
2516
- #~ "compartido sociales prestados"
2517
-
2518
- #, fuzzy
2519
- #~ msgid "width"
2520
- #~ msgstr "Ancho"
2521
-
2522
- #, fuzzy
2523
- #~ msgid ""
2524
- #~ "Use <strong>width</strong> attribute to specify the width of commenting "
2525
- #~ "interface. Omit it for fluid width"
2526
- #~ msgstr ""
2527
- #~ "Utilice <strong>top</strong> atributo para especificar el desplazamiento "
2528
- #~ "superior (distancia forman la parte superior de la pantalla) de la "
2529
- #~ "interfaz Uso compartido Social."
2530
-
2531
- #, fuzzy
2532
- #~ msgid ""
2533
- #~ "Replace <strong>SHORTCODE</strong> in above code with the required "
2534
- #~ "shortcode like <strong>[TheChamp-FB-Comments style=\"background-color:"
2535
- #~ "#000;\"]</strong>, so the final code looks like following"
2536
- #~ msgstr ""
2537
- #~ "Reemplace <strong>SHORTCODE</ strong> en el código anterior con el código "
2538
- #~ "corto requerido como <strong>[TheChamp-Login style=\"background-color: "
2539
- #~ "#000;\"]</ strong>, por lo que el código final se parece a siguiente"
2540
-
2541
- #~ msgid ""
2542
- #~ "Edit that page/post and check the option \"Disable Facebook Comments on "
2543
- #~ "this post/page\" at the bottom in \"Super Socializer\" section"
2544
- #~ msgstr ""
2545
- #~ "Editar esta página/post y marque la opción \"Desactivar Comentarios "
2546
- #~ "Facebook en este post/página \" en la parte inferior en section \"Super "
2547
- #~ "Socializer\""
2548
-
2549
- #~ msgid ""
2550
- #~ "How to enable only Facebook Comments without enabling default comment "
2551
- #~ "form?"
2552
- #~ msgstr ""
2553
- #~ "Cómo habilitar sólo comentarios de Facebook sin permitir formulario de "
2554
- #~ "comentarios por defecto?"
2555
-
2556
- #~ msgid ""
2557
- #~ "Enable \"Keep only Facebook Commenting\" option from \"Facebook Commenting"
2558
- #~ "\" section."
2559
- #~ msgstr ""
2560
- #~ "Habilitar \"Consérvese únicamente Facebook Comentando\" opción en "
2561
- #~ "section \"Facebook Comentando\"."
2562
-
2563
- #~ msgid ""
2564
- #~ "Use <strong>[TheChamp-Login]</strong> Shortcode in the content of "
2565
- #~ "required page/post where you want to display Social Login interface."
2566
- #~ msgstr ""
2567
- #~ "Utilice <strong> [TheChamp-Login] </ strong> Código corto en el contenido "
2568
- #~ "de la página requerida / post en la que desea mostrar la interfaz Login "
2569
- #~ "Social."
2570
-
2571
- #, fuzzy
2572
- #~ msgid ""
2573
- #~ "You can use \"style\" attribute in the Shortcode to style the rendered "
2574
- #~ "Social Login interface."
2575
- #~ msgstr ""
2576
- #~ "Usted puede utilizar el atributo \"style\" en el Código corto al estilo "
2577
- #~ "de la interfaz Uso compartido sociales prestados."
2578
-
2579
- #~ msgid ""
2580
- #~ "Replace <strong>SHORTCODE</strong> in above code with the required "
2581
- #~ "shortcode like <strong>[TheChamp-Login style=\"background-color:#000;\"]</"
2582
- #~ "strong>, so the final code looks like following"
2583
- #~ msgstr ""
2584
- #~ "Reemplace <strong>SHORTCODE</ strong> en el código anterior con el código "
2585
- #~ "corto requerido como <strong>[TheChamp-Login style=\"background-color: "
2586
- #~ "#000;\"]</ strong>, por lo que el código final se parece a siguiente"
2587
-
2588
- #~ msgid ""
2589
- #~ "You can navigate to the <strong>Appearance</strong> > <strong>Widgets</"
2590
- #~ "strong> section in the left pan and drag <strong>Super Socializer - "
2591
- #~ "Login</strong> widget in the required area."
2592
- #~ msgstr ""
2593
- #~ "Usted puede navegar a la Apariencia <strong> </ strong >> <strong> "
2594
- #~ "Reproductores </ strong> en el platillo izquierdo y arrastre <strong> "
2595
- #~ "Súper Socializer - Login </ strong> de widget en el área requerida."
2596
-
2597
- #~ msgid ""
2598
- #~ "Remove the plugin credit links (\"Super Socializer by The Champ\") in "
2599
- #~ "just $15. Interested? Email me: <a href=\"mailto:lordofthechamps@gmail.com"
2600
- #~ "\">lordofthechamps@gmail.com</a>"
2601
- #~ msgstr ""
2602
- #~ "Quite los enlaces de crédito Programas (\"Super Socializer por The Champ "
2603
- #~ "\") en sólo $ 15. ¿Interesado? Reciba por email: lordofthechamps@gmail.com"
2604
-
2605
- #~ msgid "Feed"
2606
- #~ msgstr "Alimentación"
2607
-
2608
- #~ msgid "Important note"
2609
- #~ msgstr "nota importante"
2610
-
2611
- #~ msgid "Publish feed on user's timeline on Facebook login"
2612
- #~ msgstr ""
2613
- #~ "Publicar alimentación en la línea de tiempo del usuario al ingresar a "
2614
- #~ "Facebook"
2615
-
2616
- #~ msgid ""
2617
- #~ "If enabled, a post will be published on the timeline of the user logging "
2618
- #~ "in"
2619
- #~ msgstr ""
2620
- #~ "\"Si está activado, un mensaje será publicado en la línea de tiempo del "
2621
- #~ "usuario que ingresa \""
2622
-
2623
- #~ msgid "Facebook Feed Options"
2624
- #~ msgstr "Opciones de Alimentación en Facebook"
2625
-
2626
- #~ msgid "Message"
2627
- #~ msgstr "Mensaje"
2628
-
2629
- #~ msgid ""
2630
- #~ "Message for the feed post. %website-name% will be replaced with your "
2631
- #~ "website name in actual message."
2632
- #~ msgstr ""
2633
- #~ "Mensaje para la publicación de alimentación %web-name% se reemplazará por "
2634
- #~ "el nombre del sitio web en el mensaje real."
2635
-
2636
- #~ msgid "Link (required)"
2637
- #~ msgstr "Enlace (requerido)"
2638
-
2639
- #~ msgid ""
2640
- #~ "The link attached to this feed (required parameter for this functionality "
2641
- #~ "to work)"
2642
- #~ msgstr ""
2643
- #~ "El enlace adjunto a esta publicación (parámetro requerido para que esta "
2644
- #~ "función opere)"
2645
-
2646
- #~ msgid "Picture"
2647
- #~ msgstr "Imagen"
2648
-
2649
- #~ msgid ""
2650
- #~ "The URL of a picture attached to this post. The picture must be at least "
2651
- #~ "200px by 200px. (if this url is not specified, image from the url "
2652
- #~ "specified in Link parameter will be displayed in the post)"
2653
- #~ msgstr ""
2654
- #~ "La dirección URL de una imagen adjunta a esta publicación. La imagen debe "
2655
- #~ "ser de al menos 200px por 200px. (Si no se especifica esta url, la imagen "
2656
- #~ "de la URL especificada en el parámetro del enlace se mostrará en la "
2657
- #~ "publicación)"
2658
-
2659
- #~ msgid "Source"
2660
- #~ msgstr "Fuente"
2661
-
2662
- #~ msgid ""
2663
- #~ "The URL of a media file (either SWF or MP3) attached to this post. If "
2664
- #~ "SWF, you must also specify picture (in \"Picture\" parameter) to provide "
2665
- #~ "a thumbnail for the video."
2666
- #~ msgstr ""
2667
- #~ "La URL de un archivo multimedia (ya sea SWF o MP3) adjunto a este "
2668
- #~ "mensaje. Si SWF, también debe especificar la imagen (en el parámetro "
2669
- #~ "\"Imagen\") para proporcionar una imagen en miniatura para el vídeo."
2670
-
2671
- #~ msgid "Name"
2672
- #~ msgstr " Nombre"
2673
-
2674
- #~ msgid "The name of the link attachment"
2675
- #~ msgstr "El nombre del archivo adjunto del enlace"
2676
-
2677
- #~ msgid "Caption"
2678
- #~ msgstr "Leyenda"
2679
-
2680
- #~ msgid ""
2681
- #~ "The caption of the link (appears beneath the link name). If not "
2682
- #~ "specified, this field is automatically populated with the URL of the link."
2683
- #~ msgstr ""
2684
- #~ "La leyenda del enlace (aparece debajo del nombre del enlace). Si no se "
2685
- #~ "especifica, este campo se rellena automáticamente con la URL del enlace."
2686
-
2687
- #~ msgid "Description"
2688
- #~ msgstr "Descripción"
2689
-
2690
- #~ msgid ""
2691
- #~ "The description of the link (appears beneath the link caption). If not "
2692
- #~ "specified, this field is automatically populated by information scraped "
2693
- #~ "from the link, typically the title of the page."
2694
- #~ msgstr ""
2695
- #~ "La descripción del enlace (aparece bajo el texto del enlace). Si no se "
2696
- #~ "especifica, este campo se rellena automáticamente por información "
2697
- #~ "extraída desde el enlace, por lo general el título de la página."
2698
-
2699
- #~ msgid ""
2700
- #~ "If enabled (recommended), all the Javascript code will be included in the "
2701
- #~ "footer of your website.<br/><strong>\"wp_footer\" and \"login_footer\" "
2702
- #~ "hooks should be there in your Wordpress theme for this to work, if you "
2703
- #~ "are not sure about this, keep this option unchecked.</strong>"
2704
- #~ msgstr ""
2705
- #~ "Si está activada (recomendado), se incluirá todo el código Javascript en "
2706
- #~ "el pie de página de su sitio web. Nota: es posible que anule la "
2707
- #~ "funcionalidad del plugin si los ganchos \"\"wp_footer\"\" y "
2708
- #~ "\"\"login_footer\"\" no existen en su tema de Wordpress. En este caso, "
2709
- #~ "mantener esta opción desactivada."
2710
-
2711
- #, fuzzy
2712
- #~ msgid ""
2713
- #~ "Leave empty to auto-adjust the width. <br/>The width (in pixels) of the "
2714
- #~ "Comments block. The mobile version of the Comments block ignores the "
2715
- #~ "width parameter, and instead has a fluid width of 100%."
2716
- #~ msgstr ""
2717
- #~ "Dejar en blanco para el valor por defecto. El ancho (en píxeles) del "
2718
- #~ "bloque de comentarios. La versión móvil del bloque de Comentarios ignora "
2719
- #~ "el parámetro de anchura, y en su lugar tiene una anchura fluída del 100%."
2720
-
2721
- #, fuzzy
2722
- #~ msgid ""
2723
- #~ "Navigate to Appearance > Widgets section in the admin panel of your "
2724
- #~ "website and activate \"Super Socializer - Sharing\" widget in the desired "
2725
- #~ "area. This will display the sharing counts of the home/index page of your "
2726
- #~ "website. Do not forget to turn on the sharing counts in widget options."
2727
- #~ msgstr ""
2728
- #~ "Vaya a Apariencia> Widgets de sección en el panel de administración de su "
2729
- #~ "sitio web y activar - Widget \"Super Socializer Sharing\" en el área "
2730
- #~ "deseada. Esto mostrará los recuentos de compartición de la página "
2731
- #~ "principal / índice de su sitio web. No te olvides de encender el reparto "
2732
- #~ "cuenta con de página \"Compartir redes sociales \" en el panel de "
2733
- #~ "administración."
2734
-
2735
- #~ msgid ""
2736
- #~ "If you like the plugin, want to get it improved and want to see it at the "
2737
- #~ "top of other plugins, please consider making a donation."
2738
- #~ msgstr ""
2739
- #~ "Si te gusta el plugin, lo quiere quitar mejorado y quieren ver en la "
2740
- #~ "parte superior de otros plugins, por favor considere hacer una donación."
2741
-
2742
- #~ msgid "Load first"
2743
- #~ msgstr "Cargue primero"
2744
-
2745
- #~ msgid "Selected commenting will be loaded first on the page"
2746
- #~ msgstr "Comentando seleccionado se cargará primero en la página de"
2747
-
2748
- #~ msgid "Text on \"Switch to WordPress Commenting\" button"
2749
- #~ msgstr "Botón Texto de \"Cambiar a WordPress Comentando\""
2750
-
2751
- #, fuzzy
2752
- #~ msgid ""
2753
- #~ "This text will be display on the button to switch to WordPress comments"
2754
- #~ msgstr ""
2755
- #~ "Si está habilitado, sólo Facebook comentando estarán allí sin la opción "
2756
- #~ "de cambiar a WordPress comentar"
2757
-
2758
- #, fuzzy
2759
- #~ msgid "Text on \"Switch to Facebook Commenting\" button"
2760
- #~ msgstr "Consérvese únicamente Facebook Comentando"
2761
-
2762
- #, fuzzy
2763
- #~ msgid ""
2764
- #~ "This text will be displayed on the button to switch to Facebook comments"
2765
- #~ msgstr ""
2766
- #~ "Este texto se muestra en el botón para cambiar a los comentarios de "
2767
- #~ "Facebook"
2768
-
2769
- #~ msgid "Specify a title for commenting"
2770
- #~ msgstr "Especificar un título para comentarios"
2771
-
2772
- #~ msgid ""
2773
- #~ "Note: Twitter Social Login requires \"cURL support = enabled\" in your "
2774
- #~ "php.ini file."
2775
- #~ msgstr ""
2776
- #~ "Nota: Twitter Sociales Ingresar requiere \"soporte cURL = habilitado\" en "
2777
- #~ "su archivo php.ini."
2778
-
2779
- #~ msgid "How can I show combined share counts?"
2780
- #~ msgstr "¿Cómo muestro combinado conteos compartir?"
2781
-
2782
- #, fuzzy
2783
- #~ msgid "Facebook Comments"
2784
- #~ msgstr "Comentarios Facebook"
2785
-
2786
- #~ msgid ""
2787
- #~ "Social Login interface will get enabled at your Wordpress Comment form<br/"
2788
- #~ "><strong>Note: Social Login at comment form of your website will not get "
2789
- #~ "enabled if Facebook commenting is enabled.</strong>"
2790
- #~ msgstr ""
2791
- #~ "La interfaz Social Login se activará en tu formulario de Comentario "
2792
- #~ "Wordpress Nota: Social Login en el formulario de comentarios de su sitio "
2793
- #~ "web no se habilitará si Comentario Facebook está habilitado"
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: Super Socializer\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2016-01-29 18:58+0530\n"
6
+ "PO-Revision-Date: 2016-01-29 18:58+0530\n"
7
  "Last-Translator: The Champ <lordofthechamps@gmail.com>\n"
8
+ "Language-Team: Heateor <hello@heateor.com>\n"
9
  "Language: es\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
+ "X-Poedit-KeywordsList: __;_e\n"
14
  "X-Poedit-Basepath: .\n"
15
+ "X-Generator: Poedit 1.8.6\n"
16
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
17
  "X-Poedit-SearchPath-0: ..\n"
18
 
19
  #: ../super_socializer.php:222
20
  #, php-format
21
  msgid "Enter exactly the following url in <strong>Website</strong> and <strong>Callback Url</strong> options in your Twitter app (see step 3 %s)"
22
+ msgstr "Introduce exactamente la siguiente URL en las <strong>Website</strong> y <strong>Callback Url</strong> opciones en tu Twitter app (ver paso 3 %s)"
23
 
24
  #: ../super_socializer.php:225
25
  msgid "Make sure cURL is enabled at your website server. You may need to contact the server administrator of your website to verify this"
26
+ msgstr "Asegúrate de que cURL está activado en el servidor de tu sitio web. Es posible que necesites contactar con el administrador de tu servidor para verificar esto"
27
 
28
  #: ../super_socializer.php:395
29
  msgid "Please verify your email address to login."
30
+ msgstr "Por favor verifica tu dirección de email para ingresar."
31
 
32
  #: ../super_socializer.php:395
33
  msgid "Your email has been verified. Now you can login to your account"
34
+ msgstr "Tu email ha sido verificado. Ahora puedes ingresar en tu cuenta"
35
 
36
  #: ../super_socializer.php:399
37
  msgid "Notification"
40
  #: ../super_socializer.php:417
41
  #: ../admin/social_login.php:561
42
  msgid "Email required"
43
+ msgstr "Email requerido"
44
 
45
  #: ../super_socializer.php:420
46
  msgid "Please check your email inbox to complete the registration."
47
+ msgstr "Por favor revisa la bandeja de entrada de tu correo para completar el registro."
48
 
49
  #: ../super_socializer.php:435
50
  msgid "Follow steps 11 and 12 at GooglePlus app configuration page, about to open"
51
+ msgstr "Sigue los pasos 11 y 12 de la página de configuración de Google app, acerca de abrir"
52
 
53
  #: ../super_socializer.php:522
54
  msgid "Leave a reply"
55
+ msgstr "Deja una respuesta"
56
 
57
  #: ../super_socializer.php:711
 
58
  msgid "Super Socializer - General Options"
59
+ msgstr "Super Socializer - Opciones Generales"
60
 
61
  #: ../super_socializer.php:711
62
  #: ../admin/general_options.php:11
63
  #: ../admin/social_commenting.php:42
 
64
  msgid "General Options"
65
+ msgstr "Opciones Generales"
66
 
67
  #: ../super_socializer.php:772
 
68
  msgid "Super Socializer - Social Avatar"
69
+ msgstr "Super Socializer - Social Avatar"
70
 
71
  #: ../super_socializer.php:775
72
  msgid "Small Avatar Url"
73
+ msgstr "Url de Avatar Pequeño"
74
 
75
  #: ../super_socializer.php:780
 
76
  msgid "Large Avatar Url"
77
+ msgstr "Url de Avatar Grande"
78
 
79
+ #: ../super_socializer.php:846
80
  msgid "Email you entered is already registered or invalid"
81
+ msgstr "El email que has escrito ya está registrado o no es válido"
82
 
83
+ #: ../super_socializer.php:850
84
  msgid "Please enter a valid email address. You might be required to verify it"
85
+ msgstr "Por favor escribe una dirección de email válida. Puedes ser requerido para verificarla"
86
 
87
  #: ../helper.php:8
 
88
  msgid "Settings saved"
89
+ msgstr "Ajustes guardados"
90
 
91
  #: ../helper.php:8
92
  msgid "Dismiss this notice"
93
+ msgstr "No volver a mostrar este aviso"
94
 
95
  #: ../helper.php:155
96
  msgid "Click to show help"
97
+ msgstr "Pulsa para mostrar la ayuda"
98
 
99
  #: ../helper.php:155
100
  msgid "Click to hide help"
101
+ msgstr "Pulsa para ocultar la ayuda"
102
 
103
  #: ../helper.php:249
104
  msgid "Settings"
105
+ msgstr "Ajustes"
106
 
107
  #: ../helper.php:572
 
108
  msgid "Account linked successfully"
109
+ msgstr "Cuenta enlazada con éxito"
110
 
111
  #: ../helper.php:576
112
  msgid "Account already exists or linked"
113
+ msgstr "Esta cuenta ya existe o ha sido enlazada"
114
 
115
  #: ../helper.php:585
 
116
  msgid "You are already connected with"
117
+ msgstr "Ya estás conectado con"
118
 
119
  #: ../helper.php:585
120
  msgid "as primary social network"
122
 
123
  #: ../helper.php:600
124
  msgid "Link your social account to login to your account at this website"
125
+ msgstr "Enlaza la cuenta de tu red social para ingresar en tu cuenta de este sitio web "
126
 
127
  #: ../helper.php:637
128
  msgid "Currently"
129
+ msgstr "Actualmente"
130
 
131
  #: ../helper.php:637
132
  msgid "Remove"
133
+ msgstr "Remover"
134
 
135
  #: ../helper.php:738
 
136
  msgid "Disable Standard Social Sharing on this "
137
+ msgstr "Desactivar la Barra Estándar Compartir en redes sociales aquí"
138
 
139
  #: ../helper.php:743
 
140
  msgid "Disable Floating Social Sharing on this "
141
+ msgstr "Desactivar la Barra Flotante Compartir en redes sociales aquí"
142
 
143
  #: ../helper.php:748
 
144
  msgid "Disable Standard like buttons on this "
145
+ msgstr "Desactivar los botones Me gusta Estándares aquí"
146
 
147
  #: ../helper.php:753
 
148
  msgid "Disable Floating like buttons on this "
149
+ msgstr "Desactivar los botones Me gusta Flotantes aquí"
150
 
151
  #: ../helper.php:758
 
152
  msgid "Disable Social Commenting on this "
153
+ msgstr "Desactivar Comentarios de redes sociales aquí"
154
 
155
  #: ../helper.php:767
 
156
  msgid "Standard Sharing Interface"
157
+ msgstr "Interfaz Estándar para Compartir"
158
 
159
  #: ../helper.php:773
160
  #: ../helper.php:792
 
161
  msgid "Starting share count for "
162
+ msgstr "Comienzo del Contador de veces compartidas"
163
 
164
  #: ../helper.php:786
 
165
  msgid "Floating Sharing Interface"
166
+ msgstr "Interfaz Flotante de botones Compartir"
167
 
168
+ #: ../helper.php:879
 
169
  msgid "Social Avatar"
170
+ msgstr "Avatar Social"
171
 
172
+ #: ../helper.php:882
173
  msgid "Do not fetch and update social avatar from my profile, next time I Social Login"
174
+ msgstr "No se ha podido recuperar y actualizar el avatar social desde mi perfil, la próxima vez | Social Login"
175
 
176
+ #: ../helper.php:883
177
  msgid "Update social avatar, next time I Social Login"
178
+ msgstr "Actualiza tu avatar de redes sociales | Social Login"
179
 
180
+ #: ../helper.php:886
 
181
  msgid "Small Avatar"
182
+ msgstr "Avatar Pequeño"
183
 
184
+ #: ../helper.php:890
 
185
  msgid "Large Avatar"
186
+ msgstr "Avatar Grande"
187
 
188
+ #: ../helper.php:894
189
  #: ../admin/general_options.php:89
190
+ #: ../admin/social_sharing.php:1783
191
  #: ../admin/social_commenting.php:464
192
  #: ../admin/social_login.php:778
193
  #: ../admin/like_buttons.php:764
194
  msgid "Save Changes"
195
+ msgstr "Guardar Cambios"
196
 
197
  #: ../admin/general_options.php:17
198
  msgid "Include Javascript in website footer"
199
+ msgstr "Incluir JavaScript en el pie de página del sitio web"
200
 
201
  #: ../admin/general_options.php:27
202
  msgid "If enabled (recommended), Javascript files will be included in the footer of your website."
203
+ msgstr "Si está activo (recomendado), los archivos JavaScript serán incluidos en el pie de página de tu sitio web."
204
 
205
  #: ../admin/general_options.php:35
206
  msgid "Load all Javascript files in single file"
207
+ msgstr "Cargar todos los archivos JavaScript en un solo archivo"
208
 
209
  #: ../admin/general_options.php:45
210
  msgid "Loads Javascript in single request."
211
+ msgstr "Carga JavaScript en una única petición."
212
 
213
  #: ../admin/general_options.php:53
214
  msgid "Delete all the options on plugin deletion"
215
+ msgstr "Eliminar todas las opciones al eliminar el Plugin"
216
 
217
  #: ../admin/general_options.php:63
218
  msgid "If enabled, plugin options will get deleted when plugin is deleted/uninstalled and you will need to reconfigure the options when you install the plugin next time."
219
+ msgstr "Si se activa, las opciones del plugin se borrarán al eliminar / desinstalar el plugin, de manera que tendrá que volver a configurarlas cuando vuelva a instalar el plugin."
220
 
221
  #: ../admin/general_options.php:71
 
222
  msgid "Custom CSS"
223
+ msgstr "CSS Personalizado"
224
 
225
  #: ../admin/general_options.php:81
226
  msgid "You can specify any additional CSS rules (without &lt;style&gt; tag)"
227
+ msgstr "Puede especificar cualesquiera reglas adicionales CSS (sin la etiqueta &lt;style&gt;)"
228
 
229
  #: ../admin/help.php:4
230
  msgid "About"
231
+ msgstr "Acerca del Plugin"
232
 
233
  #: ../admin/help.php:4
234
  msgid "Version"
240
 
241
  #: ../admin/help.php:7
242
  msgid "We are a creative team with unique ideas in mind and service in heart. We love what we do. For more info join us at"
243
+ msgstr "Somos un equipo creativo con ideas únicas en la mente y el servicio en el corazón. Amamos lo que hacemos. Para obtener más información, únete a nosotros en"
244
 
245
  #: ../admin/help.php:17
246
  msgid "Donate"
248
 
249
  #: ../admin/help.php:19
250
  msgid "You can help us continue the development of this free plugin by donating"
251
+ msgstr "Puedes ayudarnos a mejorar el desarrollo de este plugin gratuito con una donación ;)"
252
 
253
  #: ../admin/help.php:20
 
254
  msgid "Donate Now"
255
+ msgstr "Donar ahora"
256
 
257
  #: ../admin/help.php:26
258
  msgid "Plugin Demo"
259
+ msgstr "Demo del Plugin"
260
 
261
  #: ../admin/help.php:32
262
  msgid "Integrate with Google Analytics"
263
+ msgstr "Integrar con Google Analytics"
264
 
265
  #: ../admin/help.php:38
266
  msgid "Boost sharing by awarding points"
267
+ msgstr "Conseguir Compartir más con concesión de puntos"
268
 
269
  #: ../admin/help.php:44
270
  msgid "Award points for Social Login"
271
+ msgstr "Otorgar puntos para el Social Login"
272
 
273
  #: ../admin/help.php:50
 
274
  msgid "Other Add-ons"
275
+ msgstr "Otros Complementos"
276
 
277
  #: ../admin/help.php:55
278
  msgid "Need Help?"
279
+ msgstr "¿Necesitas Ayuda?"
280
 
281
  #: ../admin/help.php:57
 
282
  msgid "If you <strong>have any query</strong>, need help regarding <strong>plugin setup</strong>, want <strong>custom features</strong> in the plugin or <strong>have any suggestion</strong> to improve the plugin, just drop an email at <a href=\"mailto:support@heateor.com\">support@heateor.com</a>"
283
+ msgstr "Si <strong>tienes cualquier consulta</strong>, necesitas ayuda respecto a la <strong>configuración del plugin</strong>, quieres <strong>características personalizadas</strong> en el plugin o <strong>tienes cualquier sugerencia</strong> para mejorar el plugin, sólo tienes que enviar un email a <a href=\"mailto:support@heateor.com\">support@heateor.com</a>"
284
 
285
  #: ../admin/help.php:62
 
286
  msgid "Support Us"
287
+ msgstr "Apóyanos"
288
 
289
  #: ../admin/help.php:65
290
  #: ../admin/help.php:68
293
  #: ../admin/help.php:71
294
  #: ../admin/help.php:72
295
  msgid "Rate 5-star"
296
+ msgstr "Puntuar con 5 estrellas"
297
 
298
  #: ../admin/social_sharing.php:9
299
  #: ../admin/social_commenting.php:8
300
  #: ../admin/social_login.php:8
301
  #: ../admin/like_buttons.php:10
302
  msgid "Master Control"
303
+ msgstr "Control Maestro"
304
 
305
  #: ../admin/social_sharing.php:14
306
  msgid "Enable Social Sharing"
307
+ msgstr "Permitir Compartir en redes sociales"
308
 
309
  #: ../admin/social_sharing.php:23
 
310
  msgid "Master control to enable Social Sharing"
311
+ msgstr "Control Maestro para permitir Compartir en redes sociales"
312
 
313
  #: ../admin/social_sharing.php:35
314
  msgid "Theme Selection"
315
+ msgstr "Selección de Temas"
316
 
317
  #: ../admin/social_sharing.php:36
318
  #: ../admin/like_buttons.php:37
 
319
  msgid "Standard Interface"
320
+ msgstr "Interfaz Estándar"
321
 
322
  #: ../admin/social_sharing.php:37
323
  #: ../admin/like_buttons.php:38
 
324
  msgid "Floating Interface"
325
+ msgstr "Interfaz Flotante"
326
 
327
  #: ../admin/social_sharing.php:38
328
  #: ../admin/like_buttons.php:39
329
  msgid "Miscellaneous"
330
+ msgstr "Miscelánea"
331
 
332
  #: ../admin/social_sharing.php:39
333
+ #: ../admin/social_sharing.php:1731
334
+ #: ../admin/social_sharing.php:1733
335
  #: ../admin/social_login.php:37
336
  #: ../admin/social_login.php:764
337
  #: ../admin/like_buttons.php:40
338
  #: ../admin/like_buttons.php:751
339
  msgid "Shortcode & Widget"
340
+ msgstr "Widgets y Shortcodes"
341
 
342
  #: ../admin/social_sharing.php:40
343
  msgid "Troubleshooter"
344
+ msgstr "Resolución de problmas"
345
 
346
  #: ../admin/social_sharing.php:41
347
+ #: ../admin/social_sharing.php:1762
348
  #: ../admin/social_commenting.php:36
349
  #: ../admin/social_commenting.php:452
350
  msgid "FAQ"
351
+ msgstr "FAQ"
352
 
353
  #: ../admin/social_sharing.php:48
354
  msgid "Standard interface theme"
355
+ msgstr "Tema de la Interfaz Estándar"
356
 
357
  #: ../admin/social_sharing.php:53
358
  #: ../admin/social_sharing.php:360
359
  msgid "Icon Preview"
360
+ msgstr "Vista previa de Icono"
361
 
362
  #: ../admin/social_sharing.php:125
363
  #: ../admin/social_sharing.php:433
364
  msgid "Do not forget to save the configuration after making changes by clicking the save button below"
365
+ msgstr "No olvides guardar la configuración después de hacer cambios clickando en el botón \"Guardar\" de abajo"
366
 
367
  #: ../admin/social_sharing.php:132
368
  #: ../admin/social_sharing.php:440
372
  #: ../admin/social_sharing.php:136
373
  #: ../admin/social_sharing.php:444
374
  msgid "Round"
375
+ msgstr "Redondeado"
376
 
377
  #: ../admin/social_sharing.php:138
378
  #: ../admin/social_sharing.php:446
382
  #: ../admin/social_sharing.php:140
383
  #: ../admin/social_sharing.php:448
384
  msgid "Rectangle"
385
+ msgstr "Rectángulo"
386
 
387
  #: ../admin/social_sharing.php:147
388
  #: ../admin/social_sharing.php:455
 
389
  msgid "Shape of the sharing icons"
390
+ msgstr "Forma de los iconos de compartir"
391
 
392
  #: ../admin/social_sharing.php:156
393
  #: ../admin/social_sharing.php:464
394
  msgid "Size (in pixels)"
395
+ msgstr "Tamaño (en pixels)"
396
 
397
  #: ../admin/social_sharing.php:172
398
  #: ../admin/social_sharing.php:480
 
399
  msgid "Size of the sharing icons"
400
+ msgstr "Tamaño de los iconos de Compartir"
401
 
402
  #: ../admin/social_sharing.php:182
403
  #: ../admin/social_sharing.php:490
 
404
  msgid "Width (in pixels)"
405
+ msgstr "Anchura (en pixels)"
406
 
407
  #: ../admin/social_sharing.php:198
408
  #: ../admin/social_sharing.php:506
 
409
  msgid "Width of the sharing icons"
410
+ msgstr "Anchura de los iconos de Compartir"
411
 
412
  #: ../admin/social_sharing.php:206
413
  #: ../admin/social_sharing.php:514
 
414
  msgid "Height (in pixels)"
415
+ msgstr "Altura (en pixels)"
416
 
417
  #: ../admin/social_sharing.php:222
418
  #: ../admin/social_sharing.php:530
 
419
  msgid "Height of the sharing icons"
420
+ msgstr "Altura de los iconos de Compartir"
421
 
422
  #: ../admin/social_sharing.php:232
423
  #: ../admin/social_sharing.php:540
 
424
  msgid "Border radius (in pixels)"
425
+ msgstr "Borde del radio (en pixels)"
426
 
427
  #: ../admin/social_sharing.php:242
428
  #: ../admin/social_sharing.php:550
429
  msgid "Specify a value for rounded corners. More the value, more rounded will the corners be. Leave empty for sharp corners."
430
+ msgstr "Especifica un valor para las esquinas redondeadas. Cuanto más alto sea el valor, más redondeadas serán las esquinas. Déjalo vacío si prefieres las esquinas cuaadradas."
431
 
432
  #: ../admin/social_sharing.php:251
433
  #: ../admin/social_sharing.php:559
 
434
  msgid "Logo Color"
435
+ msgstr "Color del Logo"
436
 
437
  #: ../admin/social_sharing.php:255
438
  #: ../admin/social_sharing.php:276
441
  #: ../admin/social_sharing.php:584
442
  #: ../admin/social_sharing.php:603
443
  msgid "Default"
444
+ msgstr "Por defecto "
445
 
446
  #: ../admin/social_sharing.php:257
447
  #: ../admin/social_sharing.php:277
450
  #: ../admin/social_sharing.php:585
451
  #: ../admin/social_sharing.php:608
452
  msgid "On Hover"
453
+ msgstr "Con el puntero encima "
454
 
455
  #: ../admin/social_sharing.php:265
456
  #: ../admin/social_sharing.php:573
 
457
  msgid "Specify the color or hex code (example #cc78e0) for the logo of icon. Leave empty for default. You can get the hex code of the required color from <a href=\"http://www.colorpicker.com/\" target=\"_blank\">this link</a>"
458
+ msgstr "Especifica el color o código hexadecimal (por ejemplo #cc78e0) para el logo del icono. Déjalo vacío para que se aplique el valor por defecto. Puedes conseguir el código hexadecimal del color que desees en <a href=\"http://www.colorpicker.com/\" target=\"_blank\">este enlace</a>"
459
 
460
  #: ../admin/social_sharing.php:273
461
  #: ../admin/social_sharing.php:581
462
  #: ../admin/social_sharing.php:1213
463
  #: ../admin/like_buttons.php:395
464
  msgid "Background Color"
465
+ msgstr "Color del fondo"
466
 
467
  #: ../admin/social_sharing.php:284
468
  #: ../admin/social_sharing.php:592
 
469
  msgid "Specify the color or hex code (example #cc78e0) for icon background. Save \"transparent\" for transparent background. Leave empty for default. You can get the hex code of the required color from <a href=\"http://www.colorpicker.com/\" target=\"_blank\">this link</a>"
470
+ msgstr "Especifica el color o código hexadecimal (por ejemplo #cc78e0) para el fondo del icono. Selecciona \"transparente\" para que el fondo sea transparente. Déjalo vacío para que se aplique el valor por defecto. Puedes conseguir el código hexadecimal del color que desees en <a href=\"http://www.colorpicker.com/\" target=\"_blank\">este enlace</a>"
471
 
472
  #: ../admin/social_sharing.php:292
473
  #: ../admin/social_sharing.php:600
474
  msgid "Border"
475
+ msgstr "Borde"
476
 
477
  #: ../admin/social_sharing.php:298
478
  #: ../admin/social_sharing.php:303
479
  #: ../admin/social_sharing.php:605
480
  #: ../admin/social_sharing.php:610
 
481
  msgid "Border Width"
482
+ msgstr "Anchura del borde "
483
 
484
  #: ../admin/social_sharing.php:299
485
  #: ../admin/social_sharing.php:304
486
  #: ../admin/social_sharing.php:606
487
  #: ../admin/social_sharing.php:611
 
488
  msgid "Border Color"
489
+ msgstr "Color del borde "
490
 
491
  #: ../admin/social_sharing.php:311
492
  #: ../admin/social_sharing.php:618
 
493
  msgid "Icon border"
494
+ msgstr "Borde del icono"
495
 
496
  #: ../admin/social_sharing.php:319
497
  #: ../admin/social_sharing.php:626
498
  msgid "Counter Position"
499
+ msgstr "Posición del Contador"
500
 
501
  #: ../admin/social_sharing.php:319
502
  #: ../admin/social_sharing.php:626
503
  msgid "(applies, if counter enabled)"
504
+ msgstr "(aplicable si el contador está activo)"
505
 
506
  #: ../admin/social_sharing.php:323
507
  #: ../admin/social_sharing.php:630
510
  #: ../admin/like_buttons.php:170
511
  #: ../admin/like_buttons.php:417
512
  msgid "Left"
513
+ msgstr "Izquierda"
514
 
515
  #: ../admin/social_sharing.php:325
516
  #: ../admin/social_sharing.php:632
517
  msgid "Top"
518
+ msgstr "Arriba"
519
 
520
  #: ../admin/social_sharing.php:327
521
  #: ../admin/social_sharing.php:634
523
  #: ../admin/social_sharing.php:1236
524
  #: ../admin/like_buttons.php:172
525
  #: ../admin/like_buttons.php:418
 
526
  msgid "Right"
527
+ msgstr "Derecha"
528
 
529
  #: ../admin/social_sharing.php:329
530
  #: ../admin/social_sharing.php:636
531
  msgid "Bottom"
532
+ msgstr "Abajo"
533
 
534
  #: ../admin/social_sharing.php:331
535
  #: ../admin/social_sharing.php:638
536
  msgid "Inner Left"
537
+ msgstr "Izquierda Interior"
538
 
539
  #: ../admin/social_sharing.php:333
540
  #: ../admin/social_sharing.php:640
541
  msgid "Inner Top"
542
+ msgstr "Arriba Interior"
543
 
544
  #: ../admin/social_sharing.php:335
545
  #: ../admin/social_sharing.php:642
 
546
  msgid "Inner Right"
547
+ msgstr "Derecha Interior"
548
 
549
  #: ../admin/social_sharing.php:337
550
  #: ../admin/social_sharing.php:644
551
  msgid "Inner Bottom"
552
+ msgstr "Abajo Interior"
553
 
554
  #: ../admin/social_sharing.php:345
555
  #: ../admin/social_sharing.php:652
 
556
  msgid "Position of share counter"
557
+ msgstr "Posición del contador de veces compartidas"
558
 
559
  #: ../admin/social_sharing.php:355
 
560
  msgid "Floating interface theme"
561
+ msgstr "Tema de la Interfaz Flotante"
562
 
563
  #: ../admin/social_sharing.php:667
 
564
  msgid "Standard Sharing Interface Options"
565
+ msgstr "Opciones de la interfaz estándar de Compartir"
566
 
567
  #: ../admin/social_sharing.php:673
 
568
  msgid "Enable Standard sharing interface"
569
+ msgstr "Permitir Interfaz Estándar de Compartir"
570
 
571
  #: ../admin/social_sharing.php:683
 
572
  msgid "Master control to enable standard sharing"
573
+ msgstr "Control Maestro para permitir Compartir estándar"
574
 
575
  #: ../admin/social_sharing.php:693
576
  #: ../admin/social_sharing.php:1081
584
  #: ../admin/like_buttons.php:77
585
  #: ../admin/like_buttons.php:325
586
  msgid "Url of the webpage where icons are located (default)"
587
+ msgstr "Url de la página web donde los iconos están localizados (por defecto)"
588
 
589
  #: ../admin/social_sharing.php:699
590
  #: ../admin/social_sharing.php:1087
591
  #: ../admin/like_buttons.php:79
592
  #: ../admin/like_buttons.php:327
593
  msgid "Url of the homepage of your website"
594
+ msgstr "Url de la página de inicio de tu sitio web"
595
 
596
  #: ../admin/social_sharing.php:701
597
  #: ../admin/social_sharing.php:1089
598
  #: ../admin/like_buttons.php:81
599
  #: ../admin/like_buttons.php:329
 
600
  msgid "Custom url"
601
  msgstr "Url personalizada"
602
 
603
  #: ../admin/social_sharing.php:708
604
  #: ../admin/social_sharing.php:1096
605
  msgid "Url to share"
606
+ msgstr "Url para compartir"
607
 
608
  #: ../admin/social_sharing.php:716
609
  #: ../admin/social_login.php:343
610
  #: ../admin/like_buttons.php:96
611
  msgid "Title"
612
+ msgstr "Título"
613
 
614
  #: ../admin/social_sharing.php:726
615
  msgid "The text to display above the sharing interface"
616
+ msgstr "El texto para mostrar sobre la interfaz de Compartir"
617
 
618
  #: ../admin/social_sharing.php:738
619
  #: ../admin/social_sharing.php:1104
623
  #: ../admin/social_sharing.php:797
624
  #: ../admin/social_sharing.php:1163
625
  msgid "Drag the icons to rearrange in desired order"
626
+ msgstr "Arrastra los iconos para reorganizarlos en el orden deseado"
627
 
628
  #: ../admin/social_sharing.php:805
629
  #: ../admin/social_sharing.php:1171
 
630
  msgid "Select Sharing Services"
631
+ msgstr "Selecciona los Servicios para Compartir"
632
 
633
  #: ../admin/social_sharing.php:812
634
  #: ../admin/social_sharing.php:1178
635
  msgid "Select sharing services to show in social share bar"
636
+ msgstr "Selecciona los servicios para compartir en la barra de Compartir en redes sociales"
637
 
638
  #: ../admin/social_sharing.php:847
639
  #: ../admin/social_sharing.php:1231
640
  #: ../admin/like_buttons.php:166
641
  #: ../admin/like_buttons.php:413
 
642
  msgid "Horizontal alignment"
643
+ msgstr "Alineación horizontal"
644
 
645
  #: ../admin/social_sharing.php:852
646
  #: ../admin/like_buttons.php:171
647
  msgid "Center"
648
+ msgstr "Centrar"
649
 
650
  #: ../admin/social_sharing.php:861
651
  #: ../admin/social_sharing.php:1244
 
652
  msgid "Horizontal alignment of the sharing interface"
653
+ msgstr "Alineación horizontal de la interfaz de Compartir"
654
 
655
  #: ../admin/social_sharing.php:869
656
  #: ../admin/like_buttons.php:188
657
  msgid "Position with respect to content"
658
+ msgstr "Posición respecto al contenido"
659
 
660
  #: ../admin/social_sharing.php:873
661
  #: ../admin/like_buttons.php:192
662
  msgid "Top of the content"
663
+ msgstr "Encima del contenido"
664
 
665
  #: ../admin/social_sharing.php:875
666
  #: ../admin/like_buttons.php:194
667
  msgid "Bottom of the content"
668
+ msgstr "Debajo del contenido"
669
 
670
  #: ../admin/social_sharing.php:882
671
  msgid "Specify position of the sharing interface with respect to the content"
672
+ msgstr "Especifica la posición de la interfaz de Compartir respecto al contenido"
673
 
674
  #: ../admin/social_sharing.php:890
675
  #: ../admin/social_sharing.php:1310
676
  msgid "Placement"
677
+ msgstr "Ubicación"
678
 
679
  #: ../admin/social_sharing.php:894
680
  #: ../admin/social_sharing.php:1314
683
  #: ../admin/like_buttons.php:213
684
  #: ../admin/like_buttons.php:496
685
  msgid "Homepage"
686
+ msgstr "Página de Inicio"
687
 
688
  #: ../admin/social_sharing.php:896
689
  #: ../admin/social_sharing.php:1316
690
  #: ../admin/like_buttons.php:215
691
  #: ../admin/like_buttons.php:498
692
  msgid "Posts"
693
+ msgstr "Entradas"
694
 
695
  #: ../admin/social_sharing.php:898
696
  #: ../admin/social_sharing.php:1318
702
  #: ../admin/social_sharing.php:900
703
  #: ../admin/social_sharing.php:1320
704
  msgid "Excerpts (at Homepage)"
705
+ msgstr "Extractos (en la Página de Inicio)"
706
 
707
  #: ../admin/social_sharing.php:902
708
  #: ../admin/social_sharing.php:1322
709
  #: ../admin/like_buttons.php:221
710
  #: ../admin/like_buttons.php:504
711
  msgid "Category Archives"
712
+ msgstr "Archivos por Categoría"
713
 
714
  #: ../admin/social_sharing.php:904
715
  #: ../admin/social_sharing.php:1324
716
  #: ../admin/like_buttons.php:223
717
  #: ../admin/like_buttons.php:506
718
  msgid "Archive Pages (Category, Tag, Author or Date based pages)"
719
+ msgstr "Páginas de Archivo (Categoría, Etiqueta, Autor o páginas clasificadas por Fecha)"
720
 
721
  #: ../admin/social_sharing.php:920
722
  #: ../admin/like_buttons.php:239
 
723
  msgid "BuddyPress activity"
724
+ msgstr "Actividad en BuddyPress"
725
 
726
  #: ../admin/social_sharing.php:922
727
  #: ../admin/like_buttons.php:242
728
  msgid "BuddyPress group (only at top of content)"
729
+ msgstr "Grupo BuddyPress (sólo encima del contenido)"
730
 
731
  #: ../admin/social_sharing.php:928
732
  #: ../admin/social_sharing.php:1346
733
  #: ../admin/like_buttons.php:249
734
  #: ../admin/like_buttons.php:527
735
  msgid "BBPress forum"
736
+ msgstr "Foro BBPress"
737
 
738
  #: ../admin/social_sharing.php:931
739
  #: ../admin/social_sharing.php:1349
740
  #: ../admin/like_buttons.php:252
741
  #: ../admin/like_buttons.php:530
742
  msgid "BBPress topic"
743
+ msgstr "Tema BBPress"
744
 
745
  #: ../admin/social_sharing.php:934
746
  #: ../admin/like_buttons.php:255
747
  msgid "BBPress reply"
748
+ msgstr "Respuesta BBPress"
749
 
750
  #: ../admin/social_sharing.php:941
751
  #: ../admin/like_buttons.php:261
752
  msgid "After individual product at WooCommerce Shop page"
753
+ msgstr "Después de cada producto individual en página de Tienda WooCommerce"
754
 
755
  #: ../admin/social_sharing.php:944
756
  #: ../admin/like_buttons.php:264
757
  msgid "WooCommerce Product Page"
758
+ msgstr "Página de Producto WooCommerce"
759
 
760
  #: ../admin/social_sharing.php:947
761
  #: ../admin/like_buttons.php:267
762
  msgid "WooCommerce Thankyou Page"
763
+ msgstr "Página de Agradecimiento WooCommerce"
764
 
765
  #: ../admin/social_sharing.php:958
766
  msgid "Specify the pages where you want to enable Sharing interface"
767
+ msgstr "Especifica las páginas donde quieres permitir la interfaz de Compartir"
768
 
769
  #: ../admin/social_sharing.php:966
770
  #: ../admin/social_sharing.php:1367
771
  msgid "Show share counts"
772
+ msgstr "Mostrar contadores de las veces compartidas"
773
 
774
  #: ../admin/social_sharing.php:971
775
  #: ../admin/social_sharing.php:1372
776
  msgid "Official share counts are supported for Facebook, Linkedin, GooglePlus, Delicious, Buffer, Reddit, Pinterest, Stumbleupon and Vkontakte"
777
+ msgstr "Los contadores oficiales de las veces compartidas son soportados por Facebook, Linkedin, GooglePlus, Delicious, Buffer, Reddit, Pinterest, Stumbleupon y Vkontakte"
778
 
779
  #: ../admin/social_sharing.php:988
780
  #: ../admin/social_sharing.php:1380
781
  #, php-format
782
  msgid "Use <a href=\"%s\" target=\"_blank\">NewShareCounts</a> to show Twitter share counts"
783
+ msgstr "Usa <a href=\"%s\" target=\"_blank\">Nuevos Contadores de Compartir</a> para mostrar el número de veces compartidas en Twitter"
784
 
785
  #: ../admin/social_sharing.php:990
786
  #: ../admin/social_sharing.php:1382
787
+ #, php-format
788
  msgid "For this to work, you have to enter your website url %s and sign in using Twitter at <a href=\"%s\" target=\"_blank\">their website</a>"
789
+ msgstr "Para que esto funcione, tienes que introducir la url de tu sitio web %s e ingresar usando Twitter en <a href=\"%s\" target=\"_blank\">su sitio web</a>"
790
 
791
  #: ../admin/social_sharing.php:992
792
  #: ../admin/social_sharing.php:1384
793
  #, php-format
794
  msgid "Use <a href=\"%s\" target=\"_blank\">OpenShareCount</a> to show Twitter share counts"
795
+ msgstr "Usa <a href=\"%s\" target=\"_blank\">Abrir Contador de Compartir</a> para mostrar el número de veces compartidas en Twitter"
796
 
797
  #: ../admin/social_sharing.php:994
798
  #: ../admin/social_sharing.php:1386
799
+ #, php-format
800
  msgid "For this to work, you have to sign up and register your website url %s at <a href=\"%s\" target=\"_blank\">their website</a>"
801
+ msgstr "Para que esto funcione, tienes que firmar y registrar la url de tu sitio web %s en <a href=\"%s\" target=\"_blank\">su sitio web </a>"
802
 
803
  #: ../admin/social_sharing.php:1001
804
  #: ../admin/social_sharing.php:1393
805
  msgid "If enabled, share counts are displayed above sharing icons."
806
+ msgstr "Si se activa, los contadores de veces compartidas aparecerán encima de los iconos de compartir."
807
 
808
  #: ../admin/social_sharing.php:1010
809
  #: ../admin/social_sharing.php:1402
 
810
  msgid "Show total shares"
811
+ msgstr "Mostrar número total de veces compartidas"
812
 
813
  #: ../admin/social_sharing.php:1020
814
  #: ../admin/social_sharing.php:1412
 
815
  msgid "If enabled, total shares will be displayed with sharing icons"
816
+ msgstr "Si se activa, los contadores de veces compartidas aparecerán con los iconos de compartir."
817
 
818
  #: ../admin/social_sharing.php:1029
819
  #: ../admin/social_sharing.php:1421
 
820
  msgid "Enable 'More' icon"
821
+ msgstr "Permitir el icono 'Más'"
822
 
823
  #: ../admin/social_sharing.php:1039
824
  #: ../admin/social_sharing.php:1431
825
  msgid "If enabled, \"More\" icon will be displayed after selected sharing icons which shows additional sharing networks in popup"
826
+ msgstr "Si se activa, el icono \"Más\" aparecerá después de los iconos de compartir seleccionados, y mostrará en un popup las redes adicionales para compartir"
827
 
828
  #: ../admin/social_sharing.php:1055
 
829
  msgid "Floating Sharing Interface Options"
830
+ msgstr "Opciones de la Interfaz Flotante de Compartir"
831
 
832
  #: ../admin/social_sharing.php:1061
 
833
  msgid "Enable Floating sharing interface"
834
+ msgstr "Permitir la Interfaz Flotante de Compartir"
835
 
836
  #: ../admin/social_sharing.php:1071
 
837
  msgid "Master control to enable floating sharing widget"
838
+ msgstr "Control maestro para permitir el widget flotante de compartir"
839
 
840
  #: ../admin/social_sharing.php:1223
841
  msgid "Specify the color or hex code (example #cc78e0) for the background of vertical sharing bar. Leave empty for transparent. You can get the hex code of the required color from <a href=\"http://www.colorpicker.com/\" target=\"_blank\">this link</a>"
842
+ msgstr "Especifica el color o código hexadecimal (por ejemplo #cc78e0) para el fondo de la barra vertical de compartir. Déjalo vacío si lo quieres transparente. Puedes conseguir el código hexadecimal del color que desees en <a href=\"http://www.colorpicker.com/\" target=\"_blank\">este enlace</a>"
843
 
844
  #: ../admin/social_sharing.php:1253
845
  #: ../admin/like_buttons.php:435
846
  msgid "Left offset"
847
+ msgstr "Desplazamiento a la izquierda"
848
 
849
  #: ../admin/social_sharing.php:1263
 
850
  msgid "Specify a number. Increase in number will shift sharing interface towards right and decrease will shift it towards left. Number can be negative too."
851
+ msgstr "Especifica un número. Al aumentar el número la interfaz de compartir se desplazará hacia la derecha, mientras que al disminuirlo se desplazará hacia la izquierda. El número puede ser negativo también."
852
 
853
  #: ../admin/social_sharing.php:1273
854
  #: ../admin/like_buttons.php:455
 
855
  msgid "Right offset"
856
+ msgstr "Desplazamiento a la derecha"
857
 
858
  #: ../admin/social_sharing.php:1283
 
859
  msgid "Specify a number. Increase in number will shift sharing interface towards left and decrease will shift it towards right. Number can be negative too."
860
+ msgstr "Especifica un número. Al aumentar el número la interfaz de compartir se desplazará hacia la izquierda, mientras que al disminuirlo se desplazará hacia la derecha. El número puede ser negativo también."
861
 
862
  #: ../admin/social_sharing.php:1292
863
  #: ../admin/like_buttons.php:474
864
  msgid "Top offset"
865
+ msgstr "Desplazamiento hacia arriba"
866
 
867
  #: ../admin/social_sharing.php:1302
868
  msgid "Specify a number. Increase in number will shift sharing interface towards bottom and decrease will shift it towards top."
869
+ msgstr "Especifica un número. Al aumentar el número la interfaz de compartir se desplazará hacia abajo, mientras que al disminuirlo se desplazará hacia abajo."
870
 
871
  #: ../admin/social_sharing.php:1338
872
  #: ../admin/like_buttons.php:520
 
873
  msgid "BuddyPress group"
874
+ msgstr "grupo BuddyPress"
875
 
876
  #: ../admin/social_sharing.php:1359
877
  msgid "Specify the pages where you want to enable vertical Sharing interface"
878
+ msgstr "Especifica las páginas donde quieres permitir la interfaz vertical de Compartir"
879
 
880
  #: ../admin/social_sharing.php:1439
 
881
  msgid "Vertical floating bar responsiveness"
882
+ msgstr "Barra flotante vertical adaptativa multidispositivo (responsiveness)"
883
 
884
  #: ../admin/social_sharing.php:1442
885
  #, php-format
886
  msgid "Display vertical interface only when screen is wider than %s pixels"
887
+ msgstr "Mostrar la interfaz vertical sólo cuando la pantalla es más ancha que %s pixels"
888
 
889
  #: ../admin/social_sharing.php:1449
890
  msgid "Display vertical interface only when screen is wider than the width specified."
891
+ msgstr "Mostrar la interfaz vertical sólo cuando la pantalla es más ancha que el ancho especificado."
892
 
893
  #: ../admin/social_sharing.php:1457
894
  msgid "Horizontal floating bar responsiveness"
895
+ msgstr "Barra flotante vertical adaptativa multidispositivo (responsiveness)"
896
 
897
  #: ../admin/social_sharing.php:1460
898
+ #, php-format
899
  msgid "Stick vertical floating interface horizontally at bottom only when screen is narrower than %s pixels"
900
+ msgstr "Mantener siempre visible la interfaz vertical flotante horizontalmente en el fondo sólo cuando la pantalla sea más estrecha que %s pixels"
901
 
902
  #: ../admin/social_sharing.php:1467
903
  msgid "Stick vertical floating interface horizontally at bottom only when screen is narrower than the width specified"
904
+ msgstr "Mantener siempre visible la interfaz vertical flotante horizontalmente en el fondo sólo cuando la pantalla sea más estrecha que el ancho especificado"
905
 
906
  #: ../admin/social_sharing.php:1477
 
907
  msgid "Horizontal floating bar position"
908
+ msgstr "Posición de la barra flotante horizontal"
909
 
910
  #: ../admin/social_sharing.php:1480
911
  #, php-format
912
  msgid "%s pixels from %s"
913
+ msgstr "%s pixels de %s"
914
 
915
  #: ../admin/social_sharing.php:1487
916
  msgid "Alignment of horizontal floating interface. Number can be negative too."
917
+ msgstr "Alineación de la interfaz flotante horizontal, El número puede ser negativo también."
918
 
919
  #: ../admin/social_sharing.php:1506
920
  #: ../admin/like_buttons.php:576
 
921
  msgid "Url shortener"
922
+ msgstr "Acortador de Url"
923
 
924
  #: ../admin/social_sharing.php:1512
925
  msgid "Use shortlinks already installed"
926
+ msgstr "Utiliza los shortlinks ya instalados"
927
 
928
  #: ../admin/social_sharing.php:1522
929
+ msgid "Uses default short url permalinks without using any additional plugin"
930
+ msgstr ""
 
931
 
932
  #: ../admin/social_sharing.php:1530
933
  msgid "Enable bit.ly url shortener for sharing"
935
 
936
  #: ../admin/social_sharing.php:1540
937
  #: ../admin/like_buttons.php:610
 
938
  msgid "Master control to enable bit.ly url shortening for sharing"
939
+ msgstr "Control maestro para permitir el acortamiento de URL bit.ly para compartir"
940
 
941
  #: ../admin/social_sharing.php:1548
942
  #: ../admin/like_buttons.php:618
943
  msgid "bit.ly username"
944
+ msgstr "Nombre de usuario bit.ly"
945
 
946
  #: ../admin/social_sharing.php:1558
947
  #: ../admin/like_buttons.php:628
948
+ #, php-format
949
  msgid "Login to your bit.ly account and navigate to <a href=\"%s\" target=\"_blank\">this link</a> to get bit.ly username"
950
+ msgstr "Ingresa a tu cuenta bit.ly y ve a <a href=\"%s\" target=\"_blank\">este enlace</a> para obtener tu nombre de usuario bit.ly"
951
 
952
  #: ../admin/social_sharing.php:1567
953
  #: ../admin/like_buttons.php:637
 
954
  msgid "bit.ly API Key"
955
+ msgstr "bit.ly API Key"
956
 
957
  #: ../admin/social_sharing.php:1577
958
  #: ../admin/like_buttons.php:647
959
+ #, php-format
960
  msgid "Login to your bit.ly account and navigate to <a href=\"%s\" target=\"_blank\">this link</a> to get your API key"
961
+ msgstr "Ingresa a tu cuenta bit.ly y ve a <a href=\"%s\" target=\"_blank\">este enlace</a> para obtener tu API key"
962
+
963
+ #: ../admin/social_sharing.php:1586
964
+ #: ../admin/like_buttons.php:656
965
+ msgid "Clear Bitly Cache"
966
+ msgstr ""
967
 
968
  #: ../admin/social_sharing.php:1590
969
  #: ../admin/like_buttons.php:660
 
970
  msgid "ShortUrl cache cleared successfully."
971
+ msgstr "La caché de ShortUrl se ha vaciado con éxito."
972
 
973
  #: ../admin/social_sharing.php:1597
974
  #: ../admin/like_buttons.php:667
975
  msgid "Use this to delete short urls saved in database. Handy, if urls of your website have been changed but short urls are still being generated for old urls."
976
+ msgstr "Utiliza esta opción para eliminar las url cortas guardadas en la base de datos. Esto es práctico, si las url de tu sitio web han cambiado, pero las url cortas todavía se están generando para viejas url."
977
 
978
  #: ../admin/social_sharing.php:1606
979
+ msgid "Share Count Cache"
980
+ msgstr ""
981
+
982
  #: ../admin/social_sharing.php:1612
983
+ msgid "Refresh Share Count cache every"
984
+ msgstr ""
985
+
986
+ #: ../admin/social_sharing.php:1628
987
+ msgid "Frequent cache refreshing results in slower loading of pages with share counts enabled"
988
+ msgstr ""
989
+
990
+ #: ../admin/social_sharing.php:1636
991
+ msgid "Clear Share Counts Cache"
992
+ msgstr ""
993
+
994
+ #: ../admin/social_sharing.php:1640
995
+ #, fuzzy
996
+ msgid "Share Counts cache cleared successfully."
997
+ msgstr "La caché de ShortUrl se ha vaciado con éxito."
998
+
999
+ #: ../admin/social_sharing.php:1647
1000
+ msgid "Use this to clear cached share counts"
1001
+ msgstr ""
1002
+
1003
+ #: ../admin/social_sharing.php:1656
1004
+ #: ../admin/social_sharing.php:1662
1005
  #: ../admin/social_commenting.php:311
1006
  #: ../admin/like_buttons.php:676
1007
  #: ../admin/like_buttons.php:682
1008
  msgid "Language"
1009
  msgstr "Idioma"
1010
 
1011
+ #: ../admin/social_sharing.php:1672
1012
+ #, php-format
1013
  msgid "Enter the code of the language you want to use for like buttons. You can find the language codes at <a href=\"%s\" target=\"_blank\">this link</a>. Leave it empty for default language(English)"
1014
+ msgstr "Introduce el código del idioma que deseas utilizar para los botones \"Me gusta\". Puedes encontrar los códigos de idioma en <a href=\"%s\" target=\"_blank\">este enlace</a>. Déjalo vacío para el idioma por defecto (Inglés)"
1015
 
1016
+ #: ../admin/social_sharing.php:1681
 
1017
  msgid "Username in sharing"
1018
+ msgstr "Nombre de usuario en Compartir"
1019
 
1020
+ #: ../admin/social_sharing.php:1687
1021
  msgid "Twitter username (without @)"
1022
+ msgstr "Nombre de usuario de Twitter (sin @)"
1023
 
1024
+ #: ../admin/social_sharing.php:1697
1025
+ #: ../admin/social_sharing.php:1716
1026
  msgid "Provided username will be appended after the content being shared as \"via @USERNAME\". Leave empty if you do not want any username in the content being shared."
1027
+ msgstr "El nombre de usuario proporcionado se añadirá después de que el contenido sea comparte como \"via @USERNAME\". Déjalo vacío si no quieres ningún nombre de usuario en el contenido compartido."
1028
 
1029
+ #: ../admin/social_sharing.php:1706
 
1030
  msgid "Buffer username (without @)"
1031
+ msgstr "Nombre de usuario de Buffer (sin @)"
1032
 
1033
+ #: ../admin/social_sharing.php:1743
1034
  msgid "Facebook Sharing Troubleshooter"
1035
+ msgstr "Resolución de problemas al Compartir en Facebook"
1036
 
1037
+ #: ../admin/social_sharing.php:1748
1038
  msgid "If Facebook sharing is not working fine, click at the following link and enter the problematic url (where Facebook sharing is not working properly) of your website in the text field:"
1039
+ msgstr "Si el contenido no se está compartiendo correctamente en Facebook, haz click en el siguiente enlace e introduce la url problemática de tu sitio web (la que Facebook no está compartiendo correctamente) en el campo de texto:"
1040
 
1041
+ #: ../admin/social_sharing.php:1764
1042
  msgid "How can I show share counts of my website rather than of individual pages/posts?"
1043
+ msgstr "¿Cómo puedo mostrar los contadores de veces compartidas de mi sitio web en lugar de páginas individuales o entradas?"
1044
 
1045
+ #: ../admin/social_sharing.php:1765
 
1046
  msgid "How can I disable sharing on particular page/post?"
1047
+ msgstr "¿Cómo puedo desactivar los botones de Compartir en una página individual o entrada?"
1048
 
1049
+ #: ../admin/social_sharing.php:1766
1050
  msgid "How can I specify minimum sharing count for sharing networks?"
1051
+ msgstr "¿Cómo puedo especificar el número mínimo de veces compartidas para las redes sociales?"
1052
 
1053
+ #: ../admin/social_sharing.php:1767
1054
  msgid "How to share specific page?"
1055
+ msgstr "¿Cómo compartir una página específica?"
1056
 
1057
+ #: ../admin/social_sharing.php:1768
1058
  msgid "How to integrate Google Analytics with sharing?"
1059
+ msgstr "¿Cómo integrar Google Analytics con Compartir?"
1060
 
1061
+ #: ../admin/social_sharing.php:1769
1062
  msgid "How to customize the look of total share counts?"
1063
+ msgstr "¿Cómo personalizar el aspecto de los contadores totales de veces compartidas?"
1064
 
1065
+ #: ../admin/social_sharing.php:1770
 
1066
  msgid "How to customize the look of individual share counts?"
1067
+ msgstr "¿Cómo personalizar el aspecto de los contadores individuales de veces compartidas?"
1068
 
1069
+ #: ../admin/social_sharing.php:1771
 
1070
  msgid "How to show Whatsapp icon only on mobile devices?"
1071
+ msgstr "¿Cómo mostrar el icono de WhatsApp sólo en dispositivos móviles?"
1072
+
1073
+ #: ../admin/social_sharing.php:1772
1074
+ msgid "How to hide arrow after floating sharing bar?"
1075
+ msgstr ""
1076
 
1077
  #: ../admin/social_commenting.php:13
 
1078
  msgid "Enable Social Commenting"
1079
+ msgstr "Permitir Comentarios en redes sociales"
1080
 
1081
  #: ../admin/social_commenting.php:23
 
1082
  msgid "Master control to enable Social Commenting"
1083
+ msgstr "Control maestro para permitir Comentarios en redes sociales"
1084
 
1085
  #: ../admin/social_commenting.php:34
 
1086
  msgid "Social Commenting"
1087
+ msgstr "Comentarios en redes sociales"
1088
 
1089
  #: ../admin/social_commenting.php:35
1090
  #: ../admin/social_commenting.php:440
1091
  msgid "Shortcode"
1092
+ msgstr "Shortcode"
1093
 
1094
  #: ../admin/social_commenting.php:48
1095
  msgid "Order of tabs in commenting interface"
1096
+ msgstr "Orden de pestañas en la interfaz de comentarios"
1097
 
1098
  #: ../admin/social_commenting.php:58
1099
  msgid "Order of the tabs shown in social commenting interface. Defaults to wordpress,facebook,googleplus,disqus"
1100
+ msgstr "Orden de las pestañas mostradas en la interfaz de comentarios en redes sociales. Por defecto es: wordpress, facebook, google plus, disqus"
1101
 
1102
  #: ../admin/social_commenting.php:66
1103
  msgid "Comment area label"
1104
+ msgstr "Etiqueta del área de comentarios"
1105
 
1106
  #: ../admin/social_commenting.php:76
 
1107
  msgid "Label for comment area"
1108
+ msgstr "Etiqueta para el área de comentarios"
1109
 
1110
  #: ../admin/social_commenting.php:89
 
1111
  msgid "Enable Social Commenting at"
1112
+ msgstr "Permitir Comentarios Sociales en"
1113
 
1114
  #: ../admin/social_commenting.php:108
 
1115
  msgid "Specify the page/post groups where you want to enable Social Commenting"
1116
+ msgstr "Especifica los grupos de páginas/entradas donde quieres permitir Comentarios Sociales"
1117
 
1118
  #: ../admin/social_commenting.php:119
1119
  msgid "HTML ID of comment form container"
1120
+ msgstr "HTML ID del contenedor del formulario de comentario"
1121
 
1122
  #: ../admin/social_commenting.php:129
1123
  msgid "HTML ID of container element of the default comment form at front end. Leave empty for default ID - \"respond\". You need to specify it if default comment form is appearing and Social Commenting is not getting enabled at front-end of your website."
1124
+ msgstr "HTML ID del elemento contenedor del formulario de comentario por defecto en la vista de usuario del sitio web. Déjalo vacío para el ID por defecto - \"responder\". Es necesario especificar si el formulario de comentarios por defecto se muestra y si los Comentarios Sociales no están permitidos en la vista del usuario de tu sitio web."
1125
 
1126
  #: ../admin/social_commenting.php:139
1127
  msgid "Labels"
1128
  msgstr "Etiquetas"
1129
 
1130
  #: ../admin/social_commenting.php:144
 
1131
  msgid "Label for WordPress Commenting tab"
1132
+ msgstr "Etiqueta para la pestaña de Comentarios de WordPress"
1133
 
1134
  #: ../admin/social_commenting.php:153
 
1135
  msgid "Label for Facebook Commenting tab"
1136
+ msgstr "Etiqueta para la pestaña de Comentarios de Facebook"
1137
 
1138
  #: ../admin/social_commenting.php:162
 
1139
  msgid "Label for G+ Commenting tab"
1140
+ msgstr "Etiqueta para la pestaña de Comentarios de G+"
1141
 
1142
  #: ../admin/social_commenting.php:171
1143
  msgid "Label for Disqus Commenting tab"
1144
+ msgstr "Etiqueta para la pestaña de Comentarios de Disqus"
1145
 
1146
  #: ../admin/social_commenting.php:182
1147
  msgid "Facebook Commenting Options"
1148
+ msgstr "Opciones de Comentarios de Facebook"
1149
 
1150
  #: ../admin/social_commenting.php:188
 
1151
  msgid "Enable Facebook Comments notification and moderation"
1152
+ msgstr "Permitir la notificación y moderación de Comentarios de Facebook"
1153
 
1154
  #: ../admin/social_commenting.php:196
1155
  #: ../admin/social_commenting.php:206
1156
  msgid "Enable Facebook Commenting"
1157
+ msgstr "Permitir Comentarios de Facebook"
1158
 
1159
  #: ../admin/social_commenting.php:214
1160
  #: ../admin/social_commenting.php:372
1161
  msgid "Url to comment on"
1162
+ msgstr "Url para comentar"
1163
 
1164
  #: ../admin/social_commenting.php:224
 
1165
  msgid "The absolute URL that comments posted will be permanently associated with. Stories on Facebook about comments posted, will link to this URL.<br/>If left empty <strong>(Recommended)</strong>, url of the webpage will be used at which commenting is enabled."
1166
+ msgstr "Los comentarios se asociarán de manera permanente con la URL absoluta donde son publicados. Las Historias en Facebook sobre comentarios publicados se vincularán a esta URL.<br/>Si se deja vacía <strong>(Recomendado)</ strong>, se utilizará la url de la página web en la que los comentarios están activos."
1167
 
1168
  #: ../admin/social_commenting.php:232
1169
  #: ../admin/social_commenting.php:354
1172
 
1173
  #: ../admin/social_commenting.php:242
1174
  msgid "Leave empty to auto-adjust the width. The width (in pixels) of the Comments block."
1175
+ msgstr "Dejar en blanco para que el ancho se ajuste de manera automática. El ancho (en píxeles) del Bloque de Comentarios."
1176
 
1177
  #: ../admin/social_commenting.php:250
1178
  msgid "Color Scheme"
1179
+ msgstr "Esquema de Color"
1180
 
1181
  #: ../admin/social_commenting.php:254
1182
  msgid "Light"
1184
 
1185
  #: ../admin/social_commenting.php:255
1186
  msgid "Dark"
1187
+ msgstr "Oscuro"
1188
 
1189
  #: ../admin/social_commenting.php:263
1190
  msgid "The color scheme used by the plugin. Can be \"light\" or \"dark\"."
1191
+ msgstr "El esquema de color utilizado por el plugin. Puede ser \"claro\" o \"oscuro\"."
1192
 
1193
  #: ../admin/social_commenting.php:271
 
1194
  msgid "Number of comments"
1195
+ msgstr "Número de comentarios"
1196
 
1197
  #: ../admin/social_commenting.php:281
1198
  msgid "The number of comments to show by default. The minimum value is 1. Defaults to 10"
1199
+ msgstr "El número de comentarios que se mostrará de forma predeterminada. El valor mínimo es 1. El valor predeterminado es 10"
1200
 
1201
  #: ../admin/social_commenting.php:289
1202
  msgid "Order by"
1208
 
1209
  #: ../admin/social_commenting.php:294
1210
  msgid "Reverse Time"
1211
+ msgstr "Invertir Fecha"
1212
 
1213
  #: ../admin/social_commenting.php:295
1214
  msgid "Time"
1215
+ msgstr "Fecha"
1216
 
1217
  #: ../admin/social_commenting.php:303
1218
  msgid "The order to use when displaying comments."
1219
+ msgstr "El orden para usar cuando se muestren los comentarios."
1220
 
1221
  #: ../admin/social_commenting.php:321
1222
  #, php-format
1223
  msgid "Enter the code of the language you want to use to display commenting. You can find the language codes at <a href=\"%s\" target=\"_blank\">this link</a>. Leave it empty for default language(English)"
1224
+ msgstr "Introduce el código del idioma que deseas utilizar para mostrar los comentarios. Puedes encontrar los códigos de idioma en <a href=\"%s\" target=\"_blank\">este enlace</a>. Déjalo vacío para el idioma por defecto (Inglés)"
1225
 
1226
  #: ../admin/social_commenting.php:330
 
1227
  msgid "Google Plus Commenting Options"
1228
+ msgstr "Opciones de Comentarios de Google Plus"
1229
 
1230
  #: ../admin/social_commenting.php:336
1231
  #: ../admin/social_commenting.php:346
 
1232
  msgid "Enable Google Plus Commenting"
1233
+ msgstr "Permitir Comentarios de Google Plus"
1234
 
1235
  #: ../admin/social_commenting.php:364
1236
  msgid "Width of GooglePlus Commenting interface. Leave empty for auto adjust"
1237
+ msgstr "Ancho de la interfaz de los Comentarios de Google Plus. Déjalo vacío para que se ajuste automáticamente."
1238
 
1239
  #: ../admin/social_commenting.php:382
 
1240
  msgid "The absolute URL that comments posted will be permanently associated with. Stories on Google Plus about comments posted, will link to this URL.<br/>If left empty <strong>(Recommended)</strong>, url of the webpage will be used at which commenting is enabled."
1241
+ msgstr "Los comentarios se asociarán de manera permanente con la URL absoluta donde son publicados. Las Historias en Google Plus sobre comentarios publicados se vincularán a esta URL.<br/>Si se deja vacía <strong>(Recomendado)</ strong>, se utilizará la url de la página web en la que los comentarios están activos."
1242
 
1243
  #: ../admin/social_commenting.php:391
 
1244
  msgid "Disqus Commenting Options"
1245
+ msgstr "Opciones de Comentarios de Disqus"
1246
 
1247
  #: ../admin/social_commenting.php:397
1248
  #: ../admin/social_commenting.php:407
 
1249
  msgid "Enable Disqus Commenting"
1250
+ msgstr "Permitir Comentarios de Disqus"
1251
 
1252
  #: ../admin/social_commenting.php:415
1253
  msgid "Disqus Shortname"
1254
+ msgstr "Shortname Disqus"
1255
 
1256
  #: ../admin/social_commenting.php:425
 
1257
  msgid "<strong>Required to use Disqus commenting.</strong> For more info on shortname, visit following link."
1258
+ msgstr "<strong>Necesario para utilizar los Comentarios de Disqus.</ strong> Para obtener más información sobre el shortname, visita el siguiente enlace."
1259
 
1260
  #: ../admin/social_commenting.php:442
 
1261
  msgid "Social Commenting Shortcode"
1262
+ msgstr "Shortcode de Comentarios Sociales"
1263
 
1264
  #: ../admin/social_commenting.php:454
 
1265
  msgid "How can I disable Social Commenting at individual page/post?"
1266
+ msgstr "¿Cómo puedo desactivar los Comentarios Sociales en páginas individuales o entradas?"
1267
 
1268
  #: ../admin/social_commenting.php:455
1269
  msgid "How to disable default comment form from Social Commenting?"
1270
+ msgstr "¿Cómo desactivar el formulario de comentarios por defecto de los Comentarios Sociales?"
1271
 
1272
  #: ../admin/social_login.php:14
1273
  msgid "Enable Social Login"
1274
+ msgstr "Permitir el Ingreso a través de redes sociales"
1275
 
1276
  #: ../admin/social_login.php:24
1277
  msgid "Master control for Social Login. It must be checked to enable Social Login functionality"
1278
+ msgstr "Control Maestro para el Ingreso a través de redes sociales. Debe estar activado para permitir esta funcionalidad"
1279
 
1280
  #: ../admin/social_login.php:35
1281
  #: ../admin/social_login.php:43
1282
  msgid "Basic Configuration"
1283
+ msgstr "Configuración básica"
1284
 
1285
  #: ../admin/social_login.php:36
1286
  msgid "Social Login"
1287
+ msgstr "Ingreso a través de redes sociales"
1288
 
1289
  #: ../admin/social_login.php:50
1290
  msgid "Disable user registration via Social Login"
1291
+ msgstr "Desactivar el registro de usuario mediante redes sociales"
1292
 
1293
  #: ../admin/social_login.php:60
1294
  msgid "After enabling this option, new users will not be able to login through social login. Only existing users will be able to social login."
1295
+ msgstr "Después de activar esta opción, los nuevos usuarios no podrán acceder a través de las redes sociales. Sólo los usuarios ya existentes podrán hacerlo."
1296
 
1297
  #: ../admin/social_login.php:69
 
1298
  msgid "Redirection url"
1299
+ msgstr "Redirección de la url"
1300
 
1301
  #: ../admin/social_login.php:79
1302
  msgid "User will be redirected to this page after unsuccessful registration attempt via Social Login. You can specify the url of registration form or of a page showing message regarding disabled registration through Social Login."
1303
+ msgstr "El usuario será redirigido a esta página después de un intento de registro fallido a través de su contraseña de una red social. Puedes especificar la url del formulario de registro o de una página que muestre un mensaje advirtiendo que el registro a través de redes sociales está desactivado."
1304
 
1305
  #: ../admin/social_login.php:88
1306
  msgid "Select providers"
1307
+ msgstr "Seleccionar redes sociales"
1308
 
1309
  #: ../admin/social_login.php:93
1310
  msgid "Facebook"
1311
+ msgstr "Facebook"
1312
 
1313
  #: ../admin/social_login.php:97
1314
  msgid "Twitter"
1315
+ msgstr "Facebook"
1316
 
1317
  #: ../admin/social_login.php:101
1318
  msgid "LinkedIn"
1319
+ msgstr "LinkedIn"
1320
 
1321
  #: ../admin/social_login.php:105
1322
  msgid "Google+"
1323
+ msgstr "Google+"
1324
 
1325
  #: ../admin/social_login.php:109
1326
  msgid "Vkontakte"
1327
+ msgstr "Vkontakte"
1328
 
1329
  #: ../admin/social_login.php:113
1330
  msgid "Instagram"
1331
+ msgstr "Instagram"
1332
 
1333
  #: ../admin/social_login.php:117
1334
  msgid "Xing"
1335
+ msgstr "Xing"
1336
 
1337
  #: ../admin/social_login.php:125
1338
  msgid "Select Social ID provider to enable in Social Login"
1339
+ msgstr "Seleccionar un proveedor de Social ID para permitir el ingreso a través de redes sociales"
1340
 
1341
  #: ../admin/social_login.php:133
1342
  msgid "Facebook App ID"
1343
+ msgstr "Facebook App ID"
1344
 
1345
  #: ../admin/social_login.php:143
1346
  #, php-format
1347
  msgid "Required for Facebook Social Login to work. Please follow the documentation at <a href=\"%s\" target=\"_blank\">this link</a> to get Facebook App ID"
1348
+ msgstr "Requerido para que funcione el ingreso a través de Facebook. Por favor, sigue la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> para conseguir tu Facebook App ID"
1349
 
1350
  #: ../admin/social_login.php:145
1351
  msgid "Paste following url in <strong>Site URL</strong> option at the link mentioned"
1352
+ msgstr "Pega la siguiente url en la opción <strong>Site URL</ strong> en el enlace mencionado"
1353
 
1354
  #: ../admin/social_login.php:155
 
1355
  msgid "Twitter API Key"
1356
+ msgstr "Twitter API Key"
1357
 
1358
  #: ../admin/social_login.php:165
1359
+ #, php-format
1360
  msgid "Required for Twitter Social Login to work. Please follow the documentation at <a href=\"%s\" target=\"_blank\">this link</a> to get Twitter API Key"
1361
+ msgstr "Requerido para que funcione el ingreso a través de Twitter. Por favor, sigue la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> para conseguir tu Twitter Key"
1362
 
1363
  #: ../admin/social_login.php:167
1364
  #: ../admin/social_login.php:189
1365
  msgid "Paste following url in <strong>Website</strong> and <strong>Callback URL</strong> options at the link mentioned"
1366
+ msgstr "Pega la siguiente url en las opciones <strong>Website</ strong> y <strong>Callback URL</strong> en el enlace mencionado"
1367
 
1368
  #: ../admin/social_login.php:177
 
1369
  msgid "Twitter API Secret"
1370
+ msgstr "Twitter API Secret"
1371
 
1372
  #: ../admin/social_login.php:187
1373
+ #, php-format
1374
  msgid "Required for Twitter Social Login to work. Please follow the documentation at <a href=\"%s\" target=\"_blank\">this link</a> to get Twitter API Secret"
1375
+ msgstr "Requerido para que funcione el ingreso a través de Twitter. Por favor, sigue la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> para conseguir tu Twitter API Secret"
1376
 
1377
  #: ../admin/social_login.php:199
1378
  msgid "LinkedIn API Key"
1379
+ msgstr "LinkedIn API Key"
1380
 
1381
  #: ../admin/social_login.php:209
1382
  #, php-format
1383
  msgid "Required for LinkedIn Social Login to work. Please follow the documentation at <a href=\"%s\" target=\"_blank\">this link</a> to get LinkedIn API Key"
1384
+ msgstr "Requerido para que funcione el ingreso a través de LinkedIn. Por favor, sigue la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> para conseguir tu LinkedIn API Key"
1385
 
1386
  #: ../admin/social_login.php:211
1387
  #: ../admin/social_login.php:277
1388
  msgid "Paste following url in <strong>Website URL</strong> option at the link mentioned"
1389
+ msgstr "Pega la siguiente url en la opción <strong>Website URL</ strong> en el enlace mencionado"
1390
 
1391
  #: ../admin/social_login.php:221
1392
  msgid "Google+ Client ID"
1393
+ msgstr "Google+ Client ID"
1394
 
1395
  #: ../admin/social_login.php:231
1396
  #, php-format
1397
  msgid "Required for GooglePlus Social Login to work. Please follow the documentation at <a href=\"%s\" target=\"_blank\">this link</a> to get GooglePlus Client ID"
1398
+ msgstr "Requerido para que funcione el ingreso a través de GooglePlus. Por favor, sigue la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> para conseguir tu GooglePlus Client ID"
1399
 
1400
  #: ../admin/social_login.php:233
1401
  msgid "Paste following url in <strong>AUTHORIZED JAVASCRIPT ORIGINS</strong> and <strong>AUTHORIZED REDIRECT URI</strong> options at the link mentioned"
1402
+ msgstr "Pega la siguiente url en las opciones <strong>AUTHORIZED JAVASCRIPT ORIGINS</ strong> y <strong>AUTHORIZED REDIRECT URI</strong> en el enlace mencionado"
1403
 
1404
  #: ../admin/social_login.php:243
1405
  msgid "Vkontakte Application ID"
1406
+ msgstr "Vkontakte Application ID"
1407
 
1408
  #: ../admin/social_login.php:253
1409
  #, php-format
1410
  msgid "Required for Vkontakte Social Login to work. Please follow the documentation at <a href=\"%s\" target=\"_blank\">this link</a> to get Vkontakte Application ID"
1411
+ msgstr "Requerido para que funcione el ingreso a través de Vkontakte. Por favor, sigue la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> para conseguir tu Vkontakte Application ID"
1412
 
1413
  #: ../admin/social_login.php:255
1414
  msgid "Paste following url in <strong>Site address</strong> option at the link mentioned"
1415
+ msgstr "Pega la siguiente url en la opción <strong>Site address</ strong> en el enlace mencionado"
1416
 
1417
  #: ../admin/social_login.php:265
1418
  msgid "Instagram Client ID"
1419
+ msgstr "Instagram Client ID"
1420
 
1421
  #: ../admin/social_login.php:275
1422
  #, php-format
1423
  msgid "Required for Instagram Social Login to work. Please follow the documentation at <a href=\"%s\" target=\"_blank\">this link</a> to get Instagram Client ID"
1424
+ msgstr "Requerido para que funcione el ingreso a través de Instagram. Por favor, sigue la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> para conseguir tu Instagram Client ID"
1425
 
1426
  #: ../admin/social_login.php:287
1427
  msgid "Xing Consumer Key"
1428
+ msgstr "Xing Consumer Key"
1429
 
1430
  #: ../admin/social_login.php:297
1431
+ #, php-format
1432
  msgid "Required for Xing Social Login to work. Please follow the documentation at <a href=\"%s\" target=\"_blank\">this link</a> to get Xing Consumer Key"
1433
+ msgstr "Requerido para que funcione el ingreso a través de Xing. Por favor, sigue la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> para conseguir tu Xing Consumer Key"
1434
 
1435
  #: ../admin/social_login.php:299
1436
  #: ../admin/social_login.php:321
1437
  msgid "Paste following url in <strong>Callback domain</strong> option at the link mentioned"
1438
+ msgstr "Pega la siguiente url en la opción <strong>Callback domain</ strong> en el enlace mencionado"
1439
 
1440
  #: ../admin/social_login.php:309
1441
  msgid "Xing Consumer Secret"
1442
+ msgstr "Xing Consumer Secret"
1443
 
1444
  #: ../admin/social_login.php:319
1445
+ #, php-format
1446
  msgid "Required for Xing Social Login to work. Please follow the documentation at <a href=\"%s\" target=\"_blank\">this link</a> to get Xing Consumer Secret"
1447
+ msgstr "Requerido para que funcione el ingreso a través de Xing. Por favor, sigue la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> para conseguir tu Xing Consumer Secret"
1448
 
1449
  #: ../admin/social_login.php:337
1450
  msgid "Login options"
1451
+ msgstr "Opciones de Ingreso"
1452
 
1453
  #: ../admin/social_login.php:353
1454
  msgid "Text to display above the Social Login interface"
1455
+ msgstr "Texto para mostrar sobre la interfaz del Ingreso a través de redes sociales"
1456
 
1457
  #: ../admin/social_login.php:362
1458
  msgid "Enable at login page"
1459
+ msgstr "Permitir Página de Ingreso"
1460
 
1461
  #: ../admin/social_login.php:372
 
1462
  msgid "Social Login interface will get enabled at the login page of your website"
1463
+ msgstr "La interfaz de Ingreso a través de redes sociales aparecerá en la página de acceso de tu sitio web"
1464
 
1465
  #: ../admin/social_login.php:380
1466
  msgid "Enable at register page"
1467
+ msgstr "Permitir Página de Registro"
1468
 
1469
  #: ../admin/social_login.php:390
 
1470
  msgid "Social Login interface will get enabled at the registration page of your website"
1471
+ msgstr "La interfaz de Ingreso a través de redes sociales aparecerá en la página de registro de tu sitio web"
1472
 
1473
  #: ../admin/social_login.php:398
1474
  msgid "Enable at comment form"
1475
+ msgstr "Permitir el formulario de comentarios"
1476
 
1477
  #: ../admin/social_login.php:408
 
1478
  msgid "Social Login interface will get enabled at your Wordpress Comment form"
1479
+ msgstr "La interfaz de Ingreso a través de redes sociales aparecerá en el formulario de Comentario de tu WordPress"
1480
 
1481
  #: ../admin/social_login.php:422
1482
  msgid "Enable before WooCommerce Customer Login Form"
1483
+ msgstr "Permitir antes del Formulario de Ingreso de Cliente de WooCommerce"
1484
 
1485
  #: ../admin/social_login.php:432
 
1486
  msgid "Social Login Interface will get enabled before the customer login form at WooCommerce My Account page"
1487
+ msgstr "La interfaz de Ingreso a través de redes sociales aparecerá antes del formulario de ingreso de cliente de la página Mi Cuenta de WooCommerce"
1488
 
1489
  #: ../admin/social_login.php:440
1490
  msgid "Enable after WooCommerce Customer Login Form"
1491
+ msgstr "Permitir después del Formulario de Ingreso de Cliente de WooCommerce"
1492
 
1493
  #: ../admin/social_login.php:450
 
1494
  msgid "Social Login Interface will get enabled after the customer login form at WooCommerce My Account page"
1495
+ msgstr "La interfaz de Ingreso a través de redes sociales aparecerá después del formulario de ingreso de cliente de la página Mi Cuenta de WooCommerce"
1496
 
1497
  #: ../admin/social_login.php:458
 
1498
  msgid "Enable at WooCommerce checkout page"
1499
+ msgstr "Permitir en la página de checkout de WooCommerce"
1500
 
1501
  #: ../admin/social_login.php:468
 
1502
  msgid "Social Login Interface will get enabled at WooCommerce checkout page"
1503
+ msgstr "La interfaz de Ingreso a través de redes sociales aparecerá en la página de checkout de WooCommerce"
1504
 
1505
  #: ../admin/social_login.php:479
1506
  msgid "Auto-approve comments made by Social Login users"
1507
+ msgstr "Aprobar automáticamente los comentarios hechos por los usuarios conectados a través de redes sociales"
1508
 
1509
  #: ../admin/social_login.php:489
1510
  msgid "If this option is enabled, and WordPress comment is made by Social Login user, comment will get approved immediately without keeping in moderation."
1511
+ msgstr "Si esta opción está activada, y el comentario WordPress es hecho por un usuario conectado a través de WordPress, su comentario será aprobado de inmediato sin necesidad de moderación."
1512
 
1513
  #: ../admin/social_login.php:490
1514
  msgid "Note: This is not related to Facebook comments"
1515
+ msgstr "Nota: Esto no es válido para los comentarios de Facebook"
1516
 
1517
  #: ../admin/social_login.php:500
1518
  msgid "Enable social avatar"
1519
+ msgstr "Permitir avatar social"
1520
 
1521
  #: ../admin/social_login.php:510
1522
  msgid "Social profile pictures of the logged in user will be displayed as profile avatar"
1523
+ msgstr "Las imágenes del perfil social del usuario conectado se mostrarán como su avatar de perfil"
1524
 
1525
  #: ../admin/social_login.php:520
1526
  msgid "Avatar quality"
1527
+ msgstr "Calidad del avatar"
1528
 
1529
  #: ../admin/social_login.php:523
1530
  msgid "Average"
1531
+ msgstr "Media"
1532
 
1533
  #: ../admin/social_login.php:524
1534
  msgid "Best"
1535
+ msgstr "Alta"
1536
 
1537
  #: ../admin/social_login.php:531
1538
  msgid "Choose avatar quality"
1539
+ msgstr "Elegir la calidad del avatar"
1540
 
1541
  #: ../admin/social_login.php:540
 
1542
  msgid "Show option for users to update social avatar at BuddyPress profile page"
1543
+ msgstr "Mostrar la opción para los usuarios de actualizar su avatar social en su página de perfil de BuddyPress"
1544
 
1545
  #: ../admin/social_login.php:550
1546
  msgid "If enabled, users would be able to update their social avatar from \"Profile photo\" section in BuddyPress profile at front-end"
1547
+ msgstr "Si está activa, los usuarios podrán actualizar su avatar social desde la sección \"Foto de perfil\" en el perfil BuddyPress, en la vista de usuario"
1548
 
1549
  #: ../admin/social_login.php:571
1550
  msgid "If enabled and Social ID provider does not provide user's email address on login, user will be asked to provide his/her email address. Otherwise, a dummy email will be generated"
1551
+ msgstr "Si se activa y el proveedor de ID de red social no proporciona dirección de email del usuario al iniciar sesión, se le pedirá al usuario que proporcione su dirección de email. De lo contrario, se generará un email aleatorio"
1552
 
1553
  #: ../admin/social_login.php:580
1554
  msgid "Send username-password after user registration"
1555
+ msgstr "Enviar nombre de usuario y contraseña después del registro del usuario"
1556
 
1557
  #: ../admin/social_login.php:590
1558
  msgid "If enabled, an email will be sent to user after registration through Social Login, regarding his/her login credentials (username-password to be able to login via traditional login form)"
1559
+ msgstr "Si se activa, se enviará un email al usuario después de su registro a través de la red social elegida, con su nombre de usuario y su contraseña para poder iniciar sesión a través del formulario de acceso tradicional"
1560
 
1561
  #: ../admin/social_login.php:599
1562
  msgid "Enable social account linking at BuddyPress profile page"
1563
+ msgstr "Permitir cuenta de red social enlazando a la página de perfil de BuddyPress"
1564
 
1565
  #: ../admin/social_login.php:609
1566
  msgid "Enable this option to show social account linking interface at BuddyPress profile page"
1567
+ msgstr "Activa esta opción para mostrar la cuenta social enlazando a la interfaz de la página de perfil de BuddyPress"
1568
 
1569
  #: ../admin/social_login.php:618
1570
  msgid "Login redirection"
1571
+ msgstr "Redirección de Ingreso"
1572
 
1573
  #: ../admin/social_login.php:622
1574
  msgid "Same page where user logged in"
1575
+ msgstr "La misma página en la que el usuario ha iniciado sesión"
1576
 
1577
  #: ../admin/social_login.php:626
1578
  #: ../admin/social_login.php:656
1579
  msgid "Account dashboard"
1580
+ msgstr "Panel de cuenta de usuario"
1581
 
1582
  #: ../admin/social_login.php:629
1583
  #: ../admin/social_login.php:659
1584
  msgid "BuddyPress profile page"
1585
+ msgstr "Página de perfil de BuddyPress"
1586
 
1587
  #: ../admin/social_login.php:632
1588
  #: ../admin/social_login.php:662
1591
 
1592
  #: ../admin/social_login.php:640
1593
  msgid "User will be redirected to the selected page after Social Login"
1594
+ msgstr "El usuario será redirigido a la página seleccionada después de su ingreso"
1595
 
1596
  #: ../admin/social_login.php:648
1597
  msgid "Registration redirection"
1598
+ msgstr "Redirección de Registro"
1599
 
1600
  #: ../admin/social_login.php:652
 
1601
  msgid "Same page from where user registered"
1602
+ msgstr "La misma página en la que el usuario se ha registrado"
1603
 
1604
  #: ../admin/social_login.php:670
1605
  msgid "User will be redirected to the selected page after registration (first Social Login) through Social Login"
1606
+ msgstr "El usuario será redirigido a la página seleccionada después de su registro (en su primer inicio de sesión) a través de la red social"
1607
 
1608
  #: ../admin/social_login.php:678
1609
  msgid "Email popup options"
1610
+ msgstr "Opciones de popup del Email"
1611
 
1612
  #: ../admin/social_login.php:684
1613
  msgid "Text on 'Email required' popup"
1614
+ msgstr "Texto del popup 'Email requerido'"
1615
 
1616
  #: ../admin/social_login.php:694
1617
  msgid "This text will be displayed on email required popup. Leave empty if not required."
1618
+ msgstr "Este texto se mostrará en el popup de email requerido. Déjalo en blanco si no es necesario."
1619
 
1620
  #: ../admin/social_login.php:703
1621
  msgid "Error message for 'Email required' popup"
1622
+ msgstr "Mensaje de error para el popup de 'Email requerido'"
1623
 
1624
  #: ../admin/social_login.php:713
1625
  msgid "This message will be displayed to user if it provides invalid or already registered email"
1626
+ msgstr "Este mensaje se mostrará si el usuario introduce un email no válido o ya registrado"
1627
 
1628
  #: ../admin/social_login.php:722
1629
  msgid "Email popup height"
1630
+ msgstr "Altura del popup del Email"
1631
 
1632
  #: ../admin/social_login.php:732
1633
  msgid "If you are seeing vertical scrollbar in the \"Email required\" popup, you can increase the height of popup by specifying in this option. Leave empty for default."
1634
+ msgstr "Si estás viendo la barra de desplazamiento vertical en el popup de \"Email requerido\", puedes aumentar la altura del popup especificándola en esta opción. Déjala en blanco para la altura por defecto."
1635
 
1636
  #: ../admin/social_login.php:740
1637
  msgid "Enable email verification"
1638
+ msgstr "Activar verificación por email"
1639
 
1640
  #: ../admin/social_login.php:750
1641
  msgid "If enabled, email provided by the user will be verified by sending a confirmation link to that email. User would not be able to login without verifying his/her email"
1642
+ msgstr "Si se activa, se enviará un enlace de confirmación al email proporcionado por el usuario. El usuario no podrá conectarse sin verificar su email y pulsar este enlace"
1643
 
1644
  #: ../admin/social_login.php:766
 
1645
  msgid "Social Login Shortcode & Widget"
1646
+ msgstr "Widget y Shortcode para el Ingreso a través de redes sociales"
1647
 
1648
  #: ../admin/social_login.php:767
1649
  msgid "Social Linking Shortcode"
1650
+ msgstr "Shortcode para enlace a través de redes sociales"
1651
 
1652
  #: ../admin/admin.php:8
1653
  msgid "Welcome"
1654
+ msgstr "Bienvenid@"
1655
 
1656
  #: ../admin/admin.php:10
1657
  msgid "You are ready to Socialize your website."
1658
+ msgstr "Ya puedes Socializar a tu sitio web."
1659
 
1660
  #: ../admin/admin.php:11
1661
  msgid "Getting Started"
1662
+ msgstr "Primeros Pasos"
1663
 
1664
  #: ../admin/admin.php:12
 
1665
  msgid "Start configuring the options in the sections below the <strong>Super Socializer</strong> menu in the left sidebar. <strong>Social Sharing</strong> is enabled at your website by default."
1666
+ msgstr "Comienza configurando las opciones en las secciones del menú de la barra lateral izquierda bajo <strong>Super Socializer</ strong>. <strong>Compartir en redes sociales</ strong> se ha activado de forma predeterminada en tu sitio web."
1667
 
1668
  #: ../admin/admin.php:13
 
1669
  msgid "In <strong>Social Commenting</strong> section, you can configure Social Commenting."
1670
+ msgstr "En la sección <strong>Comentarios en redes sociales</strong>puedes configurar sus diferentes opciones."
1671
 
1672
  #: ../admin/admin.php:14
1673
  msgid "In <strong>Social Login</strong> section, you can select Social ID provders and configure the Social Login options."
1674
+ msgstr "En la sección <strong>Ingreso a través de redes sociales</strong>puedes configurar sus diferentes opciones."
1675
 
1676
  #: ../admin/admin.php:15
 
1677
  msgid "In <strong>Social Sharing</strong> section, you can choose the Social Networks for Sharing and configure the options for sharing."
1678
+ msgstr "En la sección <strong>Social Sharing</strong>puedes configurar las redes sociales para compartir y sus diferentes opciones."
1679
 
1680
  #: ../admin/admin.php:16
 
1681
  msgid "In <strong>Like Buttons</strong> section, you can choose the like/+1 buttons and configure the options for the same"
1682
+ msgstr "En la sección <strong>Like Buttons</strong>puedes elegir el aspecto y color de los botones Me gusta, así como configurar sus diferentes opciones."
1683
 
1684
  #: ../admin/like_buttons.php:16
1685
  msgid "Enable Like Buttons"
1686
+ msgstr "Permitir Botones Me gusta"
1687
 
1688
  #: ../admin/like_buttons.php:26
 
1689
  msgid "Master control for like buttons. It must be checked to enable like buttons functionality"
1690
+ msgstr "Control maestro para los botones Me gusta. Debes activarlo para permitir su funcionalidad"
1691
 
1692
  #: ../admin/like_buttons.php:47
 
1693
  msgid "Standard Interface Options"
1694
+ msgstr "Opciones de la Interfaz Estándar"
1695
 
1696
  #: ../admin/like_buttons.php:53
 
1697
  msgid "Enable standard interface"
1698
+ msgstr "Permitir la interfaz estándar"
1699
 
1700
  #: ../admin/like_buttons.php:63
 
1701
  msgid "Master control to enable horizontal like buttons"
1702
+ msgstr "Control maestro para permitir los botones Me gusta horizontales"
1703
 
1704
  #: ../admin/like_buttons.php:88
1705
  #: ../admin/like_buttons.php:336
1706
  msgid "Url to like/share/tweet and display like/share/tweet counts"
1707
+ msgstr "Url para los Me gusta / Compartir / Tweets y mostrar sus contadores"
1708
 
1709
  #: ../admin/like_buttons.php:106
 
1710
  msgid "The text to display above the interface"
1711
+ msgstr "Texto para mostrar sobre la interfaz"
1712
 
1713
  #: ../admin/like_buttons.php:114
1714
  #: ../admin/like_buttons.php:344
 
1715
  msgid "Select and rearrange providers"
1716
+ msgstr "Seleccionar y reordenar redes sociales"
1717
 
1718
  #: ../admin/like_buttons.php:158
1719
  #: ../admin/like_buttons.php:387
 
1720
  msgid "Select the providers for interface. Drag them to rearrange."
1721
+ msgstr "Seleccionar las redes sociales para la interfaz. Arrástralas para reordenarlas."
1722
 
1723
  #: ../admin/like_buttons.php:180
1724
  #: ../admin/like_buttons.php:426
 
1725
  msgid "Horizontal alignment of the interface"
1726
+ msgstr "Alineación horizontal de la interfaz"
1727
 
1728
  #: ../admin/like_buttons.php:201
 
1729
  msgid "Specify position of the interface with respect to the content"
1730
+ msgstr "Especificar la posición de la interfaz con respecto al contenido"
1731
 
1732
  #: ../admin/like_buttons.php:209
1733
  #: ../admin/like_buttons.php:492
 
1734
  msgid "Interface location"
1735
+ msgstr "Posición de la interfaz"
1736
 
1737
  #: ../admin/like_buttons.php:219
1738
  #: ../admin/like_buttons.php:502
1740
  msgstr "Extractos"
1741
 
1742
  #: ../admin/like_buttons.php:278
 
1743
  msgid "Specify the pages where you want to enable interface"
1744
+ msgstr "Especifica las páginas donde quieres permitir la interfaz"
1745
 
1746
  #: ../admin/like_buttons.php:295
 
1747
  msgid "Vertical (Floating) like buttons Options"
1748
+ msgstr "Opciones de los botones Me gusta en Barra Vertical Flotante"
1749
 
1750
  #: ../admin/like_buttons.php:301
 
1751
  msgid "Enable floating like buttons"
1752
+ msgstr "Permitir Barra Flotante de botones Me gusta"
1753
 
1754
  #: ../admin/like_buttons.php:311
 
1755
  msgid "Master control to enable vertical (floating) counter widget"
1756
+ msgstr "Control maestro para permitir el widget vertical flotante del contador"
1757
 
1758
  #: ../admin/like_buttons.php:405
 
1759
  msgid "Specify the color or hex code (example #cc78e0) for the background of vertical interface. Leave empty for transparent. You can get the hex code of the required color from <a href=\"http://www.colorpicker.com/\" target=\"_blank\">this link</a>"
1760
+ msgstr "Especifica el color o código hexadecimal (por ejemplo #cc78e0) para el fondo de la interfaz vertical. Déjalo vacío para que sea transparente. Puedes conseguir el código hexadecimal del color que desees en <a href=\"http://www.colorpicker.com/\" target=\"_blank\">este enlace</a>"
1761
 
1762
  #: ../admin/like_buttons.php:445
 
1763
  msgid "Specify a number. Increase in number will shift interface towards right and decrease will shift it towards left. Number can be negative too."
1764
+ msgstr "Especifica un número. Al incrementar el número la interfaz se desplazará a la derecha y al disminuirlo se desplazará hacia la izquierda. El número puede ser negativo también."
1765
 
1766
  #: ../admin/like_buttons.php:465
 
1767
  msgid "Specify a number. Increase in number will shift interface towards left and decrease will shift it towards right. Number can be negative too."
1768
+ msgstr "Especifica un número. Al incrementar el número la interfaz se desplazará a la izquierda y al disminuirlo se desplazará hacia la derecha. El número puede ser negativo también."
1769
 
1770
  #: ../admin/like_buttons.php:484
 
1771
  msgid "Specify a number. Increase in number will shift interface towards bottom and decrease will shift it towards top."
1772
+ msgstr "Especifica un número. Al incrementar el número la interfaz se desplazará hacia abajo y al disminuirlo se desplazará hacia arriba."
1773
 
1774
  #: ../admin/like_buttons.php:540
 
1775
  msgid "Specify the pages where you want to enable vertical interface"
1776
+ msgstr "Especifica las páginas donde quieres permitir la interfaz vertical"
1777
 
1778
  #: ../admin/like_buttons.php:548
1779
  msgid "Hide like buttons on mobile devices"
1780
+ msgstr "Ocultar botones Me gusta en dispositivos móviles "
1781
 
1782
  #: ../admin/like_buttons.php:558
1783
  msgid "If enabled, vertical like buttons will not appear on mobile devices"
1784
+ msgstr "Si se activa, la barra vertical de botones Me gusta no aparecerá en dispositivos móviles"
1785
 
1786
  #: ../admin/like_buttons.php:582
1787
  msgid "Use shortlinks already installed, for tweet button"
1788
+ msgstr "Usa los shortlinks ya instalados para el botón de twittear"
1789
+
1790
+ #: ../admin/like_buttons.php:592
1791
+ msgid "Allows for shortened URLs to be used when sharing content if a shortening plugin is installed"
1792
+ msgstr "Permite que las URLs abreviadas se usen al compartir contenido, si un plugin de abreviatura está instalado"
1793
 
1794
  #: ../admin/like_buttons.php:600
1795
  msgid "Enable bit.ly url shortener for tweet button"
1796
+ msgstr "Permitir el abreviador de url bit.ly para el botón de twittear"
1797
 
1798
  #: ../admin/like_buttons.php:692
1799
+ #, php-format
1800
  msgid "Enter the code of the language you want to use to render counters. You can find the language codes at <a href=\"%s\" target=\"_blank\">this link</a>. Leave it empty for default language(English)"
1801
+ msgstr "Introduce el código del idioma que deseas utilizar para renderizar los contadores. Puedes encontrar los códigos de idioma en <a href=\"%s\" target=\"_blank\">este enlace</a>. Déjalo vacío para el idioma por defecto (Inglés)"
1802
 
1803
  #: ../admin/like_buttons.php:701
 
1804
  msgid "Twitter Username"
1805
+ msgstr "Nombre de usuario de Twitter"
1806
 
1807
  #: ../admin/like_buttons.php:707
 
1808
  msgid "Twitter username for Tweet (without @)"
1809
+ msgstr "Nombre de usuario para twittear (sin @)"
1810
 
1811
  #: ../admin/like_buttons.php:717
1812
  msgid "Provided username will be appended after the content being tweeted as \"via @USERNAME\". Leave empty if you do not want any username."
1813
+ msgstr "El nombre de usuario introducido será añadido después del contenido twiteado como \"via @USERNAME\". Déjalo vacío si no quieres ningún nombre de usuario."
1814
 
1815
  #: ../admin/like_buttons.php:726
 
1816
  msgid "Twitter username for Buffer sharing (without @)"
1817
+ msgstr "Nombre de usuario de Twitter para compartir en Buffer (sin @)"
1818
 
1819
  #: ../admin/like_buttons.php:736
 
1820
  msgid "Provided username will be appended after the content in Buffer sharing as \"via @USERNAME\". Leave empty if you do not want any username."
1821
+ msgstr "El nombre de usuario introducido será añadido después del contenido compartido en Buffer como \"via @USERNAME\". Déjalo vacío si no quieres ningún nombre de usuario."
1822
 
1823
  #: ../admin/like_buttons.php:753
 
1824
  msgid "Like Buttons Shortcode & Widget"
1825
+ msgstr "Shortcode y Widget Botones Me gusta"
1826
 
1827
  #: ../inc/shortcode.php:245
 
1828
  msgid "Enable Social Login from \"Basic Configuration\" section at \"Super Socializer > Social Login\" page in admin panel"
1829
+ msgstr "Permitir el Ingreso a través de redes sociales desde la sección de \"Configuración Básica\" en la página del panel de control \"Super Socializer > Social Login\""
1830
 
1831
+ #: ../inc/social_sharing.php:706
1832
  msgid "Invalid request"
1833
+ msgstr "Petición no válida"
1834
 
1835
+ #: ../inc/social_sharing.php:713
1836
  msgid "Providers not selected"
1837
+ msgstr "Redes sociales no seleccionadas"
1838
 
1839
  #: ../inc/social_login.php:232
1840
  #, php-format
1841
  msgid "Username: %s"
1842
+ msgstr "Nombre de usuario: %s"
1843
 
1844
  #: ../inc/social_login.php:233
1845
  #, php-format
1846
  msgid "Password: %s"
1847
+ msgstr "Contraseña: %s"
1848
 
1849
  #: ../inc/social_login.php:236
1850
  #, php-format
1851
  msgid "[%s] Your username and password"
1852
+ msgstr "[%s] Tu nombre de usuario y contraseña"
1853
 
1854
  #: ../inc/widget.php:11
1855
  msgid "Super Socializer - Login"
1856
+ msgstr "Super Socializer - Ingreso"
1857
 
1858
  #: ../inc/widget.php:13
1859
  msgid "Let your website users login/register using their favorite Social ID Provider, such as Facebook, Twitter, Google+, LinkedIn"
1860
+ msgstr "Permitir a los usuarios de tu sitio web conectarse/registrarse usando su ID de su red social favorita, tal como Facebook, Twitter, Google+, LinkedIn..."
1861
 
1862
  #: ../inc/widget.php:47
1863
  msgid "Log Out"
1864
  msgstr "Cerrar sesión"
1865
 
1866
  #: ../inc/widget.php:78
 
1867
  msgid "Make sure Social Login is enabled at \"Super Socializer > Social Login\" page."
1868
+ msgstr "Asegúrate de que el Ingreso a través de redes sociales está permitido en la página \"Super Socializer > Social Login\""
1869
 
1870
  #: ../inc/widget.php:79
1871
  #: ../inc/widget.php:219
1872
  #: ../inc/widget.php:524
1873
  msgid "Title:"
1874
+ msgstr "Título:"
1875
 
1876
  #: ../inc/widget.php:81
1877
  #: ../inc/widget.php:233
1878
  #: ../inc/widget.php:534
1879
  msgid "Before widget content:"
1880
+ msgstr "Contenido antes del widget:"
1881
 
1882
  #: ../inc/widget.php:83
1883
  #: ../inc/widget.php:235
1884
  #: ../inc/widget.php:536
1885
  msgid "After widget content:"
1886
+ msgstr "Contenido después del widget:"
1887
 
1888
  #: ../inc/widget.php:86
1889
  #: ../inc/widget.php:237
1891
  #: ../inc/widget.php:538
1892
  #: ../inc/widget.php:688
1893
  msgid "Hide for logged in users:"
1894
+ msgstr "Ocultar para usuarios conectados:"
1895
 
1896
  #: ../inc/widget.php:105
 
1897
  msgid "Horizontal sharing widget. Let your website users share content on popular Social networks like Facebook, Twitter, Tumblr, Google+ and many more"
1898
+ msgstr "Widget horizontal Compartir en redes sociales. Permite a los usuarios de tu sitio web compartir contenido en redes sociales populares como Facebook, Twitter, Tumblr, Google+ y muchas más"
1899
 
1900
  #: ../inc/widget.php:218
 
1901
  msgid "Make sure \"Horizontal Social Sharing\" is enabled at \"Super Socializer > Social Sharing\" page."
1902
+ msgstr "Asegúrate de que \"Compartir en redes sociales Horizontal\" está permitido en la página \"Super Socializer > Social Sharing\""
1903
 
1904
  #: ../inc/widget.php:221
1905
  #: ../inc/widget.php:370
 
1906
  msgid "Show individual share counts:"
1907
+ msgstr "Mostrar cuentas de compartir individuales:"
1908
 
1909
  #: ../inc/widget.php:223
1910
  #: ../inc/widget.php:372
 
1911
  msgid "Show total shares:"
1912
+ msgstr "Mostrar el total de publicaciones compartidas:"
1913
 
1914
  #: ../inc/widget.php:225
1915
  #: ../inc/widget.php:374
1923
  #: ../inc/widget.php:528
1924
  #: ../inc/widget.php:663
1925
  msgid "Select"
1926
+ msgstr "Seleccionar"
1927
 
1928
  #: ../inc/widget.php:256
 
1929
  msgid "Vertical floating sharing widget. Let your website users share content on popular Social networks like Facebook, Twitter, Tumblr, Google+ and many more"
1930
+ msgstr "Widget vertical flotante de Compartir en redes sociales. Permite a los usuarios de tu sitio web compartir contenido en redes sociales populares como Facebook, Twitter, Tumblr, Google+ y muchas más"
1931
 
1932
  #: ../inc/widget.php:369
 
1933
  msgid "Make sure \"Vertical Social Sharing\" is enabled at \"Super Socializer > Social Sharing\" page."
1934
+ msgstr "Asegúrate de que \"Compartir en redes sociales Vertical\" está permitido en la página \"Super Socializer > Social Sharing\""
1935
 
1936
  #: ../inc/widget.php:382
1937
  #: ../inc/widget.php:669
1938
  msgid "Alignment"
1939
+ msgstr "Alineación"
1940
 
1941
  #: ../inc/widget.php:388
1942
  #: ../inc/widget.php:675
 
1943
  msgid "Left Offset"
1944
+ msgstr "Desplazamiento a la izquierda"
1945
 
1946
  #: ../inc/widget.php:392
1947
  #: ../inc/widget.php:679
 
1948
  msgid "Right Offset"
1949
+ msgstr "Desplazamiento a la derecha"
1950
 
1951
  #: ../inc/widget.php:395
1952
  #: ../inc/widget.php:682
 
1953
  msgid "Top Offset"
1954
+ msgstr "Desplazamiento desde arriba"
1955
 
1956
  #: ../inc/widget.php:420
 
1957
  msgid "Horizontal like buttons widget. Let your website users share/like content on popular Social networks like Facebook, Twitter, Google+ and many more"
1958
+ msgstr "Widget horizontal de botones Me gusta. Permite a los usuarios de tu sitio web clickar Me gusta y/o compartir contenido en redes sociales populares como Facebook, Twitter, Tumblr, Google+ y muchas más"
1959
 
1960
  #: ../inc/widget.php:523
1961
  msgid "Make sure \"Horizontal Like Buttons\" are enabled from \"Super Socializer > Like Buttons\" page."
1962
+ msgstr "Asegúrate de que \"Botones Me gusta Horizontal\" está permitido en la página \"Super Socializer > Like Buttons\"."
1963
 
1964
  #: ../inc/widget.php:557
 
1965
  msgid "Vertical floating like buttons widget. Let your website users share/like content on popular Social networks like Facebook, Twitter, Google+ and many more"
1966
+ msgstr "Widget horizontal de botones Me gusta. Permite a los usuarios de tu sitio web clickar Me gusta y/o compartir contenido en redes sociales populares como Facebook, Twitter, Tumblr, Google+ y muchas más"
1967
 
1968
  #: ../inc/widget.php:660
1969
  msgid "Make sure \"Vertical Like Buttons\" are enabled from \"Super Socializer > Like Buttons\" page."
1970
+ msgstr "Asegúrate de que \"Botones Me gusta Vertical\" está permitido en la página \"Super Socializer > Like Buttons\"."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1971
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/Super-Socializer-fr_FR.mo CHANGED
Binary file
languages/Super-Socializer-fr_FR.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Super Socializer\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2016-01-08 07:39+0530\n"
6
- "PO-Revision-Date: 2016-01-08 07:39+0530\n"
7
  "Last-Translator: The Champ <lordofthechamps@gmail.com>\n"
8
  "Language-Team: The Champ <lordofthechamps@gmail.com>\n"
9
  "Language: fr\n"
@@ -80,11 +80,11 @@ msgstr "Petit Avatar Url"
80
  msgid "Large Avatar Url"
81
  msgstr "Cible Url"
82
 
83
- #: ../super_socializer.php:848
84
  msgid "Email you entered is already registered or invalid"
85
  msgstr "Envoyer vous avez entré est déjà enregistré ou non valide"
86
 
87
- #: ../super_socializer.php:852
88
  msgid "Please enter a valid email address. You might be required to verify it"
89
  msgstr "Se il vous plaît entrer une adresse email valide. Vous pouvez être amené à vérifier"
90
 
@@ -180,32 +180,32 @@ msgstr "Afficher le compteur des partages"
180
  msgid "Floating Sharing Interface"
181
  msgstr "Paramètres pour l'interface de partage horizontal"
182
 
183
- #: ../helper.php:878
184
  #, fuzzy
185
  msgid "Social Avatar"
186
  msgstr "Petit Avatar Url"
187
 
188
- #: ../helper.php:881
189
  msgid "Do not fetch and update social avatar from my profile, next time I Social Login"
190
  msgstr ""
191
 
192
- #: ../helper.php:882
193
  msgid "Update social avatar, next time I Social Login"
194
  msgstr ""
195
 
196
- #: ../helper.php:885
197
  #, fuzzy
198
  msgid "Small Avatar"
199
  msgstr "Petit Avatar Url"
200
 
201
- #: ../helper.php:889
202
  #, fuzzy
203
  msgid "Large Avatar"
204
  msgstr "Cible Url"
205
 
206
- #: ../helper.php:893
207
  #: ../admin/general_options.php:89
208
- #: ../admin/social_sharing.php:1732
209
  #: ../admin/social_commenting.php:464
210
  #: ../admin/social_login.php:778
211
  #: ../admin/like_buttons.php:764
@@ -356,8 +356,8 @@ msgid "Miscellaneous"
356
  msgstr ""
357
 
358
  #: ../admin/social_sharing.php:39
359
- #: ../admin/social_sharing.php:1681
360
- #: ../admin/social_sharing.php:1683
361
  #: ../admin/social_login.php:37
362
  #: ../admin/social_login.php:764
363
  #: ../admin/like_buttons.php:40
@@ -370,7 +370,7 @@ msgid "Troubleshooter"
370
  msgstr "Résolution de problèmes"
371
 
372
  #: ../admin/social_sharing.php:41
373
- #: ../admin/social_sharing.php:1712
374
  #: ../admin/social_commenting.php:36
375
  #: ../admin/social_commenting.php:452
376
  msgid "FAQ"
@@ -986,9 +986,8 @@ msgid "Use shortlinks already installed"
986
  msgstr "Utilisez shortlinks déjà installés"
987
 
988
  #: ../admin/social_sharing.php:1522
989
- #: ../admin/like_buttons.php:592
990
- msgid "Allows for shortened URLs to be used when sharing content if a shortening plugin is installed"
991
- msgstr "Permet d'URL raccourcies à être utilisés lorsque le partage de contenu si un plugin de raccourcissement est installé"
992
 
993
  #: ../admin/social_sharing.php:1530
994
  msgid "Enable bit.ly url shortener for sharing"
@@ -1021,6 +1020,11 @@ msgstr "Clé API bit.ly"
1021
  msgid "Login to your bit.ly account and navigate to <a href=\"%s\" target=\"_blank\">this link</a> to get your API key"
1022
  msgstr "Connectez-vous à votre compte bit.ly et <a href=\"%s\" target=\"_blank\">rendez-vous ici</a> pour obtenir votre clé API"
1023
 
 
 
 
 
 
1024
  #: ../admin/social_sharing.php:1590
1025
  #: ../admin/like_buttons.php:660
1026
  #, fuzzy
@@ -1033,80 +1037,109 @@ msgid "Use this to delete short urls saved in database. Handy, if urls of your w
1033
  msgstr ""
1034
 
1035
  #: ../admin/social_sharing.php:1606
 
 
 
1036
  #: ../admin/social_sharing.php:1612
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1037
  #: ../admin/social_commenting.php:311
1038
  #: ../admin/like_buttons.php:676
1039
  #: ../admin/like_buttons.php:682
1040
  msgid "Language"
1041
  msgstr "Langue"
1042
 
1043
- #: ../admin/social_sharing.php:1622
1044
  #, fuzzy, php-format
1045
  msgid "Enter the code of the language you want to use for like buttons. You can find the language codes at <a href=\"%s\" target=\"_blank\">this link</a>. Leave it empty for default language(English)"
1046
  msgstr "Définissez le langage de code que vous souhaitez utilizer dans les commentaires. Vous trouverez une liste <a href=\"%s\" target=\"_blank\">ici</ a>. Laissez vide pour l'anglais."
1047
 
1048
- #: ../admin/social_sharing.php:1631
1049
  #, fuzzy
1050
  msgid "Username in sharing"
1051
  msgstr "Psuedo Twitter dans le partage des liens"
1052
 
1053
- #: ../admin/social_sharing.php:1637
1054
  msgid "Twitter username (without @)"
1055
  msgstr "Psuedo Twitter (sans @)"
1056
 
1057
- #: ../admin/social_sharing.php:1647
1058
- #: ../admin/social_sharing.php:1666
1059
  msgid "Provided username will be appended after the content being shared as \"via @USERNAME\". Leave empty if you do not want any username in the content being shared."
1060
  msgstr "Le pseudo défini sera rajouté à la fin du contenu du tweet en tant que \"via @PSUEDO\". Laissez vide si vous ne le souhaitez pas."
1061
 
1062
- #: ../admin/social_sharing.php:1656
1063
  #, fuzzy
1064
  msgid "Buffer username (without @)"
1065
  msgstr "Psuedo Twitter (sans @)"
1066
 
1067
- #: ../admin/social_sharing.php:1693
1068
  msgid "Facebook Sharing Troubleshooter"
1069
  msgstr "Résoudre les problems Facebook"
1070
 
1071
- #: ../admin/social_sharing.php:1698
1072
  msgid "If Facebook sharing is not working fine, click at the following link and enter the problematic url (where Facebook sharing is not working properly) of your website in the text field:"
1073
  msgstr "Si le partage sur Facebook ne marche pas, cliquez sur le lien suivant et entrez le lien de la page ou le problème se produit."
1074
 
1075
- #: ../admin/social_sharing.php:1714
1076
  msgid "How can I show share counts of my website rather than of individual pages/posts?"
1077
  msgstr "Comment je peux afficher le compte des partages de mon site, et non des pages/publications individuelles ?"
1078
 
1079
- #: ../admin/social_sharing.php:1715
1080
  #, fuzzy
1081
  msgid "How can I disable sharing on particular page/post?"
1082
  msgstr "Comment je peux afficher le compte des partages de mon site, et non des pages/publications individuelles ?"
1083
 
1084
- #: ../admin/social_sharing.php:1716
1085
  msgid "How can I specify minimum sharing count for sharing networks?"
1086
  msgstr "Comment puis-je spécifier le nombre de partage minimum pour les réseaux de partage?"
1087
 
1088
- #: ../admin/social_sharing.php:1717
1089
  msgid "How to share specific page?"
1090
  msgstr ""
1091
 
1092
- #: ../admin/social_sharing.php:1718
1093
  msgid "How to integrate Google Analytics with sharing?"
1094
  msgstr ""
1095
 
1096
- #: ../admin/social_sharing.php:1719
1097
  msgid "How to customize the look of total share counts?"
1098
  msgstr ""
1099
 
1100
- #: ../admin/social_sharing.php:1720
1101
  #, fuzzy
1102
  msgid "How to customize the look of individual share counts?"
1103
  msgstr "Afficher le compteur des partages"
1104
 
1105
- #: ../admin/social_sharing.php:1721
1106
  #, fuzzy
1107
  msgid "How to show Whatsapp icon only on mobile devices?"
1108
  msgstr "Cacher le partage sur appareils mobiles"
1109
 
 
 
 
 
1110
  #: ../admin/social_commenting.php:13
1111
  #, fuzzy
1112
  msgid "Enable Social Commenting"
@@ -1868,6 +1901,10 @@ msgstr "Si elle est activée, les boutons comme verticaux ne seront pas apparaî
1868
  msgid "Use shortlinks already installed, for tweet button"
1869
  msgstr "Utilisez shortlinks déjà installés, pour le bouton tweet"
1870
 
 
 
 
 
1871
  #: ../admin/like_buttons.php:600
1872
  msgid "Enable bit.ly url shortener for tweet button"
1873
  msgstr "Activer le raccourcisseur d'URL bit.ly"
@@ -1911,11 +1948,11 @@ msgstr "Widgets et shortcodes"
1911
  msgid "Enable Social Login from \"Basic Configuration\" section at \"Super Socializer > Social Login\" page in admin panel"
1912
  msgstr "Assurez-vous que Social Login est activée à partir de page \"super Socializer > Social Connexion\"."
1913
 
1914
- #: ../inc/social_sharing.php:652
1915
  msgid "Invalid request"
1916
  msgstr "Demande non-valable !"
1917
 
1918
- #: ../inc/social_sharing.php:659
1919
  msgid "Providers not selected"
1920
  msgstr "Réseaux sociaux non-selectionnés !"
1921
 
2
  msgstr ""
3
  "Project-Id-Version: Super Socializer\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2016-01-29 18:57+0530\n"
6
+ "PO-Revision-Date: 2016-01-29 18:57+0530\n"
7
  "Last-Translator: The Champ <lordofthechamps@gmail.com>\n"
8
  "Language-Team: The Champ <lordofthechamps@gmail.com>\n"
9
  "Language: fr\n"
80
  msgid "Large Avatar Url"
81
  msgstr "Cible Url"
82
 
83
+ #: ../super_socializer.php:846
84
  msgid "Email you entered is already registered or invalid"
85
  msgstr "Envoyer vous avez entré est déjà enregistré ou non valide"
86
 
87
+ #: ../super_socializer.php:850
88
  msgid "Please enter a valid email address. You might be required to verify it"
89
  msgstr "Se il vous plaît entrer une adresse email valide. Vous pouvez être amené à vérifier"
90
 
180
  msgid "Floating Sharing Interface"
181
  msgstr "Paramètres pour l'interface de partage horizontal"
182
 
183
+ #: ../helper.php:879
184
  #, fuzzy
185
  msgid "Social Avatar"
186
  msgstr "Petit Avatar Url"
187
 
188
+ #: ../helper.php:882
189
  msgid "Do not fetch and update social avatar from my profile, next time I Social Login"
190
  msgstr ""
191
 
192
+ #: ../helper.php:883
193
  msgid "Update social avatar, next time I Social Login"
194
  msgstr ""
195
 
196
+ #: ../helper.php:886
197
  #, fuzzy
198
  msgid "Small Avatar"
199
  msgstr "Petit Avatar Url"
200
 
201
+ #: ../helper.php:890
202
  #, fuzzy
203
  msgid "Large Avatar"
204
  msgstr "Cible Url"
205
 
206
+ #: ../helper.php:894
207
  #: ../admin/general_options.php:89
208
+ #: ../admin/social_sharing.php:1783
209
  #: ../admin/social_commenting.php:464
210
  #: ../admin/social_login.php:778
211
  #: ../admin/like_buttons.php:764
356
  msgstr ""
357
 
358
  #: ../admin/social_sharing.php:39
359
+ #: ../admin/social_sharing.php:1731
360
+ #: ../admin/social_sharing.php:1733
361
  #: ../admin/social_login.php:37
362
  #: ../admin/social_login.php:764
363
  #: ../admin/like_buttons.php:40
370
  msgstr "Résolution de problèmes"
371
 
372
  #: ../admin/social_sharing.php:41
373
+ #: ../admin/social_sharing.php:1762
374
  #: ../admin/social_commenting.php:36
375
  #: ../admin/social_commenting.php:452
376
  msgid "FAQ"
986
  msgstr "Utilisez shortlinks déjà installés"
987
 
988
  #: ../admin/social_sharing.php:1522
989
+ msgid "Uses default short url permalinks without using any additional plugin"
990
+ msgstr ""
 
991
 
992
  #: ../admin/social_sharing.php:1530
993
  msgid "Enable bit.ly url shortener for sharing"
1020
  msgid "Login to your bit.ly account and navigate to <a href=\"%s\" target=\"_blank\">this link</a> to get your API key"
1021
  msgstr "Connectez-vous à votre compte bit.ly et <a href=\"%s\" target=\"_blank\">rendez-vous ici</a> pour obtenir votre clé API"
1022
 
1023
+ #: ../admin/social_sharing.php:1586
1024
+ #: ../admin/like_buttons.php:656
1025
+ msgid "Clear Bitly Cache"
1026
+ msgstr ""
1027
+
1028
  #: ../admin/social_sharing.php:1590
1029
  #: ../admin/like_buttons.php:660
1030
  #, fuzzy
1037
  msgstr ""
1038
 
1039
  #: ../admin/social_sharing.php:1606
1040
+ msgid "Share Count Cache"
1041
+ msgstr ""
1042
+
1043
  #: ../admin/social_sharing.php:1612
1044
+ msgid "Refresh Share Count cache every"
1045
+ msgstr ""
1046
+
1047
+ #: ../admin/social_sharing.php:1628
1048
+ msgid "Frequent cache refreshing results in slower loading of pages with share counts enabled"
1049
+ msgstr ""
1050
+
1051
+ #: ../admin/social_sharing.php:1636
1052
+ msgid "Clear Share Counts Cache"
1053
+ msgstr ""
1054
+
1055
+ #: ../admin/social_sharing.php:1640
1056
+ #, fuzzy
1057
+ msgid "Share Counts cache cleared successfully."
1058
+ msgstr "Paramètres enregistrées avec succès"
1059
+
1060
+ #: ../admin/social_sharing.php:1647
1061
+ msgid "Use this to clear cached share counts"
1062
+ msgstr ""
1063
+
1064
+ #: ../admin/social_sharing.php:1656
1065
+ #: ../admin/social_sharing.php:1662
1066
  #: ../admin/social_commenting.php:311
1067
  #: ../admin/like_buttons.php:676
1068
  #: ../admin/like_buttons.php:682
1069
  msgid "Language"
1070
  msgstr "Langue"
1071
 
1072
+ #: ../admin/social_sharing.php:1672
1073
  #, fuzzy, php-format
1074
  msgid "Enter the code of the language you want to use for like buttons. You can find the language codes at <a href=\"%s\" target=\"_blank\">this link</a>. Leave it empty for default language(English)"
1075
  msgstr "Définissez le langage de code que vous souhaitez utilizer dans les commentaires. Vous trouverez une liste <a href=\"%s\" target=\"_blank\">ici</ a>. Laissez vide pour l'anglais."
1076
 
1077
+ #: ../admin/social_sharing.php:1681
1078
  #, fuzzy
1079
  msgid "Username in sharing"
1080
  msgstr "Psuedo Twitter dans le partage des liens"
1081
 
1082
+ #: ../admin/social_sharing.php:1687
1083
  msgid "Twitter username (without @)"
1084
  msgstr "Psuedo Twitter (sans @)"
1085
 
1086
+ #: ../admin/social_sharing.php:1697
1087
+ #: ../admin/social_sharing.php:1716
1088
  msgid "Provided username will be appended after the content being shared as \"via @USERNAME\". Leave empty if you do not want any username in the content being shared."
1089
  msgstr "Le pseudo défini sera rajouté à la fin du contenu du tweet en tant que \"via @PSUEDO\". Laissez vide si vous ne le souhaitez pas."
1090
 
1091
+ #: ../admin/social_sharing.php:1706
1092
  #, fuzzy
1093
  msgid "Buffer username (without @)"
1094
  msgstr "Psuedo Twitter (sans @)"
1095
 
1096
+ #: ../admin/social_sharing.php:1743
1097
  msgid "Facebook Sharing Troubleshooter"
1098
  msgstr "Résoudre les problems Facebook"
1099
 
1100
+ #: ../admin/social_sharing.php:1748
1101
  msgid "If Facebook sharing is not working fine, click at the following link and enter the problematic url (where Facebook sharing is not working properly) of your website in the text field:"
1102
  msgstr "Si le partage sur Facebook ne marche pas, cliquez sur le lien suivant et entrez le lien de la page ou le problème se produit."
1103
 
1104
+ #: ../admin/social_sharing.php:1764
1105
  msgid "How can I show share counts of my website rather than of individual pages/posts?"
1106
  msgstr "Comment je peux afficher le compte des partages de mon site, et non des pages/publications individuelles ?"
1107
 
1108
+ #: ../admin/social_sharing.php:1765
1109
  #, fuzzy
1110
  msgid "How can I disable sharing on particular page/post?"
1111
  msgstr "Comment je peux afficher le compte des partages de mon site, et non des pages/publications individuelles ?"
1112
 
1113
+ #: ../admin/social_sharing.php:1766
1114
  msgid "How can I specify minimum sharing count for sharing networks?"
1115
  msgstr "Comment puis-je spécifier le nombre de partage minimum pour les réseaux de partage?"
1116
 
1117
+ #: ../admin/social_sharing.php:1767
1118
  msgid "How to share specific page?"
1119
  msgstr ""
1120
 
1121
+ #: ../admin/social_sharing.php:1768
1122
  msgid "How to integrate Google Analytics with sharing?"
1123
  msgstr ""
1124
 
1125
+ #: ../admin/social_sharing.php:1769
1126
  msgid "How to customize the look of total share counts?"
1127
  msgstr ""
1128
 
1129
+ #: ../admin/social_sharing.php:1770
1130
  #, fuzzy
1131
  msgid "How to customize the look of individual share counts?"
1132
  msgstr "Afficher le compteur des partages"
1133
 
1134
+ #: ../admin/social_sharing.php:1771
1135
  #, fuzzy
1136
  msgid "How to show Whatsapp icon only on mobile devices?"
1137
  msgstr "Cacher le partage sur appareils mobiles"
1138
 
1139
+ #: ../admin/social_sharing.php:1772
1140
+ msgid "How to hide arrow after floating sharing bar?"
1141
+ msgstr ""
1142
+
1143
  #: ../admin/social_commenting.php:13
1144
  #, fuzzy
1145
  msgid "Enable Social Commenting"
1901
  msgid "Use shortlinks already installed, for tweet button"
1902
  msgstr "Utilisez shortlinks déjà installés, pour le bouton tweet"
1903
 
1904
+ #: ../admin/like_buttons.php:592
1905
+ msgid "Allows for shortened URLs to be used when sharing content if a shortening plugin is installed"
1906
+ msgstr "Permet d'URL raccourcies à être utilisés lorsque le partage de contenu si un plugin de raccourcissement est installé"
1907
+
1908
  #: ../admin/like_buttons.php:600
1909
  msgid "Enable bit.ly url shortener for tweet button"
1910
  msgstr "Activer le raccourcisseur d'URL bit.ly"
1948
  msgid "Enable Social Login from \"Basic Configuration\" section at \"Super Socializer > Social Login\" page in admin panel"
1949
  msgstr "Assurez-vous que Social Login est activée à partir de page \"super Socializer > Social Connexion\"."
1950
 
1951
+ #: ../inc/social_sharing.php:706
1952
  msgid "Invalid request"
1953
  msgstr "Demande non-valable !"
1954
 
1955
+ #: ../inc/social_sharing.php:713
1956
  msgid "Providers not selected"
1957
  msgstr "Réseaux sociaux non-selectionnés !"
1958
 
languages/Super-Socializer-hu_HU.mo CHANGED
Binary file
languages/Super-Socializer-hu_HU.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Super Socializer\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2016-01-08 07:40+0530\n"
6
- "PO-Revision-Date: 2016-01-08 07:40+0530\n"
7
  "Last-Translator: The Champ <lordofthechamps@gmail.com>\n"
8
  "Language-Team: The Champ <lordofthechamps@gmail.com>\n"
9
  "Language: hu\n"
@@ -80,11 +80,11 @@ msgstr "Kis Avatar URL"
80
  msgid "Large Avatar Url"
81
  msgstr "Cél Url"
82
 
83
- #: ../super_socializer.php:848
84
  msgid "Email you entered is already registered or invalid"
85
  msgstr "A megadott e-mail már regisztrálva van, vagy hibás"
86
 
87
- #: ../super_socializer.php:852
88
  msgid "Please enter a valid email address. You might be required to verify it"
89
  msgstr "Kérlek, érvényes e-mail címet adj meg. Ezt később ellenőrizhetjük"
90
 
@@ -176,32 +176,32 @@ msgstr "Megosztás számok kezdése ehhez"
176
  msgid "Floating Sharing Interface"
177
  msgstr "Megosztási Felület"
178
 
179
- #: ../helper.php:878
180
  #, fuzzy
181
  msgid "Social Avatar"
182
  msgstr "Kis Avatar URL"
183
 
184
- #: ../helper.php:881
185
  msgid "Do not fetch and update social avatar from my profile, next time I Social Login"
186
  msgstr ""
187
 
188
- #: ../helper.php:882
189
  msgid "Update social avatar, next time I Social Login"
190
  msgstr ""
191
 
192
- #: ../helper.php:885
193
  #, fuzzy
194
  msgid "Small Avatar"
195
  msgstr "Kis Avatar URL"
196
 
197
- #: ../helper.php:889
198
  #, fuzzy
199
  msgid "Large Avatar"
200
  msgstr "Cél Url"
201
 
202
- #: ../helper.php:893
203
  #: ../admin/general_options.php:89
204
- #: ../admin/social_sharing.php:1732
205
  #: ../admin/social_commenting.php:464
206
  #: ../admin/social_login.php:778
207
  #: ../admin/like_buttons.php:764
@@ -352,8 +352,8 @@ msgid "Miscellaneous"
352
  msgstr ""
353
 
354
  #: ../admin/social_sharing.php:39
355
- #: ../admin/social_sharing.php:1681
356
- #: ../admin/social_sharing.php:1683
357
  #: ../admin/social_login.php:37
358
  #: ../admin/social_login.php:764
359
  #: ../admin/like_buttons.php:40
@@ -366,7 +366,7 @@ msgid "Troubleshooter"
366
  msgstr "Hibamegoldó"
367
 
368
  #: ../admin/social_sharing.php:41
369
- #: ../admin/social_sharing.php:1712
370
  #: ../admin/social_commenting.php:36
371
  #: ../admin/social_commenting.php:452
372
  msgid "FAQ"
@@ -975,9 +975,8 @@ msgid "Use shortlinks already installed"
975
  msgstr "Használja shortlinks már telepítve"
976
 
977
  #: ../admin/social_sharing.php:1522
978
- #: ../admin/like_buttons.php:592
979
- msgid "Allows for shortened URLs to be used when sharing content if a shortening plugin is installed"
980
- msgstr "Lehetővé teszi a rövidített URL-ek is, amikor közös tartalmat, ha a zsiradék bővítmény telepítése"
981
 
982
  #: ../admin/social_sharing.php:1530
983
  msgid "Enable bit.ly url shortener for sharing"
@@ -1010,6 +1009,11 @@ msgstr "bit.ly API Key"
1010
  msgid "Login to your bit.ly account and navigate to <a href=\"%s\" target=\"_blank\">this link</a> to get your API key"
1011
  msgstr "Jelentkezz be a bit.ly fiókodba és keresd fel <a href=\"%s\" target=\"_blank\">ezt a linket</a> a bit.ly API Key beszerzéséhez"
1012
 
 
 
 
 
 
1013
  #: ../admin/social_sharing.php:1590
1014
  #: ../admin/like_buttons.php:660
1015
  #, fuzzy
@@ -1022,79 +1026,108 @@ msgid "Use this to delete short urls saved in database. Handy, if urls of your w
1022
  msgstr ""
1023
 
1024
  #: ../admin/social_sharing.php:1606
 
 
 
1025
  #: ../admin/social_sharing.php:1612
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1026
  #: ../admin/social_commenting.php:311
1027
  #: ../admin/like_buttons.php:676
1028
  #: ../admin/like_buttons.php:682
1029
  msgid "Language"
1030
  msgstr "Nyelv"
1031
 
1032
- #: ../admin/social_sharing.php:1622
1033
  #, fuzzy, php-format
1034
  msgid "Enter the code of the language you want to use for like buttons. You can find the language codes at <a href=\"%s\" target=\"_blank\">this link</a>. Leave it empty for default language(English)"
1035
  msgstr "Add meg a nyelv kódját, amit a hozzászólás megjelenítéshez használjunk. A nyelvi kódot <a href=\"%s\" target=\"_blank\">itt</a> találod. Hagyd üresen az alapértelmezett (angol) nyelv használatához"
1036
 
1037
- #: ../admin/social_sharing.php:1631
1038
  #, fuzzy
1039
  msgid "Username in sharing"
1040
  msgstr "Twitter felhasználónév a megosztásban"
1041
 
1042
- #: ../admin/social_sharing.php:1637
1043
  msgid "Twitter username (without @)"
1044
  msgstr "Twitter felhasználónév (@ nélkül)"
1045
 
1046
- #: ../admin/social_sharing.php:1647
1047
- #: ../admin/social_sharing.php:1666
1048
  msgid "Provided username will be appended after the content being shared as \"via @USERNAME\". Leave empty if you do not want any username in the content being shared."
1049
  msgstr "A megadott felhasználónév kerül a megosztás szövege után így \"via @USERNAME\". Hagyd üresen, ha nem akarsz felhasználó név utánfűzést."
1050
 
1051
- #: ../admin/social_sharing.php:1656
1052
  #, fuzzy
1053
  msgid "Buffer username (without @)"
1054
  msgstr "Twitter felhasználónév (@ nélkül)"
1055
 
1056
- #: ../admin/social_sharing.php:1693
1057
  msgid "Facebook Sharing Troubleshooter"
1058
  msgstr "Facebook Megosztás Hibaelhárító"
1059
 
1060
- #: ../admin/social_sharing.php:1698
1061
  msgid "If Facebook sharing is not working fine, click at the following link and enter the problematic url (where Facebook sharing is not working properly) of your website in the text field:"
1062
  msgstr "Ha a Facebook megosztás nem működik helyesen, kattints a következő linkre, és add meg a problémás url-t (ahol a Facebook megosztás nem működik tökéletesen) a szöveges mezőben:"
1063
 
1064
- #: ../admin/social_sharing.php:1714
1065
  msgid "How can I show share counts of my website rather than of individual pages/posts?"
1066
  msgstr "Hogyan jeleníthetem meg a megosztások számát az oldal/bejegyzés oldalakon kívül is?"
1067
 
1068
- #: ../admin/social_sharing.php:1715
1069
  msgid "How can I disable sharing on particular page/post?"
1070
  msgstr "Hogyan kapcsolhatom ki a megosztást egy adott oldal/bejegyzés esetében?"
1071
 
1072
- #: ../admin/social_sharing.php:1716
1073
  msgid "How can I specify minimum sharing count for sharing networks?"
1074
  msgstr "Hogyan adhatok meg minimum megosztása száma a fájlcserélő hálózatokat?"
1075
 
1076
- #: ../admin/social_sharing.php:1717
1077
  msgid "How to share specific page?"
1078
  msgstr ""
1079
 
1080
- #: ../admin/social_sharing.php:1718
1081
  msgid "How to integrate Google Analytics with sharing?"
1082
  msgstr ""
1083
 
1084
- #: ../admin/social_sharing.php:1719
1085
  msgid "How to customize the look of total share counts?"
1086
  msgstr ""
1087
 
1088
- #: ../admin/social_sharing.php:1720
1089
  #, fuzzy
1090
  msgid "How to customize the look of individual share counts?"
1091
  msgstr "Megosztás számok mutatása:"
1092
 
1093
- #: ../admin/social_sharing.php:1721
1094
  #, fuzzy
1095
  msgid "How to show Whatsapp icon only on mobile devices?"
1096
  msgstr "Hide megosztása mobil eszközökön"
1097
 
 
 
 
 
1098
  #: ../admin/social_commenting.php:13
1099
  msgid "Enable Social Commenting"
1100
  msgstr "Közösségi Hozzászólás Belkapcsolása"
@@ -1824,6 +1857,10 @@ msgstr "Ha engedélyezett, függőleges, mint a gombok nem jelennek meg a mobile
1824
  msgid "Use shortlinks already installed, for tweet button"
1825
  msgstr "Használja shortlinks már telepítve van, a tweet gomb"
1826
 
 
 
 
 
1827
  #: ../admin/like_buttons.php:600
1828
  msgid "Enable bit.ly url shortener for tweet button"
1829
  msgstr "A bit.ly url rövidítő bekapcsolása a tweet gombhoz"
@@ -1867,11 +1904,11 @@ msgstr "Shortcode és Widget"
1867
  msgid "Enable Social Login from \"Basic Configuration\" section at \"Super Socializer > Social Login\" page in admin panel"
1868
  msgstr "Győződjön meg arról, Szociális Login engedélyezve van az \"Super Socializer > Social Login\" oldalon."
1869
 
1870
- #: ../inc/social_sharing.php:652
1871
  msgid "Invalid request"
1872
  msgstr "Hibás kérés"
1873
 
1874
- #: ../inc/social_sharing.php:659
1875
  msgid "Providers not selected"
1876
  msgstr "Nincs kiválasztott szolgáltató"
1877
 
2
  msgstr ""
3
  "Project-Id-Version: Super Socializer\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2016-01-29 18:57+0530\n"
6
+ "PO-Revision-Date: 2016-01-29 18:57+0530\n"
7
  "Last-Translator: The Champ <lordofthechamps@gmail.com>\n"
8
  "Language-Team: The Champ <lordofthechamps@gmail.com>\n"
9
  "Language: hu\n"
80
  msgid "Large Avatar Url"
81
  msgstr "Cél Url"
82
 
83
+ #: ../super_socializer.php:846
84
  msgid "Email you entered is already registered or invalid"
85
  msgstr "A megadott e-mail már regisztrálva van, vagy hibás"
86
 
87
+ #: ../super_socializer.php:850
88
  msgid "Please enter a valid email address. You might be required to verify it"
89
  msgstr "Kérlek, érvényes e-mail címet adj meg. Ezt később ellenőrizhetjük"
90
 
176
  msgid "Floating Sharing Interface"
177
  msgstr "Megosztási Felület"
178
 
179
+ #: ../helper.php:879
180
  #, fuzzy
181
  msgid "Social Avatar"
182
  msgstr "Kis Avatar URL"
183
 
184
+ #: ../helper.php:882
185
  msgid "Do not fetch and update social avatar from my profile, next time I Social Login"
186
  msgstr ""
187
 
188
+ #: ../helper.php:883
189
  msgid "Update social avatar, next time I Social Login"
190
  msgstr ""
191
 
192
+ #: ../helper.php:886
193
  #, fuzzy
194
  msgid "Small Avatar"
195
  msgstr "Kis Avatar URL"
196
 
197
+ #: ../helper.php:890
198
  #, fuzzy
199
  msgid "Large Avatar"
200
  msgstr "Cél Url"
201
 
202
+ #: ../helper.php:894
203
  #: ../admin/general_options.php:89
204
+ #: ../admin/social_sharing.php:1783
205
  #: ../admin/social_commenting.php:464
206
  #: ../admin/social_login.php:778
207
  #: ../admin/like_buttons.php:764
352
  msgstr ""
353
 
354
  #: ../admin/social_sharing.php:39
355
+ #: ../admin/social_sharing.php:1731
356
+ #: ../admin/social_sharing.php:1733
357
  #: ../admin/social_login.php:37
358
  #: ../admin/social_login.php:764
359
  #: ../admin/like_buttons.php:40
366
  msgstr "Hibamegoldó"
367
 
368
  #: ../admin/social_sharing.php:41
369
+ #: ../admin/social_sharing.php:1762
370
  #: ../admin/social_commenting.php:36
371
  #: ../admin/social_commenting.php:452
372
  msgid "FAQ"
975
  msgstr "Használja shortlinks már telepítve"
976
 
977
  #: ../admin/social_sharing.php:1522
978
+ msgid "Uses default short url permalinks without using any additional plugin"
979
+ msgstr ""
 
980
 
981
  #: ../admin/social_sharing.php:1530
982
  msgid "Enable bit.ly url shortener for sharing"
1009
  msgid "Login to your bit.ly account and navigate to <a href=\"%s\" target=\"_blank\">this link</a> to get your API key"
1010
  msgstr "Jelentkezz be a bit.ly fiókodba és keresd fel <a href=\"%s\" target=\"_blank\">ezt a linket</a> a bit.ly API Key beszerzéséhez"
1011
 
1012
+ #: ../admin/social_sharing.php:1586
1013
+ #: ../admin/like_buttons.php:656
1014
+ msgid "Clear Bitly Cache"
1015
+ msgstr ""
1016
+
1017
  #: ../admin/social_sharing.php:1590
1018
  #: ../admin/like_buttons.php:660
1019
  #, fuzzy
1026
  msgstr ""
1027
 
1028
  #: ../admin/social_sharing.php:1606
1029
+ msgid "Share Count Cache"
1030
+ msgstr ""
1031
+
1032
  #: ../admin/social_sharing.php:1612
1033
+ msgid "Refresh Share Count cache every"
1034
+ msgstr ""
1035
+
1036
+ #: ../admin/social_sharing.php:1628
1037
+ msgid "Frequent cache refreshing results in slower loading of pages with share counts enabled"
1038
+ msgstr ""
1039
+
1040
+ #: ../admin/social_sharing.php:1636
1041
+ msgid "Clear Share Counts Cache"
1042
+ msgstr ""
1043
+
1044
+ #: ../admin/social_sharing.php:1640
1045
+ #, fuzzy
1046
+ msgid "Share Counts cache cleared successfully."
1047
+ msgstr "Fiók kapcsolása sikeres"
1048
+
1049
+ #: ../admin/social_sharing.php:1647
1050
+ msgid "Use this to clear cached share counts"
1051
+ msgstr ""
1052
+
1053
+ #: ../admin/social_sharing.php:1656
1054
+ #: ../admin/social_sharing.php:1662
1055
  #: ../admin/social_commenting.php:311
1056
  #: ../admin/like_buttons.php:676
1057
  #: ../admin/like_buttons.php:682
1058
  msgid "Language"
1059
  msgstr "Nyelv"
1060
 
1061
+ #: ../admin/social_sharing.php:1672
1062
  #, fuzzy, php-format
1063
  msgid "Enter the code of the language you want to use for like buttons. You can find the language codes at <a href=\"%s\" target=\"_blank\">this link</a>. Leave it empty for default language(English)"
1064
  msgstr "Add meg a nyelv kódját, amit a hozzászólás megjelenítéshez használjunk. A nyelvi kódot <a href=\"%s\" target=\"_blank\">itt</a> találod. Hagyd üresen az alapértelmezett (angol) nyelv használatához"
1065
 
1066
+ #: ../admin/social_sharing.php:1681
1067
  #, fuzzy
1068
  msgid "Username in sharing"
1069
  msgstr "Twitter felhasználónév a megosztásban"
1070
 
1071
+ #: ../admin/social_sharing.php:1687
1072
  msgid "Twitter username (without @)"
1073
  msgstr "Twitter felhasználónév (@ nélkül)"
1074
 
1075
+ #: ../admin/social_sharing.php:1697
1076
+ #: ../admin/social_sharing.php:1716
1077
  msgid "Provided username will be appended after the content being shared as \"via @USERNAME\". Leave empty if you do not want any username in the content being shared."
1078
  msgstr "A megadott felhasználónév kerül a megosztás szövege után így \"via @USERNAME\". Hagyd üresen, ha nem akarsz felhasználó név utánfűzést."
1079
 
1080
+ #: ../admin/social_sharing.php:1706
1081
  #, fuzzy
1082
  msgid "Buffer username (without @)"
1083
  msgstr "Twitter felhasználónév (@ nélkül)"
1084
 
1085
+ #: ../admin/social_sharing.php:1743
1086
  msgid "Facebook Sharing Troubleshooter"
1087
  msgstr "Facebook Megosztás Hibaelhárító"
1088
 
1089
+ #: ../admin/social_sharing.php:1748
1090
  msgid "If Facebook sharing is not working fine, click at the following link and enter the problematic url (where Facebook sharing is not working properly) of your website in the text field:"
1091
  msgstr "Ha a Facebook megosztás nem működik helyesen, kattints a következő linkre, és add meg a problémás url-t (ahol a Facebook megosztás nem működik tökéletesen) a szöveges mezőben:"
1092
 
1093
+ #: ../admin/social_sharing.php:1764
1094
  msgid "How can I show share counts of my website rather than of individual pages/posts?"
1095
  msgstr "Hogyan jeleníthetem meg a megosztások számát az oldal/bejegyzés oldalakon kívül is?"
1096
 
1097
+ #: ../admin/social_sharing.php:1765
1098
  msgid "How can I disable sharing on particular page/post?"
1099
  msgstr "Hogyan kapcsolhatom ki a megosztást egy adott oldal/bejegyzés esetében?"
1100
 
1101
+ #: ../admin/social_sharing.php:1766
1102
  msgid "How can I specify minimum sharing count for sharing networks?"
1103
  msgstr "Hogyan adhatok meg minimum megosztása száma a fájlcserélő hálózatokat?"
1104
 
1105
+ #: ../admin/social_sharing.php:1767
1106
  msgid "How to share specific page?"
1107
  msgstr ""
1108
 
1109
+ #: ../admin/social_sharing.php:1768
1110
  msgid "How to integrate Google Analytics with sharing?"
1111
  msgstr ""
1112
 
1113
+ #: ../admin/social_sharing.php:1769
1114
  msgid "How to customize the look of total share counts?"
1115
  msgstr ""
1116
 
1117
+ #: ../admin/social_sharing.php:1770
1118
  #, fuzzy
1119
  msgid "How to customize the look of individual share counts?"
1120
  msgstr "Megosztás számok mutatása:"
1121
 
1122
+ #: ../admin/social_sharing.php:1771
1123
  #, fuzzy
1124
  msgid "How to show Whatsapp icon only on mobile devices?"
1125
  msgstr "Hide megosztása mobil eszközökön"
1126
 
1127
+ #: ../admin/social_sharing.php:1772
1128
+ msgid "How to hide arrow after floating sharing bar?"
1129
+ msgstr ""
1130
+
1131
  #: ../admin/social_commenting.php:13
1132
  msgid "Enable Social Commenting"
1133
  msgstr "Közösségi Hozzászólás Belkapcsolása"
1857
  msgid "Use shortlinks already installed, for tweet button"
1858
  msgstr "Használja shortlinks már telepítve van, a tweet gomb"
1859
 
1860
+ #: ../admin/like_buttons.php:592
1861
+ msgid "Allows for shortened URLs to be used when sharing content if a shortening plugin is installed"
1862
+ msgstr "Lehetővé teszi a rövidített URL-ek is, amikor közös tartalmat, ha a zsiradék bővítmény telepítése"
1863
+
1864
  #: ../admin/like_buttons.php:600
1865
  msgid "Enable bit.ly url shortener for tweet button"
1866
  msgstr "A bit.ly url rövidítő bekapcsolása a tweet gombhoz"
1904
  msgid "Enable Social Login from \"Basic Configuration\" section at \"Super Socializer > Social Login\" page in admin panel"
1905
  msgstr "Győződjön meg arról, Szociális Login engedélyezve van az \"Super Socializer > Social Login\" oldalon."
1906
 
1907
+ #: ../inc/social_sharing.php:706
1908
  msgid "Invalid request"
1909
  msgstr "Hibás kérés"
1910
 
1911
+ #: ../inc/social_sharing.php:713
1912
  msgid "Providers not selected"
1913
  msgstr "Nincs kiválasztott szolgáltató"
1914
 
languages/Super-Socializer-it_IT.mo CHANGED
Binary file
languages/Super-Socializer-it_IT.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Super Socializer\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2016-01-08 07:40+0530\n"
6
- "PO-Revision-Date: 2016-01-08 07:40+0530\n"
7
  "Last-Translator: The Champ <lordofthechamps@gmail.com>\n"
8
  "Language-Team: Freedom's Gate <freedomsgate.tk@gmail.com>\n"
9
  "Language: it\n"
@@ -77,11 +77,11 @@ msgstr "Url Avatar Piccolo"
77
  msgid "Large Avatar Url"
78
  msgstr "URL Avatar Grande"
79
 
80
- #: ../super_socializer.php:848
81
  msgid "Email you entered is already registered or invalid"
82
  msgstr "La email inserita è già registrata o non è valida"
83
 
84
- #: ../super_socializer.php:852
85
  msgid "Please enter a valid email address. You might be required to verify it"
86
  msgstr "Si prega di inserire un indirizzo email valido. Potrebbe esserne richiesta una verifica"
87
 
@@ -172,32 +172,32 @@ msgstr "Avvio share count per"
172
  msgid "Floating Sharing Interface"
173
  msgstr "Interfaccia"
174
 
175
- #: ../helper.php:878
176
  #, fuzzy
177
  msgid "Social Avatar"
178
  msgstr "Url Avatar Piccolo"
179
 
180
- #: ../helper.php:881
181
  msgid "Do not fetch and update social avatar from my profile, next time I Social Login"
182
  msgstr ""
183
 
184
- #: ../helper.php:882
185
  msgid "Update social avatar, next time I Social Login"
186
  msgstr ""
187
 
188
- #: ../helper.php:885
189
  #, fuzzy
190
  msgid "Small Avatar"
191
  msgstr "Url Avatar Piccolo"
192
 
193
- #: ../helper.php:889
194
  #, fuzzy
195
  msgid "Large Avatar"
196
  msgstr "URL Avatar Grande"
197
 
198
- #: ../helper.php:893
199
  #: ../admin/general_options.php:89
200
- #: ../admin/social_sharing.php:1732
201
  #: ../admin/social_commenting.php:464
202
  #: ../admin/social_login.php:778
203
  #: ../admin/like_buttons.php:764
@@ -346,8 +346,8 @@ msgid "Miscellaneous"
346
  msgstr ""
347
 
348
  #: ../admin/social_sharing.php:39
349
- #: ../admin/social_sharing.php:1681
350
- #: ../admin/social_sharing.php:1683
351
  #: ../admin/social_login.php:37
352
  #: ../admin/social_login.php:764
353
  #: ../admin/like_buttons.php:40
@@ -360,7 +360,7 @@ msgid "Troubleshooter"
360
  msgstr "Risoluzione dei problemi"
361
 
362
  #: ../admin/social_sharing.php:41
363
- #: ../admin/social_sharing.php:1712
364
  #: ../admin/social_commenting.php:36
365
  #: ../admin/social_commenting.php:452
366
  msgid "FAQ"
@@ -967,9 +967,8 @@ msgid "Use shortlinks already installed"
967
  msgstr "Utilizza shortlinks già installati"
968
 
969
  #: ../admin/social_sharing.php:1522
970
- #: ../admin/like_buttons.php:592
971
- msgid "Allows for shortened URLs to be used when sharing content if a shortening plugin is installed"
972
- msgstr "Permette di utilizzare URL abbreviati quando c'è condivisione di contenuti e se è installato uno plugin shortening"
973
 
974
  #: ../admin/social_sharing.php:1530
975
  msgid "Enable bit.ly url shortener for sharing"
@@ -1002,6 +1001,11 @@ msgstr "bit.ly API Key"
1002
  msgid "Login to your bit.ly account and navigate to <a href=\"%s\" target=\"_blank\">this link</a> to get your API key"
1003
  msgstr "Per ottenere la vostra API key accedete al vostro account bit.ly e andate a <a href=\"%s\" target=\"_blank\">questo link</a>"
1004
 
 
 
 
 
 
1005
  #: ../admin/social_sharing.php:1590
1006
  #: ../admin/like_buttons.php:660
1007
  #, fuzzy
@@ -1014,79 +1018,108 @@ msgid "Use this to delete short urls saved in database. Handy, if urls of your w
1014
  msgstr ""
1015
 
1016
  #: ../admin/social_sharing.php:1606
 
 
 
1017
  #: ../admin/social_sharing.php:1612
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1018
  #: ../admin/social_commenting.php:311
1019
  #: ../admin/like_buttons.php:676
1020
  #: ../admin/like_buttons.php:682
1021
  msgid "Language"
1022
  msgstr "Lingua"
1023
 
1024
- #: ../admin/social_sharing.php:1622
1025
  #, fuzzy, php-format
1026
  msgid "Enter the code of the language you want to use for like buttons. You can find the language codes at <a href=\"%s\" target=\"_blank\">this link</a>. Leave it empty for default language(English)"
1027
  msgstr "Inserire il codice della lingua che si vuole usare perrender counters. I codici dei differenti linguaggi si possono trovare su <a href=\"%s\" target=\"_blank\">questo collegamento</a>. Lasciare in bianco per usare la lingua predefinita"
1028
 
1029
- #: ../admin/social_sharing.php:1631
1030
  #, fuzzy
1031
  msgid "Username in sharing"
1032
  msgstr "Username Twitter in sharing"
1033
 
1034
- #: ../admin/social_sharing.php:1637
1035
  msgid "Twitter username (without @)"
1036
  msgstr "Username Twitter (senza @)"
1037
 
1038
- #: ../admin/social_sharing.php:1647
1039
- #: ../admin/social_sharing.php:1666
1040
  msgid "Provided username will be appended after the content being shared as \"via @USERNAME\". Leave empty if you do not want any username in the content being shared."
1041
  msgstr "La username fornita viene aggiunta dopo il contenuto condiviso come \"via @USERNAME\". Lasciare vuoto se non si desidera alcuna username."
1042
 
1043
- #: ../admin/social_sharing.php:1656
1044
  #, fuzzy
1045
  msgid "Buffer username (without @)"
1046
  msgstr "Username Twitter (senza @)"
1047
 
1048
- #: ../admin/social_sharing.php:1693
1049
  msgid "Facebook Sharing Troubleshooter"
1050
  msgstr "Risoluzione dei problemi Facebook Sharing"
1051
 
1052
- #: ../admin/social_sharing.php:1698
1053
  msgid "If Facebook sharing is not working fine, click at the following link and enter the problematic url (where Facebook sharing is not working properly) of your website in the text field:"
1054
  msgstr "Se la condivisione di Facebook non funziona bene, fai un clic sul collegamento che segue e inserisci nell'area di testo la url del tuo sito web che ti ha dato i problemi (dove quindi la condivisione di Facebook non ha funzionato bene):"
1055
 
1056
- #: ../admin/social_sharing.php:1714
1057
  msgid "How can I show share counts of my website rather than of individual pages/posts?"
1058
  msgstr "Come posso mostrare conteggi del mio sito web, piuttosto che di singole pagine/post?"
1059
 
1060
- #: ../admin/social_sharing.php:1715
1061
  msgid "How can I disable sharing on particular page/post?"
1062
  msgstr "Come è possibile disattivare la condivisione di una pagina/post in particolare?"
1063
 
1064
- #: ../admin/social_sharing.php:1716
1065
  msgid "How can I specify minimum sharing count for sharing networks?"
1066
  msgstr "Come faccio a specificare il conteggio minimo di sharing per la condivisione di reti?"
1067
 
1068
- #: ../admin/social_sharing.php:1717
1069
  msgid "How to share specific page?"
1070
  msgstr ""
1071
 
1072
- #: ../admin/social_sharing.php:1718
1073
  msgid "How to integrate Google Analytics with sharing?"
1074
  msgstr ""
1075
 
1076
- #: ../admin/social_sharing.php:1719
1077
  msgid "How to customize the look of total share counts?"
1078
  msgstr ""
1079
 
1080
- #: ../admin/social_sharing.php:1720
1081
  #, fuzzy
1082
  msgid "How to customize the look of individual share counts?"
1083
  msgstr "Mostra conteggi condivisioni individuali:"
1084
 
1085
- #: ../admin/social_sharing.php:1721
1086
  #, fuzzy
1087
  msgid "How to show Whatsapp icon only on mobile devices?"
1088
  msgstr "Nascondi la condivisione sui dispositivi mobili"
1089
 
 
 
 
 
1090
  #: ../admin/social_commenting.php:13
1091
  msgid "Enable Social Commenting"
1092
  msgstr "Abilita Social Commenting"
@@ -1805,6 +1838,10 @@ msgstr "Se questa opzione è abilitata, i pulsanti verticali Mi-Piace non appari
1805
  msgid "Use shortlinks already installed, for tweet button"
1806
  msgstr "Per pulsante Tweet, utilizza shortlinks già installati."
1807
 
 
 
 
 
1808
  #: ../admin/like_buttons.php:600
1809
  msgid "Enable bit.ly url shortener for tweet button"
1810
  msgstr "Abilita bit.ly url shortener per pulsante Tweet"
@@ -1842,11 +1879,11 @@ msgstr "Pulsanti Shortcode & Widget"
1842
  msgid "Enable Social Login from \"Basic Configuration\" section at \"Super Socializer > Social Login\" page in admin panel"
1843
  msgstr "Abilita Social Login nella sezione \"Configurazione di base\" che si trova nella pagina \"Super Socializer > Social Login\" del pannello di amministrazione"
1844
 
1845
- #: ../inc/social_sharing.php:652
1846
  msgid "Invalid request"
1847
  msgstr "Domanda non valida"
1848
 
1849
- #: ../inc/social_sharing.php:659
1850
  msgid "Providers not selected"
1851
  msgstr "Providers non selezionati"
1852
 
2
  msgstr ""
3
  "Project-Id-Version: Super Socializer\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2016-01-29 18:57+0530\n"
6
+ "PO-Revision-Date: 2016-01-29 18:57+0530\n"
7
  "Last-Translator: The Champ <lordofthechamps@gmail.com>\n"
8
  "Language-Team: Freedom's Gate <freedomsgate.tk@gmail.com>\n"
9
  "Language: it\n"
77
  msgid "Large Avatar Url"
78
  msgstr "URL Avatar Grande"
79
 
80
+ #: ../super_socializer.php:846
81
  msgid "Email you entered is already registered or invalid"
82
  msgstr "La email inserita è già registrata o non è valida"
83
 
84
+ #: ../super_socializer.php:850
85
  msgid "Please enter a valid email address. You might be required to verify it"
86
  msgstr "Si prega di inserire un indirizzo email valido. Potrebbe esserne richiesta una verifica"
87
 
172
  msgid "Floating Sharing Interface"
173
  msgstr "Interfaccia"
174
 
175
+ #: ../helper.php:879
176
  #, fuzzy
177
  msgid "Social Avatar"
178
  msgstr "Url Avatar Piccolo"
179
 
180
+ #: ../helper.php:882
181
  msgid "Do not fetch and update social avatar from my profile, next time I Social Login"
182
  msgstr ""
183
 
184
+ #: ../helper.php:883
185
  msgid "Update social avatar, next time I Social Login"
186
  msgstr ""
187
 
188
+ #: ../helper.php:886
189
  #, fuzzy
190
  msgid "Small Avatar"
191
  msgstr "Url Avatar Piccolo"
192
 
193
+ #: ../helper.php:890
194
  #, fuzzy
195
  msgid "Large Avatar"
196
  msgstr "URL Avatar Grande"
197
 
198
+ #: ../helper.php:894
199
  #: ../admin/general_options.php:89
200
+ #: ../admin/social_sharing.php:1783
201
  #: ../admin/social_commenting.php:464
202
  #: ../admin/social_login.php:778
203
  #: ../admin/like_buttons.php:764
346
  msgstr ""
347
 
348
  #: ../admin/social_sharing.php:39
349
+ #: ../admin/social_sharing.php:1731
350
+ #: ../admin/social_sharing.php:1733
351
  #: ../admin/social_login.php:37
352
  #: ../admin/social_login.php:764
353
  #: ../admin/like_buttons.php:40
360
  msgstr "Risoluzione dei problemi"
361
 
362
  #: ../admin/social_sharing.php:41
363
+ #: ../admin/social_sharing.php:1762
364
  #: ../admin/social_commenting.php:36
365
  #: ../admin/social_commenting.php:452
366
  msgid "FAQ"
967
  msgstr "Utilizza shortlinks già installati"
968
 
969
  #: ../admin/social_sharing.php:1522
970
+ msgid "Uses default short url permalinks without using any additional plugin"
971
+ msgstr ""
 
972
 
973
  #: ../admin/social_sharing.php:1530
974
  msgid "Enable bit.ly url shortener for sharing"
1001
  msgid "Login to your bit.ly account and navigate to <a href=\"%s\" target=\"_blank\">this link</a> to get your API key"
1002
  msgstr "Per ottenere la vostra API key accedete al vostro account bit.ly e andate a <a href=\"%s\" target=\"_blank\">questo link</a>"
1003
 
1004
+ #: ../admin/social_sharing.php:1586
1005
+ #: ../admin/like_buttons.php:656
1006
+ msgid "Clear Bitly Cache"
1007
+ msgstr ""
1008
+
1009
  #: ../admin/social_sharing.php:1590
1010
  #: ../admin/like_buttons.php:660
1011
  #, fuzzy
1018
  msgstr ""
1019
 
1020
  #: ../admin/social_sharing.php:1606
1021
+ msgid "Share Count Cache"
1022
+ msgstr ""
1023
+
1024
  #: ../admin/social_sharing.php:1612
1025
+ msgid "Refresh Share Count cache every"
1026
+ msgstr ""
1027
+
1028
+ #: ../admin/social_sharing.php:1628
1029
+ msgid "Frequent cache refreshing results in slower loading of pages with share counts enabled"
1030
+ msgstr ""
1031
+
1032
+ #: ../admin/social_sharing.php:1636
1033
+ msgid "Clear Share Counts Cache"
1034
+ msgstr ""
1035
+
1036
+ #: ../admin/social_sharing.php:1640
1037
+ #, fuzzy
1038
+ msgid "Share Counts cache cleared successfully."
1039
+ msgstr "Account collegato correttamente"
1040
+
1041
+ #: ../admin/social_sharing.php:1647
1042
+ msgid "Use this to clear cached share counts"
1043
+ msgstr ""
1044
+
1045
+ #: ../admin/social_sharing.php:1656
1046
+ #: ../admin/social_sharing.php:1662
1047
  #: ../admin/social_commenting.php:311
1048
  #: ../admin/like_buttons.php:676
1049
  #: ../admin/like_buttons.php:682
1050
  msgid "Language"
1051
  msgstr "Lingua"
1052
 
1053
+ #: ../admin/social_sharing.php:1672
1054
  #, fuzzy, php-format
1055
  msgid "Enter the code of the language you want to use for like buttons. You can find the language codes at <a href=\"%s\" target=\"_blank\">this link</a>. Leave it empty for default language(English)"
1056
  msgstr "Inserire il codice della lingua che si vuole usare perrender counters. I codici dei differenti linguaggi si possono trovare su <a href=\"%s\" target=\"_blank\">questo collegamento</a>. Lasciare in bianco per usare la lingua predefinita"
1057
 
1058
+ #: ../admin/social_sharing.php:1681
1059
  #, fuzzy
1060
  msgid "Username in sharing"
1061
  msgstr "Username Twitter in sharing"
1062
 
1063
+ #: ../admin/social_sharing.php:1687
1064
  msgid "Twitter username (without @)"
1065
  msgstr "Username Twitter (senza @)"
1066
 
1067
+ #: ../admin/social_sharing.php:1697
1068
+ #: ../admin/social_sharing.php:1716
1069
  msgid "Provided username will be appended after the content being shared as \"via @USERNAME\". Leave empty if you do not want any username in the content being shared."
1070
  msgstr "La username fornita viene aggiunta dopo il contenuto condiviso come \"via @USERNAME\". Lasciare vuoto se non si desidera alcuna username."
1071
 
1072
+ #: ../admin/social_sharing.php:1706
1073
  #, fuzzy
1074
  msgid "Buffer username (without @)"
1075
  msgstr "Username Twitter (senza @)"
1076
 
1077
+ #: ../admin/social_sharing.php:1743
1078
  msgid "Facebook Sharing Troubleshooter"
1079
  msgstr "Risoluzione dei problemi Facebook Sharing"
1080
 
1081
+ #: ../admin/social_sharing.php:1748
1082
  msgid "If Facebook sharing is not working fine, click at the following link and enter the problematic url (where Facebook sharing is not working properly) of your website in the text field:"
1083
  msgstr "Se la condivisione di Facebook non funziona bene, fai un clic sul collegamento che segue e inserisci nell'area di testo la url del tuo sito web che ti ha dato i problemi (dove quindi la condivisione di Facebook non ha funzionato bene):"
1084
 
1085
+ #: ../admin/social_sharing.php:1764
1086
  msgid "How can I show share counts of my website rather than of individual pages/posts?"
1087
  msgstr "Come posso mostrare conteggi del mio sito web, piuttosto che di singole pagine/post?"
1088
 
1089
+ #: ../admin/social_sharing.php:1765
1090
  msgid "How can I disable sharing on particular page/post?"
1091
  msgstr "Come è possibile disattivare la condivisione di una pagina/post in particolare?"
1092
 
1093
+ #: ../admin/social_sharing.php:1766
1094
  msgid "How can I specify minimum sharing count for sharing networks?"
1095
  msgstr "Come faccio a specificare il conteggio minimo di sharing per la condivisione di reti?"
1096
 
1097
+ #: ../admin/social_sharing.php:1767
1098
  msgid "How to share specific page?"
1099
  msgstr ""
1100
 
1101
+ #: ../admin/social_sharing.php:1768
1102
  msgid "How to integrate Google Analytics with sharing?"
1103
  msgstr ""
1104
 
1105
+ #: ../admin/social_sharing.php:1769
1106
  msgid "How to customize the look of total share counts?"
1107
  msgstr ""
1108
 
1109
+ #: ../admin/social_sharing.php:1770
1110
  #, fuzzy
1111
  msgid "How to customize the look of individual share counts?"
1112
  msgstr "Mostra conteggi condivisioni individuali:"
1113
 
1114
+ #: ../admin/social_sharing.php:1771
1115
  #, fuzzy
1116
  msgid "How to show Whatsapp icon only on mobile devices?"
1117
  msgstr "Nascondi la condivisione sui dispositivi mobili"
1118
 
1119
+ #: ../admin/social_sharing.php:1772
1120
+ msgid "How to hide arrow after floating sharing bar?"
1121
+ msgstr ""
1122
+
1123
  #: ../admin/social_commenting.php:13
1124
  msgid "Enable Social Commenting"
1125
  msgstr "Abilita Social Commenting"
1838
  msgid "Use shortlinks already installed, for tweet button"
1839
  msgstr "Per pulsante Tweet, utilizza shortlinks già installati."
1840
 
1841
+ #: ../admin/like_buttons.php:592
1842
+ msgid "Allows for shortened URLs to be used when sharing content if a shortening plugin is installed"
1843
+ msgstr "Permette di utilizzare URL abbreviati quando c'è condivisione di contenuti e se è installato uno plugin shortening"
1844
+
1845
  #: ../admin/like_buttons.php:600
1846
  msgid "Enable bit.ly url shortener for tweet button"
1847
  msgstr "Abilita bit.ly url shortener per pulsante Tweet"
1879
  msgid "Enable Social Login from \"Basic Configuration\" section at \"Super Socializer > Social Login\" page in admin panel"
1880
  msgstr "Abilita Social Login nella sezione \"Configurazione di base\" che si trova nella pagina \"Super Socializer > Social Login\" del pannello di amministrazione"
1881
 
1882
+ #: ../inc/social_sharing.php:706
1883
  msgid "Invalid request"
1884
  msgstr "Domanda non valida"
1885
 
1886
+ #: ../inc/social_sharing.php:713
1887
  msgid "Providers not selected"
1888
  msgstr "Providers non selezionati"
1889
 
languages/Super-Socializer-ru_RU.mo CHANGED
Binary file
languages/Super-Socializer-ru_RU.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Super Socializer\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2016-01-08 07:40+0530\n"
6
- "PO-Revision-Date: 2016-01-08 07:40+0530\n"
7
  "Last-Translator: The Champ <lordofthechamps@gmail.com>\n"
8
  "Language-Team: Team Heateor <support@heateor.com>\n"
9
  "Language: ru_RU\n"
@@ -78,11 +78,11 @@ msgstr "Ссылка для маленького аватара"
78
  msgid "Large Avatar Url"
79
  msgstr "Ссылка для большого аватара"
80
 
81
- #: ../super_socializer.php:848
82
  msgid "Email you entered is already registered or invalid"
83
  msgstr "Электронная почта, которую вы ввели, уже зарегистрирована или недействительна"
84
 
85
- #: ../super_socializer.php:852
86
  msgid "Please enter a valid email address. You might be required to verify it"
87
  msgstr "Пожалуйста, введите действительный адрес электронной почты. Вам, возможно, потребуется проверить его"
88
 
@@ -174,32 +174,32 @@ msgstr "Запустить счетчик поделиться для"
174
  msgid "Floating Sharing Interface"
175
  msgstr "Интерфейс Поделиться"
176
 
177
- #: ../helper.php:878
178
  #, fuzzy
179
  msgid "Social Avatar"
180
  msgstr "Ссылка для маленького аватара"
181
 
182
- #: ../helper.php:881
183
  msgid "Do not fetch and update social avatar from my profile, next time I Social Login"
184
  msgstr ""
185
 
186
- #: ../helper.php:882
187
  msgid "Update social avatar, next time I Social Login"
188
  msgstr ""
189
 
190
- #: ../helper.php:885
191
  #, fuzzy
192
  msgid "Small Avatar"
193
  msgstr "Ссылка для маленького аватара"
194
 
195
- #: ../helper.php:889
196
  #, fuzzy
197
  msgid "Large Avatar"
198
  msgstr "Ссылка для большого аватара"
199
 
200
- #: ../helper.php:893
201
  #: ../admin/general_options.php:89
202
- #: ../admin/social_sharing.php:1732
203
  #: ../admin/social_commenting.php:464
204
  #: ../admin/social_login.php:778
205
  #: ../admin/like_buttons.php:764
@@ -347,8 +347,8 @@ msgid "Miscellaneous"
347
  msgstr ""
348
 
349
  #: ../admin/social_sharing.php:39
350
- #: ../admin/social_sharing.php:1681
351
- #: ../admin/social_sharing.php:1683
352
  #: ../admin/social_login.php:37
353
  #: ../admin/social_login.php:764
354
  #: ../admin/like_buttons.php:40
@@ -361,7 +361,7 @@ msgid "Troubleshooter"
361
  msgstr "Устранение неисправностей"
362
 
363
  #: ../admin/social_sharing.php:41
364
- #: ../admin/social_sharing.php:1712
365
  #: ../admin/social_commenting.php:36
366
  #: ../admin/social_commenting.php:452
367
  msgid "FAQ"
@@ -968,9 +968,8 @@ msgid "Use shortlinks already installed"
968
  msgstr "Использование коротких ссылок уже установлено"
969
 
970
  #: ../admin/social_sharing.php:1522
971
- #: ../admin/like_buttons.php:592
972
- msgid "Allows for shortened URLs to be used when sharing content if a shortening plugin is installed"
973
- msgstr "Позволяет использовать сокращенные ссылки если Поделиться, при условии что плагин установлен."
974
 
975
  #: ../admin/social_sharing.php:1530
976
  msgid "Enable bit.ly url shortener for sharing"
@@ -1003,6 +1002,11 @@ msgstr "bit.ly ключ приложения"
1003
  msgid "Login to your bit.ly account and navigate to <a href=\"%s\" target=\"_blank\">this link</a> to get your API key"
1004
  msgstr "Войти в ваш bit.ly аккаунт и перейдите по <a href=\"%s\" target=\"_blank\">этой ссылке</a> , чтобы получить ваш ключ API"
1005
 
 
 
 
 
 
1006
  #: ../admin/social_sharing.php:1590
1007
  #: ../admin/like_buttons.php:660
1008
  #, fuzzy
@@ -1015,79 +1019,108 @@ msgid "Use this to delete short urls saved in database. Handy, if urls of your w
1015
  msgstr ""
1016
 
1017
  #: ../admin/social_sharing.php:1606
 
 
 
1018
  #: ../admin/social_sharing.php:1612
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1019
  #: ../admin/social_commenting.php:311
1020
  #: ../admin/like_buttons.php:676
1021
  #: ../admin/like_buttons.php:682
1022
  msgid "Language"
1023
  msgstr "Язык"
1024
 
1025
- #: ../admin/social_sharing.php:1622
1026
  #, fuzzy, php-format
1027
  msgid "Enter the code of the language you want to use for like buttons. You can find the language codes at <a href=\"%s\" target=\"_blank\">this link</a>. Leave it empty for default language(English)"
1028
  msgstr "Введите код языка если хотите использовать свой язык для показа счетчиков. Вы можете найти код своего языка по <a href=\"%s\" target=\"_blank\">этой ссылке</a>. Оставьте поле пустым чтобы оставить язык по умолчанию (English)."
1029
 
1030
- #: ../admin/social_sharing.php:1631
1031
  #, fuzzy
1032
  msgid "Username in sharing"
1033
  msgstr "Имя пользователя Twitter чтобы Поделиться"
1034
 
1035
- #: ../admin/social_sharing.php:1637
1036
  msgid "Twitter username (without @)"
1037
  msgstr "Twitter имя пользователя (без @)"
1038
 
1039
- #: ../admin/social_sharing.php:1647
1040
- #: ../admin/social_sharing.php:1666
1041
  msgid "Provided username will be appended after the content being shared as \"via @USERNAME\". Leave empty if you do not want any username in the content being shared."
1042
  msgstr "Добавляет имя пользователя после того как контент будет расшарен с помощью \"via @USERNAME\". Оставьте поле пустым если не хотите указывать имя."
1043
 
1044
- #: ../admin/social_sharing.php:1656
1045
  #, fuzzy
1046
  msgid "Buffer username (without @)"
1047
  msgstr "Twitter имя пользователя (без @)"
1048
 
1049
- #: ../admin/social_sharing.php:1693
1050
  msgid "Facebook Sharing Troubleshooter"
1051
  msgstr "Устранение неисправностей Поделиться от Facebook"
1052
 
1053
- #: ../admin/social_sharing.php:1698
1054
  msgid "If Facebook sharing is not working fine, click at the following link and enter the problematic url (where Facebook sharing is not working properly) of your website in the text field:"
1055
  msgstr "Если Поделиться от Facebook не работает нормально, нажмите на следующую ссылку и введите проблематичный URL-адрес (где Поделиться от Facebook не работает должным образом) вашего сайта в текстовом поле:"
1056
 
1057
- #: ../admin/social_sharing.php:1714
1058
  msgid "How can I show share counts of my website rather than of individual pages/posts?"
1059
  msgstr "Как мне отобразить общее количество Поделиться основанное на страницах/постах?"
1060
 
1061
- #: ../admin/social_sharing.php:1715
1062
  msgid "How can I disable sharing on particular page/post?"
1063
  msgstr "Как можно отключить кнопки Поделиться на конкретной странице или в посте?"
1064
 
1065
- #: ../admin/social_sharing.php:1716
1066
  msgid "How can I specify minimum sharing count for sharing networks?"
1067
  msgstr "Как мне указать минимальное количество для Поделиться"
1068
 
1069
- #: ../admin/social_sharing.php:1717
1070
  msgid "How to share specific page?"
1071
  msgstr ""
1072
 
1073
- #: ../admin/social_sharing.php:1718
1074
  msgid "How to integrate Google Analytics with sharing?"
1075
  msgstr ""
1076
 
1077
- #: ../admin/social_sharing.php:1719
1078
  msgid "How to customize the look of total share counts?"
1079
  msgstr ""
1080
 
1081
- #: ../admin/social_sharing.php:1720
1082
  #, fuzzy
1083
  msgid "How to customize the look of individual share counts?"
1084
  msgstr "Показать индвидуальные счетчики Поделиться"
1085
 
1086
- #: ../admin/social_sharing.php:1721
1087
  #, fuzzy
1088
  msgid "How to show Whatsapp icon only on mobile devices?"
1089
  msgstr "Скрыть кнопки Поделиться на мобильных устройствах"
1090
 
 
 
 
 
1091
  #: ../admin/social_commenting.php:13
1092
  msgid "Enable Social Commenting"
1093
  msgstr "Включить комментирование через социальные сети"
@@ -1808,6 +1841,10 @@ msgstr "Если включено, то вертикальный интерфе
1808
  msgid "Use shortlinks already installed, for tweet button"
1809
  msgstr "Эти короткие ссылки уже установлены, для кнопки Твитнуть"
1810
 
 
 
 
 
1811
  #: ../admin/like_buttons.php:600
1812
  msgid "Enable bit.ly url shortener for tweet button"
1813
  msgstr "Активировать сокращение ссылок bit.ly для кнопки Твитнуть"
@@ -1845,11 +1882,11 @@ msgstr "Шорткод и виджет Нравится"
1845
  msgid "Enable Social Login from \"Basic Configuration\" section at \"Super Socializer > Social Login\" page in admin panel"
1846
  msgstr "Активируйте вход через социальные сети в \"Базовые настройки\" в секции на странице \"Super Socializer > Вход через социальные сети\" в панели админ-панели"
1847
 
1848
- #: ../inc/social_sharing.php:652
1849
  msgid "Invalid request"
1850
  msgstr "Неверный Запрос!"
1851
 
1852
- #: ../inc/social_sharing.php:659
1853
  msgid "Providers not selected"
1854
  msgstr "Сервисы не выбраны"
1855
 
2
  msgstr ""
3
  "Project-Id-Version: Super Socializer\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2016-01-29 18:57+0530\n"
6
+ "PO-Revision-Date: 2016-01-29 18:57+0530\n"
7
  "Last-Translator: The Champ <lordofthechamps@gmail.com>\n"
8
  "Language-Team: Team Heateor <support@heateor.com>\n"
9
  "Language: ru_RU\n"
78
  msgid "Large Avatar Url"
79
  msgstr "Ссылка для большого аватара"
80
 
81
+ #: ../super_socializer.php:846
82
  msgid "Email you entered is already registered or invalid"
83
  msgstr "Электронная почта, которую вы ввели, уже зарегистрирована или недействительна"
84
 
85
+ #: ../super_socializer.php:850
86
  msgid "Please enter a valid email address. You might be required to verify it"
87
  msgstr "Пожалуйста, введите действительный адрес электронной почты. Вам, возможно, потребуется проверить его"
88
 
174
  msgid "Floating Sharing Interface"
175
  msgstr "Интерфейс Поделиться"
176
 
177
+ #: ../helper.php:879
178
  #, fuzzy
179
  msgid "Social Avatar"
180
  msgstr "Ссылка для маленького аватара"
181
 
182
+ #: ../helper.php:882
183
  msgid "Do not fetch and update social avatar from my profile, next time I Social Login"
184
  msgstr ""
185
 
186
+ #: ../helper.php:883
187
  msgid "Update social avatar, next time I Social Login"
188
  msgstr ""
189
 
190
+ #: ../helper.php:886
191
  #, fuzzy
192
  msgid "Small Avatar"
193
  msgstr "Ссылка для маленького аватара"
194
 
195
+ #: ../helper.php:890
196
  #, fuzzy
197
  msgid "Large Avatar"
198
  msgstr "Ссылка для большого аватара"
199
 
200
+ #: ../helper.php:894
201
  #: ../admin/general_options.php:89
202
+ #: ../admin/social_sharing.php:1783
203
  #: ../admin/social_commenting.php:464
204
  #: ../admin/social_login.php:778
205
  #: ../admin/like_buttons.php:764
347
  msgstr ""
348
 
349
  #: ../admin/social_sharing.php:39
350
+ #: ../admin/social_sharing.php:1731
351
+ #: ../admin/social_sharing.php:1733
352
  #: ../admin/social_login.php:37
353
  #: ../admin/social_login.php:764
354
  #: ../admin/like_buttons.php:40
361
  msgstr "Устранение неисправностей"
362
 
363
  #: ../admin/social_sharing.php:41
364
+ #: ../admin/social_sharing.php:1762
365
  #: ../admin/social_commenting.php:36
366
  #: ../admin/social_commenting.php:452
367
  msgid "FAQ"
968
  msgstr "Использование коротких ссылок уже установлено"
969
 
970
  #: ../admin/social_sharing.php:1522
971
+ msgid "Uses default short url permalinks without using any additional plugin"
972
+ msgstr ""
 
973
 
974
  #: ../admin/social_sharing.php:1530
975
  msgid "Enable bit.ly url shortener for sharing"
1002
  msgid "Login to your bit.ly account and navigate to <a href=\"%s\" target=\"_blank\">this link</a> to get your API key"
1003
  msgstr "Войти в ваш bit.ly аккаунт и перейдите по <a href=\"%s\" target=\"_blank\">этой ссылке</a> , чтобы получить ваш ключ API"
1004
 
1005
+ #: ../admin/social_sharing.php:1586
1006
+ #: ../admin/like_buttons.php:656
1007
+ msgid "Clear Bitly Cache"
1008
+ msgstr ""
1009
+
1010
  #: ../admin/social_sharing.php:1590
1011
  #: ../admin/like_buttons.php:660
1012
  #, fuzzy
1019
  msgstr ""
1020
 
1021
  #: ../admin/social_sharing.php:1606
1022
+ msgid "Share Count Cache"
1023
+ msgstr ""
1024
+
1025
  #: ../admin/social_sharing.php:1612
1026
+ msgid "Refresh Share Count cache every"
1027
+ msgstr ""
1028
+
1029
+ #: ../admin/social_sharing.php:1628
1030
+ msgid "Frequent cache refreshing results in slower loading of pages with share counts enabled"
1031
+ msgstr ""
1032
+
1033
+ #: ../admin/social_sharing.php:1636
1034
+ msgid "Clear Share Counts Cache"
1035
+ msgstr ""
1036
+
1037
+ #: ../admin/social_sharing.php:1640
1038
+ #, fuzzy
1039
+ msgid "Share Counts cache cleared successfully."
1040
+ msgstr "Аккаунт успешно связан"
1041
+
1042
+ #: ../admin/social_sharing.php:1647
1043
+ msgid "Use this to clear cached share counts"
1044
+ msgstr ""
1045
+
1046
+ #: ../admin/social_sharing.php:1656
1047
+ #: ../admin/social_sharing.php:1662
1048
  #: ../admin/social_commenting.php:311
1049
  #: ../admin/like_buttons.php:676
1050
  #: ../admin/like_buttons.php:682
1051
  msgid "Language"
1052
  msgstr "Язык"
1053
 
1054
+ #: ../admin/social_sharing.php:1672
1055
  #, fuzzy, php-format
1056
  msgid "Enter the code of the language you want to use for like buttons. You can find the language codes at <a href=\"%s\" target=\"_blank\">this link</a>. Leave it empty for default language(English)"
1057
  msgstr "Введите код языка если хотите использовать свой язык для показа счетчиков. Вы можете найти код своего языка по <a href=\"%s\" target=\"_blank\">этой ссылке</a>. Оставьте поле пустым чтобы оставить язык по умолчанию (English)."
1058
 
1059
+ #: ../admin/social_sharing.php:1681
1060
  #, fuzzy
1061
  msgid "Username in sharing"
1062
  msgstr "Имя пользователя Twitter чтобы Поделиться"
1063
 
1064
+ #: ../admin/social_sharing.php:1687
1065
  msgid "Twitter username (without @)"
1066
  msgstr "Twitter имя пользователя (без @)"
1067
 
1068
+ #: ../admin/social_sharing.php:1697
1069
+ #: ../admin/social_sharing.php:1716
1070
  msgid "Provided username will be appended after the content being shared as \"via @USERNAME\". Leave empty if you do not want any username in the content being shared."
1071
  msgstr "Добавляет имя пользователя после того как контент будет расшарен с помощью \"via @USERNAME\". Оставьте поле пустым если не хотите указывать имя."
1072
 
1073
+ #: ../admin/social_sharing.php:1706
1074
  #, fuzzy
1075
  msgid "Buffer username (without @)"
1076
  msgstr "Twitter имя пользователя (без @)"
1077
 
1078
+ #: ../admin/social_sharing.php:1743
1079
  msgid "Facebook Sharing Troubleshooter"
1080
  msgstr "Устранение неисправностей Поделиться от Facebook"
1081
 
1082
+ #: ../admin/social_sharing.php:1748
1083
  msgid "If Facebook sharing is not working fine, click at the following link and enter the problematic url (where Facebook sharing is not working properly) of your website in the text field:"
1084
  msgstr "Если Поделиться от Facebook не работает нормально, нажмите на следующую ссылку и введите проблематичный URL-адрес (где Поделиться от Facebook не работает должным образом) вашего сайта в текстовом поле:"
1085
 
1086
+ #: ../admin/social_sharing.php:1764
1087
  msgid "How can I show share counts of my website rather than of individual pages/posts?"
1088
  msgstr "Как мне отобразить общее количество Поделиться основанное на страницах/постах?"
1089
 
1090
+ #: ../admin/social_sharing.php:1765
1091
  msgid "How can I disable sharing on particular page/post?"
1092
  msgstr "Как можно отключить кнопки Поделиться на конкретной странице или в посте?"
1093
 
1094
+ #: ../admin/social_sharing.php:1766
1095
  msgid "How can I specify minimum sharing count for sharing networks?"
1096
  msgstr "Как мне указать минимальное количество для Поделиться"
1097
 
1098
+ #: ../admin/social_sharing.php:1767
1099
  msgid "How to share specific page?"
1100
  msgstr ""
1101
 
1102
+ #: ../admin/social_sharing.php:1768
1103
  msgid "How to integrate Google Analytics with sharing?"
1104
  msgstr ""
1105
 
1106
+ #: ../admin/social_sharing.php:1769
1107
  msgid "How to customize the look of total share counts?"
1108
  msgstr ""
1109
 
1110
+ #: ../admin/social_sharing.php:1770
1111
  #, fuzzy
1112
  msgid "How to customize the look of individual share counts?"
1113
  msgstr "Показать индвидуальные счетчики Поделиться"
1114
 
1115
+ #: ../admin/social_sharing.php:1771
1116
  #, fuzzy
1117
  msgid "How to show Whatsapp icon only on mobile devices?"
1118
  msgstr "Скрыть кнопки Поделиться на мобильных устройствах"
1119
 
1120
+ #: ../admin/social_sharing.php:1772
1121
+ msgid "How to hide arrow after floating sharing bar?"
1122
+ msgstr ""
1123
+
1124
  #: ../admin/social_commenting.php:13
1125
  msgid "Enable Social Commenting"
1126
  msgstr "Включить комментирование через социальные сети"
1841
  msgid "Use shortlinks already installed, for tweet button"
1842
  msgstr "Эти короткие ссылки уже установлены, для кнопки Твитнуть"
1843
 
1844
+ #: ../admin/like_buttons.php:592
1845
+ msgid "Allows for shortened URLs to be used when sharing content if a shortening plugin is installed"
1846
+ msgstr "Позволяет использовать сокращенные ссылки если Поделиться, при условии что плагин установлен."
1847
+
1848
  #: ../admin/like_buttons.php:600
1849
  msgid "Enable bit.ly url shortener for tweet button"
1850
  msgstr "Активировать сокращение ссылок bit.ly для кнопки Твитнуть"
1882
  msgid "Enable Social Login from \"Basic Configuration\" section at \"Super Socializer > Social Login\" page in admin panel"
1883
  msgstr "Активируйте вход через социальные сети в \"Базовые настройки\" в секции на странице \"Super Socializer > Вход через социальные сети\" в панели админ-панели"
1884
 
1885
+ #: ../inc/social_sharing.php:706
1886
  msgid "Invalid request"
1887
  msgstr "Неверный Запрос!"
1888
 
1889
+ #: ../inc/social_sharing.php:713
1890
  msgid "Providers not selected"
1891
  msgstr "Сервисы не выбраны"
1892
 
languages/Super-Socializer-sr_RS.mo CHANGED
Binary file
languages/Super-Socializer-sr_RS.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Super Socializer\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2016-01-08 07:40+0530\n"
6
- "PO-Revision-Date: 2016-01-08 07:40+0530\n"
7
  "Last-Translator: The Champ <lordofthechamps@gmail.com>\n"
8
  "Language-Team: yoonect.com\n"
9
  "Language: it\n"
@@ -80,11 +80,11 @@ msgstr "Mali Avatar Url"
80
  msgid "Large Avatar Url"
81
  msgstr "Ciljni Url"
82
 
83
- #: ../super_socializer.php:848
84
  msgid "Email you entered is already registered or invalid"
85
  msgstr "Email koji ste uneli je već registrovan ili je nevažeći"
86
 
87
- #: ../super_socializer.php:852
88
  msgid "Please enter a valid email address. You might be required to verify it"
89
  msgstr "Molimo unesite važeću email adresu. Možda će od vas biti traženo da je potvrdite"
90
 
@@ -180,32 +180,32 @@ msgstr "Počni brojanje share-ovanja za"
180
  msgid "Floating Sharing Interface"
181
  msgstr "Interfejs za share-ovanje"
182
 
183
- #: ../helper.php:878
184
  #, fuzzy
185
  msgid "Social Avatar"
186
  msgstr "Mali Avatar Url"
187
 
188
- #: ../helper.php:881
189
  msgid "Do not fetch and update social avatar from my profile, next time I Social Login"
190
  msgstr ""
191
 
192
- #: ../helper.php:882
193
  msgid "Update social avatar, next time I Social Login"
194
  msgstr ""
195
 
196
- #: ../helper.php:885
197
  #, fuzzy
198
  msgid "Small Avatar"
199
  msgstr "Mali Avatar Url"
200
 
201
- #: ../helper.php:889
202
  #, fuzzy
203
  msgid "Large Avatar"
204
  msgstr "Ciljni Url"
205
 
206
- #: ../helper.php:893
207
  #: ../admin/general_options.php:89
208
- #: ../admin/social_sharing.php:1732
209
  #: ../admin/social_commenting.php:464
210
  #: ../admin/social_login.php:778
211
  #: ../admin/like_buttons.php:764
@@ -356,8 +356,8 @@ msgid "Miscellaneous"
356
  msgstr ""
357
 
358
  #: ../admin/social_sharing.php:39
359
- #: ../admin/social_sharing.php:1681
360
- #: ../admin/social_sharing.php:1683
361
  #: ../admin/social_login.php:37
362
  #: ../admin/social_login.php:764
363
  #: ../admin/like_buttons.php:40
@@ -370,7 +370,7 @@ msgid "Troubleshooter"
370
  msgstr "Sređivanje problema"
371
 
372
  #: ../admin/social_sharing.php:41
373
- #: ../admin/social_sharing.php:1712
374
  #: ../admin/social_commenting.php:36
375
  #: ../admin/social_commenting.php:452
376
  msgid "FAQ"
@@ -990,9 +990,8 @@ msgid "Use shortlinks already installed"
990
  msgstr "Koristite kratke linkove koji su već instalirani"
991
 
992
  #: ../admin/social_sharing.php:1522
993
- #: ../admin/like_buttons.php:592
994
- msgid "Allows for shortened URLs to be used when sharing content if a shortening plugin is installed"
995
- msgstr "Dozvoljava da se skraćeni URL-ovi koiste prilikom share-ovanja sadržaja ukoliko je instaliran plugin za skraćivanje"
996
 
997
  #: ../admin/social_sharing.php:1530
998
  msgid "Enable bit.ly url shortener for sharing"
@@ -1027,6 +1026,11 @@ msgstr "bit.ly API ključ"
1027
  msgid "Login to your bit.ly account and navigate to <a href=\"%s\" target=\"_blank\">this link</a> to get your API key"
1028
  msgstr "Ulogujte se na vaš bit.ly nalog i upravljajte do <a href=\"%s\" target=\"_blank\">this link</a> da biste dobili vaš API ključ"
1029
 
 
 
 
 
 
1030
  #: ../admin/social_sharing.php:1590
1031
  #: ../admin/like_buttons.php:660
1032
  #, fuzzy
@@ -1039,80 +1043,109 @@ msgid "Use this to delete short urls saved in database. Handy, if urls of your w
1039
  msgstr ""
1040
 
1041
  #: ../admin/social_sharing.php:1606
 
 
 
1042
  #: ../admin/social_sharing.php:1612
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1043
  #: ../admin/social_commenting.php:311
1044
  #: ../admin/like_buttons.php:676
1045
  #: ../admin/like_buttons.php:682
1046
  msgid "Language"
1047
  msgstr "Jezik"
1048
 
1049
- #: ../admin/social_sharing.php:1622
1050
  #, fuzzy, php-format
1051
  msgid "Enter the code of the language you want to use for like buttons. You can find the language codes at <a href=\"%s\" target=\"_blank\">this link</a>. Leave it empty for default language(English)"
1052
  msgstr "Unesite kod jezika koji želite da koristite za vraćanje brojača. Jezičke kodove možete naći na <a href=\"%s\" target=\"_blank\">this link</a>. Ostavite prazno za uobičajeni jezik (engleski)"
1053
 
1054
- #: ../admin/social_sharing.php:1631
1055
  #, fuzzy
1056
  msgid "Username in sharing"
1057
  msgstr "Korisničko ime na Twitter-u kod share-ovanja"
1058
 
1059
- #: ../admin/social_sharing.php:1637
1060
  msgid "Twitter username (without @)"
1061
  msgstr "Korisničko ime na Twitter-u (bez @)"
1062
 
1063
- #: ../admin/social_sharing.php:1647
1064
- #: ../admin/social_sharing.php:1666
1065
  msgid "Provided username will be appended after the content being shared as \"via @USERNAME\". Leave empty if you do not want any username in the content being shared."
1066
  msgstr "Dostavljeno korisničko ime će biti okačeno nakon što je sadržaj share-ovan kao \"via @USERNAME\". Ostavite prazno ukoliko ne želite nikakvo korisničko ime u sadržaju koji se share-uje."
1067
 
1068
- #: ../admin/social_sharing.php:1656
1069
  #, fuzzy
1070
  msgid "Buffer username (without @)"
1071
  msgstr "Korisničko ime na Twitter-u (bez @)"
1072
 
1073
- #: ../admin/social_sharing.php:1693
1074
  msgid "Facebook Sharing Troubleshooter"
1075
  msgstr "Sređivanje problema kod share-ovanja na Facebook-u"
1076
 
1077
- #: ../admin/social_sharing.php:1698
1078
  msgid "If Facebook sharing is not working fine, click at the following link and enter the problematic url (where Facebook sharing is not working properly) of your website in the text field:"
1079
  msgstr "Ukoliko share-ovanje na Facebook-u ne radi dobro, kliknite na link koji sledi i unesite problematični url (gde share-ovanje na Facebook-u ne radi kako treba) vašeg vebsajta u polje za tekst:"
1080
 
1081
- #: ../admin/social_sharing.php:1714
1082
  msgid "How can I show share counts of my website rather than of individual pages/posts?"
1083
  msgstr "Kako mogu da prikažem brojanje share-ovanja mog vebsajta pre nego individualne stranice/postove?"
1084
 
1085
- #: ../admin/social_sharing.php:1715
1086
  #, fuzzy
1087
  msgid "How can I disable sharing on particular page/post?"
1088
  msgstr "Kako mogu da onemogućim share-ovanje na određenoj stranici/postu?"
1089
 
1090
- #: ../admin/social_sharing.php:1716
1091
  msgid "How can I specify minimum sharing count for sharing networks?"
1092
  msgstr "Kako mogu da specifikujem minimalno brojanje share-ovanja za mreže za share-ovanje?"
1093
 
1094
- #: ../admin/social_sharing.php:1717
1095
  msgid "How to share specific page?"
1096
  msgstr ""
1097
 
1098
- #: ../admin/social_sharing.php:1718
1099
  msgid "How to integrate Google Analytics with sharing?"
1100
  msgstr ""
1101
 
1102
- #: ../admin/social_sharing.php:1719
1103
  msgid "How to customize the look of total share counts?"
1104
  msgstr ""
1105
 
1106
- #: ../admin/social_sharing.php:1720
1107
  #, fuzzy
1108
  msgid "How to customize the look of individual share counts?"
1109
  msgstr "Prikazati brojače share-ovanja:"
1110
 
1111
- #: ../admin/social_sharing.php:1721
1112
  #, fuzzy
1113
  msgid "How to show Whatsapp icon only on mobile devices?"
1114
  msgstr "Sakrite share-ovanje na mobilnim uređajima"
1115
 
 
 
 
 
1116
  #: ../admin/social_commenting.php:13
1117
  #, fuzzy
1118
  msgid "Enable Social Commenting"
@@ -1880,6 +1913,10 @@ msgstr "Ukoliko su omogućeni, vertikalni tasteri za “sviđa mi se” se neće
1880
  msgid "Use shortlinks already installed, for tweet button"
1881
  msgstr "Koristite kratke linkove koji su već instalirani za taster za tvitovanje"
1882
 
 
 
 
 
1883
  #: ../admin/like_buttons.php:600
1884
  msgid "Enable bit.ly url shortener for tweet button"
1885
  msgstr "Omogućite skraćenicu za bit.ly url za taster za tvitovanje"
@@ -1923,11 +1960,11 @@ msgstr "Kratki kod & vidžet"
1923
  msgid "Enable Social Login from \"Basic Configuration\" section at \"Super Socializer > Social Login\" page in admin panel"
1924
  msgstr "Uverite se da je prijava na društvene mreže omogućena sa \"Super Socializer > Social Login\" stranice."
1925
 
1926
- #: ../inc/social_sharing.php:652
1927
  msgid "Invalid request"
1928
  msgstr "Nevažeći zahtev"
1929
 
1930
- #: ../inc/social_sharing.php:659
1931
  msgid "Providers not selected"
1932
  msgstr "Dobavljači nisu selektovani"
1933
 
2
  msgstr ""
3
  "Project-Id-Version: Super Socializer\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2016-01-29 18:57+0530\n"
6
+ "PO-Revision-Date: 2016-01-29 18:57+0530\n"
7
  "Last-Translator: The Champ <lordofthechamps@gmail.com>\n"
8
  "Language-Team: yoonect.com\n"
9
  "Language: it\n"
80
  msgid "Large Avatar Url"
81
  msgstr "Ciljni Url"
82
 
83
+ #: ../super_socializer.php:846
84
  msgid "Email you entered is already registered or invalid"
85
  msgstr "Email koji ste uneli je već registrovan ili je nevažeći"
86
 
87
+ #: ../super_socializer.php:850
88
  msgid "Please enter a valid email address. You might be required to verify it"
89
  msgstr "Molimo unesite važeću email adresu. Možda će od vas biti traženo da je potvrdite"
90
 
180
  msgid "Floating Sharing Interface"
181
  msgstr "Interfejs za share-ovanje"
182
 
183
+ #: ../helper.php:879
184
  #, fuzzy
185
  msgid "Social Avatar"
186
  msgstr "Mali Avatar Url"
187
 
188
+ #: ../helper.php:882
189
  msgid "Do not fetch and update social avatar from my profile, next time I Social Login"
190
  msgstr ""
191
 
192
+ #: ../helper.php:883
193
  msgid "Update social avatar, next time I Social Login"
194
  msgstr ""
195
 
196
+ #: ../helper.php:886
197
  #, fuzzy
198
  msgid "Small Avatar"
199
  msgstr "Mali Avatar Url"
200
 
201
+ #: ../helper.php:890
202
  #, fuzzy
203
  msgid "Large Avatar"
204
  msgstr "Ciljni Url"
205
 
206
+ #: ../helper.php:894
207
  #: ../admin/general_options.php:89
208
+ #: ../admin/social_sharing.php:1783
209
  #: ../admin/social_commenting.php:464
210
  #: ../admin/social_login.php:778
211
  #: ../admin/like_buttons.php:764
356
  msgstr ""
357
 
358
  #: ../admin/social_sharing.php:39
359
+ #: ../admin/social_sharing.php:1731
360
+ #: ../admin/social_sharing.php:1733
361
  #: ../admin/social_login.php:37
362
  #: ../admin/social_login.php:764
363
  #: ../admin/like_buttons.php:40
370
  msgstr "Sređivanje problema"
371
 
372
  #: ../admin/social_sharing.php:41
373
+ #: ../admin/social_sharing.php:1762
374
  #: ../admin/social_commenting.php:36
375
  #: ../admin/social_commenting.php:452
376
  msgid "FAQ"
990
  msgstr "Koristite kratke linkove koji su već instalirani"
991
 
992
  #: ../admin/social_sharing.php:1522
993
+ msgid "Uses default short url permalinks without using any additional plugin"
994
+ msgstr ""
 
995
 
996
  #: ../admin/social_sharing.php:1530
997
  msgid "Enable bit.ly url shortener for sharing"
1026
  msgid "Login to your bit.ly account and navigate to <a href=\"%s\" target=\"_blank\">this link</a> to get your API key"
1027
  msgstr "Ulogujte se na vaš bit.ly nalog i upravljajte do <a href=\"%s\" target=\"_blank\">this link</a> da biste dobili vaš API ključ"
1028
 
1029
+ #: ../admin/social_sharing.php:1586
1030
+ #: ../admin/like_buttons.php:656
1031
+ msgid "Clear Bitly Cache"
1032
+ msgstr ""
1033
+
1034
  #: ../admin/social_sharing.php:1590
1035
  #: ../admin/like_buttons.php:660
1036
  #, fuzzy
1043
  msgstr ""
1044
 
1045
  #: ../admin/social_sharing.php:1606
1046
+ msgid "Share Count Cache"
1047
+ msgstr ""
1048
+
1049
  #: ../admin/social_sharing.php:1612
1050
+ msgid "Refresh Share Count cache every"
1051
+ msgstr ""
1052
+
1053
+ #: ../admin/social_sharing.php:1628
1054
+ msgid "Frequent cache refreshing results in slower loading of pages with share counts enabled"
1055
+ msgstr ""
1056
+
1057
+ #: ../admin/social_sharing.php:1636
1058
+ msgid "Clear Share Counts Cache"
1059
+ msgstr ""
1060
+
1061
+ #: ../admin/social_sharing.php:1640
1062
+ #, fuzzy
1063
+ msgid "Share Counts cache cleared successfully."
1064
+ msgstr "Nalog uspešno povezan"
1065
+
1066
+ #: ../admin/social_sharing.php:1647
1067
+ msgid "Use this to clear cached share counts"
1068
+ msgstr ""
1069
+
1070
+ #: ../admin/social_sharing.php:1656
1071
+ #: ../admin/social_sharing.php:1662
1072
  #: ../admin/social_commenting.php:311
1073
  #: ../admin/like_buttons.php:676
1074
  #: ../admin/like_buttons.php:682
1075
  msgid "Language"
1076
  msgstr "Jezik"
1077
 
1078
+ #: ../admin/social_sharing.php:1672
1079
  #, fuzzy, php-format
1080
  msgid "Enter the code of the language you want to use for like buttons. You can find the language codes at <a href=\"%s\" target=\"_blank\">this link</a>. Leave it empty for default language(English)"
1081
  msgstr "Unesite kod jezika koji želite da koristite za vraćanje brojača. Jezičke kodove možete naći na <a href=\"%s\" target=\"_blank\">this link</a>. Ostavite prazno za uobičajeni jezik (engleski)"
1082
 
1083
+ #: ../admin/social_sharing.php:1681
1084
  #, fuzzy
1085
  msgid "Username in sharing"
1086
  msgstr "Korisničko ime na Twitter-u kod share-ovanja"
1087
 
1088
+ #: ../admin/social_sharing.php:1687
1089
  msgid "Twitter username (without @)"
1090
  msgstr "Korisničko ime na Twitter-u (bez @)"
1091
 
1092
+ #: ../admin/social_sharing.php:1697
1093
+ #: ../admin/social_sharing.php:1716
1094
  msgid "Provided username will be appended after the content being shared as \"via @USERNAME\". Leave empty if you do not want any username in the content being shared."
1095
  msgstr "Dostavljeno korisničko ime će biti okačeno nakon što je sadržaj share-ovan kao \"via @USERNAME\". Ostavite prazno ukoliko ne želite nikakvo korisničko ime u sadržaju koji se share-uje."
1096
 
1097
+ #: ../admin/social_sharing.php:1706
1098
  #, fuzzy
1099
  msgid "Buffer username (without @)"
1100
  msgstr "Korisničko ime na Twitter-u (bez @)"
1101
 
1102
+ #: ../admin/social_sharing.php:1743
1103
  msgid "Facebook Sharing Troubleshooter"
1104
  msgstr "Sređivanje problema kod share-ovanja na Facebook-u"
1105
 
1106
+ #: ../admin/social_sharing.php:1748
1107
  msgid "If Facebook sharing is not working fine, click at the following link and enter the problematic url (where Facebook sharing is not working properly) of your website in the text field:"
1108
  msgstr "Ukoliko share-ovanje na Facebook-u ne radi dobro, kliknite na link koji sledi i unesite problematični url (gde share-ovanje na Facebook-u ne radi kako treba) vašeg vebsajta u polje za tekst:"
1109
 
1110
+ #: ../admin/social_sharing.php:1764
1111
  msgid "How can I show share counts of my website rather than of individual pages/posts?"
1112
  msgstr "Kako mogu da prikažem brojanje share-ovanja mog vebsajta pre nego individualne stranice/postove?"
1113
 
1114
+ #: ../admin/social_sharing.php:1765
1115
  #, fuzzy
1116
  msgid "How can I disable sharing on particular page/post?"
1117
  msgstr "Kako mogu da onemogućim share-ovanje na određenoj stranici/postu?"
1118
 
1119
+ #: ../admin/social_sharing.php:1766
1120
  msgid "How can I specify minimum sharing count for sharing networks?"
1121
  msgstr "Kako mogu da specifikujem minimalno brojanje share-ovanja za mreže za share-ovanje?"
1122
 
1123
+ #: ../admin/social_sharing.php:1767
1124
  msgid "How to share specific page?"
1125
  msgstr ""
1126
 
1127
+ #: ../admin/social_sharing.php:1768
1128
  msgid "How to integrate Google Analytics with sharing?"
1129
  msgstr ""
1130
 
1131
+ #: ../admin/social_sharing.php:1769
1132
  msgid "How to customize the look of total share counts?"
1133
  msgstr ""
1134
 
1135
+ #: ../admin/social_sharing.php:1770
1136
  #, fuzzy
1137
  msgid "How to customize the look of individual share counts?"
1138
  msgstr "Prikazati brojače share-ovanja:"
1139
 
1140
+ #: ../admin/social_sharing.php:1771
1141
  #, fuzzy
1142
  msgid "How to show Whatsapp icon only on mobile devices?"
1143
  msgstr "Sakrite share-ovanje na mobilnim uređajima"
1144
 
1145
+ #: ../admin/social_sharing.php:1772
1146
+ msgid "How to hide arrow after floating sharing bar?"
1147
+ msgstr ""
1148
+
1149
  #: ../admin/social_commenting.php:13
1150
  #, fuzzy
1151
  msgid "Enable Social Commenting"
1913
  msgid "Use shortlinks already installed, for tweet button"
1914
  msgstr "Koristite kratke linkove koji su već instalirani za taster za tvitovanje"
1915
 
1916
+ #: ../admin/like_buttons.php:592
1917
+ msgid "Allows for shortened URLs to be used when sharing content if a shortening plugin is installed"
1918
+ msgstr "Dozvoljava da se skraćeni URL-ovi koiste prilikom share-ovanja sadržaja ukoliko je instaliran plugin za skraćivanje"
1919
+
1920
  #: ../admin/like_buttons.php:600
1921
  msgid "Enable bit.ly url shortener for tweet button"
1922
  msgstr "Omogućite skraćenicu za bit.ly url za taster za tvitovanje"
1960
  msgid "Enable Social Login from \"Basic Configuration\" section at \"Super Socializer > Social Login\" page in admin panel"
1961
  msgstr "Uverite se da je prijava na društvene mreže omogućena sa \"Super Socializer > Social Login\" stranice."
1962
 
1963
+ #: ../inc/social_sharing.php:706
1964
  msgid "Invalid request"
1965
  msgstr "Nevažeći zahtev"
1966
 
1967
+ #: ../inc/social_sharing.php:713
1968
  msgid "Providers not selected"
1969
  msgstr "Dobavljači nisu selektovani"
1970
 
languages/Super-Socializer.pot CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Super Socializer\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2016-01-08 07:39+0530\n"
6
- "PO-Revision-Date: 2016-01-08 07:39+0530\n"
7
  "Last-Translator: The Champ <lordofthechamps@gmail.com>\n"
8
  "Language-Team: Heateor <hello@heateor.com>\n"
9
  "Language: \n"
@@ -76,11 +76,11 @@ msgstr ""
76
  msgid "Large Avatar Url"
77
  msgstr ""
78
 
79
- #: ../super_socializer.php:848
80
  msgid "Email you entered is already registered or invalid"
81
  msgstr ""
82
 
83
- #: ../super_socializer.php:852
84
  msgid "Please enter a valid email address. You might be required to verify it"
85
  msgstr ""
86
 
@@ -165,29 +165,29 @@ msgstr ""
165
  msgid "Floating Sharing Interface"
166
  msgstr ""
167
 
168
- #: ../helper.php:878
169
  msgid "Social Avatar"
170
  msgstr ""
171
 
172
- #: ../helper.php:881
173
  msgid "Do not fetch and update social avatar from my profile, next time I Social Login"
174
  msgstr ""
175
 
176
- #: ../helper.php:882
177
  msgid "Update social avatar, next time I Social Login"
178
  msgstr ""
179
 
180
- #: ../helper.php:885
181
  msgid "Small Avatar"
182
  msgstr ""
183
 
184
- #: ../helper.php:889
185
  msgid "Large Avatar"
186
  msgstr ""
187
 
188
- #: ../helper.php:893
189
  #: ../admin/general_options.php:89
190
- #: ../admin/social_sharing.php:1732
191
  #: ../admin/social_commenting.php:464
192
  #: ../admin/social_login.php:778
193
  #: ../admin/like_buttons.php:764
@@ -330,8 +330,8 @@ msgid "Miscellaneous"
330
  msgstr ""
331
 
332
  #: ../admin/social_sharing.php:39
333
- #: ../admin/social_sharing.php:1681
334
- #: ../admin/social_sharing.php:1683
335
  #: ../admin/social_login.php:37
336
  #: ../admin/social_login.php:764
337
  #: ../admin/like_buttons.php:40
@@ -344,7 +344,7 @@ msgid "Troubleshooter"
344
  msgstr ""
345
 
346
  #: ../admin/social_sharing.php:41
347
- #: ../admin/social_sharing.php:1712
348
  #: ../admin/social_commenting.php:36
349
  #: ../admin/social_commenting.php:452
350
  msgid "FAQ"
@@ -926,8 +926,7 @@ msgid "Use shortlinks already installed"
926
  msgstr ""
927
 
928
  #: ../admin/social_sharing.php:1522
929
- #: ../admin/like_buttons.php:592
930
- msgid "Allows for shortened URLs to be used when sharing content if a shortening plugin is installed"
931
  msgstr ""
932
 
933
  #: ../admin/social_sharing.php:1530
@@ -961,6 +960,11 @@ msgstr ""
961
  msgid "Login to your bit.ly account and navigate to <a href=\"%s\" target=\"_blank\">this link</a> to get your API key"
962
  msgstr ""
963
 
 
 
 
 
 
964
  #: ../admin/social_sharing.php:1590
965
  #: ../admin/like_buttons.php:660
966
  msgid "ShortUrl cache cleared successfully."
@@ -972,75 +976,107 @@ msgid "Use this to delete short urls saved in database. Handy, if urls of your w
972
  msgstr ""
973
 
974
  #: ../admin/social_sharing.php:1606
 
 
 
975
  #: ../admin/social_sharing.php:1612
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
976
  #: ../admin/social_commenting.php:311
977
  #: ../admin/like_buttons.php:676
978
  #: ../admin/like_buttons.php:682
979
  msgid "Language"
980
  msgstr ""
981
 
982
- #: ../admin/social_sharing.php:1622
983
  #, php-format
984
  msgid "Enter the code of the language you want to use for like buttons. You can find the language codes at <a href=\"%s\" target=\"_blank\">this link</a>. Leave it empty for default language(English)"
985
  msgstr ""
986
 
987
- #: ../admin/social_sharing.php:1631
988
  msgid "Username in sharing"
989
  msgstr ""
990
 
991
- #: ../admin/social_sharing.php:1637
992
  msgid "Twitter username (without @)"
993
  msgstr ""
994
 
995
- #: ../admin/social_sharing.php:1647
996
- #: ../admin/social_sharing.php:1666
997
  msgid "Provided username will be appended after the content being shared as \"via @USERNAME\". Leave empty if you do not want any username in the content being shared."
998
  msgstr ""
999
 
1000
- #: ../admin/social_sharing.php:1656
1001
  msgid "Buffer username (without @)"
1002
  msgstr ""
1003
 
1004
- #: ../admin/social_sharing.php:1693
1005
  msgid "Facebook Sharing Troubleshooter"
1006
  msgstr ""
1007
 
1008
- #: ../admin/social_sharing.php:1698
1009
  msgid "If Facebook sharing is not working fine, click at the following link and enter the problematic url (where Facebook sharing is not working properly) of your website in the text field:"
1010
  msgstr ""
1011
 
1012
- #: ../admin/social_sharing.php:1714
1013
  msgid "How can I show share counts of my website rather than of individual pages/posts?"
1014
  msgstr ""
1015
 
1016
- #: ../admin/social_sharing.php:1715
1017
  msgid "How can I disable sharing on particular page/post?"
1018
  msgstr ""
1019
 
1020
- #: ../admin/social_sharing.php:1716
1021
  msgid "How can I specify minimum sharing count for sharing networks?"
1022
  msgstr ""
1023
 
1024
- #: ../admin/social_sharing.php:1717
1025
  msgid "How to share specific page?"
1026
  msgstr ""
1027
 
1028
- #: ../admin/social_sharing.php:1718
1029
  msgid "How to integrate Google Analytics with sharing?"
1030
  msgstr ""
1031
 
1032
- #: ../admin/social_sharing.php:1719
1033
  msgid "How to customize the look of total share counts?"
1034
  msgstr ""
1035
 
1036
- #: ../admin/social_sharing.php:1720
1037
  msgid "How to customize the look of individual share counts?"
1038
  msgstr ""
1039
 
1040
- #: ../admin/social_sharing.php:1721
1041
  msgid "How to show Whatsapp icon only on mobile devices?"
1042
  msgstr ""
1043
 
 
 
 
 
 
 
 
 
1044
  #: ../admin/social_commenting.php:13
1045
  msgid "Enable Social Commenting"
1046
  msgstr ""
@@ -1754,6 +1790,10 @@ msgstr ""
1754
  msgid "Use shortlinks already installed, for tweet button"
1755
  msgstr ""
1756
 
 
 
 
 
1757
  #: ../admin/like_buttons.php:600
1758
  msgid "Enable bit.ly url shortener for tweet button"
1759
  msgstr ""
@@ -1791,11 +1831,11 @@ msgstr ""
1791
  msgid "Enable Social Login from \"Basic Configuration\" section at \"Super Socializer > Social Login\" page in admin panel"
1792
  msgstr ""
1793
 
1794
- #: ../inc/social_sharing.php:652
1795
  msgid "Invalid request"
1796
  msgstr ""
1797
 
1798
- #: ../inc/social_sharing.php:659
1799
  msgid "Providers not selected"
1800
  msgstr ""
1801
 
2
  msgstr ""
3
  "Project-Id-Version: Super Socializer\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2016-01-29 19:20+0530\n"
6
+ "PO-Revision-Date: 2016-01-29 19:20+0530\n"
7
  "Last-Translator: The Champ <lordofthechamps@gmail.com>\n"
8
  "Language-Team: Heateor <hello@heateor.com>\n"
9
  "Language: \n"
76
  msgid "Large Avatar Url"
77
  msgstr ""
78
 
79
+ #: ../super_socializer.php:846
80
  msgid "Email you entered is already registered or invalid"
81
  msgstr ""
82
 
83
+ #: ../super_socializer.php:850
84
  msgid "Please enter a valid email address. You might be required to verify it"
85
  msgstr ""
86
 
165
  msgid "Floating Sharing Interface"
166
  msgstr ""
167
 
168
+ #: ../helper.php:879
169
  msgid "Social Avatar"
170
  msgstr ""
171
 
172
+ #: ../helper.php:882
173
  msgid "Do not fetch and update social avatar from my profile, next time I Social Login"
174
  msgstr ""
175
 
176
+ #: ../helper.php:883
177
  msgid "Update social avatar, next time I Social Login"
178
  msgstr ""
179
 
180
+ #: ../helper.php:886
181
  msgid "Small Avatar"
182
  msgstr ""
183
 
184
+ #: ../helper.php:890
185
  msgid "Large Avatar"
186
  msgstr ""
187
 
188
+ #: ../helper.php:894
189
  #: ../admin/general_options.php:89
190
+ #: ../admin/social_sharing.php:1784
191
  #: ../admin/social_commenting.php:464
192
  #: ../admin/social_login.php:778
193
  #: ../admin/like_buttons.php:764
330
  msgstr ""
331
 
332
  #: ../admin/social_sharing.php:39
333
+ #: ../admin/social_sharing.php:1731
334
+ #: ../admin/social_sharing.php:1733
335
  #: ../admin/social_login.php:37
336
  #: ../admin/social_login.php:764
337
  #: ../admin/like_buttons.php:40
344
  msgstr ""
345
 
346
  #: ../admin/social_sharing.php:41
347
+ #: ../admin/social_sharing.php:1762
348
  #: ../admin/social_commenting.php:36
349
  #: ../admin/social_commenting.php:452
350
  msgid "FAQ"
926
  msgstr ""
927
 
928
  #: ../admin/social_sharing.php:1522
929
+ msgid "Uses default short url permalinks without using any additional plugin"
 
930
  msgstr ""
931
 
932
  #: ../admin/social_sharing.php:1530
960
  msgid "Login to your bit.ly account and navigate to <a href=\"%s\" target=\"_blank\">this link</a> to get your API key"
961
  msgstr ""
962
 
963
+ #: ../admin/social_sharing.php:1586
964
+ #: ../admin/like_buttons.php:656
965
+ msgid "Clear Bitly Cache"
966
+ msgstr ""
967
+
968
  #: ../admin/social_sharing.php:1590
969
  #: ../admin/like_buttons.php:660
970
  msgid "ShortUrl cache cleared successfully."
976
  msgstr ""
977
 
978
  #: ../admin/social_sharing.php:1606
979
+ msgid "Share Count Cache"
980
+ msgstr ""
981
+
982
  #: ../admin/social_sharing.php:1612
983
+ msgid "Refresh Share Count cache every"
984
+ msgstr ""
985
+
986
+ #: ../admin/social_sharing.php:1628
987
+ msgid "Frequent cache refreshing results in slower loading of pages with share counts enabled"
988
+ msgstr ""
989
+
990
+ #: ../admin/social_sharing.php:1636
991
+ msgid "Clear Share Counts Cache"
992
+ msgstr ""
993
+
994
+ #: ../admin/social_sharing.php:1640
995
+ msgid "Share Counts cache cleared successfully."
996
+ msgstr ""
997
+
998
+ #: ../admin/social_sharing.php:1647
999
+ msgid "Use this to clear cached share counts"
1000
+ msgstr ""
1001
+
1002
+ #: ../admin/social_sharing.php:1656
1003
+ #: ../admin/social_sharing.php:1662
1004
  #: ../admin/social_commenting.php:311
1005
  #: ../admin/like_buttons.php:676
1006
  #: ../admin/like_buttons.php:682
1007
  msgid "Language"
1008
  msgstr ""
1009
 
1010
+ #: ../admin/social_sharing.php:1672
1011
  #, php-format
1012
  msgid "Enter the code of the language you want to use for like buttons. You can find the language codes at <a href=\"%s\" target=\"_blank\">this link</a>. Leave it empty for default language(English)"
1013
  msgstr ""
1014
 
1015
+ #: ../admin/social_sharing.php:1681
1016
  msgid "Username in sharing"
1017
  msgstr ""
1018
 
1019
+ #: ../admin/social_sharing.php:1687
1020
  msgid "Twitter username (without @)"
1021
  msgstr ""
1022
 
1023
+ #: ../admin/social_sharing.php:1697
1024
+ #: ../admin/social_sharing.php:1716
1025
  msgid "Provided username will be appended after the content being shared as \"via @USERNAME\". Leave empty if you do not want any username in the content being shared."
1026
  msgstr ""
1027
 
1028
+ #: ../admin/social_sharing.php:1706
1029
  msgid "Buffer username (without @)"
1030
  msgstr ""
1031
 
1032
+ #: ../admin/social_sharing.php:1743
1033
  msgid "Facebook Sharing Troubleshooter"
1034
  msgstr ""
1035
 
1036
+ #: ../admin/social_sharing.php:1748
1037
  msgid "If Facebook sharing is not working fine, click at the following link and enter the problematic url (where Facebook sharing is not working properly) of your website in the text field:"
1038
  msgstr ""
1039
 
1040
+ #: ../admin/social_sharing.php:1764
1041
  msgid "How can I show share counts of my website rather than of individual pages/posts?"
1042
  msgstr ""
1043
 
1044
+ #: ../admin/social_sharing.php:1765
1045
  msgid "How can I disable sharing on particular page/post?"
1046
  msgstr ""
1047
 
1048
+ #: ../admin/social_sharing.php:1766
1049
  msgid "How can I specify minimum sharing count for sharing networks?"
1050
  msgstr ""
1051
 
1052
+ #: ../admin/social_sharing.php:1767
1053
  msgid "How to share specific page?"
1054
  msgstr ""
1055
 
1056
+ #: ../admin/social_sharing.php:1768
1057
  msgid "How to integrate Google Analytics with sharing?"
1058
  msgstr ""
1059
 
1060
+ #: ../admin/social_sharing.php:1769
1061
  msgid "How to customize the look of total share counts?"
1062
  msgstr ""
1063
 
1064
+ #: ../admin/social_sharing.php:1770
1065
  msgid "How to customize the look of individual share counts?"
1066
  msgstr ""
1067
 
1068
+ #: ../admin/social_sharing.php:1771
1069
  msgid "How to show Whatsapp icon only on mobile devices?"
1070
  msgstr ""
1071
 
1072
+ #: ../admin/social_sharing.php:1772
1073
+ msgid "How to hide arrow after floating sharing bar?"
1074
+ msgstr ""
1075
+
1076
+ #: ../admin/social_sharing.php:1773
1077
+ msgid "Why are Share Counts Not Updating?"
1078
+ msgstr ""
1079
+
1080
  #: ../admin/social_commenting.php:13
1081
  msgid "Enable Social Commenting"
1082
  msgstr ""
1790
  msgid "Use shortlinks already installed, for tweet button"
1791
  msgstr ""
1792
 
1793
+ #: ../admin/like_buttons.php:592
1794
+ msgid "Allows for shortened URLs to be used when sharing content if a shortening plugin is installed"
1795
+ msgstr ""
1796
+
1797
  #: ../admin/like_buttons.php:600
1798
  msgid "Enable bit.ly url shortener for tweet button"
1799
  msgstr ""
1831
  msgid "Enable Social Login from \"Basic Configuration\" section at \"Super Socializer > Social Login\" page in admin panel"
1832
  msgstr ""
1833
 
1834
+ #: ../inc/social_sharing.php:706
1835
  msgid "Invalid request"
1836
  msgstr ""
1837
 
1838
+ #: ../inc/social_sharing.php:713
1839
  msgid "Providers not selected"
1840
  msgstr ""
1841
 
readme.txt CHANGED
@@ -1,10 +1,10 @@
1
  === Super Socializer ===
2
- Contributors: Heateor, the_champ, Hungarian Translator: László Tavaszi http://kerekmese.hu, Serbo-Croatian Translator: Andrijana Nikolic http://webhostinggeeks.com/, Italian Translator: Maurizio https://freedomsgate.org, Spanish translator: Andrew Kurtis http://webhostinghub.com, Arabic Translator: http://www.ArabsSM.com, Russian Translator: Nicholas Lagunov http://tobehip.com.ua
3
  Donate link: https://www.heateor.com/donate?action=Super+Socializer
4
  Tags: the champ, champ, social login, social sharing, social commenting, social comments, social plugin, buddypress, bbpress, social share, comments, share post, user profile data, social analytics, online identity, social profile storage, id provider, single sign-on, social media tools, free social login, post to social networks, social authentication, social app, connect, capture social data, social sign-in, signin, sign up, signup, social connect, facebook login, twitter login, google login, google+ login, linkedin login, yahoo, vkontakte, instagram, reddit, digg, stumbleupon, delicious, float it, tumblr, social network
5
  Requires at least: 2.5.0
6
- Tested up to: 4.4.1
7
- Stable tag: 7.1
8
  License: GPLv2 or later
9
 
10
  The unique Social Plugin to let you integrate Social Login, Social Share and Social Comments at your website
@@ -198,6 +198,14 @@ Yes, we can help you with it. Just drop an email at support@heateor.com
198
  8. **Social Commenting**: Disqus Commenting selected
199
 
200
  == Changelog ==
 
 
 
 
 
 
 
 
201
  = 7.1 =
202
  * [Bugfix] Plugin functionality was breaking in a few cases when "Load all Javascript files in single file" option was enabled
203
  * [Improvement] Improved bit.ly short url cache resulting in reduced page load time
@@ -764,4 +772,12 @@ Yes, we can help you with it. Just drop an email at support@heateor.com
764
  * [Improvement] Improved bit.ly short url cache resulting in reduced page load time
765
  * [Improvement] Specified "the_champ_sharing_title" class name for the div containing title of sharing interface
766
  * [Improvement] Removed German translation due to poor feedback
767
- * [New] Option to clear bit.ly shorturl cache
 
 
 
 
 
 
 
 
1
  === Super Socializer ===
2
+ Contributors: Heateor, the_champ, Hungarian Translator: László Tavaszi http://kerekmese.hu, Serbo-Croatian Translator: Andrijana Nikolic http://webhostinggeeks.com/, Italian Translator: Maurizio https://freedomsgate.org, Spanish translator: Ignacio Iglesias http://trespies.com, Arabic Translator: http://www.ArabsSM.com, Russian Translator: Nicholas Lagunov http://tobehip.com.ua
3
  Donate link: https://www.heateor.com/donate?action=Super+Socializer
4
  Tags: the champ, champ, social login, social sharing, social commenting, social comments, social plugin, buddypress, bbpress, social share, comments, share post, user profile data, social analytics, online identity, social profile storage, id provider, single sign-on, social media tools, free social login, post to social networks, social authentication, social app, connect, capture social data, social sign-in, signin, sign up, signup, social connect, facebook login, twitter login, google login, google+ login, linkedin login, yahoo, vkontakte, instagram, reddit, digg, stumbleupon, delicious, float it, tumblr, social network
5
  Requires at least: 2.5.0
6
+ Tested up to: 4.4.2
7
+ Stable tag: 7.2
8
  License: GPLv2 or later
9
 
10
  The unique Social Plugin to let you integrate Social Login, Social Share and Social Comments at your website
198
  8. **Social Commenting**: Disqus Commenting selected
199
 
200
  == Changelog ==
201
+ = 7.2 =
202
+ * [Bugfix] Website title was appearing in homepage content in a few cases
203
+ * [Bugfix] Share counts were not appearing in a few cases
204
+ * [Improvement] Share counts are now being cached (using WordPress transients) resulting in faster page loading with share counts enabled
205
+ * [Improvement] Twitter logo background color updated to match Twitter's brand guidelines
206
+ * [New] Added option to clear share counts cache
207
+ * [New] Added option to specify time duration to refresh share count cache
208
+
209
  = 7.1 =
210
  * [Bugfix] Plugin functionality was breaking in a few cases when "Load all Javascript files in single file" option was enabled
211
  * [Improvement] Improved bit.ly short url cache resulting in reduced page load time
772
  * [Improvement] Improved bit.ly short url cache resulting in reduced page load time
773
  * [Improvement] Specified "the_champ_sharing_title" class name for the div containing title of sharing interface
774
  * [Improvement] Removed German translation due to poor feedback
775
+ * [New] Option to clear bit.ly shorturl cache
776
+
777
+ = 7.2 =
778
+ * [Bugfix] Website title was appearing in homepage content in a few cases
779
+ * [Bugfix] Share counts were not appearing in a few cases
780
+ * [Improvement] Share counts are now being cached (using WordPress transients) resulting in faster page loading with share counts enabled
781
+ * [Improvement] Twitter logo background color updated to match Twitter's brand guidelines
782
+ * [New] Added option to clear share counts cache
783
+ * [New] Added option to specify time duration to refresh share count cache
super_socializer.php CHANGED
@@ -3,15 +3,15 @@
3
  Plugin Name: Super Socializer
4
  Plugin URI: http://super-socializer-wordpress.heateor.com
5
  Description: A complete 360 degree solution to provide all the social features like Social Login, Social Commenting, Social Sharing and more.
6
- Version: 7.1
7
  Author: Team Heateor
8
- Author URI: http://www.heateor.com
9
  Text Domain: Super-Socializer
10
  Domain Path: /languages
11
  License: GPL2+
12
  */
13
  defined('ABSPATH') or die("Cheating........Uh!!");
14
- define('THE_CHAMP_SS_VERSION', '7.1');
15
 
16
  $theChampLoginOptions = get_option('the_champ_login');
17
  if(isset($theChampLoginOptions['providers']) && in_array('twitter', $theChampLoginOptions['providers'])){
@@ -531,7 +531,7 @@ function the_champ_frontend_scripts(){
531
  if(the_champ_social_sharing_enabled() || (the_champ_social_counter_enabled() && the_champ_vertical_social_counter_enabled())){
532
  global $theChampSharingOptions, $theChampCounterOptions, $post;
533
  ?>
534
- <script> var theChampSharingAjaxUrl = '<?php echo get_admin_url() ?>admin-ajax.php', theChampCloseIconPath = '<?php echo plugins_url('images/close.png', __FILE__) ?>', theChampPluginIconPath = '<?php echo plugins_url('images/logo.png', __FILE__) ?>', theChampHorizontalSharingCountEnable = <?php echo isset($theChampSharingOptions['enable']) && isset($theChampSharingOptions['hor_enable']) && ( isset($theChampSharingOptions['horizontal_counts']) || isset($theChampSharingOptions['horizontal_total_shares']) ) ? 1 : 0 ?>, theChampVerticalSharingCountEnable = <?php echo isset($theChampSharingOptions['enable']) && isset($theChampSharingOptions['vertical_enable']) && ( isset($theChampSharingOptions['vertical_counts']) || isset($theChampSharingOptions['vertical_total_shares']) ) ? 1 : 0 ?>, theChampSharingOffset = <?php echo (isset($theChampSharingOptions['alignment']) && $theChampSharingOptions['alignment'] != '' && isset($theChampSharingOptions[$theChampSharingOptions['alignment'].'_offset']) && $theChampSharingOptions[$theChampSharingOptions['alignment'].'_offset'] != '' ? $theChampSharingOptions[$theChampSharingOptions['alignment'].'_offset'] : 0) ?>, theChampCounterOffset = <?php echo (isset($theChampCounterOptions['alignment']) && $theChampCounterOptions['alignment'] != '' && isset($theChampCounterOptions[$theChampCounterOptions['alignment'].'_offset']) && $theChampCounterOptions[$theChampCounterOptions['alignment'].'_offset'] != '' ? $theChampCounterOptions[$theChampCounterOptions['alignment'].'_offset'] : 0) ?>;
535
  <?php
536
  if ( isset( $theChampSharingOptions['horizontal_counts'] ) && isset( $theChampSharingOptions['horizontal_counter_position'] ) ) {
537
  echo in_array( $theChampSharingOptions['horizontal_counter_position'], array( 'inner_left', 'inner_right' ) ) ? 'var theChampReduceHorizontalSvgWidth = true;' : '';
@@ -922,7 +922,7 @@ function the_champ_default_options(){
922
  'top_offset' => '100',
923
  'vertical_post' => '1',
924
  'vertical_page' => '1',
925
- 'vertical_excerpt' => '1',
926
  'vertical_more' => '1',
927
  'hide_mobile_sharing' => '1',
928
  'vertical_screen_width' => '783',
@@ -932,6 +932,8 @@ function the_champ_default_options(){
932
  'bottom_sharing_alignment' => 'left',
933
  'bitly_username' => '',
934
  'bitly_key' => '',
 
 
935
  'language' => get_locale(),
936
  'twitter_username' => '',
937
  'buffer_username' => '',
@@ -1106,6 +1108,10 @@ function the_champ_update_db_check(){
1106
  }
1107
  }
1108
 
 
 
 
 
1109
  update_option('the_champ_ss_version', THE_CHAMP_SS_VERSION);
1110
  }
1111
  }
3
  Plugin Name: Super Socializer
4
  Plugin URI: http://super-socializer-wordpress.heateor.com
5
  Description: A complete 360 degree solution to provide all the social features like Social Login, Social Commenting, Social Sharing and more.
6
+ Version: 7.2
7
  Author: Team Heateor
8
+ Author URI: https://www.heateor.com
9
  Text Domain: Super-Socializer
10
  Domain Path: /languages
11
  License: GPL2+
12
  */
13
  defined('ABSPATH') or die("Cheating........Uh!!");
14
+ define('THE_CHAMP_SS_VERSION', '7.2');
15
 
16
  $theChampLoginOptions = get_option('the_champ_login');
17
  if(isset($theChampLoginOptions['providers']) && in_array('twitter', $theChampLoginOptions['providers'])){
531
  if(the_champ_social_sharing_enabled() || (the_champ_social_counter_enabled() && the_champ_vertical_social_counter_enabled())){
532
  global $theChampSharingOptions, $theChampCounterOptions, $post;
533
  ?>
534
+ <script> var theChampSharingAjaxUrl = '<?php echo get_admin_url() ?>admin-ajax.php', heateorSsUrlCountFetched = [], theChampCloseIconPath = '<?php echo plugins_url('images/close.png', __FILE__) ?>', theChampPluginIconPath = '<?php echo plugins_url('images/logo.png', __FILE__) ?>', theChampHorizontalSharingCountEnable = <?php echo isset($theChampSharingOptions['enable']) && isset($theChampSharingOptions['hor_enable']) && ( isset($theChampSharingOptions['horizontal_counts']) || isset($theChampSharingOptions['horizontal_total_shares']) ) ? 1 : 0 ?>, theChampVerticalSharingCountEnable = <?php echo isset($theChampSharingOptions['enable']) && isset($theChampSharingOptions['vertical_enable']) && ( isset($theChampSharingOptions['vertical_counts']) || isset($theChampSharingOptions['vertical_total_shares']) ) ? 1 : 0 ?>, theChampSharingOffset = <?php echo (isset($theChampSharingOptions['alignment']) && $theChampSharingOptions['alignment'] != '' && isset($theChampSharingOptions[$theChampSharingOptions['alignment'].'_offset']) && $theChampSharingOptions[$theChampSharingOptions['alignment'].'_offset'] != '' ? $theChampSharingOptions[$theChampSharingOptions['alignment'].'_offset'] : 0) ?>, theChampCounterOffset = <?php echo (isset($theChampCounterOptions['alignment']) && $theChampCounterOptions['alignment'] != '' && isset($theChampCounterOptions[$theChampCounterOptions['alignment'].'_offset']) && $theChampCounterOptions[$theChampCounterOptions['alignment'].'_offset'] != '' ? $theChampCounterOptions[$theChampCounterOptions['alignment'].'_offset'] : 0) ?>;
535
  <?php
536
  if ( isset( $theChampSharingOptions['horizontal_counts'] ) && isset( $theChampSharingOptions['horizontal_counter_position'] ) ) {
537
  echo in_array( $theChampSharingOptions['horizontal_counter_position'], array( 'inner_left', 'inner_right' ) ) ? 'var theChampReduceHorizontalSvgWidth = true;' : '';
922
  'top_offset' => '100',
923
  'vertical_post' => '1',
924
  'vertical_page' => '1',
925
+ 'vertical_home' => '1',
926
  'vertical_more' => '1',
927
  'hide_mobile_sharing' => '1',
928
  'vertical_screen_width' => '783',
932
  'bottom_sharing_alignment' => 'left',
933
  'bitly_username' => '',
934
  'bitly_key' => '',
935
+ 'share_count_cache_refresh_count' => '10',
936
+ 'share_count_cache_refresh_unit' => 'minutes',
937
  'language' => get_locale(),
938
  'twitter_username' => '',
939
  'buffer_username' => '',
1108
  }
1109
  }
1110
 
1111
+ $theChampSharingOptions['share_count_cache_refresh_count'] = '10';
1112
+ $theChampSharingOptions['share_count_cache_refresh_unit'] = 'minutes';
1113
+ update_option('the_champ_sharing', $theChampSharingOptions);
1114
+
1115
  update_option('the_champ_ss_version', THE_CHAMP_SS_VERSION);
1116
  }
1117
  }
uninstall.php CHANGED
@@ -19,8 +19,9 @@ if(isset($theChampGeneralOptions['delete_options'])){
19
  foreach($theChampOptions as $option){
20
  delete_option( $option );
21
  }
22
- $wpdb->query("delete from $wpdb->usermeta where meta_key like 'thechamp%'");
23
- $wpdb->query("delete from $wpdb->postmeta where meta_key like '_the_champ%'");
 
24
  }else{
25
  // For Multisite
26
  $theChampBlogIds = $wpdb->get_col( "SELECT blog_id FROM $wpdb->blogs" );
19
  foreach($theChampOptions as $option){
20
  delete_option( $option );
21
  }
22
+ $wpdb->query("DELETE FROM $wpdb->usermeta WHERE meta_key LIKE 'thechamp%'");
23
+ $wpdb->query("DELETE FROM $wpdb->postmeta WHERE meta_key LIKE '_the_champ%'");
24
+ $wpdb->query("DELETE FROM $wpdb->options WHERE option_name LIKE '_transient_heateor_ss_%'");
25
  }else{
26
  // For Multisite
27
  $theChampBlogIds = $wpdb->get_col( "SELECT blog_id FROM $wpdb->blogs" );