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

Version Description

[17 August 2019] = * [Improvement] Removed the popup notification message being shown to website visitors when tracking protection enabled in browser * [Improvement] Email share is being triggered in the new browser tab instead of the same tab * [Bugfix] Fixed a PHP warning appearing at social sharing options page in some cases * [Bugfix] Social share icons were not working with standard and transitional AMP modes * [New] Added option to specify link to terms-conditions page in the GDPR opt-in text for social login

Download this release

Release Info

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

Code changes from version 7.12.31 to 7.12.32

admin/general_options.php CHANGED
@@ -69,45 +69,6 @@ defined('ABSPATH') or die("Cheating........Uh!!");
69
  </td>
70
  </tr>
71
 
72
- <tr>
73
- <th>
74
- <img id="the_champ_browser_msg_enable_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
75
- <label for="the_champ_browser_msg_enable"><?php _e("Show popup notification to users if their browsers block the plugin features", 'super-socializer'); ?></label>
76
- </th>
77
- <td>
78
- <input id="the_champ_browser_msg_enable" name="the_champ_general[browser_msg_enable]" onclick="if(this.checked){jQuery('#the_champ_browser_msg_options').css('display', 'table-row-group')}else{ jQuery('#the_champ_browser_msg_options').css('display', 'none') }" type="checkbox" <?php echo isset($theChampGeneralOptions['browser_msg_enable']) ? 'checked = "checked"' : '';?> value="1" />
79
- </td>
80
- </tr>
81
-
82
- <tr class="the_champ_help_content" id="the_champ_browser_msg_enable_help_cont">
83
- <td colspan="2">
84
- <div>
85
- <?php _e('If enabled, your website visitors will see a popup notification (only once) if their browsers block any of the features of the plugin so that they can change their browser settings to unblock these.', 'super-socializer') ?>
86
- <img src="<?php echo plugins_url('../images/snaps/general_browser_notification.png', __FILE__); ?>" width="760" />
87
- </div>
88
- </td>
89
- </tr>
90
-
91
- <tbody id="the_champ_browser_msg_options" <?php echo !isset($theChampGeneralOptions['browser_msg_enable']) ? 'style = "display: none"' : '';?> >
92
- <tr>
93
- <th>
94
- <img id="the_champ_browser_msg_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
95
- <label for="the_champ_browser_msg"><?php _e("Message to show in popup notification", 'super-socializer'); ?></label>
96
- </th>
97
- <td>
98
- <textarea rows="7" cols="63" id="the_champ_browser_msg" name="the_champ_general[browser_msg]"><?php echo isset( $theChampGeneralOptions['browser_msg'] ) ? $theChampGeneralOptions['browser_msg'] : '' ?></textarea>
99
- </td>
100
- </tr>
101
-
102
- <tr class="the_champ_help_content" id="the_champ_browser_msg_help_cont">
103
- <td colspan="2">
104
- <div>
105
- <?php _e('Use {support_url} placeholder to show support documentation url in message', 'super-socializer') ?>
106
- </div>
107
- </td>
108
- </tr>
109
- </tbody>
110
-
111
  <tr>
112
  <th>
113
  <img id="the_champ_custom_css_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
69
  </td>
70
  </tr>
71
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
72
  <tr>
73
  <th>
74
  <img id="the_champ_custom_css_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
admin/social_login.php CHANGED
@@ -1129,6 +1129,42 @@
1129
  </td>
1130
  </tr>
1131
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1132
  <tr>
1133
  <th>
1134
  <img id="the_champ_privacy_ppu_placeholder_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
1129
  </td>
1130
  </tr>
1131
 
1132
+ <tr>
1133
+ <th>
1134
+ <img id="the_champ_tc_placeholder_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
1135
+ <label><?php _e("Text to link to Terms-Conditions page", 'super-socializer'); ?></label>
1136
+ </th>
1137
+ <td>
1138
+ <input id="the_champ_tc_placeholder" name="the_champ_login[tc_placeholder]" type="text" value="<?php echo $theChampLoginOptions['tc_placeholder'] ?>" />
1139
+ </td>
1140
+ </tr>
1141
+
1142
+ <tr class="the_champ_help_content" id="the_champ_tc_placeholder_help_cont">
1143
+ <td colspan="2">
1144
+ <div>
1145
+ <?php _e('Word(s) in the opt-in text to be linked to terms-conditions page', 'super-socializer') ?>
1146
+ </div>
1147
+ </td>
1148
+ </tr>
1149
+
1150
+ <tr>
1151
+ <th>
1152
+ <img id="the_champ_tc_url_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
1153
+ <label><?php _e("Terms-Conditions Url", 'super-socializer'); ?></label>
1154
+ </th>
1155
+ <td>
1156
+ <input id="the_champ_tc_url" name="the_champ_login[tc_url]" type="text" value="<?php echo $theChampLoginOptions['tc_url'] ?>" />
1157
+ </td>
1158
+ </tr>
1159
+
1160
+ <tr class="the_champ_help_content" id="the_champ_tc_url_help_cont">
1161
+ <td colspan="2">
1162
+ <div>
1163
+ <?php _e('Url of the terms-conditions page of your website', 'super-socializer') ?>
1164
+ </div>
1165
+ </td>
1166
+ </tr>
1167
+
1168
  <tr>
1169
  <th>
1170
  <img id="the_champ_privacy_ppu_placeholder_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
admin/social_sharing.php CHANGED
@@ -37,7 +37,14 @@
37
  <a href="https://www.heateor.com/recover-social-share-counts" target="_blank"><input type="button" value="<?php _e('Recover Social Share Counts Lost After Moving to SSL/Https', 'super-socializer') ?> >>>" class="ss_demo" style="width:55%" /></a>
38
  </div>
39
  <div style="clear:both"></div>
40
-
 
 
 
 
 
 
 
41
  <div id="setting-error-settings_updated" class="error settings-error notice is-dismissible below-h2" <?php echo !(isset($theChampLoginOptions['enable']) && $theChampLoginOptions['fb_key'] && $theChampLoginOptions['fb_secret'] && in_array('facebook', $theChampLoginOptions['providers'])) && (((in_array('facebook', $theChampSharingOptions['vertical_re_providers']) && (isset($theChampSharingOptions['vertical_counts']) || isset($theChampSharingOptions['vertical_total_shares']))) || (in_array('facebook', $theChampSharingOptions['horizontal_re_providers']) && (isset($theChampSharingOptions['horizontal_counts']) || isset($theChampSharingOptions['horizontal_total_shares'])))) && (!$theChampSharingOptions['fb_key'] || !$theChampSharingOptions['fb_secret'])) ? '' : 'style = "display: none"';?>>
42
  <?php echo '<p><strong>' . __('Save Facebook App Id and Secret in the "Miscellaneous" section for Facebook share count to work', 'super-socializer') . '</strong></p><button type="button" class="notice-dismiss"><span class="screen-reader-text">' . __('Dismiss this notice', 'super-socializer') . '</span></button>'; ?>
43
  </div>
37
  <a href="https://www.heateor.com/recover-social-share-counts" target="_blank"><input type="button" value="<?php _e('Recover Social Share Counts Lost After Moving to SSL/Https', 'super-socializer') ?> >>>" class="ss_demo" style="width:55%" /></a>
38
  </div>
39
  <div style="clear:both"></div>
40
+ <?php
41
+ if(!isset($theChampSharingOptions['horizontal_re_providers'])){
42
+ $theChampSharingOptions['horizontal_re_providers'] = array();
43
+ }
44
+ if(!isset($theChampSharingOptions['vertical_re_providers'])){
45
+ $theChampSharingOptions['vertical_re_providers'] = array();
46
+ }
47
+ ?>
48
  <div id="setting-error-settings_updated" class="error settings-error notice is-dismissible below-h2" <?php echo !(isset($theChampLoginOptions['enable']) && $theChampLoginOptions['fb_key'] && $theChampLoginOptions['fb_secret'] && in_array('facebook', $theChampLoginOptions['providers'])) && (((in_array('facebook', $theChampSharingOptions['vertical_re_providers']) && (isset($theChampSharingOptions['vertical_counts']) || isset($theChampSharingOptions['vertical_total_shares']))) || (in_array('facebook', $theChampSharingOptions['horizontal_re_providers']) && (isset($theChampSharingOptions['horizontal_counts']) || isset($theChampSharingOptions['horizontal_total_shares'])))) && (!$theChampSharingOptions['fb_key'] || !$theChampSharingOptions['fb_secret'])) ? '' : 'style = "display: none"';?>>
49
  <?php echo '<p><strong>' . __('Save Facebook App Id and Secret in the "Miscellaneous" section for Facebook share count to work', 'super-socializer') . '</strong></p><button type="button" class="notice-dismiss"><span class="screen-reader-text">' . __('Dismiss this notice', 'super-socializer') . '</span></button>'; ?>
50
  </div>
css/front.css CHANGED
@@ -1 +1 @@
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,#heateor_ss_browser_popup_bg,#heateor_ss_lj_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:auto;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,ul.heateor_ss_follow_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:none;float:left;padding:0!important;margin:0!important;border:0!important;width:auto!important;clear:none!important;list-style-type:none!important}.theChampLoginSvg{-webkit-box-sizing:content-box;-moz-box-sizing:border-box;box-sizing:content-box;width:100%;height:100%;background-position:center!important}.theChampTwitchLoginSvg{background:url(data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20300%20300%22%3E%3Cpath%20d%3D%22M%2055%2030%20h%20200%20v%20160%20l%20-40%2040%20h%20-50%20l%20-40%2040%20v%20-40%20l%2030%20-30%20h%2060%20l%2020%20-20%20v%20-132%20h%20-165%20v%20152%20h%2055%20v%2070%20h%20-20%20v%20-40%20h%20-65%20v%20-160%20z%20M%20130%2090%20v%2060%20h%2015%20v%20-60%20z%20M%20185%2090%20v%2060%20h%2015%20v%20-60%20z%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E) left no-repeat}.theChampXingLoginSvg{background-size:109%!important;background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAzMCAzMCI+DQo8cGF0aCBkPSJNIDYgOSBoIDUgbCA0IDQgbCAtNSA3IGggLTUgbCA1IC03IHogbSAxNSAtNCBoIDUgbCAtOSAxMyBsIDQgOCBoIC01IGwgLTQgLTggeiIgZmlsbD0iI2ZmZiI+PC9wYXRoPg0KPC9zdmc+) left no-repeat}.theChampGoogleLoginSvg{background-size:111%!important;background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%22-8%20-8%2064%2064%22%3E%3Cdefs%3E%3Cpath%20id%3D%22a%22%20d%3D%22M44.5%2020H24v8.5h11.8C34.7%2033.9%2030.1%2037%2024%2037c-7.2%200-13-5.8-13-13s5.8-13%2013-13c3.1%200%205.9%201.1%208.1%202.9l6.4-6.4C34.6%204.1%2029.6%202%2024%202%2011.8%202%202%2011.8%202%2024s9.8%2022%2022%2022c11%200%2021-8%2021-22%200-1.3-.2-2.7-.5-4z%22%2F%3E%3C%2Fdefs%3E%3CclipPath%20id%3D%22b%22%3E%3Cuse%20xlink%3Ahref%3D%22%23a%22%20overflow%3D%22visible%22%2F%3E%3C%2FclipPath%3E%3Cpath%20clip-path%3D%22url(%23b)%22%20fill%3D%22%23FBBC05%22%20d%3D%22M0%2037V11l17%2013z%22%2F%3E%3Cpath%20clip-path%3D%22url(%23b)%22%20fill%3D%22%23EA4335%22%20d%3D%22M0%2011l17%2013%207-6.1L48%2014V0H0z%22%2F%3E%3Cpath%20clip-path%3D%22url(%23b)%22%20fill%3D%22%2334A853%22%20d%3D%22M0%2037l30-23%207.9%201L48%200v48H0z%22%2F%3E%3Cpath%20clip-path%3D%22url(%23b)%22%20fill%3D%22%234285F4%22%20d%3D%22M48%2048L17%2024l-4-3%2035-10z%22%2F%3E%3C%2Fsvg%3E') left no-repeat}.theChampLinkedinLoginSvg{background-size:121%!important;background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-1%200%2033%2035%22%3E%3Cpath%20d%3D%22M6.227%2012.61h4.19v13.48h-4.19V12.61zm2.095-6.7a2.43%202.43%200%200%201%200%204.86c-1.344%200-2.428-1.09-2.428-2.43s1.084-2.43%202.428-2.43m4.72%206.7h4.02v1.84h.058c.56-1.058%201.927-2.176%203.965-2.176%204.238%200%205.02%202.792%205.02%206.42v7.395h-4.183v-6.56c0-1.564-.03-3.574-2.178-3.574-2.18%200-2.514%201.7-2.514%203.46v6.668h-4.187V12.61z%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E') left no-repeat}.theChampTwitterLoginSvg{background-size:120%!important;background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-2%20-2%2035%2035%22%3E%0A%3Cpath%20d%3D%22M28%208.557a9.913%209.913%200%200%201-2.828.775%204.93%204.93%200%200%200%202.166-2.725%209.738%209.738%200%200%201-3.13%201.194%204.92%204.92%200%200%200-3.593-1.55%204.924%204.924%200%200%200-4.794%206.049c-4.09-.21-7.72-2.17-10.15-5.15a4.942%204.942%200%200%200-.665%202.477c0%201.71.87%203.214%202.19%204.1a4.968%204.968%200%200%201-2.23-.616v.06c0%202.39%201.7%204.38%203.952%204.83-.414.115-.85.174-1.297.174-.318%200-.626-.03-.928-.086a4.935%204.935%200%200%200%204.6%203.42%209.893%209.893%200%200%201-6.114%202.107c-.398%200-.79-.023-1.175-.068a13.953%2013.953%200%200%200%207.55%202.213c9.056%200%2014.01-7.507%2014.01-14.013%200-.213-.005-.426-.015-.637.96-.695%201.795-1.56%202.455-2.55z%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%0A%3C%2Fsvg%3E') left no-repeat}.theChampVkontakteLoginSvg{background-size:114%!important;background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%221%202%2030%2028%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20fill%3D%22%23fff%22%20d%3D%22M15.764%2022.223h1.315s.394-.044.6-.262c.184-.2.18-.574.18-.574s-.03-1.764.79-2.023c.81-.255%201.844%201.705%202.942%202.46.832.57%201.464.445%201.464.445l2.936-.04s1.538-.097.81-1.304c-.06-.1-.426-.894-2.186-2.526-1.843-1.71-1.594-1.434.624-4.39%201.353-1.804%201.893-2.902%201.724-3.374-.16-.45-1.153-.33-1.153-.33l-3.306.02s-.247-.034-.428.074c-.178.108-.293.356-.293.356s-.522%201.394-1.223%202.58c-1.47%202.5-2.06%202.633-2.3%202.476-.563-.36-.42-1.454-.42-2.23%200-2.423.365-3.435-.72-3.696-.357-.085-.623-.143-1.544-.15-1.182-.014-2.18.003-2.743.28-.378.185-.667.595-.49.62.218.027.713.13.975.49.34.46.33%201.496.33%201.496s.193%202.852-.46%203.206c-.442.245-1.056-.252-2.37-2.52-.67-1.163-1.18-2.446-1.18-2.446s-.1-.24-.273-.37c-.212-.155-.506-.204-.506-.204l-3.145.02s-.473.015-.647.22c-.154.183-.01.56-.01.56s2.46%205.757%205.245%208.657c2.553%202.66%205.454%202.485%205.454%202.485z%22%2F%3E%3C%2Fsvg%3E') left no-repeat}.theChampFacebookLoginSvg{background-size:116%!important;padding-left:8px;padding-top:5px;background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-3%20-3%2038%2038%22%3E%3Cpath%20d%3D%22M17.78%2027.5V17.008h3.522l.527-4.09h-4.05v-2.61c0-1.182.33-1.99%202.023-1.99h2.166V4.66c-.375-.05-1.66-.16-3.155-.16-3.123%200-5.26%201.905-5.26%205.405v3.016h-3.53v4.09h3.53V27.5h4.223z%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') left no-repeat}.theChampLiveJournalLoginSvg{background-size:111%!important;background:url(data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cg%20fill%3D%22%2300B0EA%22%3E%3Cpath%20d%3D%22M16.76%205.53c-1.586%200-3.094.33-4.462.922l-2.47-2.465h-.005A11.268%2011.268%200%200%200%204%209.843l2.472%202.47a11.283%2011.283%200%200%201%205.823-5.86h.004l9.14%209.128h-.006a11.304%2011.304%200%200%200-5.823%205.86l-9.14-9.13c-.597%201.372-.952%202.865-.952%204.457%200%206.21%205.03%2011.24%2011.24%2011.24S28%2022.98%2028%2016.77c0-6.206-5.033-11.24-11.24-11.24zm1.95%2016.573a6.561%206.561%200%200%201%203.38-3.403l.887%204.285-4.268-.882z%22%2F%3E%3Cpath%20d%3D%22M22.092%2018.702l-.653-3.118h-.007a11.288%2011.288%200%200%200-5.822%205.858l3.097.66a6.58%206.58%200%200%201%203.38-3.4%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E) left no-repeat}.theChampSteamLoginSvg{background:url(data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20300%20300%22%3E%3Ccircle%20cx%3D%2245%22%20cy%3D%22130%22%20r%3D%2225%22%20stroke%3D%22%23fff%22%20stroke-width%3D%227%22%20fill%3D%22none%22%3E%3C%2Fcircle%3E%3Ccircle%20cx%3D%22155%22%20cy%3D%22198%22%20r%3D%2225%22%20stroke%3D%22%23fff%22%20stroke-width%3D%227%22%20fill%3D%22none%22%3E%3C%2Fcircle%3E%3Ccircle%20cx%3D%22245%22%20cy%3D%22110%22%20r%3D%2235%22%20stroke%3D%22%23fff%22%20stroke-width%3D%2210%22%20fill%3D%22none%22%3E%3C%2Fcircle%3E%3Ccircle%20cx%3D%22245%22%20cy%3D%22110%22%20r%3D%2215%22%20stroke%3D%22%23fff%22%20stroke-width%3D%2210%22%20fill%3D%22%23fff%22%3E%3C%2Fcircle%3E%3Cpath%20d%3D%22M%20160%20170%20l%2045%20-64%20l%2040%2044%20l%20-62%2044%22%20stroke%3D%22%23fff%22%20stroke-width%3D%221%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3Cpath%20d%3D%22M%2045%20130%20l%20110%2068%22%20stroke%3D%22%23fff%22%20stroke-width%3D%2230%22%20fill%3D%22%23fff%22%20stroke-linecap%3D%22round%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E) left no-repeat}.theChampInstagramLoginSvg{background-size:105%!important;background:url(data:image/svg+xml;charset=utf8,%3Csvg%20enable-background%3D%22new%200%200%20128%20128%22%20id%3D%22Layer_1%22%20version%3D%221.1%22%20viewBox%3D%220%200%20128%20128%22%20xml%3Aspace%3D%22preserve%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E%3Cg%3E%3Cg%3E%3Cpath%20d%3D%22M86%2C112H42c-14.336%2C0-26-11.663-26-26V42c0-14.337%2C11.664-26%2C26-26h44c14.337%2C0%2C26%2C11.663%2C26%2C26v44%20%20%20%20C112%2C100.337%2C100.337%2C112%2C86%2C112z%20M42%2C24c-9.925%2C0-18%2C8.074-18%2C18v44c0%2C9.925%2C8.075%2C18%2C18%2C18h44c9.926%2C0%2C18-8.075%2C18-18V42%20%20%20%20c0-9.926-8.074-18-18-18H42z%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3Cg%3E%3Cpath%20d%3D%22M64%2C88c-13.234%2C0-24-10.767-24-24c0-13.234%2C10.766-24%2C24-24s24%2C10.766%2C24%2C24C88%2C77.233%2C77.234%2C88%2C64%2C88z%20M64%2C48c-8.822%2C0-16%2C7.178-16%2C16s7.178%2C16%2C16%2C16c8.822%2C0%2C16-7.178%2C16-16S72.822%2C48%2C64%2C48z%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3Cg%3E%3Ccircle%20cx%3D%2289.5%22%20cy%3D%2238.5%22%20fill%3D%22%23fff%22%20r%3D%225.5%22%3E%3C%2Fcircle%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E) 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}.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,ul.heateor_ss_follow_ul{margin:1px 0!important}#heateor_ss_browser_msg_close img,#heateor_ss_lj_popup_close img,#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,ul.heateor_ss_follow_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;word-wrap:normal!important}ul.heateor_ss_follow_ul li{width:auto;}ul.heateor_ss_follow_ul li,ul.the_champ_sharing_ul li{float:left!important;margin:0!important;padding:0!important;list-style:none!important;border:none!important;clear:none;}.theChampSharing{display:block;cursor:pointer;margin:2px}ul.the_champ_login_ul li:before,ul.the_champ_sharing_ul li:before,ul.heateor_ss_follow_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);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_share .fb-share-button span,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}div.the_champ_horizontal_sharing li{width:auto}div.the_champ_horizontal_sharing li.the_champ_facebook_share, div.the_champ_horizontal_counter li.the_champ_facebook_share{width:76px}div.the_champ_horizontal_sharing li.the_champ_facebook_like, div.the_champ_horizontal_counter li.the_champ_facebook_like{width:56px}div.the_champ_horizontal_sharing li.the_champ_facebook_recommend, div.the_champ_horizontal_counter li.the_champ_facebook_recommend{width:111px}div.the_champ_horizontal_sharing li.the_champ_twitter_tweet, div.the_champ_horizontal_counter li.the_champ_twitter_tweet{width:65px}div.the_champ_horizontal_counter li.the_champ_linkedin_share span, div.the_champ_horizontal_sharing li.the_champ_linkedin_share span{vertical-align:text-top!important}div.the_champ_horizontal_sharing li.the_champ_buffer_share{width:89px}div.the_champ_horizontal_sharing li.the_champ_linkedin_share, div.the_champ_horizontal_counter li.the_champ_linkedin_share{width:67px}div.the_champ_horizontal_sharing li.the_champ_buffer, div.the_champ_horizontal_counter li.the_champ_buffer{width:81px;}div.the_champ_horizontal_sharing li.the_champ_reddit, div.the_champ_horizontal_counter li.the_champ_reddit{width:124px}div.the_champ_horizontal_sharing li.the_champ_yummly, div.the_champ_horizontal_counter li.the_champ_yummly{width:61px}div.the_champ_horizontal_sharing li.the_champ_pinterest_pin, div.the_champ_horizontal_counter li.the_champ_pinterest_pin{width:58px}div.the_champ_horizontal_counter li.the_champ_pinterest_pin{line-height:1px}div.the_champ_horizontal_sharing li.the_champ_xing, div.the_champ_horizontal_counter li.the_champ_xing{width:67px}.the_champ_counter_container li{height:21px}input#user_login,input#user_pass{height:auto!important}.theChampHorizontalSharingButton,.theChampVerticalSharingButton{display:block}.theChampInstagramBackground{background-color:#527FA4}.theChampYummlyBackground{background-color:#E16120}.theChampBufferBackground{background-color:#000}.theChampFacebookBackground{background-color:#4267B2}.theChampSteamBackground{background-color:#393939}.theChampLiveJournalBackground{background-color:#EDEDED}.theChampDiggBackground{background-color:#006094}.theChampEmailBackground{background-color:#649A3F}.theChampFloatitBackground{background-color:#53BEEE}.theChampGoogleBackground{background-color:white;box-sizing:border-box;border:1px #4184F3 solid}.theChampTwitchBackground{background-color:#6441A5}.theChampLinkedinBackground{background-color:#0077B5}.theChampMoreBackground{background-color:#EE8E2D}.theChampPinterestBackground{background-color:#CC2329}.theChampPrintBackground{background-color:#FD6500}.theChampRedditBackground{background-color:#FF5700}.theChampStockTwitsBackground{background-color: #40576F}.theChampTumblrBackground{background-color:#29435D}.theChampTwitterBackground{background-color:#55acee}.theChampVkontakteBackground{background-color:#5E84AC}.theChampXingBackground{background-color:#00797D}.theChampWhatsappBackground{background-color:#55EB4C}.theChampMeWeBackground{background-color:#007da1}.theChampMixBackground{background-color:#ff8226}.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;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%220%200%2030%2030%22%3E%3Cpath%20stroke%3D%22%23fff%22%20d%3D%22M%2010.5%2010%20q%204%20-2%202.5%201%20l%20-1%204%20q%200%202%205%200%20l%201%20-6.5%20m%20-1%206.5%20l%20-1%204%20c%20-3%206%20-6%20-1%200%20-1%20q%201%20-1%205%201%22%20stroke-width%3D%222%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.theChampBufferSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-4%20-4%2038%2039%22%3E%3Cpath%20stroke%3D%22%23fff%22%20d%3D%22M%2015%206%20l%20-10%205%20l%2010%205%20l%2010%20-5%20z%22%20stroke-width%3D%220%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3Cpath%20stroke%3D%22%23fff%22%20d%3D%22M%205.5%2014.5%20l%209.5%205%20l%209.5%20-5%20m%20-19%204%20l%209.5%205%20l%209.5%20-5%22%20stroke-width%3D%222%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.theChampFacebookSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-5%20-5%2042%2042%22%3E%3Cpath%20d%3D%22M17.78%2027.5V17.008h3.522l.527-4.09h-4.05v-2.61c0-1.182.33-1.99%202.023-1.99h2.166V4.66c-.375-.05-1.66-.16-3.155-.16-3.123%200-5.26%201.905-5.26%205.405v3.016h-3.53v4.09h3.53V27.5h4.223z%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.theChampDiggSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-5%20-5%2049%2049%22%3E%3Cpath%20d%3D%22M%206%2020%20h%2010%20c%200%20-14%20-9%20-14%20-9%200%20m%205%200%20v%207%20m%20-1%200%20v%20-7%20m%204%20-7%20h%204.5%20v%20-5%20h%208%20v%208%20h%20-8%20v%20-3%20m%208%200%20h%204%20v%205.5%20h%20-3%20v%2012%20h%20-4%20v%20-8%20m%200%208%20h%20-6.5%20v%20-12%20h%20-2%22%20stroke-width%3D%222%22%20stroke%3D%22%23fff%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3Cellipse%20cx%3D%2211.5%22%20cy%3D%2228.5%22%20rx%3D%224%22%20ry%3D%222%22%20style%3D%22fill%3A%23fff%3B%22%3E%3C%2Fellipse%3E%3C%2Fsvg%3E') no-repeat center center}.theChampEmailSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-4%20-4%2043%2043%22%3E%3Cpath%20d%3D%22M%205.5%2011%20h%2023%20v%201%20l%20-11%206%20l%20-11%20-6%20v%20-1%20m%200%202%20l%2011%206%20l%2011%20-6%20v%2011%20h%20-22%20v%20-11%22%20stroke-width%3D%221%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.theChampFloatitSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-3%20-3%2038%2038%22%3E%3Cg%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M16%203C8.814%203%203%208.814%203%2016s5.814%2013%2013%2013%2013-5.814%2013-13S23.187%203%2016%203zm0%2025.152c-6.712%200-12.153-5.44-12.153-12.152C3.847%209.288%209.287%203.848%2016%203.848S28.152%209.288%2028.152%2016c0%206.712-5.44%2012.152-12.152%2012.152z%22%2F%3E%3Cpath%20d%3D%22M22.406%2016A6.402%206.402%200%200%200%2016%209.593%206.402%206.402%200%200%200%209.593%2016%206.4%206.4%200%200%200%2016%2022.406%206.4%206.4%200%200%200%2022.406%2016zM16%2021.39A5.392%205.392%200%200%201%2010.61%2016%205.403%205.403%200%200%201%2016%2010.61%205.393%205.393%200%200%201%2021.39%2016%205.382%205.382%200%200%201%2016%2021.39z%22%2F%3E%3Cpath%20d%3D%22M13.763%209.187V4.864c-4.475.9-8%204.424-8.898%208.898h4.322a7.226%207.226%200%200%201%204.576-4.575zm9.05%204.576h4.32c-.896-4.475-4.422-8-8.896-8.898v4.322a7.224%207.224%200%200%201%204.575%204.576zm-4.576%209.052v4.322c4.475-.9%208-4.424%208.897-8.9h-4.322a7.232%207.232%200%200%201-4.575%204.578zm-9.05-4.578H4.863c.898%204.475%204.424%208%208.898%208.9v-4.323a7.233%207.233%200%200%201-4.574-4.577z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.theChampGoogleSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAxMDAgMTAwIj48cGF0aCBkPSJNIDUxLjIyODc3NjYwNTc1NzA3IDM4LjE5MDgwNzcwMjE5NzA1IEEgMTcgMTcgMCAxIDAgNTYgNTAuMDAwMDAwMDAwMDAwMDEgaCAtMTciIHN0cm9rZT0iI2ZmZiIgc3Ryb2tlLXdpZHRoPSI4IiBmaWxsPSJub25lIj48L3BhdGg+PHBhdGggZD0iTSA2NSA0OSBoIDE4IG0gLTkgLTkgdiAxOCIgc3Ryb2tlPSIjZmZmIiBzdHJva2Utd2lkdGg9IjUiIGZpbGw9Im5vbmUiPjwvcGF0aD48L3N2Zz4=) left no-repeat}.theChampLinkedinSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-2%20-2%2035%2039%22%3E%3Cpath%20d%3D%22M6.227%2012.61h4.19v13.48h-4.19V12.61zm2.095-6.7a2.43%202.43%200%200%201%200%204.86c-1.344%200-2.428-1.09-2.428-2.43s1.084-2.43%202.428-2.43m4.72%206.7h4.02v1.84h.058c.56-1.058%201.927-2.176%203.965-2.176%204.238%200%205.02%202.792%205.02%206.42v7.395h-4.183v-6.56c0-1.564-.03-3.574-2.178-3.574-2.18%200-2.514%201.7-2.514%203.46v6.668h-4.187V12.61z%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.theChampMediumSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20focusable%3D%22false%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%22-2%20-2%2036%2036%22%3E%3Cpath%20d%3D%22M7.8%2011a.8.8%200%200%200-.27-.7l-2-2.42v-.41h6.23L16.57%2018l4.24-10.53h5.94v.36L25%209.47a.5.5%200%200%200-.19.48v12.1a.5.5%200%200%200%20.19.48l1.68%201.64v.36h-8.4v-.36L20%2022.49c.18-.17.18-.22.18-.49v-9.77l-4.82%2012.26h-.65L9.09%2012.23v8.22a1.09%201.09%200%200%200%20.31.94l2.25%202.74v.36h-6.4v-.36l2.26-2.74a1.09%201.09%200%200%200%20.29-.94z%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.theChampOdnoklassnikiSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%22-4%20-4%2040%2040%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M16%2016.16c-3.635%200-6.58-2.945-6.58-6.58C9.42%205.945%2012.364%203%2016%203s6.582%202.945%206.582%206.58c0%203.635-2.946%206.58-6.58%206.58zm0-9.817c-1.788%200-3.236%201.448-3.236%203.237%200%201.79%201.448%203.236%203.237%203.236%201.79%200%203.24-1.447%203.24-3.236%200-1.79-1.45-3.237-3.238-3.237zm7.586%2010.62c.648%201.3-.084%201.93-1.735%202.99-1.397.9-3.315%201.238-4.566%201.368l1.048%201.05%203.877%203.877c.59.59.59%201.544%200%202.134l-.178.18c-.59.59-1.544.59-2.134%200l-3.878-3.88-3.878%203.88c-.59.59-1.543.59-2.135%200l-.176-.18c-.59-.59-.59-1.543%200-2.132l3.878-3.878%201.043-1.046c-1.25-.127-3.19-.465-4.6-1.37-1.65-1.062-2.38-1.69-1.733-2.99.37-.747%201.4-1.367%202.768-.29C13.035%2018.13%2016%2018.13%2016%2018.13s2.968%200%204.818-1.456c1.37-1.077%202.4-.457%202.768.29z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.theChampMoreSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii00IC00IDM4IDM4Ij48Y2lyY2xlIGN4PSIxMCIgY3k9IjE1IiByPSIzIiBmaWxsPSJ3aGl0ZSI+PC9jaXJjbGU+PGNpcmNsZSBjeD0iMjAiIGN5PSIxMCIgcj0iMyIgZmlsbD0id2hpdGUiPjwvY2lyY2xlPjxjaXJjbGUgY3g9IjIwIiBjeT0iMjAiIHI9IjMiIGZpbGw9IndoaXRlIj48L2NpcmNsZT48cGF0aCBkPSJNIDEwIDE1IEwgMjAgMTAgbSAwIDEwIEwgMTAgMTUiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlPSIjZmZmIj48L3BhdGg+PC9zdmc+) left no-repeat}.theChampPinterestSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-2%20-2%2035%2035%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M16.539%204.5c-6.277%200-9.442%204.5-9.442%208.253%200%202.272.86%204.293%202.705%205.046.303.125.574.005.662-.33.061-.231.205-.816.27-1.06.088-.331.053-.447-.191-.736-.532-.627-.873-1.439-.873-2.591%200-3.338%202.498-6.327%206.505-6.327%203.548%200%205.497%202.168%205.497%205.062%200%203.81-1.686%207.025-4.188%207.025-1.382%200-2.416-1.142-2.085-2.545.397-1.674%201.166-3.48%201.166-4.689%200-1.081-.581-1.983-1.782-1.983-1.413%200-2.548%201.462-2.548%203.419%200%201.247.421%202.091.421%202.091l-1.699%207.199c-.505%202.137-.076%204.755-.039%205.019.021.158.223.196.314.077.13-.17%201.813-2.247%202.384-4.324.162-.587.929-3.631.929-3.631.46.876%201.801%201.646%203.227%201.646%204.247%200%207.128-3.871%207.128-9.053.003-3.918-3.317-7.568-8.361-7.568z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.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}.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}.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{height:16px;width:16px;cursor:pointer;margin-top:10px}.theChampPushIn{background:url(data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%220%200%2030%2030%22%3E%0A%3Cpath%20d%3D%22M%207%206%20q%202%206%2010%206%20v%20-6%20l%206%209%20l%20-6%209%20v%20-6%20q%20-10%202%20-10%20-12%22%20stroke-width%3D%221%22%20stroke%3D%22%23000%22%20fill%3D%22%23000%22%20stroke-linecap%3D%22round%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E) left no-repeat}.theChampPullOut{background:url(data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%220%200%2030%2030%22%3E%0A%3Cpath%20d%3D%22M%2023%206%20q%20-2%206%20-10%206%20v%20-6%20l%20-6%209%20l%206%209%20v%20-6%20q%2010%202%2010%20-12%22%20stroke-width%3D%221%22%20stroke%3D%22%23000%22%20fill%3D%22%23000%22%20stroke-linecap%3D%22round%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E) 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: #10ff00}.theChampAmazonWishListBackground{background-color: #ffe000}.theChampAOLMailBackground{background-color: #2A2A2A}.theChampAppnetBackground{background-color: #5D5D5D}.theChampBalatarinBackground{background-color: #fff}.theChampBibSonomyBackground{background-color: #000}.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: #ffd400}.theChampCare2NewsBackground{background-color: #6EB43F}.theChampCopyLinkBackground{background-color: #FFC112}.theChampCommentBackground{background-color: #444}.theChampCiteULikeBackground{background-color: #2781CD}.theChampDiaryRuBackground{background-color: #E8D8C6}.theChampDiasporaBackground{background-color: #0166FF}.theChampDiigoBackground{background-color: #4A8BCA}.theChampDoubanBackground{background-color: #497700}.theChampDraugiemBackground{background-color: #ffad66}.theChampDZoneBackground{background-color: #fff088}.theChampEvernoteBackground{background-color: #8BE056}.theChampFacebookMessengerBackground{background-color: #0084FF}.theChampFarkBackground{background-color: #555}.theChampFintelBackground{background-color:#087515}.theChampFlipboardBackground{background-color: #CC0000}.theChampFolkdBackground{background-color: #0F70B2}.theChampGoogleClassroomBackground{background-color: #FFC112}.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}.theChampKikBackground{background-color: #2A2A2A}.theChampKnownBackground{background-color: #fff101}.theChampLineBackground{background-color: #00C300}.theChampMailRuBackground{background-color: #356FAC}.theChampMendeleyBackground{background-color: #A70805}.theChampMeneameBackground{background-color: #FF7D12}.theChampMixiBackground{background-color: #EDEDED}.theChampMySpaceBackground{background-color: #2A2A2A}.theChampNetvouzBackground{background-color: #c0ff00}.theChampOdnoklassnikiBackground{background-color: #F2720C}.theChampOutlookcomBackground{background-color: #0072C6}.theChampPapalyBackground{background-color: #3AC0F6}.theChampPinboardBackground{background-color: #1341DE}.theChampPlurkBackground{background-color: #CF682F}.theChampPocketBackground{background-color: #f0f0f0}.theChampPrintFriendlyBackground{background-color: #61D1D5}.theChampProtopageBookmarksBackground{background-color: #413FFF}.theChampPushaBackground{background-color: #0072B8}.theChampQzoneBackground{background-color: #2B82D9}.theChampRefindBackground{background-color: #1492ef}.theChampRediffMyPageBackground{background-color: #D20000}.theChampRenrenBackground{background-color: #005EAC}.theChampSinaWeiboBackground{background-color: #ff0}.theChampSiteJotBackground{background-color: #ffc800}.theChampSkypeBackground{background-color: #00AFF0}.theChampSMSBackground{background-color: #6ebe45}.theChampSlashdotBackground{background-color: #004242}.theChampSvejoBackground{background-color: #fa7aa3}.theChampSymbalooFeedsBackground{background-color: #6DA8F7}.theChampTelegramBackground{background-color: #3DA5f1}.theChampThreemaBackground{background-color:#2A2A2A}.theChampTrelloBackground{background-color: #1189CE}.theChampTuentiBackground{background-color: #0075C9}.theChampTwiddlaBackground{background-color: #EDEDED}.theChampTypePadPostBackground{background-color: #2A2A2A}.theChampViadeoBackground{background-color: #2A2A2A}.theChampViberBackground{background-color: #8B628F}.theChampWaneloBackground{background-color: #fff}.theChampWebnewsBackground{background-color: #CC2512}.theChampWordPressBackground{background-color: #464646}.theChampWykopBackground{background-color: #367DA9}.theChampYahooMailBackground{background-color: #400090}.theChampYoolinkBackground{background-color: #A2C538}.theChampBehanceBackground{background-color: #053eff}.theChampFlickrBackground{background-color: #ff0084}.theChampFoursquareBackground{background-color: #f94877}.theChampGithubBackground{background-color: #2a2a2a}.theChampMediumBackground{background-color: #2a2a2a}.theChampOdnoklassnikiBackground{background-color: #F2720C}.theChampSnapchatBackground{background-color: #ffe900}.theChampVimeoBackground{background-color: #1ab7ea}.theChampYoutubeBackground{background-color: #ff0000}.theChampRSSBackground{background-color: #e3702d}.theChampGentleReaderBackground{background-color:#46aecf}.theChampBehanceSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%22-2%20-2%2036%2036%22%3E%3Cpath%20d%3D%22M3.862%208.136h5.66c1.377%200%203.19%200%204.13.566a3.705%203.705%200%200%201%201.837%203.26c0%201.66-.88%202.905-2.32%203.494v.042c1.924.397%202.97%201.838%202.97%203.76%200%202.297-1.636%204.483-4.743%204.483H3.86V8.14zm2.078%206.71h4.152c2.36%200%203.322-.856%203.322-2.493%200-2.16-1.53-2.468-3.322-2.468H5.94v4.96zm0%207.144h5.2c1.792%200%202.93-1.09%202.93-2.797%200-2.03-1.64-2.598-3.388-2.598H5.94v5.395zm22.017-1.833C27.453%2022.65%2025.663%2024%2023.127%2024c-3.607%200-5.31-2.49-5.422-5.944%200-3.386%202.23-5.878%205.31-5.878%204%200%205.225%203.74%205.116%206.47h-8.455c-.067%201.966%201.05%203.716%203.52%203.716%201.53%200%202.6-.742%202.928-2.206h1.838zm-1.793-3.15c-.088-1.77-1.42-3.19-3.256-3.19-1.946%200-3.106%201.466-3.236%203.19h6.492zM20.614%208h4.935v1.68h-4.94z%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.theChampFlickrSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%22-2%20-2%2036%2036%22%3E%3Cg%20fill%3D%22%23fff%22%3E%3Ccircle%20cx%3D%2223%22%20cy%3D%2216%22%20r%3D%226%22%3E%3C%2Fcircle%3E%3Ccircle%20cx%3D%229%22%20cy%3D%2216%22%20r%3D%226%22%3E%3C%2Fcircle%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.theChampFoursquareSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%22-4%20-4%2040%2040%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M21.516%203H7.586C5.66%203%205%204.358%205%205.383v21.995c0%201.097.65%201.407.958%201.53.31.126%201.105.206%201.676-.36l6.72-7.455c.105-.12.49-.284.552-.284h4.184c1.79%200%201.81-1.45%201.997-2.206.157-.63%201.946-9.57%202.58-12.395.523-2.32-.104-3.21-2.15-3.21zM20.2%209.682c-.07.33-.368.66-.75.693h-5.44c-.61-.034-1.108.422-1.108%201.032v.665c0%20.61.5%201.24%201.108%201.24h4.607c.43%200%20.794.276.7.737-.093.46-.573%202.82-.627%203.07-.052.254-.282.764-.716.764h-3.62c-.682%200-1.36-.008-1.816.56-.458.573-4.534%205.293-4.534%205.293V6.403c0-.438.31-.746.715-.74h11.274c.41-.006.915.41.834%201L20.2%209.68z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.theChampGithubSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%22-2%20-2%2036%2036%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M16%203.32c-7.182%200-13%205.82-13%2013%200%205.754%203.72%2010.612%208.89%2012.335.65.114.893-.276.893-.617%200-.31-.016-1.333-.016-2.42-3.266.6-4.11-.797-4.37-1.53-.147-.373-.78-1.527-1.334-1.835-.455-.244-1.105-.845-.016-.86%201.024-.017%201.755.942%202%201.332%201.17%201.966%203.038%201.414%203.785%201.073.114-.845.455-1.414.83-1.74-2.893-.324-5.916-1.445-5.916-6.418%200-1.414.504-2.584%201.333-3.494-.13-.325-.59-1.657.13-3.445%200%200%201.085-.34%203.57%201.337%201.04-.293%202.146-.44%203.25-.44s2.21.147%203.25.44c2.49-1.69%203.58-1.337%203.58-1.337.714%201.79.26%203.12.13%203.446.828.91%201.332%202.064%201.332%203.494%200%204.99-3.04%206.094-5.93%206.42.47.405.876%201.185.876%202.404%200%201.74-.016%203.136-.016%203.575%200%20.34.244.743.894.613C25.28%2026.933%2029%2022.053%2029%2016.32c0-7.182-5.817-13-13-13z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.theChampSnapchatSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M26.177%2020.978c-2.867-.473-4.157-3.414-4.21-3.54l-.01-.02c-.153-.31-.187-.57-.1-.772.164-.39.774-.583%201.177-.71.113-.037.22-.07.306-.105.715-.28%201.073-.625%201.066-1.03-.006-.312-.252-.593-.642-.732a1.168%201.168%200%200%200-.44-.084.975.975%200%200%200-.405.083c-.34.16-.65.246-.91.258a.789.789%200%200%201-.357-.087l.027-.45.005-.062c.09-1.432.203-3.215-.266-4.264C20.03%206.34%2017.073%206.1%2016.2%206.1h-.052l-.363.003c-.87%200-3.818.243-5.208%203.36-.47%201.05-.357%202.833-.268%204.264l.03.513a.83.83%200%200%201-.41.09c-.276%200-.6-.087-.97-.26a.795.795%200%200%200-.335-.067c-.43%200-.946.282-1.026.704-.06.305.077.748%201.054%201.134.087.036.193.07.305.105.403.128%201.012.322%201.18.71.084.203.05.463-.103.773l-.01.022c-.054.125-1.344%203.068-4.21%203.54a.437.437%200%200%200-.366.455.6.6%200%200%200%20.048.196c.216.504%201.123.87%202.775%201.13.055.075.113.34.148.5.036.16.07.32.12.494.05.17.18.374.514.374.133%200%20.292-.03.475-.067.275-.053.652-.127%201.124-.127.26%200%20.532.022.805.067.532.09.985.41%201.51.78.75.53%201.6%201.132%202.894%201.132.034%200%20.07%200%20.105-.005.04.002.095.004.153.004%201.29%200%202.142-.6%202.892-1.132.526-.37.978-.69%201.51-.78.274-.045.545-.068.807-.068.45%200%20.805.056%201.123.12.2.037.36.057.476.057h.024c.246%200%20.42-.13.488-.365.05-.17.086-.327.12-.49.037-.16.094-.422.15-.496%201.65-.256%202.56-.624%202.773-1.125a.568.568%200%200%200%20.047-.196.433.433%200%200%200-.363-.458z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.theChampTumblrSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-2%20-2%2036%2036%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M20.775%2021.962c-.37.177-1.08.33-1.61.345-1.598.043-1.907-1.122-1.92-1.968v-6.217h4.007V11.1H17.26V6.02h-2.925s-.132.044-.144.15c-.17%201.556-.895%204.287-3.923%205.378v2.578h2.02v6.522c0%202.232%201.647%205.404%205.994%205.33%201.467-.025%203.096-.64%203.456-1.17l-.96-2.846z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.theChampVimeoSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%22-2%20-2%2036%2036%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M26.926%2010.627c-.103%202.25-1.675%205.332-4.716%209.245C19.066%2023.957%2016.406%2026%2014.23%2026c-1.348%200-2.49-1.244-3.42-3.732l-1.867-6.844C8.25%2012.937%207.51%2011.69%206.715%2011.69c-.173%200-.778.365-1.815%201.09l-1.088-1.4a300.012%20300.012%200%200%200%203.374-3.01c1.522-1.315%202.666-2.007%203.427-2.076%201.8-.173%202.907%201.057%203.322%203.69.45%202.84.76%204.608.935%205.3.52%202.356%201.09%203.534%201.713%203.534.483%200%201.21-.764%202.18-2.294.97-1.528%201.488-2.692%201.558-3.49.14-1.32-.38-1.98-1.553-1.98-.554%200-1.125.126-1.712.378%201.137-3.722%203.308-5.53%206.513-5.426%202.378.068%203.498%201.61%203.36%204.62z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.theChampRSSSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%22-4%20-4%2040%2040%22%3E%3Cg%20fill%3D%22%23fff%22%3E%3Cellipse%20cx%3D%227.952%22%20cy%3D%2224.056%22%20rx%3D%222.952%22%20ry%3D%222.944%22%3E%3C%2Fellipse%3E%3Cpath%20d%3D%22M5.153%2016.625c2.73%200%205.295%201.064%207.22%202.996a10.2%2010.2%200%200%201%202.996%207.255h4.2c0-7.962-6.47-14.44-14.42-14.44v4.193zm.007-7.432c9.724%200%2017.636%207.932%2017.636%2017.682H27C27%2014.812%2017.203%205%205.16%205v4.193z%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.theChampMeWeSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%22-3%20-3%2038%2038%22%3E%3Cg%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M9.636%2010.427a1.22%201.22%200%201%201-2.44%200%201.22%201.22%200%201%201%202.44%200zM15.574%2010.431a1.22%201.22%200%200%201-2.438%200%201.22%201.22%200%201%201%202.438%200zM22.592%2010.431a1.221%201.221%200%201%201-2.443%200%201.221%201.221%200%200%201%202.443%200zM29.605%2010.431a1.221%201.221%200%201%201-2.442%200%201.221%201.221%200%200%201%202.442%200zM3.605%2013.772c0-.471.374-.859.859-.859h.18c.374%200%20.624.194.789.457l2.935%204.597%202.95-4.611c.18-.291.43-.443.774-.443h.18c.485%200%20.859.387.859.859v8.113a.843.843%200%200%201-.859.845.857.857%200%200%201-.845-.845V16.07l-2.366%203.559c-.18.276-.402.443-.72.443-.304%200-.526-.167-.706-.443l-2.354-3.53V21.9c0%20.471-.374.83-.845.83a.815.815%200%200%201-.83-.83v-8.128h-.001zM14.396%2014.055a.9.9%200%200%201-.069-.333c0-.471.402-.83.872-.83.415%200%20.735.263.845.624l2.23%206.66%202.187-6.632c.139-.402.428-.678.859-.678h.124c.428%200%20.735.278.859.678l2.187%206.632%202.23-6.675c.126-.346.415-.609.83-.609.457%200%20.845.361.845.817a.96.96%200%200%201-.083.346l-2.867%208.032c-.152.43-.471.706-.887.706h-.165c-.415%200-.721-.263-.872-.706l-2.161-6.328-2.16%206.328c-.152.443-.47.706-.887.706h-.165c-.415%200-.72-.263-.887-.706l-2.865-8.032z%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.theChampYoutubeSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M26.78%2011.6s-.215-1.515-.875-2.183c-.837-.876-1.774-.88-2.204-.932-3.075-.222-7.693-.222-7.693-.222h-.01s-4.618%200-7.697.222c-.43.05-1.368.056-2.205.932-.66.668-.874%202.184-.874%202.184S5%2013.386%205%2015.166v1.67c0%201.78.22%203.56.22%203.56s.215%201.516.874%202.184c.837.875%201.936.85%202.426.94%201.76.17%207.48.22%207.48.22s4.623-.007%207.7-.23c.43-.05%201.37-.056%202.205-.932.66-.668.875-2.184.875-2.184s.22-1.78.22-3.56v-1.67c0-1.78-.22-3.56-.22-3.56zm-13.052%207.254v-6.18l5.944%203.1-5.944%203.08z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.theChampTelegramSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%22-1%20-3%2036%2036%22%20width%3D%22100%25%22%20height%3D%22100%25%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M25.515%206.896L6.027%2014.41c-1.33.534-1.322%201.276-.243%201.606l5%201.56%201.72%205.66c.226.625.115.873.77.873.506%200%20.73-.235%201.012-.51l2.43-2.363%205.056%203.734c.93.514%201.602.25%201.834-.863l3.32-15.638c.338-1.363-.52-1.98-1.41-1.577z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.theChampInstagramSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20id%3D%22Layer_1%22%20version%3D%221.1%22%20viewBox%3D%22-10%20-10%20148%20148%22%20xml%3Aspace%3D%22preserve%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E%3Cg%3E%3Cg%3E%3Cpath%20d%3D%22M86%2C112H42c-14.336%2C0-26-11.663-26-26V42c0-14.337%2C11.664-26%2C26-26h44c14.337%2C0%2C26%2C11.663%2C26%2C26v44%20%20%20%20C112%2C100.337%2C100.337%2C112%2C86%2C112z%20M42%2C24c-9.925%2C0-18%2C8.074-18%2C18v44c0%2C9.925%2C8.075%2C18%2C18%2C18h44c9.926%2C0%2C18-8.075%2C18-18V42%20%20%20%20c0-9.926-8.074-18-18-18H42z%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3Cg%3E%3Cpath%20d%3D%22M64%2C88c-13.234%2C0-24-10.767-24-24c0-13.234%2C10.766-24%2C24-24s24%2C10.766%2C24%2C24C88%2C77.233%2C77.234%2C88%2C64%2C88z%20M64%2C48c-8.822%2C0-16%2C7.178-16%2C16s7.178%2C16%2C16%2C16c8.822%2C0%2C16-7.178%2C16-16S72.822%2C48%2C64%2C48z%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3Cg%3E%3Ccircle%20cx%3D%2289.5%22%20cy%3D%2238.5%22%20fill%3D%22%23fff%22%20r%3D%225.5%22%3E%3C%2Fcircle%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.theChampWhatsappBackground a,i.theChampLineBackground a,i.theChampViberBackground a{display:inline!important}.the_champ_sharing_container a{padding:0!important;box-shadow:none!important;border:none!important}div.course_instructor_widget .the_champ_vertical_sharing{display: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%}}@media screen and (max-width:475px){#the_champ_sharing_more_content .all-services ul li{width:100%!important;}}#ss_openid{border:1px solid gray;display:inline;font-family:"Trebuchet MS";font-size:12px;width:98%;padding:.35em .325em .75em;margin-bottom:20px}#ss_openid form{margin-top:25px;margin-left:0;padding:0;background:transparent;-webkit-box-shadow:none;box-shadow:none}#ss_openid input{font-family:"Trebuchet MS";font-size:12px;width:100px;float:left}#ss_openid input[type=submit]{background:#767676;padding:.75em 2em;border:0;-webkit-border-radius:2px;border-radius:2px;-webkit-box-shadow:none;box-shadow:none;color:#fff;cursor:pointer;display:inline-block;font-weight:800;line-height:1;text-shadow:none;-webkit-transition:background .2s;transition:background .2s}#ss_openid legend{color:#FF6200;float:left;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;display:table;max-width:100%;padding:0;white-space:normal}#ss_openid input.openid_login{background-color:#fff;background-position:0 50%;color:#000;width:220px;margin-right:10px;height:30px;margin-bottom:5px;background:#fff;background-image:-webkit-linear-gradient(rgba(255,255,255,0),rgba(255,255,255,0));border:1px solid #bbb;-webkit-border-radius:3px;border-radius:3px;display:block;padding:.7em;line-height:1.5}#ss_openid a{color:silver}#ss_openid a:hover{color:#5e5e5e}.heateor_ms_subscribe_option{line-height: 14px;margin-top: 8px;}.heateor_ms_subscribe_option input.heateor_ms_checkbox, .heateor_ms_subscribe_option label.heateor_ms_checkbox_label{float:left;font-size: 15px;margin: 0;color: #666;}.heateor_ms_subscribe_option input.heateor_ms_checkbox{margin: 0 4px 0 0;width: 15px;height: 15px;float: left;}div.heateor_ss_sl_optin_container{clear:both}div.heateor_ss_sl_optin_container a{color:blue}div.heateor_ss_sl_optin_container label{font-size:11px;font-weight:normal}input.heateor_ss_social_login_optin{vertical-align:middle}
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,#heateor_ss_browser_popup_bg,#heateor_ss_lj_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:auto;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,ul.heateor_ss_follow_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:none;float:left;padding:0!important;margin:0!important;border:0!important;width:auto!important;clear:none!important;list-style-type:none!important}.theChampLoginSvg{-webkit-box-sizing:content-box;-moz-box-sizing:border-box;box-sizing:content-box;width:100%;height:100%;background-position:center!important}.theChampTwitchLoginSvg{background:url(data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20300%20300%22%3E%3Cpath%20d%3D%22M%2055%2030%20h%20200%20v%20160%20l%20-40%2040%20h%20-50%20l%20-40%2040%20v%20-40%20l%2030%20-30%20h%2060%20l%2020%20-20%20v%20-132%20h%20-165%20v%20152%20h%2055%20v%2070%20h%20-20%20v%20-40%20h%20-65%20v%20-160%20z%20M%20130%2090%20v%2060%20h%2015%20v%20-60%20z%20M%20185%2090%20v%2060%20h%2015%20v%20-60%20z%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E) left no-repeat}.theChampXingLoginSvg{background-size:109%!important;background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAzMCAzMCI+DQo8cGF0aCBkPSJNIDYgOSBoIDUgbCA0IDQgbCAtNSA3IGggLTUgbCA1IC03IHogbSAxNSAtNCBoIDUgbCAtOSAxMyBsIDQgOCBoIC01IGwgLTQgLTggeiIgZmlsbD0iI2ZmZiI+PC9wYXRoPg0KPC9zdmc+) left no-repeat}.theChampGoogleLoginSvg{background-size:111%!important;background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%22-8%20-8%2064%2064%22%3E%3Cdefs%3E%3Cpath%20id%3D%22a%22%20d%3D%22M44.5%2020H24v8.5h11.8C34.7%2033.9%2030.1%2037%2024%2037c-7.2%200-13-5.8-13-13s5.8-13%2013-13c3.1%200%205.9%201.1%208.1%202.9l6.4-6.4C34.6%204.1%2029.6%202%2024%202%2011.8%202%202%2011.8%202%2024s9.8%2022%2022%2022c11%200%2021-8%2021-22%200-1.3-.2-2.7-.5-4z%22%2F%3E%3C%2Fdefs%3E%3CclipPath%20id%3D%22b%22%3E%3Cuse%20xlink%3Ahref%3D%22%23a%22%20overflow%3D%22visible%22%2F%3E%3C%2FclipPath%3E%3Cpath%20clip-path%3D%22url(%23b)%22%20fill%3D%22%23FBBC05%22%20d%3D%22M0%2037V11l17%2013z%22%2F%3E%3Cpath%20clip-path%3D%22url(%23b)%22%20fill%3D%22%23EA4335%22%20d%3D%22M0%2011l17%2013%207-6.1L48%2014V0H0z%22%2F%3E%3Cpath%20clip-path%3D%22url(%23b)%22%20fill%3D%22%2334A853%22%20d%3D%22M0%2037l30-23%207.9%201L48%200v48H0z%22%2F%3E%3Cpath%20clip-path%3D%22url(%23b)%22%20fill%3D%22%234285F4%22%20d%3D%22M48%2048L17%2024l-4-3%2035-10z%22%2F%3E%3C%2Fsvg%3E') left no-repeat}.theChampLinkedinLoginSvg{background-size:121%!important;background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-1%200%2033%2035%22%3E%3Cpath%20d%3D%22M6.227%2012.61h4.19v13.48h-4.19V12.61zm2.095-6.7a2.43%202.43%200%200%201%200%204.86c-1.344%200-2.428-1.09-2.428-2.43s1.084-2.43%202.428-2.43m4.72%206.7h4.02v1.84h.058c.56-1.058%201.927-2.176%203.965-2.176%204.238%200%205.02%202.792%205.02%206.42v7.395h-4.183v-6.56c0-1.564-.03-3.574-2.178-3.574-2.18%200-2.514%201.7-2.514%203.46v6.668h-4.187V12.61z%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E') left no-repeat}.theChampTwitterLoginSvg{background-size:120%!important;background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-2%20-2%2035%2035%22%3E%0A%3Cpath%20d%3D%22M28%208.557a9.913%209.913%200%200%201-2.828.775%204.93%204.93%200%200%200%202.166-2.725%209.738%209.738%200%200%201-3.13%201.194%204.92%204.92%200%200%200-3.593-1.55%204.924%204.924%200%200%200-4.794%206.049c-4.09-.21-7.72-2.17-10.15-5.15a4.942%204.942%200%200%200-.665%202.477c0%201.71.87%203.214%202.19%204.1a4.968%204.968%200%200%201-2.23-.616v.06c0%202.39%201.7%204.38%203.952%204.83-.414.115-.85.174-1.297.174-.318%200-.626-.03-.928-.086a4.935%204.935%200%200%200%204.6%203.42%209.893%209.893%200%200%201-6.114%202.107c-.398%200-.79-.023-1.175-.068a13.953%2013.953%200%200%200%207.55%202.213c9.056%200%2014.01-7.507%2014.01-14.013%200-.213-.005-.426-.015-.637.96-.695%201.795-1.56%202.455-2.55z%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%0A%3C%2Fsvg%3E') left no-repeat}.theChampVkontakteLoginSvg{background-size:114%!important;background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%221%202%2030%2028%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20fill%3D%22%23fff%22%20d%3D%22M15.764%2022.223h1.315s.394-.044.6-.262c.184-.2.18-.574.18-.574s-.03-1.764.79-2.023c.81-.255%201.844%201.705%202.942%202.46.832.57%201.464.445%201.464.445l2.936-.04s1.538-.097.81-1.304c-.06-.1-.426-.894-2.186-2.526-1.843-1.71-1.594-1.434.624-4.39%201.353-1.804%201.893-2.902%201.724-3.374-.16-.45-1.153-.33-1.153-.33l-3.306.02s-.247-.034-.428.074c-.178.108-.293.356-.293.356s-.522%201.394-1.223%202.58c-1.47%202.5-2.06%202.633-2.3%202.476-.563-.36-.42-1.454-.42-2.23%200-2.423.365-3.435-.72-3.696-.357-.085-.623-.143-1.544-.15-1.182-.014-2.18.003-2.743.28-.378.185-.667.595-.49.62.218.027.713.13.975.49.34.46.33%201.496.33%201.496s.193%202.852-.46%203.206c-.442.245-1.056-.252-2.37-2.52-.67-1.163-1.18-2.446-1.18-2.446s-.1-.24-.273-.37c-.212-.155-.506-.204-.506-.204l-3.145.02s-.473.015-.647.22c-.154.183-.01.56-.01.56s2.46%205.757%205.245%208.657c2.553%202.66%205.454%202.485%205.454%202.485z%22%2F%3E%3C%2Fsvg%3E') left no-repeat}.theChampFacebookLoginSvg{background-size:116%!important;padding-left:8px;padding-top:5px;background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-3%20-3%2038%2038%22%3E%3Cpath%20d%3D%22M17.78%2027.5V17.008h3.522l.527-4.09h-4.05v-2.61c0-1.182.33-1.99%202.023-1.99h2.166V4.66c-.375-.05-1.66-.16-3.155-.16-3.123%200-5.26%201.905-5.26%205.405v3.016h-3.53v4.09h3.53V27.5h4.223z%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') left no-repeat}.theChampLiveJournalLoginSvg{background-size:111%!important;background:url(data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cg%20fill%3D%22%2300B0EA%22%3E%3Cpath%20d%3D%22M16.76%205.53c-1.586%200-3.094.33-4.462.922l-2.47-2.465h-.005A11.268%2011.268%200%200%200%204%209.843l2.472%202.47a11.283%2011.283%200%200%201%205.823-5.86h.004l9.14%209.128h-.006a11.304%2011.304%200%200%200-5.823%205.86l-9.14-9.13c-.597%201.372-.952%202.865-.952%204.457%200%206.21%205.03%2011.24%2011.24%2011.24S28%2022.98%2028%2016.77c0-6.206-5.033-11.24-11.24-11.24zm1.95%2016.573a6.561%206.561%200%200%201%203.38-3.403l.887%204.285-4.268-.882z%22%2F%3E%3Cpath%20d%3D%22M22.092%2018.702l-.653-3.118h-.007a11.288%2011.288%200%200%200-5.822%205.858l3.097.66a6.58%206.58%200%200%201%203.38-3.4%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E) left no-repeat}.theChampSteamLoginSvg{background:url(data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20300%20300%22%3E%3Ccircle%20cx%3D%2245%22%20cy%3D%22130%22%20r%3D%2225%22%20stroke%3D%22%23fff%22%20stroke-width%3D%227%22%20fill%3D%22none%22%3E%3C%2Fcircle%3E%3Ccircle%20cx%3D%22155%22%20cy%3D%22198%22%20r%3D%2225%22%20stroke%3D%22%23fff%22%20stroke-width%3D%227%22%20fill%3D%22none%22%3E%3C%2Fcircle%3E%3Ccircle%20cx%3D%22245%22%20cy%3D%22110%22%20r%3D%2235%22%20stroke%3D%22%23fff%22%20stroke-width%3D%2210%22%20fill%3D%22none%22%3E%3C%2Fcircle%3E%3Ccircle%20cx%3D%22245%22%20cy%3D%22110%22%20r%3D%2215%22%20stroke%3D%22%23fff%22%20stroke-width%3D%2210%22%20fill%3D%22%23fff%22%3E%3C%2Fcircle%3E%3Cpath%20d%3D%22M%20160%20170%20l%2045%20-64%20l%2040%2044%20l%20-62%2044%22%20stroke%3D%22%23fff%22%20stroke-width%3D%221%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3Cpath%20d%3D%22M%2045%20130%20l%20110%2068%22%20stroke%3D%22%23fff%22%20stroke-width%3D%2230%22%20fill%3D%22%23fff%22%20stroke-linecap%3D%22round%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E) left no-repeat}.theChampInstagramLoginSvg{background-size:105%!important;background:url(data:image/svg+xml;charset=utf8,%3Csvg%20enable-background%3D%22new%200%200%20128%20128%22%20id%3D%22Layer_1%22%20version%3D%221.1%22%20viewBox%3D%220%200%20128%20128%22%20xml%3Aspace%3D%22preserve%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E%3Cg%3E%3Cg%3E%3Cpath%20d%3D%22M86%2C112H42c-14.336%2C0-26-11.663-26-26V42c0-14.337%2C11.664-26%2C26-26h44c14.337%2C0%2C26%2C11.663%2C26%2C26v44%20%20%20%20C112%2C100.337%2C100.337%2C112%2C86%2C112z%20M42%2C24c-9.925%2C0-18%2C8.074-18%2C18v44c0%2C9.925%2C8.075%2C18%2C18%2C18h44c9.926%2C0%2C18-8.075%2C18-18V42%20%20%20%20c0-9.926-8.074-18-18-18H42z%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3Cg%3E%3Cpath%20d%3D%22M64%2C88c-13.234%2C0-24-10.767-24-24c0-13.234%2C10.766-24%2C24-24s24%2C10.766%2C24%2C24C88%2C77.233%2C77.234%2C88%2C64%2C88z%20M64%2C48c-8.822%2C0-16%2C7.178-16%2C16s7.178%2C16%2C16%2C16c8.822%2C0%2C16-7.178%2C16-16S72.822%2C48%2C64%2C48z%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3Cg%3E%3Ccircle%20cx%3D%2289.5%22%20cy%3D%2238.5%22%20fill%3D%22%23fff%22%20r%3D%225.5%22%3E%3C%2Fcircle%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E) 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}.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,ul.heateor_ss_follow_ul{margin:1px 0!important}#heateor_ss_lj_popup_close img,#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,ul.heateor_ss_follow_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;word-wrap:normal!important}ul.heateor_ss_follow_ul li{width:auto;}ul.heateor_ss_follow_ul li,ul.the_champ_sharing_ul li{float:left!important;margin:0!important;padding:0!important;list-style:none!important;border:none!important;clear:none;}.theChampSharing{display:block;cursor:pointer;margin:2px}ul.the_champ_login_ul li:before,ul.the_champ_sharing_ul li:before,ul.heateor_ss_follow_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);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_share .fb-share-button span,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}div.the_champ_horizontal_sharing li{width:auto}div.the_champ_horizontal_sharing li.the_champ_facebook_share, div.the_champ_horizontal_counter li.the_champ_facebook_share{width:76px}div.the_champ_horizontal_sharing li.the_champ_facebook_like, div.the_champ_horizontal_counter li.the_champ_facebook_like{width:56px}div.the_champ_horizontal_sharing li.the_champ_facebook_recommend, div.the_champ_horizontal_counter li.the_champ_facebook_recommend{width:111px}div.the_champ_horizontal_sharing li.the_champ_twitter_tweet, div.the_champ_horizontal_counter li.the_champ_twitter_tweet{width:65px}div.the_champ_horizontal_counter li.the_champ_linkedin_share span, div.the_champ_horizontal_sharing li.the_champ_linkedin_share span{vertical-align:text-top!important}div.the_champ_horizontal_sharing li.the_champ_buffer_share{width:89px}div.the_champ_horizontal_sharing li.the_champ_linkedin_share, div.the_champ_horizontal_counter li.the_champ_linkedin_share{width:67px}div.the_champ_horizontal_sharing li.the_champ_buffer, div.the_champ_horizontal_counter li.the_champ_buffer{width:81px;}div.the_champ_horizontal_sharing li.the_champ_reddit, div.the_champ_horizontal_counter li.the_champ_reddit{width:124px}div.the_champ_horizontal_sharing li.the_champ_yummly, div.the_champ_horizontal_counter li.the_champ_yummly{width:61px}div.the_champ_horizontal_sharing li.the_champ_pinterest_pin, div.the_champ_horizontal_counter li.the_champ_pinterest_pin{width:58px}div.the_champ_horizontal_counter li.the_champ_pinterest_pin{line-height:1px}div.the_champ_horizontal_sharing li.the_champ_xing, div.the_champ_horizontal_counter li.the_champ_xing{width:67px}.the_champ_counter_container li{height:21px}input#user_login,input#user_pass{height:auto!important}.theChampHorizontalSharingButton,.theChampVerticalSharingButton{display:block}.theChampInstagramBackground{background-color:#527FA4}.theChampYummlyBackground{background-color:#E16120}.theChampBufferBackground{background-color:#000}.theChampFacebookBackground{background-color:#4267B2}.theChampSteamBackground{background-color:#393939}.theChampLiveJournalBackground{background-color:#EDEDED}.theChampDiggBackground{background-color:#006094}.theChampEmailBackground{background-color:#649A3F}.theChampFloatitBackground{background-color:#53BEEE}.theChampGoogleBackground{background-color:white;box-sizing:border-box;border:1px #4184F3 solid}.theChampTwitchBackground{background-color:#6441A5}.theChampLinkedinBackground{background-color:#0077B5}.theChampMoreBackground{background-color:#EE8E2D}.theChampPinterestBackground{background-color:#CC2329}.theChampPrintBackground{background-color:#FD6500}.theChampRedditBackground{background-color:#FF5700}.theChampStockTwitsBackground{background-color: #40576F}.theChampTumblrBackground{background-color:#29435D}.theChampTwitterBackground{background-color:#55acee}.theChampVkontakteBackground{background-color:#5E84AC}.theChampXingBackground{background-color:#00797D}.theChampWhatsappBackground{background-color:#55EB4C}.theChampMeWeBackground{background-color:#007da1}.theChampMixBackground{background-color:#ff8226}.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;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%220%200%2030%2030%22%3E%3Cpath%20stroke%3D%22%23fff%22%20d%3D%22M%2010.5%2010%20q%204%20-2%202.5%201%20l%20-1%204%20q%200%202%205%200%20l%201%20-6.5%20m%20-1%206.5%20l%20-1%204%20c%20-3%206%20-6%20-1%200%20-1%20q%201%20-1%205%201%22%20stroke-width%3D%222%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.theChampBufferSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-4%20-4%2038%2039%22%3E%3Cpath%20stroke%3D%22%23fff%22%20d%3D%22M%2015%206%20l%20-10%205%20l%2010%205%20l%2010%20-5%20z%22%20stroke-width%3D%220%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3Cpath%20stroke%3D%22%23fff%22%20d%3D%22M%205.5%2014.5%20l%209.5%205%20l%209.5%20-5%20m%20-19%204%20l%209.5%205%20l%209.5%20-5%22%20stroke-width%3D%222%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.theChampFacebookSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-5%20-5%2042%2042%22%3E%3Cpath%20d%3D%22M17.78%2027.5V17.008h3.522l.527-4.09h-4.05v-2.61c0-1.182.33-1.99%202.023-1.99h2.166V4.66c-.375-.05-1.66-.16-3.155-.16-3.123%200-5.26%201.905-5.26%205.405v3.016h-3.53v4.09h3.53V27.5h4.223z%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.theChampDiggSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-5%20-5%2049%2049%22%3E%3Cpath%20d%3D%22M%206%2020%20h%2010%20c%200%20-14%20-9%20-14%20-9%200%20m%205%200%20v%207%20m%20-1%200%20v%20-7%20m%204%20-7%20h%204.5%20v%20-5%20h%208%20v%208%20h%20-8%20v%20-3%20m%208%200%20h%204%20v%205.5%20h%20-3%20v%2012%20h%20-4%20v%20-8%20m%200%208%20h%20-6.5%20v%20-12%20h%20-2%22%20stroke-width%3D%222%22%20stroke%3D%22%23fff%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3Cellipse%20cx%3D%2211.5%22%20cy%3D%2228.5%22%20rx%3D%224%22%20ry%3D%222%22%20style%3D%22fill%3A%23fff%3B%22%3E%3C%2Fellipse%3E%3C%2Fsvg%3E') no-repeat center center}.theChampEmailSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-4%20-4%2043%2043%22%3E%3Cpath%20d%3D%22M%205.5%2011%20h%2023%20v%201%20l%20-11%206%20l%20-11%20-6%20v%20-1%20m%200%202%20l%2011%206%20l%2011%20-6%20v%2011%20h%20-22%20v%20-11%22%20stroke-width%3D%221%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.theChampFloatitSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-3%20-3%2038%2038%22%3E%3Cg%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M16%203C8.814%203%203%208.814%203%2016s5.814%2013%2013%2013%2013-5.814%2013-13S23.187%203%2016%203zm0%2025.152c-6.712%200-12.153-5.44-12.153-12.152C3.847%209.288%209.287%203.848%2016%203.848S28.152%209.288%2028.152%2016c0%206.712-5.44%2012.152-12.152%2012.152z%22%2F%3E%3Cpath%20d%3D%22M22.406%2016A6.402%206.402%200%200%200%2016%209.593%206.402%206.402%200%200%200%209.593%2016%206.4%206.4%200%200%200%2016%2022.406%206.4%206.4%200%200%200%2022.406%2016zM16%2021.39A5.392%205.392%200%200%201%2010.61%2016%205.403%205.403%200%200%201%2016%2010.61%205.393%205.393%200%200%201%2021.39%2016%205.382%205.382%200%200%201%2016%2021.39z%22%2F%3E%3Cpath%20d%3D%22M13.763%209.187V4.864c-4.475.9-8%204.424-8.898%208.898h4.322a7.226%207.226%200%200%201%204.576-4.575zm9.05%204.576h4.32c-.896-4.475-4.422-8-8.896-8.898v4.322a7.224%207.224%200%200%201%204.575%204.576zm-4.576%209.052v4.322c4.475-.9%208-4.424%208.897-8.9h-4.322a7.232%207.232%200%200%201-4.575%204.578zm-9.05-4.578H4.863c.898%204.475%204.424%208%208.898%208.9v-4.323a7.233%207.233%200%200%201-4.574-4.577z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.theChampGoogleSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAxMDAgMTAwIj48cGF0aCBkPSJNIDUxLjIyODc3NjYwNTc1NzA3IDM4LjE5MDgwNzcwMjE5NzA1IEEgMTcgMTcgMCAxIDAgNTYgNTAuMDAwMDAwMDAwMDAwMDEgaCAtMTciIHN0cm9rZT0iI2ZmZiIgc3Ryb2tlLXdpZHRoPSI4IiBmaWxsPSJub25lIj48L3BhdGg+PHBhdGggZD0iTSA2NSA0OSBoIDE4IG0gLTkgLTkgdiAxOCIgc3Ryb2tlPSIjZmZmIiBzdHJva2Utd2lkdGg9IjUiIGZpbGw9Im5vbmUiPjwvcGF0aD48L3N2Zz4=) left no-repeat}.theChampLinkedinSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-2%20-2%2035%2039%22%3E%3Cpath%20d%3D%22M6.227%2012.61h4.19v13.48h-4.19V12.61zm2.095-6.7a2.43%202.43%200%200%201%200%204.86c-1.344%200-2.428-1.09-2.428-2.43s1.084-2.43%202.428-2.43m4.72%206.7h4.02v1.84h.058c.56-1.058%201.927-2.176%203.965-2.176%204.238%200%205.02%202.792%205.02%206.42v7.395h-4.183v-6.56c0-1.564-.03-3.574-2.178-3.574-2.18%200-2.514%201.7-2.514%203.46v6.668h-4.187V12.61z%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.theChampMediumSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20focusable%3D%22false%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%22-2%20-2%2036%2036%22%3E%3Cpath%20d%3D%22M7.8%2011a.8.8%200%200%200-.27-.7l-2-2.42v-.41h6.23L16.57%2018l4.24-10.53h5.94v.36L25%209.47a.5.5%200%200%200-.19.48v12.1a.5.5%200%200%200%20.19.48l1.68%201.64v.36h-8.4v-.36L20%2022.49c.18-.17.18-.22.18-.49v-9.77l-4.82%2012.26h-.65L9.09%2012.23v8.22a1.09%201.09%200%200%200%20.31.94l2.25%202.74v.36h-6.4v-.36l2.26-2.74a1.09%201.09%200%200%200%20.29-.94z%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.theChampOdnoklassnikiSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%22-4%20-4%2040%2040%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M16%2016.16c-3.635%200-6.58-2.945-6.58-6.58C9.42%205.945%2012.364%203%2016%203s6.582%202.945%206.582%206.58c0%203.635-2.946%206.58-6.58%206.58zm0-9.817c-1.788%200-3.236%201.448-3.236%203.237%200%201.79%201.448%203.236%203.237%203.236%201.79%200%203.24-1.447%203.24-3.236%200-1.79-1.45-3.237-3.238-3.237zm7.586%2010.62c.648%201.3-.084%201.93-1.735%202.99-1.397.9-3.315%201.238-4.566%201.368l1.048%201.05%203.877%203.877c.59.59.59%201.544%200%202.134l-.178.18c-.59.59-1.544.59-2.134%200l-3.878-3.88-3.878%203.88c-.59.59-1.543.59-2.135%200l-.176-.18c-.59-.59-.59-1.543%200-2.132l3.878-3.878%201.043-1.046c-1.25-.127-3.19-.465-4.6-1.37-1.65-1.062-2.38-1.69-1.733-2.99.37-.747%201.4-1.367%202.768-.29C13.035%2018.13%2016%2018.13%2016%2018.13s2.968%200%204.818-1.456c1.37-1.077%202.4-.457%202.768.29z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.theChampMoreSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9Ii00IC00IDM4IDM4Ij48Y2lyY2xlIGN4PSIxMCIgY3k9IjE1IiByPSIzIiBmaWxsPSJ3aGl0ZSI+PC9jaXJjbGU+PGNpcmNsZSBjeD0iMjAiIGN5PSIxMCIgcj0iMyIgZmlsbD0id2hpdGUiPjwvY2lyY2xlPjxjaXJjbGUgY3g9IjIwIiBjeT0iMjAiIHI9IjMiIGZpbGw9IndoaXRlIj48L2NpcmNsZT48cGF0aCBkPSJNIDEwIDE1IEwgMjAgMTAgbSAwIDEwIEwgMTAgMTUiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlPSIjZmZmIj48L3BhdGg+PC9zdmc+) left no-repeat}.theChampPinterestSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-2%20-2%2035%2035%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M16.539%204.5c-6.277%200-9.442%204.5-9.442%208.253%200%202.272.86%204.293%202.705%205.046.303.125.574.005.662-.33.061-.231.205-.816.27-1.06.088-.331.053-.447-.191-.736-.532-.627-.873-1.439-.873-2.591%200-3.338%202.498-6.327%206.505-6.327%203.548%200%205.497%202.168%205.497%205.062%200%203.81-1.686%207.025-4.188%207.025-1.382%200-2.416-1.142-2.085-2.545.397-1.674%201.166-3.48%201.166-4.689%200-1.081-.581-1.983-1.782-1.983-1.413%200-2.548%201.462-2.548%203.419%200%201.247.421%202.091.421%202.091l-1.699%207.199c-.505%202.137-.076%204.755-.039%205.019.021.158.223.196.314.077.13-.17%201.813-2.247%202.384-4.324.162-.587.929-3.631.929-3.631.46.876%201.801%201.646%203.227%201.646%204.247%200%207.128-3.871%207.128-9.053.003-3.918-3.317-7.568-8.361-7.568z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.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}.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}.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{height:16px;width:16px;cursor:pointer;margin-top:10px}.theChampPushIn{background:url(data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%220%200%2030%2030%22%3E%0A%3Cpath%20d%3D%22M%207%206%20q%202%206%2010%206%20v%20-6%20l%206%209%20l%20-6%209%20v%20-6%20q%20-10%202%20-10%20-12%22%20stroke-width%3D%221%22%20stroke%3D%22%23000%22%20fill%3D%22%23000%22%20stroke-linecap%3D%22round%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E) left no-repeat}.theChampPullOut{background:url(data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%220%200%2030%2030%22%3E%0A%3Cpath%20d%3D%22M%2023%206%20q%20-2%206%20-10%206%20v%20-6%20l%20-6%209%20l%206%209%20v%20-6%20q%2010%202%2010%20-12%22%20stroke-width%3D%221%22%20stroke%3D%22%23000%22%20fill%3D%22%23000%22%20stroke-linecap%3D%22round%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E) 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: #10ff00}.theChampAmazonWishListBackground{background-color: #ffe000}.theChampAOLMailBackground{background-color: #2A2A2A}.theChampAppnetBackground{background-color: #5D5D5D}.theChampBalatarinBackground{background-color: #fff}.theChampBibSonomyBackground{background-color: #000}.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: #ffd400}.theChampCare2NewsBackground{background-color: #6EB43F}.theChampCopyLinkBackground{background-color: #FFC112}.theChampCommentBackground{background-color: #444}.theChampCiteULikeBackground{background-color: #2781CD}.theChampDiaryRuBackground{background-color: #E8D8C6}.theChampDiasporaBackground{background-color: #0166FF}.theChampDiigoBackground{background-color: #4A8BCA}.theChampDoubanBackground{background-color: #497700}.theChampDraugiemBackground{background-color: #ffad66}.theChampDZoneBackground{background-color: #fff088}.theChampEvernoteBackground{background-color: #8BE056}.theChampFacebookMessengerBackground{background-color: #0084FF}.theChampFarkBackground{background-color: #555}.theChampFintelBackground{background-color:#087515}.theChampFlipboardBackground{background-color: #CC0000}.theChampFolkdBackground{background-color: #0F70B2}.theChampGoogleClassroomBackground{background-color: #FFC112}.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}.theChampKikBackground{background-color: #2A2A2A}.theChampKnownBackground{background-color: #fff101}.theChampLineBackground{background-color: #00C300}.theChampMailRuBackground{background-color: #356FAC}.theChampMendeleyBackground{background-color: #A70805}.theChampMeneameBackground{background-color: #FF7D12}.theChampMixiBackground{background-color: #EDEDED}.theChampMySpaceBackground{background-color: #2A2A2A}.theChampNetvouzBackground{background-color: #c0ff00}.theChampOdnoklassnikiBackground{background-color: #F2720C}.theChampOutlookcomBackground{background-color: #0072C6}.theChampPapalyBackground{background-color: #3AC0F6}.theChampPinboardBackground{background-color: #1341DE}.theChampPlurkBackground{background-color: #CF682F}.theChampPocketBackground{background-color: #f0f0f0}.theChampPrintFriendlyBackground{background-color: #61D1D5}.theChampProtopageBookmarksBackground{background-color: #413FFF}.theChampPushaBackground{background-color: #0072B8}.theChampQzoneBackground{background-color: #2B82D9}.theChampRefindBackground{background-color: #1492ef}.theChampRediffMyPageBackground{background-color: #D20000}.theChampRenrenBackground{background-color: #005EAC}.theChampSinaWeiboBackground{background-color: #ff0}.theChampSiteJotBackground{background-color: #ffc800}.theChampSkypeBackground{background-color: #00AFF0}.theChampSMSBackground{background-color: #6ebe45}.theChampSlashdotBackground{background-color: #004242}.theChampSvejoBackground{background-color: #fa7aa3}.theChampSymbalooFeedsBackground{background-color: #6DA8F7}.theChampTelegramBackground{background-color: #3DA5f1}.theChampThreemaBackground{background-color:#2A2A2A}.theChampTrelloBackground{background-color: #1189CE}.theChampTuentiBackground{background-color: #0075C9}.theChampTwiddlaBackground{background-color: #EDEDED}.theChampTypePadPostBackground{background-color: #2A2A2A}.theChampViadeoBackground{background-color: #2A2A2A}.theChampViberBackground{background-color: #8B628F}.theChampWaneloBackground{background-color: #fff}.theChampWebnewsBackground{background-color: #CC2512}.theChampWordPressBackground{background-color: #464646}.theChampWykopBackground{background-color: #367DA9}.theChampYahooMailBackground{background-color: #400090}.theChampYoolinkBackground{background-color: #A2C538}.theChampBehanceBackground{background-color: #053eff}.theChampFlickrBackground{background-color: #ff0084}.theChampFoursquareBackground{background-color: #f94877}.theChampGithubBackground{background-color: #2a2a2a}.theChampMediumBackground{background-color: #2a2a2a}.theChampOdnoklassnikiBackground{background-color: #F2720C}.theChampSnapchatBackground{background-color: #ffe900}.theChampVimeoBackground{background-color: #1ab7ea}.theChampYoutubeBackground{background-color: #ff0000}.theChampRSSBackground{background-color: #e3702d}.theChampGentleReaderBackground{background-color:#46aecf}.theChampBehanceSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%22-2%20-2%2036%2036%22%3E%3Cpath%20d%3D%22M3.862%208.136h5.66c1.377%200%203.19%200%204.13.566a3.705%203.705%200%200%201%201.837%203.26c0%201.66-.88%202.905-2.32%203.494v.042c1.924.397%202.97%201.838%202.97%203.76%200%202.297-1.636%204.483-4.743%204.483H3.86V8.14zm2.078%206.71h4.152c2.36%200%203.322-.856%203.322-2.493%200-2.16-1.53-2.468-3.322-2.468H5.94v4.96zm0%207.144h5.2c1.792%200%202.93-1.09%202.93-2.797%200-2.03-1.64-2.598-3.388-2.598H5.94v5.395zm22.017-1.833C27.453%2022.65%2025.663%2024%2023.127%2024c-3.607%200-5.31-2.49-5.422-5.944%200-3.386%202.23-5.878%205.31-5.878%204%200%205.225%203.74%205.116%206.47h-8.455c-.067%201.966%201.05%203.716%203.52%203.716%201.53%200%202.6-.742%202.928-2.206h1.838zm-1.793-3.15c-.088-1.77-1.42-3.19-3.256-3.19-1.946%200-3.106%201.466-3.236%203.19h6.492zM20.614%208h4.935v1.68h-4.94z%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.theChampFlickrSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%22-2%20-2%2036%2036%22%3E%3Cg%20fill%3D%22%23fff%22%3E%3Ccircle%20cx%3D%2223%22%20cy%3D%2216%22%20r%3D%226%22%3E%3C%2Fcircle%3E%3Ccircle%20cx%3D%229%22%20cy%3D%2216%22%20r%3D%226%22%3E%3C%2Fcircle%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.theChampFoursquareSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%22-4%20-4%2040%2040%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M21.516%203H7.586C5.66%203%205%204.358%205%205.383v21.995c0%201.097.65%201.407.958%201.53.31.126%201.105.206%201.676-.36l6.72-7.455c.105-.12.49-.284.552-.284h4.184c1.79%200%201.81-1.45%201.997-2.206.157-.63%201.946-9.57%202.58-12.395.523-2.32-.104-3.21-2.15-3.21zM20.2%209.682c-.07.33-.368.66-.75.693h-5.44c-.61-.034-1.108.422-1.108%201.032v.665c0%20.61.5%201.24%201.108%201.24h4.607c.43%200%20.794.276.7.737-.093.46-.573%202.82-.627%203.07-.052.254-.282.764-.716.764h-3.62c-.682%200-1.36-.008-1.816.56-.458.573-4.534%205.293-4.534%205.293V6.403c0-.438.31-.746.715-.74h11.274c.41-.006.915.41.834%201L20.2%209.68z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.theChampGithubSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%22-2%20-2%2036%2036%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M16%203.32c-7.182%200-13%205.82-13%2013%200%205.754%203.72%2010.612%208.89%2012.335.65.114.893-.276.893-.617%200-.31-.016-1.333-.016-2.42-3.266.6-4.11-.797-4.37-1.53-.147-.373-.78-1.527-1.334-1.835-.455-.244-1.105-.845-.016-.86%201.024-.017%201.755.942%202%201.332%201.17%201.966%203.038%201.414%203.785%201.073.114-.845.455-1.414.83-1.74-2.893-.324-5.916-1.445-5.916-6.418%200-1.414.504-2.584%201.333-3.494-.13-.325-.59-1.657.13-3.445%200%200%201.085-.34%203.57%201.337%201.04-.293%202.146-.44%203.25-.44s2.21.147%203.25.44c2.49-1.69%203.58-1.337%203.58-1.337.714%201.79.26%203.12.13%203.446.828.91%201.332%202.064%201.332%203.494%200%204.99-3.04%206.094-5.93%206.42.47.405.876%201.185.876%202.404%200%201.74-.016%203.136-.016%203.575%200%20.34.244.743.894.613C25.28%2026.933%2029%2022.053%2029%2016.32c0-7.182-5.817-13-13-13z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.theChampSnapchatSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M26.177%2020.978c-2.867-.473-4.157-3.414-4.21-3.54l-.01-.02c-.153-.31-.187-.57-.1-.772.164-.39.774-.583%201.177-.71.113-.037.22-.07.306-.105.715-.28%201.073-.625%201.066-1.03-.006-.312-.252-.593-.642-.732a1.168%201.168%200%200%200-.44-.084.975.975%200%200%200-.405.083c-.34.16-.65.246-.91.258a.789.789%200%200%201-.357-.087l.027-.45.005-.062c.09-1.432.203-3.215-.266-4.264C20.03%206.34%2017.073%206.1%2016.2%206.1h-.052l-.363.003c-.87%200-3.818.243-5.208%203.36-.47%201.05-.357%202.833-.268%204.264l.03.513a.83.83%200%200%201-.41.09c-.276%200-.6-.087-.97-.26a.795.795%200%200%200-.335-.067c-.43%200-.946.282-1.026.704-.06.305.077.748%201.054%201.134.087.036.193.07.305.105.403.128%201.012.322%201.18.71.084.203.05.463-.103.773l-.01.022c-.054.125-1.344%203.068-4.21%203.54a.437.437%200%200%200-.366.455.6.6%200%200%200%20.048.196c.216.504%201.123.87%202.775%201.13.055.075.113.34.148.5.036.16.07.32.12.494.05.17.18.374.514.374.133%200%20.292-.03.475-.067.275-.053.652-.127%201.124-.127.26%200%20.532.022.805.067.532.09.985.41%201.51.78.75.53%201.6%201.132%202.894%201.132.034%200%20.07%200%20.105-.005.04.002.095.004.153.004%201.29%200%202.142-.6%202.892-1.132.526-.37.978-.69%201.51-.78.274-.045.545-.068.807-.068.45%200%20.805.056%201.123.12.2.037.36.057.476.057h.024c.246%200%20.42-.13.488-.365.05-.17.086-.327.12-.49.037-.16.094-.422.15-.496%201.65-.256%202.56-.624%202.773-1.125a.568.568%200%200%200%20.047-.196.433.433%200%200%200-.363-.458z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.theChampTumblrSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-2%20-2%2036%2036%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M20.775%2021.962c-.37.177-1.08.33-1.61.345-1.598.043-1.907-1.122-1.92-1.968v-6.217h4.007V11.1H17.26V6.02h-2.925s-.132.044-.144.15c-.17%201.556-.895%204.287-3.923%205.378v2.578h2.02v6.522c0%202.232%201.647%205.404%205.994%205.33%201.467-.025%203.096-.64%203.456-1.17l-.96-2.846z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.theChampVimeoSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%22-2%20-2%2036%2036%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M26.926%2010.627c-.103%202.25-1.675%205.332-4.716%209.245C19.066%2023.957%2016.406%2026%2014.23%2026c-1.348%200-2.49-1.244-3.42-3.732l-1.867-6.844C8.25%2012.937%207.51%2011.69%206.715%2011.69c-.173%200-.778.365-1.815%201.09l-1.088-1.4a300.012%20300.012%200%200%200%203.374-3.01c1.522-1.315%202.666-2.007%203.427-2.076%201.8-.173%202.907%201.057%203.322%203.69.45%202.84.76%204.608.935%205.3.52%202.356%201.09%203.534%201.713%203.534.483%200%201.21-.764%202.18-2.294.97-1.528%201.488-2.692%201.558-3.49.14-1.32-.38-1.98-1.553-1.98-.554%200-1.125.126-1.712.378%201.137-3.722%203.308-5.53%206.513-5.426%202.378.068%203.498%201.61%203.36%204.62z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.theChampRSSSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%22-4%20-4%2040%2040%22%3E%3Cg%20fill%3D%22%23fff%22%3E%3Cellipse%20cx%3D%227.952%22%20cy%3D%2224.056%22%20rx%3D%222.952%22%20ry%3D%222.944%22%3E%3C%2Fellipse%3E%3Cpath%20d%3D%22M5.153%2016.625c2.73%200%205.295%201.064%207.22%202.996a10.2%2010.2%200%200%201%202.996%207.255h4.2c0-7.962-6.47-14.44-14.42-14.44v4.193zm.007-7.432c9.724%200%2017.636%207.932%2017.636%2017.682H27C27%2014.812%2017.203%205%205.16%205v4.193z%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.theChampMeWeSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%22-3%20-3%2038%2038%22%3E%3Cg%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M9.636%2010.427a1.22%201.22%200%201%201-2.44%200%201.22%201.22%200%201%201%202.44%200zM15.574%2010.431a1.22%201.22%200%200%201-2.438%200%201.22%201.22%200%201%201%202.438%200zM22.592%2010.431a1.221%201.221%200%201%201-2.443%200%201.221%201.221%200%200%201%202.443%200zM29.605%2010.431a1.221%201.221%200%201%201-2.442%200%201.221%201.221%200%200%201%202.442%200zM3.605%2013.772c0-.471.374-.859.859-.859h.18c.374%200%20.624.194.789.457l2.935%204.597%202.95-4.611c.18-.291.43-.443.774-.443h.18c.485%200%20.859.387.859.859v8.113a.843.843%200%200%201-.859.845.857.857%200%200%201-.845-.845V16.07l-2.366%203.559c-.18.276-.402.443-.72.443-.304%200-.526-.167-.706-.443l-2.354-3.53V21.9c0%20.471-.374.83-.845.83a.815.815%200%200%201-.83-.83v-8.128h-.001zM14.396%2014.055a.9.9%200%200%201-.069-.333c0-.471.402-.83.872-.83.415%200%20.735.263.845.624l2.23%206.66%202.187-6.632c.139-.402.428-.678.859-.678h.124c.428%200%20.735.278.859.678l2.187%206.632%202.23-6.675c.126-.346.415-.609.83-.609.457%200%20.845.361.845.817a.96.96%200%200%201-.083.346l-2.867%208.032c-.152.43-.471.706-.887.706h-.165c-.415%200-.721-.263-.872-.706l-2.161-6.328-2.16%206.328c-.152.443-.47.706-.887.706h-.165c-.415%200-.72-.263-.887-.706l-2.865-8.032z%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.theChampYoutubeSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M26.78%2011.6s-.215-1.515-.875-2.183c-.837-.876-1.774-.88-2.204-.932-3.075-.222-7.693-.222-7.693-.222h-.01s-4.618%200-7.697.222c-.43.05-1.368.056-2.205.932-.66.668-.874%202.184-.874%202.184S5%2013.386%205%2015.166v1.67c0%201.78.22%203.56.22%203.56s.215%201.516.874%202.184c.837.875%201.936.85%202.426.94%201.76.17%207.48.22%207.48.22s4.623-.007%207.7-.23c.43-.05%201.37-.056%202.205-.932.66-.668.875-2.184.875-2.184s.22-1.78.22-3.56v-1.67c0-1.78-.22-3.56-.22-3.56zm-13.052%207.254v-6.18l5.944%203.1-5.944%203.08z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.theChampTelegramSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%22-1%20-3%2036%2036%22%20width%3D%22100%25%22%20height%3D%22100%25%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M25.515%206.896L6.027%2014.41c-1.33.534-1.322%201.276-.243%201.606l5%201.56%201.72%205.66c.226.625.115.873.77.873.506%200%20.73-.235%201.012-.51l2.43-2.363%205.056%203.734c.93.514%201.602.25%201.834-.863l3.32-15.638c.338-1.363-.52-1.98-1.41-1.577z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.theChampInstagramSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20id%3D%22Layer_1%22%20version%3D%221.1%22%20viewBox%3D%22-10%20-10%20148%20148%22%20xml%3Aspace%3D%22preserve%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E%3Cg%3E%3Cg%3E%3Cpath%20d%3D%22M86%2C112H42c-14.336%2C0-26-11.663-26-26V42c0-14.337%2C11.664-26%2C26-26h44c14.337%2C0%2C26%2C11.663%2C26%2C26v44%20%20%20%20C112%2C100.337%2C100.337%2C112%2C86%2C112z%20M42%2C24c-9.925%2C0-18%2C8.074-18%2C18v44c0%2C9.925%2C8.075%2C18%2C18%2C18h44c9.926%2C0%2C18-8.075%2C18-18V42%20%20%20%20c0-9.926-8.074-18-18-18H42z%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3Cg%3E%3Cpath%20d%3D%22M64%2C88c-13.234%2C0-24-10.767-24-24c0-13.234%2C10.766-24%2C24-24s24%2C10.766%2C24%2C24C88%2C77.233%2C77.234%2C88%2C64%2C88z%20M64%2C48c-8.822%2C0-16%2C7.178-16%2C16s7.178%2C16%2C16%2C16c8.822%2C0%2C16-7.178%2C16-16S72.822%2C48%2C64%2C48z%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3Cg%3E%3Ccircle%20cx%3D%2289.5%22%20cy%3D%2238.5%22%20fill%3D%22%23fff%22%20r%3D%225.5%22%3E%3C%2Fcircle%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.theChampWhatsappBackground a,i.theChampLineBackground a,i.theChampViberBackground a{display:inline!important}.the_champ_sharing_container a{padding:0!important;box-shadow:none!important;border:none!important}div.course_instructor_widget .the_champ_vertical_sharing{display: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%}}@media screen and (max-width:475px){#the_champ_sharing_more_content .all-services ul li{width:100%!important;}}#ss_openid{border:1px solid gray;display:inline;font-family:"Trebuchet MS";font-size:12px;width:98%;padding:.35em .325em .75em;margin-bottom:20px}#ss_openid form{margin-top:25px;margin-left:0;padding:0;background:transparent;-webkit-box-shadow:none;box-shadow:none}#ss_openid input{font-family:"Trebuchet MS";font-size:12px;width:100px;float:left}#ss_openid input[type=submit]{background:#767676;padding:.75em 2em;border:0;-webkit-border-radius:2px;border-radius:2px;-webkit-box-shadow:none;box-shadow:none;color:#fff;cursor:pointer;display:inline-block;font-weight:800;line-height:1;text-shadow:none;-webkit-transition:background .2s;transition:background .2s}#ss_openid legend{color:#FF6200;float:left;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;display:table;max-width:100%;padding:0;white-space:normal}#ss_openid input.openid_login{background-color:#fff;background-position:0 50%;color:#000;width:220px;margin-right:10px;height:30px;margin-bottom:5px;background:#fff;background-image:-webkit-linear-gradient(rgba(255,255,255,0),rgba(255,255,255,0));border:1px solid #bbb;-webkit-border-radius:3px;border-radius:3px;display:block;padding:.7em;line-height:1.5}#ss_openid a{color:silver}#ss_openid a:hover{color:#5e5e5e}.heateor_ms_subscribe_option{line-height: 14px;margin-top: 8px;}.heateor_ms_subscribe_option input.heateor_ms_checkbox, .heateor_ms_subscribe_option label.heateor_ms_checkbox_label{float:left;font-size: 15px;margin: 0;color: #666;}.heateor_ms_subscribe_option input.heateor_ms_checkbox{margin: 0 4px 0 0;width: 15px;height: 15px;float: left;}div.heateor_ss_sl_optin_container{clear:both}div.heateor_ss_sl_optin_container a{color:blue}div.heateor_ss_sl_optin_container label{font-size:11px;font-weight:normal}input.heateor_ss_social_login_optin{vertical-align:middle}
helper.php CHANGED
@@ -560,7 +560,7 @@ function the_champ_account_linking(){
560
  }
561
  $icons_container = '<div class="the_champ_login_container">';
562
  if(isset($theChampLoginOptions['gdpr_enable'])){
563
- $gdprOptIn = '<div class="heateor_ss_sl_optin_container"><label><input type="checkbox" class="heateor_ss_social_login_optin" value="1" />'. str_replace($theChampLoginOptions['ppu_placeholder'], '<a href="'. $theChampLoginOptions['privacy_policy_url'] .'" target="_blank">'. $theChampLoginOptions['ppu_placeholder'] .'</a>', wp_strip_all_tags($theChampLoginOptions['privacy_policy_optin_text'])) .'</label></div>';
564
  }
565
  if(isset($theChampLoginOptions['gdpr_enable']) && $theChampLoginOptions['gdpr_placement'] == 'above'){
566
  $icons_container .= $gdprOptIn;
560
  }
561
  $icons_container = '<div class="the_champ_login_container">';
562
  if(isset($theChampLoginOptions['gdpr_enable'])){
563
+ $gdprOptIn = '<div class="heateor_ss_sl_optin_container"><label><input type="checkbox" class="heateor_ss_social_login_optin" value="1" />'. str_replace(array($theChampLoginOptions['ppu_placeholder'], $theChampLoginOptions['tc_placeholder']), array('<a href="'. $theChampLoginOptions['privacy_policy_url'] .'" target="_blank">'. $theChampLoginOptions['ppu_placeholder'] .'</a>', '<a href="'. $theChampLoginOptions['tc_url'] .'" target="_blank">'. $theChampLoginOptions['tc_placeholder'] .'</a>'), wp_strip_all_tags($theChampLoginOptions['privacy_policy_optin_text'])) .'</label></div>';
564
  }
565
  if(isset($theChampLoginOptions['gdpr_enable']) && $theChampLoginOptions['gdpr_placement'] == 'above'){
566
  $icons_container .= $gdprOptIn;
inc/social_login.php CHANGED
@@ -25,7 +25,7 @@ function the_champ_login_button($widget = false){
25
  $html .= '<div class="the_champ_login_container">';
26
  $gdprOptIn = '';
27
  if(isset($theChampLoginOptions['gdpr_enable'])){
28
- $gdprOptIn = '<div class="heateor_ss_sl_optin_container"><label><input type="checkbox" class="heateor_ss_social_login_optin" value="1" />'. str_replace($theChampLoginOptions['ppu_placeholder'], '<a href="'. $theChampLoginOptions['privacy_policy_url'] .'" target="_blank">'. $theChampLoginOptions['ppu_placeholder'] .'</a>', wp_strip_all_tags($theChampLoginOptions['privacy_policy_optin_text'])) .'</label></div>';
29
  }
30
  if(isset($theChampLoginOptions['gdpr_enable']) && $theChampLoginOptions['gdpr_placement'] == 'above'){
31
  $html .= $gdprOptIn;
25
  $html .= '<div class="the_champ_login_container">';
26
  $gdprOptIn = '';
27
  if(isset($theChampLoginOptions['gdpr_enable'])){
28
+ $gdprOptIn = '<div class="heateor_ss_sl_optin_container"><label><input type="checkbox" class="heateor_ss_social_login_optin" value="1" />'. str_replace(array($theChampLoginOptions['ppu_placeholder'], $theChampLoginOptions['tc_placeholder']), array('<a href="'. $theChampLoginOptions['privacy_policy_url'] .'" target="_blank">'. $theChampLoginOptions['ppu_placeholder'] .'</a>', '<a href="'. $theChampLoginOptions['tc_url'] .'" target="_blank">'. $theChampLoginOptions['tc_placeholder'] .'</a>'), wp_strip_all_tags($theChampLoginOptions['privacy_policy_optin_text'])) .'</label></div>';
29
  }
30
  if(isset($theChampLoginOptions['gdpr_enable']) && $theChampLoginOptions['gdpr_placement'] == 'above'){
31
  $html .= $gdprOptIn;
inc/social_sharing_networks.php CHANGED
@@ -21,7 +21,7 @@ function heateor_ss_fetch_sharing_networks($sharingType){
21
  'twitter' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="theChampSharing theChamp%ucfirst_network%Background" onclick=\'theChampPopup("http://twitter.com/intent/tweet?%via_twitter_username%text=%wpseo_post_title%&url=%encoded_post_url%")\'><ss style="%inner_style%" class="theChampSharingSvg theChamp%ucfirst_network%Svg"></ss></i></li>',
22
  'linkedin' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="theChampSharing theChamp%ucfirst_network%Background" onclick=\'theChampPopup("http://www.linkedin.com/shareArticle?mini=true&url=%encoded_post_url%&title=%post_title%")\'><ss style="%inner_style%" class="theChampSharingSvg theChamp%ucfirst_network%Svg"></ss></i></li>',
23
  'print' => '<li class="%li_class%"><i %style% alt="Print" Title="Print" class="theChampSharing theChamp%ucfirst_network%Background" onclick=\'window.print()\'><ss style="display:block" class="theChampSharingSvg theChamp%ucfirst_network%Svg"></ss></i></li>',
24
- 'email' => '<li class="%li_class%"><i %style% alt="Email" Title="Email" class="theChampSharing theChamp%ucfirst_network%Background" onclick="window.location.href = \'mailto:?subject=\' + decodeURIComponent(\'%post_title%\' ).replace(\'&\', \'%26\') + \'&body=\' + decodeURIComponent(\'%encoded_post_url%\' )"><ss style="display:block" class="theChampSharingSvg theChamp%ucfirst_network%Svg"></ss></i></li>',
25
  'yahoo' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="theChampSharing theChamp%ucfirst_network%Background" onclick=\'theChampPopup("http://bookmarks.yahoo.com/toolbar/SaveBM/?u=%encoded_post_url%&t=%post_title%")\'><ss style="%inner_style%" class="theChampSharingSvg theChamp%ucfirst_network%Svg"></ss></i></li>',
26
  'reddit' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="theChampSharing theChamp%ucfirst_network%Background" onclick=\'theChampPopup("http://reddit.com/submit?url=%encoded_post_url%&title=%post_title%")\'><ss style="%inner_style%" class="theChampSharingSvg theChamp%ucfirst_network%Svg"></ss></i></li>',
27
  'digg' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="theChampSharing theChamp%ucfirst_network%Background" onclick=\'theChampPopup("http://digg.com/submit?url=%encoded_post_url%&title=%post_title%")\'><ss style="%inner_style%" class="theChampSharingSvg theChamp%ucfirst_network%Svg"></ss></i></li>',
21
  'twitter' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="theChampSharing theChamp%ucfirst_network%Background" onclick=\'theChampPopup("http://twitter.com/intent/tweet?%via_twitter_username%text=%wpseo_post_title%&url=%encoded_post_url%")\'><ss style="%inner_style%" class="theChampSharingSvg theChamp%ucfirst_network%Svg"></ss></i></li>',
22
  'linkedin' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="theChampSharing theChamp%ucfirst_network%Background" onclick=\'theChampPopup("http://www.linkedin.com/shareArticle?mini=true&url=%encoded_post_url%&title=%post_title%")\'><ss style="%inner_style%" class="theChampSharingSvg theChamp%ucfirst_network%Svg"></ss></i></li>',
23
  'print' => '<li class="%li_class%"><i %style% alt="Print" Title="Print" class="theChampSharing theChamp%ucfirst_network%Background" onclick=\'window.print()\'><ss style="display:block" class="theChampSharingSvg theChamp%ucfirst_network%Svg"></ss></i></li>',
24
+ 'email' => '<li class="%li_class%"><i %style% alt="Email" Title="Email" class="theChampSharing theChamp%ucfirst_network%Background" onclick="window.open(\'mailto:?subject=\' + decodeURIComponent(\'%post_title%\' ).replace(\'&\', \'%26\') + \'&body=\' + decodeURIComponent(\'%encoded_post_url%\' ), \'_blank\')"><ss style="display:block" class="theChampSharingSvg theChamp%ucfirst_network%Svg"></ss></i></li>',
25
  'yahoo' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="theChampSharing theChamp%ucfirst_network%Background" onclick=\'theChampPopup("http://bookmarks.yahoo.com/toolbar/SaveBM/?u=%encoded_post_url%&t=%post_title%")\'><ss style="%inner_style%" class="theChampSharingSvg theChamp%ucfirst_network%Svg"></ss></i></li>',
26
  'reddit' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="theChampSharing theChamp%ucfirst_network%Background" onclick=\'theChampPopup("http://reddit.com/submit?url=%encoded_post_url%&title=%post_title%")\'><ss style="%inner_style%" class="theChampSharingSvg theChamp%ucfirst_network%Svg"></ss></i></li>',
27
  'digg' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="theChampSharing theChamp%ucfirst_network%Background" onclick=\'theChampPopup("http://digg.com/submit?url=%encoded_post_url%&title=%post_title%")\'><ss style="%inner_style%" class="theChampSharingSvg theChamp%ucfirst_network%Svg"></ss></i></li>',
js/front/combined.js CHANGED
@@ -1,8 +1,6 @@
1
  theChampFBKey = typeof theChampFBKey != 'undefined' ? theChampFBKey : '', theChampFBLang = typeof theChampFBLang != 'undefined' ? theChampFBLang : theChampDefaultLang, theChampFbIosLogin = typeof theChampFbIosLogin != 'undefined' ? theChampFbIosLogin : 0;
2
  // general.js
3
  function theChampPopup(e){window.open(e,"_blank","height=520,width=770,left=315,top=80,resizable,scrollbars,toolbar=0,personalbar=0,menubar=no,location=no,directories=no,status")}function theChampStrReplace(e,t,n){for(var r=0;r<e.length;r++){n=n.replace(new RegExp(e[r],"g"),t[r])}return n}function theChampCallAjax(e){if(typeof jQuery!="undefined"){e()}else{theChampGetScript("https://code.jquery.com/jquery-latest.min.js",e)}}function theChampGetScript(e,t){var n=document.createElement("script");n.src=e;var r=document.getElementsByTagName("head")[0],i=false;n.onload=n.onreadystatechange=function(){if(!i&&(!this.readyState||this.readyState=="loaded"||this.readyState=="complete")){i=true;t();n.onload=n.onreadystatechange=null;r.removeChild(n)}};r.appendChild(n)}function theChampGetElementsByClass(e,t){if(e.getElementsByClassName){return e.getElementsByClassName(t)}else{return function(e,t){if(t==null){t=document}var n=[],r=t.getElementsByTagName("*"),i=r.length,s=new RegExp("(^|\\s)"+e+"(\\s|$)"),o,u;for(o=0,u=0;o<i;o++){if(s.test(r[o].className)){n[u]=r[o];u++}}return n}(t,e)}}if(typeof String.prototype.trim!=="function"){String.prototype.trim=function(){return this.replace(/^\s+|\s+$/g,"")}}
4
- function heateorSsBrowserMsg(){var a=document.createElement("div");a.innerHTML='<button id="heateor_ss_browser_msg_close" class="close-button separated"><img src="'+theChampCloseIconPath+'" /></button><div id="the_champ_sharing_more_content"><div class="all-services" style="padding:20px 10px 0px 10px;height:auto;"><p>'+heateorSsSDKBlockedMsg+"</p></div></div>",a.setAttribute("id","the_champ_sharing_more_providers"),a.setAttribute("style","height:auto;");var b=document.createElement("div");b.setAttribute("id","heateor_ss_browser_popup_bg"),jQuery("body").append(a).append(b),document.getElementById("heateor_ss_browser_popup_bg").onclick=document.getElementById("heateor_ss_browser_msg_close").onclick=function(){a.parentNode.removeChild(a),b.parentNode.removeChild(b)}}
5
- "undefined"!=typeof heateorSsSDKBlockedMsg&&jQuery(function(){"shown"!=localStorage.getItem("heateorSsBrowserMsg")&&(jQuery("<img/>").attr("src","//apps.facebook.com/favicon.ico").error(function(){heateorSsBrowserMsg()}).css("display","none").appendTo(document.body),localStorage.setItem("heateorSsBrowserMsg","shown"))});
6
  function heateorSsLJLoginPopup(){var a=document.createElement("div");a.innerHTML='<button id="heateor_ss_lj_popup_close" class="close-button separated"><img src="'+theChampCloseIconPath+'" /></button><div id="the_champ_sharing_more_content"><div class="all-services" style="padding:20px 10px 0px 10px;height:auto;"><fieldset id="ss_openid"><legend>LiveJournal Login</legend><form action="'+theChampLJAuthUrl+'" method="post" onsubmit="this.login.disabled=true;"><input type="hidden" name="openid_action" value="SuperSocializerLogin"><div style="clear:both">'+theChampLJLoginUsernameString+'</div><div style="clear:both"><input type="text" name="openid_url" required class="openid_login"><input type="submit" name="login" value="Login"></div></form></fieldset></div></div></div>',a.setAttribute("id","the_champ_sharing_more_providers"),a.setAttribute("style","height:auto;");var b=document.createElement("div");b.setAttribute("id","heateor_ss_lj_popup_bg"),jQuery("body").append(a).append(b),document.getElementById("heateor_ss_lj_popup_bg").onclick=document.getElementById("heateor_ss_lj_popup_close").onclick=function(){a.parentNode.removeChild(a),b.parentNode.removeChild(b)}}function theChampGetCookie(e){for(var t=e+"=",a=document.cookie.split(";"),h=0;h<a.length;h++){for(var i=a[h];" "==i.charAt(0);)i=i.substring(1,i.length);if(0==i.indexOf(t))return i.substring(t.length,i.length)}return null}
7
  // common.js
8
  function theChampLoginPopup(e){if("undefined"!=typeof theChampSameTabLogin&&theChampSameTabLogin==1){location.href=e}else{window.open(e,"_blank","height=520,width=770,left=315,top=80,resizable,scrollbars,toolbar=0,personalbar=0,menubar=no,location=no,directories=no,status")}}function theChampLoadingIcon(){jQuery(".the_champ_login_container").html('<img id="the_champ_loading_image" src="'+theChampLoadingImgPath+'" />')}function theChampInitiateLogin(e){var t=jQuery(e).parents("div.the_champ_login_container").find(".heateor_ss_social_login_optin");if(0==t.length||jQuery(t).is(":checked")){var a=e.getAttribute("alt");"Login with Facebook"==a?theChampPopup(theChampFacebookAuthUrl):"Login with Twitch"==a?theChampPopup(theChampTwitchAuthUrl):"Login with LiveJournal"==a?heateorSsLJLoginPopup():"Login with Steam"==a?theChampPopup(theChampSteamAuthUrl):"Login with Twitter"==a?theChampPopup(theChampTwitterAuthUrl):"Login with Xing"==a?theChampPopup(theChampXingAuthUrl):("Login with Linkedin"==a&&theChampPopup(theChampLinkedinAuthUrl),"Login with Google"==a?theChampPopup(theChampGoogleAuthUrl):"Login with Vkontakte"==a?theChampPopup(theChampVkontakteAuthUrl):"Login with Instagram"==a&&theChampInitializeInstaLogin())}else t.length>0&&jQuery(t).parent().css("color","red")}function theChampDisplayLoginIcon(e,t){if("undefined"!=typeof jQuery)for(var a=0;a<t.length;a++)jQuery("."+t[a]).css("display","block");else for(a=0;a<t.length;a++)for(var h=theChampGetElementsByClass(e,t[a]),i=0;i<h.length;i++)h[i].style.display="block"}function theChampValidateEmail(e){return/^(([^<>()[\]\\.,;:\s@\"]+(\.[^<>()[\]\\.,;:\s@\"]+)*)|(\".+\"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/.test(e)}function the_champ_save_email(e){var t=document.getElementById("the_champ_email").value.trim(),a=document.getElementById("the_champ_confirm_email").value.trim();return"save"!=e.id||theChampValidateEmail(t)?t!=a?(document.getElementById("the_champ_error").innerHTML="Email addresses do not match",void jQuery("#TB_ajaxContent").css("height","auto")):void theChampCallAjax(function(){theChampSaveEmail(e.id,t)}):(document.getElementById("the_champ_error").innerHTML=theChampEmailPopupErrorMsg,void jQuery("#TB_ajaxContent").css("height","auto"))}function theChampSaveEmail(e,t){document.getElementById("the_champ_error").innerHTML='<img src="'+theChampLoadingImgPath+'" />',jQuery.ajax({type:"POST",dataType:"json",url:theChampAjaxUrl,data:{action:"the_champ_save_email",elemId:e,email:t,id:theChampEmailPopupUniqueId},success:function(e){window.history.pushState({html:"html",pageTitle:"page title"},"","?done=1"),1==e.status&&e.message.response&&"success"==e.message.response?location.href=e.message.url:1==e.status&&"success"==e.message?location.href=theChampRegRedirectionUrl:1==e.status&&"cancelled"==e.message?tb_remove():1==e.status&&"verify"==e.message?document.getElementById("TB_ajaxContent").innerHTML="<strong>"+theChampEmailPopupVerifyMessage+"</strong>":0==e.status&&(document.getElementById("the_champ_error").innerHTML=e.message,jQuery("#TB_ajaxContent").css("height","auto"))},error:function(e,t,a){location.href=decodeURIComponent(theChampRedirectionUrl)}})}function theChampCapitaliseFirstLetter2(e){return e.charAt(0).toUpperCase()+e.slice(1)}if(void 0===theChampLinkingRedirection)var theChampLinkingRedirection="";theChampVerified&&theChampLoadEvent(function(){tb_show(theChampPopupTitle,theChampAjaxUrl)}),theChampEmailPopup&&theChampLoadEvent(function(){tb_show(theChampEmailPopupTitle,theChampEmailAjaxUrl)});var theChampCommentFormLogin=!1;theChampLoadEvent(function(){null!=theChampGetCookie("heateorSsSLOptin")&&jQuery("input.heateor_ss_social_login_optin").prop("checked",!0)}),jQuery("input.heateor_ss_social_login_optin").click(function(){if(jQuery(this).is(":checked")){if(null==theChampGetCookie("heateorSsSLOptin")){var e=new Date;e.setTime(e.getTime()+31536e6),document.cookie="heateorSsSLOptin=1; expires="+e.toUTCString()+"; path=/"}}else document.cookie="heateorSsSLOptin=; expires=Fri, 02 Jan 1970 00:00:00 UTC; path=/"});
1
  theChampFBKey = typeof theChampFBKey != 'undefined' ? theChampFBKey : '', theChampFBLang = typeof theChampFBLang != 'undefined' ? theChampFBLang : theChampDefaultLang, theChampFbIosLogin = typeof theChampFbIosLogin != 'undefined' ? theChampFbIosLogin : 0;
2
  // general.js
3
  function theChampPopup(e){window.open(e,"_blank","height=520,width=770,left=315,top=80,resizable,scrollbars,toolbar=0,personalbar=0,menubar=no,location=no,directories=no,status")}function theChampStrReplace(e,t,n){for(var r=0;r<e.length;r++){n=n.replace(new RegExp(e[r],"g"),t[r])}return n}function theChampCallAjax(e){if(typeof jQuery!="undefined"){e()}else{theChampGetScript("https://code.jquery.com/jquery-latest.min.js",e)}}function theChampGetScript(e,t){var n=document.createElement("script");n.src=e;var r=document.getElementsByTagName("head")[0],i=false;n.onload=n.onreadystatechange=function(){if(!i&&(!this.readyState||this.readyState=="loaded"||this.readyState=="complete")){i=true;t();n.onload=n.onreadystatechange=null;r.removeChild(n)}};r.appendChild(n)}function theChampGetElementsByClass(e,t){if(e.getElementsByClassName){return e.getElementsByClassName(t)}else{return function(e,t){if(t==null){t=document}var n=[],r=t.getElementsByTagName("*"),i=r.length,s=new RegExp("(^|\\s)"+e+"(\\s|$)"),o,u;for(o=0,u=0;o<i;o++){if(s.test(r[o].className)){n[u]=r[o];u++}}return n}(t,e)}}if(typeof String.prototype.trim!=="function"){String.prototype.trim=function(){return this.replace(/^\s+|\s+$/g,"")}}
 
 
4
  function heateorSsLJLoginPopup(){var a=document.createElement("div");a.innerHTML='<button id="heateor_ss_lj_popup_close" class="close-button separated"><img src="'+theChampCloseIconPath+'" /></button><div id="the_champ_sharing_more_content"><div class="all-services" style="padding:20px 10px 0px 10px;height:auto;"><fieldset id="ss_openid"><legend>LiveJournal Login</legend><form action="'+theChampLJAuthUrl+'" method="post" onsubmit="this.login.disabled=true;"><input type="hidden" name="openid_action" value="SuperSocializerLogin"><div style="clear:both">'+theChampLJLoginUsernameString+'</div><div style="clear:both"><input type="text" name="openid_url" required class="openid_login"><input type="submit" name="login" value="Login"></div></form></fieldset></div></div></div>',a.setAttribute("id","the_champ_sharing_more_providers"),a.setAttribute("style","height:auto;");var b=document.createElement("div");b.setAttribute("id","heateor_ss_lj_popup_bg"),jQuery("body").append(a).append(b),document.getElementById("heateor_ss_lj_popup_bg").onclick=document.getElementById("heateor_ss_lj_popup_close").onclick=function(){a.parentNode.removeChild(a),b.parentNode.removeChild(b)}}function theChampGetCookie(e){for(var t=e+"=",a=document.cookie.split(";"),h=0;h<a.length;h++){for(var i=a[h];" "==i.charAt(0);)i=i.substring(1,i.length);if(0==i.indexOf(t))return i.substring(t.length,i.length)}return null}
5
  // common.js
6
  function theChampLoginPopup(e){if("undefined"!=typeof theChampSameTabLogin&&theChampSameTabLogin==1){location.href=e}else{window.open(e,"_blank","height=520,width=770,left=315,top=80,resizable,scrollbars,toolbar=0,personalbar=0,menubar=no,location=no,directories=no,status")}}function theChampLoadingIcon(){jQuery(".the_champ_login_container").html('<img id="the_champ_loading_image" src="'+theChampLoadingImgPath+'" />')}function theChampInitiateLogin(e){var t=jQuery(e).parents("div.the_champ_login_container").find(".heateor_ss_social_login_optin");if(0==t.length||jQuery(t).is(":checked")){var a=e.getAttribute("alt");"Login with Facebook"==a?theChampPopup(theChampFacebookAuthUrl):"Login with Twitch"==a?theChampPopup(theChampTwitchAuthUrl):"Login with LiveJournal"==a?heateorSsLJLoginPopup():"Login with Steam"==a?theChampPopup(theChampSteamAuthUrl):"Login with Twitter"==a?theChampPopup(theChampTwitterAuthUrl):"Login with Xing"==a?theChampPopup(theChampXingAuthUrl):("Login with Linkedin"==a&&theChampPopup(theChampLinkedinAuthUrl),"Login with Google"==a?theChampPopup(theChampGoogleAuthUrl):"Login with Vkontakte"==a?theChampPopup(theChampVkontakteAuthUrl):"Login with Instagram"==a&&theChampInitializeInstaLogin())}else t.length>0&&jQuery(t).parent().css("color","red")}function theChampDisplayLoginIcon(e,t){if("undefined"!=typeof jQuery)for(var a=0;a<t.length;a++)jQuery("."+t[a]).css("display","block");else for(a=0;a<t.length;a++)for(var h=theChampGetElementsByClass(e,t[a]),i=0;i<h.length;i++)h[i].style.display="block"}function theChampValidateEmail(e){return/^(([^<>()[\]\\.,;:\s@\"]+(\.[^<>()[\]\\.,;:\s@\"]+)*)|(\".+\"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/.test(e)}function the_champ_save_email(e){var t=document.getElementById("the_champ_email").value.trim(),a=document.getElementById("the_champ_confirm_email").value.trim();return"save"!=e.id||theChampValidateEmail(t)?t!=a?(document.getElementById("the_champ_error").innerHTML="Email addresses do not match",void jQuery("#TB_ajaxContent").css("height","auto")):void theChampCallAjax(function(){theChampSaveEmail(e.id,t)}):(document.getElementById("the_champ_error").innerHTML=theChampEmailPopupErrorMsg,void jQuery("#TB_ajaxContent").css("height","auto"))}function theChampSaveEmail(e,t){document.getElementById("the_champ_error").innerHTML='<img src="'+theChampLoadingImgPath+'" />',jQuery.ajax({type:"POST",dataType:"json",url:theChampAjaxUrl,data:{action:"the_champ_save_email",elemId:e,email:t,id:theChampEmailPopupUniqueId},success:function(e){window.history.pushState({html:"html",pageTitle:"page title"},"","?done=1"),1==e.status&&e.message.response&&"success"==e.message.response?location.href=e.message.url:1==e.status&&"success"==e.message?location.href=theChampRegRedirectionUrl:1==e.status&&"cancelled"==e.message?tb_remove():1==e.status&&"verify"==e.message?document.getElementById("TB_ajaxContent").innerHTML="<strong>"+theChampEmailPopupVerifyMessage+"</strong>":0==e.status&&(document.getElementById("the_champ_error").innerHTML=e.message,jQuery("#TB_ajaxContent").css("height","auto"))},error:function(e,t,a){location.href=decodeURIComponent(theChampRedirectionUrl)}})}function theChampCapitaliseFirstLetter2(e){return e.charAt(0).toUpperCase()+e.slice(1)}if(void 0===theChampLinkingRedirection)var theChampLinkingRedirection="";theChampVerified&&theChampLoadEvent(function(){tb_show(theChampPopupTitle,theChampAjaxUrl)}),theChampEmailPopup&&theChampLoadEvent(function(){tb_show(theChampEmailPopupTitle,theChampEmailAjaxUrl)});var theChampCommentFormLogin=!1;theChampLoadEvent(function(){null!=theChampGetCookie("heateorSsSLOptin")&&jQuery("input.heateor_ss_social_login_optin").prop("checked",!0)}),jQuery("input.heateor_ss_social_login_optin").click(function(){if(jQuery(this).is(":checked")){if(null==theChampGetCookie("heateorSsSLOptin")){var e=new Date;e.setTime(e.getTime()+31536e6),document.cookie="heateorSsSLOptin=1; expires="+e.toUTCString()+"; path=/"}}else document.cookie="heateorSsSLOptin=; expires=Fri, 02 Jan 1970 00:00:00 UTC; path=/"});
js/front/social_login/general.js CHANGED
@@ -1,4 +1,2 @@
1
  function theChampPopup(e){window.open(e,"_blank","height=520,width=770,left=315,top=80,resizable,scrollbars,toolbar=0,personalbar=0,menubar=no,location=no,directories=no,status")}function theChampStrReplace(e,t,n){for(var r=0;r<e.length;r++){n=n.replace(new RegExp(e[r],"g"),t[r])}return n}function theChampCallAjax(e){if(typeof jQuery!="undefined"){e()}else{theChampGetScript("https://code.jquery.com/jquery-latest.min.js",e)}}function theChampGetScript(e,t){var n=document.createElement("script");n.src=e;var r=document.getElementsByTagName("head")[0],i=false;n.onload=n.onreadystatechange=function(){if(!i&&(!this.readyState||this.readyState=="loaded"||this.readyState=="complete")){i=true;t();n.onload=n.onreadystatechange=null;r.removeChild(n)}};r.appendChild(n)}function theChampGetElementsByClass(e,t){if(e.getElementsByClassName){return e.getElementsByClassName(t)}else{return function(e,t){if(t==null){t=document}var n=[],r=t.getElementsByTagName("*"),i=r.length,s=new RegExp("(^|\\s)"+e+"(\\s|$)"),o,u;for(o=0,u=0;o<i;o++){if(s.test(r[o].className)){n[u]=r[o];u++}}return n}(t,e)}}if(typeof String.prototype.trim!=="function"){String.prototype.trim=function(){return this.replace(/^\s+|\s+$/g,"")}}
2
- function heateorSsBrowserMsg(){var a=document.createElement("div");a.innerHTML='<button id="heateor_ss_browser_msg_close" class="close-button separated"><img src="'+theChampCloseIconPath+'" /></button><div id="the_champ_sharing_more_content"><div class="all-services" style="padding:20px 10px 0px 10px;height:auto;"><p>'+heateorSsSDKBlockedMsg+"</p></div></div>",a.setAttribute("id","the_champ_sharing_more_providers"),a.setAttribute("style","height:auto;");var b=document.createElement("div");b.setAttribute("id","heateor_ss_browser_popup_bg"),jQuery("body").append(a).append(b),document.getElementById("heateor_ss_browser_popup_bg").onclick=document.getElementById("heateor_ss_browser_msg_close").onclick=function(){a.parentNode.removeChild(a),b.parentNode.removeChild(b)}}
3
- "undefined"!=typeof heateorSsSDKBlockedMsg&&jQuery(function(){"shown"!=localStorage.getItem("heateorSsBrowserMsg")&&(jQuery("<img/>").attr("src","//apps.facebook.com/favicon.ico").error(function(){heateorSsBrowserMsg()}).css("display","none").appendTo(document.body),localStorage.setItem("heateorSsBrowserMsg","shown"))});
4
  function heateorSsLJLoginPopup(){var a=document.createElement("div");a.innerHTML='<button id="heateor_ss_lj_popup_close" class="close-button separated"><img src="'+theChampCloseIconPath+'" /></button><div id="the_champ_sharing_more_content"><div class="all-services" style="padding:20px 10px 0px 10px;height:auto;"><fieldset id="ss_openid"><legend>LiveJournal Login</legend><form action="'+theChampLJAuthUrl+'" method="post" onsubmit="this.login.disabled=true;"><input type="hidden" name="openid_action" value="SuperSocializerLogin"><div style="clear:both">'+theChampLJLoginUsernameString+'</div><div style="clear:both"><input type="text" name="openid_url" required class="openid_login"><input type="submit" name="login" value="Login"></div></form></fieldset></div></div></div>',a.setAttribute("id","the_champ_sharing_more_providers"),a.setAttribute("style","height:auto;");var b=document.createElement("div");b.setAttribute("id","heateor_ss_lj_popup_bg"),jQuery("body").append(a).append(b),document.getElementById("heateor_ss_lj_popup_bg").onclick=document.getElementById("heateor_ss_lj_popup_close").onclick=function(){a.parentNode.removeChild(a),b.parentNode.removeChild(b)}}function theChampGetCookie(e){for(var t=e+"=",a=document.cookie.split(";"),h=0;h<a.length;h++){for(var i=a[h];" "==i.charAt(0);)i=i.substring(1,i.length);if(0==i.indexOf(t))return i.substring(t.length,i.length)}return null}
1
  function theChampPopup(e){window.open(e,"_blank","height=520,width=770,left=315,top=80,resizable,scrollbars,toolbar=0,personalbar=0,menubar=no,location=no,directories=no,status")}function theChampStrReplace(e,t,n){for(var r=0;r<e.length;r++){n=n.replace(new RegExp(e[r],"g"),t[r])}return n}function theChampCallAjax(e){if(typeof jQuery!="undefined"){e()}else{theChampGetScript("https://code.jquery.com/jquery-latest.min.js",e)}}function theChampGetScript(e,t){var n=document.createElement("script");n.src=e;var r=document.getElementsByTagName("head")[0],i=false;n.onload=n.onreadystatechange=function(){if(!i&&(!this.readyState||this.readyState=="loaded"||this.readyState=="complete")){i=true;t();n.onload=n.onreadystatechange=null;r.removeChild(n)}};r.appendChild(n)}function theChampGetElementsByClass(e,t){if(e.getElementsByClassName){return e.getElementsByClassName(t)}else{return function(e,t){if(t==null){t=document}var n=[],r=t.getElementsByTagName("*"),i=r.length,s=new RegExp("(^|\\s)"+e+"(\\s|$)"),o,u;for(o=0,u=0;o<i;o++){if(s.test(r[o].className)){n[u]=r[o];u++}}return n}(t,e)}}if(typeof String.prototype.trim!=="function"){String.prototype.trim=function(){return this.replace(/^\s+|\s+$/g,"")}}
 
 
2
  function heateorSsLJLoginPopup(){var a=document.createElement("div");a.innerHTML='<button id="heateor_ss_lj_popup_close" class="close-button separated"><img src="'+theChampCloseIconPath+'" /></button><div id="the_champ_sharing_more_content"><div class="all-services" style="padding:20px 10px 0px 10px;height:auto;"><fieldset id="ss_openid"><legend>LiveJournal Login</legend><form action="'+theChampLJAuthUrl+'" method="post" onsubmit="this.login.disabled=true;"><input type="hidden" name="openid_action" value="SuperSocializerLogin"><div style="clear:both">'+theChampLJLoginUsernameString+'</div><div style="clear:both"><input type="text" name="openid_url" required class="openid_login"><input type="submit" name="login" value="Login"></div></form></fieldset></div></div></div>',a.setAttribute("id","the_champ_sharing_more_providers"),a.setAttribute("style","height:auto;");var b=document.createElement("div");b.setAttribute("id","heateor_ss_lj_popup_bg"),jQuery("body").append(a).append(b),document.getElementById("heateor_ss_lj_popup_bg").onclick=document.getElementById("heateor_ss_lj_popup_close").onclick=function(){a.parentNode.removeChild(a),b.parentNode.removeChild(b)}}function theChampGetCookie(e){for(var t=e+"=",a=document.cookie.split(";"),h=0;h<a.length;h++){for(var i=a[h];" "==i.charAt(0);)i=i.substring(1,i.length);if(0==i.indexOf(t))return i.substring(t.length,i.length)}return null}
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: 2019-06-25 11:54+0530\n"
6
- "PO-Revision-Date: 2019-06-25 11:54+0530\n"
7
  "Last-Translator: Heateor <hello@heateor.com>\n"
8
  "Language-Team: Heateor <support@heateor.com>\n"
9
  "Language: ar\n"
@@ -15,19 +15,19 @@ msgstr ""
15
  "X-Generator: Poedit 1.5.4\n"
16
  "X-Poedit-SearchPath-0: ..\n"
17
 
18
- #: ../super_socializer.php:430
19
  msgid "Problem fetching access token: "
20
  msgstr ""
21
 
22
- #: ../super_socializer.php:434 ../super_socializer.php:448
23
  msgid "Facebook SDK returned an error: "
24
  msgstr ""
25
 
26
- #: ../super_socializer.php:444
27
  msgid "Graph returned an error: "
28
  msgstr ""
29
 
30
- #: ../super_socializer.php:610
31
  #, fuzzy
32
  msgid ""
33
  "cURL is not enabled at your website server. Please contact your website "
@@ -36,7 +36,7 @@ msgstr ""
36
  "يتم تمكين جعل الضفيرة متأكدا في الخادم موقع الويب الخاص بك. قد تحتاج إلى "
37
  "الاتصال بمسؤول الملقم من موقع الويب الخاص بك للتحقق من ذلك"
38
 
39
- #: ../super_socializer.php:637
40
  #, fuzzy, php-format
41
  msgid ""
42
  "Enter exactly the following url in <strong>Website</strong> option in your "
@@ -45,7 +45,7 @@ msgstr ""
45
  "أدخل بالضبط العنوان التالي في <strong>الموقع واستدعاء رابط</strong> الخيارات "
46
  "في تويتر التطبيق الخاص بك (راجع الخطوة 3 %s )"
47
 
48
- #: ../super_socializer.php:640
49
  #, fuzzy, php-format
50
  msgid ""
51
  "Enter exactly the following url in <strong>Callback URLs</strong> option in "
@@ -54,7 +54,7 @@ msgstr ""
54
  "أدخل بالضبط العنوان التالي في <strong>الموقع واستدعاء رابط</strong> الخيارات "
55
  "في تويتر التطبيق الخاص بك (راجع الخطوة 3 %s )"
56
 
57
- #: ../super_socializer.php:643
58
  msgid ""
59
  "Make sure cURL is enabled at your website server. You may need to contact "
60
  "the server administrator of your website to verify this"
@@ -62,169 +62,157 @@ msgstr ""
62
  "يتم تمكين جعل الضفيرة متأكدا في الخادم موقع الويب الخاص بك. قد تحتاج إلى "
63
  "الاتصال بمسؤول الملقم من موقع الويب الخاص بك للتحقق من ذلك"
64
 
65
- #: ../super_socializer.php:644
66
- #, php-format
67
- msgid ""
68
- "Make sure that \"Enable Callback Locking\" option is disabled. See step 4 %s"
69
- msgstr ""
70
-
71
- #: ../super_socializer.php:907 ../helper.php:976
72
  msgid "Please verify your email address to login."
73
  msgstr "يرجى التحقق من عنوان البريد الإلكتروني الخاص بك للدخول."
74
 
75
- #: ../super_socializer.php:907
76
  msgid "Your email has been verified. Now you can login to your account"
77
  msgstr "تم التحقق من بريدك الإلكتروني. الآن يمكنك تسجيل الدخول إلى حسابك"
78
 
79
- #: ../super_socializer.php:911
80
  msgid "Notification"
81
  msgstr "تنبيهات"
82
 
83
- #: ../super_socializer.php:929 ../admin/social_login.php:805
84
  msgid "Email required"
85
  msgstr "البريد الإلكتروني - إدخال القيمة إجباري"
86
 
87
- #: ../super_socializer.php:932
88
  msgid "Please check your email inbox to complete the registration."
89
  msgstr "يرجى التحقق من بريدك الالكتروني لإكمال التسجيل."
90
 
91
- #: ../super_socializer.php:939 ../helper.php:508
92
  msgid "Enter your LiveJournal username"
93
  msgstr ""
94
 
95
- #: ../super_socializer.php:1011
96
  msgid "Leave a reply"
97
  msgstr "اترك رد"
98
 
99
- #: ../super_socializer.php:1023 ../inc/social_sharing.php:241
100
  msgid "Shares"
101
  msgstr ""
102
 
103
- #: ../super_socializer.php:1023 ../inc/social_sharing.php:241
104
  msgid "Share"
105
  msgstr ""
106
 
107
- #: ../super_socializer.php:1023
108
  #, fuzzy
109
  msgid "Link copied."
110
  msgstr "شارك الأخرين عبر لنكيدان"
111
 
112
- #: ../super_socializer.php:1269
113
  #, fuzzy
114
  msgid "Super Socializer - General Options"
115
  msgstr "آخر تسجيل دخول | Last Login"
116
 
117
- #: ../super_socializer.php:1269 ../admin/general_options.php:15
118
  #: ../admin/social_commenting.php:47
119
  #, fuzzy
120
  msgid "General Options"
121
  msgstr "المشاركات الأفقي"
122
 
123
- #: ../super_socializer.php:1337 ../helper.php:898
124
  #, fuzzy
125
  msgid "Social Avatar"
126
  msgstr "صغير الرمزية رابط"
127
 
128
- #: ../super_socializer.php:1340
129
  msgid "Small Avatar Url"
130
  msgstr "صغير الرمزية رابط"
131
 
132
- #: ../super_socializer.php:1344
133
  #, fuzzy
134
  msgid "Large Avatar Url"
135
  msgstr "الرابط المصدر و الرابط الهدف لا يمكن أن يكونا متطابقين."
136
 
137
- #: ../super_socializer.php:1348 ../helper.php:901
138
  msgid ""
139
  "Do not fetch and update social avatar from my profile, next time I Social "
140
  "Login"
141
  msgstr ""
142
 
143
- #: ../super_socializer.php:1352 ../helper.php:902
144
  msgid "Update social avatar, next time I Social Login"
145
  msgstr ""
146
 
147
- #: ../super_socializer.php:1425 ../super_socializer.php:2197
148
- msgid ""
149
- "Your browser is blocking some features of this website. Please follow the "
150
- "instructions at {support_url} to unblock these."
151
- msgstr ""
152
-
153
- #: ../super_socializer.php:1431
154
  msgid "Login with your Social ID"
155
  msgstr ""
156
 
157
- #: ../super_socializer.php:1432
158
  msgid "Email you entered is already registered or invalid"
159
  msgstr "البريد الإلكتروني الذي أدخلته غير مسجل من قبل أو غير صالحة"
160
 
161
- #: ../super_socializer.php:1437
162
  msgid "Please enter a valid email address. You might be required to verify it"
163
  msgstr "يرجى إدخال عنوان بريد إلكتروني صالح. قد تكون هناك حاجة للتحقق من ذلك"
164
 
165
- #: ../super_socializer.php:1441 ../super_socializer.php:2121
166
  msgid "Link your social account to login to your account at this website"
167
  msgstr ""
168
  "الرجاء القيام بربط الحساب الإجتماعي الخاص بك للتمكن من تسجيل الدخول العام "
169
  "الى حسابك في هذا الموقع"
170
 
171
- #: ../super_socializer.php:1687
172
  msgid "Thanks for installing Super Socializer plugin"
173
  msgstr ""
174
 
175
- #: ../super_socializer.php:1689
176
  msgid "Configure the Plugin"
177
  msgstr ""
178
 
179
- #: ../super_socializer.php:1700
180
  msgid ""
181
  "Update \"Facebook Comments Moderation\" add-on for compatibility with "
182
  "current version of Super Socialzer"
183
  msgstr ""
184
 
185
- #: ../super_socializer.php:1709
186
  msgid ""
187
  "Update \"Facebook Comments Notifier\" add-on for compatibility with current "
188
  "version of Super Socialzer"
189
  msgstr ""
190
 
191
- #: ../super_socializer.php:1718
192
  msgid ""
193
  "Update \"Social Login Buttons\" add-on for compatibility with current "
194
  "version of Super Socialzer"
195
  msgstr ""
196
 
197
- #: ../super_socializer.php:1727
198
  msgid ""
199
  "Update \"Social Share myCRED Integration\" add-on for maximum compatibility "
200
  "with current version of Super Socialzer"
201
  msgstr ""
202
 
203
- #: ../super_socializer.php:1736
204
  msgid ""
205
  "Update \"Social Login myCRED Integration\" add-on for maximum compatibility "
206
  "with current version of Super Socialzer"
207
  msgstr ""
208
 
209
- #: ../super_socializer.php:1743
210
  msgid ""
211
  "Update \"Social Login myCRED Integration\" add-on for compatibility with "
212
  "LiveJournal Login of Super Socialzer"
213
  msgstr ""
214
 
215
- #: ../super_socializer.php:1754
216
  #, php-format
217
  msgid ""
218
  "To continue using Steam login save Steam API key <a href=\"%s\">here</a>"
219
  msgstr ""
220
 
221
- #: ../super_socializer.php:1770
222
  #, php-format
223
  msgid ""
224
  "To continue using Social Login, save the secret keys <a href=\"%s\">here</a>"
225
  msgstr ""
226
 
227
- #: ../super_socializer.php:1794
228
  #, php-format
229
  msgid ""
230
  "Add %s in \"Valid OAuth redirect URIs\" option in your Facebook app settings "
@@ -232,14 +220,14 @@ msgid ""
232
  "target=\"_blank\">here</a>"
233
  msgstr ""
234
 
235
- #: ../super_socializer.php:1794 ../super_socializer.php:1819
236
- #: ../super_socializer.php:1844 ../super_socializer.php:1869
237
- #: ../super_socializer.php:1902 ../super_socializer.php:1930
238
- #: ../super_socializer.php:1957 ../super_socializer.php:2034
239
  msgid "Okay"
240
  msgstr ""
241
 
242
- #: ../super_socializer.php:1819
243
  #, php-format
244
  msgid ""
245
  "Add %s in \"Callback URLs\" option in your Twitter app settings for Twitter "
@@ -247,7 +235,7 @@ msgid ""
247
  "\">here</a>"
248
  msgstr ""
249
 
250
- #: ../super_socializer.php:1844
251
  #, php-format
252
  msgid ""
253
  "Add %s in \"Authorized Redirect URLs\" option in your Linkedin app settings "
@@ -255,7 +243,7 @@ msgid ""
255
  "target=\"_blank\">here</a>"
256
  msgstr ""
257
 
258
- #: ../super_socializer.php:1869
259
  #, php-format
260
  msgid ""
261
  "Add %s in \"Authorized redirect URIs\" option in your Google client settings "
@@ -263,13 +251,13 @@ msgid ""
263
  "target=\"_blank\">here</a>"
264
  msgstr ""
265
 
266
- #: ../super_socializer.php:1880
267
  #, php-format
268
  msgid ""
269
  "Save the url of privacy policy page of your website <a href=\"%s\">here</a>"
270
  msgstr ""
271
 
272
- #: ../super_socializer.php:1902
273
  #, php-format
274
  msgid ""
275
  "This plugin is GDPR compliant. You need to update the privacy policy of your "
@@ -277,7 +265,7 @@ msgid ""
277
  "\"%s\" target=\"_blank\">here</a>"
278
  msgstr ""
279
 
280
- #: ../super_socializer.php:1930
281
  #, php-format
282
  msgid ""
283
  "Now plugin supports a new service Twitcount.com to show Twitter shares. To "
@@ -286,7 +274,7 @@ msgid ""
286
  "your website %s with them. No need to copy-paste any code from their website."
287
  msgstr ""
288
 
289
- #: ../super_socializer.php:1957
290
  #, php-format
291
  msgid ""
292
  "Replace url saved in \"Callback URLs\" option in your Twitter app settings "
@@ -294,7 +282,7 @@ msgid ""
294
  "\"%s\" target=\"_blank\">here</a>"
295
  msgstr ""
296
 
297
- #: ../super_socializer.php:1982
298
  #, php-format
299
  msgid ""
300
  "If you cannot get Linkedin login to work after updating the plugin, replace "
@@ -302,11 +290,11 @@ msgid ""
302
  "For more details, check step 6 <a href=\"%s\" target=\"_blank\">here</a>"
303
  msgstr ""
304
 
305
- #: ../super_socializer.php:1982 ../super_socializer.php:2009
306
  msgid "Dismiss"
307
  msgstr ""
308
 
309
- #: ../super_socializer.php:2008
310
  #, php-format
311
  msgid ""
312
  "Save Facebook App ID and Secret keys in \"Standard Interface\" and/or "
@@ -315,7 +303,7 @@ msgid ""
315
  "that, clear share counts cache from \"Miscellaneous\" section"
316
  msgstr ""
317
 
318
- #: ../super_socializer.php:2034
319
  #, php-format
320
  msgid ""
321
  "Your website visitors will see a popup notification (only once) if their "
@@ -325,12 +313,18 @@ msgid ""
325
  "features\" option <a href=\"%s\">here</a>"
326
  msgstr ""
327
 
 
 
 
 
 
 
328
  #: ../helper.php:8
329
  #, fuzzy
330
  msgid "Settings saved"
331
  msgstr "الإعدادات"
332
 
333
- #: ../helper.php:8 ../admin/social_sharing.php:42
334
  msgid "Dismiss this notice"
335
  msgstr "إقالة هذا الإشعار"
336
 
@@ -428,9 +422,9 @@ msgstr "صغير الرمزية رابط"
428
  msgid "Large Avatar"
429
  msgstr "الرابط المصدر و الرابط الهدف لا يمكن أن يكونا متطابقين."
430
 
431
- #: ../helper.php:913 ../admin/general_options.php:132
432
- #: ../admin/social_sharing.php:2020 ../admin/social_commenting.php:413
433
- #: ../admin/social_login.php:1277 ../admin/like_buttons.php:826
434
  #, fuzzy
435
  msgid "Save Changes"
436
  msgstr "حفظ"
@@ -452,10 +446,10 @@ msgstr ""
452
  msgid "Something bad happened"
453
  msgstr ""
454
 
455
- #: ../admin/general_options.php:7 ../admin/general_options.php:136
456
- #: ../admin/social_sharing.php:5 ../admin/social_sharing.php:2024
457
  #: ../admin/social_commenting.php:5 ../admin/social_commenting.php:417
458
- #: ../admin/social_login.php:5 ../admin/social_login.php:1281
459
  #: ../admin/like_buttons.php:6 ../admin/like_buttons.php:830
460
  #, fuzzy, php-format
461
  msgid ""
@@ -505,54 +499,33 @@ msgstr ""
505
  "بتثبيت البرنامج المساعد في المرة القادمة."
506
 
507
  #: ../admin/general_options.php:75
508
- msgid ""
509
- "Show popup notification to users if their browsers block the plugin features"
510
- msgstr ""
511
-
512
- #: ../admin/general_options.php:85
513
- msgid ""
514
- "If enabled, your website visitors will see a popup notification (only once) "
515
- "if their browsers block any of the features of the plugin so that they can "
516
- "change their browser settings to unblock these."
517
- msgstr ""
518
-
519
- #: ../admin/general_options.php:95
520
- msgid "Message to show in popup notification"
521
- msgstr ""
522
-
523
- #: ../admin/general_options.php:105
524
- msgid ""
525
- "Use {support_url} placeholder to show support documentation url in message"
526
- msgstr ""
527
-
528
- #: ../admin/general_options.php:114
529
  #, fuzzy
530
  msgid "Custom CSS"
531
  msgstr "رابط (URL) مخصّص"
532
 
533
- #: ../admin/general_options.php:124
534
  msgid "You can specify any additional CSS rules (without &lt;style&gt; tag)"
535
  msgstr ""
536
 
537
- #: ../admin/general_options.php:147 ../admin/social_sharing.php:2030
538
- #: ../admin/social_commenting.php:423 ../admin/social_login.php:1287
539
- #: ../admin/like_buttons.php:836
540
  #, fuzzy
541
  msgid "Instagram Shoutout"
542
  msgstr "إنستاجرام"
543
 
544
- #: ../admin/general_options.php:149 ../admin/social_sharing.php:2032
545
- #: ../admin/social_commenting.php:425 ../admin/social_login.php:1289
546
- #: ../admin/like_buttons.php:838
547
  msgid ""
548
  "If you can send (to hello@heateor.com) how our plugin is helping your "
549
  "business, we can share it on Instagram. You can also send any relevant "
550
  "hashtags and people to mention in the Instagram post."
551
  msgstr ""
552
 
553
- #: ../admin/general_options.php:150 ../admin/social_sharing.php:2033
554
- #: ../admin/social_commenting.php:426 ../admin/social_login.php:1290
555
- #: ../admin/like_buttons.php:839
556
  msgid ""
557
  "<b>Example</b> - Blah-Blah Online Coaching teaches various programming "
558
  "language courses through their website. They have emerged as one of the most "
@@ -561,9 +534,9 @@ msgid ""
561
  "time."
562
  msgstr ""
563
 
564
- #: ../admin/general_options.php:151 ../admin/social_sharing.php:2034
565
- #: ../admin/social_commenting.php:427 ../admin/social_login.php:1291
566
- #: ../admin/like_buttons.php:840
567
  msgid ""
568
  "@blahblahonlinecoaching proudly use #SuperSocializer to enable social "
569
  "features at their website, such as - Social Login, Social Share and Social "
@@ -684,64 +657,64 @@ msgstr "عنصر التحكم الرئيسي لتمكين مشاركة أفقي
684
  msgid "Recover Social Share Counts Lost After Moving to SSL/Https"
685
  msgstr ""
686
 
687
- #: ../admin/social_sharing.php:42 ../admin/social_sharing.php:1983
688
  msgid ""
689
  "Save Facebook App Id and Secret in the \"Miscellaneous\" section for "
690
  "Facebook share count to work"
691
  msgstr ""
692
 
693
- #: ../admin/social_sharing.php:49
694
  msgid "Theme Selection"
695
  msgstr ""
696
 
697
- #: ../admin/social_sharing.php:50 ../admin/like_buttons.php:41
698
  #, fuzzy
699
  msgid "Standard Interface"
700
  msgstr "المشاركات الأفقي"
701
 
702
- #: ../admin/social_sharing.php:51 ../admin/like_buttons.php:42
703
  #, fuzzy
704
  msgid "Floating Interface"
705
  msgstr "المشاركات الأفقي"
706
 
707
- #: ../admin/social_sharing.php:52 ../admin/like_buttons.php:43
708
  msgid "Miscellaneous"
709
  msgstr ""
710
 
711
- #: ../admin/social_sharing.php:56 ../admin/like_buttons.php:47
712
  msgid "3rd Party Integration"
713
  msgstr ""
714
 
715
- #: ../admin/social_sharing.php:60 ../admin/social_sharing.php:1945
716
- #: ../admin/social_sharing.php:1947 ../admin/social_login.php:46
717
- #: ../admin/social_login.php:1243 ../admin/like_buttons.php:51
718
  #: ../admin/like_buttons.php:797
719
  #, fuzzy
720
  msgid "Shortcode & Widget"
721
  msgstr "استخدم كود مختصر | Include the shortcode"
722
 
723
- #: ../admin/social_sharing.php:61
724
  #, fuzzy
725
  msgid "Troubleshooter"
726
  msgstr "مستكشف أخطاء مشاركة في ألفيس بوك"
727
 
728
- #: ../admin/social_sharing.php:62 ../admin/social_sharing.php:1978
729
  #: ../admin/social_commenting.php:40 ../admin/social_commenting.php:397
730
- #: ../admin/social_login.php:47 ../admin/social_login.php:1257
731
  #: ../admin/like_buttons.php:52 ../admin/like_buttons.php:810
732
  #, fuzzy
733
  msgid "FAQ"
734
  msgstr "الأسئلة الشائعة "
735
 
736
- #: ../admin/social_sharing.php:70
737
  msgid "Standard interface theme"
738
  msgstr ""
739
 
740
- #: ../admin/social_sharing.php:75 ../admin/social_sharing.php:382
741
  msgid "Icon Preview"
742
  msgstr "الرمز معاينة"
743
 
744
- #: ../admin/social_sharing.php:147 ../admin/social_sharing.php:455
745
  #, fuzzy
746
  msgid ""
747
  "Do not forget to save the configuration after making changes by clicking the "
@@ -749,91 +722,91 @@ msgid ""
749
  msgstr ""
750
  "لا ننسى لحفظ التكوين بعد إجراء التغييرات بواسطة النقر فوق الحفظ الزر أدناه"
751
 
752
- #: ../admin/social_sharing.php:154 ../admin/social_sharing.php:462
753
  #, fuzzy
754
  msgid "Shape"
755
  msgstr "شكل"
756
 
757
- #: ../admin/social_sharing.php:158 ../admin/social_sharing.php:466
758
  #: ../inc/widget.php:951
759
  #, fuzzy
760
  msgid "Round"
761
  msgstr "مستدير"
762
 
763
- #: ../admin/social_sharing.php:160 ../admin/social_sharing.php:468
764
  #: ../inc/widget.php:952
765
  #, fuzzy
766
  msgid "Square"
767
  msgstr "مربع"
768
 
769
- #: ../admin/social_sharing.php:162 ../admin/social_sharing.php:470
770
  msgid "Rectangle"
771
  msgstr ""
772
 
773
- #: ../admin/social_sharing.php:169 ../admin/social_sharing.php:477
774
  #, fuzzy
775
  msgid "Shape of the sharing icons"
776
  msgstr "المشاركات الأفقي"
777
 
778
- #: ../admin/social_sharing.php:178 ../admin/social_sharing.php:486
779
  #, fuzzy
780
  msgid "Size (in pixels)"
781
  msgstr "حجم"
782
 
783
- #: ../admin/social_sharing.php:194 ../admin/social_sharing.php:502
784
  #, fuzzy
785
  msgid "Size of the sharing icons"
786
  msgstr "المشاركات الأفقي"
787
 
788
- #: ../admin/social_sharing.php:204 ../admin/social_sharing.php:512
789
  #, fuzzy
790
  msgid "Width (in pixels)"
791
  msgstr "حجم"
792
 
793
- #: ../admin/social_sharing.php:220 ../admin/social_sharing.php:528
794
  #, fuzzy
795
  msgid "Width of the sharing icons"
796
  msgstr "المشاركات الأفقي"
797
 
798
- #: ../admin/social_sharing.php:228 ../admin/social_sharing.php:536
799
  #, fuzzy
800
  msgid "Height (in pixels)"
801
  msgstr "حجم"
802
 
803
- #: ../admin/social_sharing.php:244 ../admin/social_sharing.php:552
804
  #, fuzzy
805
  msgid "Height of the sharing icons"
806
  msgstr "المشاركات الأفقي"
807
 
808
- #: ../admin/social_sharing.php:254 ../admin/social_sharing.php:562
809
  #, fuzzy
810
  msgid "Border radius (in pixels)"
811
  msgstr "حجم"
812
 
813
- #: ../admin/social_sharing.php:264 ../admin/social_sharing.php:572
814
  msgid ""
815
  "Specify a value for rounded corners. More the value, more rounded will the "
816
  "corners be. Leave empty for sharp corners."
817
  msgstr ""
818
 
819
- #: ../admin/social_sharing.php:273 ../admin/social_sharing.php:581
820
  #, fuzzy
821
  msgid "Logo Color"
822
  msgstr "لون الخلفية"
823
 
824
- #: ../admin/social_sharing.php:277 ../admin/social_sharing.php:298
825
- #: ../admin/social_sharing.php:318 ../admin/social_sharing.php:585
826
- #: ../admin/social_sharing.php:606 ../admin/social_sharing.php:625
827
  msgid "Default"
828
  msgstr ""
829
 
830
- #: ../admin/social_sharing.php:279 ../admin/social_sharing.php:299
831
- #: ../admin/social_sharing.php:323 ../admin/social_sharing.php:587
832
- #: ../admin/social_sharing.php:607 ../admin/social_sharing.php:630
833
  msgid "On Hover"
834
  msgstr ""
835
 
836
- #: ../admin/social_sharing.php:287 ../admin/social_sharing.php:595
837
  #, fuzzy
838
  msgid ""
839
  "Specify the color or hex code (example #cc78e0) for the logo of icon. Leave "
@@ -844,14 +817,14 @@ msgstr ""
844
  "اتركه فارغاً للشفافية. يمكنك الحصول على رمز ست عشري من اللون المطلوب من <a "
845
  "href=\"http://www.colorpicker.com/\" target=\"_blank\">هذا الرابط</a>"
846
 
847
- #: ../admin/social_sharing.php:295 ../admin/social_sharing.php:603
848
- #: ../admin/social_sharing.php:1318 ../admin/like_buttons.php:410
849
  #: ../inc/widget.php:460 ../inc/widget.php:772
850
  #, fuzzy
851
  msgid "Background Color"
852
  msgstr "لون الخلفية"
853
 
854
- #: ../admin/social_sharing.php:306 ../admin/social_sharing.php:614
855
  #, fuzzy
856
  msgid ""
857
  "Specify the color or hex code (example #cc78e0) for icon background. Save "
@@ -863,319 +836,319 @@ msgstr ""
863
  "اتركه فارغاً للشفافية. يمكنك الحصول على رمز ست عشري من اللون المطلوب من <a "
864
  "href=\"http://www.colorpicker.com/\" target=\"_blank\">هذا الرابط</a>"
865
 
866
- #: ../admin/social_sharing.php:314 ../admin/social_sharing.php:622
867
  msgid "Border"
868
  msgstr ""
869
 
870
- #: ../admin/social_sharing.php:320 ../admin/social_sharing.php:325
871
- #: ../admin/social_sharing.php:627 ../admin/social_sharing.php:632
872
  #, fuzzy
873
  msgid "Border Width"
874
  msgstr "أضف ودجت"
875
 
876
- #: ../admin/social_sharing.php:321 ../admin/social_sharing.php:326
877
- #: ../admin/social_sharing.php:628 ../admin/social_sharing.php:633
878
  #, fuzzy
879
  msgid "Border Color"
880
  msgstr "لون الخلفية"
881
 
882
- #: ../admin/social_sharing.php:333 ../admin/social_sharing.php:640
883
  #, fuzzy
884
  msgid "Icon border"
885
  msgstr "الرمز معاينة"
886
 
887
- #: ../admin/social_sharing.php:341 ../admin/social_sharing.php:648
888
  msgid "Counter Position"
889
  msgstr ""
890
 
891
- #: ../admin/social_sharing.php:341 ../admin/social_sharing.php:648
892
  msgid "(applies, if counter enabled)"
893
  msgstr ""
894
 
895
- #: ../admin/social_sharing.php:345 ../admin/social_sharing.php:652
896
- #: ../admin/social_sharing.php:935 ../admin/social_sharing.php:1340
897
  #: ../admin/like_buttons.php:183 ../admin/like_buttons.php:432
898
  #: ../inc/widget.php:446 ../inc/widget.php:758
899
  #, fuzzy
900
  msgid "Left"
901
  msgstr "يسار"
902
 
903
- #: ../admin/social_sharing.php:347 ../admin/social_sharing.php:654
904
  msgid "Top"
905
  msgstr ""
906
 
907
- #: ../admin/social_sharing.php:349 ../admin/social_sharing.php:656
908
- #: ../admin/social_sharing.php:937 ../admin/social_sharing.php:1341
909
  #: ../admin/like_buttons.php:185 ../admin/like_buttons.php:433
910
  #: ../inc/widget.php:447 ../inc/widget.php:759
911
  #, fuzzy
912
  msgid "Right"
913
  msgstr "يمين"
914
 
915
- #: ../admin/social_sharing.php:351 ../admin/social_sharing.php:658
916
  msgid "Bottom"
917
  msgstr ""
918
 
919
- #: ../admin/social_sharing.php:353 ../admin/social_sharing.php:660
920
  msgid "Inner Left"
921
  msgstr ""
922
 
923
- #: ../admin/social_sharing.php:355 ../admin/social_sharing.php:662
924
  msgid "Inner Top"
925
  msgstr ""
926
 
927
- #: ../admin/social_sharing.php:357 ../admin/social_sharing.php:664
928
  #, fuzzy
929
  msgid "Inner Right"
930
  msgstr "يمين"
931
 
932
- #: ../admin/social_sharing.php:359 ../admin/social_sharing.php:666
933
  msgid "Inner Bottom"
934
  msgstr ""
935
 
936
- #: ../admin/social_sharing.php:367 ../admin/social_sharing.php:674
937
  #, fuzzy
938
  msgid "Position of share counter"
939
  msgstr "أسفل"
940
 
941
- #: ../admin/social_sharing.php:377
942
  #, fuzzy
943
  msgid "Floating interface theme"
944
  msgstr "المشاركات الأفقي"
945
 
946
- #: ../admin/social_sharing.php:690
947
  #, fuzzy
948
  msgid "Standard Sharing Interface Options"
949
  msgstr "تعطيل الظهور الأفقي للمشاركة الاجتماعي على هذا"
950
 
951
- #: ../admin/social_sharing.php:696
952
  #, fuzzy
953
  msgid "Enable Standard sharing interface"
954
  msgstr "تعطيل الظهور الأفقي للمشاركة الاجتماعي على هذا"
955
 
956
- #: ../admin/social_sharing.php:706
957
  #, fuzzy
958
  msgid "Master control to enable standard sharing"
959
  msgstr "عنصر التحكم الرئيسي لتمكين مشاركة أفقية"
960
 
961
- #: ../admin/social_sharing.php:716 ../admin/social_sharing.php:1144
962
  #: ../admin/like_buttons.php:86 ../admin/like_buttons.php:336
963
  #, fuzzy
964
  msgid "Target Url"
965
  msgstr "الرابط المصدر و الرابط الهدف لا يمكن أن يكونا متطابقين."
966
 
967
- #: ../admin/social_sharing.php:720 ../admin/social_sharing.php:1148
968
  #: ../admin/like_buttons.php:90 ../admin/like_buttons.php:340
969
  #, fuzzy
970
  msgid "Url of the webpage where icons are located (default)"
971
  msgstr "عنوان Url لصفحة ويب حيث توجد رموز (افتراضي)"
972
 
973
- #: ../admin/social_sharing.php:722 ../admin/social_sharing.php:1150
974
  #: ../admin/like_buttons.php:92 ../admin/like_buttons.php:342
975
  #, fuzzy
976
  msgid "Url of the homepage of your website"
977
  msgstr "URL لعملاء الموقع (اختياري)"
978
 
979
- #: ../admin/social_sharing.php:724 ../admin/social_sharing.php:1152
980
  #: ../admin/like_buttons.php:94 ../admin/like_buttons.php:344
981
  #, fuzzy
982
  msgid "Custom url"
983
  msgstr "رابط (URL) مخصّص"
984
 
985
- #: ../admin/social_sharing.php:731 ../admin/social_sharing.php:1159
986
  #, fuzzy
987
  msgid "Url to share"
988
  msgstr " شارك الآخرين بهذة الفقرة"
989
 
990
- #: ../admin/social_sharing.php:739 ../admin/social_login.php:532
991
  #: ../admin/social_login.php:927 ../admin/like_buttons.php:109
992
  #: ../inc/widget.php:945
993
  #, fuzzy
994
  msgid "Title"
995
  msgstr "العنوان"
996
 
997
- #: ../admin/social_sharing.php:749
998
  #, fuzzy
999
  msgid "The text to display above the sharing interface"
1000
  msgstr "النص المطلوب عرضه أعلاه واجهة المشاركة"
1001
 
1002
- #: ../admin/social_sharing.php:774 ../admin/social_sharing.php:1168
1003
  #, fuzzy
1004
  msgid "Instagram username"
1005
  msgstr "إنستاجرام"
1006
 
1007
- #: ../admin/social_sharing.php:784 ../admin/social_sharing.php:1178
1008
  msgid ""
1009
  "Username of the Instagram account you want to redirect users to, on clicking "
1010
  "the icon"
1011
  msgstr ""
1012
 
1013
- #: ../admin/social_sharing.php:794 ../admin/social_sharing.php:1188
1014
  #, fuzzy
1015
  msgid "HTML ID of container element of comment form"
1016
  msgstr "ID HTML التعليق حاوية شكل"
1017
 
1018
- #: ../admin/social_sharing.php:804 ../admin/social_sharing.php:1198
1019
  msgid ""
1020
  "HTML ID of the element you want to focus on the webpage, on click of Comment "
1021
  "icon."
1022
  msgstr ""
1023
 
1024
- #: ../admin/social_sharing.php:818 ../admin/social_sharing.php:1207
1025
  #, fuzzy
1026
  msgid "Rearrange icons"
1027
  msgstr "إعادة ترتيب الرموز"
1028
 
1029
- #: ../admin/social_sharing.php:879 ../admin/social_sharing.php:1266
1030
  #, fuzzy
1031
  msgid "Drag the icons to rearrange in desired order"
1032
  msgstr "اسحب رموز لإعادة ترتيب في الترتيب المطلوب"
1033
 
1034
- #: ../admin/social_sharing.php:887 ../admin/social_sharing.php:1274
1035
  #, fuzzy
1036
  msgid "Select Sharing Services"
1037
  msgstr "اختر مقالة"
1038
 
1039
- #: ../admin/social_sharing.php:894 ../admin/social_sharing.php:1281
1040
  msgid "Select sharing services to show in social share bar"
1041
  msgstr ""
1042
 
1043
- #: ../admin/social_sharing.php:912 ../admin/social_sharing.php:1299
1044
  #, fuzzy
1045
  msgid "Search social network"
1046
  msgstr "حددت كشبكة الإجتماعية اللأساسية"
1047
 
1048
- #: ../admin/social_sharing.php:931 ../admin/social_sharing.php:1336
1049
  #: ../admin/like_buttons.php:179 ../admin/like_buttons.php:428
1050
  #, fuzzy
1051
  msgid "Horizontal alignment"
1052
  msgstr "بلا محاذاة"
1053
 
1054
- #: ../admin/social_sharing.php:936 ../admin/like_buttons.php:184
1055
  #, fuzzy
1056
  msgid "Center"
1057
  msgstr "وسط"
1058
 
1059
- #: ../admin/social_sharing.php:945 ../admin/social_sharing.php:1349
1060
  #, fuzzy
1061
  msgid "Horizontal alignment of the sharing interface"
1062
  msgstr "تعطيل الظهور الأفقي للمشاركة الاجتماعي على هذا"
1063
 
1064
- #: ../admin/social_sharing.php:953 ../admin/like_buttons.php:201
1065
  #, fuzzy
1066
  msgid "Position with respect to content"
1067
  msgstr "موضع الخلفية"
1068
 
1069
- #: ../admin/social_sharing.php:957 ../admin/like_buttons.php:205
1070
  #, fuzzy
1071
  msgid "Top of the content"
1072
  msgstr "أعلى"
1073
 
1074
- #: ../admin/social_sharing.php:959 ../admin/like_buttons.php:207
1075
  #, fuzzy
1076
  msgid "Bottom of the content"
1077
  msgstr "أسفل"
1078
 
1079
- #: ../admin/social_sharing.php:966
1080
  #, fuzzy
1081
  msgid "Specify position of the sharing interface with respect to the content"
1082
  msgstr "تحديد موقف واجهة المشاركة فيما يتعلق بالمحتوى"
1083
 
1084
- #: ../admin/social_sharing.php:974 ../admin/social_sharing.php:1415
1085
  msgid "Placement"
1086
  msgstr ""
1087
 
1088
- #: ../admin/social_sharing.php:978 ../admin/social_sharing.php:1419
1089
  #: ../admin/social_login.php:866 ../admin/social_login.php:896
1090
  #: ../admin/like_buttons.php:226 ../admin/like_buttons.php:511
1091
  #, fuzzy
1092
  msgid "Homepage"
1093
  msgstr "الصفحة الرئيسية لبرنامج المساعد "
1094
 
1095
- #: ../admin/social_sharing.php:980 ../admin/social_sharing.php:1421
1096
  #: ../admin/like_buttons.php:228 ../admin/like_buttons.php:513
1097
  #, fuzzy
1098
  msgid "Posts"
1099
  msgstr "مقالات"
1100
 
1101
- #: ../admin/social_sharing.php:982 ../admin/social_sharing.php:1423
1102
  #: ../admin/like_buttons.php:230 ../admin/like_buttons.php:515
1103
  #, fuzzy
1104
  msgid "Pages"
1105
  msgstr "صفحات"
1106
 
1107
- #: ../admin/social_sharing.php:984 ../admin/social_sharing.php:1425
1108
  #: ../admin/like_buttons.php:232 ../admin/like_buttons.php:517
1109
  msgid "Excerpts and Posts page"
1110
  msgstr ""
1111
 
1112
- #: ../admin/social_sharing.php:986 ../admin/social_sharing.php:1427
1113
  #: ../admin/like_buttons.php:234 ../admin/like_buttons.php:519
1114
  #, fuzzy
1115
  msgid "Category Archives"
1116
  msgstr "الأرشيف"
1117
 
1118
- #: ../admin/social_sharing.php:988 ../admin/social_sharing.php:1429
1119
  #: ../admin/like_buttons.php:236 ../admin/like_buttons.php:521
1120
  #, fuzzy
1121
  msgid "Archive Pages (Category, Tag, Author or Date based pages)"
1122
  msgstr "أرشفة صفحات (الفئة والعلامة والمؤلف أو تاريخ بناء صفحات)"
1123
 
1124
- #: ../admin/social_sharing.php:1004 ../admin/like_buttons.php:252
1125
  #, fuzzy
1126
  msgid "BuddyPress activity"
1127
  msgstr "النشاط BuddyPress والمجموعات"
1128
 
1129
- #: ../admin/social_sharing.php:1006 ../admin/like_buttons.php:255
1130
  msgid "BuddyPress group (only at top of content)"
1131
  msgstr ""
1132
 
1133
- #: ../admin/social_sharing.php:1012 ../admin/social_sharing.php:1451
1134
  #: ../admin/like_buttons.php:262 ../admin/like_buttons.php:542
1135
  #, fuzzy
1136
  msgid "BBPress forum"
1137
  msgstr "المنتدى المستعمل | User Forum"
1138
 
1139
- #: ../admin/social_sharing.php:1015 ../admin/social_sharing.php:1454
1140
  #: ../admin/like_buttons.php:265 ../admin/like_buttons.php:545
1141
  #, fuzzy
1142
  msgid "BBPress topic"
1143
  msgstr "إضافات الموضوع"
1144
 
1145
- #: ../admin/social_sharing.php:1018 ../admin/like_buttons.php:268
1146
  #, fuzzy
1147
  msgid "BBPress reply"
1148
  msgstr "رد"
1149
 
1150
- #: ../admin/social_sharing.php:1025 ../admin/like_buttons.php:275
1151
  msgid "After individual product at WooCommerce Shop page"
1152
  msgstr "بعد كل منتج على حدة في WooCommerce متجر الصفحة"
1153
 
1154
- #: ../admin/social_sharing.php:1028 ../admin/like_buttons.php:278
1155
  msgid "WooCommerce Product Page"
1156
  msgstr "WooCommerce صفحة المنتج"
1157
 
1158
- #: ../admin/social_sharing.php:1031 ../admin/like_buttons.php:281
1159
  msgid "WooCommerce Thankyou Page"
1160
  msgstr "WooCommerce الشكر الصفحة"
1161
 
1162
- #: ../admin/social_sharing.php:1042
1163
  #, fuzzy
1164
  msgid "Specify the pages where you want to enable Sharing interface"
1165
  msgstr "تحديد الصفحات حيث تريد تمكين واجهة مشاركة"
1166
 
1167
- #: ../admin/social_sharing.php:1050 ../admin/social_sharing.php:1472
1168
  #, fuzzy
1169
  msgid "Show share counts"
1170
  msgstr "عرض عدد المقالات"
1171
 
1172
- #: ../admin/social_sharing.php:1055 ../admin/social_sharing.php:1477
1173
  msgid ""
1174
  "Share counts are supported for Facebook, Twitter, Linkedin, Buffer, Reddit, "
1175
  "Pinterest, Odnoklassniki, Fintel and Vkontakte"
1176
  msgstr ""
1177
 
1178
- #: ../admin/social_sharing.php:1056 ../admin/social_sharing.php:1478
1179
  #, php-format
1180
  msgid ""
1181
  "To show Twitter share count, you have to click \"Give me my Twitter counts "
@@ -1184,27 +1157,27 @@ msgid ""
1184
  "their website."
1185
  msgstr ""
1186
 
1187
- #: ../admin/social_sharing.php:1063 ../admin/social_sharing.php:1485
1188
  #, fuzzy
1189
  msgid "If enabled, share counts are displayed above sharing icons."
1190
  msgstr "إذا تم تمكين، يتم عرض حساب حصة أعلاه تقاسم الرموز."
1191
 
1192
- #: ../admin/social_sharing.php:1072 ../admin/social_sharing.php:1494
1193
  #, fuzzy
1194
  msgid "Show total shares"
1195
  msgstr "عرض عدد المقالات"
1196
 
1197
- #: ../admin/social_sharing.php:1082 ../admin/social_sharing.php:1504
1198
  #, fuzzy
1199
  msgid "If enabled, total shares will be displayed with sharing icons"
1200
  msgstr "إذا تم تمكين، يتم عرض حساب حصة أعلاه تقاسم الرموز."
1201
 
1202
- #: ../admin/social_sharing.php:1091 ../admin/social_sharing.php:1513
1203
  #, fuzzy
1204
  msgid "Enable 'More' icon"
1205
  msgstr "الرمز معاينة"
1206
 
1207
- #: ../admin/social_sharing.php:1101 ../admin/social_sharing.php:1523
1208
  #, fuzzy
1209
  msgid ""
1210
  "If enabled, \"More\" icon will be displayed after selected sharing icons "
@@ -1213,22 +1186,22 @@ msgstr ""
1213
  "إذا تم تمكين، \"مزيد\" سيتم عرض رمز بعد تحديد تقاسم الرموز التي يظهر شبكات "
1214
  "مشاركة إضافية في المنبثقة"
1215
 
1216
- #: ../admin/social_sharing.php:1118
1217
  #, fuzzy
1218
  msgid "Floating Sharing Interface Options"
1219
  msgstr "عمودي (عائمة) تقاسم خيارات واجهة"
1220
 
1221
- #: ../admin/social_sharing.php:1124
1222
  #, fuzzy
1223
  msgid "Enable Floating sharing interface"
1224
  msgstr "تمكين واجهة المشاركة (عائمة) عمودي"
1225
 
1226
- #: ../admin/social_sharing.php:1134
1227
  #, fuzzy
1228
  msgid "Master control to enable floating sharing widget"
1229
  msgstr "عنصر التحكم الرئيسي لتمكين القطعة المشاركة (عائمة) عمودي"
1230
 
1231
- #: ../admin/social_sharing.php:1328
1232
  #, fuzzy
1233
  msgid ""
1234
  "Specify the color or hex code (example #cc78e0) for the background of "
@@ -1240,12 +1213,12 @@ msgstr ""
1240
  "اتركه فارغاً للشفافية. يمكنك الحصول على رمز ست عشري من اللون المطلوب من <a "
1241
  "href=\"http://www.colorpicker.com/\" target=\"_blank\">هذا الرابط</a>"
1242
 
1243
- #: ../admin/social_sharing.php:1358 ../admin/like_buttons.php:450
1244
  #, fuzzy
1245
  msgid "Left offset"
1246
  msgstr "يسار"
1247
 
1248
- #: ../admin/social_sharing.php:1368
1249
  #, fuzzy
1250
  msgid ""
1251
  "Specify a number. Increase in number will shift sharing interface towards "
@@ -1254,12 +1227,12 @@ msgstr ""
1254
  "تحديد رقم. الزيادة في عدد سيتحول واجهة مشاركة نحو اليمين ونقصان سيتحول نحو "
1255
  "اليسار. يمكن أن يكون رقم سلبي جداً."
1256
 
1257
- #: ../admin/social_sharing.php:1378 ../admin/like_buttons.php:470
1258
  #, fuzzy
1259
  msgid "Right offset"
1260
  msgstr "يمين"
1261
 
1262
- #: ../admin/social_sharing.php:1388
1263
  #, fuzzy
1264
  msgid ""
1265
  "Specify a number. Increase in number will shift sharing interface towards "
@@ -1268,12 +1241,12 @@ msgstr ""
1268
  "تحديد رقم. الزيادة في عدد سيتحول واجهة مشاركة نحو اليسار ونقصان سيتحول نحو "
1269
  "اليمين. يمكن أن يكون رقم سلبي جداً."
1270
 
1271
- #: ../admin/social_sharing.php:1397 ../admin/like_buttons.php:489
1272
  #, fuzzy
1273
  msgid "Top offset"
1274
  msgstr "أعلى"
1275
 
1276
- #: ../admin/social_sharing.php:1407
1277
  #, fuzzy
1278
  msgid ""
1279
  "Specify a number. Increase in number will shift sharing interface towards "
@@ -1282,97 +1255,97 @@ msgstr ""
1282
  "تحديد رقم. زيادة في عدد سيتحول واجهة مشاركة نحو الأسفل ونقصان سيتحول نحو "
1283
  "الأعلى."
1284
 
1285
- #: ../admin/social_sharing.php:1443 ../admin/like_buttons.php:535
1286
  #, fuzzy
1287
  msgid "BuddyPress group"
1288
  msgstr "تحرير ملفي الشخصي"
1289
 
1290
- #: ../admin/social_sharing.php:1464
1291
  #, fuzzy
1292
  msgid "Specify the pages where you want to enable vertical Sharing interface"
1293
  msgstr "تحديد الصفحات حيث تريد تمكين واجهة مشاركة العمودي"
1294
 
1295
- #: ../admin/social_sharing.php:1531
1296
  #, fuzzy
1297
  msgid "Hide floating slider"
1298
  msgstr ""
1299
  "رسالة لمستخدمين الذين قاموا بتسجيل الخروج من البرنامج | Message for Logged-"
1300
  "out Users"
1301
 
1302
- #: ../admin/social_sharing.php:1541
1303
  msgid "Hides the slider arrow present below the floating share bar"
1304
  msgstr ""
1305
 
1306
- #: ../admin/social_sharing.php:1549
1307
  #, fuzzy
1308
  msgid "Vertical floating bar responsiveness"
1309
  msgstr "عمودي (عائمة) تقاسم خيارات واجهة"
1310
 
1311
- #: ../admin/social_sharing.php:1552
1312
  #, php-format
1313
  msgid "Display vertical interface only when screen is wider than %s pixels"
1314
  msgstr ""
1315
 
1316
- #: ../admin/social_sharing.php:1559
1317
  msgid ""
1318
  "Display vertical interface only when screen is wider than the width "
1319
  "specified."
1320
  msgstr ""
1321
 
1322
- #: ../admin/social_sharing.php:1567
1323
  msgid "Horizontal floating bar responsiveness"
1324
  msgstr ""
1325
 
1326
- #: ../admin/social_sharing.php:1570
1327
  #, fuzzy, php-format
1328
  msgid ""
1329
  "Stick vertical floating interface horizontally at bottom only when screen is "
1330
  "narrower than %s pixels"
1331
  msgstr "إذا تمكين، لن تظهر واجهة تقاسم عمودية على الأجهزة النقالة"
1332
 
1333
- #: ../admin/social_sharing.php:1577
1334
  msgid ""
1335
  "Stick vertical floating interface horizontally at bottom only when screen is "
1336
  "narrower than the width specified"
1337
  msgstr ""
1338
 
1339
- #: ../admin/social_sharing.php:1587
1340
  #, fuzzy
1341
  msgid "Horizontal floating bar position"
1342
  msgstr "تعطيل الظهور الأفقي للمشاركة الاجتماعي على هذا"
1343
 
1344
- #: ../admin/social_sharing.php:1590
1345
  #, php-format
1346
  msgid "%s pixels from %s"
1347
  msgstr ""
1348
 
1349
- #: ../admin/social_sharing.php:1591
1350
  msgid "Auto-adjust according to screen width (responsive)"
1351
  msgstr ""
1352
 
1353
- #: ../admin/social_sharing.php:1598
1354
  msgid "Alignment of horizontal floating interface. Number can be negative too."
1355
  msgstr ""
1356
 
1357
- #: ../admin/social_sharing.php:1618
1358
  #, fuzzy
1359
  msgid "Facebook Share Count"
1360
  msgstr "مستكشف أخطاء مشاركة في ألفيس بوك"
1361
 
1362
- #: ../admin/social_sharing.php:1622
1363
  msgid "Note"
1364
  msgstr ""
1365
 
1366
- #: ../admin/social_sharing.php:1622
1367
  msgid "Required only to track Facebook share count"
1368
  msgstr ""
1369
 
1370
- #: ../admin/social_sharing.php:1628 ../admin/social_login.php:161
1371
  #, fuzzy
1372
  msgid "Facebook App ID"
1373
  msgstr "رقم التعريف الخالص بك | ID"
1374
 
1375
- #: ../admin/social_sharing.php:1638
1376
  #, fuzzy, php-format
1377
  msgid ""
1378
  "Required for Facebook share count to work. Please follow the documentation "
@@ -1382,12 +1355,12 @@ msgstr ""
1382
  "في <a href=\"%s\" target=\"_blank\">هذا الارتباط</a> للحصول على معرف التطبيق "
1383
  "فيسبوك"
1384
 
1385
- #: ../admin/social_sharing.php:1646 ../admin/social_login.php:183
1386
  #, fuzzy
1387
  msgid "Facebook App Secret"
1388
  msgstr "رقم التعريف الخالص بك | ID"
1389
 
1390
- #: ../admin/social_sharing.php:1656
1391
  #, fuzzy, php-format
1392
  msgid ""
1393
  "Required for Facebook share count to work. Please follow the documentation "
@@ -1397,35 +1370,35 @@ msgstr ""
1397
  "في <a href=\"%s\" target=\"_blank\">هذا الارتباط</a> للحصول على معرف التطبيق "
1398
  "فيسبوك"
1399
 
1400
- #: ../admin/social_sharing.php:1665 ../admin/like_buttons.php:592
1401
  #, fuzzy
1402
  msgid "Url shortener"
1403
  msgstr "عنوان Url للقيام بالتعليق على"
1404
 
1405
- #: ../admin/social_sharing.php:1671
1406
  #, fuzzy
1407
  msgid "Use shortlinks already installed"
1408
  msgstr "تمّ التنصيب مسبقاً"
1409
 
1410
- #: ../admin/social_sharing.php:1681
1411
  msgid "Uses default short url permalinks without using any additional plugin"
1412
  msgstr ""
1413
 
1414
- #: ../admin/social_sharing.php:1689
1415
  #, fuzzy
1416
  msgid "Enable bit.ly url shortener for sharing"
1417
  msgstr "تمكين bit.ly عنوان المنقص لتقاسم"
1418
 
1419
- #: ../admin/social_sharing.php:1699 ../admin/like_buttons.php:626
1420
  #, fuzzy
1421
  msgid "Master control to enable bit.ly url shortening for sharing"
1422
  msgstr "عنصر التحكم الرئيسي لتمكين اختصار لمشاركة عنوان bit.ly"
1423
 
1424
- #: ../admin/social_sharing.php:1707
1425
  msgid "bit.ly Login"
1426
  msgstr ""
1427
 
1428
- #: ../admin/social_sharing.php:1717 ../admin/social_sharing.php:1736
1429
  #, fuzzy, php-format
1430
  msgid "More details on how to get it <a href=\"%s\" target=\"_blank\">here</a>"
1431
  msgstr ""
@@ -1433,52 +1406,52 @@ msgstr ""
1433
  "الموجودة في <a href=\"%s\" target=\"_blank\">هذا الارتباط</a> للحصول على "
1434
  "\"مفتاح API التغريد\""
1435
 
1436
- #: ../admin/social_sharing.php:1726 ../admin/like_buttons.php:653
1437
  #, fuzzy
1438
  msgid "bit.ly API Key"
1439
  msgstr "مفتاح API الخاص | API Private Key"
1440
 
1441
- #: ../admin/social_sharing.php:1745 ../admin/like_buttons.php:672
1442
  msgid "Clear Bitly Cache"
1443
  msgstr ""
1444
 
1445
- #: ../admin/social_sharing.php:1749 ../admin/like_buttons.php:676
1446
  #, fuzzy
1447
  msgid "ShortUrl cache cleared successfully."
1448
  msgstr "تم ربط حسابك بنجاح"
1449
 
1450
- #: ../admin/social_sharing.php:1756 ../admin/like_buttons.php:683
1451
  msgid ""
1452
  "Use this to delete short urls saved in database. Handy, if urls of your "
1453
  "website have been changed but short urls are still being generated for old "
1454
  "urls."
1455
  msgstr ""
1456
 
1457
- #: ../admin/social_sharing.php:1765
1458
  msgid "Share Count Cache"
1459
  msgstr ""
1460
 
1461
- #: ../admin/social_sharing.php:1771
1462
  msgid "Refresh Share Count cache every"
1463
  msgstr ""
1464
 
1465
- #: ../admin/social_sharing.php:1776
1466
  msgid "Second(s)"
1467
  msgstr ""
1468
 
1469
- #: ../admin/social_sharing.php:1777
1470
  msgid "Minute(s)"
1471
  msgstr ""
1472
 
1473
- #: ../admin/social_sharing.php:1778
1474
  msgid "Hour(s)"
1475
  msgstr ""
1476
 
1477
- #: ../admin/social_sharing.php:1779
1478
  msgid "Day(s)"
1479
  msgstr ""
1480
 
1481
- #: ../admin/social_sharing.php:1787
1482
  #, php-format
1483
  msgid ""
1484
  "Frequent cache refreshing results in slower loading of pages with share "
@@ -1486,20 +1459,20 @@ msgid ""
1486
  "target=\"_blank\">here</a>"
1487
  msgstr ""
1488
 
1489
- #: ../admin/social_sharing.php:1795
1490
  msgid "Clear Share Counts Cache"
1491
  msgstr ""
1492
 
1493
- #: ../admin/social_sharing.php:1799
1494
  #, fuzzy
1495
  msgid "Share Counts cache cleared successfully."
1496
  msgstr "تم ربط حسابك بنجاح"
1497
 
1498
- #: ../admin/social_sharing.php:1806
1499
  msgid "Use this to clear cached share counts"
1500
  msgstr ""
1501
 
1502
- #: ../admin/social_sharing.php:1815 ../admin/social_sharing.php:1821
1503
  #: ../admin/social_commenting.php:315 ../admin/like_buttons.php:692
1504
  #: ../admin/like_buttons.php:698
1505
  #, fuzzy
@@ -1508,7 +1481,7 @@ msgstr ""
1508
  "يمكنك استخدام أكواد <abbr title=\"HyperText Markup Language\">HTML</abbr> "
1509
  "والخصائص التالية: %s"
1510
 
1511
- #: ../admin/social_sharing.php:1831
1512
  #, fuzzy, php-format
1513
  msgid ""
1514
  "Enter the code of the language you want to use for like buttons. You can "
@@ -1519,17 +1492,17 @@ msgstr ""
1519
  "على رموز اللغة على <a href=\"%s\" target=\"_blank\">هذا الرابط</a>. اتركه "
1520
  "فارغاً ل language(English) الافتراضي"
1521
 
1522
- #: ../admin/social_sharing.php:1840
1523
  #, fuzzy
1524
  msgid "Username in sharing"
1525
  msgstr "شارك الأخرين عبر تويتر"
1526
 
1527
- #: ../admin/social_sharing.php:1846
1528
  #, fuzzy
1529
  msgid "Twitter username (without @)"
1530
  msgstr "قالب بدون %1$s"
1531
 
1532
- #: ../admin/social_sharing.php:1856 ../admin/social_sharing.php:1875
1533
  #, fuzzy
1534
  msgid ""
1535
  "Provided username will be appended after the content being shared as \"via "
@@ -1539,37 +1512,37 @@ msgstr ""
1539
  "سيتم إلحاق اسم المستخدم المقدمة بعد المحتوى ويجري تقاسم \"عبر @USERNAME\". "
1540
  "ترك فارغاً إذا كنت لا تريد أي اسم مستخدم في محتوى يجري تقاسمها."
1541
 
1542
- #: ../admin/social_sharing.php:1865
1543
  #, fuzzy
1544
  msgid "Buffer username (without @)"
1545
  msgstr "قالب بدون %1$s"
1546
 
1547
- #: ../admin/social_sharing.php:1884
1548
  msgid "AMP"
1549
  msgstr ""
1550
 
1551
- #: ../admin/social_sharing.php:1890
1552
  #, fuzzy
1553
  msgid "Enable sharing on AMP pages"
1554
  msgstr "صفحة"
1555
 
1556
- #: ../admin/social_sharing.php:1900
1557
  msgid "Enable this option to render sharing icons on AMP pages"
1558
  msgstr ""
1559
 
1560
- #: ../admin/social_sharing.php:1919 ../admin/like_buttons.php:771
1561
  msgid "myCRED"
1562
  msgstr ""
1563
 
1564
- #: ../admin/social_sharing.php:1925 ../admin/like_buttons.php:777
1565
  msgid "Append myCRED referral ID to the urls being shared"
1566
  msgstr ""
1567
 
1568
- #: ../admin/social_sharing.php:1958
1569
  msgid "Facebook Sharing Troubleshooter"
1570
  msgstr "مستكشف أخطاء مشاركة في ألفيس بوك"
1571
 
1572
- #: ../admin/social_sharing.php:1963
1573
  #, fuzzy
1574
  msgid ""
1575
  "If Facebook sharing is not working fine, click at the following link and "
@@ -1580,28 +1553,28 @@ msgstr ""
1580
  "إذا كان تقاسم بوك لا تعمل بشكل جيد، انقر على الرابط التالي وأدخل عنوان url "
1581
  "إشكالية (حيث تقاسم بوك لا يعمل بشكل صحيح) من موقع الويب الخاص بك في حقل النص:"
1582
 
1583
- #: ../admin/social_sharing.php:1980 ../admin/social_commenting.php:399
1584
- #: ../admin/social_login.php:1259
1585
  msgid ""
1586
  "<strong>Note:</strong> Plugin will not work on local server. You should have "
1587
  "an online website for the plugin to function properly."
1588
  msgstr ""
1589
 
1590
- #: ../admin/social_sharing.php:1981
1591
  msgid ""
1592
  "Why is sharer not showing the correct image, title and other meta tags "
1593
  "content?"
1594
  msgstr ""
1595
 
1596
- #: ../admin/social_sharing.php:1982
1597
  msgid "Why is Facebook share count not working?"
1598
  msgstr ""
1599
 
1600
- #: ../admin/social_sharing.php:1985
1601
  msgid "Why is Instagram icon redirecting to Instagram website?"
1602
  msgstr ""
1603
 
1604
- #: ../admin/social_sharing.php:1986
1605
  msgid ""
1606
  "Instagram icon is there to send website visitors to the Instagram page of "
1607
  "your choice. You can save the desired Instagram handle in \"Instagram "
@@ -1609,46 +1582,46 @@ msgid ""
1609
  "sections."
1610
  msgstr ""
1611
 
1612
- #: ../admin/social_sharing.php:1989
1613
  #, fuzzy
1614
  msgid "How to customize the url being shared?"
1615
  msgstr "عرض عدد المقالات"
1616
 
1617
- #: ../admin/social_sharing.php:1990
1618
  msgid ""
1619
  "Why are Twitter shares not appearing even after registering at Twitcount.com?"
1620
  msgstr ""
1621
 
1622
- #: ../admin/social_sharing.php:1991
1623
  msgid ""
1624
  "It takes some time for their service to track the shares made on Twitter "
1625
  "from your website. If you still feel it's taking too long you can contact "
1626
  "their support directly from their website."
1627
  msgstr ""
1628
 
1629
- #: ../admin/social_sharing.php:1993 ../admin/like_buttons.php:814
1630
  msgid "How to Place Title and Social Share Icons in the Same Row?"
1631
  msgstr ""
1632
 
1633
- #: ../admin/social_sharing.php:1994
1634
  msgid ""
1635
  "How to restore Social Share counts lost after moving my website to SSL/Https?"
1636
  msgstr ""
1637
 
1638
- #: ../admin/social_sharing.php:1995 ../admin/social_commenting.php:402
1639
- #: ../admin/social_login.php:1266
1640
  msgid "Why is my browser blocking some features of the plugin?"
1641
  msgstr ""
1642
 
1643
- #: ../admin/social_sharing.php:1996
1644
  msgid "Why the color of share icons is not being updated?"
1645
  msgstr ""
1646
 
1647
- #: ../admin/social_sharing.php:1997
1648
  msgid "Why Facebook share counts are not appearing?"
1649
  msgstr ""
1650
 
1651
- #: ../admin/social_sharing.php:1998
1652
  #, fuzzy
1653
  msgid ""
1654
  "How can I show share counts of my website rather than of individual pages/"
@@ -1657,51 +1630,51 @@ msgstr ""
1657
  "كيف يمكن إظهار التهم حصة من موقع الويب الخاص بي بدلاً من الصفحات الفردية/"
1658
  "الوظائف؟"
1659
 
1660
- #: ../admin/social_sharing.php:1999
1661
  #, fuzzy
1662
  msgid "How can I disable sharing on particular page/post?"
1663
  msgstr "كيف يمكن تعطيل مشاركة في الصفحة/وظيفة معينة؟"
1664
 
1665
- #: ../admin/social_sharing.php:2000
1666
  #, fuzzy
1667
  msgid "How can I specify minimum sharing count for sharing networks?"
1668
  msgstr "كيف يمكن تحديد الحد الأدنى من عدد مرات مشاركة لشبكات تبادل؟"
1669
 
1670
- #: ../admin/social_sharing.php:2001
1671
  msgid "How to share specific page?"
1672
  msgstr ""
1673
 
1674
- #: ../admin/social_sharing.php:2002
1675
  msgid "How to integrate Google Analytics with sharing?"
1676
  msgstr ""
1677
 
1678
- #: ../admin/social_sharing.php:2003
1679
  msgid "How to customize the look of total share counts?"
1680
  msgstr ""
1681
 
1682
- #: ../admin/social_sharing.php:2004
1683
  #, fuzzy
1684
  msgid "How to customize the look of individual share counts?"
1685
  msgstr "عرض عدد المقالات"
1686
 
1687
- #: ../admin/social_sharing.php:2005
1688
  #, fuzzy
1689
  msgid "How to show Whatsapp icon only on mobile devices?"
1690
  msgstr "إخفاء تقاسم على الأجهزة النقالة"
1691
 
1692
- #: ../admin/social_sharing.php:2006
1693
  msgid "How to hide arrow after floating sharing bar?"
1694
  msgstr ""
1695
 
1696
- #: ../admin/social_sharing.php:2007
1697
  msgid "Why is share count not getting updated?"
1698
  msgstr ""
1699
 
1700
- #: ../admin/social_sharing.php:2008 ../admin/like_buttons.php:812
1701
  msgid "Why is there so much space between like buttons?"
1702
  msgstr ""
1703
 
1704
- #: ../admin/social_sharing.php:2009 ../admin/like_buttons.php:813
1705
  msgid "Why are floating sharing/like buttons not appearing at homepage?"
1706
  msgstr ""
1707
 
@@ -1991,7 +1964,7 @@ msgstr "إنشاء ملف الإعدادات"
1991
  msgid "GDPR"
1992
  msgstr ""
1993
 
1994
- #: ../admin/social_login.php:44 ../admin/social_login.php:1194
1995
  msgid "XProfile Integration"
1996
  msgstr ""
1997
 
@@ -2802,52 +2775,69 @@ msgid "Text for the GDPR opt-in"
2802
  msgstr "إتاحة التعليق من هارد"
2803
 
2804
  #: ../admin/social_login.php:1135
2805
- msgid "Text to link to Privacy Policy page"
2806
  msgstr ""
2807
 
2808
  #: ../admin/social_login.php:1145
2809
- msgid "Word(s) in the opt-in text to be linked to privacy policy page"
2810
  msgstr ""
2811
 
2812
  #: ../admin/social_login.php:1153
2813
- msgid "Privacy Policy Url"
2814
  msgstr ""
2815
 
2816
  #: ../admin/social_login.php:1163
2817
  #, fuzzy
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2818
  msgid "Url of the privacy policy page of your website"
2819
  msgstr "URL لعملاء الموقع (اختياري)"
2820
 
2821
- #: ../admin/social_login.php:1214 ../inc/widget.php:260 ../inc/widget.php:438
2822
  #: ../inc/widget.php:602 ../inc/widget.php:750
2823
  #, fuzzy
2824
  msgid "Select"
2825
  msgstr "أختر ..."
2826
 
2827
- #: ../admin/social_login.php:1245
2828
  #, fuzzy
2829
  msgid "Social Login Shortcode & Widget"
2830
  msgstr "استخدم كود مختصر | Include the shortcode"
2831
 
2832
- #: ../admin/social_login.php:1246
2833
  msgid "Social Linking Shortcode"
2834
  msgstr "الربط الاجتماعي رمز قصير"
2835
 
2836
- #: ../admin/social_login.php:1261
2837
  msgid "Why is social login not working?"
2838
  msgstr ""
2839
 
2840
- #: ../admin/social_login.php:1262
2841
  msgid ""
2842
  "Make sure that App ID and Secret (Client ID and Secret) keys you have saved, "
2843
  "belong to the same app"
2844
  msgstr ""
2845
 
2846
- #: ../admin/social_login.php:1264
2847
  msgid "Social Login not working with Varnish enabled"
2848
  msgstr ""
2849
 
2850
- #: ../admin/social_login.php:1265
2851
  msgid ""
2852
  "Why the user is not appearing logged in even after Social Login until the "
2853
  "webpage is refreshed manually?"
2
  msgstr ""
3
  "Project-Id-Version: Super Socializer\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2019-08-17 06:34+0530\n"
6
+ "PO-Revision-Date: 2019-08-17 06:34+0530\n"
7
  "Last-Translator: Heateor <hello@heateor.com>\n"
8
  "Language-Team: Heateor <support@heateor.com>\n"
9
  "Language: ar\n"
15
  "X-Generator: Poedit 1.5.4\n"
16
  "X-Poedit-SearchPath-0: ..\n"
17
 
18
+ #: ../super_socializer.php:425
19
  msgid "Problem fetching access token: "
20
  msgstr ""
21
 
22
+ #: ../super_socializer.php:429 ../super_socializer.php:443
23
  msgid "Facebook SDK returned an error: "
24
  msgstr ""
25
 
26
+ #: ../super_socializer.php:439
27
  msgid "Graph returned an error: "
28
  msgstr ""
29
 
30
+ #: ../super_socializer.php:605
31
  #, fuzzy
32
  msgid ""
33
  "cURL is not enabled at your website server. Please contact your website "
36
  "يتم تمكين جعل الضفيرة متأكدا في الخادم موقع الويب الخاص بك. قد تحتاج إلى "
37
  "الاتصال بمسؤول الملقم من موقع الويب الخاص بك للتحقق من ذلك"
38
 
39
+ #: ../super_socializer.php:632
40
  #, fuzzy, php-format
41
  msgid ""
42
  "Enter exactly the following url in <strong>Website</strong> option in your "
45
  "أدخل بالضبط العنوان التالي في <strong>الموقع واستدعاء رابط</strong> الخيارات "
46
  "في تويتر التطبيق الخاص بك (راجع الخطوة 3 %s )"
47
 
48
+ #: ../super_socializer.php:635
49
  #, fuzzy, php-format
50
  msgid ""
51
  "Enter exactly the following url in <strong>Callback URLs</strong> option in "
54
  "أدخل بالضبط العنوان التالي في <strong>الموقع واستدعاء رابط</strong> الخيارات "
55
  "في تويتر التطبيق الخاص بك (راجع الخطوة 3 %s )"
56
 
57
+ #: ../super_socializer.php:638
58
  msgid ""
59
  "Make sure cURL is enabled at your website server. You may need to contact "
60
  "the server administrator of your website to verify this"
62
  "يتم تمكين جعل الضفيرة متأكدا في الخادم موقع الويب الخاص بك. قد تحتاج إلى "
63
  "الاتصال بمسؤول الملقم من موقع الويب الخاص بك للتحقق من ذلك"
64
 
65
+ #: ../super_socializer.php:901 ../helper.php:976
 
 
 
 
 
 
66
  msgid "Please verify your email address to login."
67
  msgstr "يرجى التحقق من عنوان البريد الإلكتروني الخاص بك للدخول."
68
 
69
+ #: ../super_socializer.php:901
70
  msgid "Your email has been verified. Now you can login to your account"
71
  msgstr "تم التحقق من بريدك الإلكتروني. الآن يمكنك تسجيل الدخول إلى حسابك"
72
 
73
+ #: ../super_socializer.php:905
74
  msgid "Notification"
75
  msgstr "تنبيهات"
76
 
77
+ #: ../super_socializer.php:923 ../admin/social_login.php:805
78
  msgid "Email required"
79
  msgstr "البريد الإلكتروني - إدخال القيمة إجباري"
80
 
81
+ #: ../super_socializer.php:926
82
  msgid "Please check your email inbox to complete the registration."
83
  msgstr "يرجى التحقق من بريدك الالكتروني لإكمال التسجيل."
84
 
85
+ #: ../super_socializer.php:933 ../helper.php:508
86
  msgid "Enter your LiveJournal username"
87
  msgstr ""
88
 
89
+ #: ../super_socializer.php:1005
90
  msgid "Leave a reply"
91
  msgstr "اترك رد"
92
 
93
+ #: ../super_socializer.php:1017 ../inc/social_sharing.php:241
94
  msgid "Shares"
95
  msgstr ""
96
 
97
+ #: ../super_socializer.php:1017 ../inc/social_sharing.php:241
98
  msgid "Share"
99
  msgstr ""
100
 
101
+ #: ../super_socializer.php:1017
102
  #, fuzzy
103
  msgid "Link copied."
104
  msgstr "شارك الأخرين عبر لنكيدان"
105
 
106
+ #: ../super_socializer.php:1263
107
  #, fuzzy
108
  msgid "Super Socializer - General Options"
109
  msgstr "آخر تسجيل دخول | Last Login"
110
 
111
+ #: ../super_socializer.php:1263 ../admin/general_options.php:15
112
  #: ../admin/social_commenting.php:47
113
  #, fuzzy
114
  msgid "General Options"
115
  msgstr "المشاركات الأفقي"
116
 
117
+ #: ../super_socializer.php:1331 ../helper.php:898
118
  #, fuzzy
119
  msgid "Social Avatar"
120
  msgstr "صغير الرمزية رابط"
121
 
122
+ #: ../super_socializer.php:1334
123
  msgid "Small Avatar Url"
124
  msgstr "صغير الرمزية رابط"
125
 
126
+ #: ../super_socializer.php:1338
127
  #, fuzzy
128
  msgid "Large Avatar Url"
129
  msgstr "الرابط المصدر و الرابط الهدف لا يمكن أن يكونا متطابقين."
130
 
131
+ #: ../super_socializer.php:1342 ../helper.php:901
132
  msgid ""
133
  "Do not fetch and update social avatar from my profile, next time I Social "
134
  "Login"
135
  msgstr ""
136
 
137
+ #: ../super_socializer.php:1346 ../helper.php:902
138
  msgid "Update social avatar, next time I Social Login"
139
  msgstr ""
140
 
141
+ #: ../super_socializer.php:1423
 
 
 
 
 
 
142
  msgid "Login with your Social ID"
143
  msgstr ""
144
 
145
+ #: ../super_socializer.php:1424
146
  msgid "Email you entered is already registered or invalid"
147
  msgstr "البريد الإلكتروني الذي أدخلته غير مسجل من قبل أو غير صالحة"
148
 
149
+ #: ../super_socializer.php:1429
150
  msgid "Please enter a valid email address. You might be required to verify it"
151
  msgstr "يرجى إدخال عنوان بريد إلكتروني صالح. قد تكون هناك حاجة للتحقق من ذلك"
152
 
153
+ #: ../super_socializer.php:1433 ../super_socializer.php:2122
154
  msgid "Link your social account to login to your account at this website"
155
  msgstr ""
156
  "الرجاء القيام بربط الحساب الإجتماعي الخاص بك للتمكن من تسجيل الدخول العام "
157
  "الى حسابك في هذا الموقع"
158
 
159
+ #: ../super_socializer.php:1681
160
  msgid "Thanks for installing Super Socializer plugin"
161
  msgstr ""
162
 
163
+ #: ../super_socializer.php:1683
164
  msgid "Configure the Plugin"
165
  msgstr ""
166
 
167
+ #: ../super_socializer.php:1694
168
  msgid ""
169
  "Update \"Facebook Comments Moderation\" add-on for compatibility with "
170
  "current version of Super Socialzer"
171
  msgstr ""
172
 
173
+ #: ../super_socializer.php:1703
174
  msgid ""
175
  "Update \"Facebook Comments Notifier\" add-on for compatibility with current "
176
  "version of Super Socialzer"
177
  msgstr ""
178
 
179
+ #: ../super_socializer.php:1712
180
  msgid ""
181
  "Update \"Social Login Buttons\" add-on for compatibility with current "
182
  "version of Super Socialzer"
183
  msgstr ""
184
 
185
+ #: ../super_socializer.php:1721
186
  msgid ""
187
  "Update \"Social Share myCRED Integration\" add-on for maximum compatibility "
188
  "with current version of Super Socialzer"
189
  msgstr ""
190
 
191
+ #: ../super_socializer.php:1730
192
  msgid ""
193
  "Update \"Social Login myCRED Integration\" add-on for maximum compatibility "
194
  "with current version of Super Socialzer"
195
  msgstr ""
196
 
197
+ #: ../super_socializer.php:1737
198
  msgid ""
199
  "Update \"Social Login myCRED Integration\" add-on for compatibility with "
200
  "LiveJournal Login of Super Socialzer"
201
  msgstr ""
202
 
203
+ #: ../super_socializer.php:1748
204
  #, php-format
205
  msgid ""
206
  "To continue using Steam login save Steam API key <a href=\"%s\">here</a>"
207
  msgstr ""
208
 
209
+ #: ../super_socializer.php:1764
210
  #, php-format
211
  msgid ""
212
  "To continue using Social Login, save the secret keys <a href=\"%s\">here</a>"
213
  msgstr ""
214
 
215
+ #: ../super_socializer.php:1788
216
  #, php-format
217
  msgid ""
218
  "Add %s in \"Valid OAuth redirect URIs\" option in your Facebook app settings "
220
  "target=\"_blank\">here</a>"
221
  msgstr ""
222
 
223
+ #: ../super_socializer.php:1788 ../super_socializer.php:1813
224
+ #: ../super_socializer.php:1838 ../super_socializer.php:1863
225
+ #: ../super_socializer.php:1896 ../super_socializer.php:1924
226
+ #: ../super_socializer.php:1951 ../super_socializer.php:2028
227
  msgid "Okay"
228
  msgstr ""
229
 
230
+ #: ../super_socializer.php:1813
231
  #, php-format
232
  msgid ""
233
  "Add %s in \"Callback URLs\" option in your Twitter app settings for Twitter "
235
  "\">here</a>"
236
  msgstr ""
237
 
238
+ #: ../super_socializer.php:1838
239
  #, php-format
240
  msgid ""
241
  "Add %s in \"Authorized Redirect URLs\" option in your Linkedin app settings "
243
  "target=\"_blank\">here</a>"
244
  msgstr ""
245
 
246
+ #: ../super_socializer.php:1863
247
  #, php-format
248
  msgid ""
249
  "Add %s in \"Authorized redirect URIs\" option in your Google client settings "
251
  "target=\"_blank\">here</a>"
252
  msgstr ""
253
 
254
+ #: ../super_socializer.php:1874
255
  #, php-format
256
  msgid ""
257
  "Save the url of privacy policy page of your website <a href=\"%s\">here</a>"
258
  msgstr ""
259
 
260
+ #: ../super_socializer.php:1896
261
  #, php-format
262
  msgid ""
263
  "This plugin is GDPR compliant. You need to update the privacy policy of your "
265
  "\"%s\" target=\"_blank\">here</a>"
266
  msgstr ""
267
 
268
+ #: ../super_socializer.php:1924
269
  #, php-format
270
  msgid ""
271
  "Now plugin supports a new service Twitcount.com to show Twitter shares. To "
274
  "your website %s with them. No need to copy-paste any code from their website."
275
  msgstr ""
276
 
277
+ #: ../super_socializer.php:1951
278
  #, php-format
279
  msgid ""
280
  "Replace url saved in \"Callback URLs\" option in your Twitter app settings "
282
  "\"%s\" target=\"_blank\">here</a>"
283
  msgstr ""
284
 
285
+ #: ../super_socializer.php:1976
286
  #, php-format
287
  msgid ""
288
  "If you cannot get Linkedin login to work after updating the plugin, replace "
290
  "For more details, check step 6 <a href=\"%s\" target=\"_blank\">here</a>"
291
  msgstr ""
292
 
293
+ #: ../super_socializer.php:1976 ../super_socializer.php:2003
294
  msgid "Dismiss"
295
  msgstr ""
296
 
297
+ #: ../super_socializer.php:2002
298
  #, php-format
299
  msgid ""
300
  "Save Facebook App ID and Secret keys in \"Standard Interface\" and/or "
303
  "that, clear share counts cache from \"Miscellaneous\" section"
304
  msgstr ""
305
 
306
+ #: ../super_socializer.php:2028
307
  #, php-format
308
  msgid ""
309
  "Your website visitors will see a popup notification (only once) if their "
313
  "features\" option <a href=\"%s\">here</a>"
314
  msgstr ""
315
 
316
+ #: ../super_socializer.php:2198
317
+ msgid ""
318
+ "Your browser is blocking some features of this website. Please follow the "
319
+ "instructions at {support_url} to unblock these."
320
+ msgstr ""
321
+
322
  #: ../helper.php:8
323
  #, fuzzy
324
  msgid "Settings saved"
325
  msgstr "الإعدادات"
326
 
327
+ #: ../helper.php:8 ../admin/social_sharing.php:49
328
  msgid "Dismiss this notice"
329
  msgstr "إقالة هذا الإشعار"
330
 
422
  msgid "Large Avatar"
423
  msgstr "الرابط المصدر و الرابط الهدف لا يمكن أن يكونا متطابقين."
424
 
425
+ #: ../helper.php:913 ../admin/general_options.php:93
426
+ #: ../admin/social_sharing.php:2027 ../admin/social_commenting.php:413
427
+ #: ../admin/social_login.php:1313 ../admin/like_buttons.php:826
428
  #, fuzzy
429
  msgid "Save Changes"
430
  msgstr "حفظ"
446
  msgid "Something bad happened"
447
  msgstr ""
448
 
449
+ #: ../admin/general_options.php:7 ../admin/general_options.php:97
450
+ #: ../admin/social_sharing.php:5 ../admin/social_sharing.php:2031
451
  #: ../admin/social_commenting.php:5 ../admin/social_commenting.php:417
452
+ #: ../admin/social_login.php:5 ../admin/social_login.php:1317
453
  #: ../admin/like_buttons.php:6 ../admin/like_buttons.php:830
454
  #, fuzzy, php-format
455
  msgid ""
499
  "بتثبيت البرنامج المساعد في المرة القادمة."
500
 
501
  #: ../admin/general_options.php:75
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
502
  #, fuzzy
503
  msgid "Custom CSS"
504
  msgstr "رابط (URL) مخصّص"
505
 
506
+ #: ../admin/general_options.php:85
507
  msgid "You can specify any additional CSS rules (without &lt;style&gt; tag)"
508
  msgstr ""
509
 
510
+ #: ../admin/general_options.php:108 ../admin/social_sharing.php:2038
511
+ #: ../admin/social_commenting.php:424 ../admin/social_login.php:1324
512
+ #: ../admin/like_buttons.php:837
513
  #, fuzzy
514
  msgid "Instagram Shoutout"
515
  msgstr "إنستاجرام"
516
 
517
+ #: ../admin/general_options.php:110 ../admin/social_sharing.php:2040
518
+ #: ../admin/social_commenting.php:426 ../admin/social_login.php:1326
519
+ #: ../admin/like_buttons.php:839
520
  msgid ""
521
  "If you can send (to hello@heateor.com) how our plugin is helping your "
522
  "business, we can share it on Instagram. You can also send any relevant "
523
  "hashtags and people to mention in the Instagram post."
524
  msgstr ""
525
 
526
+ #: ../admin/general_options.php:111 ../admin/social_sharing.php:2041
527
+ #: ../admin/social_commenting.php:427 ../admin/social_login.php:1327
528
+ #: ../admin/like_buttons.php:840
529
  msgid ""
530
  "<b>Example</b> - Blah-Blah Online Coaching teaches various programming "
531
  "language courses through their website. They have emerged as one of the most "
534
  "time."
535
  msgstr ""
536
 
537
+ #: ../admin/general_options.php:112 ../admin/social_sharing.php:2042
538
+ #: ../admin/social_commenting.php:428 ../admin/social_login.php:1328
539
+ #: ../admin/like_buttons.php:841
540
  msgid ""
541
  "@blahblahonlinecoaching proudly use #SuperSocializer to enable social "
542
  "features at their website, such as - Social Login, Social Share and Social "
657
  msgid "Recover Social Share Counts Lost After Moving to SSL/Https"
658
  msgstr ""
659
 
660
+ #: ../admin/social_sharing.php:49 ../admin/social_sharing.php:1990
661
  msgid ""
662
  "Save Facebook App Id and Secret in the \"Miscellaneous\" section for "
663
  "Facebook share count to work"
664
  msgstr ""
665
 
666
+ #: ../admin/social_sharing.php:56
667
  msgid "Theme Selection"
668
  msgstr ""
669
 
670
+ #: ../admin/social_sharing.php:57 ../admin/like_buttons.php:41
671
  #, fuzzy
672
  msgid "Standard Interface"
673
  msgstr "المشاركات الأفقي"
674
 
675
+ #: ../admin/social_sharing.php:58 ../admin/like_buttons.php:42
676
  #, fuzzy
677
  msgid "Floating Interface"
678
  msgstr "المشاركات الأفقي"
679
 
680
+ #: ../admin/social_sharing.php:59 ../admin/like_buttons.php:43
681
  msgid "Miscellaneous"
682
  msgstr ""
683
 
684
+ #: ../admin/social_sharing.php:63 ../admin/like_buttons.php:47
685
  msgid "3rd Party Integration"
686
  msgstr ""
687
 
688
+ #: ../admin/social_sharing.php:67 ../admin/social_sharing.php:1952
689
+ #: ../admin/social_sharing.php:1954 ../admin/social_login.php:46
690
+ #: ../admin/social_login.php:1279 ../admin/like_buttons.php:51
691
  #: ../admin/like_buttons.php:797
692
  #, fuzzy
693
  msgid "Shortcode & Widget"
694
  msgstr "استخدم كود مختصر | Include the shortcode"
695
 
696
+ #: ../admin/social_sharing.php:68
697
  #, fuzzy
698
  msgid "Troubleshooter"
699
  msgstr "مستكشف أخطاء مشاركة في ألفيس بوك"
700
 
701
+ #: ../admin/social_sharing.php:69 ../admin/social_sharing.php:1985
702
  #: ../admin/social_commenting.php:40 ../admin/social_commenting.php:397
703
+ #: ../admin/social_login.php:47 ../admin/social_login.php:1293
704
  #: ../admin/like_buttons.php:52 ../admin/like_buttons.php:810
705
  #, fuzzy
706
  msgid "FAQ"
707
  msgstr "الأسئلة الشائعة "
708
 
709
+ #: ../admin/social_sharing.php:77
710
  msgid "Standard interface theme"
711
  msgstr ""
712
 
713
+ #: ../admin/social_sharing.php:82 ../admin/social_sharing.php:389
714
  msgid "Icon Preview"
715
  msgstr "الرمز معاينة"
716
 
717
+ #: ../admin/social_sharing.php:154 ../admin/social_sharing.php:462
718
  #, fuzzy
719
  msgid ""
720
  "Do not forget to save the configuration after making changes by clicking the "
722
  msgstr ""
723
  "لا ننسى لحفظ التكوين بعد إجراء التغييرات بواسطة النقر فوق الحفظ الزر أدناه"
724
 
725
+ #: ../admin/social_sharing.php:161 ../admin/social_sharing.php:469
726
  #, fuzzy
727
  msgid "Shape"
728
  msgstr "شكل"
729
 
730
+ #: ../admin/social_sharing.php:165 ../admin/social_sharing.php:473
731
  #: ../inc/widget.php:951
732
  #, fuzzy
733
  msgid "Round"
734
  msgstr "مستدير"
735
 
736
+ #: ../admin/social_sharing.php:167 ../admin/social_sharing.php:475
737
  #: ../inc/widget.php:952
738
  #, fuzzy
739
  msgid "Square"
740
  msgstr "مربع"
741
 
742
+ #: ../admin/social_sharing.php:169 ../admin/social_sharing.php:477
743
  msgid "Rectangle"
744
  msgstr ""
745
 
746
+ #: ../admin/social_sharing.php:176 ../admin/social_sharing.php:484
747
  #, fuzzy
748
  msgid "Shape of the sharing icons"
749
  msgstr "المشاركات الأفقي"
750
 
751
+ #: ../admin/social_sharing.php:185 ../admin/social_sharing.php:493
752
  #, fuzzy
753
  msgid "Size (in pixels)"
754
  msgstr "حجم"
755
 
756
+ #: ../admin/social_sharing.php:201 ../admin/social_sharing.php:509
757
  #, fuzzy
758
  msgid "Size of the sharing icons"
759
  msgstr "المشاركات الأفقي"
760
 
761
+ #: ../admin/social_sharing.php:211 ../admin/social_sharing.php:519
762
  #, fuzzy
763
  msgid "Width (in pixels)"
764
  msgstr "حجم"
765
 
766
+ #: ../admin/social_sharing.php:227 ../admin/social_sharing.php:535
767
  #, fuzzy
768
  msgid "Width of the sharing icons"
769
  msgstr "المشاركات الأفقي"
770
 
771
+ #: ../admin/social_sharing.php:235 ../admin/social_sharing.php:543
772
  #, fuzzy
773
  msgid "Height (in pixels)"
774
  msgstr "حجم"
775
 
776
+ #: ../admin/social_sharing.php:251 ../admin/social_sharing.php:559
777
  #, fuzzy
778
  msgid "Height of the sharing icons"
779
  msgstr "المشاركات الأفقي"
780
 
781
+ #: ../admin/social_sharing.php:261 ../admin/social_sharing.php:569
782
  #, fuzzy
783
  msgid "Border radius (in pixels)"
784
  msgstr "حجم"
785
 
786
+ #: ../admin/social_sharing.php:271 ../admin/social_sharing.php:579
787
  msgid ""
788
  "Specify a value for rounded corners. More the value, more rounded will the "
789
  "corners be. Leave empty for sharp corners."
790
  msgstr ""
791
 
792
+ #: ../admin/social_sharing.php:280 ../admin/social_sharing.php:588
793
  #, fuzzy
794
  msgid "Logo Color"
795
  msgstr "لون الخلفية"
796
 
797
+ #: ../admin/social_sharing.php:284 ../admin/social_sharing.php:305
798
+ #: ../admin/social_sharing.php:325 ../admin/social_sharing.php:592
799
+ #: ../admin/social_sharing.php:613 ../admin/social_sharing.php:632
800
  msgid "Default"
801
  msgstr ""
802
 
803
+ #: ../admin/social_sharing.php:286 ../admin/social_sharing.php:306
804
+ #: ../admin/social_sharing.php:330 ../admin/social_sharing.php:594
805
+ #: ../admin/social_sharing.php:614 ../admin/social_sharing.php:637
806
  msgid "On Hover"
807
  msgstr ""
808
 
809
+ #: ../admin/social_sharing.php:294 ../admin/social_sharing.php:602
810
  #, fuzzy
811
  msgid ""
812
  "Specify the color or hex code (example #cc78e0) for the logo of icon. Leave "
817
  "اتركه فارغاً للشفافية. يمكنك الحصول على رمز ست عشري من اللون المطلوب من <a "
818
  "href=\"http://www.colorpicker.com/\" target=\"_blank\">هذا الرابط</a>"
819
 
820
+ #: ../admin/social_sharing.php:302 ../admin/social_sharing.php:610
821
+ #: ../admin/social_sharing.php:1325 ../admin/like_buttons.php:410
822
  #: ../inc/widget.php:460 ../inc/widget.php:772
823
  #, fuzzy
824
  msgid "Background Color"
825
  msgstr "لون الخلفية"
826
 
827
+ #: ../admin/social_sharing.php:313 ../admin/social_sharing.php:621
828
  #, fuzzy
829
  msgid ""
830
  "Specify the color or hex code (example #cc78e0) for icon background. Save "
836
  "اتركه فارغاً للشفافية. يمكنك الحصول على رمز ست عشري من اللون المطلوب من <a "
837
  "href=\"http://www.colorpicker.com/\" target=\"_blank\">هذا الرابط</a>"
838
 
839
+ #: ../admin/social_sharing.php:321 ../admin/social_sharing.php:629
840
  msgid "Border"
841
  msgstr ""
842
 
843
+ #: ../admin/social_sharing.php:327 ../admin/social_sharing.php:332
844
+ #: ../admin/social_sharing.php:634 ../admin/social_sharing.php:639
845
  #, fuzzy
846
  msgid "Border Width"
847
  msgstr "أضف ودجت"
848
 
849
+ #: ../admin/social_sharing.php:328 ../admin/social_sharing.php:333
850
+ #: ../admin/social_sharing.php:635 ../admin/social_sharing.php:640
851
  #, fuzzy
852
  msgid "Border Color"
853
  msgstr "لون الخلفية"
854
 
855
+ #: ../admin/social_sharing.php:340 ../admin/social_sharing.php:647
856
  #, fuzzy
857
  msgid "Icon border"
858
  msgstr "الرمز معاينة"
859
 
860
+ #: ../admin/social_sharing.php:348 ../admin/social_sharing.php:655
861
  msgid "Counter Position"
862
  msgstr ""
863
 
864
+ #: ../admin/social_sharing.php:348 ../admin/social_sharing.php:655
865
  msgid "(applies, if counter enabled)"
866
  msgstr ""
867
 
868
+ #: ../admin/social_sharing.php:352 ../admin/social_sharing.php:659
869
+ #: ../admin/social_sharing.php:942 ../admin/social_sharing.php:1347
870
  #: ../admin/like_buttons.php:183 ../admin/like_buttons.php:432
871
  #: ../inc/widget.php:446 ../inc/widget.php:758
872
  #, fuzzy
873
  msgid "Left"
874
  msgstr "يسار"
875
 
876
+ #: ../admin/social_sharing.php:354 ../admin/social_sharing.php:661
877
  msgid "Top"
878
  msgstr ""
879
 
880
+ #: ../admin/social_sharing.php:356 ../admin/social_sharing.php:663
881
+ #: ../admin/social_sharing.php:944 ../admin/social_sharing.php:1348
882
  #: ../admin/like_buttons.php:185 ../admin/like_buttons.php:433
883
  #: ../inc/widget.php:447 ../inc/widget.php:759
884
  #, fuzzy
885
  msgid "Right"
886
  msgstr "يمين"
887
 
888
+ #: ../admin/social_sharing.php:358 ../admin/social_sharing.php:665
889
  msgid "Bottom"
890
  msgstr ""
891
 
892
+ #: ../admin/social_sharing.php:360 ../admin/social_sharing.php:667
893
  msgid "Inner Left"
894
  msgstr ""
895
 
896
+ #: ../admin/social_sharing.php:362 ../admin/social_sharing.php:669
897
  msgid "Inner Top"
898
  msgstr ""
899
 
900
+ #: ../admin/social_sharing.php:364 ../admin/social_sharing.php:671
901
  #, fuzzy
902
  msgid "Inner Right"
903
  msgstr "يمين"
904
 
905
+ #: ../admin/social_sharing.php:366 ../admin/social_sharing.php:673
906
  msgid "Inner Bottom"
907
  msgstr ""
908
 
909
+ #: ../admin/social_sharing.php:374 ../admin/social_sharing.php:681
910
  #, fuzzy
911
  msgid "Position of share counter"
912
  msgstr "أسفل"
913
 
914
+ #: ../admin/social_sharing.php:384
915
  #, fuzzy
916
  msgid "Floating interface theme"
917
  msgstr "المشاركات الأفقي"
918
 
919
+ #: ../admin/social_sharing.php:697
920
  #, fuzzy
921
  msgid "Standard Sharing Interface Options"
922
  msgstr "تعطيل الظهور الأفقي للمشاركة الاجتماعي على هذا"
923
 
924
+ #: ../admin/social_sharing.php:703
925
  #, fuzzy
926
  msgid "Enable Standard sharing interface"
927
  msgstr "تعطيل الظهور الأفقي للمشاركة الاجتماعي على هذا"
928
 
929
+ #: ../admin/social_sharing.php:713
930
  #, fuzzy
931
  msgid "Master control to enable standard sharing"
932
  msgstr "عنصر التحكم الرئيسي لتمكين مشاركة أفقية"
933
 
934
+ #: ../admin/social_sharing.php:723 ../admin/social_sharing.php:1151
935
  #: ../admin/like_buttons.php:86 ../admin/like_buttons.php:336
936
  #, fuzzy
937
  msgid "Target Url"
938
  msgstr "الرابط المصدر و الرابط الهدف لا يمكن أن يكونا متطابقين."
939
 
940
+ #: ../admin/social_sharing.php:727 ../admin/social_sharing.php:1155
941
  #: ../admin/like_buttons.php:90 ../admin/like_buttons.php:340
942
  #, fuzzy
943
  msgid "Url of the webpage where icons are located (default)"
944
  msgstr "عنوان Url لصفحة ويب حيث توجد رموز (افتراضي)"
945
 
946
+ #: ../admin/social_sharing.php:729 ../admin/social_sharing.php:1157
947
  #: ../admin/like_buttons.php:92 ../admin/like_buttons.php:342
948
  #, fuzzy
949
  msgid "Url of the homepage of your website"
950
  msgstr "URL لعملاء الموقع (اختياري)"
951
 
952
+ #: ../admin/social_sharing.php:731 ../admin/social_sharing.php:1159
953
  #: ../admin/like_buttons.php:94 ../admin/like_buttons.php:344
954
  #, fuzzy
955
  msgid "Custom url"
956
  msgstr "رابط (URL) مخصّص"
957
 
958
+ #: ../admin/social_sharing.php:738 ../admin/social_sharing.php:1166
959
  #, fuzzy
960
  msgid "Url to share"
961
  msgstr " شارك الآخرين بهذة الفقرة"
962
 
963
+ #: ../admin/social_sharing.php:746 ../admin/social_login.php:532
964
  #: ../admin/social_login.php:927 ../admin/like_buttons.php:109
965
  #: ../inc/widget.php:945
966
  #, fuzzy
967
  msgid "Title"
968
  msgstr "العنوان"
969
 
970
+ #: ../admin/social_sharing.php:756
971
  #, fuzzy
972
  msgid "The text to display above the sharing interface"
973
  msgstr "النص المطلوب عرضه أعلاه واجهة المشاركة"
974
 
975
+ #: ../admin/social_sharing.php:781 ../admin/social_sharing.php:1175
976
  #, fuzzy
977
  msgid "Instagram username"
978
  msgstr "إنستاجرام"
979
 
980
+ #: ../admin/social_sharing.php:791 ../admin/social_sharing.php:1185
981
  msgid ""
982
  "Username of the Instagram account you want to redirect users to, on clicking "
983
  "the icon"
984
  msgstr ""
985
 
986
+ #: ../admin/social_sharing.php:801 ../admin/social_sharing.php:1195
987
  #, fuzzy
988
  msgid "HTML ID of container element of comment form"
989
  msgstr "ID HTML التعليق حاوية شكل"
990
 
991
+ #: ../admin/social_sharing.php:811 ../admin/social_sharing.php:1205
992
  msgid ""
993
  "HTML ID of the element you want to focus on the webpage, on click of Comment "
994
  "icon."
995
  msgstr ""
996
 
997
+ #: ../admin/social_sharing.php:825 ../admin/social_sharing.php:1214
998
  #, fuzzy
999
  msgid "Rearrange icons"
1000
  msgstr "إعادة ترتيب الرموز"
1001
 
1002
+ #: ../admin/social_sharing.php:886 ../admin/social_sharing.php:1273
1003
  #, fuzzy
1004
  msgid "Drag the icons to rearrange in desired order"
1005
  msgstr "اسحب رموز لإعادة ترتيب في الترتيب المطلوب"
1006
 
1007
+ #: ../admin/social_sharing.php:894 ../admin/social_sharing.php:1281
1008
  #, fuzzy
1009
  msgid "Select Sharing Services"
1010
  msgstr "اختر مقالة"
1011
 
1012
+ #: ../admin/social_sharing.php:901 ../admin/social_sharing.php:1288
1013
  msgid "Select sharing services to show in social share bar"
1014
  msgstr ""
1015
 
1016
+ #: ../admin/social_sharing.php:919 ../admin/social_sharing.php:1306
1017
  #, fuzzy
1018
  msgid "Search social network"
1019
  msgstr "حددت كشبكة الإجتماعية اللأساسية"
1020
 
1021
+ #: ../admin/social_sharing.php:938 ../admin/social_sharing.php:1343
1022
  #: ../admin/like_buttons.php:179 ../admin/like_buttons.php:428
1023
  #, fuzzy
1024
  msgid "Horizontal alignment"
1025
  msgstr "بلا محاذاة"
1026
 
1027
+ #: ../admin/social_sharing.php:943 ../admin/like_buttons.php:184
1028
  #, fuzzy
1029
  msgid "Center"
1030
  msgstr "وسط"
1031
 
1032
+ #: ../admin/social_sharing.php:952 ../admin/social_sharing.php:1356
1033
  #, fuzzy
1034
  msgid "Horizontal alignment of the sharing interface"
1035
  msgstr "تعطيل الظهور الأفقي للمشاركة الاجتماعي على هذا"
1036
 
1037
+ #: ../admin/social_sharing.php:960 ../admin/like_buttons.php:201
1038
  #, fuzzy
1039
  msgid "Position with respect to content"
1040
  msgstr "موضع الخلفية"
1041
 
1042
+ #: ../admin/social_sharing.php:964 ../admin/like_buttons.php:205
1043
  #, fuzzy
1044
  msgid "Top of the content"
1045
  msgstr "أعلى"
1046
 
1047
+ #: ../admin/social_sharing.php:966 ../admin/like_buttons.php:207
1048
  #, fuzzy
1049
  msgid "Bottom of the content"
1050
  msgstr "أسفل"
1051
 
1052
+ #: ../admin/social_sharing.php:973
1053
  #, fuzzy
1054
  msgid "Specify position of the sharing interface with respect to the content"
1055
  msgstr "تحديد موقف واجهة المشاركة فيما يتعلق بالمحتوى"
1056
 
1057
+ #: ../admin/social_sharing.php:981 ../admin/social_sharing.php:1422
1058
  msgid "Placement"
1059
  msgstr ""
1060
 
1061
+ #: ../admin/social_sharing.php:985 ../admin/social_sharing.php:1426
1062
  #: ../admin/social_login.php:866 ../admin/social_login.php:896
1063
  #: ../admin/like_buttons.php:226 ../admin/like_buttons.php:511
1064
  #, fuzzy
1065
  msgid "Homepage"
1066
  msgstr "الصفحة الرئيسية لبرنامج المساعد "
1067
 
1068
+ #: ../admin/social_sharing.php:987 ../admin/social_sharing.php:1428
1069
  #: ../admin/like_buttons.php:228 ../admin/like_buttons.php:513
1070
  #, fuzzy
1071
  msgid "Posts"
1072
  msgstr "مقالات"
1073
 
1074
+ #: ../admin/social_sharing.php:989 ../admin/social_sharing.php:1430
1075
  #: ../admin/like_buttons.php:230 ../admin/like_buttons.php:515
1076
  #, fuzzy
1077
  msgid "Pages"
1078
  msgstr "صفحات"
1079
 
1080
+ #: ../admin/social_sharing.php:991 ../admin/social_sharing.php:1432
1081
  #: ../admin/like_buttons.php:232 ../admin/like_buttons.php:517
1082
  msgid "Excerpts and Posts page"
1083
  msgstr ""
1084
 
1085
+ #: ../admin/social_sharing.php:993 ../admin/social_sharing.php:1434
1086
  #: ../admin/like_buttons.php:234 ../admin/like_buttons.php:519
1087
  #, fuzzy
1088
  msgid "Category Archives"
1089
  msgstr "الأرشيف"
1090
 
1091
+ #: ../admin/social_sharing.php:995 ../admin/social_sharing.php:1436
1092
  #: ../admin/like_buttons.php:236 ../admin/like_buttons.php:521
1093
  #, fuzzy
1094
  msgid "Archive Pages (Category, Tag, Author or Date based pages)"
1095
  msgstr "أرشفة صفحات (الفئة والعلامة والمؤلف أو تاريخ بناء صفحات)"
1096
 
1097
+ #: ../admin/social_sharing.php:1011 ../admin/like_buttons.php:252
1098
  #, fuzzy
1099
  msgid "BuddyPress activity"
1100
  msgstr "النشاط BuddyPress والمجموعات"
1101
 
1102
+ #: ../admin/social_sharing.php:1013 ../admin/like_buttons.php:255
1103
  msgid "BuddyPress group (only at top of content)"
1104
  msgstr ""
1105
 
1106
+ #: ../admin/social_sharing.php:1019 ../admin/social_sharing.php:1458
1107
  #: ../admin/like_buttons.php:262 ../admin/like_buttons.php:542
1108
  #, fuzzy
1109
  msgid "BBPress forum"
1110
  msgstr "المنتدى المستعمل | User Forum"
1111
 
1112
+ #: ../admin/social_sharing.php:1022 ../admin/social_sharing.php:1461
1113
  #: ../admin/like_buttons.php:265 ../admin/like_buttons.php:545
1114
  #, fuzzy
1115
  msgid "BBPress topic"
1116
  msgstr "إضافات الموضوع"
1117
 
1118
+ #: ../admin/social_sharing.php:1025 ../admin/like_buttons.php:268
1119
  #, fuzzy
1120
  msgid "BBPress reply"
1121
  msgstr "رد"
1122
 
1123
+ #: ../admin/social_sharing.php:1032 ../admin/like_buttons.php:275
1124
  msgid "After individual product at WooCommerce Shop page"
1125
  msgstr "بعد كل منتج على حدة في WooCommerce متجر الصفحة"
1126
 
1127
+ #: ../admin/social_sharing.php:1035 ../admin/like_buttons.php:278
1128
  msgid "WooCommerce Product Page"
1129
  msgstr "WooCommerce صفحة المنتج"
1130
 
1131
+ #: ../admin/social_sharing.php:1038 ../admin/like_buttons.php:281
1132
  msgid "WooCommerce Thankyou Page"
1133
  msgstr "WooCommerce الشكر الصفحة"
1134
 
1135
+ #: ../admin/social_sharing.php:1049
1136
  #, fuzzy
1137
  msgid "Specify the pages where you want to enable Sharing interface"
1138
  msgstr "تحديد الصفحات حيث تريد تمكين واجهة مشاركة"
1139
 
1140
+ #: ../admin/social_sharing.php:1057 ../admin/social_sharing.php:1479
1141
  #, fuzzy
1142
  msgid "Show share counts"
1143
  msgstr "عرض عدد المقالات"
1144
 
1145
+ #: ../admin/social_sharing.php:1062 ../admin/social_sharing.php:1484
1146
  msgid ""
1147
  "Share counts are supported for Facebook, Twitter, Linkedin, Buffer, Reddit, "
1148
  "Pinterest, Odnoklassniki, Fintel and Vkontakte"
1149
  msgstr ""
1150
 
1151
+ #: ../admin/social_sharing.php:1063 ../admin/social_sharing.php:1485
1152
  #, php-format
1153
  msgid ""
1154
  "To show Twitter share count, you have to click \"Give me my Twitter counts "
1157
  "their website."
1158
  msgstr ""
1159
 
1160
+ #: ../admin/social_sharing.php:1070 ../admin/social_sharing.php:1492
1161
  #, fuzzy
1162
  msgid "If enabled, share counts are displayed above sharing icons."
1163
  msgstr "إذا تم تمكين، يتم عرض حساب حصة أعلاه تقاسم الرموز."
1164
 
1165
+ #: ../admin/social_sharing.php:1079 ../admin/social_sharing.php:1501
1166
  #, fuzzy
1167
  msgid "Show total shares"
1168
  msgstr "عرض عدد المقالات"
1169
 
1170
+ #: ../admin/social_sharing.php:1089 ../admin/social_sharing.php:1511
1171
  #, fuzzy
1172
  msgid "If enabled, total shares will be displayed with sharing icons"
1173
  msgstr "إذا تم تمكين، يتم عرض حساب حصة أعلاه تقاسم الرموز."
1174
 
1175
+ #: ../admin/social_sharing.php:1098 ../admin/social_sharing.php:1520
1176
  #, fuzzy
1177
  msgid "Enable 'More' icon"
1178
  msgstr "الرمز معاينة"
1179
 
1180
+ #: ../admin/social_sharing.php:1108 ../admin/social_sharing.php:1530
1181
  #, fuzzy
1182
  msgid ""
1183
  "If enabled, \"More\" icon will be displayed after selected sharing icons "
1186
  "إذا تم تمكين، \"مزيد\" سيتم عرض رمز بعد تحديد تقاسم الرموز التي يظهر شبكات "
1187
  "مشاركة إضافية في المنبثقة"
1188
 
1189
+ #: ../admin/social_sharing.php:1125
1190
  #, fuzzy
1191
  msgid "Floating Sharing Interface Options"
1192
  msgstr "عمودي (عائمة) تقاسم خيارات واجهة"
1193
 
1194
+ #: ../admin/social_sharing.php:1131
1195
  #, fuzzy
1196
  msgid "Enable Floating sharing interface"
1197
  msgstr "تمكين واجهة المشاركة (عائمة) عمودي"
1198
 
1199
+ #: ../admin/social_sharing.php:1141
1200
  #, fuzzy
1201
  msgid "Master control to enable floating sharing widget"
1202
  msgstr "عنصر التحكم الرئيسي لتمكين القطعة المشاركة (عائمة) عمودي"
1203
 
1204
+ #: ../admin/social_sharing.php:1335
1205
  #, fuzzy
1206
  msgid ""
1207
  "Specify the color or hex code (example #cc78e0) for the background of "
1213
  "اتركه فارغاً للشفافية. يمكنك الحصول على رمز ست عشري من اللون المطلوب من <a "
1214
  "href=\"http://www.colorpicker.com/\" target=\"_blank\">هذا الرابط</a>"
1215
 
1216
+ #: ../admin/social_sharing.php:1365 ../admin/like_buttons.php:450
1217
  #, fuzzy
1218
  msgid "Left offset"
1219
  msgstr "يسار"
1220
 
1221
+ #: ../admin/social_sharing.php:1375
1222
  #, fuzzy
1223
  msgid ""
1224
  "Specify a number. Increase in number will shift sharing interface towards "
1227
  "تحديد رقم. الزيادة في عدد سيتحول واجهة مشاركة نحو اليمين ونقصان سيتحول نحو "
1228
  "اليسار. يمكن أن يكون رقم سلبي جداً."
1229
 
1230
+ #: ../admin/social_sharing.php:1385 ../admin/like_buttons.php:470
1231
  #, fuzzy
1232
  msgid "Right offset"
1233
  msgstr "يمين"
1234
 
1235
+ #: ../admin/social_sharing.php:1395
1236
  #, fuzzy
1237
  msgid ""
1238
  "Specify a number. Increase in number will shift sharing interface towards "
1241
  "تحديد رقم. الزيادة في عدد سيتحول واجهة مشاركة نحو اليسار ونقصان سيتحول نحو "
1242
  "اليمين. يمكن أن يكون رقم سلبي جداً."
1243
 
1244
+ #: ../admin/social_sharing.php:1404 ../admin/like_buttons.php:489
1245
  #, fuzzy
1246
  msgid "Top offset"
1247
  msgstr "أعلى"
1248
 
1249
+ #: ../admin/social_sharing.php:1414
1250
  #, fuzzy
1251
  msgid ""
1252
  "Specify a number. Increase in number will shift sharing interface towards "
1255
  "تحديد رقم. زيادة في عدد سيتحول واجهة مشاركة نحو الأسفل ونقصان سيتحول نحو "
1256
  "الأعلى."
1257
 
1258
+ #: ../admin/social_sharing.php:1450 ../admin/like_buttons.php:535
1259
  #, fuzzy
1260
  msgid "BuddyPress group"
1261
  msgstr "تحرير ملفي الشخصي"
1262
 
1263
+ #: ../admin/social_sharing.php:1471
1264
  #, fuzzy
1265
  msgid "Specify the pages where you want to enable vertical Sharing interface"
1266
  msgstr "تحديد الصفحات حيث تريد تمكين واجهة مشاركة العمودي"
1267
 
1268
+ #: ../admin/social_sharing.php:1538
1269
  #, fuzzy
1270
  msgid "Hide floating slider"
1271
  msgstr ""
1272
  "رسالة لمستخدمين الذين قاموا بتسجيل الخروج من البرنامج | Message for Logged-"
1273
  "out Users"
1274
 
1275
+ #: ../admin/social_sharing.php:1548
1276
  msgid "Hides the slider arrow present below the floating share bar"
1277
  msgstr ""
1278
 
1279
+ #: ../admin/social_sharing.php:1556
1280
  #, fuzzy
1281
  msgid "Vertical floating bar responsiveness"
1282
  msgstr "عمودي (عائمة) تقاسم خيارات واجهة"
1283
 
1284
+ #: ../admin/social_sharing.php:1559
1285
  #, php-format
1286
  msgid "Display vertical interface only when screen is wider than %s pixels"
1287
  msgstr ""
1288
 
1289
+ #: ../admin/social_sharing.php:1566
1290
  msgid ""
1291
  "Display vertical interface only when screen is wider than the width "
1292
  "specified."
1293
  msgstr ""
1294
 
1295
+ #: ../admin/social_sharing.php:1574
1296
  msgid "Horizontal floating bar responsiveness"
1297
  msgstr ""
1298
 
1299
+ #: ../admin/social_sharing.php:1577
1300
  #, fuzzy, php-format
1301
  msgid ""
1302
  "Stick vertical floating interface horizontally at bottom only when screen is "
1303
  "narrower than %s pixels"
1304
  msgstr "إذا تمكين، لن تظهر واجهة تقاسم عمودية على الأجهزة النقالة"
1305
 
1306
+ #: ../admin/social_sharing.php:1584
1307
  msgid ""
1308
  "Stick vertical floating interface horizontally at bottom only when screen is "
1309
  "narrower than the width specified"
1310
  msgstr ""
1311
 
1312
+ #: ../admin/social_sharing.php:1594
1313
  #, fuzzy
1314
  msgid "Horizontal floating bar position"
1315
  msgstr "تعطيل الظهور الأفقي للمشاركة الاجتماعي على هذا"
1316
 
1317
+ #: ../admin/social_sharing.php:1597
1318
  #, php-format
1319
  msgid "%s pixels from %s"
1320
  msgstr ""
1321
 
1322
+ #: ../admin/social_sharing.php:1598
1323
  msgid "Auto-adjust according to screen width (responsive)"
1324
  msgstr ""
1325
 
1326
+ #: ../admin/social_sharing.php:1605
1327
  msgid "Alignment of horizontal floating interface. Number can be negative too."
1328
  msgstr ""
1329
 
1330
+ #: ../admin/social_sharing.php:1625
1331
  #, fuzzy
1332
  msgid "Facebook Share Count"
1333
  msgstr "مستكشف أخطاء مشاركة في ألفيس بوك"
1334
 
1335
+ #: ../admin/social_sharing.php:1629
1336
  msgid "Note"
1337
  msgstr ""
1338
 
1339
+ #: ../admin/social_sharing.php:1629
1340
  msgid "Required only to track Facebook share count"
1341
  msgstr ""
1342
 
1343
+ #: ../admin/social_sharing.php:1635 ../admin/social_login.php:161
1344
  #, fuzzy
1345
  msgid "Facebook App ID"
1346
  msgstr "رقم التعريف الخالص بك | ID"
1347
 
1348
+ #: ../admin/social_sharing.php:1645
1349
  #, fuzzy, php-format
1350
  msgid ""
1351
  "Required for Facebook share count to work. Please follow the documentation "
1355
  "في <a href=\"%s\" target=\"_blank\">هذا الارتباط</a> للحصول على معرف التطبيق "
1356
  "فيسبوك"
1357
 
1358
+ #: ../admin/social_sharing.php:1653 ../admin/social_login.php:183
1359
  #, fuzzy
1360
  msgid "Facebook App Secret"
1361
  msgstr "رقم التعريف الخالص بك | ID"
1362
 
1363
+ #: ../admin/social_sharing.php:1663
1364
  #, fuzzy, php-format
1365
  msgid ""
1366
  "Required for Facebook share count to work. Please follow the documentation "
1370
  "في <a href=\"%s\" target=\"_blank\">هذا الارتباط</a> للحصول على معرف التطبيق "
1371
  "فيسبوك"
1372
 
1373
+ #: ../admin/social_sharing.php:1672 ../admin/like_buttons.php:592
1374
  #, fuzzy
1375
  msgid "Url shortener"
1376
  msgstr "عنوان Url للقيام بالتعليق على"
1377
 
1378
+ #: ../admin/social_sharing.php:1678
1379
  #, fuzzy
1380
  msgid "Use shortlinks already installed"
1381
  msgstr "تمّ التنصيب مسبقاً"
1382
 
1383
+ #: ../admin/social_sharing.php:1688
1384
  msgid "Uses default short url permalinks without using any additional plugin"
1385
  msgstr ""
1386
 
1387
+ #: ../admin/social_sharing.php:1696
1388
  #, fuzzy
1389
  msgid "Enable bit.ly url shortener for sharing"
1390
  msgstr "تمكين bit.ly عنوان المنقص لتقاسم"
1391
 
1392
+ #: ../admin/social_sharing.php:1706 ../admin/like_buttons.php:626
1393
  #, fuzzy
1394
  msgid "Master control to enable bit.ly url shortening for sharing"
1395
  msgstr "عنصر التحكم الرئيسي لتمكين اختصار لمشاركة عنوان bit.ly"
1396
 
1397
+ #: ../admin/social_sharing.php:1714
1398
  msgid "bit.ly Login"
1399
  msgstr ""
1400
 
1401
+ #: ../admin/social_sharing.php:1724 ../admin/social_sharing.php:1743
1402
  #, fuzzy, php-format
1403
  msgid "More details on how to get it <a href=\"%s\" target=\"_blank\">here</a>"
1404
  msgstr ""
1406
  "الموجودة في <a href=\"%s\" target=\"_blank\">هذا الارتباط</a> للحصول على "
1407
  "\"مفتاح API التغريد\""
1408
 
1409
+ #: ../admin/social_sharing.php:1733 ../admin/like_buttons.php:653
1410
  #, fuzzy
1411
  msgid "bit.ly API Key"
1412
  msgstr "مفتاح API الخاص | API Private Key"
1413
 
1414
+ #: ../admin/social_sharing.php:1752 ../admin/like_buttons.php:672
1415
  msgid "Clear Bitly Cache"
1416
  msgstr ""
1417
 
1418
+ #: ../admin/social_sharing.php:1756 ../admin/like_buttons.php:676
1419
  #, fuzzy
1420
  msgid "ShortUrl cache cleared successfully."
1421
  msgstr "تم ربط حسابك بنجاح"
1422
 
1423
+ #: ../admin/social_sharing.php:1763 ../admin/like_buttons.php:683
1424
  msgid ""
1425
  "Use this to delete short urls saved in database. Handy, if urls of your "
1426
  "website have been changed but short urls are still being generated for old "
1427
  "urls."
1428
  msgstr ""
1429
 
1430
+ #: ../admin/social_sharing.php:1772
1431
  msgid "Share Count Cache"
1432
  msgstr ""
1433
 
1434
+ #: ../admin/social_sharing.php:1778
1435
  msgid "Refresh Share Count cache every"
1436
  msgstr ""
1437
 
1438
+ #: ../admin/social_sharing.php:1783
1439
  msgid "Second(s)"
1440
  msgstr ""
1441
 
1442
+ #: ../admin/social_sharing.php:1784
1443
  msgid "Minute(s)"
1444
  msgstr ""
1445
 
1446
+ #: ../admin/social_sharing.php:1785
1447
  msgid "Hour(s)"
1448
  msgstr ""
1449
 
1450
+ #: ../admin/social_sharing.php:1786
1451
  msgid "Day(s)"
1452
  msgstr ""
1453
 
1454
+ #: ../admin/social_sharing.php:1794
1455
  #, php-format
1456
  msgid ""
1457
  "Frequent cache refreshing results in slower loading of pages with share "
1459
  "target=\"_blank\">here</a>"
1460
  msgstr ""
1461
 
1462
+ #: ../admin/social_sharing.php:1802
1463
  msgid "Clear Share Counts Cache"
1464
  msgstr ""
1465
 
1466
+ #: ../admin/social_sharing.php:1806
1467
  #, fuzzy
1468
  msgid "Share Counts cache cleared successfully."
1469
  msgstr "تم ربط حسابك بنجاح"
1470
 
1471
+ #: ../admin/social_sharing.php:1813
1472
  msgid "Use this to clear cached share counts"
1473
  msgstr ""
1474
 
1475
+ #: ../admin/social_sharing.php:1822 ../admin/social_sharing.php:1828
1476
  #: ../admin/social_commenting.php:315 ../admin/like_buttons.php:692
1477
  #: ../admin/like_buttons.php:698
1478
  #, fuzzy
1481
  "يمكنك استخدام أكواد <abbr title=\"HyperText Markup Language\">HTML</abbr> "
1482
  "والخصائص التالية: %s"
1483
 
1484
+ #: ../admin/social_sharing.php:1838
1485
  #, fuzzy, php-format
1486
  msgid ""
1487
  "Enter the code of the language you want to use for like buttons. You can "
1492
  "على رموز اللغة على <a href=\"%s\" target=\"_blank\">هذا الرابط</a>. اتركه "
1493
  "فارغاً ل language(English) الافتراضي"
1494
 
1495
+ #: ../admin/social_sharing.php:1847
1496
  #, fuzzy
1497
  msgid "Username in sharing"
1498
  msgstr "شارك الأخرين عبر تويتر"
1499
 
1500
+ #: ../admin/social_sharing.php:1853
1501
  #, fuzzy
1502
  msgid "Twitter username (without @)"
1503
  msgstr "قالب بدون %1$s"
1504
 
1505
+ #: ../admin/social_sharing.php:1863 ../admin/social_sharing.php:1882
1506
  #, fuzzy
1507
  msgid ""
1508
  "Provided username will be appended after the content being shared as \"via "
1512
  "سيتم إلحاق اسم المستخدم المقدمة بعد المحتوى ويجري تقاسم \"عبر @USERNAME\". "
1513
  "ترك فارغاً إذا كنت لا تريد أي اسم مستخدم في محتوى يجري تقاسمها."
1514
 
1515
+ #: ../admin/social_sharing.php:1872
1516
  #, fuzzy
1517
  msgid "Buffer username (without @)"
1518
  msgstr "قالب بدون %1$s"
1519
 
1520
+ #: ../admin/social_sharing.php:1891
1521
  msgid "AMP"
1522
  msgstr ""
1523
 
1524
+ #: ../admin/social_sharing.php:1897
1525
  #, fuzzy
1526
  msgid "Enable sharing on AMP pages"
1527
  msgstr "صفحة"
1528
 
1529
+ #: ../admin/social_sharing.php:1907
1530
  msgid "Enable this option to render sharing icons on AMP pages"
1531
  msgstr ""
1532
 
1533
+ #: ../admin/social_sharing.php:1926 ../admin/like_buttons.php:771
1534
  msgid "myCRED"
1535
  msgstr ""
1536
 
1537
+ #: ../admin/social_sharing.php:1932 ../admin/like_buttons.php:777
1538
  msgid "Append myCRED referral ID to the urls being shared"
1539
  msgstr ""
1540
 
1541
+ #: ../admin/social_sharing.php:1965
1542
  msgid "Facebook Sharing Troubleshooter"
1543
  msgstr "مستكشف أخطاء مشاركة في ألفيس بوك"
1544
 
1545
+ #: ../admin/social_sharing.php:1970
1546
  #, fuzzy
1547
  msgid ""
1548
  "If Facebook sharing is not working fine, click at the following link and "
1553
  "إذا كان تقاسم بوك لا تعمل بشكل جيد، انقر على الرابط التالي وأدخل عنوان url "
1554
  "إشكالية (حيث تقاسم بوك لا يعمل بشكل صحيح) من موقع الويب الخاص بك في حقل النص:"
1555
 
1556
+ #: ../admin/social_sharing.php:1987 ../admin/social_commenting.php:399
1557
+ #: ../admin/social_login.php:1295
1558
  msgid ""
1559
  "<strong>Note:</strong> Plugin will not work on local server. You should have "
1560
  "an online website for the plugin to function properly."
1561
  msgstr ""
1562
 
1563
+ #: ../admin/social_sharing.php:1988
1564
  msgid ""
1565
  "Why is sharer not showing the correct image, title and other meta tags "
1566
  "content?"
1567
  msgstr ""
1568
 
1569
+ #: ../admin/social_sharing.php:1989
1570
  msgid "Why is Facebook share count not working?"
1571
  msgstr ""
1572
 
1573
+ #: ../admin/social_sharing.php:1992
1574
  msgid "Why is Instagram icon redirecting to Instagram website?"
1575
  msgstr ""
1576
 
1577
+ #: ../admin/social_sharing.php:1993
1578
  msgid ""
1579
  "Instagram icon is there to send website visitors to the Instagram page of "
1580
  "your choice. You can save the desired Instagram handle in \"Instagram "
1582
  "sections."
1583
  msgstr ""
1584
 
1585
+ #: ../admin/social_sharing.php:1996
1586
  #, fuzzy
1587
  msgid "How to customize the url being shared?"
1588
  msgstr "عرض عدد المقالات"
1589
 
1590
+ #: ../admin/social_sharing.php:1997
1591
  msgid ""
1592
  "Why are Twitter shares not appearing even after registering at Twitcount.com?"
1593
  msgstr ""
1594
 
1595
+ #: ../admin/social_sharing.php:1998
1596
  msgid ""
1597
  "It takes some time for their service to track the shares made on Twitter "
1598
  "from your website. If you still feel it's taking too long you can contact "
1599
  "their support directly from their website."
1600
  msgstr ""
1601
 
1602
+ #: ../admin/social_sharing.php:2000 ../admin/like_buttons.php:814
1603
  msgid "How to Place Title and Social Share Icons in the Same Row?"
1604
  msgstr ""
1605
 
1606
+ #: ../admin/social_sharing.php:2001
1607
  msgid ""
1608
  "How to restore Social Share counts lost after moving my website to SSL/Https?"
1609
  msgstr ""
1610
 
1611
+ #: ../admin/social_sharing.php:2002 ../admin/social_commenting.php:402
1612
+ #: ../admin/social_login.php:1302
1613
  msgid "Why is my browser blocking some features of the plugin?"
1614
  msgstr ""
1615
 
1616
+ #: ../admin/social_sharing.php:2003
1617
  msgid "Why the color of share icons is not being updated?"
1618
  msgstr ""
1619
 
1620
+ #: ../admin/social_sharing.php:2004
1621
  msgid "Why Facebook share counts are not appearing?"
1622
  msgstr ""
1623
 
1624
+ #: ../admin/social_sharing.php:2005
1625
  #, fuzzy
1626
  msgid ""
1627
  "How can I show share counts of my website rather than of individual pages/"
1630
  "كيف يمكن إظهار التهم حصة من موقع الويب الخاص بي بدلاً من الصفحات الفردية/"
1631
  "الوظائف؟"
1632
 
1633
+ #: ../admin/social_sharing.php:2006
1634
  #, fuzzy
1635
  msgid "How can I disable sharing on particular page/post?"
1636
  msgstr "كيف يمكن تعطيل مشاركة في الصفحة/وظيفة معينة؟"
1637
 
1638
+ #: ../admin/social_sharing.php:2007
1639
  #, fuzzy
1640
  msgid "How can I specify minimum sharing count for sharing networks?"
1641
  msgstr "كيف يمكن تحديد الحد الأدنى من عدد مرات مشاركة لشبكات تبادل؟"
1642
 
1643
+ #: ../admin/social_sharing.php:2008
1644
  msgid "How to share specific page?"
1645
  msgstr ""
1646
 
1647
+ #: ../admin/social_sharing.php:2009
1648
  msgid "How to integrate Google Analytics with sharing?"
1649
  msgstr ""
1650
 
1651
+ #: ../admin/social_sharing.php:2010
1652
  msgid "How to customize the look of total share counts?"
1653
  msgstr ""
1654
 
1655
+ #: ../admin/social_sharing.php:2011
1656
  #, fuzzy
1657
  msgid "How to customize the look of individual share counts?"
1658
  msgstr "عرض عدد المقالات"
1659
 
1660
+ #: ../admin/social_sharing.php:2012
1661
  #, fuzzy
1662
  msgid "How to show Whatsapp icon only on mobile devices?"
1663
  msgstr "إخفاء تقاسم على الأجهزة النقالة"
1664
 
1665
+ #: ../admin/social_sharing.php:2013
1666
  msgid "How to hide arrow after floating sharing bar?"
1667
  msgstr ""
1668
 
1669
+ #: ../admin/social_sharing.php:2014
1670
  msgid "Why is share count not getting updated?"
1671
  msgstr ""
1672
 
1673
+ #: ../admin/social_sharing.php:2015 ../admin/like_buttons.php:812
1674
  msgid "Why is there so much space between like buttons?"
1675
  msgstr ""
1676
 
1677
+ #: ../admin/social_sharing.php:2016 ../admin/like_buttons.php:813
1678
  msgid "Why are floating sharing/like buttons not appearing at homepage?"
1679
  msgstr ""
1680
 
1964
  msgid "GDPR"
1965
  msgstr ""
1966
 
1967
+ #: ../admin/social_login.php:44 ../admin/social_login.php:1230
1968
  msgid "XProfile Integration"
1969
  msgstr ""
1970
 
2775
  msgstr "إتاحة التعليق من هارد"
2776
 
2777
  #: ../admin/social_login.php:1135
2778
+ msgid "Text to link to Terms-Conditions page"
2779
  msgstr ""
2780
 
2781
  #: ../admin/social_login.php:1145
2782
+ msgid "Word(s) in the opt-in text to be linked to terms-conditions page"
2783
  msgstr ""
2784
 
2785
  #: ../admin/social_login.php:1153
2786
+ msgid "Terms-Conditions Url"
2787
  msgstr ""
2788
 
2789
  #: ../admin/social_login.php:1163
2790
  #, fuzzy
2791
+ msgid "Url of the terms-conditions page of your website"
2792
+ msgstr "URL لعملاء الموقع (اختياري)"
2793
+
2794
+ #: ../admin/social_login.php:1171
2795
+ msgid "Text to link to Privacy Policy page"
2796
+ msgstr ""
2797
+
2798
+ #: ../admin/social_login.php:1181
2799
+ msgid "Word(s) in the opt-in text to be linked to privacy policy page"
2800
+ msgstr ""
2801
+
2802
+ #: ../admin/social_login.php:1189
2803
+ msgid "Privacy Policy Url"
2804
+ msgstr ""
2805
+
2806
+ #: ../admin/social_login.php:1199
2807
+ #, fuzzy
2808
  msgid "Url of the privacy policy page of your website"
2809
  msgstr "URL لعملاء الموقع (اختياري)"
2810
 
2811
+ #: ../admin/social_login.php:1250 ../inc/widget.php:260 ../inc/widget.php:438
2812
  #: ../inc/widget.php:602 ../inc/widget.php:750
2813
  #, fuzzy
2814
  msgid "Select"
2815
  msgstr "أختر ..."
2816
 
2817
+ #: ../admin/social_login.php:1281
2818
  #, fuzzy
2819
  msgid "Social Login Shortcode & Widget"
2820
  msgstr "استخدم كود مختصر | Include the shortcode"
2821
 
2822
+ #: ../admin/social_login.php:1282
2823
  msgid "Social Linking Shortcode"
2824
  msgstr "الربط الاجتماعي رمز قصير"
2825
 
2826
+ #: ../admin/social_login.php:1297
2827
  msgid "Why is social login not working?"
2828
  msgstr ""
2829
 
2830
+ #: ../admin/social_login.php:1298
2831
  msgid ""
2832
  "Make sure that App ID and Secret (Client ID and Secret) keys you have saved, "
2833
  "belong to the same app"
2834
  msgstr ""
2835
 
2836
+ #: ../admin/social_login.php:1300
2837
  msgid "Social Login not working with Varnish enabled"
2838
  msgstr ""
2839
 
2840
+ #: ../admin/social_login.php:1301
2841
  msgid ""
2842
  "Why the user is not appearing logged in even after Social Login until the "
2843
  "webpage is refreshed manually?"
languages/super-socializer-es_ES.mo CHANGED
Binary file
languages/super-socializer-es_ES.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: 2019-06-25 11:53+0530\n"
6
- "PO-Revision-Date: 2019-06-25 11:53+0530\n"
7
  "Last-Translator: Heateor <hello@heateor.com>\n"
8
  "Language-Team: Heateor <hello@heateor.com>\n"
9
  "Language: es\n"
@@ -16,19 +16,19 @@ msgstr ""
16
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
17
  "X-Poedit-SearchPath-0: ..\n"
18
 
19
- #: ../super_socializer.php:430
20
  msgid "Problem fetching access token: "
21
  msgstr ""
22
 
23
- #: ../super_socializer.php:434 ../super_socializer.php:448
24
  msgid "Facebook SDK returned an error: "
25
  msgstr ""
26
 
27
- #: ../super_socializer.php:444
28
  msgid "Graph returned an error: "
29
  msgstr ""
30
 
31
- #: ../super_socializer.php:610
32
  #, fuzzy
33
  msgid ""
34
  "cURL is not enabled at your website server. Please contact your website "
@@ -38,7 +38,7 @@ msgstr ""
38
  "posible que necesites contactar con el administrador de tu servidor para "
39
  "verificar esto"
40
 
41
- #: ../super_socializer.php:637
42
  #, fuzzy, php-format
43
  msgid ""
44
  "Enter exactly the following url in <strong>Website</strong> option in your "
@@ -47,7 +47,7 @@ msgstr ""
47
  "Introduce exactamente la siguiente URL en las <strong>Website</strong> y "
48
  "<strong>Callback Url</strong> opciones en tu Twitter app (ver paso 3 %s)"
49
 
50
- #: ../super_socializer.php:640
51
  #, fuzzy, php-format
52
  msgid ""
53
  "Enter exactly the following url in <strong>Callback URLs</strong> option in "
@@ -56,7 +56,7 @@ msgstr ""
56
  "Introduce exactamente la siguiente URL en las <strong>Website</strong> y "
57
  "<strong>Callback Url</strong> opciones en tu Twitter app (ver paso 3 %s)"
58
 
59
- #: ../super_socializer.php:643
60
  msgid ""
61
  "Make sure cURL is enabled at your website server. You may need to contact "
62
  "the server administrator of your website to verify this"
@@ -65,77 +65,71 @@ msgstr ""
65
  "posible que necesites contactar con el administrador de tu servidor para "
66
  "verificar esto"
67
 
68
- #: ../super_socializer.php:644
69
- #, php-format
70
- msgid ""
71
- "Make sure that \"Enable Callback Locking\" option is disabled. See step 4 %s"
72
- msgstr ""
73
-
74
- #: ../super_socializer.php:907 ../helper.php:976
75
  msgid "Please verify your email address to login."
76
  msgstr "Por favor verifica tu dirección de email para ingresar."
77
 
78
- #: ../super_socializer.php:907
79
  msgid "Your email has been verified. Now you can login to your account"
80
  msgstr "Tu email ha sido verificado. Ahora puedes ingresar en tu cuenta"
81
 
82
- #: ../super_socializer.php:911
83
  msgid "Notification"
84
  msgstr "Notificación"
85
 
86
- #: ../super_socializer.php:929 ../admin/social_login.php:805
87
  msgid "Email required"
88
  msgstr "Email requerido"
89
 
90
- #: ../super_socializer.php:932
91
  msgid "Please check your email inbox to complete the registration."
92
  msgstr ""
93
  "Por favor revisa la bandeja de entrada de tu correo para completar el "
94
  "registro."
95
 
96
- #: ../super_socializer.php:939 ../helper.php:508
97
  msgid "Enter your LiveJournal username"
98
  msgstr ""
99
 
100
- #: ../super_socializer.php:1011
101
  msgid "Leave a reply"
102
  msgstr "Deja una respuesta"
103
 
104
- #: ../super_socializer.php:1023 ../inc/social_sharing.php:241
105
  msgid "Shares"
106
  msgstr ""
107
 
108
- #: ../super_socializer.php:1023 ../inc/social_sharing.php:241
109
  msgid "Share"
110
  msgstr ""
111
 
112
- #: ../super_socializer.php:1023
113
  #, fuzzy
114
  msgid "Link copied."
115
  msgstr "LinkedIn"
116
 
117
- #: ../super_socializer.php:1269
118
  msgid "Super Socializer - General Options"
119
  msgstr "Super Socializer - Opciones Generales"
120
 
121
- #: ../super_socializer.php:1269 ../admin/general_options.php:15
122
  #: ../admin/social_commenting.php:47
123
  msgid "General Options"
124
  msgstr "Opciones Generales"
125
 
126
- #: ../super_socializer.php:1337 ../helper.php:898
127
  msgid "Social Avatar"
128
  msgstr "Avatar Social"
129
 
130
- #: ../super_socializer.php:1340
131
  msgid "Small Avatar Url"
132
  msgstr "Url de Avatar Pequeño"
133
 
134
- #: ../super_socializer.php:1344
135
  msgid "Large Avatar Url"
136
  msgstr "Url de Avatar Grande"
137
 
138
- #: ../super_socializer.php:1348 ../helper.php:901
139
  msgid ""
140
  "Do not fetch and update social avatar from my profile, next time I Social "
141
  "Login"
@@ -143,93 +137,87 @@ msgstr ""
143
  "No se ha podido recuperar y actualizar el avatar social desde mi perfil, la "
144
  "próxima vez | Social Login"
145
 
146
- #: ../super_socializer.php:1352 ../helper.php:902
147
  msgid "Update social avatar, next time I Social Login"
148
  msgstr "Actualiza tu avatar de redes sociales | Social Login"
149
 
150
- #: ../super_socializer.php:1425 ../super_socializer.php:2197
151
- msgid ""
152
- "Your browser is blocking some features of this website. Please follow the "
153
- "instructions at {support_url} to unblock these."
154
- msgstr ""
155
-
156
- #: ../super_socializer.php:1431
157
  msgid "Login with your Social ID"
158
  msgstr ""
159
 
160
- #: ../super_socializer.php:1432
161
  msgid "Email you entered is already registered or invalid"
162
  msgstr "El email que has escrito ya está registrado o no es válido"
163
 
164
- #: ../super_socializer.php:1437
165
  msgid "Please enter a valid email address. You might be required to verify it"
166
  msgstr ""
167
  "Por favor escribe una dirección de email válida. Puedes ser requerido para "
168
  "verificarla"
169
 
170
- #: ../super_socializer.php:1441 ../super_socializer.php:2121
171
  msgid "Link your social account to login to your account at this website"
172
  msgstr ""
173
  "Enlaza la cuenta de tu red social para ingresar en tu cuenta de este sitio "
174
  "web "
175
 
176
- #: ../super_socializer.php:1687
177
  msgid "Thanks for installing Super Socializer plugin"
178
  msgstr ""
179
 
180
- #: ../super_socializer.php:1689
181
  msgid "Configure the Plugin"
182
  msgstr ""
183
 
184
- #: ../super_socializer.php:1700
185
  msgid ""
186
  "Update \"Facebook Comments Moderation\" add-on for compatibility with "
187
  "current version of Super Socialzer"
188
  msgstr ""
189
 
190
- #: ../super_socializer.php:1709
191
  msgid ""
192
  "Update \"Facebook Comments Notifier\" add-on for compatibility with current "
193
  "version of Super Socialzer"
194
  msgstr ""
195
 
196
- #: ../super_socializer.php:1718
197
  msgid ""
198
  "Update \"Social Login Buttons\" add-on for compatibility with current "
199
  "version of Super Socialzer"
200
  msgstr ""
201
 
202
- #: ../super_socializer.php:1727
203
  msgid ""
204
  "Update \"Social Share myCRED Integration\" add-on for maximum compatibility "
205
  "with current version of Super Socialzer"
206
  msgstr ""
207
 
208
- #: ../super_socializer.php:1736
209
  msgid ""
210
  "Update \"Social Login myCRED Integration\" add-on for maximum compatibility "
211
  "with current version of Super Socialzer"
212
  msgstr ""
213
 
214
- #: ../super_socializer.php:1743
215
  msgid ""
216
  "Update \"Social Login myCRED Integration\" add-on for compatibility with "
217
  "LiveJournal Login of Super Socialzer"
218
  msgstr ""
219
 
220
- #: ../super_socializer.php:1754
221
  #, php-format
222
  msgid ""
223
  "To continue using Steam login save Steam API key <a href=\"%s\">here</a>"
224
  msgstr ""
225
 
226
- #: ../super_socializer.php:1770
227
  #, php-format
228
  msgid ""
229
  "To continue using Social Login, save the secret keys <a href=\"%s\">here</a>"
230
  msgstr ""
231
 
232
- #: ../super_socializer.php:1794
233
  #, php-format
234
  msgid ""
235
  "Add %s in \"Valid OAuth redirect URIs\" option in your Facebook app settings "
@@ -237,14 +225,14 @@ msgid ""
237
  "target=\"_blank\">here</a>"
238
  msgstr ""
239
 
240
- #: ../super_socializer.php:1794 ../super_socializer.php:1819
241
- #: ../super_socializer.php:1844 ../super_socializer.php:1869
242
- #: ../super_socializer.php:1902 ../super_socializer.php:1930
243
- #: ../super_socializer.php:1957 ../super_socializer.php:2034
244
  msgid "Okay"
245
  msgstr ""
246
 
247
- #: ../super_socializer.php:1819
248
  #, php-format
249
  msgid ""
250
  "Add %s in \"Callback URLs\" option in your Twitter app settings for Twitter "
@@ -252,7 +240,7 @@ msgid ""
252
  "\">here</a>"
253
  msgstr ""
254
 
255
- #: ../super_socializer.php:1844
256
  #, php-format
257
  msgid ""
258
  "Add %s in \"Authorized Redirect URLs\" option in your Linkedin app settings "
@@ -260,7 +248,7 @@ msgid ""
260
  "target=\"_blank\">here</a>"
261
  msgstr ""
262
 
263
- #: ../super_socializer.php:1869
264
  #, php-format
265
  msgid ""
266
  "Add %s in \"Authorized redirect URIs\" option in your Google client settings "
@@ -268,13 +256,13 @@ msgid ""
268
  "target=\"_blank\">here</a>"
269
  msgstr ""
270
 
271
- #: ../super_socializer.php:1880
272
  #, php-format
273
  msgid ""
274
  "Save the url of privacy policy page of your website <a href=\"%s\">here</a>"
275
  msgstr ""
276
 
277
- #: ../super_socializer.php:1902
278
  #, php-format
279
  msgid ""
280
  "This plugin is GDPR compliant. You need to update the privacy policy of your "
@@ -282,7 +270,7 @@ msgid ""
282
  "\"%s\" target=\"_blank\">here</a>"
283
  msgstr ""
284
 
285
- #: ../super_socializer.php:1930
286
  #, php-format
287
  msgid ""
288
  "Now plugin supports a new service Twitcount.com to show Twitter shares. To "
@@ -291,7 +279,7 @@ msgid ""
291
  "your website %s with them. No need to copy-paste any code from their website."
292
  msgstr ""
293
 
294
- #: ../super_socializer.php:1957
295
  #, php-format
296
  msgid ""
297
  "Replace url saved in \"Callback URLs\" option in your Twitter app settings "
@@ -299,7 +287,7 @@ msgid ""
299
  "\"%s\" target=\"_blank\">here</a>"
300
  msgstr ""
301
 
302
- #: ../super_socializer.php:1982
303
  #, php-format
304
  msgid ""
305
  "If you cannot get Linkedin login to work after updating the plugin, replace "
@@ -307,11 +295,11 @@ msgid ""
307
  "For more details, check step 6 <a href=\"%s\" target=\"_blank\">here</a>"
308
  msgstr ""
309
 
310
- #: ../super_socializer.php:1982 ../super_socializer.php:2009
311
  msgid "Dismiss"
312
  msgstr ""
313
 
314
- #: ../super_socializer.php:2008
315
  #, php-format
316
  msgid ""
317
  "Save Facebook App ID and Secret keys in \"Standard Interface\" and/or "
@@ -320,7 +308,7 @@ msgid ""
320
  "that, clear share counts cache from \"Miscellaneous\" section"
321
  msgstr ""
322
 
323
- #: ../super_socializer.php:2034
324
  #, php-format
325
  msgid ""
326
  "Your website visitors will see a popup notification (only once) if their "
@@ -330,11 +318,17 @@ msgid ""
330
  "features\" option <a href=\"%s\">here</a>"
331
  msgstr ""
332
 
 
 
 
 
 
 
333
  #: ../helper.php:8
334
  msgid "Settings saved"
335
  msgstr "Ajustes guardados"
336
 
337
- #: ../helper.php:8 ../admin/social_sharing.php:42
338
  msgid "Dismiss this notice"
339
  msgstr "No volver a mostrar este aviso"
340
 
@@ -424,9 +418,9 @@ msgstr "Avatar Pequeño"
424
  msgid "Large Avatar"
425
  msgstr "Avatar Grande"
426
 
427
- #: ../helper.php:913 ../admin/general_options.php:132
428
- #: ../admin/social_sharing.php:2020 ../admin/social_commenting.php:413
429
- #: ../admin/social_login.php:1277 ../admin/like_buttons.php:826
430
  msgid "Save Changes"
431
  msgstr "Guardar Cambios"
432
 
@@ -447,10 +441,10 @@ msgstr ""
447
  msgid "Something bad happened"
448
  msgstr ""
449
 
450
- #: ../admin/general_options.php:7 ../admin/general_options.php:136
451
- #: ../admin/social_sharing.php:5 ../admin/social_sharing.php:2024
452
  #: ../admin/social_commenting.php:5 ../admin/social_commenting.php:417
453
- #: ../admin/social_login.php:5 ../admin/social_login.php:1281
454
  #: ../admin/like_buttons.php:6 ../admin/like_buttons.php:830
455
  #, fuzzy, php-format
456
  msgid ""
@@ -496,55 +490,34 @@ msgstr ""
496
  "instalar el plugin."
497
 
498
  #: ../admin/general_options.php:75
499
- msgid ""
500
- "Show popup notification to users if their browsers block the plugin features"
501
- msgstr ""
502
-
503
- #: ../admin/general_options.php:85
504
- msgid ""
505
- "If enabled, your website visitors will see a popup notification (only once) "
506
- "if their browsers block any of the features of the plugin so that they can "
507
- "change their browser settings to unblock these."
508
- msgstr ""
509
-
510
- #: ../admin/general_options.php:95
511
- msgid "Message to show in popup notification"
512
- msgstr ""
513
-
514
- #: ../admin/general_options.php:105
515
- msgid ""
516
- "Use {support_url} placeholder to show support documentation url in message"
517
- msgstr ""
518
-
519
- #: ../admin/general_options.php:114
520
  msgid "Custom CSS"
521
  msgstr "CSS Personalizado"
522
 
523
- #: ../admin/general_options.php:124
524
  msgid "You can specify any additional CSS rules (without &lt;style&gt; tag)"
525
  msgstr ""
526
  "Puede especificar cualesquiera reglas adicionales CSS (sin la etiqueta &lt;"
527
  "style&gt;)"
528
 
529
- #: ../admin/general_options.php:147 ../admin/social_sharing.php:2030
530
- #: ../admin/social_commenting.php:423 ../admin/social_login.php:1287
531
- #: ../admin/like_buttons.php:836
532
  #, fuzzy
533
  msgid "Instagram Shoutout"
534
  msgstr "Instagram"
535
 
536
- #: ../admin/general_options.php:149 ../admin/social_sharing.php:2032
537
- #: ../admin/social_commenting.php:425 ../admin/social_login.php:1289
538
- #: ../admin/like_buttons.php:838
539
  msgid ""
540
  "If you can send (to hello@heateor.com) how our plugin is helping your "
541
  "business, we can share it on Instagram. You can also send any relevant "
542
  "hashtags and people to mention in the Instagram post."
543
  msgstr ""
544
 
545
- #: ../admin/general_options.php:150 ../admin/social_sharing.php:2033
546
- #: ../admin/social_commenting.php:426 ../admin/social_login.php:1290
547
- #: ../admin/like_buttons.php:839
548
  msgid ""
549
  "<b>Example</b> - Blah-Blah Online Coaching teaches various programming "
550
  "language courses through their website. They have emerged as one of the most "
@@ -553,9 +526,9 @@ msgid ""
553
  "time."
554
  msgstr ""
555
 
556
- #: ../admin/general_options.php:151 ../admin/social_sharing.php:2034
557
- #: ../admin/social_commenting.php:427 ../admin/social_login.php:1291
558
- #: ../admin/like_buttons.php:840
559
  msgid ""
560
  "@blahblahonlinecoaching proudly use #SuperSocializer to enable social "
561
  "features at their website, such as - Social Login, Social Share and Social "
@@ -666,59 +639,59 @@ msgstr "Control Maestro para permitir Compartir en redes sociales"
666
  msgid "Recover Social Share Counts Lost After Moving to SSL/Https"
667
  msgstr ""
668
 
669
- #: ../admin/social_sharing.php:42 ../admin/social_sharing.php:1983
670
  msgid ""
671
  "Save Facebook App Id and Secret in the \"Miscellaneous\" section for "
672
  "Facebook share count to work"
673
  msgstr ""
674
 
675
- #: ../admin/social_sharing.php:49
676
  msgid "Theme Selection"
677
  msgstr "Selección de Temas"
678
 
679
- #: ../admin/social_sharing.php:50 ../admin/like_buttons.php:41
680
  msgid "Standard Interface"
681
  msgstr "Interfaz Estándar"
682
 
683
- #: ../admin/social_sharing.php:51 ../admin/like_buttons.php:42
684
  msgid "Floating Interface"
685
  msgstr "Interfaz Flotante"
686
 
687
- #: ../admin/social_sharing.php:52 ../admin/like_buttons.php:43
688
  msgid "Miscellaneous"
689
  msgstr "Miscelánea"
690
 
691
- #: ../admin/social_sharing.php:56 ../admin/like_buttons.php:47
692
  msgid "3rd Party Integration"
693
  msgstr ""
694
 
695
- #: ../admin/social_sharing.php:60 ../admin/social_sharing.php:1945
696
- #: ../admin/social_sharing.php:1947 ../admin/social_login.php:46
697
- #: ../admin/social_login.php:1243 ../admin/like_buttons.php:51
698
  #: ../admin/like_buttons.php:797
699
  msgid "Shortcode & Widget"
700
  msgstr "Widgets y Shortcodes"
701
 
702
- #: ../admin/social_sharing.php:61
703
  msgid "Troubleshooter"
704
  msgstr "Resolución de problmas"
705
 
706
- #: ../admin/social_sharing.php:62 ../admin/social_sharing.php:1978
707
  #: ../admin/social_commenting.php:40 ../admin/social_commenting.php:397
708
- #: ../admin/social_login.php:47 ../admin/social_login.php:1257
709
  #: ../admin/like_buttons.php:52 ../admin/like_buttons.php:810
710
  msgid "FAQ"
711
  msgstr "FAQ"
712
 
713
- #: ../admin/social_sharing.php:70
714
  msgid "Standard interface theme"
715
  msgstr "Tema de la Interfaz Estándar"
716
 
717
- #: ../admin/social_sharing.php:75 ../admin/social_sharing.php:382
718
  msgid "Icon Preview"
719
  msgstr "Vista previa de Icono"
720
 
721
- #: ../admin/social_sharing.php:147 ../admin/social_sharing.php:455
722
  msgid ""
723
  "Do not forget to save the configuration after making changes by clicking the "
724
  "save button below"
@@ -726,57 +699,57 @@ msgstr ""
726
  "No olvides guardar la configuración después de hacer cambios clickando en el "
727
  "botón \"Guardar\" de abajo"
728
 
729
- #: ../admin/social_sharing.php:154 ../admin/social_sharing.php:462
730
  msgid "Shape"
731
  msgstr "Forma"
732
 
733
- #: ../admin/social_sharing.php:158 ../admin/social_sharing.php:466
734
  #: ../inc/widget.php:951
735
  msgid "Round"
736
  msgstr "Redondeado"
737
 
738
- #: ../admin/social_sharing.php:160 ../admin/social_sharing.php:468
739
  #: ../inc/widget.php:952
740
  msgid "Square"
741
  msgstr "Cuadrado"
742
 
743
- #: ../admin/social_sharing.php:162 ../admin/social_sharing.php:470
744
  msgid "Rectangle"
745
  msgstr "Rectángulo"
746
 
747
- #: ../admin/social_sharing.php:169 ../admin/social_sharing.php:477
748
  msgid "Shape of the sharing icons"
749
  msgstr "Forma de los iconos de compartir"
750
 
751
- #: ../admin/social_sharing.php:178 ../admin/social_sharing.php:486
752
  msgid "Size (in pixels)"
753
  msgstr "Tamaño (en pixels)"
754
 
755
- #: ../admin/social_sharing.php:194 ../admin/social_sharing.php:502
756
  msgid "Size of the sharing icons"
757
  msgstr "Tamaño de los iconos de Compartir"
758
 
759
- #: ../admin/social_sharing.php:204 ../admin/social_sharing.php:512
760
  msgid "Width (in pixels)"
761
  msgstr "Anchura (en pixels)"
762
 
763
- #: ../admin/social_sharing.php:220 ../admin/social_sharing.php:528
764
  msgid "Width of the sharing icons"
765
  msgstr "Anchura de los iconos de Compartir"
766
 
767
- #: ../admin/social_sharing.php:228 ../admin/social_sharing.php:536
768
  msgid "Height (in pixels)"
769
  msgstr "Altura (en pixels)"
770
 
771
- #: ../admin/social_sharing.php:244 ../admin/social_sharing.php:552
772
  msgid "Height of the sharing icons"
773
  msgstr "Altura de los iconos de Compartir"
774
 
775
- #: ../admin/social_sharing.php:254 ../admin/social_sharing.php:562
776
  msgid "Border radius (in pixels)"
777
  msgstr "Borde del radio (en pixels)"
778
 
779
- #: ../admin/social_sharing.php:264 ../admin/social_sharing.php:572
780
  msgid ""
781
  "Specify a value for rounded corners. More the value, more rounded will the "
782
  "corners be. Leave empty for sharp corners."
@@ -785,23 +758,23 @@ msgstr ""
785
  "valor, más redondeadas serán las esquinas. Déjalo vacío si prefieres las "
786
  "esquinas cuaadradas."
787
 
788
- #: ../admin/social_sharing.php:273 ../admin/social_sharing.php:581
789
  msgid "Logo Color"
790
  msgstr "Color del Logo"
791
 
792
- #: ../admin/social_sharing.php:277 ../admin/social_sharing.php:298
793
- #: ../admin/social_sharing.php:318 ../admin/social_sharing.php:585
794
- #: ../admin/social_sharing.php:606 ../admin/social_sharing.php:625
795
  msgid "Default"
796
  msgstr "Por defecto "
797
 
798
- #: ../admin/social_sharing.php:279 ../admin/social_sharing.php:299
799
- #: ../admin/social_sharing.php:323 ../admin/social_sharing.php:587
800
- #: ../admin/social_sharing.php:607 ../admin/social_sharing.php:630
801
  msgid "On Hover"
802
  msgstr "Con el puntero encima "
803
 
804
- #: ../admin/social_sharing.php:287 ../admin/social_sharing.php:595
805
  msgid ""
806
  "Specify the color or hex code (example #cc78e0) for the logo of icon. Leave "
807
  "empty for default. You can get the hex code of the required color from <a "
@@ -812,13 +785,13 @@ msgstr ""
812
  "conseguir el código hexadecimal del color que desees en <a href=\"http://www."
813
  "colorpicker.com/\" target=\"_blank\">este enlace</a>"
814
 
815
- #: ../admin/social_sharing.php:295 ../admin/social_sharing.php:603
816
- #: ../admin/social_sharing.php:1318 ../admin/like_buttons.php:410
817
  #: ../inc/widget.php:460 ../inc/widget.php:772
818
  msgid "Background Color"
819
  msgstr "Color del fondo"
820
 
821
- #: ../admin/social_sharing.php:306 ../admin/social_sharing.php:614
822
  msgid ""
823
  "Specify the color or hex code (example #cc78e0) for icon background. Save "
824
  "\"transparent\" for transparent background. Leave empty for default. You can "
@@ -831,281 +804,281 @@ msgstr ""
831
  "código hexadecimal del color que desees en <a href=\"http://www.colorpicker."
832
  "com/\" target=\"_blank\">este enlace</a>"
833
 
834
- #: ../admin/social_sharing.php:314 ../admin/social_sharing.php:622
835
  msgid "Border"
836
  msgstr "Borde"
837
 
838
- #: ../admin/social_sharing.php:320 ../admin/social_sharing.php:325
839
- #: ../admin/social_sharing.php:627 ../admin/social_sharing.php:632
840
  msgid "Border Width"
841
  msgstr "Anchura del borde "
842
 
843
- #: ../admin/social_sharing.php:321 ../admin/social_sharing.php:326
844
- #: ../admin/social_sharing.php:628 ../admin/social_sharing.php:633
845
  msgid "Border Color"
846
  msgstr "Color del borde "
847
 
848
- #: ../admin/social_sharing.php:333 ../admin/social_sharing.php:640
849
  msgid "Icon border"
850
  msgstr "Borde del icono"
851
 
852
- #: ../admin/social_sharing.php:341 ../admin/social_sharing.php:648
853
  msgid "Counter Position"
854
  msgstr "Posición del Contador"
855
 
856
- #: ../admin/social_sharing.php:341 ../admin/social_sharing.php:648
857
  msgid "(applies, if counter enabled)"
858
  msgstr "(aplicable si el contador está activo)"
859
 
860
- #: ../admin/social_sharing.php:345 ../admin/social_sharing.php:652
861
- #: ../admin/social_sharing.php:935 ../admin/social_sharing.php:1340
862
  #: ../admin/like_buttons.php:183 ../admin/like_buttons.php:432
863
  #: ../inc/widget.php:446 ../inc/widget.php:758
864
  msgid "Left"
865
  msgstr "Izquierda"
866
 
867
- #: ../admin/social_sharing.php:347 ../admin/social_sharing.php:654
868
  msgid "Top"
869
  msgstr "Arriba"
870
 
871
- #: ../admin/social_sharing.php:349 ../admin/social_sharing.php:656
872
- #: ../admin/social_sharing.php:937 ../admin/social_sharing.php:1341
873
  #: ../admin/like_buttons.php:185 ../admin/like_buttons.php:433
874
  #: ../inc/widget.php:447 ../inc/widget.php:759
875
  msgid "Right"
876
  msgstr "Derecha"
877
 
878
- #: ../admin/social_sharing.php:351 ../admin/social_sharing.php:658
879
  msgid "Bottom"
880
  msgstr "Abajo"
881
 
882
- #: ../admin/social_sharing.php:353 ../admin/social_sharing.php:660
883
  msgid "Inner Left"
884
  msgstr "Izquierda Interior"
885
 
886
- #: ../admin/social_sharing.php:355 ../admin/social_sharing.php:662
887
  msgid "Inner Top"
888
  msgstr "Arriba Interior"
889
 
890
- #: ../admin/social_sharing.php:357 ../admin/social_sharing.php:664
891
  msgid "Inner Right"
892
  msgstr "Derecha Interior"
893
 
894
- #: ../admin/social_sharing.php:359 ../admin/social_sharing.php:666
895
  msgid "Inner Bottom"
896
  msgstr "Abajo Interior"
897
 
898
- #: ../admin/social_sharing.php:367 ../admin/social_sharing.php:674
899
  msgid "Position of share counter"
900
  msgstr "Posición del contador de veces compartidas"
901
 
902
- #: ../admin/social_sharing.php:377
903
  msgid "Floating interface theme"
904
  msgstr "Tema de la Interfaz Flotante"
905
 
906
- #: ../admin/social_sharing.php:690
907
  msgid "Standard Sharing Interface Options"
908
  msgstr "Opciones de la interfaz estándar de Compartir"
909
 
910
- #: ../admin/social_sharing.php:696
911
  msgid "Enable Standard sharing interface"
912
  msgstr "Permitir Interfaz Estándar de Compartir"
913
 
914
- #: ../admin/social_sharing.php:706
915
  msgid "Master control to enable standard sharing"
916
  msgstr "Control Maestro para permitir Compartir estándar"
917
 
918
- #: ../admin/social_sharing.php:716 ../admin/social_sharing.php:1144
919
  #: ../admin/like_buttons.php:86 ../admin/like_buttons.php:336
920
  msgid "Target Url"
921
  msgstr "Target Url"
922
 
923
- #: ../admin/social_sharing.php:720 ../admin/social_sharing.php:1148
924
  #: ../admin/like_buttons.php:90 ../admin/like_buttons.php:340
925
  msgid "Url of the webpage where icons are located (default)"
926
  msgstr "Url de la página web donde los iconos están localizados (por defecto)"
927
 
928
- #: ../admin/social_sharing.php:722 ../admin/social_sharing.php:1150
929
  #: ../admin/like_buttons.php:92 ../admin/like_buttons.php:342
930
  msgid "Url of the homepage of your website"
931
  msgstr "Url de la página de inicio de tu sitio web"
932
 
933
- #: ../admin/social_sharing.php:724 ../admin/social_sharing.php:1152
934
  #: ../admin/like_buttons.php:94 ../admin/like_buttons.php:344
935
  msgid "Custom url"
936
  msgstr "Url personalizada"
937
 
938
- #: ../admin/social_sharing.php:731 ../admin/social_sharing.php:1159
939
  msgid "Url to share"
940
  msgstr "Url para compartir"
941
 
942
- #: ../admin/social_sharing.php:739 ../admin/social_login.php:532
943
  #: ../admin/social_login.php:927 ../admin/like_buttons.php:109
944
  #: ../inc/widget.php:945
945
  msgid "Title"
946
  msgstr "Título"
947
 
948
- #: ../admin/social_sharing.php:749
949
  msgid "The text to display above the sharing interface"
950
  msgstr "El texto para mostrar sobre la interfaz de Compartir"
951
 
952
- #: ../admin/social_sharing.php:774 ../admin/social_sharing.php:1168
953
  #, fuzzy
954
  msgid "Instagram username"
955
  msgstr "Instagram"
956
 
957
- #: ../admin/social_sharing.php:784 ../admin/social_sharing.php:1178
958
  msgid ""
959
  "Username of the Instagram account you want to redirect users to, on clicking "
960
  "the icon"
961
  msgstr ""
962
 
963
- #: ../admin/social_sharing.php:794 ../admin/social_sharing.php:1188
964
  #, fuzzy
965
  msgid "HTML ID of container element of comment form"
966
  msgstr "HTML ID del contenedor del formulario de comentario"
967
 
968
- #: ../admin/social_sharing.php:804 ../admin/social_sharing.php:1198
969
  msgid ""
970
  "HTML ID of the element you want to focus on the webpage, on click of Comment "
971
  "icon."
972
  msgstr ""
973
 
974
- #: ../admin/social_sharing.php:818 ../admin/social_sharing.php:1207
975
  msgid "Rearrange icons"
976
  msgstr "Reorganizar iconos"
977
 
978
- #: ../admin/social_sharing.php:879 ../admin/social_sharing.php:1266
979
  msgid "Drag the icons to rearrange in desired order"
980
  msgstr "Arrastra los iconos para reorganizarlos en el orden deseado"
981
 
982
- #: ../admin/social_sharing.php:887 ../admin/social_sharing.php:1274
983
  msgid "Select Sharing Services"
984
  msgstr "Selecciona los Servicios para Compartir"
985
 
986
- #: ../admin/social_sharing.php:894 ../admin/social_sharing.php:1281
987
  msgid "Select sharing services to show in social share bar"
988
  msgstr ""
989
  "Selecciona los servicios para compartir en la barra de Compartir en redes "
990
  "sociales"
991
 
992
- #: ../admin/social_sharing.php:912 ../admin/social_sharing.php:1299
993
  #, fuzzy
994
  msgid "Search social network"
995
  msgstr "como red social primaria"
996
 
997
- #: ../admin/social_sharing.php:931 ../admin/social_sharing.php:1336
998
  #: ../admin/like_buttons.php:179 ../admin/like_buttons.php:428
999
  msgid "Horizontal alignment"
1000
  msgstr "Alineación horizontal"
1001
 
1002
- #: ../admin/social_sharing.php:936 ../admin/like_buttons.php:184
1003
  msgid "Center"
1004
  msgstr "Centrar"
1005
 
1006
- #: ../admin/social_sharing.php:945 ../admin/social_sharing.php:1349
1007
  msgid "Horizontal alignment of the sharing interface"
1008
  msgstr "Alineación horizontal de la interfaz de Compartir"
1009
 
1010
- #: ../admin/social_sharing.php:953 ../admin/like_buttons.php:201
1011
  msgid "Position with respect to content"
1012
  msgstr "Posición respecto al contenido"
1013
 
1014
- #: ../admin/social_sharing.php:957 ../admin/like_buttons.php:205
1015
  msgid "Top of the content"
1016
  msgstr "Encima del contenido"
1017
 
1018
- #: ../admin/social_sharing.php:959 ../admin/like_buttons.php:207
1019
  msgid "Bottom of the content"
1020
  msgstr "Debajo del contenido"
1021
 
1022
- #: ../admin/social_sharing.php:966
1023
  msgid "Specify position of the sharing interface with respect to the content"
1024
  msgstr ""
1025
  "Especifica la posición de la interfaz de Compartir respecto al contenido"
1026
 
1027
- #: ../admin/social_sharing.php:974 ../admin/social_sharing.php:1415
1028
  msgid "Placement"
1029
  msgstr "Ubicación"
1030
 
1031
- #: ../admin/social_sharing.php:978 ../admin/social_sharing.php:1419
1032
  #: ../admin/social_login.php:866 ../admin/social_login.php:896
1033
  #: ../admin/like_buttons.php:226 ../admin/like_buttons.php:511
1034
  msgid "Homepage"
1035
  msgstr "Página de Inicio"
1036
 
1037
- #: ../admin/social_sharing.php:980 ../admin/social_sharing.php:1421
1038
  #: ../admin/like_buttons.php:228 ../admin/like_buttons.php:513
1039
  msgid "Posts"
1040
  msgstr "Entradas"
1041
 
1042
- #: ../admin/social_sharing.php:982 ../admin/social_sharing.php:1423
1043
  #: ../admin/like_buttons.php:230 ../admin/like_buttons.php:515
1044
  msgid "Pages"
1045
  msgstr "Páginas"
1046
 
1047
- #: ../admin/social_sharing.php:984 ../admin/social_sharing.php:1425
1048
  #: ../admin/like_buttons.php:232 ../admin/like_buttons.php:517
1049
  #, fuzzy
1050
  msgid "Excerpts and Posts page"
1051
  msgstr "Extractos (en la Página de Inicio)"
1052
 
1053
- #: ../admin/social_sharing.php:986 ../admin/social_sharing.php:1427
1054
  #: ../admin/like_buttons.php:234 ../admin/like_buttons.php:519
1055
  msgid "Category Archives"
1056
  msgstr "Archivos por Categoría"
1057
 
1058
- #: ../admin/social_sharing.php:988 ../admin/social_sharing.php:1429
1059
  #: ../admin/like_buttons.php:236 ../admin/like_buttons.php:521
1060
  msgid "Archive Pages (Category, Tag, Author or Date based pages)"
1061
  msgstr ""
1062
  "Páginas de Archivo (Categoría, Etiqueta, Autor o páginas clasificadas por "
1063
  "Fecha)"
1064
 
1065
- #: ../admin/social_sharing.php:1004 ../admin/like_buttons.php:252
1066
  msgid "BuddyPress activity"
1067
  msgstr "Actividad en BuddyPress"
1068
 
1069
- #: ../admin/social_sharing.php:1006 ../admin/like_buttons.php:255
1070
  msgid "BuddyPress group (only at top of content)"
1071
  msgstr "Grupo BuddyPress (sólo encima del contenido)"
1072
 
1073
- #: ../admin/social_sharing.php:1012 ../admin/social_sharing.php:1451
1074
  #: ../admin/like_buttons.php:262 ../admin/like_buttons.php:542
1075
  msgid "BBPress forum"
1076
  msgstr "Foro BBPress"
1077
 
1078
- #: ../admin/social_sharing.php:1015 ../admin/social_sharing.php:1454
1079
  #: ../admin/like_buttons.php:265 ../admin/like_buttons.php:545
1080
  msgid "BBPress topic"
1081
  msgstr "Tema BBPress"
1082
 
1083
- #: ../admin/social_sharing.php:1018 ../admin/like_buttons.php:268
1084
  msgid "BBPress reply"
1085
  msgstr "Respuesta BBPress"
1086
 
1087
- #: ../admin/social_sharing.php:1025 ../admin/like_buttons.php:275
1088
  msgid "After individual product at WooCommerce Shop page"
1089
  msgstr "Después de cada producto individual en página de Tienda WooCommerce"
1090
 
1091
- #: ../admin/social_sharing.php:1028 ../admin/like_buttons.php:278
1092
  msgid "WooCommerce Product Page"
1093
  msgstr "Página de Producto WooCommerce"
1094
 
1095
- #: ../admin/social_sharing.php:1031 ../admin/like_buttons.php:281
1096
  msgid "WooCommerce Thankyou Page"
1097
  msgstr "Página de Agradecimiento WooCommerce"
1098
 
1099
- #: ../admin/social_sharing.php:1042
1100
  msgid "Specify the pages where you want to enable Sharing interface"
1101
  msgstr ""
1102
  "Especifica las páginas donde tú quieres permitir la interfaz de Compartir"
1103
 
1104
- #: ../admin/social_sharing.php:1050 ../admin/social_sharing.php:1472
1105
  msgid "Show share counts"
1106
  msgstr "Mostrar contadores de las veces compartidas"
1107
 
1108
- #: ../admin/social_sharing.php:1055 ../admin/social_sharing.php:1477
1109
  #, fuzzy
1110
  msgid ""
1111
  "Share counts are supported for Facebook, Twitter, Linkedin, Buffer, Reddit, "
@@ -1115,7 +1088,7 @@ msgstr ""
1115
  "Facebook, Linkedin, GooglePlus, Delicious, Buffer, Reddit, Pinterest, "
1116
  "Stumbleupon, Odnoklassniki y Vkontakte"
1117
 
1118
- #: ../admin/social_sharing.php:1056 ../admin/social_sharing.php:1478
1119
  #, php-format
1120
  msgid ""
1121
  "To show Twitter share count, you have to click \"Give me my Twitter counts "
@@ -1124,27 +1097,27 @@ msgid ""
1124
  "their website."
1125
  msgstr ""
1126
 
1127
- #: ../admin/social_sharing.php:1063 ../admin/social_sharing.php:1485
1128
  msgid "If enabled, share counts are displayed above sharing icons."
1129
  msgstr ""
1130
  "Si se activa, los contadores de veces compartidas aparecerán encima de los "
1131
  "iconos de compartir."
1132
 
1133
- #: ../admin/social_sharing.php:1072 ../admin/social_sharing.php:1494
1134
  msgid "Show total shares"
1135
  msgstr "Mostrar número total de veces compartidas"
1136
 
1137
- #: ../admin/social_sharing.php:1082 ../admin/social_sharing.php:1504
1138
  msgid "If enabled, total shares will be displayed with sharing icons"
1139
  msgstr ""
1140
  "Si se activa, los contadores de veces compartidas aparecerán con los iconos "
1141
  "de compartir."
1142
 
1143
- #: ../admin/social_sharing.php:1091 ../admin/social_sharing.php:1513
1144
  msgid "Enable 'More' icon"
1145
  msgstr "Permitir el icono 'Más'"
1146
 
1147
- #: ../admin/social_sharing.php:1101 ../admin/social_sharing.php:1523
1148
  msgid ""
1149
  "If enabled, \"More\" icon will be displayed after selected sharing icons "
1150
  "which shows additional sharing networks in popup"
@@ -1152,19 +1125,19 @@ msgstr ""
1152
  "Si se activa, el icono \"Más\" aparecerá después de los iconos de compartir "
1153
  "seleccionados, y mostrará en un popup las redes adicionales para compartir"
1154
 
1155
- #: ../admin/social_sharing.php:1118
1156
  msgid "Floating Sharing Interface Options"
1157
  msgstr "Opciones de la Interfaz Flotante de Compartir"
1158
 
1159
- #: ../admin/social_sharing.php:1124
1160
  msgid "Enable Floating sharing interface"
1161
  msgstr "Permitir la Interfaz Flotante de Compartir"
1162
 
1163
- #: ../admin/social_sharing.php:1134
1164
  msgid "Master control to enable floating sharing widget"
1165
  msgstr "Control maestro para permitir el widget flotante de compartir"
1166
 
1167
- #: ../admin/social_sharing.php:1328
1168
  msgid ""
1169
  "Specify the color or hex code (example #cc78e0) for the background of "
1170
  "vertical sharing bar. Leave empty for transparent. You can get the hex code "
@@ -1176,11 +1149,11 @@ msgstr ""
1176
  "Puedes conseguir el código hexadecimal del color que desees en <a href="
1177
  "\"http://www.colorpicker.com/\" target=\"_blank\">este enlace</a>"
1178
 
1179
- #: ../admin/social_sharing.php:1358 ../admin/like_buttons.php:450
1180
  msgid "Left offset"
1181
  msgstr "Desplazamiento a la izquierda"
1182
 
1183
- #: ../admin/social_sharing.php:1368
1184
  msgid ""
1185
  "Specify a number. Increase in number will shift sharing interface towards "
1186
  "right and decrease will shift it towards left. Number can be negative too."
@@ -1189,11 +1162,11 @@ msgstr ""
1189
  "desplazará hacia la derecha, mientras que al disminuirlo se desplazará hacia "
1190
  "la izquierda. El número puede ser negativo también."
1191
 
1192
- #: ../admin/social_sharing.php:1378 ../admin/like_buttons.php:470
1193
  msgid "Right offset"
1194
  msgstr "Desplazamiento a la derecha"
1195
 
1196
- #: ../admin/social_sharing.php:1388
1197
  msgid ""
1198
  "Specify a number. Increase in number will shift sharing interface towards "
1199
  "left and decrease will shift it towards right. Number can be negative too."
@@ -1202,11 +1175,11 @@ msgstr ""
1202
  "desplazará hacia la izquierda, mientras que al disminuirlo se desplazará "
1203
  "hacia la derecha. El número puede ser negativo también."
1204
 
1205
- #: ../admin/social_sharing.php:1397 ../admin/like_buttons.php:489
1206
  msgid "Top offset"
1207
  msgstr "Desplazamiento hacia arriba"
1208
 
1209
- #: ../admin/social_sharing.php:1407
1210
  msgid ""
1211
  "Specify a number. Increase in number will shift sharing interface towards "
1212
  "bottom and decrease will shift it towards top."
@@ -1215,37 +1188,37 @@ msgstr ""
1215
  "desplazará hacia abajo, mientras que al disminuirlo se desplazará hacia "
1216
  "abajo."
1217
 
1218
- #: ../admin/social_sharing.php:1443 ../admin/like_buttons.php:535
1219
  msgid "BuddyPress group"
1220
  msgstr "grupo BuddyPress"
1221
 
1222
- #: ../admin/social_sharing.php:1464
1223
  msgid "Specify the pages where you want to enable vertical Sharing interface"
1224
  msgstr ""
1225
  "Especifica las páginas donde quieres permitir la interfaz vertical de "
1226
  "Compartir"
1227
 
1228
- #: ../admin/social_sharing.php:1531
1229
  #, fuzzy
1230
  msgid "Hide floating slider"
1231
  msgstr "Ocultar para usuarios conectados:"
1232
 
1233
- #: ../admin/social_sharing.php:1541
1234
  msgid "Hides the slider arrow present below the floating share bar"
1235
  msgstr ""
1236
 
1237
- #: ../admin/social_sharing.php:1549
1238
  msgid "Vertical floating bar responsiveness"
1239
  msgstr "Barra flotante vertical adaptativa multidispositivo (responsiveness)"
1240
 
1241
- #: ../admin/social_sharing.php:1552
1242
  #, php-format
1243
  msgid "Display vertical interface only when screen is wider than %s pixels"
1244
  msgstr ""
1245
  "Mostrar la interfaz vertical sólo cuando la pantalla es más ancha que %s "
1246
  "pixels"
1247
 
1248
- #: ../admin/social_sharing.php:1559
1249
  msgid ""
1250
  "Display vertical interface only when screen is wider than the width "
1251
  "specified."
@@ -1253,11 +1226,11 @@ msgstr ""
1253
  "Mostrar la interfaz vertical sólo cuando la pantalla es más ancha que el "
1254
  "ancho especificado."
1255
 
1256
- #: ../admin/social_sharing.php:1567
1257
  msgid "Horizontal floating bar responsiveness"
1258
  msgstr "Barra flotante vertical adaptativa multidispositivo (responsiveness)"
1259
 
1260
- #: ../admin/social_sharing.php:1570
1261
  #, php-format
1262
  msgid ""
1263
  "Stick vertical floating interface horizontally at bottom only when screen is "
@@ -1266,7 +1239,7 @@ msgstr ""
1266
  "Mantener siempre visible la interfaz vertical flotante horizontalmente en el "
1267
  "fondo sólo cuando la pantalla sea más estrecha que %s pixels"
1268
 
1269
- #: ../admin/social_sharing.php:1577
1270
  msgid ""
1271
  "Stick vertical floating interface horizontally at bottom only when screen is "
1272
  "narrower than the width specified"
@@ -1274,43 +1247,43 @@ msgstr ""
1274
  "Mantener siempre visible la interfaz vertical flotante horizontalmente en el "
1275
  "fondo sólo cuando la pantalla sea más estrecha que el ancho especificado"
1276
 
1277
- #: ../admin/social_sharing.php:1587
1278
  msgid "Horizontal floating bar position"
1279
  msgstr "Posición de la barra flotante horizontal"
1280
 
1281
- #: ../admin/social_sharing.php:1590
1282
  #, php-format
1283
  msgid "%s pixels from %s"
1284
  msgstr "%s pixels de %s"
1285
 
1286
- #: ../admin/social_sharing.php:1591
1287
  msgid "Auto-adjust according to screen width (responsive)"
1288
  msgstr ""
1289
 
1290
- #: ../admin/social_sharing.php:1598
1291
  msgid "Alignment of horizontal floating interface. Number can be negative too."
1292
  msgstr ""
1293
  "Alineación de la interfaz flotante horizontal, El número puede ser negativo "
1294
  "también."
1295
 
1296
- #: ../admin/social_sharing.php:1618
1297
  #, fuzzy
1298
  msgid "Facebook Share Count"
1299
  msgstr "Resolución de problemas al Compartir en Facebook"
1300
 
1301
- #: ../admin/social_sharing.php:1622
1302
  msgid "Note"
1303
  msgstr ""
1304
 
1305
- #: ../admin/social_sharing.php:1622
1306
  msgid "Required only to track Facebook share count"
1307
  msgstr ""
1308
 
1309
- #: ../admin/social_sharing.php:1628 ../admin/social_login.php:161
1310
  msgid "Facebook App ID"
1311
  msgstr "Facebook App ID"
1312
 
1313
- #: ../admin/social_sharing.php:1638
1314
  #, fuzzy, php-format
1315
  msgid ""
1316
  "Required for Facebook share count to work. Please follow the documentation "
@@ -1320,12 +1293,12 @@ msgstr ""
1320
  "sigue la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> "
1321
  "para conseguir tu Facebook App ID"
1322
 
1323
- #: ../admin/social_sharing.php:1646 ../admin/social_login.php:183
1324
  #, fuzzy
1325
  msgid "Facebook App Secret"
1326
  msgstr "Facebook App ID"
1327
 
1328
- #: ../admin/social_sharing.php:1656
1329
  #, fuzzy, php-format
1330
  msgid ""
1331
  "Required for Facebook share count to work. Please follow the documentation "
@@ -1335,33 +1308,33 @@ msgstr ""
1335
  "sigue la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> "
1336
  "para conseguir tu Facebook App ID"
1337
 
1338
- #: ../admin/social_sharing.php:1665 ../admin/like_buttons.php:592
1339
  msgid "Url shortener"
1340
  msgstr "Acortador de Url"
1341
 
1342
- #: ../admin/social_sharing.php:1671
1343
  msgid "Use shortlinks already installed"
1344
  msgstr "Utiliza los shortlinks ya instalados"
1345
 
1346
- #: ../admin/social_sharing.php:1681
1347
  msgid "Uses default short url permalinks without using any additional plugin"
1348
  msgstr ""
1349
 
1350
- #: ../admin/social_sharing.php:1689
1351
  msgid "Enable bit.ly url shortener for sharing"
1352
  msgstr "Habilitar acortador de url bit.ly para compartir"
1353
 
1354
- #: ../admin/social_sharing.php:1699 ../admin/like_buttons.php:626
1355
  msgid "Master control to enable bit.ly url shortening for sharing"
1356
  msgstr ""
1357
  "Control maestro para permitir el acortamiento de URL bit.ly para compartir"
1358
 
1359
- #: ../admin/social_sharing.php:1707
1360
  #, fuzzy
1361
  msgid "bit.ly Login"
1362
  msgstr "Ingreso a través de redes sociales"
1363
 
1364
- #: ../admin/social_sharing.php:1717 ../admin/social_sharing.php:1736
1365
  #, fuzzy, php-format
1366
  msgid "More details on how to get it <a href=\"%s\" target=\"_blank\">here</a>"
1367
  msgstr ""
@@ -1369,19 +1342,19 @@ msgstr ""
1369
  "la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> para "
1370
  "conseguir tu Twitter Key"
1371
 
1372
- #: ../admin/social_sharing.php:1726 ../admin/like_buttons.php:653
1373
  msgid "bit.ly API Key"
1374
  msgstr "bit.ly API Key"
1375
 
1376
- #: ../admin/social_sharing.php:1745 ../admin/like_buttons.php:672
1377
  msgid "Clear Bitly Cache"
1378
  msgstr ""
1379
 
1380
- #: ../admin/social_sharing.php:1749 ../admin/like_buttons.php:676
1381
  msgid "ShortUrl cache cleared successfully."
1382
  msgstr "La caché de ShortUrl se ha vaciado con éxito."
1383
 
1384
- #: ../admin/social_sharing.php:1756 ../admin/like_buttons.php:683
1385
  msgid ""
1386
  "Use this to delete short urls saved in database. Handy, if urls of your "
1387
  "website have been changed but short urls are still being generated for old "
@@ -1391,31 +1364,31 @@ msgstr ""
1391
  "datos. Esto es práctico, si las url de tu sitio web han cambiado, pero las "
1392
  "url cortas todavía se están generando para viejas url."
1393
 
1394
- #: ../admin/social_sharing.php:1765
1395
  msgid "Share Count Cache"
1396
  msgstr ""
1397
 
1398
- #: ../admin/social_sharing.php:1771
1399
  msgid "Refresh Share Count cache every"
1400
  msgstr ""
1401
 
1402
- #: ../admin/social_sharing.php:1776
1403
  msgid "Second(s)"
1404
  msgstr ""
1405
 
1406
- #: ../admin/social_sharing.php:1777
1407
  msgid "Minute(s)"
1408
  msgstr ""
1409
 
1410
- #: ../admin/social_sharing.php:1778
1411
  msgid "Hour(s)"
1412
  msgstr ""
1413
 
1414
- #: ../admin/social_sharing.php:1779
1415
  msgid "Day(s)"
1416
  msgstr ""
1417
 
1418
- #: ../admin/social_sharing.php:1787
1419
  #, php-format
1420
  msgid ""
1421
  "Frequent cache refreshing results in slower loading of pages with share "
@@ -1423,26 +1396,26 @@ msgid ""
1423
  "target=\"_blank\">here</a>"
1424
  msgstr ""
1425
 
1426
- #: ../admin/social_sharing.php:1795
1427
  msgid "Clear Share Counts Cache"
1428
  msgstr ""
1429
 
1430
- #: ../admin/social_sharing.php:1799
1431
  #, fuzzy
1432
  msgid "Share Counts cache cleared successfully."
1433
  msgstr "La caché de ShortUrl se ha vaciado con éxito."
1434
 
1435
- #: ../admin/social_sharing.php:1806
1436
  msgid "Use this to clear cached share counts"
1437
  msgstr ""
1438
 
1439
- #: ../admin/social_sharing.php:1815 ../admin/social_sharing.php:1821
1440
  #: ../admin/social_commenting.php:315 ../admin/like_buttons.php:692
1441
  #: ../admin/like_buttons.php:698
1442
  msgid "Language"
1443
  msgstr "Idioma"
1444
 
1445
- #: ../admin/social_sharing.php:1831
1446
  #, php-format
1447
  msgid ""
1448
  "Enter the code of the language you want to use for like buttons. You can "
@@ -1453,15 +1426,15 @@ msgstr ""
1453
  "gusta\". Puedes encontrar los códigos de idioma en <a href=\"%s\" target="
1454
  "\"_blank\">este enlace</a>. Déjalo vacío para el idioma por defecto (Inglés)"
1455
 
1456
- #: ../admin/social_sharing.php:1840
1457
  msgid "Username in sharing"
1458
  msgstr "Nombre de usuario en Compartir"
1459
 
1460
- #: ../admin/social_sharing.php:1846
1461
  msgid "Twitter username (without @)"
1462
  msgstr "Nombre de usuario de Twitter (sin @)"
1463
 
1464
- #: ../admin/social_sharing.php:1856 ../admin/social_sharing.php:1875
1465
  msgid ""
1466
  "Provided username will be appended after the content being shared as \"via "
1467
  "@USERNAME\". Leave empty if you do not want any username in the content "
@@ -1471,36 +1444,36 @@ msgstr ""
1471
  "sea comparte como \"via @USERNAME\". Déjalo vacío si no quieres ningún "
1472
  "nombre de usuario en el contenido compartido."
1473
 
1474
- #: ../admin/social_sharing.php:1865
1475
  msgid "Buffer username (without @)"
1476
  msgstr "Nombre de usuario de Buffer (sin @)"
1477
 
1478
- #: ../admin/social_sharing.php:1884
1479
  msgid "AMP"
1480
  msgstr ""
1481
 
1482
- #: ../admin/social_sharing.php:1890
1483
  #, fuzzy
1484
  msgid "Enable sharing on AMP pages"
1485
  msgstr "Permitir Página de Ingreso"
1486
 
1487
- #: ../admin/social_sharing.php:1900
1488
  msgid "Enable this option to render sharing icons on AMP pages"
1489
  msgstr ""
1490
 
1491
- #: ../admin/social_sharing.php:1919 ../admin/like_buttons.php:771
1492
  msgid "myCRED"
1493
  msgstr ""
1494
 
1495
- #: ../admin/social_sharing.php:1925 ../admin/like_buttons.php:777
1496
  msgid "Append myCRED referral ID to the urls being shared"
1497
  msgstr ""
1498
 
1499
- #: ../admin/social_sharing.php:1958
1500
  msgid "Facebook Sharing Troubleshooter"
1501
  msgstr "Resolución de problemas al Compartir en Facebook"
1502
 
1503
- #: ../admin/social_sharing.php:1963
1504
  #, fuzzy
1505
  msgid ""
1506
  "If Facebook sharing is not working fine, click at the following link and "
@@ -1512,28 +1485,28 @@ msgstr ""
1512
  "en el siguiente enlace e introduce la url problemática de tu sitio web (la "
1513
  "que Facebook no está compartiendo correctamente) en el campo de texto:"
1514
 
1515
- #: ../admin/social_sharing.php:1980 ../admin/social_commenting.php:399
1516
- #: ../admin/social_login.php:1259
1517
  msgid ""
1518
  "<strong>Note:</strong> Plugin will not work on local server. You should have "
1519
  "an online website for the plugin to function properly."
1520
  msgstr ""
1521
 
1522
- #: ../admin/social_sharing.php:1981
1523
  msgid ""
1524
  "Why is sharer not showing the correct image, title and other meta tags "
1525
  "content?"
1526
  msgstr ""
1527
 
1528
- #: ../admin/social_sharing.php:1982
1529
  msgid "Why is Facebook share count not working?"
1530
  msgstr ""
1531
 
1532
- #: ../admin/social_sharing.php:1985
1533
  msgid "Why is Instagram icon redirecting to Instagram website?"
1534
  msgstr ""
1535
 
1536
- #: ../admin/social_sharing.php:1986
1537
  msgid ""
1538
  "Instagram icon is there to send website visitors to the Instagram page of "
1539
  "your choice. You can save the desired Instagram handle in \"Instagram "
@@ -1541,48 +1514,48 @@ msgid ""
1541
  "sections."
1542
  msgstr ""
1543
 
1544
- #: ../admin/social_sharing.php:1989
1545
  #, fuzzy
1546
  msgid "How to customize the url being shared?"
1547
  msgstr ""
1548
  "¿Cómo personalizar el aspecto de los contadores individuales de veces "
1549
  "compartidas?"
1550
 
1551
- #: ../admin/social_sharing.php:1990
1552
  msgid ""
1553
  "Why are Twitter shares not appearing even after registering at Twitcount.com?"
1554
  msgstr ""
1555
 
1556
- #: ../admin/social_sharing.php:1991
1557
  msgid ""
1558
  "It takes some time for their service to track the shares made on Twitter "
1559
  "from your website. If you still feel it's taking too long you can contact "
1560
  "their support directly from their website."
1561
  msgstr ""
1562
 
1563
- #: ../admin/social_sharing.php:1993 ../admin/like_buttons.php:814
1564
  msgid "How to Place Title and Social Share Icons in the Same Row?"
1565
  msgstr ""
1566
 
1567
- #: ../admin/social_sharing.php:1994
1568
  msgid ""
1569
  "How to restore Social Share counts lost after moving my website to SSL/Https?"
1570
  msgstr ""
1571
 
1572
- #: ../admin/social_sharing.php:1995 ../admin/social_commenting.php:402
1573
- #: ../admin/social_login.php:1266
1574
  msgid "Why is my browser blocking some features of the plugin?"
1575
  msgstr ""
1576
 
1577
- #: ../admin/social_sharing.php:1996
1578
  msgid "Why the color of share icons is not being updated?"
1579
  msgstr ""
1580
 
1581
- #: ../admin/social_sharing.php:1997
1582
  msgid "Why Facebook share counts are not appearing?"
1583
  msgstr ""
1584
 
1585
- #: ../admin/social_sharing.php:1998
1586
  msgid ""
1587
  "How can I show share counts of my website rather than of individual pages/"
1588
  "posts?"
@@ -1590,54 +1563,54 @@ msgstr ""
1590
  "¿Cómo puedo mostrar los contadores de veces compartidas de mi sitio web en "
1591
  "lugar de páginas individuales o entradas?"
1592
 
1593
- #: ../admin/social_sharing.php:1999
1594
  msgid "How can I disable sharing on particular page/post?"
1595
  msgstr ""
1596
  "¿Cómo puedo desactivar los botones de Compartir en una página individual o "
1597
  "entrada?"
1598
 
1599
- #: ../admin/social_sharing.php:2000
1600
  msgid "How can I specify minimum sharing count for sharing networks?"
1601
  msgstr ""
1602
  "¿Cómo puedo especificar el número mínimo de veces compartidas para las redes "
1603
  "sociales?"
1604
 
1605
- #: ../admin/social_sharing.php:2001
1606
  msgid "How to share specific page?"
1607
  msgstr "¿Cómo compartir una página específica?"
1608
 
1609
- #: ../admin/social_sharing.php:2002
1610
  msgid "How to integrate Google Analytics with sharing?"
1611
  msgstr "¿Cómo integrar Google Analytics con Compartir?"
1612
 
1613
- #: ../admin/social_sharing.php:2003
1614
  msgid "How to customize the look of total share counts?"
1615
  msgstr ""
1616
  "¿Cómo personalizar el aspecto de los contadores totales de veces compartidas?"
1617
 
1618
- #: ../admin/social_sharing.php:2004
1619
  msgid "How to customize the look of individual share counts?"
1620
  msgstr ""
1621
  "¿Cómo personalizar el aspecto de los contadores individuales de veces "
1622
  "compartidas?"
1623
 
1624
- #: ../admin/social_sharing.php:2005
1625
  msgid "How to show Whatsapp icon only on mobile devices?"
1626
  msgstr "¿Cómo mostrar el icono de WhatsApp sólo en dispositivos móviles?"
1627
 
1628
- #: ../admin/social_sharing.php:2006
1629
  msgid "How to hide arrow after floating sharing bar?"
1630
  msgstr ""
1631
 
1632
- #: ../admin/social_sharing.php:2007
1633
  msgid "Why is share count not getting updated?"
1634
  msgstr ""
1635
 
1636
- #: ../admin/social_sharing.php:2008 ../admin/like_buttons.php:812
1637
  msgid "Why is there so much space between like buttons?"
1638
  msgstr ""
1639
 
1640
- #: ../admin/social_sharing.php:2009 ../admin/like_buttons.php:813
1641
  msgid "Why are floating sharing/like buttons not appearing at homepage?"
1642
  msgstr ""
1643
 
@@ -1899,7 +1872,7 @@ msgstr "Configuración básica"
1899
  msgid "GDPR"
1900
  msgstr ""
1901
 
1902
- #: ../admin/social_login.php:44 ../admin/social_login.php:1194
1903
  msgid "XProfile Integration"
1904
  msgstr ""
1905
 
@@ -2664,50 +2637,67 @@ msgid "Text for the GDPR opt-in"
2664
  msgstr "Permitir Comentarios de Disqus"
2665
 
2666
  #: ../admin/social_login.php:1135
2667
- msgid "Text to link to Privacy Policy page"
2668
  msgstr ""
2669
 
2670
  #: ../admin/social_login.php:1145
2671
- msgid "Word(s) in the opt-in text to be linked to privacy policy page"
2672
  msgstr ""
2673
 
2674
  #: ../admin/social_login.php:1153
2675
- msgid "Privacy Policy Url"
2676
  msgstr ""
2677
 
2678
  #: ../admin/social_login.php:1163
2679
  #, fuzzy
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2680
  msgid "Url of the privacy policy page of your website"
2681
  msgstr "Url de la página de inicio de tu sitio web"
2682
 
2683
- #: ../admin/social_login.php:1214 ../inc/widget.php:260 ../inc/widget.php:438
2684
  #: ../inc/widget.php:602 ../inc/widget.php:750
2685
  msgid "Select"
2686
  msgstr "Seleccionar"
2687
 
2688
- #: ../admin/social_login.php:1245
2689
  msgid "Social Login Shortcode & Widget"
2690
  msgstr "Widget y Shortcode para el Ingreso a través de redes sociales"
2691
 
2692
- #: ../admin/social_login.php:1246
2693
  msgid "Social Linking Shortcode"
2694
  msgstr "Shortcode para enlace a través de redes sociales"
2695
 
2696
- #: ../admin/social_login.php:1261
2697
  msgid "Why is social login not working?"
2698
  msgstr ""
2699
 
2700
- #: ../admin/social_login.php:1262
2701
  msgid ""
2702
  "Make sure that App ID and Secret (Client ID and Secret) keys you have saved, "
2703
  "belong to the same app"
2704
  msgstr ""
2705
 
2706
- #: ../admin/social_login.php:1264
2707
  msgid "Social Login not working with Varnish enabled"
2708
  msgstr ""
2709
 
2710
- #: ../admin/social_login.php:1265
2711
  msgid ""
2712
  "Why the user is not appearing logged in even after Social Login until the "
2713
  "webpage is refreshed manually?"
2
  msgstr ""
3
  "Project-Id-Version: Super Socializer\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2019-08-13 08:27+0530\n"
6
+ "PO-Revision-Date: 2019-08-13 08:27+0530\n"
7
  "Last-Translator: Heateor <hello@heateor.com>\n"
8
  "Language-Team: Heateor <hello@heateor.com>\n"
9
  "Language: es\n"
16
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
17
  "X-Poedit-SearchPath-0: ..\n"
18
 
19
+ #: ../super_socializer.php:425
20
  msgid "Problem fetching access token: "
21
  msgstr ""
22
 
23
+ #: ../super_socializer.php:429 ../super_socializer.php:443
24
  msgid "Facebook SDK returned an error: "
25
  msgstr ""
26
 
27
+ #: ../super_socializer.php:439
28
  msgid "Graph returned an error: "
29
  msgstr ""
30
 
31
+ #: ../super_socializer.php:605
32
  #, fuzzy
33
  msgid ""
34
  "cURL is not enabled at your website server. Please contact your website "
38
  "posible que necesites contactar con el administrador de tu servidor para "
39
  "verificar esto"
40
 
41
+ #: ../super_socializer.php:632
42
  #, fuzzy, php-format
43
  msgid ""
44
  "Enter exactly the following url in <strong>Website</strong> option in your "
47
  "Introduce exactamente la siguiente URL en las <strong>Website</strong> y "
48
  "<strong>Callback Url</strong> opciones en tu Twitter app (ver paso 3 %s)"
49
 
50
+ #: ../super_socializer.php:635
51
  #, fuzzy, php-format
52
  msgid ""
53
  "Enter exactly the following url in <strong>Callback URLs</strong> option in "
56
  "Introduce exactamente la siguiente URL en las <strong>Website</strong> y "
57
  "<strong>Callback Url</strong> opciones en tu Twitter app (ver paso 3 %s)"
58
 
59
+ #: ../super_socializer.php:638
60
  msgid ""
61
  "Make sure cURL is enabled at your website server. You may need to contact "
62
  "the server administrator of your website to verify this"
65
  "posible que necesites contactar con el administrador de tu servidor para "
66
  "verificar esto"
67
 
68
+ #: ../super_socializer.php:901 ../helper.php:976
 
 
 
 
 
 
69
  msgid "Please verify your email address to login."
70
  msgstr "Por favor verifica tu dirección de email para ingresar."
71
 
72
+ #: ../super_socializer.php:901
73
  msgid "Your email has been verified. Now you can login to your account"
74
  msgstr "Tu email ha sido verificado. Ahora puedes ingresar en tu cuenta"
75
 
76
+ #: ../super_socializer.php:905
77
  msgid "Notification"
78
  msgstr "Notificación"
79
 
80
+ #: ../super_socializer.php:923 ../admin/social_login.php:805
81
  msgid "Email required"
82
  msgstr "Email requerido"
83
 
84
+ #: ../super_socializer.php:926
85
  msgid "Please check your email inbox to complete the registration."
86
  msgstr ""
87
  "Por favor revisa la bandeja de entrada de tu correo para completar el "
88
  "registro."
89
 
90
+ #: ../super_socializer.php:933 ../helper.php:508
91
  msgid "Enter your LiveJournal username"
92
  msgstr ""
93
 
94
+ #: ../super_socializer.php:1005
95
  msgid "Leave a reply"
96
  msgstr "Deja una respuesta"
97
 
98
+ #: ../super_socializer.php:1017 ../inc/social_sharing.php:241
99
  msgid "Shares"
100
  msgstr ""
101
 
102
+ #: ../super_socializer.php:1017 ../inc/social_sharing.php:241
103
  msgid "Share"
104
  msgstr ""
105
 
106
+ #: ../super_socializer.php:1017
107
  #, fuzzy
108
  msgid "Link copied."
109
  msgstr "LinkedIn"
110
 
111
+ #: ../super_socializer.php:1263
112
  msgid "Super Socializer - General Options"
113
  msgstr "Super Socializer - Opciones Generales"
114
 
115
+ #: ../super_socializer.php:1263 ../admin/general_options.php:15
116
  #: ../admin/social_commenting.php:47
117
  msgid "General Options"
118
  msgstr "Opciones Generales"
119
 
120
+ #: ../super_socializer.php:1331 ../helper.php:898
121
  msgid "Social Avatar"
122
  msgstr "Avatar Social"
123
 
124
+ #: ../super_socializer.php:1334
125
  msgid "Small Avatar Url"
126
  msgstr "Url de Avatar Pequeño"
127
 
128
+ #: ../super_socializer.php:1338
129
  msgid "Large Avatar Url"
130
  msgstr "Url de Avatar Grande"
131
 
132
+ #: ../super_socializer.php:1342 ../helper.php:901
133
  msgid ""
134
  "Do not fetch and update social avatar from my profile, next time I Social "
135
  "Login"
137
  "No se ha podido recuperar y actualizar el avatar social desde mi perfil, la "
138
  "próxima vez | Social Login"
139
 
140
+ #: ../super_socializer.php:1346 ../helper.php:902
141
  msgid "Update social avatar, next time I Social Login"
142
  msgstr "Actualiza tu avatar de redes sociales | Social Login"
143
 
144
+ #: ../super_socializer.php:1423
 
 
 
 
 
 
145
  msgid "Login with your Social ID"
146
  msgstr ""
147
 
148
+ #: ../super_socializer.php:1424
149
  msgid "Email you entered is already registered or invalid"
150
  msgstr "El email que has escrito ya está registrado o no es válido"
151
 
152
+ #: ../super_socializer.php:1429
153
  msgid "Please enter a valid email address. You might be required to verify it"
154
  msgstr ""
155
  "Por favor escribe una dirección de email válida. Puedes ser requerido para "
156
  "verificarla"
157
 
158
+ #: ../super_socializer.php:1433 ../super_socializer.php:2122
159
  msgid "Link your social account to login to your account at this website"
160
  msgstr ""
161
  "Enlaza la cuenta de tu red social para ingresar en tu cuenta de este sitio "
162
  "web "
163
 
164
+ #: ../super_socializer.php:1681
165
  msgid "Thanks for installing Super Socializer plugin"
166
  msgstr ""
167
 
168
+ #: ../super_socializer.php:1683
169
  msgid "Configure the Plugin"
170
  msgstr ""
171
 
172
+ #: ../super_socializer.php:1694
173
  msgid ""
174
  "Update \"Facebook Comments Moderation\" add-on for compatibility with "
175
  "current version of Super Socialzer"
176
  msgstr ""
177
 
178
+ #: ../super_socializer.php:1703
179
  msgid ""
180
  "Update \"Facebook Comments Notifier\" add-on for compatibility with current "
181
  "version of Super Socialzer"
182
  msgstr ""
183
 
184
+ #: ../super_socializer.php:1712
185
  msgid ""
186
  "Update \"Social Login Buttons\" add-on for compatibility with current "
187
  "version of Super Socialzer"
188
  msgstr ""
189
 
190
+ #: ../super_socializer.php:1721
191
  msgid ""
192
  "Update \"Social Share myCRED Integration\" add-on for maximum compatibility "
193
  "with current version of Super Socialzer"
194
  msgstr ""
195
 
196
+ #: ../super_socializer.php:1730
197
  msgid ""
198
  "Update \"Social Login myCRED Integration\" add-on for maximum compatibility "
199
  "with current version of Super Socialzer"
200
  msgstr ""
201
 
202
+ #: ../super_socializer.php:1737
203
  msgid ""
204
  "Update \"Social Login myCRED Integration\" add-on for compatibility with "
205
  "LiveJournal Login of Super Socialzer"
206
  msgstr ""
207
 
208
+ #: ../super_socializer.php:1748
209
  #, php-format
210
  msgid ""
211
  "To continue using Steam login save Steam API key <a href=\"%s\">here</a>"
212
  msgstr ""
213
 
214
+ #: ../super_socializer.php:1764
215
  #, php-format
216
  msgid ""
217
  "To continue using Social Login, save the secret keys <a href=\"%s\">here</a>"
218
  msgstr ""
219
 
220
+ #: ../super_socializer.php:1788
221
  #, php-format
222
  msgid ""
223
  "Add %s in \"Valid OAuth redirect URIs\" option in your Facebook app settings "
225
  "target=\"_blank\">here</a>"
226
  msgstr ""
227
 
228
+ #: ../super_socializer.php:1788 ../super_socializer.php:1813
229
+ #: ../super_socializer.php:1838 ../super_socializer.php:1863
230
+ #: ../super_socializer.php:1896 ../super_socializer.php:1924
231
+ #: ../super_socializer.php:1951 ../super_socializer.php:2028
232
  msgid "Okay"
233
  msgstr ""
234
 
235
+ #: ../super_socializer.php:1813
236
  #, php-format
237
  msgid ""
238
  "Add %s in \"Callback URLs\" option in your Twitter app settings for Twitter "
240
  "\">here</a>"
241
  msgstr ""
242
 
243
+ #: ../super_socializer.php:1838
244
  #, php-format
245
  msgid ""
246
  "Add %s in \"Authorized Redirect URLs\" option in your Linkedin app settings "
248
  "target=\"_blank\">here</a>"
249
  msgstr ""
250
 
251
+ #: ../super_socializer.php:1863
252
  #, php-format
253
  msgid ""
254
  "Add %s in \"Authorized redirect URIs\" option in your Google client settings "
256
  "target=\"_blank\">here</a>"
257
  msgstr ""
258
 
259
+ #: ../super_socializer.php:1874
260
  #, php-format
261
  msgid ""
262
  "Save the url of privacy policy page of your website <a href=\"%s\">here</a>"
263
  msgstr ""
264
 
265
+ #: ../super_socializer.php:1896
266
  #, php-format
267
  msgid ""
268
  "This plugin is GDPR compliant. You need to update the privacy policy of your "
270
  "\"%s\" target=\"_blank\">here</a>"
271
  msgstr ""
272
 
273
+ #: ../super_socializer.php:1924
274
  #, php-format
275
  msgid ""
276
  "Now plugin supports a new service Twitcount.com to show Twitter shares. To "
279
  "your website %s with them. No need to copy-paste any code from their website."
280
  msgstr ""
281
 
282
+ #: ../super_socializer.php:1951
283
  #, php-format
284
  msgid ""
285
  "Replace url saved in \"Callback URLs\" option in your Twitter app settings "
287
  "\"%s\" target=\"_blank\">here</a>"
288
  msgstr ""
289
 
290
+ #: ../super_socializer.php:1976
291
  #, php-format
292
  msgid ""
293
  "If you cannot get Linkedin login to work after updating the plugin, replace "
295
  "For more details, check step 6 <a href=\"%s\" target=\"_blank\">here</a>"
296
  msgstr ""
297
 
298
+ #: ../super_socializer.php:1976 ../super_socializer.php:2003
299
  msgid "Dismiss"
300
  msgstr ""
301
 
302
+ #: ../super_socializer.php:2002
303
  #, php-format
304
  msgid ""
305
  "Save Facebook App ID and Secret keys in \"Standard Interface\" and/or "
308
  "that, clear share counts cache from \"Miscellaneous\" section"
309
  msgstr ""
310
 
311
+ #: ../super_socializer.php:2028
312
  #, php-format
313
  msgid ""
314
  "Your website visitors will see a popup notification (only once) if their "
318
  "features\" option <a href=\"%s\">here</a>"
319
  msgstr ""
320
 
321
+ #: ../super_socializer.php:2198
322
+ msgid ""
323
+ "Your browser is blocking some features of this website. Please follow the "
324
+ "instructions at {support_url} to unblock these."
325
+ msgstr ""
326
+
327
  #: ../helper.php:8
328
  msgid "Settings saved"
329
  msgstr "Ajustes guardados"
330
 
331
+ #: ../helper.php:8 ../admin/social_sharing.php:49
332
  msgid "Dismiss this notice"
333
  msgstr "No volver a mostrar este aviso"
334
 
418
  msgid "Large Avatar"
419
  msgstr "Avatar Grande"
420
 
421
+ #: ../helper.php:913 ../admin/general_options.php:93
422
+ #: ../admin/social_sharing.php:2027 ../admin/social_commenting.php:413
423
+ #: ../admin/social_login.php:1313 ../admin/like_buttons.php:826
424
  msgid "Save Changes"
425
  msgstr "Guardar Cambios"
426
 
441
  msgid "Something bad happened"
442
  msgstr ""
443
 
444
+ #: ../admin/general_options.php:7 ../admin/general_options.php:97
445
+ #: ../admin/social_sharing.php:5 ../admin/social_sharing.php:2031
446
  #: ../admin/social_commenting.php:5 ../admin/social_commenting.php:417
447
+ #: ../admin/social_login.php:5 ../admin/social_login.php:1317
448
  #: ../admin/like_buttons.php:6 ../admin/like_buttons.php:830
449
  #, fuzzy, php-format
450
  msgid ""
490
  "instalar el plugin."
491
 
492
  #: ../admin/general_options.php:75
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
493
  msgid "Custom CSS"
494
  msgstr "CSS Personalizado"
495
 
496
+ #: ../admin/general_options.php:85
497
  msgid "You can specify any additional CSS rules (without &lt;style&gt; tag)"
498
  msgstr ""
499
  "Puede especificar cualesquiera reglas adicionales CSS (sin la etiqueta &lt;"
500
  "style&gt;)"
501
 
502
+ #: ../admin/general_options.php:108 ../admin/social_sharing.php:2038
503
+ #: ../admin/social_commenting.php:424 ../admin/social_login.php:1324
504
+ #: ../admin/like_buttons.php:837
505
  #, fuzzy
506
  msgid "Instagram Shoutout"
507
  msgstr "Instagram"
508
 
509
+ #: ../admin/general_options.php:110 ../admin/social_sharing.php:2040
510
+ #: ../admin/social_commenting.php:426 ../admin/social_login.php:1326
511
+ #: ../admin/like_buttons.php:839
512
  msgid ""
513
  "If you can send (to hello@heateor.com) how our plugin is helping your "
514
  "business, we can share it on Instagram. You can also send any relevant "
515
  "hashtags and people to mention in the Instagram post."
516
  msgstr ""
517
 
518
+ #: ../admin/general_options.php:111 ../admin/social_sharing.php:2041
519
+ #: ../admin/social_commenting.php:427 ../admin/social_login.php:1327
520
+ #: ../admin/like_buttons.php:840
521
  msgid ""
522
  "<b>Example</b> - Blah-Blah Online Coaching teaches various programming "
523
  "language courses through their website. They have emerged as one of the most "
526
  "time."
527
  msgstr ""
528
 
529
+ #: ../admin/general_options.php:112 ../admin/social_sharing.php:2042
530
+ #: ../admin/social_commenting.php:428 ../admin/social_login.php:1328
531
+ #: ../admin/like_buttons.php:841
532
  msgid ""
533
  "@blahblahonlinecoaching proudly use #SuperSocializer to enable social "
534
  "features at their website, such as - Social Login, Social Share and Social "
639
  msgid "Recover Social Share Counts Lost After Moving to SSL/Https"
640
  msgstr ""
641
 
642
+ #: ../admin/social_sharing.php:49 ../admin/social_sharing.php:1990
643
  msgid ""
644
  "Save Facebook App Id and Secret in the \"Miscellaneous\" section for "
645
  "Facebook share count to work"
646
  msgstr ""
647
 
648
+ #: ../admin/social_sharing.php:56
649
  msgid "Theme Selection"
650
  msgstr "Selección de Temas"
651
 
652
+ #: ../admin/social_sharing.php:57 ../admin/like_buttons.php:41
653
  msgid "Standard Interface"
654
  msgstr "Interfaz Estándar"
655
 
656
+ #: ../admin/social_sharing.php:58 ../admin/like_buttons.php:42
657
  msgid "Floating Interface"
658
  msgstr "Interfaz Flotante"
659
 
660
+ #: ../admin/social_sharing.php:59 ../admin/like_buttons.php:43
661
  msgid "Miscellaneous"
662
  msgstr "Miscelánea"
663
 
664
+ #: ../admin/social_sharing.php:63 ../admin/like_buttons.php:47
665
  msgid "3rd Party Integration"
666
  msgstr ""
667
 
668
+ #: ../admin/social_sharing.php:67 ../admin/social_sharing.php:1952
669
+ #: ../admin/social_sharing.php:1954 ../admin/social_login.php:46
670
+ #: ../admin/social_login.php:1279 ../admin/like_buttons.php:51
671
  #: ../admin/like_buttons.php:797
672
  msgid "Shortcode & Widget"
673
  msgstr "Widgets y Shortcodes"
674
 
675
+ #: ../admin/social_sharing.php:68
676
  msgid "Troubleshooter"
677
  msgstr "Resolución de problmas"
678
 
679
+ #: ../admin/social_sharing.php:69 ../admin/social_sharing.php:1985
680
  #: ../admin/social_commenting.php:40 ../admin/social_commenting.php:397
681
+ #: ../admin/social_login.php:47 ../admin/social_login.php:1293
682
  #: ../admin/like_buttons.php:52 ../admin/like_buttons.php:810
683
  msgid "FAQ"
684
  msgstr "FAQ"
685
 
686
+ #: ../admin/social_sharing.php:77
687
  msgid "Standard interface theme"
688
  msgstr "Tema de la Interfaz Estándar"
689
 
690
+ #: ../admin/social_sharing.php:82 ../admin/social_sharing.php:389
691
  msgid "Icon Preview"
692
  msgstr "Vista previa de Icono"
693
 
694
+ #: ../admin/social_sharing.php:154 ../admin/social_sharing.php:462
695
  msgid ""
696
  "Do not forget to save the configuration after making changes by clicking the "
697
  "save button below"
699
  "No olvides guardar la configuración después de hacer cambios clickando en el "
700
  "botón \"Guardar\" de abajo"
701
 
702
+ #: ../admin/social_sharing.php:161 ../admin/social_sharing.php:469
703
  msgid "Shape"
704
  msgstr "Forma"
705
 
706
+ #: ../admin/social_sharing.php:165 ../admin/social_sharing.php:473
707
  #: ../inc/widget.php:951
708
  msgid "Round"
709
  msgstr "Redondeado"
710
 
711
+ #: ../admin/social_sharing.php:167 ../admin/social_sharing.php:475
712
  #: ../inc/widget.php:952
713
  msgid "Square"
714
  msgstr "Cuadrado"
715
 
716
+ #: ../admin/social_sharing.php:169 ../admin/social_sharing.php:477
717
  msgid "Rectangle"
718
  msgstr "Rectángulo"
719
 
720
+ #: ../admin/social_sharing.php:176 ../admin/social_sharing.php:484
721
  msgid "Shape of the sharing icons"
722
  msgstr "Forma de los iconos de compartir"
723
 
724
+ #: ../admin/social_sharing.php:185 ../admin/social_sharing.php:493
725
  msgid "Size (in pixels)"
726
  msgstr "Tamaño (en pixels)"
727
 
728
+ #: ../admin/social_sharing.php:201 ../admin/social_sharing.php:509
729
  msgid "Size of the sharing icons"
730
  msgstr "Tamaño de los iconos de Compartir"
731
 
732
+ #: ../admin/social_sharing.php:211 ../admin/social_sharing.php:519
733
  msgid "Width (in pixels)"
734
  msgstr "Anchura (en pixels)"
735
 
736
+ #: ../admin/social_sharing.php:227 ../admin/social_sharing.php:535
737
  msgid "Width of the sharing icons"
738
  msgstr "Anchura de los iconos de Compartir"
739
 
740
+ #: ../admin/social_sharing.php:235 ../admin/social_sharing.php:543
741
  msgid "Height (in pixels)"
742
  msgstr "Altura (en pixels)"
743
 
744
+ #: ../admin/social_sharing.php:251 ../admin/social_sharing.php:559
745
  msgid "Height of the sharing icons"
746
  msgstr "Altura de los iconos de Compartir"
747
 
748
+ #: ../admin/social_sharing.php:261 ../admin/social_sharing.php:569
749
  msgid "Border radius (in pixels)"
750
  msgstr "Borde del radio (en pixels)"
751
 
752
+ #: ../admin/social_sharing.php:271 ../admin/social_sharing.php:579
753
  msgid ""
754
  "Specify a value for rounded corners. More the value, more rounded will the "
755
  "corners be. Leave empty for sharp corners."
758
  "valor, más redondeadas serán las esquinas. Déjalo vacío si prefieres las "
759
  "esquinas cuaadradas."
760
 
761
+ #: ../admin/social_sharing.php:280 ../admin/social_sharing.php:588
762
  msgid "Logo Color"
763
  msgstr "Color del Logo"
764
 
765
+ #: ../admin/social_sharing.php:284 ../admin/social_sharing.php:305
766
+ #: ../admin/social_sharing.php:325 ../admin/social_sharing.php:592
767
+ #: ../admin/social_sharing.php:613 ../admin/social_sharing.php:632
768
  msgid "Default"
769
  msgstr "Por defecto "
770
 
771
+ #: ../admin/social_sharing.php:286 ../admin/social_sharing.php:306
772
+ #: ../admin/social_sharing.php:330 ../admin/social_sharing.php:594
773
+ #: ../admin/social_sharing.php:614 ../admin/social_sharing.php:637
774
  msgid "On Hover"
775
  msgstr "Con el puntero encima "
776
 
777
+ #: ../admin/social_sharing.php:294 ../admin/social_sharing.php:602
778
  msgid ""
779
  "Specify the color or hex code (example #cc78e0) for the logo of icon. Leave "
780
  "empty for default. You can get the hex code of the required color from <a "
785
  "conseguir el código hexadecimal del color que desees en <a href=\"http://www."
786
  "colorpicker.com/\" target=\"_blank\">este enlace</a>"
787
 
788
+ #: ../admin/social_sharing.php:302 ../admin/social_sharing.php:610
789
+ #: ../admin/social_sharing.php:1325 ../admin/like_buttons.php:410
790
  #: ../inc/widget.php:460 ../inc/widget.php:772
791
  msgid "Background Color"
792
  msgstr "Color del fondo"
793
 
794
+ #: ../admin/social_sharing.php:313 ../admin/social_sharing.php:621
795
  msgid ""
796
  "Specify the color or hex code (example #cc78e0) for icon background. Save "
797
  "\"transparent\" for transparent background. Leave empty for default. You can "
804
  "código hexadecimal del color que desees en <a href=\"http://www.colorpicker."
805
  "com/\" target=\"_blank\">este enlace</a>"
806
 
807
+ #: ../admin/social_sharing.php:321 ../admin/social_sharing.php:629
808
  msgid "Border"
809
  msgstr "Borde"
810
 
811
+ #: ../admin/social_sharing.php:327 ../admin/social_sharing.php:332
812
+ #: ../admin/social_sharing.php:634 ../admin/social_sharing.php:639
813
  msgid "Border Width"
814
  msgstr "Anchura del borde "
815
 
816
+ #: ../admin/social_sharing.php:328 ../admin/social_sharing.php:333
817
+ #: ../admin/social_sharing.php:635 ../admin/social_sharing.php:640
818
  msgid "Border Color"
819
  msgstr "Color del borde "
820
 
821
+ #: ../admin/social_sharing.php:340 ../admin/social_sharing.php:647
822
  msgid "Icon border"
823
  msgstr "Borde del icono"
824
 
825
+ #: ../admin/social_sharing.php:348 ../admin/social_sharing.php:655
826
  msgid "Counter Position"
827
  msgstr "Posición del Contador"
828
 
829
+ #: ../admin/social_sharing.php:348 ../admin/social_sharing.php:655
830
  msgid "(applies, if counter enabled)"
831
  msgstr "(aplicable si el contador está activo)"
832
 
833
+ #: ../admin/social_sharing.php:352 ../admin/social_sharing.php:659
834
+ #: ../admin/social_sharing.php:942 ../admin/social_sharing.php:1347
835
  #: ../admin/like_buttons.php:183 ../admin/like_buttons.php:432
836
  #: ../inc/widget.php:446 ../inc/widget.php:758
837
  msgid "Left"
838
  msgstr "Izquierda"
839
 
840
+ #: ../admin/social_sharing.php:354 ../admin/social_sharing.php:661
841
  msgid "Top"
842
  msgstr "Arriba"
843
 
844
+ #: ../admin/social_sharing.php:356 ../admin/social_sharing.php:663
845
+ #: ../admin/social_sharing.php:944 ../admin/social_sharing.php:1348
846
  #: ../admin/like_buttons.php:185 ../admin/like_buttons.php:433
847
  #: ../inc/widget.php:447 ../inc/widget.php:759
848
  msgid "Right"
849
  msgstr "Derecha"
850
 
851
+ #: ../admin/social_sharing.php:358 ../admin/social_sharing.php:665
852
  msgid "Bottom"
853
  msgstr "Abajo"
854
 
855
+ #: ../admin/social_sharing.php:360 ../admin/social_sharing.php:667
856
  msgid "Inner Left"
857
  msgstr "Izquierda Interior"
858
 
859
+ #: ../admin/social_sharing.php:362 ../admin/social_sharing.php:669
860
  msgid "Inner Top"
861
  msgstr "Arriba Interior"
862
 
863
+ #: ../admin/social_sharing.php:364 ../admin/social_sharing.php:671
864
  msgid "Inner Right"
865
  msgstr "Derecha Interior"
866
 
867
+ #: ../admin/social_sharing.php:366 ../admin/social_sharing.php:673
868
  msgid "Inner Bottom"
869
  msgstr "Abajo Interior"
870
 
871
+ #: ../admin/social_sharing.php:374 ../admin/social_sharing.php:681
872
  msgid "Position of share counter"
873
  msgstr "Posición del contador de veces compartidas"
874
 
875
+ #: ../admin/social_sharing.php:384
876
  msgid "Floating interface theme"
877
  msgstr "Tema de la Interfaz Flotante"
878
 
879
+ #: ../admin/social_sharing.php:697
880
  msgid "Standard Sharing Interface Options"
881
  msgstr "Opciones de la interfaz estándar de Compartir"
882
 
883
+ #: ../admin/social_sharing.php:703
884
  msgid "Enable Standard sharing interface"
885
  msgstr "Permitir Interfaz Estándar de Compartir"
886
 
887
+ #: ../admin/social_sharing.php:713
888
  msgid "Master control to enable standard sharing"
889
  msgstr "Control Maestro para permitir Compartir estándar"
890
 
891
+ #: ../admin/social_sharing.php:723 ../admin/social_sharing.php:1151
892
  #: ../admin/like_buttons.php:86 ../admin/like_buttons.php:336
893
  msgid "Target Url"
894
  msgstr "Target Url"
895
 
896
+ #: ../admin/social_sharing.php:727 ../admin/social_sharing.php:1155
897
  #: ../admin/like_buttons.php:90 ../admin/like_buttons.php:340
898
  msgid "Url of the webpage where icons are located (default)"
899
  msgstr "Url de la página web donde los iconos están localizados (por defecto)"
900
 
901
+ #: ../admin/social_sharing.php:729 ../admin/social_sharing.php:1157
902
  #: ../admin/like_buttons.php:92 ../admin/like_buttons.php:342
903
  msgid "Url of the homepage of your website"
904
  msgstr "Url de la página de inicio de tu sitio web"
905
 
906
+ #: ../admin/social_sharing.php:731 ../admin/social_sharing.php:1159
907
  #: ../admin/like_buttons.php:94 ../admin/like_buttons.php:344
908
  msgid "Custom url"
909
  msgstr "Url personalizada"
910
 
911
+ #: ../admin/social_sharing.php:738 ../admin/social_sharing.php:1166
912
  msgid "Url to share"
913
  msgstr "Url para compartir"
914
 
915
+ #: ../admin/social_sharing.php:746 ../admin/social_login.php:532
916
  #: ../admin/social_login.php:927 ../admin/like_buttons.php:109
917
  #: ../inc/widget.php:945
918
  msgid "Title"
919
  msgstr "Título"
920
 
921
+ #: ../admin/social_sharing.php:756
922
  msgid "The text to display above the sharing interface"
923
  msgstr "El texto para mostrar sobre la interfaz de Compartir"
924
 
925
+ #: ../admin/social_sharing.php:781 ../admin/social_sharing.php:1175
926
  #, fuzzy
927
  msgid "Instagram username"
928
  msgstr "Instagram"
929
 
930
+ #: ../admin/social_sharing.php:791 ../admin/social_sharing.php:1185
931
  msgid ""
932
  "Username of the Instagram account you want to redirect users to, on clicking "
933
  "the icon"
934
  msgstr ""
935
 
936
+ #: ../admin/social_sharing.php:801 ../admin/social_sharing.php:1195
937
  #, fuzzy
938
  msgid "HTML ID of container element of comment form"
939
  msgstr "HTML ID del contenedor del formulario de comentario"
940
 
941
+ #: ../admin/social_sharing.php:811 ../admin/social_sharing.php:1205
942
  msgid ""
943
  "HTML ID of the element you want to focus on the webpage, on click of Comment "
944
  "icon."
945
  msgstr ""
946
 
947
+ #: ../admin/social_sharing.php:825 ../admin/social_sharing.php:1214
948
  msgid "Rearrange icons"
949
  msgstr "Reorganizar iconos"
950
 
951
+ #: ../admin/social_sharing.php:886 ../admin/social_sharing.php:1273
952
  msgid "Drag the icons to rearrange in desired order"
953
  msgstr "Arrastra los iconos para reorganizarlos en el orden deseado"
954
 
955
+ #: ../admin/social_sharing.php:894 ../admin/social_sharing.php:1281
956
  msgid "Select Sharing Services"
957
  msgstr "Selecciona los Servicios para Compartir"
958
 
959
+ #: ../admin/social_sharing.php:901 ../admin/social_sharing.php:1288
960
  msgid "Select sharing services to show in social share bar"
961
  msgstr ""
962
  "Selecciona los servicios para compartir en la barra de Compartir en redes "
963
  "sociales"
964
 
965
+ #: ../admin/social_sharing.php:919 ../admin/social_sharing.php:1306
966
  #, fuzzy
967
  msgid "Search social network"
968
  msgstr "como red social primaria"
969
 
970
+ #: ../admin/social_sharing.php:938 ../admin/social_sharing.php:1343
971
  #: ../admin/like_buttons.php:179 ../admin/like_buttons.php:428
972
  msgid "Horizontal alignment"
973
  msgstr "Alineación horizontal"
974
 
975
+ #: ../admin/social_sharing.php:943 ../admin/like_buttons.php:184
976
  msgid "Center"
977
  msgstr "Centrar"
978
 
979
+ #: ../admin/social_sharing.php:952 ../admin/social_sharing.php:1356
980
  msgid "Horizontal alignment of the sharing interface"
981
  msgstr "Alineación horizontal de la interfaz de Compartir"
982
 
983
+ #: ../admin/social_sharing.php:960 ../admin/like_buttons.php:201
984
  msgid "Position with respect to content"
985
  msgstr "Posición respecto al contenido"
986
 
987
+ #: ../admin/social_sharing.php:964 ../admin/like_buttons.php:205
988
  msgid "Top of the content"
989
  msgstr "Encima del contenido"
990
 
991
+ #: ../admin/social_sharing.php:966 ../admin/like_buttons.php:207
992
  msgid "Bottom of the content"
993
  msgstr "Debajo del contenido"
994
 
995
+ #: ../admin/social_sharing.php:973
996
  msgid "Specify position of the sharing interface with respect to the content"
997
  msgstr ""
998
  "Especifica la posición de la interfaz de Compartir respecto al contenido"
999
 
1000
+ #: ../admin/social_sharing.php:981 ../admin/social_sharing.php:1422
1001
  msgid "Placement"
1002
  msgstr "Ubicación"
1003
 
1004
+ #: ../admin/social_sharing.php:985 ../admin/social_sharing.php:1426
1005
  #: ../admin/social_login.php:866 ../admin/social_login.php:896
1006
  #: ../admin/like_buttons.php:226 ../admin/like_buttons.php:511
1007
  msgid "Homepage"
1008
  msgstr "Página de Inicio"
1009
 
1010
+ #: ../admin/social_sharing.php:987 ../admin/social_sharing.php:1428
1011
  #: ../admin/like_buttons.php:228 ../admin/like_buttons.php:513
1012
  msgid "Posts"
1013
  msgstr "Entradas"
1014
 
1015
+ #: ../admin/social_sharing.php:989 ../admin/social_sharing.php:1430
1016
  #: ../admin/like_buttons.php:230 ../admin/like_buttons.php:515
1017
  msgid "Pages"
1018
  msgstr "Páginas"
1019
 
1020
+ #: ../admin/social_sharing.php:991 ../admin/social_sharing.php:1432
1021
  #: ../admin/like_buttons.php:232 ../admin/like_buttons.php:517
1022
  #, fuzzy
1023
  msgid "Excerpts and Posts page"
1024
  msgstr "Extractos (en la Página de Inicio)"
1025
 
1026
+ #: ../admin/social_sharing.php:993 ../admin/social_sharing.php:1434
1027
  #: ../admin/like_buttons.php:234 ../admin/like_buttons.php:519
1028
  msgid "Category Archives"
1029
  msgstr "Archivos por Categoría"
1030
 
1031
+ #: ../admin/social_sharing.php:995 ../admin/social_sharing.php:1436
1032
  #: ../admin/like_buttons.php:236 ../admin/like_buttons.php:521
1033
  msgid "Archive Pages (Category, Tag, Author or Date based pages)"
1034
  msgstr ""
1035
  "Páginas de Archivo (Categoría, Etiqueta, Autor o páginas clasificadas por "
1036
  "Fecha)"
1037
 
1038
+ #: ../admin/social_sharing.php:1011 ../admin/like_buttons.php:252
1039
  msgid "BuddyPress activity"
1040
  msgstr "Actividad en BuddyPress"
1041
 
1042
+ #: ../admin/social_sharing.php:1013 ../admin/like_buttons.php:255
1043
  msgid "BuddyPress group (only at top of content)"
1044
  msgstr "Grupo BuddyPress (sólo encima del contenido)"
1045
 
1046
+ #: ../admin/social_sharing.php:1019 ../admin/social_sharing.php:1458
1047
  #: ../admin/like_buttons.php:262 ../admin/like_buttons.php:542
1048
  msgid "BBPress forum"
1049
  msgstr "Foro BBPress"
1050
 
1051
+ #: ../admin/social_sharing.php:1022 ../admin/social_sharing.php:1461
1052
  #: ../admin/like_buttons.php:265 ../admin/like_buttons.php:545
1053
  msgid "BBPress topic"
1054
  msgstr "Tema BBPress"
1055
 
1056
+ #: ../admin/social_sharing.php:1025 ../admin/like_buttons.php:268
1057
  msgid "BBPress reply"
1058
  msgstr "Respuesta BBPress"
1059
 
1060
+ #: ../admin/social_sharing.php:1032 ../admin/like_buttons.php:275
1061
  msgid "After individual product at WooCommerce Shop page"
1062
  msgstr "Después de cada producto individual en página de Tienda WooCommerce"
1063
 
1064
+ #: ../admin/social_sharing.php:1035 ../admin/like_buttons.php:278
1065
  msgid "WooCommerce Product Page"
1066
  msgstr "Página de Producto WooCommerce"
1067
 
1068
+ #: ../admin/social_sharing.php:1038 ../admin/like_buttons.php:281
1069
  msgid "WooCommerce Thankyou Page"
1070
  msgstr "Página de Agradecimiento WooCommerce"
1071
 
1072
+ #: ../admin/social_sharing.php:1049
1073
  msgid "Specify the pages where you want to enable Sharing interface"
1074
  msgstr ""
1075
  "Especifica las páginas donde tú quieres permitir la interfaz de Compartir"
1076
 
1077
+ #: ../admin/social_sharing.php:1057 ../admin/social_sharing.php:1479
1078
  msgid "Show share counts"
1079
  msgstr "Mostrar contadores de las veces compartidas"
1080
 
1081
+ #: ../admin/social_sharing.php:1062 ../admin/social_sharing.php:1484
1082
  #, fuzzy
1083
  msgid ""
1084
  "Share counts are supported for Facebook, Twitter, Linkedin, Buffer, Reddit, "
1088
  "Facebook, Linkedin, GooglePlus, Delicious, Buffer, Reddit, Pinterest, "
1089
  "Stumbleupon, Odnoklassniki y Vkontakte"
1090
 
1091
+ #: ../admin/social_sharing.php:1063 ../admin/social_sharing.php:1485
1092
  #, php-format
1093
  msgid ""
1094
  "To show Twitter share count, you have to click \"Give me my Twitter counts "
1097
  "their website."
1098
  msgstr ""
1099
 
1100
+ #: ../admin/social_sharing.php:1070 ../admin/social_sharing.php:1492
1101
  msgid "If enabled, share counts are displayed above sharing icons."
1102
  msgstr ""
1103
  "Si se activa, los contadores de veces compartidas aparecerán encima de los "
1104
  "iconos de compartir."
1105
 
1106
+ #: ../admin/social_sharing.php:1079 ../admin/social_sharing.php:1501
1107
  msgid "Show total shares"
1108
  msgstr "Mostrar número total de veces compartidas"
1109
 
1110
+ #: ../admin/social_sharing.php:1089 ../admin/social_sharing.php:1511
1111
  msgid "If enabled, total shares will be displayed with sharing icons"
1112
  msgstr ""
1113
  "Si se activa, los contadores de veces compartidas aparecerán con los iconos "
1114
  "de compartir."
1115
 
1116
+ #: ../admin/social_sharing.php:1098 ../admin/social_sharing.php:1520
1117
  msgid "Enable 'More' icon"
1118
  msgstr "Permitir el icono 'Más'"
1119
 
1120
+ #: ../admin/social_sharing.php:1108 ../admin/social_sharing.php:1530
1121
  msgid ""
1122
  "If enabled, \"More\" icon will be displayed after selected sharing icons "
1123
  "which shows additional sharing networks in popup"
1125
  "Si se activa, el icono \"Más\" aparecerá después de los iconos de compartir "
1126
  "seleccionados, y mostrará en un popup las redes adicionales para compartir"
1127
 
1128
+ #: ../admin/social_sharing.php:1125
1129
  msgid "Floating Sharing Interface Options"
1130
  msgstr "Opciones de la Interfaz Flotante de Compartir"
1131
 
1132
+ #: ../admin/social_sharing.php:1131
1133
  msgid "Enable Floating sharing interface"
1134
  msgstr "Permitir la Interfaz Flotante de Compartir"
1135
 
1136
+ #: ../admin/social_sharing.php:1141
1137
  msgid "Master control to enable floating sharing widget"
1138
  msgstr "Control maestro para permitir el widget flotante de compartir"
1139
 
1140
+ #: ../admin/social_sharing.php:1335
1141
  msgid ""
1142
  "Specify the color or hex code (example #cc78e0) for the background of "
1143
  "vertical sharing bar. Leave empty for transparent. You can get the hex code "
1149
  "Puedes conseguir el código hexadecimal del color que desees en <a href="
1150
  "\"http://www.colorpicker.com/\" target=\"_blank\">este enlace</a>"
1151
 
1152
+ #: ../admin/social_sharing.php:1365 ../admin/like_buttons.php:450
1153
  msgid "Left offset"
1154
  msgstr "Desplazamiento a la izquierda"
1155
 
1156
+ #: ../admin/social_sharing.php:1375
1157
  msgid ""
1158
  "Specify a number. Increase in number will shift sharing interface towards "
1159
  "right and decrease will shift it towards left. Number can be negative too."
1162
  "desplazará hacia la derecha, mientras que al disminuirlo se desplazará hacia "
1163
  "la izquierda. El número puede ser negativo también."
1164
 
1165
+ #: ../admin/social_sharing.php:1385 ../admin/like_buttons.php:470
1166
  msgid "Right offset"
1167
  msgstr "Desplazamiento a la derecha"
1168
 
1169
+ #: ../admin/social_sharing.php:1395
1170
  msgid ""
1171
  "Specify a number. Increase in number will shift sharing interface towards "
1172
  "left and decrease will shift it towards right. Number can be negative too."
1175
  "desplazará hacia la izquierda, mientras que al disminuirlo se desplazará "
1176
  "hacia la derecha. El número puede ser negativo también."
1177
 
1178
+ #: ../admin/social_sharing.php:1404 ../admin/like_buttons.php:489
1179
  msgid "Top offset"
1180
  msgstr "Desplazamiento hacia arriba"
1181
 
1182
+ #: ../admin/social_sharing.php:1414
1183
  msgid ""
1184
  "Specify a number. Increase in number will shift sharing interface towards "
1185
  "bottom and decrease will shift it towards top."
1188
  "desplazará hacia abajo, mientras que al disminuirlo se desplazará hacia "
1189
  "abajo."
1190
 
1191
+ #: ../admin/social_sharing.php:1450 ../admin/like_buttons.php:535
1192
  msgid "BuddyPress group"
1193
  msgstr "grupo BuddyPress"
1194
 
1195
+ #: ../admin/social_sharing.php:1471
1196
  msgid "Specify the pages where you want to enable vertical Sharing interface"
1197
  msgstr ""
1198
  "Especifica las páginas donde quieres permitir la interfaz vertical de "
1199
  "Compartir"
1200
 
1201
+ #: ../admin/social_sharing.php:1538
1202
  #, fuzzy
1203
  msgid "Hide floating slider"
1204
  msgstr "Ocultar para usuarios conectados:"
1205
 
1206
+ #: ../admin/social_sharing.php:1548
1207
  msgid "Hides the slider arrow present below the floating share bar"
1208
  msgstr ""
1209
 
1210
+ #: ../admin/social_sharing.php:1556
1211
  msgid "Vertical floating bar responsiveness"
1212
  msgstr "Barra flotante vertical adaptativa multidispositivo (responsiveness)"
1213
 
1214
+ #: ../admin/social_sharing.php:1559
1215
  #, php-format
1216
  msgid "Display vertical interface only when screen is wider than %s pixels"
1217
  msgstr ""
1218
  "Mostrar la interfaz vertical sólo cuando la pantalla es más ancha que %s "
1219
  "pixels"
1220
 
1221
+ #: ../admin/social_sharing.php:1566
1222
  msgid ""
1223
  "Display vertical interface only when screen is wider than the width "
1224
  "specified."
1226
  "Mostrar la interfaz vertical sólo cuando la pantalla es más ancha que el "
1227
  "ancho especificado."
1228
 
1229
+ #: ../admin/social_sharing.php:1574
1230
  msgid "Horizontal floating bar responsiveness"
1231
  msgstr "Barra flotante vertical adaptativa multidispositivo (responsiveness)"
1232
 
1233
+ #: ../admin/social_sharing.php:1577
1234
  #, php-format
1235
  msgid ""
1236
  "Stick vertical floating interface horizontally at bottom only when screen is "
1239
  "Mantener siempre visible la interfaz vertical flotante horizontalmente en el "
1240
  "fondo sólo cuando la pantalla sea más estrecha que %s pixels"
1241
 
1242
+ #: ../admin/social_sharing.php:1584
1243
  msgid ""
1244
  "Stick vertical floating interface horizontally at bottom only when screen is "
1245
  "narrower than the width specified"
1247
  "Mantener siempre visible la interfaz vertical flotante horizontalmente en el "
1248
  "fondo sólo cuando la pantalla sea más estrecha que el ancho especificado"
1249
 
1250
+ #: ../admin/social_sharing.php:1594
1251
  msgid "Horizontal floating bar position"
1252
  msgstr "Posición de la barra flotante horizontal"
1253
 
1254
+ #: ../admin/social_sharing.php:1597
1255
  #, php-format
1256
  msgid "%s pixels from %s"
1257
  msgstr "%s pixels de %s"
1258
 
1259
+ #: ../admin/social_sharing.php:1598
1260
  msgid "Auto-adjust according to screen width (responsive)"
1261
  msgstr ""
1262
 
1263
+ #: ../admin/social_sharing.php:1605
1264
  msgid "Alignment of horizontal floating interface. Number can be negative too."
1265
  msgstr ""
1266
  "Alineación de la interfaz flotante horizontal, El número puede ser negativo "
1267
  "también."
1268
 
1269
+ #: ../admin/social_sharing.php:1625
1270
  #, fuzzy
1271
  msgid "Facebook Share Count"
1272
  msgstr "Resolución de problemas al Compartir en Facebook"
1273
 
1274
+ #: ../admin/social_sharing.php:1629
1275
  msgid "Note"
1276
  msgstr ""
1277
 
1278
+ #: ../admin/social_sharing.php:1629
1279
  msgid "Required only to track Facebook share count"
1280
  msgstr ""
1281
 
1282
+ #: ../admin/social_sharing.php:1635 ../admin/social_login.php:161
1283
  msgid "Facebook App ID"
1284
  msgstr "Facebook App ID"
1285
 
1286
+ #: ../admin/social_sharing.php:1645
1287
  #, fuzzy, php-format
1288
  msgid ""
1289
  "Required for Facebook share count to work. Please follow the documentation "
1293
  "sigue la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> "
1294
  "para conseguir tu Facebook App ID"
1295
 
1296
+ #: ../admin/social_sharing.php:1653 ../admin/social_login.php:183
1297
  #, fuzzy
1298
  msgid "Facebook App Secret"
1299
  msgstr "Facebook App ID"
1300
 
1301
+ #: ../admin/social_sharing.php:1663
1302
  #, fuzzy, php-format
1303
  msgid ""
1304
  "Required for Facebook share count to work. Please follow the documentation "
1308
  "sigue la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> "
1309
  "para conseguir tu Facebook App ID"
1310
 
1311
+ #: ../admin/social_sharing.php:1672 ../admin/like_buttons.php:592
1312
  msgid "Url shortener"
1313
  msgstr "Acortador de Url"
1314
 
1315
+ #: ../admin/social_sharing.php:1678
1316
  msgid "Use shortlinks already installed"
1317
  msgstr "Utiliza los shortlinks ya instalados"
1318
 
1319
+ #: ../admin/social_sharing.php:1688
1320
  msgid "Uses default short url permalinks without using any additional plugin"
1321
  msgstr ""
1322
 
1323
+ #: ../admin/social_sharing.php:1696
1324
  msgid "Enable bit.ly url shortener for sharing"
1325
  msgstr "Habilitar acortador de url bit.ly para compartir"
1326
 
1327
+ #: ../admin/social_sharing.php:1706 ../admin/like_buttons.php:626
1328
  msgid "Master control to enable bit.ly url shortening for sharing"
1329
  msgstr ""
1330
  "Control maestro para permitir el acortamiento de URL bit.ly para compartir"
1331
 
1332
+ #: ../admin/social_sharing.php:1714
1333
  #, fuzzy
1334
  msgid "bit.ly Login"
1335
  msgstr "Ingreso a través de redes sociales"
1336
 
1337
+ #: ../admin/social_sharing.php:1724 ../admin/social_sharing.php:1743
1338
  #, fuzzy, php-format
1339
  msgid "More details on how to get it <a href=\"%s\" target=\"_blank\">here</a>"
1340
  msgstr ""
1342
  "la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> para "
1343
  "conseguir tu Twitter Key"
1344
 
1345
+ #: ../admin/social_sharing.php:1733 ../admin/like_buttons.php:653
1346
  msgid "bit.ly API Key"
1347
  msgstr "bit.ly API Key"
1348
 
1349
+ #: ../admin/social_sharing.php:1752 ../admin/like_buttons.php:672
1350
  msgid "Clear Bitly Cache"
1351
  msgstr ""
1352
 
1353
+ #: ../admin/social_sharing.php:1756 ../admin/like_buttons.php:676
1354
  msgid "ShortUrl cache cleared successfully."
1355
  msgstr "La caché de ShortUrl se ha vaciado con éxito."
1356
 
1357
+ #: ../admin/social_sharing.php:1763 ../admin/like_buttons.php:683
1358
  msgid ""
1359
  "Use this to delete short urls saved in database. Handy, if urls of your "
1360
  "website have been changed but short urls are still being generated for old "
1364
  "datos. Esto es práctico, si las url de tu sitio web han cambiado, pero las "
1365
  "url cortas todavía se están generando para viejas url."
1366
 
1367
+ #: ../admin/social_sharing.php:1772
1368
  msgid "Share Count Cache"
1369
  msgstr ""
1370
 
1371
+ #: ../admin/social_sharing.php:1778
1372
  msgid "Refresh Share Count cache every"
1373
  msgstr ""
1374
 
1375
+ #: ../admin/social_sharing.php:1783
1376
  msgid "Second(s)"
1377
  msgstr ""
1378
 
1379
+ #: ../admin/social_sharing.php:1784
1380
  msgid "Minute(s)"
1381
  msgstr ""
1382
 
1383
+ #: ../admin/social_sharing.php:1785
1384
  msgid "Hour(s)"
1385
  msgstr ""
1386
 
1387
+ #: ../admin/social_sharing.php:1786
1388
  msgid "Day(s)"
1389
  msgstr ""
1390
 
1391
+ #: ../admin/social_sharing.php:1794
1392
  #, php-format
1393
  msgid ""
1394
  "Frequent cache refreshing results in slower loading of pages with share "
1396
  "target=\"_blank\">here</a>"
1397
  msgstr ""
1398
 
1399
+ #: ../admin/social_sharing.php:1802
1400
  msgid "Clear Share Counts Cache"
1401
  msgstr ""
1402
 
1403
+ #: ../admin/social_sharing.php:1806
1404
  #, fuzzy
1405
  msgid "Share Counts cache cleared successfully."
1406
  msgstr "La caché de ShortUrl se ha vaciado con éxito."
1407
 
1408
+ #: ../admin/social_sharing.php:1813
1409
  msgid "Use this to clear cached share counts"
1410
  msgstr ""
1411
 
1412
+ #: ../admin/social_sharing.php:1822 ../admin/social_sharing.php:1828
1413
  #: ../admin/social_commenting.php:315 ../admin/like_buttons.php:692
1414
  #: ../admin/like_buttons.php:698
1415
  msgid "Language"
1416
  msgstr "Idioma"
1417
 
1418
+ #: ../admin/social_sharing.php:1838
1419
  #, php-format
1420
  msgid ""
1421
  "Enter the code of the language you want to use for like buttons. You can "
1426
  "gusta\". Puedes encontrar los códigos de idioma en <a href=\"%s\" target="
1427
  "\"_blank\">este enlace</a>. Déjalo vacío para el idioma por defecto (Inglés)"
1428
 
1429
+ #: ../admin/social_sharing.php:1847
1430
  msgid "Username in sharing"
1431
  msgstr "Nombre de usuario en Compartir"
1432
 
1433
+ #: ../admin/social_sharing.php:1853
1434
  msgid "Twitter username (without @)"
1435
  msgstr "Nombre de usuario de Twitter (sin @)"
1436
 
1437
+ #: ../admin/social_sharing.php:1863 ../admin/social_sharing.php:1882
1438
  msgid ""
1439
  "Provided username will be appended after the content being shared as \"via "
1440
  "@USERNAME\". Leave empty if you do not want any username in the content "
1444
  "sea comparte como \"via @USERNAME\". Déjalo vacío si no quieres ningún "
1445
  "nombre de usuario en el contenido compartido."
1446
 
1447
+ #: ../admin/social_sharing.php:1872
1448
  msgid "Buffer username (without @)"
1449
  msgstr "Nombre de usuario de Buffer (sin @)"
1450
 
1451
+ #: ../admin/social_sharing.php:1891
1452
  msgid "AMP"
1453
  msgstr ""
1454
 
1455
+ #: ../admin/social_sharing.php:1897
1456
  #, fuzzy
1457
  msgid "Enable sharing on AMP pages"
1458
  msgstr "Permitir Página de Ingreso"
1459
 
1460
+ #: ../admin/social_sharing.php:1907
1461
  msgid "Enable this option to render sharing icons on AMP pages"
1462
  msgstr ""
1463
 
1464
+ #: ../admin/social_sharing.php:1926 ../admin/like_buttons.php:771
1465
  msgid "myCRED"
1466
  msgstr ""
1467
 
1468
+ #: ../admin/social_sharing.php:1932 ../admin/like_buttons.php:777
1469
  msgid "Append myCRED referral ID to the urls being shared"
1470
  msgstr ""
1471
 
1472
+ #: ../admin/social_sharing.php:1965
1473
  msgid "Facebook Sharing Troubleshooter"
1474
  msgstr "Resolución de problemas al Compartir en Facebook"
1475
 
1476
+ #: ../admin/social_sharing.php:1970
1477
  #, fuzzy
1478
  msgid ""
1479
  "If Facebook sharing is not working fine, click at the following link and "
1485
  "en el siguiente enlace e introduce la url problemática de tu sitio web (la "
1486
  "que Facebook no está compartiendo correctamente) en el campo de texto:"
1487
 
1488
+ #: ../admin/social_sharing.php:1987 ../admin/social_commenting.php:399
1489
+ #: ../admin/social_login.php:1295
1490
  msgid ""
1491
  "<strong>Note:</strong> Plugin will not work on local server. You should have "
1492
  "an online website for the plugin to function properly."
1493
  msgstr ""
1494
 
1495
+ #: ../admin/social_sharing.php:1988
1496
  msgid ""
1497
  "Why is sharer not showing the correct image, title and other meta tags "
1498
  "content?"
1499
  msgstr ""
1500
 
1501
+ #: ../admin/social_sharing.php:1989
1502
  msgid "Why is Facebook share count not working?"
1503
  msgstr ""
1504
 
1505
+ #: ../admin/social_sharing.php:1992
1506
  msgid "Why is Instagram icon redirecting to Instagram website?"
1507
  msgstr ""
1508
 
1509
+ #: ../admin/social_sharing.php:1993
1510
  msgid ""
1511
  "Instagram icon is there to send website visitors to the Instagram page of "
1512
  "your choice. You can save the desired Instagram handle in \"Instagram "
1514
  "sections."
1515
  msgstr ""
1516
 
1517
+ #: ../admin/social_sharing.php:1996
1518
  #, fuzzy
1519
  msgid "How to customize the url being shared?"
1520
  msgstr ""
1521
  "¿Cómo personalizar el aspecto de los contadores individuales de veces "
1522
  "compartidas?"
1523
 
1524
+ #: ../admin/social_sharing.php:1997
1525
  msgid ""
1526
  "Why are Twitter shares not appearing even after registering at Twitcount.com?"
1527
  msgstr ""
1528
 
1529
+ #: ../admin/social_sharing.php:1998
1530
  msgid ""
1531
  "It takes some time for their service to track the shares made on Twitter "
1532
  "from your website. If you still feel it's taking too long you can contact "
1533
  "their support directly from their website."
1534
  msgstr ""
1535
 
1536
+ #: ../admin/social_sharing.php:2000 ../admin/like_buttons.php:814
1537
  msgid "How to Place Title and Social Share Icons in the Same Row?"
1538
  msgstr ""
1539
 
1540
+ #: ../admin/social_sharing.php:2001
1541
  msgid ""
1542
  "How to restore Social Share counts lost after moving my website to SSL/Https?"
1543
  msgstr ""
1544
 
1545
+ #: ../admin/social_sharing.php:2002 ../admin/social_commenting.php:402
1546
+ #: ../admin/social_login.php:1302
1547
  msgid "Why is my browser blocking some features of the plugin?"
1548
  msgstr ""
1549
 
1550
+ #: ../admin/social_sharing.php:2003
1551
  msgid "Why the color of share icons is not being updated?"
1552
  msgstr ""
1553
 
1554
+ #: ../admin/social_sharing.php:2004
1555
  msgid "Why Facebook share counts are not appearing?"
1556
  msgstr ""
1557
 
1558
+ #: ../admin/social_sharing.php:2005
1559
  msgid ""
1560
  "How can I show share counts of my website rather than of individual pages/"
1561
  "posts?"
1563
  "¿Cómo puedo mostrar los contadores de veces compartidas de mi sitio web en "
1564
  "lugar de páginas individuales o entradas?"
1565
 
1566
+ #: ../admin/social_sharing.php:2006
1567
  msgid "How can I disable sharing on particular page/post?"
1568
  msgstr ""
1569
  "¿Cómo puedo desactivar los botones de Compartir en una página individual o "
1570
  "entrada?"
1571
 
1572
+ #: ../admin/social_sharing.php:2007
1573
  msgid "How can I specify minimum sharing count for sharing networks?"
1574
  msgstr ""
1575
  "¿Cómo puedo especificar el número mínimo de veces compartidas para las redes "
1576
  "sociales?"
1577
 
1578
+ #: ../admin/social_sharing.php:2008
1579
  msgid "How to share specific page?"
1580
  msgstr "¿Cómo compartir una página específica?"
1581
 
1582
+ #: ../admin/social_sharing.php:2009
1583
  msgid "How to integrate Google Analytics with sharing?"
1584
  msgstr "¿Cómo integrar Google Analytics con Compartir?"
1585
 
1586
+ #: ../admin/social_sharing.php:2010
1587
  msgid "How to customize the look of total share counts?"
1588
  msgstr ""
1589
  "¿Cómo personalizar el aspecto de los contadores totales de veces compartidas?"
1590
 
1591
+ #: ../admin/social_sharing.php:2011
1592
  msgid "How to customize the look of individual share counts?"
1593
  msgstr ""
1594
  "¿Cómo personalizar el aspecto de los contadores individuales de veces "
1595
  "compartidas?"
1596
 
1597
+ #: ../admin/social_sharing.php:2012
1598
  msgid "How to show Whatsapp icon only on mobile devices?"
1599
  msgstr "¿Cómo mostrar el icono de WhatsApp sólo en dispositivos móviles?"
1600
 
1601
+ #: ../admin/social_sharing.php:2013
1602
  msgid "How to hide arrow after floating sharing bar?"
1603
  msgstr ""
1604
 
1605
+ #: ../admin/social_sharing.php:2014
1606
  msgid "Why is share count not getting updated?"
1607
  msgstr ""
1608
 
1609
+ #: ../admin/social_sharing.php:2015 ../admin/like_buttons.php:812
1610
  msgid "Why is there so much space between like buttons?"
1611
  msgstr ""
1612
 
1613
+ #: ../admin/social_sharing.php:2016 ../admin/like_buttons.php:813
1614
  msgid "Why are floating sharing/like buttons not appearing at homepage?"
1615
  msgstr ""
1616
 
1872
  msgid "GDPR"
1873
  msgstr ""
1874
 
1875
+ #: ../admin/social_login.php:44 ../admin/social_login.php:1230
1876
  msgid "XProfile Integration"
1877
  msgstr ""
1878
 
2637
  msgstr "Permitir Comentarios de Disqus"
2638
 
2639
  #: ../admin/social_login.php:1135
2640
+ msgid "Text to link to Terms-Conditions page"
2641
  msgstr ""
2642
 
2643
  #: ../admin/social_login.php:1145
2644
+ msgid "Word(s) in the opt-in text to be linked to terms-conditions page"
2645
  msgstr ""
2646
 
2647
  #: ../admin/social_login.php:1153
2648
+ msgid "Terms-Conditions Url"
2649
  msgstr ""
2650
 
2651
  #: ../admin/social_login.php:1163
2652
  #, fuzzy
2653
+ msgid "Url of the terms-conditions page of your website"
2654
+ msgstr "Url de la página de inicio de tu sitio web"
2655
+
2656
+ #: ../admin/social_login.php:1171
2657
+ msgid "Text to link to Privacy Policy page"
2658
+ msgstr ""
2659
+
2660
+ #: ../admin/social_login.php:1181
2661
+ msgid "Word(s) in the opt-in text to be linked to privacy policy page"
2662
+ msgstr ""
2663
+
2664
+ #: ../admin/social_login.php:1189
2665
+ msgid "Privacy Policy Url"
2666
+ msgstr ""
2667
+
2668
+ #: ../admin/social_login.php:1199
2669
+ #, fuzzy
2670
  msgid "Url of the privacy policy page of your website"
2671
  msgstr "Url de la página de inicio de tu sitio web"
2672
 
2673
+ #: ../admin/social_login.php:1250 ../inc/widget.php:260 ../inc/widget.php:438
2674
  #: ../inc/widget.php:602 ../inc/widget.php:750
2675
  msgid "Select"
2676
  msgstr "Seleccionar"
2677
 
2678
+ #: ../admin/social_login.php:1281
2679
  msgid "Social Login Shortcode & Widget"
2680
  msgstr "Widget y Shortcode para el Ingreso a través de redes sociales"
2681
 
2682
+ #: ../admin/social_login.php:1282
2683
  msgid "Social Linking Shortcode"
2684
  msgstr "Shortcode para enlace a través de redes sociales"
2685
 
2686
+ #: ../admin/social_login.php:1297
2687
  msgid "Why is social login not working?"
2688
  msgstr ""
2689
 
2690
+ #: ../admin/social_login.php:1298
2691
  msgid ""
2692
  "Make sure that App ID and Secret (Client ID and Secret) keys you have saved, "
2693
  "belong to the same app"
2694
  msgstr ""
2695
 
2696
+ #: ../admin/social_login.php:1300
2697
  msgid "Social Login not working with Varnish enabled"
2698
  msgstr ""
2699
 
2700
+ #: ../admin/social_login.php:1301
2701
  msgid ""
2702
  "Why the user is not appearing logged in even after Social Login until the "
2703
  "webpage is refreshed manually?"
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: 2019-06-25 11:53+0530\n"
6
- "PO-Revision-Date: 2019-06-25 11:53+0530\n"
7
  "Last-Translator: Heateor <hello@heateor.com>\n"
8
  "Language-Team: The Champ <lordofthechamps@gmail.com>\n"
9
  "Language: hu\n"
@@ -16,19 +16,19 @@ msgstr ""
16
  "X-Poedit-KeywordsList: __;_e\n"
17
  "X-Poedit-SearchPath-0: ..\n"
18
 
19
- #: ../super_socializer.php:430
20
  msgid "Problem fetching access token: "
21
  msgstr ""
22
 
23
- #: ../super_socializer.php:434 ../super_socializer.php:448
24
  msgid "Facebook SDK returned an error: "
25
  msgstr ""
26
 
27
- #: ../super_socializer.php:444
28
  msgid "Graph returned an error: "
29
  msgstr ""
30
 
31
- #: ../super_socializer.php:610
32
  #, fuzzy
33
  msgid ""
34
  "cURL is not enabled at your website server. Please contact your website "
@@ -37,7 +37,7 @@ msgstr ""
37
  "Ellenőrizd, hogy a cURL be van kapcsolva a szervereden. Lehetséges, hogy "
38
  "ehhez fel kell keresned a szerver adminisztrátorát, a tárhelyszolgáltatódat"
39
 
40
- #: ../super_socializer.php:637
41
  #, fuzzy, php-format
42
  msgid ""
43
  "Enter exactly the following url in <strong>Website</strong> option in your "
@@ -47,7 +47,7 @@ msgstr ""
47
  "<strong>Callback Url</strong> mezőbe a Twitter alkalmazásodban lásd 3. "
48
  "lépés %s)"
49
 
50
- #: ../super_socializer.php:640
51
  #, fuzzy, php-format
52
  msgid ""
53
  "Enter exactly the following url in <strong>Callback URLs</strong> option in "
@@ -57,7 +57,7 @@ msgstr ""
57
  "<strong>Callback Url</strong> mezőbe a Twitter alkalmazásodban lásd 3. "
58
  "lépés %s)"
59
 
60
- #: ../super_socializer.php:643
61
  msgid ""
62
  "Make sure cURL is enabled at your website server. You may need to contact "
63
  "the server administrator of your website to verify this"
@@ -65,167 +65,155 @@ msgstr ""
65
  "Ellenőrizd, hogy a cURL be van kapcsolva a szervereden. Lehetséges, hogy "
66
  "ehhez fel kell keresned a szerver adminisztrátorát, a tárhelyszolgáltatódat"
67
 
68
- #: ../super_socializer.php:644
69
- #, php-format
70
- msgid ""
71
- "Make sure that \"Enable Callback Locking\" option is disabled. See step 4 %s"
72
- msgstr ""
73
-
74
- #: ../super_socializer.php:907 ../helper.php:976
75
  msgid "Please verify your email address to login."
76
  msgstr "Kérjük, ellenőrizd e-mail címed a belépéshez."
77
 
78
- #: ../super_socializer.php:907
79
  msgid "Your email has been verified. Now you can login to your account"
80
  msgstr "E-mail címed ellenőrzése sikeres. Most már beléphetsz fiókodba"
81
 
82
- #: ../super_socializer.php:911
83
  msgid "Notification"
84
  msgstr "Értesítés"
85
 
86
- #: ../super_socializer.php:929 ../admin/social_login.php:805
87
  msgid "Email required"
88
  msgstr "E-mail cím szükséges"
89
 
90
- #: ../super_socializer.php:932
91
  msgid "Please check your email inbox to complete the registration."
92
  msgstr "Kérjük, nézd meg e-mail címed a regisztráció befejezéséhez."
93
 
94
- #: ../super_socializer.php:939 ../helper.php:508
95
  msgid "Enter your LiveJournal username"
96
  msgstr ""
97
 
98
- #: ../super_socializer.php:1011
99
  msgid "Leave a reply"
100
  msgstr "Válaszolj"
101
 
102
- #: ../super_socializer.php:1023 ../inc/social_sharing.php:241
103
  msgid "Shares"
104
  msgstr ""
105
 
106
- #: ../super_socializer.php:1023 ../inc/social_sharing.php:241
107
  msgid "Share"
108
  msgstr ""
109
 
110
- #: ../super_socializer.php:1023
111
  #, fuzzy
112
  msgid "Link copied."
113
  msgstr "LinkedIn"
114
 
115
- #: ../super_socializer.php:1269
116
  #, fuzzy
117
  msgid "Super Socializer - General Options"
118
  msgstr "Super Socializer - Belépés"
119
 
120
- #: ../super_socializer.php:1269 ../admin/general_options.php:15
121
  #: ../admin/social_commenting.php:47
122
  #, fuzzy
123
  msgid "General Options"
124
  msgstr "Megosztási beállítások"
125
 
126
- #: ../super_socializer.php:1337 ../helper.php:898
127
  #, fuzzy
128
  msgid "Social Avatar"
129
  msgstr "Kis Avatar URL"
130
 
131
- #: ../super_socializer.php:1340
132
  msgid "Small Avatar Url"
133
  msgstr "Kis Avatar URL"
134
 
135
- #: ../super_socializer.php:1344
136
  #, fuzzy
137
  msgid "Large Avatar Url"
138
  msgstr "Cél Url"
139
 
140
- #: ../super_socializer.php:1348 ../helper.php:901
141
  msgid ""
142
  "Do not fetch and update social avatar from my profile, next time I Social "
143
  "Login"
144
  msgstr ""
145
 
146
- #: ../super_socializer.php:1352 ../helper.php:902
147
  msgid "Update social avatar, next time I Social Login"
148
  msgstr ""
149
 
150
- #: ../super_socializer.php:1425 ../super_socializer.php:2197
151
- msgid ""
152
- "Your browser is blocking some features of this website. Please follow the "
153
- "instructions at {support_url} to unblock these."
154
- msgstr ""
155
-
156
- #: ../super_socializer.php:1431
157
  msgid "Login with your Social ID"
158
  msgstr ""
159
 
160
- #: ../super_socializer.php:1432
161
  msgid "Email you entered is already registered or invalid"
162
  msgstr "A megadott e-mail már regisztrálva van, vagy hibás"
163
 
164
- #: ../super_socializer.php:1437
165
  msgid "Please enter a valid email address. You might be required to verify it"
166
  msgstr "Kérlek, érvényes e-mail címet adj meg. Ezt később ellenőrizhetjük"
167
 
168
- #: ../super_socializer.php:1441 ../super_socializer.php:2121
169
  msgid "Link your social account to login to your account at this website"
170
  msgstr "Kapcsold össze közösségi fiókod, hogy belépj erre az oldalra"
171
 
172
- #: ../super_socializer.php:1687
173
  msgid "Thanks for installing Super Socializer plugin"
174
  msgstr ""
175
 
176
- #: ../super_socializer.php:1689
177
  msgid "Configure the Plugin"
178
  msgstr ""
179
 
180
- #: ../super_socializer.php:1700
181
  msgid ""
182
  "Update \"Facebook Comments Moderation\" add-on for compatibility with "
183
  "current version of Super Socialzer"
184
  msgstr ""
185
 
186
- #: ../super_socializer.php:1709
187
  msgid ""
188
  "Update \"Facebook Comments Notifier\" add-on for compatibility with current "
189
  "version of Super Socialzer"
190
  msgstr ""
191
 
192
- #: ../super_socializer.php:1718
193
  msgid ""
194
  "Update \"Social Login Buttons\" add-on for compatibility with current "
195
  "version of Super Socialzer"
196
  msgstr ""
197
 
198
- #: ../super_socializer.php:1727
199
  msgid ""
200
  "Update \"Social Share myCRED Integration\" add-on for maximum compatibility "
201
  "with current version of Super Socialzer"
202
  msgstr ""
203
 
204
- #: ../super_socializer.php:1736
205
  msgid ""
206
  "Update \"Social Login myCRED Integration\" add-on for maximum compatibility "
207
  "with current version of Super Socialzer"
208
  msgstr ""
209
 
210
- #: ../super_socializer.php:1743
211
  msgid ""
212
  "Update \"Social Login myCRED Integration\" add-on for compatibility with "
213
  "LiveJournal Login of Super Socialzer"
214
  msgstr ""
215
 
216
- #: ../super_socializer.php:1754
217
  #, php-format
218
  msgid ""
219
  "To continue using Steam login save Steam API key <a href=\"%s\">here</a>"
220
  msgstr ""
221
 
222
- #: ../super_socializer.php:1770
223
  #, php-format
224
  msgid ""
225
  "To continue using Social Login, save the secret keys <a href=\"%s\">here</a>"
226
  msgstr ""
227
 
228
- #: ../super_socializer.php:1794
229
  #, php-format
230
  msgid ""
231
  "Add %s in \"Valid OAuth redirect URIs\" option in your Facebook app settings "
@@ -233,14 +221,14 @@ msgid ""
233
  "target=\"_blank\">here</a>"
234
  msgstr ""
235
 
236
- #: ../super_socializer.php:1794 ../super_socializer.php:1819
237
- #: ../super_socializer.php:1844 ../super_socializer.php:1869
238
- #: ../super_socializer.php:1902 ../super_socializer.php:1930
239
- #: ../super_socializer.php:1957 ../super_socializer.php:2034
240
  msgid "Okay"
241
  msgstr ""
242
 
243
- #: ../super_socializer.php:1819
244
  #, php-format
245
  msgid ""
246
  "Add %s in \"Callback URLs\" option in your Twitter app settings for Twitter "
@@ -248,7 +236,7 @@ msgid ""
248
  "\">here</a>"
249
  msgstr ""
250
 
251
- #: ../super_socializer.php:1844
252
  #, php-format
253
  msgid ""
254
  "Add %s in \"Authorized Redirect URLs\" option in your Linkedin app settings "
@@ -256,7 +244,7 @@ msgid ""
256
  "target=\"_blank\">here</a>"
257
  msgstr ""
258
 
259
- #: ../super_socializer.php:1869
260
  #, php-format
261
  msgid ""
262
  "Add %s in \"Authorized redirect URIs\" option in your Google client settings "
@@ -264,13 +252,13 @@ msgid ""
264
  "target=\"_blank\">here</a>"
265
  msgstr ""
266
 
267
- #: ../super_socializer.php:1880
268
  #, php-format
269
  msgid ""
270
  "Save the url of privacy policy page of your website <a href=\"%s\">here</a>"
271
  msgstr ""
272
 
273
- #: ../super_socializer.php:1902
274
  #, php-format
275
  msgid ""
276
  "This plugin is GDPR compliant. You need to update the privacy policy of your "
@@ -278,7 +266,7 @@ msgid ""
278
  "\"%s\" target=\"_blank\">here</a>"
279
  msgstr ""
280
 
281
- #: ../super_socializer.php:1930
282
  #, php-format
283
  msgid ""
284
  "Now plugin supports a new service Twitcount.com to show Twitter shares. To "
@@ -287,7 +275,7 @@ msgid ""
287
  "your website %s with them. No need to copy-paste any code from their website."
288
  msgstr ""
289
 
290
- #: ../super_socializer.php:1957
291
  #, php-format
292
  msgid ""
293
  "Replace url saved in \"Callback URLs\" option in your Twitter app settings "
@@ -295,7 +283,7 @@ msgid ""
295
  "\"%s\" target=\"_blank\">here</a>"
296
  msgstr ""
297
 
298
- #: ../super_socializer.php:1982
299
  #, php-format
300
  msgid ""
301
  "If you cannot get Linkedin login to work after updating the plugin, replace "
@@ -303,11 +291,11 @@ msgid ""
303
  "For more details, check step 6 <a href=\"%s\" target=\"_blank\">here</a>"
304
  msgstr ""
305
 
306
- #: ../super_socializer.php:1982 ../super_socializer.php:2009
307
  msgid "Dismiss"
308
  msgstr ""
309
 
310
- #: ../super_socializer.php:2008
311
  #, php-format
312
  msgid ""
313
  "Save Facebook App ID and Secret keys in \"Standard Interface\" and/or "
@@ -316,7 +304,7 @@ msgid ""
316
  "that, clear share counts cache from \"Miscellaneous\" section"
317
  msgstr ""
318
 
319
- #: ../super_socializer.php:2034
320
  #, php-format
321
  msgid ""
322
  "Your website visitors will see a popup notification (only once) if their "
@@ -326,12 +314,18 @@ msgid ""
326
  "features\" option <a href=\"%s\">here</a>"
327
  msgstr ""
328
 
 
 
 
 
 
 
329
  #: ../helper.php:8
330
  #, fuzzy
331
  msgid "Settings saved"
332
  msgstr "Beállítások"
333
 
334
- #: ../helper.php:8 ../admin/social_sharing.php:42
335
  msgid "Dismiss this notice"
336
  msgstr "Utasítsa el ezt az értesítést"
337
 
@@ -429,9 +423,9 @@ msgstr "Kis Avatar URL"
429
  msgid "Large Avatar"
430
  msgstr "Cél Url"
431
 
432
- #: ../helper.php:913 ../admin/general_options.php:132
433
- #: ../admin/social_sharing.php:2020 ../admin/social_commenting.php:413
434
- #: ../admin/social_login.php:1277 ../admin/like_buttons.php:826
435
  msgid "Save Changes"
436
  msgstr "Változások Mentése"
437
 
@@ -452,10 +446,10 @@ msgstr ""
452
  msgid "Something bad happened"
453
  msgstr ""
454
 
455
- #: ../admin/general_options.php:7 ../admin/general_options.php:136
456
- #: ../admin/social_sharing.php:5 ../admin/social_sharing.php:2024
457
  #: ../admin/social_commenting.php:5 ../admin/social_commenting.php:417
458
- #: ../admin/social_login.php:5 ../admin/social_login.php:1281
459
  #: ../admin/like_buttons.php:6 ../admin/like_buttons.php:830
460
  #, fuzzy, php-format
461
  msgid ""
@@ -501,54 +495,33 @@ msgstr ""
501
  "azt."
502
 
503
  #: ../admin/general_options.php:75
504
- msgid ""
505
- "Show popup notification to users if their browsers block the plugin features"
506
- msgstr ""
507
-
508
- #: ../admin/general_options.php:85
509
- msgid ""
510
- "If enabled, your website visitors will see a popup notification (only once) "
511
- "if their browsers block any of the features of the plugin so that they can "
512
- "change their browser settings to unblock these."
513
- msgstr ""
514
-
515
- #: ../admin/general_options.php:95
516
- msgid "Message to show in popup notification"
517
- msgstr ""
518
-
519
- #: ../admin/general_options.php:105
520
- msgid ""
521
- "Use {support_url} placeholder to show support documentation url in message"
522
- msgstr ""
523
-
524
- #: ../admin/general_options.php:114
525
  #, fuzzy
526
  msgid "Custom CSS"
527
  msgstr "Egyedi URL"
528
 
529
- #: ../admin/general_options.php:124
530
  msgid "You can specify any additional CSS rules (without &lt;style&gt; tag)"
531
  msgstr ""
532
 
533
- #: ../admin/general_options.php:147 ../admin/social_sharing.php:2030
534
- #: ../admin/social_commenting.php:423 ../admin/social_login.php:1287
535
- #: ../admin/like_buttons.php:836
536
  #, fuzzy
537
  msgid "Instagram Shoutout"
538
  msgstr "Instagram"
539
 
540
- #: ../admin/general_options.php:149 ../admin/social_sharing.php:2032
541
- #: ../admin/social_commenting.php:425 ../admin/social_login.php:1289
542
- #: ../admin/like_buttons.php:838
543
  msgid ""
544
  "If you can send (to hello@heateor.com) how our plugin is helping your "
545
  "business, we can share it on Instagram. You can also send any relevant "
546
  "hashtags and people to mention in the Instagram post."
547
  msgstr ""
548
 
549
- #: ../admin/general_options.php:150 ../admin/social_sharing.php:2033
550
- #: ../admin/social_commenting.php:426 ../admin/social_login.php:1290
551
- #: ../admin/like_buttons.php:839
552
  msgid ""
553
  "<b>Example</b> - Blah-Blah Online Coaching teaches various programming "
554
  "language courses through their website. They have emerged as one of the most "
@@ -557,9 +530,9 @@ msgid ""
557
  "time."
558
  msgstr ""
559
 
560
- #: ../admin/general_options.php:151 ../admin/social_sharing.php:2034
561
- #: ../admin/social_commenting.php:427 ../admin/social_login.php:1291
562
- #: ../admin/like_buttons.php:840
563
  msgid ""
564
  "@blahblahonlinecoaching proudly use #SuperSocializer to enable social "
565
  "features at their website, such as - Social Login, Social Share and Social "
@@ -673,61 +646,61 @@ msgstr "Központi beállítás a vízszintes megosztási felület bekapcsolásá
673
  msgid "Recover Social Share Counts Lost After Moving to SSL/Https"
674
  msgstr ""
675
 
676
- #: ../admin/social_sharing.php:42 ../admin/social_sharing.php:1983
677
  msgid ""
678
  "Save Facebook App Id and Secret in the \"Miscellaneous\" section for "
679
  "Facebook share count to work"
680
  msgstr ""
681
 
682
- #: ../admin/social_sharing.php:49
683
  msgid "Theme Selection"
684
  msgstr ""
685
 
686
- #: ../admin/social_sharing.php:50 ../admin/like_buttons.php:41
687
  #, fuzzy
688
  msgid "Standard Interface"
689
  msgstr "Megosztási Felület"
690
 
691
- #: ../admin/social_sharing.php:51 ../admin/like_buttons.php:42
692
  #, fuzzy
693
  msgid "Floating Interface"
694
  msgstr "Megosztási Felület"
695
 
696
- #: ../admin/social_sharing.php:52 ../admin/like_buttons.php:43
697
  msgid "Miscellaneous"
698
  msgstr ""
699
 
700
- #: ../admin/social_sharing.php:56 ../admin/like_buttons.php:47
701
  msgid "3rd Party Integration"
702
  msgstr ""
703
 
704
- #: ../admin/social_sharing.php:60 ../admin/social_sharing.php:1945
705
- #: ../admin/social_sharing.php:1947 ../admin/social_login.php:46
706
- #: ../admin/social_login.php:1243 ../admin/like_buttons.php:51
707
  #: ../admin/like_buttons.php:797
708
  msgid "Shortcode & Widget"
709
  msgstr "Shortcode és Widget"
710
 
711
- #: ../admin/social_sharing.php:61
712
  msgid "Troubleshooter"
713
  msgstr "Hibamegoldó"
714
 
715
- #: ../admin/social_sharing.php:62 ../admin/social_sharing.php:1978
716
  #: ../admin/social_commenting.php:40 ../admin/social_commenting.php:397
717
- #: ../admin/social_login.php:47 ../admin/social_login.php:1257
718
  #: ../admin/like_buttons.php:52 ../admin/like_buttons.php:810
719
  msgid "FAQ"
720
  msgstr "GYIK"
721
 
722
- #: ../admin/social_sharing.php:70
723
  msgid "Standard interface theme"
724
  msgstr ""
725
 
726
- #: ../admin/social_sharing.php:75 ../admin/social_sharing.php:382
727
  msgid "Icon Preview"
728
  msgstr "icon Preview"
729
 
730
- #: ../admin/social_sharing.php:147 ../admin/social_sharing.php:455
731
  msgid ""
732
  "Do not forget to save the configuration after making changes by clicking the "
733
  "save button below"
@@ -735,85 +708,85 @@ msgstr ""
735
  "Ne felejtsd el menteni a konfigurációs változtatások után, kattintson a "
736
  "Mentés gombra"
737
 
738
- #: ../admin/social_sharing.php:154 ../admin/social_sharing.php:462
739
  msgid "Shape"
740
  msgstr "alak"
741
 
742
- #: ../admin/social_sharing.php:158 ../admin/social_sharing.php:466
743
  #: ../inc/widget.php:951
744
  msgid "Round"
745
  msgstr "kerek"
746
 
747
- #: ../admin/social_sharing.php:160 ../admin/social_sharing.php:468
748
  #: ../inc/widget.php:952
749
  msgid "Square"
750
  msgstr "szögletes"
751
 
752
- #: ../admin/social_sharing.php:162 ../admin/social_sharing.php:470
753
  msgid "Rectangle"
754
  msgstr ""
755
 
756
- #: ../admin/social_sharing.php:169 ../admin/social_sharing.php:477
757
  msgid "Shape of the sharing icons"
758
  msgstr "Megosztás ikonok formája"
759
 
760
- #: ../admin/social_sharing.php:178 ../admin/social_sharing.php:486
761
  msgid "Size (in pixels)"
762
  msgstr "Méret (pixel)"
763
 
764
- #: ../admin/social_sharing.php:194 ../admin/social_sharing.php:502
765
  msgid "Size of the sharing icons"
766
  msgstr "Megosztási ikonok mérete"
767
 
768
- #: ../admin/social_sharing.php:204 ../admin/social_sharing.php:512
769
  #, fuzzy
770
  msgid "Width (in pixels)"
771
  msgstr "Méret (pixel)"
772
 
773
- #: ../admin/social_sharing.php:220 ../admin/social_sharing.php:528
774
  #, fuzzy
775
  msgid "Width of the sharing icons"
776
  msgstr "Megosztási ikonok mérete"
777
 
778
- #: ../admin/social_sharing.php:228 ../admin/social_sharing.php:536
779
  #, fuzzy
780
  msgid "Height (in pixels)"
781
  msgstr "Méret (pixel)"
782
 
783
- #: ../admin/social_sharing.php:244 ../admin/social_sharing.php:552
784
  #, fuzzy
785
  msgid "Height of the sharing icons"
786
  msgstr "Megosztási ikonok mérete"
787
 
788
- #: ../admin/social_sharing.php:254 ../admin/social_sharing.php:562
789
  #, fuzzy
790
  msgid "Border radius (in pixels)"
791
  msgstr "Méret (pixel)"
792
 
793
- #: ../admin/social_sharing.php:264 ../admin/social_sharing.php:572
794
  msgid ""
795
  "Specify a value for rounded corners. More the value, more rounded will the "
796
  "corners be. Leave empty for sharp corners."
797
  msgstr ""
798
 
799
- #: ../admin/social_sharing.php:273 ../admin/social_sharing.php:581
800
  #, fuzzy
801
  msgid "Logo Color"
802
  msgstr "Háttér Szín"
803
 
804
- #: ../admin/social_sharing.php:277 ../admin/social_sharing.php:298
805
- #: ../admin/social_sharing.php:318 ../admin/social_sharing.php:585
806
- #: ../admin/social_sharing.php:606 ../admin/social_sharing.php:625
807
  msgid "Default"
808
  msgstr ""
809
 
810
- #: ../admin/social_sharing.php:279 ../admin/social_sharing.php:299
811
- #: ../admin/social_sharing.php:323 ../admin/social_sharing.php:587
812
- #: ../admin/social_sharing.php:607 ../admin/social_sharing.php:630
813
  msgid "On Hover"
814
  msgstr ""
815
 
816
- #: ../admin/social_sharing.php:287 ../admin/social_sharing.php:595
817
  #, fuzzy
818
  msgid ""
819
  "Specify the color or hex code (example #cc78e0) for the logo of icon. Leave "
@@ -824,13 +797,13 @@ msgstr ""
824
  "hátteréhez. Hagyd üresen, hogy átlátszó maradjon. A hexa színkódot <a href="
825
  "\"http://www.colorpicker.com/\" target=\"_blank\"> innen</a> tudod kilesni"
826
 
827
- #: ../admin/social_sharing.php:295 ../admin/social_sharing.php:603
828
- #: ../admin/social_sharing.php:1318 ../admin/like_buttons.php:410
829
  #: ../inc/widget.php:460 ../inc/widget.php:772
830
  msgid "Background Color"
831
  msgstr "Háttér Szín"
832
 
833
- #: ../admin/social_sharing.php:306 ../admin/social_sharing.php:614
834
  #, fuzzy
835
  msgid ""
836
  "Specify the color or hex code (example #cc78e0) for icon background. Save "
@@ -842,292 +815,292 @@ msgstr ""
842
  "hátteréhez. Hagyd üresen, hogy átlátszó maradjon. A hexa színkódot <a href="
843
  "\"http://www.colorpicker.com/\" target=\"_blank\"> innen</a> tudod kilesni "
844
 
845
- #: ../admin/social_sharing.php:314 ../admin/social_sharing.php:622
846
  msgid "Border"
847
  msgstr ""
848
 
849
- #: ../admin/social_sharing.php:320 ../admin/social_sharing.php:325
850
- #: ../admin/social_sharing.php:627 ../admin/social_sharing.php:632
851
  #, fuzzy
852
  msgid "Border Width"
853
  msgstr "Shortcode és Widget"
854
 
855
- #: ../admin/social_sharing.php:321 ../admin/social_sharing.php:326
856
- #: ../admin/social_sharing.php:628 ../admin/social_sharing.php:633
857
  #, fuzzy
858
  msgid "Border Color"
859
  msgstr "Háttér Szín"
860
 
861
- #: ../admin/social_sharing.php:333 ../admin/social_sharing.php:640
862
  #, fuzzy
863
  msgid "Icon border"
864
  msgstr "icon Preview"
865
 
866
- #: ../admin/social_sharing.php:341 ../admin/social_sharing.php:648
867
  msgid "Counter Position"
868
  msgstr ""
869
 
870
- #: ../admin/social_sharing.php:341 ../admin/social_sharing.php:648
871
  msgid "(applies, if counter enabled)"
872
  msgstr ""
873
 
874
- #: ../admin/social_sharing.php:345 ../admin/social_sharing.php:652
875
- #: ../admin/social_sharing.php:935 ../admin/social_sharing.php:1340
876
  #: ../admin/like_buttons.php:183 ../admin/like_buttons.php:432
877
  #: ../inc/widget.php:446 ../inc/widget.php:758
878
  msgid "Left"
879
  msgstr "Bal"
880
 
881
- #: ../admin/social_sharing.php:347 ../admin/social_sharing.php:654
882
  msgid "Top"
883
  msgstr ""
884
 
885
- #: ../admin/social_sharing.php:349 ../admin/social_sharing.php:656
886
- #: ../admin/social_sharing.php:937 ../admin/social_sharing.php:1341
887
  #: ../admin/like_buttons.php:185 ../admin/like_buttons.php:433
888
  #: ../inc/widget.php:447 ../inc/widget.php:759
889
  msgid "Right"
890
  msgstr "Jobb"
891
 
892
- #: ../admin/social_sharing.php:351 ../admin/social_sharing.php:658
893
  msgid "Bottom"
894
  msgstr ""
895
 
896
- #: ../admin/social_sharing.php:353 ../admin/social_sharing.php:660
897
  msgid "Inner Left"
898
  msgstr ""
899
 
900
- #: ../admin/social_sharing.php:355 ../admin/social_sharing.php:662
901
  msgid "Inner Top"
902
  msgstr ""
903
 
904
- #: ../admin/social_sharing.php:357 ../admin/social_sharing.php:664
905
  #, fuzzy
906
  msgid "Inner Right"
907
  msgstr "Jobb"
908
 
909
- #: ../admin/social_sharing.php:359 ../admin/social_sharing.php:666
910
  msgid "Inner Bottom"
911
  msgstr ""
912
 
913
- #: ../admin/social_sharing.php:367 ../admin/social_sharing.php:674
914
  #, fuzzy
915
  msgid "Position of share counter"
916
  msgstr "Tartalom alatt"
917
 
918
- #: ../admin/social_sharing.php:377
919
  #, fuzzy
920
  msgid "Floating interface theme"
921
  msgstr "Megosztási Felület"
922
 
923
- #: ../admin/social_sharing.php:690
924
  #, fuzzy
925
  msgid "Standard Sharing Interface Options"
926
  msgstr "Vízszintes Megosztási Felület Beállítások"
927
 
928
- #: ../admin/social_sharing.php:696
929
  #, fuzzy
930
  msgid "Enable Standard sharing interface"
931
  msgstr "Vízszintes megosztási felület bekapcsolása"
932
 
933
- #: ../admin/social_sharing.php:706
934
  #, fuzzy
935
  msgid "Master control to enable standard sharing"
936
  msgstr "Központi beállítás a vízszintes megosztási felület bekapcsolásához"
937
 
938
- #: ../admin/social_sharing.php:716 ../admin/social_sharing.php:1144
939
  #: ../admin/like_buttons.php:86 ../admin/like_buttons.php:336
940
  msgid "Target Url"
941
  msgstr "Cél Url"
942
 
943
- #: ../admin/social_sharing.php:720 ../admin/social_sharing.php:1148
944
  #: ../admin/like_buttons.php:90 ../admin/like_buttons.php:340
945
  msgid "Url of the webpage where icons are located (default)"
946
  msgstr "Url, ahol a megosztás ikonok betöltődtek (alapértelmezett)"
947
 
948
- #: ../admin/social_sharing.php:722 ../admin/social_sharing.php:1150
949
  #: ../admin/like_buttons.php:92 ../admin/like_buttons.php:342
950
  msgid "Url of the homepage of your website"
951
  msgstr "A főoldalad Url-je"
952
 
953
- #: ../admin/social_sharing.php:724 ../admin/social_sharing.php:1152
954
  #: ../admin/like_buttons.php:94 ../admin/like_buttons.php:344
955
  msgid "Custom url"
956
  msgstr "Egyedi URL"
957
 
958
- #: ../admin/social_sharing.php:731 ../admin/social_sharing.php:1159
959
  msgid "Url to share"
960
  msgstr "Megosztás Url-je"
961
 
962
- #: ../admin/social_sharing.php:739 ../admin/social_login.php:532
963
  #: ../admin/social_login.php:927 ../admin/like_buttons.php:109
964
  #: ../inc/widget.php:945
965
  msgid "Title"
966
  msgstr "Cím"
967
 
968
- #: ../admin/social_sharing.php:749
969
  msgid "The text to display above the sharing interface"
970
  msgstr "Szöveg a megosztási felület fölött"
971
 
972
- #: ../admin/social_sharing.php:774 ../admin/social_sharing.php:1168
973
  #, fuzzy
974
  msgid "Instagram username"
975
  msgstr "Instagram"
976
 
977
- #: ../admin/social_sharing.php:784 ../admin/social_sharing.php:1178
978
  msgid ""
979
  "Username of the Instagram account you want to redirect users to, on clicking "
980
  "the icon"
981
  msgstr ""
982
 
983
- #: ../admin/social_sharing.php:794 ../admin/social_sharing.php:1188
984
  #, fuzzy
985
  msgid "HTML ID of container element of comment form"
986
  msgstr "HTML ID komment formájában konténer"
987
 
988
- #: ../admin/social_sharing.php:804 ../admin/social_sharing.php:1198
989
  msgid ""
990
  "HTML ID of the element you want to focus on the webpage, on click of Comment "
991
  "icon."
992
  msgstr ""
993
 
994
- #: ../admin/social_sharing.php:818 ../admin/social_sharing.php:1207
995
  msgid "Rearrange icons"
996
  msgstr "Ikonsorrend beállítás"
997
 
998
- #: ../admin/social_sharing.php:879 ../admin/social_sharing.php:1266
999
  msgid "Drag the icons to rearrange in desired order"
1000
  msgstr "Fogd meg az ikont a megfelelő sorrend beállításához"
1001
 
1002
- #: ../admin/social_sharing.php:887 ../admin/social_sharing.php:1274
1003
  #, fuzzy
1004
  msgid "Select Sharing Services"
1005
  msgstr "Válassz és rendezz sorba szolgáltatókat"
1006
 
1007
- #: ../admin/social_sharing.php:894 ../admin/social_sharing.php:1281
1008
  msgid "Select sharing services to show in social share bar"
1009
  msgstr ""
1010
 
1011
- #: ../admin/social_sharing.php:912 ../admin/social_sharing.php:1299
1012
  #, fuzzy
1013
  msgid "Search social network"
1014
  msgstr "elsődleges szociális háló"
1015
 
1016
- #: ../admin/social_sharing.php:931 ../admin/social_sharing.php:1336
1017
  #: ../admin/like_buttons.php:179 ../admin/like_buttons.php:428
1018
  msgid "Horizontal alignment"
1019
  msgstr "Függőleges igazítás"
1020
 
1021
- #: ../admin/social_sharing.php:936 ../admin/like_buttons.php:184
1022
  msgid "Center"
1023
  msgstr "Középen"
1024
 
1025
- #: ../admin/social_sharing.php:945 ../admin/social_sharing.php:1349
1026
  msgid "Horizontal alignment of the sharing interface"
1027
  msgstr "A megosztási felület függőleges igazítása"
1028
 
1029
- #: ../admin/social_sharing.php:953 ../admin/like_buttons.php:201
1030
  msgid "Position with respect to content"
1031
  msgstr "Elhelyezés a tartalomhoz képest"
1032
 
1033
- #: ../admin/social_sharing.php:957 ../admin/like_buttons.php:205
1034
  msgid "Top of the content"
1035
  msgstr "Tartalom felett"
1036
 
1037
- #: ../admin/social_sharing.php:959 ../admin/like_buttons.php:207
1038
  msgid "Bottom of the content"
1039
  msgstr "Tartalom alatt"
1040
 
1041
- #: ../admin/social_sharing.php:966
1042
  msgid "Specify position of the sharing interface with respect to the content"
1043
  msgstr ""
1044
  "Határozd meg a megosztási felület elhelyezésének helyét a tartalomhoz képest"
1045
 
1046
- #: ../admin/social_sharing.php:974 ../admin/social_sharing.php:1415
1047
  msgid "Placement"
1048
  msgstr ""
1049
 
1050
- #: ../admin/social_sharing.php:978 ../admin/social_sharing.php:1419
1051
  #: ../admin/social_login.php:866 ../admin/social_login.php:896
1052
  #: ../admin/like_buttons.php:226 ../admin/like_buttons.php:511
1053
  msgid "Homepage"
1054
  msgstr "Kezdő oldal"
1055
 
1056
- #: ../admin/social_sharing.php:980 ../admin/social_sharing.php:1421
1057
  #: ../admin/like_buttons.php:228 ../admin/like_buttons.php:513
1058
  msgid "Posts"
1059
  msgstr "Bejegyzések"
1060
 
1061
- #: ../admin/social_sharing.php:982 ../admin/social_sharing.php:1423
1062
  #: ../admin/like_buttons.php:230 ../admin/like_buttons.php:515
1063
  msgid "Pages"
1064
  msgstr "Oldalak"
1065
 
1066
- #: ../admin/social_sharing.php:984 ../admin/social_sharing.php:1425
1067
  #: ../admin/like_buttons.php:232 ../admin/like_buttons.php:517
1068
  msgid "Excerpts and Posts page"
1069
  msgstr ""
1070
 
1071
- #: ../admin/social_sharing.php:986 ../admin/social_sharing.php:1427
1072
  #: ../admin/like_buttons.php:234 ../admin/like_buttons.php:519
1073
  msgid "Category Archives"
1074
  msgstr "Kategória Archívum"
1075
 
1076
- #: ../admin/social_sharing.php:988 ../admin/social_sharing.php:1429
1077
  #: ../admin/like_buttons.php:236 ../admin/like_buttons.php:521
1078
  msgid "Archive Pages (Category, Tag, Author or Date based pages)"
1079
  msgstr "Archívum Pages (Kategória, Tag, Szerző vagy dátum alapján oldalak)"
1080
 
1081
- #: ../admin/social_sharing.php:1004 ../admin/like_buttons.php:252
1082
  #, fuzzy
1083
  msgid "BuddyPress activity"
1084
  msgstr "BuddyPress tevékenység és csoportok"
1085
 
1086
- #: ../admin/social_sharing.php:1006 ../admin/like_buttons.php:255
1087
  msgid "BuddyPress group (only at top of content)"
1088
  msgstr ""
1089
 
1090
- #: ../admin/social_sharing.php:1012 ../admin/social_sharing.php:1451
1091
  #: ../admin/like_buttons.php:262 ../admin/like_buttons.php:542
1092
  msgid "BBPress forum"
1093
  msgstr "BBPress fórum"
1094
 
1095
- #: ../admin/social_sharing.php:1015 ../admin/social_sharing.php:1454
1096
  #: ../admin/like_buttons.php:265 ../admin/like_buttons.php:545
1097
  msgid "BBPress topic"
1098
  msgstr "BBPress téma"
1099
 
1100
- #: ../admin/social_sharing.php:1018 ../admin/like_buttons.php:268
1101
  msgid "BBPress reply"
1102
  msgstr "BBPress válasz"
1103
 
1104
- #: ../admin/social_sharing.php:1025 ../admin/like_buttons.php:275
1105
  msgid "After individual product at WooCommerce Shop page"
1106
  msgstr "Miután az egyedi termék WooCommerce Shop oldal"
1107
 
1108
- #: ../admin/social_sharing.php:1028 ../admin/like_buttons.php:278
1109
  msgid "WooCommerce Product Page"
1110
  msgstr "WooCommerce Termékek"
1111
 
1112
- #: ../admin/social_sharing.php:1031 ../admin/like_buttons.php:281
1113
  msgid "WooCommerce Thankyou Page"
1114
  msgstr "WooCommerce Thankyou oldal"
1115
 
1116
- #: ../admin/social_sharing.php:1042
1117
  msgid "Specify the pages where you want to enable Sharing interface"
1118
  msgstr "Add meg az oldalakat, ahol megjelenjen a Közösségi Megosztási felület"
1119
 
1120
- #: ../admin/social_sharing.php:1050 ../admin/social_sharing.php:1472
1121
  msgid "Show share counts"
1122
  msgstr "Megosztás számok mutatása"
1123
 
1124
- #: ../admin/social_sharing.php:1055 ../admin/social_sharing.php:1477
1125
  msgid ""
1126
  "Share counts are supported for Facebook, Twitter, Linkedin, Buffer, Reddit, "
1127
  "Pinterest, Odnoklassniki, Fintel and Vkontakte"
1128
  msgstr ""
1129
 
1130
- #: ../admin/social_sharing.php:1056 ../admin/social_sharing.php:1478
1131
  #, php-format
1132
  msgid ""
1133
  "To show Twitter share count, you have to click \"Give me my Twitter counts "
@@ -1136,25 +1109,25 @@ msgid ""
1136
  "their website."
1137
  msgstr ""
1138
 
1139
- #: ../admin/social_sharing.php:1063 ../admin/social_sharing.php:1485
1140
  msgid "If enabled, share counts are displayed above sharing icons."
1141
  msgstr "Bekapcsolva a megosztások száma megjelenik a megosztás ikonok felett."
1142
 
1143
- #: ../admin/social_sharing.php:1072 ../admin/social_sharing.php:1494
1144
  #, fuzzy
1145
  msgid "Show total shares"
1146
  msgstr "Megosztás számok mutatása"
1147
 
1148
- #: ../admin/social_sharing.php:1082 ../admin/social_sharing.php:1504
1149
  #, fuzzy
1150
  msgid "If enabled, total shares will be displayed with sharing icons"
1151
  msgstr "Bekapcsolva a megosztások száma megjelenik a megosztás ikonok felett."
1152
 
1153
- #: ../admin/social_sharing.php:1091 ../admin/social_sharing.php:1513
1154
  msgid "Enable 'More' icon"
1155
  msgstr "'Még több' ikon bekapcsolása"
1156
 
1157
- #: ../admin/social_sharing.php:1101 ../admin/social_sharing.php:1523
1158
  msgid ""
1159
  "If enabled, \"More\" icon will be displayed after selected sharing icons "
1160
  "which shows additional sharing networks in popup"
@@ -1162,23 +1135,23 @@ msgstr ""
1162
  "Ha engedélyezve van, \"More \" ikon jelenik meg, miután a kiválasztott "
1163
  "megosztás ikonok ami azt mutatja, további fájlcserélő hálózatok popup"
1164
 
1165
- #: ../admin/social_sharing.php:1118
1166
  #, fuzzy
1167
  msgid "Floating Sharing Interface Options"
1168
  msgstr "Függőleges (lebegő) Megosztási Felület Beállítások"
1169
 
1170
- #: ../admin/social_sharing.php:1124
1171
  #, fuzzy
1172
  msgid "Enable Floating sharing interface"
1173
  msgstr "Függőleges (lebegő) megosztási felület bekapcsolása"
1174
 
1175
- #: ../admin/social_sharing.php:1134
1176
  #, fuzzy
1177
  msgid "Master control to enable floating sharing widget"
1178
  msgstr ""
1179
  "Központi beállítás a függőleges (lebegő) megosztási widget bekapcsolásához"
1180
 
1181
- #: ../admin/social_sharing.php:1328
1182
  msgid ""
1183
  "Specify the color or hex code (example #cc78e0) for the background of "
1184
  "vertical sharing bar. Leave empty for transparent. You can get the hex code "
@@ -1189,11 +1162,11 @@ msgstr ""
1189
  "hátteréhez. Hagyd üresen, hogy átlátszó maradjon. A hexa színkódot <a href="
1190
  "\"http://www.colorpicker.com/\" target=\"_blank\"> innen</a> tudod kilesni "
1191
 
1192
- #: ../admin/social_sharing.php:1358 ../admin/like_buttons.php:450
1193
  msgid "Left offset"
1194
  msgstr "Bal margó"
1195
 
1196
- #: ../admin/social_sharing.php:1368
1197
  msgid ""
1198
  "Specify a number. Increase in number will shift sharing interface towards "
1199
  "right and decrease will shift it towards left. Number can be negative too."
@@ -1201,11 +1174,11 @@ msgstr ""
1201
  "Adj meg egy számot. A nagyobb szám jobbra tolja el a megosztási felületet. "
1202
  "Megadhatsz negatív értéket is."
1203
 
1204
- #: ../admin/social_sharing.php:1378 ../admin/like_buttons.php:470
1205
  msgid "Right offset"
1206
  msgstr "Jobb margó"
1207
 
1208
- #: ../admin/social_sharing.php:1388
1209
  msgid ""
1210
  "Specify a number. Increase in number will shift sharing interface towards "
1211
  "left and decrease will shift it towards right. Number can be negative too."
@@ -1213,56 +1186,56 @@ msgstr ""
1213
  "Adj meg egy számot. A nagyobb szám balra tolja el a megosztási felületet. "
1214
  "Megadhatsz negatív értéket is."
1215
 
1216
- #: ../admin/social_sharing.php:1397 ../admin/like_buttons.php:489
1217
  msgid "Top offset"
1218
  msgstr "Felső margó"
1219
 
1220
- #: ../admin/social_sharing.php:1407
1221
  msgid ""
1222
  "Specify a number. Increase in number will shift sharing interface towards "
1223
  "bottom and decrease will shift it towards top."
1224
  msgstr ""
1225
  "Adj meg egy számot. A nagyobb szám lefelé tolja el a megosztási felületet."
1226
 
1227
- #: ../admin/social_sharing.php:1443 ../admin/like_buttons.php:535
1228
  #, fuzzy
1229
  msgid "BuddyPress group"
1230
  msgstr "BuddyPress profil oldal"
1231
 
1232
- #: ../admin/social_sharing.php:1464
1233
  msgid "Specify the pages where you want to enable vertical Sharing interface"
1234
  msgstr "Add meg, melyik oldalakon jelenjen meg a Megosztási felület"
1235
 
1236
- #: ../admin/social_sharing.php:1531
1237
  #, fuzzy
1238
  msgid "Hide floating slider"
1239
  msgstr "Bejelentkezettek számára elrejtve:"
1240
 
1241
- #: ../admin/social_sharing.php:1541
1242
  msgid "Hides the slider arrow present below the floating share bar"
1243
  msgstr ""
1244
 
1245
- #: ../admin/social_sharing.php:1549
1246
  #, fuzzy
1247
  msgid "Vertical floating bar responsiveness"
1248
  msgstr "Függőleges (lebegő) Megosztási Felület Beállítások"
1249
 
1250
- #: ../admin/social_sharing.php:1552
1251
  #, php-format
1252
  msgid "Display vertical interface only when screen is wider than %s pixels"
1253
  msgstr ""
1254
 
1255
- #: ../admin/social_sharing.php:1559
1256
  msgid ""
1257
  "Display vertical interface only when screen is wider than the width "
1258
  "specified."
1259
  msgstr ""
1260
 
1261
- #: ../admin/social_sharing.php:1567
1262
  msgid "Horizontal floating bar responsiveness"
1263
  msgstr ""
1264
 
1265
- #: ../admin/social_sharing.php:1570
1266
  #, fuzzy, php-format
1267
  msgid ""
1268
  "Stick vertical floating interface horizontally at bottom only when screen is "
@@ -1271,48 +1244,48 @@ msgstr ""
1271
  "Ha engedélyezett, függőleges megosztó felület nem fog megjelenni a mobil "
1272
  "eszközök"
1273
 
1274
- #: ../admin/social_sharing.php:1577
1275
  msgid ""
1276
  "Stick vertical floating interface horizontally at bottom only when screen is "
1277
  "narrower than the width specified"
1278
  msgstr ""
1279
 
1280
- #: ../admin/social_sharing.php:1587
1281
  #, fuzzy
1282
  msgid "Horizontal floating bar position"
1283
  msgstr "Vízszintes Megosztási Felület Beállítások"
1284
 
1285
- #: ../admin/social_sharing.php:1590
1286
  #, php-format
1287
  msgid "%s pixels from %s"
1288
  msgstr ""
1289
 
1290
- #: ../admin/social_sharing.php:1591
1291
  msgid "Auto-adjust according to screen width (responsive)"
1292
  msgstr ""
1293
 
1294
- #: ../admin/social_sharing.php:1598
1295
  msgid "Alignment of horizontal floating interface. Number can be negative too."
1296
  msgstr ""
1297
 
1298
- #: ../admin/social_sharing.php:1618
1299
  #, fuzzy
1300
  msgid "Facebook Share Count"
1301
  msgstr "Comentarios Facebook"
1302
 
1303
- #: ../admin/social_sharing.php:1622
1304
  msgid "Note"
1305
  msgstr ""
1306
 
1307
- #: ../admin/social_sharing.php:1622
1308
  msgid "Required only to track Facebook share count"
1309
  msgstr ""
1310
 
1311
- #: ../admin/social_sharing.php:1628 ../admin/social_login.php:161
1312
  msgid "Facebook App ID"
1313
  msgstr "Facebook App ID"
1314
 
1315
- #: ../admin/social_sharing.php:1638
1316
  #, fuzzy, php-format
1317
  msgid ""
1318
  "Required for Facebook share count to work. Please follow the documentation "
@@ -1322,12 +1295,12 @@ msgstr ""
1322
  "dokumentációt <a href=\"%s\" target=\"_blank\">ezen a linken</a> a Facebook "
1323
  "App ID beszerzéshez"
1324
 
1325
- #: ../admin/social_sharing.php:1646 ../admin/social_login.php:183
1326
  #, fuzzy
1327
  msgid "Facebook App Secret"
1328
  msgstr "Facebook App ID"
1329
 
1330
- #: ../admin/social_sharing.php:1656
1331
  #, fuzzy, php-format
1332
  msgid ""
1333
  "Required for Facebook share count to work. Please follow the documentation "
@@ -1337,32 +1310,32 @@ msgstr ""
1337
  "dokumentációt <a href=\"%s\" target=\"_blank\">ezen a linken</a> a Facebook "
1338
  "App ID beszerzéshez"
1339
 
1340
- #: ../admin/social_sharing.php:1665 ../admin/like_buttons.php:592
1341
  msgid "Url shortener"
1342
  msgstr "Url rövidítő"
1343
 
1344
- #: ../admin/social_sharing.php:1671
1345
  msgid "Use shortlinks already installed"
1346
  msgstr "Használja shortlinks már telepítve"
1347
 
1348
- #: ../admin/social_sharing.php:1681
1349
  msgid "Uses default short url permalinks without using any additional plugin"
1350
  msgstr ""
1351
 
1352
- #: ../admin/social_sharing.php:1689
1353
  msgid "Enable bit.ly url shortener for sharing"
1354
  msgstr "A bit.ly url rövidítő bekapcsolása a megosztáshoz"
1355
 
1356
- #: ../admin/social_sharing.php:1699 ../admin/like_buttons.php:626
1357
  msgid "Master control to enable bit.ly url shortening for sharing"
1358
  msgstr ""
1359
  "Központi beállítás a bit.ly url rövidítő megosztásokhoz való bekapcsolásához"
1360
 
1361
- #: ../admin/social_sharing.php:1707
1362
  msgid "bit.ly Login"
1363
  msgstr ""
1364
 
1365
- #: ../admin/social_sharing.php:1717 ../admin/social_sharing.php:1736
1366
  #, fuzzy, php-format
1367
  msgid "More details on how to get it <a href=\"%s\" target=\"_blank\">here</a>"
1368
  msgstr ""
@@ -1370,51 +1343,51 @@ msgstr ""
1370
  "dokumentációt <a href=\"%s\" target=\"_blank\">ezen a linken</a> a Twitter "
1371
  "API Key beszerzéshez"
1372
 
1373
- #: ../admin/social_sharing.php:1726 ../admin/like_buttons.php:653
1374
  msgid "bit.ly API Key"
1375
  msgstr "bit.ly API Key"
1376
 
1377
- #: ../admin/social_sharing.php:1745 ../admin/like_buttons.php:672
1378
  msgid "Clear Bitly Cache"
1379
  msgstr ""
1380
 
1381
- #: ../admin/social_sharing.php:1749 ../admin/like_buttons.php:676
1382
  #, fuzzy
1383
  msgid "ShortUrl cache cleared successfully."
1384
  msgstr "Fiók kapcsolása sikeres"
1385
 
1386
- #: ../admin/social_sharing.php:1756 ../admin/like_buttons.php:683
1387
  msgid ""
1388
  "Use this to delete short urls saved in database. Handy, if urls of your "
1389
  "website have been changed but short urls are still being generated for old "
1390
  "urls."
1391
  msgstr ""
1392
 
1393
- #: ../admin/social_sharing.php:1765
1394
  msgid "Share Count Cache"
1395
  msgstr ""
1396
 
1397
- #: ../admin/social_sharing.php:1771
1398
  msgid "Refresh Share Count cache every"
1399
  msgstr ""
1400
 
1401
- #: ../admin/social_sharing.php:1776
1402
  msgid "Second(s)"
1403
  msgstr ""
1404
 
1405
- #: ../admin/social_sharing.php:1777
1406
  msgid "Minute(s)"
1407
  msgstr ""
1408
 
1409
- #: ../admin/social_sharing.php:1778
1410
  msgid "Hour(s)"
1411
  msgstr ""
1412
 
1413
- #: ../admin/social_sharing.php:1779
1414
  msgid "Day(s)"
1415
  msgstr ""
1416
 
1417
- #: ../admin/social_sharing.php:1787
1418
  #, php-format
1419
  msgid ""
1420
  "Frequent cache refreshing results in slower loading of pages with share "
@@ -1422,26 +1395,26 @@ msgid ""
1422
  "target=\"_blank\">here</a>"
1423
  msgstr ""
1424
 
1425
- #: ../admin/social_sharing.php:1795
1426
  msgid "Clear Share Counts Cache"
1427
  msgstr ""
1428
 
1429
- #: ../admin/social_sharing.php:1799
1430
  #, fuzzy
1431
  msgid "Share Counts cache cleared successfully."
1432
  msgstr "Fiók kapcsolása sikeres"
1433
 
1434
- #: ../admin/social_sharing.php:1806
1435
  msgid "Use this to clear cached share counts"
1436
  msgstr ""
1437
 
1438
- #: ../admin/social_sharing.php:1815 ../admin/social_sharing.php:1821
1439
  #: ../admin/social_commenting.php:315 ../admin/like_buttons.php:692
1440
  #: ../admin/like_buttons.php:698
1441
  msgid "Language"
1442
  msgstr "Nyelv"
1443
 
1444
- #: ../admin/social_sharing.php:1831
1445
  #, fuzzy, php-format
1446
  msgid ""
1447
  "Enter the code of the language you want to use for like buttons. You can "
@@ -1452,16 +1425,16 @@ msgstr ""
1452
  "nyelvi kódot <a href=\"%s\" target=\"_blank\">itt</a> találod. Hagyd üresen "
1453
  "az alapértelmezett (angol) nyelv használatához"
1454
 
1455
- #: ../admin/social_sharing.php:1840
1456
  #, fuzzy
1457
  msgid "Username in sharing"
1458
  msgstr "Twitter felhasználónév a megosztásban"
1459
 
1460
- #: ../admin/social_sharing.php:1846
1461
  msgid "Twitter username (without @)"
1462
  msgstr "Twitter felhasználónév (@ nélkül)"
1463
 
1464
- #: ../admin/social_sharing.php:1856 ../admin/social_sharing.php:1875
1465
  msgid ""
1466
  "Provided username will be appended after the content being shared as \"via "
1467
  "@USERNAME\". Leave empty if you do not want any username in the content "
@@ -1470,37 +1443,37 @@ msgstr ""
1470
  "A megadott felhasználónév kerül a megosztás szövege után így \"via @USERNAME"
1471
  "\". Hagyd üresen, ha nem akarsz felhasználó név utánfűzést."
1472
 
1473
- #: ../admin/social_sharing.php:1865
1474
  #, fuzzy
1475
  msgid "Buffer username (without @)"
1476
  msgstr "Twitter felhasználónév (@ nélkül)"
1477
 
1478
- #: ../admin/social_sharing.php:1884
1479
  msgid "AMP"
1480
  msgstr ""
1481
 
1482
- #: ../admin/social_sharing.php:1890
1483
  #, fuzzy
1484
  msgid "Enable sharing on AMP pages"
1485
  msgstr "Bekapcsolás a belépés oldalon"
1486
 
1487
- #: ../admin/social_sharing.php:1900
1488
  msgid "Enable this option to render sharing icons on AMP pages"
1489
  msgstr ""
1490
 
1491
- #: ../admin/social_sharing.php:1919 ../admin/like_buttons.php:771
1492
  msgid "myCRED"
1493
  msgstr ""
1494
 
1495
- #: ../admin/social_sharing.php:1925 ../admin/like_buttons.php:777
1496
  msgid "Append myCRED referral ID to the urls being shared"
1497
  msgstr ""
1498
 
1499
- #: ../admin/social_sharing.php:1958
1500
  msgid "Facebook Sharing Troubleshooter"
1501
  msgstr "Facebook Megosztás Hibaelhárító"
1502
 
1503
- #: ../admin/social_sharing.php:1963
1504
  #, fuzzy
1505
  msgid ""
1506
  "If Facebook sharing is not working fine, click at the following link and "
@@ -1512,28 +1485,28 @@ msgstr ""
1512
  "és add meg a problémás url-t (ahol a Facebook megosztás nem működik "
1513
  "tökéletesen) a szöveges mezőben:"
1514
 
1515
- #: ../admin/social_sharing.php:1980 ../admin/social_commenting.php:399
1516
- #: ../admin/social_login.php:1259
1517
  msgid ""
1518
  "<strong>Note:</strong> Plugin will not work on local server. You should have "
1519
  "an online website for the plugin to function properly."
1520
  msgstr ""
1521
 
1522
- #: ../admin/social_sharing.php:1981
1523
  msgid ""
1524
  "Why is sharer not showing the correct image, title and other meta tags "
1525
  "content?"
1526
  msgstr ""
1527
 
1528
- #: ../admin/social_sharing.php:1982
1529
  msgid "Why is Facebook share count not working?"
1530
  msgstr ""
1531
 
1532
- #: ../admin/social_sharing.php:1985
1533
  msgid "Why is Instagram icon redirecting to Instagram website?"
1534
  msgstr ""
1535
 
1536
- #: ../admin/social_sharing.php:1986
1537
  msgid ""
1538
  "Instagram icon is there to send website visitors to the Instagram page of "
1539
  "your choice. You can save the desired Instagram handle in \"Instagram "
@@ -1541,46 +1514,46 @@ msgid ""
1541
  "sections."
1542
  msgstr ""
1543
 
1544
- #: ../admin/social_sharing.php:1989
1545
  #, fuzzy
1546
  msgid "How to customize the url being shared?"
1547
  msgstr "Megosztás számok mutatása:"
1548
 
1549
- #: ../admin/social_sharing.php:1990
1550
  msgid ""
1551
  "Why are Twitter shares not appearing even after registering at Twitcount.com?"
1552
  msgstr ""
1553
 
1554
- #: ../admin/social_sharing.php:1991
1555
  msgid ""
1556
  "It takes some time for their service to track the shares made on Twitter "
1557
  "from your website. If you still feel it's taking too long you can contact "
1558
  "their support directly from their website."
1559
  msgstr ""
1560
 
1561
- #: ../admin/social_sharing.php:1993 ../admin/like_buttons.php:814
1562
  msgid "How to Place Title and Social Share Icons in the Same Row?"
1563
  msgstr ""
1564
 
1565
- #: ../admin/social_sharing.php:1994
1566
  msgid ""
1567
  "How to restore Social Share counts lost after moving my website to SSL/Https?"
1568
  msgstr ""
1569
 
1570
- #: ../admin/social_sharing.php:1995 ../admin/social_commenting.php:402
1571
- #: ../admin/social_login.php:1266
1572
  msgid "Why is my browser blocking some features of the plugin?"
1573
  msgstr ""
1574
 
1575
- #: ../admin/social_sharing.php:1996
1576
  msgid "Why the color of share icons is not being updated?"
1577
  msgstr ""
1578
 
1579
- #: ../admin/social_sharing.php:1997
1580
  msgid "Why Facebook share counts are not appearing?"
1581
  msgstr ""
1582
 
1583
- #: ../admin/social_sharing.php:1998
1584
  msgid ""
1585
  "How can I show share counts of my website rather than of individual pages/"
1586
  "posts?"
@@ -1588,50 +1561,50 @@ msgstr ""
1588
  "Hogyan jeleníthetem meg a megosztások számát az oldal/bejegyzés oldalakon "
1589
  "kívül is?"
1590
 
1591
- #: ../admin/social_sharing.php:1999
1592
  msgid "How can I disable sharing on particular page/post?"
1593
  msgstr ""
1594
  "Hogyan kapcsolhatom ki a megosztást egy adott oldal/bejegyzés esetében?"
1595
 
1596
- #: ../admin/social_sharing.php:2000
1597
  msgid "How can I specify minimum sharing count for sharing networks?"
1598
  msgstr "Hogyan adhatok meg minimum megosztása száma a fájlcserélő hálózatokat?"
1599
 
1600
- #: ../admin/social_sharing.php:2001
1601
  msgid "How to share specific page?"
1602
  msgstr ""
1603
 
1604
- #: ../admin/social_sharing.php:2002
1605
  msgid "How to integrate Google Analytics with sharing?"
1606
  msgstr ""
1607
 
1608
- #: ../admin/social_sharing.php:2003
1609
  msgid "How to customize the look of total share counts?"
1610
  msgstr ""
1611
 
1612
- #: ../admin/social_sharing.php:2004
1613
  #, fuzzy
1614
  msgid "How to customize the look of individual share counts?"
1615
  msgstr "Megosztás számok mutatása:"
1616
 
1617
- #: ../admin/social_sharing.php:2005
1618
  #, fuzzy
1619
  msgid "How to show Whatsapp icon only on mobile devices?"
1620
  msgstr "Hide megosztása mobil eszközökön"
1621
 
1622
- #: ../admin/social_sharing.php:2006
1623
  msgid "How to hide arrow after floating sharing bar?"
1624
  msgstr ""
1625
 
1626
- #: ../admin/social_sharing.php:2007
1627
  msgid "Why is share count not getting updated?"
1628
  msgstr ""
1629
 
1630
- #: ../admin/social_sharing.php:2008 ../admin/like_buttons.php:812
1631
  msgid "Why is there so much space between like buttons?"
1632
  msgstr ""
1633
 
1634
- #: ../admin/social_sharing.php:2009 ../admin/like_buttons.php:813
1635
  msgid "Why are floating sharing/like buttons not appearing at homepage?"
1636
  msgstr ""
1637
 
@@ -1893,7 +1866,7 @@ msgstr "Alap Beállítások"
1893
  msgid "GDPR"
1894
  msgstr ""
1895
 
1896
- #: ../admin/social_login.php:44 ../admin/social_login.php:1194
1897
  msgid "XProfile Integration"
1898
  msgstr ""
1899
 
@@ -2638,51 +2611,68 @@ msgid "Text for the GDPR opt-in"
2638
  msgstr "Disqus Hozzászólás Bekapcsolása"
2639
 
2640
  #: ../admin/social_login.php:1135
2641
- msgid "Text to link to Privacy Policy page"
2642
  msgstr ""
2643
 
2644
  #: ../admin/social_login.php:1145
2645
- msgid "Word(s) in the opt-in text to be linked to privacy policy page"
2646
  msgstr ""
2647
 
2648
  #: ../admin/social_login.php:1153
2649
- msgid "Privacy Policy Url"
2650
  msgstr ""
2651
 
2652
  #: ../admin/social_login.php:1163
2653
  #, fuzzy
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2654
  msgid "Url of the privacy policy page of your website"
2655
  msgstr "A főoldalad Url-je"
2656
 
2657
- #: ../admin/social_login.php:1214 ../inc/widget.php:260 ../inc/widget.php:438
2658
  #: ../inc/widget.php:602 ../inc/widget.php:750
2659
  msgid "Select"
2660
  msgstr "Válassz"
2661
 
2662
- #: ../admin/social_login.php:1245
2663
  #, fuzzy
2664
  msgid "Social Login Shortcode & Widget"
2665
  msgstr "Shortcode és Widget"
2666
 
2667
- #: ../admin/social_login.php:1246
2668
  msgid "Social Linking Shortcode"
2669
  msgstr ""
2670
 
2671
- #: ../admin/social_login.php:1261
2672
  msgid "Why is social login not working?"
2673
  msgstr ""
2674
 
2675
- #: ../admin/social_login.php:1262
2676
  msgid ""
2677
  "Make sure that App ID and Secret (Client ID and Secret) keys you have saved, "
2678
  "belong to the same app"
2679
  msgstr ""
2680
 
2681
- #: ../admin/social_login.php:1264
2682
  msgid "Social Login not working with Varnish enabled"
2683
  msgstr ""
2684
 
2685
- #: ../admin/social_login.php:1265
2686
  msgid ""
2687
  "Why the user is not appearing logged in even after Social Login until the "
2688
  "webpage is refreshed manually?"
2
  msgstr ""
3
  "Project-Id-Version: Super Socializer\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2019-08-13 08:27+0530\n"
6
+ "PO-Revision-Date: 2019-08-13 08:27+0530\n"
7
  "Last-Translator: Heateor <hello@heateor.com>\n"
8
  "Language-Team: The Champ <lordofthechamps@gmail.com>\n"
9
  "Language: hu\n"
16
  "X-Poedit-KeywordsList: __;_e\n"
17
  "X-Poedit-SearchPath-0: ..\n"
18
 
19
+ #: ../super_socializer.php:425
20
  msgid "Problem fetching access token: "
21
  msgstr ""
22
 
23
+ #: ../super_socializer.php:429 ../super_socializer.php:443
24
  msgid "Facebook SDK returned an error: "
25
  msgstr ""
26
 
27
+ #: ../super_socializer.php:439
28
  msgid "Graph returned an error: "
29
  msgstr ""
30
 
31
+ #: ../super_socializer.php:605
32
  #, fuzzy
33
  msgid ""
34
  "cURL is not enabled at your website server. Please contact your website "
37
  "Ellenőrizd, hogy a cURL be van kapcsolva a szervereden. Lehetséges, hogy "
38
  "ehhez fel kell keresned a szerver adminisztrátorát, a tárhelyszolgáltatódat"
39
 
40
+ #: ../super_socializer.php:632
41
  #, fuzzy, php-format
42
  msgid ""
43
  "Enter exactly the following url in <strong>Website</strong> option in your "
47
  "<strong>Callback Url</strong> mezőbe a Twitter alkalmazásodban lásd 3. "
48
  "lépés %s)"
49
 
50
+ #: ../super_socializer.php:635
51
  #, fuzzy, php-format
52
  msgid ""
53
  "Enter exactly the following url in <strong>Callback URLs</strong> option in "
57
  "<strong>Callback Url</strong> mezőbe a Twitter alkalmazásodban lásd 3. "
58
  "lépés %s)"
59
 
60
+ #: ../super_socializer.php:638
61
  msgid ""
62
  "Make sure cURL is enabled at your website server. You may need to contact "
63
  "the server administrator of your website to verify this"
65
  "Ellenőrizd, hogy a cURL be van kapcsolva a szervereden. Lehetséges, hogy "
66
  "ehhez fel kell keresned a szerver adminisztrátorát, a tárhelyszolgáltatódat"
67
 
68
+ #: ../super_socializer.php:901 ../helper.php:976
 
 
 
 
 
 
69
  msgid "Please verify your email address to login."
70
  msgstr "Kérjük, ellenőrizd e-mail címed a belépéshez."
71
 
72
+ #: ../super_socializer.php:901
73
  msgid "Your email has been verified. Now you can login to your account"
74
  msgstr "E-mail címed ellenőrzése sikeres. Most már beléphetsz fiókodba"
75
 
76
+ #: ../super_socializer.php:905
77
  msgid "Notification"
78
  msgstr "Értesítés"
79
 
80
+ #: ../super_socializer.php:923 ../admin/social_login.php:805
81
  msgid "Email required"
82
  msgstr "E-mail cím szükséges"
83
 
84
+ #: ../super_socializer.php:926
85
  msgid "Please check your email inbox to complete the registration."
86
  msgstr "Kérjük, nézd meg e-mail címed a regisztráció befejezéséhez."
87
 
88
+ #: ../super_socializer.php:933 ../helper.php:508
89
  msgid "Enter your LiveJournal username"
90
  msgstr ""
91
 
92
+ #: ../super_socializer.php:1005
93
  msgid "Leave a reply"
94
  msgstr "Válaszolj"
95
 
96
+ #: ../super_socializer.php:1017 ../inc/social_sharing.php:241
97
  msgid "Shares"
98
  msgstr ""
99
 
100
+ #: ../super_socializer.php:1017 ../inc/social_sharing.php:241
101
  msgid "Share"
102
  msgstr ""
103
 
104
+ #: ../super_socializer.php:1017
105
  #, fuzzy
106
  msgid "Link copied."
107
  msgstr "LinkedIn"
108
 
109
+ #: ../super_socializer.php:1263
110
  #, fuzzy
111
  msgid "Super Socializer - General Options"
112
  msgstr "Super Socializer - Belépés"
113
 
114
+ #: ../super_socializer.php:1263 ../admin/general_options.php:15
115
  #: ../admin/social_commenting.php:47
116
  #, fuzzy
117
  msgid "General Options"
118
  msgstr "Megosztási beállítások"
119
 
120
+ #: ../super_socializer.php:1331 ../helper.php:898
121
  #, fuzzy
122
  msgid "Social Avatar"
123
  msgstr "Kis Avatar URL"
124
 
125
+ #: ../super_socializer.php:1334
126
  msgid "Small Avatar Url"
127
  msgstr "Kis Avatar URL"
128
 
129
+ #: ../super_socializer.php:1338
130
  #, fuzzy
131
  msgid "Large Avatar Url"
132
  msgstr "Cél Url"
133
 
134
+ #: ../super_socializer.php:1342 ../helper.php:901
135
  msgid ""
136
  "Do not fetch and update social avatar from my profile, next time I Social "
137
  "Login"
138
  msgstr ""
139
 
140
+ #: ../super_socializer.php:1346 ../helper.php:902
141
  msgid "Update social avatar, next time I Social Login"
142
  msgstr ""
143
 
144
+ #: ../super_socializer.php:1423
 
 
 
 
 
 
145
  msgid "Login with your Social ID"
146
  msgstr ""
147
 
148
+ #: ../super_socializer.php:1424
149
  msgid "Email you entered is already registered or invalid"
150
  msgstr "A megadott e-mail már regisztrálva van, vagy hibás"
151
 
152
+ #: ../super_socializer.php:1429
153
  msgid "Please enter a valid email address. You might be required to verify it"
154
  msgstr "Kérlek, érvényes e-mail címet adj meg. Ezt később ellenőrizhetjük"
155
 
156
+ #: ../super_socializer.php:1433 ../super_socializer.php:2122
157
  msgid "Link your social account to login to your account at this website"
158
  msgstr "Kapcsold össze közösségi fiókod, hogy belépj erre az oldalra"
159
 
160
+ #: ../super_socializer.php:1681
161
  msgid "Thanks for installing Super Socializer plugin"
162
  msgstr ""
163
 
164
+ #: ../super_socializer.php:1683
165
  msgid "Configure the Plugin"
166
  msgstr ""
167
 
168
+ #: ../super_socializer.php:1694
169
  msgid ""
170
  "Update \"Facebook Comments Moderation\" add-on for compatibility with "
171
  "current version of Super Socialzer"
172
  msgstr ""
173
 
174
+ #: ../super_socializer.php:1703
175
  msgid ""
176
  "Update \"Facebook Comments Notifier\" add-on for compatibility with current "
177
  "version of Super Socialzer"
178
  msgstr ""
179
 
180
+ #: ../super_socializer.php:1712
181
  msgid ""
182
  "Update \"Social Login Buttons\" add-on for compatibility with current "
183
  "version of Super Socialzer"
184
  msgstr ""
185
 
186
+ #: ../super_socializer.php:1721
187
  msgid ""
188
  "Update \"Social Share myCRED Integration\" add-on for maximum compatibility "
189
  "with current version of Super Socialzer"
190
  msgstr ""
191
 
192
+ #: ../super_socializer.php:1730
193
  msgid ""
194
  "Update \"Social Login myCRED Integration\" add-on for maximum compatibility "
195
  "with current version of Super Socialzer"
196
  msgstr ""
197
 
198
+ #: ../super_socializer.php:1737
199
  msgid ""
200
  "Update \"Social Login myCRED Integration\" add-on for compatibility with "
201
  "LiveJournal Login of Super Socialzer"
202
  msgstr ""
203
 
204
+ #: ../super_socializer.php:1748
205
  #, php-format
206
  msgid ""
207
  "To continue using Steam login save Steam API key <a href=\"%s\">here</a>"
208
  msgstr ""
209
 
210
+ #: ../super_socializer.php:1764
211
  #, php-format
212
  msgid ""
213
  "To continue using Social Login, save the secret keys <a href=\"%s\">here</a>"
214
  msgstr ""
215
 
216
+ #: ../super_socializer.php:1788
217
  #, php-format
218
  msgid ""
219
  "Add %s in \"Valid OAuth redirect URIs\" option in your Facebook app settings "
221
  "target=\"_blank\">here</a>"
222
  msgstr ""
223
 
224
+ #: ../super_socializer.php:1788 ../super_socializer.php:1813
225
+ #: ../super_socializer.php:1838 ../super_socializer.php:1863
226
+ #: ../super_socializer.php:1896 ../super_socializer.php:1924
227
+ #: ../super_socializer.php:1951 ../super_socializer.php:2028
228
  msgid "Okay"
229
  msgstr ""
230
 
231
+ #: ../super_socializer.php:1813
232
  #, php-format
233
  msgid ""
234
  "Add %s in \"Callback URLs\" option in your Twitter app settings for Twitter "
236
  "\">here</a>"
237
  msgstr ""
238
 
239
+ #: ../super_socializer.php:1838
240
  #, php-format
241
  msgid ""
242
  "Add %s in \"Authorized Redirect URLs\" option in your Linkedin app settings "
244
  "target=\"_blank\">here</a>"
245
  msgstr ""
246
 
247
+ #: ../super_socializer.php:1863
248
  #, php-format
249
  msgid ""
250
  "Add %s in \"Authorized redirect URIs\" option in your Google client settings "
252
  "target=\"_blank\">here</a>"
253
  msgstr ""
254
 
255
+ #: ../super_socializer.php:1874
256
  #, php-format
257
  msgid ""
258
  "Save the url of privacy policy page of your website <a href=\"%s\">here</a>"
259
  msgstr ""
260
 
261
+ #: ../super_socializer.php:1896
262
  #, php-format
263
  msgid ""
264
  "This plugin is GDPR compliant. You need to update the privacy policy of your "
266
  "\"%s\" target=\"_blank\">here</a>"
267
  msgstr ""
268
 
269
+ #: ../super_socializer.php:1924
270
  #, php-format
271
  msgid ""
272
  "Now plugin supports a new service Twitcount.com to show Twitter shares. To "
275
  "your website %s with them. No need to copy-paste any code from their website."
276
  msgstr ""
277
 
278
+ #: ../super_socializer.php:1951
279
  #, php-format
280
  msgid ""
281
  "Replace url saved in \"Callback URLs\" option in your Twitter app settings "
283
  "\"%s\" target=\"_blank\">here</a>"
284
  msgstr ""
285
 
286
+ #: ../super_socializer.php:1976
287
  #, php-format
288
  msgid ""
289
  "If you cannot get Linkedin login to work after updating the plugin, replace "
291
  "For more details, check step 6 <a href=\"%s\" target=\"_blank\">here</a>"
292
  msgstr ""
293
 
294
+ #: ../super_socializer.php:1976 ../super_socializer.php:2003
295
  msgid "Dismiss"
296
  msgstr ""
297
 
298
+ #: ../super_socializer.php:2002
299
  #, php-format
300
  msgid ""
301
  "Save Facebook App ID and Secret keys in \"Standard Interface\" and/or "
304
  "that, clear share counts cache from \"Miscellaneous\" section"
305
  msgstr ""
306
 
307
+ #: ../super_socializer.php:2028
308
  #, php-format
309
  msgid ""
310
  "Your website visitors will see a popup notification (only once) if their "
314
  "features\" option <a href=\"%s\">here</a>"
315
  msgstr ""
316
 
317
+ #: ../super_socializer.php:2198
318
+ msgid ""
319
+ "Your browser is blocking some features of this website. Please follow the "
320
+ "instructions at {support_url} to unblock these."
321
+ msgstr ""
322
+
323
  #: ../helper.php:8
324
  #, fuzzy
325
  msgid "Settings saved"
326
  msgstr "Beállítások"
327
 
328
+ #: ../helper.php:8 ../admin/social_sharing.php:49
329
  msgid "Dismiss this notice"
330
  msgstr "Utasítsa el ezt az értesítést"
331
 
423
  msgid "Large Avatar"
424
  msgstr "Cél Url"
425
 
426
+ #: ../helper.php:913 ../admin/general_options.php:93
427
+ #: ../admin/social_sharing.php:2027 ../admin/social_commenting.php:413
428
+ #: ../admin/social_login.php:1313 ../admin/like_buttons.php:826
429
  msgid "Save Changes"
430
  msgstr "Változások Mentése"
431
 
446
  msgid "Something bad happened"
447
  msgstr ""
448
 
449
+ #: ../admin/general_options.php:7 ../admin/general_options.php:97
450
+ #: ../admin/social_sharing.php:5 ../admin/social_sharing.php:2031
451
  #: ../admin/social_commenting.php:5 ../admin/social_commenting.php:417
452
+ #: ../admin/social_login.php:5 ../admin/social_login.php:1317
453
  #: ../admin/like_buttons.php:6 ../admin/like_buttons.php:830
454
  #, fuzzy, php-format
455
  msgid ""
495
  "azt."
496
 
497
  #: ../admin/general_options.php:75
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
498
  #, fuzzy
499
  msgid "Custom CSS"
500
  msgstr "Egyedi URL"
501
 
502
+ #: ../admin/general_options.php:85
503
  msgid "You can specify any additional CSS rules (without &lt;style&gt; tag)"
504
  msgstr ""
505
 
506
+ #: ../admin/general_options.php:108 ../admin/social_sharing.php:2038
507
+ #: ../admin/social_commenting.php:424 ../admin/social_login.php:1324
508
+ #: ../admin/like_buttons.php:837
509
  #, fuzzy
510
  msgid "Instagram Shoutout"
511
  msgstr "Instagram"
512
 
513
+ #: ../admin/general_options.php:110 ../admin/social_sharing.php:2040
514
+ #: ../admin/social_commenting.php:426 ../admin/social_login.php:1326
515
+ #: ../admin/like_buttons.php:839
516
  msgid ""
517
  "If you can send (to hello@heateor.com) how our plugin is helping your "
518
  "business, we can share it on Instagram. You can also send any relevant "
519
  "hashtags and people to mention in the Instagram post."
520
  msgstr ""
521
 
522
+ #: ../admin/general_options.php:111 ../admin/social_sharing.php:2041
523
+ #: ../admin/social_commenting.php:427 ../admin/social_login.php:1327
524
+ #: ../admin/like_buttons.php:840
525
  msgid ""
526
  "<b>Example</b> - Blah-Blah Online Coaching teaches various programming "
527
  "language courses through their website. They have emerged as one of the most "
530
  "time."
531
  msgstr ""
532
 
533
+ #: ../admin/general_options.php:112 ../admin/social_sharing.php:2042
534
+ #: ../admin/social_commenting.php:428 ../admin/social_login.php:1328
535
+ #: ../admin/like_buttons.php:841
536
  msgid ""
537
  "@blahblahonlinecoaching proudly use #SuperSocializer to enable social "
538
  "features at their website, such as - Social Login, Social Share and Social "
646
  msgid "Recover Social Share Counts Lost After Moving to SSL/Https"
647
  msgstr ""
648
 
649
+ #: ../admin/social_sharing.php:49 ../admin/social_sharing.php:1990
650
  msgid ""
651
  "Save Facebook App Id and Secret in the \"Miscellaneous\" section for "
652
  "Facebook share count to work"
653
  msgstr ""
654
 
655
+ #: ../admin/social_sharing.php:56
656
  msgid "Theme Selection"
657
  msgstr ""
658
 
659
+ #: ../admin/social_sharing.php:57 ../admin/like_buttons.php:41
660
  #, fuzzy
661
  msgid "Standard Interface"
662
  msgstr "Megosztási Felület"
663
 
664
+ #: ../admin/social_sharing.php:58 ../admin/like_buttons.php:42
665
  #, fuzzy
666
  msgid "Floating Interface"
667
  msgstr "Megosztási Felület"
668
 
669
+ #: ../admin/social_sharing.php:59 ../admin/like_buttons.php:43
670
  msgid "Miscellaneous"
671
  msgstr ""
672
 
673
+ #: ../admin/social_sharing.php:63 ../admin/like_buttons.php:47
674
  msgid "3rd Party Integration"
675
  msgstr ""
676
 
677
+ #: ../admin/social_sharing.php:67 ../admin/social_sharing.php:1952
678
+ #: ../admin/social_sharing.php:1954 ../admin/social_login.php:46
679
+ #: ../admin/social_login.php:1279 ../admin/like_buttons.php:51
680
  #: ../admin/like_buttons.php:797
681
  msgid "Shortcode & Widget"
682
  msgstr "Shortcode és Widget"
683
 
684
+ #: ../admin/social_sharing.php:68
685
  msgid "Troubleshooter"
686
  msgstr "Hibamegoldó"
687
 
688
+ #: ../admin/social_sharing.php:69 ../admin/social_sharing.php:1985
689
  #: ../admin/social_commenting.php:40 ../admin/social_commenting.php:397
690
+ #: ../admin/social_login.php:47 ../admin/social_login.php:1293
691
  #: ../admin/like_buttons.php:52 ../admin/like_buttons.php:810
692
  msgid "FAQ"
693
  msgstr "GYIK"
694
 
695
+ #: ../admin/social_sharing.php:77
696
  msgid "Standard interface theme"
697
  msgstr ""
698
 
699
+ #: ../admin/social_sharing.php:82 ../admin/social_sharing.php:389
700
  msgid "Icon Preview"
701
  msgstr "icon Preview"
702
 
703
+ #: ../admin/social_sharing.php:154 ../admin/social_sharing.php:462
704
  msgid ""
705
  "Do not forget to save the configuration after making changes by clicking the "
706
  "save button below"
708
  "Ne felejtsd el menteni a konfigurációs változtatások után, kattintson a "
709
  "Mentés gombra"
710
 
711
+ #: ../admin/social_sharing.php:161 ../admin/social_sharing.php:469
712
  msgid "Shape"
713
  msgstr "alak"
714
 
715
+ #: ../admin/social_sharing.php:165 ../admin/social_sharing.php:473
716
  #: ../inc/widget.php:951
717
  msgid "Round"
718
  msgstr "kerek"
719
 
720
+ #: ../admin/social_sharing.php:167 ../admin/social_sharing.php:475
721
  #: ../inc/widget.php:952
722
  msgid "Square"
723
  msgstr "szögletes"
724
 
725
+ #: ../admin/social_sharing.php:169 ../admin/social_sharing.php:477
726
  msgid "Rectangle"
727
  msgstr ""
728
 
729
+ #: ../admin/social_sharing.php:176 ../admin/social_sharing.php:484
730
  msgid "Shape of the sharing icons"
731
  msgstr "Megosztás ikonok formája"
732
 
733
+ #: ../admin/social_sharing.php:185 ../admin/social_sharing.php:493
734
  msgid "Size (in pixels)"
735
  msgstr "Méret (pixel)"
736
 
737
+ #: ../admin/social_sharing.php:201 ../admin/social_sharing.php:509
738
  msgid "Size of the sharing icons"
739
  msgstr "Megosztási ikonok mérete"
740
 
741
+ #: ../admin/social_sharing.php:211 ../admin/social_sharing.php:519
742
  #, fuzzy
743
  msgid "Width (in pixels)"
744
  msgstr "Méret (pixel)"
745
 
746
+ #: ../admin/social_sharing.php:227 ../admin/social_sharing.php:535
747
  #, fuzzy
748
  msgid "Width of the sharing icons"
749
  msgstr "Megosztási ikonok mérete"
750
 
751
+ #: ../admin/social_sharing.php:235 ../admin/social_sharing.php:543
752
  #, fuzzy
753
  msgid "Height (in pixels)"
754
  msgstr "Méret (pixel)"
755
 
756
+ #: ../admin/social_sharing.php:251 ../admin/social_sharing.php:559
757
  #, fuzzy
758
  msgid "Height of the sharing icons"
759
  msgstr "Megosztási ikonok mérete"
760
 
761
+ #: ../admin/social_sharing.php:261 ../admin/social_sharing.php:569
762
  #, fuzzy
763
  msgid "Border radius (in pixels)"
764
  msgstr "Méret (pixel)"
765
 
766
+ #: ../admin/social_sharing.php:271 ../admin/social_sharing.php:579
767
  msgid ""
768
  "Specify a value for rounded corners. More the value, more rounded will the "
769
  "corners be. Leave empty for sharp corners."
770
  msgstr ""
771
 
772
+ #: ../admin/social_sharing.php:280 ../admin/social_sharing.php:588
773
  #, fuzzy
774
  msgid "Logo Color"
775
  msgstr "Háttér Szín"
776
 
777
+ #: ../admin/social_sharing.php:284 ../admin/social_sharing.php:305
778
+ #: ../admin/social_sharing.php:325 ../admin/social_sharing.php:592
779
+ #: ../admin/social_sharing.php:613 ../admin/social_sharing.php:632
780
  msgid "Default"
781
  msgstr ""
782
 
783
+ #: ../admin/social_sharing.php:286 ../admin/social_sharing.php:306
784
+ #: ../admin/social_sharing.php:330 ../admin/social_sharing.php:594
785
+ #: ../admin/social_sharing.php:614 ../admin/social_sharing.php:637
786
  msgid "On Hover"
787
  msgstr ""
788
 
789
+ #: ../admin/social_sharing.php:294 ../admin/social_sharing.php:602
790
  #, fuzzy
791
  msgid ""
792
  "Specify the color or hex code (example #cc78e0) for the logo of icon. Leave "
797
  "hátteréhez. Hagyd üresen, hogy átlátszó maradjon. A hexa színkódot <a href="
798
  "\"http://www.colorpicker.com/\" target=\"_blank\"> innen</a> tudod kilesni"
799
 
800
+ #: ../admin/social_sharing.php:302 ../admin/social_sharing.php:610
801
+ #: ../admin/social_sharing.php:1325 ../admin/like_buttons.php:410
802
  #: ../inc/widget.php:460 ../inc/widget.php:772
803
  msgid "Background Color"
804
  msgstr "Háttér Szín"
805
 
806
+ #: ../admin/social_sharing.php:313 ../admin/social_sharing.php:621
807
  #, fuzzy
808
  msgid ""
809
  "Specify the color or hex code (example #cc78e0) for icon background. Save "
815
  "hátteréhez. Hagyd üresen, hogy átlátszó maradjon. A hexa színkódot <a href="
816
  "\"http://www.colorpicker.com/\" target=\"_blank\"> innen</a> tudod kilesni "
817
 
818
+ #: ../admin/social_sharing.php:321 ../admin/social_sharing.php:629
819
  msgid "Border"
820
  msgstr ""
821
 
822
+ #: ../admin/social_sharing.php:327 ../admin/social_sharing.php:332
823
+ #: ../admin/social_sharing.php:634 ../admin/social_sharing.php:639
824
  #, fuzzy
825
  msgid "Border Width"
826
  msgstr "Shortcode és Widget"
827
 
828
+ #: ../admin/social_sharing.php:328 ../admin/social_sharing.php:333
829
+ #: ../admin/social_sharing.php:635 ../admin/social_sharing.php:640
830
  #, fuzzy
831
  msgid "Border Color"
832
  msgstr "Háttér Szín"
833
 
834
+ #: ../admin/social_sharing.php:340 ../admin/social_sharing.php:647
835
  #, fuzzy
836
  msgid "Icon border"
837
  msgstr "icon Preview"
838
 
839
+ #: ../admin/social_sharing.php:348 ../admin/social_sharing.php:655
840
  msgid "Counter Position"
841
  msgstr ""
842
 
843
+ #: ../admin/social_sharing.php:348 ../admin/social_sharing.php:655
844
  msgid "(applies, if counter enabled)"
845
  msgstr ""
846
 
847
+ #: ../admin/social_sharing.php:352 ../admin/social_sharing.php:659
848
+ #: ../admin/social_sharing.php:942 ../admin/social_sharing.php:1347
849
  #: ../admin/like_buttons.php:183 ../admin/like_buttons.php:432
850
  #: ../inc/widget.php:446 ../inc/widget.php:758
851
  msgid "Left"
852
  msgstr "Bal"
853
 
854
+ #: ../admin/social_sharing.php:354 ../admin/social_sharing.php:661
855
  msgid "Top"
856
  msgstr ""
857
 
858
+ #: ../admin/social_sharing.php:356 ../admin/social_sharing.php:663
859
+ #: ../admin/social_sharing.php:944 ../admin/social_sharing.php:1348
860
  #: ../admin/like_buttons.php:185 ../admin/like_buttons.php:433
861
  #: ../inc/widget.php:447 ../inc/widget.php:759
862
  msgid "Right"
863
  msgstr "Jobb"
864
 
865
+ #: ../admin/social_sharing.php:358 ../admin/social_sharing.php:665
866
  msgid "Bottom"
867
  msgstr ""
868
 
869
+ #: ../admin/social_sharing.php:360 ../admin/social_sharing.php:667
870
  msgid "Inner Left"
871
  msgstr ""
872
 
873
+ #: ../admin/social_sharing.php:362 ../admin/social_sharing.php:669
874
  msgid "Inner Top"
875
  msgstr ""
876
 
877
+ #: ../admin/social_sharing.php:364 ../admin/social_sharing.php:671
878
  #, fuzzy
879
  msgid "Inner Right"
880
  msgstr "Jobb"
881
 
882
+ #: ../admin/social_sharing.php:366 ../admin/social_sharing.php:673
883
  msgid "Inner Bottom"
884
  msgstr ""
885
 
886
+ #: ../admin/social_sharing.php:374 ../admin/social_sharing.php:681
887
  #, fuzzy
888
  msgid "Position of share counter"
889
  msgstr "Tartalom alatt"
890
 
891
+ #: ../admin/social_sharing.php:384
892
  #, fuzzy
893
  msgid "Floating interface theme"
894
  msgstr "Megosztási Felület"
895
 
896
+ #: ../admin/social_sharing.php:697
897
  #, fuzzy
898
  msgid "Standard Sharing Interface Options"
899
  msgstr "Vízszintes Megosztási Felület Beállítások"
900
 
901
+ #: ../admin/social_sharing.php:703
902
  #, fuzzy
903
  msgid "Enable Standard sharing interface"
904
  msgstr "Vízszintes megosztási felület bekapcsolása"
905
 
906
+ #: ../admin/social_sharing.php:713
907
  #, fuzzy
908
  msgid "Master control to enable standard sharing"
909
  msgstr "Központi beállítás a vízszintes megosztási felület bekapcsolásához"
910
 
911
+ #: ../admin/social_sharing.php:723 ../admin/social_sharing.php:1151
912
  #: ../admin/like_buttons.php:86 ../admin/like_buttons.php:336
913
  msgid "Target Url"
914
  msgstr "Cél Url"
915
 
916
+ #: ../admin/social_sharing.php:727 ../admin/social_sharing.php:1155
917
  #: ../admin/like_buttons.php:90 ../admin/like_buttons.php:340
918
  msgid "Url of the webpage where icons are located (default)"
919
  msgstr "Url, ahol a megosztás ikonok betöltődtek (alapértelmezett)"
920
 
921
+ #: ../admin/social_sharing.php:729 ../admin/social_sharing.php:1157
922
  #: ../admin/like_buttons.php:92 ../admin/like_buttons.php:342
923
  msgid "Url of the homepage of your website"
924
  msgstr "A főoldalad Url-je"
925
 
926
+ #: ../admin/social_sharing.php:731 ../admin/social_sharing.php:1159
927
  #: ../admin/like_buttons.php:94 ../admin/like_buttons.php:344
928
  msgid "Custom url"
929
  msgstr "Egyedi URL"
930
 
931
+ #: ../admin/social_sharing.php:738 ../admin/social_sharing.php:1166
932
  msgid "Url to share"
933
  msgstr "Megosztás Url-je"
934
 
935
+ #: ../admin/social_sharing.php:746 ../admin/social_login.php:532
936
  #: ../admin/social_login.php:927 ../admin/like_buttons.php:109
937
  #: ../inc/widget.php:945
938
  msgid "Title"
939
  msgstr "Cím"
940
 
941
+ #: ../admin/social_sharing.php:756
942
  msgid "The text to display above the sharing interface"
943
  msgstr "Szöveg a megosztási felület fölött"
944
 
945
+ #: ../admin/social_sharing.php:781 ../admin/social_sharing.php:1175
946
  #, fuzzy
947
  msgid "Instagram username"
948
  msgstr "Instagram"
949
 
950
+ #: ../admin/social_sharing.php:791 ../admin/social_sharing.php:1185
951
  msgid ""
952
  "Username of the Instagram account you want to redirect users to, on clicking "
953
  "the icon"
954
  msgstr ""
955
 
956
+ #: ../admin/social_sharing.php:801 ../admin/social_sharing.php:1195
957
  #, fuzzy
958
  msgid "HTML ID of container element of comment form"
959
  msgstr "HTML ID komment formájában konténer"
960
 
961
+ #: ../admin/social_sharing.php:811 ../admin/social_sharing.php:1205
962
  msgid ""
963
  "HTML ID of the element you want to focus on the webpage, on click of Comment "
964
  "icon."
965
  msgstr ""
966
 
967
+ #: ../admin/social_sharing.php:825 ../admin/social_sharing.php:1214
968
  msgid "Rearrange icons"
969
  msgstr "Ikonsorrend beállítás"
970
 
971
+ #: ../admin/social_sharing.php:886 ../admin/social_sharing.php:1273
972
  msgid "Drag the icons to rearrange in desired order"
973
  msgstr "Fogd meg az ikont a megfelelő sorrend beállításához"
974
 
975
+ #: ../admin/social_sharing.php:894 ../admin/social_sharing.php:1281
976
  #, fuzzy
977
  msgid "Select Sharing Services"
978
  msgstr "Válassz és rendezz sorba szolgáltatókat"
979
 
980
+ #: ../admin/social_sharing.php:901 ../admin/social_sharing.php:1288
981
  msgid "Select sharing services to show in social share bar"
982
  msgstr ""
983
 
984
+ #: ../admin/social_sharing.php:919 ../admin/social_sharing.php:1306
985
  #, fuzzy
986
  msgid "Search social network"
987
  msgstr "elsődleges szociális háló"
988
 
989
+ #: ../admin/social_sharing.php:938 ../admin/social_sharing.php:1343
990
  #: ../admin/like_buttons.php:179 ../admin/like_buttons.php:428
991
  msgid "Horizontal alignment"
992
  msgstr "Függőleges igazítás"
993
 
994
+ #: ../admin/social_sharing.php:943 ../admin/like_buttons.php:184
995
  msgid "Center"
996
  msgstr "Középen"
997
 
998
+ #: ../admin/social_sharing.php:952 ../admin/social_sharing.php:1356
999
  msgid "Horizontal alignment of the sharing interface"
1000
  msgstr "A megosztási felület függőleges igazítása"
1001
 
1002
+ #: ../admin/social_sharing.php:960 ../admin/like_buttons.php:201
1003
  msgid "Position with respect to content"
1004
  msgstr "Elhelyezés a tartalomhoz képest"
1005
 
1006
+ #: ../admin/social_sharing.php:964 ../admin/like_buttons.php:205
1007
  msgid "Top of the content"
1008
  msgstr "Tartalom felett"
1009
 
1010
+ #: ../admin/social_sharing.php:966 ../admin/like_buttons.php:207
1011
  msgid "Bottom of the content"
1012
  msgstr "Tartalom alatt"
1013
 
1014
+ #: ../admin/social_sharing.php:973
1015
  msgid "Specify position of the sharing interface with respect to the content"
1016
  msgstr ""
1017
  "Határozd meg a megosztási felület elhelyezésének helyét a tartalomhoz képest"
1018
 
1019
+ #: ../admin/social_sharing.php:981 ../admin/social_sharing.php:1422
1020
  msgid "Placement"
1021
  msgstr ""
1022
 
1023
+ #: ../admin/social_sharing.php:985 ../admin/social_sharing.php:1426
1024
  #: ../admin/social_login.php:866 ../admin/social_login.php:896
1025
  #: ../admin/like_buttons.php:226 ../admin/like_buttons.php:511
1026
  msgid "Homepage"
1027
  msgstr "Kezdő oldal"
1028
 
1029
+ #: ../admin/social_sharing.php:987 ../admin/social_sharing.php:1428
1030
  #: ../admin/like_buttons.php:228 ../admin/like_buttons.php:513
1031
  msgid "Posts"
1032
  msgstr "Bejegyzések"
1033
 
1034
+ #: ../admin/social_sharing.php:989 ../admin/social_sharing.php:1430
1035
  #: ../admin/like_buttons.php:230 ../admin/like_buttons.php:515
1036
  msgid "Pages"
1037
  msgstr "Oldalak"
1038
 
1039
+ #: ../admin/social_sharing.php:991 ../admin/social_sharing.php:1432
1040
  #: ../admin/like_buttons.php:232 ../admin/like_buttons.php:517
1041
  msgid "Excerpts and Posts page"
1042
  msgstr ""
1043
 
1044
+ #: ../admin/social_sharing.php:993 ../admin/social_sharing.php:1434
1045
  #: ../admin/like_buttons.php:234 ../admin/like_buttons.php:519
1046
  msgid "Category Archives"
1047
  msgstr "Kategória Archívum"
1048
 
1049
+ #: ../admin/social_sharing.php:995 ../admin/social_sharing.php:1436
1050
  #: ../admin/like_buttons.php:236 ../admin/like_buttons.php:521
1051
  msgid "Archive Pages (Category, Tag, Author or Date based pages)"
1052
  msgstr "Archívum Pages (Kategória, Tag, Szerző vagy dátum alapján oldalak)"
1053
 
1054
+ #: ../admin/social_sharing.php:1011 ../admin/like_buttons.php:252
1055
  #, fuzzy
1056
  msgid "BuddyPress activity"
1057
  msgstr "BuddyPress tevékenység és csoportok"
1058
 
1059
+ #: ../admin/social_sharing.php:1013 ../admin/like_buttons.php:255
1060
  msgid "BuddyPress group (only at top of content)"
1061
  msgstr ""
1062
 
1063
+ #: ../admin/social_sharing.php:1019 ../admin/social_sharing.php:1458
1064
  #: ../admin/like_buttons.php:262 ../admin/like_buttons.php:542
1065
  msgid "BBPress forum"
1066
  msgstr "BBPress fórum"
1067
 
1068
+ #: ../admin/social_sharing.php:1022 ../admin/social_sharing.php:1461
1069
  #: ../admin/like_buttons.php:265 ../admin/like_buttons.php:545
1070
  msgid "BBPress topic"
1071
  msgstr "BBPress téma"
1072
 
1073
+ #: ../admin/social_sharing.php:1025 ../admin/like_buttons.php:268
1074
  msgid "BBPress reply"
1075
  msgstr "BBPress válasz"
1076
 
1077
+ #: ../admin/social_sharing.php:1032 ../admin/like_buttons.php:275
1078
  msgid "After individual product at WooCommerce Shop page"
1079
  msgstr "Miután az egyedi termék WooCommerce Shop oldal"
1080
 
1081
+ #: ../admin/social_sharing.php:1035 ../admin/like_buttons.php:278
1082
  msgid "WooCommerce Product Page"
1083
  msgstr "WooCommerce Termékek"
1084
 
1085
+ #: ../admin/social_sharing.php:1038 ../admin/like_buttons.php:281
1086
  msgid "WooCommerce Thankyou Page"
1087
  msgstr "WooCommerce Thankyou oldal"
1088
 
1089
+ #: ../admin/social_sharing.php:1049
1090
  msgid "Specify the pages where you want to enable Sharing interface"
1091
  msgstr "Add meg az oldalakat, ahol megjelenjen a Közösségi Megosztási felület"
1092
 
1093
+ #: ../admin/social_sharing.php:1057 ../admin/social_sharing.php:1479
1094
  msgid "Show share counts"
1095
  msgstr "Megosztás számok mutatása"
1096
 
1097
+ #: ../admin/social_sharing.php:1062 ../admin/social_sharing.php:1484
1098
  msgid ""
1099
  "Share counts are supported for Facebook, Twitter, Linkedin, Buffer, Reddit, "
1100
  "Pinterest, Odnoklassniki, Fintel and Vkontakte"
1101
  msgstr ""
1102
 
1103
+ #: ../admin/social_sharing.php:1063 ../admin/social_sharing.php:1485
1104
  #, php-format
1105
  msgid ""
1106
  "To show Twitter share count, you have to click \"Give me my Twitter counts "
1109
  "their website."
1110
  msgstr ""
1111
 
1112
+ #: ../admin/social_sharing.php:1070 ../admin/social_sharing.php:1492
1113
  msgid "If enabled, share counts are displayed above sharing icons."
1114
  msgstr "Bekapcsolva a megosztások száma megjelenik a megosztás ikonok felett."
1115
 
1116
+ #: ../admin/social_sharing.php:1079 ../admin/social_sharing.php:1501
1117
  #, fuzzy
1118
  msgid "Show total shares"
1119
  msgstr "Megosztás számok mutatása"
1120
 
1121
+ #: ../admin/social_sharing.php:1089 ../admin/social_sharing.php:1511
1122
  #, fuzzy
1123
  msgid "If enabled, total shares will be displayed with sharing icons"
1124
  msgstr "Bekapcsolva a megosztások száma megjelenik a megosztás ikonok felett."
1125
 
1126
+ #: ../admin/social_sharing.php:1098 ../admin/social_sharing.php:1520
1127
  msgid "Enable 'More' icon"
1128
  msgstr "'Még több' ikon bekapcsolása"
1129
 
1130
+ #: ../admin/social_sharing.php:1108 ../admin/social_sharing.php:1530
1131
  msgid ""
1132
  "If enabled, \"More\" icon will be displayed after selected sharing icons "
1133
  "which shows additional sharing networks in popup"
1135
  "Ha engedélyezve van, \"More \" ikon jelenik meg, miután a kiválasztott "
1136
  "megosztás ikonok ami azt mutatja, további fájlcserélő hálózatok popup"
1137
 
1138
+ #: ../admin/social_sharing.php:1125
1139
  #, fuzzy
1140
  msgid "Floating Sharing Interface Options"
1141
  msgstr "Függőleges (lebegő) Megosztási Felület Beállítások"
1142
 
1143
+ #: ../admin/social_sharing.php:1131
1144
  #, fuzzy
1145
  msgid "Enable Floating sharing interface"
1146
  msgstr "Függőleges (lebegő) megosztási felület bekapcsolása"
1147
 
1148
+ #: ../admin/social_sharing.php:1141
1149
  #, fuzzy
1150
  msgid "Master control to enable floating sharing widget"
1151
  msgstr ""
1152
  "Központi beállítás a függőleges (lebegő) megosztási widget bekapcsolásához"
1153
 
1154
+ #: ../admin/social_sharing.php:1335
1155
  msgid ""
1156
  "Specify the color or hex code (example #cc78e0) for the background of "
1157
  "vertical sharing bar. Leave empty for transparent. You can get the hex code "
1162
  "hátteréhez. Hagyd üresen, hogy átlátszó maradjon. A hexa színkódot <a href="
1163
  "\"http://www.colorpicker.com/\" target=\"_blank\"> innen</a> tudod kilesni "
1164
 
1165
+ #: ../admin/social_sharing.php:1365 ../admin/like_buttons.php:450
1166
  msgid "Left offset"
1167
  msgstr "Bal margó"
1168
 
1169
+ #: ../admin/social_sharing.php:1375
1170
  msgid ""
1171
  "Specify a number. Increase in number will shift sharing interface towards "
1172
  "right and decrease will shift it towards left. Number can be negative too."
1174
  "Adj meg egy számot. A nagyobb szám jobbra tolja el a megosztási felületet. "
1175
  "Megadhatsz negatív értéket is."
1176
 
1177
+ #: ../admin/social_sharing.php:1385 ../admin/like_buttons.php:470
1178
  msgid "Right offset"
1179
  msgstr "Jobb margó"
1180
 
1181
+ #: ../admin/social_sharing.php:1395
1182
  msgid ""
1183
  "Specify a number. Increase in number will shift sharing interface towards "
1184
  "left and decrease will shift it towards right. Number can be negative too."
1186
  "Adj meg egy számot. A nagyobb szám balra tolja el a megosztási felületet. "
1187
  "Megadhatsz negatív értéket is."
1188
 
1189
+ #: ../admin/social_sharing.php:1404 ../admin/like_buttons.php:489
1190
  msgid "Top offset"
1191
  msgstr "Felső margó"
1192
 
1193
+ #: ../admin/social_sharing.php:1414
1194
  msgid ""
1195
  "Specify a number. Increase in number will shift sharing interface towards "
1196
  "bottom and decrease will shift it towards top."
1197
  msgstr ""
1198
  "Adj meg egy számot. A nagyobb szám lefelé tolja el a megosztási felületet."
1199
 
1200
+ #: ../admin/social_sharing.php:1450 ../admin/like_buttons.php:535
1201
  #, fuzzy
1202
  msgid "BuddyPress group"
1203
  msgstr "BuddyPress profil oldal"
1204
 
1205
+ #: ../admin/social_sharing.php:1471
1206
  msgid "Specify the pages where you want to enable vertical Sharing interface"
1207
  msgstr "Add meg, melyik oldalakon jelenjen meg a Megosztási felület"
1208
 
1209
+ #: ../admin/social_sharing.php:1538
1210
  #, fuzzy
1211
  msgid "Hide floating slider"
1212
  msgstr "Bejelentkezettek számára elrejtve:"
1213
 
1214
+ #: ../admin/social_sharing.php:1548
1215
  msgid "Hides the slider arrow present below the floating share bar"
1216
  msgstr ""
1217
 
1218
+ #: ../admin/social_sharing.php:1556
1219
  #, fuzzy
1220
  msgid "Vertical floating bar responsiveness"
1221
  msgstr "Függőleges (lebegő) Megosztási Felület Beállítások"
1222
 
1223
+ #: ../admin/social_sharing.php:1559
1224
  #, php-format
1225
  msgid "Display vertical interface only when screen is wider than %s pixels"
1226
  msgstr ""
1227
 
1228
+ #: ../admin/social_sharing.php:1566
1229
  msgid ""
1230
  "Display vertical interface only when screen is wider than the width "
1231
  "specified."
1232
  msgstr ""
1233
 
1234
+ #: ../admin/social_sharing.php:1574
1235
  msgid "Horizontal floating bar responsiveness"
1236
  msgstr ""
1237
 
1238
+ #: ../admin/social_sharing.php:1577
1239
  #, fuzzy, php-format
1240
  msgid ""
1241
  "Stick vertical floating interface horizontally at bottom only when screen is "
1244
  "Ha engedélyezett, függőleges megosztó felület nem fog megjelenni a mobil "
1245
  "eszközök"
1246
 
1247
+ #: ../admin/social_sharing.php:1584
1248
  msgid ""
1249
  "Stick vertical floating interface horizontally at bottom only when screen is "
1250
  "narrower than the width specified"
1251
  msgstr ""
1252
 
1253
+ #: ../admin/social_sharing.php:1594
1254
  #, fuzzy
1255
  msgid "Horizontal floating bar position"
1256
  msgstr "Vízszintes Megosztási Felület Beállítások"
1257
 
1258
+ #: ../admin/social_sharing.php:1597
1259
  #, php-format
1260
  msgid "%s pixels from %s"
1261
  msgstr ""
1262
 
1263
+ #: ../admin/social_sharing.php:1598
1264
  msgid "Auto-adjust according to screen width (responsive)"
1265
  msgstr ""
1266
 
1267
+ #: ../admin/social_sharing.php:1605
1268
  msgid "Alignment of horizontal floating interface. Number can be negative too."
1269
  msgstr ""
1270
 
1271
+ #: ../admin/social_sharing.php:1625
1272
  #, fuzzy
1273
  msgid "Facebook Share Count"
1274
  msgstr "Comentarios Facebook"
1275
 
1276
+ #: ../admin/social_sharing.php:1629
1277
  msgid "Note"
1278
  msgstr ""
1279
 
1280
+ #: ../admin/social_sharing.php:1629
1281
  msgid "Required only to track Facebook share count"
1282
  msgstr ""
1283
 
1284
+ #: ../admin/social_sharing.php:1635 ../admin/social_login.php:161
1285
  msgid "Facebook App ID"
1286
  msgstr "Facebook App ID"
1287
 
1288
+ #: ../admin/social_sharing.php:1645
1289
  #, fuzzy, php-format
1290
  msgid ""
1291
  "Required for Facebook share count to work. Please follow the documentation "
1295
  "dokumentációt <a href=\"%s\" target=\"_blank\">ezen a linken</a> a Facebook "
1296
  "App ID beszerzéshez"
1297
 
1298
+ #: ../admin/social_sharing.php:1653 ../admin/social_login.php:183
1299
  #, fuzzy
1300
  msgid "Facebook App Secret"
1301
  msgstr "Facebook App ID"
1302
 
1303
+ #: ../admin/social_sharing.php:1663
1304
  #, fuzzy, php-format
1305
  msgid ""
1306
  "Required for Facebook share count to work. Please follow the documentation "
1310
  "dokumentációt <a href=\"%s\" target=\"_blank\">ezen a linken</a> a Facebook "
1311
  "App ID beszerzéshez"
1312
 
1313
+ #: ../admin/social_sharing.php:1672 ../admin/like_buttons.php:592
1314
  msgid "Url shortener"
1315
  msgstr "Url rövidítő"
1316
 
1317
+ #: ../admin/social_sharing.php:1678
1318
  msgid "Use shortlinks already installed"
1319
  msgstr "Használja shortlinks már telepítve"
1320
 
1321
+ #: ../admin/social_sharing.php:1688
1322
  msgid "Uses default short url permalinks without using any additional plugin"
1323
  msgstr ""
1324
 
1325
+ #: ../admin/social_sharing.php:1696
1326
  msgid "Enable bit.ly url shortener for sharing"
1327
  msgstr "A bit.ly url rövidítő bekapcsolása a megosztáshoz"
1328
 
1329
+ #: ../admin/social_sharing.php:1706 ../admin/like_buttons.php:626
1330
  msgid "Master control to enable bit.ly url shortening for sharing"
1331
  msgstr ""
1332
  "Központi beállítás a bit.ly url rövidítő megosztásokhoz való bekapcsolásához"
1333
 
1334
+ #: ../admin/social_sharing.php:1714
1335
  msgid "bit.ly Login"
1336
  msgstr ""
1337
 
1338
+ #: ../admin/social_sharing.php:1724 ../admin/social_sharing.php:1743
1339
  #, fuzzy, php-format
1340
  msgid "More details on how to get it <a href=\"%s\" target=\"_blank\">here</a>"
1341
  msgstr ""
1343
  "dokumentációt <a href=\"%s\" target=\"_blank\">ezen a linken</a> a Twitter "
1344
  "API Key beszerzéshez"
1345
 
1346
+ #: ../admin/social_sharing.php:1733 ../admin/like_buttons.php:653
1347
  msgid "bit.ly API Key"
1348
  msgstr "bit.ly API Key"
1349
 
1350
+ #: ../admin/social_sharing.php:1752 ../admin/like_buttons.php:672
1351
  msgid "Clear Bitly Cache"
1352
  msgstr ""
1353
 
1354
+ #: ../admin/social_sharing.php:1756 ../admin/like_buttons.php:676
1355
  #, fuzzy
1356
  msgid "ShortUrl cache cleared successfully."
1357
  msgstr "Fiók kapcsolása sikeres"
1358
 
1359
+ #: ../admin/social_sharing.php:1763 ../admin/like_buttons.php:683
1360
  msgid ""
1361
  "Use this to delete short urls saved in database. Handy, if urls of your "
1362
  "website have been changed but short urls are still being generated for old "
1363
  "urls."
1364
  msgstr ""
1365
 
1366
+ #: ../admin/social_sharing.php:1772
1367
  msgid "Share Count Cache"
1368
  msgstr ""
1369
 
1370
+ #: ../admin/social_sharing.php:1778
1371
  msgid "Refresh Share Count cache every"
1372
  msgstr ""
1373
 
1374
+ #: ../admin/social_sharing.php:1783
1375
  msgid "Second(s)"
1376
  msgstr ""
1377
 
1378
+ #: ../admin/social_sharing.php:1784
1379
  msgid "Minute(s)"
1380
  msgstr ""
1381
 
1382
+ #: ../admin/social_sharing.php:1785
1383
  msgid "Hour(s)"
1384
  msgstr ""
1385
 
1386
+ #: ../admin/social_sharing.php:1786
1387
  msgid "Day(s)"
1388
  msgstr ""
1389
 
1390
+ #: ../admin/social_sharing.php:1794
1391
  #, php-format
1392
  msgid ""
1393
  "Frequent cache refreshing results in slower loading of pages with share "
1395
  "target=\"_blank\">here</a>"
1396
  msgstr ""
1397
 
1398
+ #: ../admin/social_sharing.php:1802
1399
  msgid "Clear Share Counts Cache"
1400
  msgstr ""
1401
 
1402
+ #: ../admin/social_sharing.php:1806
1403
  #, fuzzy
1404
  msgid "Share Counts cache cleared successfully."
1405
  msgstr "Fiók kapcsolása sikeres"
1406
 
1407
+ #: ../admin/social_sharing.php:1813
1408
  msgid "Use this to clear cached share counts"
1409
  msgstr ""
1410
 
1411
+ #: ../admin/social_sharing.php:1822 ../admin/social_sharing.php:1828
1412
  #: ../admin/social_commenting.php:315 ../admin/like_buttons.php:692
1413
  #: ../admin/like_buttons.php:698
1414
  msgid "Language"
1415
  msgstr "Nyelv"
1416
 
1417
+ #: ../admin/social_sharing.php:1838
1418
  #, fuzzy, php-format
1419
  msgid ""
1420
  "Enter the code of the language you want to use for like buttons. You can "
1425
  "nyelvi kódot <a href=\"%s\" target=\"_blank\">itt</a> találod. Hagyd üresen "
1426
  "az alapértelmezett (angol) nyelv használatához"
1427
 
1428
+ #: ../admin/social_sharing.php:1847
1429
  #, fuzzy
1430
  msgid "Username in sharing"
1431
  msgstr "Twitter felhasználónév a megosztásban"
1432
 
1433
+ #: ../admin/social_sharing.php:1853
1434
  msgid "Twitter username (without @)"
1435
  msgstr "Twitter felhasználónév (@ nélkül)"
1436
 
1437
+ #: ../admin/social_sharing.php:1863 ../admin/social_sharing.php:1882
1438
  msgid ""
1439
  "Provided username will be appended after the content being shared as \"via "
1440
  "@USERNAME\". Leave empty if you do not want any username in the content "
1443
  "A megadott felhasználónév kerül a megosztás szövege után így \"via @USERNAME"
1444
  "\". Hagyd üresen, ha nem akarsz felhasználó név utánfűzést."
1445
 
1446
+ #: ../admin/social_sharing.php:1872
1447
  #, fuzzy
1448
  msgid "Buffer username (without @)"
1449
  msgstr "Twitter felhasználónév (@ nélkül)"
1450
 
1451
+ #: ../admin/social_sharing.php:1891
1452
  msgid "AMP"
1453
  msgstr ""
1454
 
1455
+ #: ../admin/social_sharing.php:1897
1456
  #, fuzzy
1457
  msgid "Enable sharing on AMP pages"
1458
  msgstr "Bekapcsolás a belépés oldalon"
1459
 
1460
+ #: ../admin/social_sharing.php:1907
1461
  msgid "Enable this option to render sharing icons on AMP pages"
1462
  msgstr ""
1463
 
1464
+ #: ../admin/social_sharing.php:1926 ../admin/like_buttons.php:771
1465
  msgid "myCRED"
1466
  msgstr ""
1467
 
1468
+ #: ../admin/social_sharing.php:1932 ../admin/like_buttons.php:777
1469
  msgid "Append myCRED referral ID to the urls being shared"
1470
  msgstr ""
1471
 
1472
+ #: ../admin/social_sharing.php:1965
1473
  msgid "Facebook Sharing Troubleshooter"
1474
  msgstr "Facebook Megosztás Hibaelhárító"
1475
 
1476
+ #: ../admin/social_sharing.php:1970
1477
  #, fuzzy
1478
  msgid ""
1479
  "If Facebook sharing is not working fine, click at the following link and "
1485
  "és add meg a problémás url-t (ahol a Facebook megosztás nem működik "
1486
  "tökéletesen) a szöveges mezőben:"
1487
 
1488
+ #: ../admin/social_sharing.php:1987 ../admin/social_commenting.php:399
1489
+ #: ../admin/social_login.php:1295
1490
  msgid ""
1491
  "<strong>Note:</strong> Plugin will not work on local server. You should have "
1492
  "an online website for the plugin to function properly."
1493
  msgstr ""
1494
 
1495
+ #: ../admin/social_sharing.php:1988
1496
  msgid ""
1497
  "Why is sharer not showing the correct image, title and other meta tags "
1498
  "content?"
1499
  msgstr ""
1500
 
1501
+ #: ../admin/social_sharing.php:1989
1502
  msgid "Why is Facebook share count not working?"
1503
  msgstr ""
1504
 
1505
+ #: ../admin/social_sharing.php:1992
1506
  msgid "Why is Instagram icon redirecting to Instagram website?"
1507
  msgstr ""
1508
 
1509
+ #: ../admin/social_sharing.php:1993
1510
  msgid ""
1511
  "Instagram icon is there to send website visitors to the Instagram page of "
1512
  "your choice. You can save the desired Instagram handle in \"Instagram "
1514
  "sections."
1515
  msgstr ""
1516
 
1517
+ #: ../admin/social_sharing.php:1996
1518
  #, fuzzy
1519
  msgid "How to customize the url being shared?"
1520
  msgstr "Megosztás számok mutatása:"
1521
 
1522
+ #: ../admin/social_sharing.php:1997
1523
  msgid ""
1524
  "Why are Twitter shares not appearing even after registering at Twitcount.com?"
1525
  msgstr ""
1526
 
1527
+ #: ../admin/social_sharing.php:1998
1528
  msgid ""
1529
  "It takes some time for their service to track the shares made on Twitter "
1530
  "from your website. If you still feel it's taking too long you can contact "
1531
  "their support directly from their website."
1532
  msgstr ""
1533
 
1534
+ #: ../admin/social_sharing.php:2000 ../admin/like_buttons.php:814
1535
  msgid "How to Place Title and Social Share Icons in the Same Row?"
1536
  msgstr ""
1537
 
1538
+ #: ../admin/social_sharing.php:2001
1539
  msgid ""
1540
  "How to restore Social Share counts lost after moving my website to SSL/Https?"
1541
  msgstr ""
1542
 
1543
+ #: ../admin/social_sharing.php:2002 ../admin/social_commenting.php:402
1544
+ #: ../admin/social_login.php:1302
1545
  msgid "Why is my browser blocking some features of the plugin?"
1546
  msgstr ""
1547
 
1548
+ #: ../admin/social_sharing.php:2003
1549
  msgid "Why the color of share icons is not being updated?"
1550
  msgstr ""
1551
 
1552
+ #: ../admin/social_sharing.php:2004
1553
  msgid "Why Facebook share counts are not appearing?"
1554
  msgstr ""
1555
 
1556
+ #: ../admin/social_sharing.php:2005
1557
  msgid ""
1558
  "How can I show share counts of my website rather than of individual pages/"
1559
  "posts?"
1561
  "Hogyan jeleníthetem meg a megosztások számát az oldal/bejegyzés oldalakon "
1562
  "kívül is?"
1563
 
1564
+ #: ../admin/social_sharing.php:2006
1565
  msgid "How can I disable sharing on particular page/post?"
1566
  msgstr ""
1567
  "Hogyan kapcsolhatom ki a megosztást egy adott oldal/bejegyzés esetében?"
1568
 
1569
+ #: ../admin/social_sharing.php:2007
1570
  msgid "How can I specify minimum sharing count for sharing networks?"
1571
  msgstr "Hogyan adhatok meg minimum megosztása száma a fájlcserélő hálózatokat?"
1572
 
1573
+ #: ../admin/social_sharing.php:2008
1574
  msgid "How to share specific page?"
1575
  msgstr ""
1576
 
1577
+ #: ../admin/social_sharing.php:2009
1578
  msgid "How to integrate Google Analytics with sharing?"
1579
  msgstr ""
1580
 
1581
+ #: ../admin/social_sharing.php:2010
1582
  msgid "How to customize the look of total share counts?"
1583
  msgstr ""
1584
 
1585
+ #: ../admin/social_sharing.php:2011
1586
  #, fuzzy
1587
  msgid "How to customize the look of individual share counts?"
1588
  msgstr "Megosztás számok mutatása:"
1589
 
1590
+ #: ../admin/social_sharing.php:2012
1591
  #, fuzzy
1592
  msgid "How to show Whatsapp icon only on mobile devices?"
1593
  msgstr "Hide megosztása mobil eszközökön"
1594
 
1595
+ #: ../admin/social_sharing.php:2013
1596
  msgid "How to hide arrow after floating sharing bar?"
1597
  msgstr ""
1598
 
1599
+ #: ../admin/social_sharing.php:2014
1600
  msgid "Why is share count not getting updated?"
1601
  msgstr ""
1602
 
1603
+ #: ../admin/social_sharing.php:2015 ../admin/like_buttons.php:812
1604
  msgid "Why is there so much space between like buttons?"
1605
  msgstr ""
1606
 
1607
+ #: ../admin/social_sharing.php:2016 ../admin/like_buttons.php:813
1608
  msgid "Why are floating sharing/like buttons not appearing at homepage?"
1609
  msgstr ""
1610
 
1866
  msgid "GDPR"
1867
  msgstr ""
1868
 
1869
+ #: ../admin/social_login.php:44 ../admin/social_login.php:1230
1870
  msgid "XProfile Integration"
1871
  msgstr ""
1872
 
2611
  msgstr "Disqus Hozzászólás Bekapcsolása"
2612
 
2613
  #: ../admin/social_login.php:1135
2614
+ msgid "Text to link to Terms-Conditions page"
2615
  msgstr ""
2616
 
2617
  #: ../admin/social_login.php:1145
2618
+ msgid "Word(s) in the opt-in text to be linked to terms-conditions page"
2619
  msgstr ""
2620
 
2621
  #: ../admin/social_login.php:1153
2622
+ msgid "Terms-Conditions Url"
2623
  msgstr ""
2624
 
2625
  #: ../admin/social_login.php:1163
2626
  #, fuzzy
2627
+ msgid "Url of the terms-conditions page of your website"
2628
+ msgstr "A főoldalad Url-je"
2629
+
2630
+ #: ../admin/social_login.php:1171
2631
+ msgid "Text to link to Privacy Policy page"
2632
+ msgstr ""
2633
+
2634
+ #: ../admin/social_login.php:1181
2635
+ msgid "Word(s) in the opt-in text to be linked to privacy policy page"
2636
+ msgstr ""
2637
+
2638
+ #: ../admin/social_login.php:1189
2639
+ msgid "Privacy Policy Url"
2640
+ msgstr ""
2641
+
2642
+ #: ../admin/social_login.php:1199
2643
+ #, fuzzy
2644
  msgid "Url of the privacy policy page of your website"
2645
  msgstr "A főoldalad Url-je"
2646
 
2647
+ #: ../admin/social_login.php:1250 ../inc/widget.php:260 ../inc/widget.php:438
2648
  #: ../inc/widget.php:602 ../inc/widget.php:750
2649
  msgid "Select"
2650
  msgstr "Válassz"
2651
 
2652
+ #: ../admin/social_login.php:1281
2653
  #, fuzzy
2654
  msgid "Social Login Shortcode & Widget"
2655
  msgstr "Shortcode és Widget"
2656
 
2657
+ #: ../admin/social_login.php:1282
2658
  msgid "Social Linking Shortcode"
2659
  msgstr ""
2660
 
2661
+ #: ../admin/social_login.php:1297
2662
  msgid "Why is social login not working?"
2663
  msgstr ""
2664
 
2665
+ #: ../admin/social_login.php:1298
2666
  msgid ""
2667
  "Make sure that App ID and Secret (Client ID and Secret) keys you have saved, "
2668
  "belong to the same app"
2669
  msgstr ""
2670
 
2671
+ #: ../admin/social_login.php:1300
2672
  msgid "Social Login not working with Varnish enabled"
2673
  msgstr ""
2674
 
2675
+ #: ../admin/social_login.php:1301
2676
  msgid ""
2677
  "Why the user is not appearing logged in even after Social Login until the "
2678
  "webpage is refreshed manually?"
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: 2019-06-25 11:53+0530\n"
6
- "PO-Revision-Date: 2019-06-25 11:53+0530\n"
7
  "Last-Translator: Heateor <hello@heateor.com>\n"
8
  "Language-Team: Freedom's Gate <freedomsgate.tk@gmail.com>\n"
9
  "Language: it\n"
@@ -16,19 +16,19 @@ msgstr ""
16
  "X-Poedit-KeywordsList: __;_e\n"
17
  "X-Poedit-SearchPath-0: ..\n"
18
 
19
- #: ../super_socializer.php:430
20
  msgid "Problem fetching access token: "
21
  msgstr ""
22
 
23
- #: ../super_socializer.php:434 ../super_socializer.php:448
24
  msgid "Facebook SDK returned an error: "
25
  msgstr ""
26
 
27
- #: ../super_socializer.php:444
28
  msgid "Graph returned an error: "
29
  msgstr ""
30
 
31
- #: ../super_socializer.php:610
32
  #, fuzzy
33
  msgid ""
34
  "cURL is not enabled at your website server. Please contact your website "
@@ -37,7 +37,7 @@ msgstr ""
37
  "Assicurati che cURL sia abilitato sul server del tuo sito. Per verificare "
38
  "questo, potrebbe essere necessario contattare l'amministratore del server."
39
 
40
- #: ../super_socializer.php:637
41
  #, fuzzy, php-format
42
  msgid ""
43
  "Enter exactly the following url in <strong>Website</strong> option in your "
@@ -47,7 +47,7 @@ msgstr ""
47
  "e <strong>Callback URL </ strong> della tua applicazione Twitter (vedi punto "
48
  "3 %s)"
49
 
50
- #: ../super_socializer.php:640
51
  #, fuzzy, php-format
52
  msgid ""
53
  "Enter exactly the following url in <strong>Callback URLs</strong> option in "
@@ -57,7 +57,7 @@ msgstr ""
57
  "e <strong>Callback URL </ strong> della tua applicazione Twitter (vedi punto "
58
  "3 %s)"
59
 
60
- #: ../super_socializer.php:643
61
  msgid ""
62
  "Make sure cURL is enabled at your website server. You may need to contact "
63
  "the server administrator of your website to verify this"
@@ -65,79 +65,73 @@ msgstr ""
65
  "Assicurati che cURL sia abilitato sul server del tuo sito. Per verificare "
66
  "questo, potrebbe essere necessario contattare l'amministratore del server."
67
 
68
- #: ../super_socializer.php:644
69
- #, php-format
70
- msgid ""
71
- "Make sure that \"Enable Callback Locking\" option is disabled. See step 4 %s"
72
- msgstr ""
73
-
74
- #: ../super_socializer.php:907 ../helper.php:976
75
  msgid "Please verify your email address to login."
76
  msgstr "Per favore, per accedere verifica il tuo indirizzo e-mail."
77
 
78
- #: ../super_socializer.php:907
79
  msgid "Your email has been verified. Now you can login to your account"
80
  msgstr ""
81
  "Il tuo indirizzo e-mail é stato verificato, adesso puoi accedere al tuo "
82
  "account"
83
 
84
- #: ../super_socializer.php:911
85
  msgid "Notification"
86
  msgstr "Notifiche"
87
 
88
- #: ../super_socializer.php:929 ../admin/social_login.php:805
89
  msgid "Email required"
90
  msgstr "Email Obbligatoria"
91
 
92
- #: ../super_socializer.php:932
93
  msgid "Please check your email inbox to complete the registration."
94
  msgstr ""
95
  "Per favore, per completare la registrazione, controlla la tua casella di "
96
  "posta elettronica."
97
 
98
- #: ../super_socializer.php:939 ../helper.php:508
99
  msgid "Enter your LiveJournal username"
100
  msgstr ""
101
 
102
- #: ../super_socializer.php:1011
103
  msgid "Leave a reply"
104
  msgstr "Lascia un commento"
105
 
106
- #: ../super_socializer.php:1023 ../inc/social_sharing.php:241
107
  msgid "Shares"
108
  msgstr "Shares"
109
 
110
- #: ../super_socializer.php:1023 ../inc/social_sharing.php:241
111
  msgid "Share"
112
  msgstr "Share"
113
 
114
- #: ../super_socializer.php:1023
115
  #, fuzzy
116
  msgid "Link copied."
117
  msgstr "LinkedIn"
118
 
119
- #: ../super_socializer.php:1269
120
  msgid "Super Socializer - General Options"
121
  msgstr "Super Socializer - Opzioni"
122
 
123
- #: ../super_socializer.php:1269 ../admin/general_options.php:15
124
  #: ../admin/social_commenting.php:47
125
  msgid "General Options"
126
  msgstr "Opzioni Generali"
127
 
128
- #: ../super_socializer.php:1337 ../helper.php:898
129
  msgid "Social Avatar"
130
  msgstr "Social Avatar"
131
 
132
- #: ../super_socializer.php:1340
133
  msgid "Small Avatar Url"
134
  msgstr "Url Avatar Piccolo"
135
 
136
- #: ../super_socializer.php:1344
137
  msgid "Large Avatar Url"
138
  msgstr "URL Avatar Grande"
139
 
140
- #: ../super_socializer.php:1348 ../helper.php:901
141
  msgid ""
142
  "Do not fetch and update social avatar from my profile, next time I Social "
143
  "Login"
@@ -145,92 +139,86 @@ msgstr ""
145
  "La prossima volta che uso Social Login, non prendere e/o aggiornare il "
146
  "social avatar dal mio profilo."
147
 
148
- #: ../super_socializer.php:1352 ../helper.php:902
149
  msgid "Update social avatar, next time I Social Login"
150
  msgstr "La prossima volta che si usa Social Login, aggiorna il social avatar."
151
 
152
- #: ../super_socializer.php:1425 ../super_socializer.php:2197
153
- msgid ""
154
- "Your browser is blocking some features of this website. Please follow the "
155
- "instructions at {support_url} to unblock these."
156
- msgstr ""
157
-
158
- #: ../super_socializer.php:1431
159
  msgid "Login with your Social ID"
160
  msgstr "Login con il tuo ID Social"
161
 
162
- #: ../super_socializer.php:1432
163
  msgid "Email you entered is already registered or invalid"
164
  msgstr "La email inserita è già registrata o non è valida"
165
 
166
- #: ../super_socializer.php:1437
167
  msgid "Please enter a valid email address. You might be required to verify it"
168
  msgstr ""
169
  "Si prega di inserire un indirizzo email valido. Potrebbe esserne richiesta "
170
  "una verifica"
171
 
172
- #: ../super_socializer.php:1441 ../super_socializer.php:2121
173
  msgid "Link your social account to login to your account at this website"
174
  msgstr ""
175
  "Collega il tuo social account per accedere al tuo account su questo sito"
176
 
177
- #: ../super_socializer.php:1687
178
  msgid "Thanks for installing Super Socializer plugin"
179
  msgstr ""
180
 
181
- #: ../super_socializer.php:1689
182
  msgid "Configure the Plugin"
183
  msgstr ""
184
 
185
- #: ../super_socializer.php:1700
186
  msgid ""
187
  "Update \"Facebook Comments Moderation\" add-on for compatibility with "
188
  "current version of Super Socialzer"
189
  msgstr ""
190
 
191
- #: ../super_socializer.php:1709
192
  msgid ""
193
  "Update \"Facebook Comments Notifier\" add-on for compatibility with current "
194
  "version of Super Socialzer"
195
  msgstr ""
196
 
197
- #: ../super_socializer.php:1718
198
  msgid ""
199
  "Update \"Social Login Buttons\" add-on for compatibility with current "
200
  "version of Super Socialzer"
201
  msgstr ""
202
 
203
- #: ../super_socializer.php:1727
204
  msgid ""
205
  "Update \"Social Share myCRED Integration\" add-on for maximum compatibility "
206
  "with current version of Super Socialzer"
207
  msgstr ""
208
 
209
- #: ../super_socializer.php:1736
210
  msgid ""
211
  "Update \"Social Login myCRED Integration\" add-on for maximum compatibility "
212
  "with current version of Super Socialzer"
213
  msgstr ""
214
 
215
- #: ../super_socializer.php:1743
216
  msgid ""
217
  "Update \"Social Login myCRED Integration\" add-on for compatibility with "
218
  "LiveJournal Login of Super Socialzer"
219
  msgstr ""
220
 
221
- #: ../super_socializer.php:1754
222
  #, php-format
223
  msgid ""
224
  "To continue using Steam login save Steam API key <a href=\"%s\">here</a>"
225
  msgstr ""
226
 
227
- #: ../super_socializer.php:1770
228
  #, php-format
229
  msgid ""
230
  "To continue using Social Login, save the secret keys <a href=\"%s\">here</a>"
231
  msgstr ""
232
 
233
- #: ../super_socializer.php:1794
234
  #, php-format
235
  msgid ""
236
  "Add %s in \"Valid OAuth redirect URIs\" option in your Facebook app settings "
@@ -238,14 +226,14 @@ msgid ""
238
  "target=\"_blank\">here</a>"
239
  msgstr ""
240
 
241
- #: ../super_socializer.php:1794 ../super_socializer.php:1819
242
- #: ../super_socializer.php:1844 ../super_socializer.php:1869
243
- #: ../super_socializer.php:1902 ../super_socializer.php:1930
244
- #: ../super_socializer.php:1957 ../super_socializer.php:2034
245
  msgid "Okay"
246
  msgstr ""
247
 
248
- #: ../super_socializer.php:1819
249
  #, php-format
250
  msgid ""
251
  "Add %s in \"Callback URLs\" option in your Twitter app settings for Twitter "
@@ -253,7 +241,7 @@ msgid ""
253
  "\">here</a>"
254
  msgstr ""
255
 
256
- #: ../super_socializer.php:1844
257
  #, php-format
258
  msgid ""
259
  "Add %s in \"Authorized Redirect URLs\" option in your Linkedin app settings "
@@ -261,7 +249,7 @@ msgid ""
261
  "target=\"_blank\">here</a>"
262
  msgstr ""
263
 
264
- #: ../super_socializer.php:1869
265
  #, php-format
266
  msgid ""
267
  "Add %s in \"Authorized redirect URIs\" option in your Google client settings "
@@ -269,13 +257,13 @@ msgid ""
269
  "target=\"_blank\">here</a>"
270
  msgstr ""
271
 
272
- #: ../super_socializer.php:1880
273
  #, php-format
274
  msgid ""
275
  "Save the url of privacy policy page of your website <a href=\"%s\">here</a>"
276
  msgstr ""
277
 
278
- #: ../super_socializer.php:1902
279
  #, php-format
280
  msgid ""
281
  "This plugin is GDPR compliant. You need to update the privacy policy of your "
@@ -283,7 +271,7 @@ msgid ""
283
  "\"%s\" target=\"_blank\">here</a>"
284
  msgstr ""
285
 
286
- #: ../super_socializer.php:1930
287
  #, php-format
288
  msgid ""
289
  "Now plugin supports a new service Twitcount.com to show Twitter shares. To "
@@ -292,7 +280,7 @@ msgid ""
292
  "your website %s with them. No need to copy-paste any code from their website."
293
  msgstr ""
294
 
295
- #: ../super_socializer.php:1957
296
  #, php-format
297
  msgid ""
298
  "Replace url saved in \"Callback URLs\" option in your Twitter app settings "
@@ -300,7 +288,7 @@ msgid ""
300
  "\"%s\" target=\"_blank\">here</a>"
301
  msgstr ""
302
 
303
- #: ../super_socializer.php:1982
304
  #, php-format
305
  msgid ""
306
  "If you cannot get Linkedin login to work after updating the plugin, replace "
@@ -308,11 +296,11 @@ msgid ""
308
  "For more details, check step 6 <a href=\"%s\" target=\"_blank\">here</a>"
309
  msgstr ""
310
 
311
- #: ../super_socializer.php:1982 ../super_socializer.php:2009
312
  msgid "Dismiss"
313
  msgstr ""
314
 
315
- #: ../super_socializer.php:2008
316
  #, php-format
317
  msgid ""
318
  "Save Facebook App ID and Secret keys in \"Standard Interface\" and/or "
@@ -321,7 +309,7 @@ msgid ""
321
  "that, clear share counts cache from \"Miscellaneous\" section"
322
  msgstr ""
323
 
324
- #: ../super_socializer.php:2034
325
  #, php-format
326
  msgid ""
327
  "Your website visitors will see a popup notification (only once) if their "
@@ -331,11 +319,17 @@ msgid ""
331
  "features\" option <a href=\"%s\">here</a>"
332
  msgstr ""
333
 
 
 
 
 
 
 
334
  #: ../helper.php:8
335
  msgid "Settings saved"
336
  msgstr "Impostazioni salvate"
337
 
338
- #: ../helper.php:8 ../admin/social_sharing.php:42
339
  msgid "Dismiss this notice"
340
  msgstr "Rimuovi questo annuncio"
341
 
@@ -424,9 +418,9 @@ msgstr "Avatar Piccolo"
424
  msgid "Large Avatar"
425
  msgstr "Avatar Grande"
426
 
427
- #: ../helper.php:913 ../admin/general_options.php:132
428
- #: ../admin/social_sharing.php:2020 ../admin/social_commenting.php:413
429
- #: ../admin/social_login.php:1277 ../admin/like_buttons.php:826
430
  msgid "Save Changes"
431
  msgstr "Salva le modifiche"
432
 
@@ -447,10 +441,10 @@ msgstr ""
447
  msgid "Something bad happened"
448
  msgstr ""
449
 
450
- #: ../admin/general_options.php:7 ../admin/general_options.php:136
451
- #: ../admin/social_sharing.php:5 ../admin/social_sharing.php:2024
452
  #: ../admin/social_commenting.php:5 ../admin/social_commenting.php:417
453
- #: ../admin/social_login.php:5 ../admin/social_login.php:1281
454
  #: ../admin/like_buttons.php:6 ../admin/like_buttons.php:830
455
  #, fuzzy, php-format
456
  msgid ""
@@ -496,54 +490,33 @@ msgstr ""
496
  "dovranno riconfigurare di nuovo."
497
 
498
  #: ../admin/general_options.php:75
499
- msgid ""
500
- "Show popup notification to users if their browsers block the plugin features"
501
- msgstr ""
502
-
503
- #: ../admin/general_options.php:85
504
- msgid ""
505
- "If enabled, your website visitors will see a popup notification (only once) "
506
- "if their browsers block any of the features of the plugin so that they can "
507
- "change their browser settings to unblock these."
508
- msgstr ""
509
-
510
- #: ../admin/general_options.php:95
511
- msgid "Message to show in popup notification"
512
- msgstr ""
513
-
514
- #: ../admin/general_options.php:105
515
- msgid ""
516
- "Use {support_url} placeholder to show support documentation url in message"
517
- msgstr ""
518
-
519
- #: ../admin/general_options.php:114
520
  msgid "Custom CSS"
521
  msgstr "CSS personalizzato"
522
 
523
- #: ../admin/general_options.php:124
524
  msgid "You can specify any additional CSS rules (without &lt;style&gt; tag)"
525
  msgstr ""
526
  "È possibile specificare regole CSS aggiuntive (senza &lt;style&gt; tag)"
527
 
528
- #: ../admin/general_options.php:147 ../admin/social_sharing.php:2030
529
- #: ../admin/social_commenting.php:423 ../admin/social_login.php:1287
530
- #: ../admin/like_buttons.php:836
531
  #, fuzzy
532
  msgid "Instagram Shoutout"
533
  msgstr "Instagram"
534
 
535
- #: ../admin/general_options.php:149 ../admin/social_sharing.php:2032
536
- #: ../admin/social_commenting.php:425 ../admin/social_login.php:1289
537
- #: ../admin/like_buttons.php:838
538
  msgid ""
539
  "If you can send (to hello@heateor.com) how our plugin is helping your "
540
  "business, we can share it on Instagram. You can also send any relevant "
541
  "hashtags and people to mention in the Instagram post."
542
  msgstr ""
543
 
544
- #: ../admin/general_options.php:150 ../admin/social_sharing.php:2033
545
- #: ../admin/social_commenting.php:426 ../admin/social_login.php:1290
546
- #: ../admin/like_buttons.php:839
547
  msgid ""
548
  "<b>Example</b> - Blah-Blah Online Coaching teaches various programming "
549
  "language courses through their website. They have emerged as one of the most "
@@ -552,9 +525,9 @@ msgid ""
552
  "time."
553
  msgstr ""
554
 
555
- #: ../admin/general_options.php:151 ../admin/social_sharing.php:2034
556
- #: ../admin/social_commenting.php:427 ../admin/social_login.php:1291
557
- #: ../admin/like_buttons.php:840
558
  msgid ""
559
  "@blahblahonlinecoaching proudly use #SuperSocializer to enable social "
560
  "features at their website, such as - Social Login, Social Share and Social "
@@ -663,60 +636,60 @@ msgstr "Controllo Principale per abilitare Social Sharing"
663
  msgid "Recover Social Share Counts Lost After Moving to SSL/Https"
664
  msgstr ""
665
 
666
- #: ../admin/social_sharing.php:42 ../admin/social_sharing.php:1983
667
  msgid ""
668
  "Save Facebook App Id and Secret in the \"Miscellaneous\" section for "
669
  "Facebook share count to work"
670
  msgstr ""
671
 
672
- #: ../admin/social_sharing.php:49
673
  msgid "Theme Selection"
674
  msgstr "Tema"
675
 
676
- #: ../admin/social_sharing.php:50 ../admin/like_buttons.php:41
677
  msgid "Standard Interface"
678
  msgstr "Interfaccia Standard"
679
 
680
- #: ../admin/social_sharing.php:51 ../admin/like_buttons.php:42
681
  msgid "Floating Interface"
682
  msgstr "Interfaccia Floating"
683
 
684
- #: ../admin/social_sharing.php:52 ../admin/like_buttons.php:43
685
  msgid "Miscellaneous"
686
  msgstr "Miscellanea"
687
 
688
- #: ../admin/social_sharing.php:56 ../admin/like_buttons.php:47
689
  #, fuzzy
690
  msgid "3rd Party Integration"
691
  msgstr "XProfile Integration"
692
 
693
- #: ../admin/social_sharing.php:60 ../admin/social_sharing.php:1945
694
- #: ../admin/social_sharing.php:1947 ../admin/social_login.php:46
695
- #: ../admin/social_login.php:1243 ../admin/like_buttons.php:51
696
  #: ../admin/like_buttons.php:797
697
  msgid "Shortcode & Widget"
698
  msgstr "Shortcode & Widget"
699
 
700
- #: ../admin/social_sharing.php:61
701
  msgid "Troubleshooter"
702
  msgstr "Risoluzione dei problemi"
703
 
704
- #: ../admin/social_sharing.php:62 ../admin/social_sharing.php:1978
705
  #: ../admin/social_commenting.php:40 ../admin/social_commenting.php:397
706
- #: ../admin/social_login.php:47 ../admin/social_login.php:1257
707
  #: ../admin/like_buttons.php:52 ../admin/like_buttons.php:810
708
  msgid "FAQ"
709
  msgstr "FAQ"
710
 
711
- #: ../admin/social_sharing.php:70
712
  msgid "Standard interface theme"
713
  msgstr "Tema Interfaccia Standard"
714
 
715
- #: ../admin/social_sharing.php:75 ../admin/social_sharing.php:382
716
  msgid "Icon Preview"
717
  msgstr "Anteprima Icona"
718
 
719
- #: ../admin/social_sharing.php:147 ../admin/social_sharing.php:455
720
  msgid ""
721
  "Do not forget to save the configuration after making changes by clicking the "
722
  "save button below"
@@ -724,59 +697,59 @@ msgstr ""
724
  "Dopo aver apportato le modifiche, non dimenticate di salvare la "
725
  "configurazione, fare clic sul pulsante Salva in basso"
726
 
727
- #: ../admin/social_sharing.php:154 ../admin/social_sharing.php:462
728
  msgid "Shape"
729
  msgstr "Forma"
730
 
731
- #: ../admin/social_sharing.php:158 ../admin/social_sharing.php:466
732
  #: ../inc/widget.php:951
733
  msgid "Round"
734
  msgstr "Arrotondata"
735
 
736
- #: ../admin/social_sharing.php:160 ../admin/social_sharing.php:468
737
  #: ../inc/widget.php:952
738
  msgid "Square"
739
  msgstr "Quadrata"
740
 
741
- #: ../admin/social_sharing.php:162 ../admin/social_sharing.php:470
742
  msgid "Rectangle"
743
  msgstr "Rettangolare"
744
 
745
- #: ../admin/social_sharing.php:169 ../admin/social_sharing.php:477
746
  msgid "Shape of the sharing icons"
747
  msgstr "Forma delle icone"
748
 
749
- #: ../admin/social_sharing.php:178 ../admin/social_sharing.php:486
750
  msgid "Size (in pixels)"
751
  msgstr "Dimensioni (in pixel)"
752
 
753
- #: ../admin/social_sharing.php:194 ../admin/social_sharing.php:502
754
  msgid "Size of the sharing icons"
755
  msgstr "Dimensione delle icone"
756
 
757
- #: ../admin/social_sharing.php:204 ../admin/social_sharing.php:512
758
  msgid "Width (in pixels)"
759
  msgstr "Larghezza (in pixel)"
760
 
761
- #: ../admin/social_sharing.php:220 ../admin/social_sharing.php:528
762
  msgid "Width of the sharing icons"
763
  msgstr ""
764
  "Larghezza \n"
765
  "icone"
766
 
767
- #: ../admin/social_sharing.php:228 ../admin/social_sharing.php:536
768
  msgid "Height (in pixels)"
769
  msgstr "Altezza (in pixel)"
770
 
771
- #: ../admin/social_sharing.php:244 ../admin/social_sharing.php:552
772
  msgid "Height of the sharing icons"
773
  msgstr "Altezza delle icone"
774
 
775
- #: ../admin/social_sharing.php:254 ../admin/social_sharing.php:562
776
  msgid "Border radius (in pixels)"
777
  msgstr "Raggio Bordo (in pixel)"
778
 
779
- #: ../admin/social_sharing.php:264 ../admin/social_sharing.php:572
780
  msgid ""
781
  "Specify a value for rounded corners. More the value, more rounded will the "
782
  "corners be. Leave empty for sharp corners."
@@ -784,23 +757,23 @@ msgstr ""
784
  "Specifica un valore per gli angoli arrotondati. Più alto sarà il valore, più "
785
  "arrotondati saranno gli angoli. Lascia vuoto per avere spigoli netti."
786
 
787
- #: ../admin/social_sharing.php:273 ../admin/social_sharing.php:581
788
  msgid "Logo Color"
789
  msgstr "Colore Logo"
790
 
791
- #: ../admin/social_sharing.php:277 ../admin/social_sharing.php:298
792
- #: ../admin/social_sharing.php:318 ../admin/social_sharing.php:585
793
- #: ../admin/social_sharing.php:606 ../admin/social_sharing.php:625
794
  msgid "Default"
795
  msgstr "Predefinito"
796
 
797
- #: ../admin/social_sharing.php:279 ../admin/social_sharing.php:299
798
- #: ../admin/social_sharing.php:323 ../admin/social_sharing.php:587
799
- #: ../admin/social_sharing.php:607 ../admin/social_sharing.php:630
800
  msgid "On Hover"
801
  msgstr "Al Passaggio del Mouse"
802
 
803
- #: ../admin/social_sharing.php:287 ../admin/social_sharing.php:595
804
  msgid ""
805
  "Specify the color or hex code (example #cc78e0) for the logo of icon. Leave "
806
  "empty for default. You can get the hex code of the required color from <a "
@@ -811,13 +784,13 @@ msgstr ""
811
  "ottenere il codice hex da <a href=\"http://www.colorpicker.com/\" target="
812
  "\"_blank\">questo collegamento</a>"
813
 
814
- #: ../admin/social_sharing.php:295 ../admin/social_sharing.php:603
815
- #: ../admin/social_sharing.php:1318 ../admin/like_buttons.php:410
816
  #: ../inc/widget.php:460 ../inc/widget.php:772
817
  msgid "Background Color"
818
  msgstr "Colore Background"
819
 
820
- #: ../admin/social_sharing.php:306 ../admin/social_sharing.php:614
821
  msgid ""
822
  "Specify the color or hex code (example #cc78e0) for icon background. Save "
823
  "\"transparent\" for transparent background. Leave empty for default. You can "
@@ -830,129 +803,129 @@ msgstr ""
830
  "<a href=\"http://www.colorpicker.com/\" target=\"_blank\">questo "
831
  "collegamento</a>"
832
 
833
- #: ../admin/social_sharing.php:314 ../admin/social_sharing.php:622
834
  msgid "Border"
835
  msgstr "Bordo"
836
 
837
- #: ../admin/social_sharing.php:320 ../admin/social_sharing.php:325
838
- #: ../admin/social_sharing.php:627 ../admin/social_sharing.php:632
839
  msgid "Border Width"
840
  msgstr "Larghezza"
841
 
842
- #: ../admin/social_sharing.php:321 ../admin/social_sharing.php:326
843
- #: ../admin/social_sharing.php:628 ../admin/social_sharing.php:633
844
  msgid "Border Color"
845
  msgstr "Colore"
846
 
847
- #: ../admin/social_sharing.php:333 ../admin/social_sharing.php:640
848
  msgid "Icon border"
849
  msgstr "Bordo Icona"
850
 
851
- #: ../admin/social_sharing.php:341 ../admin/social_sharing.php:648
852
  msgid "Counter Position"
853
  msgstr "Posizione Counter"
854
 
855
- #: ../admin/social_sharing.php:341 ../admin/social_sharing.php:648
856
  msgid "(applies, if counter enabled)"
857
  msgstr "(Si applica, se il Counter è abilitato)"
858
 
859
- #: ../admin/social_sharing.php:345 ../admin/social_sharing.php:652
860
- #: ../admin/social_sharing.php:935 ../admin/social_sharing.php:1340
861
  #: ../admin/like_buttons.php:183 ../admin/like_buttons.php:432
862
  #: ../inc/widget.php:446 ../inc/widget.php:758
863
  msgid "Left"
864
  msgstr "Sinistra"
865
 
866
- #: ../admin/social_sharing.php:347 ../admin/social_sharing.php:654
867
  msgid "Top"
868
  msgstr "Top"
869
 
870
- #: ../admin/social_sharing.php:349 ../admin/social_sharing.php:656
871
- #: ../admin/social_sharing.php:937 ../admin/social_sharing.php:1341
872
  #: ../admin/like_buttons.php:185 ../admin/like_buttons.php:433
873
  #: ../inc/widget.php:447 ../inc/widget.php:759
874
  msgid "Right"
875
  msgstr "Destra"
876
 
877
- #: ../admin/social_sharing.php:351 ../admin/social_sharing.php:658
878
  msgid "Bottom"
879
  msgstr "Parte inferiore"
880
 
881
- #: ../admin/social_sharing.php:353 ../admin/social_sharing.php:660
882
  msgid "Inner Left"
883
  msgstr "Interno Sinistra"
884
 
885
- #: ../admin/social_sharing.php:355 ../admin/social_sharing.php:662
886
  msgid "Inner Top"
887
  msgstr "Interno Superiore"
888
 
889
- #: ../admin/social_sharing.php:357 ../admin/social_sharing.php:664
890
  msgid "Inner Right"
891
  msgstr "Interno Destra"
892
 
893
- #: ../admin/social_sharing.php:359 ../admin/social_sharing.php:666
894
  msgid "Inner Bottom"
895
  msgstr "Interno Fonfo"
896
 
897
- #: ../admin/social_sharing.php:367 ../admin/social_sharing.php:674
898
  msgid "Position of share counter"
899
  msgstr "Posizione dello share counter"
900
 
901
- #: ../admin/social_sharing.php:377
902
  msgid "Floating interface theme"
903
  msgstr "Tema Interfaccia Floating"
904
 
905
- #: ../admin/social_sharing.php:690
906
  msgid "Standard Sharing Interface Options"
907
  msgstr "Opzioni Interfaccia Sharing Standard"
908
 
909
- #: ../admin/social_sharing.php:696
910
  msgid "Enable Standard sharing interface"
911
  msgstr "Abilita interfaccia standard"
912
 
913
- #: ../admin/social_sharing.php:706
914
  msgid "Master control to enable standard sharing"
915
  msgstr "Controllo Principale per abilitare l'interfaccia standard"
916
 
917
- #: ../admin/social_sharing.php:716 ../admin/social_sharing.php:1144
918
  #: ../admin/like_buttons.php:86 ../admin/like_buttons.php:336
919
  msgid "Target Url"
920
  msgstr "URL di destinazione"
921
 
922
- #: ../admin/social_sharing.php:720 ../admin/social_sharing.php:1148
923
  #: ../admin/like_buttons.php:90 ../admin/like_buttons.php:340
924
  msgid "Url of the webpage where icons are located (default)"
925
  msgstr "URL della pagina web in cui si trovano le icone (predefinito)"
926
 
927
- #: ../admin/social_sharing.php:722 ../admin/social_sharing.php:1150
928
  #: ../admin/like_buttons.php:92 ../admin/like_buttons.php:342
929
  msgid "Url of the homepage of your website"
930
  msgstr "Url della homepage del tuo sito web"
931
 
932
- #: ../admin/social_sharing.php:724 ../admin/social_sharing.php:1152
933
  #: ../admin/like_buttons.php:94 ../admin/like_buttons.php:344
934
  msgid "Custom url"
935
  msgstr "Url personalizzata"
936
 
937
- #: ../admin/social_sharing.php:731 ../admin/social_sharing.php:1159
938
  msgid "Url to share"
939
  msgstr "Url da condividere"
940
 
941
- #: ../admin/social_sharing.php:739 ../admin/social_login.php:532
942
  #: ../admin/social_login.php:927 ../admin/like_buttons.php:109
943
  #: ../inc/widget.php:945
944
  msgid "Title"
945
  msgstr "Titolo"
946
 
947
- #: ../admin/social_sharing.php:749
948
  msgid "The text to display above the sharing interface"
949
  msgstr "Il testo da mostrare sopra l'interfaccia di sharing"
950
 
951
- #: ../admin/social_sharing.php:774 ../admin/social_sharing.php:1168
952
  msgid "Instagram username"
953
  msgstr "Username Instagram"
954
 
955
- #: ../admin/social_sharing.php:784 ../admin/social_sharing.php:1178
956
  msgid ""
957
  "Username of the Instagram account you want to redirect users to, on clicking "
958
  "the icon"
@@ -960,145 +933,145 @@ msgstr ""
960
  "Nome utente dell' account Instagram che si desidera reindirizzare agli "
961
  "utenti facendo clic sull'icona"
962
 
963
- #: ../admin/social_sharing.php:794 ../admin/social_sharing.php:1188
964
  #, fuzzy
965
  msgid "HTML ID of container element of comment form"
966
  msgstr "ID HTML del modulo dei commenti container"
967
 
968
- #: ../admin/social_sharing.php:804 ../admin/social_sharing.php:1198
969
  msgid ""
970
  "HTML ID of the element you want to focus on the webpage, on click of Comment "
971
  "icon."
972
  msgstr ""
973
 
974
- #: ../admin/social_sharing.php:818 ../admin/social_sharing.php:1207
975
  msgid "Rearrange icons"
976
  msgstr "Riorganizza le icone"
977
 
978
- #: ../admin/social_sharing.php:879 ../admin/social_sharing.php:1266
979
  msgid "Drag the icons to rearrange in desired order"
980
  msgstr "Trascina le icone per riordinare"
981
 
982
- #: ../admin/social_sharing.php:887 ../admin/social_sharing.php:1274
983
  msgid "Select Sharing Services"
984
  msgstr "Seleziona i Service"
985
 
986
- #: ../admin/social_sharing.php:894 ../admin/social_sharing.php:1281
987
  msgid "Select sharing services to show in social share bar"
988
  msgstr "Seleziona i servizi di sharing da mostrare"
989
 
990
- #: ../admin/social_sharing.php:912 ../admin/social_sharing.php:1299
991
  #, fuzzy
992
  msgid "Search social network"
993
  msgstr "come rete sociale primaria"
994
 
995
- #: ../admin/social_sharing.php:931 ../admin/social_sharing.php:1336
996
  #: ../admin/like_buttons.php:179 ../admin/like_buttons.php:428
997
  msgid "Horizontal alignment"
998
  msgstr "Allineamento orizzontale"
999
 
1000
- #: ../admin/social_sharing.php:936 ../admin/like_buttons.php:184
1001
  msgid "Center"
1002
  msgstr "centro"
1003
 
1004
- #: ../admin/social_sharing.php:945 ../admin/social_sharing.php:1349
1005
  msgid "Horizontal alignment of the sharing interface"
1006
  msgstr "Allineamento orizzontale della interfaccia sharing"
1007
 
1008
- #: ../admin/social_sharing.php:953 ../admin/like_buttons.php:201
1009
  msgid "Position with respect to content"
1010
  msgstr "Posizione"
1011
 
1012
- #: ../admin/social_sharing.php:957 ../admin/like_buttons.php:205
1013
  msgid "Top of the content"
1014
  msgstr "Parte superiore del contenuto"
1015
 
1016
- #: ../admin/social_sharing.php:959 ../admin/like_buttons.php:207
1017
  msgid "Bottom of the content"
1018
  msgstr "Parte inferiore del contenuto"
1019
 
1020
- #: ../admin/social_sharing.php:966
1021
  msgid "Specify position of the sharing interface with respect to the content"
1022
  msgstr "Specifica la posizione dell'interfaccia rispetto al contenuto"
1023
 
1024
- #: ../admin/social_sharing.php:974 ../admin/social_sharing.php:1415
1025
  msgid "Placement"
1026
  msgstr "Collocazione"
1027
 
1028
- #: ../admin/social_sharing.php:978 ../admin/social_sharing.php:1419
1029
  #: ../admin/social_login.php:866 ../admin/social_login.php:896
1030
  #: ../admin/like_buttons.php:226 ../admin/like_buttons.php:511
1031
  msgid "Homepage"
1032
  msgstr "Homepage"
1033
 
1034
- #: ../admin/social_sharing.php:980 ../admin/social_sharing.php:1421
1035
  #: ../admin/like_buttons.php:228 ../admin/like_buttons.php:513
1036
  msgid "Posts"
1037
  msgstr "Post"
1038
 
1039
- #: ../admin/social_sharing.php:982 ../admin/social_sharing.php:1423
1040
  #: ../admin/like_buttons.php:230 ../admin/like_buttons.php:515
1041
  msgid "Pages"
1042
  msgstr "Pagine"
1043
 
1044
- #: ../admin/social_sharing.php:984 ../admin/social_sharing.php:1425
1045
  #: ../admin/like_buttons.php:232 ../admin/like_buttons.php:517
1046
  msgid "Excerpts and Posts page"
1047
  msgstr "Pagine di Estratti ed Articoli"
1048
 
1049
- #: ../admin/social_sharing.php:986 ../admin/social_sharing.php:1427
1050
  #: ../admin/like_buttons.php:234 ../admin/like_buttons.php:519
1051
  msgid "Category Archives"
1052
  msgstr "Archivi di categorie"
1053
 
1054
- #: ../admin/social_sharing.php:988 ../admin/social_sharing.php:1429
1055
  #: ../admin/like_buttons.php:236 ../admin/like_buttons.php:521
1056
  msgid "Archive Pages (Category, Tag, Author or Date based pages)"
1057
  msgstr "Arch. Pagine (Categoria., Tag, Autore o Pagine basate su data)"
1058
 
1059
- #: ../admin/social_sharing.php:1004 ../admin/like_buttons.php:252
1060
  msgid "BuddyPress activity"
1061
  msgstr "Attività BuddyPress"
1062
 
1063
- #: ../admin/social_sharing.php:1006 ../admin/like_buttons.php:255
1064
  msgid "BuddyPress group (only at top of content)"
1065
  msgstr "BuddyPress group (solo nella parte superiore del contenuto)"
1066
 
1067
- #: ../admin/social_sharing.php:1012 ../admin/social_sharing.php:1451
1068
  #: ../admin/like_buttons.php:262 ../admin/like_buttons.php:542
1069
  msgid "BBPress forum"
1070
  msgstr "BBPress forum"
1071
 
1072
- #: ../admin/social_sharing.php:1015 ../admin/social_sharing.php:1454
1073
  #: ../admin/like_buttons.php:265 ../admin/like_buttons.php:545
1074
  msgid "BBPress topic"
1075
  msgstr "Argomento BBPress"
1076
 
1077
- #: ../admin/social_sharing.php:1018 ../admin/like_buttons.php:268
1078
  msgid "BBPress reply"
1079
  msgstr "Risposta BBPress"
1080
 
1081
- #: ../admin/social_sharing.php:1025 ../admin/like_buttons.php:275
1082
  msgid "After individual product at WooCommerce Shop page"
1083
  msgstr "Dopo il singolo prodotto nella pagina Shop WooCommerce"
1084
 
1085
- #: ../admin/social_sharing.php:1028 ../admin/like_buttons.php:278
1086
  msgid "WooCommerce Product Page"
1087
  msgstr "WooCommerce Pagina Prodotto"
1088
 
1089
- #: ../admin/social_sharing.php:1031 ../admin/like_buttons.php:281
1090
  msgid "WooCommerce Thankyou Page"
1091
  msgstr "WooCommerce Pagina Thankyou"
1092
 
1093
- #: ../admin/social_sharing.php:1042
1094
  msgid "Specify the pages where you want to enable Sharing interface"
1095
  msgstr "Specifica le pagine dove vuoi abilitare l'Interfaccia Sharing"
1096
 
1097
- #: ../admin/social_sharing.php:1050 ../admin/social_sharing.php:1472
1098
  msgid "Show share counts"
1099
  msgstr "Mostra quantità"
1100
 
1101
- #: ../admin/social_sharing.php:1055 ../admin/social_sharing.php:1477
1102
  #, fuzzy
1103
  msgid ""
1104
  "Share counts are supported for Facebook, Twitter, Linkedin, Buffer, Reddit, "
@@ -1107,7 +1080,7 @@ msgstr ""
1107
  "Share counts sono supportati per Facebook, Twitter, Linkedin, GooglePlus, "
1108
  "Delicious, Buffer, Reddit, Pinterest, Stumbleupon, Odnoklassniki e Vkontakte"
1109
 
1110
- #: ../admin/social_sharing.php:1056 ../admin/social_sharing.php:1478
1111
  #, php-format
1112
  msgid ""
1113
  "To show Twitter share count, you have to click \"Give me my Twitter counts "
@@ -1116,27 +1089,27 @@ msgid ""
1116
  "their website."
1117
  msgstr ""
1118
 
1119
- #: ../admin/social_sharing.php:1063 ../admin/social_sharing.php:1485
1120
  msgid "If enabled, share counts are displayed above sharing icons."
1121
  msgstr ""
1122
  "Se questa opzione è abilitata, la quantitá di condivisioni sará mostrato "
1123
  "sopra le icone condivise"
1124
 
1125
- #: ../admin/social_sharing.php:1072 ../admin/social_sharing.php:1494
1126
  msgid "Show total shares"
1127
  msgstr "Mostra totale"
1128
 
1129
- #: ../admin/social_sharing.php:1082 ../admin/social_sharing.php:1504
1130
  msgid "If enabled, total shares will be displayed with sharing icons"
1131
  msgstr ""
1132
  "Se questa opzione è abilitata, la quantitá di condivisioni sará mostrato con "
1133
  "le icone condivise"
1134
 
1135
- #: ../admin/social_sharing.php:1091 ../admin/social_sharing.php:1513
1136
  msgid "Enable 'More' icon"
1137
  msgstr "Abilita icona 'More'"
1138
 
1139
- #: ../admin/social_sharing.php:1101 ../admin/social_sharing.php:1523
1140
  msgid ""
1141
  "If enabled, \"More\" icon will be displayed after selected sharing icons "
1142
  "which shows additional sharing networks in popup"
@@ -1145,19 +1118,19 @@ msgstr ""
1145
  "icone sharing selezionate e mostrerà in un popup altri sharing networks "
1146
  "disponibili"
1147
 
1148
- #: ../admin/social_sharing.php:1118
1149
  msgid "Floating Sharing Interface Options"
1150
  msgstr "Opzioni"
1151
 
1152
- #: ../admin/social_sharing.php:1124
1153
  msgid "Enable Floating sharing interface"
1154
  msgstr "Abilita Interfaccia Floating"
1155
 
1156
- #: ../admin/social_sharing.php:1134
1157
  msgid "Master control to enable floating sharing widget"
1158
  msgstr "Controllo Principale per abilitare il floating sharing widget"
1159
 
1160
- #: ../admin/social_sharing.php:1328
1161
  msgid ""
1162
  "Specify the color or hex code (example #cc78e0) for the background of "
1163
  "vertical sharing bar. Leave empty for transparent. You can get the hex code "
@@ -1168,11 +1141,11 @@ msgstr ""
1168
  "Lascia in bianco per transparente. Puoi ottenere il codice hex da <a href="
1169
  "\"http://www.colorpicker.com/\" target=\"_blank\">questo collegamento</a>"
1170
 
1171
- #: ../admin/social_sharing.php:1358 ../admin/like_buttons.php:450
1172
  msgid "Left offset"
1173
  msgstr "Left offset"
1174
 
1175
- #: ../admin/social_sharing.php:1368
1176
  msgid ""
1177
  "Specify a number. Increase in number will shift sharing interface towards "
1178
  "right and decrease will shift it towards left. Number can be negative too."
@@ -1181,11 +1154,11 @@ msgstr ""
1181
  "verso destra e un numero minore lo muove verso sinistra. Il Numero può anche "
1182
  "essere negativo."
1183
 
1184
- #: ../admin/social_sharing.php:1378 ../admin/like_buttons.php:470
1185
  msgid "Right offset"
1186
  msgstr "Right offset"
1187
 
1188
- #: ../admin/social_sharing.php:1388
1189
  msgid ""
1190
  "Specify a number. Increase in number will shift sharing interface towards "
1191
  "left and decrease will shift it towards right. Number can be negative too."
@@ -1194,11 +1167,11 @@ msgstr ""
1194
  "verso sinistra e un numero minore lo muove verso destra.Il Numero può anche "
1195
  "essere negativo."
1196
 
1197
- #: ../admin/social_sharing.php:1397 ../admin/like_buttons.php:489
1198
  msgid "Top offset"
1199
  msgstr "Top offset"
1200
 
1201
- #: ../admin/social_sharing.php:1407
1202
  msgid ""
1203
  "Specify a number. Increase in number will shift sharing interface towards "
1204
  "bottom and decrease will shift it towards top."
@@ -1206,36 +1179,36 @@ msgstr ""
1206
  "Specifica un numero. Un numero piú alto muove l'interfaccia di condivisione "
1207
  "verso il basso e un numero minore lo muove verso l'alto."
1208
 
1209
- #: ../admin/social_sharing.php:1443 ../admin/like_buttons.php:535
1210
  msgid "BuddyPress group"
1211
  msgstr "BuddyPress group"
1212
 
1213
- #: ../admin/social_sharing.php:1464
1214
  msgid "Specify the pages where you want to enable vertical Sharing interface"
1215
  msgstr ""
1216
  "Specifica le pagine dove vuoi abilitare l'Interfaccia Sharing Verticale"
1217
 
1218
- #: ../admin/social_sharing.php:1531
1219
  #, fuzzy
1220
  msgid "Hide floating slider"
1221
  msgstr "Nascondi per gli utenti loggati:"
1222
 
1223
- #: ../admin/social_sharing.php:1541
1224
  #, fuzzy
1225
  msgid "Hides the slider arrow present below the floating share bar"
1226
  msgstr "Come posso nascondere la freccia dopo la floating sharing bar?"
1227
 
1228
- #: ../admin/social_sharing.php:1549
1229
  msgid "Vertical floating bar responsiveness"
1230
  msgstr "Responsiveness Vertical"
1231
 
1232
- #: ../admin/social_sharing.php:1552
1233
  #, php-format
1234
  msgid "Display vertical interface only when screen is wider than %s pixels"
1235
  msgstr ""
1236
  "Mostra interfaccia verticale solo quando lo schermo è più ampio di %s pixels"
1237
 
1238
- #: ../admin/social_sharing.php:1559
1239
  msgid ""
1240
  "Display vertical interface only when screen is wider than the width "
1241
  "specified."
@@ -1243,11 +1216,11 @@ msgstr ""
1243
  "Mostra interfaccia verticale solo quando lo schermo è più ampio rispetto "
1244
  "alla larghezza specificata."
1245
 
1246
- #: ../admin/social_sharing.php:1567
1247
  msgid "Horizontal floating bar responsiveness"
1248
  msgstr "Responsiveness Horizontal"
1249
 
1250
- #: ../admin/social_sharing.php:1570
1251
  #, php-format
1252
  msgid ""
1253
  "Stick vertical floating interface horizontally at bottom only when screen is "
@@ -1256,7 +1229,7 @@ msgstr ""
1256
  "Posiziona l'Interfaccia Verticale floating in orizzontale e in fondo ma solo "
1257
  "quando lo schermo è più stretto di %s pixel"
1258
 
1259
- #: ../admin/social_sharing.php:1577
1260
  msgid ""
1261
  "Stick vertical floating interface horizontally at bottom only when screen is "
1262
  "narrower than the width specified"
@@ -1264,43 +1237,43 @@ msgstr ""
1264
  "Posiziona l' interfaccia floating orizzontale in fondo solo quando lo "
1265
  "schermo è più stretto della larghezza specificata"
1266
 
1267
- #: ../admin/social_sharing.php:1587
1268
  msgid "Horizontal floating bar position"
1269
  msgstr "Posizione Horizontal floating bar"
1270
 
1271
- #: ../admin/social_sharing.php:1590
1272
  #, php-format
1273
  msgid "%s pixels from %s"
1274
  msgstr "%s pixels da %s"
1275
 
1276
- #: ../admin/social_sharing.php:1591
1277
  msgid "Auto-adjust according to screen width (responsive)"
1278
  msgstr ""
1279
 
1280
- #: ../admin/social_sharing.php:1598
1281
  msgid "Alignment of horizontal floating interface. Number can be negative too."
1282
  msgstr ""
1283
  "Sallineamento dell'interfaccia floating orizzontale. Questo numero può "
1284
  "essere anche negativo."
1285
 
1286
- #: ../admin/social_sharing.php:1618
1287
  #, fuzzy
1288
  msgid "Facebook Share Count"
1289
  msgstr "Comentarios Facebook"
1290
 
1291
- #: ../admin/social_sharing.php:1622
1292
  msgid "Note"
1293
  msgstr ""
1294
 
1295
- #: ../admin/social_sharing.php:1622
1296
  msgid "Required only to track Facebook share count"
1297
  msgstr ""
1298
 
1299
- #: ../admin/social_sharing.php:1628 ../admin/social_login.php:161
1300
  msgid "Facebook App ID"
1301
  msgstr "Facebook App ID"
1302
 
1303
- #: ../admin/social_sharing.php:1638
1304
  #, fuzzy, php-format
1305
  msgid ""
1306
  "Required for Facebook share count to work. Please follow the documentation "
@@ -1310,12 +1283,12 @@ msgstr ""
1310
  "Facebook App ID, consulta la documentazione che trovi su <a href=\"%s\" "
1311
  "target=\"_blank\">questo collegamento</a>"
1312
 
1313
- #: ../admin/social_sharing.php:1646 ../admin/social_login.php:183
1314
  #, fuzzy
1315
  msgid "Facebook App Secret"
1316
  msgstr "Facebook App ID"
1317
 
1318
- #: ../admin/social_sharing.php:1656
1319
  #, fuzzy, php-format
1320
  msgid ""
1321
  "Required for Facebook share count to work. Please follow the documentation "
@@ -1325,34 +1298,34 @@ msgstr ""
1325
  "Facebook App ID, consulta la documentazione che trovi su <a href=\"%s\" "
1326
  "target=\"_blank\">questo collegamento</a>"
1327
 
1328
- #: ../admin/social_sharing.php:1665 ../admin/like_buttons.php:592
1329
  msgid "Url shortener"
1330
  msgstr "Url shortener"
1331
 
1332
- #: ../admin/social_sharing.php:1671
1333
  msgid "Use shortlinks already installed"
1334
  msgstr "Utilizza shortlinks installati"
1335
 
1336
- #: ../admin/social_sharing.php:1681
1337
  msgid "Uses default short url permalinks without using any additional plugin"
1338
  msgstr ""
1339
  "Utilizza gli short url permalink predefiniti senza l'utilizzo di alcun "
1340
  "plugin aggiuntivo"
1341
 
1342
- #: ../admin/social_sharing.php:1689
1343
  msgid "Enable bit.ly url shortener for sharing"
1344
  msgstr "Abilita bit.ly url shortener"
1345
 
1346
- #: ../admin/social_sharing.php:1699 ../admin/like_buttons.php:626
1347
  msgid "Master control to enable bit.ly url shortening for sharing"
1348
  msgstr ""
1349
  "Controllo Principale per abilitare bit.ly url shortening per la condivisione"
1350
 
1351
- #: ../admin/social_sharing.php:1707
1352
  msgid "bit.ly Login"
1353
  msgstr "bit.ly Login"
1354
 
1355
- #: ../admin/social_sharing.php:1717 ../admin/social_sharing.php:1736
1356
  #, fuzzy, php-format
1357
  msgid "More details on how to get it <a href=\"%s\" target=\"_blank\">here</a>"
1358
  msgstr ""
@@ -1360,19 +1333,19 @@ msgstr ""
1360
  "API Key, consulta la documentazione che trovi su <a href=\"%s\" target="
1361
  "\"_blank\">questa pagina</a>"
1362
 
1363
- #: ../admin/social_sharing.php:1726 ../admin/like_buttons.php:653
1364
  msgid "bit.ly API Key"
1365
  msgstr "bit.ly API Key"
1366
 
1367
- #: ../admin/social_sharing.php:1745 ../admin/like_buttons.php:672
1368
  msgid "Clear Bitly Cache"
1369
  msgstr "Cancella Bitly Cache"
1370
 
1371
- #: ../admin/social_sharing.php:1749 ../admin/like_buttons.php:676
1372
  msgid "ShortUrl cache cleared successfully."
1373
  msgstr "ShortUrl cache cancellata correttamente"
1374
 
1375
- #: ../admin/social_sharing.php:1756 ../admin/like_buttons.php:683
1376
  msgid ""
1377
  "Use this to delete short urls saved in database. Handy, if urls of your "
1378
  "website have been changed but short urls are still being generated for old "
@@ -1382,31 +1355,31 @@ msgstr ""
1382
  "Utile, se gli URL del tuo sito web sono stati modificatie ma gli short URL "
1383
  "sono ancora in uso per i vecchi URL."
1384
 
1385
- #: ../admin/social_sharing.php:1765
1386
  msgid "Share Count Cache"
1387
  msgstr "Share Count Cache"
1388
 
1389
- #: ../admin/social_sharing.php:1771
1390
  msgid "Refresh Share Count cache every"
1391
  msgstr "Aggiorna cache ogni"
1392
 
1393
- #: ../admin/social_sharing.php:1776
1394
  msgid "Second(s)"
1395
  msgstr "Secondo(i)"
1396
 
1397
- #: ../admin/social_sharing.php:1777
1398
  msgid "Minute(s)"
1399
  msgstr "Minuto(i)"
1400
 
1401
- #: ../admin/social_sharing.php:1778
1402
  msgid "Hour(s)"
1403
  msgstr "Ora(e)"
1404
 
1405
- #: ../admin/social_sharing.php:1779
1406
  msgid "Day(s)"
1407
  msgstr "Giorno(i)"
1408
 
1409
- #: ../admin/social_sharing.php:1787
1410
  #, fuzzy, php-format
1411
  msgid ""
1412
  "Frequent cache refreshing results in slower loading of pages with share "
@@ -1416,25 +1389,25 @@ msgstr ""
1416
  "Quando Share Count è attivato, frequenti aggiornamenti della cache possono "
1417
  "rallentare il caricamento delle pagine."
1418
 
1419
- #: ../admin/social_sharing.php:1795
1420
  msgid "Clear Share Counts Cache"
1421
  msgstr "Cancella Share Counts Cache"
1422
 
1423
- #: ../admin/social_sharing.php:1799
1424
  msgid "Share Counts cache cleared successfully."
1425
  msgstr "Share Counts cache cancellata correttamente"
1426
 
1427
- #: ../admin/social_sharing.php:1806
1428
  msgid "Use this to clear cached share counts"
1429
  msgstr "Da utilizzare per cancellare la cache degli share counts"
1430
 
1431
- #: ../admin/social_sharing.php:1815 ../admin/social_sharing.php:1821
1432
  #: ../admin/social_commenting.php:315 ../admin/like_buttons.php:692
1433
  #: ../admin/like_buttons.php:698
1434
  msgid "Language"
1435
  msgstr "Lingua"
1436
 
1437
- #: ../admin/social_sharing.php:1831
1438
  #, php-format
1439
  msgid ""
1440
  "Enter the code of the language you want to use for like buttons. You can "
@@ -1446,15 +1419,15 @@ msgstr ""
1446
  "\"_blank\">questo collegamento</a>. Lasciare in bianco per usare la lingua "
1447
  "predefinita"
1448
 
1449
- #: ../admin/social_sharing.php:1840
1450
  msgid "Username in sharing"
1451
  msgstr "Username in sharing"
1452
 
1453
- #: ../admin/social_sharing.php:1846
1454
  msgid "Twitter username (without @)"
1455
  msgstr "Username Twitter (senza @)"
1456
 
1457
- #: ../admin/social_sharing.php:1856 ../admin/social_sharing.php:1875
1458
  msgid ""
1459
  "Provided username will be appended after the content being shared as \"via "
1460
  "@USERNAME\". Leave empty if you do not want any username in the content "
@@ -1463,36 +1436,36 @@ msgstr ""
1463
  "La username fornita viene aggiunta dopo il contenuto condiviso come \"via "
1464
  "@USERNAME\". Lasciare vuoto se non si desidera alcuna username."
1465
 
1466
- #: ../admin/social_sharing.php:1865
1467
  msgid "Buffer username (without @)"
1468
  msgstr "Username Buffer (senza @)"
1469
 
1470
- #: ../admin/social_sharing.php:1884
1471
  msgid "AMP"
1472
  msgstr "AMP"
1473
 
1474
- #: ../admin/social_sharing.php:1890
1475
  msgid "Enable sharing on AMP pages"
1476
  msgstr "Abilita sharing nelle pagine di AMP"
1477
 
1478
- #: ../admin/social_sharing.php:1900
1479
  msgid "Enable this option to render sharing icons on AMP pages"
1480
  msgstr ""
1481
  "Attiva questa opzione per rendere la condivisione di icone sulle pagine AMP"
1482
 
1483
- #: ../admin/social_sharing.php:1919 ../admin/like_buttons.php:771
1484
  msgid "myCRED"
1485
  msgstr ""
1486
 
1487
- #: ../admin/social_sharing.php:1925 ../admin/like_buttons.php:777
1488
  msgid "Append myCRED referral ID to the urls being shared"
1489
  msgstr ""
1490
 
1491
- #: ../admin/social_sharing.php:1958
1492
  msgid "Facebook Sharing Troubleshooter"
1493
  msgstr "Risoluzione dei problemi Facebook Sharing"
1494
 
1495
- #: ../admin/social_sharing.php:1963
1496
  msgid ""
1497
  "If Facebook sharing is not working fine, click at the following link and "
1498
  "enter the problematic url (where Facebook sharing is not working properly) "
@@ -1504,14 +1477,14 @@ msgstr ""
1504
  "che ti ha dato problemi (dove quindi la condivisione di Facebook non ha "
1505
  "funzionato) e cliicca sul pulsante \"Fetch New Scrape Information\" ."
1506
 
1507
- #: ../admin/social_sharing.php:1980 ../admin/social_commenting.php:399
1508
- #: ../admin/social_login.php:1259
1509
  msgid ""
1510
  "<strong>Note:</strong> Plugin will not work on local server. You should have "
1511
  "an online website for the plugin to function properly."
1512
  msgstr ""
1513
 
1514
- #: ../admin/social_sharing.php:1981
1515
  msgid ""
1516
  "Why is sharer not showing the correct image, title and other meta tags "
1517
  "content?"
@@ -1519,16 +1492,16 @@ msgstr ""
1519
  "Perché il contenuto condiviso non mostra l'immagine corretta, il titolo e "
1520
  "altri contenuti meta tag?"
1521
 
1522
- #: ../admin/social_sharing.php:1982
1523
  #, fuzzy
1524
  msgid "Why is Facebook share count not working?"
1525
  msgstr "Perché gli Share Counts non vengono aggiornati?"
1526
 
1527
- #: ../admin/social_sharing.php:1985
1528
  msgid "Why is Instagram icon redirecting to Instagram website?"
1529
  msgstr ""
1530
 
1531
- #: ../admin/social_sharing.php:1986
1532
  msgid ""
1533
  "Instagram icon is there to send website visitors to the Instagram page of "
1534
  "your choice. You can save the desired Instagram handle in \"Instagram "
@@ -1536,48 +1509,48 @@ msgid ""
1536
  "sections."
1537
  msgstr ""
1538
 
1539
- #: ../admin/social_sharing.php:1989
1540
  #, fuzzy
1541
  msgid "How to customize the url being shared?"
1542
  msgstr "Come posso personalizzare l'aspetto dei singoli share counts?"
1543
 
1544
- #: ../admin/social_sharing.php:1990
1545
  msgid ""
1546
  "Why are Twitter shares not appearing even after registering at Twitcount.com?"
1547
  msgstr ""
1548
 
1549
- #: ../admin/social_sharing.php:1991
1550
  msgid ""
1551
  "It takes some time for their service to track the shares made on Twitter "
1552
  "from your website. If you still feel it's taking too long you can contact "
1553
  "their support directly from their website."
1554
  msgstr ""
1555
 
1556
- #: ../admin/social_sharing.php:1993 ../admin/like_buttons.php:814
1557
  msgid "How to Place Title and Social Share Icons in the Same Row?"
1558
  msgstr ""
1559
 
1560
- #: ../admin/social_sharing.php:1994
1561
  msgid ""
1562
  "How to restore Social Share counts lost after moving my website to SSL/Https?"
1563
  msgstr ""
1564
 
1565
- #: ../admin/social_sharing.php:1995 ../admin/social_commenting.php:402
1566
- #: ../admin/social_login.php:1266
1567
  msgid "Why is my browser blocking some features of the plugin?"
1568
  msgstr ""
1569
 
1570
- #: ../admin/social_sharing.php:1996
1571
  #, fuzzy
1572
  msgid "Why the color of share icons is not being updated?"
1573
  msgstr "Perché gli Share Counts non vengono aggiornati?"
1574
 
1575
- #: ../admin/social_sharing.php:1997
1576
  #, fuzzy
1577
  msgid "Why Facebook share counts are not appearing?"
1578
  msgstr "Perché gli Share Counts non vengono aggiornati?"
1579
 
1580
- #: ../admin/social_sharing.php:1998
1581
  msgid ""
1582
  "How can I show share counts of my website rather than of individual pages/"
1583
  "posts?"
@@ -1585,52 +1558,52 @@ msgstr ""
1585
  "Come posso mostrare conteggi del mio sito web, piuttosto che di singole "
1586
  "pagine/post?"
1587
 
1588
- #: ../admin/social_sharing.php:1999
1589
  msgid "How can I disable sharing on particular page/post?"
1590
  msgstr ""
1591
  "Come è possibile disattivare la condivisione di una pagina/post in "
1592
  "particolare?"
1593
 
1594
- #: ../admin/social_sharing.php:2000
1595
  msgid "How can I specify minimum sharing count for sharing networks?"
1596
  msgstr ""
1597
  "Come faccio a specificare il conteggio minimo di sharing per la condivisione "
1598
  "di reti?"
1599
 
1600
- #: ../admin/social_sharing.php:2001
1601
  msgid "How to share specific page?"
1602
  msgstr "Come posso condividere la pagina specifica?"
1603
 
1604
- #: ../admin/social_sharing.php:2002
1605
  msgid "How to integrate Google Analytics with sharing?"
1606
  msgstr "Come posso integrare Google Analytics con lo sharing?"
1607
 
1608
- #: ../admin/social_sharing.php:2003
1609
  msgid "How to customize the look of total share counts?"
1610
  msgstr "Come posso personalizzare l'aspetto del totale degli share counts?"
1611
 
1612
- #: ../admin/social_sharing.php:2004
1613
  msgid "How to customize the look of individual share counts?"
1614
  msgstr "Come posso personalizzare l'aspetto dei singoli share counts?"
1615
 
1616
- #: ../admin/social_sharing.php:2005
1617
  msgid "How to show Whatsapp icon only on mobile devices?"
1618
  msgstr "Come posso mostrare l'icona Whatsapp solo sui dispositivi mobili?"
1619
 
1620
- #: ../admin/social_sharing.php:2006
1621
  msgid "How to hide arrow after floating sharing bar?"
1622
  msgstr "Come posso nascondere la freccia dopo la floating sharing bar?"
1623
 
1624
- #: ../admin/social_sharing.php:2007
1625
  #, fuzzy
1626
  msgid "Why is share count not getting updated?"
1627
  msgstr "Perché gli Share Counts non vengono aggiornati?"
1628
 
1629
- #: ../admin/social_sharing.php:2008 ../admin/like_buttons.php:812
1630
  msgid "Why is there so much space between like buttons?"
1631
  msgstr "Perché c'è così tanto spazio tra i tasti like?"
1632
 
1633
- #: ../admin/social_sharing.php:2009 ../admin/like_buttons.php:813
1634
  msgid "Why are floating sharing/like buttons not appearing at homepage?"
1635
  msgstr ""
1636
  "Perché i pulsanti floating di sharing/like non compaiono nella pagina "
@@ -1890,7 +1863,7 @@ msgstr "Configurazione Avanzata"
1890
  msgid "GDPR"
1891
  msgstr ""
1892
 
1893
- #: ../admin/social_login.php:44 ../admin/social_login.php:1194
1894
  msgid "XProfile Integration"
1895
  msgstr "XProfile Integration"
1896
 
@@ -2642,50 +2615,67 @@ msgid "Text for the GDPR opt-in"
2642
  msgstr "Abilita Disqus Commenting"
2643
 
2644
  #: ../admin/social_login.php:1135
2645
- msgid "Text to link to Privacy Policy page"
2646
  msgstr ""
2647
 
2648
  #: ../admin/social_login.php:1145
2649
- msgid "Word(s) in the opt-in text to be linked to privacy policy page"
2650
  msgstr ""
2651
 
2652
  #: ../admin/social_login.php:1153
2653
- msgid "Privacy Policy Url"
2654
  msgstr ""
2655
 
2656
  #: ../admin/social_login.php:1163
2657
  #, fuzzy
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2658
  msgid "Url of the privacy policy page of your website"
2659
  msgstr "Url della homepage del tuo sito web"
2660
 
2661
- #: ../admin/social_login.php:1214 ../inc/widget.php:260 ../inc/widget.php:438
2662
  #: ../inc/widget.php:602 ../inc/widget.php:750
2663
  msgid "Select"
2664
  msgstr "Selezionare"
2665
 
2666
- #: ../admin/social_login.php:1245
2667
  msgid "Social Login Shortcode & Widget"
2668
  msgstr "Shortcode & Widget"
2669
 
2670
- #: ../admin/social_login.php:1246
2671
  msgid "Social Linking Shortcode"
2672
  msgstr "Social Linking Shortcode"
2673
 
2674
- #: ../admin/social_login.php:1261
2675
  msgid "Why is social login not working?"
2676
  msgstr ""
2677
 
2678
- #: ../admin/social_login.php:1262
2679
  msgid ""
2680
  "Make sure that App ID and Secret (Client ID and Secret) keys you have saved, "
2681
  "belong to the same app"
2682
  msgstr ""
2683
 
2684
- #: ../admin/social_login.php:1264
2685
  msgid "Social Login not working with Varnish enabled"
2686
  msgstr ""
2687
 
2688
- #: ../admin/social_login.php:1265
2689
  msgid ""
2690
  "Why the user is not appearing logged in even after Social Login until the "
2691
  "webpage is refreshed manually?"
2
  msgstr ""
3
  "Project-Id-Version: Super Socializer\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2019-08-13 08:27+0530\n"
6
+ "PO-Revision-Date: 2019-08-13 08:27+0530\n"
7
  "Last-Translator: Heateor <hello@heateor.com>\n"
8
  "Language-Team: Freedom's Gate <freedomsgate.tk@gmail.com>\n"
9
  "Language: it\n"
16
  "X-Poedit-KeywordsList: __;_e\n"
17
  "X-Poedit-SearchPath-0: ..\n"
18
 
19
+ #: ../super_socializer.php:425
20
  msgid "Problem fetching access token: "
21
  msgstr ""
22
 
23
+ #: ../super_socializer.php:429 ../super_socializer.php:443
24
  msgid "Facebook SDK returned an error: "
25
  msgstr ""
26
 
27
+ #: ../super_socializer.php:439
28
  msgid "Graph returned an error: "
29
  msgstr ""
30
 
31
+ #: ../super_socializer.php:605
32
  #, fuzzy
33
  msgid ""
34
  "cURL is not enabled at your website server. Please contact your website "
37
  "Assicurati che cURL sia abilitato sul server del tuo sito. Per verificare "
38
  "questo, potrebbe essere necessario contattare l'amministratore del server."
39
 
40
+ #: ../super_socializer.php:632
41
  #, fuzzy, php-format
42
  msgid ""
43
  "Enter exactly the following url in <strong>Website</strong> option in your "
47
  "e <strong>Callback URL </ strong> della tua applicazione Twitter (vedi punto "
48
  "3 %s)"
49
 
50
+ #: ../super_socializer.php:635
51
  #, fuzzy, php-format
52
  msgid ""
53
  "Enter exactly the following url in <strong>Callback URLs</strong> option in "
57
  "e <strong>Callback URL </ strong> della tua applicazione Twitter (vedi punto "
58
  "3 %s)"
59
 
60
+ #: ../super_socializer.php:638
61
  msgid ""
62
  "Make sure cURL is enabled at your website server. You may need to contact "
63
  "the server administrator of your website to verify this"
65
  "Assicurati che cURL sia abilitato sul server del tuo sito. Per verificare "
66
  "questo, potrebbe essere necessario contattare l'amministratore del server."
67
 
68
+ #: ../super_socializer.php:901 ../helper.php:976
 
 
 
 
 
 
69
  msgid "Please verify your email address to login."
70
  msgstr "Per favore, per accedere verifica il tuo indirizzo e-mail."
71
 
72
+ #: ../super_socializer.php:901
73
  msgid "Your email has been verified. Now you can login to your account"
74
  msgstr ""
75
  "Il tuo indirizzo e-mail é stato verificato, adesso puoi accedere al tuo "
76
  "account"
77
 
78
+ #: ../super_socializer.php:905
79
  msgid "Notification"
80
  msgstr "Notifiche"
81
 
82
+ #: ../super_socializer.php:923 ../admin/social_login.php:805
83
  msgid "Email required"
84
  msgstr "Email Obbligatoria"
85
 
86
+ #: ../super_socializer.php:926
87
  msgid "Please check your email inbox to complete the registration."
88
  msgstr ""
89
  "Per favore, per completare la registrazione, controlla la tua casella di "
90
  "posta elettronica."
91
 
92
+ #: ../super_socializer.php:933 ../helper.php:508
93
  msgid "Enter your LiveJournal username"
94
  msgstr ""
95
 
96
+ #: ../super_socializer.php:1005
97
  msgid "Leave a reply"
98
  msgstr "Lascia un commento"
99
 
100
+ #: ../super_socializer.php:1017 ../inc/social_sharing.php:241
101
  msgid "Shares"
102
  msgstr "Shares"
103
 
104
+ #: ../super_socializer.php:1017 ../inc/social_sharing.php:241
105
  msgid "Share"
106
  msgstr "Share"
107
 
108
+ #: ../super_socializer.php:1017
109
  #, fuzzy
110
  msgid "Link copied."
111
  msgstr "LinkedIn"
112
 
113
+ #: ../super_socializer.php:1263
114
  msgid "Super Socializer - General Options"
115
  msgstr "Super Socializer - Opzioni"
116
 
117
+ #: ../super_socializer.php:1263 ../admin/general_options.php:15
118
  #: ../admin/social_commenting.php:47
119
  msgid "General Options"
120
  msgstr "Opzioni Generali"
121
 
122
+ #: ../super_socializer.php:1331 ../helper.php:898
123
  msgid "Social Avatar"
124
  msgstr "Social Avatar"
125
 
126
+ #: ../super_socializer.php:1334
127
  msgid "Small Avatar Url"
128
  msgstr "Url Avatar Piccolo"
129
 
130
+ #: ../super_socializer.php:1338
131
  msgid "Large Avatar Url"
132
  msgstr "URL Avatar Grande"
133
 
134
+ #: ../super_socializer.php:1342 ../helper.php:901
135
  msgid ""
136
  "Do not fetch and update social avatar from my profile, next time I Social "
137
  "Login"
139
  "La prossima volta che uso Social Login, non prendere e/o aggiornare il "
140
  "social avatar dal mio profilo."
141
 
142
+ #: ../super_socializer.php:1346 ../helper.php:902
143
  msgid "Update social avatar, next time I Social Login"
144
  msgstr "La prossima volta che si usa Social Login, aggiorna il social avatar."
145
 
146
+ #: ../super_socializer.php:1423
 
 
 
 
 
 
147
  msgid "Login with your Social ID"
148
  msgstr "Login con il tuo ID Social"
149
 
150
+ #: ../super_socializer.php:1424
151
  msgid "Email you entered is already registered or invalid"
152
  msgstr "La email inserita è già registrata o non è valida"
153
 
154
+ #: ../super_socializer.php:1429
155
  msgid "Please enter a valid email address. You might be required to verify it"
156
  msgstr ""
157
  "Si prega di inserire un indirizzo email valido. Potrebbe esserne richiesta "
158
  "una verifica"
159
 
160
+ #: ../super_socializer.php:1433 ../super_socializer.php:2122
161
  msgid "Link your social account to login to your account at this website"
162
  msgstr ""
163
  "Collega il tuo social account per accedere al tuo account su questo sito"
164
 
165
+ #: ../super_socializer.php:1681
166
  msgid "Thanks for installing Super Socializer plugin"
167
  msgstr ""
168
 
169
+ #: ../super_socializer.php:1683
170
  msgid "Configure the Plugin"
171
  msgstr ""
172
 
173
+ #: ../super_socializer.php:1694
174
  msgid ""
175
  "Update \"Facebook Comments Moderation\" add-on for compatibility with "
176
  "current version of Super Socialzer"
177
  msgstr ""
178
 
179
+ #: ../super_socializer.php:1703
180
  msgid ""
181
  "Update \"Facebook Comments Notifier\" add-on for compatibility with current "
182
  "version of Super Socialzer"
183
  msgstr ""
184
 
185
+ #: ../super_socializer.php:1712
186
  msgid ""
187
  "Update \"Social Login Buttons\" add-on for compatibility with current "
188
  "version of Super Socialzer"
189
  msgstr ""
190
 
191
+ #: ../super_socializer.php:1721
192
  msgid ""
193
  "Update \"Social Share myCRED Integration\" add-on for maximum compatibility "
194
  "with current version of Super Socialzer"
195
  msgstr ""
196
 
197
+ #: ../super_socializer.php:1730
198
  msgid ""
199
  "Update \"Social Login myCRED Integration\" add-on for maximum compatibility "
200
  "with current version of Super Socialzer"
201
  msgstr ""
202
 
203
+ #: ../super_socializer.php:1737
204
  msgid ""
205
  "Update \"Social Login myCRED Integration\" add-on for compatibility with "
206
  "LiveJournal Login of Super Socialzer"
207
  msgstr ""
208
 
209
+ #: ../super_socializer.php:1748
210
  #, php-format
211
  msgid ""
212
  "To continue using Steam login save Steam API key <a href=\"%s\">here</a>"
213
  msgstr ""
214
 
215
+ #: ../super_socializer.php:1764
216
  #, php-format
217
  msgid ""
218
  "To continue using Social Login, save the secret keys <a href=\"%s\">here</a>"
219
  msgstr ""
220
 
221
+ #: ../super_socializer.php:1788
222
  #, php-format
223
  msgid ""
224
  "Add %s in \"Valid OAuth redirect URIs\" option in your Facebook app settings "
226
  "target=\"_blank\">here</a>"
227
  msgstr ""
228
 
229
+ #: ../super_socializer.php:1788 ../super_socializer.php:1813
230
+ #: ../super_socializer.php:1838 ../super_socializer.php:1863
231
+ #: ../super_socializer.php:1896 ../super_socializer.php:1924
232
+ #: ../super_socializer.php:1951 ../super_socializer.php:2028
233
  msgid "Okay"
234
  msgstr ""
235
 
236
+ #: ../super_socializer.php:1813
237
  #, php-format
238
  msgid ""
239
  "Add %s in \"Callback URLs\" option in your Twitter app settings for Twitter "
241
  "\">here</a>"
242
  msgstr ""
243
 
244
+ #: ../super_socializer.php:1838
245
  #, php-format
246
  msgid ""
247
  "Add %s in \"Authorized Redirect URLs\" option in your Linkedin app settings "
249
  "target=\"_blank\">here</a>"
250
  msgstr ""
251
 
252
+ #: ../super_socializer.php:1863
253
  #, php-format
254
  msgid ""
255
  "Add %s in \"Authorized redirect URIs\" option in your Google client settings "
257
  "target=\"_blank\">here</a>"
258
  msgstr ""
259
 
260
+ #: ../super_socializer.php:1874
261
  #, php-format
262
  msgid ""
263
  "Save the url of privacy policy page of your website <a href=\"%s\">here</a>"
264
  msgstr ""
265
 
266
+ #: ../super_socializer.php:1896
267
  #, php-format
268
  msgid ""
269
  "This plugin is GDPR compliant. You need to update the privacy policy of your "
271
  "\"%s\" target=\"_blank\">here</a>"
272
  msgstr ""
273
 
274
+ #: ../super_socializer.php:1924
275
  #, php-format
276
  msgid ""
277
  "Now plugin supports a new service Twitcount.com to show Twitter shares. To "
280
  "your website %s with them. No need to copy-paste any code from their website."
281
  msgstr ""
282
 
283
+ #: ../super_socializer.php:1951
284
  #, php-format
285
  msgid ""
286
  "Replace url saved in \"Callback URLs\" option in your Twitter app settings "
288
  "\"%s\" target=\"_blank\">here</a>"
289
  msgstr ""
290
 
291
+ #: ../super_socializer.php:1976
292
  #, php-format
293
  msgid ""
294
  "If you cannot get Linkedin login to work after updating the plugin, replace "
296
  "For more details, check step 6 <a href=\"%s\" target=\"_blank\">here</a>"
297
  msgstr ""
298
 
299
+ #: ../super_socializer.php:1976 ../super_socializer.php:2003
300
  msgid "Dismiss"
301
  msgstr ""
302
 
303
+ #: ../super_socializer.php:2002
304
  #, php-format
305
  msgid ""
306
  "Save Facebook App ID and Secret keys in \"Standard Interface\" and/or "
309
  "that, clear share counts cache from \"Miscellaneous\" section"
310
  msgstr ""
311
 
312
+ #: ../super_socializer.php:2028
313
  #, php-format
314
  msgid ""
315
  "Your website visitors will see a popup notification (only once) if their "
319
  "features\" option <a href=\"%s\">here</a>"
320
  msgstr ""
321
 
322
+ #: ../super_socializer.php:2198
323
+ msgid ""
324
+ "Your browser is blocking some features of this website. Please follow the "
325
+ "instructions at {support_url} to unblock these."
326
+ msgstr ""
327
+
328
  #: ../helper.php:8
329
  msgid "Settings saved"
330
  msgstr "Impostazioni salvate"
331
 
332
+ #: ../helper.php:8 ../admin/social_sharing.php:49
333
  msgid "Dismiss this notice"
334
  msgstr "Rimuovi questo annuncio"
335
 
418
  msgid "Large Avatar"
419
  msgstr "Avatar Grande"
420
 
421
+ #: ../helper.php:913 ../admin/general_options.php:93
422
+ #: ../admin/social_sharing.php:2027 ../admin/social_commenting.php:413
423
+ #: ../admin/social_login.php:1313 ../admin/like_buttons.php:826
424
  msgid "Save Changes"
425
  msgstr "Salva le modifiche"
426
 
441
  msgid "Something bad happened"
442
  msgstr ""
443
 
444
+ #: ../admin/general_options.php:7 ../admin/general_options.php:97
445
+ #: ../admin/social_sharing.php:5 ../admin/social_sharing.php:2031
446
  #: ../admin/social_commenting.php:5 ../admin/social_commenting.php:417
447
+ #: ../admin/social_login.php:5 ../admin/social_login.php:1317
448
  #: ../admin/like_buttons.php:6 ../admin/like_buttons.php:830
449
  #, fuzzy, php-format
450
  msgid ""
490
  "dovranno riconfigurare di nuovo."
491
 
492
  #: ../admin/general_options.php:75
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
493
  msgid "Custom CSS"
494
  msgstr "CSS personalizzato"
495
 
496
+ #: ../admin/general_options.php:85
497
  msgid "You can specify any additional CSS rules (without &lt;style&gt; tag)"
498
  msgstr ""
499
  "È possibile specificare regole CSS aggiuntive (senza &lt;style&gt; tag)"
500
 
501
+ #: ../admin/general_options.php:108 ../admin/social_sharing.php:2038
502
+ #: ../admin/social_commenting.php:424 ../admin/social_login.php:1324
503
+ #: ../admin/like_buttons.php:837
504
  #, fuzzy
505
  msgid "Instagram Shoutout"
506
  msgstr "Instagram"
507
 
508
+ #: ../admin/general_options.php:110 ../admin/social_sharing.php:2040
509
+ #: ../admin/social_commenting.php:426 ../admin/social_login.php:1326
510
+ #: ../admin/like_buttons.php:839
511
  msgid ""
512
  "If you can send (to hello@heateor.com) how our plugin is helping your "
513
  "business, we can share it on Instagram. You can also send any relevant "
514
  "hashtags and people to mention in the Instagram post."
515
  msgstr ""
516
 
517
+ #: ../admin/general_options.php:111 ../admin/social_sharing.php:2041
518
+ #: ../admin/social_commenting.php:427 ../admin/social_login.php:1327
519
+ #: ../admin/like_buttons.php:840
520
  msgid ""
521
  "<b>Example</b> - Blah-Blah Online Coaching teaches various programming "
522
  "language courses through their website. They have emerged as one of the most "
525
  "time."
526
  msgstr ""
527
 
528
+ #: ../admin/general_options.php:112 ../admin/social_sharing.php:2042
529
+ #: ../admin/social_commenting.php:428 ../admin/social_login.php:1328
530
+ #: ../admin/like_buttons.php:841
531
  msgid ""
532
  "@blahblahonlinecoaching proudly use #SuperSocializer to enable social "
533
  "features at their website, such as - Social Login, Social Share and Social "
636
  msgid "Recover Social Share Counts Lost After Moving to SSL/Https"
637
  msgstr ""
638
 
639
+ #: ../admin/social_sharing.php:49 ../admin/social_sharing.php:1990
640
  msgid ""
641
  "Save Facebook App Id and Secret in the \"Miscellaneous\" section for "
642
  "Facebook share count to work"
643
  msgstr ""
644
 
645
+ #: ../admin/social_sharing.php:56
646
  msgid "Theme Selection"
647
  msgstr "Tema"
648
 
649
+ #: ../admin/social_sharing.php:57 ../admin/like_buttons.php:41
650
  msgid "Standard Interface"
651
  msgstr "Interfaccia Standard"
652
 
653
+ #: ../admin/social_sharing.php:58 ../admin/like_buttons.php:42
654
  msgid "Floating Interface"
655
  msgstr "Interfaccia Floating"
656
 
657
+ #: ../admin/social_sharing.php:59 ../admin/like_buttons.php:43
658
  msgid "Miscellaneous"
659
  msgstr "Miscellanea"
660
 
661
+ #: ../admin/social_sharing.php:63 ../admin/like_buttons.php:47
662
  #, fuzzy
663
  msgid "3rd Party Integration"
664
  msgstr "XProfile Integration"
665
 
666
+ #: ../admin/social_sharing.php:67 ../admin/social_sharing.php:1952
667
+ #: ../admin/social_sharing.php:1954 ../admin/social_login.php:46
668
+ #: ../admin/social_login.php:1279 ../admin/like_buttons.php:51
669
  #: ../admin/like_buttons.php:797
670
  msgid "Shortcode & Widget"
671
  msgstr "Shortcode & Widget"
672
 
673
+ #: ../admin/social_sharing.php:68
674
  msgid "Troubleshooter"
675
  msgstr "Risoluzione dei problemi"
676
 
677
+ #: ../admin/social_sharing.php:69 ../admin/social_sharing.php:1985
678
  #: ../admin/social_commenting.php:40 ../admin/social_commenting.php:397
679
+ #: ../admin/social_login.php:47 ../admin/social_login.php:1293
680
  #: ../admin/like_buttons.php:52 ../admin/like_buttons.php:810
681
  msgid "FAQ"
682
  msgstr "FAQ"
683
 
684
+ #: ../admin/social_sharing.php:77
685
  msgid "Standard interface theme"
686
  msgstr "Tema Interfaccia Standard"
687
 
688
+ #: ../admin/social_sharing.php:82 ../admin/social_sharing.php:389
689
  msgid "Icon Preview"
690
  msgstr "Anteprima Icona"
691
 
692
+ #: ../admin/social_sharing.php:154 ../admin/social_sharing.php:462
693
  msgid ""
694
  "Do not forget to save the configuration after making changes by clicking the "
695
  "save button below"
697
  "Dopo aver apportato le modifiche, non dimenticate di salvare la "
698
  "configurazione, fare clic sul pulsante Salva in basso"
699
 
700
+ #: ../admin/social_sharing.php:161 ../admin/social_sharing.php:469
701
  msgid "Shape"
702
  msgstr "Forma"
703
 
704
+ #: ../admin/social_sharing.php:165 ../admin/social_sharing.php:473
705
  #: ../inc/widget.php:951
706
  msgid "Round"
707
  msgstr "Arrotondata"
708
 
709
+ #: ../admin/social_sharing.php:167 ../admin/social_sharing.php:475
710
  #: ../inc/widget.php:952
711
  msgid "Square"
712
  msgstr "Quadrata"
713
 
714
+ #: ../admin/social_sharing.php:169 ../admin/social_sharing.php:477
715
  msgid "Rectangle"
716
  msgstr "Rettangolare"
717
 
718
+ #: ../admin/social_sharing.php:176 ../admin/social_sharing.php:484
719
  msgid "Shape of the sharing icons"
720
  msgstr "Forma delle icone"
721
 
722
+ #: ../admin/social_sharing.php:185 ../admin/social_sharing.php:493
723
  msgid "Size (in pixels)"
724
  msgstr "Dimensioni (in pixel)"
725
 
726
+ #: ../admin/social_sharing.php:201 ../admin/social_sharing.php:509
727
  msgid "Size of the sharing icons"
728
  msgstr "Dimensione delle icone"
729
 
730
+ #: ../admin/social_sharing.php:211 ../admin/social_sharing.php:519
731
  msgid "Width (in pixels)"
732
  msgstr "Larghezza (in pixel)"
733
 
734
+ #: ../admin/social_sharing.php:227 ../admin/social_sharing.php:535
735
  msgid "Width of the sharing icons"
736
  msgstr ""
737
  "Larghezza \n"
738
  "icone"
739
 
740
+ #: ../admin/social_sharing.php:235 ../admin/social_sharing.php:543
741
  msgid "Height (in pixels)"
742
  msgstr "Altezza (in pixel)"
743
 
744
+ #: ../admin/social_sharing.php:251 ../admin/social_sharing.php:559
745
  msgid "Height of the sharing icons"
746
  msgstr "Altezza delle icone"
747
 
748
+ #: ../admin/social_sharing.php:261 ../admin/social_sharing.php:569
749
  msgid "Border radius (in pixels)"
750
  msgstr "Raggio Bordo (in pixel)"
751
 
752
+ #: ../admin/social_sharing.php:271 ../admin/social_sharing.php:579
753
  msgid ""
754
  "Specify a value for rounded corners. More the value, more rounded will the "
755
  "corners be. Leave empty for sharp corners."
757
  "Specifica un valore per gli angoli arrotondati. Più alto sarà il valore, più "
758
  "arrotondati saranno gli angoli. Lascia vuoto per avere spigoli netti."
759
 
760
+ #: ../admin/social_sharing.php:280 ../admin/social_sharing.php:588
761
  msgid "Logo Color"
762
  msgstr "Colore Logo"
763
 
764
+ #: ../admin/social_sharing.php:284 ../admin/social_sharing.php:305
765
+ #: ../admin/social_sharing.php:325 ../admin/social_sharing.php:592
766
+ #: ../admin/social_sharing.php:613 ../admin/social_sharing.php:632
767
  msgid "Default"
768
  msgstr "Predefinito"
769
 
770
+ #: ../admin/social_sharing.php:286 ../admin/social_sharing.php:306
771
+ #: ../admin/social_sharing.php:330 ../admin/social_sharing.php:594
772
+ #: ../admin/social_sharing.php:614 ../admin/social_sharing.php:637
773
  msgid "On Hover"
774
  msgstr "Al Passaggio del Mouse"
775
 
776
+ #: ../admin/social_sharing.php:294 ../admin/social_sharing.php:602
777
  msgid ""
778
  "Specify the color or hex code (example #cc78e0) for the logo of icon. Leave "
779
  "empty for default. You can get the hex code of the required color from <a "
784
  "ottenere il codice hex da <a href=\"http://www.colorpicker.com/\" target="
785
  "\"_blank\">questo collegamento</a>"
786
 
787
+ #: ../admin/social_sharing.php:302 ../admin/social_sharing.php:610
788
+ #: ../admin/social_sharing.php:1325 ../admin/like_buttons.php:410
789
  #: ../inc/widget.php:460 ../inc/widget.php:772
790
  msgid "Background Color"
791
  msgstr "Colore Background"
792
 
793
+ #: ../admin/social_sharing.php:313 ../admin/social_sharing.php:621
794
  msgid ""
795
  "Specify the color or hex code (example #cc78e0) for icon background. Save "
796
  "\"transparent\" for transparent background. Leave empty for default. You can "
803
  "<a href=\"http://www.colorpicker.com/\" target=\"_blank\">questo "
804
  "collegamento</a>"
805
 
806
+ #: ../admin/social_sharing.php:321 ../admin/social_sharing.php:629
807
  msgid "Border"
808
  msgstr "Bordo"
809
 
810
+ #: ../admin/social_sharing.php:327 ../admin/social_sharing.php:332
811
+ #: ../admin/social_sharing.php:634 ../admin/social_sharing.php:639
812
  msgid "Border Width"
813
  msgstr "Larghezza"
814
 
815
+ #: ../admin/social_sharing.php:328 ../admin/social_sharing.php:333
816
+ #: ../admin/social_sharing.php:635 ../admin/social_sharing.php:640
817
  msgid "Border Color"
818
  msgstr "Colore"
819
 
820
+ #: ../admin/social_sharing.php:340 ../admin/social_sharing.php:647
821
  msgid "Icon border"
822
  msgstr "Bordo Icona"
823
 
824
+ #: ../admin/social_sharing.php:348 ../admin/social_sharing.php:655
825
  msgid "Counter Position"
826
  msgstr "Posizione Counter"
827
 
828
+ #: ../admin/social_sharing.php:348 ../admin/social_sharing.php:655
829
  msgid "(applies, if counter enabled)"
830
  msgstr "(Si applica, se il Counter è abilitato)"
831
 
832
+ #: ../admin/social_sharing.php:352 ../admin/social_sharing.php:659
833
+ #: ../admin/social_sharing.php:942 ../admin/social_sharing.php:1347
834
  #: ../admin/like_buttons.php:183 ../admin/like_buttons.php:432
835
  #: ../inc/widget.php:446 ../inc/widget.php:758
836
  msgid "Left"
837
  msgstr "Sinistra"
838
 
839
+ #: ../admin/social_sharing.php:354 ../admin/social_sharing.php:661
840
  msgid "Top"
841
  msgstr "Top"
842
 
843
+ #: ../admin/social_sharing.php:356 ../admin/social_sharing.php:663
844
+ #: ../admin/social_sharing.php:944 ../admin/social_sharing.php:1348
845
  #: ../admin/like_buttons.php:185 ../admin/like_buttons.php:433
846
  #: ../inc/widget.php:447 ../inc/widget.php:759
847
  msgid "Right"
848
  msgstr "Destra"
849
 
850
+ #: ../admin/social_sharing.php:358 ../admin/social_sharing.php:665
851
  msgid "Bottom"
852
  msgstr "Parte inferiore"
853
 
854
+ #: ../admin/social_sharing.php:360 ../admin/social_sharing.php:667
855
  msgid "Inner Left"
856
  msgstr "Interno Sinistra"
857
 
858
+ #: ../admin/social_sharing.php:362 ../admin/social_sharing.php:669
859
  msgid "Inner Top"
860
  msgstr "Interno Superiore"
861
 
862
+ #: ../admin/social_sharing.php:364 ../admin/social_sharing.php:671
863
  msgid "Inner Right"
864
  msgstr "Interno Destra"
865
 
866
+ #: ../admin/social_sharing.php:366 ../admin/social_sharing.php:673
867
  msgid "Inner Bottom"
868
  msgstr "Interno Fonfo"
869
 
870
+ #: ../admin/social_sharing.php:374 ../admin/social_sharing.php:681
871
  msgid "Position of share counter"
872
  msgstr "Posizione dello share counter"
873
 
874
+ #: ../admin/social_sharing.php:384
875
  msgid "Floating interface theme"
876
  msgstr "Tema Interfaccia Floating"
877
 
878
+ #: ../admin/social_sharing.php:697
879
  msgid "Standard Sharing Interface Options"
880
  msgstr "Opzioni Interfaccia Sharing Standard"
881
 
882
+ #: ../admin/social_sharing.php:703
883
  msgid "Enable Standard sharing interface"
884
  msgstr "Abilita interfaccia standard"
885
 
886
+ #: ../admin/social_sharing.php:713
887
  msgid "Master control to enable standard sharing"
888
  msgstr "Controllo Principale per abilitare l'interfaccia standard"
889
 
890
+ #: ../admin/social_sharing.php:723 ../admin/social_sharing.php:1151
891
  #: ../admin/like_buttons.php:86 ../admin/like_buttons.php:336
892
  msgid "Target Url"
893
  msgstr "URL di destinazione"
894
 
895
+ #: ../admin/social_sharing.php:727 ../admin/social_sharing.php:1155
896
  #: ../admin/like_buttons.php:90 ../admin/like_buttons.php:340
897
  msgid "Url of the webpage where icons are located (default)"
898
  msgstr "URL della pagina web in cui si trovano le icone (predefinito)"
899
 
900
+ #: ../admin/social_sharing.php:729 ../admin/social_sharing.php:1157
901
  #: ../admin/like_buttons.php:92 ../admin/like_buttons.php:342
902
  msgid "Url of the homepage of your website"
903
  msgstr "Url della homepage del tuo sito web"
904
 
905
+ #: ../admin/social_sharing.php:731 ../admin/social_sharing.php:1159
906
  #: ../admin/like_buttons.php:94 ../admin/like_buttons.php:344
907
  msgid "Custom url"
908
  msgstr "Url personalizzata"
909
 
910
+ #: ../admin/social_sharing.php:738 ../admin/social_sharing.php:1166
911
  msgid "Url to share"
912
  msgstr "Url da condividere"
913
 
914
+ #: ../admin/social_sharing.php:746 ../admin/social_login.php:532
915
  #: ../admin/social_login.php:927 ../admin/like_buttons.php:109
916
  #: ../inc/widget.php:945
917
  msgid "Title"
918
  msgstr "Titolo"
919
 
920
+ #: ../admin/social_sharing.php:756
921
  msgid "The text to display above the sharing interface"
922
  msgstr "Il testo da mostrare sopra l'interfaccia di sharing"
923
 
924
+ #: ../admin/social_sharing.php:781 ../admin/social_sharing.php:1175
925
  msgid "Instagram username"
926
  msgstr "Username Instagram"
927
 
928
+ #: ../admin/social_sharing.php:791 ../admin/social_sharing.php:1185
929
  msgid ""
930
  "Username of the Instagram account you want to redirect users to, on clicking "
931
  "the icon"
933
  "Nome utente dell' account Instagram che si desidera reindirizzare agli "
934
  "utenti facendo clic sull'icona"
935
 
936
+ #: ../admin/social_sharing.php:801 ../admin/social_sharing.php:1195
937
  #, fuzzy
938
  msgid "HTML ID of container element of comment form"
939
  msgstr "ID HTML del modulo dei commenti container"
940
 
941
+ #: ../admin/social_sharing.php:811 ../admin/social_sharing.php:1205
942
  msgid ""
943
  "HTML ID of the element you want to focus on the webpage, on click of Comment "
944
  "icon."
945
  msgstr ""
946
 
947
+ #: ../admin/social_sharing.php:825 ../admin/social_sharing.php:1214
948
  msgid "Rearrange icons"
949
  msgstr "Riorganizza le icone"
950
 
951
+ #: ../admin/social_sharing.php:886 ../admin/social_sharing.php:1273
952
  msgid "Drag the icons to rearrange in desired order"
953
  msgstr "Trascina le icone per riordinare"
954
 
955
+ #: ../admin/social_sharing.php:894 ../admin/social_sharing.php:1281
956
  msgid "Select Sharing Services"
957
  msgstr "Seleziona i Service"
958
 
959
+ #: ../admin/social_sharing.php:901 ../admin/social_sharing.php:1288
960
  msgid "Select sharing services to show in social share bar"
961
  msgstr "Seleziona i servizi di sharing da mostrare"
962
 
963
+ #: ../admin/social_sharing.php:919 ../admin/social_sharing.php:1306
964
  #, fuzzy
965
  msgid "Search social network"
966
  msgstr "come rete sociale primaria"
967
 
968
+ #: ../admin/social_sharing.php:938 ../admin/social_sharing.php:1343
969
  #: ../admin/like_buttons.php:179 ../admin/like_buttons.php:428
970
  msgid "Horizontal alignment"
971
  msgstr "Allineamento orizzontale"
972
 
973
+ #: ../admin/social_sharing.php:943 ../admin/like_buttons.php:184
974
  msgid "Center"
975
  msgstr "centro"
976
 
977
+ #: ../admin/social_sharing.php:952 ../admin/social_sharing.php:1356
978
  msgid "Horizontal alignment of the sharing interface"
979
  msgstr "Allineamento orizzontale della interfaccia sharing"
980
 
981
+ #: ../admin/social_sharing.php:960 ../admin/like_buttons.php:201
982
  msgid "Position with respect to content"
983
  msgstr "Posizione"
984
 
985
+ #: ../admin/social_sharing.php:964 ../admin/like_buttons.php:205
986
  msgid "Top of the content"
987
  msgstr "Parte superiore del contenuto"
988
 
989
+ #: ../admin/social_sharing.php:966 ../admin/like_buttons.php:207
990
  msgid "Bottom of the content"
991
  msgstr "Parte inferiore del contenuto"
992
 
993
+ #: ../admin/social_sharing.php:973
994
  msgid "Specify position of the sharing interface with respect to the content"
995
  msgstr "Specifica la posizione dell'interfaccia rispetto al contenuto"
996
 
997
+ #: ../admin/social_sharing.php:981 ../admin/social_sharing.php:1422
998
  msgid "Placement"
999
  msgstr "Collocazione"
1000
 
1001
+ #: ../admin/social_sharing.php:985 ../admin/social_sharing.php:1426
1002
  #: ../admin/social_login.php:866 ../admin/social_login.php:896
1003
  #: ../admin/like_buttons.php:226 ../admin/like_buttons.php:511
1004
  msgid "Homepage"
1005
  msgstr "Homepage"
1006
 
1007
+ #: ../admin/social_sharing.php:987 ../admin/social_sharing.php:1428
1008
  #: ../admin/like_buttons.php:228 ../admin/like_buttons.php:513
1009
  msgid "Posts"
1010
  msgstr "Post"
1011
 
1012
+ #: ../admin/social_sharing.php:989 ../admin/social_sharing.php:1430
1013
  #: ../admin/like_buttons.php:230 ../admin/like_buttons.php:515
1014
  msgid "Pages"
1015
  msgstr "Pagine"
1016
 
1017
+ #: ../admin/social_sharing.php:991 ../admin/social_sharing.php:1432
1018
  #: ../admin/like_buttons.php:232 ../admin/like_buttons.php:517
1019
  msgid "Excerpts and Posts page"
1020
  msgstr "Pagine di Estratti ed Articoli"
1021
 
1022
+ #: ../admin/social_sharing.php:993 ../admin/social_sharing.php:1434
1023
  #: ../admin/like_buttons.php:234 ../admin/like_buttons.php:519
1024
  msgid "Category Archives"
1025
  msgstr "Archivi di categorie"
1026
 
1027
+ #: ../admin/social_sharing.php:995 ../admin/social_sharing.php:1436
1028
  #: ../admin/like_buttons.php:236 ../admin/like_buttons.php:521
1029
  msgid "Archive Pages (Category, Tag, Author or Date based pages)"
1030
  msgstr "Arch. Pagine (Categoria., Tag, Autore o Pagine basate su data)"
1031
 
1032
+ #: ../admin/social_sharing.php:1011 ../admin/like_buttons.php:252
1033
  msgid "BuddyPress activity"
1034
  msgstr "Attività BuddyPress"
1035
 
1036
+ #: ../admin/social_sharing.php:1013 ../admin/like_buttons.php:255
1037
  msgid "BuddyPress group (only at top of content)"
1038
  msgstr "BuddyPress group (solo nella parte superiore del contenuto)"
1039
 
1040
+ #: ../admin/social_sharing.php:1019 ../admin/social_sharing.php:1458
1041
  #: ../admin/like_buttons.php:262 ../admin/like_buttons.php:542
1042
  msgid "BBPress forum"
1043
  msgstr "BBPress forum"
1044
 
1045
+ #: ../admin/social_sharing.php:1022 ../admin/social_sharing.php:1461
1046
  #: ../admin/like_buttons.php:265 ../admin/like_buttons.php:545
1047
  msgid "BBPress topic"
1048
  msgstr "Argomento BBPress"
1049
 
1050
+ #: ../admin/social_sharing.php:1025 ../admin/like_buttons.php:268
1051
  msgid "BBPress reply"
1052
  msgstr "Risposta BBPress"
1053
 
1054
+ #: ../admin/social_sharing.php:1032 ../admin/like_buttons.php:275
1055
  msgid "After individual product at WooCommerce Shop page"
1056
  msgstr "Dopo il singolo prodotto nella pagina Shop WooCommerce"
1057
 
1058
+ #: ../admin/social_sharing.php:1035 ../admin/like_buttons.php:278
1059
  msgid "WooCommerce Product Page"
1060
  msgstr "WooCommerce Pagina Prodotto"
1061
 
1062
+ #: ../admin/social_sharing.php:1038 ../admin/like_buttons.php:281
1063
  msgid "WooCommerce Thankyou Page"
1064
  msgstr "WooCommerce Pagina Thankyou"
1065
 
1066
+ #: ../admin/social_sharing.php:1049
1067
  msgid "Specify the pages where you want to enable Sharing interface"
1068
  msgstr "Specifica le pagine dove vuoi abilitare l'Interfaccia Sharing"
1069
 
1070
+ #: ../admin/social_sharing.php:1057 ../admin/social_sharing.php:1479
1071
  msgid "Show share counts"
1072
  msgstr "Mostra quantità"
1073
 
1074
+ #: ../admin/social_sharing.php:1062 ../admin/social_sharing.php:1484
1075
  #, fuzzy
1076
  msgid ""
1077
  "Share counts are supported for Facebook, Twitter, Linkedin, Buffer, Reddit, "
1080
  "Share counts sono supportati per Facebook, Twitter, Linkedin, GooglePlus, "
1081
  "Delicious, Buffer, Reddit, Pinterest, Stumbleupon, Odnoklassniki e Vkontakte"
1082
 
1083
+ #: ../admin/social_sharing.php:1063 ../admin/social_sharing.php:1485
1084
  #, php-format
1085
  msgid ""
1086
  "To show Twitter share count, you have to click \"Give me my Twitter counts "
1089
  "their website."
1090
  msgstr ""
1091
 
1092
+ #: ../admin/social_sharing.php:1070 ../admin/social_sharing.php:1492
1093
  msgid "If enabled, share counts are displayed above sharing icons."
1094
  msgstr ""
1095
  "Se questa opzione è abilitata, la quantitá di condivisioni sará mostrato "
1096
  "sopra le icone condivise"
1097
 
1098
+ #: ../admin/social_sharing.php:1079 ../admin/social_sharing.php:1501
1099
  msgid "Show total shares"
1100
  msgstr "Mostra totale"
1101
 
1102
+ #: ../admin/social_sharing.php:1089 ../admin/social_sharing.php:1511
1103
  msgid "If enabled, total shares will be displayed with sharing icons"
1104
  msgstr ""
1105
  "Se questa opzione è abilitata, la quantitá di condivisioni sará mostrato con "
1106
  "le icone condivise"
1107
 
1108
+ #: ../admin/social_sharing.php:1098 ../admin/social_sharing.php:1520
1109
  msgid "Enable 'More' icon"
1110
  msgstr "Abilita icona 'More'"
1111
 
1112
+ #: ../admin/social_sharing.php:1108 ../admin/social_sharing.php:1530
1113
  msgid ""
1114
  "If enabled, \"More\" icon will be displayed after selected sharing icons "
1115
  "which shows additional sharing networks in popup"
1118
  "icone sharing selezionate e mostrerà in un popup altri sharing networks "
1119
  "disponibili"
1120
 
1121
+ #: ../admin/social_sharing.php:1125
1122
  msgid "Floating Sharing Interface Options"
1123
  msgstr "Opzioni"
1124
 
1125
+ #: ../admin/social_sharing.php:1131
1126
  msgid "Enable Floating sharing interface"
1127
  msgstr "Abilita Interfaccia Floating"
1128
 
1129
+ #: ../admin/social_sharing.php:1141
1130
  msgid "Master control to enable floating sharing widget"
1131
  msgstr "Controllo Principale per abilitare il floating sharing widget"
1132
 
1133
+ #: ../admin/social_sharing.php:1335
1134
  msgid ""
1135
  "Specify the color or hex code (example #cc78e0) for the background of "
1136
  "vertical sharing bar. Leave empty for transparent. You can get the hex code "
1141
  "Lascia in bianco per transparente. Puoi ottenere il codice hex da <a href="
1142
  "\"http://www.colorpicker.com/\" target=\"_blank\">questo collegamento</a>"
1143
 
1144
+ #: ../admin/social_sharing.php:1365 ../admin/like_buttons.php:450
1145
  msgid "Left offset"
1146
  msgstr "Left offset"
1147
 
1148
+ #: ../admin/social_sharing.php:1375
1149
  msgid ""
1150
  "Specify a number. Increase in number will shift sharing interface towards "
1151
  "right and decrease will shift it towards left. Number can be negative too."
1154
  "verso destra e un numero minore lo muove verso sinistra. Il Numero può anche "
1155
  "essere negativo."
1156
 
1157
+ #: ../admin/social_sharing.php:1385 ../admin/like_buttons.php:470
1158
  msgid "Right offset"
1159
  msgstr "Right offset"
1160
 
1161
+ #: ../admin/social_sharing.php:1395
1162
  msgid ""
1163
  "Specify a number. Increase in number will shift sharing interface towards "
1164
  "left and decrease will shift it towards right. Number can be negative too."
1167
  "verso sinistra e un numero minore lo muove verso destra.Il Numero può anche "
1168
  "essere negativo."
1169
 
1170
+ #: ../admin/social_sharing.php:1404 ../admin/like_buttons.php:489
1171
  msgid "Top offset"
1172
  msgstr "Top offset"
1173
 
1174
+ #: ../admin/social_sharing.php:1414
1175
  msgid ""
1176
  "Specify a number. Increase in number will shift sharing interface towards "
1177
  "bottom and decrease will shift it towards top."
1179
  "Specifica un numero. Un numero piú alto muove l'interfaccia di condivisione "
1180
  "verso il basso e un numero minore lo muove verso l'alto."
1181
 
1182
+ #: ../admin/social_sharing.php:1450 ../admin/like_buttons.php:535
1183
  msgid "BuddyPress group"
1184
  msgstr "BuddyPress group"
1185
 
1186
+ #: ../admin/social_sharing.php:1471
1187
  msgid "Specify the pages where you want to enable vertical Sharing interface"
1188
  msgstr ""
1189
  "Specifica le pagine dove vuoi abilitare l'Interfaccia Sharing Verticale"
1190
 
1191
+ #: ../admin/social_sharing.php:1538
1192
  #, fuzzy
1193
  msgid "Hide floating slider"
1194
  msgstr "Nascondi per gli utenti loggati:"
1195
 
1196
+ #: ../admin/social_sharing.php:1548
1197
  #, fuzzy
1198
  msgid "Hides the slider arrow present below the floating share bar"
1199
  msgstr "Come posso nascondere la freccia dopo la floating sharing bar?"
1200
 
1201
+ #: ../admin/social_sharing.php:1556
1202
  msgid "Vertical floating bar responsiveness"
1203
  msgstr "Responsiveness Vertical"
1204
 
1205
+ #: ../admin/social_sharing.php:1559
1206
  #, php-format
1207
  msgid "Display vertical interface only when screen is wider than %s pixels"
1208
  msgstr ""
1209
  "Mostra interfaccia verticale solo quando lo schermo è più ampio di %s pixels"
1210
 
1211
+ #: ../admin/social_sharing.php:1566
1212
  msgid ""
1213
  "Display vertical interface only when screen is wider than the width "
1214
  "specified."
1216
  "Mostra interfaccia verticale solo quando lo schermo è più ampio rispetto "
1217
  "alla larghezza specificata."
1218
 
1219
+ #: ../admin/social_sharing.php:1574
1220
  msgid "Horizontal floating bar responsiveness"
1221
  msgstr "Responsiveness Horizontal"
1222
 
1223
+ #: ../admin/social_sharing.php:1577
1224
  #, php-format
1225
  msgid ""
1226
  "Stick vertical floating interface horizontally at bottom only when screen is "
1229
  "Posiziona l'Interfaccia Verticale floating in orizzontale e in fondo ma solo "
1230
  "quando lo schermo è più stretto di %s pixel"
1231
 
1232
+ #: ../admin/social_sharing.php:1584
1233
  msgid ""
1234
  "Stick vertical floating interface horizontally at bottom only when screen is "
1235
  "narrower than the width specified"
1237
  "Posiziona l' interfaccia floating orizzontale in fondo solo quando lo "
1238
  "schermo è più stretto della larghezza specificata"
1239
 
1240
+ #: ../admin/social_sharing.php:1594
1241
  msgid "Horizontal floating bar position"
1242
  msgstr "Posizione Horizontal floating bar"
1243
 
1244
+ #: ../admin/social_sharing.php:1597
1245
  #, php-format
1246
  msgid "%s pixels from %s"
1247
  msgstr "%s pixels da %s"
1248
 
1249
+ #: ../admin/social_sharing.php:1598
1250
  msgid "Auto-adjust according to screen width (responsive)"
1251
  msgstr ""
1252
 
1253
+ #: ../admin/social_sharing.php:1605
1254
  msgid "Alignment of horizontal floating interface. Number can be negative too."
1255
  msgstr ""
1256
  "Sallineamento dell'interfaccia floating orizzontale. Questo numero può "
1257
  "essere anche negativo."
1258
 
1259
+ #: ../admin/social_sharing.php:1625
1260
  #, fuzzy
1261
  msgid "Facebook Share Count"
1262
  msgstr "Comentarios Facebook"
1263
 
1264
+ #: ../admin/social_sharing.php:1629
1265
  msgid "Note"
1266
  msgstr ""
1267
 
1268
+ #: ../admin/social_sharing.php:1629
1269
  msgid "Required only to track Facebook share count"
1270
  msgstr ""
1271
 
1272
+ #: ../admin/social_sharing.php:1635 ../admin/social_login.php:161
1273
  msgid "Facebook App ID"
1274
  msgstr "Facebook App ID"
1275
 
1276
+ #: ../admin/social_sharing.php:1645
1277
  #, fuzzy, php-format
1278
  msgid ""
1279
  "Required for Facebook share count to work. Please follow the documentation "
1283
  "Facebook App ID, consulta la documentazione che trovi su <a href=\"%s\" "
1284
  "target=\"_blank\">questo collegamento</a>"
1285
 
1286
+ #: ../admin/social_sharing.php:1653 ../admin/social_login.php:183
1287
  #, fuzzy
1288
  msgid "Facebook App Secret"
1289
  msgstr "Facebook App ID"
1290
 
1291
+ #: ../admin/social_sharing.php:1663
1292
  #, fuzzy, php-format
1293
  msgid ""
1294
  "Required for Facebook share count to work. Please follow the documentation "
1298
  "Facebook App ID, consulta la documentazione che trovi su <a href=\"%s\" "
1299
  "target=\"_blank\">questo collegamento</a>"
1300
 
1301
+ #: ../admin/social_sharing.php:1672 ../admin/like_buttons.php:592
1302
  msgid "Url shortener"
1303
  msgstr "Url shortener"
1304
 
1305
+ #: ../admin/social_sharing.php:1678
1306
  msgid "Use shortlinks already installed"
1307
  msgstr "Utilizza shortlinks installati"
1308
 
1309
+ #: ../admin/social_sharing.php:1688
1310
  msgid "Uses default short url permalinks without using any additional plugin"
1311
  msgstr ""
1312
  "Utilizza gli short url permalink predefiniti senza l'utilizzo di alcun "
1313
  "plugin aggiuntivo"
1314
 
1315
+ #: ../admin/social_sharing.php:1696
1316
  msgid "Enable bit.ly url shortener for sharing"
1317
  msgstr "Abilita bit.ly url shortener"
1318
 
1319
+ #: ../admin/social_sharing.php:1706 ../admin/like_buttons.php:626
1320
  msgid "Master control to enable bit.ly url shortening for sharing"
1321
  msgstr ""
1322
  "Controllo Principale per abilitare bit.ly url shortening per la condivisione"
1323
 
1324
+ #: ../admin/social_sharing.php:1714
1325
  msgid "bit.ly Login"
1326
  msgstr "bit.ly Login"
1327
 
1328
+ #: ../admin/social_sharing.php:1724 ../admin/social_sharing.php:1743
1329
  #, fuzzy, php-format
1330
  msgid "More details on how to get it <a href=\"%s\" target=\"_blank\">here</a>"
1331
  msgstr ""
1333
  "API Key, consulta la documentazione che trovi su <a href=\"%s\" target="
1334
  "\"_blank\">questa pagina</a>"
1335
 
1336
+ #: ../admin/social_sharing.php:1733 ../admin/like_buttons.php:653
1337
  msgid "bit.ly API Key"
1338
  msgstr "bit.ly API Key"
1339
 
1340
+ #: ../admin/social_sharing.php:1752 ../admin/like_buttons.php:672
1341
  msgid "Clear Bitly Cache"
1342
  msgstr "Cancella Bitly Cache"
1343
 
1344
+ #: ../admin/social_sharing.php:1756 ../admin/like_buttons.php:676
1345
  msgid "ShortUrl cache cleared successfully."
1346
  msgstr "ShortUrl cache cancellata correttamente"
1347
 
1348
+ #: ../admin/social_sharing.php:1763 ../admin/like_buttons.php:683
1349
  msgid ""
1350
  "Use this to delete short urls saved in database. Handy, if urls of your "
1351
  "website have been changed but short urls are still being generated for old "
1355
  "Utile, se gli URL del tuo sito web sono stati modificatie ma gli short URL "
1356
  "sono ancora in uso per i vecchi URL."
1357
 
1358
+ #: ../admin/social_sharing.php:1772
1359
  msgid "Share Count Cache"
1360
  msgstr "Share Count Cache"
1361
 
1362
+ #: ../admin/social_sharing.php:1778
1363
  msgid "Refresh Share Count cache every"
1364
  msgstr "Aggiorna cache ogni"
1365
 
1366
+ #: ../admin/social_sharing.php:1783
1367
  msgid "Second(s)"
1368
  msgstr "Secondo(i)"
1369
 
1370
+ #: ../admin/social_sharing.php:1784
1371
  msgid "Minute(s)"
1372
  msgstr "Minuto(i)"
1373
 
1374
+ #: ../admin/social_sharing.php:1785
1375
  msgid "Hour(s)"
1376
  msgstr "Ora(e)"
1377
 
1378
+ #: ../admin/social_sharing.php:1786
1379
  msgid "Day(s)"
1380
  msgstr "Giorno(i)"
1381
 
1382
+ #: ../admin/social_sharing.php:1794
1383
  #, fuzzy, php-format
1384
  msgid ""
1385
  "Frequent cache refreshing results in slower loading of pages with share "
1389
  "Quando Share Count è attivato, frequenti aggiornamenti della cache possono "
1390
  "rallentare il caricamento delle pagine."
1391
 
1392
+ #: ../admin/social_sharing.php:1802
1393
  msgid "Clear Share Counts Cache"
1394
  msgstr "Cancella Share Counts Cache"
1395
 
1396
+ #: ../admin/social_sharing.php:1806
1397
  msgid "Share Counts cache cleared successfully."
1398
  msgstr "Share Counts cache cancellata correttamente"
1399
 
1400
+ #: ../admin/social_sharing.php:1813
1401
  msgid "Use this to clear cached share counts"
1402
  msgstr "Da utilizzare per cancellare la cache degli share counts"
1403
 
1404
+ #: ../admin/social_sharing.php:1822 ../admin/social_sharing.php:1828
1405
  #: ../admin/social_commenting.php:315 ../admin/like_buttons.php:692
1406
  #: ../admin/like_buttons.php:698
1407
  msgid "Language"
1408
  msgstr "Lingua"
1409
 
1410
+ #: ../admin/social_sharing.php:1838
1411
  #, php-format
1412
  msgid ""
1413
  "Enter the code of the language you want to use for like buttons. You can "
1419
  "\"_blank\">questo collegamento</a>. Lasciare in bianco per usare la lingua "
1420
  "predefinita"
1421
 
1422
+ #: ../admin/social_sharing.php:1847
1423
  msgid "Username in sharing"
1424
  msgstr "Username in sharing"
1425
 
1426
+ #: ../admin/social_sharing.php:1853
1427
  msgid "Twitter username (without @)"
1428
  msgstr "Username Twitter (senza @)"
1429
 
1430
+ #: ../admin/social_sharing.php:1863 ../admin/social_sharing.php:1882
1431
  msgid ""
1432
  "Provided username will be appended after the content being shared as \"via "
1433
  "@USERNAME\". Leave empty if you do not want any username in the content "
1436
  "La username fornita viene aggiunta dopo il contenuto condiviso come \"via "
1437
  "@USERNAME\". Lasciare vuoto se non si desidera alcuna username."
1438
 
1439
+ #: ../admin/social_sharing.php:1872
1440
  msgid "Buffer username (without @)"
1441
  msgstr "Username Buffer (senza @)"
1442
 
1443
+ #: ../admin/social_sharing.php:1891
1444
  msgid "AMP"
1445
  msgstr "AMP"
1446
 
1447
+ #: ../admin/social_sharing.php:1897
1448
  msgid "Enable sharing on AMP pages"
1449
  msgstr "Abilita sharing nelle pagine di AMP"
1450
 
1451
+ #: ../admin/social_sharing.php:1907
1452
  msgid "Enable this option to render sharing icons on AMP pages"
1453
  msgstr ""
1454
  "Attiva questa opzione per rendere la condivisione di icone sulle pagine AMP"
1455
 
1456
+ #: ../admin/social_sharing.php:1926 ../admin/like_buttons.php:771
1457
  msgid "myCRED"
1458
  msgstr ""
1459
 
1460
+ #: ../admin/social_sharing.php:1932 ../admin/like_buttons.php:777
1461
  msgid "Append myCRED referral ID to the urls being shared"
1462
  msgstr ""
1463
 
1464
+ #: ../admin/social_sharing.php:1965
1465
  msgid "Facebook Sharing Troubleshooter"
1466
  msgstr "Risoluzione dei problemi Facebook Sharing"
1467
 
1468
+ #: ../admin/social_sharing.php:1970
1469
  msgid ""
1470
  "If Facebook sharing is not working fine, click at the following link and "
1471
  "enter the problematic url (where Facebook sharing is not working properly) "
1477
  "che ti ha dato problemi (dove quindi la condivisione di Facebook non ha "
1478
  "funzionato) e cliicca sul pulsante \"Fetch New Scrape Information\" ."
1479
 
1480
+ #: ../admin/social_sharing.php:1987 ../admin/social_commenting.php:399
1481
+ #: ../admin/social_login.php:1295
1482
  msgid ""
1483
  "<strong>Note:</strong> Plugin will not work on local server. You should have "
1484
  "an online website for the plugin to function properly."
1485
  msgstr ""
1486
 
1487
+ #: ../admin/social_sharing.php:1988
1488
  msgid ""
1489
  "Why is sharer not showing the correct image, title and other meta tags "
1490
  "content?"
1492
  "Perché il contenuto condiviso non mostra l'immagine corretta, il titolo e "
1493
  "altri contenuti meta tag?"
1494
 
1495
+ #: ../admin/social_sharing.php:1989
1496
  #, fuzzy
1497
  msgid "Why is Facebook share count not working?"
1498
  msgstr "Perché gli Share Counts non vengono aggiornati?"
1499
 
1500
+ #: ../admin/social_sharing.php:1992
1501
  msgid "Why is Instagram icon redirecting to Instagram website?"
1502
  msgstr ""
1503
 
1504
+ #: ../admin/social_sharing.php:1993
1505
  msgid ""
1506
  "Instagram icon is there to send website visitors to the Instagram page of "
1507
  "your choice. You can save the desired Instagram handle in \"Instagram "
1509
  "sections."
1510
  msgstr ""
1511
 
1512
+ #: ../admin/social_sharing.php:1996
1513
  #, fuzzy
1514
  msgid "How to customize the url being shared?"
1515
  msgstr "Come posso personalizzare l'aspetto dei singoli share counts?"
1516
 
1517
+ #: ../admin/social_sharing.php:1997
1518
  msgid ""
1519
  "Why are Twitter shares not appearing even after registering at Twitcount.com?"
1520
  msgstr ""
1521
 
1522
+ #: ../admin/social_sharing.php:1998
1523
  msgid ""
1524
  "It takes some time for their service to track the shares made on Twitter "
1525
  "from your website. If you still feel it's taking too long you can contact "
1526
  "their support directly from their website."
1527
  msgstr ""
1528
 
1529
+ #: ../admin/social_sharing.php:2000 ../admin/like_buttons.php:814
1530
  msgid "How to Place Title and Social Share Icons in the Same Row?"
1531
  msgstr ""
1532
 
1533
+ #: ../admin/social_sharing.php:2001
1534
  msgid ""
1535
  "How to restore Social Share counts lost after moving my website to SSL/Https?"
1536
  msgstr ""
1537
 
1538
+ #: ../admin/social_sharing.php:2002 ../admin/social_commenting.php:402
1539
+ #: ../admin/social_login.php:1302
1540
  msgid "Why is my browser blocking some features of the plugin?"
1541
  msgstr ""
1542
 
1543
+ #: ../admin/social_sharing.php:2003
1544
  #, fuzzy
1545
  msgid "Why the color of share icons is not being updated?"
1546
  msgstr "Perché gli Share Counts non vengono aggiornati?"
1547
 
1548
+ #: ../admin/social_sharing.php:2004
1549
  #, fuzzy
1550
  msgid "Why Facebook share counts are not appearing?"
1551
  msgstr "Perché gli Share Counts non vengono aggiornati?"
1552
 
1553
+ #: ../admin/social_sharing.php:2005
1554
  msgid ""
1555
  "How can I show share counts of my website rather than of individual pages/"
1556
  "posts?"
1558
  "Come posso mostrare conteggi del mio sito web, piuttosto che di singole "
1559
  "pagine/post?"
1560
 
1561
+ #: ../admin/social_sharing.php:2006
1562
  msgid "How can I disable sharing on particular page/post?"
1563
  msgstr ""
1564
  "Come è possibile disattivare la condivisione di una pagina/post in "
1565
  "particolare?"
1566
 
1567
+ #: ../admin/social_sharing.php:2007
1568
  msgid "How can I specify minimum sharing count for sharing networks?"
1569
  msgstr ""
1570
  "Come faccio a specificare il conteggio minimo di sharing per la condivisione "
1571
  "di reti?"
1572
 
1573
+ #: ../admin/social_sharing.php:2008
1574
  msgid "How to share specific page?"
1575
  msgstr "Come posso condividere la pagina specifica?"
1576
 
1577
+ #: ../admin/social_sharing.php:2009
1578
  msgid "How to integrate Google Analytics with sharing?"
1579
  msgstr "Come posso integrare Google Analytics con lo sharing?"
1580
 
1581
+ #: ../admin/social_sharing.php:2010
1582
  msgid "How to customize the look of total share counts?"
1583
  msgstr "Come posso personalizzare l'aspetto del totale degli share counts?"
1584
 
1585
+ #: ../admin/social_sharing.php:2011
1586
  msgid "How to customize the look of individual share counts?"
1587
  msgstr "Come posso personalizzare l'aspetto dei singoli share counts?"
1588
 
1589
+ #: ../admin/social_sharing.php:2012
1590
  msgid "How to show Whatsapp icon only on mobile devices?"
1591
  msgstr "Come posso mostrare l'icona Whatsapp solo sui dispositivi mobili?"
1592
 
1593
+ #: ../admin/social_sharing.php:2013
1594
  msgid "How to hide arrow after floating sharing bar?"
1595
  msgstr "Come posso nascondere la freccia dopo la floating sharing bar?"
1596
 
1597
+ #: ../admin/social_sharing.php:2014
1598
  #, fuzzy
1599
  msgid "Why is share count not getting updated?"
1600
  msgstr "Perché gli Share Counts non vengono aggiornati?"
1601
 
1602
+ #: ../admin/social_sharing.php:2015 ../admin/like_buttons.php:812
1603
  msgid "Why is there so much space between like buttons?"
1604
  msgstr "Perché c'è così tanto spazio tra i tasti like?"
1605
 
1606
+ #: ../admin/social_sharing.php:2016 ../admin/like_buttons.php:813
1607
  msgid "Why are floating sharing/like buttons not appearing at homepage?"
1608
  msgstr ""
1609
  "Perché i pulsanti floating di sharing/like non compaiono nella pagina "
1863
  msgid "GDPR"
1864
  msgstr ""
1865
 
1866
+ #: ../admin/social_login.php:44 ../admin/social_login.php:1230
1867
  msgid "XProfile Integration"
1868
  msgstr "XProfile Integration"
1869
 
2615
  msgstr "Abilita Disqus Commenting"
2616
 
2617
  #: ../admin/social_login.php:1135
2618
+ msgid "Text to link to Terms-Conditions page"
2619
  msgstr ""
2620
 
2621
  #: ../admin/social_login.php:1145
2622
+ msgid "Word(s) in the opt-in text to be linked to terms-conditions page"
2623
  msgstr ""
2624
 
2625
  #: ../admin/social_login.php:1153
2626
+ msgid "Terms-Conditions Url"
2627
  msgstr ""
2628
 
2629
  #: ../admin/social_login.php:1163
2630
  #, fuzzy
2631
+ msgid "Url of the terms-conditions page of your website"
2632
+ msgstr "Url della homepage del tuo sito web"
2633
+
2634
+ #: ../admin/social_login.php:1171
2635
+ msgid "Text to link to Privacy Policy page"
2636
+ msgstr ""
2637
+
2638
+ #: ../admin/social_login.php:1181
2639
+ msgid "Word(s) in the opt-in text to be linked to privacy policy page"
2640
+ msgstr ""
2641
+
2642
+ #: ../admin/social_login.php:1189
2643
+ msgid "Privacy Policy Url"
2644
+ msgstr ""
2645
+
2646
+ #: ../admin/social_login.php:1199
2647
+ #, fuzzy
2648
  msgid "Url of the privacy policy page of your website"
2649
  msgstr "Url della homepage del tuo sito web"
2650
 
2651
+ #: ../admin/social_login.php:1250 ../inc/widget.php:260 ../inc/widget.php:438
2652
  #: ../inc/widget.php:602 ../inc/widget.php:750
2653
  msgid "Select"
2654
  msgstr "Selezionare"
2655
 
2656
+ #: ../admin/social_login.php:1281
2657
  msgid "Social Login Shortcode & Widget"
2658
  msgstr "Shortcode & Widget"
2659
 
2660
+ #: ../admin/social_login.php:1282
2661
  msgid "Social Linking Shortcode"
2662
  msgstr "Social Linking Shortcode"
2663
 
2664
+ #: ../admin/social_login.php:1297
2665
  msgid "Why is social login not working?"
2666
  msgstr ""
2667
 
2668
+ #: ../admin/social_login.php:1298
2669
  msgid ""
2670
  "Make sure that App ID and Secret (Client ID and Secret) keys you have saved, "
2671
  "belong to the same app"
2672
  msgstr ""
2673
 
2674
+ #: ../admin/social_login.php:1300
2675
  msgid "Social Login not working with Varnish enabled"
2676
  msgstr ""
2677
 
2678
+ #: ../admin/social_login.php:1301
2679
  msgid ""
2680
  "Why the user is not appearing logged in even after Social Login until the "
2681
  "webpage is refreshed manually?"
languages/super-socializer-pt_BR.mo CHANGED
Binary file
languages/super-socializer-pt_BR.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: 2019-06-25 11:53+0530\n"
6
- "PO-Revision-Date: 2019-06-25 11:53+0530\n"
7
  "Last-Translator: Heateor <hello@heateor.com>\n"
8
  "Language-Team: Heateor <hello@heateor.com>\n"
9
  "Language: en_IN\n"
@@ -15,19 +15,19 @@ msgstr ""
15
  "X-Generator: Poedit 1.5.4\n"
16
  "X-Poedit-SearchPath-0: ..\n"
17
 
18
- #: ../super_socializer.php:430
19
  msgid "Problem fetching access token: "
20
  msgstr ""
21
 
22
- #: ../super_socializer.php:434 ../super_socializer.php:448
23
  msgid "Facebook SDK returned an error: "
24
  msgstr ""
25
 
26
- #: ../super_socializer.php:444
27
  msgid "Graph returned an error: "
28
  msgstr ""
29
 
30
- #: ../super_socializer.php:610
31
  #, fuzzy
32
  msgid ""
33
  "cURL is not enabled at your website server. Please contact your website "
@@ -36,7 +36,7 @@ msgstr ""
36
  "Certifique que a cURL esteja habilitada no seu servidor web. Você poderá ter "
37
  "que contatar o administrador do servidor do seu website para verificar isso."
38
 
39
- #: ../super_socializer.php:637
40
  #, fuzzy, php-format
41
  msgid ""
42
  "Enter exactly the following url in <strong>Website</strong> option in your "
@@ -46,7 +46,7 @@ msgstr ""
46
  "<strong>Callback Url</strong> nas opções do seu app Twitter (veja o passo 3 "
47
  "%s)"
48
 
49
- #: ../super_socializer.php:640
50
  #, fuzzy, php-format
51
  msgid ""
52
  "Enter exactly the following url in <strong>Callback URLs</strong> option in "
@@ -56,7 +56,7 @@ msgstr ""
56
  "<strong>Callback Url</strong> nas opções do seu app Twitter (veja o passo 3 "
57
  "%s)"
58
 
59
- #: ../super_socializer.php:643
60
  msgid ""
61
  "Make sure cURL is enabled at your website server. You may need to contact "
62
  "the server administrator of your website to verify this"
@@ -64,75 +64,69 @@ msgstr ""
64
  "Certifique que a cURL esteja habilitada no seu servidor web. Você poderá ter "
65
  "que contatar o administrador do servidor do seu website para verificar isso."
66
 
67
- #: ../super_socializer.php:644
68
- #, php-format
69
- msgid ""
70
- "Make sure that \"Enable Callback Locking\" option is disabled. See step 4 %s"
71
- msgstr ""
72
-
73
- #: ../super_socializer.php:907 ../helper.php:976
74
  msgid "Please verify your email address to login."
75
  msgstr "Por favor verifique seu endereço de email no login."
76
 
77
- #: ../super_socializer.php:907
78
  msgid "Your email has been verified. Now you can login to your account"
79
  msgstr "Seu email foi verificado. Agora você pode fazer login na sua conta"
80
 
81
- #: ../super_socializer.php:911
82
  msgid "Notification"
83
  msgstr "Notificaçao"
84
 
85
- #: ../super_socializer.php:929 ../admin/social_login.php:805
86
  msgid "Email required"
87
  msgstr "Necessário email"
88
 
89
- #: ../super_socializer.php:932
90
  msgid "Please check your email inbox to complete the registration."
91
  msgstr "Por favor verifique sua caixa de email para completar o registro."
92
 
93
- #: ../super_socializer.php:939 ../helper.php:508
94
  msgid "Enter your LiveJournal username"
95
  msgstr ""
96
 
97
- #: ../super_socializer.php:1011
98
  msgid "Leave a reply"
99
  msgstr "Deixe uma resposta"
100
 
101
- #: ../super_socializer.php:1023 ../inc/social_sharing.php:241
102
  msgid "Shares"
103
  msgstr ""
104
 
105
- #: ../super_socializer.php:1023 ../inc/social_sharing.php:241
106
  msgid "Share"
107
  msgstr ""
108
 
109
- #: ../super_socializer.php:1023
110
  #, fuzzy
111
  msgid "Link copied."
112
  msgstr "LinkedIn"
113
 
114
- #: ../super_socializer.php:1269
115
  msgid "Super Socializer - General Options"
116
  msgstr "Super Socializer - Opções Gerais"
117
 
118
- #: ../super_socializer.php:1269 ../admin/general_options.php:15
119
  #: ../admin/social_commenting.php:47
120
  msgid "General Options"
121
  msgstr "Opções Gerais"
122
 
123
- #: ../super_socializer.php:1337 ../helper.php:898
124
  msgid "Social Avatar"
125
  msgstr "Avatar Social"
126
 
127
- #: ../super_socializer.php:1340
128
  msgid "Small Avatar Url"
129
  msgstr "Url para Avatar pequeno"
130
 
131
- #: ../super_socializer.php:1344
132
  msgid "Large Avatar Url"
133
  msgstr "Url para Avatar Grande"
134
 
135
- #: ../super_socializer.php:1348 ../helper.php:901
136
  msgid ""
137
  "Do not fetch and update social avatar from my profile, next time I Social "
138
  "Login"
@@ -140,91 +134,85 @@ msgstr ""
140
  "Não busque ou atualize o avatar social do meu perfil, na próxima vez farei a "
141
  "Autenticação Social"
142
 
143
- #: ../super_socializer.php:1352 ../helper.php:902
144
  msgid "Update social avatar, next time I Social Login"
145
  msgstr "Atualize o avatar social, na próxima vez farei a Autenticação Social"
146
 
147
- #: ../super_socializer.php:1425 ../super_socializer.php:2197
148
- msgid ""
149
- "Your browser is blocking some features of this website. Please follow the "
150
- "instructions at {support_url} to unblock these."
151
- msgstr ""
152
-
153
- #: ../super_socializer.php:1431
154
  msgid "Login with your Social ID"
155
  msgstr ""
156
 
157
- #: ../super_socializer.php:1432
158
  msgid "Email you entered is already registered or invalid"
159
  msgstr "Email fornecido já está registrado ou é inválido"
160
 
161
- #: ../super_socializer.php:1437
162
  msgid "Please enter a valid email address. You might be required to verify it"
163
  msgstr ""
164
  "Por favor forneça um endereço de email válido. Você pode ser solicitado a "
165
  "confirmá-lo"
166
 
167
- #: ../super_socializer.php:1441 ../super_socializer.php:2121
168
  msgid "Link your social account to login to your account at this website"
169
  msgstr "Associe sua conta social ao login de sua conta neste website"
170
 
171
- #: ../super_socializer.php:1687
172
  msgid "Thanks for installing Super Socializer plugin"
173
  msgstr ""
174
 
175
- #: ../super_socializer.php:1689
176
  msgid "Configure the Plugin"
177
  msgstr ""
178
 
179
- #: ../super_socializer.php:1700
180
  msgid ""
181
  "Update \"Facebook Comments Moderation\" add-on for compatibility with "
182
  "current version of Super Socialzer"
183
  msgstr ""
184
 
185
- #: ../super_socializer.php:1709
186
  msgid ""
187
  "Update \"Facebook Comments Notifier\" add-on for compatibility with current "
188
  "version of Super Socialzer"
189
  msgstr ""
190
 
191
- #: ../super_socializer.php:1718
192
  msgid ""
193
  "Update \"Social Login Buttons\" add-on for compatibility with current "
194
  "version of Super Socialzer"
195
  msgstr ""
196
 
197
- #: ../super_socializer.php:1727
198
  msgid ""
199
  "Update \"Social Share myCRED Integration\" add-on for maximum compatibility "
200
  "with current version of Super Socialzer"
201
  msgstr ""
202
 
203
- #: ../super_socializer.php:1736
204
  msgid ""
205
  "Update \"Social Login myCRED Integration\" add-on for maximum compatibility "
206
  "with current version of Super Socialzer"
207
  msgstr ""
208
 
209
- #: ../super_socializer.php:1743
210
  msgid ""
211
  "Update \"Social Login myCRED Integration\" add-on for compatibility with "
212
  "LiveJournal Login of Super Socialzer"
213
  msgstr ""
214
 
215
- #: ../super_socializer.php:1754
216
  #, php-format
217
  msgid ""
218
  "To continue using Steam login save Steam API key <a href=\"%s\">here</a>"
219
  msgstr ""
220
 
221
- #: ../super_socializer.php:1770
222
  #, php-format
223
  msgid ""
224
  "To continue using Social Login, save the secret keys <a href=\"%s\">here</a>"
225
  msgstr ""
226
 
227
- #: ../super_socializer.php:1794
228
  #, php-format
229
  msgid ""
230
  "Add %s in \"Valid OAuth redirect URIs\" option in your Facebook app settings "
@@ -232,14 +220,14 @@ msgid ""
232
  "target=\"_blank\">here</a>"
233
  msgstr ""
234
 
235
- #: ../super_socializer.php:1794 ../super_socializer.php:1819
236
- #: ../super_socializer.php:1844 ../super_socializer.php:1869
237
- #: ../super_socializer.php:1902 ../super_socializer.php:1930
238
- #: ../super_socializer.php:1957 ../super_socializer.php:2034
239
  msgid "Okay"
240
  msgstr ""
241
 
242
- #: ../super_socializer.php:1819
243
  #, php-format
244
  msgid ""
245
  "Add %s in \"Callback URLs\" option in your Twitter app settings for Twitter "
@@ -247,7 +235,7 @@ msgid ""
247
  "\">here</a>"
248
  msgstr ""
249
 
250
- #: ../super_socializer.php:1844
251
  #, php-format
252
  msgid ""
253
  "Add %s in \"Authorized Redirect URLs\" option in your Linkedin app settings "
@@ -255,7 +243,7 @@ msgid ""
255
  "target=\"_blank\">here</a>"
256
  msgstr ""
257
 
258
- #: ../super_socializer.php:1869
259
  #, php-format
260
  msgid ""
261
  "Add %s in \"Authorized redirect URIs\" option in your Google client settings "
@@ -263,13 +251,13 @@ msgid ""
263
  "target=\"_blank\">here</a>"
264
  msgstr ""
265
 
266
- #: ../super_socializer.php:1880
267
  #, php-format
268
  msgid ""
269
  "Save the url of privacy policy page of your website <a href=\"%s\">here</a>"
270
  msgstr ""
271
 
272
- #: ../super_socializer.php:1902
273
  #, php-format
274
  msgid ""
275
  "This plugin is GDPR compliant. You need to update the privacy policy of your "
@@ -277,7 +265,7 @@ msgid ""
277
  "\"%s\" target=\"_blank\">here</a>"
278
  msgstr ""
279
 
280
- #: ../super_socializer.php:1930
281
  #, php-format
282
  msgid ""
283
  "Now plugin supports a new service Twitcount.com to show Twitter shares. To "
@@ -286,7 +274,7 @@ msgid ""
286
  "your website %s with them. No need to copy-paste any code from their website."
287
  msgstr ""
288
 
289
- #: ../super_socializer.php:1957
290
  #, php-format
291
  msgid ""
292
  "Replace url saved in \"Callback URLs\" option in your Twitter app settings "
@@ -294,7 +282,7 @@ msgid ""
294
  "\"%s\" target=\"_blank\">here</a>"
295
  msgstr ""
296
 
297
- #: ../super_socializer.php:1982
298
  #, php-format
299
  msgid ""
300
  "If you cannot get Linkedin login to work after updating the plugin, replace "
@@ -302,11 +290,11 @@ msgid ""
302
  "For more details, check step 6 <a href=\"%s\" target=\"_blank\">here</a>"
303
  msgstr ""
304
 
305
- #: ../super_socializer.php:1982 ../super_socializer.php:2009
306
  msgid "Dismiss"
307
  msgstr ""
308
 
309
- #: ../super_socializer.php:2008
310
  #, php-format
311
  msgid ""
312
  "Save Facebook App ID and Secret keys in \"Standard Interface\" and/or "
@@ -315,7 +303,7 @@ msgid ""
315
  "that, clear share counts cache from \"Miscellaneous\" section"
316
  msgstr ""
317
 
318
- #: ../super_socializer.php:2034
319
  #, php-format
320
  msgid ""
321
  "Your website visitors will see a popup notification (only once) if their "
@@ -325,11 +313,17 @@ msgid ""
325
  "features\" option <a href=\"%s\">here</a>"
326
  msgstr ""
327
 
 
 
 
 
 
 
328
  #: ../helper.php:8
329
  msgid "Settings saved"
330
  msgstr "Configurações salvas"
331
 
332
- #: ../helper.php:8 ../admin/social_sharing.php:42
333
  msgid "Dismiss this notice"
334
  msgstr "Dispense este aviso"
335
 
@@ -419,9 +413,9 @@ msgstr "Avatar Pequeno"
419
  msgid "Large Avatar"
420
  msgstr "Avatar Grande"
421
 
422
- #: ../helper.php:913 ../admin/general_options.php:132
423
- #: ../admin/social_sharing.php:2020 ../admin/social_commenting.php:413
424
- #: ../admin/social_login.php:1277 ../admin/like_buttons.php:826
425
  msgid "Save Changes"
426
  msgstr "Salvar Alterações"
427
 
@@ -442,10 +436,10 @@ msgstr ""
442
  msgid "Something bad happened"
443
  msgstr ""
444
 
445
- #: ../admin/general_options.php:7 ../admin/general_options.php:136
446
- #: ../admin/social_sharing.php:5 ../admin/social_sharing.php:2024
447
  #: ../admin/social_commenting.php:5 ../admin/social_commenting.php:417
448
- #: ../admin/social_login.php:5 ../admin/social_login.php:1281
449
  #: ../admin/like_buttons.php:6 ../admin/like_buttons.php:830
450
  #, fuzzy, php-format
451
  msgid ""
@@ -491,55 +485,34 @@ msgstr ""
491
  "instalar o plugin da próxima vez."
492
 
493
  #: ../admin/general_options.php:75
494
- msgid ""
495
- "Show popup notification to users if their browsers block the plugin features"
496
- msgstr ""
497
-
498
- #: ../admin/general_options.php:85
499
- msgid ""
500
- "If enabled, your website visitors will see a popup notification (only once) "
501
- "if their browsers block any of the features of the plugin so that they can "
502
- "change their browser settings to unblock these."
503
- msgstr ""
504
-
505
- #: ../admin/general_options.php:95
506
- msgid "Message to show in popup notification"
507
- msgstr ""
508
-
509
- #: ../admin/general_options.php:105
510
- msgid ""
511
- "Use {support_url} placeholder to show support documentation url in message"
512
- msgstr ""
513
-
514
- #: ../admin/general_options.php:114
515
  msgid "Custom CSS"
516
  msgstr "CSS Personalizado"
517
 
518
- #: ../admin/general_options.php:124
519
  msgid "You can specify any additional CSS rules (without &lt;style&gt; tag)"
520
  msgstr ""
521
  "Você poderá especificar qualquer regra adicional de CSS (sem a tag &lt;"
522
  "style&gt; )"
523
 
524
- #: ../admin/general_options.php:147 ../admin/social_sharing.php:2030
525
- #: ../admin/social_commenting.php:423 ../admin/social_login.php:1287
526
- #: ../admin/like_buttons.php:836
527
  #, fuzzy
528
  msgid "Instagram Shoutout"
529
  msgstr "Instagram"
530
 
531
- #: ../admin/general_options.php:149 ../admin/social_sharing.php:2032
532
- #: ../admin/social_commenting.php:425 ../admin/social_login.php:1289
533
- #: ../admin/like_buttons.php:838
534
  msgid ""
535
  "If you can send (to hello@heateor.com) how our plugin is helping your "
536
  "business, we can share it on Instagram. You can also send any relevant "
537
  "hashtags and people to mention in the Instagram post."
538
  msgstr ""
539
 
540
- #: ../admin/general_options.php:150 ../admin/social_sharing.php:2033
541
- #: ../admin/social_commenting.php:426 ../admin/social_login.php:1290
542
- #: ../admin/like_buttons.php:839
543
  msgid ""
544
  "<b>Example</b> - Blah-Blah Online Coaching teaches various programming "
545
  "language courses through their website. They have emerged as one of the most "
@@ -548,9 +521,9 @@ msgid ""
548
  "time."
549
  msgstr ""
550
 
551
- #: ../admin/general_options.php:151 ../admin/social_sharing.php:2034
552
- #: ../admin/social_commenting.php:427 ../admin/social_login.php:1291
553
- #: ../admin/like_buttons.php:840
554
  msgid ""
555
  "@blahblahonlinecoaching proudly use #SuperSocializer to enable social "
556
  "features at their website, such as - Social Login, Social Share and Social "
@@ -661,59 +634,59 @@ msgstr "Controle mestre para habilitar o Compartilhamento Social"
661
  msgid "Recover Social Share Counts Lost After Moving to SSL/Https"
662
  msgstr ""
663
 
664
- #: ../admin/social_sharing.php:42 ../admin/social_sharing.php:1983
665
  msgid ""
666
  "Save Facebook App Id and Secret in the \"Miscellaneous\" section for "
667
  "Facebook share count to work"
668
  msgstr ""
669
 
670
- #: ../admin/social_sharing.php:49
671
  msgid "Theme Selection"
672
  msgstr "Escolha de Temas"
673
 
674
- #: ../admin/social_sharing.php:50 ../admin/like_buttons.php:41
675
  msgid "Standard Interface"
676
  msgstr "Interface Padrão"
677
 
678
- #: ../admin/social_sharing.php:51 ../admin/like_buttons.php:42
679
  msgid "Floating Interface"
680
  msgstr "Interface Flutuante"
681
 
682
- #: ../admin/social_sharing.php:52 ../admin/like_buttons.php:43
683
  msgid "Miscellaneous"
684
  msgstr "Miscelânia"
685
 
686
- #: ../admin/social_sharing.php:56 ../admin/like_buttons.php:47
687
  msgid "3rd Party Integration"
688
  msgstr ""
689
 
690
- #: ../admin/social_sharing.php:60 ../admin/social_sharing.php:1945
691
- #: ../admin/social_sharing.php:1947 ../admin/social_login.php:46
692
- #: ../admin/social_login.php:1243 ../admin/like_buttons.php:51
693
  #: ../admin/like_buttons.php:797
694
  msgid "Shortcode & Widget"
695
  msgstr "Shortcode & Widget"
696
 
697
- #: ../admin/social_sharing.php:61
698
  msgid "Troubleshooter"
699
  msgstr "Resolução de Problemas"
700
 
701
- #: ../admin/social_sharing.php:62 ../admin/social_sharing.php:1978
702
  #: ../admin/social_commenting.php:40 ../admin/social_commenting.php:397
703
- #: ../admin/social_login.php:47 ../admin/social_login.php:1257
704
  #: ../admin/like_buttons.php:52 ../admin/like_buttons.php:810
705
  msgid "FAQ"
706
  msgstr "P&R"
707
 
708
- #: ../admin/social_sharing.php:70
709
  msgid "Standard interface theme"
710
  msgstr "Tema padrão da interface"
711
 
712
- #: ../admin/social_sharing.php:75 ../admin/social_sharing.php:382
713
  msgid "Icon Preview"
714
  msgstr "Visualização do Ícone"
715
 
716
- #: ../admin/social_sharing.php:147 ../admin/social_sharing.php:455
717
  msgid ""
718
  "Do not forget to save the configuration after making changes by clicking the "
719
  "save button below"
@@ -721,57 +694,57 @@ msgstr ""
721
  "Não esqueça de salvar as configurações após realizar as mudanças clicando no "
722
  "botão de salvar abaixo"
723
 
724
- #: ../admin/social_sharing.php:154 ../admin/social_sharing.php:462
725
  msgid "Shape"
726
  msgstr "Forma"
727
 
728
- #: ../admin/social_sharing.php:158 ../admin/social_sharing.php:466
729
  #: ../inc/widget.php:951
730
  msgid "Round"
731
  msgstr "Arredondada"
732
 
733
- #: ../admin/social_sharing.php:160 ../admin/social_sharing.php:468
734
  #: ../inc/widget.php:952
735
  msgid "Square"
736
  msgstr "Quadrada"
737
 
738
- #: ../admin/social_sharing.php:162 ../admin/social_sharing.php:470
739
  msgid "Rectangle"
740
  msgstr "Retangular"
741
 
742
- #: ../admin/social_sharing.php:169 ../admin/social_sharing.php:477
743
  msgid "Shape of the sharing icons"
744
  msgstr "Forma dos ícones de compartilhameto"
745
 
746
- #: ../admin/social_sharing.php:178 ../admin/social_sharing.php:486
747
  msgid "Size (in pixels)"
748
  msgstr "Tamanho (em pixels)"
749
 
750
- #: ../admin/social_sharing.php:194 ../admin/social_sharing.php:502
751
  msgid "Size of the sharing icons"
752
  msgstr "Tamanho dos ícones de compartilhameto"
753
 
754
- #: ../admin/social_sharing.php:204 ../admin/social_sharing.php:512
755
  msgid "Width (in pixels)"
756
  msgstr "Largura (em pixels)"
757
 
758
- #: ../admin/social_sharing.php:220 ../admin/social_sharing.php:528
759
  msgid "Width of the sharing icons"
760
  msgstr "Largura dos ícones de compartilhameto"
761
 
762
- #: ../admin/social_sharing.php:228 ../admin/social_sharing.php:536
763
  msgid "Height (in pixels)"
764
  msgstr "Altura (em pixels)"
765
 
766
- #: ../admin/social_sharing.php:244 ../admin/social_sharing.php:552
767
  msgid "Height of the sharing icons"
768
  msgstr "Altura dos ícones de compartilhameto"
769
 
770
- #: ../admin/social_sharing.php:254 ../admin/social_sharing.php:562
771
  msgid "Border radius (in pixels)"
772
  msgstr "Raio da borda (em pixels)"
773
 
774
- #: ../admin/social_sharing.php:264 ../admin/social_sharing.php:572
775
  msgid ""
776
  "Specify a value for rounded corners. More the value, more rounded will the "
777
  "corners be. Leave empty for sharp corners."
@@ -779,23 +752,23 @@ msgstr ""
779
  "Especifique um valor para os cantos arredondados. Quanto maior o valor, mas "
780
  "arredondados serão os cantos. Deixe em branco para cantos precisos."
781
 
782
- #: ../admin/social_sharing.php:273 ../admin/social_sharing.php:581
783
  msgid "Logo Color"
784
  msgstr "Cor do logo"
785
 
786
- #: ../admin/social_sharing.php:277 ../admin/social_sharing.php:298
787
- #: ../admin/social_sharing.php:318 ../admin/social_sharing.php:585
788
- #: ../admin/social_sharing.php:606 ../admin/social_sharing.php:625
789
  msgid "Default"
790
  msgstr "Padrão"
791
 
792
- #: ../admin/social_sharing.php:279 ../admin/social_sharing.php:299
793
- #: ../admin/social_sharing.php:323 ../admin/social_sharing.php:587
794
- #: ../admin/social_sharing.php:607 ../admin/social_sharing.php:630
795
  msgid "On Hover"
796
  msgstr "Em foco"
797
 
798
- #: ../admin/social_sharing.php:287 ../admin/social_sharing.php:595
799
  msgid ""
800
  "Specify the color or hex code (example #cc78e0) for the logo of icon. Leave "
801
  "empty for default. You can get the hex code of the required color from <a "
@@ -806,13 +779,13 @@ msgstr ""
806
  "hexadecimal que você requer por meio deste link <a href=\\\"http://www."
807
  "colorpicker.com/\\\" target=\\\"_blank\\\"> </a>"
808
 
809
- #: ../admin/social_sharing.php:295 ../admin/social_sharing.php:603
810
- #: ../admin/social_sharing.php:1318 ../admin/like_buttons.php:410
811
  #: ../inc/widget.php:460 ../inc/widget.php:772
812
  msgid "Background Color"
813
  msgstr "Cor de Fundo"
814
 
815
- #: ../admin/social_sharing.php:306 ../admin/social_sharing.php:614
816
  msgid ""
817
  "Specify the color or hex code (example #cc78e0) for icon background. Save "
818
  "\"transparent\" for transparent background. Leave empty for default. You can "
@@ -825,280 +798,280 @@ msgstr ""
825
  "hexadecimal que você requer por meio deste link <a href=\\\"http://www."
826
  "colorpicker.com/\\\" target=\\\"_blank\\\"> </a>"
827
 
828
- #: ../admin/social_sharing.php:314 ../admin/social_sharing.php:622
829
  msgid "Border"
830
  msgstr "Borda"
831
 
832
- #: ../admin/social_sharing.php:320 ../admin/social_sharing.php:325
833
- #: ../admin/social_sharing.php:627 ../admin/social_sharing.php:632
834
  msgid "Border Width"
835
  msgstr "Largura da Borda"
836
 
837
- #: ../admin/social_sharing.php:321 ../admin/social_sharing.php:326
838
- #: ../admin/social_sharing.php:628 ../admin/social_sharing.php:633
839
  msgid "Border Color"
840
  msgstr "Cor da Borda"
841
 
842
- #: ../admin/social_sharing.php:333 ../admin/social_sharing.php:640
843
  msgid "Icon border"
844
  msgstr "Ícone da borda"
845
 
846
- #: ../admin/social_sharing.php:341 ../admin/social_sharing.php:648
847
  msgid "Counter Position"
848
  msgstr "Posição do Contador"
849
 
850
- #: ../admin/social_sharing.php:341 ../admin/social_sharing.php:648
851
  msgid "(applies, if counter enabled)"
852
  msgstr "(aplica-se, caso o contador esteja habilitado)"
853
 
854
- #: ../admin/social_sharing.php:345 ../admin/social_sharing.php:652
855
- #: ../admin/social_sharing.php:935 ../admin/social_sharing.php:1340
856
  #: ../admin/like_buttons.php:183 ../admin/like_buttons.php:432
857
  #: ../inc/widget.php:446 ../inc/widget.php:758
858
  msgid "Left"
859
  msgstr "Esquerda"
860
 
861
- #: ../admin/social_sharing.php:347 ../admin/social_sharing.php:654
862
  msgid "Top"
863
  msgstr "Acima"
864
 
865
- #: ../admin/social_sharing.php:349 ../admin/social_sharing.php:656
866
- #: ../admin/social_sharing.php:937 ../admin/social_sharing.php:1341
867
  #: ../admin/like_buttons.php:185 ../admin/like_buttons.php:433
868
  #: ../inc/widget.php:447 ../inc/widget.php:759
869
  msgid "Right"
870
  msgstr "Direita"
871
 
872
- #: ../admin/social_sharing.php:351 ../admin/social_sharing.php:658
873
  msgid "Bottom"
874
  msgstr "Abaixo"
875
 
876
- #: ../admin/social_sharing.php:353 ../admin/social_sharing.php:660
877
  msgid "Inner Left"
878
  msgstr "Inner a Esquerda"
879
 
880
- #: ../admin/social_sharing.php:355 ../admin/social_sharing.php:662
881
  msgid "Inner Top"
882
  msgstr "Inner Acima"
883
 
884
- #: ../admin/social_sharing.php:357 ../admin/social_sharing.php:664
885
  msgid "Inner Right"
886
  msgstr "Inner a Direita"
887
 
888
- #: ../admin/social_sharing.php:359 ../admin/social_sharing.php:666
889
  msgid "Inner Bottom"
890
  msgstr "Inner a Baixo"
891
 
892
- #: ../admin/social_sharing.php:367 ../admin/social_sharing.php:674
893
  msgid "Position of share counter"
894
  msgstr "Posição do contador de compartilhamento"
895
 
896
- #: ../admin/social_sharing.php:377
897
  msgid "Floating interface theme"
898
  msgstr "Tema da inteface flutuante"
899
 
900
- #: ../admin/social_sharing.php:690
901
  msgid "Standard Sharing Interface Options"
902
  msgstr "Opções de Interface de Compartilhamento Padrão"
903
 
904
- #: ../admin/social_sharing.php:696
905
  msgid "Enable Standard sharing interface"
906
  msgstr "Habilita interface de Compartilhamento padrão"
907
 
908
- #: ../admin/social_sharing.php:706
909
  msgid "Master control to enable standard sharing"
910
  msgstr "\"Controle Mestre para habilitar o compartilhamento padrão"
911
 
912
- #: ../admin/social_sharing.php:716 ../admin/social_sharing.php:1144
913
  #: ../admin/like_buttons.php:86 ../admin/like_buttons.php:336
914
  msgid "Target Url"
915
  msgstr "Url Destino"
916
 
917
- #: ../admin/social_sharing.php:720 ../admin/social_sharing.php:1148
918
  #: ../admin/like_buttons.php:90 ../admin/like_buttons.php:340
919
  msgid "Url of the webpage where icons are located (default)"
920
  msgstr "Url das webpages onde os ícones estão localizados (padrão)"
921
 
922
- #: ../admin/social_sharing.php:722 ../admin/social_sharing.php:1150
923
  #: ../admin/like_buttons.php:92 ../admin/like_buttons.php:342
924
  msgid "Url of the homepage of your website"
925
  msgstr "Url da homepage do seu website"
926
 
927
- #: ../admin/social_sharing.php:724 ../admin/social_sharing.php:1152
928
  #: ../admin/like_buttons.php:94 ../admin/like_buttons.php:344
929
  msgid "Custom url"
930
  msgstr "Url personalizada"
931
 
932
- #: ../admin/social_sharing.php:731 ../admin/social_sharing.php:1159
933
  msgid "Url to share"
934
  msgstr "Url para compartilhar"
935
 
936
- #: ../admin/social_sharing.php:739 ../admin/social_login.php:532
937
  #: ../admin/social_login.php:927 ../admin/like_buttons.php:109
938
  #: ../inc/widget.php:945
939
  msgid "Title"
940
  msgstr "Título"
941
 
942
- #: ../admin/social_sharing.php:749
943
  msgid "The text to display above the sharing interface"
944
  msgstr "Texto a ser exibido acima da interface de compartilhamento"
945
 
946
- #: ../admin/social_sharing.php:774 ../admin/social_sharing.php:1168
947
  #, fuzzy
948
  msgid "Instagram username"
949
  msgstr "Instagram"
950
 
951
- #: ../admin/social_sharing.php:784 ../admin/social_sharing.php:1178
952
  msgid ""
953
  "Username of the Instagram account you want to redirect users to, on clicking "
954
  "the icon"
955
  msgstr ""
956
 
957
- #: ../admin/social_sharing.php:794 ../admin/social_sharing.php:1188
958
  #, fuzzy
959
  msgid "HTML ID of container element of comment form"
960
  msgstr "HTML ID do comentário do container"
961
 
962
- #: ../admin/social_sharing.php:804 ../admin/social_sharing.php:1198
963
  msgid ""
964
  "HTML ID of the element you want to focus on the webpage, on click of Comment "
965
  "icon."
966
  msgstr ""
967
 
968
- #: ../admin/social_sharing.php:818 ../admin/social_sharing.php:1207
969
  msgid "Rearrange icons"
970
  msgstr "Rearranjar ícones"
971
 
972
- #: ../admin/social_sharing.php:879 ../admin/social_sharing.php:1266
973
  msgid "Drag the icons to rearrange in desired order"
974
  msgstr "Arraste os ícones para rearanjar na ordem desejada"
975
 
976
- #: ../admin/social_sharing.php:887 ../admin/social_sharing.php:1274
977
  msgid "Select Sharing Services"
978
  msgstr "Selecione os Serviços Compartilhados"
979
 
980
- #: ../admin/social_sharing.php:894 ../admin/social_sharing.php:1281
981
  msgid "Select sharing services to show in social share bar"
982
  msgstr ""
983
  "Selecione os serviços compartilhados para exibir na barra de "
984
  "compartilhamento social"
985
 
986
- #: ../admin/social_sharing.php:912 ../admin/social_sharing.php:1299
987
  #, fuzzy
988
  msgid "Search social network"
989
  msgstr "como rede social primária"
990
 
991
- #: ../admin/social_sharing.php:931 ../admin/social_sharing.php:1336
992
  #: ../admin/like_buttons.php:179 ../admin/like_buttons.php:428
993
  msgid "Horizontal alignment"
994
  msgstr "Alinhamento horizonal"
995
 
996
- #: ../admin/social_sharing.php:936 ../admin/like_buttons.php:184
997
  msgid "Center"
998
  msgstr "Centro"
999
 
1000
- #: ../admin/social_sharing.php:945 ../admin/social_sharing.php:1349
1001
  msgid "Horizontal alignment of the sharing interface"
1002
  msgstr "Alinhamento horizontal da interface de compartilhamento"
1003
 
1004
- #: ../admin/social_sharing.php:953 ../admin/like_buttons.php:201
1005
  msgid "Position with respect to content"
1006
  msgstr "Posição em relação ao conteúdo"
1007
 
1008
- #: ../admin/social_sharing.php:957 ../admin/like_buttons.php:205
1009
  msgid "Top of the content"
1010
  msgstr "Acima do conteúdo"
1011
 
1012
- #: ../admin/social_sharing.php:959 ../admin/like_buttons.php:207
1013
  msgid "Bottom of the content"
1014
  msgstr "Abaixo do conteúdo"
1015
 
1016
- #: ../admin/social_sharing.php:966
1017
  msgid "Specify position of the sharing interface with respect to the content"
1018
  msgstr ""
1019
  "Especifique a posição da interface de compartilhamento em relação ao conteúdo"
1020
 
1021
- #: ../admin/social_sharing.php:974 ../admin/social_sharing.php:1415
1022
  msgid "Placement"
1023
  msgstr "Localização"
1024
 
1025
- #: ../admin/social_sharing.php:978 ../admin/social_sharing.php:1419
1026
  #: ../admin/social_login.php:866 ../admin/social_login.php:896
1027
  #: ../admin/like_buttons.php:226 ../admin/like_buttons.php:511
1028
  msgid "Homepage"
1029
  msgstr "Homepage"
1030
 
1031
- #: ../admin/social_sharing.php:980 ../admin/social_sharing.php:1421
1032
  #: ../admin/like_buttons.php:228 ../admin/like_buttons.php:513
1033
  msgid "Posts"
1034
  msgstr "Posts"
1035
 
1036
- #: ../admin/social_sharing.php:982 ../admin/social_sharing.php:1423
1037
  #: ../admin/like_buttons.php:230 ../admin/like_buttons.php:515
1038
  msgid "Pages"
1039
  msgstr "Páginas"
1040
 
1041
- #: ../admin/social_sharing.php:984 ../admin/social_sharing.php:1425
1042
  #: ../admin/like_buttons.php:232 ../admin/like_buttons.php:517
1043
  #, fuzzy
1044
  msgid "Excerpts and Posts page"
1045
  msgstr "Pedaços (na Homepage)"
1046
 
1047
- #: ../admin/social_sharing.php:986 ../admin/social_sharing.php:1427
1048
  #: ../admin/like_buttons.php:234 ../admin/like_buttons.php:519
1049
  msgid "Category Archives"
1050
  msgstr "Arquivos de Categorias"
1051
 
1052
- #: ../admin/social_sharing.php:988 ../admin/social_sharing.php:1429
1053
  #: ../admin/like_buttons.php:236 ../admin/like_buttons.php:521
1054
  msgid "Archive Pages (Category, Tag, Author or Date based pages)"
1055
  msgstr "Página de arquivo (Páginas baseadas em Categoria, Tag, Autor ou Data)"
1056
 
1057
- #: ../admin/social_sharing.php:1004 ../admin/like_buttons.php:252
1058
  msgid "BuddyPress activity"
1059
  msgstr "Atividade BuddyPress"
1060
 
1061
- #: ../admin/social_sharing.php:1006 ../admin/like_buttons.php:255
1062
  msgid "BuddyPress group (only at top of content)"
1063
  msgstr "Grupo BuddyPress (apenas acima do conteúdo)"
1064
 
1065
- #: ../admin/social_sharing.php:1012 ../admin/social_sharing.php:1451
1066
  #: ../admin/like_buttons.php:262 ../admin/like_buttons.php:542
1067
  msgid "BBPress forum"
1068
  msgstr "Forum BBPress"
1069
 
1070
- #: ../admin/social_sharing.php:1015 ../admin/social_sharing.php:1454
1071
  #: ../admin/like_buttons.php:265 ../admin/like_buttons.php:545
1072
  msgid "BBPress topic"
1073
  msgstr "Tópico BBPress"
1074
 
1075
- #: ../admin/social_sharing.php:1018 ../admin/like_buttons.php:268
1076
  msgid "BBPress reply"
1077
  msgstr "Responder BBPress"
1078
 
1079
- #: ../admin/social_sharing.php:1025 ../admin/like_buttons.php:275
1080
  msgid "After individual product at WooCommerce Shop page"
1081
  msgstr "Depois de produtos individuais na página WooCommerce Shop"
1082
 
1083
- #: ../admin/social_sharing.php:1028 ../admin/like_buttons.php:278
1084
  msgid "WooCommerce Product Page"
1085
  msgstr "Página de Produtos WooCommerce"
1086
 
1087
- #: ../admin/social_sharing.php:1031 ../admin/like_buttons.php:281
1088
  msgid "WooCommerce Thankyou Page"
1089
  msgstr "Página de Agradecimento WooCommerce"
1090
 
1091
- #: ../admin/social_sharing.php:1042
1092
  msgid "Specify the pages where you want to enable Sharing interface"
1093
  msgstr ""
1094
  "Especifique as páginas onde você deseja habilitar a interface de "
1095
  "compartilhamento"
1096
 
1097
- #: ../admin/social_sharing.php:1050 ../admin/social_sharing.php:1472
1098
  msgid "Show share counts"
1099
  msgstr "Exibir contadores de compartilhamento"
1100
 
1101
- #: ../admin/social_sharing.php:1055 ../admin/social_sharing.php:1477
1102
  #, fuzzy
1103
  msgid ""
1104
  "Share counts are supported for Facebook, Twitter, Linkedin, Buffer, Reddit, "
@@ -1108,7 +1081,7 @@ msgstr ""
1108
  "Linkedin, GooglePlus, Delicious, Buffer, Reddit, Pinterest, Stumbleupon, "
1109
  "Odnoklassniki e Vkontakte"
1110
 
1111
- #: ../admin/social_sharing.php:1056 ../admin/social_sharing.php:1478
1112
  #, php-format
1113
  msgid ""
1114
  "To show Twitter share count, you have to click \"Give me my Twitter counts "
@@ -1117,27 +1090,27 @@ msgid ""
1117
  "their website."
1118
  msgstr ""
1119
 
1120
- #: ../admin/social_sharing.php:1063 ../admin/social_sharing.php:1485
1121
  msgid "If enabled, share counts are displayed above sharing icons."
1122
  msgstr ""
1123
  "Se habilitado, os contadores de compartilhamento são exibidos acima dos "
1124
  "ícones de compartilhamento."
1125
 
1126
- #: ../admin/social_sharing.php:1072 ../admin/social_sharing.php:1494
1127
  msgid "Show total shares"
1128
  msgstr "Exibe total de compartilhamentos"
1129
 
1130
- #: ../admin/social_sharing.php:1082 ../admin/social_sharing.php:1504
1131
  msgid "If enabled, total shares will be displayed with sharing icons"
1132
  msgstr ""
1133
  "Se habilitado, os totais de compartilhamentos serão exibidos com os ícones "
1134
  "de compartilhamento"
1135
 
1136
- #: ../admin/social_sharing.php:1091 ../admin/social_sharing.php:1513
1137
  msgid "Enable 'More' icon"
1138
  msgstr "Habilitar 'Mais' ícones"
1139
 
1140
- #: ../admin/social_sharing.php:1101 ../admin/social_sharing.php:1523
1141
  msgid ""
1142
  "If enabled, \"More\" icon will be displayed after selected sharing icons "
1143
  "which shows additional sharing networks in popup"
@@ -1146,19 +1119,19 @@ msgstr ""
1146
  "de compartilhamento com a exibição adicional das redes sociais "
1147
  "compartilhadas em um popup"
1148
 
1149
- #: ../admin/social_sharing.php:1118
1150
  msgid "Floating Sharing Interface Options"
1151
  msgstr "Opções da Interface de Compartilhamento Flutuante"
1152
 
1153
- #: ../admin/social_sharing.php:1124
1154
  msgid "Enable Floating sharing interface"
1155
  msgstr "Habilita interface de compartilhamento flutuante"
1156
 
1157
- #: ../admin/social_sharing.php:1134
1158
  msgid "Master control to enable floating sharing widget"
1159
  msgstr "Controle Mestre para habilitar o widget de compartilhamento flutuante"
1160
 
1161
- #: ../admin/social_sharing.php:1328
1162
  msgid ""
1163
  "Specify the color or hex code (example #cc78e0) for the background of "
1164
  "vertical sharing bar. Leave empty for transparent. You can get the hex code "
@@ -1170,11 +1143,11 @@ msgstr ""
1170
  "Você pode obter o código hexadecimal que você requer por meio deste link <a "
1171
  "href=\\\"http://www.colorpicker.com/\\\" target=\\\"_blank\\\"> </a>"
1172
 
1173
- #: ../admin/social_sharing.php:1358 ../admin/like_buttons.php:450
1174
  msgid "Left offset"
1175
  msgstr "Ajuste à esquerda"
1176
 
1177
- #: ../admin/social_sharing.php:1368
1178
  msgid ""
1179
  "Specify a number. Increase in number will shift sharing interface towards "
1180
  "right and decrease will shift it towards left. Number can be negative too."
@@ -1184,11 +1157,11 @@ msgstr ""
1184
  "interface de compartilhamento para a esquerda. Os números podem também ser "
1185
  "negativos."
1186
 
1187
- #: ../admin/social_sharing.php:1378 ../admin/like_buttons.php:470
1188
  msgid "Right offset"
1189
  msgstr "Ajuste à direita"
1190
 
1191
- #: ../admin/social_sharing.php:1388
1192
  msgid ""
1193
  "Specify a number. Increase in number will shift sharing interface towards "
1194
  "left and decrease will shift it towards right. Number can be negative too."
@@ -1198,11 +1171,11 @@ msgstr ""
1198
  "interface de compartilhamento para a direita. Os números podem também ser "
1199
  "negativos."
1200
 
1201
- #: ../admin/social_sharing.php:1397 ../admin/like_buttons.php:489
1202
  msgid "Top offset"
1203
  msgstr "Ajuste acima"
1204
 
1205
- #: ../admin/social_sharing.php:1407
1206
  msgid ""
1207
  "Specify a number. Increase in number will shift sharing interface towards "
1208
  "bottom and decrease will shift it towards top."
@@ -1211,37 +1184,37 @@ msgstr ""
1211
  "compartilhamento para baixo e decrementos no número irão deslocar a "
1212
  "interface de compartilhamento para cima."
1213
 
1214
- #: ../admin/social_sharing.php:1443 ../admin/like_buttons.php:535
1215
  msgid "BuddyPress group"
1216
  msgstr "Grupo BuddyPress"
1217
 
1218
- #: ../admin/social_sharing.php:1464
1219
  msgid "Specify the pages where you want to enable vertical Sharing interface"
1220
  msgstr ""
1221
  "Especifique as páginas onde você deseja habilitar a interface de "
1222
  "compartilhamento vertical"
1223
 
1224
- #: ../admin/social_sharing.php:1531
1225
  #, fuzzy
1226
  msgid "Hide floating slider"
1227
  msgstr "Escondido para usuários autenticados:"
1228
 
1229
- #: ../admin/social_sharing.php:1541
1230
  #, fuzzy
1231
  msgid "Hides the slider arrow present below the floating share bar"
1232
  msgstr "Como esconder a seta após a barra de compartilahmento flutuante?"
1233
 
1234
- #: ../admin/social_sharing.php:1549
1235
  msgid "Vertical floating bar responsiveness"
1236
  msgstr "Sensibilidade da barra flutuante vertical"
1237
 
1238
- #: ../admin/social_sharing.php:1552
1239
  #, php-format
1240
  msgid "Display vertical interface only when screen is wider than %s pixels"
1241
  msgstr ""
1242
  "Exibe interface vertical apenas quando a tela é mais larga que %s pixels"
1243
 
1244
- #: ../admin/social_sharing.php:1559
1245
  msgid ""
1246
  "Display vertical interface only when screen is wider than the width "
1247
  "specified."
@@ -1249,11 +1222,11 @@ msgstr ""
1249
  "Exibe interface vertical apenas quando a tela é mais larga que a largura "
1250
  "especificada."
1251
 
1252
- #: ../admin/social_sharing.php:1567
1253
  msgid "Horizontal floating bar responsiveness"
1254
  msgstr "Sensibilidade da barra flutuante horizontal"
1255
 
1256
- #: ../admin/social_sharing.php:1570
1257
  #, php-format
1258
  msgid ""
1259
  "Stick vertical floating interface horizontally at bottom only when screen is "
@@ -1262,7 +1235,7 @@ msgstr ""
1262
  "Manter a vertical em baixo na interface de flutuação horizontal apenas "
1263
  "quando a tela é mais estreita do que %s pixels"
1264
 
1265
- #: ../admin/social_sharing.php:1577
1266
  msgid ""
1267
  "Stick vertical floating interface horizontally at bottom only when screen is "
1268
  "narrower than the width specified"
@@ -1270,43 +1243,43 @@ msgstr ""
1270
  "Manter a vertical em baixo na interface de flutuação horizontal apenas "
1271
  "quando a tela é mais estreita do que a largura especificada"
1272
 
1273
- #: ../admin/social_sharing.php:1587
1274
  msgid "Horizontal floating bar position"
1275
  msgstr "Posição da barra de flutuação horizontal"
1276
 
1277
- #: ../admin/social_sharing.php:1590
1278
  #, php-format
1279
  msgid "%s pixels from %s"
1280
  msgstr "%s pixels de %s"
1281
 
1282
- #: ../admin/social_sharing.php:1591
1283
  msgid "Auto-adjust according to screen width (responsive)"
1284
  msgstr ""
1285
 
1286
- #: ../admin/social_sharing.php:1598
1287
  msgid "Alignment of horizontal floating interface. Number can be negative too."
1288
  msgstr ""
1289
  "Alinhamneto da interface de flutuação horizontal. O número pode ser negativo "
1290
  "também."
1291
 
1292
- #: ../admin/social_sharing.php:1618
1293
  #, fuzzy
1294
  msgid "Facebook Share Count"
1295
  msgstr "Solução de problema no compartilhamento com o Facebook"
1296
 
1297
- #: ../admin/social_sharing.php:1622
1298
  msgid "Note"
1299
  msgstr ""
1300
 
1301
- #: ../admin/social_sharing.php:1622
1302
  msgid "Required only to track Facebook share count"
1303
  msgstr ""
1304
 
1305
- #: ../admin/social_sharing.php:1628 ../admin/social_login.php:161
1306
  msgid "Facebook App ID"
1307
  msgstr "Facebook App ID"
1308
 
1309
- #: ../admin/social_sharing.php:1638
1310
  #, fuzzy, php-format
1311
  msgid ""
1312
  "Required for Facebook share count to work. Please follow the documentation "
@@ -1316,12 +1289,12 @@ msgstr ""
1316
  "a documentação em <a href=\\\"%s\\\" target=\\\"_blank\\\">neste link</a> "
1317
  "para obter o Facebook App ID"
1318
 
1319
- #: ../admin/social_sharing.php:1646 ../admin/social_login.php:183
1320
  #, fuzzy
1321
  msgid "Facebook App Secret"
1322
  msgstr "Facebook App ID"
1323
 
1324
- #: ../admin/social_sharing.php:1656
1325
  #, fuzzy, php-format
1326
  msgid ""
1327
  "Required for Facebook share count to work. Please follow the documentation "
@@ -1331,33 +1304,33 @@ msgstr ""
1331
  "a documentação em <a href=\\\"%s\\\" target=\\\"_blank\\\">neste link</a> "
1332
  "para obter o Facebook App ID"
1333
 
1334
- #: ../admin/social_sharing.php:1665 ../admin/like_buttons.php:592
1335
  msgid "Url shortener"
1336
  msgstr "Encurtador de Url"
1337
 
1338
- #: ../admin/social_sharing.php:1671
1339
  msgid "Use shortlinks already installed"
1340
  msgstr "Use shortlinks já instalados"
1341
 
1342
- #: ../admin/social_sharing.php:1681
1343
  msgid "Uses default short url permalinks without using any additional plugin"
1344
  msgstr ""
1345
  "Use a short url padrão de permalinks sem utilizar nenhum plugin adicional"
1346
 
1347
- #: ../admin/social_sharing.php:1689
1348
  msgid "Enable bit.ly url shortener for sharing"
1349
  msgstr "Habilitar encurtador de url bit.ly para compartilhamento"
1350
 
1351
- #: ../admin/social_sharing.php:1699 ../admin/like_buttons.php:626
1352
  msgid "Master control to enable bit.ly url shortening for sharing"
1353
  msgstr ""
1354
  "Controle Mestre para habilitar encurtador de url bit.ly para compartilhamento"
1355
 
1356
- #: ../admin/social_sharing.php:1707
1357
  msgid "bit.ly Login"
1358
  msgstr ""
1359
 
1360
- #: ../admin/social_sharing.php:1717 ../admin/social_sharing.php:1736
1361
  #, fuzzy, php-format
1362
  msgid "More details on how to get it <a href=\"%s\" target=\"_blank\">here</a>"
1363
  msgstr ""
@@ -1365,19 +1338,19 @@ msgstr ""
1365
  "documentação <a href=\\\"%s\\\" target=\\\"_blank\\\">neste link link</a> "
1366
  "para obter Twitter API Key"
1367
 
1368
- #: ../admin/social_sharing.php:1726 ../admin/like_buttons.php:653
1369
  msgid "bit.ly API Key"
1370
  msgstr "bit.ly API Key"
1371
 
1372
- #: ../admin/social_sharing.php:1745 ../admin/like_buttons.php:672
1373
  msgid "Clear Bitly Cache"
1374
  msgstr "Limpar o Cache Bitly"
1375
 
1376
- #: ../admin/social_sharing.php:1749 ../admin/like_buttons.php:676
1377
  msgid "ShortUrl cache cleared successfully."
1378
  msgstr "Cache ShortUrl limpo com sucesso."
1379
 
1380
- #: ../admin/social_sharing.php:1756 ../admin/like_buttons.php:683
1381
  msgid ""
1382
  "Use this to delete short urls saved in database. Handy, if urls of your "
1383
  "website have been changed but short urls are still being generated for old "
@@ -1387,31 +1360,31 @@ msgstr ""
1387
  "urls do seu website foram trocadas mas as short urls ainda estão sendo "
1388
  "geradas para suas urls antigas."
1389
 
1390
- #: ../admin/social_sharing.php:1765
1391
  msgid "Share Count Cache"
1392
  msgstr "Cache de Contador de Compartilhamento"
1393
 
1394
- #: ../admin/social_sharing.php:1771
1395
  msgid "Refresh Share Count cache every"
1396
  msgstr "Atualizar o contador de compartilhamento a cada"
1397
 
1398
- #: ../admin/social_sharing.php:1776
1399
  msgid "Second(s)"
1400
  msgstr ""
1401
 
1402
- #: ../admin/social_sharing.php:1777
1403
  msgid "Minute(s)"
1404
  msgstr ""
1405
 
1406
- #: ../admin/social_sharing.php:1778
1407
  msgid "Hour(s)"
1408
  msgstr ""
1409
 
1410
- #: ../admin/social_sharing.php:1779
1411
  msgid "Day(s)"
1412
  msgstr ""
1413
 
1414
- #: ../admin/social_sharing.php:1787
1415
  #, fuzzy, php-format
1416
  msgid ""
1417
  "Frequent cache refreshing results in slower loading of pages with share "
@@ -1421,25 +1394,25 @@ msgstr ""
1421
  "Atualizações frequentes do cache resultam em carregamento mais lento das "
1422
  "páginas com os contadores de compartilhamento habilitados"
1423
 
1424
- #: ../admin/social_sharing.php:1795
1425
  msgid "Clear Share Counts Cache"
1426
  msgstr "Limpeza do Cache dos Contadores de Compartilhamento"
1427
 
1428
- #: ../admin/social_sharing.php:1799
1429
  msgid "Share Counts cache cleared successfully."
1430
  msgstr "Sucesso na limpeza do Cache dos Contadores de Compartilhamento."
1431
 
1432
- #: ../admin/social_sharing.php:1806
1433
  msgid "Use this to clear cached share counts"
1434
  msgstr "Use isso para limpeza do Cache dos Contadores de Compartilhamento"
1435
 
1436
- #: ../admin/social_sharing.php:1815 ../admin/social_sharing.php:1821
1437
  #: ../admin/social_commenting.php:315 ../admin/like_buttons.php:692
1438
  #: ../admin/like_buttons.php:698
1439
  msgid "Language"
1440
  msgstr "Languagem"
1441
 
1442
- #: ../admin/social_sharing.php:1831
1443
  #, php-format
1444
  msgid ""
1445
  "Enter the code of the language you want to use for like buttons. You can "
@@ -1450,15 +1423,15 @@ msgstr ""
1450
  "achar o código da linguagem <a href=\\\"%s\\\" target=\\\"_blank\\\">neste "
1451
  "link</a>. Deixe-o em branco para a linguagem padrão (inglês)"
1452
 
1453
- #: ../admin/social_sharing.php:1840
1454
  msgid "Username in sharing"
1455
  msgstr "Username no compartilhamento"
1456
 
1457
- #: ../admin/social_sharing.php:1846
1458
  msgid "Twitter username (without @)"
1459
  msgstr "Username do Twitter (sem @)"
1460
 
1461
- #: ../admin/social_sharing.php:1856 ../admin/social_sharing.php:1875
1462
  msgid ""
1463
  "Provided username will be appended after the content being shared as \"via "
1464
  "@USERNAME\". Leave empty if you do not want any username in the content "
@@ -1468,36 +1441,36 @@ msgstr ""
1468
  "\\\"via @USERNAME\\\". Deixe em branco se você não desejar nenhum username "
1469
  "no conteúdo sendo compartilhado."
1470
 
1471
- #: ../admin/social_sharing.php:1865
1472
  msgid "Buffer username (without @)"
1473
  msgstr "Username do Buffer (sem @)"
1474
 
1475
- #: ../admin/social_sharing.php:1884
1476
  msgid "AMP"
1477
  msgstr ""
1478
 
1479
- #: ../admin/social_sharing.php:1890
1480
  #, fuzzy
1481
  msgid "Enable sharing on AMP pages"
1482
  msgstr "Habilia a página de autenticação"
1483
 
1484
- #: ../admin/social_sharing.php:1900
1485
  msgid "Enable this option to render sharing icons on AMP pages"
1486
  msgstr ""
1487
 
1488
- #: ../admin/social_sharing.php:1919 ../admin/like_buttons.php:771
1489
  msgid "myCRED"
1490
  msgstr ""
1491
 
1492
- #: ../admin/social_sharing.php:1925 ../admin/like_buttons.php:777
1493
  msgid "Append myCRED referral ID to the urls being shared"
1494
  msgstr ""
1495
 
1496
- #: ../admin/social_sharing.php:1958
1497
  msgid "Facebook Sharing Troubleshooter"
1498
  msgstr "Solução de problema no compartilhamento com o Facebook"
1499
 
1500
- #: ../admin/social_sharing.php:1963
1501
  #, fuzzy
1502
  msgid ""
1503
  "If Facebook sharing is not working fine, click at the following link and "
@@ -1510,29 +1483,29 @@ msgstr ""
1510
  "compartilhamento do Facebook não está funcionando adequadamente) no seu "
1511
  "website:"
1512
 
1513
- #: ../admin/social_sharing.php:1980 ../admin/social_commenting.php:399
1514
- #: ../admin/social_login.php:1259
1515
  msgid ""
1516
  "<strong>Note:</strong> Plugin will not work on local server. You should have "
1517
  "an online website for the plugin to function properly."
1518
  msgstr ""
1519
 
1520
- #: ../admin/social_sharing.php:1981
1521
  msgid ""
1522
  "Why is sharer not showing the correct image, title and other meta tags "
1523
  "content?"
1524
  msgstr ""
1525
 
1526
- #: ../admin/social_sharing.php:1982
1527
  #, fuzzy
1528
  msgid "Why is Facebook share count not working?"
1529
  msgstr "Porque o contador de compartilhamentos não está sendo atualizado?"
1530
 
1531
- #: ../admin/social_sharing.php:1985
1532
  msgid "Why is Instagram icon redirecting to Instagram website?"
1533
  msgstr ""
1534
 
1535
- #: ../admin/social_sharing.php:1986
1536
  msgid ""
1537
  "Instagram icon is there to send website visitors to the Instagram page of "
1538
  "your choice. You can save the desired Instagram handle in \"Instagram "
@@ -1540,49 +1513,49 @@ msgid ""
1540
  "sections."
1541
  msgstr ""
1542
 
1543
- #: ../admin/social_sharing.php:1989
1544
  #, fuzzy
1545
  msgid "How to customize the url being shared?"
1546
  msgstr ""
1547
  "Como personalizar a aparência dos contadores de compartilhamento individuais?"
1548
 
1549
- #: ../admin/social_sharing.php:1990
1550
  msgid ""
1551
  "Why are Twitter shares not appearing even after registering at Twitcount.com?"
1552
  msgstr ""
1553
 
1554
- #: ../admin/social_sharing.php:1991
1555
  msgid ""
1556
  "It takes some time for their service to track the shares made on Twitter "
1557
  "from your website. If you still feel it's taking too long you can contact "
1558
  "their support directly from their website."
1559
  msgstr ""
1560
 
1561
- #: ../admin/social_sharing.php:1993 ../admin/like_buttons.php:814
1562
  msgid "How to Place Title and Social Share Icons in the Same Row?"
1563
  msgstr ""
1564
 
1565
- #: ../admin/social_sharing.php:1994
1566
  msgid ""
1567
  "How to restore Social Share counts lost after moving my website to SSL/Https?"
1568
  msgstr ""
1569
 
1570
- #: ../admin/social_sharing.php:1995 ../admin/social_commenting.php:402
1571
- #: ../admin/social_login.php:1266
1572
  msgid "Why is my browser blocking some features of the plugin?"
1573
  msgstr ""
1574
 
1575
- #: ../admin/social_sharing.php:1996
1576
  #, fuzzy
1577
  msgid "Why the color of share icons is not being updated?"
1578
  msgstr "Porque o contador de compartilhamentos não está sendo atualizado?"
1579
 
1580
- #: ../admin/social_sharing.php:1997
1581
  #, fuzzy
1582
  msgid "Why Facebook share counts are not appearing?"
1583
  msgstr "Porque o contador de compartilhamentos não está sendo atualizado?"
1584
 
1585
- #: ../admin/social_sharing.php:1998
1586
  msgid ""
1587
  "How can I show share counts of my website rather than of individual pages/"
1588
  "posts?"
@@ -1590,53 +1563,53 @@ msgstr ""
1590
  "Como posso exibir os contadores de compartilhamento do meu website ao invés "
1591
  "das páginas/posts individuais?"
1592
 
1593
- #: ../admin/social_sharing.php:1999
1594
  msgid "How can I disable sharing on particular page/post?"
1595
  msgstr ""
1596
  "Como posso desabilitar o compartilhamento em uma página/post em particular?"
1597
 
1598
- #: ../admin/social_sharing.php:2000
1599
  msgid "How can I specify minimum sharing count for sharing networks?"
1600
  msgstr ""
1601
  "Como posso especificar um contador mínimo de compartilhamento das redes "
1602
  "sociais?"
1603
 
1604
- #: ../admin/social_sharing.php:2001
1605
  msgid "How to share specific page?"
1606
  msgstr "Como compartilhar página específica?"
1607
 
1608
- #: ../admin/social_sharing.php:2002
1609
  msgid "How to integrate Google Analytics with sharing?"
1610
  msgstr "Como integrar o Google Analytics com compartilhamento?"
1611
 
1612
- #: ../admin/social_sharing.php:2003
1613
  msgid "How to customize the look of total share counts?"
1614
  msgstr ""
1615
  "Como personalizar a aparência dos contatores de compartilhamentos totais?"
1616
 
1617
- #: ../admin/social_sharing.php:2004
1618
  msgid "How to customize the look of individual share counts?"
1619
  msgstr ""
1620
  "Como personalizar a aparência dos contadores de compartilhamento individuais?"
1621
 
1622
- #: ../admin/social_sharing.php:2005
1623
  msgid "How to show Whatsapp icon only on mobile devices?"
1624
  msgstr "Como exibir o ícone do Whatsapp apenas em dispositivos móveis?"
1625
 
1626
- #: ../admin/social_sharing.php:2006
1627
  msgid "How to hide arrow after floating sharing bar?"
1628
  msgstr "Como esconder a seta após a barra de compartilahmento flutuante?"
1629
 
1630
- #: ../admin/social_sharing.php:2007
1631
  #, fuzzy
1632
  msgid "Why is share count not getting updated?"
1633
  msgstr "Porque o contador de compartilhamentos não está sendo atualizado?"
1634
 
1635
- #: ../admin/social_sharing.php:2008 ../admin/like_buttons.php:812
1636
  msgid "Why is there so much space between like buttons?"
1637
  msgstr ""
1638
 
1639
- #: ../admin/social_sharing.php:2009 ../admin/like_buttons.php:813
1640
  msgid "Why are floating sharing/like buttons not appearing at homepage?"
1641
  msgstr ""
1642
 
@@ -1896,7 +1869,7 @@ msgstr "Configuração Básica"
1896
  msgid "GDPR"
1897
  msgstr ""
1898
 
1899
- #: ../admin/social_login.php:44 ../admin/social_login.php:1194
1900
  msgid "XProfile Integration"
1901
  msgstr ""
1902
 
@@ -2648,50 +2621,67 @@ msgid "Text for the GDPR opt-in"
2648
  msgstr "Habilitar comentário Disqus"
2649
 
2650
  #: ../admin/social_login.php:1135
2651
- msgid "Text to link to Privacy Policy page"
2652
  msgstr ""
2653
 
2654
  #: ../admin/social_login.php:1145
2655
- msgid "Word(s) in the opt-in text to be linked to privacy policy page"
2656
  msgstr ""
2657
 
2658
  #: ../admin/social_login.php:1153
2659
- msgid "Privacy Policy Url"
2660
  msgstr ""
2661
 
2662
  #: ../admin/social_login.php:1163
2663
  #, fuzzy
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2664
  msgid "Url of the privacy policy page of your website"
2665
  msgstr "Url da homepage do seu website"
2666
 
2667
- #: ../admin/social_login.php:1214 ../inc/widget.php:260 ../inc/widget.php:438
2668
  #: ../inc/widget.php:602 ../inc/widget.php:750
2669
  msgid "Select"
2670
  msgstr "Selecione"
2671
 
2672
- #: ../admin/social_login.php:1245
2673
  msgid "Social Login Shortcode & Widget"
2674
  msgstr "Autenticação Social Shortcode & Widget"
2675
 
2676
- #: ../admin/social_login.php:1246
2677
  msgid "Social Linking Shortcode"
2678
  msgstr "Shortcode de associação Social"
2679
 
2680
- #: ../admin/social_login.php:1261
2681
  msgid "Why is social login not working?"
2682
  msgstr ""
2683
 
2684
- #: ../admin/social_login.php:1262
2685
  msgid ""
2686
  "Make sure that App ID and Secret (Client ID and Secret) keys you have saved, "
2687
  "belong to the same app"
2688
  msgstr ""
2689
 
2690
- #: ../admin/social_login.php:1264
2691
  msgid "Social Login not working with Varnish enabled"
2692
  msgstr ""
2693
 
2694
- #: ../admin/social_login.php:1265
2695
  msgid ""
2696
  "Why the user is not appearing logged in even after Social Login until the "
2697
  "webpage is refreshed manually?"
2
  msgstr ""
3
  "Project-Id-Version: Super Socializer\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2019-08-13 08:27+0530\n"
6
+ "PO-Revision-Date: 2019-08-13 08:27+0530\n"
7
  "Last-Translator: Heateor <hello@heateor.com>\n"
8
  "Language-Team: Heateor <hello@heateor.com>\n"
9
  "Language: en_IN\n"
15
  "X-Generator: Poedit 1.5.4\n"
16
  "X-Poedit-SearchPath-0: ..\n"
17
 
18
+ #: ../super_socializer.php:425
19
  msgid "Problem fetching access token: "
20
  msgstr ""
21
 
22
+ #: ../super_socializer.php:429 ../super_socializer.php:443
23
  msgid "Facebook SDK returned an error: "
24
  msgstr ""
25
 
26
+ #: ../super_socializer.php:439
27
  msgid "Graph returned an error: "
28
  msgstr ""
29
 
30
+ #: ../super_socializer.php:605
31
  #, fuzzy
32
  msgid ""
33
  "cURL is not enabled at your website server. Please contact your website "
36
  "Certifique que a cURL esteja habilitada no seu servidor web. Você poderá ter "
37
  "que contatar o administrador do servidor do seu website para verificar isso."
38
 
39
+ #: ../super_socializer.php:632
40
  #, fuzzy, php-format
41
  msgid ""
42
  "Enter exactly the following url in <strong>Website</strong> option in your "
46
  "<strong>Callback Url</strong> nas opções do seu app Twitter (veja o passo 3 "
47
  "%s)"
48
 
49
+ #: ../super_socializer.php:635
50
  #, fuzzy, php-format
51
  msgid ""
52
  "Enter exactly the following url in <strong>Callback URLs</strong> option in "
56
  "<strong>Callback Url</strong> nas opções do seu app Twitter (veja o passo 3 "
57
  "%s)"
58
 
59
+ #: ../super_socializer.php:638
60
  msgid ""
61
  "Make sure cURL is enabled at your website server. You may need to contact "
62
  "the server administrator of your website to verify this"
64
  "Certifique que a cURL esteja habilitada no seu servidor web. Você poderá ter "
65
  "que contatar o administrador do servidor do seu website para verificar isso."
66
 
67
+ #: ../super_socializer.php:901 ../helper.php:976
 
 
 
 
 
 
68
  msgid "Please verify your email address to login."
69
  msgstr "Por favor verifique seu endereço de email no login."
70
 
71
+ #: ../super_socializer.php:901
72
  msgid "Your email has been verified. Now you can login to your account"
73
  msgstr "Seu email foi verificado. Agora você pode fazer login na sua conta"
74
 
75
+ #: ../super_socializer.php:905
76
  msgid "Notification"
77
  msgstr "Notificaçao"
78
 
79
+ #: ../super_socializer.php:923 ../admin/social_login.php:805
80
  msgid "Email required"
81
  msgstr "Necessário email"
82
 
83
+ #: ../super_socializer.php:926
84
  msgid "Please check your email inbox to complete the registration."
85
  msgstr "Por favor verifique sua caixa de email para completar o registro."
86
 
87
+ #: ../super_socializer.php:933 ../helper.php:508
88
  msgid "Enter your LiveJournal username"
89
  msgstr ""
90
 
91
+ #: ../super_socializer.php:1005
92
  msgid "Leave a reply"
93
  msgstr "Deixe uma resposta"
94
 
95
+ #: ../super_socializer.php:1017 ../inc/social_sharing.php:241
96
  msgid "Shares"
97
  msgstr ""
98
 
99
+ #: ../super_socializer.php:1017 ../inc/social_sharing.php:241
100
  msgid "Share"
101
  msgstr ""
102
 
103
+ #: ../super_socializer.php:1017
104
  #, fuzzy
105
  msgid "Link copied."
106
  msgstr "LinkedIn"
107
 
108
+ #: ../super_socializer.php:1263
109
  msgid "Super Socializer - General Options"
110
  msgstr "Super Socializer - Opções Gerais"
111
 
112
+ #: ../super_socializer.php:1263 ../admin/general_options.php:15
113
  #: ../admin/social_commenting.php:47
114
  msgid "General Options"
115
  msgstr "Opções Gerais"
116
 
117
+ #: ../super_socializer.php:1331 ../helper.php:898
118
  msgid "Social Avatar"
119
  msgstr "Avatar Social"
120
 
121
+ #: ../super_socializer.php:1334
122
  msgid "Small Avatar Url"
123
  msgstr "Url para Avatar pequeno"
124
 
125
+ #: ../super_socializer.php:1338
126
  msgid "Large Avatar Url"
127
  msgstr "Url para Avatar Grande"
128
 
129
+ #: ../super_socializer.php:1342 ../helper.php:901
130
  msgid ""
131
  "Do not fetch and update social avatar from my profile, next time I Social "
132
  "Login"
134
  "Não busque ou atualize o avatar social do meu perfil, na próxima vez farei a "
135
  "Autenticação Social"
136
 
137
+ #: ../super_socializer.php:1346 ../helper.php:902
138
  msgid "Update social avatar, next time I Social Login"
139
  msgstr "Atualize o avatar social, na próxima vez farei a Autenticação Social"
140
 
141
+ #: ../super_socializer.php:1423
 
 
 
 
 
 
142
  msgid "Login with your Social ID"
143
  msgstr ""
144
 
145
+ #: ../super_socializer.php:1424
146
  msgid "Email you entered is already registered or invalid"
147
  msgstr "Email fornecido já está registrado ou é inválido"
148
 
149
+ #: ../super_socializer.php:1429
150
  msgid "Please enter a valid email address. You might be required to verify it"
151
  msgstr ""
152
  "Por favor forneça um endereço de email válido. Você pode ser solicitado a "
153
  "confirmá-lo"
154
 
155
+ #: ../super_socializer.php:1433 ../super_socializer.php:2122
156
  msgid "Link your social account to login to your account at this website"
157
  msgstr "Associe sua conta social ao login de sua conta neste website"
158
 
159
+ #: ../super_socializer.php:1681
160
  msgid "Thanks for installing Super Socializer plugin"
161
  msgstr ""
162
 
163
+ #: ../super_socializer.php:1683
164
  msgid "Configure the Plugin"
165
  msgstr ""
166
 
167
+ #: ../super_socializer.php:1694
168
  msgid ""
169
  "Update \"Facebook Comments Moderation\" add-on for compatibility with "
170
  "current version of Super Socialzer"
171
  msgstr ""
172
 
173
+ #: ../super_socializer.php:1703
174
  msgid ""
175
  "Update \"Facebook Comments Notifier\" add-on for compatibility with current "
176
  "version of Super Socialzer"
177
  msgstr ""
178
 
179
+ #: ../super_socializer.php:1712
180
  msgid ""
181
  "Update \"Social Login Buttons\" add-on for compatibility with current "
182
  "version of Super Socialzer"
183
  msgstr ""
184
 
185
+ #: ../super_socializer.php:1721
186
  msgid ""
187
  "Update \"Social Share myCRED Integration\" add-on for maximum compatibility "
188
  "with current version of Super Socialzer"
189
  msgstr ""
190
 
191
+ #: ../super_socializer.php:1730
192
  msgid ""
193
  "Update \"Social Login myCRED Integration\" add-on for maximum compatibility "
194
  "with current version of Super Socialzer"
195
  msgstr ""
196
 
197
+ #: ../super_socializer.php:1737
198
  msgid ""
199
  "Update \"Social Login myCRED Integration\" add-on for compatibility with "
200
  "LiveJournal Login of Super Socialzer"
201
  msgstr ""
202
 
203
+ #: ../super_socializer.php:1748
204
  #, php-format
205
  msgid ""
206
  "To continue using Steam login save Steam API key <a href=\"%s\">here</a>"
207
  msgstr ""
208
 
209
+ #: ../super_socializer.php:1764
210
  #, php-format
211
  msgid ""
212
  "To continue using Social Login, save the secret keys <a href=\"%s\">here</a>"
213
  msgstr ""
214
 
215
+ #: ../super_socializer.php:1788
216
  #, php-format
217
  msgid ""
218
  "Add %s in \"Valid OAuth redirect URIs\" option in your Facebook app settings "
220
  "target=\"_blank\">here</a>"
221
  msgstr ""
222
 
223
+ #: ../super_socializer.php:1788 ../super_socializer.php:1813
224
+ #: ../super_socializer.php:1838 ../super_socializer.php:1863
225
+ #: ../super_socializer.php:1896 ../super_socializer.php:1924
226
+ #: ../super_socializer.php:1951 ../super_socializer.php:2028
227
  msgid "Okay"
228
  msgstr ""
229
 
230
+ #: ../super_socializer.php:1813
231
  #, php-format
232
  msgid ""
233
  "Add %s in \"Callback URLs\" option in your Twitter app settings for Twitter "
235
  "\">here</a>"
236
  msgstr ""
237
 
238
+ #: ../super_socializer.php:1838
239
  #, php-format
240
  msgid ""
241
  "Add %s in \"Authorized Redirect URLs\" option in your Linkedin app settings "
243
  "target=\"_blank\">here</a>"
244
  msgstr ""
245
 
246
+ #: ../super_socializer.php:1863
247
  #, php-format
248
  msgid ""
249
  "Add %s in \"Authorized redirect URIs\" option in your Google client settings "
251
  "target=\"_blank\">here</a>"
252
  msgstr ""
253
 
254
+ #: ../super_socializer.php:1874
255
  #, php-format
256
  msgid ""
257
  "Save the url of privacy policy page of your website <a href=\"%s\">here</a>"
258
  msgstr ""
259
 
260
+ #: ../super_socializer.php:1896
261
  #, php-format
262
  msgid ""
263
  "This plugin is GDPR compliant. You need to update the privacy policy of your "
265
  "\"%s\" target=\"_blank\">here</a>"
266
  msgstr ""
267
 
268
+ #: ../super_socializer.php:1924
269
  #, php-format
270
  msgid ""
271
  "Now plugin supports a new service Twitcount.com to show Twitter shares. To "
274
  "your website %s with them. No need to copy-paste any code from their website."
275
  msgstr ""
276
 
277
+ #: ../super_socializer.php:1951
278
  #, php-format
279
  msgid ""
280
  "Replace url saved in \"Callback URLs\" option in your Twitter app settings "
282
  "\"%s\" target=\"_blank\">here</a>"
283
  msgstr ""
284
 
285
+ #: ../super_socializer.php:1976
286
  #, php-format
287
  msgid ""
288
  "If you cannot get Linkedin login to work after updating the plugin, replace "
290
  "For more details, check step 6 <a href=\"%s\" target=\"_blank\">here</a>"
291
  msgstr ""
292
 
293
+ #: ../super_socializer.php:1976 ../super_socializer.php:2003
294
  msgid "Dismiss"
295
  msgstr ""
296
 
297
+ #: ../super_socializer.php:2002
298
  #, php-format
299
  msgid ""
300
  "Save Facebook App ID and Secret keys in \"Standard Interface\" and/or "
303
  "that, clear share counts cache from \"Miscellaneous\" section"
304
  msgstr ""
305
 
306
+ #: ../super_socializer.php:2028
307
  #, php-format
308
  msgid ""
309
  "Your website visitors will see a popup notification (only once) if their "
313
  "features\" option <a href=\"%s\">here</a>"
314
  msgstr ""
315
 
316
+ #: ../super_socializer.php:2198
317
+ msgid ""
318
+ "Your browser is blocking some features of this website. Please follow the "
319
+ "instructions at {support_url} to unblock these."
320
+ msgstr ""
321
+
322
  #: ../helper.php:8
323
  msgid "Settings saved"
324
  msgstr "Configurações salvas"
325
 
326
+ #: ../helper.php:8 ../admin/social_sharing.php:49
327
  msgid "Dismiss this notice"
328
  msgstr "Dispense este aviso"
329
 
413
  msgid "Large Avatar"
414
  msgstr "Avatar Grande"
415
 
416
+ #: ../helper.php:913 ../admin/general_options.php:93
417
+ #: ../admin/social_sharing.php:2027 ../admin/social_commenting.php:413
418
+ #: ../admin/social_login.php:1313 ../admin/like_buttons.php:826
419
  msgid "Save Changes"
420
  msgstr "Salvar Alterações"
421
 
436
  msgid "Something bad happened"
437
  msgstr ""
438
 
439
+ #: ../admin/general_options.php:7 ../admin/general_options.php:97
440
+ #: ../admin/social_sharing.php:5 ../admin/social_sharing.php:2031
441
  #: ../admin/social_commenting.php:5 ../admin/social_commenting.php:417
442
+ #: ../admin/social_login.php:5 ../admin/social_login.php:1317
443
  #: ../admin/like_buttons.php:6 ../admin/like_buttons.php:830
444
  #, fuzzy, php-format
445
  msgid ""
485
  "instalar o plugin da próxima vez."
486
 
487
  #: ../admin/general_options.php:75
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
488
  msgid "Custom CSS"
489
  msgstr "CSS Personalizado"
490
 
491
+ #: ../admin/general_options.php:85
492
  msgid "You can specify any additional CSS rules (without &lt;style&gt; tag)"
493
  msgstr ""
494
  "Você poderá especificar qualquer regra adicional de CSS (sem a tag &lt;"
495
  "style&gt; )"
496
 
497
+ #: ../admin/general_options.php:108 ../admin/social_sharing.php:2038
498
+ #: ../admin/social_commenting.php:424 ../admin/social_login.php:1324
499
+ #: ../admin/like_buttons.php:837
500
  #, fuzzy
501
  msgid "Instagram Shoutout"
502
  msgstr "Instagram"
503
 
504
+ #: ../admin/general_options.php:110 ../admin/social_sharing.php:2040
505
+ #: ../admin/social_commenting.php:426 ../admin/social_login.php:1326
506
+ #: ../admin/like_buttons.php:839
507
  msgid ""
508
  "If you can send (to hello@heateor.com) how our plugin is helping your "
509
  "business, we can share it on Instagram. You can also send any relevant "
510
  "hashtags and people to mention in the Instagram post."
511
  msgstr ""
512
 
513
+ #: ../admin/general_options.php:111 ../admin/social_sharing.php:2041
514
+ #: ../admin/social_commenting.php:427 ../admin/social_login.php:1327
515
+ #: ../admin/like_buttons.php:840
516
  msgid ""
517
  "<b>Example</b> - Blah-Blah Online Coaching teaches various programming "
518
  "language courses through their website. They have emerged as one of the most "
521
  "time."
522
  msgstr ""
523
 
524
+ #: ../admin/general_options.php:112 ../admin/social_sharing.php:2042
525
+ #: ../admin/social_commenting.php:428 ../admin/social_login.php:1328
526
+ #: ../admin/like_buttons.php:841
527
  msgid ""
528
  "@blahblahonlinecoaching proudly use #SuperSocializer to enable social "
529
  "features at their website, such as - Social Login, Social Share and Social "
634
  msgid "Recover Social Share Counts Lost After Moving to SSL/Https"
635
  msgstr ""
636
 
637
+ #: ../admin/social_sharing.php:49 ../admin/social_sharing.php:1990
638
  msgid ""
639
  "Save Facebook App Id and Secret in the \"Miscellaneous\" section for "
640
  "Facebook share count to work"
641
  msgstr ""
642
 
643
+ #: ../admin/social_sharing.php:56
644
  msgid "Theme Selection"
645
  msgstr "Escolha de Temas"
646
 
647
+ #: ../admin/social_sharing.php:57 ../admin/like_buttons.php:41
648
  msgid "Standard Interface"
649
  msgstr "Interface Padrão"
650
 
651
+ #: ../admin/social_sharing.php:58 ../admin/like_buttons.php:42
652
  msgid "Floating Interface"
653
  msgstr "Interface Flutuante"
654
 
655
+ #: ../admin/social_sharing.php:59 ../admin/like_buttons.php:43
656
  msgid "Miscellaneous"
657
  msgstr "Miscelânia"
658
 
659
+ #: ../admin/social_sharing.php:63 ../admin/like_buttons.php:47
660
  msgid "3rd Party Integration"
661
  msgstr ""
662
 
663
+ #: ../admin/social_sharing.php:67 ../admin/social_sharing.php:1952
664
+ #: ../admin/social_sharing.php:1954 ../admin/social_login.php:46
665
+ #: ../admin/social_login.php:1279 ../admin/like_buttons.php:51
666
  #: ../admin/like_buttons.php:797
667
  msgid "Shortcode & Widget"
668
  msgstr "Shortcode & Widget"
669
 
670
+ #: ../admin/social_sharing.php:68
671
  msgid "Troubleshooter"
672
  msgstr "Resolução de Problemas"
673
 
674
+ #: ../admin/social_sharing.php:69 ../admin/social_sharing.php:1985
675
  #: ../admin/social_commenting.php:40 ../admin/social_commenting.php:397
676
+ #: ../admin/social_login.php:47 ../admin/social_login.php:1293
677
  #: ../admin/like_buttons.php:52 ../admin/like_buttons.php:810
678
  msgid "FAQ"
679
  msgstr "P&R"
680
 
681
+ #: ../admin/social_sharing.php:77
682
  msgid "Standard interface theme"
683
  msgstr "Tema padrão da interface"
684
 
685
+ #: ../admin/social_sharing.php:82 ../admin/social_sharing.php:389
686
  msgid "Icon Preview"
687
  msgstr "Visualização do Ícone"
688
 
689
+ #: ../admin/social_sharing.php:154 ../admin/social_sharing.php:462
690
  msgid ""
691
  "Do not forget to save the configuration after making changes by clicking the "
692
  "save button below"
694
  "Não esqueça de salvar as configurações após realizar as mudanças clicando no "
695
  "botão de salvar abaixo"
696
 
697
+ #: ../admin/social_sharing.php:161 ../admin/social_sharing.php:469
698
  msgid "Shape"
699
  msgstr "Forma"
700
 
701
+ #: ../admin/social_sharing.php:165 ../admin/social_sharing.php:473
702
  #: ../inc/widget.php:951
703
  msgid "Round"
704
  msgstr "Arredondada"
705
 
706
+ #: ../admin/social_sharing.php:167 ../admin/social_sharing.php:475
707
  #: ../inc/widget.php:952
708
  msgid "Square"
709
  msgstr "Quadrada"
710
 
711
+ #: ../admin/social_sharing.php:169 ../admin/social_sharing.php:477
712
  msgid "Rectangle"
713
  msgstr "Retangular"
714
 
715
+ #: ../admin/social_sharing.php:176 ../admin/social_sharing.php:484
716
  msgid "Shape of the sharing icons"
717
  msgstr "Forma dos ícones de compartilhameto"
718
 
719
+ #: ../admin/social_sharing.php:185 ../admin/social_sharing.php:493
720
  msgid "Size (in pixels)"
721
  msgstr "Tamanho (em pixels)"
722
 
723
+ #: ../admin/social_sharing.php:201 ../admin/social_sharing.php:509
724
  msgid "Size of the sharing icons"
725
  msgstr "Tamanho dos ícones de compartilhameto"
726
 
727
+ #: ../admin/social_sharing.php:211 ../admin/social_sharing.php:519
728
  msgid "Width (in pixels)"
729
  msgstr "Largura (em pixels)"
730
 
731
+ #: ../admin/social_sharing.php:227 ../admin/social_sharing.php:535
732
  msgid "Width of the sharing icons"
733
  msgstr "Largura dos ícones de compartilhameto"
734
 
735
+ #: ../admin/social_sharing.php:235 ../admin/social_sharing.php:543
736
  msgid "Height (in pixels)"
737
  msgstr "Altura (em pixels)"
738
 
739
+ #: ../admin/social_sharing.php:251 ../admin/social_sharing.php:559
740
  msgid "Height of the sharing icons"
741
  msgstr "Altura dos ícones de compartilhameto"
742
 
743
+ #: ../admin/social_sharing.php:261 ../admin/social_sharing.php:569
744
  msgid "Border radius (in pixels)"
745
  msgstr "Raio da borda (em pixels)"
746
 
747
+ #: ../admin/social_sharing.php:271 ../admin/social_sharing.php:579
748
  msgid ""
749
  "Specify a value for rounded corners. More the value, more rounded will the "
750
  "corners be. Leave empty for sharp corners."
752
  "Especifique um valor para os cantos arredondados. Quanto maior o valor, mas "
753
  "arredondados serão os cantos. Deixe em branco para cantos precisos."
754
 
755
+ #: ../admin/social_sharing.php:280 ../admin/social_sharing.php:588
756
  msgid "Logo Color"
757
  msgstr "Cor do logo"
758
 
759
+ #: ../admin/social_sharing.php:284 ../admin/social_sharing.php:305
760
+ #: ../admin/social_sharing.php:325 ../admin/social_sharing.php:592
761
+ #: ../admin/social_sharing.php:613 ../admin/social_sharing.php:632
762
  msgid "Default"
763
  msgstr "Padrão"
764
 
765
+ #: ../admin/social_sharing.php:286 ../admin/social_sharing.php:306
766
+ #: ../admin/social_sharing.php:330 ../admin/social_sharing.php:594
767
+ #: ../admin/social_sharing.php:614 ../admin/social_sharing.php:637
768
  msgid "On Hover"
769
  msgstr "Em foco"
770
 
771
+ #: ../admin/social_sharing.php:294 ../admin/social_sharing.php:602
772
  msgid ""
773
  "Specify the color or hex code (example #cc78e0) for the logo of icon. Leave "
774
  "empty for default. You can get the hex code of the required color from <a "
779
  "hexadecimal que você requer por meio deste link <a href=\\\"http://www."
780
  "colorpicker.com/\\\" target=\\\"_blank\\\"> </a>"
781
 
782
+ #: ../admin/social_sharing.php:302 ../admin/social_sharing.php:610
783
+ #: ../admin/social_sharing.php:1325 ../admin/like_buttons.php:410
784
  #: ../inc/widget.php:460 ../inc/widget.php:772
785
  msgid "Background Color"
786
  msgstr "Cor de Fundo"
787
 
788
+ #: ../admin/social_sharing.php:313 ../admin/social_sharing.php:621
789
  msgid ""
790
  "Specify the color or hex code (example #cc78e0) for icon background. Save "
791
  "\"transparent\" for transparent background. Leave empty for default. You can "
798
  "hexadecimal que você requer por meio deste link <a href=\\\"http://www."
799
  "colorpicker.com/\\\" target=\\\"_blank\\\"> </a>"
800
 
801
+ #: ../admin/social_sharing.php:321 ../admin/social_sharing.php:629
802
  msgid "Border"
803
  msgstr "Borda"
804
 
805
+ #: ../admin/social_sharing.php:327 ../admin/social_sharing.php:332
806
+ #: ../admin/social_sharing.php:634 ../admin/social_sharing.php:639
807
  msgid "Border Width"
808
  msgstr "Largura da Borda"
809
 
810
+ #: ../admin/social_sharing.php:328 ../admin/social_sharing.php:333
811
+ #: ../admin/social_sharing.php:635 ../admin/social_sharing.php:640
812
  msgid "Border Color"
813
  msgstr "Cor da Borda"
814
 
815
+ #: ../admin/social_sharing.php:340 ../admin/social_sharing.php:647
816
  msgid "Icon border"
817
  msgstr "Ícone da borda"
818
 
819
+ #: ../admin/social_sharing.php:348 ../admin/social_sharing.php:655
820
  msgid "Counter Position"
821
  msgstr "Posição do Contador"
822
 
823
+ #: ../admin/social_sharing.php:348 ../admin/social_sharing.php:655
824
  msgid "(applies, if counter enabled)"
825
  msgstr "(aplica-se, caso o contador esteja habilitado)"
826
 
827
+ #: ../admin/social_sharing.php:352 ../admin/social_sharing.php:659
828
+ #: ../admin/social_sharing.php:942 ../admin/social_sharing.php:1347
829
  #: ../admin/like_buttons.php:183 ../admin/like_buttons.php:432
830
  #: ../inc/widget.php:446 ../inc/widget.php:758
831
  msgid "Left"
832
  msgstr "Esquerda"
833
 
834
+ #: ../admin/social_sharing.php:354 ../admin/social_sharing.php:661
835
  msgid "Top"
836
  msgstr "Acima"
837
 
838
+ #: ../admin/social_sharing.php:356 ../admin/social_sharing.php:663
839
+ #: ../admin/social_sharing.php:944 ../admin/social_sharing.php:1348
840
  #: ../admin/like_buttons.php:185 ../admin/like_buttons.php:433
841
  #: ../inc/widget.php:447 ../inc/widget.php:759
842
  msgid "Right"
843
  msgstr "Direita"
844
 
845
+ #: ../admin/social_sharing.php:358 ../admin/social_sharing.php:665
846
  msgid "Bottom"
847
  msgstr "Abaixo"
848
 
849
+ #: ../admin/social_sharing.php:360 ../admin/social_sharing.php:667
850
  msgid "Inner Left"
851
  msgstr "Inner a Esquerda"
852
 
853
+ #: ../admin/social_sharing.php:362 ../admin/social_sharing.php:669
854
  msgid "Inner Top"
855
  msgstr "Inner Acima"
856
 
857
+ #: ../admin/social_sharing.php:364 ../admin/social_sharing.php:671
858
  msgid "Inner Right"
859
  msgstr "Inner a Direita"
860
 
861
+ #: ../admin/social_sharing.php:366 ../admin/social_sharing.php:673
862
  msgid "Inner Bottom"
863
  msgstr "Inner a Baixo"
864
 
865
+ #: ../admin/social_sharing.php:374 ../admin/social_sharing.php:681
866
  msgid "Position of share counter"
867
  msgstr "Posição do contador de compartilhamento"
868
 
869
+ #: ../admin/social_sharing.php:384
870
  msgid "Floating interface theme"
871
  msgstr "Tema da inteface flutuante"
872
 
873
+ #: ../admin/social_sharing.php:697
874
  msgid "Standard Sharing Interface Options"
875
  msgstr "Opções de Interface de Compartilhamento Padrão"
876
 
877
+ #: ../admin/social_sharing.php:703
878
  msgid "Enable Standard sharing interface"
879
  msgstr "Habilita interface de Compartilhamento padrão"
880
 
881
+ #: ../admin/social_sharing.php:713
882
  msgid "Master control to enable standard sharing"
883
  msgstr "\"Controle Mestre para habilitar o compartilhamento padrão"
884
 
885
+ #: ../admin/social_sharing.php:723 ../admin/social_sharing.php:1151
886
  #: ../admin/like_buttons.php:86 ../admin/like_buttons.php:336
887
  msgid "Target Url"
888
  msgstr "Url Destino"
889
 
890
+ #: ../admin/social_sharing.php:727 ../admin/social_sharing.php:1155
891
  #: ../admin/like_buttons.php:90 ../admin/like_buttons.php:340
892
  msgid "Url of the webpage where icons are located (default)"
893
  msgstr "Url das webpages onde os ícones estão localizados (padrão)"
894
 
895
+ #: ../admin/social_sharing.php:729 ../admin/social_sharing.php:1157
896
  #: ../admin/like_buttons.php:92 ../admin/like_buttons.php:342
897
  msgid "Url of the homepage of your website"
898
  msgstr "Url da homepage do seu website"
899
 
900
+ #: ../admin/social_sharing.php:731 ../admin/social_sharing.php:1159
901
  #: ../admin/like_buttons.php:94 ../admin/like_buttons.php:344
902
  msgid "Custom url"
903
  msgstr "Url personalizada"
904
 
905
+ #: ../admin/social_sharing.php:738 ../admin/social_sharing.php:1166
906
  msgid "Url to share"
907
  msgstr "Url para compartilhar"
908
 
909
+ #: ../admin/social_sharing.php:746 ../admin/social_login.php:532
910
  #: ../admin/social_login.php:927 ../admin/like_buttons.php:109
911
  #: ../inc/widget.php:945
912
  msgid "Title"
913
  msgstr "Título"
914
 
915
+ #: ../admin/social_sharing.php:756
916
  msgid "The text to display above the sharing interface"
917
  msgstr "Texto a ser exibido acima da interface de compartilhamento"
918
 
919
+ #: ../admin/social_sharing.php:781 ../admin/social_sharing.php:1175
920
  #, fuzzy
921
  msgid "Instagram username"
922
  msgstr "Instagram"
923
 
924
+ #: ../admin/social_sharing.php:791 ../admin/social_sharing.php:1185
925
  msgid ""
926
  "Username of the Instagram account you want to redirect users to, on clicking "
927
  "the icon"
928
  msgstr ""
929
 
930
+ #: ../admin/social_sharing.php:801 ../admin/social_sharing.php:1195
931
  #, fuzzy
932
  msgid "HTML ID of container element of comment form"
933
  msgstr "HTML ID do comentário do container"
934
 
935
+ #: ../admin/social_sharing.php:811 ../admin/social_sharing.php:1205
936
  msgid ""
937
  "HTML ID of the element you want to focus on the webpage, on click of Comment "
938
  "icon."
939
  msgstr ""
940
 
941
+ #: ../admin/social_sharing.php:825 ../admin/social_sharing.php:1214
942
  msgid "Rearrange icons"
943
  msgstr "Rearranjar ícones"
944
 
945
+ #: ../admin/social_sharing.php:886 ../admin/social_sharing.php:1273
946
  msgid "Drag the icons to rearrange in desired order"
947
  msgstr "Arraste os ícones para rearanjar na ordem desejada"
948
 
949
+ #: ../admin/social_sharing.php:894 ../admin/social_sharing.php:1281
950
  msgid "Select Sharing Services"
951
  msgstr "Selecione os Serviços Compartilhados"
952
 
953
+ #: ../admin/social_sharing.php:901 ../admin/social_sharing.php:1288
954
  msgid "Select sharing services to show in social share bar"
955
  msgstr ""
956
  "Selecione os serviços compartilhados para exibir na barra de "
957
  "compartilhamento social"
958
 
959
+ #: ../admin/social_sharing.php:919 ../admin/social_sharing.php:1306
960
  #, fuzzy
961
  msgid "Search social network"
962
  msgstr "como rede social primária"
963
 
964
+ #: ../admin/social_sharing.php:938 ../admin/social_sharing.php:1343
965
  #: ../admin/like_buttons.php:179 ../admin/like_buttons.php:428
966
  msgid "Horizontal alignment"
967
  msgstr "Alinhamento horizonal"
968
 
969
+ #: ../admin/social_sharing.php:943 ../admin/like_buttons.php:184
970
  msgid "Center"
971
  msgstr "Centro"
972
 
973
+ #: ../admin/social_sharing.php:952 ../admin/social_sharing.php:1356
974
  msgid "Horizontal alignment of the sharing interface"
975
  msgstr "Alinhamento horizontal da interface de compartilhamento"
976
 
977
+ #: ../admin/social_sharing.php:960 ../admin/like_buttons.php:201
978
  msgid "Position with respect to content"
979
  msgstr "Posição em relação ao conteúdo"
980
 
981
+ #: ../admin/social_sharing.php:964 ../admin/like_buttons.php:205
982
  msgid "Top of the content"
983
  msgstr "Acima do conteúdo"
984
 
985
+ #: ../admin/social_sharing.php:966 ../admin/like_buttons.php:207
986
  msgid "Bottom of the content"
987
  msgstr "Abaixo do conteúdo"
988
 
989
+ #: ../admin/social_sharing.php:973
990
  msgid "Specify position of the sharing interface with respect to the content"
991
  msgstr ""
992
  "Especifique a posição da interface de compartilhamento em relação ao conteúdo"
993
 
994
+ #: ../admin/social_sharing.php:981 ../admin/social_sharing.php:1422
995
  msgid "Placement"
996
  msgstr "Localização"
997
 
998
+ #: ../admin/social_sharing.php:985 ../admin/social_sharing.php:1426
999
  #: ../admin/social_login.php:866 ../admin/social_login.php:896
1000
  #: ../admin/like_buttons.php:226 ../admin/like_buttons.php:511
1001
  msgid "Homepage"
1002
  msgstr "Homepage"
1003
 
1004
+ #: ../admin/social_sharing.php:987 ../admin/social_sharing.php:1428
1005
  #: ../admin/like_buttons.php:228 ../admin/like_buttons.php:513
1006
  msgid "Posts"
1007
  msgstr "Posts"
1008
 
1009
+ #: ../admin/social_sharing.php:989 ../admin/social_sharing.php:1430
1010
  #: ../admin/like_buttons.php:230 ../admin/like_buttons.php:515
1011
  msgid "Pages"
1012
  msgstr "Páginas"
1013
 
1014
+ #: ../admin/social_sharing.php:991 ../admin/social_sharing.php:1432
1015
  #: ../admin/like_buttons.php:232 ../admin/like_buttons.php:517
1016
  #, fuzzy
1017
  msgid "Excerpts and Posts page"
1018
  msgstr "Pedaços (na Homepage)"
1019
 
1020
+ #: ../admin/social_sharing.php:993 ../admin/social_sharing.php:1434
1021
  #: ../admin/like_buttons.php:234 ../admin/like_buttons.php:519
1022
  msgid "Category Archives"
1023
  msgstr "Arquivos de Categorias"
1024
 
1025
+ #: ../admin/social_sharing.php:995 ../admin/social_sharing.php:1436
1026
  #: ../admin/like_buttons.php:236 ../admin/like_buttons.php:521
1027
  msgid "Archive Pages (Category, Tag, Author or Date based pages)"
1028
  msgstr "Página de arquivo (Páginas baseadas em Categoria, Tag, Autor ou Data)"
1029
 
1030
+ #: ../admin/social_sharing.php:1011 ../admin/like_buttons.php:252
1031
  msgid "BuddyPress activity"
1032
  msgstr "Atividade BuddyPress"
1033
 
1034
+ #: ../admin/social_sharing.php:1013 ../admin/like_buttons.php:255
1035
  msgid "BuddyPress group (only at top of content)"
1036
  msgstr "Grupo BuddyPress (apenas acima do conteúdo)"
1037
 
1038
+ #: ../admin/social_sharing.php:1019 ../admin/social_sharing.php:1458
1039
  #: ../admin/like_buttons.php:262 ../admin/like_buttons.php:542
1040
  msgid "BBPress forum"
1041
  msgstr "Forum BBPress"
1042
 
1043
+ #: ../admin/social_sharing.php:1022 ../admin/social_sharing.php:1461
1044
  #: ../admin/like_buttons.php:265 ../admin/like_buttons.php:545
1045
  msgid "BBPress topic"
1046
  msgstr "Tópico BBPress"
1047
 
1048
+ #: ../admin/social_sharing.php:1025 ../admin/like_buttons.php:268
1049
  msgid "BBPress reply"
1050
  msgstr "Responder BBPress"
1051
 
1052
+ #: ../admin/social_sharing.php:1032 ../admin/like_buttons.php:275
1053
  msgid "After individual product at WooCommerce Shop page"
1054
  msgstr "Depois de produtos individuais na página WooCommerce Shop"
1055
 
1056
+ #: ../admin/social_sharing.php:1035 ../admin/like_buttons.php:278
1057
  msgid "WooCommerce Product Page"
1058
  msgstr "Página de Produtos WooCommerce"
1059
 
1060
+ #: ../admin/social_sharing.php:1038 ../admin/like_buttons.php:281
1061
  msgid "WooCommerce Thankyou Page"
1062
  msgstr "Página de Agradecimento WooCommerce"
1063
 
1064
+ #: ../admin/social_sharing.php:1049
1065
  msgid "Specify the pages where you want to enable Sharing interface"
1066
  msgstr ""
1067
  "Especifique as páginas onde você deseja habilitar a interface de "
1068
  "compartilhamento"
1069
 
1070
+ #: ../admin/social_sharing.php:1057 ../admin/social_sharing.php:1479
1071
  msgid "Show share counts"
1072
  msgstr "Exibir contadores de compartilhamento"
1073
 
1074
+ #: ../admin/social_sharing.php:1062 ../admin/social_sharing.php:1484
1075
  #, fuzzy
1076
  msgid ""
1077
  "Share counts are supported for Facebook, Twitter, Linkedin, Buffer, Reddit, "
1081
  "Linkedin, GooglePlus, Delicious, Buffer, Reddit, Pinterest, Stumbleupon, "
1082
  "Odnoklassniki e Vkontakte"
1083
 
1084
+ #: ../admin/social_sharing.php:1063 ../admin/social_sharing.php:1485
1085
  #, php-format
1086
  msgid ""
1087
  "To show Twitter share count, you have to click \"Give me my Twitter counts "
1090
  "their website."
1091
  msgstr ""
1092
 
1093
+ #: ../admin/social_sharing.php:1070 ../admin/social_sharing.php:1492
1094
  msgid "If enabled, share counts are displayed above sharing icons."
1095
  msgstr ""
1096
  "Se habilitado, os contadores de compartilhamento são exibidos acima dos "
1097
  "ícones de compartilhamento."
1098
 
1099
+ #: ../admin/social_sharing.php:1079 ../admin/social_sharing.php:1501
1100
  msgid "Show total shares"
1101
  msgstr "Exibe total de compartilhamentos"
1102
 
1103
+ #: ../admin/social_sharing.php:1089 ../admin/social_sharing.php:1511
1104
  msgid "If enabled, total shares will be displayed with sharing icons"
1105
  msgstr ""
1106
  "Se habilitado, os totais de compartilhamentos serão exibidos com os ícones "
1107
  "de compartilhamento"
1108
 
1109
+ #: ../admin/social_sharing.php:1098 ../admin/social_sharing.php:1520
1110
  msgid "Enable 'More' icon"
1111
  msgstr "Habilitar 'Mais' ícones"
1112
 
1113
+ #: ../admin/social_sharing.php:1108 ../admin/social_sharing.php:1530
1114
  msgid ""
1115
  "If enabled, \"More\" icon will be displayed after selected sharing icons "
1116
  "which shows additional sharing networks in popup"
1119
  "de compartilhamento com a exibição adicional das redes sociais "
1120
  "compartilhadas em um popup"
1121
 
1122
+ #: ../admin/social_sharing.php:1125
1123
  msgid "Floating Sharing Interface Options"
1124
  msgstr "Opções da Interface de Compartilhamento Flutuante"
1125
 
1126
+ #: ../admin/social_sharing.php:1131
1127
  msgid "Enable Floating sharing interface"
1128
  msgstr "Habilita interface de compartilhamento flutuante"
1129
 
1130
+ #: ../admin/social_sharing.php:1141
1131
  msgid "Master control to enable floating sharing widget"
1132
  msgstr "Controle Mestre para habilitar o widget de compartilhamento flutuante"
1133
 
1134
+ #: ../admin/social_sharing.php:1335
1135
  msgid ""
1136
  "Specify the color or hex code (example #cc78e0) for the background of "
1137
  "vertical sharing bar. Leave empty for transparent. You can get the hex code "
1143
  "Você pode obter o código hexadecimal que você requer por meio deste link <a "
1144
  "href=\\\"http://www.colorpicker.com/\\\" target=\\\"_blank\\\"> </a>"
1145
 
1146
+ #: ../admin/social_sharing.php:1365 ../admin/like_buttons.php:450
1147
  msgid "Left offset"
1148
  msgstr "Ajuste à esquerda"
1149
 
1150
+ #: ../admin/social_sharing.php:1375
1151
  msgid ""
1152
  "Specify a number. Increase in number will shift sharing interface towards "
1153
  "right and decrease will shift it towards left. Number can be negative too."
1157
  "interface de compartilhamento para a esquerda. Os números podem também ser "
1158
  "negativos."
1159
 
1160
+ #: ../admin/social_sharing.php:1385 ../admin/like_buttons.php:470
1161
  msgid "Right offset"
1162
  msgstr "Ajuste à direita"
1163
 
1164
+ #: ../admin/social_sharing.php:1395
1165
  msgid ""
1166
  "Specify a number. Increase in number will shift sharing interface towards "
1167
  "left and decrease will shift it towards right. Number can be negative too."
1171
  "interface de compartilhamento para a direita. Os números podem também ser "
1172
  "negativos."
1173
 
1174
+ #: ../admin/social_sharing.php:1404 ../admin/like_buttons.php:489
1175
  msgid "Top offset"
1176
  msgstr "Ajuste acima"
1177
 
1178
+ #: ../admin/social_sharing.php:1414
1179
  msgid ""
1180
  "Specify a number. Increase in number will shift sharing interface towards "
1181
  "bottom and decrease will shift it towards top."
1184
  "compartilhamento para baixo e decrementos no número irão deslocar a "
1185
  "interface de compartilhamento para cima."
1186
 
1187
+ #: ../admin/social_sharing.php:1450 ../admin/like_buttons.php:535
1188
  msgid "BuddyPress group"
1189
  msgstr "Grupo BuddyPress"
1190
 
1191
+ #: ../admin/social_sharing.php:1471
1192
  msgid "Specify the pages where you want to enable vertical Sharing interface"
1193
  msgstr ""
1194
  "Especifique as páginas onde você deseja habilitar a interface de "
1195
  "compartilhamento vertical"
1196
 
1197
+ #: ../admin/social_sharing.php:1538
1198
  #, fuzzy
1199
  msgid "Hide floating slider"
1200
  msgstr "Escondido para usuários autenticados:"
1201
 
1202
+ #: ../admin/social_sharing.php:1548
1203
  #, fuzzy
1204
  msgid "Hides the slider arrow present below the floating share bar"
1205
  msgstr "Como esconder a seta após a barra de compartilahmento flutuante?"
1206
 
1207
+ #: ../admin/social_sharing.php:1556
1208
  msgid "Vertical floating bar responsiveness"
1209
  msgstr "Sensibilidade da barra flutuante vertical"
1210
 
1211
+ #: ../admin/social_sharing.php:1559
1212
  #, php-format
1213
  msgid "Display vertical interface only when screen is wider than %s pixels"
1214
  msgstr ""
1215
  "Exibe interface vertical apenas quando a tela é mais larga que %s pixels"
1216
 
1217
+ #: ../admin/social_sharing.php:1566
1218
  msgid ""
1219
  "Display vertical interface only when screen is wider than the width "
1220
  "specified."
1222
  "Exibe interface vertical apenas quando a tela é mais larga que a largura "
1223
  "especificada."
1224
 
1225
+ #: ../admin/social_sharing.php:1574
1226
  msgid "Horizontal floating bar responsiveness"
1227
  msgstr "Sensibilidade da barra flutuante horizontal"
1228
 
1229
+ #: ../admin/social_sharing.php:1577
1230
  #, php-format
1231
  msgid ""
1232
  "Stick vertical floating interface horizontally at bottom only when screen is "
1235
  "Manter a vertical em baixo na interface de flutuação horizontal apenas "
1236
  "quando a tela é mais estreita do que %s pixels"
1237
 
1238
+ #: ../admin/social_sharing.php:1584
1239
  msgid ""
1240
  "Stick vertical floating interface horizontally at bottom only when screen is "
1241
  "narrower than the width specified"
1243
  "Manter a vertical em baixo na interface de flutuação horizontal apenas "
1244
  "quando a tela é mais estreita do que a largura especificada"
1245
 
1246
+ #: ../admin/social_sharing.php:1594
1247
  msgid "Horizontal floating bar position"
1248
  msgstr "Posição da barra de flutuação horizontal"
1249
 
1250
+ #: ../admin/social_sharing.php:1597
1251
  #, php-format
1252
  msgid "%s pixels from %s"
1253
  msgstr "%s pixels de %s"
1254
 
1255
+ #: ../admin/social_sharing.php:1598
1256
  msgid "Auto-adjust according to screen width (responsive)"
1257
  msgstr ""
1258
 
1259
+ #: ../admin/social_sharing.php:1605
1260
  msgid "Alignment of horizontal floating interface. Number can be negative too."
1261
  msgstr ""
1262
  "Alinhamneto da interface de flutuação horizontal. O número pode ser negativo "
1263
  "também."
1264
 
1265
+ #: ../admin/social_sharing.php:1625
1266
  #, fuzzy
1267
  msgid "Facebook Share Count"
1268
  msgstr "Solução de problema no compartilhamento com o Facebook"
1269
 
1270
+ #: ../admin/social_sharing.php:1629
1271
  msgid "Note"
1272
  msgstr ""
1273
 
1274
+ #: ../admin/social_sharing.php:1629
1275
  msgid "Required only to track Facebook share count"
1276
  msgstr ""
1277
 
1278
+ #: ../admin/social_sharing.php:1635 ../admin/social_login.php:161
1279
  msgid "Facebook App ID"
1280
  msgstr "Facebook App ID"
1281
 
1282
+ #: ../admin/social_sharing.php:1645
1283
  #, fuzzy, php-format
1284
  msgid ""
1285
  "Required for Facebook share count to work. Please follow the documentation "
1289
  "a documentação em <a href=\\\"%s\\\" target=\\\"_blank\\\">neste link</a> "
1290
  "para obter o Facebook App ID"
1291
 
1292
+ #: ../admin/social_sharing.php:1653 ../admin/social_login.php:183
1293
  #, fuzzy
1294
  msgid "Facebook App Secret"
1295
  msgstr "Facebook App ID"
1296
 
1297
+ #: ../admin/social_sharing.php:1663
1298
  #, fuzzy, php-format
1299
  msgid ""
1300
  "Required for Facebook share count to work. Please follow the documentation "
1304
  "a documentação em <a href=\\\"%s\\\" target=\\\"_blank\\\">neste link</a> "
1305
  "para obter o Facebook App ID"
1306
 
1307
+ #: ../admin/social_sharing.php:1672 ../admin/like_buttons.php:592
1308
  msgid "Url shortener"
1309
  msgstr "Encurtador de Url"
1310
 
1311
+ #: ../admin/social_sharing.php:1678
1312
  msgid "Use shortlinks already installed"
1313
  msgstr "Use shortlinks já instalados"
1314
 
1315
+ #: ../admin/social_sharing.php:1688
1316
  msgid "Uses default short url permalinks without using any additional plugin"
1317
  msgstr ""
1318
  "Use a short url padrão de permalinks sem utilizar nenhum plugin adicional"
1319
 
1320
+ #: ../admin/social_sharing.php:1696
1321
  msgid "Enable bit.ly url shortener for sharing"
1322
  msgstr "Habilitar encurtador de url bit.ly para compartilhamento"
1323
 
1324
+ #: ../admin/social_sharing.php:1706 ../admin/like_buttons.php:626
1325
  msgid "Master control to enable bit.ly url shortening for sharing"
1326
  msgstr ""
1327
  "Controle Mestre para habilitar encurtador de url bit.ly para compartilhamento"
1328
 
1329
+ #: ../admin/social_sharing.php:1714
1330
  msgid "bit.ly Login"
1331
  msgstr ""
1332
 
1333
+ #: ../admin/social_sharing.php:1724 ../admin/social_sharing.php:1743
1334
  #, fuzzy, php-format
1335
  msgid "More details on how to get it <a href=\"%s\" target=\"_blank\">here</a>"
1336
  msgstr ""
1338
  "documentação <a href=\\\"%s\\\" target=\\\"_blank\\\">neste link link</a> "
1339
  "para obter Twitter API Key"
1340
 
1341
+ #: ../admin/social_sharing.php:1733 ../admin/like_buttons.php:653
1342
  msgid "bit.ly API Key"
1343
  msgstr "bit.ly API Key"
1344
 
1345
+ #: ../admin/social_sharing.php:1752 ../admin/like_buttons.php:672
1346
  msgid "Clear Bitly Cache"
1347
  msgstr "Limpar o Cache Bitly"
1348
 
1349
+ #: ../admin/social_sharing.php:1756 ../admin/like_buttons.php:676
1350
  msgid "ShortUrl cache cleared successfully."
1351
  msgstr "Cache ShortUrl limpo com sucesso."
1352
 
1353
+ #: ../admin/social_sharing.php:1763 ../admin/like_buttons.php:683
1354
  msgid ""
1355
  "Use this to delete short urls saved in database. Handy, if urls of your "
1356
  "website have been changed but short urls are still being generated for old "
1360
  "urls do seu website foram trocadas mas as short urls ainda estão sendo "
1361
  "geradas para suas urls antigas."
1362
 
1363
+ #: ../admin/social_sharing.php:1772
1364
  msgid "Share Count Cache"
1365
  msgstr "Cache de Contador de Compartilhamento"
1366
 
1367
+ #: ../admin/social_sharing.php:1778
1368
  msgid "Refresh Share Count cache every"
1369
  msgstr "Atualizar o contador de compartilhamento a cada"
1370
 
1371
+ #: ../admin/social_sharing.php:1783
1372
  msgid "Second(s)"
1373
  msgstr ""
1374
 
1375
+ #: ../admin/social_sharing.php:1784
1376
  msgid "Minute(s)"
1377
  msgstr ""
1378
 
1379
+ #: ../admin/social_sharing.php:1785
1380
  msgid "Hour(s)"
1381
  msgstr ""
1382
 
1383
+ #: ../admin/social_sharing.php:1786
1384
  msgid "Day(s)"
1385
  msgstr ""
1386
 
1387
+ #: ../admin/social_sharing.php:1794
1388
  #, fuzzy, php-format
1389
  msgid ""
1390
  "Frequent cache refreshing results in slower loading of pages with share "
1394
  "Atualizações frequentes do cache resultam em carregamento mais lento das "
1395
  "páginas com os contadores de compartilhamento habilitados"
1396
 
1397
+ #: ../admin/social_sharing.php:1802
1398
  msgid "Clear Share Counts Cache"
1399
  msgstr "Limpeza do Cache dos Contadores de Compartilhamento"
1400
 
1401
+ #: ../admin/social_sharing.php:1806
1402
  msgid "Share Counts cache cleared successfully."
1403
  msgstr "Sucesso na limpeza do Cache dos Contadores de Compartilhamento."
1404
 
1405
+ #: ../admin/social_sharing.php:1813
1406
  msgid "Use this to clear cached share counts"
1407
  msgstr "Use isso para limpeza do Cache dos Contadores de Compartilhamento"
1408
 
1409
+ #: ../admin/social_sharing.php:1822 ../admin/social_sharing.php:1828
1410
  #: ../admin/social_commenting.php:315 ../admin/like_buttons.php:692
1411
  #: ../admin/like_buttons.php:698
1412
  msgid "Language"
1413
  msgstr "Languagem"
1414
 
1415
+ #: ../admin/social_sharing.php:1838
1416
  #, php-format
1417
  msgid ""
1418
  "Enter the code of the language you want to use for like buttons. You can "
1423
  "achar o código da linguagem <a href=\\\"%s\\\" target=\\\"_blank\\\">neste "
1424
  "link</a>. Deixe-o em branco para a linguagem padrão (inglês)"
1425
 
1426
+ #: ../admin/social_sharing.php:1847
1427
  msgid "Username in sharing"
1428
  msgstr "Username no compartilhamento"
1429
 
1430
+ #: ../admin/social_sharing.php:1853
1431
  msgid "Twitter username (without @)"
1432
  msgstr "Username do Twitter (sem @)"
1433
 
1434
+ #: ../admin/social_sharing.php:1863 ../admin/social_sharing.php:1882
1435
  msgid ""
1436
  "Provided username will be appended after the content being shared as \"via "
1437
  "@USERNAME\". Leave empty if you do not want any username in the content "
1441
  "\\\"via @USERNAME\\\". Deixe em branco se você não desejar nenhum username "
1442
  "no conteúdo sendo compartilhado."
1443
 
1444
+ #: ../admin/social_sharing.php:1872
1445
  msgid "Buffer username (without @)"
1446
  msgstr "Username do Buffer (sem @)"
1447
 
1448
+ #: ../admin/social_sharing.php:1891
1449
  msgid "AMP"
1450
  msgstr ""
1451
 
1452
+ #: ../admin/social_sharing.php:1897
1453
  #, fuzzy
1454
  msgid "Enable sharing on AMP pages"
1455
  msgstr "Habilia a página de autenticação"
1456
 
1457
+ #: ../admin/social_sharing.php:1907
1458
  msgid "Enable this option to render sharing icons on AMP pages"
1459
  msgstr ""
1460
 
1461
+ #: ../admin/social_sharing.php:1926 ../admin/like_buttons.php:771
1462
  msgid "myCRED"
1463
  msgstr ""
1464
 
1465
+ #: ../admin/social_sharing.php:1932 ../admin/like_buttons.php:777
1466
  msgid "Append myCRED referral ID to the urls being shared"
1467
  msgstr ""
1468
 
1469
+ #: ../admin/social_sharing.php:1965
1470
  msgid "Facebook Sharing Troubleshooter"
1471
  msgstr "Solução de problema no compartilhamento com o Facebook"
1472
 
1473
+ #: ../admin/social_sharing.php:1970
1474
  #, fuzzy
1475
  msgid ""
1476
  "If Facebook sharing is not working fine, click at the following link and "
1483
  "compartilhamento do Facebook não está funcionando adequadamente) no seu "
1484
  "website:"
1485
 
1486
+ #: ../admin/social_sharing.php:1987 ../admin/social_commenting.php:399
1487
+ #: ../admin/social_login.php:1295
1488
  msgid ""
1489
  "<strong>Note:</strong> Plugin will not work on local server. You should have "
1490
  "an online website for the plugin to function properly."
1491
  msgstr ""
1492
 
1493
+ #: ../admin/social_sharing.php:1988
1494
  msgid ""
1495
  "Why is sharer not showing the correct image, title and other meta tags "
1496
  "content?"
1497
  msgstr ""
1498
 
1499
+ #: ../admin/social_sharing.php:1989
1500
  #, fuzzy
1501
  msgid "Why is Facebook share count not working?"
1502
  msgstr "Porque o contador de compartilhamentos não está sendo atualizado?"
1503
 
1504
+ #: ../admin/social_sharing.php:1992
1505
  msgid "Why is Instagram icon redirecting to Instagram website?"
1506
  msgstr ""
1507
 
1508
+ #: ../admin/social_sharing.php:1993
1509
  msgid ""
1510
  "Instagram icon is there to send website visitors to the Instagram page of "
1511
  "your choice. You can save the desired Instagram handle in \"Instagram "
1513
  "sections."
1514
  msgstr ""
1515
 
1516
+ #: ../admin/social_sharing.php:1996
1517
  #, fuzzy
1518
  msgid "How to customize the url being shared?"
1519
  msgstr ""
1520
  "Como personalizar a aparência dos contadores de compartilhamento individuais?"
1521
 
1522
+ #: ../admin/social_sharing.php:1997
1523
  msgid ""
1524
  "Why are Twitter shares not appearing even after registering at Twitcount.com?"
1525
  msgstr ""
1526
 
1527
+ #: ../admin/social_sharing.php:1998
1528
  msgid ""
1529
  "It takes some time for their service to track the shares made on Twitter "
1530
  "from your website. If you still feel it's taking too long you can contact "
1531
  "their support directly from their website."
1532
  msgstr ""
1533
 
1534
+ #: ../admin/social_sharing.php:2000 ../admin/like_buttons.php:814
1535
  msgid "How to Place Title and Social Share Icons in the Same Row?"
1536
  msgstr ""
1537
 
1538
+ #: ../admin/social_sharing.php:2001
1539
  msgid ""
1540
  "How to restore Social Share counts lost after moving my website to SSL/Https?"
1541
  msgstr ""
1542
 
1543
+ #: ../admin/social_sharing.php:2002 ../admin/social_commenting.php:402
1544
+ #: ../admin/social_login.php:1302
1545
  msgid "Why is my browser blocking some features of the plugin?"
1546
  msgstr ""
1547
 
1548
+ #: ../admin/social_sharing.php:2003
1549
  #, fuzzy
1550
  msgid "Why the color of share icons is not being updated?"
1551
  msgstr "Porque o contador de compartilhamentos não está sendo atualizado?"
1552
 
1553
+ #: ../admin/social_sharing.php:2004
1554
  #, fuzzy
1555
  msgid "Why Facebook share counts are not appearing?"
1556
  msgstr "Porque o contador de compartilhamentos não está sendo atualizado?"
1557
 
1558
+ #: ../admin/social_sharing.php:2005
1559
  msgid ""
1560
  "How can I show share counts of my website rather than of individual pages/"
1561
  "posts?"
1563
  "Como posso exibir os contadores de compartilhamento do meu website ao invés "
1564
  "das páginas/posts individuais?"
1565
 
1566
+ #: ../admin/social_sharing.php:2006
1567
  msgid "How can I disable sharing on particular page/post?"
1568
  msgstr ""
1569
  "Como posso desabilitar o compartilhamento em uma página/post em particular?"
1570
 
1571
+ #: ../admin/social_sharing.php:2007
1572
  msgid "How can I specify minimum sharing count for sharing networks?"
1573
  msgstr ""
1574
  "Como posso especificar um contador mínimo de compartilhamento das redes "
1575
  "sociais?"
1576
 
1577
+ #: ../admin/social_sharing.php:2008
1578
  msgid "How to share specific page?"
1579
  msgstr "Como compartilhar página específica?"
1580
 
1581
+ #: ../admin/social_sharing.php:2009
1582
  msgid "How to integrate Google Analytics with sharing?"
1583
  msgstr "Como integrar o Google Analytics com compartilhamento?"
1584
 
1585
+ #: ../admin/social_sharing.php:2010
1586
  msgid "How to customize the look of total share counts?"
1587
  msgstr ""
1588
  "Como personalizar a aparência dos contatores de compartilhamentos totais?"
1589
 
1590
+ #: ../admin/social_sharing.php:2011
1591
  msgid "How to customize the look of individual share counts?"
1592
  msgstr ""
1593
  "Como personalizar a aparência dos contadores de compartilhamento individuais?"
1594
 
1595
+ #: ../admin/social_sharing.php:2012
1596
  msgid "How to show Whatsapp icon only on mobile devices?"
1597
  msgstr "Como exibir o ícone do Whatsapp apenas em dispositivos móveis?"
1598
 
1599
+ #: ../admin/social_sharing.php:2013
1600
  msgid "How to hide arrow after floating sharing bar?"
1601
  msgstr "Como esconder a seta após a barra de compartilahmento flutuante?"
1602
 
1603
+ #: ../admin/social_sharing.php:2014
1604
  #, fuzzy
1605
  msgid "Why is share count not getting updated?"
1606
  msgstr "Porque o contador de compartilhamentos não está sendo atualizado?"
1607
 
1608
+ #: ../admin/social_sharing.php:2015 ../admin/like_buttons.php:812
1609
  msgid "Why is there so much space between like buttons?"
1610
  msgstr ""
1611
 
1612
+ #: ../admin/social_sharing.php:2016 ../admin/like_buttons.php:813
1613
  msgid "Why are floating sharing/like buttons not appearing at homepage?"
1614
  msgstr ""
1615
 
1869
  msgid "GDPR"
1870
  msgstr ""
1871
 
1872
+ #: ../admin/social_login.php:44 ../admin/social_login.php:1230
1873
  msgid "XProfile Integration"
1874
  msgstr ""
1875
 
2621
  msgstr "Habilitar comentário Disqus"
2622
 
2623
  #: ../admin/social_login.php:1135
2624
+ msgid "Text to link to Terms-Conditions page"
2625
  msgstr ""
2626
 
2627
  #: ../admin/social_login.php:1145
2628
+ msgid "Word(s) in the opt-in text to be linked to terms-conditions page"
2629
  msgstr ""
2630
 
2631
  #: ../admin/social_login.php:1153
2632
+ msgid "Terms-Conditions Url"
2633
  msgstr ""
2634
 
2635
  #: ../admin/social_login.php:1163
2636
  #, fuzzy
2637
+ msgid "Url of the terms-conditions page of your website"
2638
+ msgstr "Url da homepage do seu website"
2639
+
2640
+ #: ../admin/social_login.php:1171
2641
+ msgid "Text to link to Privacy Policy page"
2642
+ msgstr ""
2643
+
2644
+ #: ../admin/social_login.php:1181
2645
+ msgid "Word(s) in the opt-in text to be linked to privacy policy page"
2646
+ msgstr ""
2647
+
2648
+ #: ../admin/social_login.php:1189
2649
+ msgid "Privacy Policy Url"
2650
+ msgstr ""
2651
+
2652
+ #: ../admin/social_login.php:1199
2653
+ #, fuzzy
2654
  msgid "Url of the privacy policy page of your website"
2655
  msgstr "Url da homepage do seu website"
2656
 
2657
+ #: ../admin/social_login.php:1250 ../inc/widget.php:260 ../inc/widget.php:438
2658
  #: ../inc/widget.php:602 ../inc/widget.php:750
2659
  msgid "Select"
2660
  msgstr "Selecione"
2661
 
2662
+ #: ../admin/social_login.php:1281
2663
  msgid "Social Login Shortcode & Widget"
2664
  msgstr "Autenticação Social Shortcode & Widget"
2665
 
2666
+ #: ../admin/social_login.php:1282
2667
  msgid "Social Linking Shortcode"
2668
  msgstr "Shortcode de associação Social"
2669
 
2670
+ #: ../admin/social_login.php:1297
2671
  msgid "Why is social login not working?"
2672
  msgstr ""
2673
 
2674
+ #: ../admin/social_login.php:1298
2675
  msgid ""
2676
  "Make sure that App ID and Secret (Client ID and Secret) keys you have saved, "
2677
  "belong to the same app"
2678
  msgstr ""
2679
 
2680
+ #: ../admin/social_login.php:1300
2681
  msgid "Social Login not working with Varnish enabled"
2682
  msgstr ""
2683
 
2684
+ #: ../admin/social_login.php:1301
2685
  msgid ""
2686
  "Why the user is not appearing logged in even after Social Login until the "
2687
  "webpage is refreshed manually?"
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: 2019-06-25 11:54+0530\n"
6
- "PO-Revision-Date: 2019-06-25 11:54+0530\n"
7
  "Last-Translator: Heateor <hello@heateor.com>\n"
8
  "Language-Team: Russian\n"
9
  "Language: ru_RU\n"
@@ -17,19 +17,19 @@ msgstr ""
17
  "%10<=4 &&(n%100<10||n%100 >= 20)? 1 : 2);\n"
18
  "X-Poedit-SearchPath-0: ..\n"
19
 
20
- #: ../super_socializer.php:430
21
  msgid "Problem fetching access token: "
22
  msgstr ""
23
 
24
- #: ../super_socializer.php:434 ../super_socializer.php:448
25
  msgid "Facebook SDK returned an error: "
26
  msgstr ""
27
 
28
- #: ../super_socializer.php:444
29
  msgid "Graph returned an error: "
30
  msgstr ""
31
 
32
- #: ../super_socializer.php:610
33
  msgid ""
34
  "cURL is not enabled at your website server. Please contact your website "
35
  "server administrator to enable it."
@@ -37,7 +37,7 @@ msgstr ""
37
  "Curl не включен в вашем веб-сайте. Вам, возможно, потребуется обратиться к "
38
  "администратору вашего сайта, чтобы включить это."
39
 
40
- #: ../super_socializer.php:637
41
  #, fuzzy, php-format
42
  msgid ""
43
  "Enter exactly the following url in <strong>Website</strong> option in your "
@@ -46,7 +46,7 @@ msgstr ""
46
  "Введите действующую ссылку для <strong>сайта</strong> и <strong>обратную "
47
  "ссылку</strong> в вашем приложении Твиттера (смотрите шаг 3 %s)"
48
 
49
- #: ../super_socializer.php:640
50
  #, fuzzy, php-format
51
  msgid ""
52
  "Enter exactly the following url in <strong>Callback URLs</strong> option in "
@@ -55,7 +55,7 @@ msgstr ""
55
  "Введите действующую ссылку для <strong>сайта</strong> и <strong>обратную "
56
  "ссылку</strong> в вашем приложении Твиттера (смотрите шаг 3 %s)"
57
 
58
- #: ../super_socializer.php:643
59
  msgid ""
60
  "Make sure cURL is enabled at your website server. You may need to contact "
61
  "the server administrator of your website to verify this"
@@ -63,77 +63,69 @@ msgstr ""
63
  "Убедитесь Curl включен в вашем веб-сайте сервера. Вы, возможно, потребуется "
64
  "обратиться к администратору сервера вашего сайта, чтобы убедиться, это"
65
 
66
- #: ../super_socializer.php:644
67
- #, php-format
68
- msgid ""
69
- "Make sure that \"Enable Callback Locking\" option is disabled. See step 4 %s"
70
- msgstr ""
71
- "Убедитесь, что «Включить Блокировку обратного вызова » параметр отключен. "
72
- "Смотрите шаг 4 %s"
73
-
74
- #: ../super_socializer.php:907 ../helper.php:976
75
  msgid "Please verify your email address to login."
76
  msgstr "Пожалуйста, подтвердите ваш адрес электронной почты."
77
 
78
- #: ../super_socializer.php:907
79
  msgid "Your email has been verified. Now you can login to your account"
80
  msgstr "Ваше сообщение было проверено. Теперь вы можете войти в свой аккаунт"
81
 
82
- #: ../super_socializer.php:911
83
  msgid "Notification"
84
  msgstr "Уведомления"
85
 
86
- #: ../super_socializer.php:929 ../admin/social_login.php:805
87
  msgid "Email required"
88
  msgstr "Email (Обязательно)"
89
 
90
- #: ../super_socializer.php:932
91
  msgid "Please check your email inbox to complete the registration."
92
  msgstr "Пожалуйста, проверьте свой почтовый ящик для завершения регистрации."
93
 
94
- #: ../super_socializer.php:939 ../helper.php:508
95
  msgid "Enter your LiveJournal username"
96
  msgstr "Введите ваше имя пользователя LiveJournal"
97
 
98
- #: ../super_socializer.php:1011
99
  msgid "Leave a reply"
100
  msgstr "Оставить ответ"
101
 
102
- #: ../super_socializer.php:1023 ../inc/social_sharing.php:241
103
  msgid "Shares"
104
  msgstr "Поделились"
105
 
106
- #: ../super_socializer.php:1023 ../inc/social_sharing.php:241
107
  msgid "Share"
108
  msgstr "Поделиться"
109
 
110
- #: ../super_socializer.php:1023
111
  #, fuzzy
112
  msgid "Link copied."
113
  msgstr "LinkedIn"
114
 
115
- #: ../super_socializer.php:1269
116
  msgid "Super Socializer - General Options"
117
  msgstr "Super Socializer - Общие настройки"
118
 
119
- #: ../super_socializer.php:1269 ../admin/general_options.php:15
120
  #: ../admin/social_commenting.php:47
121
  msgid "General Options"
122
  msgstr "Основные настройки"
123
 
124
- #: ../super_socializer.php:1337 ../helper.php:898
125
  msgid "Social Avatar"
126
  msgstr "Социальный аватар"
127
 
128
- #: ../super_socializer.php:1340
129
  msgid "Small Avatar Url"
130
  msgstr "Ссылка для маленького аватара"
131
 
132
- #: ../super_socializer.php:1344
133
  msgid "Large Avatar Url"
134
  msgstr "Ссылка для большого аватара"
135
 
136
- #: ../super_socializer.php:1348 ../helper.php:901
137
  msgid ""
138
  "Do not fetch and update social avatar from my profile, next time I Social "
139
  "Login"
@@ -141,98 +133,90 @@ msgstr ""
141
  "Не получать и обновлять социальный аватар из моего профиля, в следующий раз "
142
  "я когда я использую вход через соцсети"
143
 
144
- #: ../super_socializer.php:1352 ../helper.php:902
145
  msgid "Update social avatar, next time I Social Login"
146
  msgstr ""
147
  "Обновление аватара соцсетей в следующий раз при использовании входа через "
148
  "соцсети"
149
 
150
- #: ../super_socializer.php:1425 ../super_socializer.php:2197
151
- msgid ""
152
- "Your browser is blocking some features of this website. Please follow the "
153
- "instructions at {support_url} to unblock these."
154
- msgstr ""
155
- "Ваш браузер блокирует некоторые функции данного веб-сайта. Пожалуйста, "
156
- "следуйте инструкциям в {support_url}, чтобы разблокировать функции."
157
-
158
- #: ../super_socializer.php:1431
159
  msgid "Login with your Social ID"
160
  msgstr "Войти, используя социальный аккаунт"
161
 
162
- #: ../super_socializer.php:1432
163
  msgid "Email you entered is already registered or invalid"
164
  msgstr ""
165
  "Электронная почта, которую вы ввели, уже зарегистрирована или недействительна"
166
 
167
- #: ../super_socializer.php:1437
168
  msgid "Please enter a valid email address. You might be required to verify it"
169
  msgstr ""
170
  "Пожалуйста, введите действительный адрес электронной почты. Вам, возможно, "
171
  "потребуется проверить его"
172
 
173
- #: ../super_socializer.php:1441 ../super_socializer.php:2121
174
  msgid "Link your social account to login to your account at this website"
175
  msgstr ""
176
  "Введите ссылку на ваш аккаут в социальных сетях чтобы войти в аккаунт на "
177
  "этом сайте"
178
 
179
- #: ../super_socializer.php:1687
180
  msgid "Thanks for installing Super Socializer plugin"
181
  msgstr ""
182
 
183
- #: ../super_socializer.php:1689
184
  msgid "Configure the Plugin"
185
  msgstr ""
186
 
187
- #: ../super_socializer.php:1700
188
  msgid ""
189
  "Update \"Facebook Comments Moderation\" add-on for compatibility with "
190
  "current version of Super Socialzer"
191
  msgstr ""
192
 
193
- #: ../super_socializer.php:1709
194
  msgid ""
195
  "Update \"Facebook Comments Notifier\" add-on for compatibility with current "
196
  "version of Super Socialzer"
197
  msgstr ""
198
 
199
- #: ../super_socializer.php:1718
200
  msgid ""
201
  "Update \"Social Login Buttons\" add-on for compatibility with current "
202
  "version of Super Socialzer"
203
  msgstr ""
204
 
205
- #: ../super_socializer.php:1727
206
  msgid ""
207
  "Update \"Social Share myCRED Integration\" add-on for maximum compatibility "
208
  "with current version of Super Socialzer"
209
  msgstr ""
210
 
211
- #: ../super_socializer.php:1736
212
  msgid ""
213
  "Update \"Social Login myCRED Integration\" add-on for maximum compatibility "
214
  "with current version of Super Socialzer"
215
  msgstr ""
216
 
217
- #: ../super_socializer.php:1743
218
  msgid ""
219
  "Update \"Social Login myCRED Integration\" add-on for compatibility with "
220
  "LiveJournal Login of Super Socialzer"
221
  msgstr ""
222
 
223
- #: ../super_socializer.php:1754
224
  #, php-format
225
  msgid ""
226
  "To continue using Steam login save Steam API key <a href=\"%s\">here</a>"
227
  msgstr ""
228
 
229
- #: ../super_socializer.php:1770
230
  #, php-format
231
  msgid ""
232
  "To continue using Social Login, save the secret keys <a href=\"%s\">here</a>"
233
  msgstr ""
234
 
235
- #: ../super_socializer.php:1794
236
  #, php-format
237
  msgid ""
238
  "Add %s in \"Valid OAuth redirect URIs\" option in your Facebook app settings "
@@ -240,14 +224,14 @@ msgid ""
240
  "target=\"_blank\">here</a>"
241
  msgstr ""
242
 
243
- #: ../super_socializer.php:1794 ../super_socializer.php:1819
244
- #: ../super_socializer.php:1844 ../super_socializer.php:1869
245
- #: ../super_socializer.php:1902 ../super_socializer.php:1930
246
- #: ../super_socializer.php:1957 ../super_socializer.php:2034
247
  msgid "Okay"
248
  msgstr "Окей"
249
 
250
- #: ../super_socializer.php:1819
251
  #, php-format
252
  msgid ""
253
  "Add %s in \"Callback URLs\" option in your Twitter app settings for Twitter "
@@ -255,7 +239,7 @@ msgid ""
255
  "\">here</a>"
256
  msgstr ""
257
 
258
- #: ../super_socializer.php:1844
259
  #, php-format
260
  msgid ""
261
  "Add %s in \"Authorized Redirect URLs\" option in your Linkedin app settings "
@@ -263,7 +247,7 @@ msgid ""
263
  "target=\"_blank\">here</a>"
264
  msgstr ""
265
 
266
- #: ../super_socializer.php:1869
267
  #, php-format
268
  msgid ""
269
  "Add %s in \"Authorized redirect URIs\" option in your Google client settings "
@@ -271,13 +255,13 @@ msgid ""
271
  "target=\"_blank\">here</a>"
272
  msgstr ""
273
 
274
- #: ../super_socializer.php:1880
275
  #, php-format
276
  msgid ""
277
  "Save the url of privacy policy page of your website <a href=\"%s\">here</a>"
278
  msgstr ""
279
 
280
- #: ../super_socializer.php:1902
281
  #, php-format
282
  msgid ""
283
  "This plugin is GDPR compliant. You need to update the privacy policy of your "
@@ -285,7 +269,7 @@ msgid ""
285
  "\"%s\" target=\"_blank\">here</a>"
286
  msgstr ""
287
 
288
- #: ../super_socializer.php:1930
289
  #, php-format
290
  msgid ""
291
  "Now plugin supports a new service Twitcount.com to show Twitter shares. To "
@@ -294,7 +278,7 @@ msgid ""
294
  "your website %s with them. No need to copy-paste any code from their website."
295
  msgstr ""
296
 
297
- #: ../super_socializer.php:1957
298
  #, php-format
299
  msgid ""
300
  "Replace url saved in \"Callback URLs\" option in your Twitter app settings "
@@ -302,7 +286,7 @@ msgid ""
302
  "\"%s\" target=\"_blank\">here</a>"
303
  msgstr ""
304
 
305
- #: ../super_socializer.php:1982
306
  #, php-format
307
  msgid ""
308
  "If you cannot get Linkedin login to work after updating the plugin, replace "
@@ -310,11 +294,11 @@ msgid ""
310
  "For more details, check step 6 <a href=\"%s\" target=\"_blank\">here</a>"
311
  msgstr ""
312
 
313
- #: ../super_socializer.php:1982 ../super_socializer.php:2009
314
  msgid "Dismiss"
315
  msgstr ""
316
 
317
- #: ../super_socializer.php:2008
318
  #, php-format
319
  msgid ""
320
  "Save Facebook App ID and Secret keys in \"Standard Interface\" and/or "
@@ -323,7 +307,7 @@ msgid ""
323
  "that, clear share counts cache from \"Miscellaneous\" section"
324
  msgstr ""
325
 
326
- #: ../super_socializer.php:2034
327
  #, php-format
328
  msgid ""
329
  "Your website visitors will see a popup notification (only once) if their "
@@ -339,11 +323,19 @@ msgstr ""
339
  "пользователей, если их браузеры блокируют функции плагина» <a href=\"%s"
340
  "\">здесь</a>"
341
 
 
 
 
 
 
 
 
 
342
  #: ../helper.php:8
343
  msgid "Settings saved"
344
  msgstr "Параметры сохранены"
345
 
346
- #: ../helper.php:8 ../admin/social_sharing.php:42
347
  msgid "Dismiss this notice"
348
  msgstr "Закрыть это уведомление"
349
 
@@ -431,9 +423,9 @@ msgstr "Небольшой аватар"
431
  msgid "Large Avatar"
432
  msgstr "Большой аватар"
433
 
434
- #: ../helper.php:913 ../admin/general_options.php:132
435
- #: ../admin/social_sharing.php:2020 ../admin/social_commenting.php:413
436
- #: ../admin/social_login.php:1277 ../admin/like_buttons.php:826
437
  msgid "Save Changes"
438
  msgstr "Сохранить изменения"
439
 
@@ -454,10 +446,10 @@ msgstr ""
454
  msgid "Something bad happened"
455
  msgstr ""
456
 
457
- #: ../admin/general_options.php:7 ../admin/general_options.php:136
458
- #: ../admin/social_sharing.php:5 ../admin/social_sharing.php:2024
459
  #: ../admin/social_commenting.php:5 ../admin/social_commenting.php:417
460
- #: ../admin/social_login.php:5 ../admin/social_login.php:1281
461
  #: ../admin/like_buttons.php:6 ../admin/like_buttons.php:830
462
  #, fuzzy, php-format
463
  msgid ""
@@ -503,62 +495,33 @@ msgstr ""
503
  "плагина в следующий раз."
504
 
505
  #: ../admin/general_options.php:75
506
- msgid ""
507
- "Show popup notification to users if their browsers block the plugin features"
508
- msgstr ""
509
- "Показать всплывающее уведомление для пользователей, если их браузеры "
510
- "блокируют функции плагина"
511
-
512
- #: ../admin/general_options.php:85
513
- #, fuzzy
514
- msgid ""
515
- "If enabled, your website visitors will see a popup notification (only once) "
516
- "if their browsers block any of the features of the plugin so that they can "
517
- "change their browser settings to unblock these."
518
- msgstr ""
519
- "Если включено, посетители вашего сайта увидят всплывающее уведомление, если "
520
- "их браузеры блокируют любую из функций плагина, так что они могут изменить "
521
- "свои настройки браузера, чтобы разблокировать функции."
522
-
523
- #: ../admin/general_options.php:95
524
- msgid "Message to show in popup notification"
525
- msgstr "Сообщение для показа в всплывающем окне"
526
-
527
- #: ../admin/general_options.php:105
528
- msgid ""
529
- "Use {support_url} placeholder to show support documentation url in message"
530
- msgstr ""
531
- "Используйте {support_url} для отображения URL-адреса технической "
532
- "документации в сообщении"
533
-
534
- #: ../admin/general_options.php:114
535
  msgid "Custom CSS"
536
  msgstr "Пользовательские CSS"
537
 
538
- #: ../admin/general_options.php:124
539
  msgid "You can specify any additional CSS rules (without &lt;style&gt; tag)"
540
  msgstr ""
541
  "Можно указать любые дополнительные правила CSS (без тега &lt; style &gt;)"
542
 
543
- #: ../admin/general_options.php:147 ../admin/social_sharing.php:2030
544
- #: ../admin/social_commenting.php:423 ../admin/social_login.php:1287
545
- #: ../admin/like_buttons.php:836
546
  #, fuzzy
547
  msgid "Instagram Shoutout"
548
  msgstr "Instagram"
549
 
550
- #: ../admin/general_options.php:149 ../admin/social_sharing.php:2032
551
- #: ../admin/social_commenting.php:425 ../admin/social_login.php:1289
552
- #: ../admin/like_buttons.php:838
553
  msgid ""
554
  "If you can send (to hello@heateor.com) how our plugin is helping your "
555
  "business, we can share it on Instagram. You can also send any relevant "
556
  "hashtags and people to mention in the Instagram post."
557
  msgstr ""
558
 
559
- #: ../admin/general_options.php:150 ../admin/social_sharing.php:2033
560
- #: ../admin/social_commenting.php:426 ../admin/social_login.php:1290
561
- #: ../admin/like_buttons.php:839
562
  msgid ""
563
  "<b>Example</b> - Blah-Blah Online Coaching teaches various programming "
564
  "language courses through their website. They have emerged as one of the most "
@@ -567,9 +530,9 @@ msgid ""
567
  "time."
568
  msgstr ""
569
 
570
- #: ../admin/general_options.php:151 ../admin/social_sharing.php:2034
571
- #: ../admin/social_commenting.php:427 ../admin/social_login.php:1291
572
- #: ../admin/like_buttons.php:840
573
  msgid ""
574
  "@blahblahonlinecoaching proudly use #SuperSocializer to enable social "
575
  "features at their website, such as - Social Login, Social Share and Social "
@@ -679,60 +642,60 @@ msgstr "Мастер настройки включения горизонтал
679
  msgid "Recover Social Share Counts Lost After Moving to SSL/Https"
680
  msgstr ""
681
 
682
- #: ../admin/social_sharing.php:42 ../admin/social_sharing.php:1983
683
  msgid ""
684
  "Save Facebook App Id and Secret in the \"Miscellaneous\" section for "
685
  "Facebook share count to work"
686
  msgstr ""
687
 
688
- #: ../admin/social_sharing.php:49
689
  msgid "Theme Selection"
690
  msgstr "Выбор тем"
691
 
692
- #: ../admin/social_sharing.php:50 ../admin/like_buttons.php:41
693
  msgid "Standard Interface"
694
  msgstr "Стандартный интерфейс"
695
 
696
- #: ../admin/social_sharing.php:51 ../admin/like_buttons.php:42
697
  msgid "Floating Interface"
698
  msgstr "Плавающий интерфейс"
699
 
700
- #: ../admin/social_sharing.php:52 ../admin/like_buttons.php:43
701
  msgid "Miscellaneous"
702
  msgstr "Разное"
703
 
704
- #: ../admin/social_sharing.php:56 ../admin/like_buttons.php:47
705
  #, fuzzy
706
  msgid "3rd Party Integration"
707
  msgstr "XProfile интеграция"
708
 
709
- #: ../admin/social_sharing.php:60 ../admin/social_sharing.php:1945
710
- #: ../admin/social_sharing.php:1947 ../admin/social_login.php:46
711
- #: ../admin/social_login.php:1243 ../admin/like_buttons.php:51
712
  #: ../admin/like_buttons.php:797
713
  msgid "Shortcode & Widget"
714
  msgstr "Шорткод и виджет"
715
 
716
- #: ../admin/social_sharing.php:61
717
  msgid "Troubleshooter"
718
  msgstr "Устранение неисправностей"
719
 
720
- #: ../admin/social_sharing.php:62 ../admin/social_sharing.php:1978
721
  #: ../admin/social_commenting.php:40 ../admin/social_commenting.php:397
722
- #: ../admin/social_login.php:47 ../admin/social_login.php:1257
723
  #: ../admin/like_buttons.php:52 ../admin/like_buttons.php:810
724
  msgid "FAQ"
725
  msgstr "Часто задаваемые вопросы (FAQ)"
726
 
727
- #: ../admin/social_sharing.php:70
728
  msgid "Standard interface theme"
729
  msgstr "Стандартный интерфейс"
730
 
731
- #: ../admin/social_sharing.php:75 ../admin/social_sharing.php:382
732
  msgid "Icon Preview"
733
  msgstr "Превью иконок"
734
 
735
- #: ../admin/social_sharing.php:147 ../admin/social_sharing.php:455
736
  msgid ""
737
  "Do not forget to save the configuration after making changes by clicking the "
738
  "save button below"
@@ -740,57 +703,57 @@ msgstr ""
740
  "Не забудьте сохранить конфигурацию после внесения изменений, нажав ниже "
741
  "кнопку сохранить"
742
 
743
- #: ../admin/social_sharing.php:154 ../admin/social_sharing.php:462
744
  msgid "Shape"
745
  msgstr "Форма"
746
 
747
- #: ../admin/social_sharing.php:158 ../admin/social_sharing.php:466
748
  #: ../inc/widget.php:951
749
  msgid "Round"
750
  msgstr "Круглая"
751
 
752
- #: ../admin/social_sharing.php:160 ../admin/social_sharing.php:468
753
  #: ../inc/widget.php:952
754
  msgid "Square"
755
  msgstr "Квадратная"
756
 
757
- #: ../admin/social_sharing.php:162 ../admin/social_sharing.php:470
758
  msgid "Rectangle"
759
  msgstr "Прямоугольник"
760
 
761
- #: ../admin/social_sharing.php:169 ../admin/social_sharing.php:477
762
  msgid "Shape of the sharing icons"
763
  msgstr "Форма кнопок Поделиться"
764
 
765
- #: ../admin/social_sharing.php:178 ../admin/social_sharing.php:486
766
  msgid "Size (in pixels)"
767
  msgstr "Размер (в пикселях)"
768
 
769
- #: ../admin/social_sharing.php:194 ../admin/social_sharing.php:502
770
  msgid "Size of the sharing icons"
771
  msgstr "Размер кнопок Поделиться"
772
 
773
- #: ../admin/social_sharing.php:204 ../admin/social_sharing.php:512
774
  msgid "Width (in pixels)"
775
  msgstr "Ширина (в пикселях)"
776
 
777
- #: ../admin/social_sharing.php:220 ../admin/social_sharing.php:528
778
  msgid "Width of the sharing icons"
779
  msgstr "Ширина иконок поделиться"
780
 
781
- #: ../admin/social_sharing.php:228 ../admin/social_sharing.php:536
782
  msgid "Height (in pixels)"
783
  msgstr "Высота (в пикселях)"
784
 
785
- #: ../admin/social_sharing.php:244 ../admin/social_sharing.php:552
786
  msgid "Height of the sharing icons"
787
  msgstr "Высота кнопок Поделиться"
788
 
789
- #: ../admin/social_sharing.php:254 ../admin/social_sharing.php:562
790
  msgid "Border radius (in pixels)"
791
  msgstr "Радиус рамки (в пикселях)"
792
 
793
- #: ../admin/social_sharing.php:264 ../admin/social_sharing.php:572
794
  msgid ""
795
  "Specify a value for rounded corners. More the value, more rounded will the "
796
  "corners be. Leave empty for sharp corners."
@@ -798,23 +761,23 @@ msgstr ""
798
  "Укажите значение для закругленных углов. Чем больше значение параметра, "
799
  "более округлыми будут углы. Оставьте пустым для прямых углов."
800
 
801
- #: ../admin/social_sharing.php:273 ../admin/social_sharing.php:581
802
  msgid "Logo Color"
803
  msgstr "Цвет логотипа"
804
 
805
- #: ../admin/social_sharing.php:277 ../admin/social_sharing.php:298
806
- #: ../admin/social_sharing.php:318 ../admin/social_sharing.php:585
807
- #: ../admin/social_sharing.php:606 ../admin/social_sharing.php:625
808
  msgid "Default"
809
  msgstr "По умолчанию"
810
 
811
- #: ../admin/social_sharing.php:279 ../admin/social_sharing.php:299
812
- #: ../admin/social_sharing.php:323 ../admin/social_sharing.php:587
813
- #: ../admin/social_sharing.php:607 ../admin/social_sharing.php:630
814
  msgid "On Hover"
815
  msgstr "При наведении"
816
 
817
- #: ../admin/social_sharing.php:287 ../admin/social_sharing.php:595
818
  msgid ""
819
  "Specify the color or hex code (example #cc78e0) for the logo of icon. Leave "
820
  "empty for default. You can get the hex code of the required color from <a "
@@ -825,13 +788,13 @@ msgstr ""
825
  "шестнадцатеричный код <a href=\"http://www.colorpicker.com/\" target=\"_blank"
826
  "\">здесь</a>"
827
 
828
- #: ../admin/social_sharing.php:295 ../admin/social_sharing.php:603
829
- #: ../admin/social_sharing.php:1318 ../admin/like_buttons.php:410
830
  #: ../inc/widget.php:460 ../inc/widget.php:772
831
  msgid "Background Color"
832
  msgstr "Цвет фона"
833
 
834
- #: ../admin/social_sharing.php:306 ../admin/social_sharing.php:614
835
  msgid ""
836
  "Specify the color or hex code (example #cc78e0) for icon background. Save "
837
  "\"transparent\" for transparent background. Leave empty for default. You can "
@@ -843,129 +806,129 @@ msgstr ""
843
  "шестнадцатеричный код <a href=\"http://www.colorpicker.com/\" target=\"_blank"
844
  "\">здесь</a>"
845
 
846
- #: ../admin/social_sharing.php:314 ../admin/social_sharing.php:622
847
  msgid "Border"
848
  msgstr "Рамка"
849
 
850
- #: ../admin/social_sharing.php:320 ../admin/social_sharing.php:325
851
- #: ../admin/social_sharing.php:627 ../admin/social_sharing.php:632
852
  msgid "Border Width"
853
  msgstr "Ширина рамки"
854
 
855
- #: ../admin/social_sharing.php:321 ../admin/social_sharing.php:326
856
- #: ../admin/social_sharing.php:628 ../admin/social_sharing.php:633
857
  msgid "Border Color"
858
  msgstr "Цвет рамки"
859
 
860
- #: ../admin/social_sharing.php:333 ../admin/social_sharing.php:640
861
  msgid "Icon border"
862
  msgstr "Иконка рамки"
863
 
864
- #: ../admin/social_sharing.php:341 ../admin/social_sharing.php:648
865
  msgid "Counter Position"
866
  msgstr "Позиция счетчика"
867
 
868
- #: ../admin/social_sharing.php:341 ../admin/social_sharing.php:648
869
  msgid "(applies, if counter enabled)"
870
  msgstr "(применяется, если счетчик включен)"
871
 
872
- #: ../admin/social_sharing.php:345 ../admin/social_sharing.php:652
873
- #: ../admin/social_sharing.php:935 ../admin/social_sharing.php:1340
874
  #: ../admin/like_buttons.php:183 ../admin/like_buttons.php:432
875
  #: ../inc/widget.php:446 ../inc/widget.php:758
876
  msgid "Left"
877
  msgstr "Слева"
878
 
879
- #: ../admin/social_sharing.php:347 ../admin/social_sharing.php:654
880
  msgid "Top"
881
  msgstr "Сверху"
882
 
883
- #: ../admin/social_sharing.php:349 ../admin/social_sharing.php:656
884
- #: ../admin/social_sharing.php:937 ../admin/social_sharing.php:1341
885
  #: ../admin/like_buttons.php:185 ../admin/like_buttons.php:433
886
  #: ../inc/widget.php:447 ../inc/widget.php:759
887
  msgid "Right"
888
  msgstr "Справа"
889
 
890
- #: ../admin/social_sharing.php:351 ../admin/social_sharing.php:658
891
  msgid "Bottom"
892
  msgstr "Снизу"
893
 
894
- #: ../admin/social_sharing.php:353 ../admin/social_sharing.php:660
895
  msgid "Inner Left"
896
  msgstr "Отступ слева"
897
 
898
- #: ../admin/social_sharing.php:355 ../admin/social_sharing.php:662
899
  msgid "Inner Top"
900
  msgstr "Верхний отступ"
901
 
902
- #: ../admin/social_sharing.php:357 ../admin/social_sharing.php:664
903
  msgid "Inner Right"
904
  msgstr "Внутренний отступ справа"
905
 
906
- #: ../admin/social_sharing.php:359 ../admin/social_sharing.php:666
907
  msgid "Inner Bottom"
908
  msgstr "Нижний отступ"
909
 
910
- #: ../admin/social_sharing.php:367 ../admin/social_sharing.php:674
911
  msgid "Position of share counter"
912
  msgstr "Положение счетчика Поделиться"
913
 
914
- #: ../admin/social_sharing.php:377
915
  msgid "Floating interface theme"
916
  msgstr "Плавающий интерфейс Поделиться"
917
 
918
- #: ../admin/social_sharing.php:690
919
  msgid "Standard Sharing Interface Options"
920
  msgstr "Стандартные параметры интерфейса"
921
 
922
- #: ../admin/social_sharing.php:696
923
  msgid "Enable Standard sharing interface"
924
  msgstr "Включить стандартный интерфейс Поделиться"
925
 
926
- #: ../admin/social_sharing.php:706
927
  msgid "Master control to enable standard sharing"
928
  msgstr "Мастер настройки включения стандартных опций Поделиться"
929
 
930
- #: ../admin/social_sharing.php:716 ../admin/social_sharing.php:1144
931
  #: ../admin/like_buttons.php:86 ../admin/like_buttons.php:336
932
  msgid "Target Url"
933
  msgstr "Целевой URL:"
934
 
935
- #: ../admin/social_sharing.php:720 ../admin/social_sharing.php:1148
936
  #: ../admin/like_buttons.php:90 ../admin/like_buttons.php:340
937
  msgid "Url of the webpage where icons are located (default)"
938
  msgstr "URL-адрес веб-страницы, где расположены значки (по умолчанию)"
939
 
940
- #: ../admin/social_sharing.php:722 ../admin/social_sharing.php:1150
941
  #: ../admin/like_buttons.php:92 ../admin/like_buttons.php:342
942
  msgid "Url of the homepage of your website"
943
  msgstr "URL-адрес домашней страницы вашего веб-сайта"
944
 
945
- #: ../admin/social_sharing.php:724 ../admin/social_sharing.php:1152
946
  #: ../admin/like_buttons.php:94 ../admin/like_buttons.php:344
947
  msgid "Custom url"
948
  msgstr "Пользовательская ссылка"
949
 
950
- #: ../admin/social_sharing.php:731 ../admin/social_sharing.php:1159
951
  msgid "Url to share"
952
  msgstr "Ссылка чтобы Поделиться"
953
 
954
- #: ../admin/social_sharing.php:739 ../admin/social_login.php:532
955
  #: ../admin/social_login.php:927 ../admin/like_buttons.php:109
956
  #: ../inc/widget.php:945
957
  msgid "Title"
958
  msgstr "Заголовок"
959
 
960
- #: ../admin/social_sharing.php:749
961
  msgid "The text to display above the sharing interface"
962
  msgstr "Текст, отображаемый над интерфейсом Поделиться"
963
 
964
- #: ../admin/social_sharing.php:774 ../admin/social_sharing.php:1168
965
  msgid "Instagram username"
966
  msgstr "Введите имя пользователя Instagram."
967
 
968
- #: ../admin/social_sharing.php:784 ../admin/social_sharing.php:1178
969
  msgid ""
970
  "Username of the Instagram account you want to redirect users to, on clicking "
971
  "the icon"
@@ -973,144 +936,144 @@ msgstr ""
973
  "Имя пользователя Instagram, на учетную запись которого вы хотите "
974
  "перенаправить пользователей, по нажатию на иконку"
975
 
976
- #: ../admin/social_sharing.php:794 ../admin/social_sharing.php:1188
977
  #, fuzzy
978
  msgid "HTML ID of container element of comment form"
979
  msgstr "HTML-идентификатор форма комментария контейнер"
980
 
981
- #: ../admin/social_sharing.php:804 ../admin/social_sharing.php:1198
982
  msgid ""
983
  "HTML ID of the element you want to focus on the webpage, on click of Comment "
984
  "icon."
985
  msgstr ""
986
 
987
- #: ../admin/social_sharing.php:818 ../admin/social_sharing.php:1207
988
  msgid "Rearrange icons"
989
  msgstr "Переставить иконы"
990
 
991
- #: ../admin/social_sharing.php:879 ../admin/social_sharing.php:1266
992
  msgid "Drag the icons to rearrange in desired order"
993
  msgstr "Если хотите изменить порядок, просто перетащите изображения"
994
 
995
- #: ../admin/social_sharing.php:887 ../admin/social_sharing.php:1274
996
  msgid "Select Sharing Services"
997
  msgstr "Выберите сервисы Поделиться"
998
 
999
- #: ../admin/social_sharing.php:894 ../admin/social_sharing.php:1281
1000
  msgid "Select sharing services to show in social share bar"
1001
  msgstr "Выберите сервисы для показа в панели шейринга"
1002
 
1003
- #: ../admin/social_sharing.php:912 ../admin/social_sharing.php:1299
1004
  msgid "Search social network"
1005
  msgstr ""
1006
 
1007
- #: ../admin/social_sharing.php:931 ../admin/social_sharing.php:1336
1008
  #: ../admin/like_buttons.php:179 ../admin/like_buttons.php:428
1009
  msgid "Horizontal alignment"
1010
  msgstr "Горизонтальное выравнивание"
1011
 
1012
- #: ../admin/social_sharing.php:936 ../admin/like_buttons.php:184
1013
  msgid "Center"
1014
  msgstr "Центр"
1015
 
1016
- #: ../admin/social_sharing.php:945 ../admin/social_sharing.php:1349
1017
  msgid "Horizontal alignment of the sharing interface"
1018
  msgstr "Горизонтальное выравнивание интерфейса Поделиться"
1019
 
1020
- #: ../admin/social_sharing.php:953 ../admin/like_buttons.php:201
1021
  msgid "Position with respect to content"
1022
  msgstr "Позиция относительно контента"
1023
 
1024
- #: ../admin/social_sharing.php:957 ../admin/like_buttons.php:205
1025
  msgid "Top of the content"
1026
  msgstr "Над содержимым"
1027
 
1028
- #: ../admin/social_sharing.php:959 ../admin/like_buttons.php:207
1029
  msgid "Bottom of the content"
1030
  msgstr "Под содержимым"
1031
 
1032
- #: ../admin/social_sharing.php:966
1033
  msgid "Specify position of the sharing interface with respect to the content"
1034
  msgstr "Укажите положение интерфейса Поделиться относительно содержимого."
1035
 
1036
- #: ../admin/social_sharing.php:974 ../admin/social_sharing.php:1415
1037
  msgid "Placement"
1038
  msgstr "Размещение"
1039
 
1040
- #: ../admin/social_sharing.php:978 ../admin/social_sharing.php:1419
1041
  #: ../admin/social_login.php:866 ../admin/social_login.php:896
1042
  #: ../admin/like_buttons.php:226 ../admin/like_buttons.php:511
1043
  msgid "Homepage"
1044
  msgstr "Главная"
1045
 
1046
- #: ../admin/social_sharing.php:980 ../admin/social_sharing.php:1421
1047
  #: ../admin/like_buttons.php:228 ../admin/like_buttons.php:513
1048
  msgid "Posts"
1049
  msgstr "Записи"
1050
 
1051
- #: ../admin/social_sharing.php:982 ../admin/social_sharing.php:1423
1052
  #: ../admin/like_buttons.php:230 ../admin/like_buttons.php:515
1053
  msgid "Pages"
1054
  msgstr "Страницы"
1055
 
1056
- #: ../admin/social_sharing.php:984 ../admin/social_sharing.php:1425
1057
  #: ../admin/like_buttons.php:232 ../admin/like_buttons.php:517
1058
  msgid "Excerpts and Posts page"
1059
  msgstr "Страницы анонсов и страниц"
1060
 
1061
- #: ../admin/social_sharing.php:986 ../admin/social_sharing.php:1427
1062
  #: ../admin/like_buttons.php:234 ../admin/like_buttons.php:519
1063
  msgid "Category Archives"
1064
  msgstr "Архивы категорий"
1065
 
1066
- #: ../admin/social_sharing.php:988 ../admin/social_sharing.php:1429
1067
  #: ../admin/like_buttons.php:236 ../admin/like_buttons.php:521
1068
  msgid "Archive Pages (Category, Tag, Author or Date based pages)"
1069
  msgstr "Архив Страницы (Категория, тегов, автор или страницы на основе дат)"
1070
 
1071
- #: ../admin/social_sharing.php:1004 ../admin/like_buttons.php:252
1072
  msgid "BuddyPress activity"
1073
  msgstr "BuddyPress активность"
1074
 
1075
- #: ../admin/social_sharing.php:1006 ../admin/like_buttons.php:255
1076
  msgid "BuddyPress group (only at top of content)"
1077
  msgstr "BuddyPress группы (только в верхней части контента)"
1078
 
1079
- #: ../admin/social_sharing.php:1012 ../admin/social_sharing.php:1451
1080
  #: ../admin/like_buttons.php:262 ../admin/like_buttons.php:542
1081
  msgid "BBPress forum"
1082
  msgstr "BBPress форум"
1083
 
1084
- #: ../admin/social_sharing.php:1015 ../admin/social_sharing.php:1454
1085
  #: ../admin/like_buttons.php:265 ../admin/like_buttons.php:545
1086
  msgid "BBPress topic"
1087
  msgstr "BBPress тема"
1088
 
1089
- #: ../admin/social_sharing.php:1018 ../admin/like_buttons.php:268
1090
  msgid "BBPress reply"
1091
  msgstr "BBPress ответ"
1092
 
1093
- #: ../admin/social_sharing.php:1025 ../admin/like_buttons.php:275
1094
  msgid "After individual product at WooCommerce Shop page"
1095
  msgstr "После индивидуального продукта на странице магазина"
1096
 
1097
- #: ../admin/social_sharing.php:1028 ../admin/like_buttons.php:278
1098
  msgid "WooCommerce Product Page"
1099
  msgstr "Продукт Woocommerce"
1100
 
1101
- #: ../admin/social_sharing.php:1031 ../admin/like_buttons.php:281
1102
  msgid "WooCommerce Thankyou Page"
1103
  msgstr "WooCommerce страница благодарности"
1104
 
1105
- #: ../admin/social_sharing.php:1042
1106
  msgid "Specify the pages where you want to enable Sharing interface"
1107
  msgstr "Укажите страницы, где вы хотите, чтобы включить интерфейс Sharing"
1108
 
1109
- #: ../admin/social_sharing.php:1050 ../admin/social_sharing.php:1472
1110
  msgid "Show share counts"
1111
  msgstr "Показать счетчик кнопок Поделиться"
1112
 
1113
- #: ../admin/social_sharing.php:1055 ../admin/social_sharing.php:1477
1114
  #, fuzzy
1115
  msgid ""
1116
  "Share counts are supported for Facebook, Twitter, Linkedin, Buffer, Reddit, "
@@ -1119,7 +1082,7 @@ msgstr ""
1119
  "Поддерживаются Facebook, Linkedin, GooglePlus, Delicious, Buffer, Reddit, "
1120
  "Pinterest, Stumbleupon, Odnoklassniki и Vkontakte"
1121
 
1122
- #: ../admin/social_sharing.php:1056 ../admin/social_sharing.php:1478
1123
  #, php-format
1124
  msgid ""
1125
  "To show Twitter share count, you have to click \"Give me my Twitter counts "
@@ -1128,25 +1091,25 @@ msgid ""
1128
  "their website."
1129
  msgstr ""
1130
 
1131
- #: ../admin/social_sharing.php:1063 ../admin/social_sharing.php:1485
1132
  msgid "If enabled, share counts are displayed above sharing icons."
1133
  msgstr "Если включено, счетчики отображаются выше кнопок Поделиться"
1134
 
1135
- #: ../admin/social_sharing.php:1072 ../admin/social_sharing.php:1494
1136
  msgid "Show total shares"
1137
  msgstr "Включить общее количество Поделиться"
1138
 
1139
- #: ../admin/social_sharing.php:1082 ../admin/social_sharing.php:1504
1140
  msgid "If enabled, total shares will be displayed with sharing icons"
1141
  msgstr ""
1142
  "Если включено, то общее количество Поделиться будет отображаться с кнопками "
1143
  "Поделиться"
1144
 
1145
- #: ../admin/social_sharing.php:1091 ../admin/social_sharing.php:1513
1146
  msgid "Enable 'More' icon"
1147
  msgstr "Включить значок «Больше»"
1148
 
1149
- #: ../admin/social_sharing.php:1101 ../admin/social_sharing.php:1523
1150
  msgid ""
1151
  "If enabled, \"More\" icon will be displayed after selected sharing icons "
1152
  "which shows additional sharing networks in popup"
@@ -1154,19 +1117,19 @@ msgstr ""
1154
  "Если включено, «Больше» будет отображаться после кнопок Поделиться, которая "
1155
  "показывает дополнительные сервисы в всплывающем окне"
1156
 
1157
- #: ../admin/social_sharing.php:1118
1158
  msgid "Floating Sharing Interface Options"
1159
  msgstr "Параметры плавающих кнопок Поделиться"
1160
 
1161
- #: ../admin/social_sharing.php:1124
1162
  msgid "Enable Floating sharing interface"
1163
  msgstr "Включить интерфейс плавающих кнопок Поделиться"
1164
 
1165
- #: ../admin/social_sharing.php:1134
1166
  msgid "Master control to enable floating sharing widget"
1167
  msgstr "Мастер управления включения плавающего виджета Поделиться"
1168
 
1169
- #: ../admin/social_sharing.php:1328
1170
  msgid ""
1171
  "Specify the color or hex code (example #cc78e0) for the background of "
1172
  "vertical sharing bar. Leave empty for transparent. You can get the hex code "
@@ -1178,11 +1141,11 @@ msgstr ""
1178
  "Вы можете получить шестнадцатеричный код <a href=\"http://www.colorpicker."
1179
  "com/\" target=\"_blank\">здесь</a>"
1180
 
1181
- #: ../admin/social_sharing.php:1358 ../admin/like_buttons.php:450
1182
  msgid "Left offset"
1183
  msgstr "Смещение влево"
1184
 
1185
- #: ../admin/social_sharing.php:1368
1186
  msgid ""
1187
  "Specify a number. Increase in number will shift sharing interface towards "
1188
  "right and decrease will shift it towards left. Number can be negative too."
@@ -1191,11 +1154,11 @@ msgstr ""
1191
  "отношению к правой стороне и уменьшать по отношению к правой сторону. Число "
1192
  "может быть отрицательным."
1193
 
1194
- #: ../admin/social_sharing.php:1378 ../admin/like_buttons.php:470
1195
  msgid "Right offset"
1196
  msgstr "Смещение вправо"
1197
 
1198
- #: ../admin/social_sharing.php:1388
1199
  msgid ""
1200
  "Specify a number. Increase in number will shift sharing interface towards "
1201
  "left and decrease will shift it towards right. Number can be negative too."
@@ -1204,11 +1167,11 @@ msgstr ""
1204
  "отношению к левой стороне и уменьшать по отношению к правой сторону. Число "
1205
  "может быть отрицательным."
1206
 
1207
- #: ../admin/social_sharing.php:1397 ../admin/like_buttons.php:489
1208
  msgid "Top offset"
1209
  msgstr "Верхний отступ"
1210
 
1211
- #: ../admin/social_sharing.php:1407
1212
  msgid ""
1213
  "Specify a number. Increase in number will shift sharing interface towards "
1214
  "bottom and decrease will shift it towards top."
@@ -1216,37 +1179,37 @@ msgstr ""
1216
  "Укажите число. Увеличение числа будет сдвигать интерфейс Поделиться по "
1217
  "отношению к низу и уменьшать по отношению к верху. "
1218
 
1219
- #: ../admin/social_sharing.php:1443 ../admin/like_buttons.php:535
1220
  msgid "BuddyPress group"
1221
  msgstr "BuddyPress группа"
1222
 
1223
- #: ../admin/social_sharing.php:1464
1224
  msgid "Specify the pages where you want to enable vertical Sharing interface"
1225
  msgstr ""
1226
  "Укажите страницы, где вы хотите включить вертикальный интерфейс Поделиться"
1227
 
1228
- #: ../admin/social_sharing.php:1531
1229
  #, fuzzy
1230
  msgid "Hide floating slider"
1231
  msgstr "Скрыть для зарегистрированных пользователей"
1232
 
1233
- #: ../admin/social_sharing.php:1541
1234
  #, fuzzy
1235
  msgid "Hides the slider arrow present below the floating share bar"
1236
  msgstr "Как скрыть стрелку после плавающих кнопок Поделиться?"
1237
 
1238
- #: ../admin/social_sharing.php:1549
1239
  msgid "Vertical floating bar responsiveness"
1240
  msgstr "Отзывчивость вертикальных плавающих кнопок"
1241
 
1242
- #: ../admin/social_sharing.php:1552
1243
  #, php-format
1244
  msgid "Display vertical interface only when screen is wider than %s pixels"
1245
  msgstr ""
1246
  "Показывать вертикальный интерфейс только если ширина экрана больше чем %s "
1247
  "пикселей."
1248
 
1249
- #: ../admin/social_sharing.php:1559
1250
  msgid ""
1251
  "Display vertical interface only when screen is wider than the width "
1252
  "specified."
@@ -1254,11 +1217,11 @@ msgstr ""
1254
  "Показывать вертикальный интерфейс только если ширина экрана больше чем "
1255
  "ширина по умолчанию."
1256
 
1257
- #: ../admin/social_sharing.php:1567
1258
  msgid "Horizontal floating bar responsiveness"
1259
  msgstr "Отзывчивость вертикальных плавающих кнопок"
1260
 
1261
- #: ../admin/social_sharing.php:1570
1262
  #, php-format
1263
  msgid ""
1264
  "Stick vertical floating interface horizontally at bottom only when screen is "
@@ -1267,7 +1230,7 @@ msgstr ""
1267
  "Закреплять вертикальный плавающий интерфейс внизу только тогда когда экран "
1268
  "уже чем %s пикселей"
1269
 
1270
- #: ../admin/social_sharing.php:1577
1271
  msgid ""
1272
  "Stick vertical floating interface horizontally at bottom only when screen is "
1273
  "narrower than the width specified"
@@ -1275,43 +1238,43 @@ msgstr ""
1275
  "Закреплять вертикальный плавающий интерфейс внизу только тогда когда экран "
1276
  "уже чем указанная ширина"
1277
 
1278
- #: ../admin/social_sharing.php:1587
1279
  msgid "Horizontal floating bar position"
1280
  msgstr "Расположение горизонтальной плавающей панели"
1281
 
1282
- #: ../admin/social_sharing.php:1590
1283
  #, php-format
1284
  msgid "%s pixels from %s"
1285
  msgstr "%s пикселей от %s"
1286
 
1287
- #: ../admin/social_sharing.php:1591
1288
  msgid "Auto-adjust according to screen width (responsive)"
1289
  msgstr ""
1290
 
1291
- #: ../admin/social_sharing.php:1598
1292
  msgid "Alignment of horizontal floating interface. Number can be negative too."
1293
  msgstr ""
1294
  "Выравнивание горизонтального плавающего интерфейса. Число может быть "
1295
  "отрицательным."
1296
 
1297
- #: ../admin/social_sharing.php:1618
1298
  #, fuzzy
1299
  msgid "Facebook Share Count"
1300
  msgstr "Устранение неисправностей Поделиться от Facebook"
1301
 
1302
- #: ../admin/social_sharing.php:1622
1303
  msgid "Note"
1304
  msgstr ""
1305
 
1306
- #: ../admin/social_sharing.php:1622
1307
  msgid "Required only to track Facebook share count"
1308
  msgstr ""
1309
 
1310
- #: ../admin/social_sharing.php:1628 ../admin/social_login.php:161
1311
  msgid "Facebook App ID"
1312
  msgstr "Facebook App ID"
1313
 
1314
- #: ../admin/social_sharing.php:1638
1315
  #, fuzzy, php-format
1316
  msgid ""
1317
  "Required for Facebook share count to work. Please follow the documentation "
@@ -1320,12 +1283,12 @@ msgstr ""
1320
  "Необходимо для входа через Facebook. Пожалуйста, посмотрите документацию <a "
1321
  "href=\"%s\" target=\"_blank\">здесь</a> для получения ID приложения Facebook."
1322
 
1323
- #: ../admin/social_sharing.php:1646 ../admin/social_login.php:183
1324
  #, fuzzy
1325
  msgid "Facebook App Secret"
1326
  msgstr "Facebook App ID"
1327
 
1328
- #: ../admin/social_sharing.php:1656
1329
  #, fuzzy, php-format
1330
  msgid ""
1331
  "Required for Facebook share count to work. Please follow the documentation "
@@ -1334,33 +1297,33 @@ msgstr ""
1334
  "Необходимо для входа через Facebook. Пожалуйста, посмотрите документацию <a "
1335
  "href=\"%s\" target=\"_blank\">здесь</a> для получения ID приложения Facebook."
1336
 
1337
- #: ../admin/social_sharing.php:1665 ../admin/like_buttons.php:592
1338
  msgid "Url shortener"
1339
  msgstr "Укорачивание URL"
1340
 
1341
- #: ../admin/social_sharing.php:1671
1342
  msgid "Use shortlinks already installed"
1343
  msgstr "Использование коротких ссылок уже установлено"
1344
 
1345
- #: ../admin/social_sharing.php:1681
1346
  msgid "Uses default short url permalinks without using any additional plugin"
1347
  msgstr ""
1348
  "Использует по умолчанию постоянные короткие url без использования каких-"
1349
  "либо дополнительных плагинов"
1350
 
1351
- #: ../admin/social_sharing.php:1689
1352
  msgid "Enable bit.ly url shortener for sharing"
1353
  msgstr "Активировать bit.ly для сокращения ссылок для Поделиться"
1354
 
1355
- #: ../admin/social_sharing.php:1699 ../admin/like_buttons.php:626
1356
  msgid "Master control to enable bit.ly url shortening for sharing"
1357
  msgstr "Мастер управления сокращения ссылок через bit.ly для Поделиться"
1358
 
1359
- #: ../admin/social_sharing.php:1707
1360
  msgid "bit.ly Login"
1361
  msgstr "bit.ly логин"
1362
 
1363
- #: ../admin/social_sharing.php:1717 ../admin/social_sharing.php:1736
1364
  #, fuzzy, php-format
1365
  msgid "More details on how to get it <a href=\"%s\" target=\"_blank\">here</a>"
1366
  msgstr ""
@@ -1368,19 +1331,19 @@ msgstr ""
1368
  "href=\"%s\" target=\"_blank\">здесь</a> для получения ключа приложения "
1369
  "Twitter."
1370
 
1371
- #: ../admin/social_sharing.php:1726 ../admin/like_buttons.php:653
1372
  msgid "bit.ly API Key"
1373
  msgstr "bit.ly ключ приложения"
1374
 
1375
- #: ../admin/social_sharing.php:1745 ../admin/like_buttons.php:672
1376
  msgid "Clear Bitly Cache"
1377
  msgstr "Очистить Bitly кэш"
1378
 
1379
- #: ../admin/social_sharing.php:1749 ../admin/like_buttons.php:676
1380
  msgid "ShortUrl cache cleared successfully."
1381
  msgstr "ShortUrl кэш успешно очищен."
1382
 
1383
- #: ../admin/social_sharing.php:1756 ../admin/like_buttons.php:683
1384
  msgid ""
1385
  "Use this to delete short urls saved in database. Handy, if urls of your "
1386
  "website have been changed but short urls are still being generated for old "
@@ -1390,31 +1353,31 @@ msgstr ""
1390
  "Удобно, если URL-адреса вашего веб-сайта были изменены, но короткие URL-"
1391
  "адреса по-прежнему создаются для старых URL-адресов."
1392
 
1393
- #: ../admin/social_sharing.php:1765
1394
  msgid "Share Count Cache"
1395
  msgstr "Кэш счетчиков поделиться"
1396
 
1397
- #: ../admin/social_sharing.php:1771
1398
  msgid "Refresh Share Count cache every"
1399
  msgstr "Обновить кэш счетчиков Поделиться"
1400
 
1401
- #: ../admin/social_sharing.php:1776
1402
  msgid "Second(s)"
1403
  msgstr "Секунд"
1404
 
1405
- #: ../admin/social_sharing.php:1777
1406
  msgid "Minute(s)"
1407
  msgstr "Минут"
1408
 
1409
- #: ../admin/social_sharing.php:1778
1410
  msgid "Hour(s)"
1411
  msgstr "Часов"
1412
 
1413
- #: ../admin/social_sharing.php:1779
1414
  msgid "Day(s)"
1415
  msgstr "Дней"
1416
 
1417
- #: ../admin/social_sharing.php:1787
1418
  #, fuzzy, php-format
1419
  msgid ""
1420
  "Frequent cache refreshing results in slower loading of pages with share "
@@ -1424,25 +1387,25 @@ msgstr ""
1424
  "Частое обновление кэша приводит к более медленной загрузке страниц с "
1425
  "включенными счетчиками Поделиться"
1426
 
1427
- #: ../admin/social_sharing.php:1795
1428
  msgid "Clear Share Counts Cache"
1429
  msgstr "Очистить кэш счетчиков Поделиться"
1430
 
1431
- #: ../admin/social_sharing.php:1799
1432
  msgid "Share Counts cache cleared successfully."
1433
  msgstr "Share Counts кэш успешно очищен."
1434
 
1435
- #: ../admin/social_sharing.php:1806
1436
  msgid "Use this to clear cached share counts"
1437
  msgstr "Используйте это для очистки кэшированных счетчиков Поделиться"
1438
 
1439
- #: ../admin/social_sharing.php:1815 ../admin/social_sharing.php:1821
1440
  #: ../admin/social_commenting.php:315 ../admin/like_buttons.php:692
1441
  #: ../admin/like_buttons.php:698
1442
  msgid "Language"
1443
  msgstr "Язык"
1444
 
1445
- #: ../admin/social_sharing.php:1831
1446
  #, php-format
1447
  msgid ""
1448
  "Enter the code of the language you want to use for like buttons. You can "
@@ -1453,15 +1416,15 @@ msgstr ""
1453
  "Вы можете найти код своего языка по <a href=\"%s\" target=\"_blank\">этой "
1454
  "ссылке</a>. Оставьте поле пустым чтобы оставить язык по умолчанию (English)."
1455
 
1456
- #: ../admin/social_sharing.php:1840
1457
  msgid "Username in sharing"
1458
  msgstr "Имя пользователя чтобы поделиться"
1459
 
1460
- #: ../admin/social_sharing.php:1846
1461
  msgid "Twitter username (without @)"
1462
  msgstr "Twitter имя пользователя (без @)"
1463
 
1464
- #: ../admin/social_sharing.php:1856 ../admin/social_sharing.php:1875
1465
  msgid ""
1466
  "Provided username will be appended after the content being shared as \"via "
1467
  "@USERNAME\". Leave empty if you do not want any username in the content "
@@ -1470,35 +1433,35 @@ msgstr ""
1470
  "Добавляет имя пользователя после того как контент будет расшарен с помощью "
1471
  "\"via @USERNAME\". Оставьте поле пустым если не хотите указывать имя."
1472
 
1473
- #: ../admin/social_sharing.php:1865
1474
  msgid "Buffer username (without @)"
1475
  msgstr "Имя пользователя в Twitter (без @)"
1476
 
1477
- #: ../admin/social_sharing.php:1884
1478
  msgid "AMP"
1479
  msgstr "AMP"
1480
 
1481
- #: ../admin/social_sharing.php:1890
1482
  msgid "Enable sharing on AMP pages"
1483
  msgstr "Разрешить общий доступ на страницах AMP"
1484
 
1485
- #: ../admin/social_sharing.php:1900
1486
  msgid "Enable this option to render sharing icons on AMP pages"
1487
  msgstr "Включите этот параметр для отображения иконок на страницах AMP"
1488
 
1489
- #: ../admin/social_sharing.php:1919 ../admin/like_buttons.php:771
1490
  msgid "myCRED"
1491
  msgstr ""
1492
 
1493
- #: ../admin/social_sharing.php:1925 ../admin/like_buttons.php:777
1494
  msgid "Append myCRED referral ID to the urls being shared"
1495
  msgstr ""
1496
 
1497
- #: ../admin/social_sharing.php:1958
1498
  msgid "Facebook Sharing Troubleshooter"
1499
  msgstr "Устранение неисправностей Поделиться от Facebook"
1500
 
1501
- #: ../admin/social_sharing.php:1963
1502
  msgid ""
1503
  "If Facebook sharing is not working fine, click at the following link and "
1504
  "enter the problematic url (where Facebook sharing is not working properly) "
@@ -1510,14 +1473,14 @@ msgstr ""
1510
  "работает должным образом) на вашем сайте в текстовом поле. Нажмите "
1511
  "\"Получение информации о новой поломке\" ."
1512
 
1513
- #: ../admin/social_sharing.php:1980 ../admin/social_commenting.php:399
1514
- #: ../admin/social_login.php:1259
1515
  msgid ""
1516
  "<strong>Note:</strong> Plugin will not work on local server. You should have "
1517
  "an online website for the plugin to function properly."
1518
  msgstr ""
1519
 
1520
- #: ../admin/social_sharing.php:1981
1521
  msgid ""
1522
  "Why is sharer not showing the correct image, title and other meta tags "
1523
  "content?"
@@ -1525,16 +1488,16 @@ msgstr ""
1525
  "Почему расшаривание не показывает корректино изображение, заголовок и другие "
1526
  "мета данные контента? "
1527
 
1528
- #: ../admin/social_sharing.php:1982
1529
  #, fuzzy
1530
  msgid "Why is Facebook share count not working?"
1531
  msgstr "Почему счетчики Фейсбука поделиться не обновляются?"
1532
 
1533
- #: ../admin/social_sharing.php:1985
1534
  msgid "Why is Instagram icon redirecting to Instagram website?"
1535
  msgstr ""
1536
 
1537
- #: ../admin/social_sharing.php:1986
1538
  msgid ""
1539
  "Instagram icon is there to send website visitors to the Instagram page of "
1540
  "your choice. You can save the desired Instagram handle in \"Instagram "
@@ -1542,47 +1505,47 @@ msgid ""
1542
  "sections."
1543
  msgstr ""
1544
 
1545
- #: ../admin/social_sharing.php:1989
1546
  #, fuzzy
1547
  msgid "How to customize the url being shared?"
1548
  msgstr "Как настроить внешний вид отдельных счетчиков поделиться?"
1549
 
1550
- #: ../admin/social_sharing.php:1990
1551
  msgid ""
1552
  "Why are Twitter shares not appearing even after registering at Twitcount.com?"
1553
  msgstr ""
1554
 
1555
- #: ../admin/social_sharing.php:1991
1556
  msgid ""
1557
  "It takes some time for their service to track the shares made on Twitter "
1558
  "from your website. If you still feel it's taking too long you can contact "
1559
  "their support directly from their website."
1560
  msgstr ""
1561
 
1562
- #: ../admin/social_sharing.php:1993 ../admin/like_buttons.php:814
1563
  msgid "How to Place Title and Social Share Icons in the Same Row?"
1564
  msgstr ""
1565
 
1566
- #: ../admin/social_sharing.php:1994
1567
  msgid ""
1568
  "How to restore Social Share counts lost after moving my website to SSL/Https?"
1569
  msgstr ""
1570
 
1571
- #: ../admin/social_sharing.php:1995 ../admin/social_commenting.php:402
1572
- #: ../admin/social_login.php:1266
1573
  msgid "Why is my browser blocking some features of the plugin?"
1574
  msgstr "Почему мой браузер блокирует некоторые функции плагина?"
1575
 
1576
- #: ../admin/social_sharing.php:1996
1577
  #, fuzzy
1578
  msgid "Why the color of share icons is not being updated?"
1579
  msgstr "Почему счетчики Фейсбука поделиться не обновляются?"
1580
 
1581
- #: ../admin/social_sharing.php:1997
1582
  msgid "Why Facebook share counts are not appearing?"
1583
  msgstr "Почему счетчики Фейсбука поделиться не обновляются?"
1584
 
1585
- #: ../admin/social_sharing.php:1998
1586
  msgid ""
1587
  "How can I show share counts of my website rather than of individual pages/"
1588
  "posts?"
@@ -1590,49 +1553,49 @@ msgstr ""
1590
  "Как мне отобразить общее количество Поделиться основанное на страницах/"
1591
  "постах?"
1592
 
1593
- #: ../admin/social_sharing.php:1999
1594
  msgid "How can I disable sharing on particular page/post?"
1595
  msgstr ""
1596
  "Как можно отключить кнопки Поделиться на конкретной странице или в посте?"
1597
 
1598
- #: ../admin/social_sharing.php:2000
1599
  msgid "How can I specify minimum sharing count for sharing networks?"
1600
  msgstr "Как мне указать минимальное количество для Поделиться"
1601
 
1602
- #: ../admin/social_sharing.php:2001
1603
  msgid "How to share specific page?"
1604
  msgstr "Как поделиться определенной страницей?"
1605
 
1606
- #: ../admin/social_sharing.php:2002
1607
  msgid "How to integrate Google Analytics with sharing?"
1608
  msgstr "Как интегрировать Google Analytics с Поделиться?"
1609
 
1610
- #: ../admin/social_sharing.php:2003
1611
  msgid "How to customize the look of total share counts?"
1612
  msgstr "Как настроить внешний вид счетчиков поделиться?"
1613
 
1614
- #: ../admin/social_sharing.php:2004
1615
  msgid "How to customize the look of individual share counts?"
1616
  msgstr "Как настроить внешний вид отдельных счетчиков поделиться?"
1617
 
1618
- #: ../admin/social_sharing.php:2005
1619
  msgid "How to show Whatsapp icon only on mobile devices?"
1620
  msgstr "Как показать иконку Whatsapp только на мобильных устройствах?"
1621
 
1622
- #: ../admin/social_sharing.php:2006
1623
  msgid "How to hide arrow after floating sharing bar?"
1624
  msgstr "Как скрыть стрелку после плавающих кнопок Поделиться?"
1625
 
1626
- #: ../admin/social_sharing.php:2007
1627
  #, fuzzy
1628
  msgid "Why is share count not getting updated?"
1629
  msgstr "Почему счетчики Фейсбука поделиться не обновляются?"
1630
 
1631
- #: ../admin/social_sharing.php:2008 ../admin/like_buttons.php:812
1632
  msgid "Why is there so much space between like buttons?"
1633
  msgstr "Почему существует так много места между кнопками?"
1634
 
1635
- #: ../admin/social_sharing.php:2009 ../admin/like_buttons.php:813
1636
  msgid "Why are floating sharing/like buttons not appearing at homepage?"
1637
  msgstr ""
1638
  "Почему плавающая панель Поделиться/кнопки Нравится не отображаются на "
@@ -1891,7 +1854,7 @@ msgstr "Расширенная конфигурация"
1891
  msgid "GDPR"
1892
  msgstr ""
1893
 
1894
- #: ../admin/social_login.php:44 ../admin/social_login.php:1194
1895
  msgid "XProfile Integration"
1896
  msgstr "XProfile интеграция"
1897
 
@@ -2643,51 +2606,68 @@ msgid "Text for the GDPR opt-in"
2643
  msgstr "Активировать комментирование через Disqus"
2644
 
2645
  #: ../admin/social_login.php:1135
2646
- msgid "Text to link to Privacy Policy page"
2647
  msgstr ""
2648
 
2649
  #: ../admin/social_login.php:1145
2650
- msgid "Word(s) in the opt-in text to be linked to privacy policy page"
2651
  msgstr ""
2652
 
2653
  #: ../admin/social_login.php:1153
2654
- msgid "Privacy Policy Url"
2655
  msgstr ""
2656
 
2657
  #: ../admin/social_login.php:1163
2658
  #, fuzzy
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2659
  msgid "Url of the privacy policy page of your website"
2660
  msgstr "URL-адрес домашней страницы вашего веб-сайта"
2661
 
2662
- #: ../admin/social_login.php:1214 ../inc/widget.php:260 ../inc/widget.php:438
2663
  #: ../inc/widget.php:602 ../inc/widget.php:750
2664
  msgid "Select"
2665
  msgstr "Выбор"
2666
 
2667
- #: ../admin/social_login.php:1245
2668
  msgid "Social Login Shortcode & Widget"
2669
  msgstr "Шорткод и виджет для входа через социальные сети "
2670
 
2671
- #: ../admin/social_login.php:1246
2672
  msgid "Social Linking Shortcode"
2673
  msgstr "Шорткод социальных ссылок"
2674
 
2675
- #: ../admin/social_login.php:1261
2676
  #, fuzzy
2677
  msgid "Why is social login not working?"
2678
  msgstr "Почему Facebook логин не работает?"
2679
 
2680
- #: ../admin/social_login.php:1262
2681
  msgid ""
2682
  "Make sure that App ID and Secret (Client ID and Secret) keys you have saved, "
2683
  "belong to the same app"
2684
  msgstr ""
2685
 
2686
- #: ../admin/social_login.php:1264
2687
  msgid "Social Login not working with Varnish enabled"
2688
  msgstr ""
2689
 
2690
- #: ../admin/social_login.php:1265
2691
  msgid ""
2692
  "Why the user is not appearing logged in even after Social Login until the "
2693
  "webpage is refreshed manually?"
@@ -3227,6 +3207,39 @@ msgstr ""
3227
  msgid "RSS Feed URL:"
3228
  msgstr ""
3229
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3230
  #~ msgid "Label for G+ Commenting tab"
3231
  #~ msgstr "Поле для комментирования через Google+"
3232
 
2
  msgstr ""
3
  "Project-Id-Version: Super Socializer\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2019-08-13 08:27+0530\n"
6
+ "PO-Revision-Date: 2019-08-13 08:27+0530\n"
7
  "Last-Translator: Heateor <hello@heateor.com>\n"
8
  "Language-Team: Russian\n"
9
  "Language: ru_RU\n"
17
  "%10<=4 &&(n%100<10||n%100 >= 20)? 1 : 2);\n"
18
  "X-Poedit-SearchPath-0: ..\n"
19
 
20
+ #: ../super_socializer.php:425
21
  msgid "Problem fetching access token: "
22
  msgstr ""
23
 
24
+ #: ../super_socializer.php:429 ../super_socializer.php:443
25
  msgid "Facebook SDK returned an error: "
26
  msgstr ""
27
 
28
+ #: ../super_socializer.php:439
29
  msgid "Graph returned an error: "
30
  msgstr ""
31
 
32
+ #: ../super_socializer.php:605
33
  msgid ""
34
  "cURL is not enabled at your website server. Please contact your website "
35
  "server administrator to enable it."
37
  "Curl не включен в вашем веб-сайте. Вам, возможно, потребуется обратиться к "
38
  "администратору вашего сайта, чтобы включить это."
39
 
40
+ #: ../super_socializer.php:632
41
  #, fuzzy, php-format
42
  msgid ""
43
  "Enter exactly the following url in <strong>Website</strong> option in your "
46
  "Введите действующую ссылку для <strong>сайта</strong> и <strong>обратную "
47
  "ссылку</strong> в вашем приложении Твиттера (смотрите шаг 3 %s)"
48
 
49
+ #: ../super_socializer.php:635
50
  #, fuzzy, php-format
51
  msgid ""
52
  "Enter exactly the following url in <strong>Callback URLs</strong> option in "
55
  "Введите действующую ссылку для <strong>сайта</strong> и <strong>обратную "
56
  "ссылку</strong> в вашем приложении Твиттера (смотрите шаг 3 %s)"
57
 
58
+ #: ../super_socializer.php:638
59
  msgid ""
60
  "Make sure cURL is enabled at your website server. You may need to contact "
61
  "the server administrator of your website to verify this"
63
  "Убедитесь Curl включен в вашем веб-сайте сервера. Вы, возможно, потребуется "
64
  "обратиться к администратору сервера вашего сайта, чтобы убедиться, это"
65
 
66
+ #: ../super_socializer.php:901 ../helper.php:976
 
 
 
 
 
 
 
 
67
  msgid "Please verify your email address to login."
68
  msgstr "Пожалуйста, подтвердите ваш адрес электронной почты."
69
 
70
+ #: ../super_socializer.php:901
71
  msgid "Your email has been verified. Now you can login to your account"
72
  msgstr "Ваше сообщение было проверено. Теперь вы можете войти в свой аккаунт"
73
 
74
+ #: ../super_socializer.php:905
75
  msgid "Notification"
76
  msgstr "Уведомления"
77
 
78
+ #: ../super_socializer.php:923 ../admin/social_login.php:805
79
  msgid "Email required"
80
  msgstr "Email (Обязательно)"
81
 
82
+ #: ../super_socializer.php:926
83
  msgid "Please check your email inbox to complete the registration."
84
  msgstr "Пожалуйста, проверьте свой почтовый ящик для завершения регистрации."
85
 
86
+ #: ../super_socializer.php:933 ../helper.php:508
87
  msgid "Enter your LiveJournal username"
88
  msgstr "Введите ваше имя пользователя LiveJournal"
89
 
90
+ #: ../super_socializer.php:1005
91
  msgid "Leave a reply"
92
  msgstr "Оставить ответ"
93
 
94
+ #: ../super_socializer.php:1017 ../inc/social_sharing.php:241
95
  msgid "Shares"
96
  msgstr "Поделились"
97
 
98
+ #: ../super_socializer.php:1017 ../inc/social_sharing.php:241
99
  msgid "Share"
100
  msgstr "Поделиться"
101
 
102
+ #: ../super_socializer.php:1017
103
  #, fuzzy
104
  msgid "Link copied."
105
  msgstr "LinkedIn"
106
 
107
+ #: ../super_socializer.php:1263
108
  msgid "Super Socializer - General Options"
109
  msgstr "Super Socializer - Общие настройки"
110
 
111
+ #: ../super_socializer.php:1263 ../admin/general_options.php:15
112
  #: ../admin/social_commenting.php:47
113
  msgid "General Options"
114
  msgstr "Основные настройки"
115
 
116
+ #: ../super_socializer.php:1331 ../helper.php:898
117
  msgid "Social Avatar"
118
  msgstr "Социальный аватар"
119
 
120
+ #: ../super_socializer.php:1334
121
  msgid "Small Avatar Url"
122
  msgstr "Ссылка для маленького аватара"
123
 
124
+ #: ../super_socializer.php:1338
125
  msgid "Large Avatar Url"
126
  msgstr "Ссылка для большого аватара"
127
 
128
+ #: ../super_socializer.php:1342 ../helper.php:901
129
  msgid ""
130
  "Do not fetch and update social avatar from my profile, next time I Social "
131
  "Login"
133
  "Не получать и обновлять социальный аватар из моего профиля, в следующий раз "
134
  "я когда я использую вход через соцсети"
135
 
136
+ #: ../super_socializer.php:1346 ../helper.php:902
137
  msgid "Update social avatar, next time I Social Login"
138
  msgstr ""
139
  "Обновление аватара соцсетей в следующий раз при использовании входа через "
140
  "соцсети"
141
 
142
+ #: ../super_socializer.php:1423
 
 
 
 
 
 
 
 
143
  msgid "Login with your Social ID"
144
  msgstr "Войти, используя социальный аккаунт"
145
 
146
+ #: ../super_socializer.php:1424
147
  msgid "Email you entered is already registered or invalid"
148
  msgstr ""
149
  "Электронная почта, которую вы ввели, уже зарегистрирована или недействительна"
150
 
151
+ #: ../super_socializer.php:1429
152
  msgid "Please enter a valid email address. You might be required to verify it"
153
  msgstr ""
154
  "Пожалуйста, введите действительный адрес электронной почты. Вам, возможно, "
155
  "потребуется проверить его"
156
 
157
+ #: ../super_socializer.php:1433 ../super_socializer.php:2122
158
  msgid "Link your social account to login to your account at this website"
159
  msgstr ""
160
  "Введите ссылку на ваш аккаут в социальных сетях чтобы войти в аккаунт на "
161
  "этом сайте"
162
 
163
+ #: ../super_socializer.php:1681
164
  msgid "Thanks for installing Super Socializer plugin"
165
  msgstr ""
166
 
167
+ #: ../super_socializer.php:1683
168
  msgid "Configure the Plugin"
169
  msgstr ""
170
 
171
+ #: ../super_socializer.php:1694
172
  msgid ""
173
  "Update \"Facebook Comments Moderation\" add-on for compatibility with "
174
  "current version of Super Socialzer"
175
  msgstr ""
176
 
177
+ #: ../super_socializer.php:1703
178
  msgid ""
179
  "Update \"Facebook Comments Notifier\" add-on for compatibility with current "
180
  "version of Super Socialzer"
181
  msgstr ""
182
 
183
+ #: ../super_socializer.php:1712
184
  msgid ""
185
  "Update \"Social Login Buttons\" add-on for compatibility with current "
186
  "version of Super Socialzer"
187
  msgstr ""
188
 
189
+ #: ../super_socializer.php:1721
190
  msgid ""
191
  "Update \"Social Share myCRED Integration\" add-on for maximum compatibility "
192
  "with current version of Super Socialzer"
193
  msgstr ""
194
 
195
+ #: ../super_socializer.php:1730
196
  msgid ""
197
  "Update \"Social Login myCRED Integration\" add-on for maximum compatibility "
198
  "with current version of Super Socialzer"
199
  msgstr ""
200
 
201
+ #: ../super_socializer.php:1737
202
  msgid ""
203
  "Update \"Social Login myCRED Integration\" add-on for compatibility with "
204
  "LiveJournal Login of Super Socialzer"
205
  msgstr ""
206
 
207
+ #: ../super_socializer.php:1748
208
  #, php-format
209
  msgid ""
210
  "To continue using Steam login save Steam API key <a href=\"%s\">here</a>"
211
  msgstr ""
212
 
213
+ #: ../super_socializer.php:1764
214
  #, php-format
215
  msgid ""
216
  "To continue using Social Login, save the secret keys <a href=\"%s\">here</a>"
217
  msgstr ""
218
 
219
+ #: ../super_socializer.php:1788
220
  #, php-format
221
  msgid ""
222
  "Add %s in \"Valid OAuth redirect URIs\" option in your Facebook app settings "
224
  "target=\"_blank\">here</a>"
225
  msgstr ""
226
 
227
+ #: ../super_socializer.php:1788 ../super_socializer.php:1813
228
+ #: ../super_socializer.php:1838 ../super_socializer.php:1863
229
+ #: ../super_socializer.php:1896 ../super_socializer.php:1924
230
+ #: ../super_socializer.php:1951 ../super_socializer.php:2028
231
  msgid "Okay"
232
  msgstr "Окей"
233
 
234
+ #: ../super_socializer.php:1813
235
  #, php-format
236
  msgid ""
237
  "Add %s in \"Callback URLs\" option in your Twitter app settings for Twitter "
239
  "\">here</a>"
240
  msgstr ""
241
 
242
+ #: ../super_socializer.php:1838
243
  #, php-format
244
  msgid ""
245
  "Add %s in \"Authorized Redirect URLs\" option in your Linkedin app settings "
247
  "target=\"_blank\">here</a>"
248
  msgstr ""
249
 
250
+ #: ../super_socializer.php:1863
251
  #, php-format
252
  msgid ""
253
  "Add %s in \"Authorized redirect URIs\" option in your Google client settings "
255
  "target=\"_blank\">here</a>"
256
  msgstr ""
257
 
258
+ #: ../super_socializer.php:1874
259
  #, php-format
260
  msgid ""
261
  "Save the url of privacy policy page of your website <a href=\"%s\">here</a>"
262
  msgstr ""
263
 
264
+ #: ../super_socializer.php:1896
265
  #, php-format
266
  msgid ""
267
  "This plugin is GDPR compliant. You need to update the privacy policy of your "
269
  "\"%s\" target=\"_blank\">here</a>"
270
  msgstr ""
271
 
272
+ #: ../super_socializer.php:1924
273
  #, php-format
274
  msgid ""
275
  "Now plugin supports a new service Twitcount.com to show Twitter shares. To "
278
  "your website %s with them. No need to copy-paste any code from their website."
279
  msgstr ""
280
 
281
+ #: ../super_socializer.php:1951
282
  #, php-format
283
  msgid ""
284
  "Replace url saved in \"Callback URLs\" option in your Twitter app settings "
286
  "\"%s\" target=\"_blank\">here</a>"
287
  msgstr ""
288
 
289
+ #: ../super_socializer.php:1976
290
  #, php-format
291
  msgid ""
292
  "If you cannot get Linkedin login to work after updating the plugin, replace "
294
  "For more details, check step 6 <a href=\"%s\" target=\"_blank\">here</a>"
295
  msgstr ""
296
 
297
+ #: ../super_socializer.php:1976 ../super_socializer.php:2003
298
  msgid "Dismiss"
299
  msgstr ""
300
 
301
+ #: ../super_socializer.php:2002
302
  #, php-format
303
  msgid ""
304
  "Save Facebook App ID and Secret keys in \"Standard Interface\" and/or "
307
  "that, clear share counts cache from \"Miscellaneous\" section"
308
  msgstr ""
309
 
310
+ #: ../super_socializer.php:2028
311
  #, php-format
312
  msgid ""
313
  "Your website visitors will see a popup notification (only once) if their "
323
  "пользователей, если их браузеры блокируют функции плагина» <a href=\"%s"
324
  "\">здесь</a>"
325
 
326
+ #: ../super_socializer.php:2198
327
+ msgid ""
328
+ "Your browser is blocking some features of this website. Please follow the "
329
+ "instructions at {support_url} to unblock these."
330
+ msgstr ""
331
+ "Ваш браузер блокирует некоторые функции данного веб-сайта. Пожалуйста, "
332
+ "следуйте инструкциям в {support_url}, чтобы разблокировать функции."
333
+
334
  #: ../helper.php:8
335
  msgid "Settings saved"
336
  msgstr "Параметры сохранены"
337
 
338
+ #: ../helper.php:8 ../admin/social_sharing.php:49
339
  msgid "Dismiss this notice"
340
  msgstr "Закрыть это уведомление"
341
 
423
  msgid "Large Avatar"
424
  msgstr "Большой аватар"
425
 
426
+ #: ../helper.php:913 ../admin/general_options.php:93
427
+ #: ../admin/social_sharing.php:2027 ../admin/social_commenting.php:413
428
+ #: ../admin/social_login.php:1313 ../admin/like_buttons.php:826
429
  msgid "Save Changes"
430
  msgstr "Сохранить изменения"
431
 
446
  msgid "Something bad happened"
447
  msgstr ""
448
 
449
+ #: ../admin/general_options.php:7 ../admin/general_options.php:97
450
+ #: ../admin/social_sharing.php:5 ../admin/social_sharing.php:2031
451
  #: ../admin/social_commenting.php:5 ../admin/social_commenting.php:417
452
+ #: ../admin/social_login.php:5 ../admin/social_login.php:1317
453
  #: ../admin/like_buttons.php:6 ../admin/like_buttons.php:830
454
  #, fuzzy, php-format
455
  msgid ""
495
  "плагина в следующий раз."
496
 
497
  #: ../admin/general_options.php:75
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
498
  msgid "Custom CSS"
499
  msgstr "Пользовательские CSS"
500
 
501
+ #: ../admin/general_options.php:85
502
  msgid "You can specify any additional CSS rules (without &lt;style&gt; tag)"
503
  msgstr ""
504
  "Можно указать любые дополнительные правила CSS (без тега &lt; style &gt;)"
505
 
506
+ #: ../admin/general_options.php:108 ../admin/social_sharing.php:2038
507
+ #: ../admin/social_commenting.php:424 ../admin/social_login.php:1324
508
+ #: ../admin/like_buttons.php:837
509
  #, fuzzy
510
  msgid "Instagram Shoutout"
511
  msgstr "Instagram"
512
 
513
+ #: ../admin/general_options.php:110 ../admin/social_sharing.php:2040
514
+ #: ../admin/social_commenting.php:426 ../admin/social_login.php:1326
515
+ #: ../admin/like_buttons.php:839
516
  msgid ""
517
  "If you can send (to hello@heateor.com) how our plugin is helping your "
518
  "business, we can share it on Instagram. You can also send any relevant "
519
  "hashtags and people to mention in the Instagram post."
520
  msgstr ""
521
 
522
+ #: ../admin/general_options.php:111 ../admin/social_sharing.php:2041
523
+ #: ../admin/social_commenting.php:427 ../admin/social_login.php:1327
524
+ #: ../admin/like_buttons.php:840
525
  msgid ""
526
  "<b>Example</b> - Blah-Blah Online Coaching teaches various programming "
527
  "language courses through their website. They have emerged as one of the most "
530
  "time."
531
  msgstr ""
532
 
533
+ #: ../admin/general_options.php:112 ../admin/social_sharing.php:2042
534
+ #: ../admin/social_commenting.php:428 ../admin/social_login.php:1328
535
+ #: ../admin/like_buttons.php:841
536
  msgid ""
537
  "@blahblahonlinecoaching proudly use #SuperSocializer to enable social "
538
  "features at their website, such as - Social Login, Social Share and Social "
642
  msgid "Recover Social Share Counts Lost After Moving to SSL/Https"
643
  msgstr ""
644
 
645
+ #: ../admin/social_sharing.php:49 ../admin/social_sharing.php:1990
646
  msgid ""
647
  "Save Facebook App Id and Secret in the \"Miscellaneous\" section for "
648
  "Facebook share count to work"
649
  msgstr ""
650
 
651
+ #: ../admin/social_sharing.php:56
652
  msgid "Theme Selection"
653
  msgstr "Выбор тем"
654
 
655
+ #: ../admin/social_sharing.php:57 ../admin/like_buttons.php:41
656
  msgid "Standard Interface"
657
  msgstr "Стандартный интерфейс"
658
 
659
+ #: ../admin/social_sharing.php:58 ../admin/like_buttons.php:42
660
  msgid "Floating Interface"
661
  msgstr "Плавающий интерфейс"
662
 
663
+ #: ../admin/social_sharing.php:59 ../admin/like_buttons.php:43
664
  msgid "Miscellaneous"
665
  msgstr "Разное"
666
 
667
+ #: ../admin/social_sharing.php:63 ../admin/like_buttons.php:47
668
  #, fuzzy
669
  msgid "3rd Party Integration"
670
  msgstr "XProfile интеграция"
671
 
672
+ #: ../admin/social_sharing.php:67 ../admin/social_sharing.php:1952
673
+ #: ../admin/social_sharing.php:1954 ../admin/social_login.php:46
674
+ #: ../admin/social_login.php:1279 ../admin/like_buttons.php:51
675
  #: ../admin/like_buttons.php:797
676
  msgid "Shortcode & Widget"
677
  msgstr "Шорткод и виджет"
678
 
679
+ #: ../admin/social_sharing.php:68
680
  msgid "Troubleshooter"
681
  msgstr "Устранение неисправностей"
682
 
683
+ #: ../admin/social_sharing.php:69 ../admin/social_sharing.php:1985
684
  #: ../admin/social_commenting.php:40 ../admin/social_commenting.php:397
685
+ #: ../admin/social_login.php:47 ../admin/social_login.php:1293
686
  #: ../admin/like_buttons.php:52 ../admin/like_buttons.php:810
687
  msgid "FAQ"
688
  msgstr "Часто задаваемые вопросы (FAQ)"
689
 
690
+ #: ../admin/social_sharing.php:77
691
  msgid "Standard interface theme"
692
  msgstr "Стандартный интерфейс"
693
 
694
+ #: ../admin/social_sharing.php:82 ../admin/social_sharing.php:389
695
  msgid "Icon Preview"
696
  msgstr "Превью иконок"
697
 
698
+ #: ../admin/social_sharing.php:154 ../admin/social_sharing.php:462
699
  msgid ""
700
  "Do not forget to save the configuration after making changes by clicking the "
701
  "save button below"
703
  "Не забудьте сохранить конфигурацию после внесения изменений, нажав ниже "
704
  "кнопку сохранить"
705
 
706
+ #: ../admin/social_sharing.php:161 ../admin/social_sharing.php:469
707
  msgid "Shape"
708
  msgstr "Форма"
709
 
710
+ #: ../admin/social_sharing.php:165 ../admin/social_sharing.php:473
711
  #: ../inc/widget.php:951
712
  msgid "Round"
713
  msgstr "Круглая"
714
 
715
+ #: ../admin/social_sharing.php:167 ../admin/social_sharing.php:475
716
  #: ../inc/widget.php:952
717
  msgid "Square"
718
  msgstr "Квадратная"
719
 
720
+ #: ../admin/social_sharing.php:169 ../admin/social_sharing.php:477
721
  msgid "Rectangle"
722
  msgstr "Прямоугольник"
723
 
724
+ #: ../admin/social_sharing.php:176 ../admin/social_sharing.php:484
725
  msgid "Shape of the sharing icons"
726
  msgstr "Форма кнопок Поделиться"
727
 
728
+ #: ../admin/social_sharing.php:185 ../admin/social_sharing.php:493
729
  msgid "Size (in pixels)"
730
  msgstr "Размер (в пикселях)"
731
 
732
+ #: ../admin/social_sharing.php:201 ../admin/social_sharing.php:509
733
  msgid "Size of the sharing icons"
734
  msgstr "Размер кнопок Поделиться"
735
 
736
+ #: ../admin/social_sharing.php:211 ../admin/social_sharing.php:519
737
  msgid "Width (in pixels)"
738
  msgstr "Ширина (в пикселях)"
739
 
740
+ #: ../admin/social_sharing.php:227 ../admin/social_sharing.php:535
741
  msgid "Width of the sharing icons"
742
  msgstr "Ширина иконок поделиться"
743
 
744
+ #: ../admin/social_sharing.php:235 ../admin/social_sharing.php:543
745
  msgid "Height (in pixels)"
746
  msgstr "Высота (в пикселях)"
747
 
748
+ #: ../admin/social_sharing.php:251 ../admin/social_sharing.php:559
749
  msgid "Height of the sharing icons"
750
  msgstr "Высота кнопок Поделиться"
751
 
752
+ #: ../admin/social_sharing.php:261 ../admin/social_sharing.php:569
753
  msgid "Border radius (in pixels)"
754
  msgstr "Радиус рамки (в пикселях)"
755
 
756
+ #: ../admin/social_sharing.php:271 ../admin/social_sharing.php:579
757
  msgid ""
758
  "Specify a value for rounded corners. More the value, more rounded will the "
759
  "corners be. Leave empty for sharp corners."
761
  "Укажите значение для закругленных углов. Чем больше значение параметра, "
762
  "более округлыми будут углы. Оставьте пустым для прямых углов."
763
 
764
+ #: ../admin/social_sharing.php:280 ../admin/social_sharing.php:588
765
  msgid "Logo Color"
766
  msgstr "Цвет логотипа"
767
 
768
+ #: ../admin/social_sharing.php:284 ../admin/social_sharing.php:305
769
+ #: ../admin/social_sharing.php:325 ../admin/social_sharing.php:592
770
+ #: ../admin/social_sharing.php:613 ../admin/social_sharing.php:632
771
  msgid "Default"
772
  msgstr "По умолчанию"
773
 
774
+ #: ../admin/social_sharing.php:286 ../admin/social_sharing.php:306
775
+ #: ../admin/social_sharing.php:330 ../admin/social_sharing.php:594
776
+ #: ../admin/social_sharing.php:614 ../admin/social_sharing.php:637
777
  msgid "On Hover"
778
  msgstr "При наведении"
779
 
780
+ #: ../admin/social_sharing.php:294 ../admin/social_sharing.php:602
781
  msgid ""
782
  "Specify the color or hex code (example #cc78e0) for the logo of icon. Leave "
783
  "empty for default. You can get the hex code of the required color from <a "
788
  "шестнадцатеричный код <a href=\"http://www.colorpicker.com/\" target=\"_blank"
789
  "\">здесь</a>"
790
 
791
+ #: ../admin/social_sharing.php:302 ../admin/social_sharing.php:610
792
+ #: ../admin/social_sharing.php:1325 ../admin/like_buttons.php:410
793
  #: ../inc/widget.php:460 ../inc/widget.php:772
794
  msgid "Background Color"
795
  msgstr "Цвет фона"
796
 
797
+ #: ../admin/social_sharing.php:313 ../admin/social_sharing.php:621
798
  msgid ""
799
  "Specify the color or hex code (example #cc78e0) for icon background. Save "
800
  "\"transparent\" for transparent background. Leave empty for default. You can "
806
  "шестнадцатеричный код <a href=\"http://www.colorpicker.com/\" target=\"_blank"
807
  "\">здесь</a>"
808
 
809
+ #: ../admin/social_sharing.php:321 ../admin/social_sharing.php:629
810
  msgid "Border"
811
  msgstr "Рамка"
812
 
813
+ #: ../admin/social_sharing.php:327 ../admin/social_sharing.php:332
814
+ #: ../admin/social_sharing.php:634 ../admin/social_sharing.php:639
815
  msgid "Border Width"
816
  msgstr "Ширина рамки"
817
 
818
+ #: ../admin/social_sharing.php:328 ../admin/social_sharing.php:333
819
+ #: ../admin/social_sharing.php:635 ../admin/social_sharing.php:640
820
  msgid "Border Color"
821
  msgstr "Цвет рамки"
822
 
823
+ #: ../admin/social_sharing.php:340 ../admin/social_sharing.php:647
824
  msgid "Icon border"
825
  msgstr "Иконка рамки"
826
 
827
+ #: ../admin/social_sharing.php:348 ../admin/social_sharing.php:655
828
  msgid "Counter Position"
829
  msgstr "Позиция счетчика"
830
 
831
+ #: ../admin/social_sharing.php:348 ../admin/social_sharing.php:655
832
  msgid "(applies, if counter enabled)"
833
  msgstr "(применяется, если счетчик включен)"
834
 
835
+ #: ../admin/social_sharing.php:352 ../admin/social_sharing.php:659
836
+ #: ../admin/social_sharing.php:942 ../admin/social_sharing.php:1347
837
  #: ../admin/like_buttons.php:183 ../admin/like_buttons.php:432
838
  #: ../inc/widget.php:446 ../inc/widget.php:758
839
  msgid "Left"
840
  msgstr "Слева"
841
 
842
+ #: ../admin/social_sharing.php:354 ../admin/social_sharing.php:661
843
  msgid "Top"
844
  msgstr "Сверху"
845
 
846
+ #: ../admin/social_sharing.php:356 ../admin/social_sharing.php:663
847
+ #: ../admin/social_sharing.php:944 ../admin/social_sharing.php:1348
848
  #: ../admin/like_buttons.php:185 ../admin/like_buttons.php:433
849
  #: ../inc/widget.php:447 ../inc/widget.php:759
850
  msgid "Right"
851
  msgstr "Справа"
852
 
853
+ #: ../admin/social_sharing.php:358 ../admin/social_sharing.php:665
854
  msgid "Bottom"
855
  msgstr "Снизу"
856
 
857
+ #: ../admin/social_sharing.php:360 ../admin/social_sharing.php:667
858
  msgid "Inner Left"
859
  msgstr "Отступ слева"
860
 
861
+ #: ../admin/social_sharing.php:362 ../admin/social_sharing.php:669
862
  msgid "Inner Top"
863
  msgstr "Верхний отступ"
864
 
865
+ #: ../admin/social_sharing.php:364 ../admin/social_sharing.php:671
866
  msgid "Inner Right"
867
  msgstr "Внутренний отступ справа"
868
 
869
+ #: ../admin/social_sharing.php:366 ../admin/social_sharing.php:673
870
  msgid "Inner Bottom"
871
  msgstr "Нижний отступ"
872
 
873
+ #: ../admin/social_sharing.php:374 ../admin/social_sharing.php:681
874
  msgid "Position of share counter"
875
  msgstr "Положение счетчика Поделиться"
876
 
877
+ #: ../admin/social_sharing.php:384
878
  msgid "Floating interface theme"
879
  msgstr "Плавающий интерфейс Поделиться"
880
 
881
+ #: ../admin/social_sharing.php:697
882
  msgid "Standard Sharing Interface Options"
883
  msgstr "Стандартные параметры интерфейса"
884
 
885
+ #: ../admin/social_sharing.php:703
886
  msgid "Enable Standard sharing interface"
887
  msgstr "Включить стандартный интерфейс Поделиться"
888
 
889
+ #: ../admin/social_sharing.php:713
890
  msgid "Master control to enable standard sharing"
891
  msgstr "Мастер настройки включения стандартных опций Поделиться"
892
 
893
+ #: ../admin/social_sharing.php:723 ../admin/social_sharing.php:1151
894
  #: ../admin/like_buttons.php:86 ../admin/like_buttons.php:336
895
  msgid "Target Url"
896
  msgstr "Целевой URL:"
897
 
898
+ #: ../admin/social_sharing.php:727 ../admin/social_sharing.php:1155
899
  #: ../admin/like_buttons.php:90 ../admin/like_buttons.php:340
900
  msgid "Url of the webpage where icons are located (default)"
901
  msgstr "URL-адрес веб-страницы, где расположены значки (по умолчанию)"
902
 
903
+ #: ../admin/social_sharing.php:729 ../admin/social_sharing.php:1157
904
  #: ../admin/like_buttons.php:92 ../admin/like_buttons.php:342
905
  msgid "Url of the homepage of your website"
906
  msgstr "URL-адрес домашней страницы вашего веб-сайта"
907
 
908
+ #: ../admin/social_sharing.php:731 ../admin/social_sharing.php:1159
909
  #: ../admin/like_buttons.php:94 ../admin/like_buttons.php:344
910
  msgid "Custom url"
911
  msgstr "Пользовательская ссылка"
912
 
913
+ #: ../admin/social_sharing.php:738 ../admin/social_sharing.php:1166
914
  msgid "Url to share"
915
  msgstr "Ссылка чтобы Поделиться"
916
 
917
+ #: ../admin/social_sharing.php:746 ../admin/social_login.php:532
918
  #: ../admin/social_login.php:927 ../admin/like_buttons.php:109
919
  #: ../inc/widget.php:945
920
  msgid "Title"
921
  msgstr "Заголовок"
922
 
923
+ #: ../admin/social_sharing.php:756
924
  msgid "The text to display above the sharing interface"
925
  msgstr "Текст, отображаемый над интерфейсом Поделиться"
926
 
927
+ #: ../admin/social_sharing.php:781 ../admin/social_sharing.php:1175
928
  msgid "Instagram username"
929
  msgstr "Введите имя пользователя Instagram."
930
 
931
+ #: ../admin/social_sharing.php:791 ../admin/social_sharing.php:1185
932
  msgid ""
933
  "Username of the Instagram account you want to redirect users to, on clicking "
934
  "the icon"
936
  "Имя пользователя Instagram, на учетную запись которого вы хотите "
937
  "перенаправить пользователей, по нажатию на иконку"
938
 
939
+ #: ../admin/social_sharing.php:801 ../admin/social_sharing.php:1195
940
  #, fuzzy
941
  msgid "HTML ID of container element of comment form"
942
  msgstr "HTML-идентификатор форма комментария контейнер"
943
 
944
+ #: ../admin/social_sharing.php:811 ../admin/social_sharing.php:1205
945
  msgid ""
946
  "HTML ID of the element you want to focus on the webpage, on click of Comment "
947
  "icon."
948
  msgstr ""
949
 
950
+ #: ../admin/social_sharing.php:825 ../admin/social_sharing.php:1214
951
  msgid "Rearrange icons"
952
  msgstr "Переставить иконы"
953
 
954
+ #: ../admin/social_sharing.php:886 ../admin/social_sharing.php:1273
955
  msgid "Drag the icons to rearrange in desired order"
956
  msgstr "Если хотите изменить порядок, просто перетащите изображения"
957
 
958
+ #: ../admin/social_sharing.php:894 ../admin/social_sharing.php:1281
959
  msgid "Select Sharing Services"
960
  msgstr "Выберите сервисы Поделиться"
961
 
962
+ #: ../admin/social_sharing.php:901 ../admin/social_sharing.php:1288
963
  msgid "Select sharing services to show in social share bar"
964
  msgstr "Выберите сервисы для показа в панели шейринга"
965
 
966
+ #: ../admin/social_sharing.php:919 ../admin/social_sharing.php:1306
967
  msgid "Search social network"
968
  msgstr ""
969
 
970
+ #: ../admin/social_sharing.php:938 ../admin/social_sharing.php:1343
971
  #: ../admin/like_buttons.php:179 ../admin/like_buttons.php:428
972
  msgid "Horizontal alignment"
973
  msgstr "Горизонтальное выравнивание"
974
 
975
+ #: ../admin/social_sharing.php:943 ../admin/like_buttons.php:184
976
  msgid "Center"
977
  msgstr "Центр"
978
 
979
+ #: ../admin/social_sharing.php:952 ../admin/social_sharing.php:1356
980
  msgid "Horizontal alignment of the sharing interface"
981
  msgstr "Горизонтальное выравнивание интерфейса Поделиться"
982
 
983
+ #: ../admin/social_sharing.php:960 ../admin/like_buttons.php:201
984
  msgid "Position with respect to content"
985
  msgstr "Позиция относительно контента"
986
 
987
+ #: ../admin/social_sharing.php:964 ../admin/like_buttons.php:205
988
  msgid "Top of the content"
989
  msgstr "Над содержимым"
990
 
991
+ #: ../admin/social_sharing.php:966 ../admin/like_buttons.php:207
992
  msgid "Bottom of the content"
993
  msgstr "Под содержимым"
994
 
995
+ #: ../admin/social_sharing.php:973
996
  msgid "Specify position of the sharing interface with respect to the content"
997
  msgstr "Укажите положение интерфейса Поделиться относительно содержимого."
998
 
999
+ #: ../admin/social_sharing.php:981 ../admin/social_sharing.php:1422
1000
  msgid "Placement"
1001
  msgstr "Размещение"
1002
 
1003
+ #: ../admin/social_sharing.php:985 ../admin/social_sharing.php:1426
1004
  #: ../admin/social_login.php:866 ../admin/social_login.php:896
1005
  #: ../admin/like_buttons.php:226 ../admin/like_buttons.php:511
1006
  msgid "Homepage"
1007
  msgstr "Главная"
1008
 
1009
+ #: ../admin/social_sharing.php:987 ../admin/social_sharing.php:1428
1010
  #: ../admin/like_buttons.php:228 ../admin/like_buttons.php:513
1011
  msgid "Posts"
1012
  msgstr "Записи"
1013
 
1014
+ #: ../admin/social_sharing.php:989 ../admin/social_sharing.php:1430
1015
  #: ../admin/like_buttons.php:230 ../admin/like_buttons.php:515
1016
  msgid "Pages"
1017
  msgstr "Страницы"
1018
 
1019
+ #: ../admin/social_sharing.php:991 ../admin/social_sharing.php:1432
1020
  #: ../admin/like_buttons.php:232 ../admin/like_buttons.php:517
1021
  msgid "Excerpts and Posts page"
1022
  msgstr "Страницы анонсов и страниц"
1023
 
1024
+ #: ../admin/social_sharing.php:993 ../admin/social_sharing.php:1434
1025
  #: ../admin/like_buttons.php:234 ../admin/like_buttons.php:519
1026
  msgid "Category Archives"
1027
  msgstr "Архивы категорий"
1028
 
1029
+ #: ../admin/social_sharing.php:995 ../admin/social_sharing.php:1436
1030
  #: ../admin/like_buttons.php:236 ../admin/like_buttons.php:521
1031
  msgid "Archive Pages (Category, Tag, Author or Date based pages)"
1032
  msgstr "Архив Страницы (Категория, тегов, автор или страницы на основе дат)"
1033
 
1034
+ #: ../admin/social_sharing.php:1011 ../admin/like_buttons.php:252
1035
  msgid "BuddyPress activity"
1036
  msgstr "BuddyPress активность"
1037
 
1038
+ #: ../admin/social_sharing.php:1013 ../admin/like_buttons.php:255
1039
  msgid "BuddyPress group (only at top of content)"
1040
  msgstr "BuddyPress группы (только в верхней части контента)"
1041
 
1042
+ #: ../admin/social_sharing.php:1019 ../admin/social_sharing.php:1458
1043
  #: ../admin/like_buttons.php:262 ../admin/like_buttons.php:542
1044
  msgid "BBPress forum"
1045
  msgstr "BBPress форум"
1046
 
1047
+ #: ../admin/social_sharing.php:1022 ../admin/social_sharing.php:1461
1048
  #: ../admin/like_buttons.php:265 ../admin/like_buttons.php:545
1049
  msgid "BBPress topic"
1050
  msgstr "BBPress тема"
1051
 
1052
+ #: ../admin/social_sharing.php:1025 ../admin/like_buttons.php:268
1053
  msgid "BBPress reply"
1054
  msgstr "BBPress ответ"
1055
 
1056
+ #: ../admin/social_sharing.php:1032 ../admin/like_buttons.php:275
1057
  msgid "After individual product at WooCommerce Shop page"
1058
  msgstr "После индивидуального продукта на странице магазина"
1059
 
1060
+ #: ../admin/social_sharing.php:1035 ../admin/like_buttons.php:278
1061
  msgid "WooCommerce Product Page"
1062
  msgstr "Продукт Woocommerce"
1063
 
1064
+ #: ../admin/social_sharing.php:1038 ../admin/like_buttons.php:281
1065
  msgid "WooCommerce Thankyou Page"
1066
  msgstr "WooCommerce страница благодарности"
1067
 
1068
+ #: ../admin/social_sharing.php:1049
1069
  msgid "Specify the pages where you want to enable Sharing interface"
1070
  msgstr "Укажите страницы, где вы хотите, чтобы включить интерфейс Sharing"
1071
 
1072
+ #: ../admin/social_sharing.php:1057 ../admin/social_sharing.php:1479
1073
  msgid "Show share counts"
1074
  msgstr "Показать счетчик кнопок Поделиться"
1075
 
1076
+ #: ../admin/social_sharing.php:1062 ../admin/social_sharing.php:1484
1077
  #, fuzzy
1078
  msgid ""
1079
  "Share counts are supported for Facebook, Twitter, Linkedin, Buffer, Reddit, "
1082
  "Поддерживаются Facebook, Linkedin, GooglePlus, Delicious, Buffer, Reddit, "
1083
  "Pinterest, Stumbleupon, Odnoklassniki и Vkontakte"
1084
 
1085
+ #: ../admin/social_sharing.php:1063 ../admin/social_sharing.php:1485
1086
  #, php-format
1087
  msgid ""
1088
  "To show Twitter share count, you have to click \"Give me my Twitter counts "
1091
  "their website."
1092
  msgstr ""
1093
 
1094
+ #: ../admin/social_sharing.php:1070 ../admin/social_sharing.php:1492
1095
  msgid "If enabled, share counts are displayed above sharing icons."
1096
  msgstr "Если включено, счетчики отображаются выше кнопок Поделиться"
1097
 
1098
+ #: ../admin/social_sharing.php:1079 ../admin/social_sharing.php:1501
1099
  msgid "Show total shares"
1100
  msgstr "Включить общее количество Поделиться"
1101
 
1102
+ #: ../admin/social_sharing.php:1089 ../admin/social_sharing.php:1511
1103
  msgid "If enabled, total shares will be displayed with sharing icons"
1104
  msgstr ""
1105
  "Если включено, то общее количество Поделиться будет отображаться с кнопками "
1106
  "Поделиться"
1107
 
1108
+ #: ../admin/social_sharing.php:1098 ../admin/social_sharing.php:1520
1109
  msgid "Enable 'More' icon"
1110
  msgstr "Включить значок «Больше»"
1111
 
1112
+ #: ../admin/social_sharing.php:1108 ../admin/social_sharing.php:1530
1113
  msgid ""
1114
  "If enabled, \"More\" icon will be displayed after selected sharing icons "
1115
  "which shows additional sharing networks in popup"
1117
  "Если включено, «Больше» будет отображаться после кнопок Поделиться, которая "
1118
  "показывает дополнительные сервисы в всплывающем окне"
1119
 
1120
+ #: ../admin/social_sharing.php:1125
1121
  msgid "Floating Sharing Interface Options"
1122
  msgstr "Параметры плавающих кнопок Поделиться"
1123
 
1124
+ #: ../admin/social_sharing.php:1131
1125
  msgid "Enable Floating sharing interface"
1126
  msgstr "Включить интерфейс плавающих кнопок Поделиться"
1127
 
1128
+ #: ../admin/social_sharing.php:1141
1129
  msgid "Master control to enable floating sharing widget"
1130
  msgstr "Мастер управления включения плавающего виджета Поделиться"
1131
 
1132
+ #: ../admin/social_sharing.php:1335
1133
  msgid ""
1134
  "Specify the color or hex code (example #cc78e0) for the background of "
1135
  "vertical sharing bar. Leave empty for transparent. You can get the hex code "
1141
  "Вы можете получить шестнадцатеричный код <a href=\"http://www.colorpicker."
1142
  "com/\" target=\"_blank\">здесь</a>"
1143
 
1144
+ #: ../admin/social_sharing.php:1365 ../admin/like_buttons.php:450
1145
  msgid "Left offset"
1146
  msgstr "Смещение влево"
1147
 
1148
+ #: ../admin/social_sharing.php:1375
1149
  msgid ""
1150
  "Specify a number. Increase in number will shift sharing interface towards "
1151
  "right and decrease will shift it towards left. Number can be negative too."
1154
  "отношению к правой стороне и уменьшать по отношению к правой сторону. Число "
1155
  "может быть отрицательным."
1156
 
1157
+ #: ../admin/social_sharing.php:1385 ../admin/like_buttons.php:470
1158
  msgid "Right offset"
1159
  msgstr "Смещение вправо"
1160
 
1161
+ #: ../admin/social_sharing.php:1395
1162
  msgid ""
1163
  "Specify a number. Increase in number will shift sharing interface towards "
1164
  "left and decrease will shift it towards right. Number can be negative too."
1167
  "отношению к левой стороне и уменьшать по отношению к правой сторону. Число "
1168
  "может быть отрицательным."
1169
 
1170
+ #: ../admin/social_sharing.php:1404 ../admin/like_buttons.php:489
1171
  msgid "Top offset"
1172
  msgstr "Верхний отступ"
1173
 
1174
+ #: ../admin/social_sharing.php:1414
1175
  msgid ""
1176
  "Specify a number. Increase in number will shift sharing interface towards "
1177
  "bottom and decrease will shift it towards top."
1179
  "Укажите число. Увеличение числа будет сдвигать интерфейс Поделиться по "
1180
  "отношению к низу и уменьшать по отношению к верху. "
1181
 
1182
+ #: ../admin/social_sharing.php:1450 ../admin/like_buttons.php:535
1183
  msgid "BuddyPress group"
1184
  msgstr "BuddyPress группа"
1185
 
1186
+ #: ../admin/social_sharing.php:1471
1187
  msgid "Specify the pages where you want to enable vertical Sharing interface"
1188
  msgstr ""
1189
  "Укажите страницы, где вы хотите включить вертикальный интерфейс Поделиться"
1190
 
1191
+ #: ../admin/social_sharing.php:1538
1192
  #, fuzzy
1193
  msgid "Hide floating slider"
1194
  msgstr "Скрыть для зарегистрированных пользователей"
1195
 
1196
+ #: ../admin/social_sharing.php:1548
1197
  #, fuzzy
1198
  msgid "Hides the slider arrow present below the floating share bar"
1199
  msgstr "Как скрыть стрелку после плавающих кнопок Поделиться?"
1200
 
1201
+ #: ../admin/social_sharing.php:1556
1202
  msgid "Vertical floating bar responsiveness"
1203
  msgstr "Отзывчивость вертикальных плавающих кнопок"
1204
 
1205
+ #: ../admin/social_sharing.php:1559
1206
  #, php-format
1207
  msgid "Display vertical interface only when screen is wider than %s pixels"
1208
  msgstr ""
1209
  "Показывать вертикальный интерфейс только если ширина экрана больше чем %s "
1210
  "пикселей."
1211
 
1212
+ #: ../admin/social_sharing.php:1566
1213
  msgid ""
1214
  "Display vertical interface only when screen is wider than the width "
1215
  "specified."
1217
  "Показывать вертикальный интерфейс только если ширина экрана больше чем "
1218
  "ширина по умолчанию."
1219
 
1220
+ #: ../admin/social_sharing.php:1574
1221
  msgid "Horizontal floating bar responsiveness"
1222
  msgstr "Отзывчивость вертикальных плавающих кнопок"
1223
 
1224
+ #: ../admin/social_sharing.php:1577
1225
  #, php-format
1226
  msgid ""
1227
  "Stick vertical floating interface horizontally at bottom only when screen is "
1230
  "Закреплять вертикальный плавающий интерфейс внизу только тогда когда экран "
1231
  "уже чем %s пикселей"
1232
 
1233
+ #: ../admin/social_sharing.php:1584
1234
  msgid ""
1235
  "Stick vertical floating interface horizontally at bottom only when screen is "
1236
  "narrower than the width specified"
1238
  "Закреплять вертикальный плавающий интерфейс внизу только тогда когда экран "
1239
  "уже чем указанная ширина"
1240
 
1241
+ #: ../admin/social_sharing.php:1594
1242
  msgid "Horizontal floating bar position"
1243
  msgstr "Расположение горизонтальной плавающей панели"
1244
 
1245
+ #: ../admin/social_sharing.php:1597
1246
  #, php-format
1247
  msgid "%s pixels from %s"
1248
  msgstr "%s пикселей от %s"
1249
 
1250
+ #: ../admin/social_sharing.php:1598
1251
  msgid "Auto-adjust according to screen width (responsive)"
1252
  msgstr ""
1253
 
1254
+ #: ../admin/social_sharing.php:1605
1255
  msgid "Alignment of horizontal floating interface. Number can be negative too."
1256
  msgstr ""
1257
  "Выравнивание горизонтального плавающего интерфейса. Число может быть "
1258
  "отрицательным."
1259
 
1260
+ #: ../admin/social_sharing.php:1625
1261
  #, fuzzy
1262
  msgid "Facebook Share Count"
1263
  msgstr "Устранение неисправностей Поделиться от Facebook"
1264
 
1265
+ #: ../admin/social_sharing.php:1629
1266
  msgid "Note"
1267
  msgstr ""
1268
 
1269
+ #: ../admin/social_sharing.php:1629
1270
  msgid "Required only to track Facebook share count"
1271
  msgstr ""
1272
 
1273
+ #: ../admin/social_sharing.php:1635 ../admin/social_login.php:161
1274
  msgid "Facebook App ID"
1275
  msgstr "Facebook App ID"
1276
 
1277
+ #: ../admin/social_sharing.php:1645
1278
  #, fuzzy, php-format
1279
  msgid ""
1280
  "Required for Facebook share count to work. Please follow the documentation "
1283
  "Необходимо для входа через Facebook. Пожалуйста, посмотрите документацию <a "
1284
  "href=\"%s\" target=\"_blank\">здесь</a> для получения ID приложения Facebook."
1285
 
1286
+ #: ../admin/social_sharing.php:1653 ../admin/social_login.php:183
1287
  #, fuzzy
1288
  msgid "Facebook App Secret"
1289
  msgstr "Facebook App ID"
1290
 
1291
+ #: ../admin/social_sharing.php:1663
1292
  #, fuzzy, php-format
1293
  msgid ""
1294
  "Required for Facebook share count to work. Please follow the documentation "
1297
  "Необходимо для входа через Facebook. Пожалуйста, посмотрите документацию <a "
1298
  "href=\"%s\" target=\"_blank\">здесь</a> для получения ID приложения Facebook."
1299
 
1300
+ #: ../admin/social_sharing.php:1672 ../admin/like_buttons.php:592
1301
  msgid "Url shortener"
1302
  msgstr "Укорачивание URL"
1303
 
1304
+ #: ../admin/social_sharing.php:1678
1305
  msgid "Use shortlinks already installed"
1306
  msgstr "Использование коротких ссылок уже установлено"
1307
 
1308
+ #: ../admin/social_sharing.php:1688
1309
  msgid "Uses default short url permalinks without using any additional plugin"
1310
  msgstr ""
1311
  "Использует по умолчанию постоянные короткие url без использования каких-"
1312
  "либо дополнительных плагинов"
1313
 
1314
+ #: ../admin/social_sharing.php:1696
1315
  msgid "Enable bit.ly url shortener for sharing"
1316
  msgstr "Активировать bit.ly для сокращения ссылок для Поделиться"
1317
 
1318
+ #: ../admin/social_sharing.php:1706 ../admin/like_buttons.php:626
1319
  msgid "Master control to enable bit.ly url shortening for sharing"
1320
  msgstr "Мастер управления сокращения ссылок через bit.ly для Поделиться"
1321
 
1322
+ #: ../admin/social_sharing.php:1714
1323
  msgid "bit.ly Login"
1324
  msgstr "bit.ly логин"
1325
 
1326
+ #: ../admin/social_sharing.php:1724 ../admin/social_sharing.php:1743
1327
  #, fuzzy, php-format
1328
  msgid "More details on how to get it <a href=\"%s\" target=\"_blank\">here</a>"
1329
  msgstr ""
1331
  "href=\"%s\" target=\"_blank\">здесь</a> для получения ключа приложения "
1332
  "Twitter."
1333
 
1334
+ #: ../admin/social_sharing.php:1733 ../admin/like_buttons.php:653
1335
  msgid "bit.ly API Key"
1336
  msgstr "bit.ly ключ приложения"
1337
 
1338
+ #: ../admin/social_sharing.php:1752 ../admin/like_buttons.php:672
1339
  msgid "Clear Bitly Cache"
1340
  msgstr "Очистить Bitly кэш"
1341
 
1342
+ #: ../admin/social_sharing.php:1756 ../admin/like_buttons.php:676
1343
  msgid "ShortUrl cache cleared successfully."
1344
  msgstr "ShortUrl кэш успешно очищен."
1345
 
1346
+ #: ../admin/social_sharing.php:1763 ../admin/like_buttons.php:683
1347
  msgid ""
1348
  "Use this to delete short urls saved in database. Handy, if urls of your "
1349
  "website have been changed but short urls are still being generated for old "
1353
  "Удобно, если URL-адреса вашего веб-сайта были изменены, но короткие URL-"
1354
  "адреса по-прежнему создаются для старых URL-адресов."
1355
 
1356
+ #: ../admin/social_sharing.php:1772
1357
  msgid "Share Count Cache"
1358
  msgstr "Кэш счетчиков поделиться"
1359
 
1360
+ #: ../admin/social_sharing.php:1778
1361
  msgid "Refresh Share Count cache every"
1362
  msgstr "Обновить кэш счетчиков Поделиться"
1363
 
1364
+ #: ../admin/social_sharing.php:1783
1365
  msgid "Second(s)"
1366
  msgstr "Секунд"
1367
 
1368
+ #: ../admin/social_sharing.php:1784
1369
  msgid "Minute(s)"
1370
  msgstr "Минут"
1371
 
1372
+ #: ../admin/social_sharing.php:1785
1373
  msgid "Hour(s)"
1374
  msgstr "Часов"
1375
 
1376
+ #: ../admin/social_sharing.php:1786
1377
  msgid "Day(s)"
1378
  msgstr "Дней"
1379
 
1380
+ #: ../admin/social_sharing.php:1794
1381
  #, fuzzy, php-format
1382
  msgid ""
1383
  "Frequent cache refreshing results in slower loading of pages with share "
1387
  "Частое обновление кэша приводит к более медленной загрузке страниц с "
1388
  "включенными счетчиками Поделиться"
1389
 
1390
+ #: ../admin/social_sharing.php:1802
1391
  msgid "Clear Share Counts Cache"
1392
  msgstr "Очистить кэш счетчиков Поделиться"
1393
 
1394
+ #: ../admin/social_sharing.php:1806
1395
  msgid "Share Counts cache cleared successfully."
1396
  msgstr "Share Counts кэш успешно очищен."
1397
 
1398
+ #: ../admin/social_sharing.php:1813
1399
  msgid "Use this to clear cached share counts"
1400
  msgstr "Используйте это для очистки кэшированных счетчиков Поделиться"
1401
 
1402
+ #: ../admin/social_sharing.php:1822 ../admin/social_sharing.php:1828
1403
  #: ../admin/social_commenting.php:315 ../admin/like_buttons.php:692
1404
  #: ../admin/like_buttons.php:698
1405
  msgid "Language"
1406
  msgstr "Язык"
1407
 
1408
+ #: ../admin/social_sharing.php:1838
1409
  #, php-format
1410
  msgid ""
1411
  "Enter the code of the language you want to use for like buttons. You can "
1416
  "Вы можете найти код своего языка по <a href=\"%s\" target=\"_blank\">этой "
1417
  "ссылке</a>. Оставьте поле пустым чтобы оставить язык по умолчанию (English)."
1418
 
1419
+ #: ../admin/social_sharing.php:1847
1420
  msgid "Username in sharing"
1421
  msgstr "Имя пользователя чтобы поделиться"
1422
 
1423
+ #: ../admin/social_sharing.php:1853
1424
  msgid "Twitter username (without @)"
1425
  msgstr "Twitter имя пользователя (без @)"
1426
 
1427
+ #: ../admin/social_sharing.php:1863 ../admin/social_sharing.php:1882
1428
  msgid ""
1429
  "Provided username will be appended after the content being shared as \"via "
1430
  "@USERNAME\". Leave empty if you do not want any username in the content "
1433
  "Добавляет имя пользователя после того как контент будет расшарен с помощью "
1434
  "\"via @USERNAME\". Оставьте поле пустым если не хотите указывать имя."
1435
 
1436
+ #: ../admin/social_sharing.php:1872
1437
  msgid "Buffer username (without @)"
1438
  msgstr "Имя пользователя в Twitter (без @)"
1439
 
1440
+ #: ../admin/social_sharing.php:1891
1441
  msgid "AMP"
1442
  msgstr "AMP"
1443
 
1444
+ #: ../admin/social_sharing.php:1897
1445
  msgid "Enable sharing on AMP pages"
1446
  msgstr "Разрешить общий доступ на страницах AMP"
1447
 
1448
+ #: ../admin/social_sharing.php:1907
1449
  msgid "Enable this option to render sharing icons on AMP pages"
1450
  msgstr "Включите этот параметр для отображения иконок на страницах AMP"
1451
 
1452
+ #: ../admin/social_sharing.php:1926 ../admin/like_buttons.php:771
1453
  msgid "myCRED"
1454
  msgstr ""
1455
 
1456
+ #: ../admin/social_sharing.php:1932 ../admin/like_buttons.php:777
1457
  msgid "Append myCRED referral ID to the urls being shared"
1458
  msgstr ""
1459
 
1460
+ #: ../admin/social_sharing.php:1965
1461
  msgid "Facebook Sharing Troubleshooter"
1462
  msgstr "Устранение неисправностей Поделиться от Facebook"
1463
 
1464
+ #: ../admin/social_sharing.php:1970
1465
  msgid ""
1466
  "If Facebook sharing is not working fine, click at the following link and "
1467
  "enter the problematic url (where Facebook sharing is not working properly) "
1473
  "работает должным образом) на вашем сайте в текстовом поле. Нажмите "
1474
  "\"Получение информации о новой поломке\" ."
1475
 
1476
+ #: ../admin/social_sharing.php:1987 ../admin/social_commenting.php:399
1477
+ #: ../admin/social_login.php:1295
1478
  msgid ""
1479
  "<strong>Note:</strong> Plugin will not work on local server. You should have "
1480
  "an online website for the plugin to function properly."
1481
  msgstr ""
1482
 
1483
+ #: ../admin/social_sharing.php:1988
1484
  msgid ""
1485
  "Why is sharer not showing the correct image, title and other meta tags "
1486
  "content?"
1488
  "Почему расшаривание не показывает корректино изображение, заголовок и другие "
1489
  "мета данные контента? "
1490
 
1491
+ #: ../admin/social_sharing.php:1989
1492
  #, fuzzy
1493
  msgid "Why is Facebook share count not working?"
1494
  msgstr "Почему счетчики Фейсбука поделиться не обновляются?"
1495
 
1496
+ #: ../admin/social_sharing.php:1992
1497
  msgid "Why is Instagram icon redirecting to Instagram website?"
1498
  msgstr ""
1499
 
1500
+ #: ../admin/social_sharing.php:1993
1501
  msgid ""
1502
  "Instagram icon is there to send website visitors to the Instagram page of "
1503
  "your choice. You can save the desired Instagram handle in \"Instagram "
1505
  "sections."
1506
  msgstr ""
1507
 
1508
+ #: ../admin/social_sharing.php:1996
1509
  #, fuzzy
1510
  msgid "How to customize the url being shared?"
1511
  msgstr "Как настроить внешний вид отдельных счетчиков поделиться?"
1512
 
1513
+ #: ../admin/social_sharing.php:1997
1514
  msgid ""
1515
  "Why are Twitter shares not appearing even after registering at Twitcount.com?"
1516
  msgstr ""
1517
 
1518
+ #: ../admin/social_sharing.php:1998
1519
  msgid ""
1520
  "It takes some time for their service to track the shares made on Twitter "
1521
  "from your website. If you still feel it's taking too long you can contact "
1522
  "their support directly from their website."
1523
  msgstr ""
1524
 
1525
+ #: ../admin/social_sharing.php:2000 ../admin/like_buttons.php:814
1526
  msgid "How to Place Title and Social Share Icons in the Same Row?"
1527
  msgstr ""
1528
 
1529
+ #: ../admin/social_sharing.php:2001
1530
  msgid ""
1531
  "How to restore Social Share counts lost after moving my website to SSL/Https?"
1532
  msgstr ""
1533
 
1534
+ #: ../admin/social_sharing.php:2002 ../admin/social_commenting.php:402
1535
+ #: ../admin/social_login.php:1302
1536
  msgid "Why is my browser blocking some features of the plugin?"
1537
  msgstr "Почему мой браузер блокирует некоторые функции плагина?"
1538
 
1539
+ #: ../admin/social_sharing.php:2003
1540
  #, fuzzy
1541
  msgid "Why the color of share icons is not being updated?"
1542
  msgstr "Почему счетчики Фейсбука поделиться не обновляются?"
1543
 
1544
+ #: ../admin/social_sharing.php:2004
1545
  msgid "Why Facebook share counts are not appearing?"
1546
  msgstr "Почему счетчики Фейсбука поделиться не обновляются?"
1547
 
1548
+ #: ../admin/social_sharing.php:2005
1549
  msgid ""
1550
  "How can I show share counts of my website rather than of individual pages/"
1551
  "posts?"
1553
  "Как мне отобразить общее количество Поделиться основанное на страницах/"
1554
  "постах?"
1555
 
1556
+ #: ../admin/social_sharing.php:2006
1557
  msgid "How can I disable sharing on particular page/post?"
1558
  msgstr ""
1559
  "Как можно отключить кнопки Поделиться на конкретной странице или в посте?"
1560
 
1561
+ #: ../admin/social_sharing.php:2007
1562
  msgid "How can I specify minimum sharing count for sharing networks?"
1563
  msgstr "Как мне указать минимальное количество для Поделиться"
1564
 
1565
+ #: ../admin/social_sharing.php:2008
1566
  msgid "How to share specific page?"
1567
  msgstr "Как поделиться определенной страницей?"
1568
 
1569
+ #: ../admin/social_sharing.php:2009
1570
  msgid "How to integrate Google Analytics with sharing?"
1571
  msgstr "Как интегрировать Google Analytics с Поделиться?"
1572
 
1573
+ #: ../admin/social_sharing.php:2010
1574
  msgid "How to customize the look of total share counts?"
1575
  msgstr "Как настроить внешний вид счетчиков поделиться?"
1576
 
1577
+ #: ../admin/social_sharing.php:2011
1578
  msgid "How to customize the look of individual share counts?"
1579
  msgstr "Как настроить внешний вид отдельных счетчиков поделиться?"
1580
 
1581
+ #: ../admin/social_sharing.php:2012
1582
  msgid "How to show Whatsapp icon only on mobile devices?"
1583
  msgstr "Как показать иконку Whatsapp только на мобильных устройствах?"
1584
 
1585
+ #: ../admin/social_sharing.php:2013
1586
  msgid "How to hide arrow after floating sharing bar?"
1587
  msgstr "Как скрыть стрелку после плавающих кнопок Поделиться?"
1588
 
1589
+ #: ../admin/social_sharing.php:2014
1590
  #, fuzzy
1591
  msgid "Why is share count not getting updated?"
1592
  msgstr "Почему счетчики Фейсбука поделиться не обновляются?"
1593
 
1594
+ #: ../admin/social_sharing.php:2015 ../admin/like_buttons.php:812
1595
  msgid "Why is there so much space between like buttons?"
1596
  msgstr "Почему существует так много места между кнопками?"
1597
 
1598
+ #: ../admin/social_sharing.php:2016 ../admin/like_buttons.php:813
1599
  msgid "Why are floating sharing/like buttons not appearing at homepage?"
1600
  msgstr ""
1601
  "Почему плавающая панель Поделиться/кнопки Нравится не отображаются на "
1854
  msgid "GDPR"
1855
  msgstr ""
1856
 
1857
+ #: ../admin/social_login.php:44 ../admin/social_login.php:1230
1858
  msgid "XProfile Integration"
1859
  msgstr "XProfile интеграция"
1860
 
2606
  msgstr "Активировать комментирование через Disqus"
2607
 
2608
  #: ../admin/social_login.php:1135
2609
+ msgid "Text to link to Terms-Conditions page"
2610
  msgstr ""
2611
 
2612
  #: ../admin/social_login.php:1145
2613
+ msgid "Word(s) in the opt-in text to be linked to terms-conditions page"
2614
  msgstr ""
2615
 
2616
  #: ../admin/social_login.php:1153
2617
+ msgid "Terms-Conditions Url"
2618
  msgstr ""
2619
 
2620
  #: ../admin/social_login.php:1163
2621
  #, fuzzy
2622
+ msgid "Url of the terms-conditions page of your website"
2623
+ msgstr "URL-адрес домашней страницы вашего веб-сайта"
2624
+
2625
+ #: ../admin/social_login.php:1171
2626
+ msgid "Text to link to Privacy Policy page"
2627
+ msgstr ""
2628
+
2629
+ #: ../admin/social_login.php:1181
2630
+ msgid "Word(s) in the opt-in text to be linked to privacy policy page"
2631
+ msgstr ""
2632
+
2633
+ #: ../admin/social_login.php:1189
2634
+ msgid "Privacy Policy Url"
2635
+ msgstr ""
2636
+
2637
+ #: ../admin/social_login.php:1199
2638
+ #, fuzzy
2639
  msgid "Url of the privacy policy page of your website"
2640
  msgstr "URL-адрес домашней страницы вашего веб-сайта"
2641
 
2642
+ #: ../admin/social_login.php:1250 ../inc/widget.php:260 ../inc/widget.php:438
2643
  #: ../inc/widget.php:602 ../inc/widget.php:750
2644
  msgid "Select"
2645
  msgstr "Выбор"
2646
 
2647
+ #: ../admin/social_login.php:1281
2648
  msgid "Social Login Shortcode & Widget"
2649
  msgstr "Шорткод и виджет для входа через социальные сети "
2650
 
2651
+ #: ../admin/social_login.php:1282
2652
  msgid "Social Linking Shortcode"
2653
  msgstr "Шорткод социальных ссылок"
2654
 
2655
+ #: ../admin/social_login.php:1297
2656
  #, fuzzy
2657
  msgid "Why is social login not working?"
2658
  msgstr "Почему Facebook логин не работает?"
2659
 
2660
+ #: ../admin/social_login.php:1298
2661
  msgid ""
2662
  "Make sure that App ID and Secret (Client ID and Secret) keys you have saved, "
2663
  "belong to the same app"
2664
  msgstr ""
2665
 
2666
+ #: ../admin/social_login.php:1300
2667
  msgid "Social Login not working with Varnish enabled"
2668
  msgstr ""
2669
 
2670
+ #: ../admin/social_login.php:1301
2671
  msgid ""
2672
  "Why the user is not appearing logged in even after Social Login until the "
2673
  "webpage is refreshed manually?"
3207
  msgid "RSS Feed URL:"
3208
  msgstr ""
3209
 
3210
+ #~ msgid ""
3211
+ #~ "Make sure that \"Enable Callback Locking\" option is disabled. See step 4 "
3212
+ #~ "%s"
3213
+ #~ msgstr ""
3214
+ #~ "Убедитесь, что «Включить Блокировку обратного вызова » параметр отключен. "
3215
+ #~ "Смотрите шаг 4 %s"
3216
+
3217
+ #~ msgid ""
3218
+ #~ "Show popup notification to users if their browsers block the plugin "
3219
+ #~ "features"
3220
+ #~ msgstr ""
3221
+ #~ "Показать всплывающее уведомление для пользователей, если их браузеры "
3222
+ #~ "блокируют функции плагина"
3223
+
3224
+ #, fuzzy
3225
+ #~ msgid ""
3226
+ #~ "If enabled, your website visitors will see a popup notification (only "
3227
+ #~ "once) if their browsers block any of the features of the plugin so that "
3228
+ #~ "they can change their browser settings to unblock these."
3229
+ #~ msgstr ""
3230
+ #~ "Если включено, посетители вашего сайта увидят всплывающее уведомление, "
3231
+ #~ "если их браузеры блокируют любую из функций плагина, так что они могут "
3232
+ #~ "изменить свои настройки браузера, чтобы разблокировать функции."
3233
+
3234
+ #~ msgid "Message to show in popup notification"
3235
+ #~ msgstr "Сообщение для показа в всплывающем окне"
3236
+
3237
+ #~ msgid ""
3238
+ #~ "Use {support_url} placeholder to show support documentation url in message"
3239
+ #~ msgstr ""
3240
+ #~ "Используйте {support_url} для отображения URL-адреса технической "
3241
+ #~ "документации в сообщении"
3242
+
3243
  #~ msgid "Label for G+ Commenting tab"
3244
  #~ msgstr "Поле для комментирования через Google+"
3245
 
languages/super-socializer-uk.mo CHANGED
Binary file
languages/super-socializer-uk.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: 2019-06-25 11:54+0530\n"
6
- "PO-Revision-Date: 2019-06-25 11:54+0530\n"
7
  "Last-Translator: Heateor <hello@heateor.com>\n"
8
  "Language-Team: Ukrainian\n"
9
  "Language: uk\n"
@@ -17,19 +17,19 @@ msgstr ""
17
  "%10<=4 &&(n%100<10||n%100 >= 20)? 1 : 2);\n"
18
  "X-Poedit-SearchPath-0: ..\n"
19
 
20
- #: ../super_socializer.php:430
21
  msgid "Problem fetching access token: "
22
  msgstr ""
23
 
24
- #: ../super_socializer.php:434 ../super_socializer.php:448
25
  msgid "Facebook SDK returned an error: "
26
  msgstr ""
27
 
28
- #: ../super_socializer.php:444
29
  msgid "Graph returned an error: "
30
  msgstr ""
31
 
32
- #: ../super_socializer.php:610
33
  msgid ""
34
  "cURL is not enabled at your website server. Please contact your website "
35
  "server administrator to enable it."
@@ -37,7 +37,7 @@ msgstr ""
37
  "Curl не включений у вашому веб-сайті. Вам, можливо, буде потрібно звернутися "
38
  "до адміністратора вашого сайту, щоб включити це."
39
 
40
- #: ../super_socializer.php:637
41
  #, fuzzy, php-format
42
  msgid ""
43
  "Enter exactly the following url in <strong>Website</strong> option in your "
@@ -46,7 +46,7 @@ msgstr ""
46
  "Введіть діюче посилання для <strong> сайту </ strong> та <strong> зворотне "
47
  "посилання </ strong> у вашому додатку Твіттера (дивіться крок 3% s)"
48
 
49
- #: ../super_socializer.php:640
50
  #, fuzzy, php-format
51
  msgid ""
52
  "Enter exactly the following url in <strong>Callback URLs</strong> option in "
@@ -55,7 +55,7 @@ msgstr ""
55
  "Введіть діюче посилання для <strong> сайту </ strong> та <strong> зворотне "
56
  "посилання </ strong> у вашому додатку Твіттера (дивіться крок 3% s)"
57
 
58
- #: ../super_socializer.php:643
59
  msgid ""
60
  "Make sure cURL is enabled at your website server. You may need to contact "
61
  "the server administrator of your website to verify this"
@@ -64,79 +64,71 @@ msgstr ""
64
  "буде потрібно звернутися до адміністратора сервера вашого сайту, щоб "
65
  "переконатися в цьому."
66
 
67
- #: ../super_socializer.php:644
68
- #, php-format
69
- msgid ""
70
- "Make sure that \"Enable Callback Locking\" option is disabled. See step 4 %s"
71
- msgstr ""
72
- "Переконайтеся, що «Включити Блокування зворотного виклику» параметр "
73
- "відключений. Дивіться крок 4% s"
74
-
75
- #: ../super_socializer.php:907 ../helper.php:976
76
  msgid "Please verify your email address to login."
77
  msgstr "Будь ласка, підтвердіть свою адресу електронної пошти."
78
 
79
- #: ../super_socializer.php:907
80
  msgid "Your email has been verified. Now you can login to your account"
81
  msgstr ""
82
  "Ваша електронна адреса була перевірена. Тепер ви можете увійти до свого "
83
  "облікового запису"
84
 
85
- #: ../super_socializer.php:911
86
  msgid "Notification"
87
  msgstr "Повідомлення"
88
 
89
- #: ../super_socializer.php:929 ../admin/social_login.php:805
90
  msgid "Email required"
91
  msgstr "Електронна адреса (обо'язково)"
92
 
93
- #: ../super_socializer.php:932
94
  msgid "Please check your email inbox to complete the registration."
95
  msgstr "Будь ласка, перевірте вашу поштову скриньку для завершення реєстрації."
96
 
97
- #: ../super_socializer.php:939 ../helper.php:508
98
  msgid "Enter your LiveJournal username"
99
  msgstr "Введіть ваше ім'я користувача LiveJournal"
100
 
101
- #: ../super_socializer.php:1011
102
  msgid "Leave a reply"
103
  msgstr "Залишити коментар"
104
 
105
- #: ../super_socializer.php:1023 ../inc/social_sharing.php:241
106
  msgid "Shares"
107
  msgstr "Поширили:"
108
 
109
- #: ../super_socializer.php:1023 ../inc/social_sharing.php:241
110
  msgid "Share"
111
  msgstr "Поділитися"
112
 
113
- #: ../super_socializer.php:1023
114
  #, fuzzy
115
  msgid "Link copied."
116
  msgstr "LinkedIn"
117
 
118
- #: ../super_socializer.php:1269
119
  msgid "Super Socializer - General Options"
120
  msgstr "Super Socializer - Загальні Параметри"
121
 
122
- #: ../super_socializer.php:1269 ../admin/general_options.php:15
123
  #: ../admin/social_commenting.php:47
124
  msgid "General Options"
125
  msgstr "Загальні параметри"
126
 
127
- #: ../super_socializer.php:1337 ../helper.php:898
128
  msgid "Social Avatar"
129
  msgstr "Соціальний Аватар"
130
 
131
- #: ../super_socializer.php:1340
132
  msgid "Small Avatar Url"
133
  msgstr "Посилання для маленького аватара"
134
 
135
- #: ../super_socializer.php:1344
136
  msgid "Large Avatar Url"
137
  msgstr "Посилання для великого аватара"
138
 
139
- #: ../super_socializer.php:1348 ../helper.php:901
140
  msgid ""
141
  "Do not fetch and update social avatar from my profile, next time I Social "
142
  "Login"
@@ -144,97 +136,89 @@ msgstr ""
144
  "Не отримувати і оновлювати соціальний аватар з мого профілю, в наступний "
145
  "раз коли я використовую вхід через соцмережі"
146
 
147
- #: ../super_socializer.php:1352 ../helper.php:902
148
  msgid "Update social avatar, next time I Social Login"
149
  msgstr ""
150
  "Оновлення аватара соцмереж наступного разу при використанні входу через "
151
  "соцмережі"
152
 
153
- #: ../super_socializer.php:1425 ../super_socializer.php:2197
154
- msgid ""
155
- "Your browser is blocking some features of this website. Please follow the "
156
- "instructions at {support_url} to unblock these."
157
- msgstr ""
158
- "Ваш браузер блокує деякі функції даного веб-сайту. Будь ласка, дотримуйтесь "
159
- "інструкцій в {support_url}, щоб розблокувати функції."
160
-
161
- #: ../super_socializer.php:1431
162
  msgid "Login with your Social ID"
163
  msgstr "Увійти через соціальний аккаунт"
164
 
165
- #: ../super_socializer.php:1432
166
  msgid "Email you entered is already registered or invalid"
167
  msgstr "Електронна пошта, яку ви ввели, вже зареєстрована або недійсна"
168
 
169
- #: ../super_socializer.php:1437
170
  msgid "Please enter a valid email address. You might be required to verify it"
171
  msgstr ""
172
  "Будь ласка, введіть дійсну адресу електронної пошти. Вам, можливо, буде "
173
  "потрібно перевірити його"
174
 
175
- #: ../super_socializer.php:1441 ../super_socializer.php:2121
176
  msgid "Link your social account to login to your account at this website"
177
  msgstr ""
178
  "Введіть посилання на ваш аккаунт в соціальних мережах щоб увійти в обліковий "
179
  "запис на цьому сайті"
180
 
181
- #: ../super_socializer.php:1687
182
  msgid "Thanks for installing Super Socializer plugin"
183
  msgstr ""
184
 
185
- #: ../super_socializer.php:1689
186
  msgid "Configure the Plugin"
187
  msgstr ""
188
 
189
- #: ../super_socializer.php:1700
190
  msgid ""
191
  "Update \"Facebook Comments Moderation\" add-on for compatibility with "
192
  "current version of Super Socialzer"
193
  msgstr ""
194
 
195
- #: ../super_socializer.php:1709
196
  msgid ""
197
  "Update \"Facebook Comments Notifier\" add-on for compatibility with current "
198
  "version of Super Socialzer"
199
  msgstr ""
200
 
201
- #: ../super_socializer.php:1718
202
  msgid ""
203
  "Update \"Social Login Buttons\" add-on for compatibility with current "
204
  "version of Super Socialzer"
205
  msgstr ""
206
 
207
- #: ../super_socializer.php:1727
208
  msgid ""
209
  "Update \"Social Share myCRED Integration\" add-on for maximum compatibility "
210
  "with current version of Super Socialzer"
211
  msgstr ""
212
 
213
- #: ../super_socializer.php:1736
214
  msgid ""
215
  "Update \"Social Login myCRED Integration\" add-on for maximum compatibility "
216
  "with current version of Super Socialzer"
217
  msgstr ""
218
 
219
- #: ../super_socializer.php:1743
220
  msgid ""
221
  "Update \"Social Login myCRED Integration\" add-on for compatibility with "
222
  "LiveJournal Login of Super Socialzer"
223
  msgstr ""
224
 
225
- #: ../super_socializer.php:1754
226
  #, php-format
227
  msgid ""
228
  "To continue using Steam login save Steam API key <a href=\"%s\">here</a>"
229
  msgstr ""
230
 
231
- #: ../super_socializer.php:1770
232
  #, php-format
233
  msgid ""
234
  "To continue using Social Login, save the secret keys <a href=\"%s\">here</a>"
235
  msgstr ""
236
 
237
- #: ../super_socializer.php:1794
238
  #, php-format
239
  msgid ""
240
  "Add %s in \"Valid OAuth redirect URIs\" option in your Facebook app settings "
@@ -242,14 +226,14 @@ msgid ""
242
  "target=\"_blank\">here</a>"
243
  msgstr ""
244
 
245
- #: ../super_socializer.php:1794 ../super_socializer.php:1819
246
- #: ../super_socializer.php:1844 ../super_socializer.php:1869
247
- #: ../super_socializer.php:1902 ../super_socializer.php:1930
248
- #: ../super_socializer.php:1957 ../super_socializer.php:2034
249
  msgid "Okay"
250
  msgstr "Гаразд."
251
 
252
- #: ../super_socializer.php:1819
253
  #, php-format
254
  msgid ""
255
  "Add %s in \"Callback URLs\" option in your Twitter app settings for Twitter "
@@ -257,7 +241,7 @@ msgid ""
257
  "\">here</a>"
258
  msgstr ""
259
 
260
- #: ../super_socializer.php:1844
261
  #, php-format
262
  msgid ""
263
  "Add %s in \"Authorized Redirect URLs\" option in your Linkedin app settings "
@@ -265,7 +249,7 @@ msgid ""
265
  "target=\"_blank\">here</a>"
266
  msgstr ""
267
 
268
- #: ../super_socializer.php:1869
269
  #, php-format
270
  msgid ""
271
  "Add %s in \"Authorized redirect URIs\" option in your Google client settings "
@@ -273,13 +257,13 @@ msgid ""
273
  "target=\"_blank\">here</a>"
274
  msgstr ""
275
 
276
- #: ../super_socializer.php:1880
277
  #, php-format
278
  msgid ""
279
  "Save the url of privacy policy page of your website <a href=\"%s\">here</a>"
280
  msgstr ""
281
 
282
- #: ../super_socializer.php:1902
283
  #, php-format
284
  msgid ""
285
  "This plugin is GDPR compliant. You need to update the privacy policy of your "
@@ -287,7 +271,7 @@ msgid ""
287
  "\"%s\" target=\"_blank\">here</a>"
288
  msgstr ""
289
 
290
- #: ../super_socializer.php:1930
291
  #, php-format
292
  msgid ""
293
  "Now plugin supports a new service Twitcount.com to show Twitter shares. To "
@@ -296,7 +280,7 @@ msgid ""
296
  "your website %s with them. No need to copy-paste any code from their website."
297
  msgstr ""
298
 
299
- #: ../super_socializer.php:1957
300
  #, php-format
301
  msgid ""
302
  "Replace url saved in \"Callback URLs\" option in your Twitter app settings "
@@ -304,7 +288,7 @@ msgid ""
304
  "\"%s\" target=\"_blank\">here</a>"
305
  msgstr ""
306
 
307
- #: ../super_socializer.php:1982
308
  #, php-format
309
  msgid ""
310
  "If you cannot get Linkedin login to work after updating the plugin, replace "
@@ -312,11 +296,11 @@ msgid ""
312
  "For more details, check step 6 <a href=\"%s\" target=\"_blank\">here</a>"
313
  msgstr ""
314
 
315
- #: ../super_socializer.php:1982 ../super_socializer.php:2009
316
  msgid "Dismiss"
317
  msgstr ""
318
 
319
- #: ../super_socializer.php:2008
320
  #, php-format
321
  msgid ""
322
  "Save Facebook App ID and Secret keys in \"Standard Interface\" and/or "
@@ -325,7 +309,7 @@ msgid ""
325
  "that, clear share counts cache from \"Miscellaneous\" section"
326
  msgstr ""
327
 
328
- #: ../super_socializer.php:2034
329
  #, php-format
330
  msgid ""
331
  "Your website visitors will see a popup notification (only once) if their "
@@ -341,11 +325,19 @@ msgstr ""
341
  "користувачів, якщо їх браузери блокують функції плагіна» <a href=\"%s\"> тут "
342
  "</a>"
343
 
 
 
 
 
 
 
 
 
344
  #: ../helper.php:8
345
  msgid "Settings saved"
346
  msgstr "Налаштування збережені"
347
 
348
- #: ../helper.php:8 ../admin/social_sharing.php:42
349
  msgid "Dismiss this notice"
350
  msgstr "Закрити це повідомлення"
351
 
@@ -433,9 +425,9 @@ msgstr "Невеликий аватар"
433
  msgid "Large Avatar"
434
  msgstr "Великий аватар"
435
 
436
- #: ../helper.php:913 ../admin/general_options.php:132
437
- #: ../admin/social_sharing.php:2020 ../admin/social_commenting.php:413
438
- #: ../admin/social_login.php:1277 ../admin/like_buttons.php:826
439
  msgid "Save Changes"
440
  msgstr "Зберегти налаштування"
441
 
@@ -456,10 +448,10 @@ msgstr ""
456
  msgid "Something bad happened"
457
  msgstr ""
458
 
459
- #: ../admin/general_options.php:7 ../admin/general_options.php:136
460
- #: ../admin/social_sharing.php:5 ../admin/social_sharing.php:2024
461
  #: ../admin/social_commenting.php:5 ../admin/social_commenting.php:417
462
- #: ../admin/social_login.php:5 ../admin/social_login.php:1281
463
  #: ../admin/like_buttons.php:6 ../admin/like_buttons.php:830
464
  #, fuzzy, php-format
465
  msgid ""
@@ -504,62 +496,33 @@ msgstr ""
504
  "установці плагіна в наступний раз."
505
 
506
  #: ../admin/general_options.php:75
507
- msgid ""
508
- "Show popup notification to users if their browsers block the plugin features"
509
- msgstr ""
510
- "Показати спливаюче повідомлення для користувачів, якщо їх браузери блокують "
511
- "функції плагіна"
512
-
513
- #: ../admin/general_options.php:85
514
- #, fuzzy
515
- msgid ""
516
- "If enabled, your website visitors will see a popup notification (only once) "
517
- "if their browsers block any of the features of the plugin so that they can "
518
- "change their browser settings to unblock these."
519
- msgstr ""
520
- "Якщо включено, відвідувачі вашого сайту побачать спливаюче повідомлення, "
521
- "якщо їх браузери блокують будь-яку з функцій плагіна, так що вони можуть "
522
- "змінити свої настройки браузера, щоб розблокувати функції."
523
-
524
- #: ../admin/general_options.php:95
525
- msgid "Message to show in popup notification"
526
- msgstr "Повідомлення для показу в спливаючому вікні"
527
-
528
- #: ../admin/general_options.php:105
529
- msgid ""
530
- "Use {support_url} placeholder to show support documentation url in message"
531
- msgstr ""
532
- "Використовуйте {support_url} для відображення URL-адреси технічної "
533
- "документації в повідомленні"
534
-
535
- #: ../admin/general_options.php:114
536
  msgid "Custom CSS"
537
  msgstr "Користувальницькі CSS"
538
 
539
- #: ../admin/general_options.php:124
540
  msgid "You can specify any additional CSS rules (without &lt;style&gt; tag)"
541
  msgstr ""
542
  "Можна вказати будь-які додаткові правила CSS (без тега & lt; style & gt;)"
543
 
544
- #: ../admin/general_options.php:147 ../admin/social_sharing.php:2030
545
- #: ../admin/social_commenting.php:423 ../admin/social_login.php:1287
546
- #: ../admin/like_buttons.php:836
547
  #, fuzzy
548
  msgid "Instagram Shoutout"
549
  msgstr "Instagram"
550
 
551
- #: ../admin/general_options.php:149 ../admin/social_sharing.php:2032
552
- #: ../admin/social_commenting.php:425 ../admin/social_login.php:1289
553
- #: ../admin/like_buttons.php:838
554
  msgid ""
555
  "If you can send (to hello@heateor.com) how our plugin is helping your "
556
  "business, we can share it on Instagram. You can also send any relevant "
557
  "hashtags and people to mention in the Instagram post."
558
  msgstr ""
559
 
560
- #: ../admin/general_options.php:150 ../admin/social_sharing.php:2033
561
- #: ../admin/social_commenting.php:426 ../admin/social_login.php:1290
562
- #: ../admin/like_buttons.php:839
563
  msgid ""
564
  "<b>Example</b> - Blah-Blah Online Coaching teaches various programming "
565
  "language courses through their website. They have emerged as one of the most "
@@ -568,9 +531,9 @@ msgid ""
568
  "time."
569
  msgstr ""
570
 
571
- #: ../admin/general_options.php:151 ../admin/social_sharing.php:2034
572
- #: ../admin/social_commenting.php:427 ../admin/social_login.php:1291
573
- #: ../admin/like_buttons.php:840
574
  msgid ""
575
  "@blahblahonlinecoaching proudly use #SuperSocializer to enable social "
576
  "features at their website, such as - Social Login, Social Share and Social "
@@ -680,60 +643,60 @@ msgstr "Майстер налаштування включення кнопок
680
  msgid "Recover Social Share Counts Lost After Moving to SSL/Https"
681
  msgstr ""
682
 
683
- #: ../admin/social_sharing.php:42 ../admin/social_sharing.php:1983
684
  msgid ""
685
  "Save Facebook App Id and Secret in the \"Miscellaneous\" section for "
686
  "Facebook share count to work"
687
  msgstr ""
688
 
689
- #: ../admin/social_sharing.php:49
690
  msgid "Theme Selection"
691
  msgstr "Вибір теми"
692
 
693
- #: ../admin/social_sharing.php:50 ../admin/like_buttons.php:41
694
  msgid "Standard Interface"
695
  msgstr "Стандартний інтерфейс"
696
 
697
- #: ../admin/social_sharing.php:51 ../admin/like_buttons.php:42
698
  msgid "Floating Interface"
699
  msgstr "Плаваючий інтерфейс"
700
 
701
- #: ../admin/social_sharing.php:52 ../admin/like_buttons.php:43
702
  msgid "Miscellaneous"
703
  msgstr "Різне"
704
 
705
- #: ../admin/social_sharing.php:56 ../admin/like_buttons.php:47
706
  #, fuzzy
707
  msgid "3rd Party Integration"
708
  msgstr "XProfile інтеграція"
709
 
710
- #: ../admin/social_sharing.php:60 ../admin/social_sharing.php:1945
711
- #: ../admin/social_sharing.php:1947 ../admin/social_login.php:46
712
- #: ../admin/social_login.php:1243 ../admin/like_buttons.php:51
713
  #: ../admin/like_buttons.php:797
714
  msgid "Shortcode & Widget"
715
  msgstr "Шорткод і віджет"
716
 
717
- #: ../admin/social_sharing.php:61
718
  msgid "Troubleshooter"
719
  msgstr "Усунення несправностей"
720
 
721
- #: ../admin/social_sharing.php:62 ../admin/social_sharing.php:1978
722
  #: ../admin/social_commenting.php:40 ../admin/social_commenting.php:397
723
- #: ../admin/social_login.php:47 ../admin/social_login.php:1257
724
  #: ../admin/like_buttons.php:52 ../admin/like_buttons.php:810
725
  msgid "FAQ"
726
  msgstr "Часті питання (FAQ)"
727
 
728
- #: ../admin/social_sharing.php:70
729
  msgid "Standard interface theme"
730
  msgstr "Стандартний інтерфейс"
731
 
732
- #: ../admin/social_sharing.php:75 ../admin/social_sharing.php:382
733
  msgid "Icon Preview"
734
  msgstr "Прев'ю іконок"
735
 
736
- #: ../admin/social_sharing.php:147 ../admin/social_sharing.php:455
737
  msgid ""
738
  "Do not forget to save the configuration after making changes by clicking the "
739
  "save button below"
@@ -741,57 +704,57 @@ msgstr ""
741
  "Не забудьте зберегти конфігурацію після внесення змін, натиснувши нижче "
742
  "кнопку зберегти"
743
 
744
- #: ../admin/social_sharing.php:154 ../admin/social_sharing.php:462
745
  msgid "Shape"
746
  msgstr "Форма"
747
 
748
- #: ../admin/social_sharing.php:158 ../admin/social_sharing.php:466
749
  #: ../inc/widget.php:951
750
  msgid "Round"
751
  msgstr "Кругла"
752
 
753
- #: ../admin/social_sharing.php:160 ../admin/social_sharing.php:468
754
  #: ../inc/widget.php:952
755
  msgid "Square"
756
  msgstr "Квадратна"
757
 
758
- #: ../admin/social_sharing.php:162 ../admin/social_sharing.php:470
759
  msgid "Rectangle"
760
  msgstr "Прямокутник"
761
 
762
- #: ../admin/social_sharing.php:169 ../admin/social_sharing.php:477
763
  msgid "Shape of the sharing icons"
764
  msgstr "Форма кнопок Поділитися"
765
 
766
- #: ../admin/social_sharing.php:178 ../admin/social_sharing.php:486
767
  msgid "Size (in pixels)"
768
  msgstr "Розмір (в пікселях)"
769
 
770
- #: ../admin/social_sharing.php:194 ../admin/social_sharing.php:502
771
  msgid "Size of the sharing icons"
772
  msgstr "Розмір кнопок Поділитися"
773
 
774
- #: ../admin/social_sharing.php:204 ../admin/social_sharing.php:512
775
  msgid "Width (in pixels)"
776
  msgstr "Ширина (в пікселях)"
777
 
778
- #: ../admin/social_sharing.php:220 ../admin/social_sharing.php:528
779
  msgid "Width of the sharing icons"
780
  msgstr "Ширина іконок поділитися"
781
 
782
- #: ../admin/social_sharing.php:228 ../admin/social_sharing.php:536
783
  msgid "Height (in pixels)"
784
  msgstr "Висота (в пікселях)"
785
 
786
- #: ../admin/social_sharing.php:244 ../admin/social_sharing.php:552
787
  msgid "Height of the sharing icons"
788
  msgstr "Висота кнопок Поділитися"
789
 
790
- #: ../admin/social_sharing.php:254 ../admin/social_sharing.php:562
791
  msgid "Border radius (in pixels)"
792
  msgstr "Радіус рамки (в пікселях)"
793
 
794
- #: ../admin/social_sharing.php:264 ../admin/social_sharing.php:572
795
  msgid ""
796
  "Specify a value for rounded corners. More the value, more rounded will the "
797
  "corners be. Leave empty for sharp corners."
@@ -799,23 +762,23 @@ msgstr ""
799
  "Вкажіть значення для закруглених кутів. Чим більше значення параметра, більш "
800
  "округлими будуть кути. Залиште порожнім для прямих кутів."
801
 
802
- #: ../admin/social_sharing.php:273 ../admin/social_sharing.php:581
803
  msgid "Logo Color"
804
  msgstr "Колір логотипу"
805
 
806
- #: ../admin/social_sharing.php:277 ../admin/social_sharing.php:298
807
- #: ../admin/social_sharing.php:318 ../admin/social_sharing.php:585
808
- #: ../admin/social_sharing.php:606 ../admin/social_sharing.php:625
809
  msgid "Default"
810
  msgstr "За замовчуванням"
811
 
812
- #: ../admin/social_sharing.php:279 ../admin/social_sharing.php:299
813
- #: ../admin/social_sharing.php:323 ../admin/social_sharing.php:587
814
- #: ../admin/social_sharing.php:607 ../admin/social_sharing.php:630
815
  msgid "On Hover"
816
  msgstr "При наведенні"
817
 
818
- #: ../admin/social_sharing.php:287 ../admin/social_sharing.php:595
819
  msgid ""
820
  "Specify the color or hex code (example #cc78e0) for the logo of icon. Leave "
821
  "empty for default. You can get the hex code of the required color from <a "
@@ -826,13 +789,13 @@ msgstr ""
826
  "шістнадцятковий код <a href=\"http://www.colorpicker.com/\" target=\"_blank"
827
  "\"> тут </a>"
828
 
829
- #: ../admin/social_sharing.php:295 ../admin/social_sharing.php:603
830
- #: ../admin/social_sharing.php:1318 ../admin/like_buttons.php:410
831
  #: ../inc/widget.php:460 ../inc/widget.php:772
832
  msgid "Background Color"
833
  msgstr "Колір фону"
834
 
835
- #: ../admin/social_sharing.php:306 ../admin/social_sharing.php:614
836
  msgid ""
837
  "Specify the color or hex code (example #cc78e0) for icon background. Save "
838
  "\"transparent\" for transparent background. Leave empty for default. You can "
@@ -844,129 +807,129 @@ msgstr ""
844
  "шістнадцятковий код <a href=\"http://www.colorpicker.com/\" target=\"_blank"
845
  "\"> тут </a>"
846
 
847
- #: ../admin/social_sharing.php:314 ../admin/social_sharing.php:622
848
  msgid "Border"
849
  msgstr "Рамка"
850
 
851
- #: ../admin/social_sharing.php:320 ../admin/social_sharing.php:325
852
- #: ../admin/social_sharing.php:627 ../admin/social_sharing.php:632
853
  msgid "Border Width"
854
  msgstr "Ширина рамки"
855
 
856
- #: ../admin/social_sharing.php:321 ../admin/social_sharing.php:326
857
- #: ../admin/social_sharing.php:628 ../admin/social_sharing.php:633
858
  msgid "Border Color"
859
  msgstr "Колір рамки"
860
 
861
- #: ../admin/social_sharing.php:333 ../admin/social_sharing.php:640
862
  msgid "Icon border"
863
  msgstr "Іконка рамки"
864
 
865
- #: ../admin/social_sharing.php:341 ../admin/social_sharing.php:648
866
  msgid "Counter Position"
867
  msgstr "Позиція лічильника"
868
 
869
- #: ../admin/social_sharing.php:341 ../admin/social_sharing.php:648
870
  msgid "(applies, if counter enabled)"
871
  msgstr "(застосовується, якщо лічильник включений)"
872
 
873
- #: ../admin/social_sharing.php:345 ../admin/social_sharing.php:652
874
- #: ../admin/social_sharing.php:935 ../admin/social_sharing.php:1340
875
  #: ../admin/like_buttons.php:183 ../admin/like_buttons.php:432
876
  #: ../inc/widget.php:446 ../inc/widget.php:758
877
  msgid "Left"
878
  msgstr "Зліва"
879
 
880
- #: ../admin/social_sharing.php:347 ../admin/social_sharing.php:654
881
  msgid "Top"
882
  msgstr "Зверху"
883
 
884
- #: ../admin/social_sharing.php:349 ../admin/social_sharing.php:656
885
- #: ../admin/social_sharing.php:937 ../admin/social_sharing.php:1341
886
  #: ../admin/like_buttons.php:185 ../admin/like_buttons.php:433
887
  #: ../inc/widget.php:447 ../inc/widget.php:759
888
  msgid "Right"
889
  msgstr "Справа"
890
 
891
- #: ../admin/social_sharing.php:351 ../admin/social_sharing.php:658
892
  msgid "Bottom"
893
  msgstr "Знизу"
894
 
895
- #: ../admin/social_sharing.php:353 ../admin/social_sharing.php:660
896
  msgid "Inner Left"
897
  msgstr "Лівий відступ"
898
 
899
- #: ../admin/social_sharing.php:355 ../admin/social_sharing.php:662
900
  msgid "Inner Top"
901
  msgstr "Верхній відступ"
902
 
903
- #: ../admin/social_sharing.php:357 ../admin/social_sharing.php:664
904
  msgid "Inner Right"
905
  msgstr "Внутрішній відступ справа"
906
 
907
- #: ../admin/social_sharing.php:359 ../admin/social_sharing.php:666
908
  msgid "Inner Bottom"
909
  msgstr "Нижній відступ"
910
 
911
- #: ../admin/social_sharing.php:367 ../admin/social_sharing.php:674
912
  msgid "Position of share counter"
913
  msgstr "Положення лічильника Поділитися"
914
 
915
- #: ../admin/social_sharing.php:377
916
  msgid "Floating interface theme"
917
  msgstr "Плаваючий інтерфейс Поділитися"
918
 
919
- #: ../admin/social_sharing.php:690
920
  msgid "Standard Sharing Interface Options"
921
  msgstr "Стандартні параметри інтерфейсу"
922
 
923
- #: ../admin/social_sharing.php:696
924
  msgid "Enable Standard sharing interface"
925
  msgstr "Включити стандартний інтерфейс Поділитися"
926
 
927
- #: ../admin/social_sharing.php:706
928
  msgid "Master control to enable standard sharing"
929
  msgstr "Майстер налаштування включення стандартних опцій Поділитися"
930
 
931
- #: ../admin/social_sharing.php:716 ../admin/social_sharing.php:1144
932
  #: ../admin/like_buttons.php:86 ../admin/like_buttons.php:336
933
  msgid "Target Url"
934
  msgstr "Цільова URL-адреса"
935
 
936
- #: ../admin/social_sharing.php:720 ../admin/social_sharing.php:1148
937
  #: ../admin/like_buttons.php:90 ../admin/like_buttons.php:340
938
  msgid "Url of the webpage where icons are located (default)"
939
  msgstr "URL-адресу веб-сторінки, де розташовані значки (за замовчуванням)"
940
 
941
- #: ../admin/social_sharing.php:722 ../admin/social_sharing.php:1150
942
  #: ../admin/like_buttons.php:92 ../admin/like_buttons.php:342
943
  msgid "Url of the homepage of your website"
944
  msgstr "URL-адреса домашньої сторінки вашого веб-сайту"
945
 
946
- #: ../admin/social_sharing.php:724 ../admin/social_sharing.php:1152
947
  #: ../admin/like_buttons.php:94 ../admin/like_buttons.php:344
948
  msgid "Custom url"
949
  msgstr "Користувальницьке посилання"
950
 
951
- #: ../admin/social_sharing.php:731 ../admin/social_sharing.php:1159
952
  msgid "Url to share"
953
  msgstr "Посилання щоб Поділитися"
954
 
955
- #: ../admin/social_sharing.php:739 ../admin/social_login.php:532
956
  #: ../admin/social_login.php:927 ../admin/like_buttons.php:109
957
  #: ../inc/widget.php:945
958
  msgid "Title"
959
  msgstr "Заголовок"
960
 
961
- #: ../admin/social_sharing.php:749
962
  msgid "The text to display above the sharing interface"
963
  msgstr "Текст, що відображається над інтерфейсом Поділитися"
964
 
965
- #: ../admin/social_sharing.php:774 ../admin/social_sharing.php:1168
966
  msgid "Instagram username"
967
  msgstr "Введіть ім'я користувача Instagram."
968
 
969
- #: ../admin/social_sharing.php:784 ../admin/social_sharing.php:1178
970
  msgid ""
971
  "Username of the Instagram account you want to redirect users to, on clicking "
972
  "the icon"
@@ -974,144 +937,144 @@ msgstr ""
974
  "Ім'я користувача Instagram, на обліковий запис якого ви хочете перенаправити "
975
  "користувачів, якщо натиснути на іконку"
976
 
977
- #: ../admin/social_sharing.php:794 ../admin/social_sharing.php:1188
978
  #, fuzzy
979
  msgid "HTML ID of container element of comment form"
980
  msgstr "HTML-ідентифікатор форми контейнера коментаря"
981
 
982
- #: ../admin/social_sharing.php:804 ../admin/social_sharing.php:1198
983
  msgid ""
984
  "HTML ID of the element you want to focus on the webpage, on click of Comment "
985
  "icon."
986
  msgstr ""
987
 
988
- #: ../admin/social_sharing.php:818 ../admin/social_sharing.php:1207
989
  msgid "Rearrange icons"
990
  msgstr "Змінити порядок іконок"
991
 
992
- #: ../admin/social_sharing.php:879 ../admin/social_sharing.php:1266
993
  msgid "Drag the icons to rearrange in desired order"
994
  msgstr "Якщо хочете змінити порядок, просто перетягніть зображення"
995
 
996
- #: ../admin/social_sharing.php:887 ../admin/social_sharing.php:1274
997
  msgid "Select Sharing Services"
998
  msgstr "Виберіть сервіси Поділитися"
999
 
1000
- #: ../admin/social_sharing.php:894 ../admin/social_sharing.php:1281
1001
  msgid "Select sharing services to show in social share bar"
1002
  msgstr "Виберіть сервіси для показу в панелі Поділитися"
1003
 
1004
- #: ../admin/social_sharing.php:912 ../admin/social_sharing.php:1299
1005
  msgid "Search social network"
1006
  msgstr ""
1007
 
1008
- #: ../admin/social_sharing.php:931 ../admin/social_sharing.php:1336
1009
  #: ../admin/like_buttons.php:179 ../admin/like_buttons.php:428
1010
  msgid "Horizontal alignment"
1011
  msgstr "Горизонтальне вирівнювання"
1012
 
1013
- #: ../admin/social_sharing.php:936 ../admin/like_buttons.php:184
1014
  msgid "Center"
1015
  msgstr "Центр"
1016
 
1017
- #: ../admin/social_sharing.php:945 ../admin/social_sharing.php:1349
1018
  msgid "Horizontal alignment of the sharing interface"
1019
  msgstr "Горизонтальне вирівнювання інтерфейсу Поділитися"
1020
 
1021
- #: ../admin/social_sharing.php:953 ../admin/like_buttons.php:201
1022
  msgid "Position with respect to content"
1023
  msgstr "Позиція щодо контенту"
1024
 
1025
- #: ../admin/social_sharing.php:957 ../admin/like_buttons.php:205
1026
  msgid "Top of the content"
1027
  msgstr "Над вмістом"
1028
 
1029
- #: ../admin/social_sharing.php:959 ../admin/like_buttons.php:207
1030
  msgid "Bottom of the content"
1031
  msgstr "Під вмістом"
1032
 
1033
- #: ../admin/social_sharing.php:966
1034
  msgid "Specify position of the sharing interface with respect to the content"
1035
  msgstr "Вкажіть положення інтерфейсу Поділитися щодо вмісту."
1036
 
1037
- #: ../admin/social_sharing.php:974 ../admin/social_sharing.php:1415
1038
  msgid "Placement"
1039
  msgstr "Розміщення"
1040
 
1041
- #: ../admin/social_sharing.php:978 ../admin/social_sharing.php:1419
1042
  #: ../admin/social_login.php:866 ../admin/social_login.php:896
1043
  #: ../admin/like_buttons.php:226 ../admin/like_buttons.php:511
1044
  msgid "Homepage"
1045
  msgstr "Головна"
1046
 
1047
- #: ../admin/social_sharing.php:980 ../admin/social_sharing.php:1421
1048
  #: ../admin/like_buttons.php:228 ../admin/like_buttons.php:513
1049
  msgid "Posts"
1050
  msgstr "Записи"
1051
 
1052
- #: ../admin/social_sharing.php:982 ../admin/social_sharing.php:1423
1053
  #: ../admin/like_buttons.php:230 ../admin/like_buttons.php:515
1054
  msgid "Pages"
1055
  msgstr "Сторінки"
1056
 
1057
- #: ../admin/social_sharing.php:984 ../admin/social_sharing.php:1425
1058
  #: ../admin/like_buttons.php:232 ../admin/like_buttons.php:517
1059
  msgid "Excerpts and Posts page"
1060
  msgstr "Сторінки анонсів і постів"
1061
 
1062
- #: ../admin/social_sharing.php:986 ../admin/social_sharing.php:1427
1063
  #: ../admin/like_buttons.php:234 ../admin/like_buttons.php:519
1064
  msgid "Category Archives"
1065
  msgstr "Архіви категорій"
1066
 
1067
- #: ../admin/social_sharing.php:988 ../admin/social_sharing.php:1429
1068
  #: ../admin/like_buttons.php:236 ../admin/like_buttons.php:521
1069
  msgid "Archive Pages (Category, Tag, Author or Date based pages)"
1070
  msgstr "Архів сторінки (Категорія, тегів, автор або сторінки на основі дат)"
1071
 
1072
- #: ../admin/social_sharing.php:1004 ../admin/like_buttons.php:252
1073
  msgid "BuddyPress activity"
1074
  msgstr "BuddyPress активність"
1075
 
1076
- #: ../admin/social_sharing.php:1006 ../admin/like_buttons.php:255
1077
  msgid "BuddyPress group (only at top of content)"
1078
  msgstr "BuddyPress групи (тільки у верхній частині контенту)"
1079
 
1080
- #: ../admin/social_sharing.php:1012 ../admin/social_sharing.php:1451
1081
  #: ../admin/like_buttons.php:262 ../admin/like_buttons.php:542
1082
  msgid "BBPress forum"
1083
  msgstr "BBPress форум"
1084
 
1085
- #: ../admin/social_sharing.php:1015 ../admin/social_sharing.php:1454
1086
  #: ../admin/like_buttons.php:265 ../admin/like_buttons.php:545
1087
  msgid "BBPress topic"
1088
  msgstr "BBPress тема"
1089
 
1090
- #: ../admin/social_sharing.php:1018 ../admin/like_buttons.php:268
1091
  msgid "BBPress reply"
1092
  msgstr "BBPress відповідь"
1093
 
1094
- #: ../admin/social_sharing.php:1025 ../admin/like_buttons.php:275
1095
  msgid "After individual product at WooCommerce Shop page"
1096
  msgstr "Після індивідуального продукту на сторінці магазину"
1097
 
1098
- #: ../admin/social_sharing.php:1028 ../admin/like_buttons.php:278
1099
  msgid "WooCommerce Product Page"
1100
  msgstr "Продукт Woocommerce"
1101
 
1102
- #: ../admin/social_sharing.php:1031 ../admin/like_buttons.php:281
1103
  msgid "WooCommerce Thankyou Page"
1104
  msgstr "WooCommerce сторінка подяки"
1105
 
1106
- #: ../admin/social_sharing.php:1042
1107
  msgid "Specify the pages where you want to enable Sharing interface"
1108
  msgstr "Вкажіть сторінки, де ви хочете включити інтерфейс Поділитися"
1109
 
1110
- #: ../admin/social_sharing.php:1050 ../admin/social_sharing.php:1472
1111
  msgid "Show share counts"
1112
  msgstr "Показати лічильники кнопки Поділитися"
1113
 
1114
- #: ../admin/social_sharing.php:1055 ../admin/social_sharing.php:1477
1115
  #, fuzzy
1116
  msgid ""
1117
  "Share counts are supported for Facebook, Twitter, Linkedin, Buffer, Reddit, "
@@ -1120,7 +1083,7 @@ msgstr ""
1120
  "Підтримуються Facebook, Linkedin, Google Plus, Delicious, Buffer, Reddit, "
1121
  "Pinterest, Stumbleupon, Odnoklassniki і Vkontakte"
1122
 
1123
- #: ../admin/social_sharing.php:1056 ../admin/social_sharing.php:1478
1124
  #, php-format
1125
  msgid ""
1126
  "To show Twitter share count, you have to click \"Give me my Twitter counts "
@@ -1129,25 +1092,25 @@ msgid ""
1129
  "their website."
1130
  msgstr ""
1131
 
1132
- #: ../admin/social_sharing.php:1063 ../admin/social_sharing.php:1485
1133
  msgid "If enabled, share counts are displayed above sharing icons."
1134
  msgstr "Якщо включено, лічильники відображаються вище кнопок Поділитися"
1135
 
1136
- #: ../admin/social_sharing.php:1072 ../admin/social_sharing.php:1494
1137
  msgid "Show total shares"
1138
  msgstr "Включити загальну кількість Поділитися"
1139
 
1140
- #: ../admin/social_sharing.php:1082 ../admin/social_sharing.php:1504
1141
  msgid "If enabled, total shares will be displayed with sharing icons"
1142
  msgstr ""
1143
  "Якщо включено, то загальна кількість Поділитися буде відображатися з "
1144
  "кнопками Поділитися"
1145
 
1146
- #: ../admin/social_sharing.php:1091 ../admin/social_sharing.php:1513
1147
  msgid "Enable 'More' icon"
1148
  msgstr "Включити значок «Більше»"
1149
 
1150
- #: ../admin/social_sharing.php:1101 ../admin/social_sharing.php:1523
1151
  msgid ""
1152
  "If enabled, \"More\" icon will be displayed after selected sharing icons "
1153
  "which shows additional sharing networks in popup"
@@ -1155,19 +1118,19 @@ msgstr ""
1155
  "Якщо включено, «Більше» буде відображатися після кнопок Поділитися, яка "
1156
  "показує додаткові сервіси в спливаючому вікні"
1157
 
1158
- #: ../admin/social_sharing.php:1118
1159
  msgid "Floating Sharing Interface Options"
1160
  msgstr "Параметри плаваючих кнопок Поділитися"
1161
 
1162
- #: ../admin/social_sharing.php:1124
1163
  msgid "Enable Floating sharing interface"
1164
  msgstr "Включити інтерфейс плаваючих кнопок Поділитися"
1165
 
1166
- #: ../admin/social_sharing.php:1134
1167
  msgid "Master control to enable floating sharing widget"
1168
  msgstr "Майстер управління включення плаваючого віджета Поділитися"
1169
 
1170
- #: ../admin/social_sharing.php:1328
1171
  msgid ""
1172
  "Specify the color or hex code (example #cc78e0) for the background of "
1173
  "vertical sharing bar. Leave empty for transparent. You can get the hex code "
@@ -1179,11 +1142,11 @@ msgstr ""
1179
  "можете отримати шістнадцятковий код <a href=\"http://www.colorpicker.com/\" "
1180
  "target=\"_blank\"> тут </a>"
1181
 
1182
- #: ../admin/social_sharing.php:1358 ../admin/like_buttons.php:450
1183
  msgid "Left offset"
1184
  msgstr "Зміщення вліво"
1185
 
1186
- #: ../admin/social_sharing.php:1368
1187
  msgid ""
1188
  "Specify a number. Increase in number will shift sharing interface towards "
1189
  "right and decrease will shift it towards left. Number can be negative too."
@@ -1192,11 +1155,11 @@ msgstr ""
1192
  "правої сторони і зменшувати по відношенню до лівої сторони. Число може бути "
1193
  "негативним."
1194
 
1195
- #: ../admin/social_sharing.php:1378 ../admin/like_buttons.php:470
1196
  msgid "Right offset"
1197
  msgstr "Зміщення вправо"
1198
 
1199
- #: ../admin/social_sharing.php:1388
1200
  msgid ""
1201
  "Specify a number. Increase in number will shift sharing interface towards "
1202
  "left and decrease will shift it towards right. Number can be negative too."
@@ -1205,11 +1168,11 @@ msgstr ""
1205
  "лівої сторони і зменшувати по відношенню до правої сторони. Число може бути "
1206
  "негативним."
1207
 
1208
- #: ../admin/social_sharing.php:1397 ../admin/like_buttons.php:489
1209
  msgid "Top offset"
1210
  msgstr "Верхній відступ"
1211
 
1212
- #: ../admin/social_sharing.php:1407
1213
  msgid ""
1214
  "Specify a number. Increase in number will shift sharing interface towards "
1215
  "bottom and decrease will shift it towards top."
@@ -1217,37 +1180,37 @@ msgstr ""
1217
  "Вкажіть число. Збільшення числа буде зсувати інтерфейс Поділитися стосовно "
1218
  "низу і зменшувати по відношенню до верху."
1219
 
1220
- #: ../admin/social_sharing.php:1443 ../admin/like_buttons.php:535
1221
  msgid "BuddyPress group"
1222
  msgstr "BuddyPress Група"
1223
 
1224
- #: ../admin/social_sharing.php:1464
1225
  msgid "Specify the pages where you want to enable vertical Sharing interface"
1226
  msgstr ""
1227
  "Вкажіть сторінки, де ви хочете включити вертикальний інтерфейс Поділитися"
1228
 
1229
- #: ../admin/social_sharing.php:1531
1230
  #, fuzzy
1231
  msgid "Hide floating slider"
1232
  msgstr "Закрити для зареєстрованих користувачів"
1233
 
1234
- #: ../admin/social_sharing.php:1541
1235
  #, fuzzy
1236
  msgid "Hides the slider arrow present below the floating share bar"
1237
  msgstr "Як приховати стрілку після плаваючих кнопок Поділитися?"
1238
 
1239
- #: ../admin/social_sharing.php:1549
1240
  msgid "Vertical floating bar responsiveness"
1241
  msgstr "Адаптивність вертикальних плаваючих кнопок"
1242
 
1243
- #: ../admin/social_sharing.php:1552
1244
  #, php-format
1245
  msgid "Display vertical interface only when screen is wider than %s pixels"
1246
  msgstr ""
1247
  "Показувати вертикальний інтерфейс тільки якщо ширина екрану більше ніж% s "
1248
  "пікселів."
1249
 
1250
- #: ../admin/social_sharing.php:1559
1251
  msgid ""
1252
  "Display vertical interface only when screen is wider than the width "
1253
  "specified."
@@ -1255,11 +1218,11 @@ msgstr ""
1255
  "Показувати вертикальний інтерфейс тільки якщо ширина екрану більше ніж "
1256
  "ширина за замовчуванням."
1257
 
1258
- #: ../admin/social_sharing.php:1567
1259
  msgid "Horizontal floating bar responsiveness"
1260
  msgstr "Адаптивність вертикальних плаваючих кнопок"
1261
 
1262
- #: ../admin/social_sharing.php:1570
1263
  #, php-format
1264
  msgid ""
1265
  "Stick vertical floating interface horizontally at bottom only when screen is "
@@ -1268,7 +1231,7 @@ msgstr ""
1268
  "Закріпити вертикальний плаваючий інтерфейс внизу тільки тоді коли екран "
1269
  "вужче ніж% s пікселів"
1270
 
1271
- #: ../admin/social_sharing.php:1577
1272
  msgid ""
1273
  "Stick vertical floating interface horizontally at bottom only when screen is "
1274
  "narrower than the width specified"
@@ -1276,43 +1239,43 @@ msgstr ""
1276
  "Закріпити вертикальний плаваючий інтерфейс внизу тільки тоді коли екран "
1277
  "вужче чим зазначена ширина"
1278
 
1279
- #: ../admin/social_sharing.php:1587
1280
  msgid "Horizontal floating bar position"
1281
  msgstr "Розташування горизонтальної плаваючої панелі"
1282
 
1283
- #: ../admin/social_sharing.php:1590
1284
  #, php-format
1285
  msgid "%s pixels from %s"
1286
  msgstr "%s пікселів від %s"
1287
 
1288
- #: ../admin/social_sharing.php:1591
1289
  msgid "Auto-adjust according to screen width (responsive)"
1290
  msgstr ""
1291
 
1292
- #: ../admin/social_sharing.php:1598
1293
  msgid "Alignment of horizontal floating interface. Number can be negative too."
1294
  msgstr ""
1295
  "Вирівнювання горизонтального плаваючого інтерфейсу. Число може бути "
1296
  "негативним."
1297
 
1298
- #: ../admin/social_sharing.php:1618
1299
  #, fuzzy
1300
  msgid "Facebook Share Count"
1301
  msgstr "Усунення несправностей Поділитися від Facebook"
1302
 
1303
- #: ../admin/social_sharing.php:1622
1304
  msgid "Note"
1305
  msgstr ""
1306
 
1307
- #: ../admin/social_sharing.php:1622
1308
  msgid "Required only to track Facebook share count"
1309
  msgstr ""
1310
 
1311
- #: ../admin/social_sharing.php:1628 ../admin/social_login.php:161
1312
  msgid "Facebook App ID"
1313
  msgstr "Facebook App ID"
1314
 
1315
- #: ../admin/social_sharing.php:1638
1316
  #, fuzzy, php-format
1317
  msgid ""
1318
  "Required for Facebook share count to work. Please follow the documentation "
@@ -1321,12 +1284,12 @@ msgstr ""
1321
  "Необхідно для входу через Facebook. Будь ласка, подивіться документацію <a "
1322
  "href=\"%s\" target=\"_blank\"> тут </a> для отримання ID додатку Facebook."
1323
 
1324
- #: ../admin/social_sharing.php:1646 ../admin/social_login.php:183
1325
  #, fuzzy
1326
  msgid "Facebook App Secret"
1327
  msgstr "Facebook App ID"
1328
 
1329
- #: ../admin/social_sharing.php:1656
1330
  #, fuzzy, php-format
1331
  msgid ""
1332
  "Required for Facebook share count to work. Please follow the documentation "
@@ -1335,52 +1298,52 @@ msgstr ""
1335
  "Необхідно для входу через Facebook. Будь ласка, подивіться документацію <a "
1336
  "href=\"%s\" target=\"_blank\"> тут </a> для отримання ID додатку Facebook."
1337
 
1338
- #: ../admin/social_sharing.php:1665 ../admin/like_buttons.php:592
1339
  msgid "Url shortener"
1340
  msgstr "Скорочення URL"
1341
 
1342
- #: ../admin/social_sharing.php:1671
1343
  msgid "Use shortlinks already installed"
1344
  msgstr "Використання коротких посилань вже встановлено"
1345
 
1346
- #: ../admin/social_sharing.php:1681
1347
  msgid "Uses default short url permalinks without using any additional plugin"
1348
  msgstr ""
1349
  "Використовує за замовчуванням постійні короткі url без використання будь-"
1350
  "яких додаткових плагінів"
1351
 
1352
- #: ../admin/social_sharing.php:1689
1353
  msgid "Enable bit.ly url shortener for sharing"
1354
  msgstr "Активувати bit.ly для скорочення посилань для Поділитися"
1355
 
1356
- #: ../admin/social_sharing.php:1699 ../admin/like_buttons.php:626
1357
  msgid "Master control to enable bit.ly url shortening for sharing"
1358
  msgstr "Майстер управління скорочення посилань через bit.ly для Поділитися"
1359
 
1360
- #: ../admin/social_sharing.php:1707
1361
  msgid "bit.ly Login"
1362
  msgstr "bit.ly Логін"
1363
 
1364
- #: ../admin/social_sharing.php:1717 ../admin/social_sharing.php:1736
1365
  #, fuzzy, php-format
1366
  msgid "More details on how to get it <a href=\"%s\" target=\"_blank\">here</a>"
1367
  msgstr ""
1368
  "Необхідно для входу через Twitter. Будь ласка, подивіться документацію <a "
1369
  "href=\"%s\" target=\"_blank\"> тут </a> для отримання ключа додатку Twitter."
1370
 
1371
- #: ../admin/social_sharing.php:1726 ../admin/like_buttons.php:653
1372
  msgid "bit.ly API Key"
1373
  msgstr "bit.ly ключ додатка"
1374
 
1375
- #: ../admin/social_sharing.php:1745 ../admin/like_buttons.php:672
1376
  msgid "Clear Bitly Cache"
1377
  msgstr "Очистити Bitly кеш"
1378
 
1379
- #: ../admin/social_sharing.php:1749 ../admin/like_buttons.php:676
1380
  msgid "ShortUrl cache cleared successfully."
1381
  msgstr "ShortUrl кеш успішно очищений."
1382
 
1383
- #: ../admin/social_sharing.php:1756 ../admin/like_buttons.php:683
1384
  msgid ""
1385
  "Use this to delete short urls saved in database. Handy, if urls of your "
1386
  "website have been changed but short urls are still being generated for old "
@@ -1390,31 +1353,31 @@ msgstr ""
1390
  "Зручно, якщо URL-адреси вашого веб-сайту було змінено, але короткі URL-"
1391
  "адреси, як і раніше створюються для старих URL-адрес."
1392
 
1393
- #: ../admin/social_sharing.php:1765
1394
  msgid "Share Count Cache"
1395
  msgstr "Кеш лічильників Поділитися"
1396
 
1397
- #: ../admin/social_sharing.php:1771
1398
  msgid "Refresh Share Count cache every"
1399
  msgstr "Оновити кеш лічильників Поділитися"
1400
 
1401
- #: ../admin/social_sharing.php:1776
1402
  msgid "Second(s)"
1403
  msgstr "Секунд"
1404
 
1405
- #: ../admin/social_sharing.php:1777
1406
  msgid "Minute(s)"
1407
  msgstr "Хвилин"
1408
 
1409
- #: ../admin/social_sharing.php:1778
1410
  msgid "Hour(s)"
1411
  msgstr "Годин"
1412
 
1413
- #: ../admin/social_sharing.php:1779
1414
  msgid "Day(s)"
1415
  msgstr "Днів"
1416
 
1417
- #: ../admin/social_sharing.php:1787
1418
  #, fuzzy, php-format
1419
  msgid ""
1420
  "Frequent cache refreshing results in slower loading of pages with share "
@@ -1424,25 +1387,25 @@ msgstr ""
1424
  "Часте оновлення кешу призводить до більш повільного завантаження сторінок з "
1425
  "включеними лічильниками Поділитися"
1426
 
1427
- #: ../admin/social_sharing.php:1795
1428
  msgid "Clear Share Counts Cache"
1429
  msgstr "Очистити кеш лічильників Поділитися"
1430
 
1431
- #: ../admin/social_sharing.php:1799
1432
  msgid "Share Counts cache cleared successfully."
1433
  msgstr "Кеш лічільників Поділитися успішно очищений."
1434
 
1435
- #: ../admin/social_sharing.php:1806
1436
  msgid "Use this to clear cached share counts"
1437
  msgstr "Використовуйте це для очищення кешованих лічильників Поділитися"
1438
 
1439
- #: ../admin/social_sharing.php:1815 ../admin/social_sharing.php:1821
1440
  #: ../admin/social_commenting.php:315 ../admin/like_buttons.php:692
1441
  #: ../admin/like_buttons.php:698
1442
  msgid "Language"
1443
  msgstr "Мова"
1444
 
1445
- #: ../admin/social_sharing.php:1831
1446
  #, php-format
1447
  msgid ""
1448
  "Enter the code of the language you want to use for like buttons. You can "
@@ -1454,15 +1417,15 @@ msgstr ""
1454
  "\"_blank\"> цим посиланням </a>. Залиште поле порожнім щоб залишити мову за "
1455
  "замовчуванням (Українська)."
1456
 
1457
- #: ../admin/social_sharing.php:1840
1458
  msgid "Username in sharing"
1459
  msgstr "Ім'я користувача щоб поділитися"
1460
 
1461
- #: ../admin/social_sharing.php:1846
1462
  msgid "Twitter username (without @)"
1463
  msgstr "Twitter ім'я користувача (без @)"
1464
 
1465
- #: ../admin/social_sharing.php:1856 ../admin/social_sharing.php:1875
1466
  msgid ""
1467
  "Provided username will be appended after the content being shared as \"via "
1468
  "@USERNAME\". Leave empty if you do not want any username in the content "
@@ -1471,35 +1434,35 @@ msgstr ""
1471
  "Додає ім'я користувача після того як контент буде розшарено за допомогою "
1472
  "\"via @USERNAME\". Залиште поле порожнім якщо не хочете вказувати ім'я."
1473
 
1474
- #: ../admin/social_sharing.php:1865
1475
  msgid "Buffer username (without @)"
1476
  msgstr "Ім'я користувача в Twitter (без @)"
1477
 
1478
- #: ../admin/social_sharing.php:1884
1479
  msgid "AMP"
1480
  msgstr "AMP"
1481
 
1482
- #: ../admin/social_sharing.php:1890
1483
  msgid "Enable sharing on AMP pages"
1484
  msgstr "Дозволити загальний доступ на сторінках AMP"
1485
 
1486
- #: ../admin/social_sharing.php:1900
1487
  msgid "Enable this option to render sharing icons on AMP pages"
1488
  msgstr "Увімкніть цей параметр для відображення іконок на сторінках AMP"
1489
 
1490
- #: ../admin/social_sharing.php:1919 ../admin/like_buttons.php:771
1491
  msgid "myCRED"
1492
  msgstr ""
1493
 
1494
- #: ../admin/social_sharing.php:1925 ../admin/like_buttons.php:777
1495
  msgid "Append myCRED referral ID to the urls being shared"
1496
  msgstr ""
1497
 
1498
- #: ../admin/social_sharing.php:1958
1499
  msgid "Facebook Sharing Troubleshooter"
1500
  msgstr "Усунення несправностей Поділитися від Facebook"
1501
 
1502
- #: ../admin/social_sharing.php:1963
1503
  msgid ""
1504
  "If Facebook sharing is not working fine, click at the following link and "
1505
  "enter the problematic url (where Facebook sharing is not working properly) "
@@ -1511,14 +1474,14 @@ msgstr ""
1511
  "працює належним чином) на вашому сайті в текстовому полі. Натисніть "
1512
  "\"Отримання інформації про нову поломки \"."
1513
 
1514
- #: ../admin/social_sharing.php:1980 ../admin/social_commenting.php:399
1515
- #: ../admin/social_login.php:1259
1516
  msgid ""
1517
  "<strong>Note:</strong> Plugin will not work on local server. You should have "
1518
  "an online website for the plugin to function properly."
1519
  msgstr ""
1520
 
1521
- #: ../admin/social_sharing.php:1981
1522
  msgid ""
1523
  "Why is sharer not showing the correct image, title and other meta tags "
1524
  "content?"
@@ -1526,16 +1489,16 @@ msgstr ""
1526
  "Чому расшаріваніє не вказує корректіно зображення, заголовок і інші мета "
1527
  "дані контенту?"
1528
 
1529
- #: ../admin/social_sharing.php:1982
1530
  #, fuzzy
1531
  msgid "Why is Facebook share count not working?"
1532
  msgstr "Чому лічильники Фейсбуку поділитися не оновлюються?"
1533
 
1534
- #: ../admin/social_sharing.php:1985
1535
  msgid "Why is Instagram icon redirecting to Instagram website?"
1536
  msgstr ""
1537
 
1538
- #: ../admin/social_sharing.php:1986
1539
  msgid ""
1540
  "Instagram icon is there to send website visitors to the Instagram page of "
1541
  "your choice. You can save the desired Instagram handle in \"Instagram "
@@ -1543,47 +1506,47 @@ msgid ""
1543
  "sections."
1544
  msgstr ""
1545
 
1546
- #: ../admin/social_sharing.php:1989
1547
  #, fuzzy
1548
  msgid "How to customize the url being shared?"
1549
  msgstr "Як налаштувати зовнішній вигляд окремих лічильників Поділитися?"
1550
 
1551
- #: ../admin/social_sharing.php:1990
1552
  msgid ""
1553
  "Why are Twitter shares not appearing even after registering at Twitcount.com?"
1554
  msgstr ""
1555
 
1556
- #: ../admin/social_sharing.php:1991
1557
  msgid ""
1558
  "It takes some time for their service to track the shares made on Twitter "
1559
  "from your website. If you still feel it's taking too long you can contact "
1560
  "their support directly from their website."
1561
  msgstr ""
1562
 
1563
- #: ../admin/social_sharing.php:1993 ../admin/like_buttons.php:814
1564
  msgid "How to Place Title and Social Share Icons in the Same Row?"
1565
  msgstr ""
1566
 
1567
- #: ../admin/social_sharing.php:1994
1568
  msgid ""
1569
  "How to restore Social Share counts lost after moving my website to SSL/Https?"
1570
  msgstr ""
1571
 
1572
- #: ../admin/social_sharing.php:1995 ../admin/social_commenting.php:402
1573
- #: ../admin/social_login.php:1266
1574
  msgid "Why is my browser blocking some features of the plugin?"
1575
  msgstr "Чому мій браузер блокує деякі функції плагіна?"
1576
 
1577
- #: ../admin/social_sharing.php:1996
1578
  #, fuzzy
1579
  msgid "Why the color of share icons is not being updated?"
1580
  msgstr "Чому лічильники Фейсбуку поділитися не оновлюються?"
1581
 
1582
- #: ../admin/social_sharing.php:1997
1583
  msgid "Why Facebook share counts are not appearing?"
1584
  msgstr "Чому лічильники Фейсбуку поділитися не оновлюються?"
1585
 
1586
- #: ../admin/social_sharing.php:1998
1587
  msgid ""
1588
  "How can I show share counts of my website rather than of individual pages/"
1589
  "posts?"
@@ -1591,49 +1554,49 @@ msgstr ""
1591
  "Як мені відобразити загальну кількість Поділитися засноване на сторінках / "
1592
  "постах?"
1593
 
1594
- #: ../admin/social_sharing.php:1999
1595
  msgid "How can I disable sharing on particular page/post?"
1596
  msgstr ""
1597
  "Як можна відключити кнопки Поділитися на конкретній сторінці або в пості?"
1598
 
1599
- #: ../admin/social_sharing.php:2000
1600
  msgid "How can I specify minimum sharing count for sharing networks?"
1601
  msgstr "Як мені вказати мінімальну кількість для Поділитися"
1602
 
1603
- #: ../admin/social_sharing.php:2001
1604
  msgid "How to share specific page?"
1605
  msgstr "Як поділитися певною сторінкою?"
1606
 
1607
- #: ../admin/social_sharing.php:2002
1608
  msgid "How to integrate Google Analytics with sharing?"
1609
  msgstr "Як інтегрувати Google Analytics з Поділитися?"
1610
 
1611
- #: ../admin/social_sharing.php:2003
1612
  msgid "How to customize the look of total share counts?"
1613
  msgstr "Як налаштувати зовнішній вигляд лічильників Поділитися?"
1614
 
1615
- #: ../admin/social_sharing.php:2004
1616
  msgid "How to customize the look of individual share counts?"
1617
  msgstr "Як налаштувати зовнішній вигляд окремих лічильників Поділитися?"
1618
 
1619
- #: ../admin/social_sharing.php:2005
1620
  msgid "How to show Whatsapp icon only on mobile devices?"
1621
  msgstr "Як показати іконку Whatsapp тільки на мобільних пристроях?"
1622
 
1623
- #: ../admin/social_sharing.php:2006
1624
  msgid "How to hide arrow after floating sharing bar?"
1625
  msgstr "Як приховати стрілку після плаваючих кнопок Поділитися?"
1626
 
1627
- #: ../admin/social_sharing.php:2007
1628
  #, fuzzy
1629
  msgid "Why is share count not getting updated?"
1630
  msgstr "Чому лічильники Фейсбуку поділитися не оновлюються?"
1631
 
1632
- #: ../admin/social_sharing.php:2008 ../admin/like_buttons.php:812
1633
  msgid "Why is there so much space between like buttons?"
1634
  msgstr "Чому існує так багато місця між кнопками?"
1635
 
1636
- #: ../admin/social_sharing.php:2009 ../admin/like_buttons.php:813
1637
  msgid "Why are floating sharing/like buttons not appearing at homepage?"
1638
  msgstr ""
1639
  "Чому плаваюча панель Поділитися / Подобається не відображаються на головній "
@@ -1891,7 +1854,7 @@ msgstr "Розширена конфігурація"
1891
  msgid "GDPR"
1892
  msgstr ""
1893
 
1894
- #: ../admin/social_login.php:44 ../admin/social_login.php:1194
1895
  msgid "XProfile Integration"
1896
  msgstr "XProfile інтеграція"
1897
 
@@ -2634,51 +2597,68 @@ msgid "Text for the GDPR opt-in"
2634
  msgstr "Активувати коментування через Disqus"
2635
 
2636
  #: ../admin/social_login.php:1135
2637
- msgid "Text to link to Privacy Policy page"
2638
  msgstr ""
2639
 
2640
  #: ../admin/social_login.php:1145
2641
- msgid "Word(s) in the opt-in text to be linked to privacy policy page"
2642
  msgstr ""
2643
 
2644
  #: ../admin/social_login.php:1153
2645
- msgid "Privacy Policy Url"
2646
  msgstr ""
2647
 
2648
  #: ../admin/social_login.php:1163
2649
  #, fuzzy
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2650
  msgid "Url of the privacy policy page of your website"
2651
  msgstr "URL-адреса домашньої сторінки вашого веб-сайту"
2652
 
2653
- #: ../admin/social_login.php:1214 ../inc/widget.php:260 ../inc/widget.php:438
2654
  #: ../inc/widget.php:602 ../inc/widget.php:750
2655
  msgid "Select"
2656
  msgstr "Вибір"
2657
 
2658
- #: ../admin/social_login.php:1245
2659
  msgid "Social Login Shortcode & Widget"
2660
  msgstr "Шорткод і віджет для входу через соцмережі"
2661
 
2662
- #: ../admin/social_login.php:1246
2663
  msgid "Social Linking Shortcode"
2664
  msgstr "Шорткод соціальних посилань"
2665
 
2666
- #: ../admin/social_login.php:1261
2667
  #, fuzzy
2668
  msgid "Why is social login not working?"
2669
  msgstr "Чому Facebook Логін не працює?"
2670
 
2671
- #: ../admin/social_login.php:1262
2672
  msgid ""
2673
  "Make sure that App ID and Secret (Client ID and Secret) keys you have saved, "
2674
  "belong to the same app"
2675
  msgstr ""
2676
 
2677
- #: ../admin/social_login.php:1264
2678
  msgid "Social Login not working with Varnish enabled"
2679
  msgstr ""
2680
 
2681
- #: ../admin/social_login.php:1265
2682
  msgid ""
2683
  "Why the user is not appearing logged in even after Social Login until the "
2684
  "webpage is refreshed manually?"
@@ -3218,6 +3198,39 @@ msgstr ""
3218
  msgid "RSS Feed URL:"
3219
  msgstr ""
3220
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3221
  #~ msgid "Label for G+ Commenting tab"
3222
  #~ msgstr "Поле для коментування через Google+"
3223
 
2
  msgstr ""
3
  "Project-Id-Version: Super Socializer\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2019-08-13 08:26+0530\n"
6
+ "PO-Revision-Date: 2019-08-13 08:26+0530\n"
7
  "Last-Translator: Heateor <hello@heateor.com>\n"
8
  "Language-Team: Ukrainian\n"
9
  "Language: uk\n"
17
  "%10<=4 &&(n%100<10||n%100 >= 20)? 1 : 2);\n"
18
  "X-Poedit-SearchPath-0: ..\n"
19
 
20
+ #: ../super_socializer.php:425
21
  msgid "Problem fetching access token: "
22
  msgstr ""
23
 
24
+ #: ../super_socializer.php:429 ../super_socializer.php:443
25
  msgid "Facebook SDK returned an error: "
26
  msgstr ""
27
 
28
+ #: ../super_socializer.php:439
29
  msgid "Graph returned an error: "
30
  msgstr ""
31
 
32
+ #: ../super_socializer.php:605
33
  msgid ""
34
  "cURL is not enabled at your website server. Please contact your website "
35
  "server administrator to enable it."
37
  "Curl не включений у вашому веб-сайті. Вам, можливо, буде потрібно звернутися "
38
  "до адміністратора вашого сайту, щоб включити це."
39
 
40
+ #: ../super_socializer.php:632
41
  #, fuzzy, php-format
42
  msgid ""
43
  "Enter exactly the following url in <strong>Website</strong> option in your "
46
  "Введіть діюче посилання для <strong> сайту </ strong> та <strong> зворотне "
47
  "посилання </ strong> у вашому додатку Твіттера (дивіться крок 3% s)"
48
 
49
+ #: ../super_socializer.php:635
50
  #, fuzzy, php-format
51
  msgid ""
52
  "Enter exactly the following url in <strong>Callback URLs</strong> option in "
55
  "Введіть діюче посилання для <strong> сайту </ strong> та <strong> зворотне "
56
  "посилання </ strong> у вашому додатку Твіттера (дивіться крок 3% s)"
57
 
58
+ #: ../super_socializer.php:638
59
  msgid ""
60
  "Make sure cURL is enabled at your website server. You may need to contact "
61
  "the server administrator of your website to verify this"
64
  "буде потрібно звернутися до адміністратора сервера вашого сайту, щоб "
65
  "переконатися в цьому."
66
 
67
+ #: ../super_socializer.php:901 ../helper.php:976
 
 
 
 
 
 
 
 
68
  msgid "Please verify your email address to login."
69
  msgstr "Будь ласка, підтвердіть свою адресу електронної пошти."
70
 
71
+ #: ../super_socializer.php:901
72
  msgid "Your email has been verified. Now you can login to your account"
73
  msgstr ""
74
  "Ваша електронна адреса була перевірена. Тепер ви можете увійти до свого "
75
  "облікового запису"
76
 
77
+ #: ../super_socializer.php:905
78
  msgid "Notification"
79
  msgstr "Повідомлення"
80
 
81
+ #: ../super_socializer.php:923 ../admin/social_login.php:805
82
  msgid "Email required"
83
  msgstr "Електронна адреса (обо'язково)"
84
 
85
+ #: ../super_socializer.php:926
86
  msgid "Please check your email inbox to complete the registration."
87
  msgstr "Будь ласка, перевірте вашу поштову скриньку для завершення реєстрації."
88
 
89
+ #: ../super_socializer.php:933 ../helper.php:508
90
  msgid "Enter your LiveJournal username"
91
  msgstr "Введіть ваше ім'я користувача LiveJournal"
92
 
93
+ #: ../super_socializer.php:1005
94
  msgid "Leave a reply"
95
  msgstr "Залишити коментар"
96
 
97
+ #: ../super_socializer.php:1017 ../inc/social_sharing.php:241
98
  msgid "Shares"
99
  msgstr "Поширили:"
100
 
101
+ #: ../super_socializer.php:1017 ../inc/social_sharing.php:241
102
  msgid "Share"
103
  msgstr "Поділитися"
104
 
105
+ #: ../super_socializer.php:1017
106
  #, fuzzy
107
  msgid "Link copied."
108
  msgstr "LinkedIn"
109
 
110
+ #: ../super_socializer.php:1263
111
  msgid "Super Socializer - General Options"
112
  msgstr "Super Socializer - Загальні Параметри"
113
 
114
+ #: ../super_socializer.php:1263 ../admin/general_options.php:15
115
  #: ../admin/social_commenting.php:47
116
  msgid "General Options"
117
  msgstr "Загальні параметри"
118
 
119
+ #: ../super_socializer.php:1331 ../helper.php:898
120
  msgid "Social Avatar"
121
  msgstr "Соціальний Аватар"
122
 
123
+ #: ../super_socializer.php:1334
124
  msgid "Small Avatar Url"
125
  msgstr "Посилання для маленького аватара"
126
 
127
+ #: ../super_socializer.php:1338
128
  msgid "Large Avatar Url"
129
  msgstr "Посилання для великого аватара"
130
 
131
+ #: ../super_socializer.php:1342 ../helper.php:901
132
  msgid ""
133
  "Do not fetch and update social avatar from my profile, next time I Social "
134
  "Login"
136
  "Не отримувати і оновлювати соціальний аватар з мого профілю, в наступний "
137
  "раз коли я використовую вхід через соцмережі"
138
 
139
+ #: ../super_socializer.php:1346 ../helper.php:902
140
  msgid "Update social avatar, next time I Social Login"
141
  msgstr ""
142
  "Оновлення аватара соцмереж наступного разу при використанні входу через "
143
  "соцмережі"
144
 
145
+ #: ../super_socializer.php:1423
 
 
 
 
 
 
 
 
146
  msgid "Login with your Social ID"
147
  msgstr "Увійти через соціальний аккаунт"
148
 
149
+ #: ../super_socializer.php:1424
150
  msgid "Email you entered is already registered or invalid"
151
  msgstr "Електронна пошта, яку ви ввели, вже зареєстрована або недійсна"
152
 
153
+ #: ../super_socializer.php:1429
154
  msgid "Please enter a valid email address. You might be required to verify it"
155
  msgstr ""
156
  "Будь ласка, введіть дійсну адресу електронної пошти. Вам, можливо, буде "
157
  "потрібно перевірити його"
158
 
159
+ #: ../super_socializer.php:1433 ../super_socializer.php:2122
160
  msgid "Link your social account to login to your account at this website"
161
  msgstr ""
162
  "Введіть посилання на ваш аккаунт в соціальних мережах щоб увійти в обліковий "
163
  "запис на цьому сайті"
164
 
165
+ #: ../super_socializer.php:1681
166
  msgid "Thanks for installing Super Socializer plugin"
167
  msgstr ""
168
 
169
+ #: ../super_socializer.php:1683
170
  msgid "Configure the Plugin"
171
  msgstr ""
172
 
173
+ #: ../super_socializer.php:1694
174
  msgid ""
175
  "Update \"Facebook Comments Moderation\" add-on for compatibility with "
176
  "current version of Super Socialzer"
177
  msgstr ""
178
 
179
+ #: ../super_socializer.php:1703
180
  msgid ""
181
  "Update \"Facebook Comments Notifier\" add-on for compatibility with current "
182
  "version of Super Socialzer"
183
  msgstr ""
184
 
185
+ #: ../super_socializer.php:1712
186
  msgid ""
187
  "Update \"Social Login Buttons\" add-on for compatibility with current "
188
  "version of Super Socialzer"
189
  msgstr ""
190
 
191
+ #: ../super_socializer.php:1721
192
  msgid ""
193
  "Update \"Social Share myCRED Integration\" add-on for maximum compatibility "
194
  "with current version of Super Socialzer"
195
  msgstr ""
196
 
197
+ #: ../super_socializer.php:1730
198
  msgid ""
199
  "Update \"Social Login myCRED Integration\" add-on for maximum compatibility "
200
  "with current version of Super Socialzer"
201
  msgstr ""
202
 
203
+ #: ../super_socializer.php:1737
204
  msgid ""
205
  "Update \"Social Login myCRED Integration\" add-on for compatibility with "
206
  "LiveJournal Login of Super Socialzer"
207
  msgstr ""
208
 
209
+ #: ../super_socializer.php:1748
210
  #, php-format
211
  msgid ""
212
  "To continue using Steam login save Steam API key <a href=\"%s\">here</a>"
213
  msgstr ""
214
 
215
+ #: ../super_socializer.php:1764
216
  #, php-format
217
  msgid ""
218
  "To continue using Social Login, save the secret keys <a href=\"%s\">here</a>"
219
  msgstr ""
220
 
221
+ #: ../super_socializer.php:1788
222
  #, php-format
223
  msgid ""
224
  "Add %s in \"Valid OAuth redirect URIs\" option in your Facebook app settings "
226
  "target=\"_blank\">here</a>"
227
  msgstr ""
228
 
229
+ #: ../super_socializer.php:1788 ../super_socializer.php:1813
230
+ #: ../super_socializer.php:1838 ../super_socializer.php:1863
231
+ #: ../super_socializer.php:1896 ../super_socializer.php:1924
232
+ #: ../super_socializer.php:1951 ../super_socializer.php:2028
233
  msgid "Okay"
234
  msgstr "Гаразд."
235
 
236
+ #: ../super_socializer.php:1813
237
  #, php-format
238
  msgid ""
239
  "Add %s in \"Callback URLs\" option in your Twitter app settings for Twitter "
241
  "\">here</a>"
242
  msgstr ""
243
 
244
+ #: ../super_socializer.php:1838
245
  #, php-format
246
  msgid ""
247
  "Add %s in \"Authorized Redirect URLs\" option in your Linkedin app settings "
249
  "target=\"_blank\">here</a>"
250
  msgstr ""
251
 
252
+ #: ../super_socializer.php:1863
253
  #, php-format
254
  msgid ""
255
  "Add %s in \"Authorized redirect URIs\" option in your Google client settings "
257
  "target=\"_blank\">here</a>"
258
  msgstr ""
259
 
260
+ #: ../super_socializer.php:1874
261
  #, php-format
262
  msgid ""
263
  "Save the url of privacy policy page of your website <a href=\"%s\">here</a>"
264
  msgstr ""
265
 
266
+ #: ../super_socializer.php:1896
267
  #, php-format
268
  msgid ""
269
  "This plugin is GDPR compliant. You need to update the privacy policy of your "
271
  "\"%s\" target=\"_blank\">here</a>"
272
  msgstr ""
273
 
274
+ #: ../super_socializer.php:1924
275
  #, php-format
276
  msgid ""
277
  "Now plugin supports a new service Twitcount.com to show Twitter shares. To "
280
  "your website %s with them. No need to copy-paste any code from their website."
281
  msgstr ""
282
 
283
+ #: ../super_socializer.php:1951
284
  #, php-format
285
  msgid ""
286
  "Replace url saved in \"Callback URLs\" option in your Twitter app settings "
288
  "\"%s\" target=\"_blank\">here</a>"
289
  msgstr ""
290
 
291
+ #: ../super_socializer.php:1976
292
  #, php-format
293
  msgid ""
294
  "If you cannot get Linkedin login to work after updating the plugin, replace "
296
  "For more details, check step 6 <a href=\"%s\" target=\"_blank\">here</a>"
297
  msgstr ""
298
 
299
+ #: ../super_socializer.php:1976 ../super_socializer.php:2003
300
  msgid "Dismiss"
301
  msgstr ""
302
 
303
+ #: ../super_socializer.php:2002
304
  #, php-format
305
  msgid ""
306
  "Save Facebook App ID and Secret keys in \"Standard Interface\" and/or "
309
  "that, clear share counts cache from \"Miscellaneous\" section"
310
  msgstr ""
311
 
312
+ #: ../super_socializer.php:2028
313
  #, php-format
314
  msgid ""
315
  "Your website visitors will see a popup notification (only once) if their "
325
  "користувачів, якщо їх браузери блокують функції плагіна» <a href=\"%s\"> тут "
326
  "</a>"
327
 
328
+ #: ../super_socializer.php:2198
329
+ msgid ""
330
+ "Your browser is blocking some features of this website. Please follow the "
331
+ "instructions at {support_url} to unblock these."
332
+ msgstr ""
333
+ "Ваш браузер блокує деякі функції даного веб-сайту. Будь ласка, дотримуйтесь "
334
+ "інструкцій в {support_url}, щоб розблокувати функції."
335
+
336
  #: ../helper.php:8
337
  msgid "Settings saved"
338
  msgstr "Налаштування збережені"
339
 
340
+ #: ../helper.php:8 ../admin/social_sharing.php:49
341
  msgid "Dismiss this notice"
342
  msgstr "Закрити це повідомлення"
343
 
425
  msgid "Large Avatar"
426
  msgstr "Великий аватар"
427
 
428
+ #: ../helper.php:913 ../admin/general_options.php:93
429
+ #: ../admin/social_sharing.php:2027 ../admin/social_commenting.php:413
430
+ #: ../admin/social_login.php:1313 ../admin/like_buttons.php:826
431
  msgid "Save Changes"
432
  msgstr "Зберегти налаштування"
433
 
448
  msgid "Something bad happened"
449
  msgstr ""
450
 
451
+ #: ../admin/general_options.php:7 ../admin/general_options.php:97
452
+ #: ../admin/social_sharing.php:5 ../admin/social_sharing.php:2031
453
  #: ../admin/social_commenting.php:5 ../admin/social_commenting.php:417
454
+ #: ../admin/social_login.php:5 ../admin/social_login.php:1317
455
  #: ../admin/like_buttons.php:6 ../admin/like_buttons.php:830
456
  #, fuzzy, php-format
457
  msgid ""
496
  "установці плагіна в наступний раз."
497
 
498
  #: ../admin/general_options.php:75
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
499
  msgid "Custom CSS"
500
  msgstr "Користувальницькі CSS"
501
 
502
+ #: ../admin/general_options.php:85
503
  msgid "You can specify any additional CSS rules (without &lt;style&gt; tag)"
504
  msgstr ""
505
  "Можна вказати будь-які додаткові правила CSS (без тега & lt; style & gt;)"
506
 
507
+ #: ../admin/general_options.php:108 ../admin/social_sharing.php:2038
508
+ #: ../admin/social_commenting.php:424 ../admin/social_login.php:1324
509
+ #: ../admin/like_buttons.php:837
510
  #, fuzzy
511
  msgid "Instagram Shoutout"
512
  msgstr "Instagram"
513
 
514
+ #: ../admin/general_options.php:110 ../admin/social_sharing.php:2040
515
+ #: ../admin/social_commenting.php:426 ../admin/social_login.php:1326
516
+ #: ../admin/like_buttons.php:839
517
  msgid ""
518
  "If you can send (to hello@heateor.com) how our plugin is helping your "
519
  "business, we can share it on Instagram. You can also send any relevant "
520
  "hashtags and people to mention in the Instagram post."
521
  msgstr ""
522
 
523
+ #: ../admin/general_options.php:111 ../admin/social_sharing.php:2041
524
+ #: ../admin/social_commenting.php:427 ../admin/social_login.php:1327
525
+ #: ../admin/like_buttons.php:840
526
  msgid ""
527
  "<b>Example</b> - Blah-Blah Online Coaching teaches various programming "
528
  "language courses through their website. They have emerged as one of the most "
531
  "time."
532
  msgstr ""
533
 
534
+ #: ../admin/general_options.php:112 ../admin/social_sharing.php:2042
535
+ #: ../admin/social_commenting.php:428 ../admin/social_login.php:1328
536
+ #: ../admin/like_buttons.php:841
537
  msgid ""
538
  "@blahblahonlinecoaching proudly use #SuperSocializer to enable social "
539
  "features at their website, such as - Social Login, Social Share and Social "
643
  msgid "Recover Social Share Counts Lost After Moving to SSL/Https"
644
  msgstr ""
645
 
646
+ #: ../admin/social_sharing.php:49 ../admin/social_sharing.php:1990
647
  msgid ""
648
  "Save Facebook App Id and Secret in the \"Miscellaneous\" section for "
649
  "Facebook share count to work"
650
  msgstr ""
651
 
652
+ #: ../admin/social_sharing.php:56
653
  msgid "Theme Selection"
654
  msgstr "Вибір теми"
655
 
656
+ #: ../admin/social_sharing.php:57 ../admin/like_buttons.php:41
657
  msgid "Standard Interface"
658
  msgstr "Стандартний інтерфейс"
659
 
660
+ #: ../admin/social_sharing.php:58 ../admin/like_buttons.php:42
661
  msgid "Floating Interface"
662
  msgstr "Плаваючий інтерфейс"
663
 
664
+ #: ../admin/social_sharing.php:59 ../admin/like_buttons.php:43
665
  msgid "Miscellaneous"
666
  msgstr "Різне"
667
 
668
+ #: ../admin/social_sharing.php:63 ../admin/like_buttons.php:47
669
  #, fuzzy
670
  msgid "3rd Party Integration"
671
  msgstr "XProfile інтеграція"
672
 
673
+ #: ../admin/social_sharing.php:67 ../admin/social_sharing.php:1952
674
+ #: ../admin/social_sharing.php:1954 ../admin/social_login.php:46
675
+ #: ../admin/social_login.php:1279 ../admin/like_buttons.php:51
676
  #: ../admin/like_buttons.php:797
677
  msgid "Shortcode & Widget"
678
  msgstr "Шорткод і віджет"
679
 
680
+ #: ../admin/social_sharing.php:68
681
  msgid "Troubleshooter"
682
  msgstr "Усунення несправностей"
683
 
684
+ #: ../admin/social_sharing.php:69 ../admin/social_sharing.php:1985
685
  #: ../admin/social_commenting.php:40 ../admin/social_commenting.php:397
686
+ #: ../admin/social_login.php:47 ../admin/social_login.php:1293
687
  #: ../admin/like_buttons.php:52 ../admin/like_buttons.php:810
688
  msgid "FAQ"
689
  msgstr "Часті питання (FAQ)"
690
 
691
+ #: ../admin/social_sharing.php:77
692
  msgid "Standard interface theme"
693
  msgstr "Стандартний інтерфейс"
694
 
695
+ #: ../admin/social_sharing.php:82 ../admin/social_sharing.php:389
696
  msgid "Icon Preview"
697
  msgstr "Прев'ю іконок"
698
 
699
+ #: ../admin/social_sharing.php:154 ../admin/social_sharing.php:462
700
  msgid ""
701
  "Do not forget to save the configuration after making changes by clicking the "
702
  "save button below"
704
  "Не забудьте зберегти конфігурацію після внесення змін, натиснувши нижче "
705
  "кнопку зберегти"
706
 
707
+ #: ../admin/social_sharing.php:161 ../admin/social_sharing.php:469
708
  msgid "Shape"
709
  msgstr "Форма"
710
 
711
+ #: ../admin/social_sharing.php:165 ../admin/social_sharing.php:473
712
  #: ../inc/widget.php:951
713
  msgid "Round"
714
  msgstr "Кругла"
715
 
716
+ #: ../admin/social_sharing.php:167 ../admin/social_sharing.php:475
717
  #: ../inc/widget.php:952
718
  msgid "Square"
719
  msgstr "Квадратна"
720
 
721
+ #: ../admin/social_sharing.php:169 ../admin/social_sharing.php:477
722
  msgid "Rectangle"
723
  msgstr "Прямокутник"
724
 
725
+ #: ../admin/social_sharing.php:176 ../admin/social_sharing.php:484
726
  msgid "Shape of the sharing icons"
727
  msgstr "Форма кнопок Поділитися"
728
 
729
+ #: ../admin/social_sharing.php:185 ../admin/social_sharing.php:493
730
  msgid "Size (in pixels)"
731
  msgstr "Розмір (в пікселях)"
732
 
733
+ #: ../admin/social_sharing.php:201 ../admin/social_sharing.php:509
734
  msgid "Size of the sharing icons"
735
  msgstr "Розмір кнопок Поділитися"
736
 
737
+ #: ../admin/social_sharing.php:211 ../admin/social_sharing.php:519
738
  msgid "Width (in pixels)"
739
  msgstr "Ширина (в пікселях)"
740
 
741
+ #: ../admin/social_sharing.php:227 ../admin/social_sharing.php:535
742
  msgid "Width of the sharing icons"
743
  msgstr "Ширина іконок поділитися"
744
 
745
+ #: ../admin/social_sharing.php:235 ../admin/social_sharing.php:543
746
  msgid "Height (in pixels)"
747
  msgstr "Висота (в пікселях)"
748
 
749
+ #: ../admin/social_sharing.php:251 ../admin/social_sharing.php:559
750
  msgid "Height of the sharing icons"
751
  msgstr "Висота кнопок Поділитися"
752
 
753
+ #: ../admin/social_sharing.php:261 ../admin/social_sharing.php:569
754
  msgid "Border radius (in pixels)"
755
  msgstr "Радіус рамки (в пікселях)"
756
 
757
+ #: ../admin/social_sharing.php:271 ../admin/social_sharing.php:579
758
  msgid ""
759
  "Specify a value for rounded corners. More the value, more rounded will the "
760
  "corners be. Leave empty for sharp corners."
762
  "Вкажіть значення для закруглених кутів. Чим більше значення параметра, більш "
763
  "округлими будуть кути. Залиште порожнім для прямих кутів."
764
 
765
+ #: ../admin/social_sharing.php:280 ../admin/social_sharing.php:588
766
  msgid "Logo Color"
767
  msgstr "Колір логотипу"
768
 
769
+ #: ../admin/social_sharing.php:284 ../admin/social_sharing.php:305
770
+ #: ../admin/social_sharing.php:325 ../admin/social_sharing.php:592
771
+ #: ../admin/social_sharing.php:613 ../admin/social_sharing.php:632
772
  msgid "Default"
773
  msgstr "За замовчуванням"
774
 
775
+ #: ../admin/social_sharing.php:286 ../admin/social_sharing.php:306
776
+ #: ../admin/social_sharing.php:330 ../admin/social_sharing.php:594
777
+ #: ../admin/social_sharing.php:614 ../admin/social_sharing.php:637
778
  msgid "On Hover"
779
  msgstr "При наведенні"
780
 
781
+ #: ../admin/social_sharing.php:294 ../admin/social_sharing.php:602
782
  msgid ""
783
  "Specify the color or hex code (example #cc78e0) for the logo of icon. Leave "
784
  "empty for default. You can get the hex code of the required color from <a "
789
  "шістнадцятковий код <a href=\"http://www.colorpicker.com/\" target=\"_blank"
790
  "\"> тут </a>"
791
 
792
+ #: ../admin/social_sharing.php:302 ../admin/social_sharing.php:610
793
+ #: ../admin/social_sharing.php:1325 ../admin/like_buttons.php:410
794
  #: ../inc/widget.php:460 ../inc/widget.php:772
795
  msgid "Background Color"
796
  msgstr "Колір фону"
797
 
798
+ #: ../admin/social_sharing.php:313 ../admin/social_sharing.php:621
799
  msgid ""
800
  "Specify the color or hex code (example #cc78e0) for icon background. Save "
801
  "\"transparent\" for transparent background. Leave empty for default. You can "
807
  "шістнадцятковий код <a href=\"http://www.colorpicker.com/\" target=\"_blank"
808
  "\"> тут </a>"
809
 
810
+ #: ../admin/social_sharing.php:321 ../admin/social_sharing.php:629
811
  msgid "Border"
812
  msgstr "Рамка"
813
 
814
+ #: ../admin/social_sharing.php:327 ../admin/social_sharing.php:332
815
+ #: ../admin/social_sharing.php:634 ../admin/social_sharing.php:639
816
  msgid "Border Width"
817
  msgstr "Ширина рамки"
818
 
819
+ #: ../admin/social_sharing.php:328 ../admin/social_sharing.php:333
820
+ #: ../admin/social_sharing.php:635 ../admin/social_sharing.php:640
821
  msgid "Border Color"
822
  msgstr "Колір рамки"
823
 
824
+ #: ../admin/social_sharing.php:340 ../admin/social_sharing.php:647
825
  msgid "Icon border"
826
  msgstr "Іконка рамки"
827
 
828
+ #: ../admin/social_sharing.php:348 ../admin/social_sharing.php:655
829
  msgid "Counter Position"
830
  msgstr "Позиція лічильника"
831
 
832
+ #: ../admin/social_sharing.php:348 ../admin/social_sharing.php:655
833
  msgid "(applies, if counter enabled)"
834
  msgstr "(застосовується, якщо лічильник включений)"
835
 
836
+ #: ../admin/social_sharing.php:352 ../admin/social_sharing.php:659
837
+ #: ../admin/social_sharing.php:942 ../admin/social_sharing.php:1347
838
  #: ../admin/like_buttons.php:183 ../admin/like_buttons.php:432
839
  #: ../inc/widget.php:446 ../inc/widget.php:758
840
  msgid "Left"
841
  msgstr "Зліва"
842
 
843
+ #: ../admin/social_sharing.php:354 ../admin/social_sharing.php:661
844
  msgid "Top"
845
  msgstr "Зверху"
846
 
847
+ #: ../admin/social_sharing.php:356 ../admin/social_sharing.php:663
848
+ #: ../admin/social_sharing.php:944 ../admin/social_sharing.php:1348
849
  #: ../admin/like_buttons.php:185 ../admin/like_buttons.php:433
850
  #: ../inc/widget.php:447 ../inc/widget.php:759
851
  msgid "Right"
852
  msgstr "Справа"
853
 
854
+ #: ../admin/social_sharing.php:358 ../admin/social_sharing.php:665
855
  msgid "Bottom"
856
  msgstr "Знизу"
857
 
858
+ #: ../admin/social_sharing.php:360 ../admin/social_sharing.php:667
859
  msgid "Inner Left"
860
  msgstr "Лівий відступ"
861
 
862
+ #: ../admin/social_sharing.php:362 ../admin/social_sharing.php:669
863
  msgid "Inner Top"
864
  msgstr "Верхній відступ"
865
 
866
+ #: ../admin/social_sharing.php:364 ../admin/social_sharing.php:671
867
  msgid "Inner Right"
868
  msgstr "Внутрішній відступ справа"
869
 
870
+ #: ../admin/social_sharing.php:366 ../admin/social_sharing.php:673
871
  msgid "Inner Bottom"
872
  msgstr "Нижній відступ"
873
 
874
+ #: ../admin/social_sharing.php:374 ../admin/social_sharing.php:681
875
  msgid "Position of share counter"
876
  msgstr "Положення лічильника Поділитися"
877
 
878
+ #: ../admin/social_sharing.php:384
879
  msgid "Floating interface theme"
880
  msgstr "Плаваючий інтерфейс Поділитися"
881
 
882
+ #: ../admin/social_sharing.php:697
883
  msgid "Standard Sharing Interface Options"
884
  msgstr "Стандартні параметри інтерфейсу"
885
 
886
+ #: ../admin/social_sharing.php:703
887
  msgid "Enable Standard sharing interface"
888
  msgstr "Включити стандартний інтерфейс Поділитися"
889
 
890
+ #: ../admin/social_sharing.php:713
891
  msgid "Master control to enable standard sharing"
892
  msgstr "Майстер налаштування включення стандартних опцій Поділитися"
893
 
894
+ #: ../admin/social_sharing.php:723 ../admin/social_sharing.php:1151
895
  #: ../admin/like_buttons.php:86 ../admin/like_buttons.php:336
896
  msgid "Target Url"
897
  msgstr "Цільова URL-адреса"
898
 
899
+ #: ../admin/social_sharing.php:727 ../admin/social_sharing.php:1155
900
  #: ../admin/like_buttons.php:90 ../admin/like_buttons.php:340
901
  msgid "Url of the webpage where icons are located (default)"
902
  msgstr "URL-адресу веб-сторінки, де розташовані значки (за замовчуванням)"
903
 
904
+ #: ../admin/social_sharing.php:729 ../admin/social_sharing.php:1157
905
  #: ../admin/like_buttons.php:92 ../admin/like_buttons.php:342
906
  msgid "Url of the homepage of your website"
907
  msgstr "URL-адреса домашньої сторінки вашого веб-сайту"
908
 
909
+ #: ../admin/social_sharing.php:731 ../admin/social_sharing.php:1159
910
  #: ../admin/like_buttons.php:94 ../admin/like_buttons.php:344
911
  msgid "Custom url"
912
  msgstr "Користувальницьке посилання"
913
 
914
+ #: ../admin/social_sharing.php:738 ../admin/social_sharing.php:1166
915
  msgid "Url to share"
916
  msgstr "Посилання щоб Поділитися"
917
 
918
+ #: ../admin/social_sharing.php:746 ../admin/social_login.php:532
919
  #: ../admin/social_login.php:927 ../admin/like_buttons.php:109
920
  #: ../inc/widget.php:945
921
  msgid "Title"
922
  msgstr "Заголовок"
923
 
924
+ #: ../admin/social_sharing.php:756
925
  msgid "The text to display above the sharing interface"
926
  msgstr "Текст, що відображається над інтерфейсом Поділитися"
927
 
928
+ #: ../admin/social_sharing.php:781 ../admin/social_sharing.php:1175
929
  msgid "Instagram username"
930
  msgstr "Введіть ім'я користувача Instagram."
931
 
932
+ #: ../admin/social_sharing.php:791 ../admin/social_sharing.php:1185
933
  msgid ""
934
  "Username of the Instagram account you want to redirect users to, on clicking "
935
  "the icon"
937
  "Ім'я користувача Instagram, на обліковий запис якого ви хочете перенаправити "
938
  "користувачів, якщо натиснути на іконку"
939
 
940
+ #: ../admin/social_sharing.php:801 ../admin/social_sharing.php:1195
941
  #, fuzzy
942
  msgid "HTML ID of container element of comment form"
943
  msgstr "HTML-ідентифікатор форми контейнера коментаря"
944
 
945
+ #: ../admin/social_sharing.php:811 ../admin/social_sharing.php:1205
946
  msgid ""
947
  "HTML ID of the element you want to focus on the webpage, on click of Comment "
948
  "icon."
949
  msgstr ""
950
 
951
+ #: ../admin/social_sharing.php:825 ../admin/social_sharing.php:1214
952
  msgid "Rearrange icons"
953
  msgstr "Змінити порядок іконок"
954
 
955
+ #: ../admin/social_sharing.php:886 ../admin/social_sharing.php:1273
956
  msgid "Drag the icons to rearrange in desired order"
957
  msgstr "Якщо хочете змінити порядок, просто перетягніть зображення"
958
 
959
+ #: ../admin/social_sharing.php:894 ../admin/social_sharing.php:1281
960
  msgid "Select Sharing Services"
961
  msgstr "Виберіть сервіси Поділитися"
962
 
963
+ #: ../admin/social_sharing.php:901 ../admin/social_sharing.php:1288
964
  msgid "Select sharing services to show in social share bar"
965
  msgstr "Виберіть сервіси для показу в панелі Поділитися"
966
 
967
+ #: ../admin/social_sharing.php:919 ../admin/social_sharing.php:1306
968
  msgid "Search social network"
969
  msgstr ""
970
 
971
+ #: ../admin/social_sharing.php:938 ../admin/social_sharing.php:1343
972
  #: ../admin/like_buttons.php:179 ../admin/like_buttons.php:428
973
  msgid "Horizontal alignment"
974
  msgstr "Горизонтальне вирівнювання"
975
 
976
+ #: ../admin/social_sharing.php:943 ../admin/like_buttons.php:184
977
  msgid "Center"
978
  msgstr "Центр"
979
 
980
+ #: ../admin/social_sharing.php:952 ../admin/social_sharing.php:1356
981
  msgid "Horizontal alignment of the sharing interface"
982
  msgstr "Горизонтальне вирівнювання інтерфейсу Поділитися"
983
 
984
+ #: ../admin/social_sharing.php:960 ../admin/like_buttons.php:201
985
  msgid "Position with respect to content"
986
  msgstr "Позиція щодо контенту"
987
 
988
+ #: ../admin/social_sharing.php:964 ../admin/like_buttons.php:205
989
  msgid "Top of the content"
990
  msgstr "Над вмістом"
991
 
992
+ #: ../admin/social_sharing.php:966 ../admin/like_buttons.php:207
993
  msgid "Bottom of the content"
994
  msgstr "Під вмістом"
995
 
996
+ #: ../admin/social_sharing.php:973
997
  msgid "Specify position of the sharing interface with respect to the content"
998
  msgstr "Вкажіть положення інтерфейсу Поділитися щодо вмісту."
999
 
1000
+ #: ../admin/social_sharing.php:981 ../admin/social_sharing.php:1422
1001
  msgid "Placement"
1002
  msgstr "Розміщення"
1003
 
1004
+ #: ../admin/social_sharing.php:985 ../admin/social_sharing.php:1426
1005
  #: ../admin/social_login.php:866 ../admin/social_login.php:896
1006
  #: ../admin/like_buttons.php:226 ../admin/like_buttons.php:511
1007
  msgid "Homepage"
1008
  msgstr "Головна"
1009
 
1010
+ #: ../admin/social_sharing.php:987 ../admin/social_sharing.php:1428
1011
  #: ../admin/like_buttons.php:228 ../admin/like_buttons.php:513
1012
  msgid "Posts"
1013
  msgstr "Записи"
1014
 
1015
+ #: ../admin/social_sharing.php:989 ../admin/social_sharing.php:1430
1016
  #: ../admin/like_buttons.php:230 ../admin/like_buttons.php:515
1017
  msgid "Pages"
1018
  msgstr "Сторінки"
1019
 
1020
+ #: ../admin/social_sharing.php:991 ../admin/social_sharing.php:1432
1021
  #: ../admin/like_buttons.php:232 ../admin/like_buttons.php:517
1022
  msgid "Excerpts and Posts page"
1023
  msgstr "Сторінки анонсів і постів"
1024
 
1025
+ #: ../admin/social_sharing.php:993 ../admin/social_sharing.php:1434
1026
  #: ../admin/like_buttons.php:234 ../admin/like_buttons.php:519
1027
  msgid "Category Archives"
1028
  msgstr "Архіви категорій"
1029
 
1030
+ #: ../admin/social_sharing.php:995 ../admin/social_sharing.php:1436
1031
  #: ../admin/like_buttons.php:236 ../admin/like_buttons.php:521
1032
  msgid "Archive Pages (Category, Tag, Author or Date based pages)"
1033
  msgstr "Архів сторінки (Категорія, тегів, автор або сторінки на основі дат)"
1034
 
1035
+ #: ../admin/social_sharing.php:1011 ../admin/like_buttons.php:252
1036
  msgid "BuddyPress activity"
1037
  msgstr "BuddyPress активність"
1038
 
1039
+ #: ../admin/social_sharing.php:1013 ../admin/like_buttons.php:255
1040
  msgid "BuddyPress group (only at top of content)"
1041
  msgstr "BuddyPress групи (тільки у верхній частині контенту)"
1042
 
1043
+ #: ../admin/social_sharing.php:1019 ../admin/social_sharing.php:1458
1044
  #: ../admin/like_buttons.php:262 ../admin/like_buttons.php:542
1045
  msgid "BBPress forum"
1046
  msgstr "BBPress форум"
1047
 
1048
+ #: ../admin/social_sharing.php:1022 ../admin/social_sharing.php:1461
1049
  #: ../admin/like_buttons.php:265 ../admin/like_buttons.php:545
1050
  msgid "BBPress topic"
1051
  msgstr "BBPress тема"
1052
 
1053
+ #: ../admin/social_sharing.php:1025 ../admin/like_buttons.php:268
1054
  msgid "BBPress reply"
1055
  msgstr "BBPress відповідь"
1056
 
1057
+ #: ../admin/social_sharing.php:1032 ../admin/like_buttons.php:275
1058
  msgid "After individual product at WooCommerce Shop page"
1059
  msgstr "Після індивідуального продукту на сторінці магазину"
1060
 
1061
+ #: ../admin/social_sharing.php:1035 ../admin/like_buttons.php:278
1062
  msgid "WooCommerce Product Page"
1063
  msgstr "Продукт Woocommerce"
1064
 
1065
+ #: ../admin/social_sharing.php:1038 ../admin/like_buttons.php:281
1066
  msgid "WooCommerce Thankyou Page"
1067
  msgstr "WooCommerce сторінка подяки"
1068
 
1069
+ #: ../admin/social_sharing.php:1049
1070
  msgid "Specify the pages where you want to enable Sharing interface"
1071
  msgstr "Вкажіть сторінки, де ви хочете включити інтерфейс Поділитися"
1072
 
1073
+ #: ../admin/social_sharing.php:1057 ../admin/social_sharing.php:1479
1074
  msgid "Show share counts"
1075
  msgstr "Показати лічильники кнопки Поділитися"
1076
 
1077
+ #: ../admin/social_sharing.php:1062 ../admin/social_sharing.php:1484
1078
  #, fuzzy
1079
  msgid ""
1080
  "Share counts are supported for Facebook, Twitter, Linkedin, Buffer, Reddit, "
1083
  "Підтримуються Facebook, Linkedin, Google Plus, Delicious, Buffer, Reddit, "
1084
  "Pinterest, Stumbleupon, Odnoklassniki і Vkontakte"
1085
 
1086
+ #: ../admin/social_sharing.php:1063 ../admin/social_sharing.php:1485
1087
  #, php-format
1088
  msgid ""
1089
  "To show Twitter share count, you have to click \"Give me my Twitter counts "
1092
  "their website."
1093
  msgstr ""
1094
 
1095
+ #: ../admin/social_sharing.php:1070 ../admin/social_sharing.php:1492
1096
  msgid "If enabled, share counts are displayed above sharing icons."
1097
  msgstr "Якщо включено, лічильники відображаються вище кнопок Поділитися"
1098
 
1099
+ #: ../admin/social_sharing.php:1079 ../admin/social_sharing.php:1501
1100
  msgid "Show total shares"
1101
  msgstr "Включити загальну кількість Поділитися"
1102
 
1103
+ #: ../admin/social_sharing.php:1089 ../admin/social_sharing.php:1511
1104
  msgid "If enabled, total shares will be displayed with sharing icons"
1105
  msgstr ""
1106
  "Якщо включено, то загальна кількість Поділитися буде відображатися з "
1107
  "кнопками Поділитися"
1108
 
1109
+ #: ../admin/social_sharing.php:1098 ../admin/social_sharing.php:1520
1110
  msgid "Enable 'More' icon"
1111
  msgstr "Включити значок «Більше»"
1112
 
1113
+ #: ../admin/social_sharing.php:1108 ../admin/social_sharing.php:1530
1114
  msgid ""
1115
  "If enabled, \"More\" icon will be displayed after selected sharing icons "
1116
  "which shows additional sharing networks in popup"
1118
  "Якщо включено, «Більше» буде відображатися після кнопок Поділитися, яка "
1119
  "показує додаткові сервіси в спливаючому вікні"
1120
 
1121
+ #: ../admin/social_sharing.php:1125
1122
  msgid "Floating Sharing Interface Options"
1123
  msgstr "Параметри плаваючих кнопок Поділитися"
1124
 
1125
+ #: ../admin/social_sharing.php:1131
1126
  msgid "Enable Floating sharing interface"
1127
  msgstr "Включити інтерфейс плаваючих кнопок Поділитися"
1128
 
1129
+ #: ../admin/social_sharing.php:1141
1130
  msgid "Master control to enable floating sharing widget"
1131
  msgstr "Майстер управління включення плаваючого віджета Поділитися"
1132
 
1133
+ #: ../admin/social_sharing.php:1335
1134
  msgid ""
1135
  "Specify the color or hex code (example #cc78e0) for the background of "
1136
  "vertical sharing bar. Leave empty for transparent. You can get the hex code "
1142
  "можете отримати шістнадцятковий код <a href=\"http://www.colorpicker.com/\" "
1143
  "target=\"_blank\"> тут </a>"
1144
 
1145
+ #: ../admin/social_sharing.php:1365 ../admin/like_buttons.php:450
1146
  msgid "Left offset"
1147
  msgstr "Зміщення вліво"
1148
 
1149
+ #: ../admin/social_sharing.php:1375
1150
  msgid ""
1151
  "Specify a number. Increase in number will shift sharing interface towards "
1152
  "right and decrease will shift it towards left. Number can be negative too."
1155
  "правої сторони і зменшувати по відношенню до лівої сторони. Число може бути "
1156
  "негативним."
1157
 
1158
+ #: ../admin/social_sharing.php:1385 ../admin/like_buttons.php:470
1159
  msgid "Right offset"
1160
  msgstr "Зміщення вправо"
1161
 
1162
+ #: ../admin/social_sharing.php:1395
1163
  msgid ""
1164
  "Specify a number. Increase in number will shift sharing interface towards "
1165
  "left and decrease will shift it towards right. Number can be negative too."
1168
  "лівої сторони і зменшувати по відношенню до правої сторони. Число може бути "
1169
  "негативним."
1170
 
1171
+ #: ../admin/social_sharing.php:1404 ../admin/like_buttons.php:489
1172
  msgid "Top offset"
1173
  msgstr "Верхній відступ"
1174
 
1175
+ #: ../admin/social_sharing.php:1414
1176
  msgid ""
1177
  "Specify a number. Increase in number will shift sharing interface towards "
1178
  "bottom and decrease will shift it towards top."
1180
  "Вкажіть число. Збільшення числа буде зсувати інтерфейс Поділитися стосовно "
1181
  "низу і зменшувати по відношенню до верху."
1182
 
1183
+ #: ../admin/social_sharing.php:1450 ../admin/like_buttons.php:535
1184
  msgid "BuddyPress group"
1185
  msgstr "BuddyPress Група"
1186
 
1187
+ #: ../admin/social_sharing.php:1471
1188
  msgid "Specify the pages where you want to enable vertical Sharing interface"
1189
  msgstr ""
1190
  "Вкажіть сторінки, де ви хочете включити вертикальний інтерфейс Поділитися"
1191
 
1192
+ #: ../admin/social_sharing.php:1538
1193
  #, fuzzy
1194
  msgid "Hide floating slider"
1195
  msgstr "Закрити для зареєстрованих користувачів"
1196
 
1197
+ #: ../admin/social_sharing.php:1548
1198
  #, fuzzy
1199
  msgid "Hides the slider arrow present below the floating share bar"
1200
  msgstr "Як приховати стрілку після плаваючих кнопок Поділитися?"
1201
 
1202
+ #: ../admin/social_sharing.php:1556
1203
  msgid "Vertical floating bar responsiveness"
1204
  msgstr "Адаптивність вертикальних плаваючих кнопок"
1205
 
1206
+ #: ../admin/social_sharing.php:1559
1207
  #, php-format
1208
  msgid "Display vertical interface only when screen is wider than %s pixels"
1209
  msgstr ""
1210
  "Показувати вертикальний інтерфейс тільки якщо ширина екрану більше ніж% s "
1211
  "пікселів."
1212
 
1213
+ #: ../admin/social_sharing.php:1566
1214
  msgid ""
1215
  "Display vertical interface only when screen is wider than the width "
1216
  "specified."
1218
  "Показувати вертикальний інтерфейс тільки якщо ширина екрану більше ніж "
1219
  "ширина за замовчуванням."
1220
 
1221
+ #: ../admin/social_sharing.php:1574
1222
  msgid "Horizontal floating bar responsiveness"
1223
  msgstr "Адаптивність вертикальних плаваючих кнопок"
1224
 
1225
+ #: ../admin/social_sharing.php:1577
1226
  #, php-format
1227
  msgid ""
1228
  "Stick vertical floating interface horizontally at bottom only when screen is "
1231
  "Закріпити вертикальний плаваючий інтерфейс внизу тільки тоді коли екран "
1232
  "вужче ніж% s пікселів"
1233
 
1234
+ #: ../admin/social_sharing.php:1584
1235
  msgid ""
1236
  "Stick vertical floating interface horizontally at bottom only when screen is "
1237
  "narrower than the width specified"
1239
  "Закріпити вертикальний плаваючий інтерфейс внизу тільки тоді коли екран "
1240
  "вужче чим зазначена ширина"
1241
 
1242
+ #: ../admin/social_sharing.php:1594
1243
  msgid "Horizontal floating bar position"
1244
  msgstr "Розташування горизонтальної плаваючої панелі"
1245
 
1246
+ #: ../admin/social_sharing.php:1597
1247
  #, php-format
1248
  msgid "%s pixels from %s"
1249
  msgstr "%s пікселів від %s"
1250
 
1251
+ #: ../admin/social_sharing.php:1598
1252
  msgid "Auto-adjust according to screen width (responsive)"
1253
  msgstr ""
1254
 
1255
+ #: ../admin/social_sharing.php:1605
1256
  msgid "Alignment of horizontal floating interface. Number can be negative too."
1257
  msgstr ""
1258
  "Вирівнювання горизонтального плаваючого інтерфейсу. Число може бути "
1259
  "негативним."
1260
 
1261
+ #: ../admin/social_sharing.php:1625
1262
  #, fuzzy
1263
  msgid "Facebook Share Count"
1264
  msgstr "Усунення несправностей Поділитися від Facebook"
1265
 
1266
+ #: ../admin/social_sharing.php:1629
1267
  msgid "Note"
1268
  msgstr ""
1269
 
1270
+ #: ../admin/social_sharing.php:1629
1271
  msgid "Required only to track Facebook share count"
1272
  msgstr ""
1273
 
1274
+ #: ../admin/social_sharing.php:1635 ../admin/social_login.php:161
1275
  msgid "Facebook App ID"
1276
  msgstr "Facebook App ID"
1277
 
1278
+ #: ../admin/social_sharing.php:1645
1279
  #, fuzzy, php-format
1280
  msgid ""
1281
  "Required for Facebook share count to work. Please follow the documentation "
1284
  "Необхідно для входу через Facebook. Будь ласка, подивіться документацію <a "
1285
  "href=\"%s\" target=\"_blank\"> тут </a> для отримання ID додатку Facebook."
1286
 
1287
+ #: ../admin/social_sharing.php:1653 ../admin/social_login.php:183
1288
  #, fuzzy
1289
  msgid "Facebook App Secret"
1290
  msgstr "Facebook App ID"
1291
 
1292
+ #: ../admin/social_sharing.php:1663
1293
  #, fuzzy, php-format
1294
  msgid ""
1295
  "Required for Facebook share count to work. Please follow the documentation "
1298
  "Необхідно для входу через Facebook. Будь ласка, подивіться документацію <a "
1299
  "href=\"%s\" target=\"_blank\"> тут </a> для отримання ID додатку Facebook."
1300
 
1301
+ #: ../admin/social_sharing.php:1672 ../admin/like_buttons.php:592
1302
  msgid "Url shortener"
1303
  msgstr "Скорочення URL"
1304
 
1305
+ #: ../admin/social_sharing.php:1678
1306
  msgid "Use shortlinks already installed"
1307
  msgstr "Використання коротких посилань вже встановлено"
1308
 
1309
+ #: ../admin/social_sharing.php:1688
1310
  msgid "Uses default short url permalinks without using any additional plugin"
1311
  msgstr ""
1312
  "Використовує за замовчуванням постійні короткі url без використання будь-"
1313
  "яких додаткових плагінів"
1314
 
1315
+ #: ../admin/social_sharing.php:1696
1316
  msgid "Enable bit.ly url shortener for sharing"
1317
  msgstr "Активувати bit.ly для скорочення посилань для Поділитися"
1318
 
1319
+ #: ../admin/social_sharing.php:1706 ../admin/like_buttons.php:626
1320
  msgid "Master control to enable bit.ly url shortening for sharing"
1321
  msgstr "Майстер управління скорочення посилань через bit.ly для Поділитися"
1322
 
1323
+ #: ../admin/social_sharing.php:1714
1324
  msgid "bit.ly Login"
1325
  msgstr "bit.ly Логін"
1326
 
1327
+ #: ../admin/social_sharing.php:1724 ../admin/social_sharing.php:1743
1328
  #, fuzzy, php-format
1329
  msgid "More details on how to get it <a href=\"%s\" target=\"_blank\">here</a>"
1330
  msgstr ""
1331
  "Необхідно для входу через Twitter. Будь ласка, подивіться документацію <a "
1332
  "href=\"%s\" target=\"_blank\"> тут </a> для отримання ключа додатку Twitter."
1333
 
1334
+ #: ../admin/social_sharing.php:1733 ../admin/like_buttons.php:653
1335
  msgid "bit.ly API Key"
1336
  msgstr "bit.ly ключ додатка"
1337
 
1338
+ #: ../admin/social_sharing.php:1752 ../admin/like_buttons.php:672
1339
  msgid "Clear Bitly Cache"
1340
  msgstr "Очистити Bitly кеш"
1341
 
1342
+ #: ../admin/social_sharing.php:1756 ../admin/like_buttons.php:676
1343
  msgid "ShortUrl cache cleared successfully."
1344
  msgstr "ShortUrl кеш успішно очищений."
1345
 
1346
+ #: ../admin/social_sharing.php:1763 ../admin/like_buttons.php:683
1347
  msgid ""
1348
  "Use this to delete short urls saved in database. Handy, if urls of your "
1349
  "website have been changed but short urls are still being generated for old "
1353
  "Зручно, якщо URL-адреси вашого веб-сайту було змінено, але короткі URL-"
1354
  "адреси, як і раніше створюються для старих URL-адрес."
1355
 
1356
+ #: ../admin/social_sharing.php:1772
1357
  msgid "Share Count Cache"
1358
  msgstr "Кеш лічильників Поділитися"
1359
 
1360
+ #: ../admin/social_sharing.php:1778
1361
  msgid "Refresh Share Count cache every"
1362
  msgstr "Оновити кеш лічильників Поділитися"
1363
 
1364
+ #: ../admin/social_sharing.php:1783
1365
  msgid "Second(s)"
1366
  msgstr "Секунд"
1367
 
1368
+ #: ../admin/social_sharing.php:1784
1369
  msgid "Minute(s)"
1370
  msgstr "Хвилин"
1371
 
1372
+ #: ../admin/social_sharing.php:1785
1373
  msgid "Hour(s)"
1374
  msgstr "Годин"
1375
 
1376
+ #: ../admin/social_sharing.php:1786
1377
  msgid "Day(s)"
1378
  msgstr "Днів"
1379
 
1380
+ #: ../admin/social_sharing.php:1794
1381
  #, fuzzy, php-format
1382
  msgid ""
1383
  "Frequent cache refreshing results in slower loading of pages with share "
1387
  "Часте оновлення кешу призводить до більш повільного завантаження сторінок з "
1388
  "включеними лічильниками Поділитися"
1389
 
1390
+ #: ../admin/social_sharing.php:1802
1391
  msgid "Clear Share Counts Cache"
1392
  msgstr "Очистити кеш лічильників Поділитися"
1393
 
1394
+ #: ../admin/social_sharing.php:1806
1395
  msgid "Share Counts cache cleared successfully."
1396
  msgstr "Кеш лічільників Поділитися успішно очищений."
1397
 
1398
+ #: ../admin/social_sharing.php:1813
1399
  msgid "Use this to clear cached share counts"
1400
  msgstr "Використовуйте це для очищення кешованих лічильників Поділитися"
1401
 
1402
+ #: ../admin/social_sharing.php:1822 ../admin/social_sharing.php:1828
1403
  #: ../admin/social_commenting.php:315 ../admin/like_buttons.php:692
1404
  #: ../admin/like_buttons.php:698
1405
  msgid "Language"
1406
  msgstr "Мова"
1407
 
1408
+ #: ../admin/social_sharing.php:1838
1409
  #, php-format
1410
  msgid ""
1411
  "Enter the code of the language you want to use for like buttons. You can "
1417
  "\"_blank\"> цим посиланням </a>. Залиште поле порожнім щоб залишити мову за "
1418
  "замовчуванням (Українська)."
1419
 
1420
+ #: ../admin/social_sharing.php:1847
1421
  msgid "Username in sharing"
1422
  msgstr "Ім'я користувача щоб поділитися"
1423
 
1424
+ #: ../admin/social_sharing.php:1853
1425
  msgid "Twitter username (without @)"
1426
  msgstr "Twitter ім'я користувача (без @)"
1427
 
1428
+ #: ../admin/social_sharing.php:1863 ../admin/social_sharing.php:1882
1429
  msgid ""
1430
  "Provided username will be appended after the content being shared as \"via "
1431
  "@USERNAME\". Leave empty if you do not want any username in the content "
1434
  "Додає ім'я користувача після того як контент буде розшарено за допомогою "
1435
  "\"via @USERNAME\". Залиште поле порожнім якщо не хочете вказувати ім'я."
1436
 
1437
+ #: ../admin/social_sharing.php:1872
1438
  msgid "Buffer username (without @)"
1439
  msgstr "Ім'я користувача в Twitter (без @)"
1440
 
1441
+ #: ../admin/social_sharing.php:1891
1442
  msgid "AMP"
1443
  msgstr "AMP"
1444
 
1445
+ #: ../admin/social_sharing.php:1897
1446
  msgid "Enable sharing on AMP pages"
1447
  msgstr "Дозволити загальний доступ на сторінках AMP"
1448
 
1449
+ #: ../admin/social_sharing.php:1907
1450
  msgid "Enable this option to render sharing icons on AMP pages"
1451
  msgstr "Увімкніть цей параметр для відображення іконок на сторінках AMP"
1452
 
1453
+ #: ../admin/social_sharing.php:1926 ../admin/like_buttons.php:771
1454
  msgid "myCRED"
1455
  msgstr ""
1456
 
1457
+ #: ../admin/social_sharing.php:1932 ../admin/like_buttons.php:777
1458
  msgid "Append myCRED referral ID to the urls being shared"
1459
  msgstr ""
1460
 
1461
+ #: ../admin/social_sharing.php:1965
1462
  msgid "Facebook Sharing Troubleshooter"
1463
  msgstr "Усунення несправностей Поділитися від Facebook"
1464
 
1465
+ #: ../admin/social_sharing.php:1970
1466
  msgid ""
1467
  "If Facebook sharing is not working fine, click at the following link and "
1468
  "enter the problematic url (where Facebook sharing is not working properly) "
1474
  "працює належним чином) на вашому сайті в текстовому полі. Натисніть "
1475
  "\"Отримання інформації про нову поломки \"."
1476
 
1477
+ #: ../admin/social_sharing.php:1987 ../admin/social_commenting.php:399
1478
+ #: ../admin/social_login.php:1295
1479
  msgid ""
1480
  "<strong>Note:</strong> Plugin will not work on local server. You should have "
1481
  "an online website for the plugin to function properly."
1482
  msgstr ""
1483
 
1484
+ #: ../admin/social_sharing.php:1988
1485
  msgid ""
1486
  "Why is sharer not showing the correct image, title and other meta tags "
1487
  "content?"
1489
  "Чому расшаріваніє не вказує корректіно зображення, заголовок і інші мета "
1490
  "дані контенту?"
1491
 
1492
+ #: ../admin/social_sharing.php:1989
1493
  #, fuzzy
1494
  msgid "Why is Facebook share count not working?"
1495
  msgstr "Чому лічильники Фейсбуку поділитися не оновлюються?"
1496
 
1497
+ #: ../admin/social_sharing.php:1992
1498
  msgid "Why is Instagram icon redirecting to Instagram website?"
1499
  msgstr ""
1500
 
1501
+ #: ../admin/social_sharing.php:1993
1502
  msgid ""
1503
  "Instagram icon is there to send website visitors to the Instagram page of "
1504
  "your choice. You can save the desired Instagram handle in \"Instagram "
1506
  "sections."
1507
  msgstr ""
1508
 
1509
+ #: ../admin/social_sharing.php:1996
1510
  #, fuzzy
1511
  msgid "How to customize the url being shared?"
1512
  msgstr "Як налаштувати зовнішній вигляд окремих лічильників Поділитися?"
1513
 
1514
+ #: ../admin/social_sharing.php:1997
1515
  msgid ""
1516
  "Why are Twitter shares not appearing even after registering at Twitcount.com?"
1517
  msgstr ""
1518
 
1519
+ #: ../admin/social_sharing.php:1998
1520
  msgid ""
1521
  "It takes some time for their service to track the shares made on Twitter "
1522
  "from your website. If you still feel it's taking too long you can contact "
1523
  "their support directly from their website."
1524
  msgstr ""
1525
 
1526
+ #: ../admin/social_sharing.php:2000 ../admin/like_buttons.php:814
1527
  msgid "How to Place Title and Social Share Icons in the Same Row?"
1528
  msgstr ""
1529
 
1530
+ #: ../admin/social_sharing.php:2001
1531
  msgid ""
1532
  "How to restore Social Share counts lost after moving my website to SSL/Https?"
1533
  msgstr ""
1534
 
1535
+ #: ../admin/social_sharing.php:2002 ../admin/social_commenting.php:402
1536
+ #: ../admin/social_login.php:1302
1537
  msgid "Why is my browser blocking some features of the plugin?"
1538
  msgstr "Чому мій браузер блокує деякі функції плагіна?"
1539
 
1540
+ #: ../admin/social_sharing.php:2003
1541
  #, fuzzy
1542
  msgid "Why the color of share icons is not being updated?"
1543
  msgstr "Чому лічильники Фейсбуку поділитися не оновлюються?"
1544
 
1545
+ #: ../admin/social_sharing.php:2004
1546
  msgid "Why Facebook share counts are not appearing?"
1547
  msgstr "Чому лічильники Фейсбуку поділитися не оновлюються?"
1548
 
1549
+ #: ../admin/social_sharing.php:2005
1550
  msgid ""
1551
  "How can I show share counts of my website rather than of individual pages/"
1552
  "posts?"
1554
  "Як мені відобразити загальну кількість Поділитися засноване на сторінках / "
1555
  "постах?"
1556
 
1557
+ #: ../admin/social_sharing.php:2006
1558
  msgid "How can I disable sharing on particular page/post?"
1559
  msgstr ""
1560
  "Як можна відключити кнопки Поділитися на конкретній сторінці або в пості?"
1561
 
1562
+ #: ../admin/social_sharing.php:2007
1563
  msgid "How can I specify minimum sharing count for sharing networks?"
1564
  msgstr "Як мені вказати мінімальну кількість для Поділитися"
1565
 
1566
+ #: ../admin/social_sharing.php:2008
1567
  msgid "How to share specific page?"
1568
  msgstr "Як поділитися певною сторінкою?"
1569
 
1570
+ #: ../admin/social_sharing.php:2009
1571
  msgid "How to integrate Google Analytics with sharing?"
1572
  msgstr "Як інтегрувати Google Analytics з Поділитися?"
1573
 
1574
+ #: ../admin/social_sharing.php:2010
1575
  msgid "How to customize the look of total share counts?"
1576
  msgstr "Як налаштувати зовнішній вигляд лічильників Поділитися?"
1577
 
1578
+ #: ../admin/social_sharing.php:2011
1579
  msgid "How to customize the look of individual share counts?"
1580
  msgstr "Як налаштувати зовнішній вигляд окремих лічильників Поділитися?"
1581
 
1582
+ #: ../admin/social_sharing.php:2012
1583
  msgid "How to show Whatsapp icon only on mobile devices?"
1584
  msgstr "Як показати іконку Whatsapp тільки на мобільних пристроях?"
1585
 
1586
+ #: ../admin/social_sharing.php:2013
1587
  msgid "How to hide arrow after floating sharing bar?"
1588
  msgstr "Як приховати стрілку після плаваючих кнопок Поділитися?"
1589
 
1590
+ #: ../admin/social_sharing.php:2014
1591
  #, fuzzy
1592
  msgid "Why is share count not getting updated?"
1593
  msgstr "Чому лічильники Фейсбуку поділитися не оновлюються?"
1594
 
1595
+ #: ../admin/social_sharing.php:2015 ../admin/like_buttons.php:812
1596
  msgid "Why is there so much space between like buttons?"
1597
  msgstr "Чому існує так багато місця між кнопками?"
1598
 
1599
+ #: ../admin/social_sharing.php:2016 ../admin/like_buttons.php:813
1600
  msgid "Why are floating sharing/like buttons not appearing at homepage?"
1601
  msgstr ""
1602
  "Чому плаваюча панель Поділитися / Подобається не відображаються на головній "
1854
  msgid "GDPR"
1855
  msgstr ""
1856
 
1857
+ #: ../admin/social_login.php:44 ../admin/social_login.php:1230
1858
  msgid "XProfile Integration"
1859
  msgstr "XProfile інтеграція"
1860
 
2597
  msgstr "Активувати коментування через Disqus"
2598
 
2599
  #: ../admin/social_login.php:1135
2600
+ msgid "Text to link to Terms-Conditions page"
2601
  msgstr ""
2602
 
2603
  #: ../admin/social_login.php:1145
2604
+ msgid "Word(s) in the opt-in text to be linked to terms-conditions page"
2605
  msgstr ""
2606
 
2607
  #: ../admin/social_login.php:1153
2608
+ msgid "Terms-Conditions Url"
2609
  msgstr ""
2610
 
2611
  #: ../admin/social_login.php:1163
2612
  #, fuzzy
2613
+ msgid "Url of the terms-conditions page of your website"
2614
+ msgstr "URL-адреса домашньої сторінки вашого веб-сайту"
2615
+
2616
+ #: ../admin/social_login.php:1171
2617
+ msgid "Text to link to Privacy Policy page"
2618
+ msgstr ""
2619
+
2620
+ #: ../admin/social_login.php:1181
2621
+ msgid "Word(s) in the opt-in text to be linked to privacy policy page"
2622
+ msgstr ""
2623
+
2624
+ #: ../admin/social_login.php:1189
2625
+ msgid "Privacy Policy Url"
2626
+ msgstr ""
2627
+
2628
+ #: ../admin/social_login.php:1199
2629
+ #, fuzzy
2630
  msgid "Url of the privacy policy page of your website"
2631
  msgstr "URL-адреса домашньої сторінки вашого веб-сайту"
2632
 
2633
+ #: ../admin/social_login.php:1250 ../inc/widget.php:260 ../inc/widget.php:438
2634
  #: ../inc/widget.php:602 ../inc/widget.php:750
2635
  msgid "Select"
2636
  msgstr "Вибір"
2637
 
2638
+ #: ../admin/social_login.php:1281
2639
  msgid "Social Login Shortcode & Widget"
2640
  msgstr "Шорткод і віджет для входу через соцмережі"
2641
 
2642
+ #: ../admin/social_login.php:1282
2643
  msgid "Social Linking Shortcode"
2644
  msgstr "Шорткод соціальних посилань"
2645
 
2646
+ #: ../admin/social_login.php:1297
2647
  #, fuzzy
2648
  msgid "Why is social login not working?"
2649
  msgstr "Чому Facebook Логін не працює?"
2650
 
2651
+ #: ../admin/social_login.php:1298
2652
  msgid ""
2653
  "Make sure that App ID and Secret (Client ID and Secret) keys you have saved, "
2654
  "belong to the same app"
2655
  msgstr ""
2656
 
2657
+ #: ../admin/social_login.php:1300
2658
  msgid "Social Login not working with Varnish enabled"
2659
  msgstr ""
2660
 
2661
+ #: ../admin/social_login.php:1301
2662
  msgid ""
2663
  "Why the user is not appearing logged in even after Social Login until the "
2664
  "webpage is refreshed manually?"
3198
  msgid "RSS Feed URL:"
3199
  msgstr ""
3200
 
3201
+ #~ msgid ""
3202
+ #~ "Make sure that \"Enable Callback Locking\" option is disabled. See step 4 "
3203
+ #~ "%s"
3204
+ #~ msgstr ""
3205
+ #~ "Переконайтеся, що «Включити Блокування зворотного виклику» параметр "
3206
+ #~ "відключений. Дивіться крок 4% s"
3207
+
3208
+ #~ msgid ""
3209
+ #~ "Show popup notification to users if their browsers block the plugin "
3210
+ #~ "features"
3211
+ #~ msgstr ""
3212
+ #~ "Показати спливаюче повідомлення для користувачів, якщо їх браузери "
3213
+ #~ "блокують функції плагіна"
3214
+
3215
+ #, fuzzy
3216
+ #~ msgid ""
3217
+ #~ "If enabled, your website visitors will see a popup notification (only "
3218
+ #~ "once) if their browsers block any of the features of the plugin so that "
3219
+ #~ "they can change their browser settings to unblock these."
3220
+ #~ msgstr ""
3221
+ #~ "Якщо включено, відвідувачі вашого сайту побачать спливаюче повідомлення, "
3222
+ #~ "якщо їх браузери блокують будь-яку з функцій плагіна, так що вони можуть "
3223
+ #~ "змінити свої настройки браузера, щоб розблокувати функції."
3224
+
3225
+ #~ msgid "Message to show in popup notification"
3226
+ #~ msgstr "Повідомлення для показу в спливаючому вікні"
3227
+
3228
+ #~ msgid ""
3229
+ #~ "Use {support_url} placeholder to show support documentation url in message"
3230
+ #~ msgstr ""
3231
+ #~ "Використовуйте {support_url} для відображення URL-адреси технічної "
3232
+ #~ "документації в повідомленні"
3233
+
3234
  #~ msgid "Label for G+ Commenting tab"
3235
  #~ msgstr "Поле для коментування через Google+"
3236
 
languages/super-socializer-zh_CN.mo CHANGED
Binary file
languages/super-socializer-zh_CN.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Super Socializer\n"
4
- "POT-Creation-Date: 2019-06-25 11:54+0530\n"
5
- "PO-Revision-Date: 2019-06-25 11:54+0530\n"
6
  "Last-Translator: Heateor <hello@heateor.com>\n"
7
  "Language-Team: 汤小贤 <calmsmile@aliyun.com>\n"
8
  "Language: zh_CN\n"
@@ -21,25 +21,25 @@ msgstr ""
21
  "X-Poedit-SearchPathExcluded-0: *.js\n"
22
  "X-Poedit-SearchPath-0: .\n"
23
 
24
- #: super_socializer.php:430
25
  msgid "Problem fetching access token: "
26
  msgstr "获取access token的问题:"
27
 
28
- #: super_socializer.php:434 super_socializer.php:448
29
  msgid "Facebook SDK returned an error: "
30
  msgstr "facebook sdk 返回了一个错误:"
31
 
32
- #: super_socializer.php:444
33
  msgid "Graph returned an error: "
34
  msgstr ""
35
 
36
- #: super_socializer.php:610
37
  msgid ""
38
  "cURL is not enabled at your website server. Please contact your website "
39
  "server administrator to enable it."
40
  msgstr "在您的网站服务器上未启用 curl。请与您的网站服务器管理员联系以启用它。"
41
 
42
- #: super_socializer.php:637
43
  #, php-format
44
  msgid ""
45
  "Enter exactly the following url in <strong>Website</strong> option in your "
@@ -48,7 +48,7 @@ msgstr ""
48
  "在 twitter 应用中的 <strong> 网站 </strong> 选项中输入以下 url (请参阅步骤 3 "
49
  "%s)"
50
 
51
- #: super_socializer.php:640
52
  #, php-format
53
  msgid ""
54
  "Enter exactly the following url in <strong>Callback URLs</strong> option in "
@@ -57,142 +57,128 @@ msgstr ""
57
  "在 twitter 应用中 <strong> 回调 url </strong> 选项中输入以下 url (请参阅步骤 "
58
  "3 %s)"
59
 
60
- #: super_socializer.php:643
61
  msgid ""
62
  "Make sure cURL is enabled at your website server. You may need to contact "
63
  "the server administrator of your website to verify this"
64
  msgstr ""
65
  "请确保在您的网站服务器上启用了cURL。对此,请您与您的网站的服务器管理员核实。"
66
 
67
- #: super_socializer.php:644
68
- #, php-format
69
- msgid ""
70
- "Make sure that \"Enable Callback Locking\" option is disabled. See step 4 %s"
71
- msgstr "确保禁用 \"启用回调锁定\" 选项。请参阅步骤 4 %s"
72
-
73
- #: super_socializer.php:907 helper.php:976
74
  msgid "Please verify your email address to login."
75
  msgstr "请验证您的电子邮件地址以便登录。"
76
 
77
- #: super_socializer.php:907
78
  msgid "Your email has been verified. Now you can login to your account"
79
  msgstr "您的电子邮件已验证。现在你可以登录到您的帐户"
80
 
81
- #: super_socializer.php:911
82
  msgid "Notification"
83
  msgstr "通知"
84
 
85
- #: super_socializer.php:929 admin/social_login.php:805
86
  msgid "Email required"
87
  msgstr "邮件地址(比选)"
88
 
89
- #: super_socializer.php:932
90
  msgid "Please check your email inbox to complete the registration."
91
  msgstr "请检查您的电子邮件收件箱以完成注册。"
92
 
93
- #: super_socializer.php:939 helper.php:508
94
  msgid "Enter your LiveJournal username"
95
  msgstr "输入您的 LiveJournal 用户名"
96
 
97
- #: super_socializer.php:1011
98
  msgid "Leave a reply"
99
  msgstr "回复"
100
 
101
- #: super_socializer.php:1023 inc/social_sharing.php:241
102
  msgid "Shares"
103
  msgstr "分享"
104
 
105
- #: super_socializer.php:1023 inc/social_sharing.php:241
106
  msgid "Share"
107
  msgstr "分享"
108
 
109
- #: super_socializer.php:1023
110
  msgid "Link copied."
111
  msgstr "链接已复制。"
112
 
113
- #: super_socializer.php:1269
114
  msgid "Super Socializer - General Options"
115
  msgstr "Super Socializer-常规选项"
116
 
117
- #: super_socializer.php:1269 admin/general_options.php:15
118
  #: admin/social_commenting.php:47
119
  msgid "General Options"
120
  msgstr "常规选项"
121
 
122
- #: super_socializer.php:1337 helper.php:898
123
  msgid "Social Avatar"
124
  msgstr "社会化头像"
125
 
126
- #: super_socializer.php:1340
127
  msgid "Small Avatar Url"
128
  msgstr "小头像 Url"
129
 
130
- #: super_socializer.php:1344
131
  msgid "Large Avatar Url"
132
  msgstr "大头像 Url"
133
 
134
- #: super_socializer.php:1348 helper.php:901
135
  msgid ""
136
  "Do not fetch and update social avatar from my profile, next time I Social "
137
  "Login"
138
  msgstr "不从我的个人资料里获取及更新社会化头像,下次社会化登录"
139
 
140
- #: super_socializer.php:1352 helper.php:902
141
  msgid "Update social avatar, next time I Social Login"
142
  msgstr "更新社会化头像,下次社会化登录"
143
 
144
- #: super_socializer.php:1425 super_socializer.php:2197
145
- msgid ""
146
- "Your browser is blocking some features of this website. Please follow the "
147
- "instructions at {support_url} to unblock these."
148
- msgstr ""
149
- "您的浏览器正在阻止此网站的某些功能。请按照 {支持 _ url} 中的说明取消阻止这些"
150
- "操作。"
151
-
152
- #: super_socializer.php:1431
153
  msgid "Login with your Social ID"
154
  msgstr "使用您的社交 ID登录"
155
 
156
- #: super_socializer.php:1432
157
  msgid "Email you entered is already registered or invalid"
158
  msgstr "您输入的电子邮件已经注册或无效"
159
 
160
- #: super_socializer.php:1437
161
  msgid "Please enter a valid email address. You might be required to verify it"
162
  msgstr "请输入一个有效的电子邮件地址。您可能需要验证它"
163
 
164
- #: super_socializer.php:1441 super_socializer.php:2121
165
  msgid "Link your social account to login to your account at this website"
166
  msgstr "链接你的社会化媒体帐户登录您本站账号"
167
 
168
- #: super_socializer.php:1687
169
  msgid "Thanks for installing Super Socializer plugin"
170
  msgstr ""
171
 
172
- #: super_socializer.php:1689
173
  msgid "Configure the Plugin"
174
  msgstr ""
175
 
176
- #: super_socializer.php:1700
177
  msgid ""
178
  "Update \"Facebook Comments Moderation\" add-on for compatibility with "
179
  "current version of Super Socialzer"
180
  msgstr "更新 \"facebook 评论审核\" 加载项与当前版本的Super Socialzer"
181
 
182
- #: super_socializer.php:1709
183
  msgid ""
184
  "Update \"Facebook Comments Notifier\" add-on for compatibility with current "
185
  "version of Super Socialzer"
186
  msgstr ""
187
  "更新 \"facebook 评论通知程序\" 加载项, 以与当前版本的超级社交提供兼容性"
188
 
189
- #: super_socializer.php:1718
190
  msgid ""
191
  "Update \"Social Login Buttons\" add-on for compatibility with current "
192
  "version of Super Socialzer"
193
  msgstr "更新 \"社交登录按钮\" 加载项与当前版本的超级社交器兼容"
194
 
195
- #: super_socializer.php:1727
196
  msgid ""
197
  "Update \"Social Share myCRED Integration\" add-on for maximum compatibility "
198
  "with current version of Super Socialzer"
@@ -200,20 +186,20 @@ msgstr ""
200
  "更新 \"社交分享 mycred 集成\" 加载项, 以最大限度地与当前版本的超级社交提供兼"
201
  "容"
202
 
203
- #: super_socializer.php:1736
204
  msgid ""
205
  "Update \"Social Login myCRED Integration\" add-on for maximum compatibility "
206
  "with current version of Super Socialzer"
207
  msgstr ""
208
  "更新 \"社交登录 mycred 集成\" 加载项, 以最大限度地兼容当前版本的超级社交"
209
 
210
- #: super_socializer.php:1743
211
  msgid ""
212
  "Update \"Social Login myCRED Integration\" add-on for compatibility with "
213
  "LiveJournal Login of Super Socialzer"
214
  msgstr "更新 \"社交登录 mycred 集成\" 加载项与超级社交器的 livejoin 登录兼容"
215
 
216
- #: super_socializer.php:1754
217
  #, php-format
218
  msgid ""
219
  "To continue using Steam login save Steam API key <a href=\"%s\">here</a>"
@@ -221,13 +207,13 @@ msgstr ""
221
  "要继续使用 steam 登录, 请保存 steam api 密钥 < a href = \" %s\" >, 请点击此"
222
  "处 </a>"
223
 
224
- #: super_socializer.php:1770
225
  #, php-format
226
  msgid ""
227
  "To continue using Social Login, save the secret keys <a href=\"%s\">here</a>"
228
  msgstr "若要继续使用社交登录, 请在此处保存密钥 < ref = \" %s\" > </a>"
229
 
230
- #: super_socializer.php:1794
231
  #, php-format
232
  msgid ""
233
  "Add %s in \"Valid OAuth redirect URIs\" option in your Facebook app settings "
@@ -238,14 +224,14 @@ msgstr ""
238
  "facebook 登录正常工作。有关更多详细信息, 请在此处检查步骤 9 < ref = \" %s\" "
239
  "target = \"_ black\" > </a>"
240
 
241
- #: super_socializer.php:1794 super_socializer.php:1819
242
- #: super_socializer.php:1844 super_socializer.php:1869
243
- #: super_socializer.php:1902 super_socializer.php:1930
244
- #: super_socializer.php:1957 super_socializer.php:2034
245
  msgid "Okay"
246
  msgstr "好的"
247
 
248
- #: super_socializer.php:1819
249
  #, php-format
250
  msgid ""
251
  "Add %s in \"Callback URLs\" option in your Twitter app settings for Twitter "
@@ -256,7 +242,7 @@ msgstr ""
256
  "关更多详细信息, 请在此处检查步骤 4 < ref = \" %s\" target = \"_ black\" > </"
257
  "a>"
258
 
259
- #: super_socializer.php:1844
260
  #, php-format
261
  msgid ""
262
  "Add %s in \"Authorized Redirect URLs\" option in your Linkedin app settings "
@@ -267,7 +253,7 @@ msgstr ""
267
  "正常工作。有关更多详细信息, 请在此处检查步骤 4 < ref = \" %s\" target = \"_ "
268
  "black\" > </a>"
269
 
270
- #: super_socializer.php:1869
271
  #, php-format
272
  msgid ""
273
  "Add %s in \"Authorized redirect URIs\" option in your Google client settings "
@@ -278,13 +264,13 @@ msgstr ""
278
  "常工作。有关更多详细信息, 请在此处检查步骤 11 < ref = \" %s\" target = \"_ "
279
  "black\" > </a>"
280
 
281
- #: super_socializer.php:1880
282
  #, php-format
283
  msgid ""
284
  "Save the url of privacy policy page of your website <a href=\"%s\">here</a>"
285
  msgstr "保存您的网站 < reof = \" %s\" 的隐私政策页面的网址 </a>"
286
 
287
- #: super_socializer.php:1902
288
  #, php-format
289
  msgid ""
290
  "This plugin is GDPR compliant. You need to update the privacy policy of your "
@@ -294,7 +280,7 @@ msgstr ""
294
  "这个插件是符合GDPR的。您需要更新网站有关此插件保存的个人数据的隐私政策。如 "
295
  "<a href=\"%s\" target=\"_blank\">这里</a>所述"
296
 
297
- #: super_socializer.php:1930
298
  #, php-format
299
  msgid ""
300
  "Now plugin supports a new service Twitcount.com to show Twitter shares. To "
@@ -303,7 +289,7 @@ msgid ""
303
  "your website %s with them. No need to copy-paste any code from their website."
304
  msgstr ""
305
 
306
- #: super_socializer.php:1957
307
  #, php-format
308
  msgid ""
309
  "Replace url saved in \"Callback URLs\" option in your Twitter app settings "
@@ -314,7 +300,7 @@ msgstr ""
314
  "工作。有关更多详细信息, 请在此处检查步骤 4 < ref = \" %s\" target = \"_ black"
315
  "\" > </a>"
316
 
317
- #: super_socializer.php:1982
318
  #, fuzzy, php-format
319
  msgid ""
320
  "If you cannot get Linkedin login to work after updating the plugin, replace "
@@ -325,11 +311,11 @@ msgstr ""
325
  "正常工作。有关更多详细信息, 请在此处检查步骤 4 < ref = \" %s\" target = \"_ "
326
  "black\" > </a>"
327
 
328
- #: super_socializer.php:1982 super_socializer.php:2009
329
  msgid "Dismiss"
330
  msgstr ""
331
 
332
- #: super_socializer.php:2008
333
  #, php-format
334
  msgid ""
335
  "Save Facebook App ID and Secret keys in \"Standard Interface\" and/or "
@@ -338,7 +324,7 @@ msgid ""
338
  "that, clear share counts cache from \"Miscellaneous\" section"
339
  msgstr ""
340
 
341
- #: super_socializer.php:2034
342
  #, php-format
343
  msgid ""
344
  "Your website visitors will see a popup notification (only once) if their "
@@ -352,11 +338,19 @@ msgstr ""
352
  "知给用户, 如果他们的浏览器阻止插件功能\" 选项 < a href = \" %s\" > 在这里 </"
353
  "a>"
354
 
 
 
 
 
 
 
 
 
355
  #: helper.php:8
356
  msgid "Settings saved"
357
  msgstr "设置已保存"
358
 
359
- #: helper.php:8 admin/social_sharing.php:42
360
  msgid "Dismiss this notice"
361
  msgstr "关闭该通知"
362
 
@@ -444,8 +438,8 @@ msgstr "小头像"
444
  msgid "Large Avatar"
445
  msgstr "大头像"
446
 
447
- #: helper.php:913 admin/general_options.php:132 admin/social_sharing.php:2020
448
- #: admin/social_commenting.php:413 admin/social_login.php:1277
449
  #: admin/like_buttons.php:826
450
  msgid "Save Changes"
451
  msgstr "保存更改"
@@ -466,10 +460,10 @@ msgstr "已删除"
466
  msgid "Something bad happened"
467
  msgstr "发生了一些不好的事情"
468
 
469
- #: admin/general_options.php:7 admin/general_options.php:136
470
- #: admin/social_sharing.php:5 admin/social_sharing.php:2024
471
  #: admin/social_commenting.php:5 admin/social_commenting.php:417
472
- #: admin/social_login.php:5 admin/social_login.php:1281
473
  #: admin/like_buttons.php:6 admin/like_buttons.php:830
474
  #, fuzzy, php-format
475
  msgid ""
@@ -508,45 +502,22 @@ msgid ""
508
  msgstr "如果启用,当插件被删除或卸载,下次安装,您将需要重新配置选项."
509
 
510
  #: admin/general_options.php:75
511
- msgid ""
512
- "Show popup notification to users if their browsers block the plugin features"
513
- msgstr "如果用户的浏览器阻止插件功能, 则向用户显示弹出通知"
514
-
515
- #: admin/general_options.php:85
516
- msgid ""
517
- "If enabled, your website visitors will see a popup notification (only once) "
518
- "if their browsers block any of the features of the plugin so that they can "
519
- "change their browser settings to unblock these."
520
- msgstr ""
521
- "如果启用, 您的网站访问者将看到弹出通知 (只有一次), 如果他们的浏览器阻止插件的"
522
- "任何功能, 以便他们可以更改他们的浏览器设置, 以取消阻止这些。"
523
-
524
- #: admin/general_options.php:95
525
- msgid "Message to show in popup notification"
526
- msgstr "要在弹出通知中显示的消息"
527
-
528
- #: admin/general_options.php:105
529
- msgid ""
530
- "Use {support_url} placeholder to show support documentation url in message"
531
- msgstr "使用 {支持 _ url} 占位符在消息中显示支持文档 url"
532
-
533
- #: admin/general_options.php:114
534
  msgid "Custom CSS"
535
  msgstr "自定义CSS"
536
 
537
- #: admin/general_options.php:124
538
  msgid "You can specify any additional CSS rules (without &lt;style&gt; tag)"
539
  msgstr "您可以指定任何额外的 CSS 规则(无需 &lt;style&gt; tag)"
540
 
541
- #: admin/general_options.php:147 admin/social_sharing.php:2030
542
- #: admin/social_commenting.php:423 admin/social_login.php:1287
543
- #: admin/like_buttons.php:836
544
  msgid "Instagram Shoutout"
545
  msgstr ""
546
 
547
- #: admin/general_options.php:149 admin/social_sharing.php:2032
548
- #: admin/social_commenting.php:425 admin/social_login.php:1289
549
- #: admin/like_buttons.php:838
550
  msgid ""
551
  "If you can send (to hello@heateor.com) how our plugin is helping your "
552
  "business, we can share it on Instagram. You can also send any relevant "
@@ -555,9 +526,9 @@ msgstr ""
555
  "如果您可以发送(至hello@heateor.com)我们的插件如何帮助您的业务,我们可以在"
556
  "Instagram上分享它。 您还可以在Instagram帖子中发送任何相关的标签和人物。"
557
 
558
- #: admin/general_options.php:150 admin/social_sharing.php:2033
559
- #: admin/social_commenting.php:426 admin/social_login.php:1290
560
- #: admin/like_buttons.php:839
561
  msgid ""
562
  "<b>Example</b> - Blah-Blah Online Coaching teaches various programming "
563
  "language courses through their website. They have emerged as one of the most "
@@ -569,9 +540,9 @@ msgstr ""
569
  "年里,他们已经成为最受欢迎的在线教练网站之一。任何人都可以在短时间内以一种非"
570
  "常简单的方式精通自己选择的编程语言。"
571
 
572
- #: admin/general_options.php:151 admin/social_sharing.php:2034
573
- #: admin/social_commenting.php:427 admin/social_login.php:1291
574
- #: admin/like_buttons.php:840
575
  msgid ""
576
  "@blahblahonlinecoaching proudly use #SuperSocializer to enable social "
577
  "features at their website, such as - Social Login, Social Share and Social "
@@ -684,137 +655,137 @@ msgstr "主控件,以使社交共享"
684
  msgid "Recover Social Share Counts Lost After Moving to SSL/Https"
685
  msgstr "恢复社交股计数移动到 ssl/http 后丢失"
686
 
687
- #: admin/social_sharing.php:42 admin/social_sharing.php:1983
688
  msgid ""
689
  "Save Facebook App Id and Secret in the \"Miscellaneous\" section for "
690
  "Facebook share count to work"
691
  msgstr ""
692
 
693
- #: admin/social_sharing.php:49
694
  msgid "Theme Selection"
695
  msgstr "主题选择"
696
 
697
- #: admin/social_sharing.php:50 admin/like_buttons.php:41
698
  msgid "Standard Interface"
699
  msgstr "标准接口"
700
 
701
- #: admin/social_sharing.php:51 admin/like_buttons.php:42
702
  msgid "Floating Interface"
703
  msgstr "浮动接口"
704
 
705
- #: admin/social_sharing.php:52 admin/like_buttons.php:43
706
  msgid "Miscellaneous"
707
  msgstr "其他"
708
 
709
- #: admin/social_sharing.php:56 admin/like_buttons.php:47
710
  msgid "3rd Party Integration"
711
  msgstr "第三方集成"
712
 
713
- #: admin/social_sharing.php:60 admin/social_sharing.php:1945
714
- #: admin/social_sharing.php:1947 admin/social_login.php:46
715
- #: admin/social_login.php:1243 admin/like_buttons.php:51
716
  #: admin/like_buttons.php:797
717
  msgid "Shortcode & Widget"
718
  msgstr "简码&小工具"
719
 
720
- #: admin/social_sharing.php:61
721
  msgid "Troubleshooter"
722
  msgstr "排错"
723
 
724
- #: admin/social_sharing.php:62 admin/social_sharing.php:1978
725
  #: admin/social_commenting.php:40 admin/social_commenting.php:397
726
- #: admin/social_login.php:47 admin/social_login.php:1257
727
  #: admin/like_buttons.php:52 admin/like_buttons.php:810
728
  msgid "FAQ"
729
  msgstr "常见问题解答"
730
 
731
- #: admin/social_sharing.php:70
732
  msgid "Standard interface theme"
733
  msgstr "标准接口主题"
734
 
735
- #: admin/social_sharing.php:75 admin/social_sharing.php:382
736
  msgid "Icon Preview"
737
  msgstr "图标预览"
738
 
739
- #: admin/social_sharing.php:147 admin/social_sharing.php:455
740
  msgid ""
741
  "Do not forget to save the configuration after making changes by clicking the "
742
  "save button below"
743
  msgstr "更改后不要忘记单击下面的保存按钮以保存下面存配置"
744
 
745
- #: admin/social_sharing.php:154 admin/social_sharing.php:462
746
  msgid "Shape"
747
  msgstr "形状"
748
 
749
- #: admin/social_sharing.php:158 admin/social_sharing.php:466
750
  #: inc/widget.php:951
751
  msgid "Round"
752
  msgstr "圆"
753
 
754
- #: admin/social_sharing.php:160 admin/social_sharing.php:468
755
  #: inc/widget.php:952
756
  msgid "Square"
757
  msgstr "正方形"
758
 
759
- #: admin/social_sharing.php:162 admin/social_sharing.php:470
760
  msgid "Rectangle"
761
  msgstr "矩形"
762
 
763
- #: admin/social_sharing.php:169 admin/social_sharing.php:477
764
  msgid "Shape of the sharing icons"
765
  msgstr "共享图标的形状"
766
 
767
- #: admin/social_sharing.php:178 admin/social_sharing.php:486
768
  msgid "Size (in pixels)"
769
  msgstr "大小 (以像素为单位)"
770
 
771
- #: admin/social_sharing.php:194 admin/social_sharing.php:502
772
  msgid "Size of the sharing icons"
773
  msgstr "共享图标的大小"
774
 
775
- #: admin/social_sharing.php:204 admin/social_sharing.php:512
776
  msgid "Width (in pixels)"
777
  msgstr "宽度(px)"
778
 
779
- #: admin/social_sharing.php:220 admin/social_sharing.php:528
780
  msgid "Width of the sharing icons"
781
  msgstr "共享图标宽度"
782
 
783
- #: admin/social_sharing.php:228 admin/social_sharing.php:536
784
  msgid "Height (in pixels)"
785
  msgstr "高度(像素)"
786
 
787
- #: admin/social_sharing.php:244 admin/social_sharing.php:552
788
  msgid "Height of the sharing icons"
789
  msgstr "共享图标高度"
790
 
791
- #: admin/social_sharing.php:254 admin/social_sharing.php:562
792
  msgid "Border radius (in pixels)"
793
  msgstr "(以像素为单位) 的边界半径"
794
 
795
- #: admin/social_sharing.php:264 admin/social_sharing.php:572
796
  msgid ""
797
  "Specify a value for rounded corners. More the value, more rounded will the "
798
  "corners be. Leave empty for sharp corners."
799
  msgstr "定义圆角的值。值越大,圆角越园。留空为尖角。"
800
 
801
- #: admin/social_sharing.php:273 admin/social_sharing.php:581
802
  msgid "Logo Color"
803
  msgstr "logo颜色"
804
 
805
- #: admin/social_sharing.php:277 admin/social_sharing.php:298
806
- #: admin/social_sharing.php:318 admin/social_sharing.php:585
807
- #: admin/social_sharing.php:606 admin/social_sharing.php:625
808
  msgid "Default"
809
  msgstr "默认"
810
 
811
- #: admin/social_sharing.php:279 admin/social_sharing.php:299
812
- #: admin/social_sharing.php:323 admin/social_sharing.php:587
813
- #: admin/social_sharing.php:607 admin/social_sharing.php:630
814
  msgid "On Hover"
815
  msgstr "鼠标悬停"
816
 
817
- #: admin/social_sharing.php:287 admin/social_sharing.php:595
818
  msgid ""
819
  "Specify the color or hex code (example #cc78e0) for the logo of icon. Leave "
820
  "empty for default. You can get the hex code of the required color from <a "
@@ -824,13 +795,13 @@ msgstr ""
824
  "href=“http://www.colorpicker.com/“ target=“_blank”>这个链接</a>获得所需的颜色"
825
  "的十六进制代码"
826
 
827
- #: admin/social_sharing.php:295 admin/social_sharing.php:603
828
- #: admin/social_sharing.php:1318 admin/like_buttons.php:410 inc/widget.php:460
829
  #: inc/widget.php:772
830
  msgid "Background Color"
831
  msgstr "背景颜色"
832
 
833
- #: admin/social_sharing.php:306 admin/social_sharing.php:614
834
  msgid ""
835
  "Specify the color or hex code (example #cc78e0) for icon background. Save "
836
  "\"transparent\" for transparent background. Leave empty for default. You can "
@@ -841,270 +812,270 @@ msgstr ""
841
  "为默认。你可以从<a href=“http://www.colorpicker.com/“ target=“_blank”>这个链"
842
  "接</a>获得所需的颜色的十六进制代码"
843
 
844
- #: admin/social_sharing.php:314 admin/social_sharing.php:622
845
  msgid "Border"
846
  msgstr "边框"
847
 
848
- #: admin/social_sharing.php:320 admin/social_sharing.php:325
849
- #: admin/social_sharing.php:627 admin/social_sharing.php:632
850
  msgid "Border Width"
851
  msgstr "边框宽度"
852
 
853
- #: admin/social_sharing.php:321 admin/social_sharing.php:326
854
- #: admin/social_sharing.php:628 admin/social_sharing.php:633
855
  msgid "Border Color"
856
  msgstr "边框颜色"
857
 
858
- #: admin/social_sharing.php:333 admin/social_sharing.php:640
859
  msgid "Icon border"
860
  msgstr "图标边框"
861
 
862
- #: admin/social_sharing.php:341 admin/social_sharing.php:648
863
  msgid "Counter Position"
864
  msgstr "计数器的位置"
865
 
866
- #: admin/social_sharing.php:341 admin/social_sharing.php:648
867
  msgid "(applies, if counter enabled)"
868
  msgstr "(适用,如果启用计数器)"
869
 
870
- #: admin/social_sharing.php:345 admin/social_sharing.php:652
871
- #: admin/social_sharing.php:935 admin/social_sharing.php:1340
872
  #: admin/like_buttons.php:183 admin/like_buttons.php:432 inc/widget.php:446
873
  #: inc/widget.php:758
874
  msgid "Left"
875
  msgstr "左边"
876
 
877
- #: admin/social_sharing.php:347 admin/social_sharing.php:654
878
  msgid "Top"
879
  msgstr "顶部"
880
 
881
- #: admin/social_sharing.php:349 admin/social_sharing.php:656
882
- #: admin/social_sharing.php:937 admin/social_sharing.php:1341
883
  #: admin/like_buttons.php:185 admin/like_buttons.php:433 inc/widget.php:447
884
  #: inc/widget.php:759
885
  msgid "Right"
886
  msgstr "右侧"
887
 
888
- #: admin/social_sharing.php:351 admin/social_sharing.php:658
889
  msgid "Bottom"
890
  msgstr "居下"
891
 
892
- #: admin/social_sharing.php:353 admin/social_sharing.php:660
893
  msgid "Inner Left"
894
  msgstr "内左"
895
 
896
- #: admin/social_sharing.php:355 admin/social_sharing.php:662
897
  msgid "Inner Top"
898
  msgstr "内顶"
899
 
900
- #: admin/social_sharing.php:357 admin/social_sharing.php:664
901
  msgid "Inner Right"
902
  msgstr "内右"
903
 
904
- #: admin/social_sharing.php:359 admin/social_sharing.php:666
905
  msgid "Inner Bottom"
906
  msgstr "内底"
907
 
908
- #: admin/social_sharing.php:367 admin/social_sharing.php:674
909
  msgid "Position of share counter"
910
  msgstr "共享计数器的位置"
911
 
912
- #: admin/social_sharing.php:377
913
  msgid "Floating interface theme"
914
  msgstr "浮动的界面主题"
915
 
916
- #: admin/social_sharing.php:690
917
  msgid "Standard Sharing Interface Options"
918
  msgstr "标准共享界面选项"
919
 
920
- #: admin/social_sharing.php:696
921
  msgid "Enable Standard sharing interface"
922
  msgstr "启用共享接口标准"
923
 
924
- #: admin/social_sharing.php:706
925
  msgid "Master control to enable standard sharing"
926
  msgstr "主控件以启用标准共享"
927
 
928
- #: admin/social_sharing.php:716 admin/social_sharing.php:1144
929
  #: admin/like_buttons.php:86 admin/like_buttons.php:336
930
  msgid "Target Url"
931
  msgstr "目标URL"
932
 
933
- #: admin/social_sharing.php:720 admin/social_sharing.php:1148
934
  #: admin/like_buttons.php:90 admin/like_buttons.php:340
935
  msgid "Url of the webpage where icons are located (default)"
936
  msgstr "图标所在网页的Url (默认值)"
937
 
938
- #: admin/social_sharing.php:722 admin/social_sharing.php:1150
939
  #: admin/like_buttons.php:92 admin/like_buttons.php:342
940
  msgid "Url of the homepage of your website"
941
  msgstr "您网站的主页的 Url"
942
 
943
- #: admin/social_sharing.php:724 admin/social_sharing.php:1152
944
  #: admin/like_buttons.php:94 admin/like_buttons.php:344
945
  msgid "Custom url"
946
  msgstr "自定义 URL"
947
 
948
- #: admin/social_sharing.php:731 admin/social_sharing.php:1159
949
  msgid "Url to share"
950
  msgstr "要分享的网址"
951
 
952
- #: admin/social_sharing.php:739 admin/social_login.php:532
953
  #: admin/social_login.php:927 admin/like_buttons.php:109 inc/widget.php:945
954
  msgid "Title"
955
  msgstr "标题"
956
 
957
- #: admin/social_sharing.php:749
958
  msgid "The text to display above the sharing interface"
959
  msgstr "要共享界面上方显示的文本"
960
 
961
- #: admin/social_sharing.php:774 admin/social_sharing.php:1168
962
  msgid "Instagram username"
963
  msgstr ""
964
 
965
- #: admin/social_sharing.php:784 admin/social_sharing.php:1178
966
  msgid ""
967
  "Username of the Instagram account you want to redirect users to, on clicking "
968
  "the icon"
969
  msgstr "要将用户重定向到的 Instagram 帐户的用户名, 请单击图标"
970
 
971
- #: admin/social_sharing.php:794 admin/social_sharing.php:1188
972
  msgid "HTML ID of container element of comment form"
973
  msgstr "注释表单的容器元素的HTML ID"
974
 
975
- #: admin/social_sharing.php:804 admin/social_sharing.php:1198
976
  msgid ""
977
  "HTML ID of the element you want to focus on the webpage, on click of Comment "
978
  "icon."
979
  msgstr "HTML ID的元素,你想集中在网页上,点击评论图标。"
980
 
981
- #: admin/social_sharing.php:818 admin/social_sharing.php:1207
982
  msgid "Rearrange icons"
983
  msgstr "重新排列图标"
984
 
985
- #: admin/social_sharing.php:879 admin/social_sharing.php:1266
986
  msgid "Drag the icons to rearrange in desired order"
987
  msgstr "按所需顺序拖动要重新排列的图标"
988
 
989
- #: admin/social_sharing.php:887 admin/social_sharing.php:1274
990
  msgid "Select Sharing Services"
991
  msgstr "选择共享服务"
992
 
993
- #: admin/social_sharing.php:894 admin/social_sharing.php:1281
994
  msgid "Select sharing services to show in social share bar"
995
  msgstr "请选择要在社交共享栏中显示的共享服务"
996
 
997
- #: admin/social_sharing.php:912 admin/social_sharing.php:1299
998
  msgid "Search social network"
999
  msgstr "搜索社交网络"
1000
 
1001
- #: admin/social_sharing.php:931 admin/social_sharing.php:1336
1002
  #: admin/like_buttons.php:179 admin/like_buttons.php:428
1003
  msgid "Horizontal alignment"
1004
  msgstr "水平对齐"
1005
 
1006
- #: admin/social_sharing.php:936 admin/like_buttons.php:184
1007
  msgid "Center"
1008
  msgstr "居中"
1009
 
1010
- #: admin/social_sharing.php:945 admin/social_sharing.php:1349
1011
  msgid "Horizontal alignment of the sharing interface"
1012
  msgstr "共享界面水平对齐方式"
1013
 
1014
- #: admin/social_sharing.php:953 admin/like_buttons.php:201
1015
  msgid "Position with respect to content"
1016
  msgstr "相对于内容的位置"
1017
 
1018
- #: admin/social_sharing.php:957 admin/like_buttons.php:205
1019
  msgid "Top of the content"
1020
  msgstr "内容的顶部"
1021
 
1022
- #: admin/social_sharing.php:959 admin/like_buttons.php:207
1023
  msgid "Bottom of the content"
1024
  msgstr "内容的底部"
1025
 
1026
- #: admin/social_sharing.php:966
1027
  msgid "Specify position of the sharing interface with respect to the content"
1028
  msgstr "指定相对于内容而言共享界面的位置"
1029
 
1030
- #: admin/social_sharing.php:974 admin/social_sharing.php:1415
1031
  msgid "Placement"
1032
  msgstr "放置"
1033
 
1034
- #: admin/social_sharing.php:978 admin/social_sharing.php:1419
1035
  #: admin/social_login.php:866 admin/social_login.php:896
1036
  #: admin/like_buttons.php:226 admin/like_buttons.php:511
1037
  msgid "Homepage"
1038
  msgstr "主页"
1039
 
1040
- #: admin/social_sharing.php:980 admin/social_sharing.php:1421
1041
  #: admin/like_buttons.php:228 admin/like_buttons.php:513
1042
  msgid "Posts"
1043
  msgstr "文章"
1044
 
1045
- #: admin/social_sharing.php:982 admin/social_sharing.php:1423
1046
  #: admin/like_buttons.php:230 admin/like_buttons.php:515
1047
  msgid "Pages"
1048
  msgstr "页面"
1049
 
1050
- #: admin/social_sharing.php:984 admin/social_sharing.php:1425
1051
  #: admin/like_buttons.php:232 admin/like_buttons.php:517
1052
  msgid "Excerpts and Posts page"
1053
  msgstr "摘录和帖子页面"
1054
 
1055
- #: admin/social_sharing.php:986 admin/social_sharing.php:1427
1056
  #: admin/like_buttons.php:234 admin/like_buttons.php:519
1057
  msgid "Category Archives"
1058
  msgstr "目录类别"
1059
 
1060
- #: admin/social_sharing.php:988 admin/social_sharing.php:1429
1061
  #: admin/like_buttons.php:236 admin/like_buttons.php:521
1062
  msgid "Archive Pages (Category, Tag, Author or Date based pages)"
1063
  msgstr "存档页 (分类、 标记、 作者或根据日期分类的页)"
1064
 
1065
- #: admin/social_sharing.php:1004 admin/like_buttons.php:252
1066
  msgid "BuddyPress activity"
1067
  msgstr "BuddyPress 活动"
1068
 
1069
- #: admin/social_sharing.php:1006 admin/like_buttons.php:255
1070
  msgid "BuddyPress group (only at top of content)"
1071
  msgstr "BuddyPress 组 (只有顶部的内容)"
1072
 
1073
- #: admin/social_sharing.php:1012 admin/social_sharing.php:1451
1074
  #: admin/like_buttons.php:262 admin/like_buttons.php:542
1075
  msgid "BBPress forum"
1076
  msgstr "BBPress 论坛"
1077
 
1078
- #: admin/social_sharing.php:1015 admin/social_sharing.php:1454
1079
  #: admin/like_buttons.php:265 admin/like_buttons.php:545
1080
  msgid "BBPress topic"
1081
  msgstr "BBPress 主题"
1082
 
1083
- #: admin/social_sharing.php:1018 admin/like_buttons.php:268
1084
  msgid "BBPress reply"
1085
  msgstr "BBPress 答复"
1086
 
1087
- #: admin/social_sharing.php:1025 admin/like_buttons.php:275
1088
  msgid "After individual product at WooCommerce Shop page"
1089
  msgstr "在 WooCommerce 商店页面上单独的商品后"
1090
 
1091
- #: admin/social_sharing.php:1028 admin/like_buttons.php:278
1092
  msgid "WooCommerce Product Page"
1093
  msgstr "Woocommerce商品页"
1094
 
1095
- #: admin/social_sharing.php:1031 admin/like_buttons.php:281
1096
  msgid "WooCommerce Thankyou Page"
1097
  msgstr "WooCommerce 致谢页面"
1098
 
1099
- #: admin/social_sharing.php:1042
1100
  msgid "Specify the pages where you want to enable Sharing interface"
1101
  msgstr "指定要启用共享界面的页面"
1102
 
1103
- #: admin/social_sharing.php:1050 admin/social_sharing.php:1472
1104
  msgid "Show share counts"
1105
  msgstr "显示共享计数"
1106
 
1107
- #: admin/social_sharing.php:1055 admin/social_sharing.php:1477
1108
  #, fuzzy
1109
  msgid ""
1110
  "Share counts are supported for Facebook, Twitter, Linkedin, Buffer, Reddit, "
@@ -1113,7 +1084,7 @@ msgstr ""
1113
  "支持Facebook、Twitter、LinkedIn、Buffer、Reddit、Pinterest、Odnoclassniki和"
1114
  "Vkontakte的分享计数"
1115
 
1116
- #: admin/social_sharing.php:1056 admin/social_sharing.php:1478
1117
  #, php-format
1118
  msgid ""
1119
  "To show Twitter share count, you have to click \"Give me my Twitter counts "
@@ -1122,42 +1093,42 @@ msgid ""
1122
  "their website."
1123
  msgstr ""
1124
 
1125
- #: admin/social_sharing.php:1063 admin/social_sharing.php:1485
1126
  msgid "If enabled, share counts are displayed above sharing icons."
1127
  msgstr "如果启用,共享计数在共享图标上面显示。"
1128
 
1129
- #: admin/social_sharing.php:1072 admin/social_sharing.php:1494
1130
  msgid "Show total shares"
1131
  msgstr "分享总数"
1132
 
1133
- #: admin/social_sharing.php:1082 admin/social_sharing.php:1504
1134
  msgid "If enabled, total shares will be displayed with sharing icons"
1135
  msgstr "如果启用,共享计数在共享图标上面显示。"
1136
 
1137
- #: admin/social_sharing.php:1091 admin/social_sharing.php:1513
1138
  msgid "Enable 'More' icon"
1139
  msgstr "启用“更多”图标"
1140
 
1141
- #: admin/social_sharing.php:1101 admin/social_sharing.php:1523
1142
  msgid ""
1143
  "If enabled, \"More\" icon will be displayed after selected sharing icons "
1144
  "which shows additional sharing networks in popup"
1145
  msgstr ""
1146
  "如果启用,将选定的共享图标后,会显示“更多”图标,它显示在弹出的其他共享网络"
1147
 
1148
- #: admin/social_sharing.php:1118
1149
  msgid "Floating Sharing Interface Options"
1150
  msgstr "浮动共享界面选项"
1151
 
1152
- #: admin/social_sharing.php:1124
1153
  msgid "Enable Floating sharing interface"
1154
  msgstr "启用共享接口标准"
1155
 
1156
- #: admin/social_sharing.php:1134
1157
  msgid "Master control to enable floating sharing widget"
1158
  msgstr "主控,使共享浮动部件"
1159
 
1160
- #: admin/social_sharing.php:1328
1161
  msgid ""
1162
  "Specify the color or hex code (example #cc78e0) for the background of "
1163
  "vertical sharing bar. Leave empty for transparent. You can get the hex code "
@@ -1168,121 +1139,121 @@ msgstr ""
1168
  "<a href=“http://www.colorpicker.com/“ target=“_blank”>这个链接</a>获得所需的"
1169
  "颜色的十六进制代码"
1170
 
1171
- #: admin/social_sharing.php:1358 admin/like_buttons.php:450
1172
  msgid "Left offset"
1173
  msgstr "左偏移"
1174
 
1175
- #: admin/social_sharing.php:1368
1176
  msgid ""
1177
  "Specify a number. Increase in number will shift sharing interface towards "
1178
  "right and decrease will shift it towards left. Number can be negative too."
1179
  msgstr "指定一个数字。数目增加将朝左边移动和减少则向右。数值可以为负。"
1180
 
1181
- #: admin/social_sharing.php:1378 admin/like_buttons.php:470
1182
  msgid "Right offset"
1183
  msgstr "右偏移"
1184
 
1185
- #: admin/social_sharing.php:1388
1186
  msgid ""
1187
  "Specify a number. Increase in number will shift sharing interface towards "
1188
  "left and decrease will shift it towards right. Number can be negative too."
1189
  msgstr "指定一个数字。数目增加将朝左边移动和减少则向右。数值可以为负。"
1190
 
1191
- #: admin/social_sharing.php:1397 admin/like_buttons.php:489
1192
  msgid "Top offset"
1193
  msgstr "顶部偏移"
1194
 
1195
- #: admin/social_sharing.php:1407
1196
  msgid ""
1197
  "Specify a number. Increase in number will shift sharing interface towards "
1198
  "bottom and decrease will shift it towards top."
1199
  msgstr "指定一个数字。增加数目将朝底部移动和减少则为向顶部。"
1200
 
1201
- #: admin/social_sharing.php:1443 admin/like_buttons.php:535
1202
  msgid "BuddyPress group"
1203
  msgstr "BuddyPress 组"
1204
 
1205
- #: admin/social_sharing.php:1464
1206
  msgid "Specify the pages where you want to enable vertical Sharing interface"
1207
  msgstr "指定要实现垂直共享界面的网页"
1208
 
1209
- #: admin/social_sharing.php:1531
1210
  #, fuzzy
1211
  msgid "Hide floating slider"
1212
  msgstr "隐藏登入客戶"
1213
 
1214
- #: admin/social_sharing.php:1541
1215
  #, fuzzy
1216
  msgid "Hides the slider arrow present below the floating share bar"
1217
  msgstr "如何在浮动共享栏后隐藏箭头?"
1218
 
1219
- #: admin/social_sharing.php:1549
1220
  msgid "Vertical floating bar responsiveness"
1221
  msgstr "立式浮栏响应能力"
1222
 
1223
- #: admin/social_sharing.php:1552
1224
  #, php-format
1225
  msgid "Display vertical interface only when screen is wider than %s pixels"
1226
  msgstr "只有屏幕宽度超过 %s 像素时显示垂直界面"
1227
 
1228
- #: admin/social_sharing.php:1559
1229
  msgid ""
1230
  "Display vertical interface only when screen is wider than the width "
1231
  "specified."
1232
  msgstr "只有在指定的宽度比宽屏幕时显示垂直界面。"
1233
 
1234
- #: admin/social_sharing.php:1567
1235
  msgid "Horizontal floating bar responsiveness"
1236
  msgstr "水平浮动栏响应"
1237
 
1238
- #: admin/social_sharing.php:1570
1239
  #, php-format
1240
  msgid ""
1241
  "Stick vertical floating interface horizontally at bottom only when screen is "
1242
  "narrower than %s pixels"
1243
  msgstr "只有当屏幕小于 %s 像素时,粘性垂直浮动界面底部的水平位置"
1244
 
1245
- #: admin/social_sharing.php:1577
1246
  msgid ""
1247
  "Stick vertical floating interface horizontally at bottom only when screen is "
1248
  "narrower than the width specified"
1249
  msgstr "只有当屏幕小于指定的宽度时,粘性垂直浮动界面底部的水平位置"
1250
 
1251
- #: admin/social_sharing.php:1587
1252
  msgid "Horizontal floating bar position"
1253
  msgstr "水平浮动栏位置"
1254
 
1255
- #: admin/social_sharing.php:1590
1256
  #, php-format
1257
  msgid "%s pixels from %s"
1258
  msgstr "%s像素来自%s"
1259
 
1260
- #: admin/social_sharing.php:1591
1261
  msgid "Auto-adjust according to screen width (responsive)"
1262
  msgstr "根据屏幕宽度自动调整 (自响应)"
1263
 
1264
- #: admin/social_sharing.php:1598
1265
  msgid "Alignment of horizontal floating interface. Number can be negative too."
1266
  msgstr "对齐方式的水平浮动界面。数值可以为负。"
1267
 
1268
- #: admin/social_sharing.php:1618
1269
  #, fuzzy
1270
  msgid "Facebook Share Count"
1271
  msgstr "Facebook 分享疑难解答"
1272
 
1273
- #: admin/social_sharing.php:1622
1274
  msgid "Note"
1275
  msgstr ""
1276
 
1277
- #: admin/social_sharing.php:1622
1278
  msgid "Required only to track Facebook share count"
1279
  msgstr ""
1280
 
1281
- #: admin/social_sharing.php:1628 admin/social_login.php:161
1282
  msgid "Facebook App ID"
1283
  msgstr "Facebook 应用 ID"
1284
 
1285
- #: admin/social_sharing.php:1638
1286
  #, fuzzy, php-format
1287
  msgid ""
1288
  "Required for Facebook share count to work. Please follow the documentation "
@@ -1291,11 +1262,11 @@ msgstr ""
1291
  "需要Facebook社交登录。请按照在<a href=“%s” target=“_blank”>的链接 </a>得到"
1292
  "Facebook的应用程序ID"
1293
 
1294
- #: admin/social_sharing.php:1646 admin/social_login.php:183
1295
  msgid "Facebook App Secret"
1296
  msgstr "FacebookAPP密码"
1297
 
1298
- #: admin/social_sharing.php:1656
1299
  #, fuzzy, php-format
1300
  msgid ""
1301
  "Required for Facebook share count to work. Please follow the documentation "
@@ -1304,49 +1275,49 @@ msgstr ""
1304
  "facebook 社交登录工作所需。请按照文档在 < href = \" %s\" 目标 = \"_ black\" "
1305
  "> 此链接 </a>, 以获得 facebook 应用程序机密"
1306
 
1307
- #: admin/social_sharing.php:1665 admin/like_buttons.php:592
1308
  msgid "Url shortener"
1309
  msgstr "短网址"
1310
 
1311
- #: admin/social_sharing.php:1671
1312
  msgid "Use shortlinks already installed"
1313
  msgstr "短网址已安装,发推按钮"
1314
 
1315
- #: admin/social_sharing.php:1681
1316
  msgid "Uses default short url permalinks without using any additional plugin"
1317
  msgstr "使用默认的短网址永久链接, 而无需使用任何额外的插件"
1318
 
1319
- #: admin/social_sharing.php:1689
1320
  msgid "Enable bit.ly url shortener for sharing"
1321
  msgstr "用于使用bit.ly url短链共享"
1322
 
1323
- #: admin/social_sharing.php:1699 admin/like_buttons.php:626
1324
  msgid "Master control to enable bit.ly url shortening for sharing"
1325
  msgstr "主控件以启用 bit.ly url 短链共享"
1326
 
1327
- #: admin/social_sharing.php:1707
1328
  msgid "bit.ly Login"
1329
  msgstr "bit.ly登录"
1330
 
1331
- #: admin/social_sharing.php:1717 admin/social_sharing.php:1736
1332
  #, php-format
1333
  msgid "More details on how to get it <a href=\"%s\" target=\"_blank\">here</a>"
1334
  msgstr ""
1335
  "更多关于如何得到它的细节 < href = \" %s\" 目标 = \"_ black\" > 在这里 </a>"
1336
 
1337
- #: admin/social_sharing.php:1726 admin/like_buttons.php:653
1338
  msgid "bit.ly API Key"
1339
  msgstr "bit.ly API 密钥"
1340
 
1341
- #: admin/social_sharing.php:1745 admin/like_buttons.php:672
1342
  msgid "Clear Bitly Cache"
1343
  msgstr "清除 Bitly 缓存"
1344
 
1345
- #: admin/social_sharing.php:1749 admin/like_buttons.php:676
1346
  msgid "ShortUrl cache cleared successfully."
1347
  msgstr "ShortUrl 缓存成功清除。"
1348
 
1349
- #: admin/social_sharing.php:1756 admin/like_buttons.php:683
1350
  msgid ""
1351
  "Use this to delete short urls saved in database. Handy, if urls of your "
1352
  "website have been changed but short urls are still being generated for old "
@@ -1355,31 +1326,31 @@ msgstr ""
1355
  "使用此选项删除保存在数据库中的短网址。如果你的网站的 url 已经改变了,但短网址"
1356
  "仍为旧网址,手动处理。"
1357
 
1358
- #: admin/social_sharing.php:1765
1359
  msgid "Share Count Cache"
1360
  msgstr "共享计数缓存"
1361
 
1362
- #: admin/social_sharing.php:1771
1363
  msgid "Refresh Share Count cache every"
1364
  msgstr "清空每个计数器缓存"
1365
 
1366
- #: admin/social_sharing.php:1776
1367
  msgid "Second(s)"
1368
  msgstr "秒(s)"
1369
 
1370
- #: admin/social_sharing.php:1777
1371
  msgid "Minute(s)"
1372
  msgstr "分钟"
1373
 
1374
- #: admin/social_sharing.php:1778
1375
  msgid "Hour(s)"
1376
  msgstr "小时"
1377
 
1378
- #: admin/social_sharing.php:1779
1379
  msgid "Day(s)"
1380
  msgstr "天"
1381
 
1382
- #: admin/social_sharing.php:1787
1383
  #, php-format
1384
  msgid ""
1385
  "Frequent cache refreshing results in slower loading of pages with share "
@@ -1389,25 +1360,25 @@ msgstr ""
1389
  "频繁的缓存刷新会导致启用共享计数的页面加载速度变慢。 保留为空以禁用缓存。 相"
1390
  "关信息 <a href=\"%s\" target=\"_blank\"> 在这里 </a>"
1391
 
1392
- #: admin/social_sharing.php:1795
1393
  msgid "Clear Share Counts Cache"
1394
  msgstr "清除共享计数缓存"
1395
 
1396
- #: admin/social_sharing.php:1799
1397
  msgid "Share Counts cache cleared successfully."
1398
  msgstr "分享计数缓存成功清除。"
1399
 
1400
- #: admin/social_sharing.php:1806
1401
  msgid "Use this to clear cached share counts"
1402
  msgstr "使用这个清除计数的缓存"
1403
 
1404
- #: admin/social_sharing.php:1815 admin/social_sharing.php:1821
1405
  #: admin/social_commenting.php:315 admin/like_buttons.php:692
1406
  #: admin/like_buttons.php:698
1407
  msgid "Language"
1408
  msgstr "语言"
1409
 
1410
- #: admin/social_sharing.php:1831
1411
  #, php-format
1412
  msgid ""
1413
  "Enter the code of the language you want to use for like buttons. You can "
@@ -1417,15 +1388,15 @@ msgstr ""
1417
  "输入你想要为喜欢按钮指定的语言代码。你可以在<a href=“%s” target=“_blank”>这个"
1418
  "链接</a>找到语言代码。留空为默认 (英语)"
1419
 
1420
- #: admin/social_sharing.php:1840
1421
  msgid "Username in sharing"
1422
  msgstr "共享的用户名"
1423
 
1424
- #: admin/social_sharing.php:1846
1425
  msgid "Twitter username (without @)"
1426
  msgstr "Twitter账号(无@)"
1427
 
1428
- #: admin/social_sharing.php:1856 admin/social_sharing.php:1875
1429
  msgid ""
1430
  "Provided username will be appended after the content being shared as \"via "
1431
  "@USERNAME\". Leave empty if you do not want any username in the content "
@@ -1434,35 +1405,35 @@ msgstr ""
1434
  "提供的用户名将在”通过 @USERNAME”的内容共享后。如果你不想用户名在共享内容中,"
1435
  "请留空。"
1436
 
1437
- #: admin/social_sharing.php:1865
1438
  msgid "Buffer username (without @)"
1439
  msgstr "缓冲用户名 (无 @)"
1440
 
1441
- #: admin/social_sharing.php:1884
1442
  msgid "AMP"
1443
  msgstr ""
1444
 
1445
- #: admin/social_sharing.php:1890
1446
  msgid "Enable sharing on AMP pages"
1447
  msgstr "在 AMP 页面上启用分享"
1448
 
1449
- #: admin/social_sharing.php:1900
1450
  msgid "Enable this option to render sharing icons on AMP pages"
1451
  msgstr "启用此选项可在AMP页面上呈现分享图标"
1452
 
1453
- #: admin/social_sharing.php:1919 admin/like_buttons.php:771
1454
  msgid "myCRED"
1455
  msgstr "myCRED"
1456
 
1457
- #: admin/social_sharing.php:1925 admin/like_buttons.php:777
1458
  msgid "Append myCRED referral ID to the urls being shared"
1459
  msgstr "将myCRED推荐ID追加到分享的URL"
1460
 
1461
- #: admin/social_sharing.php:1958
1462
  msgid "Facebook Sharing Troubleshooter"
1463
  msgstr "Facebook 分享疑难解答"
1464
 
1465
- #: admin/social_sharing.php:1963
1466
  msgid ""
1467
  "If Facebook sharing is not working fine, click at the following link and "
1468
  "enter the problematic url (where Facebook sharing is not working properly) "
@@ -1472,8 +1443,8 @@ msgstr ""
1472
  "如果Facebook分享工作不正常,请单击以下链接,然后在文本字段中输入您网站的有问"
1473
  "题的URL(Facebook分享无法正常工作)。 单击“获取新的Scrape信息”按钮。"
1474
 
1475
- #: admin/social_sharing.php:1980 admin/social_commenting.php:399
1476
- #: admin/social_login.php:1259
1477
  msgid ""
1478
  "<strong>Note:</strong> Plugin will not work on local server. You should have "
1479
  "an online website for the plugin to function properly."
@@ -1481,22 +1452,22 @@ msgstr ""
1481
  "<strong>注意:</strong> 插件不能在本地服务器上运行。 您应该有一个在线网站,以"
1482
  "使插件正常运行。"
1483
 
1484
- #: admin/social_sharing.php:1981
1485
  msgid ""
1486
  "Why is sharer not showing the correct image, title and other meta tags "
1487
  "content?"
1488
  msgstr "为什么分享没有显示正确的图像、标题和其他元标签内容?"
1489
 
1490
- #: admin/social_sharing.php:1982
1491
  #, fuzzy
1492
  msgid "Why is Facebook share count not working?"
1493
  msgstr "为什么Facebook 分享数量没有出现?"
1494
 
1495
- #: admin/social_sharing.php:1985
1496
  msgid "Why is Instagram icon redirecting to Instagram website?"
1497
  msgstr "为什么 instagram 图标重定向到 instagram 网站?"
1498
 
1499
- #: admin/social_sharing.php:1986
1500
  msgid ""
1501
  "Instagram icon is there to send website visitors to the Instagram page of "
1502
  "your choice. You can save the desired Instagram handle in \"Instagram "
@@ -1506,92 +1477,92 @@ msgstr ""
1506
  "Instagram图标可以将网站访问者发送到您选择的Instagram页面。 您可以在“标准界"
1507
  "面”和“浮动界面”部分的“Instagram用户名”选项中保存所需的Instagram句柄。"
1508
 
1509
- #: admin/social_sharing.php:1989
1510
  #, fuzzy
1511
  msgid "How to customize the url being shared?"
1512
  msgstr "如何自定义个人共享计数的外观?"
1513
 
1514
- #: admin/social_sharing.php:1990
1515
  msgid ""
1516
  "Why are Twitter shares not appearing even after registering at Twitcount.com?"
1517
  msgstr ""
1518
 
1519
- #: admin/social_sharing.php:1991
1520
  msgid ""
1521
  "It takes some time for their service to track the shares made on Twitter "
1522
  "from your website. If you still feel it's taking too long you can contact "
1523
  "their support directly from their website."
1524
  msgstr ""
1525
 
1526
- #: admin/social_sharing.php:1993 admin/like_buttons.php:814
1527
  msgid "How to Place Title and Social Share Icons in the Same Row?"
1528
  msgstr "如何在同一行中放置标题和社交分享图标?"
1529
 
1530
- #: admin/social_sharing.php:1994
1531
  msgid ""
1532
  "How to restore Social Share counts lost after moving my website to SSL/Https?"
1533
  msgstr "如何恢复在将我的网站转移到SSL/https之后丢失的社交分享数?"
1534
 
1535
- #: admin/social_sharing.php:1995 admin/social_commenting.php:402
1536
- #: admin/social_login.php:1266
1537
  msgid "Why is my browser blocking some features of the plugin?"
1538
  msgstr "为什么我的浏览器会阻止插件的某些功能?"
1539
 
1540
- #: admin/social_sharing.php:1996
1541
  msgid "Why the color of share icons is not being updated?"
1542
  msgstr "为什么分享图标的颜色未更新?"
1543
 
1544
- #: admin/social_sharing.php:1997
1545
  msgid "Why Facebook share counts are not appearing?"
1546
  msgstr "为什么Facebook 分享数量没有出现?"
1547
 
1548
- #: admin/social_sharing.php:1998
1549
  msgid ""
1550
  "How can I show share counts of my website rather than of individual pages/"
1551
  "posts?"
1552
  msgstr "怎样表示我网站的共享计数,而不是个别网页/文章?"
1553
 
1554
- #: admin/social_sharing.php:1999
1555
  msgid "How can I disable sharing on particular page/post?"
1556
  msgstr "如何在特定的页面文章上禁用共享?"
1557
 
1558
- #: admin/social_sharing.php:2000
1559
  msgid "How can I specify minimum sharing count for sharing networks?"
1560
  msgstr "如何为共享网络共享指定最少数目?"
1561
 
1562
- #: admin/social_sharing.php:2001
1563
  msgid "How to share specific page?"
1564
  msgstr "如何共享特定页面?"
1565
 
1566
- #: admin/social_sharing.php:2002
1567
  msgid "How to integrate Google Analytics with sharing?"
1568
  msgstr "谷歌分析与集成"
1569
 
1570
- #: admin/social_sharing.php:2003
1571
  msgid "How to customize the look of total share counts?"
1572
  msgstr "如何自定义总共享计数的外观?"
1573
 
1574
- #: admin/social_sharing.php:2004
1575
  msgid "How to customize the look of individual share counts?"
1576
  msgstr "如何自定义个人共享计数的外观?"
1577
 
1578
- #: admin/social_sharing.php:2005
1579
  msgid "How to show Whatsapp icon only on mobile devices?"
1580
  msgstr "如何仅在移动设备上显示 Whatsapp 图标?"
1581
 
1582
- #: admin/social_sharing.php:2006
1583
  msgid "How to hide arrow after floating sharing bar?"
1584
  msgstr "如何在浮动共享栏后隐藏箭头?"
1585
 
1586
- #: admin/social_sharing.php:2007
1587
  msgid "Why is share count not getting updated?"
1588
  msgstr "为什么共享计数没有得到更新?"
1589
 
1590
- #: admin/social_sharing.php:2008 admin/like_buttons.php:812
1591
  msgid "Why is there so much space between like buttons?"
1592
  msgstr "为什么像按钮之间有这么多的空间?"
1593
 
1594
- #: admin/social_sharing.php:2009 admin/like_buttons.php:813
1595
  msgid "Why are floating sharing/like buttons not appearing at homepage?"
1596
  msgstr "为什么在主页上没有显示浮动分享/喜欢按钮?"
1597
 
@@ -1830,7 +1801,7 @@ msgstr "高级配置"
1830
  msgid "GDPR"
1831
  msgstr "GDPR"
1832
 
1833
- #: admin/social_login.php:44 admin/social_login.php:1194
1834
  msgid "XProfile Integration"
1835
  msgstr "xprofile 集成"
1836
 
@@ -2499,49 +2470,68 @@ msgid "Text for the GDPR opt-in"
2499
  msgstr ""
2500
 
2501
  #: admin/social_login.php:1135
2502
- msgid "Text to link to Privacy Policy page"
 
2503
  msgstr "要链接到隐私政策页面的文本"
2504
 
2505
  #: admin/social_login.php:1145
2506
- msgid "Word(s) in the opt-in text to be linked to privacy policy page"
 
2507
  msgstr "要链接到隐私策略页的选入文本中的单词"
2508
 
2509
  #: admin/social_login.php:1153
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2510
  msgid "Privacy Policy Url"
2511
  msgstr "隐私政策网址"
2512
 
2513
- #: admin/social_login.php:1163
2514
  msgid "Url of the privacy policy page of your website"
2515
  msgstr "您网站的隐私政策页面的网址"
2516
 
2517
- #: admin/social_login.php:1214 inc/widget.php:260 inc/widget.php:438
2518
  #: inc/widget.php:602 inc/widget.php:750
2519
  msgid "Select"
2520
  msgstr "选择"
2521
 
2522
- #: admin/social_login.php:1245
2523
  msgid "Social Login Shortcode & Widget"
2524
  msgstr ""
2525
 
2526
- #: admin/social_login.php:1246
2527
  msgid "Social Linking Shortcode"
2528
  msgstr "社交链接简码"
2529
 
2530
- #: admin/social_login.php:1261
2531
  msgid "Why is social login not working?"
2532
  msgstr "为什么社交登录不起作用?"
2533
 
2534
- #: admin/social_login.php:1262
2535
  msgid ""
2536
  "Make sure that App ID and Secret (Client ID and Secret) keys you have saved, "
2537
  "belong to the same app"
2538
  msgstr ""
2539
 
2540
- #: admin/social_login.php:1264
2541
  msgid "Social Login not working with Varnish enabled"
2542
  msgstr ""
2543
 
2544
- #: admin/social_login.php:1265
2545
  msgid ""
2546
  "Why the user is not appearing logged in even after Social Login until the "
2547
  "webpage is refreshed manually?"
@@ -3033,6 +3023,31 @@ msgstr "YouTube频道网址:"
3033
  msgid "RSS Feed URL:"
3034
  msgstr "RSS 订阅链接:"
3035
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3036
  #~ msgid "Label for G+ Commenting tab"
3037
  #~ msgstr "G+ 评论选项卡的标签"
3038
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Super Socializer\n"
4
+ "POT-Creation-Date: 2019-08-13 08:26+0530\n"
5
+ "PO-Revision-Date: 2019-08-13 08:26+0530\n"
6
  "Last-Translator: Heateor <hello@heateor.com>\n"
7
  "Language-Team: 汤小贤 <calmsmile@aliyun.com>\n"
8
  "Language: zh_CN\n"
21
  "X-Poedit-SearchPathExcluded-0: *.js\n"
22
  "X-Poedit-SearchPath-0: .\n"
23
 
24
+ #: super_socializer.php:425
25
  msgid "Problem fetching access token: "
26
  msgstr "获取access token的问题:"
27
 
28
+ #: super_socializer.php:429 super_socializer.php:443
29
  msgid "Facebook SDK returned an error: "
30
  msgstr "facebook sdk 返回了一个错误:"
31
 
32
+ #: super_socializer.php:439
33
  msgid "Graph returned an error: "
34
  msgstr ""
35
 
36
+ #: super_socializer.php:605
37
  msgid ""
38
  "cURL is not enabled at your website server. Please contact your website "
39
  "server administrator to enable it."
40
  msgstr "在您的网站服务器上未启用 curl。请与您的网站服务器管理员联系以启用它。"
41
 
42
+ #: super_socializer.php:632
43
  #, php-format
44
  msgid ""
45
  "Enter exactly the following url in <strong>Website</strong> option in your "
48
  "在 twitter 应用中的 <strong> 网站 </strong> 选项中输入以下 url (请参阅步骤 3 "
49
  "%s)"
50
 
51
+ #: super_socializer.php:635
52
  #, php-format
53
  msgid ""
54
  "Enter exactly the following url in <strong>Callback URLs</strong> option in "
57
  "在 twitter 应用中 <strong> 回调 url </strong> 选项中输入以下 url (请参阅步骤 "
58
  "3 %s)"
59
 
60
+ #: super_socializer.php:638
61
  msgid ""
62
  "Make sure cURL is enabled at your website server. You may need to contact "
63
  "the server administrator of your website to verify this"
64
  msgstr ""
65
  "请确保在您的网站服务器上启用了cURL。对此,请您与您的网站的服务器管理员核实。"
66
 
67
+ #: super_socializer.php:901 helper.php:976
 
 
 
 
 
 
68
  msgid "Please verify your email address to login."
69
  msgstr "请验证您的电子邮件地址以便登录。"
70
 
71
+ #: super_socializer.php:901
72
  msgid "Your email has been verified. Now you can login to your account"
73
  msgstr "您的电子邮件已验证。现在你可以登录到您的帐户"
74
 
75
+ #: super_socializer.php:905
76
  msgid "Notification"
77
  msgstr "通知"
78
 
79
+ #: super_socializer.php:923 admin/social_login.php:805
80
  msgid "Email required"
81
  msgstr "邮件地址(比选)"
82
 
83
+ #: super_socializer.php:926
84
  msgid "Please check your email inbox to complete the registration."
85
  msgstr "请检查您的电子邮件收件箱以完成注册。"
86
 
87
+ #: super_socializer.php:933 helper.php:508
88
  msgid "Enter your LiveJournal username"
89
  msgstr "输入您的 LiveJournal 用户名"
90
 
91
+ #: super_socializer.php:1005
92
  msgid "Leave a reply"
93
  msgstr "回复"
94
 
95
+ #: super_socializer.php:1017 inc/social_sharing.php:241
96
  msgid "Shares"
97
  msgstr "分享"
98
 
99
+ #: super_socializer.php:1017 inc/social_sharing.php:241
100
  msgid "Share"
101
  msgstr "分享"
102
 
103
+ #: super_socializer.php:1017
104
  msgid "Link copied."
105
  msgstr "链接已复制。"
106
 
107
+ #: super_socializer.php:1263
108
  msgid "Super Socializer - General Options"
109
  msgstr "Super Socializer-常规选项"
110
 
111
+ #: super_socializer.php:1263 admin/general_options.php:15
112
  #: admin/social_commenting.php:47
113
  msgid "General Options"
114
  msgstr "常规选项"
115
 
116
+ #: super_socializer.php:1331 helper.php:898
117
  msgid "Social Avatar"
118
  msgstr "社会化头像"
119
 
120
+ #: super_socializer.php:1334
121
  msgid "Small Avatar Url"
122
  msgstr "小头像 Url"
123
 
124
+ #: super_socializer.php:1338
125
  msgid "Large Avatar Url"
126
  msgstr "大头像 Url"
127
 
128
+ #: super_socializer.php:1342 helper.php:901
129
  msgid ""
130
  "Do not fetch and update social avatar from my profile, next time I Social "
131
  "Login"
132
  msgstr "不从我的个人资料里获取及更新社会化头像,下次社会化登录"
133
 
134
+ #: super_socializer.php:1346 helper.php:902
135
  msgid "Update social avatar, next time I Social Login"
136
  msgstr "更新社会化头像,下次社会化登录"
137
 
138
+ #: super_socializer.php:1423
 
 
 
 
 
 
 
 
139
  msgid "Login with your Social ID"
140
  msgstr "使用您的社交 ID登录"
141
 
142
+ #: super_socializer.php:1424
143
  msgid "Email you entered is already registered or invalid"
144
  msgstr "您输入的电子邮件已经注册或无效"
145
 
146
+ #: super_socializer.php:1429
147
  msgid "Please enter a valid email address. You might be required to verify it"
148
  msgstr "请输入一个有效的电子邮件地址。您可能需要验证它"
149
 
150
+ #: super_socializer.php:1433 super_socializer.php:2122
151
  msgid "Link your social account to login to your account at this website"
152
  msgstr "链接你的社会化媒体帐户登录您本站账号"
153
 
154
+ #: super_socializer.php:1681
155
  msgid "Thanks for installing Super Socializer plugin"
156
  msgstr ""
157
 
158
+ #: super_socializer.php:1683
159
  msgid "Configure the Plugin"
160
  msgstr ""
161
 
162
+ #: super_socializer.php:1694
163
  msgid ""
164
  "Update \"Facebook Comments Moderation\" add-on for compatibility with "
165
  "current version of Super Socialzer"
166
  msgstr "更新 \"facebook 评论审核\" 加载项与当前版本的Super Socialzer"
167
 
168
+ #: super_socializer.php:1703
169
  msgid ""
170
  "Update \"Facebook Comments Notifier\" add-on for compatibility with current "
171
  "version of Super Socialzer"
172
  msgstr ""
173
  "更新 \"facebook 评论通知程序\" 加载项, 以与当前版本的超级社交提供兼容性"
174
 
175
+ #: super_socializer.php:1712
176
  msgid ""
177
  "Update \"Social Login Buttons\" add-on for compatibility with current "
178
  "version of Super Socialzer"
179
  msgstr "更新 \"社交登录按钮\" 加载项与当前版本的超级社交器兼容"
180
 
181
+ #: super_socializer.php:1721
182
  msgid ""
183
  "Update \"Social Share myCRED Integration\" add-on for maximum compatibility "
184
  "with current version of Super Socialzer"
186
  "更新 \"社交分享 mycred 集成\" 加载项, 以最大限度地与当前版本的超级社交提供兼"
187
  "容"
188
 
189
+ #: super_socializer.php:1730
190
  msgid ""
191
  "Update \"Social Login myCRED Integration\" add-on for maximum compatibility "
192
  "with current version of Super Socialzer"
193
  msgstr ""
194
  "更新 \"社交登录 mycred 集成\" 加载项, 以最大限度地兼容当前版本的超级社交"
195
 
196
+ #: super_socializer.php:1737
197
  msgid ""
198
  "Update \"Social Login myCRED Integration\" add-on for compatibility with "
199
  "LiveJournal Login of Super Socialzer"
200
  msgstr "更新 \"社交登录 mycred 集成\" 加载项与超级社交器的 livejoin 登录兼容"
201
 
202
+ #: super_socializer.php:1748
203
  #, php-format
204
  msgid ""
205
  "To continue using Steam login save Steam API key <a href=\"%s\">here</a>"
207
  "要继续使用 steam 登录, 请保存 steam api 密钥 < a href = \" %s\" >, 请点击此"
208
  "处 </a>"
209
 
210
+ #: super_socializer.php:1764
211
  #, php-format
212
  msgid ""
213
  "To continue using Social Login, save the secret keys <a href=\"%s\">here</a>"
214
  msgstr "若要继续使用社交登录, 请在此处保存密钥 < ref = \" %s\" > </a>"
215
 
216
+ #: super_socializer.php:1788
217
  #, php-format
218
  msgid ""
219
  "Add %s in \"Valid OAuth redirect URIs\" option in your Facebook app settings "
224
  "facebook 登录正常工作。有关更多详细信息, 请在此处检查步骤 9 < ref = \" %s\" "
225
  "target = \"_ black\" > </a>"
226
 
227
+ #: super_socializer.php:1788 super_socializer.php:1813
228
+ #: super_socializer.php:1838 super_socializer.php:1863
229
+ #: super_socializer.php:1896 super_socializer.php:1924
230
+ #: super_socializer.php:1951 super_socializer.php:2028
231
  msgid "Okay"
232
  msgstr "好的"
233
 
234
+ #: super_socializer.php:1813
235
  #, php-format
236
  msgid ""
237
  "Add %s in \"Callback URLs\" option in your Twitter app settings for Twitter "
242
  "关更多详细信息, 请在此处检查步骤 4 < ref = \" %s\" target = \"_ black\" > </"
243
  "a>"
244
 
245
+ #: super_socializer.php:1838
246
  #, php-format
247
  msgid ""
248
  "Add %s in \"Authorized Redirect URLs\" option in your Linkedin app settings "
253
  "正常工作。有关更多详细信息, 请在此处检查步骤 4 < ref = \" %s\" target = \"_ "
254
  "black\" > </a>"
255
 
256
+ #: super_socializer.php:1863
257
  #, php-format
258
  msgid ""
259
  "Add %s in \"Authorized redirect URIs\" option in your Google client settings "
264
  "常工作。有关更多详细信息, 请在此处检查步骤 11 < ref = \" %s\" target = \"_ "
265
  "black\" > </a>"
266
 
267
+ #: super_socializer.php:1874
268
  #, php-format
269
  msgid ""
270
  "Save the url of privacy policy page of your website <a href=\"%s\">here</a>"
271
  msgstr "保存您的网站 < reof = \" %s\" 的隐私政策页面的网址 </a>"
272
 
273
+ #: super_socializer.php:1896
274
  #, php-format
275
  msgid ""
276
  "This plugin is GDPR compliant. You need to update the privacy policy of your "
280
  "这个插件是符合GDPR的。您需要更新网站有关此插件保存的个人数据的隐私政策。如 "
281
  "<a href=\"%s\" target=\"_blank\">这里</a>所述"
282
 
283
+ #: super_socializer.php:1924
284
  #, php-format
285
  msgid ""
286
  "Now plugin supports a new service Twitcount.com to show Twitter shares. To "
289
  "your website %s with them. No need to copy-paste any code from their website."
290
  msgstr ""
291
 
292
+ #: super_socializer.php:1951
293
  #, php-format
294
  msgid ""
295
  "Replace url saved in \"Callback URLs\" option in your Twitter app settings "
300
  "工作。有关更多详细信息, 请在此处检查步骤 4 < ref = \" %s\" target = \"_ black"
301
  "\" > </a>"
302
 
303
+ #: super_socializer.php:1976
304
  #, fuzzy, php-format
305
  msgid ""
306
  "If you cannot get Linkedin login to work after updating the plugin, replace "
311
  "正常工作。有关更多详细信息, 请在此处检查步骤 4 < ref = \" %s\" target = \"_ "
312
  "black\" > </a>"
313
 
314
+ #: super_socializer.php:1976 super_socializer.php:2003
315
  msgid "Dismiss"
316
  msgstr ""
317
 
318
+ #: super_socializer.php:2002
319
  #, php-format
320
  msgid ""
321
  "Save Facebook App ID and Secret keys in \"Standard Interface\" and/or "
324
  "that, clear share counts cache from \"Miscellaneous\" section"
325
  msgstr ""
326
 
327
+ #: super_socializer.php:2028
328
  #, php-format
329
  msgid ""
330
  "Your website visitors will see a popup notification (only once) if their "
338
  "知给用户, 如果他们的浏览器阻止插件功能\" 选项 < a href = \" %s\" > 在这里 </"
339
  "a>"
340
 
341
+ #: super_socializer.php:2198
342
+ msgid ""
343
+ "Your browser is blocking some features of this website. Please follow the "
344
+ "instructions at {support_url} to unblock these."
345
+ msgstr ""
346
+ "您的浏览器正在阻止此网站的某些功能。请按照 {支持 _ url} 中的说明取消阻止这些"
347
+ "操作。"
348
+
349
  #: helper.php:8
350
  msgid "Settings saved"
351
  msgstr "设置已保存"
352
 
353
+ #: helper.php:8 admin/social_sharing.php:49
354
  msgid "Dismiss this notice"
355
  msgstr "关闭该通知"
356
 
438
  msgid "Large Avatar"
439
  msgstr "大头像"
440
 
441
+ #: helper.php:913 admin/general_options.php:93 admin/social_sharing.php:2027
442
+ #: admin/social_commenting.php:413 admin/social_login.php:1313
443
  #: admin/like_buttons.php:826
444
  msgid "Save Changes"
445
  msgstr "保存更改"
460
  msgid "Something bad happened"
461
  msgstr "发生了一些不好的事情"
462
 
463
+ #: admin/general_options.php:7 admin/general_options.php:97
464
+ #: admin/social_sharing.php:5 admin/social_sharing.php:2031
465
  #: admin/social_commenting.php:5 admin/social_commenting.php:417
466
+ #: admin/social_login.php:5 admin/social_login.php:1317
467
  #: admin/like_buttons.php:6 admin/like_buttons.php:830
468
  #, fuzzy, php-format
469
  msgid ""
502
  msgstr "如果启用,当插件被删除或卸载,下次安装,您将需要重新配置选项."
503
 
504
  #: admin/general_options.php:75
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
505
  msgid "Custom CSS"
506
  msgstr "自定义CSS"
507
 
508
+ #: admin/general_options.php:85
509
  msgid "You can specify any additional CSS rules (without &lt;style&gt; tag)"
510
  msgstr "您可以指定任何额外的 CSS 规则(无需 &lt;style&gt; tag)"
511
 
512
+ #: admin/general_options.php:108 admin/social_sharing.php:2038
513
+ #: admin/social_commenting.php:424 admin/social_login.php:1324
514
+ #: admin/like_buttons.php:837
515
  msgid "Instagram Shoutout"
516
  msgstr ""
517
 
518
+ #: admin/general_options.php:110 admin/social_sharing.php:2040
519
+ #: admin/social_commenting.php:426 admin/social_login.php:1326
520
+ #: admin/like_buttons.php:839
521
  msgid ""
522
  "If you can send (to hello@heateor.com) how our plugin is helping your "
523
  "business, we can share it on Instagram. You can also send any relevant "
526
  "如果您可以发送(至hello@heateor.com)我们的插件如何帮助您的业务,我们可以在"
527
  "Instagram上分享它。 您还可以在Instagram帖子中发送任何相关的标签和人物。"
528
 
529
+ #: admin/general_options.php:111 admin/social_sharing.php:2041
530
+ #: admin/social_commenting.php:427 admin/social_login.php:1327
531
+ #: admin/like_buttons.php:840
532
  msgid ""
533
  "<b>Example</b> - Blah-Blah Online Coaching teaches various programming "
534
  "language courses through their website. They have emerged as one of the most "
540
  "年里,他们已经成为最受欢迎的在线教练网站之一。任何人都可以在短时间内以一种非"
541
  "常简单的方式精通自己选择的编程语言。"
542
 
543
+ #: admin/general_options.php:112 admin/social_sharing.php:2042
544
+ #: admin/social_commenting.php:428 admin/social_login.php:1328
545
+ #: admin/like_buttons.php:841
546
  msgid ""
547
  "@blahblahonlinecoaching proudly use #SuperSocializer to enable social "
548
  "features at their website, such as - Social Login, Social Share and Social "
655
  msgid "Recover Social Share Counts Lost After Moving to SSL/Https"
656
  msgstr "恢复社交股计数移动到 ssl/http 后丢失"
657
 
658
+ #: admin/social_sharing.php:49 admin/social_sharing.php:1990
659
  msgid ""
660
  "Save Facebook App Id and Secret in the \"Miscellaneous\" section for "
661
  "Facebook share count to work"
662
  msgstr ""
663
 
664
+ #: admin/social_sharing.php:56
665
  msgid "Theme Selection"
666
  msgstr "主题选择"
667
 
668
+ #: admin/social_sharing.php:57 admin/like_buttons.php:41
669
  msgid "Standard Interface"
670
  msgstr "标准接口"
671
 
672
+ #: admin/social_sharing.php:58 admin/like_buttons.php:42
673
  msgid "Floating Interface"
674
  msgstr "浮动接口"
675
 
676
+ #: admin/social_sharing.php:59 admin/like_buttons.php:43
677
  msgid "Miscellaneous"
678
  msgstr "其他"
679
 
680
+ #: admin/social_sharing.php:63 admin/like_buttons.php:47
681
  msgid "3rd Party Integration"
682
  msgstr "第三方集成"
683
 
684
+ #: admin/social_sharing.php:67 admin/social_sharing.php:1952
685
+ #: admin/social_sharing.php:1954 admin/social_login.php:46
686
+ #: admin/social_login.php:1279 admin/like_buttons.php:51
687
  #: admin/like_buttons.php:797
688
  msgid "Shortcode & Widget"
689
  msgstr "简码&小工具"
690
 
691
+ #: admin/social_sharing.php:68
692
  msgid "Troubleshooter"
693
  msgstr "排错"
694
 
695
+ #: admin/social_sharing.php:69 admin/social_sharing.php:1985
696
  #: admin/social_commenting.php:40 admin/social_commenting.php:397
697
+ #: admin/social_login.php:47 admin/social_login.php:1293
698
  #: admin/like_buttons.php:52 admin/like_buttons.php:810
699
  msgid "FAQ"
700
  msgstr "常见问题解答"
701
 
702
+ #: admin/social_sharing.php:77
703
  msgid "Standard interface theme"
704
  msgstr "标准接口主题"
705
 
706
+ #: admin/social_sharing.php:82 admin/social_sharing.php:389
707
  msgid "Icon Preview"
708
  msgstr "图标预览"
709
 
710
+ #: admin/social_sharing.php:154 admin/social_sharing.php:462
711
  msgid ""
712
  "Do not forget to save the configuration after making changes by clicking the "
713
  "save button below"
714
  msgstr "更改后不要忘记单击下面的保存按钮以保存下面存配置"
715
 
716
+ #: admin/social_sharing.php:161 admin/social_sharing.php:469
717
  msgid "Shape"
718
  msgstr "形状"
719
 
720
+ #: admin/social_sharing.php:165 admin/social_sharing.php:473
721
  #: inc/widget.php:951
722
  msgid "Round"
723
  msgstr "圆"
724
 
725
+ #: admin/social_sharing.php:167 admin/social_sharing.php:475
726
  #: inc/widget.php:952
727
  msgid "Square"
728
  msgstr "正方形"
729
 
730
+ #: admin/social_sharing.php:169 admin/social_sharing.php:477
731
  msgid "Rectangle"
732
  msgstr "矩形"
733
 
734
+ #: admin/social_sharing.php:176 admin/social_sharing.php:484
735
  msgid "Shape of the sharing icons"
736
  msgstr "共享图标的形状"
737
 
738
+ #: admin/social_sharing.php:185 admin/social_sharing.php:493
739
  msgid "Size (in pixels)"
740
  msgstr "大小 (以像素为单位)"
741
 
742
+ #: admin/social_sharing.php:201 admin/social_sharing.php:509
743
  msgid "Size of the sharing icons"
744
  msgstr "共享图标的大小"
745
 
746
+ #: admin/social_sharing.php:211 admin/social_sharing.php:519
747
  msgid "Width (in pixels)"
748
  msgstr "宽度(px)"
749
 
750
+ #: admin/social_sharing.php:227 admin/social_sharing.php:535
751
  msgid "Width of the sharing icons"
752
  msgstr "共享图标宽度"
753
 
754
+ #: admin/social_sharing.php:235 admin/social_sharing.php:543
755
  msgid "Height (in pixels)"
756
  msgstr "高度(像素)"
757
 
758
+ #: admin/social_sharing.php:251 admin/social_sharing.php:559
759
  msgid "Height of the sharing icons"
760
  msgstr "共享图标高度"
761
 
762
+ #: admin/social_sharing.php:261 admin/social_sharing.php:569
763
  msgid "Border radius (in pixels)"
764
  msgstr "(以像素为单位) 的边界半径"
765
 
766
+ #: admin/social_sharing.php:271 admin/social_sharing.php:579
767
  msgid ""
768
  "Specify a value for rounded corners. More the value, more rounded will the "
769
  "corners be. Leave empty for sharp corners."
770
  msgstr "定义圆角的值。值越大,圆角越园。留空为尖角。"
771
 
772
+ #: admin/social_sharing.php:280 admin/social_sharing.php:588
773
  msgid "Logo Color"
774
  msgstr "logo颜色"
775
 
776
+ #: admin/social_sharing.php:284 admin/social_sharing.php:305
777
+ #: admin/social_sharing.php:325 admin/social_sharing.php:592
778
+ #: admin/social_sharing.php:613 admin/social_sharing.php:632
779
  msgid "Default"
780
  msgstr "默认"
781
 
782
+ #: admin/social_sharing.php:286 admin/social_sharing.php:306
783
+ #: admin/social_sharing.php:330 admin/social_sharing.php:594
784
+ #: admin/social_sharing.php:614 admin/social_sharing.php:637
785
  msgid "On Hover"
786
  msgstr "鼠标悬停"
787
 
788
+ #: admin/social_sharing.php:294 admin/social_sharing.php:602
789
  msgid ""
790
  "Specify the color or hex code (example #cc78e0) for the logo of icon. Leave "
791
  "empty for default. You can get the hex code of the required color from <a "
795
  "href=“http://www.colorpicker.com/“ target=“_blank”>这个链接</a>获得所需的颜色"
796
  "的十六进制代码"
797
 
798
+ #: admin/social_sharing.php:302 admin/social_sharing.php:610
799
+ #: admin/social_sharing.php:1325 admin/like_buttons.php:410 inc/widget.php:460
800
  #: inc/widget.php:772
801
  msgid "Background Color"
802
  msgstr "背景颜色"
803
 
804
+ #: admin/social_sharing.php:313 admin/social_sharing.php:621
805
  msgid ""
806
  "Specify the color or hex code (example #cc78e0) for icon background. Save "
807
  "\"transparent\" for transparent background. Leave empty for default. You can "
812
  "为默认。你可以从<a href=“http://www.colorpicker.com/“ target=“_blank”>这个链"
813
  "接</a>获得所需的颜色的十六进制代码"
814
 
815
+ #: admin/social_sharing.php:321 admin/social_sharing.php:629
816
  msgid "Border"
817
  msgstr "边框"
818
 
819
+ #: admin/social_sharing.php:327 admin/social_sharing.php:332
820
+ #: admin/social_sharing.php:634 admin/social_sharing.php:639
821
  msgid "Border Width"
822
  msgstr "边框宽度"
823
 
824
+ #: admin/social_sharing.php:328 admin/social_sharing.php:333
825
+ #: admin/social_sharing.php:635 admin/social_sharing.php:640
826
  msgid "Border Color"
827
  msgstr "边框颜色"
828
 
829
+ #: admin/social_sharing.php:340 admin/social_sharing.php:647
830
  msgid "Icon border"
831
  msgstr "图标边框"
832
 
833
+ #: admin/social_sharing.php:348 admin/social_sharing.php:655
834
  msgid "Counter Position"
835
  msgstr "计数器的位置"
836
 
837
+ #: admin/social_sharing.php:348 admin/social_sharing.php:655
838
  msgid "(applies, if counter enabled)"
839
  msgstr "(适用,如果启用计数器)"
840
 
841
+ #: admin/social_sharing.php:352 admin/social_sharing.php:659
842
+ #: admin/social_sharing.php:942 admin/social_sharing.php:1347
843
  #: admin/like_buttons.php:183 admin/like_buttons.php:432 inc/widget.php:446
844
  #: inc/widget.php:758
845
  msgid "Left"
846
  msgstr "左边"
847
 
848
+ #: admin/social_sharing.php:354 admin/social_sharing.php:661
849
  msgid "Top"
850
  msgstr "顶部"
851
 
852
+ #: admin/social_sharing.php:356 admin/social_sharing.php:663
853
+ #: admin/social_sharing.php:944 admin/social_sharing.php:1348
854
  #: admin/like_buttons.php:185 admin/like_buttons.php:433 inc/widget.php:447
855
  #: inc/widget.php:759
856
  msgid "Right"
857
  msgstr "右侧"
858
 
859
+ #: admin/social_sharing.php:358 admin/social_sharing.php:665
860
  msgid "Bottom"
861
  msgstr "居下"
862
 
863
+ #: admin/social_sharing.php:360 admin/social_sharing.php:667
864
  msgid "Inner Left"
865
  msgstr "内左"
866
 
867
+ #: admin/social_sharing.php:362 admin/social_sharing.php:669
868
  msgid "Inner Top"
869
  msgstr "内顶"
870
 
871
+ #: admin/social_sharing.php:364 admin/social_sharing.php:671
872
  msgid "Inner Right"
873
  msgstr "内右"
874
 
875
+ #: admin/social_sharing.php:366 admin/social_sharing.php:673
876
  msgid "Inner Bottom"
877
  msgstr "内底"
878
 
879
+ #: admin/social_sharing.php:374 admin/social_sharing.php:681
880
  msgid "Position of share counter"
881
  msgstr "共享计数器的位置"
882
 
883
+ #: admin/social_sharing.php:384
884
  msgid "Floating interface theme"
885
  msgstr "浮动的界面主题"
886
 
887
+ #: admin/social_sharing.php:697
888
  msgid "Standard Sharing Interface Options"
889
  msgstr "标准共享界面选项"
890
 
891
+ #: admin/social_sharing.php:703
892
  msgid "Enable Standard sharing interface"
893
  msgstr "启用共享接口标准"
894
 
895
+ #: admin/social_sharing.php:713
896
  msgid "Master control to enable standard sharing"
897
  msgstr "主控件以启用标准共享"
898
 
899
+ #: admin/social_sharing.php:723 admin/social_sharing.php:1151
900
  #: admin/like_buttons.php:86 admin/like_buttons.php:336
901
  msgid "Target Url"
902
  msgstr "目标URL"
903
 
904
+ #: admin/social_sharing.php:727 admin/social_sharing.php:1155
905
  #: admin/like_buttons.php:90 admin/like_buttons.php:340
906
  msgid "Url of the webpage where icons are located (default)"
907
  msgstr "图标所在网页的Url (默认值)"
908
 
909
+ #: admin/social_sharing.php:729 admin/social_sharing.php:1157
910
  #: admin/like_buttons.php:92 admin/like_buttons.php:342
911
  msgid "Url of the homepage of your website"
912
  msgstr "您网站的主页的 Url"
913
 
914
+ #: admin/social_sharing.php:731 admin/social_sharing.php:1159
915
  #: admin/like_buttons.php:94 admin/like_buttons.php:344
916
  msgid "Custom url"
917
  msgstr "自定义 URL"
918
 
919
+ #: admin/social_sharing.php:738 admin/social_sharing.php:1166
920
  msgid "Url to share"
921
  msgstr "要分享的网址"
922
 
923
+ #: admin/social_sharing.php:746 admin/social_login.php:532
924
  #: admin/social_login.php:927 admin/like_buttons.php:109 inc/widget.php:945
925
  msgid "Title"
926
  msgstr "标题"
927
 
928
+ #: admin/social_sharing.php:756
929
  msgid "The text to display above the sharing interface"
930
  msgstr "要共享界面上方显示的文本"
931
 
932
+ #: admin/social_sharing.php:781 admin/social_sharing.php:1175
933
  msgid "Instagram username"
934
  msgstr ""
935
 
936
+ #: admin/social_sharing.php:791 admin/social_sharing.php:1185
937
  msgid ""
938
  "Username of the Instagram account you want to redirect users to, on clicking "
939
  "the icon"
940
  msgstr "要将用户重定向到的 Instagram 帐户的用户名, 请单击图标"
941
 
942
+ #: admin/social_sharing.php:801 admin/social_sharing.php:1195
943
  msgid "HTML ID of container element of comment form"
944
  msgstr "注释表单的容器元素的HTML ID"
945
 
946
+ #: admin/social_sharing.php:811 admin/social_sharing.php:1205
947
  msgid ""
948
  "HTML ID of the element you want to focus on the webpage, on click of Comment "
949
  "icon."
950
  msgstr "HTML ID的元素,你想集中在网页上,点击评论图标。"
951
 
952
+ #: admin/social_sharing.php:825 admin/social_sharing.php:1214
953
  msgid "Rearrange icons"
954
  msgstr "重新排列图标"
955
 
956
+ #: admin/social_sharing.php:886 admin/social_sharing.php:1273
957
  msgid "Drag the icons to rearrange in desired order"
958
  msgstr "按所需顺序拖动要重新排列的图标"
959
 
960
+ #: admin/social_sharing.php:894 admin/social_sharing.php:1281
961
  msgid "Select Sharing Services"
962
  msgstr "选择共享服务"
963
 
964
+ #: admin/social_sharing.php:901 admin/social_sharing.php:1288
965
  msgid "Select sharing services to show in social share bar"
966
  msgstr "请选择要在社交共享栏中显示的共享服务"
967
 
968
+ #: admin/social_sharing.php:919 admin/social_sharing.php:1306
969
  msgid "Search social network"
970
  msgstr "搜索社交网络"
971
 
972
+ #: admin/social_sharing.php:938 admin/social_sharing.php:1343
973
  #: admin/like_buttons.php:179 admin/like_buttons.php:428
974
  msgid "Horizontal alignment"
975
  msgstr "水平对齐"
976
 
977
+ #: admin/social_sharing.php:943 admin/like_buttons.php:184
978
  msgid "Center"
979
  msgstr "居中"
980
 
981
+ #: admin/social_sharing.php:952 admin/social_sharing.php:1356
982
  msgid "Horizontal alignment of the sharing interface"
983
  msgstr "共享界面水平对齐方式"
984
 
985
+ #: admin/social_sharing.php:960 admin/like_buttons.php:201
986
  msgid "Position with respect to content"
987
  msgstr "相对于内容的位置"
988
 
989
+ #: admin/social_sharing.php:964 admin/like_buttons.php:205
990
  msgid "Top of the content"
991
  msgstr "内容的顶部"
992
 
993
+ #: admin/social_sharing.php:966 admin/like_buttons.php:207
994
  msgid "Bottom of the content"
995
  msgstr "内容的底部"
996
 
997
+ #: admin/social_sharing.php:973
998
  msgid "Specify position of the sharing interface with respect to the content"
999
  msgstr "指定相对于内容而言共享界面的位置"
1000
 
1001
+ #: admin/social_sharing.php:981 admin/social_sharing.php:1422
1002
  msgid "Placement"
1003
  msgstr "放置"
1004
 
1005
+ #: admin/social_sharing.php:985 admin/social_sharing.php:1426
1006
  #: admin/social_login.php:866 admin/social_login.php:896
1007
  #: admin/like_buttons.php:226 admin/like_buttons.php:511
1008
  msgid "Homepage"
1009
  msgstr "主页"
1010
 
1011
+ #: admin/social_sharing.php:987 admin/social_sharing.php:1428
1012
  #: admin/like_buttons.php:228 admin/like_buttons.php:513
1013
  msgid "Posts"
1014
  msgstr "文章"
1015
 
1016
+ #: admin/social_sharing.php:989 admin/social_sharing.php:1430
1017
  #: admin/like_buttons.php:230 admin/like_buttons.php:515
1018
  msgid "Pages"
1019
  msgstr "页面"
1020
 
1021
+ #: admin/social_sharing.php:991 admin/social_sharing.php:1432
1022
  #: admin/like_buttons.php:232 admin/like_buttons.php:517
1023
  msgid "Excerpts and Posts page"
1024
  msgstr "摘录和帖子页面"
1025
 
1026
+ #: admin/social_sharing.php:993 admin/social_sharing.php:1434
1027
  #: admin/like_buttons.php:234 admin/like_buttons.php:519
1028
  msgid "Category Archives"
1029
  msgstr "目录类别"
1030
 
1031
+ #: admin/social_sharing.php:995 admin/social_sharing.php:1436
1032
  #: admin/like_buttons.php:236 admin/like_buttons.php:521
1033
  msgid "Archive Pages (Category, Tag, Author or Date based pages)"
1034
  msgstr "存档页 (分类、 标记、 作者或根据日期分类的页)"
1035
 
1036
+ #: admin/social_sharing.php:1011 admin/like_buttons.php:252
1037
  msgid "BuddyPress activity"
1038
  msgstr "BuddyPress 活动"
1039
 
1040
+ #: admin/social_sharing.php:1013 admin/like_buttons.php:255
1041
  msgid "BuddyPress group (only at top of content)"
1042
  msgstr "BuddyPress 组 (只有顶部的内容)"
1043
 
1044
+ #: admin/social_sharing.php:1019 admin/social_sharing.php:1458
1045
  #: admin/like_buttons.php:262 admin/like_buttons.php:542
1046
  msgid "BBPress forum"
1047
  msgstr "BBPress 论坛"
1048
 
1049
+ #: admin/social_sharing.php:1022 admin/social_sharing.php:1461
1050
  #: admin/like_buttons.php:265 admin/like_buttons.php:545
1051
  msgid "BBPress topic"
1052
  msgstr "BBPress 主题"
1053
 
1054
+ #: admin/social_sharing.php:1025 admin/like_buttons.php:268
1055
  msgid "BBPress reply"
1056
  msgstr "BBPress 答复"
1057
 
1058
+ #: admin/social_sharing.php:1032 admin/like_buttons.php:275
1059
  msgid "After individual product at WooCommerce Shop page"
1060
  msgstr "在 WooCommerce 商店页面上单独的商品后"
1061
 
1062
+ #: admin/social_sharing.php:1035 admin/like_buttons.php:278
1063
  msgid "WooCommerce Product Page"
1064
  msgstr "Woocommerce商品页"
1065
 
1066
+ #: admin/social_sharing.php:1038 admin/like_buttons.php:281
1067
  msgid "WooCommerce Thankyou Page"
1068
  msgstr "WooCommerce 致谢页面"
1069
 
1070
+ #: admin/social_sharing.php:1049
1071
  msgid "Specify the pages where you want to enable Sharing interface"
1072
  msgstr "指定要启用共享界面的页面"
1073
 
1074
+ #: admin/social_sharing.php:1057 admin/social_sharing.php:1479
1075
  msgid "Show share counts"
1076
  msgstr "显示共享计数"
1077
 
1078
+ #: admin/social_sharing.php:1062 admin/social_sharing.php:1484
1079
  #, fuzzy
1080
  msgid ""
1081
  "Share counts are supported for Facebook, Twitter, Linkedin, Buffer, Reddit, "
1084
  "支持Facebook、Twitter、LinkedIn、Buffer、Reddit、Pinterest、Odnoclassniki和"
1085
  "Vkontakte的分享计数"
1086
 
1087
+ #: admin/social_sharing.php:1063 admin/social_sharing.php:1485
1088
  #, php-format
1089
  msgid ""
1090
  "To show Twitter share count, you have to click \"Give me my Twitter counts "
1093
  "their website."
1094
  msgstr ""
1095
 
1096
+ #: admin/social_sharing.php:1070 admin/social_sharing.php:1492
1097
  msgid "If enabled, share counts are displayed above sharing icons."
1098
  msgstr "如果启用,共享计数在共享图标上面显示。"
1099
 
1100
+ #: admin/social_sharing.php:1079 admin/social_sharing.php:1501
1101
  msgid "Show total shares"
1102
  msgstr "分享总数"
1103
 
1104
+ #: admin/social_sharing.php:1089 admin/social_sharing.php:1511
1105
  msgid "If enabled, total shares will be displayed with sharing icons"
1106
  msgstr "如果启用,共享计数在共享图标上面显示。"
1107
 
1108
+ #: admin/social_sharing.php:1098 admin/social_sharing.php:1520
1109
  msgid "Enable 'More' icon"
1110
  msgstr "启用“更多”图标"
1111
 
1112
+ #: admin/social_sharing.php:1108 admin/social_sharing.php:1530
1113
  msgid ""
1114
  "If enabled, \"More\" icon will be displayed after selected sharing icons "
1115
  "which shows additional sharing networks in popup"
1116
  msgstr ""
1117
  "如果启用,将选定的共享图标后,会显示“更多”图标,它显示在弹出的其他共享网络"
1118
 
1119
+ #: admin/social_sharing.php:1125
1120
  msgid "Floating Sharing Interface Options"
1121
  msgstr "浮动共享界面选项"
1122
 
1123
+ #: admin/social_sharing.php:1131
1124
  msgid "Enable Floating sharing interface"
1125
  msgstr "启用共享接口标准"
1126
 
1127
+ #: admin/social_sharing.php:1141
1128
  msgid "Master control to enable floating sharing widget"
1129
  msgstr "主控,使共享浮动部件"
1130
 
1131
+ #: admin/social_sharing.php:1335
1132
  msgid ""
1133
  "Specify the color or hex code (example #cc78e0) for the background of "
1134
  "vertical sharing bar. Leave empty for transparent. You can get the hex code "
1139
  "<a href=“http://www.colorpicker.com/“ target=“_blank”>这个链接</a>获得所需的"
1140
  "颜色的十六进制代码"
1141
 
1142
+ #: admin/social_sharing.php:1365 admin/like_buttons.php:450
1143
  msgid "Left offset"
1144
  msgstr "左偏移"
1145
 
1146
+ #: admin/social_sharing.php:1375
1147
  msgid ""
1148
  "Specify a number. Increase in number will shift sharing interface towards "
1149
  "right and decrease will shift it towards left. Number can be negative too."
1150
  msgstr "指定一个数字。数目增加将朝左边移动和减少则向右。数值可以为负。"
1151
 
1152
+ #: admin/social_sharing.php:1385 admin/like_buttons.php:470
1153
  msgid "Right offset"
1154
  msgstr "右偏移"
1155
 
1156
+ #: admin/social_sharing.php:1395
1157
  msgid ""
1158
  "Specify a number. Increase in number will shift sharing interface towards "
1159
  "left and decrease will shift it towards right. Number can be negative too."
1160
  msgstr "指定一个数字。数目增加将朝左边移动和减少则向右。数值可以为负。"
1161
 
1162
+ #: admin/social_sharing.php:1404 admin/like_buttons.php:489
1163
  msgid "Top offset"
1164
  msgstr "顶部偏移"
1165
 
1166
+ #: admin/social_sharing.php:1414
1167
  msgid ""
1168
  "Specify a number. Increase in number will shift sharing interface towards "
1169
  "bottom and decrease will shift it towards top."
1170
  msgstr "指定一个数字。增加数目将朝底部移动和减少则为向顶部。"
1171
 
1172
+ #: admin/social_sharing.php:1450 admin/like_buttons.php:535
1173
  msgid "BuddyPress group"
1174
  msgstr "BuddyPress 组"
1175
 
1176
+ #: admin/social_sharing.php:1471
1177
  msgid "Specify the pages where you want to enable vertical Sharing interface"
1178
  msgstr "指定要实现垂直共享界面的网页"
1179
 
1180
+ #: admin/social_sharing.php:1538
1181
  #, fuzzy
1182
  msgid "Hide floating slider"
1183
  msgstr "隐藏登入客戶"
1184
 
1185
+ #: admin/social_sharing.php:1548
1186
  #, fuzzy
1187
  msgid "Hides the slider arrow present below the floating share bar"
1188
  msgstr "如何在浮动共享栏后隐藏箭头?"
1189
 
1190
+ #: admin/social_sharing.php:1556
1191
  msgid "Vertical floating bar responsiveness"
1192
  msgstr "立式浮栏响应能力"
1193
 
1194
+ #: admin/social_sharing.php:1559
1195
  #, php-format
1196
  msgid "Display vertical interface only when screen is wider than %s pixels"
1197
  msgstr "只有屏幕宽度超过 %s 像素时显示垂直界面"
1198
 
1199
+ #: admin/social_sharing.php:1566
1200
  msgid ""
1201
  "Display vertical interface only when screen is wider than the width "
1202
  "specified."
1203
  msgstr "只有在指定的宽度比宽屏幕时显示垂直界面。"
1204
 
1205
+ #: admin/social_sharing.php:1574
1206
  msgid "Horizontal floating bar responsiveness"
1207
  msgstr "水平浮动栏响应"
1208
 
1209
+ #: admin/social_sharing.php:1577
1210
  #, php-format
1211
  msgid ""
1212
  "Stick vertical floating interface horizontally at bottom only when screen is "
1213
  "narrower than %s pixels"
1214
  msgstr "只有当屏幕小于 %s 像素时,粘性垂直浮动界面底部的水平位置"
1215
 
1216
+ #: admin/social_sharing.php:1584
1217
  msgid ""
1218
  "Stick vertical floating interface horizontally at bottom only when screen is "
1219
  "narrower than the width specified"
1220
  msgstr "只有当屏幕小于指定的宽度时,粘性垂直浮动界面底部的水平位置"
1221
 
1222
+ #: admin/social_sharing.php:1594
1223
  msgid "Horizontal floating bar position"
1224
  msgstr "水平浮动栏位置"
1225
 
1226
+ #: admin/social_sharing.php:1597
1227
  #, php-format
1228
  msgid "%s pixels from %s"
1229
  msgstr "%s像素来自%s"
1230
 
1231
+ #: admin/social_sharing.php:1598
1232
  msgid "Auto-adjust according to screen width (responsive)"
1233
  msgstr "根据屏幕宽度自动调整 (自响应)"
1234
 
1235
+ #: admin/social_sharing.php:1605
1236
  msgid "Alignment of horizontal floating interface. Number can be negative too."
1237
  msgstr "对齐方式的水平浮动界面。数值可以为负。"
1238
 
1239
+ #: admin/social_sharing.php:1625
1240
  #, fuzzy
1241
  msgid "Facebook Share Count"
1242
  msgstr "Facebook 分享疑难解答"
1243
 
1244
+ #: admin/social_sharing.php:1629
1245
  msgid "Note"
1246
  msgstr ""
1247
 
1248
+ #: admin/social_sharing.php:1629
1249
  msgid "Required only to track Facebook share count"
1250
  msgstr ""
1251
 
1252
+ #: admin/social_sharing.php:1635 admin/social_login.php:161
1253
  msgid "Facebook App ID"
1254
  msgstr "Facebook 应用 ID"
1255
 
1256
+ #: admin/social_sharing.php:1645
1257
  #, fuzzy, php-format
1258
  msgid ""
1259
  "Required for Facebook share count to work. Please follow the documentation "
1262
  "需要Facebook社交登录。请按照在<a href=“%s” target=“_blank”>的链接 </a>得到"
1263
  "Facebook的应用程序ID"
1264
 
1265
+ #: admin/social_sharing.php:1653 admin/social_login.php:183
1266
  msgid "Facebook App Secret"
1267
  msgstr "FacebookAPP密码"
1268
 
1269
+ #: admin/social_sharing.php:1663
1270
  #, fuzzy, php-format
1271
  msgid ""
1272
  "Required for Facebook share count to work. Please follow the documentation "
1275
  "facebook 社交登录工作所需。请按照文档在 < href = \" %s\" 目标 = \"_ black\" "
1276
  "> 此链接 </a>, 以获得 facebook 应用程序机密"
1277
 
1278
+ #: admin/social_sharing.php:1672 admin/like_buttons.php:592
1279
  msgid "Url shortener"
1280
  msgstr "短网址"
1281
 
1282
+ #: admin/social_sharing.php:1678
1283
  msgid "Use shortlinks already installed"
1284
  msgstr "短网址已安装,发推按钮"
1285
 
1286
+ #: admin/social_sharing.php:1688
1287
  msgid "Uses default short url permalinks without using any additional plugin"
1288
  msgstr "使用默认的短网址永久链接, 而无需使用任何额外的插件"
1289
 
1290
+ #: admin/social_sharing.php:1696
1291
  msgid "Enable bit.ly url shortener for sharing"
1292
  msgstr "用于使用bit.ly url短链共享"
1293
 
1294
+ #: admin/social_sharing.php:1706 admin/like_buttons.php:626
1295
  msgid "Master control to enable bit.ly url shortening for sharing"
1296
  msgstr "主控件以启用 bit.ly url 短链共享"
1297
 
1298
+ #: admin/social_sharing.php:1714
1299
  msgid "bit.ly Login"
1300
  msgstr "bit.ly登录"
1301
 
1302
+ #: admin/social_sharing.php:1724 admin/social_sharing.php:1743
1303
  #, php-format
1304
  msgid "More details on how to get it <a href=\"%s\" target=\"_blank\">here</a>"
1305
  msgstr ""
1306
  "更多关于如何得到它的细节 < href = \" %s\" 目标 = \"_ black\" > 在这里 </a>"
1307
 
1308
+ #: admin/social_sharing.php:1733 admin/like_buttons.php:653
1309
  msgid "bit.ly API Key"
1310
  msgstr "bit.ly API 密钥"
1311
 
1312
+ #: admin/social_sharing.php:1752 admin/like_buttons.php:672
1313
  msgid "Clear Bitly Cache"
1314
  msgstr "清除 Bitly 缓存"
1315
 
1316
+ #: admin/social_sharing.php:1756 admin/like_buttons.php:676
1317
  msgid "ShortUrl cache cleared successfully."
1318
  msgstr "ShortUrl 缓存成功清除。"
1319
 
1320
+ #: admin/social_sharing.php:1763 admin/like_buttons.php:683
1321
  msgid ""
1322
  "Use this to delete short urls saved in database. Handy, if urls of your "
1323
  "website have been changed but short urls are still being generated for old "
1326
  "使用此选项删除保存在数据库中的短网址。如果你的网站的 url 已经改变了,但短网址"
1327
  "仍为旧网址,手动处理。"
1328
 
1329
+ #: admin/social_sharing.php:1772
1330
  msgid "Share Count Cache"
1331
  msgstr "共享计数缓存"
1332
 
1333
+ #: admin/social_sharing.php:1778
1334
  msgid "Refresh Share Count cache every"
1335
  msgstr "清空每个计数器缓存"
1336
 
1337
+ #: admin/social_sharing.php:1783
1338
  msgid "Second(s)"
1339
  msgstr "秒(s)"
1340
 
1341
+ #: admin/social_sharing.php:1784
1342
  msgid "Minute(s)"
1343
  msgstr "分钟"
1344
 
1345
+ #: admin/social_sharing.php:1785
1346
  msgid "Hour(s)"
1347
  msgstr "小时"
1348
 
1349
+ #: admin/social_sharing.php:1786
1350
  msgid "Day(s)"
1351
  msgstr "天"
1352
 
1353
+ #: admin/social_sharing.php:1794
1354
  #, php-format
1355
  msgid ""
1356
  "Frequent cache refreshing results in slower loading of pages with share "
1360
  "频繁的缓存刷新会导致启用共享计数的页面加载速度变慢。 保留为空以禁用缓存。 相"
1361
  "关信息 <a href=\"%s\" target=\"_blank\"> 在这里 </a>"
1362
 
1363
+ #: admin/social_sharing.php:1802
1364
  msgid "Clear Share Counts Cache"
1365
  msgstr "清除共享计数缓存"
1366
 
1367
+ #: admin/social_sharing.php:1806
1368
  msgid "Share Counts cache cleared successfully."
1369
  msgstr "分享计数缓存成功清除。"
1370
 
1371
+ #: admin/social_sharing.php:1813
1372
  msgid "Use this to clear cached share counts"
1373
  msgstr "使用这个清除计数的缓存"
1374
 
1375
+ #: admin/social_sharing.php:1822 admin/social_sharing.php:1828
1376
  #: admin/social_commenting.php:315 admin/like_buttons.php:692
1377
  #: admin/like_buttons.php:698
1378
  msgid "Language"
1379
  msgstr "语言"
1380
 
1381
+ #: admin/social_sharing.php:1838
1382
  #, php-format
1383
  msgid ""
1384
  "Enter the code of the language you want to use for like buttons. You can "
1388
  "输入你想要为喜欢按钮指定的语言代码。你可以在<a href=“%s” target=“_blank”>这个"
1389
  "链接</a>找到语言代码。留空为默认 (英语)"
1390
 
1391
+ #: admin/social_sharing.php:1847
1392
  msgid "Username in sharing"
1393
  msgstr "共享的用户名"
1394
 
1395
+ #: admin/social_sharing.php:1853
1396
  msgid "Twitter username (without @)"
1397
  msgstr "Twitter账号(无@)"
1398
 
1399
+ #: admin/social_sharing.php:1863 admin/social_sharing.php:1882
1400
  msgid ""
1401
  "Provided username will be appended after the content being shared as \"via "
1402
  "@USERNAME\". Leave empty if you do not want any username in the content "
1405
  "提供的用户名将在”通过 @USERNAME”的内容共享后。如果你不想用户名在共享内容中,"
1406
  "请留空。"
1407
 
1408
+ #: admin/social_sharing.php:1872
1409
  msgid "Buffer username (without @)"
1410
  msgstr "缓冲用户名 (无 @)"
1411
 
1412
+ #: admin/social_sharing.php:1891
1413
  msgid "AMP"
1414
  msgstr ""
1415
 
1416
+ #: admin/social_sharing.php:1897
1417
  msgid "Enable sharing on AMP pages"
1418
  msgstr "在 AMP 页面上启用分享"
1419
 
1420
+ #: admin/social_sharing.php:1907
1421
  msgid "Enable this option to render sharing icons on AMP pages"
1422
  msgstr "启用此选项可在AMP页面上呈现分享图标"
1423
 
1424
+ #: admin/social_sharing.php:1926 admin/like_buttons.php:771
1425
  msgid "myCRED"
1426
  msgstr "myCRED"
1427
 
1428
+ #: admin/social_sharing.php:1932 admin/like_buttons.php:777
1429
  msgid "Append myCRED referral ID to the urls being shared"
1430
  msgstr "将myCRED推荐ID追加到分享的URL"
1431
 
1432
+ #: admin/social_sharing.php:1965
1433
  msgid "Facebook Sharing Troubleshooter"
1434
  msgstr "Facebook 分享疑难解答"
1435
 
1436
+ #: admin/social_sharing.php:1970
1437
  msgid ""
1438
  "If Facebook sharing is not working fine, click at the following link and "
1439
  "enter the problematic url (where Facebook sharing is not working properly) "
1443
  "如果Facebook分享工作不正常,请单击以下链接,然后在文本字段中输入您网站的有问"
1444
  "题的URL(Facebook分享无法正常工作)。 单击“获取新的Scrape信息”按钮。"
1445
 
1446
+ #: admin/social_sharing.php:1987 admin/social_commenting.php:399
1447
+ #: admin/social_login.php:1295
1448
  msgid ""
1449
  "<strong>Note:</strong> Plugin will not work on local server. You should have "
1450
  "an online website for the plugin to function properly."
1452
  "<strong>注意:</strong> 插件不能在本地服务器上运行。 您应该有一个在线网站,以"
1453
  "使插件正常运行。"
1454
 
1455
+ #: admin/social_sharing.php:1988
1456
  msgid ""
1457
  "Why is sharer not showing the correct image, title and other meta tags "
1458
  "content?"
1459
  msgstr "为什么分享没有显示正确的图像、标题和其他元标签内容?"
1460
 
1461
+ #: admin/social_sharing.php:1989
1462
  #, fuzzy
1463
  msgid "Why is Facebook share count not working?"
1464
  msgstr "为什么Facebook 分享数量没有出现?"
1465
 
1466
+ #: admin/social_sharing.php:1992
1467
  msgid "Why is Instagram icon redirecting to Instagram website?"
1468
  msgstr "为什么 instagram 图标重定向到 instagram 网站?"
1469
 
1470
+ #: admin/social_sharing.php:1993
1471
  msgid ""
1472
  "Instagram icon is there to send website visitors to the Instagram page of "
1473
  "your choice. You can save the desired Instagram handle in \"Instagram "
1477
  "Instagram图标可以将网站访问者发送到您选择的Instagram页面。 您可以在“标准界"
1478
  "面”和“浮动界面”部分的“Instagram用户名”选项中保存所需的Instagram句柄。"
1479
 
1480
+ #: admin/social_sharing.php:1996
1481
  #, fuzzy
1482
  msgid "How to customize the url being shared?"
1483
  msgstr "如何自定义个人共享计数的外观?"
1484
 
1485
+ #: admin/social_sharing.php:1997
1486
  msgid ""
1487
  "Why are Twitter shares not appearing even after registering at Twitcount.com?"
1488
  msgstr ""
1489
 
1490
+ #: admin/social_sharing.php:1998
1491
  msgid ""
1492
  "It takes some time for their service to track the shares made on Twitter "
1493
  "from your website. If you still feel it's taking too long you can contact "
1494
  "their support directly from their website."
1495
  msgstr ""
1496
 
1497
+ #: admin/social_sharing.php:2000 admin/like_buttons.php:814
1498
  msgid "How to Place Title and Social Share Icons in the Same Row?"
1499
  msgstr "如何在同一行中放置标题和社交分享图标?"
1500
 
1501
+ #: admin/social_sharing.php:2001
1502
  msgid ""
1503
  "How to restore Social Share counts lost after moving my website to SSL/Https?"
1504
  msgstr "如何恢复在将我的网站转移到SSL/https之后丢失的社交分享数?"
1505
 
1506
+ #: admin/social_sharing.php:2002 admin/social_commenting.php:402
1507
+ #: admin/social_login.php:1302
1508
  msgid "Why is my browser blocking some features of the plugin?"
1509
  msgstr "为什么我的浏览器会阻止插件的某些功能?"
1510
 
1511
+ #: admin/social_sharing.php:2003
1512
  msgid "Why the color of share icons is not being updated?"
1513
  msgstr "为什么分享图标的颜色未更新?"
1514
 
1515
+ #: admin/social_sharing.php:2004
1516
  msgid "Why Facebook share counts are not appearing?"
1517
  msgstr "为什么Facebook 分享数量没有出现?"
1518
 
1519
+ #: admin/social_sharing.php:2005
1520
  msgid ""
1521
  "How can I show share counts of my website rather than of individual pages/"
1522
  "posts?"
1523
  msgstr "怎样表示我网站的共享计数,而不是个别网页/文章?"
1524
 
1525
+ #: admin/social_sharing.php:2006
1526
  msgid "How can I disable sharing on particular page/post?"
1527
  msgstr "如何在特定的页面文章上禁用共享?"
1528
 
1529
+ #: admin/social_sharing.php:2007
1530
  msgid "How can I specify minimum sharing count for sharing networks?"
1531
  msgstr "如何为共享网络共享指定最少数目?"
1532
 
1533
+ #: admin/social_sharing.php:2008
1534
  msgid "How to share specific page?"
1535
  msgstr "如何共享特定页面?"
1536
 
1537
+ #: admin/social_sharing.php:2009
1538
  msgid "How to integrate Google Analytics with sharing?"
1539
  msgstr "谷歌分析与集成"
1540
 
1541
+ #: admin/social_sharing.php:2010
1542
  msgid "How to customize the look of total share counts?"
1543
  msgstr "如何自定义总共享计数的外观?"
1544
 
1545
+ #: admin/social_sharing.php:2011
1546
  msgid "How to customize the look of individual share counts?"
1547
  msgstr "如何自定义个人共享计数的外观?"
1548
 
1549
+ #: admin/social_sharing.php:2012
1550
  msgid "How to show Whatsapp icon only on mobile devices?"
1551
  msgstr "如何仅在移动设备上显示 Whatsapp 图标?"
1552
 
1553
+ #: admin/social_sharing.php:2013
1554
  msgid "How to hide arrow after floating sharing bar?"
1555
  msgstr "如何在浮动共享栏后隐藏箭头?"
1556
 
1557
+ #: admin/social_sharing.php:2014
1558
  msgid "Why is share count not getting updated?"
1559
  msgstr "为什么共享计数没有得到更新?"
1560
 
1561
+ #: admin/social_sharing.php:2015 admin/like_buttons.php:812
1562
  msgid "Why is there so much space between like buttons?"
1563
  msgstr "为什么像按钮之间有这么多的空间?"
1564
 
1565
+ #: admin/social_sharing.php:2016 admin/like_buttons.php:813
1566
  msgid "Why are floating sharing/like buttons not appearing at homepage?"
1567
  msgstr "为什么在主页上没有显示浮动分享/喜欢按钮?"
1568
 
1801
  msgid "GDPR"
1802
  msgstr "GDPR"
1803
 
1804
+ #: admin/social_login.php:44 admin/social_login.php:1230
1805
  msgid "XProfile Integration"
1806
  msgstr "xprofile 集成"
1807
 
2470
  msgstr ""
2471
 
2472
  #: admin/social_login.php:1135
2473
+ #, fuzzy
2474
+ msgid "Text to link to Terms-Conditions page"
2475
  msgstr "要链接到隐私政策页面的文本"
2476
 
2477
  #: admin/social_login.php:1145
2478
+ #, fuzzy
2479
+ msgid "Word(s) in the opt-in text to be linked to terms-conditions page"
2480
  msgstr "要链接到隐私策略页的选入文本中的单词"
2481
 
2482
  #: admin/social_login.php:1153
2483
+ msgid "Terms-Conditions Url"
2484
+ msgstr ""
2485
+
2486
+ #: admin/social_login.php:1163
2487
+ #, fuzzy
2488
+ msgid "Url of the terms-conditions page of your website"
2489
+ msgstr "您网站的主页的 Url"
2490
+
2491
+ #: admin/social_login.php:1171
2492
+ msgid "Text to link to Privacy Policy page"
2493
+ msgstr "要链接到隐私政策页面的文本"
2494
+
2495
+ #: admin/social_login.php:1181
2496
+ msgid "Word(s) in the opt-in text to be linked to privacy policy page"
2497
+ msgstr "要链接到隐私策略页的选入文本中的单词"
2498
+
2499
+ #: admin/social_login.php:1189
2500
  msgid "Privacy Policy Url"
2501
  msgstr "隐私政策网址"
2502
 
2503
+ #: admin/social_login.php:1199
2504
  msgid "Url of the privacy policy page of your website"
2505
  msgstr "您网站的隐私政策页面的网址"
2506
 
2507
+ #: admin/social_login.php:1250 inc/widget.php:260 inc/widget.php:438
2508
  #: inc/widget.php:602 inc/widget.php:750
2509
  msgid "Select"
2510
  msgstr "选择"
2511
 
2512
+ #: admin/social_login.php:1281
2513
  msgid "Social Login Shortcode & Widget"
2514
  msgstr ""
2515
 
2516
+ #: admin/social_login.php:1282
2517
  msgid "Social Linking Shortcode"
2518
  msgstr "社交链接简码"
2519
 
2520
+ #: admin/social_login.php:1297
2521
  msgid "Why is social login not working?"
2522
  msgstr "为什么社交登录不起作用?"
2523
 
2524
+ #: admin/social_login.php:1298
2525
  msgid ""
2526
  "Make sure that App ID and Secret (Client ID and Secret) keys you have saved, "
2527
  "belong to the same app"
2528
  msgstr ""
2529
 
2530
+ #: admin/social_login.php:1300
2531
  msgid "Social Login not working with Varnish enabled"
2532
  msgstr ""
2533
 
2534
+ #: admin/social_login.php:1301
2535
  msgid ""
2536
  "Why the user is not appearing logged in even after Social Login until the "
2537
  "webpage is refreshed manually?"
3023
  msgid "RSS Feed URL:"
3024
  msgstr "RSS 订阅链接:"
3025
 
3026
+ #~ msgid ""
3027
+ #~ "Make sure that \"Enable Callback Locking\" option is disabled. See step 4 "
3028
+ #~ "%s"
3029
+ #~ msgstr "确保禁用 \"启用回调锁定\" 选项。请参阅步骤 4 %s"
3030
+
3031
+ #~ msgid ""
3032
+ #~ "Show popup notification to users if their browsers block the plugin "
3033
+ #~ "features"
3034
+ #~ msgstr "如果用户的浏览器阻止插件功能, 则向用户显示弹出通知"
3035
+
3036
+ #~ msgid ""
3037
+ #~ "If enabled, your website visitors will see a popup notification (only "
3038
+ #~ "once) if their browsers block any of the features of the plugin so that "
3039
+ #~ "they can change their browser settings to unblock these."
3040
+ #~ msgstr ""
3041
+ #~ "如果启用, 您的网站访问者将看到弹出通知 (只有一次), 如果他们的浏览器阻止插"
3042
+ #~ "件的任何功能, 以便他们可以更改他们的浏览器设置, 以取消阻止这些。"
3043
+
3044
+ #~ msgid "Message to show in popup notification"
3045
+ #~ msgstr "要在弹出通知中显示的消息"
3046
+
3047
+ #~ msgid ""
3048
+ #~ "Use {support_url} placeholder to show support documentation url in message"
3049
+ #~ msgstr "使用 {支持 _ url} 占位符在消息中显示支持文档 url"
3050
+
3051
  #~ msgid "Label for G+ Commenting tab"
3052
  #~ msgstr "G+ 评论选项卡的标签"
3053
 
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: 2019-06-25 11:55+0530\n"
6
- "PO-Revision-Date: 2019-06-25 11:55+0530\n"
7
  "Last-Translator: Heateor <hello@heateor.com>\n"
8
  "Language-Team: Heateor <hello@heateor.com>\n"
9
  "Language: en_IN\n"
@@ -15,200 +15,188 @@ msgstr ""
15
  "X-Generator: Poedit 1.5.4\n"
16
  "X-Poedit-SearchPath-0: ..\n"
17
 
18
- #: ../super_socializer.php:430
19
  msgid "Problem fetching access token: "
20
  msgstr ""
21
 
22
- #: ../super_socializer.php:434 ../super_socializer.php:448
23
  msgid "Facebook SDK returned an error: "
24
  msgstr ""
25
 
26
- #: ../super_socializer.php:444
27
  msgid "Graph returned an error: "
28
  msgstr ""
29
 
30
- #: ../super_socializer.php:610
31
  msgid ""
32
  "cURL is not enabled at your website server. Please contact your website "
33
  "server administrator to enable it."
34
  msgstr ""
35
 
36
- #: ../super_socializer.php:637
37
  #, php-format
38
  msgid ""
39
  "Enter exactly the following url in <strong>Website</strong> option in your "
40
  "Twitter app (see step 3 %s)"
41
  msgstr ""
42
 
43
- #: ../super_socializer.php:640
44
  #, php-format
45
  msgid ""
46
  "Enter exactly the following url in <strong>Callback URLs</strong> option in "
47
  "your Twitter app (see step 3 %s)"
48
  msgstr ""
49
 
50
- #: ../super_socializer.php:643
51
  msgid ""
52
  "Make sure cURL is enabled at your website server. You may need to contact "
53
  "the server administrator of your website to verify this"
54
  msgstr ""
55
 
56
- #: ../super_socializer.php:644
57
- #, php-format
58
- msgid ""
59
- "Make sure that \"Enable Callback Locking\" option is disabled. See step 4 %s"
60
- msgstr ""
61
-
62
- #: ../super_socializer.php:907 ../helper.php:976
63
  msgid "Please verify your email address to login."
64
  msgstr ""
65
 
66
- #: ../super_socializer.php:907
67
  msgid "Your email has been verified. Now you can login to your account"
68
  msgstr ""
69
 
70
- #: ../super_socializer.php:911
71
  msgid "Notification"
72
  msgstr ""
73
 
74
- #: ../super_socializer.php:929 ../admin/social_login.php:805
75
  msgid "Email required"
76
  msgstr ""
77
 
78
- #: ../super_socializer.php:932
79
  msgid "Please check your email inbox to complete the registration."
80
  msgstr ""
81
 
82
- #: ../super_socializer.php:939 ../helper.php:508
83
  msgid "Enter your LiveJournal username"
84
  msgstr ""
85
 
86
- #: ../super_socializer.php:1011
87
  msgid "Leave a reply"
88
  msgstr ""
89
 
90
- #: ../super_socializer.php:1023 ../inc/social_sharing.php:241
91
  msgid "Shares"
92
  msgstr ""
93
 
94
- #: ../super_socializer.php:1023 ../inc/social_sharing.php:241
95
  msgid "Share"
96
  msgstr ""
97
 
98
- #: ../super_socializer.php:1023
99
  msgid "Link copied."
100
  msgstr ""
101
 
102
- #: ../super_socializer.php:1269
103
  msgid "Super Socializer - General Options"
104
  msgstr ""
105
 
106
- #: ../super_socializer.php:1269 ../admin/general_options.php:15
107
  #: ../admin/social_commenting.php:47
108
  msgid "General Options"
109
  msgstr ""
110
 
111
- #: ../super_socializer.php:1337 ../helper.php:898
112
  msgid "Social Avatar"
113
  msgstr ""
114
 
115
- #: ../super_socializer.php:1340
116
  msgid "Small Avatar Url"
117
  msgstr ""
118
 
119
- #: ../super_socializer.php:1344
120
  msgid "Large Avatar Url"
121
  msgstr ""
122
 
123
- #: ../super_socializer.php:1348 ../helper.php:901
124
  msgid ""
125
  "Do not fetch and update social avatar from my profile, next time I Social "
126
  "Login"
127
  msgstr ""
128
 
129
- #: ../super_socializer.php:1352 ../helper.php:902
130
  msgid "Update social avatar, next time I Social Login"
131
  msgstr ""
132
 
133
- #: ../super_socializer.php:1425 ../super_socializer.php:2197
134
- msgid ""
135
- "Your browser is blocking some features of this website. Please follow the "
136
- "instructions at {support_url} to unblock these."
137
- msgstr ""
138
-
139
- #: ../super_socializer.php:1431
140
  msgid "Login with your Social ID"
141
  msgstr ""
142
 
143
- #: ../super_socializer.php:1432
144
  msgid "Email you entered is already registered or invalid"
145
  msgstr ""
146
 
147
- #: ../super_socializer.php:1437
148
  msgid "Please enter a valid email address. You might be required to verify it"
149
  msgstr ""
150
 
151
- #: ../super_socializer.php:1441 ../super_socializer.php:2121
152
  msgid "Link your social account to login to your account at this website"
153
  msgstr ""
154
 
155
- #: ../super_socializer.php:1687
156
  msgid "Thanks for installing Super Socializer plugin"
157
  msgstr ""
158
 
159
- #: ../super_socializer.php:1689
160
  msgid "Configure the Plugin"
161
  msgstr ""
162
 
163
- #: ../super_socializer.php:1700
164
  msgid ""
165
  "Update \"Facebook Comments Moderation\" add-on for compatibility with "
166
  "current version of Super Socialzer"
167
  msgstr ""
168
 
169
- #: ../super_socializer.php:1709
170
  msgid ""
171
  "Update \"Facebook Comments Notifier\" add-on for compatibility with current "
172
  "version of Super Socialzer"
173
  msgstr ""
174
 
175
- #: ../super_socializer.php:1718
176
  msgid ""
177
  "Update \"Social Login Buttons\" add-on for compatibility with current "
178
  "version of Super Socialzer"
179
  msgstr ""
180
 
181
- #: ../super_socializer.php:1727
182
  msgid ""
183
  "Update \"Social Share myCRED Integration\" add-on for maximum compatibility "
184
  "with current version of Super Socialzer"
185
  msgstr ""
186
 
187
- #: ../super_socializer.php:1736
188
  msgid ""
189
  "Update \"Social Login myCRED Integration\" add-on for maximum compatibility "
190
  "with current version of Super Socialzer"
191
  msgstr ""
192
 
193
- #: ../super_socializer.php:1743
194
  msgid ""
195
  "Update \"Social Login myCRED Integration\" add-on for compatibility with "
196
  "LiveJournal Login of Super Socialzer"
197
  msgstr ""
198
 
199
- #: ../super_socializer.php:1754
200
  #, php-format
201
  msgid ""
202
  "To continue using Steam login save Steam API key <a href=\"%s\">here</a>"
203
  msgstr ""
204
 
205
- #: ../super_socializer.php:1770
206
  #, php-format
207
  msgid ""
208
  "To continue using Social Login, save the secret keys <a href=\"%s\">here</a>"
209
  msgstr ""
210
 
211
- #: ../super_socializer.php:1794
212
  #, php-format
213
  msgid ""
214
  "Add %s in \"Valid OAuth redirect URIs\" option in your Facebook app settings "
@@ -216,14 +204,14 @@ msgid ""
216
  "target=\"_blank\">here</a>"
217
  msgstr ""
218
 
219
- #: ../super_socializer.php:1794 ../super_socializer.php:1819
220
- #: ../super_socializer.php:1844 ../super_socializer.php:1869
221
- #: ../super_socializer.php:1902 ../super_socializer.php:1930
222
- #: ../super_socializer.php:1957 ../super_socializer.php:2034
223
  msgid "Okay"
224
  msgstr ""
225
 
226
- #: ../super_socializer.php:1819
227
  #, php-format
228
  msgid ""
229
  "Add %s in \"Callback URLs\" option in your Twitter app settings for Twitter "
@@ -231,7 +219,7 @@ msgid ""
231
  "\">here</a>"
232
  msgstr ""
233
 
234
- #: ../super_socializer.php:1844
235
  #, php-format
236
  msgid ""
237
  "Add %s in \"Authorized Redirect URLs\" option in your Linkedin app settings "
@@ -239,7 +227,7 @@ msgid ""
239
  "target=\"_blank\">here</a>"
240
  msgstr ""
241
 
242
- #: ../super_socializer.php:1869
243
  #, php-format
244
  msgid ""
245
  "Add %s in \"Authorized redirect URIs\" option in your Google client settings "
@@ -247,13 +235,13 @@ msgid ""
247
  "target=\"_blank\">here</a>"
248
  msgstr ""
249
 
250
- #: ../super_socializer.php:1880
251
  #, php-format
252
  msgid ""
253
  "Save the url of privacy policy page of your website <a href=\"%s\">here</a>"
254
  msgstr ""
255
 
256
- #: ../super_socializer.php:1902
257
  #, php-format
258
  msgid ""
259
  "This plugin is GDPR compliant. You need to update the privacy policy of your "
@@ -261,7 +249,7 @@ msgid ""
261
  "\"%s\" target=\"_blank\">here</a>"
262
  msgstr ""
263
 
264
- #: ../super_socializer.php:1930
265
  #, php-format
266
  msgid ""
267
  "Now plugin supports a new service Twitcount.com to show Twitter shares. To "
@@ -270,7 +258,7 @@ msgid ""
270
  "your website %s with them. No need to copy-paste any code from their website."
271
  msgstr ""
272
 
273
- #: ../super_socializer.php:1957
274
  #, php-format
275
  msgid ""
276
  "Replace url saved in \"Callback URLs\" option in your Twitter app settings "
@@ -278,7 +266,7 @@ msgid ""
278
  "\"%s\" target=\"_blank\">here</a>"
279
  msgstr ""
280
 
281
- #: ../super_socializer.php:1982
282
  #, php-format
283
  msgid ""
284
  "If you cannot get Linkedin login to work after updating the plugin, replace "
@@ -286,11 +274,11 @@ msgid ""
286
  "For more details, check step 6 <a href=\"%s\" target=\"_blank\">here</a>"
287
  msgstr ""
288
 
289
- #: ../super_socializer.php:1982 ../super_socializer.php:2009
290
  msgid "Dismiss"
291
  msgstr ""
292
 
293
- #: ../super_socializer.php:2008
294
  #, php-format
295
  msgid ""
296
  "Save Facebook App ID and Secret keys in \"Standard Interface\" and/or "
@@ -299,7 +287,7 @@ msgid ""
299
  "that, clear share counts cache from \"Miscellaneous\" section"
300
  msgstr ""
301
 
302
- #: ../super_socializer.php:2034
303
  #, php-format
304
  msgid ""
305
  "Your website visitors will see a popup notification (only once) if their "
@@ -309,11 +297,17 @@ msgid ""
309
  "features\" option <a href=\"%s\">here</a>"
310
  msgstr ""
311
 
 
 
 
 
 
 
312
  #: ../helper.php:8
313
  msgid "Settings saved"
314
  msgstr ""
315
 
316
- #: ../helper.php:8 ../admin/social_sharing.php:42
317
  msgid "Dismiss this notice"
318
  msgstr ""
319
 
@@ -401,9 +395,9 @@ msgstr ""
401
  msgid "Large Avatar"
402
  msgstr ""
403
 
404
- #: ../helper.php:913 ../admin/general_options.php:132
405
- #: ../admin/social_sharing.php:2020 ../admin/social_commenting.php:413
406
- #: ../admin/social_login.php:1277 ../admin/like_buttons.php:826
407
  msgid "Save Changes"
408
  msgstr ""
409
 
@@ -423,10 +417,10 @@ msgstr ""
423
  msgid "Something bad happened"
424
  msgstr ""
425
 
426
- #: ../admin/general_options.php:7 ../admin/general_options.php:136
427
- #: ../admin/social_sharing.php:5 ../admin/social_sharing.php:2024
428
  #: ../admin/social_commenting.php:5 ../admin/social_commenting.php:417
429
- #: ../admin/social_login.php:5 ../admin/social_login.php:1281
430
  #: ../admin/like_buttons.php:6 ../admin/like_buttons.php:830
431
  #, php-format
432
  msgid ""
@@ -464,52 +458,31 @@ msgid ""
464
  msgstr ""
465
 
466
  #: ../admin/general_options.php:75
467
- msgid ""
468
- "Show popup notification to users if their browsers block the plugin features"
469
- msgstr ""
470
-
471
- #: ../admin/general_options.php:85
472
- msgid ""
473
- "If enabled, your website visitors will see a popup notification (only once) "
474
- "if their browsers block any of the features of the plugin so that they can "
475
- "change their browser settings to unblock these."
476
- msgstr ""
477
-
478
- #: ../admin/general_options.php:95
479
- msgid "Message to show in popup notification"
480
- msgstr ""
481
-
482
- #: ../admin/general_options.php:105
483
- msgid ""
484
- "Use {support_url} placeholder to show support documentation url in message"
485
- msgstr ""
486
-
487
- #: ../admin/general_options.php:114
488
  msgid "Custom CSS"
489
  msgstr ""
490
 
491
- #: ../admin/general_options.php:124
492
  msgid "You can specify any additional CSS rules (without &lt;style&gt; tag)"
493
  msgstr ""
494
 
495
- #: ../admin/general_options.php:147 ../admin/social_sharing.php:2030
496
- #: ../admin/social_commenting.php:423 ../admin/social_login.php:1287
497
- #: ../admin/like_buttons.php:836
498
  msgid "Instagram Shoutout"
499
  msgstr ""
500
 
501
- #: ../admin/general_options.php:149 ../admin/social_sharing.php:2032
502
- #: ../admin/social_commenting.php:425 ../admin/social_login.php:1289
503
- #: ../admin/like_buttons.php:838
504
  msgid ""
505
  "If you can send (to hello@heateor.com) how our plugin is helping your "
506
  "business, we can share it on Instagram. You can also send any relevant "
507
  "hashtags and people to mention in the Instagram post."
508
  msgstr ""
509
 
510
- #: ../admin/general_options.php:150 ../admin/social_sharing.php:2033
511
- #: ../admin/social_commenting.php:426 ../admin/social_login.php:1290
512
- #: ../admin/like_buttons.php:839
513
  msgid ""
514
  "<b>Example</b> - Blah-Blah Online Coaching teaches various programming "
515
  "language courses through their website. They have emerged as one of the most "
@@ -518,9 +491,9 @@ msgid ""
518
  "time."
519
  msgstr ""
520
 
521
- #: ../admin/general_options.php:151 ../admin/social_sharing.php:2034
522
- #: ../admin/social_commenting.php:427 ../admin/social_login.php:1291
523
- #: ../admin/like_buttons.php:840
524
  msgid ""
525
  "@blahblahonlinecoaching proudly use #SuperSocializer to enable social "
526
  "features at their website, such as - Social Login, Social Share and Social "
@@ -624,150 +597,150 @@ msgstr ""
624
  msgid "Recover Social Share Counts Lost After Moving to SSL/Https"
625
  msgstr ""
626
 
627
- #: ../admin/social_sharing.php:42 ../admin/social_sharing.php:1983
628
  msgid ""
629
  "Save Facebook App Id and Secret in the \"Miscellaneous\" section for "
630
  "Facebook share count to work"
631
  msgstr ""
632
 
633
- #: ../admin/social_sharing.php:49
634
  msgid "Theme Selection"
635
  msgstr ""
636
 
637
- #: ../admin/social_sharing.php:50 ../admin/like_buttons.php:41
638
  msgid "Standard Interface"
639
  msgstr ""
640
 
641
- #: ../admin/social_sharing.php:51 ../admin/like_buttons.php:42
642
  msgid "Floating Interface"
643
  msgstr ""
644
 
645
- #: ../admin/social_sharing.php:52 ../admin/like_buttons.php:43
646
  msgid "Miscellaneous"
647
  msgstr ""
648
 
649
- #: ../admin/social_sharing.php:56 ../admin/like_buttons.php:47
650
  msgid "3rd Party Integration"
651
  msgstr ""
652
 
653
- #: ../admin/social_sharing.php:60 ../admin/social_sharing.php:1945
654
- #: ../admin/social_sharing.php:1947 ../admin/social_login.php:46
655
- #: ../admin/social_login.php:1243 ../admin/like_buttons.php:51
656
  #: ../admin/like_buttons.php:797
657
  msgid "Shortcode & Widget"
658
  msgstr ""
659
 
660
- #: ../admin/social_sharing.php:61
661
  msgid "Troubleshooter"
662
  msgstr ""
663
 
664
- #: ../admin/social_sharing.php:62 ../admin/social_sharing.php:1978
665
  #: ../admin/social_commenting.php:40 ../admin/social_commenting.php:397
666
- #: ../admin/social_login.php:47 ../admin/social_login.php:1257
667
  #: ../admin/like_buttons.php:52 ../admin/like_buttons.php:810
668
  msgid "FAQ"
669
  msgstr ""
670
 
671
- #: ../admin/social_sharing.php:70
672
  msgid "Standard interface theme"
673
  msgstr ""
674
 
675
- #: ../admin/social_sharing.php:75 ../admin/social_sharing.php:382
676
  msgid "Icon Preview"
677
  msgstr ""
678
 
679
- #: ../admin/social_sharing.php:147 ../admin/social_sharing.php:455
680
  msgid ""
681
  "Do not forget to save the configuration after making changes by clicking the "
682
  "save button below"
683
  msgstr ""
684
 
685
- #: ../admin/social_sharing.php:154 ../admin/social_sharing.php:462
686
  msgid "Shape"
687
  msgstr ""
688
 
689
- #: ../admin/social_sharing.php:158 ../admin/social_sharing.php:466
690
  #: ../inc/widget.php:951
691
  msgid "Round"
692
  msgstr ""
693
 
694
- #: ../admin/social_sharing.php:160 ../admin/social_sharing.php:468
695
  #: ../inc/widget.php:952
696
  msgid "Square"
697
  msgstr ""
698
 
699
- #: ../admin/social_sharing.php:162 ../admin/social_sharing.php:470
700
  msgid "Rectangle"
701
  msgstr ""
702
 
703
- #: ../admin/social_sharing.php:169 ../admin/social_sharing.php:477
704
  msgid "Shape of the sharing icons"
705
  msgstr ""
706
 
707
- #: ../admin/social_sharing.php:178 ../admin/social_sharing.php:486
708
  msgid "Size (in pixels)"
709
  msgstr ""
710
 
711
- #: ../admin/social_sharing.php:194 ../admin/social_sharing.php:502
712
  msgid "Size of the sharing icons"
713
  msgstr ""
714
 
715
- #: ../admin/social_sharing.php:204 ../admin/social_sharing.php:512
716
  msgid "Width (in pixels)"
717
  msgstr ""
718
 
719
- #: ../admin/social_sharing.php:220 ../admin/social_sharing.php:528
720
  msgid "Width of the sharing icons"
721
  msgstr ""
722
 
723
- #: ../admin/social_sharing.php:228 ../admin/social_sharing.php:536
724
  msgid "Height (in pixels)"
725
  msgstr ""
726
 
727
- #: ../admin/social_sharing.php:244 ../admin/social_sharing.php:552
728
  msgid "Height of the sharing icons"
729
  msgstr ""
730
 
731
- #: ../admin/social_sharing.php:254 ../admin/social_sharing.php:562
732
  msgid "Border radius (in pixels)"
733
  msgstr ""
734
 
735
- #: ../admin/social_sharing.php:264 ../admin/social_sharing.php:572
736
  msgid ""
737
  "Specify a value for rounded corners. More the value, more rounded will the "
738
  "corners be. Leave empty for sharp corners."
739
  msgstr ""
740
 
741
- #: ../admin/social_sharing.php:273 ../admin/social_sharing.php:581
742
  msgid "Logo Color"
743
  msgstr ""
744
 
745
- #: ../admin/social_sharing.php:277 ../admin/social_sharing.php:298
746
- #: ../admin/social_sharing.php:318 ../admin/social_sharing.php:585
747
- #: ../admin/social_sharing.php:606 ../admin/social_sharing.php:625
748
  msgid "Default"
749
  msgstr ""
750
 
751
- #: ../admin/social_sharing.php:279 ../admin/social_sharing.php:299
752
- #: ../admin/social_sharing.php:323 ../admin/social_sharing.php:587
753
- #: ../admin/social_sharing.php:607 ../admin/social_sharing.php:630
754
  msgid "On Hover"
755
  msgstr ""
756
 
757
- #: ../admin/social_sharing.php:287 ../admin/social_sharing.php:595
758
  msgid ""
759
  "Specify the color or hex code (example #cc78e0) for the logo of icon. Leave "
760
  "empty for default. You can get the hex code of the required color from <a "
761
  "href=\"http://www.colorpicker.com/\" target=\"_blank\">this link</a>"
762
  msgstr ""
763
 
764
- #: ../admin/social_sharing.php:295 ../admin/social_sharing.php:603
765
- #: ../admin/social_sharing.php:1318 ../admin/like_buttons.php:410
766
  #: ../inc/widget.php:460 ../inc/widget.php:772
767
  msgid "Background Color"
768
  msgstr ""
769
 
770
- #: ../admin/social_sharing.php:306 ../admin/social_sharing.php:614
771
  msgid ""
772
  "Specify the color or hex code (example #cc78e0) for icon background. Save "
773
  "\"transparent\" for transparent background. Leave empty for default. You can "
@@ -775,277 +748,277 @@ msgid ""
775
  "com/\" target=\"_blank\">this link</a>"
776
  msgstr ""
777
 
778
- #: ../admin/social_sharing.php:314 ../admin/social_sharing.php:622
779
  msgid "Border"
780
  msgstr ""
781
 
782
- #: ../admin/social_sharing.php:320 ../admin/social_sharing.php:325
783
- #: ../admin/social_sharing.php:627 ../admin/social_sharing.php:632
784
  msgid "Border Width"
785
  msgstr ""
786
 
787
- #: ../admin/social_sharing.php:321 ../admin/social_sharing.php:326
788
- #: ../admin/social_sharing.php:628 ../admin/social_sharing.php:633
789
  msgid "Border Color"
790
  msgstr ""
791
 
792
- #: ../admin/social_sharing.php:333 ../admin/social_sharing.php:640
793
  msgid "Icon border"
794
  msgstr ""
795
 
796
- #: ../admin/social_sharing.php:341 ../admin/social_sharing.php:648
797
  msgid "Counter Position"
798
  msgstr ""
799
 
800
- #: ../admin/social_sharing.php:341 ../admin/social_sharing.php:648
801
  msgid "(applies, if counter enabled)"
802
  msgstr ""
803
 
804
- #: ../admin/social_sharing.php:345 ../admin/social_sharing.php:652
805
- #: ../admin/social_sharing.php:935 ../admin/social_sharing.php:1340
806
  #: ../admin/like_buttons.php:183 ../admin/like_buttons.php:432
807
  #: ../inc/widget.php:446 ../inc/widget.php:758
808
  msgid "Left"
809
  msgstr ""
810
 
811
- #: ../admin/social_sharing.php:347 ../admin/social_sharing.php:654
812
  msgid "Top"
813
  msgstr ""
814
 
815
- #: ../admin/social_sharing.php:349 ../admin/social_sharing.php:656
816
- #: ../admin/social_sharing.php:937 ../admin/social_sharing.php:1341
817
  #: ../admin/like_buttons.php:185 ../admin/like_buttons.php:433
818
  #: ../inc/widget.php:447 ../inc/widget.php:759
819
  msgid "Right"
820
  msgstr ""
821
 
822
- #: ../admin/social_sharing.php:351 ../admin/social_sharing.php:658
823
  msgid "Bottom"
824
  msgstr ""
825
 
826
- #: ../admin/social_sharing.php:353 ../admin/social_sharing.php:660
827
  msgid "Inner Left"
828
  msgstr ""
829
 
830
- #: ../admin/social_sharing.php:355 ../admin/social_sharing.php:662
831
  msgid "Inner Top"
832
  msgstr ""
833
 
834
- #: ../admin/social_sharing.php:357 ../admin/social_sharing.php:664
835
  msgid "Inner Right"
836
  msgstr ""
837
 
838
- #: ../admin/social_sharing.php:359 ../admin/social_sharing.php:666
839
  msgid "Inner Bottom"
840
  msgstr ""
841
 
842
- #: ../admin/social_sharing.php:367 ../admin/social_sharing.php:674
843
  msgid "Position of share counter"
844
  msgstr ""
845
 
846
- #: ../admin/social_sharing.php:377
847
  msgid "Floating interface theme"
848
  msgstr ""
849
 
850
- #: ../admin/social_sharing.php:690
851
  msgid "Standard Sharing Interface Options"
852
  msgstr ""
853
 
854
- #: ../admin/social_sharing.php:696
855
  msgid "Enable Standard sharing interface"
856
  msgstr ""
857
 
858
- #: ../admin/social_sharing.php:706
859
  msgid "Master control to enable standard sharing"
860
  msgstr ""
861
 
862
- #: ../admin/social_sharing.php:716 ../admin/social_sharing.php:1144
863
  #: ../admin/like_buttons.php:86 ../admin/like_buttons.php:336
864
  msgid "Target Url"
865
  msgstr ""
866
 
867
- #: ../admin/social_sharing.php:720 ../admin/social_sharing.php:1148
868
  #: ../admin/like_buttons.php:90 ../admin/like_buttons.php:340
869
  msgid "Url of the webpage where icons are located (default)"
870
  msgstr ""
871
 
872
- #: ../admin/social_sharing.php:722 ../admin/social_sharing.php:1150
873
  #: ../admin/like_buttons.php:92 ../admin/like_buttons.php:342
874
  msgid "Url of the homepage of your website"
875
  msgstr ""
876
 
877
- #: ../admin/social_sharing.php:724 ../admin/social_sharing.php:1152
878
  #: ../admin/like_buttons.php:94 ../admin/like_buttons.php:344
879
  msgid "Custom url"
880
  msgstr ""
881
 
882
- #: ../admin/social_sharing.php:731 ../admin/social_sharing.php:1159
883
  msgid "Url to share"
884
  msgstr ""
885
 
886
- #: ../admin/social_sharing.php:739 ../admin/social_login.php:532
887
  #: ../admin/social_login.php:927 ../admin/like_buttons.php:109
888
  #: ../inc/widget.php:945
889
  msgid "Title"
890
  msgstr ""
891
 
892
- #: ../admin/social_sharing.php:749
893
  msgid "The text to display above the sharing interface"
894
  msgstr ""
895
 
896
- #: ../admin/social_sharing.php:774 ../admin/social_sharing.php:1168
897
  msgid "Instagram username"
898
  msgstr ""
899
 
900
- #: ../admin/social_sharing.php:784 ../admin/social_sharing.php:1178
901
  msgid ""
902
  "Username of the Instagram account you want to redirect users to, on clicking "
903
  "the icon"
904
  msgstr ""
905
 
906
- #: ../admin/social_sharing.php:794 ../admin/social_sharing.php:1188
907
  msgid "HTML ID of container element of comment form"
908
  msgstr ""
909
 
910
- #: ../admin/social_sharing.php:804 ../admin/social_sharing.php:1198
911
  msgid ""
912
  "HTML ID of the element you want to focus on the webpage, on click of Comment "
913
  "icon."
914
  msgstr ""
915
 
916
- #: ../admin/social_sharing.php:818 ../admin/social_sharing.php:1207
917
  msgid "Rearrange icons"
918
  msgstr ""
919
 
920
- #: ../admin/social_sharing.php:879 ../admin/social_sharing.php:1266
921
  msgid "Drag the icons to rearrange in desired order"
922
  msgstr ""
923
 
924
- #: ../admin/social_sharing.php:887 ../admin/social_sharing.php:1274
925
  msgid "Select Sharing Services"
926
  msgstr ""
927
 
928
- #: ../admin/social_sharing.php:894 ../admin/social_sharing.php:1281
929
  msgid "Select sharing services to show in social share bar"
930
  msgstr ""
931
 
932
- #: ../admin/social_sharing.php:912 ../admin/social_sharing.php:1299
933
  msgid "Search social network"
934
  msgstr ""
935
 
936
- #: ../admin/social_sharing.php:931 ../admin/social_sharing.php:1336
937
  #: ../admin/like_buttons.php:179 ../admin/like_buttons.php:428
938
  msgid "Horizontal alignment"
939
  msgstr ""
940
 
941
- #: ../admin/social_sharing.php:936 ../admin/like_buttons.php:184
942
  msgid "Center"
943
  msgstr ""
944
 
945
- #: ../admin/social_sharing.php:945 ../admin/social_sharing.php:1349
946
  msgid "Horizontal alignment of the sharing interface"
947
  msgstr ""
948
 
949
- #: ../admin/social_sharing.php:953 ../admin/like_buttons.php:201
950
  msgid "Position with respect to content"
951
  msgstr ""
952
 
953
- #: ../admin/social_sharing.php:957 ../admin/like_buttons.php:205
954
  msgid "Top of the content"
955
  msgstr ""
956
 
957
- #: ../admin/social_sharing.php:959 ../admin/like_buttons.php:207
958
  msgid "Bottom of the content"
959
  msgstr ""
960
 
961
- #: ../admin/social_sharing.php:966
962
  msgid "Specify position of the sharing interface with respect to the content"
963
  msgstr ""
964
 
965
- #: ../admin/social_sharing.php:974 ../admin/social_sharing.php:1415
966
  msgid "Placement"
967
  msgstr ""
968
 
969
- #: ../admin/social_sharing.php:978 ../admin/social_sharing.php:1419
970
  #: ../admin/social_login.php:866 ../admin/social_login.php:896
971
  #: ../admin/like_buttons.php:226 ../admin/like_buttons.php:511
972
  msgid "Homepage"
973
  msgstr ""
974
 
975
- #: ../admin/social_sharing.php:980 ../admin/social_sharing.php:1421
976
  #: ../admin/like_buttons.php:228 ../admin/like_buttons.php:513
977
  msgid "Posts"
978
  msgstr ""
979
 
980
- #: ../admin/social_sharing.php:982 ../admin/social_sharing.php:1423
981
  #: ../admin/like_buttons.php:230 ../admin/like_buttons.php:515
982
  msgid "Pages"
983
  msgstr ""
984
 
985
- #: ../admin/social_sharing.php:984 ../admin/social_sharing.php:1425
986
  #: ../admin/like_buttons.php:232 ../admin/like_buttons.php:517
987
  msgid "Excerpts and Posts page"
988
  msgstr ""
989
 
990
- #: ../admin/social_sharing.php:986 ../admin/social_sharing.php:1427
991
  #: ../admin/like_buttons.php:234 ../admin/like_buttons.php:519
992
  msgid "Category Archives"
993
  msgstr ""
994
 
995
- #: ../admin/social_sharing.php:988 ../admin/social_sharing.php:1429
996
  #: ../admin/like_buttons.php:236 ../admin/like_buttons.php:521
997
  msgid "Archive Pages (Category, Tag, Author or Date based pages)"
998
  msgstr ""
999
 
1000
- #: ../admin/social_sharing.php:1004 ../admin/like_buttons.php:252
1001
  msgid "BuddyPress activity"
1002
  msgstr ""
1003
 
1004
- #: ../admin/social_sharing.php:1006 ../admin/like_buttons.php:255
1005
  msgid "BuddyPress group (only at top of content)"
1006
  msgstr ""
1007
 
1008
- #: ../admin/social_sharing.php:1012 ../admin/social_sharing.php:1451
1009
  #: ../admin/like_buttons.php:262 ../admin/like_buttons.php:542
1010
  msgid "BBPress forum"
1011
  msgstr ""
1012
 
1013
- #: ../admin/social_sharing.php:1015 ../admin/social_sharing.php:1454
1014
  #: ../admin/like_buttons.php:265 ../admin/like_buttons.php:545
1015
  msgid "BBPress topic"
1016
  msgstr ""
1017
 
1018
- #: ../admin/social_sharing.php:1018 ../admin/like_buttons.php:268
1019
  msgid "BBPress reply"
1020
  msgstr ""
1021
 
1022
- #: ../admin/social_sharing.php:1025 ../admin/like_buttons.php:275
1023
  msgid "After individual product at WooCommerce Shop page"
1024
  msgstr ""
1025
 
1026
- #: ../admin/social_sharing.php:1028 ../admin/like_buttons.php:278
1027
  msgid "WooCommerce Product Page"
1028
  msgstr ""
1029
 
1030
- #: ../admin/social_sharing.php:1031 ../admin/like_buttons.php:281
1031
  msgid "WooCommerce Thankyou Page"
1032
  msgstr ""
1033
 
1034
- #: ../admin/social_sharing.php:1042
1035
  msgid "Specify the pages where you want to enable Sharing interface"
1036
  msgstr ""
1037
 
1038
- #: ../admin/social_sharing.php:1050 ../admin/social_sharing.php:1472
1039
  msgid "Show share counts"
1040
  msgstr ""
1041
 
1042
- #: ../admin/social_sharing.php:1055 ../admin/social_sharing.php:1477
1043
  msgid ""
1044
  "Share counts are supported for Facebook, Twitter, Linkedin, Buffer, Reddit, "
1045
  "Pinterest, Odnoklassniki, Fintel and Vkontakte"
1046
  msgstr ""
1047
 
1048
- #: ../admin/social_sharing.php:1056 ../admin/social_sharing.php:1478
1049
  #, php-format
1050
  msgid ""
1051
  "To show Twitter share count, you have to click \"Give me my Twitter counts "
@@ -1054,41 +1027,41 @@ msgid ""
1054
  "their website."
1055
  msgstr ""
1056
 
1057
- #: ../admin/social_sharing.php:1063 ../admin/social_sharing.php:1485
1058
  msgid "If enabled, share counts are displayed above sharing icons."
1059
  msgstr ""
1060
 
1061
- #: ../admin/social_sharing.php:1072 ../admin/social_sharing.php:1494
1062
  msgid "Show total shares"
1063
  msgstr ""
1064
 
1065
- #: ../admin/social_sharing.php:1082 ../admin/social_sharing.php:1504
1066
  msgid "If enabled, total shares will be displayed with sharing icons"
1067
  msgstr ""
1068
 
1069
- #: ../admin/social_sharing.php:1091 ../admin/social_sharing.php:1513
1070
  msgid "Enable 'More' icon"
1071
  msgstr ""
1072
 
1073
- #: ../admin/social_sharing.php:1101 ../admin/social_sharing.php:1523
1074
  msgid ""
1075
  "If enabled, \"More\" icon will be displayed after selected sharing icons "
1076
  "which shows additional sharing networks in popup"
1077
  msgstr ""
1078
 
1079
- #: ../admin/social_sharing.php:1118
1080
  msgid "Floating Sharing Interface Options"
1081
  msgstr ""
1082
 
1083
- #: ../admin/social_sharing.php:1124
1084
  msgid "Enable Floating sharing interface"
1085
  msgstr ""
1086
 
1087
- #: ../admin/social_sharing.php:1134
1088
  msgid "Master control to enable floating sharing widget"
1089
  msgstr ""
1090
 
1091
- #: ../admin/social_sharing.php:1328
1092
  msgid ""
1093
  "Specify the color or hex code (example #cc78e0) for the background of "
1094
  "vertical sharing bar. Leave empty for transparent. You can get the hex code "
@@ -1096,208 +1069,208 @@ msgid ""
1096
  "\"_blank\">this link</a>"
1097
  msgstr ""
1098
 
1099
- #: ../admin/social_sharing.php:1358 ../admin/like_buttons.php:450
1100
  msgid "Left offset"
1101
  msgstr ""
1102
 
1103
- #: ../admin/social_sharing.php:1368
1104
  msgid ""
1105
  "Specify a number. Increase in number will shift sharing interface towards "
1106
  "right and decrease will shift it towards left. Number can be negative too."
1107
  msgstr ""
1108
 
1109
- #: ../admin/social_sharing.php:1378 ../admin/like_buttons.php:470
1110
  msgid "Right offset"
1111
  msgstr ""
1112
 
1113
- #: ../admin/social_sharing.php:1388
1114
  msgid ""
1115
  "Specify a number. Increase in number will shift sharing interface towards "
1116
  "left and decrease will shift it towards right. Number can be negative too."
1117
  msgstr ""
1118
 
1119
- #: ../admin/social_sharing.php:1397 ../admin/like_buttons.php:489
1120
  msgid "Top offset"
1121
  msgstr ""
1122
 
1123
- #: ../admin/social_sharing.php:1407
1124
  msgid ""
1125
  "Specify a number. Increase in number will shift sharing interface towards "
1126
  "bottom and decrease will shift it towards top."
1127
  msgstr ""
1128
 
1129
- #: ../admin/social_sharing.php:1443 ../admin/like_buttons.php:535
1130
  msgid "BuddyPress group"
1131
  msgstr ""
1132
 
1133
- #: ../admin/social_sharing.php:1464
1134
  msgid "Specify the pages where you want to enable vertical Sharing interface"
1135
  msgstr ""
1136
 
1137
- #: ../admin/social_sharing.php:1531
1138
  msgid "Hide floating slider"
1139
  msgstr ""
1140
 
1141
- #: ../admin/social_sharing.php:1541
1142
  msgid "Hides the slider arrow present below the floating share bar"
1143
  msgstr ""
1144
 
1145
- #: ../admin/social_sharing.php:1549
1146
  msgid "Vertical floating bar responsiveness"
1147
  msgstr ""
1148
 
1149
- #: ../admin/social_sharing.php:1552
1150
  #, php-format
1151
  msgid "Display vertical interface only when screen is wider than %s pixels"
1152
  msgstr ""
1153
 
1154
- #: ../admin/social_sharing.php:1559
1155
  msgid ""
1156
  "Display vertical interface only when screen is wider than the width "
1157
  "specified."
1158
  msgstr ""
1159
 
1160
- #: ../admin/social_sharing.php:1567
1161
  msgid "Horizontal floating bar responsiveness"
1162
  msgstr ""
1163
 
1164
- #: ../admin/social_sharing.php:1570
1165
  #, php-format
1166
  msgid ""
1167
  "Stick vertical floating interface horizontally at bottom only when screen is "
1168
  "narrower than %s pixels"
1169
  msgstr ""
1170
 
1171
- #: ../admin/social_sharing.php:1577
1172
  msgid ""
1173
  "Stick vertical floating interface horizontally at bottom only when screen is "
1174
  "narrower than the width specified"
1175
  msgstr ""
1176
 
1177
- #: ../admin/social_sharing.php:1587
1178
  msgid "Horizontal floating bar position"
1179
  msgstr ""
1180
 
1181
- #: ../admin/social_sharing.php:1590
1182
  #, php-format
1183
  msgid "%s pixels from %s"
1184
  msgstr ""
1185
 
1186
- #: ../admin/social_sharing.php:1591
1187
  msgid "Auto-adjust according to screen width (responsive)"
1188
  msgstr ""
1189
 
1190
- #: ../admin/social_sharing.php:1598
1191
  msgid "Alignment of horizontal floating interface. Number can be negative too."
1192
  msgstr ""
1193
 
1194
- #: ../admin/social_sharing.php:1618
1195
  msgid "Facebook Share Count"
1196
  msgstr ""
1197
 
1198
- #: ../admin/social_sharing.php:1622
1199
  msgid "Note"
1200
  msgstr ""
1201
 
1202
- #: ../admin/social_sharing.php:1622
1203
  msgid "Required only to track Facebook share count"
1204
  msgstr ""
1205
 
1206
- #: ../admin/social_sharing.php:1628 ../admin/social_login.php:161
1207
  msgid "Facebook App ID"
1208
  msgstr ""
1209
 
1210
- #: ../admin/social_sharing.php:1638
1211
  #, php-format
1212
  msgid ""
1213
  "Required for Facebook share count to work. Please follow the documentation "
1214
  "at <a href=\"%s\" target=\"_blank\">this link</a> to get Facebook App ID"
1215
  msgstr ""
1216
 
1217
- #: ../admin/social_sharing.php:1646 ../admin/social_login.php:183
1218
  msgid "Facebook App Secret"
1219
  msgstr ""
1220
 
1221
- #: ../admin/social_sharing.php:1656
1222
  #, php-format
1223
  msgid ""
1224
  "Required for Facebook share count to work. Please follow the documentation "
1225
  "at <a href=\"%s\" target=\"_blank\">this link</a> to get Facebook App Secret"
1226
  msgstr ""
1227
 
1228
- #: ../admin/social_sharing.php:1665 ../admin/like_buttons.php:592
1229
  msgid "Url shortener"
1230
  msgstr ""
1231
 
1232
- #: ../admin/social_sharing.php:1671
1233
  msgid "Use shortlinks already installed"
1234
  msgstr ""
1235
 
1236
- #: ../admin/social_sharing.php:1681
1237
  msgid "Uses default short url permalinks without using any additional plugin"
1238
  msgstr ""
1239
 
1240
- #: ../admin/social_sharing.php:1689
1241
  msgid "Enable bit.ly url shortener for sharing"
1242
  msgstr ""
1243
 
1244
- #: ../admin/social_sharing.php:1699 ../admin/like_buttons.php:626
1245
  msgid "Master control to enable bit.ly url shortening for sharing"
1246
  msgstr ""
1247
 
1248
- #: ../admin/social_sharing.php:1707
1249
  msgid "bit.ly Login"
1250
  msgstr ""
1251
 
1252
- #: ../admin/social_sharing.php:1717 ../admin/social_sharing.php:1736
1253
  #, php-format
1254
  msgid "More details on how to get it <a href=\"%s\" target=\"_blank\">here</a>"
1255
  msgstr ""
1256
 
1257
- #: ../admin/social_sharing.php:1726 ../admin/like_buttons.php:653
1258
  msgid "bit.ly API Key"
1259
  msgstr ""
1260
 
1261
- #: ../admin/social_sharing.php:1745 ../admin/like_buttons.php:672
1262
  msgid "Clear Bitly Cache"
1263
  msgstr ""
1264
 
1265
- #: ../admin/social_sharing.php:1749 ../admin/like_buttons.php:676
1266
  msgid "ShortUrl cache cleared successfully."
1267
  msgstr ""
1268
 
1269
- #: ../admin/social_sharing.php:1756 ../admin/like_buttons.php:683
1270
  msgid ""
1271
  "Use this to delete short urls saved in database. Handy, if urls of your "
1272
  "website have been changed but short urls are still being generated for old "
1273
  "urls."
1274
  msgstr ""
1275
 
1276
- #: ../admin/social_sharing.php:1765
1277
  msgid "Share Count Cache"
1278
  msgstr ""
1279
 
1280
- #: ../admin/social_sharing.php:1771
1281
  msgid "Refresh Share Count cache every"
1282
  msgstr ""
1283
 
1284
- #: ../admin/social_sharing.php:1776
1285
  msgid "Second(s)"
1286
  msgstr ""
1287
 
1288
- #: ../admin/social_sharing.php:1777
1289
  msgid "Minute(s)"
1290
  msgstr ""
1291
 
1292
- #: ../admin/social_sharing.php:1778
1293
  msgid "Hour(s)"
1294
  msgstr ""
1295
 
1296
- #: ../admin/social_sharing.php:1779
1297
  msgid "Day(s)"
1298
  msgstr ""
1299
 
1300
- #: ../admin/social_sharing.php:1787
1301
  #, php-format
1302
  msgid ""
1303
  "Frequent cache refreshing results in slower loading of pages with share "
@@ -1305,25 +1278,25 @@ msgid ""
1305
  "target=\"_blank\">here</a>"
1306
  msgstr ""
1307
 
1308
- #: ../admin/social_sharing.php:1795
1309
  msgid "Clear Share Counts Cache"
1310
  msgstr ""
1311
 
1312
- #: ../admin/social_sharing.php:1799
1313
  msgid "Share Counts cache cleared successfully."
1314
  msgstr ""
1315
 
1316
- #: ../admin/social_sharing.php:1806
1317
  msgid "Use this to clear cached share counts"
1318
  msgstr ""
1319
 
1320
- #: ../admin/social_sharing.php:1815 ../admin/social_sharing.php:1821
1321
  #: ../admin/social_commenting.php:315 ../admin/like_buttons.php:692
1322
  #: ../admin/like_buttons.php:698
1323
  msgid "Language"
1324
  msgstr ""
1325
 
1326
- #: ../admin/social_sharing.php:1831
1327
  #, php-format
1328
  msgid ""
1329
  "Enter the code of the language you want to use for like buttons. You can "
@@ -1331,50 +1304,50 @@ msgid ""
1331
  "Leave it empty for default language(English)"
1332
  msgstr ""
1333
 
1334
- #: ../admin/social_sharing.php:1840
1335
  msgid "Username in sharing"
1336
  msgstr ""
1337
 
1338
- #: ../admin/social_sharing.php:1846
1339
  msgid "Twitter username (without @)"
1340
  msgstr ""
1341
 
1342
- #: ../admin/social_sharing.php:1856 ../admin/social_sharing.php:1875
1343
  msgid ""
1344
  "Provided username will be appended after the content being shared as \"via "
1345
  "@USERNAME\". Leave empty if you do not want any username in the content "
1346
  "being shared."
1347
  msgstr ""
1348
 
1349
- #: ../admin/social_sharing.php:1865
1350
  msgid "Buffer username (without @)"
1351
  msgstr ""
1352
 
1353
- #: ../admin/social_sharing.php:1884
1354
  msgid "AMP"
1355
  msgstr ""
1356
 
1357
- #: ../admin/social_sharing.php:1890
1358
  msgid "Enable sharing on AMP pages"
1359
  msgstr ""
1360
 
1361
- #: ../admin/social_sharing.php:1900
1362
  msgid "Enable this option to render sharing icons on AMP pages"
1363
  msgstr ""
1364
 
1365
- #: ../admin/social_sharing.php:1919 ../admin/like_buttons.php:771
1366
  msgid "myCRED"
1367
  msgstr ""
1368
 
1369
- #: ../admin/social_sharing.php:1925 ../admin/like_buttons.php:777
1370
  msgid "Append myCRED referral ID to the urls being shared"
1371
  msgstr ""
1372
 
1373
- #: ../admin/social_sharing.php:1958
1374
  msgid "Facebook Sharing Troubleshooter"
1375
  msgstr ""
1376
 
1377
- #: ../admin/social_sharing.php:1963
1378
  msgid ""
1379
  "If Facebook sharing is not working fine, click at the following link and "
1380
  "enter the problematic url (where Facebook sharing is not working properly) "
@@ -1382,28 +1355,28 @@ msgid ""
1382
  "button."
1383
  msgstr ""
1384
 
1385
- #: ../admin/social_sharing.php:1980 ../admin/social_commenting.php:399
1386
- #: ../admin/social_login.php:1259
1387
  msgid ""
1388
  "<strong>Note:</strong> Plugin will not work on local server. You should have "
1389
  "an online website for the plugin to function properly."
1390
  msgstr ""
1391
 
1392
- #: ../admin/social_sharing.php:1981
1393
  msgid ""
1394
  "Why is sharer not showing the correct image, title and other meta tags "
1395
  "content?"
1396
  msgstr ""
1397
 
1398
- #: ../admin/social_sharing.php:1982
1399
  msgid "Why is Facebook share count not working?"
1400
  msgstr ""
1401
 
1402
- #: ../admin/social_sharing.php:1985
1403
  msgid "Why is Instagram icon redirecting to Instagram website?"
1404
  msgstr ""
1405
 
1406
- #: ../admin/social_sharing.php:1986
1407
  msgid ""
1408
  "Instagram icon is there to send website visitors to the Instagram page of "
1409
  "your choice. You can save the desired Instagram handle in \"Instagram "
@@ -1411,91 +1384,91 @@ msgid ""
1411
  "sections."
1412
  msgstr ""
1413
 
1414
- #: ../admin/social_sharing.php:1989
1415
  msgid "How to customize the url being shared?"
1416
  msgstr ""
1417
 
1418
- #: ../admin/social_sharing.php:1990
1419
  msgid ""
1420
  "Why are Twitter shares not appearing even after registering at Twitcount.com?"
1421
  msgstr ""
1422
 
1423
- #: ../admin/social_sharing.php:1991
1424
  msgid ""
1425
  "It takes some time for their service to track the shares made on Twitter "
1426
  "from your website. If you still feel it's taking too long you can contact "
1427
  "their support directly from their website."
1428
  msgstr ""
1429
 
1430
- #: ../admin/social_sharing.php:1993 ../admin/like_buttons.php:814
1431
  msgid "How to Place Title and Social Share Icons in the Same Row?"
1432
  msgstr ""
1433
 
1434
- #: ../admin/social_sharing.php:1994
1435
  msgid ""
1436
  "How to restore Social Share counts lost after moving my website to SSL/Https?"
1437
  msgstr ""
1438
 
1439
- #: ../admin/social_sharing.php:1995 ../admin/social_commenting.php:402
1440
- #: ../admin/social_login.php:1266
1441
  msgid "Why is my browser blocking some features of the plugin?"
1442
  msgstr ""
1443
 
1444
- #: ../admin/social_sharing.php:1996
1445
  msgid "Why the color of share icons is not being updated?"
1446
  msgstr ""
1447
 
1448
- #: ../admin/social_sharing.php:1997
1449
  msgid "Why Facebook share counts are not appearing?"
1450
  msgstr ""
1451
 
1452
- #: ../admin/social_sharing.php:1998
1453
  msgid ""
1454
  "How can I show share counts of my website rather than of individual pages/"
1455
  "posts?"
1456
  msgstr ""
1457
 
1458
- #: ../admin/social_sharing.php:1999
1459
  msgid "How can I disable sharing on particular page/post?"
1460
  msgstr ""
1461
 
1462
- #: ../admin/social_sharing.php:2000
1463
  msgid "How can I specify minimum sharing count for sharing networks?"
1464
  msgstr ""
1465
 
1466
- #: ../admin/social_sharing.php:2001
1467
  msgid "How to share specific page?"
1468
  msgstr ""
1469
 
1470
- #: ../admin/social_sharing.php:2002
1471
  msgid "How to integrate Google Analytics with sharing?"
1472
  msgstr ""
1473
 
1474
- #: ../admin/social_sharing.php:2003
1475
  msgid "How to customize the look of total share counts?"
1476
  msgstr ""
1477
 
1478
- #: ../admin/social_sharing.php:2004
1479
  msgid "How to customize the look of individual share counts?"
1480
  msgstr ""
1481
 
1482
- #: ../admin/social_sharing.php:2005
1483
  msgid "How to show Whatsapp icon only on mobile devices?"
1484
  msgstr ""
1485
 
1486
- #: ../admin/social_sharing.php:2006
1487
  msgid "How to hide arrow after floating sharing bar?"
1488
  msgstr ""
1489
 
1490
- #: ../admin/social_sharing.php:2007
1491
  msgid "Why is share count not getting updated?"
1492
  msgstr ""
1493
 
1494
- #: ../admin/social_sharing.php:2008 ../admin/like_buttons.php:812
1495
  msgid "Why is there so much space between like buttons?"
1496
  msgstr ""
1497
 
1498
- #: ../admin/social_sharing.php:2009 ../admin/like_buttons.php:813
1499
  msgid "Why are floating sharing/like buttons not appearing at homepage?"
1500
  msgstr ""
1501
 
@@ -1724,7 +1697,7 @@ msgstr ""
1724
  msgid "GDPR"
1725
  msgstr ""
1726
 
1727
- #: ../admin/social_login.php:44 ../admin/social_login.php:1194
1728
  msgid "XProfile Integration"
1729
  msgstr ""
1730
 
@@ -2326,49 +2299,65 @@ msgid "Text for the GDPR opt-in"
2326
  msgstr ""
2327
 
2328
  #: ../admin/social_login.php:1135
2329
- msgid "Text to link to Privacy Policy page"
2330
  msgstr ""
2331
 
2332
  #: ../admin/social_login.php:1145
2333
- msgid "Word(s) in the opt-in text to be linked to privacy policy page"
2334
  msgstr ""
2335
 
2336
  #: ../admin/social_login.php:1153
2337
- msgid "Privacy Policy Url"
2338
  msgstr ""
2339
 
2340
  #: ../admin/social_login.php:1163
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2341
  msgid "Url of the privacy policy page of your website"
2342
  msgstr ""
2343
 
2344
- #: ../admin/social_login.php:1214 ../inc/widget.php:260 ../inc/widget.php:438
2345
  #: ../inc/widget.php:602 ../inc/widget.php:750
2346
  msgid "Select"
2347
  msgstr ""
2348
 
2349
- #: ../admin/social_login.php:1245
2350
  msgid "Social Login Shortcode & Widget"
2351
  msgstr ""
2352
 
2353
- #: ../admin/social_login.php:1246
2354
  msgid "Social Linking Shortcode"
2355
  msgstr ""
2356
 
2357
- #: ../admin/social_login.php:1261
2358
  msgid "Why is social login not working?"
2359
  msgstr ""
2360
 
2361
- #: ../admin/social_login.php:1262
2362
  msgid ""
2363
  "Make sure that App ID and Secret (Client ID and Secret) keys you have saved, "
2364
  "belong to the same app"
2365
  msgstr ""
2366
 
2367
- #: ../admin/social_login.php:1264
2368
  msgid "Social Login not working with Varnish enabled"
2369
  msgstr ""
2370
 
2371
- #: ../admin/social_login.php:1265
2372
  msgid ""
2373
  "Why the user is not appearing logged in even after Social Login until the "
2374
  "webpage is refreshed manually?"
2
  msgstr ""
3
  "Project-Id-Version: Super Socializer\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2019-08-13 08:28+0530\n"
6
+ "PO-Revision-Date: 2019-08-13 08:28+0530\n"
7
  "Last-Translator: Heateor <hello@heateor.com>\n"
8
  "Language-Team: Heateor <hello@heateor.com>\n"
9
  "Language: en_IN\n"
15
  "X-Generator: Poedit 1.5.4\n"
16
  "X-Poedit-SearchPath-0: ..\n"
17
 
18
+ #: ../super_socializer.php:425
19
  msgid "Problem fetching access token: "
20
  msgstr ""
21
 
22
+ #: ../super_socializer.php:429 ../super_socializer.php:443
23
  msgid "Facebook SDK returned an error: "
24
  msgstr ""
25
 
26
+ #: ../super_socializer.php:439
27
  msgid "Graph returned an error: "
28
  msgstr ""
29
 
30
+ #: ../super_socializer.php:605
31
  msgid ""
32
  "cURL is not enabled at your website server. Please contact your website "
33
  "server administrator to enable it."
34
  msgstr ""
35
 
36
+ #: ../super_socializer.php:632
37
  #, php-format
38
  msgid ""
39
  "Enter exactly the following url in <strong>Website</strong> option in your "
40
  "Twitter app (see step 3 %s)"
41
  msgstr ""
42
 
43
+ #: ../super_socializer.php:635
44
  #, php-format
45
  msgid ""
46
  "Enter exactly the following url in <strong>Callback URLs</strong> option in "
47
  "your Twitter app (see step 3 %s)"
48
  msgstr ""
49
 
50
+ #: ../super_socializer.php:638
51
  msgid ""
52
  "Make sure cURL is enabled at your website server. You may need to contact "
53
  "the server administrator of your website to verify this"
54
  msgstr ""
55
 
56
+ #: ../super_socializer.php:901 ../helper.php:976
 
 
 
 
 
 
57
  msgid "Please verify your email address to login."
58
  msgstr ""
59
 
60
+ #: ../super_socializer.php:901
61
  msgid "Your email has been verified. Now you can login to your account"
62
  msgstr ""
63
 
64
+ #: ../super_socializer.php:905
65
  msgid "Notification"
66
  msgstr ""
67
 
68
+ #: ../super_socializer.php:923 ../admin/social_login.php:805
69
  msgid "Email required"
70
  msgstr ""
71
 
72
+ #: ../super_socializer.php:926
73
  msgid "Please check your email inbox to complete the registration."
74
  msgstr ""
75
 
76
+ #: ../super_socializer.php:933 ../helper.php:508
77
  msgid "Enter your LiveJournal username"
78
  msgstr ""
79
 
80
+ #: ../super_socializer.php:1005
81
  msgid "Leave a reply"
82
  msgstr ""
83
 
84
+ #: ../super_socializer.php:1017 ../inc/social_sharing.php:241
85
  msgid "Shares"
86
  msgstr ""
87
 
88
+ #: ../super_socializer.php:1017 ../inc/social_sharing.php:241
89
  msgid "Share"
90
  msgstr ""
91
 
92
+ #: ../super_socializer.php:1017
93
  msgid "Link copied."
94
  msgstr ""
95
 
96
+ #: ../super_socializer.php:1263
97
  msgid "Super Socializer - General Options"
98
  msgstr ""
99
 
100
+ #: ../super_socializer.php:1263 ../admin/general_options.php:15
101
  #: ../admin/social_commenting.php:47
102
  msgid "General Options"
103
  msgstr ""
104
 
105
+ #: ../super_socializer.php:1331 ../helper.php:898
106
  msgid "Social Avatar"
107
  msgstr ""
108
 
109
+ #: ../super_socializer.php:1334
110
  msgid "Small Avatar Url"
111
  msgstr ""
112
 
113
+ #: ../super_socializer.php:1338
114
  msgid "Large Avatar Url"
115
  msgstr ""
116
 
117
+ #: ../super_socializer.php:1342 ../helper.php:901
118
  msgid ""
119
  "Do not fetch and update social avatar from my profile, next time I Social "
120
  "Login"
121
  msgstr ""
122
 
123
+ #: ../super_socializer.php:1346 ../helper.php:902
124
  msgid "Update social avatar, next time I Social Login"
125
  msgstr ""
126
 
127
+ #: ../super_socializer.php:1423
 
 
 
 
 
 
128
  msgid "Login with your Social ID"
129
  msgstr ""
130
 
131
+ #: ../super_socializer.php:1424
132
  msgid "Email you entered is already registered or invalid"
133
  msgstr ""
134
 
135
+ #: ../super_socializer.php:1429
136
  msgid "Please enter a valid email address. You might be required to verify it"
137
  msgstr ""
138
 
139
+ #: ../super_socializer.php:1433 ../super_socializer.php:2122
140
  msgid "Link your social account to login to your account at this website"
141
  msgstr ""
142
 
143
+ #: ../super_socializer.php:1681
144
  msgid "Thanks for installing Super Socializer plugin"
145
  msgstr ""
146
 
147
+ #: ../super_socializer.php:1683
148
  msgid "Configure the Plugin"
149
  msgstr ""
150
 
151
+ #: ../super_socializer.php:1694
152
  msgid ""
153
  "Update \"Facebook Comments Moderation\" add-on for compatibility with "
154
  "current version of Super Socialzer"
155
  msgstr ""
156
 
157
+ #: ../super_socializer.php:1703
158
  msgid ""
159
  "Update \"Facebook Comments Notifier\" add-on for compatibility with current "
160
  "version of Super Socialzer"
161
  msgstr ""
162
 
163
+ #: ../super_socializer.php:1712
164
  msgid ""
165
  "Update \"Social Login Buttons\" add-on for compatibility with current "
166
  "version of Super Socialzer"
167
  msgstr ""
168
 
169
+ #: ../super_socializer.php:1721
170
  msgid ""
171
  "Update \"Social Share myCRED Integration\" add-on for maximum compatibility "
172
  "with current version of Super Socialzer"
173
  msgstr ""
174
 
175
+ #: ../super_socializer.php:1730
176
  msgid ""
177
  "Update \"Social Login myCRED Integration\" add-on for maximum compatibility "
178
  "with current version of Super Socialzer"
179
  msgstr ""
180
 
181
+ #: ../super_socializer.php:1737
182
  msgid ""
183
  "Update \"Social Login myCRED Integration\" add-on for compatibility with "
184
  "LiveJournal Login of Super Socialzer"
185
  msgstr ""
186
 
187
+ #: ../super_socializer.php:1748
188
  #, php-format
189
  msgid ""
190
  "To continue using Steam login save Steam API key <a href=\"%s\">here</a>"
191
  msgstr ""
192
 
193
+ #: ../super_socializer.php:1764
194
  #, php-format
195
  msgid ""
196
  "To continue using Social Login, save the secret keys <a href=\"%s\">here</a>"
197
  msgstr ""
198
 
199
+ #: ../super_socializer.php:1788
200
  #, php-format
201
  msgid ""
202
  "Add %s in \"Valid OAuth redirect URIs\" option in your Facebook app settings "
204
  "target=\"_blank\">here</a>"
205
  msgstr ""
206
 
207
+ #: ../super_socializer.php:1788 ../super_socializer.php:1813
208
+ #: ../super_socializer.php:1838 ../super_socializer.php:1863
209
+ #: ../super_socializer.php:1896 ../super_socializer.php:1924
210
+ #: ../super_socializer.php:1951 ../super_socializer.php:2028
211
  msgid "Okay"
212
  msgstr ""
213
 
214
+ #: ../super_socializer.php:1813
215
  #, php-format
216
  msgid ""
217
  "Add %s in \"Callback URLs\" option in your Twitter app settings for Twitter "
219
  "\">here</a>"
220
  msgstr ""
221
 
222
+ #: ../super_socializer.php:1838
223
  #, php-format
224
  msgid ""
225
  "Add %s in \"Authorized Redirect URLs\" option in your Linkedin app settings "
227
  "target=\"_blank\">here</a>"
228
  msgstr ""
229
 
230
+ #: ../super_socializer.php:1863
231
  #, php-format
232
  msgid ""
233
  "Add %s in \"Authorized redirect URIs\" option in your Google client settings "
235
  "target=\"_blank\">here</a>"
236
  msgstr ""
237
 
238
+ #: ../super_socializer.php:1874
239
  #, php-format
240
  msgid ""
241
  "Save the url of privacy policy page of your website <a href=\"%s\">here</a>"
242
  msgstr ""
243
 
244
+ #: ../super_socializer.php:1896
245
  #, php-format
246
  msgid ""
247
  "This plugin is GDPR compliant. You need to update the privacy policy of your "
249
  "\"%s\" target=\"_blank\">here</a>"
250
  msgstr ""
251
 
252
+ #: ../super_socializer.php:1924
253
  #, php-format
254
  msgid ""
255
  "Now plugin supports a new service Twitcount.com to show Twitter shares. To "
258
  "your website %s with them. No need to copy-paste any code from their website."
259
  msgstr ""
260
 
261
+ #: ../super_socializer.php:1951
262
  #, php-format
263
  msgid ""
264
  "Replace url saved in \"Callback URLs\" option in your Twitter app settings "
266
  "\"%s\" target=\"_blank\">here</a>"
267
  msgstr ""
268
 
269
+ #: ../super_socializer.php:1976
270
  #, php-format
271
  msgid ""
272
  "If you cannot get Linkedin login to work after updating the plugin, replace "
274
  "For more details, check step 6 <a href=\"%s\" target=\"_blank\">here</a>"
275
  msgstr ""
276
 
277
+ #: ../super_socializer.php:1976 ../super_socializer.php:2003
278
  msgid "Dismiss"
279
  msgstr ""
280
 
281
+ #: ../super_socializer.php:2002
282
  #, php-format
283
  msgid ""
284
  "Save Facebook App ID and Secret keys in \"Standard Interface\" and/or "
287
  "that, clear share counts cache from \"Miscellaneous\" section"
288
  msgstr ""
289
 
290
+ #: ../super_socializer.php:2028
291
  #, php-format
292
  msgid ""
293
  "Your website visitors will see a popup notification (only once) if their "
297
  "features\" option <a href=\"%s\">here</a>"
298
  msgstr ""
299
 
300
+ #: ../super_socializer.php:2198
301
+ msgid ""
302
+ "Your browser is blocking some features of this website. Please follow the "
303
+ "instructions at {support_url} to unblock these."
304
+ msgstr ""
305
+
306
  #: ../helper.php:8
307
  msgid "Settings saved"
308
  msgstr ""
309
 
310
+ #: ../helper.php:8 ../admin/social_sharing.php:49
311
  msgid "Dismiss this notice"
312
  msgstr ""
313
 
395
  msgid "Large Avatar"
396
  msgstr ""
397
 
398
+ #: ../helper.php:913 ../admin/general_options.php:93
399
+ #: ../admin/social_sharing.php:2027 ../admin/social_commenting.php:413
400
+ #: ../admin/social_login.php:1313 ../admin/like_buttons.php:826
401
  msgid "Save Changes"
402
  msgstr ""
403
 
417
  msgid "Something bad happened"
418
  msgstr ""
419
 
420
+ #: ../admin/general_options.php:7 ../admin/general_options.php:97
421
+ #: ../admin/social_sharing.php:5 ../admin/social_sharing.php:2031
422
  #: ../admin/social_commenting.php:5 ../admin/social_commenting.php:417
423
+ #: ../admin/social_login.php:5 ../admin/social_login.php:1317
424
  #: ../admin/like_buttons.php:6 ../admin/like_buttons.php:830
425
  #, php-format
426
  msgid ""
458
  msgstr ""
459
 
460
  #: ../admin/general_options.php:75
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
461
  msgid "Custom CSS"
462
  msgstr ""
463
 
464
+ #: ../admin/general_options.php:85
465
  msgid "You can specify any additional CSS rules (without &lt;style&gt; tag)"
466
  msgstr ""
467
 
468
+ #: ../admin/general_options.php:108 ../admin/social_sharing.php:2038
469
+ #: ../admin/social_commenting.php:424 ../admin/social_login.php:1324
470
+ #: ../admin/like_buttons.php:837
471
  msgid "Instagram Shoutout"
472
  msgstr ""
473
 
474
+ #: ../admin/general_options.php:110 ../admin/social_sharing.php:2040
475
+ #: ../admin/social_commenting.php:426 ../admin/social_login.php:1326
476
+ #: ../admin/like_buttons.php:839
477
  msgid ""
478
  "If you can send (to hello@heateor.com) how our plugin is helping your "
479
  "business, we can share it on Instagram. You can also send any relevant "
480
  "hashtags and people to mention in the Instagram post."
481
  msgstr ""
482
 
483
+ #: ../admin/general_options.php:111 ../admin/social_sharing.php:2041
484
+ #: ../admin/social_commenting.php:427 ../admin/social_login.php:1327
485
+ #: ../admin/like_buttons.php:840
486
  msgid ""
487
  "<b>Example</b> - Blah-Blah Online Coaching teaches various programming "
488
  "language courses through their website. They have emerged as one of the most "
491
  "time."
492
  msgstr ""
493
 
494
+ #: ../admin/general_options.php:112 ../admin/social_sharing.php:2042
495
+ #: ../admin/social_commenting.php:428 ../admin/social_login.php:1328
496
+ #: ../admin/like_buttons.php:841
497
  msgid ""
498
  "@blahblahonlinecoaching proudly use #SuperSocializer to enable social "
499
  "features at their website, such as - Social Login, Social Share and Social "
597
  msgid "Recover Social Share Counts Lost After Moving to SSL/Https"
598
  msgstr ""
599
 
600
+ #: ../admin/social_sharing.php:49 ../admin/social_sharing.php:1990
601
  msgid ""
602
  "Save Facebook App Id and Secret in the \"Miscellaneous\" section for "
603
  "Facebook share count to work"
604
  msgstr ""
605
 
606
+ #: ../admin/social_sharing.php:56
607
  msgid "Theme Selection"
608
  msgstr ""
609
 
610
+ #: ../admin/social_sharing.php:57 ../admin/like_buttons.php:41
611
  msgid "Standard Interface"
612
  msgstr ""
613
 
614
+ #: ../admin/social_sharing.php:58 ../admin/like_buttons.php:42
615
  msgid "Floating Interface"
616
  msgstr ""
617
 
618
+ #: ../admin/social_sharing.php:59 ../admin/like_buttons.php:43
619
  msgid "Miscellaneous"
620
  msgstr ""
621
 
622
+ #: ../admin/social_sharing.php:63 ../admin/like_buttons.php:47
623
  msgid "3rd Party Integration"
624
  msgstr ""
625
 
626
+ #: ../admin/social_sharing.php:67 ../admin/social_sharing.php:1952
627
+ #: ../admin/social_sharing.php:1954 ../admin/social_login.php:46
628
+ #: ../admin/social_login.php:1279 ../admin/like_buttons.php:51
629
  #: ../admin/like_buttons.php:797
630
  msgid "Shortcode & Widget"
631
  msgstr ""
632
 
633
+ #: ../admin/social_sharing.php:68
634
  msgid "Troubleshooter"
635
  msgstr ""
636
 
637
+ #: ../admin/social_sharing.php:69 ../admin/social_sharing.php:1985
638
  #: ../admin/social_commenting.php:40 ../admin/social_commenting.php:397
639
+ #: ../admin/social_login.php:47 ../admin/social_login.php:1293
640
  #: ../admin/like_buttons.php:52 ../admin/like_buttons.php:810
641
  msgid "FAQ"
642
  msgstr ""
643
 
644
+ #: ../admin/social_sharing.php:77
645
  msgid "Standard interface theme"
646
  msgstr ""
647
 
648
+ #: ../admin/social_sharing.php:82 ../admin/social_sharing.php:389
649
  msgid "Icon Preview"
650
  msgstr ""
651
 
652
+ #: ../admin/social_sharing.php:154 ../admin/social_sharing.php:462
653
  msgid ""
654
  "Do not forget to save the configuration after making changes by clicking the "
655
  "save button below"
656
  msgstr ""
657
 
658
+ #: ../admin/social_sharing.php:161 ../admin/social_sharing.php:469
659
  msgid "Shape"
660
  msgstr ""
661
 
662
+ #: ../admin/social_sharing.php:165 ../admin/social_sharing.php:473
663
  #: ../inc/widget.php:951
664
  msgid "Round"
665
  msgstr ""
666
 
667
+ #: ../admin/social_sharing.php:167 ../admin/social_sharing.php:475
668
  #: ../inc/widget.php:952
669
  msgid "Square"
670
  msgstr ""
671
 
672
+ #: ../admin/social_sharing.php:169 ../admin/social_sharing.php:477
673
  msgid "Rectangle"
674
  msgstr ""
675
 
676
+ #: ../admin/social_sharing.php:176 ../admin/social_sharing.php:484
677
  msgid "Shape of the sharing icons"
678
  msgstr ""
679
 
680
+ #: ../admin/social_sharing.php:185 ../admin/social_sharing.php:493
681
  msgid "Size (in pixels)"
682
  msgstr ""
683
 
684
+ #: ../admin/social_sharing.php:201 ../admin/social_sharing.php:509
685
  msgid "Size of the sharing icons"
686
  msgstr ""
687
 
688
+ #: ../admin/social_sharing.php:211 ../admin/social_sharing.php:519
689
  msgid "Width (in pixels)"
690
  msgstr ""
691
 
692
+ #: ../admin/social_sharing.php:227 ../admin/social_sharing.php:535
693
  msgid "Width of the sharing icons"
694
  msgstr ""
695
 
696
+ #: ../admin/social_sharing.php:235 ../admin/social_sharing.php:543
697
  msgid "Height (in pixels)"
698
  msgstr ""
699
 
700
+ #: ../admin/social_sharing.php:251 ../admin/social_sharing.php:559
701
  msgid "Height of the sharing icons"
702
  msgstr ""
703
 
704
+ #: ../admin/social_sharing.php:261 ../admin/social_sharing.php:569
705
  msgid "Border radius (in pixels)"
706
  msgstr ""
707
 
708
+ #: ../admin/social_sharing.php:271 ../admin/social_sharing.php:579
709
  msgid ""
710
  "Specify a value for rounded corners. More the value, more rounded will the "
711
  "corners be. Leave empty for sharp corners."
712
  msgstr ""
713
 
714
+ #: ../admin/social_sharing.php:280 ../admin/social_sharing.php:588
715
  msgid "Logo Color"
716
  msgstr ""
717
 
718
+ #: ../admin/social_sharing.php:284 ../admin/social_sharing.php:305
719
+ #: ../admin/social_sharing.php:325 ../admin/social_sharing.php:592
720
+ #: ../admin/social_sharing.php:613 ../admin/social_sharing.php:632
721
  msgid "Default"
722
  msgstr ""
723
 
724
+ #: ../admin/social_sharing.php:286 ../admin/social_sharing.php:306
725
+ #: ../admin/social_sharing.php:330 ../admin/social_sharing.php:594
726
+ #: ../admin/social_sharing.php:614 ../admin/social_sharing.php:637
727
  msgid "On Hover"
728
  msgstr ""
729
 
730
+ #: ../admin/social_sharing.php:294 ../admin/social_sharing.php:602
731
  msgid ""
732
  "Specify the color or hex code (example #cc78e0) for the logo of icon. Leave "
733
  "empty for default. You can get the hex code of the required color from <a "
734
  "href=\"http://www.colorpicker.com/\" target=\"_blank\">this link</a>"
735
  msgstr ""
736
 
737
+ #: ../admin/social_sharing.php:302 ../admin/social_sharing.php:610
738
+ #: ../admin/social_sharing.php:1325 ../admin/like_buttons.php:410
739
  #: ../inc/widget.php:460 ../inc/widget.php:772
740
  msgid "Background Color"
741
  msgstr ""
742
 
743
+ #: ../admin/social_sharing.php:313 ../admin/social_sharing.php:621
744
  msgid ""
745
  "Specify the color or hex code (example #cc78e0) for icon background. Save "
746
  "\"transparent\" for transparent background. Leave empty for default. You can "
748
  "com/\" target=\"_blank\">this link</a>"
749
  msgstr ""
750
 
751
+ #: ../admin/social_sharing.php:321 ../admin/social_sharing.php:629
752
  msgid "Border"
753
  msgstr ""
754
 
755
+ #: ../admin/social_sharing.php:327 ../admin/social_sharing.php:332
756
+ #: ../admin/social_sharing.php:634 ../admin/social_sharing.php:639
757
  msgid "Border Width"
758
  msgstr ""
759
 
760
+ #: ../admin/social_sharing.php:328 ../admin/social_sharing.php:333
761
+ #: ../admin/social_sharing.php:635 ../admin/social_sharing.php:640
762
  msgid "Border Color"
763
  msgstr ""
764
 
765
+ #: ../admin/social_sharing.php:340 ../admin/social_sharing.php:647
766
  msgid "Icon border"
767
  msgstr ""
768
 
769
+ #: ../admin/social_sharing.php:348 ../admin/social_sharing.php:655
770
  msgid "Counter Position"
771
  msgstr ""
772
 
773
+ #: ../admin/social_sharing.php:348 ../admin/social_sharing.php:655
774
  msgid "(applies, if counter enabled)"
775
  msgstr ""
776
 
777
+ #: ../admin/social_sharing.php:352 ../admin/social_sharing.php:659
778
+ #: ../admin/social_sharing.php:942 ../admin/social_sharing.php:1347
779
  #: ../admin/like_buttons.php:183 ../admin/like_buttons.php:432
780
  #: ../inc/widget.php:446 ../inc/widget.php:758
781
  msgid "Left"
782
  msgstr ""
783
 
784
+ #: ../admin/social_sharing.php:354 ../admin/social_sharing.php:661
785
  msgid "Top"
786
  msgstr ""
787
 
788
+ #: ../admin/social_sharing.php:356 ../admin/social_sharing.php:663
789
+ #: ../admin/social_sharing.php:944 ../admin/social_sharing.php:1348
790
  #: ../admin/like_buttons.php:185 ../admin/like_buttons.php:433
791
  #: ../inc/widget.php:447 ../inc/widget.php:759
792
  msgid "Right"
793
  msgstr ""
794
 
795
+ #: ../admin/social_sharing.php:358 ../admin/social_sharing.php:665
796
  msgid "Bottom"
797
  msgstr ""
798
 
799
+ #: ../admin/social_sharing.php:360 ../admin/social_sharing.php:667
800
  msgid "Inner Left"
801
  msgstr ""
802
 
803
+ #: ../admin/social_sharing.php:362 ../admin/social_sharing.php:669
804
  msgid "Inner Top"
805
  msgstr ""
806
 
807
+ #: ../admin/social_sharing.php:364 ../admin/social_sharing.php:671
808
  msgid "Inner Right"
809
  msgstr ""
810
 
811
+ #: ../admin/social_sharing.php:366 ../admin/social_sharing.php:673
812
  msgid "Inner Bottom"
813
  msgstr ""
814
 
815
+ #: ../admin/social_sharing.php:374 ../admin/social_sharing.php:681
816
  msgid "Position of share counter"
817
  msgstr ""
818
 
819
+ #: ../admin/social_sharing.php:384
820
  msgid "Floating interface theme"
821
  msgstr ""
822
 
823
+ #: ../admin/social_sharing.php:697
824
  msgid "Standard Sharing Interface Options"
825
  msgstr ""
826
 
827
+ #: ../admin/social_sharing.php:703
828
  msgid "Enable Standard sharing interface"
829
  msgstr ""
830
 
831
+ #: ../admin/social_sharing.php:713
832
  msgid "Master control to enable standard sharing"
833
  msgstr ""
834
 
835
+ #: ../admin/social_sharing.php:723 ../admin/social_sharing.php:1151
836
  #: ../admin/like_buttons.php:86 ../admin/like_buttons.php:336
837
  msgid "Target Url"
838
  msgstr ""
839
 
840
+ #: ../admin/social_sharing.php:727 ../admin/social_sharing.php:1155
841
  #: ../admin/like_buttons.php:90 ../admin/like_buttons.php:340
842
  msgid "Url of the webpage where icons are located (default)"
843
  msgstr ""
844
 
845
+ #: ../admin/social_sharing.php:729 ../admin/social_sharing.php:1157
846
  #: ../admin/like_buttons.php:92 ../admin/like_buttons.php:342
847
  msgid "Url of the homepage of your website"
848
  msgstr ""
849
 
850
+ #: ../admin/social_sharing.php:731 ../admin/social_sharing.php:1159
851
  #: ../admin/like_buttons.php:94 ../admin/like_buttons.php:344
852
  msgid "Custom url"
853
  msgstr ""
854
 
855
+ #: ../admin/social_sharing.php:738 ../admin/social_sharing.php:1166
856
  msgid "Url to share"
857
  msgstr ""
858
 
859
+ #: ../admin/social_sharing.php:746 ../admin/social_login.php:532
860
  #: ../admin/social_login.php:927 ../admin/like_buttons.php:109
861
  #: ../inc/widget.php:945
862
  msgid "Title"
863
  msgstr ""
864
 
865
+ #: ../admin/social_sharing.php:756
866
  msgid "The text to display above the sharing interface"
867
  msgstr ""
868
 
869
+ #: ../admin/social_sharing.php:781 ../admin/social_sharing.php:1175
870
  msgid "Instagram username"
871
  msgstr ""
872
 
873
+ #: ../admin/social_sharing.php:791 ../admin/social_sharing.php:1185
874
  msgid ""
875
  "Username of the Instagram account you want to redirect users to, on clicking "
876
  "the icon"
877
  msgstr ""
878
 
879
+ #: ../admin/social_sharing.php:801 ../admin/social_sharing.php:1195
880
  msgid "HTML ID of container element of comment form"
881
  msgstr ""
882
 
883
+ #: ../admin/social_sharing.php:811 ../admin/social_sharing.php:1205
884
  msgid ""
885
  "HTML ID of the element you want to focus on the webpage, on click of Comment "
886
  "icon."
887
  msgstr ""
888
 
889
+ #: ../admin/social_sharing.php:825 ../admin/social_sharing.php:1214
890
  msgid "Rearrange icons"
891
  msgstr ""
892
 
893
+ #: ../admin/social_sharing.php:886 ../admin/social_sharing.php:1273
894
  msgid "Drag the icons to rearrange in desired order"
895
  msgstr ""
896
 
897
+ #: ../admin/social_sharing.php:894 ../admin/social_sharing.php:1281
898
  msgid "Select Sharing Services"
899
  msgstr ""
900
 
901
+ #: ../admin/social_sharing.php:901 ../admin/social_sharing.php:1288
902
  msgid "Select sharing services to show in social share bar"
903
  msgstr ""
904
 
905
+ #: ../admin/social_sharing.php:919 ../admin/social_sharing.php:1306
906
  msgid "Search social network"
907
  msgstr ""
908
 
909
+ #: ../admin/social_sharing.php:938 ../admin/social_sharing.php:1343
910
  #: ../admin/like_buttons.php:179 ../admin/like_buttons.php:428
911
  msgid "Horizontal alignment"
912
  msgstr ""
913
 
914
+ #: ../admin/social_sharing.php:943 ../admin/like_buttons.php:184
915
  msgid "Center"
916
  msgstr ""
917
 
918
+ #: ../admin/social_sharing.php:952 ../admin/social_sharing.php:1356
919
  msgid "Horizontal alignment of the sharing interface"
920
  msgstr ""
921
 
922
+ #: ../admin/social_sharing.php:960 ../admin/like_buttons.php:201
923
  msgid "Position with respect to content"
924
  msgstr ""
925
 
926
+ #: ../admin/social_sharing.php:964 ../admin/like_buttons.php:205
927
  msgid "Top of the content"
928
  msgstr ""
929
 
930
+ #: ../admin/social_sharing.php:966 ../admin/like_buttons.php:207
931
  msgid "Bottom of the content"
932
  msgstr ""
933
 
934
+ #: ../admin/social_sharing.php:973
935
  msgid "Specify position of the sharing interface with respect to the content"
936
  msgstr ""
937
 
938
+ #: ../admin/social_sharing.php:981 ../admin/social_sharing.php:1422
939
  msgid "Placement"
940
  msgstr ""
941
 
942
+ #: ../admin/social_sharing.php:985 ../admin/social_sharing.php:1426
943
  #: ../admin/social_login.php:866 ../admin/social_login.php:896
944
  #: ../admin/like_buttons.php:226 ../admin/like_buttons.php:511
945
  msgid "Homepage"
946
  msgstr ""
947
 
948
+ #: ../admin/social_sharing.php:987 ../admin/social_sharing.php:1428
949
  #: ../admin/like_buttons.php:228 ../admin/like_buttons.php:513
950
  msgid "Posts"
951
  msgstr ""
952
 
953
+ #: ../admin/social_sharing.php:989 ../admin/social_sharing.php:1430
954
  #: ../admin/like_buttons.php:230 ../admin/like_buttons.php:515
955
  msgid "Pages"
956
  msgstr ""
957
 
958
+ #: ../admin/social_sharing.php:991 ../admin/social_sharing.php:1432
959
  #: ../admin/like_buttons.php:232 ../admin/like_buttons.php:517
960
  msgid "Excerpts and Posts page"
961
  msgstr ""
962
 
963
+ #: ../admin/social_sharing.php:993 ../admin/social_sharing.php:1434
964
  #: ../admin/like_buttons.php:234 ../admin/like_buttons.php:519
965
  msgid "Category Archives"
966
  msgstr ""
967
 
968
+ #: ../admin/social_sharing.php:995 ../admin/social_sharing.php:1436
969
  #: ../admin/like_buttons.php:236 ../admin/like_buttons.php:521
970
  msgid "Archive Pages (Category, Tag, Author or Date based pages)"
971
  msgstr ""
972
 
973
+ #: ../admin/social_sharing.php:1011 ../admin/like_buttons.php:252
974
  msgid "BuddyPress activity"
975
  msgstr ""
976
 
977
+ #: ../admin/social_sharing.php:1013 ../admin/like_buttons.php:255
978
  msgid "BuddyPress group (only at top of content)"
979
  msgstr ""
980
 
981
+ #: ../admin/social_sharing.php:1019 ../admin/social_sharing.php:1458
982
  #: ../admin/like_buttons.php:262 ../admin/like_buttons.php:542
983
  msgid "BBPress forum"
984
  msgstr ""
985
 
986
+ #: ../admin/social_sharing.php:1022 ../admin/social_sharing.php:1461
987
  #: ../admin/like_buttons.php:265 ../admin/like_buttons.php:545
988
  msgid "BBPress topic"
989
  msgstr ""
990
 
991
+ #: ../admin/social_sharing.php:1025 ../admin/like_buttons.php:268
992
  msgid "BBPress reply"
993
  msgstr ""
994
 
995
+ #: ../admin/social_sharing.php:1032 ../admin/like_buttons.php:275
996
  msgid "After individual product at WooCommerce Shop page"
997
  msgstr ""
998
 
999
+ #: ../admin/social_sharing.php:1035 ../admin/like_buttons.php:278
1000
  msgid "WooCommerce Product Page"
1001
  msgstr ""
1002
 
1003
+ #: ../admin/social_sharing.php:1038 ../admin/like_buttons.php:281
1004
  msgid "WooCommerce Thankyou Page"
1005
  msgstr ""
1006
 
1007
+ #: ../admin/social_sharing.php:1049
1008
  msgid "Specify the pages where you want to enable Sharing interface"
1009
  msgstr ""
1010
 
1011
+ #: ../admin/social_sharing.php:1057 ../admin/social_sharing.php:1479
1012
  msgid "Show share counts"
1013
  msgstr ""
1014
 
1015
+ #: ../admin/social_sharing.php:1062 ../admin/social_sharing.php:1484
1016
  msgid ""
1017
  "Share counts are supported for Facebook, Twitter, Linkedin, Buffer, Reddit, "
1018
  "Pinterest, Odnoklassniki, Fintel and Vkontakte"
1019
  msgstr ""
1020
 
1021
+ #: ../admin/social_sharing.php:1063 ../admin/social_sharing.php:1485
1022
  #, php-format
1023
  msgid ""
1024
  "To show Twitter share count, you have to click \"Give me my Twitter counts "
1027
  "their website."
1028
  msgstr ""
1029
 
1030
+ #: ../admin/social_sharing.php:1070 ../admin/social_sharing.php:1492
1031
  msgid "If enabled, share counts are displayed above sharing icons."
1032
  msgstr ""
1033
 
1034
+ #: ../admin/social_sharing.php:1079 ../admin/social_sharing.php:1501
1035
  msgid "Show total shares"
1036
  msgstr ""
1037
 
1038
+ #: ../admin/social_sharing.php:1089 ../admin/social_sharing.php:1511
1039
  msgid "If enabled, total shares will be displayed with sharing icons"
1040
  msgstr ""
1041
 
1042
+ #: ../admin/social_sharing.php:1098 ../admin/social_sharing.php:1520
1043
  msgid "Enable 'More' icon"
1044
  msgstr ""
1045
 
1046
+ #: ../admin/social_sharing.php:1108 ../admin/social_sharing.php:1530
1047
  msgid ""
1048
  "If enabled, \"More\" icon will be displayed after selected sharing icons "
1049
  "which shows additional sharing networks in popup"
1050
  msgstr ""
1051
 
1052
+ #: ../admin/social_sharing.php:1125
1053
  msgid "Floating Sharing Interface Options"
1054
  msgstr ""
1055
 
1056
+ #: ../admin/social_sharing.php:1131
1057
  msgid "Enable Floating sharing interface"
1058
  msgstr ""
1059
 
1060
+ #: ../admin/social_sharing.php:1141
1061
  msgid "Master control to enable floating sharing widget"
1062
  msgstr ""
1063
 
1064
+ #: ../admin/social_sharing.php:1335
1065
  msgid ""
1066
  "Specify the color or hex code (example #cc78e0) for the background of "
1067
  "vertical sharing bar. Leave empty for transparent. You can get the hex code "
1069
  "\"_blank\">this link</a>"
1070
  msgstr ""
1071
 
1072
+ #: ../admin/social_sharing.php:1365 ../admin/like_buttons.php:450
1073
  msgid "Left offset"
1074
  msgstr ""
1075
 
1076
+ #: ../admin/social_sharing.php:1375
1077
  msgid ""
1078
  "Specify a number. Increase in number will shift sharing interface towards "
1079
  "right and decrease will shift it towards left. Number can be negative too."
1080
  msgstr ""
1081
 
1082
+ #: ../admin/social_sharing.php:1385 ../admin/like_buttons.php:470
1083
  msgid "Right offset"
1084
  msgstr ""
1085
 
1086
+ #: ../admin/social_sharing.php:1395
1087
  msgid ""
1088
  "Specify a number. Increase in number will shift sharing interface towards "
1089
  "left and decrease will shift it towards right. Number can be negative too."
1090
  msgstr ""
1091
 
1092
+ #: ../admin/social_sharing.php:1404 ../admin/like_buttons.php:489
1093
  msgid "Top offset"
1094
  msgstr ""
1095
 
1096
+ #: ../admin/social_sharing.php:1414
1097
  msgid ""
1098
  "Specify a number. Increase in number will shift sharing interface towards "
1099
  "bottom and decrease will shift it towards top."
1100
  msgstr ""
1101
 
1102
+ #: ../admin/social_sharing.php:1450 ../admin/like_buttons.php:535
1103
  msgid "BuddyPress group"
1104
  msgstr ""
1105
 
1106
+ #: ../admin/social_sharing.php:1471
1107
  msgid "Specify the pages where you want to enable vertical Sharing interface"
1108
  msgstr ""
1109
 
1110
+ #: ../admin/social_sharing.php:1538
1111
  msgid "Hide floating slider"
1112
  msgstr ""
1113
 
1114
+ #: ../admin/social_sharing.php:1548
1115
  msgid "Hides the slider arrow present below the floating share bar"
1116
  msgstr ""
1117
 
1118
+ #: ../admin/social_sharing.php:1556
1119
  msgid "Vertical floating bar responsiveness"
1120
  msgstr ""
1121
 
1122
+ #: ../admin/social_sharing.php:1559
1123
  #, php-format
1124
  msgid "Display vertical interface only when screen is wider than %s pixels"
1125
  msgstr ""
1126
 
1127
+ #: ../admin/social_sharing.php:1566
1128
  msgid ""
1129
  "Display vertical interface only when screen is wider than the width "
1130
  "specified."
1131
  msgstr ""
1132
 
1133
+ #: ../admin/social_sharing.php:1574
1134
  msgid "Horizontal floating bar responsiveness"
1135
  msgstr ""
1136
 
1137
+ #: ../admin/social_sharing.php:1577
1138
  #, php-format
1139
  msgid ""
1140
  "Stick vertical floating interface horizontally at bottom only when screen is "
1141
  "narrower than %s pixels"
1142
  msgstr ""
1143
 
1144
+ #: ../admin/social_sharing.php:1584
1145
  msgid ""
1146
  "Stick vertical floating interface horizontally at bottom only when screen is "
1147
  "narrower than the width specified"
1148
  msgstr ""
1149
 
1150
+ #: ../admin/social_sharing.php:1594
1151
  msgid "Horizontal floating bar position"
1152
  msgstr ""
1153
 
1154
+ #: ../admin/social_sharing.php:1597
1155
  #, php-format
1156
  msgid "%s pixels from %s"
1157
  msgstr ""
1158
 
1159
+ #: ../admin/social_sharing.php:1598
1160
  msgid "Auto-adjust according to screen width (responsive)"
1161
  msgstr ""
1162
 
1163
+ #: ../admin/social_sharing.php:1605
1164
  msgid "Alignment of horizontal floating interface. Number can be negative too."
1165
  msgstr ""
1166
 
1167
+ #: ../admin/social_sharing.php:1625
1168
  msgid "Facebook Share Count"
1169
  msgstr ""
1170
 
1171
+ #: ../admin/social_sharing.php:1629
1172
  msgid "Note"
1173
  msgstr ""
1174
 
1175
+ #: ../admin/social_sharing.php:1629
1176
  msgid "Required only to track Facebook share count"
1177
  msgstr ""
1178
 
1179
+ #: ../admin/social_sharing.php:1635 ../admin/social_login.php:161
1180
  msgid "Facebook App ID"
1181
  msgstr ""
1182
 
1183
+ #: ../admin/social_sharing.php:1645
1184
  #, php-format
1185
  msgid ""
1186
  "Required for Facebook share count to work. Please follow the documentation "
1187
  "at <a href=\"%s\" target=\"_blank\">this link</a> to get Facebook App ID"
1188
  msgstr ""
1189
 
1190
+ #: ../admin/social_sharing.php:1653 ../admin/social_login.php:183
1191
  msgid "Facebook App Secret"
1192
  msgstr ""
1193
 
1194
+ #: ../admin/social_sharing.php:1663
1195
  #, php-format
1196
  msgid ""
1197
  "Required for Facebook share count to work. Please follow the documentation "
1198
  "at <a href=\"%s\" target=\"_blank\">this link</a> to get Facebook App Secret"
1199
  msgstr ""
1200
 
1201
+ #: ../admin/social_sharing.php:1672 ../admin/like_buttons.php:592
1202
  msgid "Url shortener"
1203
  msgstr ""
1204
 
1205
+ #: ../admin/social_sharing.php:1678
1206
  msgid "Use shortlinks already installed"
1207
  msgstr ""
1208
 
1209
+ #: ../admin/social_sharing.php:1688
1210
  msgid "Uses default short url permalinks without using any additional plugin"
1211
  msgstr ""
1212
 
1213
+ #: ../admin/social_sharing.php:1696
1214
  msgid "Enable bit.ly url shortener for sharing"
1215
  msgstr ""
1216
 
1217
+ #: ../admin/social_sharing.php:1706 ../admin/like_buttons.php:626
1218
  msgid "Master control to enable bit.ly url shortening for sharing"
1219
  msgstr ""
1220
 
1221
+ #: ../admin/social_sharing.php:1714
1222
  msgid "bit.ly Login"
1223
  msgstr ""
1224
 
1225
+ #: ../admin/social_sharing.php:1724 ../admin/social_sharing.php:1743
1226
  #, php-format
1227
  msgid "More details on how to get it <a href=\"%s\" target=\"_blank\">here</a>"
1228
  msgstr ""
1229
 
1230
+ #: ../admin/social_sharing.php:1733 ../admin/like_buttons.php:653
1231
  msgid "bit.ly API Key"
1232
  msgstr ""
1233
 
1234
+ #: ../admin/social_sharing.php:1752 ../admin/like_buttons.php:672
1235
  msgid "Clear Bitly Cache"
1236
  msgstr ""
1237
 
1238
+ #: ../admin/social_sharing.php:1756 ../admin/like_buttons.php:676
1239
  msgid "ShortUrl cache cleared successfully."
1240
  msgstr ""
1241
 
1242
+ #: ../admin/social_sharing.php:1763 ../admin/like_buttons.php:683
1243
  msgid ""
1244
  "Use this to delete short urls saved in database. Handy, if urls of your "
1245
  "website have been changed but short urls are still being generated for old "
1246
  "urls."
1247
  msgstr ""
1248
 
1249
+ #: ../admin/social_sharing.php:1772
1250
  msgid "Share Count Cache"
1251
  msgstr ""
1252
 
1253
+ #: ../admin/social_sharing.php:1778
1254
  msgid "Refresh Share Count cache every"
1255
  msgstr ""
1256
 
1257
+ #: ../admin/social_sharing.php:1783
1258
  msgid "Second(s)"
1259
  msgstr ""
1260
 
1261
+ #: ../admin/social_sharing.php:1784
1262
  msgid "Minute(s)"
1263
  msgstr ""
1264
 
1265
+ #: ../admin/social_sharing.php:1785
1266
  msgid "Hour(s)"
1267
  msgstr ""
1268
 
1269
+ #: ../admin/social_sharing.php:1786
1270
  msgid "Day(s)"
1271
  msgstr ""
1272
 
1273
+ #: ../admin/social_sharing.php:1794
1274
  #, php-format
1275
  msgid ""
1276
  "Frequent cache refreshing results in slower loading of pages with share "
1278
  "target=\"_blank\">here</a>"
1279
  msgstr ""
1280
 
1281
+ #: ../admin/social_sharing.php:1802
1282
  msgid "Clear Share Counts Cache"
1283
  msgstr ""
1284
 
1285
+ #: ../admin/social_sharing.php:1806
1286
  msgid "Share Counts cache cleared successfully."
1287
  msgstr ""
1288
 
1289
+ #: ../admin/social_sharing.php:1813
1290
  msgid "Use this to clear cached share counts"
1291
  msgstr ""
1292
 
1293
+ #: ../admin/social_sharing.php:1822 ../admin/social_sharing.php:1828
1294
  #: ../admin/social_commenting.php:315 ../admin/like_buttons.php:692
1295
  #: ../admin/like_buttons.php:698
1296
  msgid "Language"
1297
  msgstr ""
1298
 
1299
+ #: ../admin/social_sharing.php:1838
1300
  #, php-format
1301
  msgid ""
1302
  "Enter the code of the language you want to use for like buttons. You can "
1304
  "Leave it empty for default language(English)"
1305
  msgstr ""
1306
 
1307
+ #: ../admin/social_sharing.php:1847
1308
  msgid "Username in sharing"
1309
  msgstr ""
1310
 
1311
+ #: ../admin/social_sharing.php:1853
1312
  msgid "Twitter username (without @)"
1313
  msgstr ""
1314
 
1315
+ #: ../admin/social_sharing.php:1863 ../admin/social_sharing.php:1882
1316
  msgid ""
1317
  "Provided username will be appended after the content being shared as \"via "
1318
  "@USERNAME\". Leave empty if you do not want any username in the content "
1319
  "being shared."
1320
  msgstr ""
1321
 
1322
+ #: ../admin/social_sharing.php:1872
1323
  msgid "Buffer username (without @)"
1324
  msgstr ""
1325
 
1326
+ #: ../admin/social_sharing.php:1891
1327
  msgid "AMP"
1328
  msgstr ""
1329
 
1330
+ #: ../admin/social_sharing.php:1897
1331
  msgid "Enable sharing on AMP pages"
1332
  msgstr ""
1333
 
1334
+ #: ../admin/social_sharing.php:1907
1335
  msgid "Enable this option to render sharing icons on AMP pages"
1336
  msgstr ""
1337
 
1338
+ #: ../admin/social_sharing.php:1926 ../admin/like_buttons.php:771
1339
  msgid "myCRED"
1340
  msgstr ""
1341
 
1342
+ #: ../admin/social_sharing.php:1932 ../admin/like_buttons.php:777
1343
  msgid "Append myCRED referral ID to the urls being shared"
1344
  msgstr ""
1345
 
1346
+ #: ../admin/social_sharing.php:1965
1347
  msgid "Facebook Sharing Troubleshooter"
1348
  msgstr ""
1349
 
1350
+ #: ../admin/social_sharing.php:1970
1351
  msgid ""
1352
  "If Facebook sharing is not working fine, click at the following link and "
1353
  "enter the problematic url (where Facebook sharing is not working properly) "
1355
  "button."
1356
  msgstr ""
1357
 
1358
+ #: ../admin/social_sharing.php:1987 ../admin/social_commenting.php:399
1359
+ #: ../admin/social_login.php:1295
1360
  msgid ""
1361
  "<strong>Note:</strong> Plugin will not work on local server. You should have "
1362
  "an online website for the plugin to function properly."
1363
  msgstr ""
1364
 
1365
+ #: ../admin/social_sharing.php:1988
1366
  msgid ""
1367
  "Why is sharer not showing the correct image, title and other meta tags "
1368
  "content?"
1369
  msgstr ""
1370
 
1371
+ #: ../admin/social_sharing.php:1989
1372
  msgid "Why is Facebook share count not working?"
1373
  msgstr ""
1374
 
1375
+ #: ../admin/social_sharing.php:1992
1376
  msgid "Why is Instagram icon redirecting to Instagram website?"
1377
  msgstr ""
1378
 
1379
+ #: ../admin/social_sharing.php:1993
1380
  msgid ""
1381
  "Instagram icon is there to send website visitors to the Instagram page of "
1382
  "your choice. You can save the desired Instagram handle in \"Instagram "
1384
  "sections."
1385
  msgstr ""
1386
 
1387
+ #: ../admin/social_sharing.php:1996
1388
  msgid "How to customize the url being shared?"
1389
  msgstr ""
1390
 
1391
+ #: ../admin/social_sharing.php:1997
1392
  msgid ""
1393
  "Why are Twitter shares not appearing even after registering at Twitcount.com?"
1394
  msgstr ""
1395
 
1396
+ #: ../admin/social_sharing.php:1998
1397
  msgid ""
1398
  "It takes some time for their service to track the shares made on Twitter "
1399
  "from your website. If you still feel it's taking too long you can contact "
1400
  "their support directly from their website."
1401
  msgstr ""
1402
 
1403
+ #: ../admin/social_sharing.php:2000 ../admin/like_buttons.php:814
1404
  msgid "How to Place Title and Social Share Icons in the Same Row?"
1405
  msgstr ""
1406
 
1407
+ #: ../admin/social_sharing.php:2001
1408
  msgid ""
1409
  "How to restore Social Share counts lost after moving my website to SSL/Https?"
1410
  msgstr ""
1411
 
1412
+ #: ../admin/social_sharing.php:2002 ../admin/social_commenting.php:402
1413
+ #: ../admin/social_login.php:1302
1414
  msgid "Why is my browser blocking some features of the plugin?"
1415
  msgstr ""
1416
 
1417
+ #: ../admin/social_sharing.php:2003
1418
  msgid "Why the color of share icons is not being updated?"
1419
  msgstr ""
1420
 
1421
+ #: ../admin/social_sharing.php:2004
1422
  msgid "Why Facebook share counts are not appearing?"
1423
  msgstr ""
1424
 
1425
+ #: ../admin/social_sharing.php:2005
1426
  msgid ""
1427
  "How can I show share counts of my website rather than of individual pages/"
1428
  "posts?"
1429
  msgstr ""
1430
 
1431
+ #: ../admin/social_sharing.php:2006
1432
  msgid "How can I disable sharing on particular page/post?"
1433
  msgstr ""
1434
 
1435
+ #: ../admin/social_sharing.php:2007
1436
  msgid "How can I specify minimum sharing count for sharing networks?"
1437
  msgstr ""
1438
 
1439
+ #: ../admin/social_sharing.php:2008
1440
  msgid "How to share specific page?"
1441
  msgstr ""
1442
 
1443
+ #: ../admin/social_sharing.php:2009
1444
  msgid "How to integrate Google Analytics with sharing?"
1445
  msgstr ""
1446
 
1447
+ #: ../admin/social_sharing.php:2010
1448
  msgid "How to customize the look of total share counts?"
1449
  msgstr ""
1450
 
1451
+ #: ../admin/social_sharing.php:2011
1452
  msgid "How to customize the look of individual share counts?"
1453
  msgstr ""
1454
 
1455
+ #: ../admin/social_sharing.php:2012
1456
  msgid "How to show Whatsapp icon only on mobile devices?"
1457
  msgstr ""
1458
 
1459
+ #: ../admin/social_sharing.php:2013
1460
  msgid "How to hide arrow after floating sharing bar?"
1461
  msgstr ""
1462
 
1463
+ #: ../admin/social_sharing.php:2014
1464
  msgid "Why is share count not getting updated?"
1465
  msgstr ""
1466
 
1467
+ #: ../admin/social_sharing.php:2015 ../admin/like_buttons.php:812
1468
  msgid "Why is there so much space between like buttons?"
1469
  msgstr ""
1470
 
1471
+ #: ../admin/social_sharing.php:2016 ../admin/like_buttons.php:813
1472
  msgid "Why are floating sharing/like buttons not appearing at homepage?"
1473
  msgstr ""
1474
 
1697
  msgid "GDPR"
1698
  msgstr ""
1699
 
1700
+ #: ../admin/social_login.php:44 ../admin/social_login.php:1230
1701
  msgid "XProfile Integration"
1702
  msgstr ""
1703
 
2299
  msgstr ""
2300
 
2301
  #: ../admin/social_login.php:1135
2302
+ msgid "Text to link to Terms-Conditions page"
2303
  msgstr ""
2304
 
2305
  #: ../admin/social_login.php:1145
2306
+ msgid "Word(s) in the opt-in text to be linked to terms-conditions page"
2307
  msgstr ""
2308
 
2309
  #: ../admin/social_login.php:1153
2310
+ msgid "Terms-Conditions Url"
2311
  msgstr ""
2312
 
2313
  #: ../admin/social_login.php:1163
2314
+ msgid "Url of the terms-conditions page of your website"
2315
+ msgstr ""
2316
+
2317
+ #: ../admin/social_login.php:1171
2318
+ msgid "Text to link to Privacy Policy page"
2319
+ msgstr ""
2320
+
2321
+ #: ../admin/social_login.php:1181
2322
+ msgid "Word(s) in the opt-in text to be linked to privacy policy page"
2323
+ msgstr ""
2324
+
2325
+ #: ../admin/social_login.php:1189
2326
+ msgid "Privacy Policy Url"
2327
+ msgstr ""
2328
+
2329
+ #: ../admin/social_login.php:1199
2330
  msgid "Url of the privacy policy page of your website"
2331
  msgstr ""
2332
 
2333
+ #: ../admin/social_login.php:1250 ../inc/widget.php:260 ../inc/widget.php:438
2334
  #: ../inc/widget.php:602 ../inc/widget.php:750
2335
  msgid "Select"
2336
  msgstr ""
2337
 
2338
+ #: ../admin/social_login.php:1281
2339
  msgid "Social Login Shortcode & Widget"
2340
  msgstr ""
2341
 
2342
+ #: ../admin/social_login.php:1282
2343
  msgid "Social Linking Shortcode"
2344
  msgstr ""
2345
 
2346
+ #: ../admin/social_login.php:1297
2347
  msgid "Why is social login not working?"
2348
  msgstr ""
2349
 
2350
+ #: ../admin/social_login.php:1298
2351
  msgid ""
2352
  "Make sure that App ID and Secret (Client ID and Secret) keys you have saved, "
2353
  "belong to the same app"
2354
  msgstr ""
2355
 
2356
+ #: ../admin/social_login.php:1300
2357
  msgid "Social Login not working with Varnish enabled"
2358
  msgstr ""
2359
 
2360
+ #: ../admin/social_login.php:1301
2361
  msgid ""
2362
  "Why the user is not appearing logged in even after Social Login until the "
2363
  "webpage is refreshed manually?"
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.heateor.com/donate?action=Super+Socializer
4
  Tags: social login, social share, social commenting, social comments, social plugin, profile data, social analytics, online identity, social profile storage, single sign-on, social media follow, facebook login, Twitch login
5
  Requires at least: 2.5.0
6
  Tested up to: 5.2.2
7
- Stable tag: 7.12.31
8
  License: GPLv2 or later
9
 
10
  The unique Social Plugin to let you integrate Social Login, Social Share, Social Comments and Social Media follow at your website
@@ -210,6 +210,13 @@ Yes, we can help you with it. Just drop an email at support[ at ]heateor[ dot ]c
210
  8. **Social Commenting**: Disqus Commenting selected
211
 
212
  == Changelog ==
 
 
 
 
 
 
 
213
  = 7.12.31 [3 August 2019] =
214
  * [Bugfix] Google login was not saving first name and last name in user profile
215
  * [Bugfix] Google login was creating username from the email instead of first and last name
@@ -1912,4 +1919,11 @@ Yes, we can help you with it. Just drop an email at support[ at ]heateor[ dot ]c
1912
  = 7.12.31 [3 August 2019] =
1913
  * [Bugfix] Google login was not saving first name and last name in user profile
1914
  * [Bugfix] Google login was creating username from the email instead of first and last name
1915
- * [Bugfix] Updated the background color for Reddit share icon for AMP according to the Reddit branding guidelines
 
 
 
 
 
 
 
4
  Tags: social login, social share, social commenting, social comments, social plugin, profile data, social analytics, online identity, social profile storage, single sign-on, social media follow, facebook login, Twitch login
5
  Requires at least: 2.5.0
6
  Tested up to: 5.2.2
7
+ Stable tag: 7.12.32
8
  License: GPLv2 or later
9
 
10
  The unique Social Plugin to let you integrate Social Login, Social Share, Social Comments and Social Media follow at your website
210
  8. **Social Commenting**: Disqus Commenting selected
211
 
212
  == Changelog ==
213
+ = 7.12.32 [17 August 2019] =
214
+ * [Improvement] Removed the popup notification message being shown to website visitors when tracking protection enabled in browser
215
+ * [Improvement] Email share is being triggered in the new browser tab instead of the same tab
216
+ * [Bugfix] Fixed a PHP warning appearing at social sharing options page in some cases
217
+ * [Bugfix] Social share icons were not working with standard and transitional AMP modes
218
+ * [New] Added option to specify link to terms-conditions page in the GDPR opt-in text for social login
219
+
220
  = 7.12.31 [3 August 2019] =
221
  * [Bugfix] Google login was not saving first name and last name in user profile
222
  * [Bugfix] Google login was creating username from the email instead of first and last name
1919
  = 7.12.31 [3 August 2019] =
1920
  * [Bugfix] Google login was not saving first name and last name in user profile
1921
  * [Bugfix] Google login was creating username from the email instead of first and last name
1922
+ * [Bugfix] Updated the background color for Reddit share icon for AMP according to the Reddit branding guidelines
1923
+
1924
+ = 7.12.32 [17 August 2019] =
1925
+ * [Improvement] Removed the popup notification message being shown to website visitors when tracking protection enabled in browser
1926
+ * [Improvement] Email share is being triggered in the new browser tab instead of the same tab
1927
+ * [Bugfix] Fixed a PHP warning appearing at social sharing options page in some cases
1928
+ * [Bugfix] Social share icons were not working with standard and transitional AMP modes
1929
+ * [New] Added option to specify link to terms-conditions page in the GDPR opt-in text for social login
super_socializer.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Super Socializer
4
  Plugin URI: https://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, Social Media follow and more
6
- Version: 7.12.31
7
  Author: Team Heateor
8
  Author URI: https://www.heateor.com
9
  Text Domain: super-socializer
@@ -11,7 +11,7 @@ Domain Path: /languages
11
  License: GPL2+
12
  */
13
  defined('ABSPATH') or die("Cheating........Uh!!");
14
- define('THE_CHAMP_SS_VERSION', '7.12.31');
15
 
16
  require 'helper.php';
17
 
@@ -67,17 +67,12 @@ function the_champ_init(){
67
  if(heateor_ss_is_plugin_active('woocommerce/woocommerce.php')){
68
  add_action('the_champ_user_successfully_created', 'the_champ_sync_woocom_profile', 10, 3);
69
  }
70
- if(isset($theChampSharingOptions['amp_enable'])){
71
- $ampOptions = array();
72
- if(class_exists('AMP_Options_Manager') && null !== AMP_Options_Manager::OPTION_NAME){
73
- $ampOptions = get_option(AMP_Options_Manager::OPTION_NAME);
74
- if(isset($ampOptions['theme_support']) && ($ampOptions['theme_support'] == 'paired' || $ampOptions['theme_support'] == 'native')){
75
- add_action('wp_print_styles', 'the_champ_frontend_amp_css');
76
- }else{
77
- // stylesheet files for AMP pages
78
- add_action('amp_post_template_css', 'the_champ_frontend_amp_css');
79
- }
80
- }
81
  }
82
  }
83
  add_action('init', 'the_champ_init');
@@ -641,7 +636,6 @@ function the_champ_connect(){
641
  <?php echo esc_url(home_url()); ?>
642
  </li>
643
  <li><?php _e('Make sure cURL is enabled at your website server. You may need to contact the server administrator of your website to verify this', 'super-socializer') ?></li>
644
- <li><?php echo sprintf(__('Make sure that "Enable Callback Locking" option is disabled. See step 4 %s', 'super-socializer'), '<a target="_blank" href="http://support.heateor.com/how-to-get-twitter-api-key-and-secret">here</a>') ?></li>
645
  </ol>
646
  </div>
647
  <?php
@@ -874,7 +868,7 @@ function the_champ_frontend_scripts(){
874
  $inFooter = isset($theChampGeneralOptions['footer_script']) ? true : false;
875
  $combinedScript = isset($theChampGeneralOptions['combined_script']) ? true : false;
876
  ?>
877
- <script type="text/javascript">var theChampDefaultLang = '<?php echo get_locale(); ?>', theChampCloseIconPath = '<?php echo plugins_url('images/close.png', __FILE__) ?>';<?php if(isset($theChampGeneralOptions["browser_msg_enable"]) && $theChampGeneralOptions["browser_msg"] != ""){ ?>var heateorSsSDKBlockedMsg = `<?php echo str_replace("{support_url}", "<a href=\'http://support.heateor.com/browser-blocking-social-features/\' target=\'_blank\' style=\'color:#33a9d8\'>http://support.heateor.com/browser-blocking-social-features/</a>", nl2br(htmlspecialchars($theChampGeneralOptions["browser_msg"], ENT_QUOTES))); ?>`<?php } ?></script>
878
  <?php
879
  if(!$combinedScript){
880
  wp_enqueue_script('the_champ_ss_general_scripts', plugins_url('js/front/social_login/general.js', __FILE__), false, THE_CHAMP_SS_VERSION, $inFooter);
@@ -1421,8 +1415,6 @@ function the_champ_save_default_options(){
1421
  add_option('the_champ_general', array(
1422
  'footer_script' => '1',
1423
  'delete_options' => '1',
1424
- 'browser_msg_enable' => '1',
1425
- 'browser_msg' => __('Your browser is blocking some features of this website. Please follow the instructions at {support_url} to unblock these.', 'super-socializer'),
1426
  'custom_css' => '',
1427
  ));
1428
 
@@ -1442,8 +1434,10 @@ function the_champ_save_default_options(){
1442
  'link_account' => 1,
1443
  'gdpr_placement' => 'above',
1444
  'privacy_policy_url' => '',
1445
- 'privacy_policy_optin_text' => 'I agree to my personal data being stored and used as per Privacy Policy',
1446
- 'ppu_placeholder' => 'Privacy Policy'
 
 
1447
  ));
1448
 
1449
  // social commenting options
@@ -2046,6 +2040,13 @@ function the_champ_update_db_check(){
2046
  $currentVersion = get_option('the_champ_ss_version');
2047
 
2048
  if($currentVersion && $currentVersion != THE_CHAMP_SS_VERSION){
 
 
 
 
 
 
 
2049
  if(version_compare("7.12.25", $currentVersion) > 0){
2050
  global $theChampSharingOptions;
2051
  if(!$theChampSharingOptions['fb_key'] && !$theChampSharingOptions['fb_secret'] && $theChampSharingOptions['vertical_fb_key'] && $theChampSharingOptions['vertical_fb_secret']){
@@ -2384,6 +2385,10 @@ function the_champ_update_svg_css($colorToBeReplaced, $cssFile){
2384
  * CSS to load at front end for AMP
2385
  */
2386
  function the_champ_frontend_amp_css(){
 
 
 
 
2387
  global $theChampSharingOptions;
2388
 
2389
  $css = '';
3
  Plugin Name: Super Socializer
4
  Plugin URI: https://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, Social Media follow and more
6
+ Version: 7.12.32
7
  Author: Team Heateor
8
  Author URI: https://www.heateor.com
9
  Text Domain: super-socializer
11
  License: GPL2+
12
  */
13
  defined('ABSPATH') or die("Cheating........Uh!!");
14
+ define('THE_CHAMP_SS_VERSION', '7.12.32');
15
 
16
  require 'helper.php';
17
 
67
  if(heateor_ss_is_plugin_active('woocommerce/woocommerce.php')){
68
  add_action('the_champ_user_successfully_created', 'the_champ_sync_woocom_profile', 10, 3);
69
  }
70
+ if(isset($theChampSharingOptions['amp_enable']) && function_exists('is_amp_endpoint')){
71
+ // Standard and Transitional modes
72
+ add_action('wp_print_styles', 'the_champ_frontend_amp_css');
73
+
74
+ // Reader mode
75
+ add_action('amp_post_template_css', 'the_champ_frontend_amp_css');
 
 
 
 
 
76
  }
77
  }
78
  add_action('init', 'the_champ_init');
636
  <?php echo esc_url(home_url()); ?>
637
  </li>
638
  <li><?php _e('Make sure cURL is enabled at your website server. You may need to contact the server administrator of your website to verify this', 'super-socializer') ?></li>
 
639
  </ol>
640
  </div>
641
  <?php
868
  $inFooter = isset($theChampGeneralOptions['footer_script']) ? true : false;
869
  $combinedScript = isset($theChampGeneralOptions['combined_script']) ? true : false;
870
  ?>
871
+ <script type="text/javascript">var theChampDefaultLang = '<?php echo get_locale(); ?>', theChampCloseIconPath = '<?php echo plugins_url('images/close.png', __FILE__) ?>';</script>
872
  <?php
873
  if(!$combinedScript){
874
  wp_enqueue_script('the_champ_ss_general_scripts', plugins_url('js/front/social_login/general.js', __FILE__), false, THE_CHAMP_SS_VERSION, $inFooter);
1415
  add_option('the_champ_general', array(
1416
  'footer_script' => '1',
1417
  'delete_options' => '1',
 
 
1418
  'custom_css' => '',
1419
  ));
1420
 
1434
  'link_account' => 1,
1435
  'gdpr_placement' => 'above',
1436
  'privacy_policy_url' => '',
1437
+ 'privacy_policy_optin_text' => 'I have read and agree to Terms and Conditions of website and agree to my personal data being stored and used as per Privacy Policy',
1438
+ 'ppu_placeholder' => 'Privacy Policy',
1439
+ 'tc_placeholder' => 'Terms and Conditions',
1440
+ 'tc_url' => ''
1441
  ));
1442
 
1443
  // social commenting options
2040
  $currentVersion = get_option('the_champ_ss_version');
2041
 
2042
  if($currentVersion && $currentVersion != THE_CHAMP_SS_VERSION){
2043
+ if(version_compare("7.12.32", $currentVersion) > 0){
2044
+ global $theChampLoginOptions;
2045
+ $theChampLoginOptions['tc_placeholder'] = 'Terms and Conditions';
2046
+ $theChampLoginOptions['tc_url'] = '';
2047
+ update_option('the_champ_login', $theChampLoginOptions);
2048
+ }
2049
+
2050
  if(version_compare("7.12.25", $currentVersion) > 0){
2051
  global $theChampSharingOptions;
2052
  if(!$theChampSharingOptions['fb_key'] && !$theChampSharingOptions['fb_secret'] && $theChampSharingOptions['vertical_fb_key'] && $theChampSharingOptions['vertical_fb_secret']){
2385
  * CSS to load at front end for AMP
2386
  */
2387
  function the_champ_frontend_amp_css(){
2388
+ if(!is_amp_endpoint()){
2389
+ return;
2390
+ }
2391
+
2392
  global $theChampSharingOptions;
2393
 
2394
  $css = '';