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

Version Description

[23 September 2020] = [New] Added WordPress and Yahoo in the social login networks [Improvement] Usernames for BuddyPress have now firstname-lastname format instead of just firstname [Improvement] Code improvement

Download this release

Release Info

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

Code changes from version 7.12.50 to 7.13

admin/social_login.php CHANGED
@@ -131,9 +131,17 @@
131
  <label for="the_champ_login_line"><?php _e("Line", 'super-socializer'); ?></label>
132
  </div>
133
  <div class="theChampHorizontalSharingProviderContainer">
 
 
 
 
134
  <input id="the_champ_login_live" name="the_champ_login[providers][]" type="checkbox" <?php echo isset($theChampLoginOptions['providers']) && in_array('microsoft', $theChampLoginOptions['providers']) ? 'checked = "checked"' : '';?> value="microsoft" />
135
  <label for="the_champ_login_live"><?php _e("Windows Live", 'super-socializer'); ?></label>
136
  </div>
 
 
 
 
137
  </td>
138
  </tr>
139
 
@@ -444,7 +452,47 @@
444
  </div>
445
  </td>
446
  </tr>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
447
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
448
  <tr>
449
  <th>
450
  <label for="the_champ_sl_live_key"><?php _e("Microsoft Client ID", 'super-socializer'); ?></label><img id="the_champ_sl_live_key_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
@@ -501,6 +549,48 @@
501
  </div>
502
  </td>
503
  </tr>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
504
  </table>
505
  </div>
506
  </div>
@@ -1187,27 +1277,27 @@
1187
  <div class="inside">
1188
  <?php
1189
  global $wpdb;
1190
- $xprofileFields = $wpdb -> get_results("SELECT * FROM " . $wpdb -> prefix . "bp_xprofile_fields");
1191
  if($xprofileFields){
1192
  ?>
1193
  <table width="100%" border="0" cellspacing="0" cellpadding="0" class="form-table editcomment menu_content_table">
1194
  <?php
1195
  foreach($xprofileFields as $field){
1196
- if($field -> id == 1){
1197
  continue;
1198
  }
1199
  ?>
1200
  <tr>
1201
  <td>
1202
- <label><?php _e($field -> name, 'super-socializer'); ?></label>
1203
  </td>
1204
  <td>
1205
- <select name="the_champ_login[xprofile_mapping][<?php echo $field -> name ?>]">
1206
  <option value="">--<?php _e('Select', 'super-socializer') ?>--</option>
1207
  <?php
1208
  foreach($profileFields as $key => $val){
1209
  ?>
1210
- <option <?php echo isset($theChampLoginOptions['xprofile_mapping'][$field -> name]) && $theChampLoginOptions['xprofile_mapping'][$field -> name] == $val ? 'selected' : '' ?> value="<?php echo $val ?>"><?php echo ucfirst($key) ?></option>
1211
  <?php
1212
  }
1213
  ?>
131
  <label for="the_champ_login_line"><?php _e("Line", 'super-socializer'); ?></label>
132
  </div>
133
  <div class="theChampHorizontalSharingProviderContainer">
134
+ <input id="the_champ_login_wordpress" name="the_champ_login[providers][]" type="checkbox" <?php echo isset($theChampLoginOptions['providers']) && in_array('wordpress', $theChampLoginOptions['providers']) ? 'checked = "checked"' : '';?> value="wordpress" />
135
+ <label for="the_champ_login_wordpress"><?php _e("Wordpress", 'super-socializer'); ?></label>
136
+ </div>
137
+ <div class="theChampHorizontalSharingProviderContainer">
138
  <input id="the_champ_login_live" name="the_champ_login[providers][]" type="checkbox" <?php echo isset($theChampLoginOptions['providers']) && in_array('microsoft', $theChampLoginOptions['providers']) ? 'checked = "checked"' : '';?> value="microsoft" />
139
  <label for="the_champ_login_live"><?php _e("Windows Live", 'super-socializer'); ?></label>
140
  </div>
141
+ <div class="theChampHorizontalSharingProviderContainer">
142
+ <input id="the_champ_login_yahoo" name="the_champ_login[providers][]" type="checkbox" <?php echo isset($theChampLoginOptions['providers']) && in_array('yahoo', $theChampLoginOptions['providers']) ? 'checked = "checked"' : '';?> value="yahoo" />
143
+ <label for="the_champ_login_yahoo"><?php _e("Yahoo", 'super-socializer'); ?></label>
144
+ </div>
145
  </td>
146
  </tr>
147
 
452
  </div>
453
  </td>
454
  </tr>
455
+ <!-- wordpress -->
456
+ <tr>
457
+ <th>
458
+ <label for="the_champ_sl_wordpress_key"><?php _e("Wordpress Client ID", 'super-socializer'); ?></label><img id="the_champ_sl_wordpress_key_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
459
+ </th>
460
+ <td>
461
+ <input id="the_champ_sl_wordpress_key" name="the_champ_login[wordpress_client_id]" type="text" value="<?php echo isset($theChampLoginOptions['wordpress_client_id']) ? $theChampLoginOptions['wordpress_client_id'] : '' ?>" />
462
+ </td>
463
+ </tr>
464
+ <tr class="the_champ_help_content" id="the_champ_sl_wordpress_key_help_cont">
465
+ <td colspan="2">
466
+ <div>
467
+ <?php echo sprintf(__('Required for Wordpress Social Login to work. Please follow the documentation at <a href="%s" target="_blank">this link</a> to get Wordpress Client ID', 'super-socializer'), 'http://support.heateor.com/get-wordpress-client-id-client-secret') ?>
468
+ <br/>
469
+ <span style="color:#14ACDF"><?php _e('Paste following url in <strong>Callback URL</strong> option mentioned at the link', 'super-socializer'); ?></span>
470
+ <br/>
471
+ <strong style="color:#14ACDF"><?php echo esc_url(home_url()).'/SuperSocializerAuth/Wordpress'; ?></strong>
472
+ </div>
473
+ </td>
474
+ </tr>
475
 
476
+ <tr>
477
+ <th>
478
+ <label for="the_champ_sl_wordpress_secret"><?php _e("Wordpress Client Secret", 'super-socializer'); ?></label><img id="the_champ_sl_wordpress_secret_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
479
+ </th>
480
+ <td>
481
+ <input id="the_champ_sl_wordpress_secret" name="the_champ_login[wordpress_client_secret]" type="text" value="<?php echo isset($theChampLoginOptions['wordpress_client_secret']) ? $theChampLoginOptions['wordpress_client_secret'] : '' ?>" />
482
+ </td>
483
+ </tr>
484
+ <tr class="the_champ_help_content" id="the_champ_sl_wordpress_secret_help_cont">
485
+ <td colspan="2">
486
+ <div>
487
+ <?php echo sprintf(__('Required for Wordpress Social Login to work. Please follow the documentation at <a href="%s" target="_blank">this link</a> to get Wordpress Client Secret', 'super-socializer'), 'http://support.heateor.com/get-wordpress-client-id-client-secret') ?>
488
+ <br/>
489
+ <span style="color:#14ACDF"><?php _e('Paste following url in <strong>Callback URL</strong> option mentioned at the link', 'super-socializer'); ?></span>
490
+ <br/>
491
+ <strong style="color:#14ACDF"><?php echo esc_url(home_url()).'/SuperSocializerAuth/Wordpress'; ?></strong>
492
+ </div>
493
+ </td>
494
+ </tr>
495
+ <!-- end of WordPress -->
496
  <tr>
497
  <th>
498
  <label for="the_champ_sl_live_key"><?php _e("Microsoft Client ID", 'super-socializer'); ?></label><img id="the_champ_sl_live_key_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
549
  </div>
550
  </td>
551
  </tr>
552
+
553
+ <!-- yahoo -->
554
+ <tr>
555
+ <th>
556
+ <label for="the_champ_yahoo_key"><?php _e("Yahoo Client ID", 'super-socializer'); ?><img id="the_champ_yahoo_key_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" /></label>
557
+ </th>
558
+ <td>
559
+ <input id="the_champ_yahoo_key" name="the_champ_login[yahoo_channel_id]" type="text" value="<?php echo isset($theChampLoginOptions['yahoo_channel_id']) ? $theChampLoginOptions['yahoo_channel_id'] : '' ?>" />
560
+ </td>
561
+ </tr>
562
+ <tr class="the_champ_help_content" id="the_champ_yahoo_key_help_cont">
563
+ <td colspan="2">
564
+ <div>
565
+ <?php echo sprintf(__('Required for Yahoo Social Login to work. Please follow the documentation at <a href="%s" target="_blank">this link</a> to get Yahoo Client ID', 'super-socializer'), 'http://support.heateor.com/get-yahoo-client-id-client-secret') ?>
566
+ <br/>
567
+ <span style="color:#14ACDF"><?php _e('Paste following url in <strong>Redirect URIs</strong> option mentioned at the link', 'super-socializer'); ?></span>
568
+ <br/>
569
+ <strong style="color:#14ACDF"><?php echo esc_url(home_url()).'/SuperSocializerAuth/Yahoo'; ?></strong>
570
+ </div>
571
+ </td>
572
+ </tr>
573
+
574
+ <tr>
575
+ <th>
576
+ <label for="the_champ_yahoo_secret"><?php _e("Yahoo Client Secret", 'super-socializer'); ?><img id="the_champ_yahoo_secret_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" /></label>
577
+ </th>
578
+ <td>
579
+ <input id="the_champ_yahoo_secret" name="the_champ_login[yahoo_channel_secret]" type="text" value="<?php echo isset($theChampLoginOptions['yahoo_channel_secret']) ? $theChampLoginOptions['yahoo_channel_secret'] : '' ?>" />
580
+ </td>
581
+ </tr>
582
+ <tr class="the_champ_help_content" id="the_champ_yahoo_secret_help_cont">
583
+ <td colspan="2">
584
+ <div>
585
+ <?php echo sprintf(__('Required for Yahoo Social Login to work. Please follow the documentation at <a href="%s" target="_blank">this link</a> to get Yahoo Client Secret key', 'super-socializer'), 'http://support.heateor.com/get-yahoo-client-id-client-secret') ?>
586
+ <br/>
587
+ <span style="color:#14ACDF"><?php _e('Paste following url in <strong>Redirect URIs</strong> option mentioned at the link', 'super-socializer'); ?></span>
588
+ <br/>
589
+ <strong style="color:#14ACDF"><?php echo esc_url(home_url()).'/SuperSocializerAuth/Yahoo'; ?></strong>
590
+ </div>
591
+ </td>
592
+ </tr>
593
+ <!-- end of yahoo -->
594
  </table>
595
  </div>
596
  </div>
1277
  <div class="inside">
1278
  <?php
1279
  global $wpdb;
1280
+ $xprofileFields = $wpdb-> get_results("SELECT * FROM " . $wpdb-> prefix . "bp_xprofile_fields");
1281
  if($xprofileFields){
1282
  ?>
1283
  <table width="100%" border="0" cellspacing="0" cellpadding="0" class="form-table editcomment menu_content_table">
1284
  <?php
1285
  foreach($xprofileFields as $field){
1286
+ if($field-> id == 1){
1287
  continue;
1288
  }
1289
  ?>
1290
  <tr>
1291
  <td>
1292
+ <label><?php _e($field-> name, 'super-socializer'); ?></label>
1293
  </td>
1294
  <td>
1295
+ <select name="the_champ_login[xprofile_mapping][<?php echo $field-> name ?>]">
1296
  <option value="">--<?php _e('Select', 'super-socializer') ?>--</option>
1297
  <?php
1298
  foreach($profileFields as $key => $val){
1299
  ?>
1300
+ <option <?php echo isset($theChampLoginOptions['xprofile_mapping'][$field-> name]) && $theChampLoginOptions['xprofile_mapping'][$field-> name] == $val ? 'selected' : '' ?> value="<?php echo $val ?>"><?php echo ucfirst($key) ?></option>
1301
  <?php
1302
  }
1303
  ?>
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}.theChampXingLoginSvg{background-size:109%!important;background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAzMCAzMCI+DQo8cGF0aCBkPSJNIDYgOSBoIDUgbCA0IDQgbCAtNSA3IGggLTUgbCA1IC03IHogbSAxNSAtNCBoIDUgbCAtOSAxMyBsIDQgOCBoIC01IGwgLTQgLTggeiIgZmlsbD0iI2ZmZiI+PC9wYXRoPg0KPC9zdmc+) left no-repeat}.theChampGoogleLoginSvg{background-size:101%!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:106%!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:106%!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:113%!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}.theChampLineLoginSvg{background-size:91%!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%3Cpath%20fill%3D%22%23FFF%22%20d%3D%22M28%2014.304c0-5.37-5.384-9.738-12-9.738S4%208.936%204%2014.304c0%204.814%204.27%208.846%2010.035%209.608.39.084.923.258%201.058.592.122.303.08.778.04%201.084l-.172%201.028c-.05.303-.24%201.187%201.04.647s6.91-4.07%209.43-6.968c1.737-1.905%202.57-3.842%202.57-5.99zM11.302%2017.5H8.918c-.347%200-.63-.283-.63-.63V12.1c0-.346.283-.628.63-.628.348%200%20.63.283.63.63v4.14h1.754c.35%200%20.63.28.63.628%200%20.347-.282.63-.63.63zm2.467-.63c0%20.347-.284.628-.63.628-.348%200-.63-.282-.63-.63V12.1c0-.347.282-.63.63-.63.346%200%20.63.284.63.63v4.77zm5.74%200c0%20.27-.175.51-.433.596-.065.02-.132.032-.2.032-.195%200-.384-.094-.502-.25l-2.443-3.33v2.95c0%20.35-.282.63-.63.63-.347%200-.63-.282-.63-.63V12.1c0-.27.174-.51.43-.597.066-.02.134-.033.2-.033.197%200%20.386.094.503.252l2.444%203.328V12.1c0-.347.282-.63.63-.63.346%200%20.63.284.63.63v4.77zm3.855-3.014c.348%200%20.63.282.63.63%200%20.346-.282.628-.63.628H21.61v1.126h1.755c.348%200%20.63.282.63.63%200%20.347-.282.628-.63.628H20.98c-.345%200-.628-.282-.628-.63v-4.766c0-.346.283-.628.63-.628h2.384c.348%200%20.63.283.63.63%200%20.346-.282.628-.63.628h-1.754v1.126h1.754z%22%2F%3E%3C%2Fsvg%3E') left no-repeat}.theChampMicrosoftLoginSvg{background-size:91%!important;background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3Asvg%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-16.61977%20-16.61977%20123.565208%20123.834167%22%20id%3D%22svg8375%22%3E%3Cpath%20d%3D%22M%200%2C12.40183%2035.68737%2C7.5416%2035.70297%2C41.96435%200.03321%2C42.16748%20z%20m%2035.67037%2C33.52906%200.0277%2C34.45332%20-35.66989%2C-4.9041%20-0.002%2C-29.77972%20z%20M%2039.99644%2C6.90595%2087.31462%2C0%20l%200%2C41.527%20-47.31818%2C0.37565%20z%20M%2087.32567%2C46.25471%2087.31457%2C87.59463%2039.9964%2C80.91625%2039.9301%2C46.17767%20z%22%20id%3D%22path13%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') left no-repeat}.theChampFacebookLoginSvg{background-size:147%!important;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-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%23218cf2%22%3E%3C%2Fpath%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;background-size:80%!important}.theChampInstagramLoginSvg{background-size:94%!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: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%)}.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}.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}.theChampLineBackground{background-color:#00C300}.theChampMicrosoftBackground{background-color:#2672ec}.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}.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}div.theChampFacebookLogoContainer{width:25px;height:25px;border-radius:999px;background-color:white;margin:5px auto;}div.the_champ_login_container i.theChampFacebookBackground{background-color:#218cf2!important}
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}.theChampXingLoginSvg{background-size:109%!important;background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAzMCAzMCI+DQo8cGF0aCBkPSJNIDYgOSBoIDUgbCA0IDQgbCAtNSA3IGggLTUgbCA1IC03IHogbSAxNSAtNCBoIDUgbCAtOSAxMyBsIDQgOCBoIC01IGwgLTQgLTggeiIgZmlsbD0iI2ZmZiI+PC9wYXRoPg0KPC9zdmc+) left no-repeat}.theChampWordpressLoginSvg{background-size:84%!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%3Ccircle%20fill%3D%22%23FFF%22%20cx%3D%2216%22%20cy%3D%2216%22%20r%3D%2214.75%22%2F%3E%3Cg%20fill%3D%22%23464646%22%3E%3Cpath%20d%3D%22M3.176%2016c0%205.076%202.95%209.462%207.226%2011.54L4.287%2010.78c-.712%201.595-1.11%203.36-1.11%205.22zm21.48-.646c0-1.586-.57-2.684-1.06-3.537-.647-1.058-1.26-1.95-1.26-3.008%200-1.18.897-2.278%202.156-2.278.057%200%20.11.008.166.01-2.28-2.09-5.32-3.367-8.658-3.367-4.48%200-8.422%202.3-10.715%205.78.302.01.585.017.826.017%201.343%200%203.418-.164%203.418-.164.69-.042.774.974.084%201.056%200%200-.694.08-1.466.12l4.668%2013.892%202.808-8.417-1.998-5.476c-.69-.04-1.345-.12-1.345-.12-.69-.04-.61-1.1.08-1.058%200%200%202.116.164%203.38.164%201.34%200%203.416-.163%203.416-.163.69-.04.77.976.08%201.058%200%200-.694.08-1.467.12l4.634%2013.785%201.28-4.272c.552-1.773.975-3.048.975-4.144zm-8.43%201.766l-3.85%2011.18c1.15.34%202.365.523%203.624.523%201.492%200%202.925-.26%204.26-.728-.035-.056-.066-.113-.093-.177L16.225%2017.12zM27.25%209.848c.055.408.086.848.086%201.318%200%201.3-.242%202.764-.975%204.594l-3.916%2011.324C26.26%2024.86%2028.822%2020.73%2028.822%2016c0-2.23-.568-4.326-1.57-6.152z%22%2F%3E%3Cpath%20d%3D%22M16%201.052C7.757%201.052%201.052%207.757%201.052%2016c0%208.242%206.705%2014.948%2014.948%2014.948%208.242%200%2014.948-6.706%2014.948-14.95%200-8.24-6.706-14.946-14.948-14.946zm0%2029.212c-7.865%200-14.264-6.4-14.264-14.265S8.136%201.734%2016%201.734c7.863%200%2014.264%206.398%2014.264%2014.263%200%207.863-6.4%2014.264-14.264%2014.264z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.theChampGoogleLoginSvg{background-size:101%!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:106%!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:106%!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:113%!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}.theChampLineLoginSvg{background-size:91%!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%3Cpath%20fill%3D%22%23FFF%22%20d%3D%22M28%2014.304c0-5.37-5.384-9.738-12-9.738S4%208.936%204%2014.304c0%204.814%204.27%208.846%2010.035%209.608.39.084.923.258%201.058.592.122.303.08.778.04%201.084l-.172%201.028c-.05.303-.24%201.187%201.04.647s6.91-4.07%209.43-6.968c1.737-1.905%202.57-3.842%202.57-5.99zM11.302%2017.5H8.918c-.347%200-.63-.283-.63-.63V12.1c0-.346.283-.628.63-.628.348%200%20.63.283.63.63v4.14h1.754c.35%200%20.63.28.63.628%200%20.347-.282.63-.63.63zm2.467-.63c0%20.347-.284.628-.63.628-.348%200-.63-.282-.63-.63V12.1c0-.347.282-.63.63-.63.346%200%20.63.284.63.63v4.77zm5.74%200c0%20.27-.175.51-.433.596-.065.02-.132.032-.2.032-.195%200-.384-.094-.502-.25l-2.443-3.33v2.95c0%20.35-.282.63-.63.63-.347%200-.63-.282-.63-.63V12.1c0-.27.174-.51.43-.597.066-.02.134-.033.2-.033.197%200%20.386.094.503.252l2.444%203.328V12.1c0-.347.282-.63.63-.63.346%200%20.63.284.63.63v4.77zm3.855-3.014c.348%200%20.63.282.63.63%200%20.346-.282.628-.63.628H21.61v1.126h1.755c.348%200%20.63.282.63.63%200%20.347-.282.628-.63.628H20.98c-.345%200-.628-.282-.628-.63v-4.766c0-.346.283-.628.63-.628h2.384c.348%200%20.63.283.63.63%200%20.346-.282.628-.63.628h-1.754v1.126h1.754z%22%2F%3E%3C%2Fsvg%3E') left no-repeat}.theChampMicrosoftLoginSvg{background-size:91%!important;background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3Asvg%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-16.61977%20-16.61977%20123.565208%20123.834167%22%20id%3D%22svg8375%22%3E%3Cpath%20d%3D%22M%200%2C12.40183%2035.68737%2C7.5416%2035.70297%2C41.96435%200.03321%2C42.16748%20z%20m%2035.67037%2C33.52906%200.0277%2C34.45332%20-35.66989%2C-4.9041%20-0.002%2C-29.77972%20z%20M%2039.99644%2C6.90595%2087.31462%2C0%20l%200%2C41.527%20-47.31818%2C0.37565%20z%20M%2087.32567%2C46.25471%2087.31457%2C87.59463%2039.9964%2C80.91625%2039.9301%2C46.17767%20z%22%20id%3D%22path13%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') left no-repeat}.theChampYahooLoginSvg{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%22M21.495%206.097c1.09.31%202.213.28%203.304%200l-7.418%2012.09v9.91c-.468-.155-.935-.22-1.37-.22-.47%200-.937.065-1.404.22v-9.91L7.19%206.097c1.09.28%202.213.31%203.304%200l5.516%208.788%205.483-8.787z%22%2F%3E%3C%2Fsvg%3E') left no-repeat;background-size:95%}.theChampFacebookLoginSvg{background-size:147%!important;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-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%23218cf2%22%3E%3C%2Fpath%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;background-size:80%!important}.theChampInstagramLoginSvg{background-size:94%!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: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%)}.theChampYummlyBackground{background-color:#E16120}.theChampBufferBackground{background-color:#000}.theChampYahooBackground{background-color:#400090}.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}.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}.theChampLineBackground{background-color:#00C300}.theChampMicrosoftBackground{background-color:#2672ec}.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}.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,.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}div.theChampFacebookLogoContainer{width:25px;height:25px;border-radius:999px;background-color:white;margin:5px auto;}div.the_champ_login_container i.theChampFacebookBackground{background-color:#218cf2!important}
helper.php CHANGED
@@ -5,7 +5,7 @@
5
  function the_champ_settings_saved_notification(){
6
  if(isset($_GET['settings-updated']) && sanitize_text_field($_GET['settings-updated']) == 'true'){
7
  return '<div id="setting-error-settings_updated" class="updated settings-error notice is-dismissible below-h2">
8
- <p><strong>' . __('Settings saved', 'super-socializer') . '</strong></p><button type="button" class="notice-dismiss"><span class="screen-reader-text">' . __('Dismiss this notice', 'super-socializer') . '</span></button></div>';
9
  }
10
  }
11
 
@@ -134,8 +134,8 @@ function the_champ_options_init(){
134
  register_setting('the_champ_general_options', 'the_champ_general', 'the_champ_validate_options');
135
  if((the_champ_social_sharing_enabled() || the_champ_social_counter_enabled() || the_champ_social_commenting_enabled()) && current_user_can('manage_options')){
136
  // show option to disable sharing on particular page/post
137
- $post_types = get_post_types( array( 'public' => true ), 'names', 'and' );
138
- $post_types = array_unique( array_merge( $post_types, array( 'post', 'page' ) ) );
139
  foreach($post_types as $type){
140
  add_meta_box('the_champ_meta', 'Super Socializer', 'the_champ_sharing_meta_setup', $type);
141
  }
@@ -195,43 +195,43 @@ function the_champ_admin_style(){
195
  function the_champ_admin_sharing_style(){
196
  global $theChampSharingOptions;
197
 
198
- wp_enqueue_style( 'the_champ_admin_svg', plugins_url( 'css/share-svg.css', __FILE__ ), false, THE_CHAMP_SS_VERSION );
199
- if( $theChampSharingOptions['horizontal_font_color_default'] != '' ) {
200
- $updated = the_champ_update_css( 'horizontal_sharing_replace_color', 'horizontal_font_color_default', 'share-default-svg-horizontal' );
201
- wp_enqueue_style( 'the_champ_admin_svg_horizontal', plugins_url( 'css/share-default-svg-horizontal.css', __FILE__ ), false, ( $updated === true ? rand() : THE_CHAMP_SS_VERSION ) );
202
  }
203
- if( $theChampSharingOptions['horizontal_font_color_hover'] != '' ) {
204
- $updated = the_champ_update_css( 'horizontal_sharing_replace_color_hover', 'horizontal_font_color_hover', 'share-hover-svg-horizontal' );
205
- wp_enqueue_style( 'the_champ_admin_svg_horizontal_hover', plugins_url( 'css/share-hover-svg-horizontal.css', __FILE__ ), false, ( $updated === true ? rand() : THE_CHAMP_SS_VERSION ) );
206
  }
207
- if( $theChampSharingOptions['vertical_font_color_default'] != '' ) {
208
- $updated = the_champ_update_css( 'vertical_sharing_replace_color', 'vertical_font_color_default', 'share-default-svg-vertical' );
209
- wp_enqueue_style( 'the_champ_admin_svg_vertical', plugins_url( 'css/share-default-svg-vertical.css', __FILE__ ), false, ( $updated === true ? rand() : THE_CHAMP_SS_VERSION ) );
210
  }
211
- if( $theChampSharingOptions['vertical_font_color_hover'] != '' ) {
212
- $updated = the_champ_update_css( 'vertical_sharing_replace_color_hover', 'vertical_font_color_hover', 'share-hover-svg-vertical' );
213
- wp_enqueue_style( 'the_champ_admin_svg_vertical_hover', plugins_url( 'css/share-hover-svg-vertical.css', __FILE__ ), false, ( $updated === true ? rand() : THE_CHAMP_SS_VERSION ) );
214
  }
215
  }
216
 
217
  /**
218
  * Update CSS file
219
  */
220
- function the_champ_update_css( $replace_color_option, $logo_color_option, $css_file ) {
221
  global $theChampSharingOptions;
222
- if ( $theChampSharingOptions[$replace_color_option] != $theChampSharingOptions[$logo_color_option] ) {
223
- $path = plugin_dir_url( __FILE__ ) . 'css/' . $css_file . '.css';
224
  try{
225
- $content = file( $path );
226
- if ( $content !== false ) {
227
- $handle = fopen( dirname( __FILE__ ) . '/css/' . $css_file . '.css','w' );
228
- if ( $handle !== false ) {
229
- foreach ( $content as $value ) {
230
- fwrite( $handle, str_replace( str_replace( '#', '%23', $theChampSharingOptions[$replace_color_option] ), str_replace( '#', '%23', $theChampSharingOptions[$logo_color_option] ), $value ) );
231
  }
232
- fclose( $handle );
233
  $theChampSharingOptions[$replace_color_option] = $theChampSharingOptions[$logo_color_option];
234
- update_option( 'the_champ_sharing', $theChampSharingOptions );
235
  return true;
236
  }
237
  }
@@ -247,11 +247,11 @@ function the_champ_update_css( $replace_color_option, $logo_color_option, $css_f
247
  */
248
  function the_champ_add_settings_link($links){
249
  if(is_array($links)){
250
- $addonsLink = '<br/><a href="https://www.heateor.com/add-ons" target="_blank">' . __('Add-Ons', 'super-socializer') . '</a>';
251
- $supportLink = '<a href="http://support.heateor.com" target="_blank">' . __('Support Documentation', 'super-socializer') . '</a>';
252
- $settingsLink = '<a href="admin.php?page=heateor-ss-general-options">' . __('Settings', 'super-socializer') . '</a>';
253
  // place it before other links
254
- array_unshift( $links, $settingsLink );
255
  $links[] = $addonsLink;
256
  $links[] = $supportLink;
257
  }
@@ -429,7 +429,7 @@ function the_champ_facebook_plugin_enabled(){
429
  */
430
  function the_champ_facebook_like_rec_enabled(){
431
  global $theChampCounterOptions, $theChampSharingOptions;
432
- if( ( the_champ_social_counter_enabled() && ( ( the_champ_horizontal_counter_enabled() && isset($theChampCounterOptions['horizontal_providers']) && ( in_array('facebook_share', $theChampCounterOptions['horizontal_providers']) || in_array('facebook_like', $theChampCounterOptions['horizontal_providers']) || in_array('facebook_recommend', $theChampCounterOptions['horizontal_providers']) ) ) || ( the_champ_vertical_counter_enabled() && isset($theChampCounterOptions['vertical_providers']) && ( in_array('facebook_share', $theChampCounterOptions['vertical_providers']) || in_array('facebook_like', $theChampCounterOptions['vertical_providers']) || in_array('facebook_recommend', $theChampCounterOptions['vertical_providers']) ) ) ) ) || ( the_champ_social_sharing_enabled() && ( ( the_champ_horizontal_sharing_enabled() && isset($theChampSharingOptions['horizontal_re_providers']) && ( in_array('facebook_share', $theChampSharingOptions['horizontal_re_providers']) || in_array('facebook_like', $theChampSharingOptions['horizontal_re_providers']) || in_array('facebook_recommend', $theChampSharingOptions['horizontal_re_providers']) ) ) || ( the_champ_vertical_sharing_enabled() && isset($theChampSharingOptions['vertical_re_providers']) && ( in_array('facebook_share', $theChampSharingOptions['vertical_re_providers']) || in_array('facebook_like', $theChampSharingOptions['vertical_re_providers']) || in_array('facebook_recommend', $theChampSharingOptions['vertical_re_providers']) ) ) ) ) ){
433
  return true;
434
  }
435
  return false;
@@ -439,7 +439,7 @@ function the_champ_facebook_like_rec_enabled(){
439
  * Log errors/exceptions
440
  */
441
  function the_champ_log_error($error){
442
- error_log(PHP_EOL . '[' . date('m/d/Y h:i:s a', time()) . '] ' . $error, 3, plugin_dir_path(__FILE__) . 'log.txt');
443
  }
444
 
445
  /**
@@ -451,7 +451,7 @@ function the_champ_error_message($error, $heading = false){
451
  if($heading){
452
  $html .= "<p style='color: black'><strong>Super Socializer: </strong></p>";
453
  }
454
- $html .= "<p style ='color:red; margin: 0'>". __($error, 'super-socializer') ."</p></div>";
455
  return $html;
456
  }
457
 
@@ -473,7 +473,7 @@ if(is_multisite() && is_main_site()){
473
  */
474
  function the_champ_update_old_blogs($oldConfig){
475
  $optionParts = explode('_', current_filter());
476
- $option = $optionParts[2] . '_' . $optionParts[3] . '_' . $optionParts[4];
477
  $newConfig = get_option($option);
478
  if(isset($newConfig['config_multisite']) && $newConfig['config_multisite'] == 1){
479
  $blogs = get_blog_list(0, 'all');
@@ -491,7 +491,7 @@ function the_champ_account_linking(){
491
  if(is_user_logged_in()){
492
  wp_enqueue_style('the-champ-frontend-css', plugins_url('css/front.css', __FILE__), false, THE_CHAMP_SS_VERSION);
493
  global $theChampFacebookOptions, $theChampLoginOptions, $user_ID;
494
- $twitterRedirect = urlencode(the_champ_get_valid_url(the_champ_get_http().$_SERVER["HTTP_HOST"] . html_entity_decode(esc_url(remove_query_arg(array('linked'))))));
495
  $currentPageUrl = urldecode($twitterRedirect);
496
  ?>
497
  <script>function theChampLoadEvent(e){var t=window.onload;if(typeof window.onload!="function"){window.onload=e}else{window.onload=function(){t();e()}}} var theChampCloseIconPath = '<?php echo plugins_url('images/close.png', __FILE__) ?>';</script>
@@ -500,7 +500,7 @@ function the_champ_account_linking(){
500
  wp_enqueue_script('the_champ_ss_general_scripts', plugins_url('js/front/social_login/general.js', __FILE__), false, THE_CHAMP_SS_VERSION);
501
  $websiteUrl = esc_url(home_url());
502
  ?>
503
- <script> var theChampLinkingRedirection = '<?php echo the_champ_get_http().$_SERVER["HTTP_HOST"] . html_entity_decode(esc_url(remove_query_arg(array( 'linked')))) ?>'; var theChampSiteUrl = '<?php echo $websiteUrl ?>'; var theChampVerified = 0; var theChampAjaxUrl = '<?php echo admin_url() ?>/admin-ajax.php'; var theChampPopupTitle = ''; var theChampEmailPopup = 0; var theChampEmailAjaxUrl = '<?php echo admin_url() ?>/admin-ajax.php'; var theChampEmailPopupTitle = ''; var theChampEmailPopupErrorMsg = ''; var theChampEmailPopupUniqueId = ''; var theChampEmailPopupVerifyMessage = ''; var theChampTwitterRedirect = '<?php echo $twitterRedirect; ?>';</script>
504
  <?php
505
  // scripts used for common Social Login functionality
506
  if(the_champ_social_login_enabled()){
@@ -513,7 +513,7 @@ function the_champ_account_linking(){
513
  <style type="text/css">
514
  #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}
515
  </style>
516
- <script> var theChampLoadingImgPath = '<?php echo $loadingImagePath ?>'; var theChampAjaxUrl = '<?php echo $theChampAjaxUrl ?>'; var theChampRedirectionUrl = '<?php echo $redirectionUrl ?>'; var theChampRegRedirectionUrl = '<?php echo $regRedirectionUrl ?>', theChampSteamAuthUrl = "<?php echo $theChampSteamLogin ? $theChampSteamLogin->url( esc_url(home_url()) . '?SuperSocializerSteamAuth=' . $twitterRedirect ) : ''; ?>"; var heateorMSEnabled = 0; var theChampLineAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Line&super_socializer_redirect_to=" + theChampTwitterRedirect; var theChampLiveAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Live&super_socializer_redirect_to=" + theChampTwitterRedirect; var theChampTwitterAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Twitter&super_socializer_redirect_to=" + theChampTwitterRedirect; var theChampFacebookAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Facebook&super_socializer_redirect_to=" + theChampTwitterRedirect; var theChampGoogleAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Google&super_socializer_redirect_to=" + theChampTwitterRedirect; var theChampVkontakteAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Vkontakte&super_socializer_redirect_to=" + theChampTwitterRedirect; var theChampLinkedinAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Linkedin&super_socializer_redirect_to=" + theChampTwitterRedirect; var theChampInstagramAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Instagram&super_socializer_redirect_to=" + theChampTwitterRedirect;</script>
517
  <?php
518
  $userVerified = false;
519
  $ajaxUrl = 'admin-ajax.php';
@@ -532,17 +532,17 @@ function the_champ_account_linking(){
532
  if(isset($_GET['linked'])){
533
  if(intval($_GET['linked']) == 1){
534
  $html .= '<tr>
535
- <td colspan="2" style="color: green">' . __('Account linked successfully', 'super-socializer') . '</td>
536
  </tr>';
537
  }elseif(intval($_GET['linked']) == 0){
538
  $html .= '<tr>
539
- <td colspan="2" style="color: red">' . __('Account already exists or linked', 'super-socializer') . '</td>
540
  </tr>';
541
  }
542
  }
543
  $icons_container = '<div class="the_champ_login_container">';
544
  if(isset($theChampLoginOptions['gdpr_enable'])){
545
- $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>';
546
  }
547
  if(isset($theChampLoginOptions['gdpr_enable']) && $theChampLoginOptions['gdpr_placement'] == 'above'){
548
  $icons_container .= $gdprOptIn;
@@ -563,18 +563,18 @@ function the_champ_account_linking(){
563
  }
564
  if(count($existingProviders) > 0){
565
  $html .= '<tr>
566
- <td colspan="2"><strong>' . $theChampLoginOptions['scl_title'] . '</strong><br/>';
567
  foreach($existingProviders as $provider){
568
  $icons_container .= '<li><i ';
569
  // id
570
- if( $provider == 'google' ){
571
- $icons_container .= 'id="theChamp'. ucfirst($provider) .'Button" ';
572
  }
573
  // class
574
- $icons_container .= 'class="theChampLogin theChamp'. ucfirst($provider) .'Background theChamp'. ucfirst($provider) .'Login" ';
575
- $icons_container .= 'alt="' . __('Login with', 'super-socializer') . ' ';
576
  $icons_container .= ucfirst($provider);
577
- $icons_container .= '" title="' . __('Login with', 'super-socializer') . ' ';
578
  $icons_container .= ucfirst($provider);
579
  if(current_filter() == 'comment_form_top'){
580
  $icons_container .= '" onclick="theChampCommentFormLogin = true; theChampInitiateLogin(this)" >';
@@ -584,7 +584,7 @@ function the_champ_account_linking(){
584
  if($provider == 'facebook'){
585
  $icons_container .= '<div class="theChampFacebookLogoContainer">';
586
  }
587
- $icons_container .= '<div class="theChampLoginSvg theChamp'. ucfirst($provider) .'LoginSvg"></div>';
588
  if($provider == 'facebook'){
589
  $icons_container .= '</div>';
590
  }
@@ -609,13 +609,13 @@ function the_champ_account_linking(){
609
  if($primarySocialNetwork && $primarySocialId){
610
  $current = get_user_meta($user_ID, 'thechamp_current_id', true) == get_user_meta($user_ID, 'thechamp_social_id', true);
611
  $html .= '<tr>
612
- <td style="padding: 0">'. ($current ? '<strong>'. __('Currently', 'super-socializer') . ' </strong>' : '') . __('Connected with', 'super-socializer') . ' <strong>'. ucfirst($primarySocialNetwork) .'</strong></td><td><input type="button" onclick="theChampUnlink(this, \''. $primarySocialNetwork .'\')" value="'. __('Remove', 'super-socializer') .'" /></td></tr>';
613
  }
614
  if(is_array($linkedAccounts) && count($linkedAccounts) > 0){
615
  foreach($linkedAccounts as $key => $value){
616
  $current = get_user_meta($user_ID, 'thechamp_current_id', true) == $value;
617
  $html .= '<tr>
618
- <td style="padding: 0">'. ($current ? '<strong>'. __('Currently', 'super-socializer') . ' </strong>' : '') . __('Connected with', 'super-socializer') . ' <strong>'. ucfirst($key) .'</strong></td><td><input type="button" onclick="theChampUnlink(this, \''. $key .'\')" value="'. __('Remove', 'super-socializer') .'" /></td></tr>';
619
  }
620
  }
621
  $html .= '</tbody>
@@ -679,7 +679,7 @@ function the_champ_unlink(){
679
  }
680
  add_action('wp_ajax_the_champ_unlink', 'the_champ_unlink');
681
 
682
- function the_champ_add_linking_tab() {
683
  if(bp_is_my_profile() && the_champ_social_login_enabled()){
684
  global $theChampLoginOptions;
685
  if(isset($theChampLoginOptions['bp_linking'])){
@@ -688,7 +688,7 @@ function the_champ_add_linking_tab() {
688
  bp_core_new_subnav_item( array(
689
  'name' => __('Social Account Linking', 'super-socializer'),
690
  'slug' => 'account-linking',
691
- 'parent_url' => trailingslashit( bp_loggedin_user_domain() . 'profile' ),
692
  'parent_slug' => 'profile',
693
  'screen_function' => 'the_champ_bp_linking',
694
  'position' => 50
@@ -704,7 +704,7 @@ function the_champ_bp_account_linking(){
704
  }
705
 
706
  // show social account linking when 'Social Account Linking' tab is clicked
707
- function the_champ_bp_linking() {
708
  add_action('bp_template_content', 'the_champ_bp_account_linking');
709
  bp_core_load_template(apply_filters('bp_core_template_plugin', 'members/single/plugins'));
710
  }
@@ -771,7 +771,7 @@ function the_champ_sharing_meta_setup(){
771
  ?>
772
  <br/>
773
  <label for="the_champ_<?php echo $sharingProvider ?>_horizontal_sharing_count">
774
- <span style="width: 242px; float:left"><?php _e('Starting share count for ' . ucfirst(str_replace('_', ' ', $sharingProvider)), 'super-socializer') ?></span>
775
  <input type="text" name="_the_champ_meta[<?php echo $sharingProvider ?>_horizontal_count]" id="the_champ_<?php echo $sharingProvider ?>_horizontal_sharing_count" value="<?php echo isset($sharingMeta[$sharingProvider.'_horizontal_count']) && $sharingMeta[$sharingProvider.'_horizontal_count'] > 0 ? $sharingMeta[$sharingProvider.'_horizontal_count'] : '' ?>" />
776
  </label>
777
  <?php
@@ -790,7 +790,7 @@ function the_champ_sharing_meta_setup(){
790
  ?>
791
  <br/>
792
  <label for="the_champ_<?php echo $sharingProvider ?>_vertical_sharing_count">
793
- <span style="width: 242px; float:left"><?php _e('Starting share count for ' . ucfirst(str_replace('_', ' ', $sharingProvider)), 'super-socializer') ?></span>
794
  <input type="text" name="_the_champ_meta[<?php echo $sharingProvider ?>_vertical_count]" id="the_champ_<?php echo $sharingProvider ?>_vertical_sharing_count" value="<?php echo isset($sharingMeta[$sharingProvider.'_vertical_count']) && $sharingMeta[$sharingProvider.'_vertical_count'] > 0 ? $sharingMeta[$sharingProvider.'_vertical_count'] : '' ?>" />
795
  </label>
796
  <?php
@@ -803,7 +803,7 @@ function the_champ_sharing_meta_setup(){
803
  ?>
804
  </p>
805
  <?php
806
- echo '<input type="hidden" name="the_champ_meta_nonce" value="' . wp_create_nonce(__FILE__) . '" />';
807
  }
808
 
809
  /**
@@ -811,7 +811,7 @@ function the_champ_sharing_meta_setup(){
811
  */
812
  function the_champ_save_sharing_meta($postId){
813
  // make sure data came from our meta box
814
- if(!isset($_POST['the_champ_meta_nonce']) || !wp_verify_nonce( $_POST['the_champ_meta_nonce'], __FILE__ )){
815
  return $postId;
816
  }
817
  // check user permissions
@@ -839,7 +839,7 @@ function the_champ_save_sharing_meta($postId){
839
  /**
840
  * Override sanitize_user function to allow cyrillic usernames
841
  */
842
- function the_champ_sanitize_user($username, $rawUsername, $strict) {
843
  $username = wp_strip_all_tags($rawUsername);
844
  $username = remove_accents($username);
845
  $username = preg_replace('|%([a-fA-F0-9][a-fA-F0-9])|', '', $username);
@@ -914,7 +914,7 @@ add_action('wp_ajax_the_champ_clear_shorturl_cache', 'the_champ_clear_shorturl_c
914
  /**
915
  * Clear share counts cache
916
  */
917
- function heateor_ss_clear_share_count_cache() {
918
  global $wpdb;
919
  $wpdb->query( "DELETE FROM $wpdb->options WHERE option_name LIKE '_transient_heateor_ss_share_count_%'" );
920
  die;
@@ -924,12 +924,12 @@ add_action('wp_ajax_heateor_ss_clear_share_count_cache', 'heateor_ss_clear_share
924
  /**
925
  * Detect myCRED referred signups
926
  */
927
- function heateor_ss_detect_mycred_referred_signups( $userId, $userdata, $profileData ) {
928
- if ( function_exists( 'mycred_detect_referred_signups' ) ) {
929
- mycred_detect_referred_signups( $userId );
930
  }
931
  }
932
- add_action( 'the_champ_user_successfully_created', 'heateor_ss_detect_mycred_referred_signups', 10, 3 );
933
 
934
  // keep track of the unverified users' login attempts from traditional login form
935
  $heateorSsLoginAttempt = 0;
@@ -993,9 +993,9 @@ add_filter('manage_users_columns', 'heateor_ss_add_custom_column');
993
  function heateor_ss_delete_profile_column($value, $columnName, $userId){
994
  if('heateor_ss_delete_profile_data' == $columnName){
995
  global $wpdb;
996
- $socialUser = $wpdb->get_var($wpdb->prepare('SELECT user_id FROM '. $wpdb->prefix .'usermeta WHERE user_id = %d and meta_key LIKE "thechamp%"', $userId));
997
  if($socialUser > 0){
998
- return '<a href="javascript:void(0)" title="'. __('Click to delete social profile data', 'super-socializer') .'" alt="'. __('Click to delete social profile data', 'super-socializer') .'" onclick="javascript:heateorSsDeleteSocialProfile(this, '. $userId .')">Delete</a>';
999
  }
1000
  }
1001
  }
@@ -1054,7 +1054,7 @@ function heateor_ss_delete_social_profile(){
1054
  if(isset($_GET['user_id'])){
1055
  $userId = intval(trim($_GET['user_id']));
1056
  global $wpdb;
1057
- $wpdb->query($wpdb->prepare('DELETE FROM '. $wpdb->prefix .'usermeta WHERE user_id = %d and meta_key LIKE "thechamp%"', $userId));
1058
  die('done');
1059
  }
1060
  die;
5
  function the_champ_settings_saved_notification(){
6
  if(isset($_GET['settings-updated']) && sanitize_text_field($_GET['settings-updated']) == 'true'){
7
  return '<div id="setting-error-settings_updated" class="updated settings-error notice is-dismissible below-h2">
8
+ <p><strong>'.__('Settings saved', 'super-socializer').'</strong></p><button type="button" class="notice-dismiss"><span class="screen-reader-text">'.__('Dismiss this notice', 'super-socializer').'</span></button></div>';
9
  }
10
  }
11
 
134
  register_setting('the_champ_general_options', 'the_champ_general', 'the_champ_validate_options');
135
  if((the_champ_social_sharing_enabled() || the_champ_social_counter_enabled() || the_champ_social_commenting_enabled()) && current_user_can('manage_options')){
136
  // show option to disable sharing on particular page/post
137
+ $post_types = get_post_types( array('public' => true), 'names', 'and');
138
+ $post_types = array_unique( array_merge($post_types, array('post', 'page')));
139
  foreach($post_types as $type){
140
  add_meta_box('the_champ_meta', 'Super Socializer', 'the_champ_sharing_meta_setup', $type);
141
  }
195
  function the_champ_admin_sharing_style(){
196
  global $theChampSharingOptions;
197
 
198
+ wp_enqueue_style('the_champ_admin_svg', plugins_url('css/share-svg.css', __FILE__), false, THE_CHAMP_SS_VERSION);
199
+ if($theChampSharingOptions['horizontal_font_color_default'] != ''){
200
+ $updated = the_champ_update_css('horizontal_sharing_replace_color', 'horizontal_font_color_default', 'share-default-svg-horizontal');
201
+ wp_enqueue_style('the_champ_admin_svg_horizontal', plugins_url('css/share-default-svg-horizontal.css', __FILE__), false, ($updated === true ? rand() : THE_CHAMP_SS_VERSION));
202
  }
203
+ if($theChampSharingOptions['horizontal_font_color_hover'] != ''){
204
+ $updated = the_champ_update_css('horizontal_sharing_replace_color_hover', 'horizontal_font_color_hover', 'share-hover-svg-horizontal');
205
+ wp_enqueue_style('the_champ_admin_svg_horizontal_hover', plugins_url('css/share-hover-svg-horizontal.css', __FILE__), false, ($updated === true ? rand() : THE_CHAMP_SS_VERSION));
206
  }
207
+ if($theChampSharingOptions['vertical_font_color_default'] != ''){
208
+ $updated = the_champ_update_css('vertical_sharing_replace_color', 'vertical_font_color_default', 'share-default-svg-vertical');
209
+ wp_enqueue_style('the_champ_admin_svg_vertical', plugins_url('css/share-default-svg-vertical.css', __FILE__), false, ($updated === true ? rand() : THE_CHAMP_SS_VERSION));
210
  }
211
+ if($theChampSharingOptions['vertical_font_color_hover'] != ''){
212
+ $updated = the_champ_update_css('vertical_sharing_replace_color_hover', 'vertical_font_color_hover', 'share-hover-svg-vertical');
213
+ wp_enqueue_style('the_champ_admin_svg_vertical_hover', plugins_url('css/share-hover-svg-vertical.css', __FILE__), false, ($updated === true ? rand() : THE_CHAMP_SS_VERSION));
214
  }
215
  }
216
 
217
  /**
218
  * Update CSS file
219
  */
220
+ function the_champ_update_css($replace_color_option, $logo_color_option, $css_file){
221
  global $theChampSharingOptions;
222
+ if($theChampSharingOptions[$replace_color_option] != $theChampSharingOptions[$logo_color_option]){
223
+ $path = plugin_dir_url(__FILE__).'css/'.$css_file.'.css';
224
  try{
225
+ $content = file($path );
226
+ if($content !== false){
227
+ $handle = fopen(dirname(__FILE__).'/css/'.$css_file.'.css','w');
228
+ if($handle !== false){
229
+ foreach ($content as $value){
230
+ fwrite($handle, str_replace( str_replace('#', '%23', $theChampSharingOptions[$replace_color_option]), str_replace('#', '%23', $theChampSharingOptions[$logo_color_option]), $value));
231
  }
232
+ fclose($handle);
233
  $theChampSharingOptions[$replace_color_option] = $theChampSharingOptions[$logo_color_option];
234
+ update_option('the_champ_sharing', $theChampSharingOptions);
235
  return true;
236
  }
237
  }
247
  */
248
  function the_champ_add_settings_link($links){
249
  if(is_array($links)){
250
+ $addonsLink = '<br/><a href="https://www.heateor.com/add-ons" target="_blank">'.__('Add-Ons', 'super-socializer').'</a>';
251
+ $supportLink = '<a href="http://support.heateor.com" target="_blank">'.__('Support Documentation', 'super-socializer').'</a>';
252
+ $settingsLink = '<a href="admin.php?page=heateor-ss-general-options">'.__('Settings', 'super-socializer').'</a>';
253
  // place it before other links
254
+ array_unshift($links, $settingsLink);
255
  $links[] = $addonsLink;
256
  $links[] = $supportLink;
257
  }
429
  */
430
  function the_champ_facebook_like_rec_enabled(){
431
  global $theChampCounterOptions, $theChampSharingOptions;
432
+ if((the_champ_social_counter_enabled() && ((the_champ_horizontal_counter_enabled() && isset($theChampCounterOptions['horizontal_providers']) && ( in_array('facebook_share', $theChampCounterOptions['horizontal_providers']) || in_array('facebook_like', $theChampCounterOptions['horizontal_providers']) || in_array('facebook_recommend', $theChampCounterOptions['horizontal_providers']))) || (the_champ_vertical_counter_enabled() && isset($theChampCounterOptions['vertical_providers']) && ( in_array('facebook_share', $theChampCounterOptions['vertical_providers']) || in_array('facebook_like', $theChampCounterOptions['vertical_providers']) || in_array('facebook_recommend', $theChampCounterOptions['vertical_providers']))))) || (the_champ_social_sharing_enabled() && ((the_champ_horizontal_sharing_enabled() && isset($theChampSharingOptions['horizontal_re_providers']) && ( in_array('facebook_share', $theChampSharingOptions['horizontal_re_providers']) || in_array('facebook_like', $theChampSharingOptions['horizontal_re_providers']) || in_array('facebook_recommend', $theChampSharingOptions['horizontal_re_providers']))) || (the_champ_vertical_sharing_enabled() && isset($theChampSharingOptions['vertical_re_providers']) && ( in_array('facebook_share', $theChampSharingOptions['vertical_re_providers']) || in_array('facebook_like', $theChampSharingOptions['vertical_re_providers']) || in_array('facebook_recommend', $theChampSharingOptions['vertical_re_providers'])))))){
433
  return true;
434
  }
435
  return false;
439
  * Log errors/exceptions
440
  */
441
  function the_champ_log_error($error){
442
+ error_log(PHP_EOL.'['.date('m/d/Y h:i:s a', time()).'] '.$error, 3, plugin_dir_path(__FILE__).'log.txt');
443
  }
444
 
445
  /**
451
  if($heading){
452
  $html .= "<p style='color: black'><strong>Super Socializer: </strong></p>";
453
  }
454
+ $html .= "<p style ='color:red; margin: 0'>".__($error, 'super-socializer')."</p></div>";
455
  return $html;
456
  }
457
 
473
  */
474
  function the_champ_update_old_blogs($oldConfig){
475
  $optionParts = explode('_', current_filter());
476
+ $option = $optionParts[2].'_'.$optionParts[3].'_'.$optionParts[4];
477
  $newConfig = get_option($option);
478
  if(isset($newConfig['config_multisite']) && $newConfig['config_multisite'] == 1){
479
  $blogs = get_blog_list(0, 'all');
491
  if(is_user_logged_in()){
492
  wp_enqueue_style('the-champ-frontend-css', plugins_url('css/front.css', __FILE__), false, THE_CHAMP_SS_VERSION);
493
  global $theChampFacebookOptions, $theChampLoginOptions, $user_ID;
494
+ $twitterRedirect = urlencode(the_champ_get_valid_url(the_champ_get_http().$_SERVER["HTTP_HOST"].html_entity_decode(esc_url(remove_query_arg(array('linked'))))));
495
  $currentPageUrl = urldecode($twitterRedirect);
496
  ?>
497
  <script>function theChampLoadEvent(e){var t=window.onload;if(typeof window.onload!="function"){window.onload=e}else{window.onload=function(){t();e()}}} var theChampCloseIconPath = '<?php echo plugins_url('images/close.png', __FILE__) ?>';</script>
500
  wp_enqueue_script('the_champ_ss_general_scripts', plugins_url('js/front/social_login/general.js', __FILE__), false, THE_CHAMP_SS_VERSION);
501
  $websiteUrl = esc_url(home_url());
502
  ?>
503
+ <script> var theChampLinkingRedirection = '<?php echo the_champ_get_http().$_SERVER["HTTP_HOST"].html_entity_decode(esc_url(remove_query_arg(array('linked')))) ?>'; var theChampSiteUrl = '<?php echo $websiteUrl ?>'; var theChampVerified = 0; var theChampAjaxUrl = '<?php echo admin_url() ?>admin-ajax.php'; var theChampPopupTitle = ''; var theChampEmailPopup = 0; var theChampEmailAjaxUrl = '<?php echo admin_url() ?>/admin-ajax.php'; var theChampEmailPopupTitle = ''; var theChampEmailPopupErrorMsg = ''; var theChampEmailPopupUniqueId = ''; var theChampEmailPopupVerifyMessage = ''; var theChampCurrentPageUrl = '<?php echo $twitterRedirect; ?>';</script>
504
  <?php
505
  // scripts used for common Social Login functionality
506
  if(the_champ_social_login_enabled()){
513
  <style type="text/css">
514
  #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}
515
  </style>
516
+ <script> var theChampLoadingImgPath = '<?php echo $loadingImagePath ?>'; var theChampAjaxUrl = '<?php echo $theChampAjaxUrl ?>'; var theChampRedirectionUrl = '<?php echo $redirectionUrl ?>'; var theChampRegRedirectionUrl = '<?php echo $regRedirectionUrl ?>', theChampSteamAuthUrl = "<?php echo $theChampSteamLogin ? $theChampSteamLogin->url( esc_url(home_url()).'?SuperSocializerSteamAuth='.$twitterRedirect ) : ''; ?>"; var heateorMSEnabled = 0; var theChampLineAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Line&super_socializer_redirect_to=" + theChampCurrentPageUrl; var theChampLiveAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Live&super_socializer_redirect_to=" + theChampCurrentPageUrl; var theChampTwitterAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Twitter&super_socializer_redirect_to=" + theChampCurrentPageUrl; var theChampFacebookAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Facebook&super_socializer_redirect_to=" + theChampCurrentPageUrl; var theChampGoogleAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Google&super_socializer_redirect_to=" + theChampCurrentPageUrl; var theChampYahooAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Yahoo&super_socializer_redirect_to=" + theChampCurrentPageUrl; var theChampVkontakteAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Vkontakte&super_socializer_redirect_to=" + theChampCurrentPageUrl; var theChampLinkedinAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Linkedin&super_socializer_redirect_to=" + theChampCurrentPageUrl; var theChampInstagramAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Instagram&super_socializer_redirect_to=" + theChampCurrentPageUrl;</script>
517
  <?php
518
  $userVerified = false;
519
  $ajaxUrl = 'admin-ajax.php';
532
  if(isset($_GET['linked'])){
533
  if(intval($_GET['linked']) == 1){
534
  $html .= '<tr>
535
+ <td colspan="2" style="color: green">'.__('Account linked successfully', 'super-socializer').'</td>
536
  </tr>';
537
  }elseif(intval($_GET['linked']) == 0){
538
  $html .= '<tr>
539
+ <td colspan="2" style="color: red">'.__('Account already exists or linked', 'super-socializer').'</td>
540
  </tr>';
541
  }
542
  }
543
  $icons_container = '<div class="the_champ_login_container">';
544
  if(isset($theChampLoginOptions['gdpr_enable'])){
545
+ $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>';
546
  }
547
  if(isset($theChampLoginOptions['gdpr_enable']) && $theChampLoginOptions['gdpr_placement'] == 'above'){
548
  $icons_container .= $gdprOptIn;
563
  }
564
  if(count($existingProviders) > 0){
565
  $html .= '<tr>
566
+ <td colspan="2"><strong>'.$theChampLoginOptions['scl_title'].'</strong><br/>';
567
  foreach($existingProviders as $provider){
568
  $icons_container .= '<li><i ';
569
  // id
570
+ if($provider == 'google'){
571
+ $icons_container .= 'id="theChamp'. ucfirst($provider).'Button" ';
572
  }
573
  // class
574
+ $icons_container .= 'class="theChampLogin theChamp'. ucfirst($provider).'Background theChamp'. ucfirst($provider).'Login" ';
575
+ $icons_container .= 'alt="'.__('Login with', 'super-socializer').' ';
576
  $icons_container .= ucfirst($provider);
577
+ $icons_container .= '" title="'.__('Login with', 'super-socializer').' ';
578
  $icons_container .= ucfirst($provider);
579
  if(current_filter() == 'comment_form_top'){
580
  $icons_container .= '" onclick="theChampCommentFormLogin = true; theChampInitiateLogin(this)" >';
584
  if($provider == 'facebook'){
585
  $icons_container .= '<div class="theChampFacebookLogoContainer">';
586
  }
587
+ $icons_container .= '<div class="theChampLoginSvg theChamp'. ucfirst($provider).'LoginSvg"></div>';
588
  if($provider == 'facebook'){
589
  $icons_container .= '</div>';
590
  }
609
  if($primarySocialNetwork && $primarySocialId){
610
  $current = get_user_meta($user_ID, 'thechamp_current_id', true) == get_user_meta($user_ID, 'thechamp_social_id', true);
611
  $html .= '<tr>
612
+ <td style="padding: 0">'. ($current ? '<strong>'.__('Currently', 'super-socializer').' </strong>' : '').__('Connected with', 'super-socializer').' <strong>'. ucfirst($primarySocialNetwork).'</strong></td><td><input type="button" onclick="theChampUnlink(this, \''.$primarySocialNetwork .'\')" value="'.__('Remove', 'super-socializer').'" /></td></tr>';
613
  }
614
  if(is_array($linkedAccounts) && count($linkedAccounts) > 0){
615
  foreach($linkedAccounts as $key => $value){
616
  $current = get_user_meta($user_ID, 'thechamp_current_id', true) == $value;
617
  $html .= '<tr>
618
+ <td style="padding: 0">'. ($current ? '<strong>'.__('Currently', 'super-socializer').' </strong>' : '').__('Connected with', 'super-socializer').' <strong>'. ucfirst($key).'</strong></td><td><input type="button" onclick="theChampUnlink(this, \''.$key .'\')" value="'.__('Remove', 'super-socializer').'" /></td></tr>';
619
  }
620
  }
621
  $html .= '</tbody>
679
  }
680
  add_action('wp_ajax_the_champ_unlink', 'the_champ_unlink');
681
 
682
+ function the_champ_add_linking_tab(){
683
  if(bp_is_my_profile() && the_champ_social_login_enabled()){
684
  global $theChampLoginOptions;
685
  if(isset($theChampLoginOptions['bp_linking'])){
688
  bp_core_new_subnav_item( array(
689
  'name' => __('Social Account Linking', 'super-socializer'),
690
  'slug' => 'account-linking',
691
+ 'parent_url' => trailingslashit( bp_loggedin_user_domain().'profile'),
692
  'parent_slug' => 'profile',
693
  'screen_function' => 'the_champ_bp_linking',
694
  'position' => 50
704
  }
705
 
706
  // show social account linking when 'Social Account Linking' tab is clicked
707
+ function the_champ_bp_linking(){
708
  add_action('bp_template_content', 'the_champ_bp_account_linking');
709
  bp_core_load_template(apply_filters('bp_core_template_plugin', 'members/single/plugins'));
710
  }
771
  ?>
772
  <br/>
773
  <label for="the_champ_<?php echo $sharingProvider ?>_horizontal_sharing_count">
774
+ <span style="width: 242px; float:left"><?php _e('Starting share count for '.ucfirst(str_replace('_', ' ', $sharingProvider)), 'super-socializer') ?></span>
775
  <input type="text" name="_the_champ_meta[<?php echo $sharingProvider ?>_horizontal_count]" id="the_champ_<?php echo $sharingProvider ?>_horizontal_sharing_count" value="<?php echo isset($sharingMeta[$sharingProvider.'_horizontal_count']) && $sharingMeta[$sharingProvider.'_horizontal_count'] > 0 ? $sharingMeta[$sharingProvider.'_horizontal_count'] : '' ?>" />
776
  </label>
777
  <?php
790
  ?>
791
  <br/>
792
  <label for="the_champ_<?php echo $sharingProvider ?>_vertical_sharing_count">
793
+ <span style="width: 242px; float:left"><?php _e('Starting share count for '.ucfirst(str_replace('_', ' ', $sharingProvider)), 'super-socializer') ?></span>
794
  <input type="text" name="_the_champ_meta[<?php echo $sharingProvider ?>_vertical_count]" id="the_champ_<?php echo $sharingProvider ?>_vertical_sharing_count" value="<?php echo isset($sharingMeta[$sharingProvider.'_vertical_count']) && $sharingMeta[$sharingProvider.'_vertical_count'] > 0 ? $sharingMeta[$sharingProvider.'_vertical_count'] : '' ?>" />
795
  </label>
796
  <?php
803
  ?>
804
  </p>
805
  <?php
806
+ echo '<input type="hidden" name="the_champ_meta_nonce" value="'.wp_create_nonce(__FILE__).'" />';
807
  }
808
 
809
  /**
811
  */
812
  function the_champ_save_sharing_meta($postId){
813
  // make sure data came from our meta box
814
+ if(!isset($_POST['the_champ_meta_nonce']) || !wp_verify_nonce($_POST['the_champ_meta_nonce'], __FILE__)){
815
  return $postId;
816
  }
817
  // check user permissions
839
  /**
840
  * Override sanitize_user function to allow cyrillic usernames
841
  */
842
+ function the_champ_sanitize_user($username, $rawUsername, $strict){
843
  $username = wp_strip_all_tags($rawUsername);
844
  $username = remove_accents($username);
845
  $username = preg_replace('|%([a-fA-F0-9][a-fA-F0-9])|', '', $username);
914
  /**
915
  * Clear share counts cache
916
  */
917
+ function heateor_ss_clear_share_count_cache(){
918
  global $wpdb;
919
  $wpdb->query( "DELETE FROM $wpdb->options WHERE option_name LIKE '_transient_heateor_ss_share_count_%'" );
920
  die;
924
  /**
925
  * Detect myCRED referred signups
926
  */
927
+ function heateor_ss_detect_mycred_referred_signups($userId, $userdata, $profileData ){
928
+ if( function_exists('mycred_detect_referred_signups')){
929
+ mycred_detect_referred_signups($userId );
930
  }
931
  }
932
+ add_action('the_champ_user_successfully_created', 'heateor_ss_detect_mycred_referred_signups', 10, 3 );
933
 
934
  // keep track of the unverified users' login attempts from traditional login form
935
  $heateorSsLoginAttempt = 0;
993
  function heateor_ss_delete_profile_column($value, $columnName, $userId){
994
  if('heateor_ss_delete_profile_data' == $columnName){
995
  global $wpdb;
996
+ $socialUser = $wpdb->get_var($wpdb->prepare('SELECT user_id FROM '.$wpdb->prefix.'usermeta WHERE user_id = %d and meta_key LIKE "thechamp%"', $userId));
997
  if($socialUser > 0){
998
+ return '<a href="javascript:void(0)" title="'.__('Click to delete social profile data', 'super-socializer').'" alt="'.__('Click to delete social profile data', 'super-socializer').'" onclick="javascript:heateorSsDeleteSocialProfile(this, '.$userId .')">Delete</a>';
999
  }
1000
  }
1001
  }
1054
  if(isset($_GET['user_id'])){
1055
  $userId = intval(trim($_GET['user_id']));
1056
  global $wpdb;
1057
+ $wpdb->query($wpdb->prepare('DELETE FROM '.$wpdb->prefix.'usermeta WHERE user_id = %d and meta_key LIKE "thechamp%"', $userId));
1058
  die('done');
1059
  }
1060
  die;
inc/shortcode.php CHANGED
@@ -43,10 +43,10 @@ function the_champ_sharing_shortcode($params){
43
  $postId = 0;
44
  }elseif(isset($_SERVER['QUERY_STRING']) && $_SERVER['QUERY_STRING']){
45
  $targetUrl = html_entity_decode(esc_url(the_champ_get_http().$_SERVER["HTTP_HOST"].$_SERVER["REQUEST_URI"]));
46
- $postId = $post -> ID;
47
- }elseif(get_permalink($post -> ID)){
48
- $targetUrl = get_permalink($post -> ID);
49
- $postId = $post -> ID;
50
  }else{
51
  $targetUrl = html_entity_decode(esc_url(the_champ_get_http().$_SERVER["HTTP_HOST"].$_SERVER["REQUEST_URI"]));
52
  $postId = 0;
@@ -142,10 +142,10 @@ function the_champ_counter_shortcode($params){
142
  $postId = 0;
143
  }elseif(isset($_SERVER['QUERY_STRING']) && $_SERVER['QUERY_STRING']){
144
  $targetUrl = html_entity_decode(esc_url(the_champ_get_http().$_SERVER["HTTP_HOST"] . $_SERVER["REQUEST_URI"]));
145
- $postId = $post -> ID;
146
- }elseif(get_permalink($post -> ID)){
147
- $targetUrl = get_permalink($post -> ID);
148
- $postId = $post -> ID;
149
  }else{
150
  $targetUrl = html_entity_decode(esc_url(the_champ_get_http().$_SERVER["HTTP_HOST"] . $_SERVER["REQUEST_URI"]));
151
  $postId = 0;
@@ -209,8 +209,8 @@ function the_champ_login_shortcode($params){
209
  $html = "<div style='height:80px;width:180px'><div style='width:63px;float:left;'>";
210
  $html .= @get_avatar($user_ID, 60, $default, $alt);
211
  $html .= "</div><div style='float:left; margin-left:10px'>";
212
- $html .= str_replace('-', ' ', $userInfo -> user_login);
213
- //do_action('the_champ_login_widget_hook', $userInfo -> user_login);
214
  $html .= '<br/><a href="' . wp_logout_url(esc_url(home_url())) . '">' .__('Log Out', 'super-socializer') . '</a></div></div>';
215
  }else{
216
  $html = '<div ';
43
  $postId = 0;
44
  }elseif(isset($_SERVER['QUERY_STRING']) && $_SERVER['QUERY_STRING']){
45
  $targetUrl = html_entity_decode(esc_url(the_champ_get_http().$_SERVER["HTTP_HOST"].$_SERVER["REQUEST_URI"]));
46
+ $postId = $post-> ID;
47
+ }elseif(get_permalink($post-> ID)){
48
+ $targetUrl = get_permalink($post-> ID);
49
+ $postId = $post-> ID;
50
  }else{
51
  $targetUrl = html_entity_decode(esc_url(the_champ_get_http().$_SERVER["HTTP_HOST"].$_SERVER["REQUEST_URI"]));
52
  $postId = 0;
142
  $postId = 0;
143
  }elseif(isset($_SERVER['QUERY_STRING']) && $_SERVER['QUERY_STRING']){
144
  $targetUrl = html_entity_decode(esc_url(the_champ_get_http().$_SERVER["HTTP_HOST"] . $_SERVER["REQUEST_URI"]));
145
+ $postId = $post-> ID;
146
+ }elseif(get_permalink($post-> ID)){
147
+ $targetUrl = get_permalink($post-> ID);
148
+ $postId = $post-> ID;
149
  }else{
150
  $targetUrl = html_entity_decode(esc_url(the_champ_get_http().$_SERVER["HTTP_HOST"] . $_SERVER["REQUEST_URI"]));
151
  $postId = 0;
209
  $html = "<div style='height:80px;width:180px'><div style='width:63px;float:left;'>";
210
  $html .= @get_avatar($user_ID, 60, $default, $alt);
211
  $html .= "</div><div style='float:left; margin-left:10px'>";
212
+ $html .= str_replace('-', ' ', $userInfo-> user_login);
213
+ //do_action('the_champ_login_widget_hook', $userInfo-> user_login);
214
  $html .= '<br/><a href="' . wp_logout_url(esc_url(home_url())) . '">' .__('Log Out', 'super-socializer') . '</a></div></div>';
215
  }else{
216
  $html = '<div ';
inc/social_login.php CHANGED
@@ -216,6 +216,21 @@ function the_champ_create_user($profileData, $verification = false){
216
  'user_url' => $profileData['provider'] != 'facebook' && isset($profileData['link']) && $profileData['link'] != '' ? $profileData['link'] : '',
217
  'role' => get_option('default_role')
218
  );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
219
  if(heateor_ss_is_plugin_active('theme-my-login/theme-my-login.php')){
220
  $tmlOptions = get_option('theme_my_login');
221
  $tmlLoginType = isset($tmlOptions['login_type']) ? $tmlOptions['login_type'] : '';
@@ -461,7 +476,7 @@ function the_champ_sanitize_profile_data($profileData, $provider){
461
  $temp['first_name'] = isset($profileData->givenName) ? $profileData->givenName : '';
462
  $temp['last_name'] = isset($profileData->familyName) ? $profileData->familyName : '';
463
  $temp['bio'] = '';
464
- $temp['link'] = isset($profileData->link) ? $profileData->link : '';
465
  $temp['large_avatar'] = isset($profileData->picture) && heateor_ss_validate_url($profileData->picture) !== false ? trim($profileData->picture) : '';
466
  $temp['avatar'] = $temp['large_avatar'] != '' ? $temp['large_avatar'] . '?sz=50' : '';
467
  }elseif($provider == 'vkontakte'){
@@ -492,14 +507,14 @@ function the_champ_sanitize_profile_data($profileData, $provider){
492
  $temp['bio'] = '';
493
  $temp['username'] = $profileData->displayName;
494
  $temp['link'] = '';
495
- $temp['avatar'] = isset($profileData ->pictureUrl) && heateor_ss_validate_url($profileData ->pictureUrl) !== false ? trim($profileData ->pictureUrl) : '';
496
  $temp['name'] = $profileData->displayName;
497
  $temp['first_name'] = $profileData->displayName;
498
  $temp['last_name'] = '';
499
  $temp['id'] = isset($profileData->userId) ? sanitize_text_field($profileData->userId) : '';
500
  $temp['large_avatar'] = '';
501
  }elseif($provider == 'microsoft'){
502
- $temp['email'] = $profileData->emails->account;
503
  $temp['bio'] = '';
504
  $temp['username'] = '';
505
  $temp['link'] = '';
@@ -509,6 +524,36 @@ function the_champ_sanitize_profile_data($profileData, $provider){
509
  $temp['last_name'] = isset($profileData->last_name) ? sanitize_text_field($profileData->last_name) : '';
510
  $temp['id'] = isset($profileData->id) ? sanitize_text_field($profileData->id) : '';
511
  $temp['large_avatar'] = '';
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
512
  }
513
  if($provider != 'steam'){
514
  $temp['avatar'] = str_replace('http://', '//', $temp['avatar']);
216
  'user_url' => $profileData['provider'] != 'facebook' && isset($profileData['link']) && $profileData['link'] != '' ? $profileData['link'] : '',
217
  'role' => get_option('default_role')
218
  );
219
+ if(heateor_ss_is_plugin_active('buddypress/bp-loader.php')){
220
+ $userdata = array(
221
+ 'user_login' => $username,
222
+ 'user_pass' => $password,
223
+ 'user_nicename' => $username,
224
+ 'user_email' => $profileData['email'],
225
+ 'display_name' => $profileData['name'],
226
+ 'nickname' => $username,
227
+ 'first_name' => $firstName,
228
+ 'last_name' => $lastName,
229
+ 'description' => isset($profileData['bio']) && $profileData['bio'] != '' ? $profileData['bio'] : '',
230
+ 'user_url' => $profileData['provider'] != 'facebook' && isset($profileData['link']) && $profileData['link'] != '' ? $profileData['link'] : '',
231
+ 'role' => get_option('default_role')
232
+ );
233
+ }
234
  if(heateor_ss_is_plugin_active('theme-my-login/theme-my-login.php')){
235
  $tmlOptions = get_option('theme_my_login');
236
  $tmlLoginType = isset($tmlOptions['login_type']) ? $tmlOptions['login_type'] : '';
476
  $temp['first_name'] = isset($profileData->givenName) ? $profileData->givenName : '';
477
  $temp['last_name'] = isset($profileData->familyName) ? $profileData->familyName : '';
478
  $temp['bio'] = '';
479
+ $temp['link'] = isset($profileData->link) && heateor_ss_validate_url(trim($profileData->link)) !== false ? trim($profileData->link) : '';
480
  $temp['large_avatar'] = isset($profileData->picture) && heateor_ss_validate_url($profileData->picture) !== false ? trim($profileData->picture) : '';
481
  $temp['avatar'] = $temp['large_avatar'] != '' ? $temp['large_avatar'] . '?sz=50' : '';
482
  }elseif($provider == 'vkontakte'){
507
  $temp['bio'] = '';
508
  $temp['username'] = $profileData->displayName;
509
  $temp['link'] = '';
510
+ $temp['avatar'] = isset($profileData->pictureUrl) && heateor_ss_validate_url($profileData->pictureUrl) !== false ? trim($profileData->pictureUrl) : '';
511
  $temp['name'] = $profileData->displayName;
512
  $temp['first_name'] = $profileData->displayName;
513
  $temp['last_name'] = '';
514
  $temp['id'] = isset($profileData->userId) ? sanitize_text_field($profileData->userId) : '';
515
  $temp['large_avatar'] = '';
516
  }elseif($provider == 'microsoft'){
517
+ $temp['email'] = isset($profileData->emails->account) ? sanitize_email(trim($profileData->emails->account)) : '';
518
  $temp['bio'] = '';
519
  $temp['username'] = '';
520
  $temp['link'] = '';
524
  $temp['last_name'] = isset($profileData->last_name) ? sanitize_text_field($profileData->last_name) : '';
525
  $temp['id'] = isset($profileData->id) ? sanitize_text_field($profileData->id) : '';
526
  $temp['large_avatar'] = '';
527
+ }elseif($provider == 'wordpress'){
528
+ if(isset($profileData->email_verified) && $profileData->email_verified == 1 && !empty($profileData->email)){
529
+ $temp['email'] = sanitize_email(trim($profileData->email));
530
+ }else{
531
+ $temp['email'] = '';
532
+ }
533
+ $temp['bio'] = '';
534
+ $temp['username'] = isset($profileData->username) ? sanitize_text_field($profileData->username) : '';
535
+ $temp['link'] = isset($profileData->primary_blog_url) && heateor_ss_validate_url($profileData->primary_blog_url) !== false ? trim($profileData->primary_blog_url) : '';
536
+ $temp['avatar'] = isset($profileData->avatar_URL) && heateor_ss_validate_url($profileData->avatar_URL) !== false ? trim($profileData->avatar_URL) : '';
537
+ $temp['name'] = '';
538
+ $temp['first_name'] = '';
539
+ $temp['last_name'] = '';
540
+ $temp['id'] = isset($profileData->ID) ? sanitize_text_field($profileData->ID) : '';
541
+ $temp['large_avatar'] = '';
542
+ }elseif($provider == 'yahoo'){
543
+ if(isset($profileData->email_verified) && $profileData->email_verified == 1 && !empty($profileData->email)){
544
+ $temp['email'] = sanitize_email(trim($profileData->email));
545
+ }else{
546
+ $temp['email'] = '';
547
+ }
548
+ $temp['bio'] = '';
549
+ $temp['username'] = isset($profileData->nickname) ? sanitize_text_field($profileData->nickname) : '';
550
+ $temp['link'] = '';
551
+ $temp['name'] = isset($profileData->name) ? sanitize_text_field($profileData->name) : '';
552
+ $temp['first_name'] = isset($profileData->given_name) ? sanitize_text_field($profileData->given_name) : '';
553
+ $temp['last_name'] = isset($profileData->family_name) ? sanitize_text_field($profileData->family_name) : '';
554
+ $temp['id'] = isset($profileData->sub) ? sanitize_text_field($profileData->sub) : '';
555
+ $temp['large_avatar'] = isset($profileData->profile_images->image192) && heateor_ss_validate_url($profileData->profile_images->image192) !== false ? trim($profileData->profile_images->image192) : '';
556
+ $temp['avatar'] = isset($profileData->profile_images->image64) && heateor_ss_validate_url($profileData->profile_images->image64) !== false ? trim($profileData->profile_images->image64) : '';
557
  }
558
  if($provider != 'steam'){
559
  $temp['avatar'] = str_replace('http://', '//', $temp['avatar']);
inc/social_sharing.php CHANGED
@@ -575,7 +575,7 @@ function the_champ_render_sharing($content){
575
  if(isset($theChampCounterOptions['enable'])){
576
  //counter interface
577
  if(isset($theChampCounterOptions['hor_enable']) && !(isset($sharingMeta['counter']) && $sharingMeta['counter'] == 1 && (!is_front_page() || (is_front_page() && 'page' == get_option('show_on_front'))) )){
578
- $postId = $post -> ID;
579
  if($customUrl != ''){
580
  $counterPostUrl = $customUrl;
581
  }elseif($counterBpActivity){
@@ -614,7 +614,7 @@ function the_champ_render_sharing($content){
614
  echo $horizontalDiv;
615
  }
616
  // show horizontal counter
617
- if((isset($theChampCounterOptions['home']) && is_front_page()) || (isset( $theChampCounterOptions['category']) && is_category()) || (isset( $theChampCounterOptions['archive']) && is_archive()) || ( isset( $theChampCounterOptions['post'] ) && is_single() && isset($post -> post_type) && $post -> post_type == 'post' ) || ( isset( $theChampCounterOptions['page'] ) && is_page() && isset($post -> post_type) && $post -> post_type == 'page' ) || ( isset( $theChampCounterOptions['excerpt'] ) && (is_home() || current_filter() == 'the_excerpt') ) || ( isset( $theChampCounterOptions['bb_reply'] ) && current_filter() == 'bbp_get_reply_content' ) || ( isset( $theChampCounterOptions['bb_forum'] ) && (isset( $theChampCounterOptions['top'] ) && current_filter() == 'bbp_template_before_single_forum' || isset( $theChampCounterOptions['bottom'] ) && current_filter() == 'bbp_template_after_single_forum' )) || ( isset( $theChampCounterOptions['bb_topic'] ) && (isset( $theChampCounterOptions['top'] ) && in_array(current_filter(), array('bbp_template_before_single_topic', 'bbp_template_before_lead_topic')) || isset( $theChampCounterOptions['bottom'] ) && in_array(current_filter(), array('bbp_template_after_single_topic', 'bbp_template_after_lead_topic')) )) || (isset( $theChampCounterOptions['woocom_shop'] ) && current_filter() == 'woocommerce_after_shop_loop_item') || (isset( $theChampCounterOptions['woocom_product'] ) && current_filter() == 'woocommerce_share') || (isset( $theChampCounterOptions['woocom_thankyou'] ) && current_filter() == 'woocommerce_thankyou') || (current_filter() == 'bp_before_group_header' && isset($theChampCounterOptions['bp_group'])) ) {
618
  if( in_array( current_filter(), array('bbp_template_before_single_topic', 'bbp_template_before_lead_topic', 'bbp_template_before_single_forum', 'bbp_template_after_single_topic', 'bbp_template_after_lead_topic', 'bbp_template_after_single_forum','woocommerce_after_shop_loop_item', 'woocommerce_share', 'woocommerce_thankyou', 'bp_before_group_header') ) ){
619
  echo '<div style="clear:both"></div>'.$horizontalDiv.'<div style="clear:both"></div>';
620
  }else{
@@ -630,7 +630,7 @@ function the_champ_render_sharing($content){
630
  }
631
  } elseif( count( $post_types ) ) {
632
  foreach ( $post_types as $post_type ) {
633
- if( isset( $theChampCounterOptions[$post_type] ) && ( is_single() || is_page() ) && isset($post -> post_type) && $post -> post_type == $post_type ) {
634
  if(isset($theChampCounterOptions['top'] ) && isset($theChampCounterOptions['bottom'])){
635
  $content = $horizontalDiv.'<br/>'.$content.'<br/>'.$horizontalDiv;
636
  }else{
@@ -645,7 +645,7 @@ function the_champ_render_sharing($content){
645
  }
646
  }
647
  if(isset($theChampCounterOptions['vertical_enable']) && !the_champ_is_amp_page() && !(isset($sharingMeta['vertical_counter']) && $sharingMeta['vertical_counter'] == 1 && (!is_front_page() || (is_front_page() && 'page' == get_option('show_on_front'))) )){
648
- $postId = $post -> ID;
649
  if($customUrl != ''){
650
  $counterPostUrl = $customUrl;
651
  }elseif(isset($theChampCounterOptions['vertical_target_url'])){
@@ -676,7 +676,7 @@ function the_champ_render_sharing($content){
676
  $offset = (isset($theChampCounterOptions['alignment']) && $theChampCounterOptions['alignment'] != '' && isset($theChampCounterOptions[$theChampCounterOptions['alignment'].'_offset']) ? $theChampCounterOptions['alignment'].': '. ( $theChampCounterOptions[$theChampCounterOptions['alignment'].'_offset'] == '' ? 0 : $theChampCounterOptions[$theChampCounterOptions['alignment'].'_offset'] ) .'px;' : '').(isset($theChampCounterOptions['top_offset']) ? 'top: '. ( $theChampCounterOptions['top_offset'] == '' ? 0 : $theChampCounterOptions['top_offset'] ) .'px;' : '');
677
  $verticalDiv = "<div class='the_champ_counter_container the_champ_vertical_counter" . ( isset( $theChampCounterOptions['hide_mobile_likeb'] ) ? ' the_champ_hide_sharing' : '' ) . "' style='". $offset . (isset($theChampCounterOptions['vertical_bg']) && $theChampCounterOptions['vertical_bg'] != '' ? 'background-color: '.$theChampCounterOptions['vertical_bg'] . ';' : '-webkit-box-shadow:none;box-shadow:none;') . "'>".$sharingDiv."</div>";
678
  // show vertical counter
679
- if((isset($theChampCounterOptions['vertical_home']) && is_front_page()) || (isset( $theChampCounterOptions['vertical_category']) && is_category()) || (isset( $theChampCounterOptions['vertical_archive']) && is_archive()) || ( isset( $theChampCounterOptions['vertical_post'] ) && is_single() && isset($post -> post_type) && $post -> post_type == 'post' ) || ( isset( $theChampCounterOptions['vertical_page'] ) && is_page() && isset($post -> post_type) && $post -> post_type == 'page' ) || ( isset( $theChampCounterOptions['vertical_excerpt'] ) && (is_home() || current_filter() == 'the_excerpt') ) || ( isset( $theChampCounterOptions['vertical_bb_forum'] ) && current_filter() == 'bbp_template_before_single_forum') || ( isset( $theChampCounterOptions['vertical_bb_topic'] ) && in_array(current_filter(), array('bbp_template_before_single_topic', 'bbp_template_before_lead_topic'))) || (current_filter() == 'bp_before_group_header' && isset($theChampCounterOptions['vertical_bp_group'])) ){
680
  if( in_array( current_filter(), array('bbp_template_before_single_topic', 'bbp_template_before_lead_topic', 'bbp_template_before_single_forum', 'bp_before_group_header') ) ){
681
  echo $verticalDiv;
682
  }else{
@@ -706,7 +706,7 @@ function the_champ_render_sharing($content){
706
  }
707
  } elseif( count( $post_types ) ) {
708
  foreach ( $post_types as $post_type ) {
709
- if( isset( $theChampCounterOptions['vertical_' . $post_type] ) && ( is_single() || is_page() ) && isset($post -> post_type) && $post -> post_type == $post_type ) {
710
  $content = $content . $verticalDiv;
711
  }
712
  }
@@ -771,7 +771,7 @@ function the_champ_render_sharing($content){
771
  echo $horizontalDiv;
772
  }
773
  // show horizontal sharing
774
- if((isset($theChampSharingOptions['home']) && is_front_page()) || (isset( $theChampSharingOptions['category']) && is_category()) || (isset( $theChampSharingOptions['archive']) && is_archive()) || ( isset( $theChampSharingOptions['post'] ) && is_single() && isset($post -> post_type) && $post -> post_type == 'post' ) || ( isset( $theChampSharingOptions['page'] ) && is_page() && isset($post -> post_type) && $post -> post_type == 'page' ) || ( isset( $theChampSharingOptions['excerpt'] ) && (is_home() || current_filter() == 'the_excerpt') ) || ( isset( $theChampSharingOptions['bb_reply'] ) && current_filter() == 'bbp_get_reply_content' ) || ( isset( $theChampSharingOptions['bb_forum'] ) && (isset( $theChampSharingOptions['top'] ) && current_filter() == 'bbp_template_before_single_forum' || isset( $theChampSharingOptions['bottom'] ) && current_filter() == 'bbp_template_after_single_forum' )) || ( isset( $theChampSharingOptions['bb_topic'] ) && (isset( $theChampSharingOptions['top'] ) && in_array(current_filter(), array('bbp_template_before_single_topic', 'bbp_template_before_lead_topic')) || isset( $theChampSharingOptions['bottom'] ) && in_array(current_filter(), array('bbp_template_after_single_topic', 'bbp_template_after_lead_topic')) )) || (isset( $theChampSharingOptions['woocom_shop'] ) && current_filter() == 'woocommerce_after_shop_loop_item') || (isset( $theChampSharingOptions['woocom_product'] ) && current_filter() == 'woocommerce_share') || (isset( $theChampSharingOptions['woocom_thankyou'] ) && current_filter() == 'woocommerce_thankyou') || (current_filter() == 'bp_before_group_header' && isset($theChampSharingOptions['bp_group'])) ) {
775
  if( in_array( current_filter(), array('bbp_template_before_single_topic', 'bbp_template_before_lead_topic', 'bbp_template_before_single_forum', 'bbp_template_after_single_topic', 'bbp_template_after_lead_topic', 'bbp_template_after_single_forum', 'woocommerce_after_shop_loop_item', 'woocommerce_share', 'woocommerce_thankyou', 'bp_before_group_header') ) ){
776
  echo '<div style="clear:both"></div>'.$horizontalDiv.'<div style="clear:both"></div>';
777
  }else{
@@ -787,7 +787,7 @@ function the_champ_render_sharing($content){
787
  }
788
  } elseif( count( $post_types ) ) {
789
  foreach ( $post_types as $post_type ) {
790
- if( isset( $theChampSharingOptions[$post_type] ) && ( is_single() || is_page() ) && isset($post -> post_type) && $post -> post_type == $post_type ) {
791
  if(isset($theChampSharingOptions['top'] ) && isset($theChampSharingOptions['bottom'])){
792
  $content = $horizontalDiv.'<br/>'.$content.'<br/>'.$horizontalDiv;
793
  }else{
@@ -802,7 +802,7 @@ function the_champ_render_sharing($content){
802
  }
803
  }
804
  if(isset($theChampSharingOptions['vertical_enable']) && !the_champ_is_amp_page() && !(isset($sharingMeta['vertical_sharing']) && $sharingMeta['vertical_sharing'] == 1 && (!is_front_page() || (is_front_page() && 'page' == get_option('show_on_front'))) )){
805
- $postId = $post -> ID;
806
  if($customUrl != ''){
807
  $postUrl = $customUrl;
808
  $shareCountUrl = $postUrl;
@@ -847,7 +847,7 @@ function the_champ_render_sharing($content){
847
  $offset = (isset($theChampSharingOptions['alignment']) && $theChampSharingOptions['alignment'] != '' && isset($theChampSharingOptions[$theChampSharingOptions['alignment'].'_offset']) && $theChampSharingOptions[$theChampSharingOptions['alignment'].'_offset'] != '' ? $theChampSharingOptions['alignment'].': '.$theChampSharingOptions[$theChampSharingOptions['alignment'].'_offset'].'px;' : '').(isset($theChampSharingOptions['top_offset']) && $theChampSharingOptions['top_offset'] != '' ? 'top: '.$theChampSharingOptions['top_offset'].'px;' : '');
848
  $verticalDiv = "<div class='the_champ_sharing_container the_champ_vertical_sharing" . ( isset( $theChampSharingOptions['hide_mobile_sharing'] ) ? ' the_champ_hide_sharing' : '' ) . ( isset( $theChampSharingOptions['bottom_mobile_sharing'] ) ? ' the_champ_bottom_sharing' : '' ) . "' style='width:" . ($theChampSharingOptions['vertical_sharing_size'] + 4) . "px;" . $offset . (isset($theChampSharingOptions['vertical_bg']) && $theChampSharingOptions['vertical_bg'] != '' ? 'background-color: '.$theChampSharingOptions['vertical_bg'] : '-webkit-box-shadow:none;box-shadow:none;') . "' " . ( the_champ_is_amp_page() ? '' : 'super-socializer-data-href="' . (isset($shareCountUrl) && $shareCountUrl ? $shareCountUrl : $postUrl) . '"' ) . ( heateor_ss_get_cached_share_count( $shareCountTransientId ) === false || the_champ_is_amp_page() ? "" : 'super-socializer-no-counts="1"' ) . ">".$sharingDiv."</div>";
849
  // show vertical sharing
850
- if((isset($theChampSharingOptions['vertical_home']) && is_front_page()) || (isset( $theChampSharingOptions['vertical_category']) && is_category()) || (isset( $theChampSharingOptions['vertical_archive']) && is_archive()) || ( isset( $theChampSharingOptions['vertical_post'] ) && is_single() && isset($post -> post_type) && $post -> post_type == 'post' ) || ( isset( $theChampSharingOptions['vertical_page'] ) && is_page() && isset($post -> post_type) && $post -> post_type == 'page' ) || ( isset( $theChampSharingOptions['vertical_excerpt'] ) && (is_home() || current_filter() == 'the_excerpt') ) || ( isset( $theChampSharingOptions['vertical_bb_forum'] ) && current_filter() == 'bbp_template_before_single_forum') || ( isset( $theChampSharingOptions['vertical_bb_topic'] ) && in_array(current_filter(), array('bbp_template_before_single_topic', 'bbp_template_before_lead_topic'))) || (current_filter() == 'bp_before_group_header' && isset($theChampSharingOptions['vertical_bp_group']))) {
851
  if( in_array( current_filter(), array('bbp_template_before_single_topic', 'bbp_template_before_lead_topic', 'bbp_template_before_single_forum', 'bp_before_group_header') ) ){
852
  echo $verticalDiv;
853
  }else{
@@ -880,7 +880,7 @@ function the_champ_render_sharing($content){
880
  }
881
  } elseif( count( $post_types ) ) {
882
  foreach ( $post_types as $post_type ) {
883
- if( isset( $theChampSharingOptions['vertical_' . $post_type] ) && ( is_single() || is_page() ) && isset($post -> post_type) && $post -> post_type == $post_type ) {
884
  $content = $content . $verticalDiv;
885
  }
886
  }
@@ -1044,23 +1044,23 @@ function the_champ_sharing_count(){
1044
  }
1045
  break;
1046
  case 'twitter':
1047
- if(!empty($body -> count)){
1048
- $shareCountTransient['twitter'] = $body -> count;
1049
  }else{
1050
  $shareCountTransient['twitter'] = 0;
1051
  }
1052
  break;
1053
  case 'linkedin':
1054
- if(!empty($body -> count)){
1055
- $shareCountTransient['linkedin'] = $body -> count;
1056
  }else{
1057
  $shareCountTransient['linkedin'] = 0;
1058
  }
1059
  break;
1060
  case 'reddit':
1061
  $shareCountTransient['reddit'] = 0;
1062
- if(!empty($body -> data -> children)){
1063
- $children = $body -> data -> children;
1064
  $ups = $downs = 0;
1065
  foreach($children as $child){
1066
  $ups += (int) $child->data->ups;
@@ -1074,15 +1074,15 @@ function the_champ_sharing_count(){
1074
  }
1075
  break;
1076
  case 'pinterest':
1077
- if(!empty($body -> count)){
1078
- $shareCountTransient['pinterest'] = $body -> count;
1079
  }else{
1080
  $shareCountTransient['pinterest'] = 0;
1081
  }
1082
  break;
1083
  case 'buffer':
1084
- if(!empty($body -> shares)){
1085
- $shareCountTransient['buffer'] = $body -> shares;
1086
  }else{
1087
  $shareCountTransient['buffer'] = 0;
1088
  }
575
  if(isset($theChampCounterOptions['enable'])){
576
  //counter interface
577
  if(isset($theChampCounterOptions['hor_enable']) && !(isset($sharingMeta['counter']) && $sharingMeta['counter'] == 1 && (!is_front_page() || (is_front_page() && 'page' == get_option('show_on_front'))) )){
578
+ $postId = $post-> ID;
579
  if($customUrl != ''){
580
  $counterPostUrl = $customUrl;
581
  }elseif($counterBpActivity){
614
  echo $horizontalDiv;
615
  }
616
  // show horizontal counter
617
+ if((isset($theChampCounterOptions['home']) && is_front_page()) || (isset( $theChampCounterOptions['category']) && is_category()) || (isset( $theChampCounterOptions['archive']) && is_archive()) || ( isset( $theChampCounterOptions['post'] ) && is_single() && isset($post-> post_type) && $post-> post_type == 'post' ) || ( isset( $theChampCounterOptions['page'] ) && is_page() && isset($post-> post_type) && $post-> post_type == 'page' ) || ( isset( $theChampCounterOptions['excerpt'] ) && (is_home() || current_filter() == 'the_excerpt') ) || ( isset( $theChampCounterOptions['bb_reply'] ) && current_filter() == 'bbp_get_reply_content' ) || ( isset( $theChampCounterOptions['bb_forum'] ) && (isset( $theChampCounterOptions['top'] ) && current_filter() == 'bbp_template_before_single_forum' || isset( $theChampCounterOptions['bottom'] ) && current_filter() == 'bbp_template_after_single_forum' )) || ( isset( $theChampCounterOptions['bb_topic'] ) && (isset( $theChampCounterOptions['top'] ) && in_array(current_filter(), array('bbp_template_before_single_topic', 'bbp_template_before_lead_topic')) || isset( $theChampCounterOptions['bottom'] ) && in_array(current_filter(), array('bbp_template_after_single_topic', 'bbp_template_after_lead_topic')) )) || (isset( $theChampCounterOptions['woocom_shop'] ) && current_filter() == 'woocommerce_after_shop_loop_item') || (isset( $theChampCounterOptions['woocom_product'] ) && current_filter() == 'woocommerce_share') || (isset( $theChampCounterOptions['woocom_thankyou'] ) && current_filter() == 'woocommerce_thankyou') || (current_filter() == 'bp_before_group_header' && isset($theChampCounterOptions['bp_group'])) ) {
618
  if( in_array( current_filter(), array('bbp_template_before_single_topic', 'bbp_template_before_lead_topic', 'bbp_template_before_single_forum', 'bbp_template_after_single_topic', 'bbp_template_after_lead_topic', 'bbp_template_after_single_forum','woocommerce_after_shop_loop_item', 'woocommerce_share', 'woocommerce_thankyou', 'bp_before_group_header') ) ){
619
  echo '<div style="clear:both"></div>'.$horizontalDiv.'<div style="clear:both"></div>';
620
  }else{
630
  }
631
  } elseif( count( $post_types ) ) {
632
  foreach ( $post_types as $post_type ) {
633
+ if( isset( $theChampCounterOptions[$post_type] ) && ( is_single() || is_page() ) && isset($post-> post_type) && $post-> post_type == $post_type ) {
634
  if(isset($theChampCounterOptions['top'] ) && isset($theChampCounterOptions['bottom'])){
635
  $content = $horizontalDiv.'<br/>'.$content.'<br/>'.$horizontalDiv;
636
  }else{
645
  }
646
  }
647
  if(isset($theChampCounterOptions['vertical_enable']) && !the_champ_is_amp_page() && !(isset($sharingMeta['vertical_counter']) && $sharingMeta['vertical_counter'] == 1 && (!is_front_page() || (is_front_page() && 'page' == get_option('show_on_front'))) )){
648
+ $postId = $post-> ID;
649
  if($customUrl != ''){
650
  $counterPostUrl = $customUrl;
651
  }elseif(isset($theChampCounterOptions['vertical_target_url'])){
676
  $offset = (isset($theChampCounterOptions['alignment']) && $theChampCounterOptions['alignment'] != '' && isset($theChampCounterOptions[$theChampCounterOptions['alignment'].'_offset']) ? $theChampCounterOptions['alignment'].': '. ( $theChampCounterOptions[$theChampCounterOptions['alignment'].'_offset'] == '' ? 0 : $theChampCounterOptions[$theChampCounterOptions['alignment'].'_offset'] ) .'px;' : '').(isset($theChampCounterOptions['top_offset']) ? 'top: '. ( $theChampCounterOptions['top_offset'] == '' ? 0 : $theChampCounterOptions['top_offset'] ) .'px;' : '');
677
  $verticalDiv = "<div class='the_champ_counter_container the_champ_vertical_counter" . ( isset( $theChampCounterOptions['hide_mobile_likeb'] ) ? ' the_champ_hide_sharing' : '' ) . "' style='". $offset . (isset($theChampCounterOptions['vertical_bg']) && $theChampCounterOptions['vertical_bg'] != '' ? 'background-color: '.$theChampCounterOptions['vertical_bg'] . ';' : '-webkit-box-shadow:none;box-shadow:none;') . "'>".$sharingDiv."</div>";
678
  // show vertical counter
679
+ if((isset($theChampCounterOptions['vertical_home']) && is_front_page()) || (isset( $theChampCounterOptions['vertical_category']) && is_category()) || (isset( $theChampCounterOptions['vertical_archive']) && is_archive()) || ( isset( $theChampCounterOptions['vertical_post'] ) && is_single() && isset($post-> post_type) && $post-> post_type == 'post' ) || ( isset( $theChampCounterOptions['vertical_page'] ) && is_page() && isset($post-> post_type) && $post-> post_type == 'page' ) || ( isset( $theChampCounterOptions['vertical_excerpt'] ) && (is_home() || current_filter() == 'the_excerpt') ) || ( isset( $theChampCounterOptions['vertical_bb_forum'] ) && current_filter() == 'bbp_template_before_single_forum') || ( isset( $theChampCounterOptions['vertical_bb_topic'] ) && in_array(current_filter(), array('bbp_template_before_single_topic', 'bbp_template_before_lead_topic'))) || (current_filter() == 'bp_before_group_header' && isset($theChampCounterOptions['vertical_bp_group'])) ){
680
  if( in_array( current_filter(), array('bbp_template_before_single_topic', 'bbp_template_before_lead_topic', 'bbp_template_before_single_forum', 'bp_before_group_header') ) ){
681
  echo $verticalDiv;
682
  }else{
706
  }
707
  } elseif( count( $post_types ) ) {
708
  foreach ( $post_types as $post_type ) {
709
+ if( isset( $theChampCounterOptions['vertical_' . $post_type] ) && ( is_single() || is_page() ) && isset($post-> post_type) && $post-> post_type == $post_type ) {
710
  $content = $content . $verticalDiv;
711
  }
712
  }
771
  echo $horizontalDiv;
772
  }
773
  // show horizontal sharing
774
+ if((isset($theChampSharingOptions['home']) && is_front_page()) || (isset( $theChampSharingOptions['category']) && is_category()) || (isset( $theChampSharingOptions['archive']) && is_archive()) || ( isset( $theChampSharingOptions['post'] ) && is_single() && isset($post-> post_type) && $post-> post_type == 'post' ) || ( isset( $theChampSharingOptions['page'] ) && is_page() && isset($post-> post_type) && $post-> post_type == 'page' ) || ( isset( $theChampSharingOptions['excerpt'] ) && (is_home() || current_filter() == 'the_excerpt') ) || ( isset( $theChampSharingOptions['bb_reply'] ) && current_filter() == 'bbp_get_reply_content' ) || ( isset( $theChampSharingOptions['bb_forum'] ) && (isset( $theChampSharingOptions['top'] ) && current_filter() == 'bbp_template_before_single_forum' || isset( $theChampSharingOptions['bottom'] ) && current_filter() == 'bbp_template_after_single_forum' )) || ( isset( $theChampSharingOptions['bb_topic'] ) && (isset( $theChampSharingOptions['top'] ) && in_array(current_filter(), array('bbp_template_before_single_topic', 'bbp_template_before_lead_topic')) || isset( $theChampSharingOptions['bottom'] ) && in_array(current_filter(), array('bbp_template_after_single_topic', 'bbp_template_after_lead_topic')) )) || (isset( $theChampSharingOptions['woocom_shop'] ) && current_filter() == 'woocommerce_after_shop_loop_item') || (isset( $theChampSharingOptions['woocom_product'] ) && current_filter() == 'woocommerce_share') || (isset( $theChampSharingOptions['woocom_thankyou'] ) && current_filter() == 'woocommerce_thankyou') || (current_filter() == 'bp_before_group_header' && isset($theChampSharingOptions['bp_group'])) ) {
775
  if( in_array( current_filter(), array('bbp_template_before_single_topic', 'bbp_template_before_lead_topic', 'bbp_template_before_single_forum', 'bbp_template_after_single_topic', 'bbp_template_after_lead_topic', 'bbp_template_after_single_forum', 'woocommerce_after_shop_loop_item', 'woocommerce_share', 'woocommerce_thankyou', 'bp_before_group_header') ) ){
776
  echo '<div style="clear:both"></div>'.$horizontalDiv.'<div style="clear:both"></div>';
777
  }else{
787
  }
788
  } elseif( count( $post_types ) ) {
789
  foreach ( $post_types as $post_type ) {
790
+ if( isset( $theChampSharingOptions[$post_type] ) && ( is_single() || is_page() ) && isset($post-> post_type) && $post-> post_type == $post_type ) {
791
  if(isset($theChampSharingOptions['top'] ) && isset($theChampSharingOptions['bottom'])){
792
  $content = $horizontalDiv.'<br/>'.$content.'<br/>'.$horizontalDiv;
793
  }else{
802
  }
803
  }
804
  if(isset($theChampSharingOptions['vertical_enable']) && !the_champ_is_amp_page() && !(isset($sharingMeta['vertical_sharing']) && $sharingMeta['vertical_sharing'] == 1 && (!is_front_page() || (is_front_page() && 'page' == get_option('show_on_front'))) )){
805
+ $postId = $post-> ID;
806
  if($customUrl != ''){
807
  $postUrl = $customUrl;
808
  $shareCountUrl = $postUrl;
847
  $offset = (isset($theChampSharingOptions['alignment']) && $theChampSharingOptions['alignment'] != '' && isset($theChampSharingOptions[$theChampSharingOptions['alignment'].'_offset']) && $theChampSharingOptions[$theChampSharingOptions['alignment'].'_offset'] != '' ? $theChampSharingOptions['alignment'].': '.$theChampSharingOptions[$theChampSharingOptions['alignment'].'_offset'].'px;' : '').(isset($theChampSharingOptions['top_offset']) && $theChampSharingOptions['top_offset'] != '' ? 'top: '.$theChampSharingOptions['top_offset'].'px;' : '');
848
  $verticalDiv = "<div class='the_champ_sharing_container the_champ_vertical_sharing" . ( isset( $theChampSharingOptions['hide_mobile_sharing'] ) ? ' the_champ_hide_sharing' : '' ) . ( isset( $theChampSharingOptions['bottom_mobile_sharing'] ) ? ' the_champ_bottom_sharing' : '' ) . "' style='width:" . ($theChampSharingOptions['vertical_sharing_size'] + 4) . "px;" . $offset . (isset($theChampSharingOptions['vertical_bg']) && $theChampSharingOptions['vertical_bg'] != '' ? 'background-color: '.$theChampSharingOptions['vertical_bg'] : '-webkit-box-shadow:none;box-shadow:none;') . "' " . ( the_champ_is_amp_page() ? '' : 'super-socializer-data-href="' . (isset($shareCountUrl) && $shareCountUrl ? $shareCountUrl : $postUrl) . '"' ) . ( heateor_ss_get_cached_share_count( $shareCountTransientId ) === false || the_champ_is_amp_page() ? "" : 'super-socializer-no-counts="1"' ) . ">".$sharingDiv."</div>";
849
  // show vertical sharing
850
+ if((isset($theChampSharingOptions['vertical_home']) && is_front_page()) || (isset( $theChampSharingOptions['vertical_category']) && is_category()) || (isset( $theChampSharingOptions['vertical_archive']) && is_archive()) || ( isset( $theChampSharingOptions['vertical_post'] ) && is_single() && isset($post-> post_type) && $post-> post_type == 'post' ) || ( isset( $theChampSharingOptions['vertical_page'] ) && is_page() && isset($post-> post_type) && $post-> post_type == 'page' ) || ( isset( $theChampSharingOptions['vertical_excerpt'] ) && (is_home() || current_filter() == 'the_excerpt') ) || ( isset( $theChampSharingOptions['vertical_bb_forum'] ) && current_filter() == 'bbp_template_before_single_forum') || ( isset( $theChampSharingOptions['vertical_bb_topic'] ) && in_array(current_filter(), array('bbp_template_before_single_topic', 'bbp_template_before_lead_topic'))) || (current_filter() == 'bp_before_group_header' && isset($theChampSharingOptions['vertical_bp_group']))) {
851
  if( in_array( current_filter(), array('bbp_template_before_single_topic', 'bbp_template_before_lead_topic', 'bbp_template_before_single_forum', 'bp_before_group_header') ) ){
852
  echo $verticalDiv;
853
  }else{
880
  }
881
  } elseif( count( $post_types ) ) {
882
  foreach ( $post_types as $post_type ) {
883
+ if( isset( $theChampSharingOptions['vertical_' . $post_type] ) && ( is_single() || is_page() ) && isset($post-> post_type) && $post-> post_type == $post_type ) {
884
  $content = $content . $verticalDiv;
885
  }
886
  }
1044
  }
1045
  break;
1046
  case 'twitter':
1047
+ if(!empty($body-> count)){
1048
+ $shareCountTransient['twitter'] = $body-> count;
1049
  }else{
1050
  $shareCountTransient['twitter'] = 0;
1051
  }
1052
  break;
1053
  case 'linkedin':
1054
+ if(!empty($body-> count)){
1055
+ $shareCountTransient['linkedin'] = $body-> count;
1056
  }else{
1057
  $shareCountTransient['linkedin'] = 0;
1058
  }
1059
  break;
1060
  case 'reddit':
1061
  $shareCountTransient['reddit'] = 0;
1062
+ if(!empty($body-> data-> children)){
1063
+ $children = $body-> data-> children;
1064
  $ups = $downs = 0;
1065
  foreach($children as $child){
1066
  $ups += (int) $child->data->ups;
1074
  }
1075
  break;
1076
  case 'pinterest':
1077
+ if(!empty($body-> count)){
1078
+ $shareCountTransient['pinterest'] = $body-> count;
1079
  }else{
1080
  $shareCountTransient['pinterest'] = 0;
1081
  }
1082
  break;
1083
  case 'buffer':
1084
+ if(!empty($body-> shares)){
1085
+ $shareCountTransient['buffer'] = $body-> shares;
1086
  }else{
1087
  $shareCountTransient['buffer'] = 0;
1088
  }
inc/widget.php CHANGED
@@ -42,8 +42,8 @@ class TheChampLoginWidget extends WP_Widget {
42
  echo "<div style='height:80px;width:180px'><div style='width:63px;float:left;'>";
43
  echo @get_avatar($user_ID, 60, '', '');
44
  echo "</div><div style='float:left; margin-left:10px'>";
45
- echo str_replace('-', ' ', $userInfo -> user_login);
46
- do_action('the_champ_login_widget_hook', $userInfo -> user_login);
47
  echo '<br/><a href="' . wp_logout_url(esc_url(home_url())) . '">' .__('Log Out', 'super-socializer') . '</a></div></div>';
48
  }
49
  echo '<div style="clear:both"></div>';
@@ -142,7 +142,7 @@ class TheChampSharingWidget extends WP_Widget {
142
  $postId = 0;
143
  }elseif(isset($_SERVER['QUERY_STRING']) && $_SERVER['QUERY_STRING']){
144
  $sharingUrl = html_entity_decode(esc_url(the_champ_get_http().$_SERVER["HTTP_HOST"] . $_SERVER["REQUEST_URI"]));
145
- }elseif(get_permalink($post -> ID)){
146
  $sharingUrl = get_permalink($post->ID);
147
  }
148
  }elseif($instance['target_url'] == 'homepage'){
@@ -320,7 +320,7 @@ class TheChampVerticalSharingWidget extends WP_Widget {
320
  $postId = 0;
321
  }elseif(isset($_SERVER['QUERY_STRING']) && $_SERVER['QUERY_STRING']){
322
  $sharingUrl = html_entity_decode(esc_url(the_champ_get_http().$_SERVER["HTTP_HOST"] . $_SERVER["REQUEST_URI"]));
323
- }elseif(get_permalink($post -> ID)){
324
  $sharingUrl = get_permalink($post->ID);
325
  }
326
  }elseif($instance['target_url'] == 'homepage'){
@@ -494,7 +494,7 @@ class TheChampCounterWidget extends WP_Widget {
494
  if($instance['hide_for_logged_in']==1 && is_user_logged_in()) return;
495
 
496
  global $theChampCounterOptions, $post;
497
- $postId = $post -> ID;
498
  $customUrl = apply_filters('heateor_ss_custom_share_url', '', $post);
499
  if($customUrl){
500
  $sharingUrl = $customUrl;
@@ -510,7 +510,7 @@ class TheChampCounterWidget extends WP_Widget {
510
  $postId = 0;
511
  }elseif(isset($_SERVER['QUERY_STRING']) && $_SERVER['QUERY_STRING']){
512
  $counterUrl = html_entity_decode(esc_url(the_champ_get_http().$_SERVER["HTTP_HOST"] . $_SERVER["REQUEST_URI"]));
513
- }elseif(get_permalink($post -> ID)){
514
  $counterUrl = get_permalink($post->ID);
515
  }
516
  }elseif($instance['target_url'] == 'homepage'){
@@ -642,7 +642,7 @@ class TheChampVerticalCounterWidget extends WP_Widget {
642
  if($instance['hide_for_logged_in']==1 && is_user_logged_in()) return;
643
 
644
  global $theChampCounterOptions, $post;
645
- $postId = $post -> ID;
646
  $customUrl = apply_filters('heateor_ss_custom_share_url', '', $post);
647
  if($customUrl){
648
  $sharingUrl = $customUrl;
@@ -658,7 +658,7 @@ class TheChampVerticalCounterWidget extends WP_Widget {
658
  $postId = 0;
659
  }elseif(isset($_SERVER['QUERY_STRING']) && $_SERVER['QUERY_STRING']){
660
  $counterUrl = html_entity_decode(esc_url(the_champ_get_http().$_SERVER["HTTP_HOST"] . $_SERVER["REQUEST_URI"]));
661
- }elseif(get_permalink($post -> ID)){
662
  $counterUrl = get_permalink($post->ID);
663
  }
664
  }elseif($instance['target_url'] == 'homepage'){
42
  echo "<div style='height:80px;width:180px'><div style='width:63px;float:left;'>";
43
  echo @get_avatar($user_ID, 60, '', '');
44
  echo "</div><div style='float:left; margin-left:10px'>";
45
+ echo str_replace('-', ' ', $userInfo-> user_login);
46
+ do_action('the_champ_login_widget_hook', $userInfo-> user_login);
47
  echo '<br/><a href="' . wp_logout_url(esc_url(home_url())) . '">' .__('Log Out', 'super-socializer') . '</a></div></div>';
48
  }
49
  echo '<div style="clear:both"></div>';
142
  $postId = 0;
143
  }elseif(isset($_SERVER['QUERY_STRING']) && $_SERVER['QUERY_STRING']){
144
  $sharingUrl = html_entity_decode(esc_url(the_champ_get_http().$_SERVER["HTTP_HOST"] . $_SERVER["REQUEST_URI"]));
145
+ }elseif(get_permalink($post-> ID)){
146
  $sharingUrl = get_permalink($post->ID);
147
  }
148
  }elseif($instance['target_url'] == 'homepage'){
320
  $postId = 0;
321
  }elseif(isset($_SERVER['QUERY_STRING']) && $_SERVER['QUERY_STRING']){
322
  $sharingUrl = html_entity_decode(esc_url(the_champ_get_http().$_SERVER["HTTP_HOST"] . $_SERVER["REQUEST_URI"]));
323
+ }elseif(get_permalink($post-> ID)){
324
  $sharingUrl = get_permalink($post->ID);
325
  }
326
  }elseif($instance['target_url'] == 'homepage'){
494
  if($instance['hide_for_logged_in']==1 && is_user_logged_in()) return;
495
 
496
  global $theChampCounterOptions, $post;
497
+ $postId = $post-> ID;
498
  $customUrl = apply_filters('heateor_ss_custom_share_url', '', $post);
499
  if($customUrl){
500
  $sharingUrl = $customUrl;
510
  $postId = 0;
511
  }elseif(isset($_SERVER['QUERY_STRING']) && $_SERVER['QUERY_STRING']){
512
  $counterUrl = html_entity_decode(esc_url(the_champ_get_http().$_SERVER["HTTP_HOST"] . $_SERVER["REQUEST_URI"]));
513
+ }elseif(get_permalink($post-> ID)){
514
  $counterUrl = get_permalink($post->ID);
515
  }
516
  }elseif($instance['target_url'] == 'homepage'){
642
  if($instance['hide_for_logged_in']==1 && is_user_logged_in()) return;
643
 
644
  global $theChampCounterOptions, $post;
645
+ $postId = $post-> ID;
646
  $customUrl = apply_filters('heateor_ss_custom_share_url', '', $post);
647
  if($customUrl){
648
  $sharingUrl = $customUrl;
658
  $postId = 0;
659
  }elseif(isset($_SERVER['QUERY_STRING']) && $_SERVER['QUERY_STRING']){
660
  $counterUrl = html_entity_decode(esc_url(the_champ_get_http().$_SERVER["HTTP_HOST"] . $_SERVER["REQUEST_URI"]));
661
+ }elseif(get_permalink($post-> ID)){
662
  $counterUrl = get_permalink($post->ID);
663
  }
664
  }elseif($instance['target_url'] == 'homepage'){
js/front/combined.js CHANGED
@@ -3,7 +3,7 @@ theChampFBKey = typeof theChampFBKey != 'undefined' ? theChampFBKey : '', theCha
3
  function theChampPopup(e){window.open(e,"_blank","height=420,width=620,left=390,top=105,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 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?theChampLoginPopup(theChampFacebookAuthUrl):"Login with Line"==a?theChampLoginPopup(theChampLineAuthUrl):"Login with Microsoft"==a?theChampLoginPopup(theChampLiveAuthUrl):"Login with Steam"==a?theChampLoginPopup(theChampSteamAuthUrl):"Login with Twitter"==a?theChampLoginPopup(theChampTwitterAuthUrl):("Login with Linkedin"==a&&theChampLoginPopup(theChampLinkedinAuthUrl),"Login with Google"==a?theChampLoginPopup(theChampGoogleAuthUrl):"Login with Vkontakte"==a?theChampLoginPopup(theChampVkontakteAuthUrl):"Login with Instagram"==a&&theChampLoginPopup(theChampInstagramAuthUrl))}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=/"});
7
  // sdk.js
8
  function theChampInitiateFB(){FB.init({appId:theChampFBKey,channelUrl:"//"+theChampSiteUrl+"/channel.html",status:!0,cookie:!0,xfbml:!0,version:"v7.0"})}window.fbAsyncInit=function(){theChampInitiateFB(),theChampFbIosLogin&&theChampAuthUserFB(),"function"==typeof theChampDisplayLoginIcon&&theChampDisplayLoginIcon(document,["theChampFacebookButton","theChampFacebookLogin"]),("undefined"!=typeof theChampCommentNotification&&1==theChampCommentNotification||"undefined"!=typeof theChampHeateorFcmRecentComments&&1==theChampHeateorFcmRecentComments)&&FB.Event.subscribe("comment.create",function(e){void 0!==e.commentID&&e.commentID&&("undefined"!=typeof theChampCommentNotification&&1==theChampCommentNotification&&jQuery.ajax({type:"POST",dataType:"json",url:theChampSiteUrl+"/index.php",data:{action:"the_champ_moderate_fb_comments",data:e},success:function(e,t,n){}}),"undefined"!=typeof theChampHeateorFcmRecentComments&&1==theChampHeateorFcmRecentComments&&jQuery.ajax({type:"POST",dataType:"json",url:theChampSiteUrl+"/index.php",data:{action:"heateor_fcm_save_fb_comment",data:e},success:function(e,t,n){}}))}),"undefined"!=typeof theChampFbLikeMycred&&theChampFbLikeMycred&&(FB.Event.subscribe("edge.create",function(e){heateorSsmiMycredPoints("Facebook_like_recommend","",e||"")}),FB.Event.subscribe("edge.remove",function(e){heateorSsmiMycredPoints("Facebook_like_recommend","",e||"","Minus point(s) for undoing Facebook like-recommend")})),"undefined"!=typeof theChampSsga&&theChampSsga&&(FB.Event.subscribe("edge.create",function(e){heateorSsgaSocialPluginsTracking("Facebook","Like",e||"")}),FB.Event.subscribe("edge.remove",function(e){heateorSsgaSocialPluginsTracking("Facebook","Unlike",e||"")}))},function(e){var t,n="facebook-jssdk",o=e.getElementsByTagName("script")[0];e.getElementById(n)||((t=e.createElement("script")).id=n,t.async=!0,t.src="//connect.facebook.net/"+theChampFBLang+"/sdk.js",o.parentNode.insertBefore(t,o))}(document);
9
  // commenting.js
3
  function theChampPopup(e){window.open(e,"_blank","height=420,width=620,left=390,top=105,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 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?theChampLoginPopup(theChampFacebookAuthUrl):"Login with Line"==a?theChampLoginPopup(theChampLineAuthUrl):"Login with Microsoft"==a?theChampLoginPopup(theChampLiveAuthUrl):"Login with Steam"==a?theChampLoginPopup(theChampSteamAuthUrl):"Login with Twitter"==a?theChampLoginPopup(theChampTwitterAuthUrl):("Login with Linkedin"==a&&theChampLoginPopup(theChampLinkedinAuthUrl),"Login with Google"==a?theChampLoginPopup(theChampGoogleAuthUrl):"Login with Vkontakte"==a?theChampLoginPopup(theChampVkontakteAuthUrl):"Login with Wordpress"==a?theChampLoginPopup(theChampWordpressAuthUrl):"Login with Yahoo"==a?theChampLoginPopup(theChampYahooAuthUrl):"Login with Instagram"==a&&theChampLoginPopup(theChampInstagramAuthUrl))}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;
7
  // sdk.js
8
  function theChampInitiateFB(){FB.init({appId:theChampFBKey,channelUrl:"//"+theChampSiteUrl+"/channel.html",status:!0,cookie:!0,xfbml:!0,version:"v7.0"})}window.fbAsyncInit=function(){theChampInitiateFB(),theChampFbIosLogin&&theChampAuthUserFB(),"function"==typeof theChampDisplayLoginIcon&&theChampDisplayLoginIcon(document,["theChampFacebookButton","theChampFacebookLogin"]),("undefined"!=typeof theChampCommentNotification&&1==theChampCommentNotification||"undefined"!=typeof theChampHeateorFcmRecentComments&&1==theChampHeateorFcmRecentComments)&&FB.Event.subscribe("comment.create",function(e){void 0!==e.commentID&&e.commentID&&("undefined"!=typeof theChampCommentNotification&&1==theChampCommentNotification&&jQuery.ajax({type:"POST",dataType:"json",url:theChampSiteUrl+"/index.php",data:{action:"the_champ_moderate_fb_comments",data:e},success:function(e,t,n){}}),"undefined"!=typeof theChampHeateorFcmRecentComments&&1==theChampHeateorFcmRecentComments&&jQuery.ajax({type:"POST",dataType:"json",url:theChampSiteUrl+"/index.php",data:{action:"heateor_fcm_save_fb_comment",data:e},success:function(e,t,n){}}))}),"undefined"!=typeof theChampFbLikeMycred&&theChampFbLikeMycred&&(FB.Event.subscribe("edge.create",function(e){heateorSsmiMycredPoints("Facebook_like_recommend","",e||"")}),FB.Event.subscribe("edge.remove",function(e){heateorSsmiMycredPoints("Facebook_like_recommend","",e||"","Minus point(s) for undoing Facebook like-recommend")})),"undefined"!=typeof theChampSsga&&theChampSsga&&(FB.Event.subscribe("edge.create",function(e){heateorSsgaSocialPluginsTracking("Facebook","Like",e||"")}),FB.Event.subscribe("edge.remove",function(e){heateorSsgaSocialPluginsTracking("Facebook","Unlike",e||"")}))},function(e){var t,n="facebook-jssdk",o=e.getElementsByTagName("script")[0];e.getElementById(n)||((t=e.createElement("script")).id=n,t.async=!0,t.src="//connect.facebook.net/"+theChampFBLang+"/sdk.js",o.parentNode.insertBefore(t,o))}(document);
9
  // commenting.js
js/front/social_login/common.js CHANGED
@@ -1 +1 @@
1
- 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?theChampLoginPopup(theChampFacebookAuthUrl):"Login with Steam"==a?theChampLoginPopup(theChampSteamAuthUrl):"Login with Twitter"==a?theChampLoginPopup(theChampTwitterAuthUrl):("Login with Linkedin"==a&&theChampLoginPopup(theChampLinkedinAuthUrl),"Login with Google"==a?theChampLoginPopup(theChampGoogleAuthUrl):"Login with Line"==a?theChampLoginPopup(theChampLineAuthUrl):"Login with Microsoft"==a?theChampLoginPopup(theChampLiveAuthUrl):"Login with Vkontakte"==a?theChampLoginPopup(theChampVkontakteAuthUrl):"Login with Instagram"==a&&theChampLoginPopup(theChampInstagramAuthUrl))}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
+ 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?theChampLoginPopup(theChampFacebookAuthUrl):"Login with Line"==a?theChampLoginPopup(theChampLineAuthUrl):"Login with Microsoft"==a?theChampLoginPopup(theChampLiveAuthUrl):"Login with Steam"==a?theChampLoginPopup(theChampSteamAuthUrl):"Login with Twitter"==a?theChampLoginPopup(theChampTwitterAuthUrl):("Login with Linkedin"==a&&theChampLoginPopup(theChampLinkedinAuthUrl),"Login with Google"==a?theChampLoginPopup(theChampGoogleAuthUrl):"Login with Vkontakte"==a?theChampLoginPopup(theChampVkontakteAuthUrl):"Login with Yahoo"==a?theChampLoginPopup(theChampYahooAuthUrl):"Login with Wordpress"==a?theChampLoginPopup(theChampWordpressAuthUrl):"Login with Instagram"==a&&theChampLoginPopup(theChampInstagramAuthUrl))}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;
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: 2020-08-20 08:13+0530\n"
6
- "PO-Revision-Date: 2020-08-20 08:14+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:523
19
  msgid "Problem fetching access token: "
20
  msgstr ""
21
 
22
- #: ../super_socializer.php:527 ../super_socializer.php:541
23
  msgid "Facebook SDK returned an error: "
24
  msgstr ""
25
 
26
- #: ../super_socializer.php:537
27
  msgid "Graph returned an error: "
28
  msgstr ""
29
 
30
- #: ../super_socializer.php:726
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:754
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:757
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:760
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,141 +62,141 @@ msgstr ""
62
  "يتم تمكين جعل الضفيرة متأكدا في الخادم موقع الويب الخاص بك. قد تحتاج إلى "
63
  "الاتصال بمسؤول الملقم من موقع الويب الخاص بك للتحقق من ذلك"
64
 
65
- #: ../super_socializer.php:942 ../helper.php:961
66
  msgid "Please verify your email address to login."
67
  msgstr "يرجى التحقق من عنوان البريد الإلكتروني الخاص بك للدخول."
68
 
69
- #: ../super_socializer.php:942
70
  msgid "Your email has been verified. Now you can login to your account"
71
  msgstr "تم التحقق من بريدك الإلكتروني. الآن يمكنك تسجيل الدخول إلى حسابك"
72
 
73
- #: ../super_socializer.php:946
74
  msgid "Notification"
75
  msgstr "تنبيهات"
76
 
77
- #: ../super_socializer.php:964 ../admin/social_login.php:779
78
  msgid "Email required"
79
  msgstr "البريد الإلكتروني - إدخال القيمة إجباري"
80
 
81
- #: ../super_socializer.php:967
82
  msgid "Please check your email inbox to complete the registration."
83
  msgstr "يرجى التحقق من بريدك الالكتروني لإكمال التسجيل."
84
 
85
- #: ../super_socializer.php:1036
86
  msgid "Leave a reply"
87
  msgstr "اترك رد"
88
 
89
- #: ../super_socializer.php:1052 ../inc/social_sharing.php:241
90
  msgid "Shares"
91
  msgstr ""
92
 
93
- #: ../super_socializer.php:1052 ../inc/social_sharing.php:241
94
  msgid "Share"
95
  msgstr ""
96
 
97
- #: ../super_socializer.php:1052
98
  #, fuzzy
99
  msgid "Link copied."
100
  msgstr "شارك الأخرين عبر لنكيدان"
101
 
102
- #: ../super_socializer.php:1298
103
  #, fuzzy
104
  msgid "Super Socializer - General Options"
105
  msgstr "آخر تسجيل دخول | Last Login"
106
 
107
- #: ../super_socializer.php:1298 ../admin/general_options.php:15
108
  #: ../admin/social_commenting.php:47
109
  #, fuzzy
110
  msgid "General Options"
111
  msgstr "المشاركات الأفقي"
112
 
113
- #: ../super_socializer.php:1366 ../helper.php:883
114
  #, fuzzy
115
  msgid "Social Avatar"
116
  msgstr "صغير الرمزية رابط"
117
 
118
- #: ../super_socializer.php:1369
119
  msgid "Small Avatar Url"
120
  msgstr "صغير الرمزية رابط"
121
 
122
- #: ../super_socializer.php:1373
123
  #, fuzzy
124
  msgid "Large Avatar Url"
125
  msgstr "الرابط المصدر و الرابط الهدف لا يمكن أن يكونا متطابقين."
126
 
127
- #: ../super_socializer.php:1377 ../helper.php:886
128
  msgid ""
129
  "Do not fetch and update social avatar from my profile, next time I Social "
130
  "Login"
131
  msgstr ""
132
 
133
- #: ../super_socializer.php:1381 ../helper.php:887
134
  msgid "Update social avatar, next time I Social Login"
135
  msgstr ""
136
 
137
- #: ../super_socializer.php:1458
138
  msgid "Login with your Social ID"
139
  msgstr ""
140
 
141
- #: ../super_socializer.php:1459
142
  msgid "Email you entered is already registered or invalid"
143
  msgstr "البريد الإلكتروني الذي أدخلته غير مسجل من قبل أو غير صالحة"
144
 
145
- #: ../super_socializer.php:1464
146
  msgid "Please enter a valid email address. You might be required to verify it"
147
  msgstr "يرجى إدخال عنوان بريد إلكتروني صالح. قد تكون هناك حاجة للتحقق من ذلك"
148
 
149
- #: ../super_socializer.php:1468 ../super_socializer.php:2166
150
  msgid "Link your social account to login to your account at this website"
151
  msgstr ""
152
  "الرجاء القيام بربط الحساب الإجتماعي الخاص بك للتمكن من تسجيل الدخول العام "
153
  "الى حسابك في هذا الموقع"
154
 
155
- #: ../super_socializer.php:1708
156
  msgid "Thanks for installing Super Socializer plugin"
157
  msgstr ""
158
 
159
- #: ../super_socializer.php:1710
160
  msgid "Configure the Plugin"
161
  msgstr ""
162
 
163
- #: ../super_socializer.php:1721
164
  msgid ""
165
  "Update \"Facebook Comments Moderation\" add-on for compatibility with "
166
  "current version of Super Socializer"
167
  msgstr ""
168
 
169
- #: ../super_socializer.php:1730
170
  msgid ""
171
  "Update \"Facebook Comments Notifier\" add-on for compatibility with current "
172
  "version of Super Socializer"
173
  msgstr ""
174
 
175
- #: ../super_socializer.php:1739
176
  msgid ""
177
  "Update \"Social Login Buttons\" add-on for compatibility with current "
178
  "version of Super Socializer"
179
  msgstr ""
180
 
181
- #: ../super_socializer.php:1748
182
  msgid ""
183
  "Update \"Social Share myCRED Integration\" add-on for maximum compatibility "
184
  "with current version of Super Socializer"
185
  msgstr ""
186
 
187
- #: ../super_socializer.php:1757
188
  msgid ""
189
  "Update \"Social Login myCRED Integration\" add-on for maximum compatibility "
190
  "with current version of Super Socializer"
191
  msgstr ""
192
 
193
- #: ../super_socializer.php:1768
194
  #, php-format
195
  msgid ""
196
  "To continue using Steam login save Steam API key <a href=\"%s\">here</a>"
197
  msgstr ""
198
 
199
- #: ../super_socializer.php:1777
200
  #, php-format
201
  msgid ""
202
  "To continue using Instagram login create a new Instagram App as described <a "
@@ -204,7 +204,7 @@ msgid ""
204
  "Instagram App Secret <a href=\"%s\">here</a>"
205
  msgstr ""
206
 
207
- #: ../super_socializer.php:1786 ../super_socializer.php:1795
208
  #, php-format
209
  msgid ""
210
  "To continue using bitly url shortener, login to your bit.ly account and "
@@ -213,13 +213,13 @@ msgid ""
213
  "\">here</a>. More details at the <a href=\"%s\" target=\"_blank\">link</a>"
214
  msgstr ""
215
 
216
- #: ../super_socializer.php:1811
217
  #, php-format
218
  msgid ""
219
  "To continue using Social Login, save the secret keys <a href=\"%s\">here</a>"
220
  msgstr ""
221
 
222
- #: ../super_socializer.php:1835
223
  #, php-format
224
  msgid ""
225
  "Add %s in \"Valid OAuth redirect URIs\" option in your Facebook app settings "
@@ -227,14 +227,14 @@ msgid ""
227
  "target=\"_blank\">here</a>"
228
  msgstr ""
229
 
230
- #: ../super_socializer.php:1835 ../super_socializer.php:1860
231
- #: ../super_socializer.php:1885 ../super_socializer.php:1910
232
- #: ../super_socializer.php:1943 ../super_socializer.php:1971
233
- #: ../super_socializer.php:1998
234
  msgid "Okay"
235
  msgstr ""
236
 
237
- #: ../super_socializer.php:1860
238
  #, php-format
239
  msgid ""
240
  "Add %s in \"Callback URLs\" option in your Twitter app settings for Twitter "
@@ -242,7 +242,7 @@ msgid ""
242
  "\">here</a>"
243
  msgstr ""
244
 
245
- #: ../super_socializer.php:1885
246
  #, php-format
247
  msgid ""
248
  "Add %s in \"Authorized Redirect URLs\" option in your Linkedin app settings "
@@ -250,7 +250,7 @@ msgid ""
250
  "target=\"_blank\">here</a>"
251
  msgstr ""
252
 
253
- #: ../super_socializer.php:1910
254
  #, php-format
255
  msgid ""
256
  "Add %s in \"Authorized redirect URIs\" option in your Google client settings "
@@ -258,13 +258,13 @@ msgid ""
258
  "target=\"_blank\">here</a>"
259
  msgstr ""
260
 
261
- #: ../super_socializer.php:1921
262
  #, php-format
263
  msgid ""
264
  "Save the url of privacy policy page of your website <a href=\"%s\">here</a>"
265
  msgstr ""
266
 
267
- #: ../super_socializer.php:1943
268
  #, php-format
269
  msgid ""
270
  "This plugin is GDPR compliant. You need to update the privacy policy of your "
@@ -272,7 +272,7 @@ msgid ""
272
  "\"%s\" target=\"_blank\">here</a>"
273
  msgstr ""
274
 
275
- #: ../super_socializer.php:1971
276
  #, php-format
277
  msgid ""
278
  "Now plugin supports a new service Twitcount.com to show Twitter shares. To "
@@ -281,7 +281,7 @@ msgid ""
281
  "your website %s with them. No need to copy-paste any code from their website."
282
  msgstr ""
283
 
284
- #: ../super_socializer.php:1998
285
  #, php-format
286
  msgid ""
287
  "Replace url saved in \"Callback URLs\" option in your Twitter app settings "
@@ -289,7 +289,7 @@ msgid ""
289
  "\"%s\" target=\"_blank\">here</a>"
290
  msgstr ""
291
 
292
- #: ../super_socializer.php:2023
293
  #, php-format
294
  msgid ""
295
  "If you cannot get Linkedin login to work after updating the plugin, replace "
@@ -297,11 +297,11 @@ msgid ""
297
  "For more details, check step 6 <a href=\"%s\" target=\"_blank\">here</a>"
298
  msgstr ""
299
 
300
- #: ../super_socializer.php:2023 ../super_socializer.php:2050
301
  msgid "Dismiss"
302
  msgstr ""
303
 
304
- #: ../super_socializer.php:2049
305
  #, php-format
306
  msgid ""
307
  "Save Facebook App ID and Secret keys in \"Standard Interface\" and/or "
@@ -310,7 +310,7 @@ msgid ""
310
  "that, clear share counts cache from \"Miscellaneous\" section"
311
  msgstr ""
312
 
313
- #: ../super_socializer.php:2242
314
  msgid ""
315
  "Your browser is blocking some features of this website. Please follow the "
316
  "instructions at {support_url} to unblock these."
@@ -422,7 +422,7 @@ msgstr "الرابط المصدر و الرابط الهدف لا يمكن أن
422
 
423
  #: ../helper.php:898 ../admin/general_options.php:89
424
  #: ../admin/social_sharing.php:1944 ../admin/social_commenting.php:400
425
- #: ../admin/social_login.php:1269 ../admin/like_buttons.php:780
426
  #, fuzzy
427
  msgid "Save Changes"
428
  msgstr "حفظ"
@@ -447,7 +447,7 @@ msgstr ""
447
  #: ../admin/general_options.php:7 ../admin/general_options.php:93
448
  #: ../admin/social_sharing.php:5 ../admin/social_sharing.php:1948
449
  #: ../admin/social_commenting.php:5 ../admin/social_commenting.php:404
450
- #: ../admin/social_login.php:5 ../admin/social_login.php:1273
451
  #: ../admin/like_buttons.php:6 ../admin/like_buttons.php:784
452
  #, fuzzy, php-format
453
  msgid ""
@@ -506,14 +506,14 @@ msgid "You can specify any additional CSS rules (without &lt;style&gt; tag)"
506
  msgstr ""
507
 
508
  #: ../admin/general_options.php:103 ../admin/social_sharing.php:1954
509
- #: ../admin/social_commenting.php:410 ../admin/social_login.php:1279
510
  #: ../admin/like_buttons.php:790
511
  #, fuzzy
512
  msgid "Instagram Shoutout"
513
  msgstr "إنستاجرام"
514
 
515
  #: ../admin/general_options.php:105 ../admin/social_sharing.php:1956
516
- #: ../admin/social_commenting.php:412 ../admin/social_login.php:1281
517
  #: ../admin/like_buttons.php:792
518
  msgid ""
519
  "If you can send (to hello@heateor.com) how this plugin is helping your "
@@ -664,7 +664,7 @@ msgstr ""
664
 
665
  #: ../admin/social_sharing.php:67 ../admin/social_sharing.php:1869
666
  #: ../admin/social_sharing.php:1871 ../admin/social_login.php:45
667
- #: ../admin/social_login.php:1235 ../admin/like_buttons.php:50
668
  #: ../admin/like_buttons.php:751
669
  #, fuzzy
670
  msgid "Shortcode & Widget"
@@ -677,7 +677,7 @@ msgstr "مستكشف أخطاء مشاركة في ألفيس بوك"
677
 
678
  #: ../admin/social_sharing.php:69 ../admin/social_sharing.php:1902
679
  #: ../admin/social_commenting.php:40 ../admin/social_commenting.php:384
680
- #: ../admin/social_login.php:46 ../admin/social_login.php:1249
681
  #: ../admin/like_buttons.php:51 ../admin/like_buttons.php:764
682
  #, fuzzy
683
  msgid "FAQ"
@@ -937,8 +937,8 @@ msgstr "رابط (URL) مخصّص"
937
  msgid "Url to share"
938
  msgstr " شارك الآخرين بهذة الفقرة"
939
 
940
- #: ../admin/social_sharing.php:725 ../admin/social_login.php:520
941
- #: ../admin/social_login.php:896 ../admin/like_buttons.php:105
942
  #: ../inc/widget.php:945
943
  #, fuzzy
944
  msgid "Title"
@@ -1036,7 +1036,7 @@ msgid "Placement"
1036
  msgstr ""
1037
 
1038
  #: ../admin/social_sharing.php:957 ../admin/social_sharing.php:1383
1039
- #: ../admin/social_login.php:837 ../admin/social_login.php:866
1040
  #: ../admin/like_buttons.php:218 ../admin/like_buttons.php:494
1041
  #, fuzzy
1042
  msgid "Homepage"
@@ -1317,7 +1317,7 @@ msgstr ""
1317
  msgid "Required only to track Facebook share count"
1318
  msgstr ""
1319
 
1320
- #: ../admin/social_sharing.php:1584 ../admin/social_login.php:150
1321
  #, fuzzy
1322
  msgid "Facebook App ID"
1323
  msgstr "رقم التعريف الخالص بك | ID"
@@ -1332,7 +1332,7 @@ msgstr ""
1332
  "في <a href=\"%s\" target=\"_blank\">هذا الارتباط</a> للحصول على معرف التطبيق "
1333
  "فيسبوك"
1334
 
1335
- #: ../admin/social_sharing.php:1601 ../admin/social_login.php:171
1336
  #, fuzzy
1337
  msgid "Facebook App Secret"
1338
  msgstr "رقم التعريف الخالص بك | ID"
@@ -1526,7 +1526,7 @@ msgstr ""
1526
  "إشكالية (حيث تقاسم بوك لا يعمل بشكل صحيح) من موقع الويب الخاص بك في حقل النص:"
1527
 
1528
  #: ../admin/social_sharing.php:1904 ../admin/social_commenting.php:386
1529
- #: ../admin/social_login.php:1251
1530
  msgid ""
1531
  "<strong>Note:</strong> Plugin will not work on local server. You should have "
1532
  "an online website for the plugin to function properly."
@@ -1581,7 +1581,7 @@ msgid ""
1581
  msgstr ""
1582
 
1583
  #: ../admin/social_sharing.php:1919 ../admin/social_commenting.php:389
1584
- #: ../admin/social_login.php:1258
1585
  msgid "Why is my browser blocking some features of the plugin?"
1586
  msgstr ""
1587
 
@@ -1932,11 +1932,11 @@ msgstr "إنشاء ملف الإعدادات"
1932
  msgid "Advanced Configuration"
1933
  msgstr "إنشاء ملف الإعدادات"
1934
 
1935
- #: ../admin/social_login.php:41 ../admin/social_login.php:1035
1936
  msgid "GDPR"
1937
  msgstr ""
1938
 
1939
- #: ../admin/social_login.php:43 ../admin/social_login.php:1186
1940
  msgid "XProfile Integration"
1941
  msgstr ""
1942
 
@@ -2011,15 +2011,24 @@ msgid "Line"
2011
  msgstr ""
2012
 
2013
  #: ../admin/social_login.php:135
 
 
 
 
2014
  msgid "Windows Live"
2015
  msgstr ""
2016
 
2017
  #: ../admin/social_login.php:143
2018
  #, fuzzy
 
 
 
 
 
2019
  msgid "Select Social ID provider to enable in Social Login"
2020
  msgstr "حدد موفر \"معرف الاجتماعية\" لتمكين \"تسجيل الدخول الاجتماعي\""
2021
 
2022
- #: ../admin/social_login.php:160
2023
  #, fuzzy, php-format
2024
  msgid ""
2025
  "Required for Facebook Social Login to work. Please follow the documentation "
@@ -2029,7 +2038,7 @@ msgstr ""
2029
  "في <a href=\"%s\" target=\"_blank\">هذا الارتباط</a> للحصول على معرف التطبيق "
2030
  "فيسبوك"
2031
 
2032
- #: ../admin/social_login.php:162 ../admin/social_login.php:183
2033
  #, fuzzy
2034
  msgid ""
2035
  "Paste following url in <strong>Site URL</strong> option mentioned at the link"
@@ -2037,7 +2046,7 @@ msgstr ""
2037
  "لصق التالية url في الخيار <strong>محدد موقع معلومات الموقع</strong> في "
2038
  "الوصلة المذكورة"
2039
 
2040
- #: ../admin/social_login.php:181
2041
  #, fuzzy, php-format
2042
  msgid ""
2043
  "Required for Facebook Social Login to work. Please follow the documentation "
@@ -2047,12 +2056,12 @@ msgstr ""
2047
  "في <a href=\"%s\" target=\"_blank\">هذا الارتباط</a> للحصول على معرف التطبيق "
2048
  "فيسبوك"
2049
 
2050
- #: ../admin/social_login.php:192
2051
  #, fuzzy
2052
  msgid "Twitter API Key"
2053
  msgstr "مفتاح API الخاص | API Private Key"
2054
 
2055
- #: ../admin/social_login.php:202
2056
  #, fuzzy, php-format
2057
  msgid ""
2058
  "Required for Twitter Social Login to work. Please follow the documentation "
@@ -2062,14 +2071,15 @@ msgstr ""
2062
  "الموجودة في <a href=\"%s\" target=\"_blank\">هذا الارتباط</a> للحصول على "
2063
  "\"مفتاح API التغريد\""
2064
 
2065
- #: ../admin/social_login.php:204 ../admin/social_login.php:229
2066
  #, fuzzy
2067
  msgid ""
2068
  "Paste following url in <strong>Website</strong> option mentioned at the link"
2069
  msgstr "لصق التالية url في خيار <strong>URL الموقع</strong> في الوصلة المذكورة"
2070
 
2071
- #: ../admin/social_login.php:208 ../admin/social_login.php:233
2072
- #: ../admin/social_login.php:421 ../admin/social_login.php:441
 
2073
  #, fuzzy
2074
  msgid ""
2075
  "Paste following url in <strong>Callback URL</strong> option mentioned at the "
@@ -2078,12 +2088,12 @@ msgstr ""
2078
  "لصق التالية url في الخيار <strong>المجال رد الاتصال</strong> في الوصلة "
2079
  "المذكورة"
2080
 
2081
- #: ../admin/social_login.php:217
2082
  #, fuzzy
2083
  msgid "Twitter API Secret"
2084
  msgstr "شارك الأخرين عبر تويتر"
2085
 
2086
- #: ../admin/social_login.php:227
2087
  #, fuzzy, php-format
2088
  msgid ""
2089
  "Required for Twitter Social Login to work. Please follow the documentation "
@@ -2093,12 +2103,12 @@ msgstr ""
2093
  "الموجودة في <a href=\"%s\" target=\"_blank\">هذا الارتباط</a> للحصول على "
2094
  "\"سر API التغريد\""
2095
 
2096
- #: ../admin/social_login.php:242
2097
  #, fuzzy
2098
  msgid "LinkedIn Client ID"
2099
  msgstr "شارك الأخرين عبر لنكيدان"
2100
 
2101
- #: ../admin/social_login.php:252
2102
  #, fuzzy, php-format
2103
  msgid ""
2104
  "Required for LinkedIn Social Login to work. Please follow the documentation "
@@ -2107,7 +2117,7 @@ msgstr ""
2107
  "المطلوبة للدخول الاجتماعي LinkedIn للعمل. الرجاء تتبع الوثائق الموجودة في <a "
2108
  "href=\"%s\" target=\"_blank\">هذا الارتباط</a> للحصول على مفتاح API LinkedIn"
2109
 
2110
- #: ../admin/social_login.php:254 ../admin/social_login.php:275
2111
  #, fuzzy
2112
  msgid ""
2113
  "Paste following url in <strong>Redirect URLs</strong> option mentioned at "
@@ -2116,12 +2126,12 @@ msgstr ""
2116
  "لصق التالية url في الخيار <strong>محدد موقع معلومات الموقع</strong> في "
2117
  "الوصلة المذكورة"
2118
 
2119
- #: ../admin/social_login.php:263
2120
  #, fuzzy
2121
  msgid "LinkedIn Client Secret"
2122
  msgstr "شارك الأخرين عبر لنكيدان"
2123
 
2124
- #: ../admin/social_login.php:273
2125
  #, fuzzy, php-format
2126
  msgid ""
2127
  "Required for LinkedIn Social Login to work. Please follow the documentation "
@@ -2131,12 +2141,12 @@ msgstr ""
2131
  "المطلوبة للدخول الاجتماعي LinkedIn للعمل. الرجاء تتبع الوثائق الموجودة في <a "
2132
  "href=\"%s\" target=\"_blank\">هذا الارتباط</a> للحصول على مفتاح API LinkedIn"
2133
 
2134
- #: ../admin/social_login.php:284
2135
  #, fuzzy
2136
  msgid "Google Client ID"
2137
  msgstr "شارك الأخرين عبر جوجل"
2138
 
2139
- #: ../admin/social_login.php:294
2140
  #, fuzzy, php-format
2141
  msgid ""
2142
  "Required for Google Social Login to work. Please follow the documentation at "
@@ -2146,7 +2156,7 @@ msgstr ""
2146
  "<a href=\"%s\" target=\"_blank\">هذا الارتباط</a> للحصول على معرف العميل "
2147
  "GooglePlus"
2148
 
2149
- #: ../admin/social_login.php:296 ../admin/social_login.php:317
2150
  #, fuzzy
2151
  msgid ""
2152
  "Paste following url in <strong>AUTHORIZED REDIRECT URI</strong> option "
@@ -2155,12 +2165,12 @@ msgstr ""
2155
  "لصق التالية url في الخيار <strong>محدد موقع معلومات الموقع</strong> في "
2156
  "الوصلة المذكورة"
2157
 
2158
- #: ../admin/social_login.php:305
2159
  #, fuzzy
2160
  msgid "Google Client Secret"
2161
  msgstr "شارك الأخرين عبر جوجل"
2162
 
2163
- #: ../admin/social_login.php:315
2164
  #, fuzzy, php-format
2165
  msgid ""
2166
  "Required for Google Social Login to work. Please follow the documentation at "
@@ -2170,12 +2180,12 @@ msgstr ""
2170
  "<a href=\"%s\" target=\"_blank\">هذا الارتباط</a> للحصول على معرف العميل "
2171
  "GooglePlus"
2172
 
2173
- #: ../admin/social_login.php:326
2174
  #, fuzzy
2175
  msgid "Vkontakte Application ID"
2176
  msgstr "انشر عبر VKontakte"
2177
 
2178
- #: ../admin/social_login.php:336 ../admin/social_login.php:357
2179
  #, fuzzy, php-format
2180
  msgid ""
2181
  "Required for Vkontakte Social Login to work. Please follow the documentation "
@@ -2186,7 +2196,7 @@ msgstr ""
2186
  "<a href=\"%s\" target=\"_blank\">هذا الارتباط</a> للحصول على معرف التطبيق "
2187
  "Vkontakte"
2188
 
2189
- #: ../admin/social_login.php:338 ../admin/social_login.php:359
2190
  #, fuzzy
2191
  msgid ""
2192
  "Paste following url in <strong>Site address</strong> option mentioned at the "
@@ -2194,17 +2204,17 @@ msgid ""
2194
  msgstr ""
2195
  "لصق التالية url في خيار <strong>عنوان الموقع</strong> في الوصلة المذكورة"
2196
 
2197
- #: ../admin/social_login.php:347
2198
  #, fuzzy
2199
  msgid "Vkontakte Secure key"
2200
  msgstr "انشر عبر VKontakte"
2201
 
2202
- #: ../admin/social_login.php:368
2203
  #, fuzzy
2204
  msgid "Instagram App ID"
2205
  msgstr "مفتاح التشفيرمن جانب العميل | Client-Side Encryption Key"
2206
 
2207
- #: ../admin/social_login.php:378
2208
  #, fuzzy, php-format
2209
  msgid ""
2210
  "Required for Instagram Social Login to work. Please follow the documentation "
@@ -2214,7 +2224,7 @@ msgstr ""
2214
  "<a href=\"%s\" target=\"_blank\">هذا الارتباط</a> للحصول على معرف العميل "
2215
  "Instagram"
2216
 
2217
- #: ../admin/social_login.php:380 ../admin/social_login.php:401
2218
  #, fuzzy
2219
  msgid ""
2220
  "Paste following url in <strong>Valid OAuth Redirect URIs</strong> option "
@@ -2223,12 +2233,12 @@ msgstr ""
2223
  "لصق التالية url في الخيار <strong>محدد موقع معلومات الموقع</strong> في "
2224
  "الوصلة المذكورة"
2225
 
2226
- #: ../admin/social_login.php:389
2227
  #, fuzzy
2228
  msgid "Instagram App Secret"
2229
  msgstr "إنستاجرام"
2230
 
2231
- #: ../admin/social_login.php:399
2232
  #, fuzzy, php-format
2233
  msgid ""
2234
  "Required for Instagram Social Login to work. Please follow the documentation "
@@ -2238,11 +2248,11 @@ msgstr ""
2238
  "<a href=\"%s\" target=\"_blank\">هذا الارتباط</a> للحصول على معرف العميل "
2239
  "Instagram"
2240
 
2241
- #: ../admin/social_login.php:410
2242
  msgid "Line Channel ID"
2243
  msgstr ""
2244
 
2245
- #: ../admin/social_login.php:419
2246
  #, fuzzy, php-format
2247
  msgid ""
2248
  "Required for Line Social Login to work. Please follow the documentation at "
@@ -2251,12 +2261,12 @@ msgstr ""
2251
  "المطلوبة للدخول الاجتماعي LinkedIn للعمل. الرجاء تتبع الوثائق الموجودة في <a "
2252
  "href=\"%s\" target=\"_blank\">هذا الارتباط</a> للحصول على مفتاح API LinkedIn"
2253
 
2254
- #: ../admin/social_login.php:430
2255
  #, fuzzy
2256
  msgid "Line Channel Secret"
2257
  msgstr "شارك الأخرين عبر لنكيدان"
2258
 
2259
- #: ../admin/social_login.php:439
2260
  #, fuzzy, php-format
2261
  msgid ""
2262
  "Required for Line Social Login to work. Please follow the documentation at "
@@ -2265,12 +2275,43 @@ msgstr ""
2265
  "المطلوبة للدخول الاجتماعي LinkedIn للعمل. الرجاء تتبع الوثائق الموجودة في <a "
2266
  "href=\"%s\" target=\"_blank\">هذا الارتباط</a> للحصول على مفتاح API LinkedIn"
2267
 
2268
- #: ../admin/social_login.php:450
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2269
  #, fuzzy
2270
  msgid "Microsoft Client ID"
2271
  msgstr "شارك الأخرين عبر جوجل"
2272
 
2273
- #: ../admin/social_login.php:459
2274
  #, fuzzy, php-format
2275
  msgid ""
2276
  "Required for Live Social Login to work. Please follow the documentation at "
@@ -2280,7 +2321,8 @@ msgstr ""
2280
  "<a href=\"%s\" target=\"_blank\">هذا الارتباط</a> للحصول على معرف العميل "
2281
  "GooglePlus"
2282
 
2283
- #: ../admin/social_login.php:461 ../admin/social_login.php:481
 
2284
  #, fuzzy
2285
  msgid ""
2286
  "Paste following url in <strong>Redirect URIs</strong> option mentioned at "
@@ -2289,12 +2331,12 @@ msgstr ""
2289
  "لصق التالية url في الخيار <strong>محدد موقع معلومات الموقع</strong> في "
2290
  "الوصلة المذكورة"
2291
 
2292
- #: ../admin/social_login.php:470
2293
  #, fuzzy
2294
  msgid "Microsoft Client Secret"
2295
  msgstr "شارك الأخرين عبر جوجل"
2296
 
2297
- #: ../admin/social_login.php:479
2298
  #, fuzzy, php-format
2299
  msgid ""
2300
  "Required for Live Social Login to work. Please follow the documentation at "
@@ -2305,12 +2347,12 @@ msgstr ""
2305
  "<a href=\"%s\" target=\"_blank\">هذا الارتباط</a> للحصول على معرف العميل "
2306
  "GooglePlus"
2307
 
2308
- #: ../admin/social_login.php:489
2309
  #, fuzzy
2310
  msgid "Steam API Key"
2311
  msgstr "مفتاح API الخاص | API Private Key"
2312
 
2313
- #: ../admin/social_login.php:498
2314
  #, fuzzy, php-format
2315
  msgid ""
2316
  "Required for Steam Social Login to work. Get it at <a href=\"%s\" target="
@@ -2320,14 +2362,44 @@ msgstr ""
2320
  "الموجودة في <a href=\"%s\" target=\"_blank\">هذا الارتباط</a> للحصول على "
2321
  "\"مفتاح API التغريد\""
2322
 
2323
- #: ../admin/social_login.php:499
2324
  #, fuzzy
2325
  msgid "Save following <strong>domain</strong> to get the key"
2326
  msgstr ""
2327
  "لصق التالية url في الخيار <strong>المجال رد الاتصال</strong> في الوصلة "
2328
  "المذكورة"
2329
 
2330
- #: ../admin/social_login.php:515
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2331
  #, fuzzy
2332
  msgid "Social Login Options"
2333
  msgstr ""
@@ -2335,25 +2407,25 @@ msgstr ""
2335
  "دخوله بالنظام عن طريق برامج التواصل الاجتماعي، سيتم الموافقة على التعليق "
2336
  "فورا دون موافقة المشرف على النظام."
2337
 
2338
- #: ../admin/social_login.php:530
2339
  #, fuzzy
2340
  msgid "Text to display above the Social Login interface"
2341
  msgstr "نص للعرض أعلاه واجهة \"تسجيل الدخول الاجتماعي\""
2342
 
2343
- #: ../admin/social_login.php:538
2344
  msgid "Trigger social login in the same browser tab"
2345
  msgstr ""
2346
 
2347
- #: ../admin/social_login.php:548
2348
  msgid "Trigger social login in the same browser tab instead of a popup window"
2349
  msgstr ""
2350
 
2351
- #: ../admin/social_login.php:555
2352
  #, fuzzy
2353
  msgid "Center align icons"
2354
  msgstr "إعادة ترتيب الرموز"
2355
 
2356
- #: ../admin/social_login.php:565
2357
  #, fuzzy
2358
  msgid "Center align social login icons"
2359
  msgstr ""
@@ -2361,12 +2433,12 @@ msgstr ""
2361
  "دخوله بالنظام عن طريق برامج التواصل الاجتماعي، سيتم الموافقة على التعليق "
2362
  "فورا دون موافقة المشرف على النظام."
2363
 
2364
- #: ../admin/social_login.php:572
2365
  #, fuzzy
2366
  msgid "Enable at login page"
2367
  msgstr "صفحة"
2368
 
2369
- #: ../admin/social_login.php:582
2370
  #, fuzzy
2371
  msgid ""
2372
  "Social Login interface will get enabled at the login page of your website"
@@ -2374,12 +2446,12 @@ msgstr ""
2374
  "سوف تحصل على تمكين واجهة تسجيل الدخول الاجتماعي في النموذج الخاص بك وورد "
2375
  "التعليق"
2376
 
2377
- #: ../admin/social_login.php:589
2378
  #, fuzzy
2379
  msgid "Enable at register page"
2380
  msgstr "التسجيل العام"
2381
 
2382
- #: ../admin/social_login.php:599
2383
  #, fuzzy
2384
  msgid ""
2385
  "Social Login interface will get enabled at the registration page of your "
@@ -2388,21 +2460,21 @@ msgstr ""
2388
  "سوف تحصل على تمكين واجهة تسجيل الدخول الاجتماعي في صفحة التسجيل لموقع الويب "
2389
  "الخاص بك"
2390
 
2391
- #: ../admin/social_login.php:606
2392
  msgid "Enable at comment form"
2393
  msgstr "تمكين هذا الشكل من تعليق"
2394
 
2395
- #: ../admin/social_login.php:616
2396
  msgid "Social Login interface will get enabled at your Wordpress Comment form"
2397
  msgstr ""
2398
  "سوف تحصل على تمكين واجهة تسجيل الدخول الاجتماعي في النموذج الخاص بك وورد "
2399
  "التعليق"
2400
 
2401
- #: ../admin/social_login.php:630
2402
  msgid "Enable before WooCommerce Customer Login Form"
2403
  msgstr "تمكين قبل WooCommerce نموذج تسجيل دخول العملاء"
2404
 
2405
- #: ../admin/social_login.php:640
2406
  #, fuzzy
2407
  msgid ""
2408
  "Social Login Interface will get enabled before the customer login form at "
@@ -2411,12 +2483,12 @@ msgstr ""
2411
  "سوف تحصل على تمكين واجهة تسجيل الدخول الاجتماعي في النموذج الخاص بك وورد "
2412
  "التعليق"
2413
 
2414
- #: ../admin/social_login.php:647
2415
  #, fuzzy
2416
  msgid "Enable at WooCommerce Customer Login Form"
2417
  msgstr "تمكن بعد WooCommerce نموذج تسجيل دخول العملاء"
2418
 
2419
- #: ../admin/social_login.php:657
2420
  #, fuzzy
2421
  msgid ""
2422
  "Integrate Social Login Interface with the customer login form at WooCommerce "
@@ -2425,12 +2497,12 @@ msgstr ""
2425
  "سوف تحصل على تمكين واجهة تسجيل الدخول الاجتماعي في النموذج الخاص بك وورد "
2426
  "التعليق"
2427
 
2428
- #: ../admin/social_login.php:664
2429
  #, fuzzy
2430
  msgid "Enable at WooCommerce Customer Register Form"
2431
  msgstr "تمكن بعد WooCommerce نموذج تسجيل دخول العملاء"
2432
 
2433
- #: ../admin/social_login.php:674
2434
  #, fuzzy
2435
  msgid ""
2436
  "Integrate Social Login Interface with the customer register form at "
@@ -2439,26 +2511,26 @@ msgstr ""
2439
  "سوف تحصل على تمكين واجهة تسجيل الدخول الاجتماعي في النموذج الخاص بك وورد "
2440
  "التعليق"
2441
 
2442
- #: ../admin/social_login.php:681
2443
  #, fuzzy
2444
  msgid "Enable at WooCommerce checkout page"
2445
  msgstr "التسجيل العام"
2446
 
2447
- #: ../admin/social_login.php:691
2448
  #, fuzzy
2449
  msgid "Social Login Interface will get enabled at WooCommerce checkout page"
2450
  msgstr ""
2451
  "سوف تحصل على تمكين واجهة تسجيل الدخول الاجتماعي في النموذج الخاص بك وورد "
2452
  "التعليق"
2453
 
2454
- #: ../admin/social_login.php:701
2455
  #, fuzzy
2456
  msgid "Auto-approve comments made by Social Login users"
2457
  msgstr ""
2458
  "السيارات--الموافقة على التعليقات التي أدلى بها المستخدمين \"تسجيل الدخول "
2459
  "الاجتماعي\""
2460
 
2461
- #: ../admin/social_login.php:711
2462
  msgid ""
2463
  "If this option is enabled, and WordPress comment is made by Social Login "
2464
  "user, comment will get approved immediately without keeping in moderation."
@@ -2467,17 +2539,17 @@ msgstr ""
2467
  "دخوله بالنظام عن طريق برامج التواصل الاجتماعي، سيتم الموافقة على التعليق "
2468
  "فورا دون موافقة المشرف على النظام."
2469
 
2470
- #: ../admin/social_login.php:712
2471
  #, fuzzy
2472
  msgid "Note: This is not related to Facebook comments"
2473
  msgstr "ملاحظة: هذا لا تتعلق بتعليقات ألفيس بوك"
2474
 
2475
- #: ../admin/social_login.php:721
2476
  #, fuzzy
2477
  msgid "Enable social avatar"
2478
  msgstr "خدمة الشبكة الاجتماعية"
2479
 
2480
- #: ../admin/social_login.php:731
2481
  #, fuzzy
2482
  msgid ""
2483
  "Social profile pictures of the logged in user will be displayed as profile "
@@ -2486,39 +2558,39 @@ msgstr ""
2486
  "سيتم عرض الصور الشخصية الاجتماعية لمستخدم تم تسجيل دخوله كالصورة الرمزية "
2487
  "الشخصية"
2488
 
2489
- #: ../admin/social_login.php:740
2490
  #, fuzzy
2491
  msgid "Avatar quality"
2492
  msgstr "نوعية الصورة الرمزية"
2493
 
2494
- #: ../admin/social_login.php:743
2495
  #, fuzzy
2496
  msgid "Average"
2497
  msgstr "المعدل"
2498
 
2499
- #: ../admin/social_login.php:744
2500
  msgid "Best"
2501
  msgstr "أفضل"
2502
 
2503
- #: ../admin/social_login.php:751
2504
  #, fuzzy
2505
  msgid "Choose avatar quality"
2506
  msgstr "إختيار ملف"
2507
 
2508
- #: ../admin/social_login.php:759
2509
  #, fuzzy
2510
  msgid ""
2511
  "Show option for users to update social avatar at BuddyPress profile page"
2512
  msgstr ""
2513
  "تمكين هذا الخيار لإظهار حساب الاجتماعية ربط واجهة الصفحة الشخصية BuddyPress"
2514
 
2515
- #: ../admin/social_login.php:769
2516
  msgid ""
2517
  "If enabled, users would be able to update their social avatar from \"Profile "
2518
  "photo\" section in BuddyPress profile at front-end"
2519
  msgstr ""
2520
 
2521
- #: ../admin/social_login.php:789
2522
  #, fuzzy
2523
  msgid ""
2524
  "If enabled and Social ID provider does not provide user's email address on "
@@ -2529,11 +2601,11 @@ msgstr ""
2529
  "تسجيل الدخول، سيتم مطالبة المستخدم بتوفير عنوانه الإلكتروني. وإلا، سيتم "
2530
  "إنشاء بريد إلكتروني وهمية"
2531
 
2532
- #: ../admin/social_login.php:797
2533
  msgid "Send post-registration email to user to set account password"
2534
  msgstr ""
2535
 
2536
- #: ../admin/social_login.php:807
2537
  #, fuzzy
2538
  msgid ""
2539
  "If enabled, an email will be sent to user after registration through Social "
@@ -2545,12 +2617,12 @@ msgstr ""
2545
  "الدخول (اسم المستخدم-كلمة المرور لتكون قادراً على تسجيل الدخول عن طريق نموذج "
2546
  "تسجيل الدخول التقليدية)"
2547
 
2548
- #: ../admin/social_login.php:814
2549
  #, fuzzy
2550
  msgid "Send new user registration notification email to admin"
2551
  msgstr "تسجيل المستخدم تعطيل عن طريق تسجيل الدخول الاجتماعي"
2552
 
2553
- #: ../admin/social_login.php:824
2554
  #, fuzzy
2555
  msgid ""
2556
  "If enabled, an email will be sent to admin after new user registers through "
@@ -2561,47 +2633,47 @@ msgstr ""
2561
  "الدخول (اسم المستخدم-كلمة المرور لتكون قادراً على تسجيل الدخول عن طريق نموذج "
2562
  "تسجيل الدخول التقليدية)"
2563
 
2564
- #: ../admin/social_login.php:831
2565
  #, fuzzy
2566
  msgid "Login redirection"
2567
  msgstr "تسجيل الدخول"
2568
 
2569
- #: ../admin/social_login.php:835
2570
  #, fuzzy
2571
  msgid "Same page where user logged in"
2572
  msgstr "حيث يتم تسجيل المستخدم في الصفحة نفسها"
2573
 
2574
- #: ../admin/social_login.php:839 ../admin/social_login.php:868
2575
  #, fuzzy
2576
  msgid "Account dashboard"
2577
  msgstr " لوحتك الخاصة بالتحكم"
2578
 
2579
- #: ../admin/social_login.php:842 ../admin/social_login.php:871
2580
  #, fuzzy
2581
  msgid "BuddyPress profile page"
2582
  msgstr "تحرير ملفي الشخصي"
2583
 
2584
- #: ../admin/social_login.php:845 ../admin/social_login.php:874
2585
  #, fuzzy
2586
  msgid "Custom Url"
2587
  msgstr "رابط (URL) مخصّص"
2588
 
2589
- #: ../admin/social_login.php:853
2590
  #, fuzzy
2591
  msgid "User will be redirected to the selected page after Social Login"
2592
  msgstr "ستتم إعادة توجيه المستخدم إلى الصفحة المحددة بعد \"الدخول الاجتماعي\""
2593
 
2594
- #: ../admin/social_login.php:860
2595
  #, fuzzy
2596
  msgid "Registration redirection"
2597
  msgstr "نموذج التسجيل"
2598
 
2599
- #: ../admin/social_login.php:864
2600
  #, fuzzy
2601
  msgid "Same page from where user registered"
2602
  msgstr "الصفحة نفسها من حيث تسجيل المستخدم"
2603
 
2604
- #: ../admin/social_login.php:882
2605
  #, fuzzy
2606
  msgid ""
2607
  "User will be redirected to the selected page after registration (first "
@@ -2610,17 +2682,17 @@ msgstr ""
2610
  "ستتم إعادة توجيه المستخدم إلى الصفحة المحددة بعد التسجيل (تسجيل الدخول "
2611
  "الاجتماعي الأول) من خلال \"تسجيل الدخول الاجتماعي\""
2612
 
2613
- #: ../admin/social_login.php:891
2614
  #, fuzzy
2615
  msgid "Social Account Linking Options"
2616
  msgstr "تعطيل تعليقا الاجتماعي على هذا"
2617
 
2618
- #: ../admin/social_login.php:906
2619
  #, fuzzy
2620
  msgid "Text to display above the Social Account Linking interface"
2621
  msgstr "نص للعرض أعلاه واجهة \"تسجيل الدخول الاجتماعي\""
2622
 
2623
- #: ../admin/social_login.php:913
2624
  #, fuzzy
2625
  msgid ""
2626
  "Link social account to already existing account, if email address matches"
@@ -2628,7 +2700,7 @@ msgstr ""
2628
  "الرجاء القيام بربط الحساب الإجتماعي الخاص بك للتمكن من تسجيل الدخول العام "
2629
  "الى حسابك في هذا الموقع"
2630
 
2631
- #: ../admin/social_login.php:923
2632
  msgid ""
2633
  "If email address of the user's Social Account matches with an already "
2634
  "existing account at your website, that social account will be linked to "
@@ -2636,12 +2708,12 @@ msgid ""
2636
  "Linking interface at their profile page."
2637
  msgstr ""
2638
 
2639
- #: ../admin/social_login.php:931
2640
  #, fuzzy
2641
  msgid "Enable social account linking at BuddyPress profile page"
2642
  msgstr "تمكين حساب الاجتماعية ربط الصفحة الشخصية BuddyPress"
2643
 
2644
- #: ../admin/social_login.php:941
2645
  #, fuzzy
2646
  msgid ""
2647
  "Enable this option to show social account linking interface at BuddyPress "
@@ -2649,17 +2721,17 @@ msgid ""
2649
  msgstr ""
2650
  "تمكين هذا الخيار لإظهار حساب الاجتماعية ربط واجهة الصفحة الشخصية BuddyPress"
2651
 
2652
- #: ../admin/social_login.php:952
2653
  #, fuzzy
2654
  msgid "Email popup options"
2655
  msgstr "الخيارات"
2656
 
2657
- #: ../admin/social_login.php:957
2658
  #, fuzzy
2659
  msgid "Text on 'Email required' popup"
2660
  msgstr "البريد الإلكتروني (Email) - الإدخال إجباري"
2661
 
2662
- #: ../admin/social_login.php:967
2663
  #, fuzzy
2664
  msgid ""
2665
  "This text will be displayed on email required popup. Leave empty if not "
@@ -2668,12 +2740,12 @@ msgstr ""
2668
  "سيتم عرض هذا النص على البريد الإلكتروني المطلوب المنبثقة. ترك فارغاً إذا كان "
2669
  "غير مطلوب."
2670
 
2671
- #: ../admin/social_login.php:975
2672
  #, fuzzy
2673
  msgid "Error message for 'Email required' popup"
2674
  msgstr "رسالة الإعلام بالخطأ لانبثاق 'البريد الإلكتروني مطلوب'"
2675
 
2676
- #: ../admin/social_login.php:985
2677
  #, fuzzy
2678
  msgid ""
2679
  "This message will be displayed to user if it provides invalid or already "
@@ -2682,12 +2754,12 @@ msgstr ""
2682
  "سيتم عرض هذه الرسالة إلى المستخدم إذا كان يوفر البريد الإلكتروني غير صالح أو "
2683
  "المسجلة مسبقاً"
2684
 
2685
- #: ../admin/social_login.php:993
2686
  #, fuzzy
2687
  msgid "Email popup height"
2688
  msgstr "ارتفاع"
2689
 
2690
- #: ../admin/social_login.php:1003
2691
  #, fuzzy
2692
  msgid ""
2693
  "If you are seeing vertical scrollbar in the \"Email required\" popup, you "
@@ -2697,12 +2769,12 @@ msgstr ""
2697
  "إذا كنت ترى شريط التمرير العمودي في منبثق \"البريد الإلكتروني المطلوبة\"، "
2698
  "يمكنك زيادة ارتفاع المنبثقة عن طريق تحديد هذا الخيار. ترك فارغاً للافتراضي."
2699
 
2700
- #: ../admin/social_login.php:1010
2701
  #, fuzzy
2702
  msgid "Enable email verification"
2703
  msgstr "تمكين ايقونات المشاركة عبر البريد الإلكتروني "
2704
 
2705
- #: ../admin/social_login.php:1020
2706
  #, fuzzy
2707
  msgid ""
2708
  "If enabled, email provided by the user will be verified by sending a "
@@ -2713,22 +2785,22 @@ msgstr ""
2713
  "وصلة تأكيد لهذا البريد الإلكتروني. أن لا يكون المستخدم قادراً على تسجيل "
2714
  "الدخول دون التحقق من البريد الإلكتروني صفحته/صفحتها"
2715
 
2716
- #: ../admin/social_login.php:1040
2717
  #, fuzzy
2718
  msgid "Enable GDPR opt-in"
2719
  msgstr "إتاحة التعليق من هارد"
2720
 
2721
- #: ../admin/social_login.php:1050
2722
  msgid ""
2723
  "Enable it to show GDPR opt-in for social login and social account linking"
2724
  msgstr ""
2725
 
2726
- #: ../admin/social_login.php:1058
2727
  #, fuzzy
2728
  msgid "Placement of GDPR opt-in"
2729
  msgstr "إتاحة التعليق من هارد"
2730
 
2731
- #: ../admin/social_login.php:1062
2732
  #, fuzzy
2733
  msgid "Above Social Login icons"
2734
  msgstr ""
@@ -2736,7 +2808,7 @@ msgstr ""
2736
  "دخوله بالنظام عن طريق برامج التواصل الاجتماعي، سيتم الموافقة على التعليق "
2737
  "فورا دون موافقة المشرف على النظام."
2738
 
2739
- #: ../admin/social_login.php:1064
2740
  #, fuzzy
2741
  msgid "Below Social Login icons"
2742
  msgstr ""
@@ -2744,84 +2816,84 @@ msgstr ""
2744
  "دخوله بالنظام عن طريق برامج التواصل الاجتماعي، سيتم الموافقة على التعليق "
2745
  "فورا دون موافقة المشرف على النظام."
2746
 
2747
- #: ../admin/social_login.php:1070
2748
  #, fuzzy
2749
  msgid "Placement of GDPR opt-in above or below the social login icons"
2750
  msgstr "نص للعرض أعلاه واجهة \"تسجيل الدخول الاجتماعي\""
2751
 
2752
- #: ../admin/social_login.php:1077
2753
  msgid "Opt-in text"
2754
  msgstr ""
2755
 
2756
- #: ../admin/social_login.php:1087
2757
  #, fuzzy
2758
  msgid "Text for the GDPR opt-in"
2759
  msgstr "إتاحة التعليق من هارد"
2760
 
2761
- #: ../admin/social_login.php:1094
2762
  msgid "Text to link to Terms-Conditions page"
2763
  msgstr ""
2764
 
2765
- #: ../admin/social_login.php:1104
2766
  msgid "Word(s) in the opt-in text to be linked to terms-conditions page"
2767
  msgstr ""
2768
 
2769
- #: ../admin/social_login.php:1111
2770
  msgid "Terms-Conditions Url"
2771
  msgstr ""
2772
 
2773
- #: ../admin/social_login.php:1121
2774
  #, fuzzy
2775
  msgid "Url of the terms-conditions page of your website"
2776
  msgstr "URL لعملاء الموقع (اختياري)"
2777
 
2778
- #: ../admin/social_login.php:1128
2779
  msgid "Text to link to Privacy Policy page"
2780
  msgstr ""
2781
 
2782
- #: ../admin/social_login.php:1138
2783
  msgid "Word(s) in the opt-in text to be linked to privacy policy page"
2784
  msgstr ""
2785
 
2786
- #: ../admin/social_login.php:1145
2787
  msgid "Privacy Policy Url"
2788
  msgstr ""
2789
 
2790
- #: ../admin/social_login.php:1155
2791
  #, fuzzy
2792
  msgid "Url of the privacy policy page of your website"
2793
  msgstr "URL لعملاء الموقع (اختياري)"
2794
 
2795
- #: ../admin/social_login.php:1206 ../inc/widget.php:260 ../inc/widget.php:438
2796
  #: ../inc/widget.php:602 ../inc/widget.php:750
2797
  #, fuzzy
2798
  msgid "Select"
2799
  msgstr "أختر ..."
2800
 
2801
- #: ../admin/social_login.php:1237
2802
  #, fuzzy
2803
  msgid "Social Login Shortcode & Widget"
2804
  msgstr "استخدم كود مختصر | Include the shortcode"
2805
 
2806
- #: ../admin/social_login.php:1238
2807
  msgid "Social Linking Shortcode"
2808
  msgstr "الربط الاجتماعي رمز قصير"
2809
 
2810
- #: ../admin/social_login.php:1253
2811
  msgid "Why is social login not working?"
2812
  msgstr ""
2813
 
2814
- #: ../admin/social_login.php:1254
2815
  msgid ""
2816
  "Make sure that App ID and Secret (Client ID and Secret) keys you have saved, "
2817
  "belong to the same app"
2818
  msgstr ""
2819
 
2820
- #: ../admin/social_login.php:1256
2821
  msgid "Social Login not working with Varnish enabled"
2822
  msgstr ""
2823
 
2824
- #: ../admin/social_login.php:1257
2825
  msgid ""
2826
  "Why the user is not appearing logged in even after Social Login until the "
2827
  "webpage is refreshed manually?"
@@ -3065,29 +3137,29 @@ msgstr "طلب غير صحيح"
3065
  msgid "Providers not selected"
3066
  msgstr "محدد | selected"
3067
 
3068
- #: ../inc/social_login.php:747
3069
  #, fuzzy
3070
  msgid "Email"
3071
  msgstr "البريد الإلكتروني"
3072
 
3073
- #: ../inc/social_login.php:748
3074
  msgid "Confirm email"
3075
  msgstr ""
3076
 
3077
- #: ../inc/social_login.php:750
3078
  msgid "Save"
3079
  msgstr ""
3080
 
3081
- #: ../inc/social_login.php:751
3082
  msgid "Cancel"
3083
  msgstr ""
3084
 
3085
- #: ../inc/social_login.php:825
3086
  #, fuzzy
3087
  msgid "Email Verification"
3088
  msgstr "تمكين ايقونات المشاركة عبر البريد الإلكتروني "
3089
 
3090
- #: ../inc/social_login.php:827
3091
  msgid ""
3092
  "Please click on the following link or paste it in browser to verify your "
3093
  "email"
@@ -3671,10 +3743,6 @@ msgstr ""
3671
  #~ msgid "Print"
3672
  #~ msgstr "طباعة"
3673
 
3674
- #, fuzzy
3675
- #~ msgid "Yahoo"
3676
- #~ msgstr "ياهو ماسنجر"
3677
-
3678
  #, fuzzy
3679
  #~ msgid "Reddit"
3680
  #~ msgstr "ريديت"
2
  msgstr ""
3
  "Project-Id-Version: Super Socializer\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2020-09-23 09:45+0530\n"
6
+ "PO-Revision-Date: 2020-09-23 09:45+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:667
19
  msgid "Problem fetching access token: "
20
  msgstr ""
21
 
22
+ #: ../super_socializer.php:671 ../super_socializer.php:685
23
  msgid "Facebook SDK returned an error: "
24
  msgstr ""
25
 
26
+ #: ../super_socializer.php:681
27
  msgid "Graph returned an error: "
28
  msgstr ""
29
 
30
+ #: ../super_socializer.php:870
31
  #, fuzzy
32
  msgid ""
33
  "cURL is not enabled at your website server. Please contact your website "
36
  "يتم تمكين جعل الضفيرة متأكدا في الخادم موقع الويب الخاص بك. قد تحتاج إلى "
37
  "الاتصال بمسؤول الملقم من موقع الويب الخاص بك للتحقق من ذلك"
38
 
39
+ #: ../super_socializer.php:898
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:901
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:904
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:1086 ../helper.php:961
66
  msgid "Please verify your email address to login."
67
  msgstr "يرجى التحقق من عنوان البريد الإلكتروني الخاص بك للدخول."
68
 
69
+ #: ../super_socializer.php:1086
70
  msgid "Your email has been verified. Now you can login to your account"
71
  msgstr "تم التحقق من بريدك الإلكتروني. الآن يمكنك تسجيل الدخول إلى حسابك"
72
 
73
+ #: ../super_socializer.php:1090
74
  msgid "Notification"
75
  msgstr "تنبيهات"
76
 
77
+ #: ../super_socializer.php:1108 ../admin/social_login.php:869
78
  msgid "Email required"
79
  msgstr "البريد الإلكتروني - إدخال القيمة إجباري"
80
 
81
+ #: ../super_socializer.php:1111
82
  msgid "Please check your email inbox to complete the registration."
83
  msgstr "يرجى التحقق من بريدك الالكتروني لإكمال التسجيل."
84
 
85
+ #: ../super_socializer.php:1180
86
  msgid "Leave a reply"
87
  msgstr "اترك رد"
88
 
89
+ #: ../super_socializer.php:1196 ../inc/social_sharing.php:241
90
  msgid "Shares"
91
  msgstr ""
92
 
93
+ #: ../super_socializer.php:1196 ../inc/social_sharing.php:241
94
  msgid "Share"
95
  msgstr ""
96
 
97
+ #: ../super_socializer.php:1196
98
  #, fuzzy
99
  msgid "Link copied."
100
  msgstr "شارك الأخرين عبر لنكيدان"
101
 
102
+ #: ../super_socializer.php:1441
103
  #, fuzzy
104
  msgid "Super Socializer - General Options"
105
  msgstr "آخر تسجيل دخول | Last Login"
106
 
107
+ #: ../super_socializer.php:1441 ../admin/general_options.php:15
108
  #: ../admin/social_commenting.php:47
109
  #, fuzzy
110
  msgid "General Options"
111
  msgstr "المشاركات الأفقي"
112
 
113
+ #: ../super_socializer.php:1509 ../helper.php:883
114
  #, fuzzy
115
  msgid "Social Avatar"
116
  msgstr "صغير الرمزية رابط"
117
 
118
+ #: ../super_socializer.php:1512
119
  msgid "Small Avatar Url"
120
  msgstr "صغير الرمزية رابط"
121
 
122
+ #: ../super_socializer.php:1516
123
  #, fuzzy
124
  msgid "Large Avatar Url"
125
  msgstr "الرابط المصدر و الرابط الهدف لا يمكن أن يكونا متطابقين."
126
 
127
+ #: ../super_socializer.php:1520 ../helper.php:886
128
  msgid ""
129
  "Do not fetch and update social avatar from my profile, next time I Social "
130
  "Login"
131
  msgstr ""
132
 
133
+ #: ../super_socializer.php:1524 ../helper.php:887
134
  msgid "Update social avatar, next time I Social Login"
135
  msgstr ""
136
 
137
+ #: ../super_socializer.php:1601
138
  msgid "Login with your Social ID"
139
  msgstr ""
140
 
141
+ #: ../super_socializer.php:1602
142
  msgid "Email you entered is already registered or invalid"
143
  msgstr "البريد الإلكتروني الذي أدخلته غير مسجل من قبل أو غير صالحة"
144
 
145
+ #: ../super_socializer.php:1607
146
  msgid "Please enter a valid email address. You might be required to verify it"
147
  msgstr "يرجى إدخال عنوان بريد إلكتروني صالح. قد تكون هناك حاجة للتحقق من ذلك"
148
 
149
+ #: ../super_socializer.php:1611 ../super_socializer.php:2309
150
  msgid "Link your social account to login to your account at this website"
151
  msgstr ""
152
  "الرجاء القيام بربط الحساب الإجتماعي الخاص بك للتمكن من تسجيل الدخول العام "
153
  "الى حسابك في هذا الموقع"
154
 
155
+ #: ../super_socializer.php:1851
156
  msgid "Thanks for installing Super Socializer plugin"
157
  msgstr ""
158
 
159
+ #: ../super_socializer.php:1853
160
  msgid "Configure the Plugin"
161
  msgstr ""
162
 
163
+ #: ../super_socializer.php:1864
164
  msgid ""
165
  "Update \"Facebook Comments Moderation\" add-on for compatibility with "
166
  "current version of Super Socializer"
167
  msgstr ""
168
 
169
+ #: ../super_socializer.php:1873
170
  msgid ""
171
  "Update \"Facebook Comments Notifier\" add-on for compatibility with current "
172
  "version of Super Socializer"
173
  msgstr ""
174
 
175
+ #: ../super_socializer.php:1882
176
  msgid ""
177
  "Update \"Social Login Buttons\" add-on for compatibility with current "
178
  "version of Super Socializer"
179
  msgstr ""
180
 
181
+ #: ../super_socializer.php:1891
182
  msgid ""
183
  "Update \"Social Share myCRED Integration\" add-on for maximum compatibility "
184
  "with current version of Super Socializer"
185
  msgstr ""
186
 
187
+ #: ../super_socializer.php:1900
188
  msgid ""
189
  "Update \"Social Login myCRED Integration\" add-on for maximum compatibility "
190
  "with current version of Super Socializer"
191
  msgstr ""
192
 
193
+ #: ../super_socializer.php:1911
194
  #, php-format
195
  msgid ""
196
  "To continue using Steam login save Steam API key <a href=\"%s\">here</a>"
197
  msgstr ""
198
 
199
+ #: ../super_socializer.php:1920
200
  #, php-format
201
  msgid ""
202
  "To continue using Instagram login create a new Instagram App as described <a "
204
  "Instagram App Secret <a href=\"%s\">here</a>"
205
  msgstr ""
206
 
207
+ #: ../super_socializer.php:1929 ../super_socializer.php:1938
208
  #, php-format
209
  msgid ""
210
  "To continue using bitly url shortener, login to your bit.ly account and "
213
  "\">here</a>. More details at the <a href=\"%s\" target=\"_blank\">link</a>"
214
  msgstr ""
215
 
216
+ #: ../super_socializer.php:1954
217
  #, php-format
218
  msgid ""
219
  "To continue using Social Login, save the secret keys <a href=\"%s\">here</a>"
220
  msgstr ""
221
 
222
+ #: ../super_socializer.php:1978
223
  #, php-format
224
  msgid ""
225
  "Add %s in \"Valid OAuth redirect URIs\" option in your Facebook app settings "
227
  "target=\"_blank\">here</a>"
228
  msgstr ""
229
 
230
+ #: ../super_socializer.php:1978 ../super_socializer.php:2003
231
+ #: ../super_socializer.php:2028 ../super_socializer.php:2053
232
+ #: ../super_socializer.php:2086 ../super_socializer.php:2114
233
+ #: ../super_socializer.php:2141
234
  msgid "Okay"
235
  msgstr ""
236
 
237
+ #: ../super_socializer.php:2003
238
  #, php-format
239
  msgid ""
240
  "Add %s in \"Callback URLs\" option in your Twitter app settings for Twitter "
242
  "\">here</a>"
243
  msgstr ""
244
 
245
+ #: ../super_socializer.php:2028
246
  #, php-format
247
  msgid ""
248
  "Add %s in \"Authorized Redirect URLs\" option in your Linkedin app settings "
250
  "target=\"_blank\">here</a>"
251
  msgstr ""
252
 
253
+ #: ../super_socializer.php:2053
254
  #, php-format
255
  msgid ""
256
  "Add %s in \"Authorized redirect URIs\" option in your Google client settings "
258
  "target=\"_blank\">here</a>"
259
  msgstr ""
260
 
261
+ #: ../super_socializer.php:2064
262
  #, php-format
263
  msgid ""
264
  "Save the url of privacy policy page of your website <a href=\"%s\">here</a>"
265
  msgstr ""
266
 
267
+ #: ../super_socializer.php:2086
268
  #, php-format
269
  msgid ""
270
  "This plugin is GDPR compliant. You need to update the privacy policy of your "
272
  "\"%s\" target=\"_blank\">here</a>"
273
  msgstr ""
274
 
275
+ #: ../super_socializer.php:2114
276
  #, php-format
277
  msgid ""
278
  "Now plugin supports a new service Twitcount.com to show Twitter shares. To "
281
  "your website %s with them. No need to copy-paste any code from their website."
282
  msgstr ""
283
 
284
+ #: ../super_socializer.php:2141
285
  #, php-format
286
  msgid ""
287
  "Replace url saved in \"Callback URLs\" option in your Twitter app settings "
289
  "\"%s\" target=\"_blank\">here</a>"
290
  msgstr ""
291
 
292
+ #: ../super_socializer.php:2166
293
  #, php-format
294
  msgid ""
295
  "If you cannot get Linkedin login to work after updating the plugin, replace "
297
  "For more details, check step 6 <a href=\"%s\" target=\"_blank\">here</a>"
298
  msgstr ""
299
 
300
+ #: ../super_socializer.php:2166 ../super_socializer.php:2193
301
  msgid "Dismiss"
302
  msgstr ""
303
 
304
+ #: ../super_socializer.php:2192
305
  #, php-format
306
  msgid ""
307
  "Save Facebook App ID and Secret keys in \"Standard Interface\" and/or "
310
  "that, clear share counts cache from \"Miscellaneous\" section"
311
  msgstr ""
312
 
313
+ #: ../super_socializer.php:2385
314
  msgid ""
315
  "Your browser is blocking some features of this website. Please follow the "
316
  "instructions at {support_url} to unblock these."
422
 
423
  #: ../helper.php:898 ../admin/general_options.php:89
424
  #: ../admin/social_sharing.php:1944 ../admin/social_commenting.php:400
425
+ #: ../admin/social_login.php:1359 ../admin/like_buttons.php:780
426
  #, fuzzy
427
  msgid "Save Changes"
428
  msgstr "حفظ"
447
  #: ../admin/general_options.php:7 ../admin/general_options.php:93
448
  #: ../admin/social_sharing.php:5 ../admin/social_sharing.php:1948
449
  #: ../admin/social_commenting.php:5 ../admin/social_commenting.php:404
450
+ #: ../admin/social_login.php:5 ../admin/social_login.php:1363
451
  #: ../admin/like_buttons.php:6 ../admin/like_buttons.php:784
452
  #, fuzzy, php-format
453
  msgid ""
506
  msgstr ""
507
 
508
  #: ../admin/general_options.php:103 ../admin/social_sharing.php:1954
509
+ #: ../admin/social_commenting.php:410 ../admin/social_login.php:1369
510
  #: ../admin/like_buttons.php:790
511
  #, fuzzy
512
  msgid "Instagram Shoutout"
513
  msgstr "إنستاجرام"
514
 
515
  #: ../admin/general_options.php:105 ../admin/social_sharing.php:1956
516
+ #: ../admin/social_commenting.php:412 ../admin/social_login.php:1371
517
  #: ../admin/like_buttons.php:792
518
  msgid ""
519
  "If you can send (to hello@heateor.com) how this plugin is helping your "
664
 
665
  #: ../admin/social_sharing.php:67 ../admin/social_sharing.php:1869
666
  #: ../admin/social_sharing.php:1871 ../admin/social_login.php:45
667
+ #: ../admin/social_login.php:1325 ../admin/like_buttons.php:50
668
  #: ../admin/like_buttons.php:751
669
  #, fuzzy
670
  msgid "Shortcode & Widget"
677
 
678
  #: ../admin/social_sharing.php:69 ../admin/social_sharing.php:1902
679
  #: ../admin/social_commenting.php:40 ../admin/social_commenting.php:384
680
+ #: ../admin/social_login.php:46 ../admin/social_login.php:1339
681
  #: ../admin/like_buttons.php:51 ../admin/like_buttons.php:764
682
  #, fuzzy
683
  msgid "FAQ"
937
  msgid "Url to share"
938
  msgstr " شارك الآخرين بهذة الفقرة"
939
 
940
+ #: ../admin/social_sharing.php:725 ../admin/social_login.php:610
941
+ #: ../admin/social_login.php:986 ../admin/like_buttons.php:105
942
  #: ../inc/widget.php:945
943
  #, fuzzy
944
  msgid "Title"
1036
  msgstr ""
1037
 
1038
  #: ../admin/social_sharing.php:957 ../admin/social_sharing.php:1383
1039
+ #: ../admin/social_login.php:927 ../admin/social_login.php:956
1040
  #: ../admin/like_buttons.php:218 ../admin/like_buttons.php:494
1041
  #, fuzzy
1042
  msgid "Homepage"
1317
  msgid "Required only to track Facebook share count"
1318
  msgstr ""
1319
 
1320
+ #: ../admin/social_sharing.php:1584 ../admin/social_login.php:158
1321
  #, fuzzy
1322
  msgid "Facebook App ID"
1323
  msgstr "رقم التعريف الخالص بك | ID"
1332
  "في <a href=\"%s\" target=\"_blank\">هذا الارتباط</a> للحصول على معرف التطبيق "
1333
  "فيسبوك"
1334
 
1335
+ #: ../admin/social_sharing.php:1601 ../admin/social_login.php:179
1336
  #, fuzzy
1337
  msgid "Facebook App Secret"
1338
  msgstr "رقم التعريف الخالص بك | ID"
1526
  "إشكالية (حيث تقاسم بوك لا يعمل بشكل صحيح) من موقع الويب الخاص بك في حقل النص:"
1527
 
1528
  #: ../admin/social_sharing.php:1904 ../admin/social_commenting.php:386
1529
+ #: ../admin/social_login.php:1341
1530
  msgid ""
1531
  "<strong>Note:</strong> Plugin will not work on local server. You should have "
1532
  "an online website for the plugin to function properly."
1581
  msgstr ""
1582
 
1583
  #: ../admin/social_sharing.php:1919 ../admin/social_commenting.php:389
1584
+ #: ../admin/social_login.php:1348
1585
  msgid "Why is my browser blocking some features of the plugin?"
1586
  msgstr ""
1587
 
1932
  msgid "Advanced Configuration"
1933
  msgstr "إنشاء ملف الإعدادات"
1934
 
1935
+ #: ../admin/social_login.php:41 ../admin/social_login.php:1125
1936
  msgid "GDPR"
1937
  msgstr ""
1938
 
1939
+ #: ../admin/social_login.php:43 ../admin/social_login.php:1276
1940
  msgid "XProfile Integration"
1941
  msgstr ""
1942
 
2011
  msgstr ""
2012
 
2013
  #: ../admin/social_login.php:135
2014
+ msgid "Wordpress"
2015
+ msgstr ""
2016
+
2017
+ #: ../admin/social_login.php:139
2018
  msgid "Windows Live"
2019
  msgstr ""
2020
 
2021
  #: ../admin/social_login.php:143
2022
  #, fuzzy
2023
+ msgid "Yahoo"
2024
+ msgstr "ياهو ماسنجر"
2025
+
2026
+ #: ../admin/social_login.php:151
2027
+ #, fuzzy
2028
  msgid "Select Social ID provider to enable in Social Login"
2029
  msgstr "حدد موفر \"معرف الاجتماعية\" لتمكين \"تسجيل الدخول الاجتماعي\""
2030
 
2031
+ #: ../admin/social_login.php:168
2032
  #, fuzzy, php-format
2033
  msgid ""
2034
  "Required for Facebook Social Login to work. Please follow the documentation "
2038
  "في <a href=\"%s\" target=\"_blank\">هذا الارتباط</a> للحصول على معرف التطبيق "
2039
  "فيسبوك"
2040
 
2041
+ #: ../admin/social_login.php:170 ../admin/social_login.php:191
2042
  #, fuzzy
2043
  msgid ""
2044
  "Paste following url in <strong>Site URL</strong> option mentioned at the link"
2046
  "لصق التالية url في الخيار <strong>محدد موقع معلومات الموقع</strong> في "
2047
  "الوصلة المذكورة"
2048
 
2049
+ #: ../admin/social_login.php:189
2050
  #, fuzzy, php-format
2051
  msgid ""
2052
  "Required for Facebook Social Login to work. Please follow the documentation "
2056
  "في <a href=\"%s\" target=\"_blank\">هذا الارتباط</a> للحصول على معرف التطبيق "
2057
  "فيسبوك"
2058
 
2059
+ #: ../admin/social_login.php:200
2060
  #, fuzzy
2061
  msgid "Twitter API Key"
2062
  msgstr "مفتاح API الخاص | API Private Key"
2063
 
2064
+ #: ../admin/social_login.php:210
2065
  #, fuzzy, php-format
2066
  msgid ""
2067
  "Required for Twitter Social Login to work. Please follow the documentation "
2071
  "الموجودة في <a href=\"%s\" target=\"_blank\">هذا الارتباط</a> للحصول على "
2072
  "\"مفتاح API التغريد\""
2073
 
2074
+ #: ../admin/social_login.php:212 ../admin/social_login.php:237
2075
  #, fuzzy
2076
  msgid ""
2077
  "Paste following url in <strong>Website</strong> option mentioned at the link"
2078
  msgstr "لصق التالية url في خيار <strong>URL الموقع</strong> في الوصلة المذكورة"
2079
 
2080
+ #: ../admin/social_login.php:216 ../admin/social_login.php:241
2081
+ #: ../admin/social_login.php:429 ../admin/social_login.php:449
2082
+ #: ../admin/social_login.php:469 ../admin/social_login.php:489
2083
  #, fuzzy
2084
  msgid ""
2085
  "Paste following url in <strong>Callback URL</strong> option mentioned at the "
2088
  "لصق التالية url في الخيار <strong>المجال رد الاتصال</strong> في الوصلة "
2089
  "المذكورة"
2090
 
2091
+ #: ../admin/social_login.php:225
2092
  #, fuzzy
2093
  msgid "Twitter API Secret"
2094
  msgstr "شارك الأخرين عبر تويتر"
2095
 
2096
+ #: ../admin/social_login.php:235
2097
  #, fuzzy, php-format
2098
  msgid ""
2099
  "Required for Twitter Social Login to work. Please follow the documentation "
2103
  "الموجودة في <a href=\"%s\" target=\"_blank\">هذا الارتباط</a> للحصول على "
2104
  "\"سر API التغريد\""
2105
 
2106
+ #: ../admin/social_login.php:250
2107
  #, fuzzy
2108
  msgid "LinkedIn Client ID"
2109
  msgstr "شارك الأخرين عبر لنكيدان"
2110
 
2111
+ #: ../admin/social_login.php:260
2112
  #, fuzzy, php-format
2113
  msgid ""
2114
  "Required for LinkedIn Social Login to work. Please follow the documentation "
2117
  "المطلوبة للدخول الاجتماعي LinkedIn للعمل. الرجاء تتبع الوثائق الموجودة في <a "
2118
  "href=\"%s\" target=\"_blank\">هذا الارتباط</a> للحصول على مفتاح API LinkedIn"
2119
 
2120
+ #: ../admin/social_login.php:262 ../admin/social_login.php:283
2121
  #, fuzzy
2122
  msgid ""
2123
  "Paste following url in <strong>Redirect URLs</strong> option mentioned at "
2126
  "لصق التالية url في الخيار <strong>محدد موقع معلومات الموقع</strong> في "
2127
  "الوصلة المذكورة"
2128
 
2129
+ #: ../admin/social_login.php:271
2130
  #, fuzzy
2131
  msgid "LinkedIn Client Secret"
2132
  msgstr "شارك الأخرين عبر لنكيدان"
2133
 
2134
+ #: ../admin/social_login.php:281
2135
  #, fuzzy, php-format
2136
  msgid ""
2137
  "Required for LinkedIn Social Login to work. Please follow the documentation "
2141
  "المطلوبة للدخول الاجتماعي LinkedIn للعمل. الرجاء تتبع الوثائق الموجودة في <a "
2142
  "href=\"%s\" target=\"_blank\">هذا الارتباط</a> للحصول على مفتاح API LinkedIn"
2143
 
2144
+ #: ../admin/social_login.php:292
2145
  #, fuzzy
2146
  msgid "Google Client ID"
2147
  msgstr "شارك الأخرين عبر جوجل"
2148
 
2149
+ #: ../admin/social_login.php:302
2150
  #, fuzzy, php-format
2151
  msgid ""
2152
  "Required for Google Social Login to work. Please follow the documentation at "
2156
  "<a href=\"%s\" target=\"_blank\">هذا الارتباط</a> للحصول على معرف العميل "
2157
  "GooglePlus"
2158
 
2159
+ #: ../admin/social_login.php:304 ../admin/social_login.php:325
2160
  #, fuzzy
2161
  msgid ""
2162
  "Paste following url in <strong>AUTHORIZED REDIRECT URI</strong> option "
2165
  "لصق التالية url في الخيار <strong>محدد موقع معلومات الموقع</strong> في "
2166
  "الوصلة المذكورة"
2167
 
2168
+ #: ../admin/social_login.php:313
2169
  #, fuzzy
2170
  msgid "Google Client Secret"
2171
  msgstr "شارك الأخرين عبر جوجل"
2172
 
2173
+ #: ../admin/social_login.php:323
2174
  #, fuzzy, php-format
2175
  msgid ""
2176
  "Required for Google Social Login to work. Please follow the documentation at "
2180
  "<a href=\"%s\" target=\"_blank\">هذا الارتباط</a> للحصول على معرف العميل "
2181
  "GooglePlus"
2182
 
2183
+ #: ../admin/social_login.php:334
2184
  #, fuzzy
2185
  msgid "Vkontakte Application ID"
2186
  msgstr "انشر عبر VKontakte"
2187
 
2188
+ #: ../admin/social_login.php:344 ../admin/social_login.php:365
2189
  #, fuzzy, php-format
2190
  msgid ""
2191
  "Required for Vkontakte Social Login to work. Please follow the documentation "
2196
  "<a href=\"%s\" target=\"_blank\">هذا الارتباط</a> للحصول على معرف التطبيق "
2197
  "Vkontakte"
2198
 
2199
+ #: ../admin/social_login.php:346 ../admin/social_login.php:367
2200
  #, fuzzy
2201
  msgid ""
2202
  "Paste following url in <strong>Site address</strong> option mentioned at the "
2204
  msgstr ""
2205
  "لصق التالية url في خيار <strong>عنوان الموقع</strong> في الوصلة المذكورة"
2206
 
2207
+ #: ../admin/social_login.php:355
2208
  #, fuzzy
2209
  msgid "Vkontakte Secure key"
2210
  msgstr "انشر عبر VKontakte"
2211
 
2212
+ #: ../admin/social_login.php:376
2213
  #, fuzzy
2214
  msgid "Instagram App ID"
2215
  msgstr "مفتاح التشفيرمن جانب العميل | Client-Side Encryption Key"
2216
 
2217
+ #: ../admin/social_login.php:386
2218
  #, fuzzy, php-format
2219
  msgid ""
2220
  "Required for Instagram Social Login to work. Please follow the documentation "
2224
  "<a href=\"%s\" target=\"_blank\">هذا الارتباط</a> للحصول على معرف العميل "
2225
  "Instagram"
2226
 
2227
+ #: ../admin/social_login.php:388 ../admin/social_login.php:409
2228
  #, fuzzy
2229
  msgid ""
2230
  "Paste following url in <strong>Valid OAuth Redirect URIs</strong> option "
2233
  "لصق التالية url في الخيار <strong>محدد موقع معلومات الموقع</strong> في "
2234
  "الوصلة المذكورة"
2235
 
2236
+ #: ../admin/social_login.php:397
2237
  #, fuzzy
2238
  msgid "Instagram App Secret"
2239
  msgstr "إنستاجرام"
2240
 
2241
+ #: ../admin/social_login.php:407
2242
  #, fuzzy, php-format
2243
  msgid ""
2244
  "Required for Instagram Social Login to work. Please follow the documentation "
2248
  "<a href=\"%s\" target=\"_blank\">هذا الارتباط</a> للحصول على معرف العميل "
2249
  "Instagram"
2250
 
2251
+ #: ../admin/social_login.php:418
2252
  msgid "Line Channel ID"
2253
  msgstr ""
2254
 
2255
+ #: ../admin/social_login.php:427
2256
  #, fuzzy, php-format
2257
  msgid ""
2258
  "Required for Line Social Login to work. Please follow the documentation at "
2261
  "المطلوبة للدخول الاجتماعي LinkedIn للعمل. الرجاء تتبع الوثائق الموجودة في <a "
2262
  "href=\"%s\" target=\"_blank\">هذا الارتباط</a> للحصول على مفتاح API LinkedIn"
2263
 
2264
+ #: ../admin/social_login.php:438
2265
  #, fuzzy
2266
  msgid "Line Channel Secret"
2267
  msgstr "شارك الأخرين عبر لنكيدان"
2268
 
2269
+ #: ../admin/social_login.php:447
2270
  #, fuzzy, php-format
2271
  msgid ""
2272
  "Required for Line Social Login to work. Please follow the documentation at "
2275
  "المطلوبة للدخول الاجتماعي LinkedIn للعمل. الرجاء تتبع الوثائق الموجودة في <a "
2276
  "href=\"%s\" target=\"_blank\">هذا الارتباط</a> للحصول على مفتاح API LinkedIn"
2277
 
2278
+ #: ../admin/social_login.php:458
2279
+ #, fuzzy
2280
+ msgid "Wordpress Client ID"
2281
+ msgstr "شارك الأخرين عبر جوجل"
2282
+
2283
+ #: ../admin/social_login.php:467
2284
+ #, fuzzy, php-format
2285
+ msgid ""
2286
+ "Required for Wordpress Social Login to work. Please follow the documentation "
2287
+ "at <a href=\"%s\" target=\"_blank\">this link</a> to get Wordpress Client ID"
2288
+ msgstr ""
2289
+ "المطلوبة \"دخول جوجليبلوس الاجتماعي\" للعمل. الرجاء تتبع الوثائق الموجودة في "
2290
+ "<a href=\"%s\" target=\"_blank\">هذا الارتباط</a> للحصول على معرف العميل "
2291
+ "GooglePlus"
2292
+
2293
+ #: ../admin/social_login.php:478
2294
+ #, fuzzy
2295
+ msgid "Wordpress Client Secret"
2296
+ msgstr "شارك الأخرين عبر جوجل"
2297
+
2298
+ #: ../admin/social_login.php:487
2299
+ #, fuzzy, php-format
2300
+ msgid ""
2301
+ "Required for Wordpress Social Login to work. Please follow the documentation "
2302
+ "at <a href=\"%s\" target=\"_blank\">this link</a> to get Wordpress Client "
2303
+ "Secret"
2304
+ msgstr ""
2305
+ "المطلوبة \"دخول جوجليبلوس الاجتماعي\" للعمل. الرجاء تتبع الوثائق الموجودة في "
2306
+ "<a href=\"%s\" target=\"_blank\">هذا الارتباط</a> للحصول على معرف العميل "
2307
+ "GooglePlus"
2308
+
2309
+ #: ../admin/social_login.php:498
2310
  #, fuzzy
2311
  msgid "Microsoft Client ID"
2312
  msgstr "شارك الأخرين عبر جوجل"
2313
 
2314
+ #: ../admin/social_login.php:507
2315
  #, fuzzy, php-format
2316
  msgid ""
2317
  "Required for Live Social Login to work. Please follow the documentation at "
2321
  "<a href=\"%s\" target=\"_blank\">هذا الارتباط</a> للحصول على معرف العميل "
2322
  "GooglePlus"
2323
 
2324
+ #: ../admin/social_login.php:509 ../admin/social_login.php:529
2325
+ #: ../admin/social_login.php:567 ../admin/social_login.php:587
2326
  #, fuzzy
2327
  msgid ""
2328
  "Paste following url in <strong>Redirect URIs</strong> option mentioned at "
2331
  "لصق التالية url في الخيار <strong>محدد موقع معلومات الموقع</strong> في "
2332
  "الوصلة المذكورة"
2333
 
2334
+ #: ../admin/social_login.php:518
2335
  #, fuzzy
2336
  msgid "Microsoft Client Secret"
2337
  msgstr "شارك الأخرين عبر جوجل"
2338
 
2339
+ #: ../admin/social_login.php:527
2340
  #, fuzzy, php-format
2341
  msgid ""
2342
  "Required for Live Social Login to work. Please follow the documentation at "
2347
  "<a href=\"%s\" target=\"_blank\">هذا الارتباط</a> للحصول على معرف العميل "
2348
  "GooglePlus"
2349
 
2350
+ #: ../admin/social_login.php:537
2351
  #, fuzzy
2352
  msgid "Steam API Key"
2353
  msgstr "مفتاح API الخاص | API Private Key"
2354
 
2355
+ #: ../admin/social_login.php:546
2356
  #, fuzzy, php-format
2357
  msgid ""
2358
  "Required for Steam Social Login to work. Get it at <a href=\"%s\" target="
2362
  "الموجودة في <a href=\"%s\" target=\"_blank\">هذا الارتباط</a> للحصول على "
2363
  "\"مفتاح API التغريد\""
2364
 
2365
+ #: ../admin/social_login.php:547
2366
  #, fuzzy
2367
  msgid "Save following <strong>domain</strong> to get the key"
2368
  msgstr ""
2369
  "لصق التالية url في الخيار <strong>المجال رد الاتصال</strong> في الوصلة "
2370
  "المذكورة"
2371
 
2372
+ #: ../admin/social_login.php:556
2373
+ #, fuzzy
2374
+ msgid "Yahoo Client ID"
2375
+ msgstr "شارك الأخرين عبر جوجل"
2376
+
2377
+ #: ../admin/social_login.php:565
2378
+ #, fuzzy, php-format
2379
+ msgid ""
2380
+ "Required for Yahoo Social Login to work. Please follow the documentation at "
2381
+ "<a href=\"%s\" target=\"_blank\">this link</a> to get Yahoo Client ID"
2382
+ msgstr ""
2383
+ "المطلوبة \"دخول جوجليبلوس الاجتماعي\" للعمل. الرجاء تتبع الوثائق الموجودة في "
2384
+ "<a href=\"%s\" target=\"_blank\">هذا الارتباط</a> للحصول على معرف العميل "
2385
+ "GooglePlus"
2386
+
2387
+ #: ../admin/social_login.php:576
2388
+ #, fuzzy
2389
+ msgid "Yahoo Client Secret"
2390
+ msgstr "شارك الأخرين عبر جوجل"
2391
+
2392
+ #: ../admin/social_login.php:585
2393
+ #, fuzzy, php-format
2394
+ msgid ""
2395
+ "Required for Yahoo Social Login to work. Please follow the documentation at "
2396
+ "<a href=\"%s\" target=\"_blank\">this link</a> to get Yahoo Client Secret key"
2397
+ msgstr ""
2398
+ "المطلوبة \"دخول جوجليبلوس الاجتماعي\" للعمل. الرجاء تتبع الوثائق الموجودة في "
2399
+ "<a href=\"%s\" target=\"_blank\">هذا الارتباط</a> للحصول على معرف العميل "
2400
+ "GooglePlus"
2401
+
2402
+ #: ../admin/social_login.php:605
2403
  #, fuzzy
2404
  msgid "Social Login Options"
2405
  msgstr ""
2407
  "دخوله بالنظام عن طريق برامج التواصل الاجتماعي، سيتم الموافقة على التعليق "
2408
  "فورا دون موافقة المشرف على النظام."
2409
 
2410
+ #: ../admin/social_login.php:620
2411
  #, fuzzy
2412
  msgid "Text to display above the Social Login interface"
2413
  msgstr "نص للعرض أعلاه واجهة \"تسجيل الدخول الاجتماعي\""
2414
 
2415
+ #: ../admin/social_login.php:628
2416
  msgid "Trigger social login in the same browser tab"
2417
  msgstr ""
2418
 
2419
+ #: ../admin/social_login.php:638
2420
  msgid "Trigger social login in the same browser tab instead of a popup window"
2421
  msgstr ""
2422
 
2423
+ #: ../admin/social_login.php:645
2424
  #, fuzzy
2425
  msgid "Center align icons"
2426
  msgstr "إعادة ترتيب الرموز"
2427
 
2428
+ #: ../admin/social_login.php:655
2429
  #, fuzzy
2430
  msgid "Center align social login icons"
2431
  msgstr ""
2433
  "دخوله بالنظام عن طريق برامج التواصل الاجتماعي، سيتم الموافقة على التعليق "
2434
  "فورا دون موافقة المشرف على النظام."
2435
 
2436
+ #: ../admin/social_login.php:662
2437
  #, fuzzy
2438
  msgid "Enable at login page"
2439
  msgstr "صفحة"
2440
 
2441
+ #: ../admin/social_login.php:672
2442
  #, fuzzy
2443
  msgid ""
2444
  "Social Login interface will get enabled at the login page of your website"
2446
  "سوف تحصل على تمكين واجهة تسجيل الدخول الاجتماعي في النموذج الخاص بك وورد "
2447
  "التعليق"
2448
 
2449
+ #: ../admin/social_login.php:679
2450
  #, fuzzy
2451
  msgid "Enable at register page"
2452
  msgstr "التسجيل العام"
2453
 
2454
+ #: ../admin/social_login.php:689
2455
  #, fuzzy
2456
  msgid ""
2457
  "Social Login interface will get enabled at the registration page of your "
2460
  "سوف تحصل على تمكين واجهة تسجيل الدخول الاجتماعي في صفحة التسجيل لموقع الويب "
2461
  "الخاص بك"
2462
 
2463
+ #: ../admin/social_login.php:696
2464
  msgid "Enable at comment form"
2465
  msgstr "تمكين هذا الشكل من تعليق"
2466
 
2467
+ #: ../admin/social_login.php:706
2468
  msgid "Social Login interface will get enabled at your Wordpress Comment form"
2469
  msgstr ""
2470
  "سوف تحصل على تمكين واجهة تسجيل الدخول الاجتماعي في النموذج الخاص بك وورد "
2471
  "التعليق"
2472
 
2473
+ #: ../admin/social_login.php:720
2474
  msgid "Enable before WooCommerce Customer Login Form"
2475
  msgstr "تمكين قبل WooCommerce نموذج تسجيل دخول العملاء"
2476
 
2477
+ #: ../admin/social_login.php:730
2478
  #, fuzzy
2479
  msgid ""
2480
  "Social Login Interface will get enabled before the customer login form at "
2483
  "سوف تحصل على تمكين واجهة تسجيل الدخول الاجتماعي في النموذج الخاص بك وورد "
2484
  "التعليق"
2485
 
2486
+ #: ../admin/social_login.php:737
2487
  #, fuzzy
2488
  msgid "Enable at WooCommerce Customer Login Form"
2489
  msgstr "تمكن بعد WooCommerce نموذج تسجيل دخول العملاء"
2490
 
2491
+ #: ../admin/social_login.php:747
2492
  #, fuzzy
2493
  msgid ""
2494
  "Integrate Social Login Interface with the customer login form at WooCommerce "
2497
  "سوف تحصل على تمكين واجهة تسجيل الدخول الاجتماعي في النموذج الخاص بك وورد "
2498
  "التعليق"
2499
 
2500
+ #: ../admin/social_login.php:754
2501
  #, fuzzy
2502
  msgid "Enable at WooCommerce Customer Register Form"
2503
  msgstr "تمكن بعد WooCommerce نموذج تسجيل دخول العملاء"
2504
 
2505
+ #: ../admin/social_login.php:764
2506
  #, fuzzy
2507
  msgid ""
2508
  "Integrate Social Login Interface with the customer register form at "
2511
  "سوف تحصل على تمكين واجهة تسجيل الدخول الاجتماعي في النموذج الخاص بك وورد "
2512
  "التعليق"
2513
 
2514
+ #: ../admin/social_login.php:771
2515
  #, fuzzy
2516
  msgid "Enable at WooCommerce checkout page"
2517
  msgstr "التسجيل العام"
2518
 
2519
+ #: ../admin/social_login.php:781
2520
  #, fuzzy
2521
  msgid "Social Login Interface will get enabled at WooCommerce checkout page"
2522
  msgstr ""
2523
  "سوف تحصل على تمكين واجهة تسجيل الدخول الاجتماعي في النموذج الخاص بك وورد "
2524
  "التعليق"
2525
 
2526
+ #: ../admin/social_login.php:791
2527
  #, fuzzy
2528
  msgid "Auto-approve comments made by Social Login users"
2529
  msgstr ""
2530
  "السيارات--الموافقة على التعليقات التي أدلى بها المستخدمين \"تسجيل الدخول "
2531
  "الاجتماعي\""
2532
 
2533
+ #: ../admin/social_login.php:801
2534
  msgid ""
2535
  "If this option is enabled, and WordPress comment is made by Social Login "
2536
  "user, comment will get approved immediately without keeping in moderation."
2539
  "دخوله بالنظام عن طريق برامج التواصل الاجتماعي، سيتم الموافقة على التعليق "
2540
  "فورا دون موافقة المشرف على النظام."
2541
 
2542
+ #: ../admin/social_login.php:802
2543
  #, fuzzy
2544
  msgid "Note: This is not related to Facebook comments"
2545
  msgstr "ملاحظة: هذا لا تتعلق بتعليقات ألفيس بوك"
2546
 
2547
+ #: ../admin/social_login.php:811
2548
  #, fuzzy
2549
  msgid "Enable social avatar"
2550
  msgstr "خدمة الشبكة الاجتماعية"
2551
 
2552
+ #: ../admin/social_login.php:821
2553
  #, fuzzy
2554
  msgid ""
2555
  "Social profile pictures of the logged in user will be displayed as profile "
2558
  "سيتم عرض الصور الشخصية الاجتماعية لمستخدم تم تسجيل دخوله كالصورة الرمزية "
2559
  "الشخصية"
2560
 
2561
+ #: ../admin/social_login.php:830
2562
  #, fuzzy
2563
  msgid "Avatar quality"
2564
  msgstr "نوعية الصورة الرمزية"
2565
 
2566
+ #: ../admin/social_login.php:833
2567
  #, fuzzy
2568
  msgid "Average"
2569
  msgstr "المعدل"
2570
 
2571
+ #: ../admin/social_login.php:834
2572
  msgid "Best"
2573
  msgstr "أفضل"
2574
 
2575
+ #: ../admin/social_login.php:841
2576
  #, fuzzy
2577
  msgid "Choose avatar quality"
2578
  msgstr "إختيار ملف"
2579
 
2580
+ #: ../admin/social_login.php:849
2581
  #, fuzzy
2582
  msgid ""
2583
  "Show option for users to update social avatar at BuddyPress profile page"
2584
  msgstr ""
2585
  "تمكين هذا الخيار لإظهار حساب الاجتماعية ربط واجهة الصفحة الشخصية BuddyPress"
2586
 
2587
+ #: ../admin/social_login.php:859
2588
  msgid ""
2589
  "If enabled, users would be able to update their social avatar from \"Profile "
2590
  "photo\" section in BuddyPress profile at front-end"
2591
  msgstr ""
2592
 
2593
+ #: ../admin/social_login.php:879
2594
  #, fuzzy
2595
  msgid ""
2596
  "If enabled and Social ID provider does not provide user's email address on "
2601
  "تسجيل الدخول، سيتم مطالبة المستخدم بتوفير عنوانه الإلكتروني. وإلا، سيتم "
2602
  "إنشاء بريد إلكتروني وهمية"
2603
 
2604
+ #: ../admin/social_login.php:887
2605
  msgid "Send post-registration email to user to set account password"
2606
  msgstr ""
2607
 
2608
+ #: ../admin/social_login.php:897
2609
  #, fuzzy
2610
  msgid ""
2611
  "If enabled, an email will be sent to user after registration through Social "
2617
  "الدخول (اسم المستخدم-كلمة المرور لتكون قادراً على تسجيل الدخول عن طريق نموذج "
2618
  "تسجيل الدخول التقليدية)"
2619
 
2620
+ #: ../admin/social_login.php:904
2621
  #, fuzzy
2622
  msgid "Send new user registration notification email to admin"
2623
  msgstr "تسجيل المستخدم تعطيل عن طريق تسجيل الدخول الاجتماعي"
2624
 
2625
+ #: ../admin/social_login.php:914
2626
  #, fuzzy
2627
  msgid ""
2628
  "If enabled, an email will be sent to admin after new user registers through "
2633
  "الدخول (اسم المستخدم-كلمة المرور لتكون قادراً على تسجيل الدخول عن طريق نموذج "
2634
  "تسجيل الدخول التقليدية)"
2635
 
2636
+ #: ../admin/social_login.php:921
2637
  #, fuzzy
2638
  msgid "Login redirection"
2639
  msgstr "تسجيل الدخول"
2640
 
2641
+ #: ../admin/social_login.php:925
2642
  #, fuzzy
2643
  msgid "Same page where user logged in"
2644
  msgstr "حيث يتم تسجيل المستخدم في الصفحة نفسها"
2645
 
2646
+ #: ../admin/social_login.php:929 ../admin/social_login.php:958
2647
  #, fuzzy
2648
  msgid "Account dashboard"
2649
  msgstr " لوحتك الخاصة بالتحكم"
2650
 
2651
+ #: ../admin/social_login.php:932 ../admin/social_login.php:961
2652
  #, fuzzy
2653
  msgid "BuddyPress profile page"
2654
  msgstr "تحرير ملفي الشخصي"
2655
 
2656
+ #: ../admin/social_login.php:935 ../admin/social_login.php:964
2657
  #, fuzzy
2658
  msgid "Custom Url"
2659
  msgstr "رابط (URL) مخصّص"
2660
 
2661
+ #: ../admin/social_login.php:943
2662
  #, fuzzy
2663
  msgid "User will be redirected to the selected page after Social Login"
2664
  msgstr "ستتم إعادة توجيه المستخدم إلى الصفحة المحددة بعد \"الدخول الاجتماعي\""
2665
 
2666
+ #: ../admin/social_login.php:950
2667
  #, fuzzy
2668
  msgid "Registration redirection"
2669
  msgstr "نموذج التسجيل"
2670
 
2671
+ #: ../admin/social_login.php:954
2672
  #, fuzzy
2673
  msgid "Same page from where user registered"
2674
  msgstr "الصفحة نفسها من حيث تسجيل المستخدم"
2675
 
2676
+ #: ../admin/social_login.php:972
2677
  #, fuzzy
2678
  msgid ""
2679
  "User will be redirected to the selected page after registration (first "
2682
  "ستتم إعادة توجيه المستخدم إلى الصفحة المحددة بعد التسجيل (تسجيل الدخول "
2683
  "الاجتماعي الأول) من خلال \"تسجيل الدخول الاجتماعي\""
2684
 
2685
+ #: ../admin/social_login.php:981
2686
  #, fuzzy
2687
  msgid "Social Account Linking Options"
2688
  msgstr "تعطيل تعليقا الاجتماعي على هذا"
2689
 
2690
+ #: ../admin/social_login.php:996
2691
  #, fuzzy
2692
  msgid "Text to display above the Social Account Linking interface"
2693
  msgstr "نص للعرض أعلاه واجهة \"تسجيل الدخول الاجتماعي\""
2694
 
2695
+ #: ../admin/social_login.php:1003
2696
  #, fuzzy
2697
  msgid ""
2698
  "Link social account to already existing account, if email address matches"
2700
  "الرجاء القيام بربط الحساب الإجتماعي الخاص بك للتمكن من تسجيل الدخول العام "
2701
  "الى حسابك في هذا الموقع"
2702
 
2703
+ #: ../admin/social_login.php:1013
2704
  msgid ""
2705
  "If email address of the user's Social Account matches with an already "
2706
  "existing account at your website, that social account will be linked to "
2708
  "Linking interface at their profile page."
2709
  msgstr ""
2710
 
2711
+ #: ../admin/social_login.php:1021
2712
  #, fuzzy
2713
  msgid "Enable social account linking at BuddyPress profile page"
2714
  msgstr "تمكين حساب الاجتماعية ربط الصفحة الشخصية BuddyPress"
2715
 
2716
+ #: ../admin/social_login.php:1031
2717
  #, fuzzy
2718
  msgid ""
2719
  "Enable this option to show social account linking interface at BuddyPress "
2721
  msgstr ""
2722
  "تمكين هذا الخيار لإظهار حساب الاجتماعية ربط واجهة الصفحة الشخصية BuddyPress"
2723
 
2724
+ #: ../admin/social_login.php:1042
2725
  #, fuzzy
2726
  msgid "Email popup options"
2727
  msgstr "الخيارات"
2728
 
2729
+ #: ../admin/social_login.php:1047
2730
  #, fuzzy
2731
  msgid "Text on 'Email required' popup"
2732
  msgstr "البريد الإلكتروني (Email) - الإدخال إجباري"
2733
 
2734
+ #: ../admin/social_login.php:1057
2735
  #, fuzzy
2736
  msgid ""
2737
  "This text will be displayed on email required popup. Leave empty if not "
2740
  "سيتم عرض هذا النص على البريد الإلكتروني المطلوب المنبثقة. ترك فارغاً إذا كان "
2741
  "غير مطلوب."
2742
 
2743
+ #: ../admin/social_login.php:1065
2744
  #, fuzzy
2745
  msgid "Error message for 'Email required' popup"
2746
  msgstr "رسالة الإعلام بالخطأ لانبثاق 'البريد الإلكتروني مطلوب'"
2747
 
2748
+ #: ../admin/social_login.php:1075
2749
  #, fuzzy
2750
  msgid ""
2751
  "This message will be displayed to user if it provides invalid or already "
2754
  "سيتم عرض هذه الرسالة إلى المستخدم إذا كان يوفر البريد الإلكتروني غير صالح أو "
2755
  "المسجلة مسبقاً"
2756
 
2757
+ #: ../admin/social_login.php:1083
2758
  #, fuzzy
2759
  msgid "Email popup height"
2760
  msgstr "ارتفاع"
2761
 
2762
+ #: ../admin/social_login.php:1093
2763
  #, fuzzy
2764
  msgid ""
2765
  "If you are seeing vertical scrollbar in the \"Email required\" popup, you "
2769
  "إذا كنت ترى شريط التمرير العمودي في منبثق \"البريد الإلكتروني المطلوبة\"، "
2770
  "يمكنك زيادة ارتفاع المنبثقة عن طريق تحديد هذا الخيار. ترك فارغاً للافتراضي."
2771
 
2772
+ #: ../admin/social_login.php:1100
2773
  #, fuzzy
2774
  msgid "Enable email verification"
2775
  msgstr "تمكين ايقونات المشاركة عبر البريد الإلكتروني "
2776
 
2777
+ #: ../admin/social_login.php:1110
2778
  #, fuzzy
2779
  msgid ""
2780
  "If enabled, email provided by the user will be verified by sending a "
2785
  "وصلة تأكيد لهذا البريد الإلكتروني. أن لا يكون المستخدم قادراً على تسجيل "
2786
  "الدخول دون التحقق من البريد الإلكتروني صفحته/صفحتها"
2787
 
2788
+ #: ../admin/social_login.php:1130
2789
  #, fuzzy
2790
  msgid "Enable GDPR opt-in"
2791
  msgstr "إتاحة التعليق من هارد"
2792
 
2793
+ #: ../admin/social_login.php:1140
2794
  msgid ""
2795
  "Enable it to show GDPR opt-in for social login and social account linking"
2796
  msgstr ""
2797
 
2798
+ #: ../admin/social_login.php:1148
2799
  #, fuzzy
2800
  msgid "Placement of GDPR opt-in"
2801
  msgstr "إتاحة التعليق من هارد"
2802
 
2803
+ #: ../admin/social_login.php:1152
2804
  #, fuzzy
2805
  msgid "Above Social Login icons"
2806
  msgstr ""
2808
  "دخوله بالنظام عن طريق برامج التواصل الاجتماعي، سيتم الموافقة على التعليق "
2809
  "فورا دون موافقة المشرف على النظام."
2810
 
2811
+ #: ../admin/social_login.php:1154
2812
  #, fuzzy
2813
  msgid "Below Social Login icons"
2814
  msgstr ""
2816
  "دخوله بالنظام عن طريق برامج التواصل الاجتماعي، سيتم الموافقة على التعليق "
2817
  "فورا دون موافقة المشرف على النظام."
2818
 
2819
+ #: ../admin/social_login.php:1160
2820
  #, fuzzy
2821
  msgid "Placement of GDPR opt-in above or below the social login icons"
2822
  msgstr "نص للعرض أعلاه واجهة \"تسجيل الدخول الاجتماعي\""
2823
 
2824
+ #: ../admin/social_login.php:1167
2825
  msgid "Opt-in text"
2826
  msgstr ""
2827
 
2828
+ #: ../admin/social_login.php:1177
2829
  #, fuzzy
2830
  msgid "Text for the GDPR opt-in"
2831
  msgstr "إتاحة التعليق من هارد"
2832
 
2833
+ #: ../admin/social_login.php:1184
2834
  msgid "Text to link to Terms-Conditions page"
2835
  msgstr ""
2836
 
2837
+ #: ../admin/social_login.php:1194
2838
  msgid "Word(s) in the opt-in text to be linked to terms-conditions page"
2839
  msgstr ""
2840
 
2841
+ #: ../admin/social_login.php:1201
2842
  msgid "Terms-Conditions Url"
2843
  msgstr ""
2844
 
2845
+ #: ../admin/social_login.php:1211
2846
  #, fuzzy
2847
  msgid "Url of the terms-conditions page of your website"
2848
  msgstr "URL لعملاء الموقع (اختياري)"
2849
 
2850
+ #: ../admin/social_login.php:1218
2851
  msgid "Text to link to Privacy Policy page"
2852
  msgstr ""
2853
 
2854
+ #: ../admin/social_login.php:1228
2855
  msgid "Word(s) in the opt-in text to be linked to privacy policy page"
2856
  msgstr ""
2857
 
2858
+ #: ../admin/social_login.php:1235
2859
  msgid "Privacy Policy Url"
2860
  msgstr ""
2861
 
2862
+ #: ../admin/social_login.php:1245
2863
  #, fuzzy
2864
  msgid "Url of the privacy policy page of your website"
2865
  msgstr "URL لعملاء الموقع (اختياري)"
2866
 
2867
+ #: ../admin/social_login.php:1296 ../inc/widget.php:260 ../inc/widget.php:438
2868
  #: ../inc/widget.php:602 ../inc/widget.php:750
2869
  #, fuzzy
2870
  msgid "Select"
2871
  msgstr "أختر ..."
2872
 
2873
+ #: ../admin/social_login.php:1327
2874
  #, fuzzy
2875
  msgid "Social Login Shortcode & Widget"
2876
  msgstr "استخدم كود مختصر | Include the shortcode"
2877
 
2878
+ #: ../admin/social_login.php:1328
2879
  msgid "Social Linking Shortcode"
2880
  msgstr "الربط الاجتماعي رمز قصير"
2881
 
2882
+ #: ../admin/social_login.php:1343
2883
  msgid "Why is social login not working?"
2884
  msgstr ""
2885
 
2886
+ #: ../admin/social_login.php:1344
2887
  msgid ""
2888
  "Make sure that App ID and Secret (Client ID and Secret) keys you have saved, "
2889
  "belong to the same app"
2890
  msgstr ""
2891
 
2892
+ #: ../admin/social_login.php:1346
2893
  msgid "Social Login not working with Varnish enabled"
2894
  msgstr ""
2895
 
2896
+ #: ../admin/social_login.php:1347
2897
  msgid ""
2898
  "Why the user is not appearing logged in even after Social Login until the "
2899
  "webpage is refreshed manually?"
3137
  msgid "Providers not selected"
3138
  msgstr "محدد | selected"
3139
 
3140
+ #: ../inc/social_login.php:792
3141
  #, fuzzy
3142
  msgid "Email"
3143
  msgstr "البريد الإلكتروني"
3144
 
3145
+ #: ../inc/social_login.php:793
3146
  msgid "Confirm email"
3147
  msgstr ""
3148
 
3149
+ #: ../inc/social_login.php:795
3150
  msgid "Save"
3151
  msgstr ""
3152
 
3153
+ #: ../inc/social_login.php:796
3154
  msgid "Cancel"
3155
  msgstr ""
3156
 
3157
+ #: ../inc/social_login.php:870
3158
  #, fuzzy
3159
  msgid "Email Verification"
3160
  msgstr "تمكين ايقونات المشاركة عبر البريد الإلكتروني "
3161
 
3162
+ #: ../inc/social_login.php:872
3163
  msgid ""
3164
  "Please click on the following link or paste it in browser to verify your "
3165
  "email"
3743
  #~ msgid "Print"
3744
  #~ msgstr "طباعة"
3745
 
 
 
 
 
3746
  #, fuzzy
3747
  #~ msgid "Reddit"
3748
  #~ msgstr "ريديت"
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: 2020-08-20 08:13+0530\n"
6
- "PO-Revision-Date: 2020-08-20 08:13+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:523
20
  msgid "Problem fetching access token: "
21
  msgstr ""
22
 
23
- #: ../super_socializer.php:527 ../super_socializer.php:541
24
  msgid "Facebook SDK returned an error: "
25
  msgstr ""
26
 
27
- #: ../super_socializer.php:537
28
  msgid "Graph returned an error: "
29
  msgstr ""
30
 
31
- #: ../super_socializer.php:726
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:754
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:757
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:760
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,67 +65,67 @@ msgstr ""
65
  "posible que necesites contactar con el administrador de tu servidor para "
66
  "verificar esto"
67
 
68
- #: ../super_socializer.php:942 ../helper.php:961
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:942
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:946
77
  msgid "Notification"
78
  msgstr "Notificación"
79
 
80
- #: ../super_socializer.php:964 ../admin/social_login.php:779
81
  msgid "Email required"
82
  msgstr "Email requerido"
83
 
84
- #: ../super_socializer.php:967
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:1036
91
  msgid "Leave a reply"
92
  msgstr "Deja una respuesta"
93
 
94
- #: ../super_socializer.php:1052 ../inc/social_sharing.php:241
95
  msgid "Shares"
96
  msgstr ""
97
 
98
- #: ../super_socializer.php:1052 ../inc/social_sharing.php:241
99
  msgid "Share"
100
  msgstr ""
101
 
102
- #: ../super_socializer.php:1052
103
  #, fuzzy
104
  msgid "Link copied."
105
  msgstr "LinkedIn"
106
 
107
- #: ../super_socializer.php:1298
108
  msgid "Super Socializer - General Options"
109
  msgstr "Super Socializer - Opciones Generales"
110
 
111
- #: ../super_socializer.php:1298 ../admin/general_options.php:15
112
  #: ../admin/social_commenting.php:47
113
  msgid "General Options"
114
  msgstr "Opciones Generales"
115
 
116
- #: ../super_socializer.php:1366 ../helper.php:883
117
  msgid "Social Avatar"
118
  msgstr "Avatar Social"
119
 
120
- #: ../super_socializer.php:1369
121
  msgid "Small Avatar Url"
122
  msgstr "Url de Avatar Pequeño"
123
 
124
- #: ../super_socializer.php:1373
125
  msgid "Large Avatar Url"
126
  msgstr "Url de Avatar Grande"
127
 
128
- #: ../super_socializer.php:1377 ../helper.php:886
129
  msgid ""
130
  "Do not fetch and update social avatar from my profile, next time I Social "
131
  "Login"
@@ -133,75 +133,75 @@ msgstr ""
133
  "No se ha podido recuperar y actualizar el avatar social desde mi perfil, la "
134
  "próxima vez | Social Login"
135
 
136
- #: ../super_socializer.php:1381 ../helper.php:887
137
  msgid "Update social avatar, next time I Social Login"
138
  msgstr "Actualiza tu avatar de redes sociales | Social Login"
139
 
140
- #: ../super_socializer.php:1458
141
  msgid "Login with your Social ID"
142
  msgstr ""
143
 
144
- #: ../super_socializer.php:1459
145
  msgid "Email you entered is already registered or invalid"
146
  msgstr "El email que has escrito ya está registrado o no es válido"
147
 
148
- #: ../super_socializer.php:1464
149
  msgid "Please enter a valid email address. You might be required to verify it"
150
  msgstr ""
151
  "Por favor escribe una dirección de email válida. Puedes ser requerido para "
152
  "verificarla"
153
 
154
- #: ../super_socializer.php:1468 ../super_socializer.php:2166
155
  msgid "Link your social account to login to your account at this website"
156
  msgstr ""
157
  "Enlaza la cuenta de tu red social para ingresar en tu cuenta de este sitio "
158
  "web "
159
 
160
- #: ../super_socializer.php:1708
161
  msgid "Thanks for installing Super Socializer plugin"
162
  msgstr ""
163
 
164
- #: ../super_socializer.php:1710
165
  msgid "Configure the Plugin"
166
  msgstr ""
167
 
168
- #: ../super_socializer.php:1721
169
  msgid ""
170
  "Update \"Facebook Comments Moderation\" add-on for compatibility with "
171
  "current version of Super Socializer"
172
  msgstr ""
173
 
174
- #: ../super_socializer.php:1730
175
  msgid ""
176
  "Update \"Facebook Comments Notifier\" add-on for compatibility with current "
177
  "version of Super Socializer"
178
  msgstr ""
179
 
180
- #: ../super_socializer.php:1739
181
  msgid ""
182
  "Update \"Social Login Buttons\" add-on for compatibility with current "
183
  "version of Super Socializer"
184
  msgstr ""
185
 
186
- #: ../super_socializer.php:1748
187
  msgid ""
188
  "Update \"Social Share myCRED Integration\" add-on for maximum compatibility "
189
  "with current version of Super Socializer"
190
  msgstr ""
191
 
192
- #: ../super_socializer.php:1757
193
  msgid ""
194
  "Update \"Social Login myCRED Integration\" add-on for maximum compatibility "
195
  "with current version of Super Socializer"
196
  msgstr ""
197
 
198
- #: ../super_socializer.php:1768
199
  #, php-format
200
  msgid ""
201
  "To continue using Steam login save Steam API key <a href=\"%s\">here</a>"
202
  msgstr ""
203
 
204
- #: ../super_socializer.php:1777
205
  #, php-format
206
  msgid ""
207
  "To continue using Instagram login create a new Instagram App as described <a "
@@ -209,7 +209,7 @@ msgid ""
209
  "Instagram App Secret <a href=\"%s\">here</a>"
210
  msgstr ""
211
 
212
- #: ../super_socializer.php:1786 ../super_socializer.php:1795
213
  #, php-format
214
  msgid ""
215
  "To continue using bitly url shortener, login to your bit.ly account and "
@@ -218,13 +218,13 @@ msgid ""
218
  "\">here</a>. More details at the <a href=\"%s\" target=\"_blank\">link</a>"
219
  msgstr ""
220
 
221
- #: ../super_socializer.php:1811
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:1835
228
  #, php-format
229
  msgid ""
230
  "Add %s in \"Valid OAuth redirect URIs\" option in your Facebook app settings "
@@ -232,14 +232,14 @@ msgid ""
232
  "target=\"_blank\">here</a>"
233
  msgstr ""
234
 
235
- #: ../super_socializer.php:1835 ../super_socializer.php:1860
236
- #: ../super_socializer.php:1885 ../super_socializer.php:1910
237
- #: ../super_socializer.php:1943 ../super_socializer.php:1971
238
- #: ../super_socializer.php:1998
239
  msgid "Okay"
240
  msgstr ""
241
 
242
- #: ../super_socializer.php:1860
243
  #, php-format
244
  msgid ""
245
  "Add %s in \"Callback URLs\" option in your Twitter app settings for Twitter "
@@ -247,7 +247,7 @@ msgid ""
247
  "\">here</a>"
248
  msgstr ""
249
 
250
- #: ../super_socializer.php:1885
251
  #, php-format
252
  msgid ""
253
  "Add %s in \"Authorized Redirect URLs\" option in your Linkedin app settings "
@@ -255,7 +255,7 @@ msgid ""
255
  "target=\"_blank\">here</a>"
256
  msgstr ""
257
 
258
- #: ../super_socializer.php:1910
259
  #, php-format
260
  msgid ""
261
  "Add %s in \"Authorized redirect URIs\" option in your Google client settings "
@@ -263,13 +263,13 @@ msgid ""
263
  "target=\"_blank\">here</a>"
264
  msgstr ""
265
 
266
- #: ../super_socializer.php:1921
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:1943
273
  #, php-format
274
  msgid ""
275
  "This plugin is GDPR compliant. You need to update the privacy policy of your "
@@ -277,7 +277,7 @@ msgid ""
277
  "\"%s\" target=\"_blank\">here</a>"
278
  msgstr ""
279
 
280
- #: ../super_socializer.php:1971
281
  #, php-format
282
  msgid ""
283
  "Now plugin supports a new service Twitcount.com to show Twitter shares. To "
@@ -286,7 +286,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:1998
290
  #, php-format
291
  msgid ""
292
  "Replace url saved in \"Callback URLs\" option in your Twitter app settings "
@@ -294,7 +294,7 @@ msgid ""
294
  "\"%s\" target=\"_blank\">here</a>"
295
  msgstr ""
296
 
297
- #: ../super_socializer.php:2023
298
  #, php-format
299
  msgid ""
300
  "If you cannot get Linkedin login to work after updating the plugin, replace "
@@ -302,11 +302,11 @@ msgid ""
302
  "For more details, check step 6 <a href=\"%s\" target=\"_blank\">here</a>"
303
  msgstr ""
304
 
305
- #: ../super_socializer.php:2023 ../super_socializer.php:2050
306
  msgid "Dismiss"
307
  msgstr ""
308
 
309
- #: ../super_socializer.php:2049
310
  #, php-format
311
  msgid ""
312
  "Save Facebook App ID and Secret keys in \"Standard Interface\" and/or "
@@ -315,7 +315,7 @@ msgid ""
315
  "that, clear share counts cache from \"Miscellaneous\" section"
316
  msgstr ""
317
 
318
- #: ../super_socializer.php:2242
319
  msgid ""
320
  "Your browser is blocking some features of this website. Please follow the "
321
  "instructions at {support_url} to unblock these."
@@ -418,7 +418,7 @@ msgstr "Avatar Grande"
418
 
419
  #: ../helper.php:898 ../admin/general_options.php:89
420
  #: ../admin/social_sharing.php:1944 ../admin/social_commenting.php:400
421
- #: ../admin/social_login.php:1269 ../admin/like_buttons.php:780
422
  msgid "Save Changes"
423
  msgstr "Guardar Cambios"
424
 
@@ -442,7 +442,7 @@ msgstr ""
442
  #: ../admin/general_options.php:7 ../admin/general_options.php:93
443
  #: ../admin/social_sharing.php:5 ../admin/social_sharing.php:1948
444
  #: ../admin/social_commenting.php:5 ../admin/social_commenting.php:404
445
- #: ../admin/social_login.php:5 ../admin/social_login.php:1273
446
  #: ../admin/like_buttons.php:6 ../admin/like_buttons.php:784
447
  #, fuzzy, php-format
448
  msgid ""
@@ -498,14 +498,14 @@ msgstr ""
498
  "style&gt;)"
499
 
500
  #: ../admin/general_options.php:103 ../admin/social_sharing.php:1954
501
- #: ../admin/social_commenting.php:410 ../admin/social_login.php:1279
502
  #: ../admin/like_buttons.php:790
503
  #, fuzzy
504
  msgid "Instagram Shoutout"
505
  msgstr "Instagram"
506
 
507
  #: ../admin/general_options.php:105 ../admin/social_sharing.php:1956
508
- #: ../admin/social_commenting.php:412 ../admin/social_login.php:1281
509
  #: ../admin/like_buttons.php:792
510
  msgid ""
511
  "If you can send (to hello@heateor.com) how this plugin is helping your "
@@ -644,7 +644,7 @@ msgstr ""
644
 
645
  #: ../admin/social_sharing.php:67 ../admin/social_sharing.php:1869
646
  #: ../admin/social_sharing.php:1871 ../admin/social_login.php:45
647
- #: ../admin/social_login.php:1235 ../admin/like_buttons.php:50
648
  #: ../admin/like_buttons.php:751
649
  msgid "Shortcode & Widget"
650
  msgstr "Widgets y Shortcodes"
@@ -655,7 +655,7 @@ msgstr "Resolución de problmas"
655
 
656
  #: ../admin/social_sharing.php:69 ../admin/social_sharing.php:1902
657
  #: ../admin/social_commenting.php:40 ../admin/social_commenting.php:384
658
- #: ../admin/social_login.php:46 ../admin/social_login.php:1249
659
  #: ../admin/like_buttons.php:51 ../admin/like_buttons.php:764
660
  msgid "FAQ"
661
  msgstr "FAQ"
@@ -889,8 +889,8 @@ msgstr "Url personalizada"
889
  msgid "Url to share"
890
  msgstr "Url para compartir"
891
 
892
- #: ../admin/social_sharing.php:725 ../admin/social_login.php:520
893
- #: ../admin/social_login.php:896 ../admin/like_buttons.php:105
894
  #: ../inc/widget.php:945
895
  msgid "Title"
896
  msgstr "Título"
@@ -979,7 +979,7 @@ msgid "Placement"
979
  msgstr "Ubicación"
980
 
981
  #: ../admin/social_sharing.php:957 ../admin/social_sharing.php:1383
982
- #: ../admin/social_login.php:837 ../admin/social_login.php:866
983
  #: ../admin/like_buttons.php:218 ../admin/like_buttons.php:494
984
  msgid "Homepage"
985
  msgstr "Página de Inicio"
@@ -1256,7 +1256,7 @@ msgstr ""
1256
  msgid "Required only to track Facebook share count"
1257
  msgstr ""
1258
 
1259
- #: ../admin/social_sharing.php:1584 ../admin/social_login.php:150
1260
  msgid "Facebook App ID"
1261
  msgstr "Facebook App ID"
1262
 
@@ -1270,7 +1270,7 @@ msgstr ""
1270
  "sigue la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> "
1271
  "para conseguir tu Facebook App ID"
1272
 
1273
- #: ../admin/social_sharing.php:1601 ../admin/social_login.php:171
1274
  #, fuzzy
1275
  msgid "Facebook App Secret"
1276
  msgstr "Facebook App ID"
@@ -1458,7 +1458,7 @@ msgstr ""
1458
  "que Facebook no está compartiendo correctamente) en el campo de texto:"
1459
 
1460
  #: ../admin/social_sharing.php:1904 ../admin/social_commenting.php:386
1461
- #: ../admin/social_login.php:1251
1462
  msgid ""
1463
  "<strong>Note:</strong> Plugin will not work on local server. You should have "
1464
  "an online website for the plugin to function properly."
@@ -1515,7 +1515,7 @@ msgid ""
1515
  msgstr ""
1516
 
1517
  #: ../admin/social_sharing.php:1919 ../admin/social_commenting.php:389
1518
- #: ../admin/social_login.php:1258
1519
  msgid "Why is my browser blocking some features of the plugin?"
1520
  msgstr ""
1521
 
@@ -1840,11 +1840,11 @@ msgstr "Configuración básica"
1840
  msgid "Advanced Configuration"
1841
  msgstr "Configuración básica"
1842
 
1843
- #: ../admin/social_login.php:41 ../admin/social_login.php:1035
1844
  msgid "GDPR"
1845
  msgstr ""
1846
 
1847
- #: ../admin/social_login.php:43 ../admin/social_login.php:1186
1848
  msgid "XProfile Integration"
1849
  msgstr ""
1850
 
@@ -1914,16 +1914,24 @@ msgid "Line"
1914
  msgstr ""
1915
 
1916
  #: ../admin/social_login.php:135
 
 
 
 
1917
  msgid "Windows Live"
1918
  msgstr ""
1919
 
1920
  #: ../admin/social_login.php:143
 
 
 
 
1921
  msgid "Select Social ID provider to enable in Social Login"
1922
  msgstr ""
1923
  "Seleccionar un proveedor de Social ID para permitir el ingreso a través de "
1924
  "redes sociales"
1925
 
1926
- #: ../admin/social_login.php:160
1927
  #, php-format
1928
  msgid ""
1929
  "Required for Facebook Social Login to work. Please follow the documentation "
@@ -1933,7 +1941,7 @@ msgstr ""
1933
  "sigue la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> "
1934
  "para conseguir tu Facebook App ID"
1935
 
1936
- #: ../admin/social_login.php:162 ../admin/social_login.php:183
1937
  #, fuzzy
1938
  msgid ""
1939
  "Paste following url in <strong>Site URL</strong> option mentioned at the link"
@@ -1941,7 +1949,7 @@ msgstr ""
1941
  "Pega la siguiente url en la opción <strong>Site URL</ strong> en el enlace "
1942
  "mencionado"
1943
 
1944
- #: ../admin/social_login.php:181
1945
  #, fuzzy, php-format
1946
  msgid ""
1947
  "Required for Facebook Social Login to work. Please follow the documentation "
@@ -1951,11 +1959,11 @@ msgstr ""
1951
  "sigue la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> "
1952
  "para conseguir tu Facebook App ID"
1953
 
1954
- #: ../admin/social_login.php:192
1955
  msgid "Twitter API Key"
1956
  msgstr "Twitter API Key"
1957
 
1958
- #: ../admin/social_login.php:202
1959
  #, php-format
1960
  msgid ""
1961
  "Required for Twitter Social Login to work. Please follow the documentation "
@@ -1965,7 +1973,7 @@ msgstr ""
1965
  "la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> para "
1966
  "conseguir tu Twitter Key"
1967
 
1968
- #: ../admin/social_login.php:204 ../admin/social_login.php:229
1969
  #, fuzzy
1970
  msgid ""
1971
  "Paste following url in <strong>Website</strong> option mentioned at the link"
@@ -1973,8 +1981,9 @@ msgstr ""
1973
  "Pega la siguiente url en la opción <strong>Website URL</ strong> en el "
1974
  "enlace mencionado"
1975
 
1976
- #: ../admin/social_login.php:208 ../admin/social_login.php:233
1977
- #: ../admin/social_login.php:421 ../admin/social_login.php:441
 
1978
  #, fuzzy
1979
  msgid ""
1980
  "Paste following url in <strong>Callback URL</strong> option mentioned at the "
@@ -1983,11 +1992,11 @@ msgstr ""
1983
  "Pega la siguiente url en la opción <strong>Callback domain</ strong> en el "
1984
  "enlace mencionado"
1985
 
1986
- #: ../admin/social_login.php:217
1987
  msgid "Twitter API Secret"
1988
  msgstr "Twitter API Secret"
1989
 
1990
- #: ../admin/social_login.php:227
1991
  #, php-format
1992
  msgid ""
1993
  "Required for Twitter Social Login to work. Please follow the documentation "
@@ -1997,12 +2006,12 @@ msgstr ""
1997
  "la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> para "
1998
  "conseguir tu Twitter API Secret"
1999
 
2000
- #: ../admin/social_login.php:242
2001
  #, fuzzy
2002
  msgid "LinkedIn Client ID"
2003
  msgstr "LinkedIn"
2004
 
2005
- #: ../admin/social_login.php:252
2006
  #, fuzzy, php-format
2007
  msgid ""
2008
  "Required for LinkedIn Social Login to work. Please follow the documentation "
@@ -2012,7 +2021,7 @@ msgstr ""
2012
  "sigue la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> "
2013
  "para conseguir tu LinkedIn API Key"
2014
 
2015
- #: ../admin/social_login.php:254 ../admin/social_login.php:275
2016
  #, fuzzy
2017
  msgid ""
2018
  "Paste following url in <strong>Redirect URLs</strong> option mentioned at "
@@ -2021,12 +2030,12 @@ msgstr ""
2021
  "Pega la siguiente url en la opción <strong>Site URL</ strong> en el enlace "
2022
  "mencionado"
2023
 
2024
- #: ../admin/social_login.php:263
2025
  #, fuzzy
2026
  msgid "LinkedIn Client Secret"
2027
  msgstr "LinkedIn"
2028
 
2029
- #: ../admin/social_login.php:273
2030
  #, fuzzy, php-format
2031
  msgid ""
2032
  "Required for LinkedIn Social Login to work. Please follow the documentation "
@@ -2037,12 +2046,12 @@ msgstr ""
2037
  "sigue la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> "
2038
  "para conseguir tu LinkedIn API Key"
2039
 
2040
- #: ../admin/social_login.php:284
2041
  #, fuzzy
2042
  msgid "Google Client ID"
2043
  msgstr "Google+ Client ID"
2044
 
2045
- #: ../admin/social_login.php:294
2046
  #, fuzzy, php-format
2047
  msgid ""
2048
  "Required for Google Social Login to work. Please follow the documentation at "
@@ -2052,7 +2061,7 @@ msgstr ""
2052
  "sigue la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> "
2053
  "para conseguir tu GooglePlus Client ID"
2054
 
2055
- #: ../admin/social_login.php:296 ../admin/social_login.php:317
2056
  #, fuzzy
2057
  msgid ""
2058
  "Paste following url in <strong>AUTHORIZED REDIRECT URI</strong> option "
@@ -2061,12 +2070,12 @@ msgstr ""
2061
  "Pega la siguiente url en la opción <strong>Site URL</ strong> en el enlace "
2062
  "mencionado"
2063
 
2064
- #: ../admin/social_login.php:305
2065
  #, fuzzy
2066
  msgid "Google Client Secret"
2067
  msgstr "Google+ Client ID"
2068
 
2069
- #: ../admin/social_login.php:315
2070
  #, fuzzy, php-format
2071
  msgid ""
2072
  "Required for Google Social Login to work. Please follow the documentation at "
@@ -2076,11 +2085,11 @@ msgstr ""
2076
  "sigue la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> "
2077
  "para conseguir tu GooglePlus Client ID"
2078
 
2079
- #: ../admin/social_login.php:326
2080
  msgid "Vkontakte Application ID"
2081
  msgstr "Vkontakte Application ID"
2082
 
2083
- #: ../admin/social_login.php:336 ../admin/social_login.php:357
2084
  #, php-format
2085
  msgid ""
2086
  "Required for Vkontakte Social Login to work. Please follow the documentation "
@@ -2091,7 +2100,7 @@ msgstr ""
2091
  "sigue la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> "
2092
  "para conseguir tu Vkontakte Application ID"
2093
 
2094
- #: ../admin/social_login.php:338 ../admin/social_login.php:359
2095
  #, fuzzy
2096
  msgid ""
2097
  "Paste following url in <strong>Site address</strong> option mentioned at the "
@@ -2100,17 +2109,17 @@ msgstr ""
2100
  "Pega la siguiente url en la opción <strong>Site address</ strong> en el "
2101
  "enlace mencionado"
2102
 
2103
- #: ../admin/social_login.php:347
2104
  #, fuzzy
2105
  msgid "Vkontakte Secure key"
2106
  msgstr "Vkontakte"
2107
 
2108
- #: ../admin/social_login.php:368
2109
  #, fuzzy
2110
  msgid "Instagram App ID"
2111
  msgstr "Instagram Client ID"
2112
 
2113
- #: ../admin/social_login.php:378
2114
  #, fuzzy, php-format
2115
  msgid ""
2116
  "Required for Instagram Social Login to work. Please follow the documentation "
@@ -2120,7 +2129,7 @@ msgstr ""
2120
  "sigue la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> "
2121
  "para conseguir tu Instagram Client ID"
2122
 
2123
- #: ../admin/social_login.php:380 ../admin/social_login.php:401
2124
  #, fuzzy
2125
  msgid ""
2126
  "Paste following url in <strong>Valid OAuth Redirect URIs</strong> option "
@@ -2129,12 +2138,12 @@ msgstr ""
2129
  "Pega la siguiente url en la opción <strong>Site URL</ strong> en el enlace "
2130
  "mencionado"
2131
 
2132
- #: ../admin/social_login.php:389
2133
  #, fuzzy
2134
  msgid "Instagram App Secret"
2135
  msgstr "Instagram"
2136
 
2137
- #: ../admin/social_login.php:399
2138
  #, fuzzy, php-format
2139
  msgid ""
2140
  "Required for Instagram Social Login to work. Please follow the documentation "
@@ -2144,11 +2153,11 @@ msgstr ""
2144
  "sigue la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> "
2145
  "para conseguir tu Instagram Client ID"
2146
 
2147
- #: ../admin/social_login.php:410
2148
  msgid "Line Channel ID"
2149
  msgstr ""
2150
 
2151
- #: ../admin/social_login.php:419
2152
  #, fuzzy, php-format
2153
  msgid ""
2154
  "Required for Line Social Login to work. Please follow the documentation at "
@@ -2158,12 +2167,12 @@ msgstr ""
2158
  "sigue la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> "
2159
  "para conseguir tu LinkedIn API Key"
2160
 
2161
- #: ../admin/social_login.php:430
2162
  #, fuzzy
2163
  msgid "Line Channel Secret"
2164
  msgstr "LinkedIn"
2165
 
2166
- #: ../admin/social_login.php:439
2167
  #, fuzzy, php-format
2168
  msgid ""
2169
  "Required for Line Social Login to work. Please follow the documentation at "
@@ -2173,12 +2182,43 @@ msgstr ""
2173
  "sigue la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> "
2174
  "para conseguir tu LinkedIn API Key"
2175
 
2176
- #: ../admin/social_login.php:450
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2177
  #, fuzzy
2178
  msgid "Microsoft Client ID"
2179
  msgstr "Google+ Client ID"
2180
 
2181
- #: ../admin/social_login.php:459
2182
  #, fuzzy, php-format
2183
  msgid ""
2184
  "Required for Live Social Login to work. Please follow the documentation at "
@@ -2188,7 +2228,8 @@ msgstr ""
2188
  "sigue la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> "
2189
  "para conseguir tu GooglePlus Client ID"
2190
 
2191
- #: ../admin/social_login.php:461 ../admin/social_login.php:481
 
2192
  #, fuzzy
2193
  msgid ""
2194
  "Paste following url in <strong>Redirect URIs</strong> option mentioned at "
@@ -2197,12 +2238,12 @@ msgstr ""
2197
  "Pega la siguiente url en la opción <strong>Site URL</ strong> en el enlace "
2198
  "mencionado"
2199
 
2200
- #: ../admin/social_login.php:470
2201
  #, fuzzy
2202
  msgid "Microsoft Client Secret"
2203
  msgstr "Google+ Client ID"
2204
 
2205
- #: ../admin/social_login.php:479
2206
  #, fuzzy, php-format
2207
  msgid ""
2208
  "Required for Live Social Login to work. Please follow the documentation at "
@@ -2213,12 +2254,12 @@ msgstr ""
2213
  "sigue la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> "
2214
  "para conseguir tu GooglePlus Client ID"
2215
 
2216
- #: ../admin/social_login.php:489
2217
  #, fuzzy
2218
  msgid "Steam API Key"
2219
  msgstr "Twitter API Key"
2220
 
2221
- #: ../admin/social_login.php:498
2222
  #, fuzzy, php-format
2223
  msgid ""
2224
  "Required for Steam Social Login to work. Get it at <a href=\"%s\" target="
@@ -2228,57 +2269,87 @@ msgstr ""
2228
  "la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> para "
2229
  "conseguir tu Twitter Key"
2230
 
2231
- #: ../admin/social_login.php:499
2232
  #, fuzzy
2233
  msgid "Save following <strong>domain</strong> to get the key"
2234
  msgstr ""
2235
  "Pega la siguiente url en la opción <strong>Callback domain</ strong> en el "
2236
  "enlace mencionado"
2237
 
2238
- #: ../admin/social_login.php:515
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2239
  #, fuzzy
2240
  msgid "Social Login Options"
2241
  msgstr "Ingreso a través de redes sociales"
2242
 
2243
- #: ../admin/social_login.php:530
2244
  msgid "Text to display above the Social Login interface"
2245
  msgstr ""
2246
  "Texto para mostrar sobre la interfaz del Ingreso a través de redes sociales"
2247
 
2248
- #: ../admin/social_login.php:538
2249
  msgid "Trigger social login in the same browser tab"
2250
  msgstr ""
2251
 
2252
- #: ../admin/social_login.php:548
2253
  msgid "Trigger social login in the same browser tab instead of a popup window"
2254
  msgstr ""
2255
 
2256
- #: ../admin/social_login.php:555
2257
  #, fuzzy
2258
  msgid "Center align icons"
2259
  msgstr "Reorganizar iconos"
2260
 
2261
- #: ../admin/social_login.php:565
2262
  #, fuzzy
2263
  msgid "Center align social login icons"
2264
  msgstr "Ingreso a través de redes sociales"
2265
 
2266
- #: ../admin/social_login.php:572
2267
  msgid "Enable at login page"
2268
  msgstr "Permitir Página de Ingreso"
2269
 
2270
- #: ../admin/social_login.php:582
2271
  msgid ""
2272
  "Social Login interface will get enabled at the login page of your website"
2273
  msgstr ""
2274
  "La interfaz de Ingreso a través de redes sociales aparecerá en la página de "
2275
  "acceso de tu sitio web"
2276
 
2277
- #: ../admin/social_login.php:589
2278
  msgid "Enable at register page"
2279
  msgstr "Permitir Página de Registro"
2280
 
2281
- #: ../admin/social_login.php:599
2282
  msgid ""
2283
  "Social Login interface will get enabled at the registration page of your "
2284
  "website"
@@ -2286,21 +2357,21 @@ msgstr ""
2286
  "La interfaz de Ingreso a través de redes sociales aparecerá en la página de "
2287
  "registro de tu sitio web"
2288
 
2289
- #: ../admin/social_login.php:606
2290
  msgid "Enable at comment form"
2291
  msgstr "Permitir el formulario de comentarios"
2292
 
2293
- #: ../admin/social_login.php:616
2294
  msgid "Social Login interface will get enabled at your Wordpress Comment form"
2295
  msgstr ""
2296
  "La interfaz de Ingreso a través de redes sociales aparecerá en el formulario "
2297
  "de Comentario de tu WordPress"
2298
 
2299
- #: ../admin/social_login.php:630
2300
  msgid "Enable before WooCommerce Customer Login Form"
2301
  msgstr "Permitir antes del Formulario de Ingreso de Cliente de WooCommerce"
2302
 
2303
- #: ../admin/social_login.php:640
2304
  msgid ""
2305
  "Social Login Interface will get enabled before the customer login form at "
2306
  "WooCommerce My Account page"
@@ -2308,12 +2379,12 @@ msgstr ""
2308
  "La interfaz de Ingreso a través de redes sociales aparecerá antes del "
2309
  "formulario de ingreso de cliente de la página Mi Cuenta de WooCommerce"
2310
 
2311
- #: ../admin/social_login.php:647
2312
  #, fuzzy
2313
  msgid "Enable at WooCommerce Customer Login Form"
2314
  msgstr "Permitir después del Formulario de Ingreso de Cliente de WooCommerce"
2315
 
2316
- #: ../admin/social_login.php:657
2317
  #, fuzzy
2318
  msgid ""
2319
  "Integrate Social Login Interface with the customer login form at WooCommerce "
@@ -2322,12 +2393,12 @@ msgstr ""
2322
  "La interfaz de Ingreso a través de redes sociales aparecerá después del "
2323
  "formulario de ingreso de cliente de la página Mi Cuenta de WooCommerce"
2324
 
2325
- #: ../admin/social_login.php:664
2326
  #, fuzzy
2327
  msgid "Enable at WooCommerce Customer Register Form"
2328
  msgstr "Permitir después del Formulario de Ingreso de Cliente de WooCommerce"
2329
 
2330
- #: ../admin/social_login.php:674
2331
  #, fuzzy
2332
  msgid ""
2333
  "Integrate Social Login Interface with the customer register form at "
@@ -2336,23 +2407,23 @@ msgstr ""
2336
  "La interfaz de Ingreso a través de redes sociales aparecerá después del "
2337
  "formulario de ingreso de cliente de la página Mi Cuenta de WooCommerce"
2338
 
2339
- #: ../admin/social_login.php:681
2340
  msgid "Enable at WooCommerce checkout page"
2341
  msgstr "Permitir en la página de checkout de WooCommerce"
2342
 
2343
- #: ../admin/social_login.php:691
2344
  msgid "Social Login Interface will get enabled at WooCommerce checkout page"
2345
  msgstr ""
2346
  "La interfaz de Ingreso a través de redes sociales aparecerá en la página de "
2347
  "checkout de WooCommerce"
2348
 
2349
- #: ../admin/social_login.php:701
2350
  msgid "Auto-approve comments made by Social Login users"
2351
  msgstr ""
2352
  "Aprobar automáticamente los comentarios hechos por los usuarios conectados a "
2353
  "través de redes sociales"
2354
 
2355
- #: ../admin/social_login.php:711
2356
  msgid ""
2357
  "If this option is enabled, and WordPress comment is made by Social Login "
2358
  "user, comment will get approved immediately without keeping in moderation."
@@ -2361,15 +2432,15 @@ msgstr ""
2361
  "usuario conectado a través de WordPress, su comentario será aprobado de "
2362
  "inmediato sin necesidad de moderación."
2363
 
2364
- #: ../admin/social_login.php:712
2365
  msgid "Note: This is not related to Facebook comments"
2366
  msgstr "Nota: Esto no es válido para los comentarios de Facebook"
2367
 
2368
- #: ../admin/social_login.php:721
2369
  msgid "Enable social avatar"
2370
  msgstr "Permitir avatar social"
2371
 
2372
- #: ../admin/social_login.php:731
2373
  msgid ""
2374
  "Social profile pictures of the logged in user will be displayed as profile "
2375
  "avatar"
@@ -2377,30 +2448,30 @@ msgstr ""
2377
  "Las imágenes del perfil social del usuario conectado se mostrarán como su "
2378
  "avatar de perfil"
2379
 
2380
- #: ../admin/social_login.php:740
2381
  msgid "Avatar quality"
2382
  msgstr "Calidad del avatar"
2383
 
2384
- #: ../admin/social_login.php:743
2385
  msgid "Average"
2386
  msgstr "Media"
2387
 
2388
- #: ../admin/social_login.php:744
2389
  msgid "Best"
2390
  msgstr "Alta"
2391
 
2392
- #: ../admin/social_login.php:751
2393
  msgid "Choose avatar quality"
2394
  msgstr "Elegir la calidad del avatar"
2395
 
2396
- #: ../admin/social_login.php:759
2397
  msgid ""
2398
  "Show option for users to update social avatar at BuddyPress profile page"
2399
  msgstr ""
2400
  "Mostrar la opción para los usuarios de actualizar su avatar social en su "
2401
  "página de perfil de BuddyPress"
2402
 
2403
- #: ../admin/social_login.php:769
2404
  msgid ""
2405
  "If enabled, users would be able to update their social avatar from \"Profile "
2406
  "photo\" section in BuddyPress profile at front-end"
@@ -2408,7 +2479,7 @@ msgstr ""
2408
  "Si está activa, los usuarios podrán actualizar su avatar social desde la "
2409
  "sección \"Foto de perfil\" en el perfil BuddyPress, en la vista de usuario"
2410
 
2411
- #: ../admin/social_login.php:789
2412
  msgid ""
2413
  "If enabled and Social ID provider does not provide user's email address on "
2414
  "login, user will be asked to provide his/her email address. Otherwise, a "
@@ -2418,11 +2489,11 @@ msgstr ""
2418
  "email del usuario al iniciar sesión, se le pedirá al usuario que proporcione "
2419
  "su dirección de email. De lo contrario, se generará un email aleatorio"
2420
 
2421
- #: ../admin/social_login.php:797
2422
  msgid "Send post-registration email to user to set account password"
2423
  msgstr ""
2424
 
2425
- #: ../admin/social_login.php:807
2426
  msgid ""
2427
  "If enabled, an email will be sent to user after registration through Social "
2428
  "Login, regarding his/her login credentials (username-password to be able to "
@@ -2432,12 +2503,12 @@ msgstr ""
2432
  "de la red social elegida, con su nombre de usuario y su contraseña para "
2433
  "poder iniciar sesión a través del formulario de acceso tradicional"
2434
 
2435
- #: ../admin/social_login.php:814
2436
  #, fuzzy
2437
  msgid "Send new user registration notification email to admin"
2438
  msgstr "Desactivar el registro de usuario mediante redes sociales"
2439
 
2440
- #: ../admin/social_login.php:824
2441
  #, fuzzy
2442
  msgid ""
2443
  "If enabled, an email will be sent to admin after new user registers through "
@@ -2447,40 +2518,40 @@ msgstr ""
2447
  "de la red social elegida, con su nombre de usuario y su contraseña para "
2448
  "poder iniciar sesión a través del formulario de acceso tradicional"
2449
 
2450
- #: ../admin/social_login.php:831
2451
  msgid "Login redirection"
2452
  msgstr "Redirección de Ingreso"
2453
 
2454
- #: ../admin/social_login.php:835
2455
  msgid "Same page where user logged in"
2456
  msgstr "La misma página en la que el usuario ha iniciado sesión"
2457
 
2458
- #: ../admin/social_login.php:839 ../admin/social_login.php:868
2459
  msgid "Account dashboard"
2460
  msgstr "Panel de cuenta de usuario"
2461
 
2462
- #: ../admin/social_login.php:842 ../admin/social_login.php:871
2463
  msgid "BuddyPress profile page"
2464
  msgstr "Página de perfil de BuddyPress"
2465
 
2466
- #: ../admin/social_login.php:845 ../admin/social_login.php:874
2467
  msgid "Custom Url"
2468
  msgstr "Url personalizada"
2469
 
2470
- #: ../admin/social_login.php:853
2471
  msgid "User will be redirected to the selected page after Social Login"
2472
  msgstr ""
2473
  "El usuario será redirigido a la página seleccionada después de su ingreso"
2474
 
2475
- #: ../admin/social_login.php:860
2476
  msgid "Registration redirection"
2477
  msgstr "Redirección de Registro"
2478
 
2479
- #: ../admin/social_login.php:864
2480
  msgid "Same page from where user registered"
2481
  msgstr "La misma página en la que el usuario se ha registrado"
2482
 
2483
- #: ../admin/social_login.php:882
2484
  msgid ""
2485
  "User will be redirected to the selected page after registration (first "
2486
  "Social Login) through Social Login"
@@ -2488,18 +2559,18 @@ msgstr ""
2488
  "El usuario será redirigido a la página seleccionada después de su registro "
2489
  "(en su primer inicio de sesión) a través de la red social"
2490
 
2491
- #: ../admin/social_login.php:891
2492
  #, fuzzy
2493
  msgid "Social Account Linking Options"
2494
  msgstr "Comentarios en redes sociales"
2495
 
2496
- #: ../admin/social_login.php:906
2497
  #, fuzzy
2498
  msgid "Text to display above the Social Account Linking interface"
2499
  msgstr ""
2500
  "Texto para mostrar sobre la interfaz del Ingreso a través de redes sociales"
2501
 
2502
- #: ../admin/social_login.php:913
2503
  #, fuzzy
2504
  msgid ""
2505
  "Link social account to already existing account, if email address matches"
@@ -2507,7 +2578,7 @@ msgstr ""
2507
  "Enlaza la cuenta de tu red social para ingresar en tu cuenta de este sitio "
2508
  "web "
2509
 
2510
- #: ../admin/social_login.php:923
2511
  msgid ""
2512
  "If email address of the user's Social Account matches with an already "
2513
  "existing account at your website, that social account will be linked to "
@@ -2515,12 +2586,12 @@ msgid ""
2515
  "Linking interface at their profile page."
2516
  msgstr ""
2517
 
2518
- #: ../admin/social_login.php:931
2519
  msgid "Enable social account linking at BuddyPress profile page"
2520
  msgstr ""
2521
  "Permitir cuenta de red social enlazando a la página de perfil de BuddyPress"
2522
 
2523
- #: ../admin/social_login.php:941
2524
  msgid ""
2525
  "Enable this option to show social account linking interface at BuddyPress "
2526
  "profile page"
@@ -2528,15 +2599,15 @@ msgstr ""
2528
  "Activa esta opción para mostrar la cuenta social enlazando a la interfaz de "
2529
  "la página de perfil de BuddyPress"
2530
 
2531
- #: ../admin/social_login.php:952
2532
  msgid "Email popup options"
2533
  msgstr "Opciones de popup del Email"
2534
 
2535
- #: ../admin/social_login.php:957
2536
  msgid "Text on 'Email required' popup"
2537
  msgstr "Texto del popup 'Email requerido'"
2538
 
2539
- #: ../admin/social_login.php:967
2540
  msgid ""
2541
  "This text will be displayed on email required popup. Leave empty if not "
2542
  "required."
@@ -2544,11 +2615,11 @@ msgstr ""
2544
  "Este texto se mostrará en el popup de email requerido. Déjalo en blanco si "
2545
  "no es necesario."
2546
 
2547
- #: ../admin/social_login.php:975
2548
  msgid "Error message for 'Email required' popup"
2549
  msgstr "Mensaje de error para el popup de 'Email requerido'"
2550
 
2551
- #: ../admin/social_login.php:985
2552
  msgid ""
2553
  "This message will be displayed to user if it provides invalid or already "
2554
  "registered email"
@@ -2556,11 +2627,11 @@ msgstr ""
2556
  "Este mensaje se mostrará si el usuario introduce un email no válido o ya "
2557
  "registrado"
2558
 
2559
- #: ../admin/social_login.php:993
2560
  msgid "Email popup height"
2561
  msgstr "Altura del popup del Email"
2562
 
2563
- #: ../admin/social_login.php:1003
2564
  msgid ""
2565
  "If you are seeing vertical scrollbar in the \"Email required\" popup, you "
2566
  "can increase the height of popup by specifying in this option. Leave empty "
@@ -2570,11 +2641,11 @@ msgstr ""
2570
  "requerido\", puedes aumentar la altura del popup especificándola en esta "
2571
  "opción. Déjala en blanco para la altura por defecto."
2572
 
2573
- #: ../admin/social_login.php:1010
2574
  msgid "Enable email verification"
2575
  msgstr "Activar verificación por email"
2576
 
2577
- #: ../admin/social_login.php:1020
2578
  msgid ""
2579
  "If enabled, email provided by the user will be verified by sending a "
2580
  "confirmation link to that email. User would not be able to login without "
@@ -2584,108 +2655,108 @@ msgstr ""
2584
  "por el usuario. El usuario no podrá conectarse sin verificar su email y "
2585
  "pulsar este enlace"
2586
 
2587
- #: ../admin/social_login.php:1040
2588
  #, fuzzy
2589
  msgid "Enable GDPR opt-in"
2590
  msgstr "Permitir Comentarios de Disqus"
2591
 
2592
- #: ../admin/social_login.php:1050
2593
  msgid ""
2594
  "Enable it to show GDPR opt-in for social login and social account linking"
2595
  msgstr ""
2596
 
2597
- #: ../admin/social_login.php:1058
2598
  #, fuzzy
2599
  msgid "Placement of GDPR opt-in"
2600
  msgstr "Permitir Comentarios de Disqus"
2601
 
2602
- #: ../admin/social_login.php:1062
2603
  #, fuzzy
2604
  msgid "Above Social Login icons"
2605
  msgstr "Ingreso a través de redes sociales"
2606
 
2607
- #: ../admin/social_login.php:1064
2608
  #, fuzzy
2609
  msgid "Below Social Login icons"
2610
  msgstr "Ingreso a través de redes sociales"
2611
 
2612
- #: ../admin/social_login.php:1070
2613
  #, fuzzy
2614
  msgid "Placement of GDPR opt-in above or below the social login icons"
2615
  msgstr ""
2616
  "Texto para mostrar sobre la interfaz del Ingreso a través de redes sociales"
2617
 
2618
- #: ../admin/social_login.php:1077
2619
  msgid "Opt-in text"
2620
  msgstr ""
2621
 
2622
- #: ../admin/social_login.php:1087
2623
  #, fuzzy
2624
  msgid "Text for the GDPR opt-in"
2625
  msgstr "Permitir Comentarios de Disqus"
2626
 
2627
- #: ../admin/social_login.php:1094
2628
  msgid "Text to link to Terms-Conditions page"
2629
  msgstr ""
2630
 
2631
- #: ../admin/social_login.php:1104
2632
  msgid "Word(s) in the opt-in text to be linked to terms-conditions page"
2633
  msgstr ""
2634
 
2635
- #: ../admin/social_login.php:1111
2636
  msgid "Terms-Conditions Url"
2637
  msgstr ""
2638
 
2639
- #: ../admin/social_login.php:1121
2640
  #, fuzzy
2641
  msgid "Url of the terms-conditions page of your website"
2642
  msgstr "Url de la página de inicio de tu sitio web"
2643
 
2644
- #: ../admin/social_login.php:1128
2645
  msgid "Text to link to Privacy Policy page"
2646
  msgstr ""
2647
 
2648
- #: ../admin/social_login.php:1138
2649
  msgid "Word(s) in the opt-in text to be linked to privacy policy page"
2650
  msgstr ""
2651
 
2652
- #: ../admin/social_login.php:1145
2653
  msgid "Privacy Policy Url"
2654
  msgstr ""
2655
 
2656
- #: ../admin/social_login.php:1155
2657
  #, fuzzy
2658
  msgid "Url of the privacy policy page of your website"
2659
  msgstr "Url de la página de inicio de tu sitio web"
2660
 
2661
- #: ../admin/social_login.php:1206 ../inc/widget.php:260 ../inc/widget.php:438
2662
  #: ../inc/widget.php:602 ../inc/widget.php:750
2663
  msgid "Select"
2664
  msgstr "Seleccionar"
2665
 
2666
- #: ../admin/social_login.php:1237
2667
  msgid "Social Login Shortcode & Widget"
2668
  msgstr "Widget y Shortcode para el Ingreso a través de redes sociales"
2669
 
2670
- #: ../admin/social_login.php:1238
2671
  msgid "Social Linking Shortcode"
2672
  msgstr "Shortcode para enlace a través de redes sociales"
2673
 
2674
- #: ../admin/social_login.php:1253
2675
  msgid "Why is social login not working?"
2676
  msgstr ""
2677
 
2678
- #: ../admin/social_login.php:1254
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:1256
2685
  msgid "Social Login not working with Varnish enabled"
2686
  msgstr ""
2687
 
2688
- #: ../admin/social_login.php:1257
2689
  msgid ""
2690
  "Why the user is not appearing logged in even after Social Login until the "
2691
  "webpage is refreshed manually?"
@@ -2905,28 +2976,28 @@ msgstr "Petición no válida"
2905
  msgid "Providers not selected"
2906
  msgstr "Redes sociales no seleccionadas"
2907
 
2908
- #: ../inc/social_login.php:747
2909
  msgid "Email"
2910
  msgstr ""
2911
 
2912
- #: ../inc/social_login.php:748
2913
  msgid "Confirm email"
2914
  msgstr ""
2915
 
2916
- #: ../inc/social_login.php:750
2917
  msgid "Save"
2918
  msgstr ""
2919
 
2920
- #: ../inc/social_login.php:751
2921
  msgid "Cancel"
2922
  msgstr ""
2923
 
2924
- #: ../inc/social_login.php:825
2925
  #, fuzzy
2926
  msgid "Email Verification"
2927
  msgstr "Activar verificación por email"
2928
 
2929
- #: ../inc/social_login.php:827
2930
  msgid ""
2931
  "Please click on the following link or paste it in browser to verify your "
2932
  "email"
2
  msgstr ""
3
  "Project-Id-Version: Super Socializer\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2020-09-23 09:46+0530\n"
6
+ "PO-Revision-Date: 2020-09-23 09:46+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:667
20
  msgid "Problem fetching access token: "
21
  msgstr ""
22
 
23
+ #: ../super_socializer.php:671 ../super_socializer.php:685
24
  msgid "Facebook SDK returned an error: "
25
  msgstr ""
26
 
27
+ #: ../super_socializer.php:681
28
  msgid "Graph returned an error: "
29
  msgstr ""
30
 
31
+ #: ../super_socializer.php:870
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:898
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:901
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:904
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:1086 ../helper.php:961
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:1086
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:1090
77
  msgid "Notification"
78
  msgstr "Notificación"
79
 
80
+ #: ../super_socializer.php:1108 ../admin/social_login.php:869
81
  msgid "Email required"
82
  msgstr "Email requerido"
83
 
84
+ #: ../super_socializer.php:1111
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:1180
91
  msgid "Leave a reply"
92
  msgstr "Deja una respuesta"
93
 
94
+ #: ../super_socializer.php:1196 ../inc/social_sharing.php:241
95
  msgid "Shares"
96
  msgstr ""
97
 
98
+ #: ../super_socializer.php:1196 ../inc/social_sharing.php:241
99
  msgid "Share"
100
  msgstr ""
101
 
102
+ #: ../super_socializer.php:1196
103
  #, fuzzy
104
  msgid "Link copied."
105
  msgstr "LinkedIn"
106
 
107
+ #: ../super_socializer.php:1441
108
  msgid "Super Socializer - General Options"
109
  msgstr "Super Socializer - Opciones Generales"
110
 
111
+ #: ../super_socializer.php:1441 ../admin/general_options.php:15
112
  #: ../admin/social_commenting.php:47
113
  msgid "General Options"
114
  msgstr "Opciones Generales"
115
 
116
+ #: ../super_socializer.php:1509 ../helper.php:883
117
  msgid "Social Avatar"
118
  msgstr "Avatar Social"
119
 
120
+ #: ../super_socializer.php:1512
121
  msgid "Small Avatar Url"
122
  msgstr "Url de Avatar Pequeño"
123
 
124
+ #: ../super_socializer.php:1516
125
  msgid "Large Avatar Url"
126
  msgstr "Url de Avatar Grande"
127
 
128
+ #: ../super_socializer.php:1520 ../helper.php:886
129
  msgid ""
130
  "Do not fetch and update social avatar from my profile, next time I Social "
131
  "Login"
133
  "No se ha podido recuperar y actualizar el avatar social desde mi perfil, la "
134
  "próxima vez | Social Login"
135
 
136
+ #: ../super_socializer.php:1524 ../helper.php:887
137
  msgid "Update social avatar, next time I Social Login"
138
  msgstr "Actualiza tu avatar de redes sociales | Social Login"
139
 
140
+ #: ../super_socializer.php:1601
141
  msgid "Login with your Social ID"
142
  msgstr ""
143
 
144
+ #: ../super_socializer.php:1602
145
  msgid "Email you entered is already registered or invalid"
146
  msgstr "El email que has escrito ya está registrado o no es válido"
147
 
148
+ #: ../super_socializer.php:1607
149
  msgid "Please enter a valid email address. You might be required to verify it"
150
  msgstr ""
151
  "Por favor escribe una dirección de email válida. Puedes ser requerido para "
152
  "verificarla"
153
 
154
+ #: ../super_socializer.php:1611 ../super_socializer.php:2309
155
  msgid "Link your social account to login to your account at this website"
156
  msgstr ""
157
  "Enlaza la cuenta de tu red social para ingresar en tu cuenta de este sitio "
158
  "web "
159
 
160
+ #: ../super_socializer.php:1851
161
  msgid "Thanks for installing Super Socializer plugin"
162
  msgstr ""
163
 
164
+ #: ../super_socializer.php:1853
165
  msgid "Configure the Plugin"
166
  msgstr ""
167
 
168
+ #: ../super_socializer.php:1864
169
  msgid ""
170
  "Update \"Facebook Comments Moderation\" add-on for compatibility with "
171
  "current version of Super Socializer"
172
  msgstr ""
173
 
174
+ #: ../super_socializer.php:1873
175
  msgid ""
176
  "Update \"Facebook Comments Notifier\" add-on for compatibility with current "
177
  "version of Super Socializer"
178
  msgstr ""
179
 
180
+ #: ../super_socializer.php:1882
181
  msgid ""
182
  "Update \"Social Login Buttons\" add-on for compatibility with current "
183
  "version of Super Socializer"
184
  msgstr ""
185
 
186
+ #: ../super_socializer.php:1891
187
  msgid ""
188
  "Update \"Social Share myCRED Integration\" add-on for maximum compatibility "
189
  "with current version of Super Socializer"
190
  msgstr ""
191
 
192
+ #: ../super_socializer.php:1900
193
  msgid ""
194
  "Update \"Social Login myCRED Integration\" add-on for maximum compatibility "
195
  "with current version of Super Socializer"
196
  msgstr ""
197
 
198
+ #: ../super_socializer.php:1911
199
  #, php-format
200
  msgid ""
201
  "To continue using Steam login save Steam API key <a href=\"%s\">here</a>"
202
  msgstr ""
203
 
204
+ #: ../super_socializer.php:1920
205
  #, php-format
206
  msgid ""
207
  "To continue using Instagram login create a new Instagram App as described <a "
209
  "Instagram App Secret <a href=\"%s\">here</a>"
210
  msgstr ""
211
 
212
+ #: ../super_socializer.php:1929 ../super_socializer.php:1938
213
  #, php-format
214
  msgid ""
215
  "To continue using bitly url shortener, login to your bit.ly account and "
218
  "\">here</a>. More details at the <a href=\"%s\" target=\"_blank\">link</a>"
219
  msgstr ""
220
 
221
+ #: ../super_socializer.php:1954
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:1978
228
  #, php-format
229
  msgid ""
230
  "Add %s in \"Valid OAuth redirect URIs\" option in your Facebook app settings "
232
  "target=\"_blank\">here</a>"
233
  msgstr ""
234
 
235
+ #: ../super_socializer.php:1978 ../super_socializer.php:2003
236
+ #: ../super_socializer.php:2028 ../super_socializer.php:2053
237
+ #: ../super_socializer.php:2086 ../super_socializer.php:2114
238
+ #: ../super_socializer.php:2141
239
  msgid "Okay"
240
  msgstr ""
241
 
242
+ #: ../super_socializer.php:2003
243
  #, php-format
244
  msgid ""
245
  "Add %s in \"Callback URLs\" option in your Twitter app settings for Twitter "
247
  "\">here</a>"
248
  msgstr ""
249
 
250
+ #: ../super_socializer.php:2028
251
  #, php-format
252
  msgid ""
253
  "Add %s in \"Authorized Redirect URLs\" option in your Linkedin app settings "
255
  "target=\"_blank\">here</a>"
256
  msgstr ""
257
 
258
+ #: ../super_socializer.php:2053
259
  #, php-format
260
  msgid ""
261
  "Add %s in \"Authorized redirect URIs\" option in your Google client settings "
263
  "target=\"_blank\">here</a>"
264
  msgstr ""
265
 
266
+ #: ../super_socializer.php:2064
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:2086
273
  #, php-format
274
  msgid ""
275
  "This plugin is GDPR compliant. You need to update the privacy policy of your "
277
  "\"%s\" target=\"_blank\">here</a>"
278
  msgstr ""
279
 
280
+ #: ../super_socializer.php:2114
281
  #, php-format
282
  msgid ""
283
  "Now plugin supports a new service Twitcount.com to show Twitter shares. To "
286
  "your website %s with them. No need to copy-paste any code from their website."
287
  msgstr ""
288
 
289
+ #: ../super_socializer.php:2141
290
  #, php-format
291
  msgid ""
292
  "Replace url saved in \"Callback URLs\" option in your Twitter app settings "
294
  "\"%s\" target=\"_blank\">here</a>"
295
  msgstr ""
296
 
297
+ #: ../super_socializer.php:2166
298
  #, php-format
299
  msgid ""
300
  "If you cannot get Linkedin login to work after updating the plugin, replace "
302
  "For more details, check step 6 <a href=\"%s\" target=\"_blank\">here</a>"
303
  msgstr ""
304
 
305
+ #: ../super_socializer.php:2166 ../super_socializer.php:2193
306
  msgid "Dismiss"
307
  msgstr ""
308
 
309
+ #: ../super_socializer.php:2192
310
  #, php-format
311
  msgid ""
312
  "Save Facebook App ID and Secret keys in \"Standard Interface\" and/or "
315
  "that, clear share counts cache from \"Miscellaneous\" section"
316
  msgstr ""
317
 
318
+ #: ../super_socializer.php:2385
319
  msgid ""
320
  "Your browser is blocking some features of this website. Please follow the "
321
  "instructions at {support_url} to unblock these."
418
 
419
  #: ../helper.php:898 ../admin/general_options.php:89
420
  #: ../admin/social_sharing.php:1944 ../admin/social_commenting.php:400
421
+ #: ../admin/social_login.php:1359 ../admin/like_buttons.php:780
422
  msgid "Save Changes"
423
  msgstr "Guardar Cambios"
424
 
442
  #: ../admin/general_options.php:7 ../admin/general_options.php:93
443
  #: ../admin/social_sharing.php:5 ../admin/social_sharing.php:1948
444
  #: ../admin/social_commenting.php:5 ../admin/social_commenting.php:404
445
+ #: ../admin/social_login.php:5 ../admin/social_login.php:1363
446
  #: ../admin/like_buttons.php:6 ../admin/like_buttons.php:784
447
  #, fuzzy, php-format
448
  msgid ""
498
  "style&gt;)"
499
 
500
  #: ../admin/general_options.php:103 ../admin/social_sharing.php:1954
501
+ #: ../admin/social_commenting.php:410 ../admin/social_login.php:1369
502
  #: ../admin/like_buttons.php:790
503
  #, fuzzy
504
  msgid "Instagram Shoutout"
505
  msgstr "Instagram"
506
 
507
  #: ../admin/general_options.php:105 ../admin/social_sharing.php:1956
508
+ #: ../admin/social_commenting.php:412 ../admin/social_login.php:1371
509
  #: ../admin/like_buttons.php:792
510
  msgid ""
511
  "If you can send (to hello@heateor.com) how this plugin is helping your "
644
 
645
  #: ../admin/social_sharing.php:67 ../admin/social_sharing.php:1869
646
  #: ../admin/social_sharing.php:1871 ../admin/social_login.php:45
647
+ #: ../admin/social_login.php:1325 ../admin/like_buttons.php:50
648
  #: ../admin/like_buttons.php:751
649
  msgid "Shortcode & Widget"
650
  msgstr "Widgets y Shortcodes"
655
 
656
  #: ../admin/social_sharing.php:69 ../admin/social_sharing.php:1902
657
  #: ../admin/social_commenting.php:40 ../admin/social_commenting.php:384
658
+ #: ../admin/social_login.php:46 ../admin/social_login.php:1339
659
  #: ../admin/like_buttons.php:51 ../admin/like_buttons.php:764
660
  msgid "FAQ"
661
  msgstr "FAQ"
889
  msgid "Url to share"
890
  msgstr "Url para compartir"
891
 
892
+ #: ../admin/social_sharing.php:725 ../admin/social_login.php:610
893
+ #: ../admin/social_login.php:986 ../admin/like_buttons.php:105
894
  #: ../inc/widget.php:945
895
  msgid "Title"
896
  msgstr "Título"
979
  msgstr "Ubicación"
980
 
981
  #: ../admin/social_sharing.php:957 ../admin/social_sharing.php:1383
982
+ #: ../admin/social_login.php:927 ../admin/social_login.php:956
983
  #: ../admin/like_buttons.php:218 ../admin/like_buttons.php:494
984
  msgid "Homepage"
985
  msgstr "Página de Inicio"
1256
  msgid "Required only to track Facebook share count"
1257
  msgstr ""
1258
 
1259
+ #: ../admin/social_sharing.php:1584 ../admin/social_login.php:158
1260
  msgid "Facebook App ID"
1261
  msgstr "Facebook App ID"
1262
 
1270
  "sigue la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> "
1271
  "para conseguir tu Facebook App ID"
1272
 
1273
+ #: ../admin/social_sharing.php:1601 ../admin/social_login.php:179
1274
  #, fuzzy
1275
  msgid "Facebook App Secret"
1276
  msgstr "Facebook App ID"
1458
  "que Facebook no está compartiendo correctamente) en el campo de texto:"
1459
 
1460
  #: ../admin/social_sharing.php:1904 ../admin/social_commenting.php:386
1461
+ #: ../admin/social_login.php:1341
1462
  msgid ""
1463
  "<strong>Note:</strong> Plugin will not work on local server. You should have "
1464
  "an online website for the plugin to function properly."
1515
  msgstr ""
1516
 
1517
  #: ../admin/social_sharing.php:1919 ../admin/social_commenting.php:389
1518
+ #: ../admin/social_login.php:1348
1519
  msgid "Why is my browser blocking some features of the plugin?"
1520
  msgstr ""
1521
 
1840
  msgid "Advanced Configuration"
1841
  msgstr "Configuración básica"
1842
 
1843
+ #: ../admin/social_login.php:41 ../admin/social_login.php:1125
1844
  msgid "GDPR"
1845
  msgstr ""
1846
 
1847
+ #: ../admin/social_login.php:43 ../admin/social_login.php:1276
1848
  msgid "XProfile Integration"
1849
  msgstr ""
1850
 
1914
  msgstr ""
1915
 
1916
  #: ../admin/social_login.php:135
1917
+ msgid "Wordpress"
1918
+ msgstr ""
1919
+
1920
+ #: ../admin/social_login.php:139
1921
  msgid "Windows Live"
1922
  msgstr ""
1923
 
1924
  #: ../admin/social_login.php:143
1925
+ msgid "Yahoo"
1926
+ msgstr ""
1927
+
1928
+ #: ../admin/social_login.php:151
1929
  msgid "Select Social ID provider to enable in Social Login"
1930
  msgstr ""
1931
  "Seleccionar un proveedor de Social ID para permitir el ingreso a través de "
1932
  "redes sociales"
1933
 
1934
+ #: ../admin/social_login.php:168
1935
  #, php-format
1936
  msgid ""
1937
  "Required for Facebook Social Login to work. Please follow the documentation "
1941
  "sigue la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> "
1942
  "para conseguir tu Facebook App ID"
1943
 
1944
+ #: ../admin/social_login.php:170 ../admin/social_login.php:191
1945
  #, fuzzy
1946
  msgid ""
1947
  "Paste following url in <strong>Site URL</strong> option mentioned at the link"
1949
  "Pega la siguiente url en la opción <strong>Site URL</ strong> en el enlace "
1950
  "mencionado"
1951
 
1952
+ #: ../admin/social_login.php:189
1953
  #, fuzzy, php-format
1954
  msgid ""
1955
  "Required for Facebook Social Login to work. Please follow the documentation "
1959
  "sigue la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> "
1960
  "para conseguir tu Facebook App ID"
1961
 
1962
+ #: ../admin/social_login.php:200
1963
  msgid "Twitter API Key"
1964
  msgstr "Twitter API Key"
1965
 
1966
+ #: ../admin/social_login.php:210
1967
  #, php-format
1968
  msgid ""
1969
  "Required for Twitter Social Login to work. Please follow the documentation "
1973
  "la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> para "
1974
  "conseguir tu Twitter Key"
1975
 
1976
+ #: ../admin/social_login.php:212 ../admin/social_login.php:237
1977
  #, fuzzy
1978
  msgid ""
1979
  "Paste following url in <strong>Website</strong> option mentioned at the link"
1981
  "Pega la siguiente url en la opción <strong>Website URL</ strong> en el "
1982
  "enlace mencionado"
1983
 
1984
+ #: ../admin/social_login.php:216 ../admin/social_login.php:241
1985
+ #: ../admin/social_login.php:429 ../admin/social_login.php:449
1986
+ #: ../admin/social_login.php:469 ../admin/social_login.php:489
1987
  #, fuzzy
1988
  msgid ""
1989
  "Paste following url in <strong>Callback URL</strong> option mentioned at the "
1992
  "Pega la siguiente url en la opción <strong>Callback domain</ strong> en el "
1993
  "enlace mencionado"
1994
 
1995
+ #: ../admin/social_login.php:225
1996
  msgid "Twitter API Secret"
1997
  msgstr "Twitter API Secret"
1998
 
1999
+ #: ../admin/social_login.php:235
2000
  #, php-format
2001
  msgid ""
2002
  "Required for Twitter Social Login to work. Please follow the documentation "
2006
  "la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> para "
2007
  "conseguir tu Twitter API Secret"
2008
 
2009
+ #: ../admin/social_login.php:250
2010
  #, fuzzy
2011
  msgid "LinkedIn Client ID"
2012
  msgstr "LinkedIn"
2013
 
2014
+ #: ../admin/social_login.php:260
2015
  #, fuzzy, php-format
2016
  msgid ""
2017
  "Required for LinkedIn Social Login to work. Please follow the documentation "
2021
  "sigue la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> "
2022
  "para conseguir tu LinkedIn API Key"
2023
 
2024
+ #: ../admin/social_login.php:262 ../admin/social_login.php:283
2025
  #, fuzzy
2026
  msgid ""
2027
  "Paste following url in <strong>Redirect URLs</strong> option mentioned at "
2030
  "Pega la siguiente url en la opción <strong>Site URL</ strong> en el enlace "
2031
  "mencionado"
2032
 
2033
+ #: ../admin/social_login.php:271
2034
  #, fuzzy
2035
  msgid "LinkedIn Client Secret"
2036
  msgstr "LinkedIn"
2037
 
2038
+ #: ../admin/social_login.php:281
2039
  #, fuzzy, php-format
2040
  msgid ""
2041
  "Required for LinkedIn Social Login to work. Please follow the documentation "
2046
  "sigue la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> "
2047
  "para conseguir tu LinkedIn API Key"
2048
 
2049
+ #: ../admin/social_login.php:292
2050
  #, fuzzy
2051
  msgid "Google Client ID"
2052
  msgstr "Google+ Client ID"
2053
 
2054
+ #: ../admin/social_login.php:302
2055
  #, fuzzy, php-format
2056
  msgid ""
2057
  "Required for Google Social Login to work. Please follow the documentation at "
2061
  "sigue la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> "
2062
  "para conseguir tu GooglePlus Client ID"
2063
 
2064
+ #: ../admin/social_login.php:304 ../admin/social_login.php:325
2065
  #, fuzzy
2066
  msgid ""
2067
  "Paste following url in <strong>AUTHORIZED REDIRECT URI</strong> option "
2070
  "Pega la siguiente url en la opción <strong>Site URL</ strong> en el enlace "
2071
  "mencionado"
2072
 
2073
+ #: ../admin/social_login.php:313
2074
  #, fuzzy
2075
  msgid "Google Client Secret"
2076
  msgstr "Google+ Client ID"
2077
 
2078
+ #: ../admin/social_login.php:323
2079
  #, fuzzy, php-format
2080
  msgid ""
2081
  "Required for Google Social Login to work. Please follow the documentation at "
2085
  "sigue la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> "
2086
  "para conseguir tu GooglePlus Client ID"
2087
 
2088
+ #: ../admin/social_login.php:334
2089
  msgid "Vkontakte Application ID"
2090
  msgstr "Vkontakte Application ID"
2091
 
2092
+ #: ../admin/social_login.php:344 ../admin/social_login.php:365
2093
  #, php-format
2094
  msgid ""
2095
  "Required for Vkontakte Social Login to work. Please follow the documentation "
2100
  "sigue la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> "
2101
  "para conseguir tu Vkontakte Application ID"
2102
 
2103
+ #: ../admin/social_login.php:346 ../admin/social_login.php:367
2104
  #, fuzzy
2105
  msgid ""
2106
  "Paste following url in <strong>Site address</strong> option mentioned at the "
2109
  "Pega la siguiente url en la opción <strong>Site address</ strong> en el "
2110
  "enlace mencionado"
2111
 
2112
+ #: ../admin/social_login.php:355
2113
  #, fuzzy
2114
  msgid "Vkontakte Secure key"
2115
  msgstr "Vkontakte"
2116
 
2117
+ #: ../admin/social_login.php:376
2118
  #, fuzzy
2119
  msgid "Instagram App ID"
2120
  msgstr "Instagram Client ID"
2121
 
2122
+ #: ../admin/social_login.php:386
2123
  #, fuzzy, php-format
2124
  msgid ""
2125
  "Required for Instagram Social Login to work. Please follow the documentation "
2129
  "sigue la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> "
2130
  "para conseguir tu Instagram Client ID"
2131
 
2132
+ #: ../admin/social_login.php:388 ../admin/social_login.php:409
2133
  #, fuzzy
2134
  msgid ""
2135
  "Paste following url in <strong>Valid OAuth Redirect URIs</strong> option "
2138
  "Pega la siguiente url en la opción <strong>Site URL</ strong> en el enlace "
2139
  "mencionado"
2140
 
2141
+ #: ../admin/social_login.php:397
2142
  #, fuzzy
2143
  msgid "Instagram App Secret"
2144
  msgstr "Instagram"
2145
 
2146
+ #: ../admin/social_login.php:407
2147
  #, fuzzy, php-format
2148
  msgid ""
2149
  "Required for Instagram Social Login to work. Please follow the documentation "
2153
  "sigue la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> "
2154
  "para conseguir tu Instagram Client ID"
2155
 
2156
+ #: ../admin/social_login.php:418
2157
  msgid "Line Channel ID"
2158
  msgstr ""
2159
 
2160
+ #: ../admin/social_login.php:427
2161
  #, fuzzy, php-format
2162
  msgid ""
2163
  "Required for Line Social Login to work. Please follow the documentation at "
2167
  "sigue la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> "
2168
  "para conseguir tu LinkedIn API Key"
2169
 
2170
+ #: ../admin/social_login.php:438
2171
  #, fuzzy
2172
  msgid "Line Channel Secret"
2173
  msgstr "LinkedIn"
2174
 
2175
+ #: ../admin/social_login.php:447
2176
  #, fuzzy, php-format
2177
  msgid ""
2178
  "Required for Line Social Login to work. Please follow the documentation at "
2182
  "sigue la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> "
2183
  "para conseguir tu LinkedIn API Key"
2184
 
2185
+ #: ../admin/social_login.php:458
2186
+ #, fuzzy
2187
+ msgid "Wordpress Client ID"
2188
+ msgstr "Google+ Client ID"
2189
+
2190
+ #: ../admin/social_login.php:467
2191
+ #, fuzzy, php-format
2192
+ msgid ""
2193
+ "Required for Wordpress Social Login to work. Please follow the documentation "
2194
+ "at <a href=\"%s\" target=\"_blank\">this link</a> to get Wordpress Client ID"
2195
+ msgstr ""
2196
+ "Requerido para que funcione el ingreso a través de GooglePlus. Por favor, "
2197
+ "sigue la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> "
2198
+ "para conseguir tu GooglePlus Client ID"
2199
+
2200
+ #: ../admin/social_login.php:478
2201
+ #, fuzzy
2202
+ msgid "Wordpress Client Secret"
2203
+ msgstr "Google+ Client ID"
2204
+
2205
+ #: ../admin/social_login.php:487
2206
+ #, fuzzy, php-format
2207
+ msgid ""
2208
+ "Required for Wordpress Social Login to work. Please follow the documentation "
2209
+ "at <a href=\"%s\" target=\"_blank\">this link</a> to get Wordpress Client "
2210
+ "Secret"
2211
+ msgstr ""
2212
+ "Requerido para que funcione el ingreso a través de GooglePlus. Por favor, "
2213
+ "sigue la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> "
2214
+ "para conseguir tu GooglePlus Client ID"
2215
+
2216
+ #: ../admin/social_login.php:498
2217
  #, fuzzy
2218
  msgid "Microsoft Client ID"
2219
  msgstr "Google+ Client ID"
2220
 
2221
+ #: ../admin/social_login.php:507
2222
  #, fuzzy, php-format
2223
  msgid ""
2224
  "Required for Live Social Login to work. Please follow the documentation at "
2228
  "sigue la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> "
2229
  "para conseguir tu GooglePlus Client ID"
2230
 
2231
+ #: ../admin/social_login.php:509 ../admin/social_login.php:529
2232
+ #: ../admin/social_login.php:567 ../admin/social_login.php:587
2233
  #, fuzzy
2234
  msgid ""
2235
  "Paste following url in <strong>Redirect URIs</strong> option mentioned at "
2238
  "Pega la siguiente url en la opción <strong>Site URL</ strong> en el enlace "
2239
  "mencionado"
2240
 
2241
+ #: ../admin/social_login.php:518
2242
  #, fuzzy
2243
  msgid "Microsoft Client Secret"
2244
  msgstr "Google+ Client ID"
2245
 
2246
+ #: ../admin/social_login.php:527
2247
  #, fuzzy, php-format
2248
  msgid ""
2249
  "Required for Live Social Login to work. Please follow the documentation at "
2254
  "sigue la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> "
2255
  "para conseguir tu GooglePlus Client ID"
2256
 
2257
+ #: ../admin/social_login.php:537
2258
  #, fuzzy
2259
  msgid "Steam API Key"
2260
  msgstr "Twitter API Key"
2261
 
2262
+ #: ../admin/social_login.php:546
2263
  #, fuzzy, php-format
2264
  msgid ""
2265
  "Required for Steam Social Login to work. Get it at <a href=\"%s\" target="
2269
  "la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> para "
2270
  "conseguir tu Twitter Key"
2271
 
2272
+ #: ../admin/social_login.php:547
2273
  #, fuzzy
2274
  msgid "Save following <strong>domain</strong> to get the key"
2275
  msgstr ""
2276
  "Pega la siguiente url en la opción <strong>Callback domain</ strong> en el "
2277
  "enlace mencionado"
2278
 
2279
+ #: ../admin/social_login.php:556
2280
+ #, fuzzy
2281
+ msgid "Yahoo Client ID"
2282
+ msgstr "Google+ Client ID"
2283
+
2284
+ #: ../admin/social_login.php:565
2285
+ #, fuzzy, php-format
2286
+ msgid ""
2287
+ "Required for Yahoo Social Login to work. Please follow the documentation at "
2288
+ "<a href=\"%s\" target=\"_blank\">this link</a> to get Yahoo Client ID"
2289
+ msgstr ""
2290
+ "Requerido para que funcione el ingreso a través de GooglePlus. Por favor, "
2291
+ "sigue la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> "
2292
+ "para conseguir tu GooglePlus Client ID"
2293
+
2294
+ #: ../admin/social_login.php:576
2295
+ #, fuzzy
2296
+ msgid "Yahoo Client Secret"
2297
+ msgstr "Google+ Client ID"
2298
+
2299
+ #: ../admin/social_login.php:585
2300
+ #, fuzzy, php-format
2301
+ msgid ""
2302
+ "Required for Yahoo Social Login to work. Please follow the documentation at "
2303
+ "<a href=\"%s\" target=\"_blank\">this link</a> to get Yahoo Client Secret key"
2304
+ msgstr ""
2305
+ "Requerido para que funcione el ingreso a través de GooglePlus. Por favor, "
2306
+ "sigue la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> "
2307
+ "para conseguir tu GooglePlus Client ID"
2308
+
2309
+ #: ../admin/social_login.php:605
2310
  #, fuzzy
2311
  msgid "Social Login Options"
2312
  msgstr "Ingreso a través de redes sociales"
2313
 
2314
+ #: ../admin/social_login.php:620
2315
  msgid "Text to display above the Social Login interface"
2316
  msgstr ""
2317
  "Texto para mostrar sobre la interfaz del Ingreso a través de redes sociales"
2318
 
2319
+ #: ../admin/social_login.php:628
2320
  msgid "Trigger social login in the same browser tab"
2321
  msgstr ""
2322
 
2323
+ #: ../admin/social_login.php:638
2324
  msgid "Trigger social login in the same browser tab instead of a popup window"
2325
  msgstr ""
2326
 
2327
+ #: ../admin/social_login.php:645
2328
  #, fuzzy
2329
  msgid "Center align icons"
2330
  msgstr "Reorganizar iconos"
2331
 
2332
+ #: ../admin/social_login.php:655
2333
  #, fuzzy
2334
  msgid "Center align social login icons"
2335
  msgstr "Ingreso a través de redes sociales"
2336
 
2337
+ #: ../admin/social_login.php:662
2338
  msgid "Enable at login page"
2339
  msgstr "Permitir Página de Ingreso"
2340
 
2341
+ #: ../admin/social_login.php:672
2342
  msgid ""
2343
  "Social Login interface will get enabled at the login page of your website"
2344
  msgstr ""
2345
  "La interfaz de Ingreso a través de redes sociales aparecerá en la página de "
2346
  "acceso de tu sitio web"
2347
 
2348
+ #: ../admin/social_login.php:679
2349
  msgid "Enable at register page"
2350
  msgstr "Permitir Página de Registro"
2351
 
2352
+ #: ../admin/social_login.php:689
2353
  msgid ""
2354
  "Social Login interface will get enabled at the registration page of your "
2355
  "website"
2357
  "La interfaz de Ingreso a través de redes sociales aparecerá en la página de "
2358
  "registro de tu sitio web"
2359
 
2360
+ #: ../admin/social_login.php:696
2361
  msgid "Enable at comment form"
2362
  msgstr "Permitir el formulario de comentarios"
2363
 
2364
+ #: ../admin/social_login.php:706
2365
  msgid "Social Login interface will get enabled at your Wordpress Comment form"
2366
  msgstr ""
2367
  "La interfaz de Ingreso a través de redes sociales aparecerá en el formulario "
2368
  "de Comentario de tu WordPress"
2369
 
2370
+ #: ../admin/social_login.php:720
2371
  msgid "Enable before WooCommerce Customer Login Form"
2372
  msgstr "Permitir antes del Formulario de Ingreso de Cliente de WooCommerce"
2373
 
2374
+ #: ../admin/social_login.php:730
2375
  msgid ""
2376
  "Social Login Interface will get enabled before the customer login form at "
2377
  "WooCommerce My Account page"
2379
  "La interfaz de Ingreso a través de redes sociales aparecerá antes del "
2380
  "formulario de ingreso de cliente de la página Mi Cuenta de WooCommerce"
2381
 
2382
+ #: ../admin/social_login.php:737
2383
  #, fuzzy
2384
  msgid "Enable at WooCommerce Customer Login Form"
2385
  msgstr "Permitir después del Formulario de Ingreso de Cliente de WooCommerce"
2386
 
2387
+ #: ../admin/social_login.php:747
2388
  #, fuzzy
2389
  msgid ""
2390
  "Integrate Social Login Interface with the customer login form at WooCommerce "
2393
  "La interfaz de Ingreso a través de redes sociales aparecerá después del "
2394
  "formulario de ingreso de cliente de la página Mi Cuenta de WooCommerce"
2395
 
2396
+ #: ../admin/social_login.php:754
2397
  #, fuzzy
2398
  msgid "Enable at WooCommerce Customer Register Form"
2399
  msgstr "Permitir después del Formulario de Ingreso de Cliente de WooCommerce"
2400
 
2401
+ #: ../admin/social_login.php:764
2402
  #, fuzzy
2403
  msgid ""
2404
  "Integrate Social Login Interface with the customer register form at "
2407
  "La interfaz de Ingreso a través de redes sociales aparecerá después del "
2408
  "formulario de ingreso de cliente de la página Mi Cuenta de WooCommerce"
2409
 
2410
+ #: ../admin/social_login.php:771
2411
  msgid "Enable at WooCommerce checkout page"
2412
  msgstr "Permitir en la página de checkout de WooCommerce"
2413
 
2414
+ #: ../admin/social_login.php:781
2415
  msgid "Social Login Interface will get enabled at WooCommerce checkout page"
2416
  msgstr ""
2417
  "La interfaz de Ingreso a través de redes sociales aparecerá en la página de "
2418
  "checkout de WooCommerce"
2419
 
2420
+ #: ../admin/social_login.php:791
2421
  msgid "Auto-approve comments made by Social Login users"
2422
  msgstr ""
2423
  "Aprobar automáticamente los comentarios hechos por los usuarios conectados a "
2424
  "través de redes sociales"
2425
 
2426
+ #: ../admin/social_login.php:801
2427
  msgid ""
2428
  "If this option is enabled, and WordPress comment is made by Social Login "
2429
  "user, comment will get approved immediately without keeping in moderation."
2432
  "usuario conectado a través de WordPress, su comentario será aprobado de "
2433
  "inmediato sin necesidad de moderación."
2434
 
2435
+ #: ../admin/social_login.php:802
2436
  msgid "Note: This is not related to Facebook comments"
2437
  msgstr "Nota: Esto no es válido para los comentarios de Facebook"
2438
 
2439
+ #: ../admin/social_login.php:811
2440
  msgid "Enable social avatar"
2441
  msgstr "Permitir avatar social"
2442
 
2443
+ #: ../admin/social_login.php:821
2444
  msgid ""
2445
  "Social profile pictures of the logged in user will be displayed as profile "
2446
  "avatar"
2448
  "Las imágenes del perfil social del usuario conectado se mostrarán como su "
2449
  "avatar de perfil"
2450
 
2451
+ #: ../admin/social_login.php:830
2452
  msgid "Avatar quality"
2453
  msgstr "Calidad del avatar"
2454
 
2455
+ #: ../admin/social_login.php:833
2456
  msgid "Average"
2457
  msgstr "Media"
2458
 
2459
+ #: ../admin/social_login.php:834
2460
  msgid "Best"
2461
  msgstr "Alta"
2462
 
2463
+ #: ../admin/social_login.php:841
2464
  msgid "Choose avatar quality"
2465
  msgstr "Elegir la calidad del avatar"
2466
 
2467
+ #: ../admin/social_login.php:849
2468
  msgid ""
2469
  "Show option for users to update social avatar at BuddyPress profile page"
2470
  msgstr ""
2471
  "Mostrar la opción para los usuarios de actualizar su avatar social en su "
2472
  "página de perfil de BuddyPress"
2473
 
2474
+ #: ../admin/social_login.php:859
2475
  msgid ""
2476
  "If enabled, users would be able to update their social avatar from \"Profile "
2477
  "photo\" section in BuddyPress profile at front-end"
2479
  "Si está activa, los usuarios podrán actualizar su avatar social desde la "
2480
  "sección \"Foto de perfil\" en el perfil BuddyPress, en la vista de usuario"
2481
 
2482
+ #: ../admin/social_login.php:879
2483
  msgid ""
2484
  "If enabled and Social ID provider does not provide user's email address on "
2485
  "login, user will be asked to provide his/her email address. Otherwise, a "
2489
  "email del usuario al iniciar sesión, se le pedirá al usuario que proporcione "
2490
  "su dirección de email. De lo contrario, se generará un email aleatorio"
2491
 
2492
+ #: ../admin/social_login.php:887
2493
  msgid "Send post-registration email to user to set account password"
2494
  msgstr ""
2495
 
2496
+ #: ../admin/social_login.php:897
2497
  msgid ""
2498
  "If enabled, an email will be sent to user after registration through Social "
2499
  "Login, regarding his/her login credentials (username-password to be able to "
2503
  "de la red social elegida, con su nombre de usuario y su contraseña para "
2504
  "poder iniciar sesión a través del formulario de acceso tradicional"
2505
 
2506
+ #: ../admin/social_login.php:904
2507
  #, fuzzy
2508
  msgid "Send new user registration notification email to admin"
2509
  msgstr "Desactivar el registro de usuario mediante redes sociales"
2510
 
2511
+ #: ../admin/social_login.php:914
2512
  #, fuzzy
2513
  msgid ""
2514
  "If enabled, an email will be sent to admin after new user registers through "
2518
  "de la red social elegida, con su nombre de usuario y su contraseña para "
2519
  "poder iniciar sesión a través del formulario de acceso tradicional"
2520
 
2521
+ #: ../admin/social_login.php:921
2522
  msgid "Login redirection"
2523
  msgstr "Redirección de Ingreso"
2524
 
2525
+ #: ../admin/social_login.php:925
2526
  msgid "Same page where user logged in"
2527
  msgstr "La misma página en la que el usuario ha iniciado sesión"
2528
 
2529
+ #: ../admin/social_login.php:929 ../admin/social_login.php:958
2530
  msgid "Account dashboard"
2531
  msgstr "Panel de cuenta de usuario"
2532
 
2533
+ #: ../admin/social_login.php:932 ../admin/social_login.php:961
2534
  msgid "BuddyPress profile page"
2535
  msgstr "Página de perfil de BuddyPress"
2536
 
2537
+ #: ../admin/social_login.php:935 ../admin/social_login.php:964
2538
  msgid "Custom Url"
2539
  msgstr "Url personalizada"
2540
 
2541
+ #: ../admin/social_login.php:943
2542
  msgid "User will be redirected to the selected page after Social Login"
2543
  msgstr ""
2544
  "El usuario será redirigido a la página seleccionada después de su ingreso"
2545
 
2546
+ #: ../admin/social_login.php:950
2547
  msgid "Registration redirection"
2548
  msgstr "Redirección de Registro"
2549
 
2550
+ #: ../admin/social_login.php:954
2551
  msgid "Same page from where user registered"
2552
  msgstr "La misma página en la que el usuario se ha registrado"
2553
 
2554
+ #: ../admin/social_login.php:972
2555
  msgid ""
2556
  "User will be redirected to the selected page after registration (first "
2557
  "Social Login) through Social Login"
2559
  "El usuario será redirigido a la página seleccionada después de su registro "
2560
  "(en su primer inicio de sesión) a través de la red social"
2561
 
2562
+ #: ../admin/social_login.php:981
2563
  #, fuzzy
2564
  msgid "Social Account Linking Options"
2565
  msgstr "Comentarios en redes sociales"
2566
 
2567
+ #: ../admin/social_login.php:996
2568
  #, fuzzy
2569
  msgid "Text to display above the Social Account Linking interface"
2570
  msgstr ""
2571
  "Texto para mostrar sobre la interfaz del Ingreso a través de redes sociales"
2572
 
2573
+ #: ../admin/social_login.php:1003
2574
  #, fuzzy
2575
  msgid ""
2576
  "Link social account to already existing account, if email address matches"
2578
  "Enlaza la cuenta de tu red social para ingresar en tu cuenta de este sitio "
2579
  "web "
2580
 
2581
+ #: ../admin/social_login.php:1013
2582
  msgid ""
2583
  "If email address of the user's Social Account matches with an already "
2584
  "existing account at your website, that social account will be linked to "
2586
  "Linking interface at their profile page."
2587
  msgstr ""
2588
 
2589
+ #: ../admin/social_login.php:1021
2590
  msgid "Enable social account linking at BuddyPress profile page"
2591
  msgstr ""
2592
  "Permitir cuenta de red social enlazando a la página de perfil de BuddyPress"
2593
 
2594
+ #: ../admin/social_login.php:1031
2595
  msgid ""
2596
  "Enable this option to show social account linking interface at BuddyPress "
2597
  "profile page"
2599
  "Activa esta opción para mostrar la cuenta social enlazando a la interfaz de "
2600
  "la página de perfil de BuddyPress"
2601
 
2602
+ #: ../admin/social_login.php:1042
2603
  msgid "Email popup options"
2604
  msgstr "Opciones de popup del Email"
2605
 
2606
+ #: ../admin/social_login.php:1047
2607
  msgid "Text on 'Email required' popup"
2608
  msgstr "Texto del popup 'Email requerido'"
2609
 
2610
+ #: ../admin/social_login.php:1057
2611
  msgid ""
2612
  "This text will be displayed on email required popup. Leave empty if not "
2613
  "required."
2615
  "Este texto se mostrará en el popup de email requerido. Déjalo en blanco si "
2616
  "no es necesario."
2617
 
2618
+ #: ../admin/social_login.php:1065
2619
  msgid "Error message for 'Email required' popup"
2620
  msgstr "Mensaje de error para el popup de 'Email requerido'"
2621
 
2622
+ #: ../admin/social_login.php:1075
2623
  msgid ""
2624
  "This message will be displayed to user if it provides invalid or already "
2625
  "registered email"
2627
  "Este mensaje se mostrará si el usuario introduce un email no válido o ya "
2628
  "registrado"
2629
 
2630
+ #: ../admin/social_login.php:1083
2631
  msgid "Email popup height"
2632
  msgstr "Altura del popup del Email"
2633
 
2634
+ #: ../admin/social_login.php:1093
2635
  msgid ""
2636
  "If you are seeing vertical scrollbar in the \"Email required\" popup, you "
2637
  "can increase the height of popup by specifying in this option. Leave empty "
2641
  "requerido\", puedes aumentar la altura del popup especificándola en esta "
2642
  "opción. Déjala en blanco para la altura por defecto."
2643
 
2644
+ #: ../admin/social_login.php:1100
2645
  msgid "Enable email verification"
2646
  msgstr "Activar verificación por email"
2647
 
2648
+ #: ../admin/social_login.php:1110
2649
  msgid ""
2650
  "If enabled, email provided by the user will be verified by sending a "
2651
  "confirmation link to that email. User would not be able to login without "
2655
  "por el usuario. El usuario no podrá conectarse sin verificar su email y "
2656
  "pulsar este enlace"
2657
 
2658
+ #: ../admin/social_login.php:1130
2659
  #, fuzzy
2660
  msgid "Enable GDPR opt-in"
2661
  msgstr "Permitir Comentarios de Disqus"
2662
 
2663
+ #: ../admin/social_login.php:1140
2664
  msgid ""
2665
  "Enable it to show GDPR opt-in for social login and social account linking"
2666
  msgstr ""
2667
 
2668
+ #: ../admin/social_login.php:1148
2669
  #, fuzzy
2670
  msgid "Placement of GDPR opt-in"
2671
  msgstr "Permitir Comentarios de Disqus"
2672
 
2673
+ #: ../admin/social_login.php:1152
2674
  #, fuzzy
2675
  msgid "Above Social Login icons"
2676
  msgstr "Ingreso a través de redes sociales"
2677
 
2678
+ #: ../admin/social_login.php:1154
2679
  #, fuzzy
2680
  msgid "Below Social Login icons"
2681
  msgstr "Ingreso a través de redes sociales"
2682
 
2683
+ #: ../admin/social_login.php:1160
2684
  #, fuzzy
2685
  msgid "Placement of GDPR opt-in above or below the social login icons"
2686
  msgstr ""
2687
  "Texto para mostrar sobre la interfaz del Ingreso a través de redes sociales"
2688
 
2689
+ #: ../admin/social_login.php:1167
2690
  msgid "Opt-in text"
2691
  msgstr ""
2692
 
2693
+ #: ../admin/social_login.php:1177
2694
  #, fuzzy
2695
  msgid "Text for the GDPR opt-in"
2696
  msgstr "Permitir Comentarios de Disqus"
2697
 
2698
+ #: ../admin/social_login.php:1184
2699
  msgid "Text to link to Terms-Conditions page"
2700
  msgstr ""
2701
 
2702
+ #: ../admin/social_login.php:1194
2703
  msgid "Word(s) in the opt-in text to be linked to terms-conditions page"
2704
  msgstr ""
2705
 
2706
+ #: ../admin/social_login.php:1201
2707
  msgid "Terms-Conditions Url"
2708
  msgstr ""
2709
 
2710
+ #: ../admin/social_login.php:1211
2711
  #, fuzzy
2712
  msgid "Url of the terms-conditions page of your website"
2713
  msgstr "Url de la página de inicio de tu sitio web"
2714
 
2715
+ #: ../admin/social_login.php:1218
2716
  msgid "Text to link to Privacy Policy page"
2717
  msgstr ""
2718
 
2719
+ #: ../admin/social_login.php:1228
2720
  msgid "Word(s) in the opt-in text to be linked to privacy policy page"
2721
  msgstr ""
2722
 
2723
+ #: ../admin/social_login.php:1235
2724
  msgid "Privacy Policy Url"
2725
  msgstr ""
2726
 
2727
+ #: ../admin/social_login.php:1245
2728
  #, fuzzy
2729
  msgid "Url of the privacy policy page of your website"
2730
  msgstr "Url de la página de inicio de tu sitio web"
2731
 
2732
+ #: ../admin/social_login.php:1296 ../inc/widget.php:260 ../inc/widget.php:438
2733
  #: ../inc/widget.php:602 ../inc/widget.php:750
2734
  msgid "Select"
2735
  msgstr "Seleccionar"
2736
 
2737
+ #: ../admin/social_login.php:1327
2738
  msgid "Social Login Shortcode & Widget"
2739
  msgstr "Widget y Shortcode para el Ingreso a través de redes sociales"
2740
 
2741
+ #: ../admin/social_login.php:1328
2742
  msgid "Social Linking Shortcode"
2743
  msgstr "Shortcode para enlace a través de redes sociales"
2744
 
2745
+ #: ../admin/social_login.php:1343
2746
  msgid "Why is social login not working?"
2747
  msgstr ""
2748
 
2749
+ #: ../admin/social_login.php:1344
2750
  msgid ""
2751
  "Make sure that App ID and Secret (Client ID and Secret) keys you have saved, "
2752
  "belong to the same app"
2753
  msgstr ""
2754
 
2755
+ #: ../admin/social_login.php:1346
2756
  msgid "Social Login not working with Varnish enabled"
2757
  msgstr ""
2758
 
2759
+ #: ../admin/social_login.php:1347
2760
  msgid ""
2761
  "Why the user is not appearing logged in even after Social Login until the "
2762
  "webpage is refreshed manually?"
2976
  msgid "Providers not selected"
2977
  msgstr "Redes sociales no seleccionadas"
2978
 
2979
+ #: ../inc/social_login.php:792
2980
  msgid "Email"
2981
  msgstr ""
2982
 
2983
+ #: ../inc/social_login.php:793
2984
  msgid "Confirm email"
2985
  msgstr ""
2986
 
2987
+ #: ../inc/social_login.php:795
2988
  msgid "Save"
2989
  msgstr ""
2990
 
2991
+ #: ../inc/social_login.php:796
2992
  msgid "Cancel"
2993
  msgstr ""
2994
 
2995
+ #: ../inc/social_login.php:870
2996
  #, fuzzy
2997
  msgid "Email Verification"
2998
  msgstr "Activar verificación por email"
2999
 
3000
+ #: ../inc/social_login.php:872
3001
  msgid ""
3002
  "Please click on the following link or paste it in browser to verify your "
3003
  "email"
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: 2020-08-20 08:13+0530\n"
6
- "PO-Revision-Date: 2020-08-20 08:13+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:523
20
  msgid "Problem fetching access token: "
21
  msgstr ""
22
 
23
- #: ../super_socializer.php:527 ../super_socializer.php:541
24
  msgid "Facebook SDK returned an error: "
25
  msgstr ""
26
 
27
- #: ../super_socializer.php:537
28
  msgid "Graph returned an error: "
29
  msgstr ""
30
 
31
- #: ../super_socializer.php:726
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:754
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:757
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:760
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,139 +65,139 @@ 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:942 ../helper.php:961
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:942
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:946
77
  msgid "Notification"
78
  msgstr "Értesítés"
79
 
80
- #: ../super_socializer.php:964 ../admin/social_login.php:779
81
  msgid "Email required"
82
  msgstr "E-mail cím szükséges"
83
 
84
- #: ../super_socializer.php:967
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:1036
89
  msgid "Leave a reply"
90
  msgstr "Válaszolj"
91
 
92
- #: ../super_socializer.php:1052 ../inc/social_sharing.php:241
93
  msgid "Shares"
94
  msgstr ""
95
 
96
- #: ../super_socializer.php:1052 ../inc/social_sharing.php:241
97
  msgid "Share"
98
  msgstr ""
99
 
100
- #: ../super_socializer.php:1052
101
  #, fuzzy
102
  msgid "Link copied."
103
  msgstr "LinkedIn"
104
 
105
- #: ../super_socializer.php:1298
106
  #, fuzzy
107
  msgid "Super Socializer - General Options"
108
  msgstr "Super Socializer - Belépés"
109
 
110
- #: ../super_socializer.php:1298 ../admin/general_options.php:15
111
  #: ../admin/social_commenting.php:47
112
  #, fuzzy
113
  msgid "General Options"
114
  msgstr "Megosztási beállítások"
115
 
116
- #: ../super_socializer.php:1366 ../helper.php:883
117
  #, fuzzy
118
  msgid "Social Avatar"
119
  msgstr "Kis Avatar URL"
120
 
121
- #: ../super_socializer.php:1369
122
  msgid "Small Avatar Url"
123
  msgstr "Kis Avatar URL"
124
 
125
- #: ../super_socializer.php:1373
126
  #, fuzzy
127
  msgid "Large Avatar Url"
128
  msgstr "Cél Url"
129
 
130
- #: ../super_socializer.php:1377 ../helper.php:886
131
  msgid ""
132
  "Do not fetch and update social avatar from my profile, next time I Social "
133
  "Login"
134
  msgstr ""
135
 
136
- #: ../super_socializer.php:1381 ../helper.php:887
137
  msgid "Update social avatar, next time I Social Login"
138
  msgstr ""
139
 
140
- #: ../super_socializer.php:1458
141
  msgid "Login with your Social ID"
142
  msgstr ""
143
 
144
- #: ../super_socializer.php:1459
145
  msgid "Email you entered is already registered or invalid"
146
  msgstr "A megadott e-mail már regisztrálva van, vagy hibás"
147
 
148
- #: ../super_socializer.php:1464
149
  msgid "Please enter a valid email address. You might be required to verify it"
150
  msgstr "Kérlek, érvényes e-mail címet adj meg. Ezt később ellenőrizhetjük"
151
 
152
- #: ../super_socializer.php:1468 ../super_socializer.php:2166
153
  msgid "Link your social account to login to your account at this website"
154
  msgstr "Kapcsold össze közösségi fiókod, hogy belépj erre az oldalra"
155
 
156
- #: ../super_socializer.php:1708
157
  msgid "Thanks for installing Super Socializer plugin"
158
  msgstr ""
159
 
160
- #: ../super_socializer.php:1710
161
  msgid "Configure the Plugin"
162
  msgstr ""
163
 
164
- #: ../super_socializer.php:1721
165
  msgid ""
166
  "Update \"Facebook Comments Moderation\" add-on for compatibility with "
167
  "current version of Super Socializer"
168
  msgstr ""
169
 
170
- #: ../super_socializer.php:1730
171
  msgid ""
172
  "Update \"Facebook Comments Notifier\" add-on for compatibility with current "
173
  "version of Super Socializer"
174
  msgstr ""
175
 
176
- #: ../super_socializer.php:1739
177
  msgid ""
178
  "Update \"Social Login Buttons\" add-on for compatibility with current "
179
  "version of Super Socializer"
180
  msgstr ""
181
 
182
- #: ../super_socializer.php:1748
183
  msgid ""
184
  "Update \"Social Share myCRED Integration\" add-on for maximum compatibility "
185
  "with current version of Super Socializer"
186
  msgstr ""
187
 
188
- #: ../super_socializer.php:1757
189
  msgid ""
190
  "Update \"Social Login myCRED Integration\" add-on for maximum compatibility "
191
  "with current version of Super Socializer"
192
  msgstr ""
193
 
194
- #: ../super_socializer.php:1768
195
  #, php-format
196
  msgid ""
197
  "To continue using Steam login save Steam API key <a href=\"%s\">here</a>"
198
  msgstr ""
199
 
200
- #: ../super_socializer.php:1777
201
  #, php-format
202
  msgid ""
203
  "To continue using Instagram login create a new Instagram App as described <a "
@@ -205,7 +205,7 @@ msgid ""
205
  "Instagram App Secret <a href=\"%s\">here</a>"
206
  msgstr ""
207
 
208
- #: ../super_socializer.php:1786 ../super_socializer.php:1795
209
  #, php-format
210
  msgid ""
211
  "To continue using bitly url shortener, login to your bit.ly account and "
@@ -214,13 +214,13 @@ msgid ""
214
  "\">here</a>. More details at the <a href=\"%s\" target=\"_blank\">link</a>"
215
  msgstr ""
216
 
217
- #: ../super_socializer.php:1811
218
  #, php-format
219
  msgid ""
220
  "To continue using Social Login, save the secret keys <a href=\"%s\">here</a>"
221
  msgstr ""
222
 
223
- #: ../super_socializer.php:1835
224
  #, php-format
225
  msgid ""
226
  "Add %s in \"Valid OAuth redirect URIs\" option in your Facebook app settings "
@@ -228,14 +228,14 @@ msgid ""
228
  "target=\"_blank\">here</a>"
229
  msgstr ""
230
 
231
- #: ../super_socializer.php:1835 ../super_socializer.php:1860
232
- #: ../super_socializer.php:1885 ../super_socializer.php:1910
233
- #: ../super_socializer.php:1943 ../super_socializer.php:1971
234
- #: ../super_socializer.php:1998
235
  msgid "Okay"
236
  msgstr ""
237
 
238
- #: ../super_socializer.php:1860
239
  #, php-format
240
  msgid ""
241
  "Add %s in \"Callback URLs\" option in your Twitter app settings for Twitter "
@@ -243,7 +243,7 @@ msgid ""
243
  "\">here</a>"
244
  msgstr ""
245
 
246
- #: ../super_socializer.php:1885
247
  #, php-format
248
  msgid ""
249
  "Add %s in \"Authorized Redirect URLs\" option in your Linkedin app settings "
@@ -251,7 +251,7 @@ msgid ""
251
  "target=\"_blank\">here</a>"
252
  msgstr ""
253
 
254
- #: ../super_socializer.php:1910
255
  #, php-format
256
  msgid ""
257
  "Add %s in \"Authorized redirect URIs\" option in your Google client settings "
@@ -259,13 +259,13 @@ msgid ""
259
  "target=\"_blank\">here</a>"
260
  msgstr ""
261
 
262
- #: ../super_socializer.php:1921
263
  #, php-format
264
  msgid ""
265
  "Save the url of privacy policy page of your website <a href=\"%s\">here</a>"
266
  msgstr ""
267
 
268
- #: ../super_socializer.php:1943
269
  #, php-format
270
  msgid ""
271
  "This plugin is GDPR compliant. You need to update the privacy policy of your "
@@ -273,7 +273,7 @@ msgid ""
273
  "\"%s\" target=\"_blank\">here</a>"
274
  msgstr ""
275
 
276
- #: ../super_socializer.php:1971
277
  #, php-format
278
  msgid ""
279
  "Now plugin supports a new service Twitcount.com to show Twitter shares. To "
@@ -282,7 +282,7 @@ msgid ""
282
  "your website %s with them. No need to copy-paste any code from their website."
283
  msgstr ""
284
 
285
- #: ../super_socializer.php:1998
286
  #, php-format
287
  msgid ""
288
  "Replace url saved in \"Callback URLs\" option in your Twitter app settings "
@@ -290,7 +290,7 @@ msgid ""
290
  "\"%s\" target=\"_blank\">here</a>"
291
  msgstr ""
292
 
293
- #: ../super_socializer.php:2023
294
  #, php-format
295
  msgid ""
296
  "If you cannot get Linkedin login to work after updating the plugin, replace "
@@ -298,11 +298,11 @@ msgid ""
298
  "For more details, check step 6 <a href=\"%s\" target=\"_blank\">here</a>"
299
  msgstr ""
300
 
301
- #: ../super_socializer.php:2023 ../super_socializer.php:2050
302
  msgid "Dismiss"
303
  msgstr ""
304
 
305
- #: ../super_socializer.php:2049
306
  #, php-format
307
  msgid ""
308
  "Save Facebook App ID and Secret keys in \"Standard Interface\" and/or "
@@ -311,7 +311,7 @@ msgid ""
311
  "that, clear share counts cache from \"Miscellaneous\" section"
312
  msgstr ""
313
 
314
- #: ../super_socializer.php:2242
315
  msgid ""
316
  "Your browser is blocking some features of this website. Please follow the "
317
  "instructions at {support_url} to unblock these."
@@ -423,7 +423,7 @@ msgstr "Cél Url"
423
 
424
  #: ../helper.php:898 ../admin/general_options.php:89
425
  #: ../admin/social_sharing.php:1944 ../admin/social_commenting.php:400
426
- #: ../admin/social_login.php:1269 ../admin/like_buttons.php:780
427
  msgid "Save Changes"
428
  msgstr "Változások Mentése"
429
 
@@ -447,7 +447,7 @@ msgstr ""
447
  #: ../admin/general_options.php:7 ../admin/general_options.php:93
448
  #: ../admin/social_sharing.php:5 ../admin/social_sharing.php:1948
449
  #: ../admin/social_commenting.php:5 ../admin/social_commenting.php:404
450
- #: ../admin/social_login.php:5 ../admin/social_login.php:1273
451
  #: ../admin/like_buttons.php:6 ../admin/like_buttons.php:784
452
  #, fuzzy, php-format
453
  msgid ""
@@ -502,14 +502,14 @@ msgid "You can specify any additional CSS rules (without &lt;style&gt; tag)"
502
  msgstr ""
503
 
504
  #: ../admin/general_options.php:103 ../admin/social_sharing.php:1954
505
- #: ../admin/social_commenting.php:410 ../admin/social_login.php:1279
506
  #: ../admin/like_buttons.php:790
507
  #, fuzzy
508
  msgid "Instagram Shoutout"
509
  msgstr "Instagram"
510
 
511
  #: ../admin/general_options.php:105 ../admin/social_sharing.php:1956
512
- #: ../admin/social_commenting.php:412 ../admin/social_login.php:1281
513
  #: ../admin/like_buttons.php:792
514
  msgid ""
515
  "If you can send (to hello@heateor.com) how this plugin is helping your "
@@ -653,7 +653,7 @@ msgstr ""
653
 
654
  #: ../admin/social_sharing.php:67 ../admin/social_sharing.php:1869
655
  #: ../admin/social_sharing.php:1871 ../admin/social_login.php:45
656
- #: ../admin/social_login.php:1235 ../admin/like_buttons.php:50
657
  #: ../admin/like_buttons.php:751
658
  msgid "Shortcode & Widget"
659
  msgstr "Shortcode és Widget"
@@ -664,7 +664,7 @@ msgstr "Hibamegoldó"
664
 
665
  #: ../admin/social_sharing.php:69 ../admin/social_sharing.php:1902
666
  #: ../admin/social_commenting.php:40 ../admin/social_commenting.php:384
667
- #: ../admin/social_login.php:46 ../admin/social_login.php:1249
668
  #: ../admin/like_buttons.php:51 ../admin/like_buttons.php:764
669
  msgid "FAQ"
670
  msgstr "GYIK"
@@ -909,8 +909,8 @@ msgstr "Egyedi URL"
909
  msgid "Url to share"
910
  msgstr "Megosztás Url-je"
911
 
912
- #: ../admin/social_sharing.php:725 ../admin/social_login.php:520
913
- #: ../admin/social_login.php:896 ../admin/like_buttons.php:105
914
  #: ../inc/widget.php:945
915
  msgid "Title"
916
  msgstr "Cím"
@@ -998,7 +998,7 @@ msgid "Placement"
998
  msgstr ""
999
 
1000
  #: ../admin/social_sharing.php:957 ../admin/social_sharing.php:1383
1001
- #: ../admin/social_login.php:837 ../admin/social_login.php:866
1002
  #: ../admin/like_buttons.php:218 ../admin/like_buttons.php:494
1003
  msgid "Homepage"
1004
  msgstr "Kezdő oldal"
@@ -1258,7 +1258,7 @@ msgstr ""
1258
  msgid "Required only to track Facebook share count"
1259
  msgstr ""
1260
 
1261
- #: ../admin/social_sharing.php:1584 ../admin/social_login.php:150
1262
  msgid "Facebook App ID"
1263
  msgstr "Facebook App ID"
1264
 
@@ -1272,7 +1272,7 @@ msgstr ""
1272
  "dokumentációt <a href=\"%s\" target=\"_blank\">ezen a linken</a> a Facebook "
1273
  "App ID beszerzéshez"
1274
 
1275
- #: ../admin/social_sharing.php:1601 ../admin/social_login.php:171
1276
  #, fuzzy
1277
  msgid "Facebook App Secret"
1278
  msgstr "Facebook App ID"
@@ -1459,7 +1459,7 @@ msgstr ""
1459
  "tökéletesen) a szöveges mezőben:"
1460
 
1461
  #: ../admin/social_sharing.php:1904 ../admin/social_commenting.php:386
1462
- #: ../admin/social_login.php:1251
1463
  msgid ""
1464
  "<strong>Note:</strong> Plugin will not work on local server. You should have "
1465
  "an online website for the plugin to function properly."
@@ -1514,7 +1514,7 @@ msgid ""
1514
  msgstr ""
1515
 
1516
  #: ../admin/social_sharing.php:1919 ../admin/social_commenting.php:389
1517
- #: ../admin/social_login.php:1258
1518
  msgid "Why is my browser blocking some features of the plugin?"
1519
  msgstr ""
1520
 
@@ -1835,11 +1835,11 @@ msgstr "Alap Beállítások"
1835
  msgid "Advanced Configuration"
1836
  msgstr "Alap Beállítások"
1837
 
1838
- #: ../admin/social_login.php:41 ../admin/social_login.php:1035
1839
  msgid "GDPR"
1840
  msgstr ""
1841
 
1842
- #: ../admin/social_login.php:43 ../admin/social_login.php:1186
1843
  msgid "XProfile Integration"
1844
  msgstr ""
1845
 
@@ -1911,14 +1911,22 @@ msgid "Line"
1911
  msgstr ""
1912
 
1913
  #: ../admin/social_login.php:135
 
 
 
 
1914
  msgid "Windows Live"
1915
  msgstr ""
1916
 
1917
  #: ../admin/social_login.php:143
 
 
 
 
1918
  msgid "Select Social ID provider to enable in Social Login"
1919
  msgstr "Válassz Közösségi ID szolgáltatót a Közösségi Belépéshez"
1920
 
1921
- #: ../admin/social_login.php:160
1922
  #, php-format
1923
  msgid ""
1924
  "Required for Facebook Social Login to work. Please follow the documentation "
@@ -1928,7 +1936,7 @@ msgstr ""
1928
  "dokumentációt <a href=\"%s\" target=\"_blank\">ezen a linken</a> a Facebook "
1929
  "App ID beszerzéshez"
1930
 
1931
- #: ../admin/social_login.php:162 ../admin/social_login.php:183
1932
  #, fuzzy
1933
  msgid ""
1934
  "Paste following url in <strong>Site URL</strong> option mentioned at the link"
@@ -1936,7 +1944,7 @@ msgstr ""
1936
  "Illeszd be a következő url-t a <strong>Site URL</strong> mezőbe a fenti "
1937
  "linken"
1938
 
1939
- #: ../admin/social_login.php:181
1940
  #, fuzzy, php-format
1941
  msgid ""
1942
  "Required for Facebook Social Login to work. Please follow the documentation "
@@ -1946,11 +1954,11 @@ msgstr ""
1946
  "dokumentációt <a href=\"%s\" target=\"_blank\">ezen a linken</a> a Facebook "
1947
  "App ID beszerzéshez"
1948
 
1949
- #: ../admin/social_login.php:192
1950
  msgid "Twitter API Key"
1951
  msgstr "Twitter API Key"
1952
 
1953
- #: ../admin/social_login.php:202
1954
  #, php-format
1955
  msgid ""
1956
  "Required for Twitter Social Login to work. Please follow the documentation "
@@ -1960,7 +1968,7 @@ msgstr ""
1960
  "dokumentációt <a href=\"%s\" target=\"_blank\">ezen a linken</a> a Twitter "
1961
  "API Key beszerzéshez"
1962
 
1963
- #: ../admin/social_login.php:204 ../admin/social_login.php:229
1964
  #, fuzzy
1965
  msgid ""
1966
  "Paste following url in <strong>Website</strong> option mentioned at the link"
@@ -1968,8 +1976,9 @@ msgstr ""
1968
  "Illeszd be a következő url-t a <strong>Website URL</strong> mezőbe a fenti "
1969
  "linken"
1970
 
1971
- #: ../admin/social_login.php:208 ../admin/social_login.php:233
1972
- #: ../admin/social_login.php:421 ../admin/social_login.php:441
 
1973
  #, fuzzy
1974
  msgid ""
1975
  "Paste following url in <strong>Callback URL</strong> option mentioned at the "
@@ -1978,11 +1987,11 @@ msgstr ""
1978
  "Illeszd be a következő url-t a <strong>Callback domain</strong> mezőbe a "
1979
  "fenti linken"
1980
 
1981
- #: ../admin/social_login.php:217
1982
  msgid "Twitter API Secret"
1983
  msgstr "Twitter API Secret"
1984
 
1985
- #: ../admin/social_login.php:227
1986
  #, php-format
1987
  msgid ""
1988
  "Required for Twitter Social Login to work. Please follow the documentation "
@@ -1992,12 +2001,12 @@ msgstr ""
1992
  "dokumentációt <a href=\"%s\" target=\"_blank\">ezen a linken</a> a Twitter "
1993
  "API Secret beszerzéséhez"
1994
 
1995
- #: ../admin/social_login.php:242
1996
  #, fuzzy
1997
  msgid "LinkedIn Client ID"
1998
  msgstr "LinkedIn"
1999
 
2000
- #: ../admin/social_login.php:252
2001
  #, fuzzy, php-format
2002
  msgid ""
2003
  "Required for LinkedIn Social Login to work. Please follow the documentation "
@@ -2007,7 +2016,7 @@ msgstr ""
2007
  "dokumentációt <a href=\"%s\" target=\"_blank\">ezen a linken</a> a LinkedIn "
2008
  "API Key beszerzéshez"
2009
 
2010
- #: ../admin/social_login.php:254 ../admin/social_login.php:275
2011
  #, fuzzy
2012
  msgid ""
2013
  "Paste following url in <strong>Redirect URLs</strong> option mentioned at "
@@ -2016,12 +2025,12 @@ msgstr ""
2016
  "Illeszd be a következő url-t a <strong>Site URL</strong> mezőbe a fenti "
2017
  "linken"
2018
 
2019
- #: ../admin/social_login.php:263
2020
  #, fuzzy
2021
  msgid "LinkedIn Client Secret"
2022
  msgstr "LinkedIn"
2023
 
2024
- #: ../admin/social_login.php:273
2025
  #, fuzzy, php-format
2026
  msgid ""
2027
  "Required for LinkedIn Social Login to work. Please follow the documentation "
@@ -2032,12 +2041,12 @@ msgstr ""
2032
  "dokumentációt <a href=\"%s\" target=\"_blank\">ezen a linken</a> a LinkedIn "
2033
  "API Key beszerzéshez"
2034
 
2035
- #: ../admin/social_login.php:284
2036
  #, fuzzy
2037
  msgid "Google Client ID"
2038
  msgstr "Google+ Client ID"
2039
 
2040
- #: ../admin/social_login.php:294
2041
  #, fuzzy, php-format
2042
  msgid ""
2043
  "Required for Google Social Login to work. Please follow the documentation at "
@@ -2047,7 +2056,7 @@ msgstr ""
2047
  "dokumentációt <a href=\"%s\" target=\"_blank\">ezen a linken</a> a "
2048
  "GooglePlus Client ID beszerzéshez"
2049
 
2050
- #: ../admin/social_login.php:296 ../admin/social_login.php:317
2051
  #, fuzzy
2052
  msgid ""
2053
  "Paste following url in <strong>AUTHORIZED REDIRECT URI</strong> option "
@@ -2056,12 +2065,12 @@ msgstr ""
2056
  "Illeszd be a következő url-t a <strong>Site URL</strong> mezőbe a fenti "
2057
  "linken"
2058
 
2059
- #: ../admin/social_login.php:305
2060
  #, fuzzy
2061
  msgid "Google Client Secret"
2062
  msgstr "Google+ Client ID"
2063
 
2064
- #: ../admin/social_login.php:315
2065
  #, fuzzy, php-format
2066
  msgid ""
2067
  "Required for Google Social Login to work. Please follow the documentation at "
@@ -2071,11 +2080,11 @@ msgstr ""
2071
  "dokumentációt <a href=\"%s\" target=\"_blank\">ezen a linken</a> a "
2072
  "GooglePlus Client ID beszerzéshez"
2073
 
2074
- #: ../admin/social_login.php:326
2075
  msgid "Vkontakte Application ID"
2076
  msgstr "Vkontakte Application ID"
2077
 
2078
- #: ../admin/social_login.php:336 ../admin/social_login.php:357
2079
  #, php-format
2080
  msgid ""
2081
  "Required for Vkontakte Social Login to work. Please follow the documentation "
@@ -2086,7 +2095,7 @@ msgstr ""
2086
  "dokumentációt <a href=\"%s\" target=\"_blank\">ezen a linken</a> a Vkontakte "
2087
  "Application ID beszerzéshez"
2088
 
2089
- #: ../admin/social_login.php:338 ../admin/social_login.php:359
2090
  #, fuzzy
2091
  msgid ""
2092
  "Paste following url in <strong>Site address</strong> option mentioned at the "
@@ -2095,17 +2104,17 @@ msgstr ""
2095
  "Illeszd be a következő url-t a <strong>Site address</strong> mezőbe a fenti "
2096
  "linken"
2097
 
2098
- #: ../admin/social_login.php:347
2099
  #, fuzzy
2100
  msgid "Vkontakte Secure key"
2101
  msgstr "Vkontakte"
2102
 
2103
- #: ../admin/social_login.php:368
2104
  #, fuzzy
2105
  msgid "Instagram App ID"
2106
  msgstr "Instagram Client ID"
2107
 
2108
- #: ../admin/social_login.php:378
2109
  #, fuzzy, php-format
2110
  msgid ""
2111
  "Required for Instagram Social Login to work. Please follow the documentation "
@@ -2115,7 +2124,7 @@ msgstr ""
2115
  "dokumentációt <a href=\"%s\" target=\"_blank\">ezen a linken</a> az "
2116
  "Instagram Client ID beszerzéshez"
2117
 
2118
- #: ../admin/social_login.php:380 ../admin/social_login.php:401
2119
  #, fuzzy
2120
  msgid ""
2121
  "Paste following url in <strong>Valid OAuth Redirect URIs</strong> option "
@@ -2124,12 +2133,12 @@ msgstr ""
2124
  "Illeszd be a következő url-t a <strong>Site URL</strong> mezőbe a fenti "
2125
  "linken"
2126
 
2127
- #: ../admin/social_login.php:389
2128
  #, fuzzy
2129
  msgid "Instagram App Secret"
2130
  msgstr "Instagram"
2131
 
2132
- #: ../admin/social_login.php:399
2133
  #, fuzzy, php-format
2134
  msgid ""
2135
  "Required for Instagram Social Login to work. Please follow the documentation "
@@ -2139,11 +2148,11 @@ msgstr ""
2139
  "dokumentációt <a href=\"%s\" target=\"_blank\">ezen a linken</a> az "
2140
  "Instagram Client ID beszerzéshez"
2141
 
2142
- #: ../admin/social_login.php:410
2143
  msgid "Line Channel ID"
2144
  msgstr ""
2145
 
2146
- #: ../admin/social_login.php:419
2147
  #, fuzzy, php-format
2148
  msgid ""
2149
  "Required for Line Social Login to work. Please follow the documentation at "
@@ -2153,12 +2162,12 @@ msgstr ""
2153
  "dokumentációt <a href=\"%s\" target=\"_blank\">ezen a linken</a> a LinkedIn "
2154
  "API Key beszerzéshez"
2155
 
2156
- #: ../admin/social_login.php:430
2157
  #, fuzzy
2158
  msgid "Line Channel Secret"
2159
  msgstr "LinkedIn"
2160
 
2161
- #: ../admin/social_login.php:439
2162
  #, fuzzy, php-format
2163
  msgid ""
2164
  "Required for Line Social Login to work. Please follow the documentation at "
@@ -2168,12 +2177,43 @@ msgstr ""
2168
  "dokumentációt <a href=\"%s\" target=\"_blank\">ezen a linken</a> a LinkedIn "
2169
  "API Key beszerzéshez"
2170
 
2171
- #: ../admin/social_login.php:450
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2172
  #, fuzzy
2173
  msgid "Microsoft Client ID"
2174
  msgstr "Google+ Client ID"
2175
 
2176
- #: ../admin/social_login.php:459
2177
  #, fuzzy, php-format
2178
  msgid ""
2179
  "Required for Live Social Login to work. Please follow the documentation at "
@@ -2183,7 +2223,8 @@ msgstr ""
2183
  "dokumentációt <a href=\"%s\" target=\"_blank\">ezen a linken</a> a "
2184
  "GooglePlus Client ID beszerzéshez"
2185
 
2186
- #: ../admin/social_login.php:461 ../admin/social_login.php:481
 
2187
  #, fuzzy
2188
  msgid ""
2189
  "Paste following url in <strong>Redirect URIs</strong> option mentioned at "
@@ -2192,12 +2233,12 @@ msgstr ""
2192
  "Illeszd be a következő url-t a <strong>Site URL</strong> mezőbe a fenti "
2193
  "linken"
2194
 
2195
- #: ../admin/social_login.php:470
2196
  #, fuzzy
2197
  msgid "Microsoft Client Secret"
2198
  msgstr "Google+ Client ID"
2199
 
2200
- #: ../admin/social_login.php:479
2201
  #, fuzzy, php-format
2202
  msgid ""
2203
  "Required for Live Social Login to work. Please follow the documentation at "
@@ -2208,12 +2249,12 @@ msgstr ""
2208
  "dokumentációt <a href=\"%s\" target=\"_blank\">ezen a linken</a> a "
2209
  "GooglePlus Client ID beszerzéshez"
2210
 
2211
- #: ../admin/social_login.php:489
2212
  #, fuzzy
2213
  msgid "Steam API Key"
2214
  msgstr "Twitter API Key"
2215
 
2216
- #: ../admin/social_login.php:498
2217
  #, fuzzy, php-format
2218
  msgid ""
2219
  "Required for Steam Social Login to work. Get it at <a href=\"%s\" target="
@@ -2223,117 +2264,147 @@ msgstr ""
2223
  "dokumentációt <a href=\"%s\" target=\"_blank\">ezen a linken</a> a Twitter "
2224
  "API Key beszerzéshez"
2225
 
2226
- #: ../admin/social_login.php:499
2227
  #, fuzzy
2228
  msgid "Save following <strong>domain</strong> to get the key"
2229
  msgstr ""
2230
  "Illeszd be a következő url-t a <strong>Callback domain</strong> mezőbe a "
2231
  "fenti linken"
2232
 
2233
- #: ../admin/social_login.php:515
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2234
  #, fuzzy
2235
  msgid "Social Login Options"
2236
  msgstr "Social Login"
2237
 
2238
- #: ../admin/social_login.php:530
2239
  msgid "Text to display above the Social Login interface"
2240
  msgstr "Szöveg a Közösségi Belépés felett"
2241
 
2242
- #: ../admin/social_login.php:538
2243
  msgid "Trigger social login in the same browser tab"
2244
  msgstr ""
2245
 
2246
- #: ../admin/social_login.php:548
2247
  msgid "Trigger social login in the same browser tab instead of a popup window"
2248
  msgstr ""
2249
 
2250
- #: ../admin/social_login.php:555
2251
  #, fuzzy
2252
  msgid "Center align icons"
2253
  msgstr "Ikonsorrend beállítás"
2254
 
2255
- #: ../admin/social_login.php:565
2256
  #, fuzzy
2257
  msgid "Center align social login icons"
2258
  msgstr "Social Login"
2259
 
2260
- #: ../admin/social_login.php:572
2261
  msgid "Enable at login page"
2262
  msgstr "Bekapcsolás a belépés oldalon"
2263
 
2264
- #: ../admin/social_login.php:582
2265
  msgid ""
2266
  "Social Login interface will get enabled at the login page of your website"
2267
  msgstr "Közösségi Belépés megjelenítése a weboldal belépési oldalán"
2268
 
2269
- #: ../admin/social_login.php:589
2270
  msgid "Enable at register page"
2271
  msgstr "Bekapcsolás a regisztráció oldalon"
2272
 
2273
- #: ../admin/social_login.php:599
2274
  msgid ""
2275
  "Social Login interface will get enabled at the registration page of your "
2276
  "website"
2277
  msgstr "Közösségi Belépés megjelenítése a weboldal regisztrációs oldalán"
2278
 
2279
- #: ../admin/social_login.php:606
2280
  msgid "Enable at comment form"
2281
  msgstr "Bekapcsolás a hozászólásoknál"
2282
 
2283
- #: ../admin/social_login.php:616
2284
  msgid "Social Login interface will get enabled at your Wordpress Comment form"
2285
  msgstr "Közösségi Belépés megjelenítése a Wordpress hozzászólás küldésnél"
2286
 
2287
- #: ../admin/social_login.php:630
2288
  msgid "Enable before WooCommerce Customer Login Form"
2289
  msgstr "Engedélyezze előtt WooCommerce Megrendelő Bejelentkezés"
2290
 
2291
- #: ../admin/social_login.php:640
2292
  #, fuzzy
2293
  msgid ""
2294
  "Social Login Interface will get enabled before the customer login form at "
2295
  "WooCommerce My Account page"
2296
  msgstr "Közösségi Belépés megjelenítése a weboldal belépési oldalán"
2297
 
2298
- #: ../admin/social_login.php:647
2299
  #, fuzzy
2300
  msgid "Enable at WooCommerce Customer Login Form"
2301
  msgstr "Engedélyezze után WooCommerce Megrendelő Bejelentkezés"
2302
 
2303
- #: ../admin/social_login.php:657
2304
  #, fuzzy
2305
  msgid ""
2306
  "Integrate Social Login Interface with the customer login form at WooCommerce "
2307
  "My Account page"
2308
  msgstr "Közösségi Belépés megjelenítése a weboldal belépési oldalán"
2309
 
2310
- #: ../admin/social_login.php:664
2311
  #, fuzzy
2312
  msgid "Enable at WooCommerce Customer Register Form"
2313
  msgstr "Engedélyezze után WooCommerce Megrendelő Bejelentkezés"
2314
 
2315
- #: ../admin/social_login.php:674
2316
  #, fuzzy
2317
  msgid ""
2318
  "Integrate Social Login Interface with the customer register form at "
2319
  "WooCommerce My Account page"
2320
  msgstr "Közösségi Belépés megjelenítése a weboldal belépési oldalán"
2321
 
2322
- #: ../admin/social_login.php:681
2323
  #, fuzzy
2324
  msgid "Enable at WooCommerce checkout page"
2325
  msgstr "Bekapcsolás a regisztráció oldalon"
2326
 
2327
- #: ../admin/social_login.php:691
2328
  #, fuzzy
2329
  msgid "Social Login Interface will get enabled at WooCommerce checkout page"
2330
  msgstr "Közösségi Belépés megjelenítése a Wordpress hozzászólás küldésnél"
2331
 
2332
- #: ../admin/social_login.php:701
2333
  msgid "Auto-approve comments made by Social Login users"
2334
  msgstr "Közösségi Belépéses hozzászólások automatikus elfogadása"
2335
 
2336
- #: ../admin/social_login.php:711
2337
  msgid ""
2338
  "If this option is enabled, and WordPress comment is made by Social Login "
2339
  "user, comment will get approved immediately without keeping in moderation."
@@ -2342,37 +2413,37 @@ msgstr ""
2342
  "felhasználó Wordpress hozzászólást küld, ez azonnal, moderáció nélkül "
2343
  "megjelenik az oldalon."
2344
 
2345
- #: ../admin/social_login.php:712
2346
  msgid "Note: This is not related to Facebook comments"
2347
  msgstr "Megjegyzés: Ez nem kapcsolódik a Facebook hozzászólásokhoz"
2348
 
2349
- #: ../admin/social_login.php:721
2350
  msgid "Enable social avatar"
2351
  msgstr "Közösségi avatar bekapcsolás"
2352
 
2353
- #: ../admin/social_login.php:731
2354
  msgid ""
2355
  "Social profile pictures of the logged in user will be displayed as profile "
2356
  "avatar"
2357
  msgstr "A közösségi profil képe lesz megjelenítve avatarként a weboldalon"
2358
 
2359
- #: ../admin/social_login.php:740
2360
  msgid "Avatar quality"
2361
  msgstr " Avatar képminőség"
2362
 
2363
- #: ../admin/social_login.php:743
2364
  msgid "Average"
2365
  msgstr "Átlagos"
2366
 
2367
- #: ../admin/social_login.php:744
2368
  msgid "Best"
2369
  msgstr "legjobb"
2370
 
2371
- #: ../admin/social_login.php:751
2372
  msgid "Choose avatar quality"
2373
  msgstr "Válassz Avatar képminőséget"
2374
 
2375
- #: ../admin/social_login.php:759
2376
  #, fuzzy
2377
  msgid ""
2378
  "Show option for users to update social avatar at BuddyPress profile page"
@@ -2380,13 +2451,13 @@ msgstr ""
2380
  "Engedélyezze ezt a lehetőséget, hogy a szociális számla összekötő interfész "
2381
  "BuddyPress profil oldal"
2382
 
2383
- #: ../admin/social_login.php:769
2384
  msgid ""
2385
  "If enabled, users would be able to update their social avatar from \"Profile "
2386
  "photo\" section in BuddyPress profile at front-end"
2387
  msgstr ""
2388
 
2389
- #: ../admin/social_login.php:789
2390
  msgid ""
2391
  "If enabled and Social ID provider does not provide user's email address on "
2392
  "login, user will be asked to provide his/her email address. Otherwise, a "
@@ -2396,11 +2467,11 @@ msgstr ""
2396
  "a belépéskor, a felhasználótól elkérjük e-mail címét. Egyébként egy "
2397
  "véletlenszerű e-mail címet generálunk"
2398
 
2399
- #: ../admin/social_login.php:797
2400
  msgid "Send post-registration email to user to set account password"
2401
  msgstr ""
2402
 
2403
- #: ../admin/social_login.php:807
2404
  msgid ""
2405
  "If enabled, an email will be sent to user after registration through Social "
2406
  "Login, regarding his/her login credentials (username-password to be able to "
@@ -2411,12 +2482,12 @@ msgstr ""
2411
  "Felhasználói név, Jelszó, melyek segítségével hagyományos módon is beléphet "
2412
  "az oldalra."
2413
 
2414
- #: ../admin/social_login.php:814
2415
  #, fuzzy
2416
  msgid "Send new user registration notification email to admin"
2417
  msgstr "Letilthatja a felhasználói regisztráció útján Szociális Belépés"
2418
 
2419
- #: ../admin/social_login.php:824
2420
  #, fuzzy
2421
  msgid ""
2422
  "If enabled, an email will be sent to admin after new user registers through "
@@ -2427,40 +2498,40 @@ msgstr ""
2427
  "Felhasználói név, Jelszó, melyek segítségével hagyományos módon is beléphet "
2428
  "az oldalra."
2429
 
2430
- #: ../admin/social_login.php:831
2431
  msgid "Login redirection"
2432
  msgstr "Átirányítás Belépés után"
2433
 
2434
- #: ../admin/social_login.php:835
2435
  msgid "Same page where user logged in"
2436
  msgstr "Az az oldal, ahol a felhasználó belépett"
2437
 
2438
- #: ../admin/social_login.php:839 ../admin/social_login.php:868
2439
  msgid "Account dashboard"
2440
  msgstr "Felhasználói Irányítópult"
2441
 
2442
- #: ../admin/social_login.php:842 ../admin/social_login.php:871
2443
  msgid "BuddyPress profile page"
2444
  msgstr "BuddyPress profil oldal"
2445
 
2446
- #: ../admin/social_login.php:845 ../admin/social_login.php:874
2447
  msgid "Custom Url"
2448
  msgstr "Egyedi URL"
2449
 
2450
- #: ../admin/social_login.php:853
2451
  msgid "User will be redirected to the selected page after Social Login"
2452
  msgstr ""
2453
  "A felhasználót a kiválasztott oldalra irányítjuk a Közösségi Belépés után"
2454
 
2455
- #: ../admin/social_login.php:860
2456
  msgid "Registration redirection"
2457
  msgstr "Átirányítás Regisztráció után"
2458
 
2459
- #: ../admin/social_login.php:864
2460
  msgid "Same page from where user registered"
2461
  msgstr "Az az oldal, ahol a felhasználó regisztrált"
2462
 
2463
- #: ../admin/social_login.php:882
2464
  msgid ""
2465
  "User will be redirected to the selected page after registration (first "
2466
  "Social Login) through Social Login"
@@ -2468,23 +2539,23 @@ msgstr ""
2468
  "A felhasználó a kiválasztott oldalra lesz átirányítva a regisztráció (első "
2469
  "Közösségi belépés) után"
2470
 
2471
- #: ../admin/social_login.php:891
2472
  #, fuzzy
2473
  msgid "Social Account Linking Options"
2474
  msgstr "Közösségi Hozzászólás"
2475
 
2476
- #: ../admin/social_login.php:906
2477
  #, fuzzy
2478
  msgid "Text to display above the Social Account Linking interface"
2479
  msgstr "Szöveg a Közösségi Belépés felett"
2480
 
2481
- #: ../admin/social_login.php:913
2482
  #, fuzzy
2483
  msgid ""
2484
  "Link social account to already existing account, if email address matches"
2485
  msgstr "Kapcsold össze közösségi fiókod, hogy belépj erre az oldalra"
2486
 
2487
- #: ../admin/social_login.php:923
2488
  msgid ""
2489
  "If email address of the user's Social Account matches with an already "
2490
  "existing account at your website, that social account will be linked to "
@@ -2492,12 +2563,12 @@ msgid ""
2492
  "Linking interface at their profile page."
2493
  msgstr ""
2494
 
2495
- #: ../admin/social_login.php:931
2496
  msgid "Enable social account linking at BuddyPress profile page"
2497
  msgstr ""
2498
  "Engedélyezze a szociális számla összekapcsolása a BuddyPress profil oldal"
2499
 
2500
- #: ../admin/social_login.php:941
2501
  msgid ""
2502
  "Enable this option to show social account linking interface at BuddyPress "
2503
  "profile page"
@@ -2505,15 +2576,15 @@ msgstr ""
2505
  "Engedélyezze ezt a lehetőséget, hogy a szociális számla összekötő interfész "
2506
  "BuddyPress profil oldal"
2507
 
2508
- #: ../admin/social_login.php:952
2509
  msgid "Email popup options"
2510
  msgstr "Email felugró ablak beállítások"
2511
 
2512
- #: ../admin/social_login.php:957
2513
  msgid "Text on 'Email required' popup"
2514
  msgstr "Szöveg az 'E-mail cím szükséges' felugró ablakban"
2515
 
2516
- #: ../admin/social_login.php:967
2517
  msgid ""
2518
  "This text will be displayed on email required popup. Leave empty if not "
2519
  "required."
@@ -2521,11 +2592,11 @@ msgstr ""
2521
  "Ez a szöveg jelenik meg az e-mail cím bekérő felugró ablakban. Üresen "
2522
  "hagyhatod, ha nem kéred be az e-mail címet."
2523
 
2524
- #: ../admin/social_login.php:975
2525
  msgid "Error message for 'Email required' popup"
2526
  msgstr "Hibaüzenet az 'E-mail cím szükséges' felugró ablakban"
2527
 
2528
- #: ../admin/social_login.php:985
2529
  msgid ""
2530
  "This message will be displayed to user if it provides invalid or already "
2531
  "registered email"
@@ -2533,11 +2604,11 @@ msgstr ""
2533
  "Ez az üzenet jelenik meg, ha a felhasználó helytelen, vagy már regisztrált e-"
2534
  "mail címet ad meg "
2535
 
2536
- #: ../admin/social_login.php:993
2537
  msgid "Email popup height"
2538
  msgstr "Email felugró ablak magassága"
2539
 
2540
- #: ../admin/social_login.php:1003
2541
  msgid ""
2542
  "If you are seeing vertical scrollbar in the \"Email required\" popup, you "
2543
  "can increase the height of popup by specifying in this option. Leave empty "
@@ -2546,11 +2617,11 @@ msgstr ""
2546
  "Ha függőleges görgetősávot látsz az \"E-mail bekérő\" felugró ablakban, itt "
2547
  "megnövelheted az ablak magasságát. Egyébként üresen hagyható."
2548
 
2549
- #: ../admin/social_login.php:1010
2550
  msgid "Enable email verification"
2551
  msgstr "E-mail ellenőrzés bekapcsolása"
2552
 
2553
- #: ../admin/social_login.php:1020
2554
  msgid ""
2555
  "If enabled, email provided by the user will be verified by sending a "
2556
  "confirmation link to that email. User would not be able to login without "
@@ -2560,108 +2631,108 @@ msgstr ""
2560
  "üzenetet küldünk egy megerősítő linkkel. A felhasználó nem tud belépni, amíg "
2561
  "nem erősítette meg e-mailcímét "
2562
 
2563
- #: ../admin/social_login.php:1040
2564
  #, fuzzy
2565
  msgid "Enable GDPR opt-in"
2566
  msgstr "Disqus Hozzászólás Bekapcsolása"
2567
 
2568
- #: ../admin/social_login.php:1050
2569
  msgid ""
2570
  "Enable it to show GDPR opt-in for social login and social account linking"
2571
  msgstr ""
2572
 
2573
- #: ../admin/social_login.php:1058
2574
  #, fuzzy
2575
  msgid "Placement of GDPR opt-in"
2576
  msgstr "Disqus Hozzászólás Bekapcsolása"
2577
 
2578
- #: ../admin/social_login.php:1062
2579
  #, fuzzy
2580
  msgid "Above Social Login icons"
2581
  msgstr "Social Login"
2582
 
2583
- #: ../admin/social_login.php:1064
2584
  #, fuzzy
2585
  msgid "Below Social Login icons"
2586
  msgstr "Social Login"
2587
 
2588
- #: ../admin/social_login.php:1070
2589
  #, fuzzy
2590
  msgid "Placement of GDPR opt-in above or below the social login icons"
2591
  msgstr "Szöveg a Közösségi Belépés felett"
2592
 
2593
- #: ../admin/social_login.php:1077
2594
  msgid "Opt-in text"
2595
  msgstr ""
2596
 
2597
- #: ../admin/social_login.php:1087
2598
  #, fuzzy
2599
  msgid "Text for the GDPR opt-in"
2600
  msgstr "Disqus Hozzászólás Bekapcsolása"
2601
 
2602
- #: ../admin/social_login.php:1094
2603
  msgid "Text to link to Terms-Conditions page"
2604
  msgstr ""
2605
 
2606
- #: ../admin/social_login.php:1104
2607
  msgid "Word(s) in the opt-in text to be linked to terms-conditions page"
2608
  msgstr ""
2609
 
2610
- #: ../admin/social_login.php:1111
2611
  msgid "Terms-Conditions Url"
2612
  msgstr ""
2613
 
2614
- #: ../admin/social_login.php:1121
2615
  #, fuzzy
2616
  msgid "Url of the terms-conditions page of your website"
2617
  msgstr "A főoldalad Url-je"
2618
 
2619
- #: ../admin/social_login.php:1128
2620
  msgid "Text to link to Privacy Policy page"
2621
  msgstr ""
2622
 
2623
- #: ../admin/social_login.php:1138
2624
  msgid "Word(s) in the opt-in text to be linked to privacy policy page"
2625
  msgstr ""
2626
 
2627
- #: ../admin/social_login.php:1145
2628
  msgid "Privacy Policy Url"
2629
  msgstr ""
2630
 
2631
- #: ../admin/social_login.php:1155
2632
  #, fuzzy
2633
  msgid "Url of the privacy policy page of your website"
2634
  msgstr "A főoldalad Url-je"
2635
 
2636
- #: ../admin/social_login.php:1206 ../inc/widget.php:260 ../inc/widget.php:438
2637
  #: ../inc/widget.php:602 ../inc/widget.php:750
2638
  msgid "Select"
2639
  msgstr "Válassz"
2640
 
2641
- #: ../admin/social_login.php:1237
2642
  #, fuzzy
2643
  msgid "Social Login Shortcode & Widget"
2644
  msgstr "Shortcode és Widget"
2645
 
2646
- #: ../admin/social_login.php:1238
2647
  msgid "Social Linking Shortcode"
2648
  msgstr ""
2649
 
2650
- #: ../admin/social_login.php:1253
2651
  msgid "Why is social login not working?"
2652
  msgstr ""
2653
 
2654
- #: ../admin/social_login.php:1254
2655
  msgid ""
2656
  "Make sure that App ID and Secret (Client ID and Secret) keys you have saved, "
2657
  "belong to the same app"
2658
  msgstr ""
2659
 
2660
- #: ../admin/social_login.php:1256
2661
  msgid "Social Login not working with Varnish enabled"
2662
  msgstr ""
2663
 
2664
- #: ../admin/social_login.php:1257
2665
  msgid ""
2666
  "Why the user is not appearing logged in even after Social Login until the "
2667
  "webpage is refreshed manually?"
@@ -2886,28 +2957,28 @@ msgstr "Hibás kérés"
2886
  msgid "Providers not selected"
2887
  msgstr "Nincs kiválasztott szolgáltató"
2888
 
2889
- #: ../inc/social_login.php:747
2890
  msgid "Email"
2891
  msgstr "Email"
2892
 
2893
- #: ../inc/social_login.php:748
2894
  msgid "Confirm email"
2895
  msgstr ""
2896
 
2897
- #: ../inc/social_login.php:750
2898
  msgid "Save"
2899
  msgstr ""
2900
 
2901
- #: ../inc/social_login.php:751
2902
  msgid "Cancel"
2903
  msgstr ""
2904
 
2905
- #: ../inc/social_login.php:825
2906
  #, fuzzy
2907
  msgid "Email Verification"
2908
  msgstr "E-mail ellenőrzés bekapcsolása"
2909
 
2910
- #: ../inc/social_login.php:827
2911
  msgid ""
2912
  "Please click on the following link or paste it in browser to verify your "
2913
  "email"
@@ -3474,9 +3545,6 @@ msgstr ""
3474
  #~ msgid "Print"
3475
  #~ msgstr "Nyomtatás"
3476
 
3477
- #~ msgid "Yahoo"
3478
- #~ msgstr "Yahoo"
3479
-
3480
  #~ msgid "Reddit"
3481
  #~ msgstr "Reddit"
3482
 
2
  msgstr ""
3
  "Project-Id-Version: Super Socializer\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2020-09-23 09:46+0530\n"
6
+ "PO-Revision-Date: 2020-09-23 09:46+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:667
20
  msgid "Problem fetching access token: "
21
  msgstr ""
22
 
23
+ #: ../super_socializer.php:671 ../super_socializer.php:685
24
  msgid "Facebook SDK returned an error: "
25
  msgstr ""
26
 
27
+ #: ../super_socializer.php:681
28
  msgid "Graph returned an error: "
29
  msgstr ""
30
 
31
+ #: ../super_socializer.php:870
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:898
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:901
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:904
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:1086 ../helper.php:961
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:1086
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:1090
77
  msgid "Notification"
78
  msgstr "Értesítés"
79
 
80
+ #: ../super_socializer.php:1108 ../admin/social_login.php:869
81
  msgid "Email required"
82
  msgstr "E-mail cím szükséges"
83
 
84
+ #: ../super_socializer.php:1111
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:1180
89
  msgid "Leave a reply"
90
  msgstr "Válaszolj"
91
 
92
+ #: ../super_socializer.php:1196 ../inc/social_sharing.php:241
93
  msgid "Shares"
94
  msgstr ""
95
 
96
+ #: ../super_socializer.php:1196 ../inc/social_sharing.php:241
97
  msgid "Share"
98
  msgstr ""
99
 
100
+ #: ../super_socializer.php:1196
101
  #, fuzzy
102
  msgid "Link copied."
103
  msgstr "LinkedIn"
104
 
105
+ #: ../super_socializer.php:1441
106
  #, fuzzy
107
  msgid "Super Socializer - General Options"
108
  msgstr "Super Socializer - Belépés"
109
 
110
+ #: ../super_socializer.php:1441 ../admin/general_options.php:15
111
  #: ../admin/social_commenting.php:47
112
  #, fuzzy
113
  msgid "General Options"
114
  msgstr "Megosztási beállítások"
115
 
116
+ #: ../super_socializer.php:1509 ../helper.php:883
117
  #, fuzzy
118
  msgid "Social Avatar"
119
  msgstr "Kis Avatar URL"
120
 
121
+ #: ../super_socializer.php:1512
122
  msgid "Small Avatar Url"
123
  msgstr "Kis Avatar URL"
124
 
125
+ #: ../super_socializer.php:1516
126
  #, fuzzy
127
  msgid "Large Avatar Url"
128
  msgstr "Cél Url"
129
 
130
+ #: ../super_socializer.php:1520 ../helper.php:886
131
  msgid ""
132
  "Do not fetch and update social avatar from my profile, next time I Social "
133
  "Login"
134
  msgstr ""
135
 
136
+ #: ../super_socializer.php:1524 ../helper.php:887
137
  msgid "Update social avatar, next time I Social Login"
138
  msgstr ""
139
 
140
+ #: ../super_socializer.php:1601
141
  msgid "Login with your Social ID"
142
  msgstr ""
143
 
144
+ #: ../super_socializer.php:1602
145
  msgid "Email you entered is already registered or invalid"
146
  msgstr "A megadott e-mail már regisztrálva van, vagy hibás"
147
 
148
+ #: ../super_socializer.php:1607
149
  msgid "Please enter a valid email address. You might be required to verify it"
150
  msgstr "Kérlek, érvényes e-mail címet adj meg. Ezt később ellenőrizhetjük"
151
 
152
+ #: ../super_socializer.php:1611 ../super_socializer.php:2309
153
  msgid "Link your social account to login to your account at this website"
154
  msgstr "Kapcsold össze közösségi fiókod, hogy belépj erre az oldalra"
155
 
156
+ #: ../super_socializer.php:1851
157
  msgid "Thanks for installing Super Socializer plugin"
158
  msgstr ""
159
 
160
+ #: ../super_socializer.php:1853
161
  msgid "Configure the Plugin"
162
  msgstr ""
163
 
164
+ #: ../super_socializer.php:1864
165
  msgid ""
166
  "Update \"Facebook Comments Moderation\" add-on for compatibility with "
167
  "current version of Super Socializer"
168
  msgstr ""
169
 
170
+ #: ../super_socializer.php:1873
171
  msgid ""
172
  "Update \"Facebook Comments Notifier\" add-on for compatibility with current "
173
  "version of Super Socializer"
174
  msgstr ""
175
 
176
+ #: ../super_socializer.php:1882
177
  msgid ""
178
  "Update \"Social Login Buttons\" add-on for compatibility with current "
179
  "version of Super Socializer"
180
  msgstr ""
181
 
182
+ #: ../super_socializer.php:1891
183
  msgid ""
184
  "Update \"Social Share myCRED Integration\" add-on for maximum compatibility "
185
  "with current version of Super Socializer"
186
  msgstr ""
187
 
188
+ #: ../super_socializer.php:1900
189
  msgid ""
190
  "Update \"Social Login myCRED Integration\" add-on for maximum compatibility "
191
  "with current version of Super Socializer"
192
  msgstr ""
193
 
194
+ #: ../super_socializer.php:1911
195
  #, php-format
196
  msgid ""
197
  "To continue using Steam login save Steam API key <a href=\"%s\">here</a>"
198
  msgstr ""
199
 
200
+ #: ../super_socializer.php:1920
201
  #, php-format
202
  msgid ""
203
  "To continue using Instagram login create a new Instagram App as described <a "
205
  "Instagram App Secret <a href=\"%s\">here</a>"
206
  msgstr ""
207
 
208
+ #: ../super_socializer.php:1929 ../super_socializer.php:1938
209
  #, php-format
210
  msgid ""
211
  "To continue using bitly url shortener, login to your bit.ly account and "
214
  "\">here</a>. More details at the <a href=\"%s\" target=\"_blank\">link</a>"
215
  msgstr ""
216
 
217
+ #: ../super_socializer.php:1954
218
  #, php-format
219
  msgid ""
220
  "To continue using Social Login, save the secret keys <a href=\"%s\">here</a>"
221
  msgstr ""
222
 
223
+ #: ../super_socializer.php:1978
224
  #, php-format
225
  msgid ""
226
  "Add %s in \"Valid OAuth redirect URIs\" option in your Facebook app settings "
228
  "target=\"_blank\">here</a>"
229
  msgstr ""
230
 
231
+ #: ../super_socializer.php:1978 ../super_socializer.php:2003
232
+ #: ../super_socializer.php:2028 ../super_socializer.php:2053
233
+ #: ../super_socializer.php:2086 ../super_socializer.php:2114
234
+ #: ../super_socializer.php:2141
235
  msgid "Okay"
236
  msgstr ""
237
 
238
+ #: ../super_socializer.php:2003
239
  #, php-format
240
  msgid ""
241
  "Add %s in \"Callback URLs\" option in your Twitter app settings for Twitter "
243
  "\">here</a>"
244
  msgstr ""
245
 
246
+ #: ../super_socializer.php:2028
247
  #, php-format
248
  msgid ""
249
  "Add %s in \"Authorized Redirect URLs\" option in your Linkedin app settings "
251
  "target=\"_blank\">here</a>"
252
  msgstr ""
253
 
254
+ #: ../super_socializer.php:2053
255
  #, php-format
256
  msgid ""
257
  "Add %s in \"Authorized redirect URIs\" option in your Google client settings "
259
  "target=\"_blank\">here</a>"
260
  msgstr ""
261
 
262
+ #: ../super_socializer.php:2064
263
  #, php-format
264
  msgid ""
265
  "Save the url of privacy policy page of your website <a href=\"%s\">here</a>"
266
  msgstr ""
267
 
268
+ #: ../super_socializer.php:2086
269
  #, php-format
270
  msgid ""
271
  "This plugin is GDPR compliant. You need to update the privacy policy of your "
273
  "\"%s\" target=\"_blank\">here</a>"
274
  msgstr ""
275
 
276
+ #: ../super_socializer.php:2114
277
  #, php-format
278
  msgid ""
279
  "Now plugin supports a new service Twitcount.com to show Twitter shares. To "
282
  "your website %s with them. No need to copy-paste any code from their website."
283
  msgstr ""
284
 
285
+ #: ../super_socializer.php:2141
286
  #, php-format
287
  msgid ""
288
  "Replace url saved in \"Callback URLs\" option in your Twitter app settings "
290
  "\"%s\" target=\"_blank\">here</a>"
291
  msgstr ""
292
 
293
+ #: ../super_socializer.php:2166
294
  #, php-format
295
  msgid ""
296
  "If you cannot get Linkedin login to work after updating the plugin, replace "
298
  "For more details, check step 6 <a href=\"%s\" target=\"_blank\">here</a>"
299
  msgstr ""
300
 
301
+ #: ../super_socializer.php:2166 ../super_socializer.php:2193
302
  msgid "Dismiss"
303
  msgstr ""
304
 
305
+ #: ../super_socializer.php:2192
306
  #, php-format
307
  msgid ""
308
  "Save Facebook App ID and Secret keys in \"Standard Interface\" and/or "
311
  "that, clear share counts cache from \"Miscellaneous\" section"
312
  msgstr ""
313
 
314
+ #: ../super_socializer.php:2385
315
  msgid ""
316
  "Your browser is blocking some features of this website. Please follow the "
317
  "instructions at {support_url} to unblock these."
423
 
424
  #: ../helper.php:898 ../admin/general_options.php:89
425
  #: ../admin/social_sharing.php:1944 ../admin/social_commenting.php:400
426
+ #: ../admin/social_login.php:1359 ../admin/like_buttons.php:780
427
  msgid "Save Changes"
428
  msgstr "Változások Mentése"
429
 
447
  #: ../admin/general_options.php:7 ../admin/general_options.php:93
448
  #: ../admin/social_sharing.php:5 ../admin/social_sharing.php:1948
449
  #: ../admin/social_commenting.php:5 ../admin/social_commenting.php:404
450
+ #: ../admin/social_login.php:5 ../admin/social_login.php:1363
451
  #: ../admin/like_buttons.php:6 ../admin/like_buttons.php:784
452
  #, fuzzy, php-format
453
  msgid ""
502
  msgstr ""
503
 
504
  #: ../admin/general_options.php:103 ../admin/social_sharing.php:1954
505
+ #: ../admin/social_commenting.php:410 ../admin/social_login.php:1369
506
  #: ../admin/like_buttons.php:790
507
  #, fuzzy
508
  msgid "Instagram Shoutout"
509
  msgstr "Instagram"
510
 
511
  #: ../admin/general_options.php:105 ../admin/social_sharing.php:1956
512
+ #: ../admin/social_commenting.php:412 ../admin/social_login.php:1371
513
  #: ../admin/like_buttons.php:792
514
  msgid ""
515
  "If you can send (to hello@heateor.com) how this plugin is helping your "
653
 
654
  #: ../admin/social_sharing.php:67 ../admin/social_sharing.php:1869
655
  #: ../admin/social_sharing.php:1871 ../admin/social_login.php:45
656
+ #: ../admin/social_login.php:1325 ../admin/like_buttons.php:50
657
  #: ../admin/like_buttons.php:751
658
  msgid "Shortcode & Widget"
659
  msgstr "Shortcode és Widget"
664
 
665
  #: ../admin/social_sharing.php:69 ../admin/social_sharing.php:1902
666
  #: ../admin/social_commenting.php:40 ../admin/social_commenting.php:384
667
+ #: ../admin/social_login.php:46 ../admin/social_login.php:1339
668
  #: ../admin/like_buttons.php:51 ../admin/like_buttons.php:764
669
  msgid "FAQ"
670
  msgstr "GYIK"
909
  msgid "Url to share"
910
  msgstr "Megosztás Url-je"
911
 
912
+ #: ../admin/social_sharing.php:725 ../admin/social_login.php:610
913
+ #: ../admin/social_login.php:986 ../admin/like_buttons.php:105
914
  #: ../inc/widget.php:945
915
  msgid "Title"
916
  msgstr "Cím"
998
  msgstr ""
999
 
1000
  #: ../admin/social_sharing.php:957 ../admin/social_sharing.php:1383
1001
+ #: ../admin/social_login.php:927 ../admin/social_login.php:956
1002
  #: ../admin/like_buttons.php:218 ../admin/like_buttons.php:494
1003
  msgid "Homepage"
1004
  msgstr "Kezdő oldal"
1258
  msgid "Required only to track Facebook share count"
1259
  msgstr ""
1260
 
1261
+ #: ../admin/social_sharing.php:1584 ../admin/social_login.php:158
1262
  msgid "Facebook App ID"
1263
  msgstr "Facebook App ID"
1264
 
1272
  "dokumentációt <a href=\"%s\" target=\"_blank\">ezen a linken</a> a Facebook "
1273
  "App ID beszerzéshez"
1274
 
1275
+ #: ../admin/social_sharing.php:1601 ../admin/social_login.php:179
1276
  #, fuzzy
1277
  msgid "Facebook App Secret"
1278
  msgstr "Facebook App ID"
1459
  "tökéletesen) a szöveges mezőben:"
1460
 
1461
  #: ../admin/social_sharing.php:1904 ../admin/social_commenting.php:386
1462
+ #: ../admin/social_login.php:1341
1463
  msgid ""
1464
  "<strong>Note:</strong> Plugin will not work on local server. You should have "
1465
  "an online website for the plugin to function properly."
1514
  msgstr ""
1515
 
1516
  #: ../admin/social_sharing.php:1919 ../admin/social_commenting.php:389
1517
+ #: ../admin/social_login.php:1348
1518
  msgid "Why is my browser blocking some features of the plugin?"
1519
  msgstr ""
1520
 
1835
  msgid "Advanced Configuration"
1836
  msgstr "Alap Beállítások"
1837
 
1838
+ #: ../admin/social_login.php:41 ../admin/social_login.php:1125
1839
  msgid "GDPR"
1840
  msgstr ""
1841
 
1842
+ #: ../admin/social_login.php:43 ../admin/social_login.php:1276
1843
  msgid "XProfile Integration"
1844
  msgstr ""
1845
 
1911
  msgstr ""
1912
 
1913
  #: ../admin/social_login.php:135
1914
+ msgid "Wordpress"
1915
+ msgstr ""
1916
+
1917
+ #: ../admin/social_login.php:139
1918
  msgid "Windows Live"
1919
  msgstr ""
1920
 
1921
  #: ../admin/social_login.php:143
1922
+ msgid "Yahoo"
1923
+ msgstr "Yahoo"
1924
+
1925
+ #: ../admin/social_login.php:151
1926
  msgid "Select Social ID provider to enable in Social Login"
1927
  msgstr "Válassz Közösségi ID szolgáltatót a Közösségi Belépéshez"
1928
 
1929
+ #: ../admin/social_login.php:168
1930
  #, php-format
1931
  msgid ""
1932
  "Required for Facebook Social Login to work. Please follow the documentation "
1936
  "dokumentációt <a href=\"%s\" target=\"_blank\">ezen a linken</a> a Facebook "
1937
  "App ID beszerzéshez"
1938
 
1939
+ #: ../admin/social_login.php:170 ../admin/social_login.php:191
1940
  #, fuzzy
1941
  msgid ""
1942
  "Paste following url in <strong>Site URL</strong> option mentioned at the link"
1944
  "Illeszd be a következő url-t a <strong>Site URL</strong> mezőbe a fenti "
1945
  "linken"
1946
 
1947
+ #: ../admin/social_login.php:189
1948
  #, fuzzy, php-format
1949
  msgid ""
1950
  "Required for Facebook Social Login to work. Please follow the documentation "
1954
  "dokumentációt <a href=\"%s\" target=\"_blank\">ezen a linken</a> a Facebook "
1955
  "App ID beszerzéshez"
1956
 
1957
+ #: ../admin/social_login.php:200
1958
  msgid "Twitter API Key"
1959
  msgstr "Twitter API Key"
1960
 
1961
+ #: ../admin/social_login.php:210
1962
  #, php-format
1963
  msgid ""
1964
  "Required for Twitter Social Login to work. Please follow the documentation "
1968
  "dokumentációt <a href=\"%s\" target=\"_blank\">ezen a linken</a> a Twitter "
1969
  "API Key beszerzéshez"
1970
 
1971
+ #: ../admin/social_login.php:212 ../admin/social_login.php:237
1972
  #, fuzzy
1973
  msgid ""
1974
  "Paste following url in <strong>Website</strong> option mentioned at the link"
1976
  "Illeszd be a következő url-t a <strong>Website URL</strong> mezőbe a fenti "
1977
  "linken"
1978
 
1979
+ #: ../admin/social_login.php:216 ../admin/social_login.php:241
1980
+ #: ../admin/social_login.php:429 ../admin/social_login.php:449
1981
+ #: ../admin/social_login.php:469 ../admin/social_login.php:489
1982
  #, fuzzy
1983
  msgid ""
1984
  "Paste following url in <strong>Callback URL</strong> option mentioned at the "
1987
  "Illeszd be a következő url-t a <strong>Callback domain</strong> mezőbe a "
1988
  "fenti linken"
1989
 
1990
+ #: ../admin/social_login.php:225
1991
  msgid "Twitter API Secret"
1992
  msgstr "Twitter API Secret"
1993
 
1994
+ #: ../admin/social_login.php:235
1995
  #, php-format
1996
  msgid ""
1997
  "Required for Twitter Social Login to work. Please follow the documentation "
2001
  "dokumentációt <a href=\"%s\" target=\"_blank\">ezen a linken</a> a Twitter "
2002
  "API Secret beszerzéséhez"
2003
 
2004
+ #: ../admin/social_login.php:250
2005
  #, fuzzy
2006
  msgid "LinkedIn Client ID"
2007
  msgstr "LinkedIn"
2008
 
2009
+ #: ../admin/social_login.php:260
2010
  #, fuzzy, php-format
2011
  msgid ""
2012
  "Required for LinkedIn Social Login to work. Please follow the documentation "
2016
  "dokumentációt <a href=\"%s\" target=\"_blank\">ezen a linken</a> a LinkedIn "
2017
  "API Key beszerzéshez"
2018
 
2019
+ #: ../admin/social_login.php:262 ../admin/social_login.php:283
2020
  #, fuzzy
2021
  msgid ""
2022
  "Paste following url in <strong>Redirect URLs</strong> option mentioned at "
2025
  "Illeszd be a következő url-t a <strong>Site URL</strong> mezőbe a fenti "
2026
  "linken"
2027
 
2028
+ #: ../admin/social_login.php:271
2029
  #, fuzzy
2030
  msgid "LinkedIn Client Secret"
2031
  msgstr "LinkedIn"
2032
 
2033
+ #: ../admin/social_login.php:281
2034
  #, fuzzy, php-format
2035
  msgid ""
2036
  "Required for LinkedIn Social Login to work. Please follow the documentation "
2041
  "dokumentációt <a href=\"%s\" target=\"_blank\">ezen a linken</a> a LinkedIn "
2042
  "API Key beszerzéshez"
2043
 
2044
+ #: ../admin/social_login.php:292
2045
  #, fuzzy
2046
  msgid "Google Client ID"
2047
  msgstr "Google+ Client ID"
2048
 
2049
+ #: ../admin/social_login.php:302
2050
  #, fuzzy, php-format
2051
  msgid ""
2052
  "Required for Google Social Login to work. Please follow the documentation at "
2056
  "dokumentációt <a href=\"%s\" target=\"_blank\">ezen a linken</a> a "
2057
  "GooglePlus Client ID beszerzéshez"
2058
 
2059
+ #: ../admin/social_login.php:304 ../admin/social_login.php:325
2060
  #, fuzzy
2061
  msgid ""
2062
  "Paste following url in <strong>AUTHORIZED REDIRECT URI</strong> option "
2065
  "Illeszd be a következő url-t a <strong>Site URL</strong> mezőbe a fenti "
2066
  "linken"
2067
 
2068
+ #: ../admin/social_login.php:313
2069
  #, fuzzy
2070
  msgid "Google Client Secret"
2071
  msgstr "Google+ Client ID"
2072
 
2073
+ #: ../admin/social_login.php:323
2074
  #, fuzzy, php-format
2075
  msgid ""
2076
  "Required for Google Social Login to work. Please follow the documentation at "
2080
  "dokumentációt <a href=\"%s\" target=\"_blank\">ezen a linken</a> a "
2081
  "GooglePlus Client ID beszerzéshez"
2082
 
2083
+ #: ../admin/social_login.php:334
2084
  msgid "Vkontakte Application ID"
2085
  msgstr "Vkontakte Application ID"
2086
 
2087
+ #: ../admin/social_login.php:344 ../admin/social_login.php:365
2088
  #, php-format
2089
  msgid ""
2090
  "Required for Vkontakte Social Login to work. Please follow the documentation "
2095
  "dokumentációt <a href=\"%s\" target=\"_blank\">ezen a linken</a> a Vkontakte "
2096
  "Application ID beszerzéshez"
2097
 
2098
+ #: ../admin/social_login.php:346 ../admin/social_login.php:367
2099
  #, fuzzy
2100
  msgid ""
2101
  "Paste following url in <strong>Site address</strong> option mentioned at the "
2104
  "Illeszd be a következő url-t a <strong>Site address</strong> mezőbe a fenti "
2105
  "linken"
2106
 
2107
+ #: ../admin/social_login.php:355
2108
  #, fuzzy
2109
  msgid "Vkontakte Secure key"
2110
  msgstr "Vkontakte"
2111
 
2112
+ #: ../admin/social_login.php:376
2113
  #, fuzzy
2114
  msgid "Instagram App ID"
2115
  msgstr "Instagram Client ID"
2116
 
2117
+ #: ../admin/social_login.php:386
2118
  #, fuzzy, php-format
2119
  msgid ""
2120
  "Required for Instagram Social Login to work. Please follow the documentation "
2124
  "dokumentációt <a href=\"%s\" target=\"_blank\">ezen a linken</a> az "
2125
  "Instagram Client ID beszerzéshez"
2126
 
2127
+ #: ../admin/social_login.php:388 ../admin/social_login.php:409
2128
  #, fuzzy
2129
  msgid ""
2130
  "Paste following url in <strong>Valid OAuth Redirect URIs</strong> option "
2133
  "Illeszd be a következő url-t a <strong>Site URL</strong> mezőbe a fenti "
2134
  "linken"
2135
 
2136
+ #: ../admin/social_login.php:397
2137
  #, fuzzy
2138
  msgid "Instagram App Secret"
2139
  msgstr "Instagram"
2140
 
2141
+ #: ../admin/social_login.php:407
2142
  #, fuzzy, php-format
2143
  msgid ""
2144
  "Required for Instagram Social Login to work. Please follow the documentation "
2148
  "dokumentációt <a href=\"%s\" target=\"_blank\">ezen a linken</a> az "
2149
  "Instagram Client ID beszerzéshez"
2150
 
2151
+ #: ../admin/social_login.php:418
2152
  msgid "Line Channel ID"
2153
  msgstr ""
2154
 
2155
+ #: ../admin/social_login.php:427
2156
  #, fuzzy, php-format
2157
  msgid ""
2158
  "Required for Line Social Login to work. Please follow the documentation at "
2162
  "dokumentációt <a href=\"%s\" target=\"_blank\">ezen a linken</a> a LinkedIn "
2163
  "API Key beszerzéshez"
2164
 
2165
+ #: ../admin/social_login.php:438
2166
  #, fuzzy
2167
  msgid "Line Channel Secret"
2168
  msgstr "LinkedIn"
2169
 
2170
+ #: ../admin/social_login.php:447
2171
  #, fuzzy, php-format
2172
  msgid ""
2173
  "Required for Line Social Login to work. Please follow the documentation at "
2177
  "dokumentációt <a href=\"%s\" target=\"_blank\">ezen a linken</a> a LinkedIn "
2178
  "API Key beszerzéshez"
2179
 
2180
+ #: ../admin/social_login.php:458
2181
+ #, fuzzy
2182
+ msgid "Wordpress Client ID"
2183
+ msgstr "Google+ Client ID"
2184
+
2185
+ #: ../admin/social_login.php:467
2186
+ #, fuzzy, php-format
2187
+ msgid ""
2188
+ "Required for Wordpress Social Login to work. Please follow the documentation "
2189
+ "at <a href=\"%s\" target=\"_blank\">this link</a> to get Wordpress Client ID"
2190
+ msgstr ""
2191
+ "Szükséges a GooglePlus Közösségi Belépés működéséhez. Kérlek, kövesd a "
2192
+ "dokumentációt <a href=\"%s\" target=\"_blank\">ezen a linken</a> a "
2193
+ "GooglePlus Client ID beszerzéshez"
2194
+
2195
+ #: ../admin/social_login.php:478
2196
+ #, fuzzy
2197
+ msgid "Wordpress Client Secret"
2198
+ msgstr "Google+ Client ID"
2199
+
2200
+ #: ../admin/social_login.php:487
2201
+ #, fuzzy, php-format
2202
+ msgid ""
2203
+ "Required for Wordpress Social Login to work. Please follow the documentation "
2204
+ "at <a href=\"%s\" target=\"_blank\">this link</a> to get Wordpress Client "
2205
+ "Secret"
2206
+ msgstr ""
2207
+ "Szükséges a GooglePlus Közösségi Belépés működéséhez. Kérlek, kövesd a "
2208
+ "dokumentációt <a href=\"%s\" target=\"_blank\">ezen a linken</a> a "
2209
+ "GooglePlus Client ID beszerzéshez"
2210
+
2211
+ #: ../admin/social_login.php:498
2212
  #, fuzzy
2213
  msgid "Microsoft Client ID"
2214
  msgstr "Google+ Client ID"
2215
 
2216
+ #: ../admin/social_login.php:507
2217
  #, fuzzy, php-format
2218
  msgid ""
2219
  "Required for Live Social Login to work. Please follow the documentation at "
2223
  "dokumentációt <a href=\"%s\" target=\"_blank\">ezen a linken</a> a "
2224
  "GooglePlus Client ID beszerzéshez"
2225
 
2226
+ #: ../admin/social_login.php:509 ../admin/social_login.php:529
2227
+ #: ../admin/social_login.php:567 ../admin/social_login.php:587
2228
  #, fuzzy
2229
  msgid ""
2230
  "Paste following url in <strong>Redirect URIs</strong> option mentioned at "
2233
  "Illeszd be a következő url-t a <strong>Site URL</strong> mezőbe a fenti "
2234
  "linken"
2235
 
2236
+ #: ../admin/social_login.php:518
2237
  #, fuzzy
2238
  msgid "Microsoft Client Secret"
2239
  msgstr "Google+ Client ID"
2240
 
2241
+ #: ../admin/social_login.php:527
2242
  #, fuzzy, php-format
2243
  msgid ""
2244
  "Required for Live Social Login to work. Please follow the documentation at "
2249
  "dokumentációt <a href=\"%s\" target=\"_blank\">ezen a linken</a> a "
2250
  "GooglePlus Client ID beszerzéshez"
2251
 
2252
+ #: ../admin/social_login.php:537
2253
  #, fuzzy
2254
  msgid "Steam API Key"
2255
  msgstr "Twitter API Key"
2256
 
2257
+ #: ../admin/social_login.php:546
2258
  #, fuzzy, php-format
2259
  msgid ""
2260
  "Required for Steam Social Login to work. Get it at <a href=\"%s\" target="
2264
  "dokumentációt <a href=\"%s\" target=\"_blank\">ezen a linken</a> a Twitter "
2265
  "API Key beszerzéshez"
2266
 
2267
+ #: ../admin/social_login.php:547
2268
  #, fuzzy
2269
  msgid "Save following <strong>domain</strong> to get the key"
2270
  msgstr ""
2271
  "Illeszd be a következő url-t a <strong>Callback domain</strong> mezőbe a "
2272
  "fenti linken"
2273
 
2274
+ #: ../admin/social_login.php:556
2275
+ #, fuzzy
2276
+ msgid "Yahoo Client ID"
2277
+ msgstr "Google+ Client ID"
2278
+
2279
+ #: ../admin/social_login.php:565
2280
+ #, fuzzy, php-format
2281
+ msgid ""
2282
+ "Required for Yahoo Social Login to work. Please follow the documentation at "
2283
+ "<a href=\"%s\" target=\"_blank\">this link</a> to get Yahoo Client ID"
2284
+ msgstr ""
2285
+ "Szükséges a GooglePlus Közösségi Belépés működéséhez. Kérlek, kövesd a "
2286
+ "dokumentációt <a href=\"%s\" target=\"_blank\">ezen a linken</a> a "
2287
+ "GooglePlus Client ID beszerzéshez"
2288
+
2289
+ #: ../admin/social_login.php:576
2290
+ #, fuzzy
2291
+ msgid "Yahoo Client Secret"
2292
+ msgstr "Google+ Client ID"
2293
+
2294
+ #: ../admin/social_login.php:585
2295
+ #, fuzzy, php-format
2296
+ msgid ""
2297
+ "Required for Yahoo Social Login to work. Please follow the documentation at "
2298
+ "<a href=\"%s\" target=\"_blank\">this link</a> to get Yahoo Client Secret key"
2299
+ msgstr ""
2300
+ "Szükséges a GooglePlus Közösségi Belépés működéséhez. Kérlek, kövesd a "
2301
+ "dokumentációt <a href=\"%s\" target=\"_blank\">ezen a linken</a> a "
2302
+ "GooglePlus Client ID beszerzéshez"
2303
+
2304
+ #: ../admin/social_login.php:605
2305
  #, fuzzy
2306
  msgid "Social Login Options"
2307
  msgstr "Social Login"
2308
 
2309
+ #: ../admin/social_login.php:620
2310
  msgid "Text to display above the Social Login interface"
2311
  msgstr "Szöveg a Közösségi Belépés felett"
2312
 
2313
+ #: ../admin/social_login.php:628
2314
  msgid "Trigger social login in the same browser tab"
2315
  msgstr ""
2316
 
2317
+ #: ../admin/social_login.php:638
2318
  msgid "Trigger social login in the same browser tab instead of a popup window"
2319
  msgstr ""
2320
 
2321
+ #: ../admin/social_login.php:645
2322
  #, fuzzy
2323
  msgid "Center align icons"
2324
  msgstr "Ikonsorrend beállítás"
2325
 
2326
+ #: ../admin/social_login.php:655
2327
  #, fuzzy
2328
  msgid "Center align social login icons"
2329
  msgstr "Social Login"
2330
 
2331
+ #: ../admin/social_login.php:662
2332
  msgid "Enable at login page"
2333
  msgstr "Bekapcsolás a belépés oldalon"
2334
 
2335
+ #: ../admin/social_login.php:672
2336
  msgid ""
2337
  "Social Login interface will get enabled at the login page of your website"
2338
  msgstr "Közösségi Belépés megjelenítése a weboldal belépési oldalán"
2339
 
2340
+ #: ../admin/social_login.php:679
2341
  msgid "Enable at register page"
2342
  msgstr "Bekapcsolás a regisztráció oldalon"
2343
 
2344
+ #: ../admin/social_login.php:689
2345
  msgid ""
2346
  "Social Login interface will get enabled at the registration page of your "
2347
  "website"
2348
  msgstr "Közösségi Belépés megjelenítése a weboldal regisztrációs oldalán"
2349
 
2350
+ #: ../admin/social_login.php:696
2351
  msgid "Enable at comment form"
2352
  msgstr "Bekapcsolás a hozászólásoknál"
2353
 
2354
+ #: ../admin/social_login.php:706
2355
  msgid "Social Login interface will get enabled at your Wordpress Comment form"
2356
  msgstr "Közösségi Belépés megjelenítése a Wordpress hozzászólás küldésnél"
2357
 
2358
+ #: ../admin/social_login.php:720
2359
  msgid "Enable before WooCommerce Customer Login Form"
2360
  msgstr "Engedélyezze előtt WooCommerce Megrendelő Bejelentkezés"
2361
 
2362
+ #: ../admin/social_login.php:730
2363
  #, fuzzy
2364
  msgid ""
2365
  "Social Login Interface will get enabled before the customer login form at "
2366
  "WooCommerce My Account page"
2367
  msgstr "Közösségi Belépés megjelenítése a weboldal belépési oldalán"
2368
 
2369
+ #: ../admin/social_login.php:737
2370
  #, fuzzy
2371
  msgid "Enable at WooCommerce Customer Login Form"
2372
  msgstr "Engedélyezze után WooCommerce Megrendelő Bejelentkezés"
2373
 
2374
+ #: ../admin/social_login.php:747
2375
  #, fuzzy
2376
  msgid ""
2377
  "Integrate Social Login Interface with the customer login form at WooCommerce "
2378
  "My Account page"
2379
  msgstr "Közösségi Belépés megjelenítése a weboldal belépési oldalán"
2380
 
2381
+ #: ../admin/social_login.php:754
2382
  #, fuzzy
2383
  msgid "Enable at WooCommerce Customer Register Form"
2384
  msgstr "Engedélyezze után WooCommerce Megrendelő Bejelentkezés"
2385
 
2386
+ #: ../admin/social_login.php:764
2387
  #, fuzzy
2388
  msgid ""
2389
  "Integrate Social Login Interface with the customer register form at "
2390
  "WooCommerce My Account page"
2391
  msgstr "Közösségi Belépés megjelenítése a weboldal belépési oldalán"
2392
 
2393
+ #: ../admin/social_login.php:771
2394
  #, fuzzy
2395
  msgid "Enable at WooCommerce checkout page"
2396
  msgstr "Bekapcsolás a regisztráció oldalon"
2397
 
2398
+ #: ../admin/social_login.php:781
2399
  #, fuzzy
2400
  msgid "Social Login Interface will get enabled at WooCommerce checkout page"
2401
  msgstr "Közösségi Belépés megjelenítése a Wordpress hozzászólás küldésnél"
2402
 
2403
+ #: ../admin/social_login.php:791
2404
  msgid "Auto-approve comments made by Social Login users"
2405
  msgstr "Közösségi Belépéses hozzászólások automatikus elfogadása"
2406
 
2407
+ #: ../admin/social_login.php:801
2408
  msgid ""
2409
  "If this option is enabled, and WordPress comment is made by Social Login "
2410
  "user, comment will get approved immediately without keeping in moderation."
2413
  "felhasználó Wordpress hozzászólást küld, ez azonnal, moderáció nélkül "
2414
  "megjelenik az oldalon."
2415
 
2416
+ #: ../admin/social_login.php:802
2417
  msgid "Note: This is not related to Facebook comments"
2418
  msgstr "Megjegyzés: Ez nem kapcsolódik a Facebook hozzászólásokhoz"
2419
 
2420
+ #: ../admin/social_login.php:811
2421
  msgid "Enable social avatar"
2422
  msgstr "Közösségi avatar bekapcsolás"
2423
 
2424
+ #: ../admin/social_login.php:821
2425
  msgid ""
2426
  "Social profile pictures of the logged in user will be displayed as profile "
2427
  "avatar"
2428
  msgstr "A közösségi profil képe lesz megjelenítve avatarként a weboldalon"
2429
 
2430
+ #: ../admin/social_login.php:830
2431
  msgid "Avatar quality"
2432
  msgstr " Avatar képminőség"
2433
 
2434
+ #: ../admin/social_login.php:833
2435
  msgid "Average"
2436
  msgstr "Átlagos"
2437
 
2438
+ #: ../admin/social_login.php:834
2439
  msgid "Best"
2440
  msgstr "legjobb"
2441
 
2442
+ #: ../admin/social_login.php:841
2443
  msgid "Choose avatar quality"
2444
  msgstr "Válassz Avatar képminőséget"
2445
 
2446
+ #: ../admin/social_login.php:849
2447
  #, fuzzy
2448
  msgid ""
2449
  "Show option for users to update social avatar at BuddyPress profile page"
2451
  "Engedélyezze ezt a lehetőséget, hogy a szociális számla összekötő interfész "
2452
  "BuddyPress profil oldal"
2453
 
2454
+ #: ../admin/social_login.php:859
2455
  msgid ""
2456
  "If enabled, users would be able to update their social avatar from \"Profile "
2457
  "photo\" section in BuddyPress profile at front-end"
2458
  msgstr ""
2459
 
2460
+ #: ../admin/social_login.php:879
2461
  msgid ""
2462
  "If enabled and Social ID provider does not provide user's email address on "
2463
  "login, user will be asked to provide his/her email address. Otherwise, a "
2467
  "a belépéskor, a felhasználótól elkérjük e-mail címét. Egyébként egy "
2468
  "véletlenszerű e-mail címet generálunk"
2469
 
2470
+ #: ../admin/social_login.php:887
2471
  msgid "Send post-registration email to user to set account password"
2472
  msgstr ""
2473
 
2474
+ #: ../admin/social_login.php:897
2475
  msgid ""
2476
  "If enabled, an email will be sent to user after registration through Social "
2477
  "Login, regarding his/her login credentials (username-password to be able to "
2482
  "Felhasználói név, Jelszó, melyek segítségével hagyományos módon is beléphet "
2483
  "az oldalra."
2484
 
2485
+ #: ../admin/social_login.php:904
2486
  #, fuzzy
2487
  msgid "Send new user registration notification email to admin"
2488
  msgstr "Letilthatja a felhasználói regisztráció útján Szociális Belépés"
2489
 
2490
+ #: ../admin/social_login.php:914
2491
  #, fuzzy
2492
  msgid ""
2493
  "If enabled, an email will be sent to admin after new user registers through "
2498
  "Felhasználói név, Jelszó, melyek segítségével hagyományos módon is beléphet "
2499
  "az oldalra."
2500
 
2501
+ #: ../admin/social_login.php:921
2502
  msgid "Login redirection"
2503
  msgstr "Átirányítás Belépés után"
2504
 
2505
+ #: ../admin/social_login.php:925
2506
  msgid "Same page where user logged in"
2507
  msgstr "Az az oldal, ahol a felhasználó belépett"
2508
 
2509
+ #: ../admin/social_login.php:929 ../admin/social_login.php:958
2510
  msgid "Account dashboard"
2511
  msgstr "Felhasználói Irányítópult"
2512
 
2513
+ #: ../admin/social_login.php:932 ../admin/social_login.php:961
2514
  msgid "BuddyPress profile page"
2515
  msgstr "BuddyPress profil oldal"
2516
 
2517
+ #: ../admin/social_login.php:935 ../admin/social_login.php:964
2518
  msgid "Custom Url"
2519
  msgstr "Egyedi URL"
2520
 
2521
+ #: ../admin/social_login.php:943
2522
  msgid "User will be redirected to the selected page after Social Login"
2523
  msgstr ""
2524
  "A felhasználót a kiválasztott oldalra irányítjuk a Közösségi Belépés után"
2525
 
2526
+ #: ../admin/social_login.php:950
2527
  msgid "Registration redirection"
2528
  msgstr "Átirányítás Regisztráció után"
2529
 
2530
+ #: ../admin/social_login.php:954
2531
  msgid "Same page from where user registered"
2532
  msgstr "Az az oldal, ahol a felhasználó regisztrált"
2533
 
2534
+ #: ../admin/social_login.php:972
2535
  msgid ""
2536
  "User will be redirected to the selected page after registration (first "
2537
  "Social Login) through Social Login"
2539
  "A felhasználó a kiválasztott oldalra lesz átirányítva a regisztráció (első "
2540
  "Közösségi belépés) után"
2541
 
2542
+ #: ../admin/social_login.php:981
2543
  #, fuzzy
2544
  msgid "Social Account Linking Options"
2545
  msgstr "Közösségi Hozzászólás"
2546
 
2547
+ #: ../admin/social_login.php:996
2548
  #, fuzzy
2549
  msgid "Text to display above the Social Account Linking interface"
2550
  msgstr "Szöveg a Közösségi Belépés felett"
2551
 
2552
+ #: ../admin/social_login.php:1003
2553
  #, fuzzy
2554
  msgid ""
2555
  "Link social account to already existing account, if email address matches"
2556
  msgstr "Kapcsold össze közösségi fiókod, hogy belépj erre az oldalra"
2557
 
2558
+ #: ../admin/social_login.php:1013
2559
  msgid ""
2560
  "If email address of the user's Social Account matches with an already "
2561
  "existing account at your website, that social account will be linked to "
2563
  "Linking interface at their profile page."
2564
  msgstr ""
2565
 
2566
+ #: ../admin/social_login.php:1021
2567
  msgid "Enable social account linking at BuddyPress profile page"
2568
  msgstr ""
2569
  "Engedélyezze a szociális számla összekapcsolása a BuddyPress profil oldal"
2570
 
2571
+ #: ../admin/social_login.php:1031
2572
  msgid ""
2573
  "Enable this option to show social account linking interface at BuddyPress "
2574
  "profile page"
2576
  "Engedélyezze ezt a lehetőséget, hogy a szociális számla összekötő interfész "
2577
  "BuddyPress profil oldal"
2578
 
2579
+ #: ../admin/social_login.php:1042
2580
  msgid "Email popup options"
2581
  msgstr "Email felugró ablak beállítások"
2582
 
2583
+ #: ../admin/social_login.php:1047
2584
  msgid "Text on 'Email required' popup"
2585
  msgstr "Szöveg az 'E-mail cím szükséges' felugró ablakban"
2586
 
2587
+ #: ../admin/social_login.php:1057
2588
  msgid ""
2589
  "This text will be displayed on email required popup. Leave empty if not "
2590
  "required."
2592
  "Ez a szöveg jelenik meg az e-mail cím bekérő felugró ablakban. Üresen "
2593
  "hagyhatod, ha nem kéred be az e-mail címet."
2594
 
2595
+ #: ../admin/social_login.php:1065
2596
  msgid "Error message for 'Email required' popup"
2597
  msgstr "Hibaüzenet az 'E-mail cím szükséges' felugró ablakban"
2598
 
2599
+ #: ../admin/social_login.php:1075
2600
  msgid ""
2601
  "This message will be displayed to user if it provides invalid or already "
2602
  "registered email"
2604
  "Ez az üzenet jelenik meg, ha a felhasználó helytelen, vagy már regisztrált e-"
2605
  "mail címet ad meg "
2606
 
2607
+ #: ../admin/social_login.php:1083
2608
  msgid "Email popup height"
2609
  msgstr "Email felugró ablak magassága"
2610
 
2611
+ #: ../admin/social_login.php:1093
2612
  msgid ""
2613
  "If you are seeing vertical scrollbar in the \"Email required\" popup, you "
2614
  "can increase the height of popup by specifying in this option. Leave empty "
2617
  "Ha függőleges görgetősávot látsz az \"E-mail bekérő\" felugró ablakban, itt "
2618
  "megnövelheted az ablak magasságát. Egyébként üresen hagyható."
2619
 
2620
+ #: ../admin/social_login.php:1100
2621
  msgid "Enable email verification"
2622
  msgstr "E-mail ellenőrzés bekapcsolása"
2623
 
2624
+ #: ../admin/social_login.php:1110
2625
  msgid ""
2626
  "If enabled, email provided by the user will be verified by sending a "
2627
  "confirmation link to that email. User would not be able to login without "
2631
  "üzenetet küldünk egy megerősítő linkkel. A felhasználó nem tud belépni, amíg "
2632
  "nem erősítette meg e-mailcímét "
2633
 
2634
+ #: ../admin/social_login.php:1130
2635
  #, fuzzy
2636
  msgid "Enable GDPR opt-in"
2637
  msgstr "Disqus Hozzászólás Bekapcsolása"
2638
 
2639
+ #: ../admin/social_login.php:1140
2640
  msgid ""
2641
  "Enable it to show GDPR opt-in for social login and social account linking"
2642
  msgstr ""
2643
 
2644
+ #: ../admin/social_login.php:1148
2645
  #, fuzzy
2646
  msgid "Placement of GDPR opt-in"
2647
  msgstr "Disqus Hozzászólás Bekapcsolása"
2648
 
2649
+ #: ../admin/social_login.php:1152
2650
  #, fuzzy
2651
  msgid "Above Social Login icons"
2652
  msgstr "Social Login"
2653
 
2654
+ #: ../admin/social_login.php:1154
2655
  #, fuzzy
2656
  msgid "Below Social Login icons"
2657
  msgstr "Social Login"
2658
 
2659
+ #: ../admin/social_login.php:1160
2660
  #, fuzzy
2661
  msgid "Placement of GDPR opt-in above or below the social login icons"
2662
  msgstr "Szöveg a Közösségi Belépés felett"
2663
 
2664
+ #: ../admin/social_login.php:1167
2665
  msgid "Opt-in text"
2666
  msgstr ""
2667
 
2668
+ #: ../admin/social_login.php:1177
2669
  #, fuzzy
2670
  msgid "Text for the GDPR opt-in"
2671
  msgstr "Disqus Hozzászólás Bekapcsolása"
2672
 
2673
+ #: ../admin/social_login.php:1184
2674
  msgid "Text to link to Terms-Conditions page"
2675
  msgstr ""
2676
 
2677
+ #: ../admin/social_login.php:1194
2678
  msgid "Word(s) in the opt-in text to be linked to terms-conditions page"
2679
  msgstr ""
2680
 
2681
+ #: ../admin/social_login.php:1201
2682
  msgid "Terms-Conditions Url"
2683
  msgstr ""
2684
 
2685
+ #: ../admin/social_login.php:1211
2686
  #, fuzzy
2687
  msgid "Url of the terms-conditions page of your website"
2688
  msgstr "A főoldalad Url-je"
2689
 
2690
+ #: ../admin/social_login.php:1218
2691
  msgid "Text to link to Privacy Policy page"
2692
  msgstr ""
2693
 
2694
+ #: ../admin/social_login.php:1228
2695
  msgid "Word(s) in the opt-in text to be linked to privacy policy page"
2696
  msgstr ""
2697
 
2698
+ #: ../admin/social_login.php:1235
2699
  msgid "Privacy Policy Url"
2700
  msgstr ""
2701
 
2702
+ #: ../admin/social_login.php:1245
2703
  #, fuzzy
2704
  msgid "Url of the privacy policy page of your website"
2705
  msgstr "A főoldalad Url-je"
2706
 
2707
+ #: ../admin/social_login.php:1296 ../inc/widget.php:260 ../inc/widget.php:438
2708
  #: ../inc/widget.php:602 ../inc/widget.php:750
2709
  msgid "Select"
2710
  msgstr "Válassz"
2711
 
2712
+ #: ../admin/social_login.php:1327
2713
  #, fuzzy
2714
  msgid "Social Login Shortcode & Widget"
2715
  msgstr "Shortcode és Widget"
2716
 
2717
+ #: ../admin/social_login.php:1328
2718
  msgid "Social Linking Shortcode"
2719
  msgstr ""
2720
 
2721
+ #: ../admin/social_login.php:1343
2722
  msgid "Why is social login not working?"
2723
  msgstr ""
2724
 
2725
+ #: ../admin/social_login.php:1344
2726
  msgid ""
2727
  "Make sure that App ID and Secret (Client ID and Secret) keys you have saved, "
2728
  "belong to the same app"
2729
  msgstr ""
2730
 
2731
+ #: ../admin/social_login.php:1346
2732
  msgid "Social Login not working with Varnish enabled"
2733
  msgstr ""
2734
 
2735
+ #: ../admin/social_login.php:1347
2736
  msgid ""
2737
  "Why the user is not appearing logged in even after Social Login until the "
2738
  "webpage is refreshed manually?"
2957
  msgid "Providers not selected"
2958
  msgstr "Nincs kiválasztott szolgáltató"
2959
 
2960
+ #: ../inc/social_login.php:792
2961
  msgid "Email"
2962
  msgstr "Email"
2963
 
2964
+ #: ../inc/social_login.php:793
2965
  msgid "Confirm email"
2966
  msgstr ""
2967
 
2968
+ #: ../inc/social_login.php:795
2969
  msgid "Save"
2970
  msgstr ""
2971
 
2972
+ #: ../inc/social_login.php:796
2973
  msgid "Cancel"
2974
  msgstr ""
2975
 
2976
+ #: ../inc/social_login.php:870
2977
  #, fuzzy
2978
  msgid "Email Verification"
2979
  msgstr "E-mail ellenőrzés bekapcsolása"
2980
 
2981
+ #: ../inc/social_login.php:872
2982
  msgid ""
2983
  "Please click on the following link or paste it in browser to verify your "
2984
  "email"
3545
  #~ msgid "Print"
3546
  #~ msgstr "Nyomtatás"
3547
 
 
 
 
3548
  #~ msgid "Reddit"
3549
  #~ msgstr "Reddit"
3550
 
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: 2020-08-20 08:13+0530\n"
6
- "PO-Revision-Date: 2020-08-20 08:13+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:523
20
  msgid "Problem fetching access token: "
21
  msgstr ""
22
 
23
- #: ../super_socializer.php:527 ../super_socializer.php:541
24
  msgid "Facebook SDK returned an error: "
25
  msgstr ""
26
 
27
- #: ../super_socializer.php:537
28
  msgid "Graph returned an error: "
29
  msgstr ""
30
 
31
- #: ../super_socializer.php:726
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:754
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:757
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:760
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,69 +65,69 @@ 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:942 ../helper.php:961
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:942
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:946
79
  msgid "Notification"
80
  msgstr "Notifiche"
81
 
82
- #: ../super_socializer.php:964 ../admin/social_login.php:779
83
  msgid "Email required"
84
  msgstr "Email Obbligatoria"
85
 
86
- #: ../super_socializer.php:967
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:1036
93
  msgid "Leave a reply"
94
  msgstr "Lascia un commento"
95
 
96
- #: ../super_socializer.php:1052 ../inc/social_sharing.php:241
97
  msgid "Shares"
98
  msgstr "Shares"
99
 
100
- #: ../super_socializer.php:1052 ../inc/social_sharing.php:241
101
  msgid "Share"
102
  msgstr "Share"
103
 
104
- #: ../super_socializer.php:1052
105
  #, fuzzy
106
  msgid "Link copied."
107
  msgstr "LinkedIn"
108
 
109
- #: ../super_socializer.php:1298
110
  msgid "Super Socializer - General Options"
111
  msgstr "Super Socializer - Opzioni"
112
 
113
- #: ../super_socializer.php:1298 ../admin/general_options.php:15
114
  #: ../admin/social_commenting.php:47
115
  msgid "General Options"
116
  msgstr "Opzioni Generali"
117
 
118
- #: ../super_socializer.php:1366 ../helper.php:883
119
  msgid "Social Avatar"
120
  msgstr "Social Avatar"
121
 
122
- #: ../super_socializer.php:1369
123
  msgid "Small Avatar Url"
124
  msgstr "Url Avatar Piccolo"
125
 
126
- #: ../super_socializer.php:1373
127
  msgid "Large Avatar Url"
128
  msgstr "URL Avatar Grande"
129
 
130
- #: ../super_socializer.php:1377 ../helper.php:886
131
  msgid ""
132
  "Do not fetch and update social avatar from my profile, next time I Social "
133
  "Login"
@@ -135,74 +135,74 @@ msgstr ""
135
  "La prossima volta che uso Social Login, non prendere e/o aggiornare il "
136
  "social avatar dal mio profilo."
137
 
138
- #: ../super_socializer.php:1381 ../helper.php:887
139
  msgid "Update social avatar, next time I Social Login"
140
  msgstr "La prossima volta che si usa Social Login, aggiorna il social avatar."
141
 
142
- #: ../super_socializer.php:1458
143
  msgid "Login with your Social ID"
144
  msgstr "Login con il tuo ID Social"
145
 
146
- #: ../super_socializer.php:1459
147
  msgid "Email you entered is already registered or invalid"
148
  msgstr "La email inserita è già registrata o non è valida"
149
 
150
- #: ../super_socializer.php:1464
151
  msgid "Please enter a valid email address. You might be required to verify it"
152
  msgstr ""
153
  "Si prega di inserire un indirizzo email valido. Potrebbe esserne richiesta "
154
  "una verifica"
155
 
156
- #: ../super_socializer.php:1468 ../super_socializer.php:2166
157
  msgid "Link your social account to login to your account at this website"
158
  msgstr ""
159
  "Collega il tuo social account per accedere al tuo account su questo sito"
160
 
161
- #: ../super_socializer.php:1708
162
  msgid "Thanks for installing Super Socializer plugin"
163
  msgstr ""
164
 
165
- #: ../super_socializer.php:1710
166
  msgid "Configure the Plugin"
167
  msgstr ""
168
 
169
- #: ../super_socializer.php:1721
170
  msgid ""
171
  "Update \"Facebook Comments Moderation\" add-on for compatibility with "
172
  "current version of Super Socializer"
173
  msgstr ""
174
 
175
- #: ../super_socializer.php:1730
176
  msgid ""
177
  "Update \"Facebook Comments Notifier\" add-on for compatibility with current "
178
  "version of Super Socializer"
179
  msgstr ""
180
 
181
- #: ../super_socializer.php:1739
182
  msgid ""
183
  "Update \"Social Login Buttons\" add-on for compatibility with current "
184
  "version of Super Socializer"
185
  msgstr ""
186
 
187
- #: ../super_socializer.php:1748
188
  msgid ""
189
  "Update \"Social Share myCRED Integration\" add-on for maximum compatibility "
190
  "with current version of Super Socializer"
191
  msgstr ""
192
 
193
- #: ../super_socializer.php:1757
194
  msgid ""
195
  "Update \"Social Login myCRED Integration\" add-on for maximum compatibility "
196
  "with current version of Super Socializer"
197
  msgstr ""
198
 
199
- #: ../super_socializer.php:1768
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:1777
206
  #, php-format
207
  msgid ""
208
  "To continue using Instagram login create a new Instagram App as described <a "
@@ -210,7 +210,7 @@ msgid ""
210
  "Instagram App Secret <a href=\"%s\">here</a>"
211
  msgstr ""
212
 
213
- #: ../super_socializer.php:1786 ../super_socializer.php:1795
214
  #, php-format
215
  msgid ""
216
  "To continue using bitly url shortener, login to your bit.ly account and "
@@ -219,13 +219,13 @@ msgid ""
219
  "\">here</a>. More details at the <a href=\"%s\" target=\"_blank\">link</a>"
220
  msgstr ""
221
 
222
- #: ../super_socializer.php:1811
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:1835
229
  #, php-format
230
  msgid ""
231
  "Add %s in \"Valid OAuth redirect URIs\" option in your Facebook app settings "
@@ -233,14 +233,14 @@ msgid ""
233
  "target=\"_blank\">here</a>"
234
  msgstr ""
235
 
236
- #: ../super_socializer.php:1835 ../super_socializer.php:1860
237
- #: ../super_socializer.php:1885 ../super_socializer.php:1910
238
- #: ../super_socializer.php:1943 ../super_socializer.php:1971
239
- #: ../super_socializer.php:1998
240
  msgid "Okay"
241
  msgstr ""
242
 
243
- #: ../super_socializer.php:1860
244
  #, php-format
245
  msgid ""
246
  "Add %s in \"Callback URLs\" option in your Twitter app settings for Twitter "
@@ -248,7 +248,7 @@ msgid ""
248
  "\">here</a>"
249
  msgstr ""
250
 
251
- #: ../super_socializer.php:1885
252
  #, php-format
253
  msgid ""
254
  "Add %s in \"Authorized Redirect URLs\" option in your Linkedin app settings "
@@ -256,7 +256,7 @@ msgid ""
256
  "target=\"_blank\">here</a>"
257
  msgstr ""
258
 
259
- #: ../super_socializer.php:1910
260
  #, php-format
261
  msgid ""
262
  "Add %s in \"Authorized redirect URIs\" option in your Google client settings "
@@ -264,13 +264,13 @@ msgid ""
264
  "target=\"_blank\">here</a>"
265
  msgstr ""
266
 
267
- #: ../super_socializer.php:1921
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:1943
274
  #, php-format
275
  msgid ""
276
  "This plugin is GDPR compliant. You need to update the privacy policy of your "
@@ -278,7 +278,7 @@ msgid ""
278
  "\"%s\" target=\"_blank\">here</a>"
279
  msgstr ""
280
 
281
- #: ../super_socializer.php:1971
282
  #, php-format
283
  msgid ""
284
  "Now plugin supports a new service Twitcount.com to show Twitter shares. To "
@@ -287,7 +287,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:1998
291
  #, php-format
292
  msgid ""
293
  "Replace url saved in \"Callback URLs\" option in your Twitter app settings "
@@ -295,7 +295,7 @@ msgid ""
295
  "\"%s\" target=\"_blank\">here</a>"
296
  msgstr ""
297
 
298
- #: ../super_socializer.php:2023
299
  #, php-format
300
  msgid ""
301
  "If you cannot get Linkedin login to work after updating the plugin, replace "
@@ -303,11 +303,11 @@ msgid ""
303
  "For more details, check step 6 <a href=\"%s\" target=\"_blank\">here</a>"
304
  msgstr ""
305
 
306
- #: ../super_socializer.php:2023 ../super_socializer.php:2050
307
  msgid "Dismiss"
308
  msgstr ""
309
 
310
- #: ../super_socializer.php:2049
311
  #, php-format
312
  msgid ""
313
  "Save Facebook App ID and Secret keys in \"Standard Interface\" and/or "
@@ -316,7 +316,7 @@ msgid ""
316
  "that, clear share counts cache from \"Miscellaneous\" section"
317
  msgstr ""
318
 
319
- #: ../super_socializer.php:2242
320
  msgid ""
321
  "Your browser is blocking some features of this website. Please follow the "
322
  "instructions at {support_url} to unblock these."
@@ -418,7 +418,7 @@ msgstr "Avatar Grande"
418
 
419
  #: ../helper.php:898 ../admin/general_options.php:89
420
  #: ../admin/social_sharing.php:1944 ../admin/social_commenting.php:400
421
- #: ../admin/social_login.php:1269 ../admin/like_buttons.php:780
422
  msgid "Save Changes"
423
  msgstr "Salva le modifiche"
424
 
@@ -442,7 +442,7 @@ msgstr ""
442
  #: ../admin/general_options.php:7 ../admin/general_options.php:93
443
  #: ../admin/social_sharing.php:5 ../admin/social_sharing.php:1948
444
  #: ../admin/social_commenting.php:5 ../admin/social_commenting.php:404
445
- #: ../admin/social_login.php:5 ../admin/social_login.php:1273
446
  #: ../admin/like_buttons.php:6 ../admin/like_buttons.php:784
447
  #, fuzzy, php-format
448
  msgid ""
@@ -497,14 +497,14 @@ msgstr ""
497
  "È possibile specificare regole CSS aggiuntive (senza &lt;style&gt; tag)"
498
 
499
  #: ../admin/general_options.php:103 ../admin/social_sharing.php:1954
500
- #: ../admin/social_commenting.php:410 ../admin/social_login.php:1279
501
  #: ../admin/like_buttons.php:790
502
  #, fuzzy
503
  msgid "Instagram Shoutout"
504
  msgstr "Instagram"
505
 
506
  #: ../admin/general_options.php:105 ../admin/social_sharing.php:1956
507
- #: ../admin/social_commenting.php:412 ../admin/social_login.php:1281
508
  #: ../admin/like_buttons.php:792
509
  msgid ""
510
  "If you can send (to hello@heateor.com) how this plugin is helping your "
@@ -642,7 +642,7 @@ msgstr "XProfile Integration"
642
 
643
  #: ../admin/social_sharing.php:67 ../admin/social_sharing.php:1869
644
  #: ../admin/social_sharing.php:1871 ../admin/social_login.php:45
645
- #: ../admin/social_login.php:1235 ../admin/like_buttons.php:50
646
  #: ../admin/like_buttons.php:751
647
  msgid "Shortcode & Widget"
648
  msgstr "Shortcode & Widget"
@@ -653,7 +653,7 @@ msgstr "Risoluzione dei problemi"
653
 
654
  #: ../admin/social_sharing.php:69 ../admin/social_sharing.php:1902
655
  #: ../admin/social_commenting.php:40 ../admin/social_commenting.php:384
656
- #: ../admin/social_login.php:46 ../admin/social_login.php:1249
657
  #: ../admin/like_buttons.php:51 ../admin/like_buttons.php:764
658
  msgid "FAQ"
659
  msgstr "FAQ"
@@ -888,8 +888,8 @@ msgstr "Url personalizzata"
888
  msgid "Url to share"
889
  msgstr "Url da condividere"
890
 
891
- #: ../admin/social_sharing.php:725 ../admin/social_login.php:520
892
- #: ../admin/social_login.php:896 ../admin/like_buttons.php:105
893
  #: ../inc/widget.php:945
894
  msgid "Title"
895
  msgstr "Titolo"
@@ -976,7 +976,7 @@ msgid "Placement"
976
  msgstr "Collocazione"
977
 
978
  #: ../admin/social_sharing.php:957 ../admin/social_sharing.php:1383
979
- #: ../admin/social_login.php:837 ../admin/social_login.php:866
980
  #: ../admin/like_buttons.php:218 ../admin/like_buttons.php:494
981
  msgid "Homepage"
982
  msgstr "Homepage"
@@ -1246,7 +1246,7 @@ msgstr ""
1246
  msgid "Required only to track Facebook share count"
1247
  msgstr ""
1248
 
1249
- #: ../admin/social_sharing.php:1584 ../admin/social_login.php:150
1250
  msgid "Facebook App ID"
1251
  msgstr "Facebook App ID"
1252
 
@@ -1260,7 +1260,7 @@ msgstr ""
1260
  "Facebook App ID, consulta la documentazione che trovi su <a href=\"%s\" "
1261
  "target=\"_blank\">questo collegamento</a>"
1262
 
1263
- #: ../admin/social_sharing.php:1601 ../admin/social_login.php:171
1264
  #, fuzzy
1265
  msgid "Facebook App Secret"
1266
  msgstr "Facebook App ID"
@@ -1452,7 +1452,7 @@ msgstr ""
1452
  "funzionato) e cliicca sul pulsante \"Fetch New Scrape Information\" ."
1453
 
1454
  #: ../admin/social_sharing.php:1904 ../admin/social_commenting.php:386
1455
- #: ../admin/social_login.php:1251
1456
  msgid ""
1457
  "<strong>Note:</strong> Plugin will not work on local server. You should have "
1458
  "an online website for the plugin to function properly."
@@ -1510,7 +1510,7 @@ msgid ""
1510
  msgstr ""
1511
 
1512
  #: ../admin/social_sharing.php:1919 ../admin/social_commenting.php:389
1513
- #: ../admin/social_login.php:1258
1514
  msgid "Why is my browser blocking some features of the plugin?"
1515
  msgstr ""
1516
 
@@ -1833,11 +1833,11 @@ msgstr "Configurazione di Base"
1833
  msgid "Advanced Configuration"
1834
  msgstr "Configurazione Avanzata"
1835
 
1836
- #: ../admin/social_login.php:41 ../admin/social_login.php:1035
1837
  msgid "GDPR"
1838
  msgstr ""
1839
 
1840
- #: ../admin/social_login.php:43 ../admin/social_login.php:1186
1841
  msgid "XProfile Integration"
1842
  msgstr "XProfile Integration"
1843
 
@@ -1908,14 +1908,22 @@ msgid "Line"
1908
  msgstr ""
1909
 
1910
  #: ../admin/social_login.php:135
 
 
 
 
1911
  msgid "Windows Live"
1912
  msgstr ""
1913
 
1914
  #: ../admin/social_login.php:143
 
 
 
 
1915
  msgid "Select Social ID provider to enable in Social Login"
1916
  msgstr "Per abilitare Social Login devi selezionare almeno un Social Provider "
1917
 
1918
- #: ../admin/social_login.php:160
1919
  #, php-format
1920
  msgid ""
1921
  "Required for Facebook Social Login to work. Please follow the documentation "
@@ -1925,7 +1933,7 @@ msgstr ""
1925
  "Facebook App ID, consulta la documentazione che trovi su <a href=\"%s\" "
1926
  "target=\"_blank\">questo collegamento</a>"
1927
 
1928
- #: ../admin/social_login.php:162 ../admin/social_login.php:183
1929
  #, fuzzy
1930
  msgid ""
1931
  "Paste following url in <strong>Site URL</strong> option mentioned at the link"
@@ -1933,7 +1941,7 @@ msgstr ""
1933
  "Incolla la seguente URL nelle opzioni <strong>Site URL</ strong> al link "
1934
  "indicato"
1935
 
1936
- #: ../admin/social_login.php:181
1937
  #, fuzzy, php-format
1938
  msgid ""
1939
  "Required for Facebook Social Login to work. Please follow the documentation "
@@ -1943,11 +1951,11 @@ msgstr ""
1943
  "Facebook App ID, consulta la documentazione che trovi su <a href=\"%s\" "
1944
  "target=\"_blank\">questo collegamento</a>"
1945
 
1946
- #: ../admin/social_login.php:192
1947
  msgid "Twitter API Key"
1948
  msgstr "Twitter API Key"
1949
 
1950
- #: ../admin/social_login.php:202
1951
  #, php-format
1952
  msgid ""
1953
  "Required for Twitter Social Login to work. Please follow the documentation "
@@ -1957,7 +1965,7 @@ msgstr ""
1957
  "API Key, consulta la documentazione che trovi su <a href=\"%s\" target="
1958
  "\"_blank\">questa pagina</a>"
1959
 
1960
- #: ../admin/social_login.php:204 ../admin/social_login.php:229
1961
  #, fuzzy
1962
  msgid ""
1963
  "Paste following url in <strong>Website</strong> option mentioned at the link"
@@ -1965,8 +1973,9 @@ msgstr ""
1965
  "Incolla la seguente URL nelle opzioni <strong>Website URL</ strong> al link "
1966
  "indicato"
1967
 
1968
- #: ../admin/social_login.php:208 ../admin/social_login.php:233
1969
- #: ../admin/social_login.php:421 ../admin/social_login.php:441
 
1970
  #, fuzzy
1971
  msgid ""
1972
  "Paste following url in <strong>Callback URL</strong> option mentioned at the "
@@ -1975,11 +1984,11 @@ msgstr ""
1975
  "Incolla la seguente URL nelle opzioni <strong>Callback domain</ strong> al "
1976
  "link indicato"
1977
 
1978
- #: ../admin/social_login.php:217
1979
  msgid "Twitter API Secret"
1980
  msgstr "Twitter API Secret"
1981
 
1982
- #: ../admin/social_login.php:227
1983
  #, php-format
1984
  msgid ""
1985
  "Required for Twitter Social Login to work. Please follow the documentation "
@@ -1989,12 +1998,12 @@ msgstr ""
1989
  "API Secret, consulta la documentazione che trovi su <a href=\"%s\" target="
1990
  "\"_blank\">questo collegamento</a>"
1991
 
1992
- #: ../admin/social_login.php:242
1993
  #, fuzzy
1994
  msgid "LinkedIn Client ID"
1995
  msgstr "LinkedIn"
1996
 
1997
- #: ../admin/social_login.php:252
1998
  #, fuzzy, php-format
1999
  msgid ""
2000
  "Required for LinkedIn Social Login to work. Please follow the documentation "
@@ -2004,7 +2013,7 @@ msgstr ""
2004
  "LinkedIn API Key, consulta la documentazione che trovi su <a href=\"%s\" "
2005
  "target=\"_blank\">questo collegamento</a>"
2006
 
2007
- #: ../admin/social_login.php:254 ../admin/social_login.php:275
2008
  #, fuzzy
2009
  msgid ""
2010
  "Paste following url in <strong>Redirect URLs</strong> option mentioned at "
@@ -2013,12 +2022,12 @@ msgstr ""
2013
  "Incolla la seguente URL nelle opzioni <strong>Site URL</ strong> al link "
2014
  "indicato"
2015
 
2016
- #: ../admin/social_login.php:263
2017
  #, fuzzy
2018
  msgid "LinkedIn Client Secret"
2019
  msgstr "LinkedIn"
2020
 
2021
- #: ../admin/social_login.php:273
2022
  #, fuzzy, php-format
2023
  msgid ""
2024
  "Required for LinkedIn Social Login to work. Please follow the documentation "
@@ -2029,12 +2038,12 @@ msgstr ""
2029
  "LinkedIn API Key, consulta la documentazione che trovi su <a href=\"%s\" "
2030
  "target=\"_blank\">questo collegamento</a>"
2031
 
2032
- #: ../admin/social_login.php:284
2033
  #, fuzzy
2034
  msgid "Google Client ID"
2035
  msgstr "Google+ Client ID"
2036
 
2037
- #: ../admin/social_login.php:294
2038
  #, fuzzy, php-format
2039
  msgid ""
2040
  "Required for Google Social Login to work. Please follow the documentation at "
@@ -2044,7 +2053,7 @@ msgstr ""
2044
  "GooglePlus Client ID, consulta la documentazione che trovi su <a href=\"%s\" "
2045
  "target=\"_blank\">questo collegamento</a>"
2046
 
2047
- #: ../admin/social_login.php:296 ../admin/social_login.php:317
2048
  #, fuzzy
2049
  msgid ""
2050
  "Paste following url in <strong>AUTHORIZED REDIRECT URI</strong> option "
@@ -2053,12 +2062,12 @@ msgstr ""
2053
  "Incolla la seguente URL nelle opzioni <strong>Redirect URI</ strong> al link "
2054
  "indicato"
2055
 
2056
- #: ../admin/social_login.php:305
2057
  #, fuzzy
2058
  msgid "Google Client Secret"
2059
  msgstr "Google+ Client ID"
2060
 
2061
- #: ../admin/social_login.php:315
2062
  #, fuzzy, php-format
2063
  msgid ""
2064
  "Required for Google Social Login to work. Please follow the documentation at "
@@ -2068,11 +2077,11 @@ msgstr ""
2068
  "GooglePlus Client ID, consulta la documentazione che trovi su <a href=\"%s\" "
2069
  "target=\"_blank\">questo collegamento</a>"
2070
 
2071
- #: ../admin/social_login.php:326
2072
  msgid "Vkontakte Application ID"
2073
  msgstr "Vkontakte App ID"
2074
 
2075
- #: ../admin/social_login.php:336 ../admin/social_login.php:357
2076
  #, php-format
2077
  msgid ""
2078
  "Required for Vkontakte Social Login to work. Please follow the documentation "
@@ -2083,7 +2092,7 @@ msgstr ""
2083
  "Vkontakte Application ID, consulta la documentazione che trovi su <a href="
2084
  "\"%s\" target=\"_blank\">questo collegamento</a>"
2085
 
2086
- #: ../admin/social_login.php:338 ../admin/social_login.php:359
2087
  #, fuzzy
2088
  msgid ""
2089
  "Paste following url in <strong>Site address</strong> option mentioned at the "
@@ -2092,17 +2101,17 @@ msgstr ""
2092
  "Incolla la seguente URL nelle opzioni <strong>Site address</ strong> al link "
2093
  "indicato"
2094
 
2095
- #: ../admin/social_login.php:347
2096
  #, fuzzy
2097
  msgid "Vkontakte Secure key"
2098
  msgstr "Vkontakte"
2099
 
2100
- #: ../admin/social_login.php:368
2101
  #, fuzzy
2102
  msgid "Instagram App ID"
2103
  msgstr "Instagram Client ID"
2104
 
2105
- #: ../admin/social_login.php:378
2106
  #, fuzzy, php-format
2107
  msgid ""
2108
  "Required for Instagram Social Login to work. Please follow the documentation "
@@ -2112,7 +2121,7 @@ msgstr ""
2112
  "l'Instagram Client ID, consulta la documentazione che trovi su <a href=\"%s"
2113
  "\" target=\"_blank\">questo collegamento</a>"
2114
 
2115
- #: ../admin/social_login.php:380 ../admin/social_login.php:401
2116
  #, fuzzy
2117
  msgid ""
2118
  "Paste following url in <strong>Valid OAuth Redirect URIs</strong> option "
@@ -2121,12 +2130,12 @@ msgstr ""
2121
  "Incolla la seguente URL nelle opzioni <strong>Site URL</ strong> al link "
2122
  "indicato"
2123
 
2124
- #: ../admin/social_login.php:389
2125
  #, fuzzy
2126
  msgid "Instagram App Secret"
2127
  msgstr "Username Instagram"
2128
 
2129
- #: ../admin/social_login.php:399
2130
  #, fuzzy, php-format
2131
  msgid ""
2132
  "Required for Instagram Social Login to work. Please follow the documentation "
@@ -2136,11 +2145,11 @@ msgstr ""
2136
  "l'Instagram Client ID, consulta la documentazione che trovi su <a href=\"%s"
2137
  "\" target=\"_blank\">questo collegamento</a>"
2138
 
2139
- #: ../admin/social_login.php:410
2140
  msgid "Line Channel ID"
2141
  msgstr ""
2142
 
2143
- #: ../admin/social_login.php:419
2144
  #, fuzzy, php-format
2145
  msgid ""
2146
  "Required for Line Social Login to work. Please follow the documentation at "
@@ -2150,12 +2159,12 @@ msgstr ""
2150
  "LinkedIn API Key, consulta la documentazione che trovi su <a href=\"%s\" "
2151
  "target=\"_blank\">questo collegamento</a>"
2152
 
2153
- #: ../admin/social_login.php:430
2154
  #, fuzzy
2155
  msgid "Line Channel Secret"
2156
  msgstr "LinkedIn"
2157
 
2158
- #: ../admin/social_login.php:439
2159
  #, fuzzy, php-format
2160
  msgid ""
2161
  "Required for Line Social Login to work. Please follow the documentation at "
@@ -2165,12 +2174,43 @@ msgstr ""
2165
  "LinkedIn API Key, consulta la documentazione che trovi su <a href=\"%s\" "
2166
  "target=\"_blank\">questo collegamento</a>"
2167
 
2168
- #: ../admin/social_login.php:450
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2169
  #, fuzzy
2170
  msgid "Microsoft Client ID"
2171
  msgstr "Google+ Client ID"
2172
 
2173
- #: ../admin/social_login.php:459
2174
  #, fuzzy, php-format
2175
  msgid ""
2176
  "Required for Live Social Login to work. Please follow the documentation at "
@@ -2180,7 +2220,8 @@ msgstr ""
2180
  "GooglePlus Client ID, consulta la documentazione che trovi su <a href=\"%s\" "
2181
  "target=\"_blank\">questo collegamento</a>"
2182
 
2183
- #: ../admin/social_login.php:461 ../admin/social_login.php:481
 
2184
  #, fuzzy
2185
  msgid ""
2186
  "Paste following url in <strong>Redirect URIs</strong> option mentioned at "
@@ -2189,12 +2230,12 @@ msgstr ""
2189
  "Incolla la seguente URL nelle opzioni <strong>Site URL</ strong> al link "
2190
  "indicato"
2191
 
2192
- #: ../admin/social_login.php:470
2193
  #, fuzzy
2194
  msgid "Microsoft Client Secret"
2195
  msgstr "Google+ Client ID"
2196
 
2197
- #: ../admin/social_login.php:479
2198
  #, fuzzy, php-format
2199
  msgid ""
2200
  "Required for Live Social Login to work. Please follow the documentation at "
@@ -2205,12 +2246,12 @@ msgstr ""
2205
  "GooglePlus Client ID, consulta la documentazione che trovi su <a href=\"%s\" "
2206
  "target=\"_blank\">questo collegamento</a>"
2207
 
2208
- #: ../admin/social_login.php:489
2209
  #, fuzzy
2210
  msgid "Steam API Key"
2211
  msgstr "Twitter API Key"
2212
 
2213
- #: ../admin/social_login.php:498
2214
  #, fuzzy, php-format
2215
  msgid ""
2216
  "Required for Steam Social Login to work. Get it at <a href=\"%s\" target="
@@ -2220,54 +2261,84 @@ msgstr ""
2220
  "API Key, consulta la documentazione che trovi su <a href=\"%s\" target="
2221
  "\"_blank\">questa pagina</a>"
2222
 
2223
- #: ../admin/social_login.php:499
2224
  #, fuzzy
2225
  msgid "Save following <strong>domain</strong> to get the key"
2226
  msgstr ""
2227
  "Incolla la seguente URL nelle opzioni <strong>Callback domain</ strong> al "
2228
  "link indicato"
2229
 
2230
- #: ../admin/social_login.php:515
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2231
  msgid "Social Login Options"
2232
  msgstr "Opzioni"
2233
 
2234
- #: ../admin/social_login.php:530
2235
  msgid "Text to display above the Social Login interface"
2236
  msgstr "Testo da mostrare sopra l'interfaccia Social Login"
2237
 
2238
- #: ../admin/social_login.php:538
2239
  msgid "Trigger social login in the same browser tab"
2240
  msgstr ""
2241
 
2242
- #: ../admin/social_login.php:548
2243
  msgid "Trigger social login in the same browser tab instead of a popup window"
2244
  msgstr ""
2245
 
2246
- #: ../admin/social_login.php:555
2247
  #, fuzzy
2248
  msgid "Center align icons"
2249
  msgstr "Riorganizza le icone"
2250
 
2251
- #: ../admin/social_login.php:565
2252
  #, fuzzy
2253
  msgid "Center align social login icons"
2254
  msgstr "Opzioni"
2255
 
2256
- #: ../admin/social_login.php:572
2257
  msgid "Enable at login page"
2258
  msgstr "Attiva nella pagina di Login"
2259
 
2260
- #: ../admin/social_login.php:582
2261
  msgid ""
2262
  "Social Login interface will get enabled at the login page of your website"
2263
  msgstr ""
2264
  "L'Interfaccia Social Login si attiverá nella pagina di Login del tuo sito web"
2265
 
2266
- #: ../admin/social_login.php:589
2267
  msgid "Enable at register page"
2268
  msgstr "Abilita nella pagina di registrazione"
2269
 
2270
- #: ../admin/social_login.php:599
2271
  msgid ""
2272
  "Social Login interface will get enabled at the registration page of your "
2273
  "website"
@@ -2275,19 +2346,19 @@ msgstr ""
2275
  "L'Interfaccia Social Login si attiverá nella pagina di registrazione del tuo "
2276
  "sito web"
2277
 
2278
- #: ../admin/social_login.php:606
2279
  msgid "Enable at comment form"
2280
  msgstr "Attiva nel form dei commenti"
2281
 
2282
- #: ../admin/social_login.php:616
2283
  msgid "Social Login interface will get enabled at your Wordpress Comment form"
2284
  msgstr "L'Interfaccia Social Login si attiverá nel form di commenti Wordpress"
2285
 
2286
- #: ../admin/social_login.php:630
2287
  msgid "Enable before WooCommerce Customer Login Form"
2288
  msgstr "Abilita prima del form Customer Login di WooCommerce"
2289
 
2290
- #: ../admin/social_login.php:640
2291
  msgid ""
2292
  "Social Login Interface will get enabled before the customer login form at "
2293
  "WooCommerce My Account page"
@@ -2295,12 +2366,12 @@ msgstr ""
2295
  "L'Interfaccia Social Login si attiverá, nella pagina il mio Account di "
2296
  "Woocommerce, prima del Form di Login."
2297
 
2298
- #: ../admin/social_login.php:647
2299
  #, fuzzy
2300
  msgid "Enable at WooCommerce Customer Login Form"
2301
  msgstr "Abilita dopo il form Customer Login di WooCommerce"
2302
 
2303
- #: ../admin/social_login.php:657
2304
  #, fuzzy
2305
  msgid ""
2306
  "Integrate Social Login Interface with the customer login form at WooCommerce "
@@ -2309,12 +2380,12 @@ msgstr ""
2309
  "L'Interfaccia Social Login si attiverá, nella pagina il mio Account di "
2310
  "Woocommerce, dopo il Form di Login."
2311
 
2312
- #: ../admin/social_login.php:664
2313
  #, fuzzy
2314
  msgid "Enable at WooCommerce Customer Register Form"
2315
  msgstr "Abilita dopo il form Customer Login di WooCommerce"
2316
 
2317
- #: ../admin/social_login.php:674
2318
  #, fuzzy
2319
  msgid ""
2320
  "Integrate Social Login Interface with the customer register form at "
@@ -2323,21 +2394,21 @@ msgstr ""
2323
  "L'Interfaccia Social Login si attiverá, nella pagina il mio Account di "
2324
  "Woocommerce, dopo il Form di Login."
2325
 
2326
- #: ../admin/social_login.php:681
2327
  msgid "Enable at WooCommerce checkout page"
2328
  msgstr "Abilita nella pagina checkout di WooCommerce"
2329
 
2330
- #: ../admin/social_login.php:691
2331
  msgid "Social Login Interface will get enabled at WooCommerce checkout page"
2332
  msgstr ""
2333
  "L'Interfaccia Social Login si attiverá nella pagina di Checkout di "
2334
  "Woocommerce"
2335
 
2336
- #: ../admin/social_login.php:701
2337
  msgid "Auto-approve comments made by Social Login users"
2338
  msgstr "Auto-approvare i commenti fatti da utenti con accesso Social Login"
2339
 
2340
- #: ../admin/social_login.php:711
2341
  msgid ""
2342
  "If this option is enabled, and WordPress comment is made by Social Login "
2343
  "user, comment will get approved immediately without keeping in moderation."
@@ -2346,15 +2417,15 @@ msgstr ""
2346
  "che hanno avuto accesso tramite Social Login, il commento sará approvato "
2347
  "immediatamente senza nessuna possibilitá di moderazione."
2348
 
2349
- #: ../admin/social_login.php:712
2350
  msgid "Note: This is not related to Facebook comments"
2351
  msgstr "Nota: Questa opzione non si applica ai commenti Facebook"
2352
 
2353
- #: ../admin/social_login.php:721
2354
  msgid "Enable social avatar"
2355
  msgstr "Abilita Avatar"
2356
 
2357
- #: ../admin/social_login.php:731
2358
  msgid ""
2359
  "Social profile pictures of the logged in user will be displayed as profile "
2360
  "avatar"
@@ -2362,30 +2433,30 @@ msgstr ""
2362
  "Le immagini del profilo degli utenti registrati verranno visualizzate come "
2363
  "avatar del profilo sul tuo sito"
2364
 
2365
- #: ../admin/social_login.php:740
2366
  msgid "Avatar quality"
2367
  msgstr "Qualità Avatar"
2368
 
2369
- #: ../admin/social_login.php:743
2370
  msgid "Average"
2371
  msgstr "Media"
2372
 
2373
- #: ../admin/social_login.php:744
2374
  msgid "Best"
2375
  msgstr "Migliore"
2376
 
2377
- #: ../admin/social_login.php:751
2378
  msgid "Choose avatar quality"
2379
  msgstr "Scelta qualità Avatar"
2380
 
2381
- #: ../admin/social_login.php:759
2382
  msgid ""
2383
  "Show option for users to update social avatar at BuddyPress profile page"
2384
  msgstr ""
2385
  "Attiva questa opzione per aggiornare il social avatar nella pagina di "
2386
  "profilo BuddyPress"
2387
 
2388
- #: ../admin/social_login.php:769
2389
  msgid ""
2390
  "If enabled, users would be able to update their social avatar from \"Profile "
2391
  "photo\" section in BuddyPress profile at front-end"
@@ -2393,7 +2464,7 @@ msgstr ""
2393
  "Se abilitato, gli utenti saranno in grado di aggiornare il proprio social "
2394
  "avatar nella sezione \"Profile photo\" al front-end di BuddyPress."
2395
 
2396
- #: ../admin/social_login.php:789
2397
  msgid ""
2398
  "If enabled and Social ID provider does not provide user's email address on "
2399
  "login, user will be asked to provide his/her email address. Otherwise, a "
@@ -2404,13 +2475,13 @@ msgstr ""
2404
  "completare questa informazione. In caso contrario, sará generata una email "
2405
  "fittizia"
2406
 
2407
- #: ../admin/social_login.php:797
2408
  msgid "Send post-registration email to user to set account password"
2409
  msgstr ""
2410
  "Invia e-mail post-registrazione all'utente per impostare la sua account "
2411
  "password"
2412
 
2413
- #: ../admin/social_login.php:807
2414
  msgid ""
2415
  "If enabled, an email will be sent to user after registration through Social "
2416
  "Login, regarding his/her login credentials (username-password to be able to "
@@ -2420,11 +2491,11 @@ msgstr ""
2420
  "Login, sará inviata all'utente una email con le informazioni necessarie per "
2421
  "accedere attraverso il metodo tradizionale (codice d'accesso e password)"
2422
 
2423
- #: ../admin/social_login.php:814
2424
  msgid "Send new user registration notification email to admin"
2425
  msgstr "Invia email di notifica registrazione nuovo utente all' Amministratore"
2426
 
2427
- #: ../admin/social_login.php:824
2428
  msgid ""
2429
  "If enabled, an email will be sent to admin after new user registers through "
2430
  "Social Login, notifying admin about the new user registration"
@@ -2433,40 +2504,40 @@ msgstr ""
2433
  "Login, sará inviata all'amministratore una email di notifica della nuova "
2434
  "registrazione"
2435
 
2436
- #: ../admin/social_login.php:831
2437
  msgid "Login redirection"
2438
  msgstr "Reindirizzamento Login"
2439
 
2440
- #: ../admin/social_login.php:835
2441
  msgid "Same page where user logged in"
2442
  msgstr "La stessa pagina dove l'utente ha iniziato la sessione"
2443
 
2444
- #: ../admin/social_login.php:839 ../admin/social_login.php:868
2445
  msgid "Account dashboard"
2446
  msgstr "Pannello Account"
2447
 
2448
- #: ../admin/social_login.php:842 ../admin/social_login.php:871
2449
  msgid "BuddyPress profile page"
2450
  msgstr "Pagina di profilo BuddyPress"
2451
 
2452
- #: ../admin/social_login.php:845 ../admin/social_login.php:874
2453
  msgid "Custom Url"
2454
  msgstr "Url personalizzata"
2455
 
2456
- #: ../admin/social_login.php:853
2457
  msgid "User will be redirected to the selected page after Social Login"
2458
  msgstr ""
2459
  "L'utente sará reindirizzato alla pagina selezionata dopo il Social Login"
2460
 
2461
- #: ../admin/social_login.php:860
2462
  msgid "Registration redirection"
2463
  msgstr "Reindirizzamento Registratione"
2464
 
2465
- #: ../admin/social_login.php:864
2466
  msgid "Same page from where user registered"
2467
  msgstr "La stessa pagina dove l'utente si è registrato"
2468
 
2469
- #: ../admin/social_login.php:882
2470
  msgid ""
2471
  "User will be redirected to the selected page after registration (first "
2472
  "Social Login) through Social Login"
@@ -2474,24 +2545,24 @@ msgstr ""
2474
  "L'utente sará reindirizzato alla pagina selezionata dopo la registrazione "
2475
  "(il primo Social Login) tramite il Social Login"
2476
 
2477
- #: ../admin/social_login.php:891
2478
  #, fuzzy
2479
  msgid "Social Account Linking Options"
2480
  msgstr "Collegamento Social Account"
2481
 
2482
- #: ../admin/social_login.php:906
2483
  #, fuzzy
2484
  msgid "Text to display above the Social Account Linking interface"
2485
  msgstr "Testo da mostrare sopra l'interfaccia Social Login"
2486
 
2487
- #: ../admin/social_login.php:913
2488
  #, fuzzy
2489
  msgid ""
2490
  "Link social account to already existing account, if email address matches"
2491
  msgstr ""
2492
  "Collega il tuo social account per accedere al tuo account su questo sito"
2493
 
2494
- #: ../admin/social_login.php:923
2495
  msgid ""
2496
  "If email address of the user's Social Account matches with an already "
2497
  "existing account at your website, that social account will be linked to "
@@ -2499,11 +2570,11 @@ msgid ""
2499
  "Linking interface at their profile page."
2500
  msgstr ""
2501
 
2502
- #: ../admin/social_login.php:931
2503
  msgid "Enable social account linking at BuddyPress profile page"
2504
  msgstr "Abilita collegamento social account nella pagina di profilo BuddyPress"
2505
 
2506
- #: ../admin/social_login.php:941
2507
  msgid ""
2508
  "Enable this option to show social account linking interface at BuddyPress "
2509
  "profile page"
@@ -2511,15 +2582,15 @@ msgstr ""
2511
  "Attiva questa opzione per visualizzare l'interfaccia social account linking "
2512
  "nella pagina di profilo BuddyPress"
2513
 
2514
- #: ../admin/social_login.php:952
2515
  msgid "Email popup options"
2516
  msgstr "Opzioni del popup 'Email Obbligatoria'"
2517
 
2518
- #: ../admin/social_login.php:957
2519
  msgid "Text on 'Email required' popup"
2520
  msgstr "Testo del pop-up"
2521
 
2522
- #: ../admin/social_login.php:967
2523
  msgid ""
2524
  "This text will be displayed on email required popup. Leave empty if not "
2525
  "required."
@@ -2527,11 +2598,11 @@ msgstr ""
2527
  "Questo é il testo che verrà mostrato nella finestra pop-up. Lasciare in "
2528
  "bianco se non si vuole utilizzare."
2529
 
2530
- #: ../admin/social_login.php:975
2531
  msgid "Error message for 'Email required' popup"
2532
  msgstr "Messaggio d'errore"
2533
 
2534
- #: ../admin/social_login.php:985
2535
  msgid ""
2536
  "This message will be displayed to user if it provides invalid or already "
2537
  "registered email"
@@ -2539,11 +2610,11 @@ msgstr ""
2539
  "Questo é il testo che verrà mostrato all'utente nel caso inserisca un "
2540
  "indirizzo email non valido o già registrato."
2541
 
2542
- #: ../admin/social_login.php:993
2543
  msgid "Email popup height"
2544
  msgstr "Altezza pop-up Email"
2545
 
2546
- #: ../admin/social_login.php:1003
2547
  msgid ""
2548
  "If you are seeing vertical scrollbar in the \"Email required\" popup, you "
2549
  "can increase the height of popup by specifying in this option. Leave empty "
@@ -2553,11 +2624,11 @@ msgstr ""
2553
  "Obbligatoria\", è possibile aumentare l'altezza del popup specificandolo in "
2554
  "questa opzione. Lasciare vuoto per l'impostazione predefinita."
2555
 
2556
- #: ../admin/social_login.php:1010
2557
  msgid "Enable email verification"
2558
  msgstr "Abilita verifica email"
2559
 
2560
- #: ../admin/social_login.php:1020
2561
  msgid ""
2562
  "If enabled, email provided by the user will be verified by sending a "
2563
  "confirmation link to that email. User would not be able to login without "
@@ -2567,107 +2638,107 @@ msgstr ""
2567
  "verificato mediante l'invio di un link all' indirizzo e-mail specificato. "
2568
  "L'utente non potrà accedere senza aver effettuato la procedura di verifica."
2569
 
2570
- #: ../admin/social_login.php:1040
2571
  #, fuzzy
2572
  msgid "Enable GDPR opt-in"
2573
  msgstr "Abilita Disqus Commenting"
2574
 
2575
- #: ../admin/social_login.php:1050
2576
  msgid ""
2577
  "Enable it to show GDPR opt-in for social login and social account linking"
2578
  msgstr ""
2579
 
2580
- #: ../admin/social_login.php:1058
2581
  #, fuzzy
2582
  msgid "Placement of GDPR opt-in"
2583
  msgstr "Abilita Disqus Commenting"
2584
 
2585
- #: ../admin/social_login.php:1062
2586
  #, fuzzy
2587
  msgid "Above Social Login icons"
2588
  msgstr "Opzioni"
2589
 
2590
- #: ../admin/social_login.php:1064
2591
  #, fuzzy
2592
  msgid "Below Social Login icons"
2593
  msgstr "Opzioni"
2594
 
2595
- #: ../admin/social_login.php:1070
2596
  #, fuzzy
2597
  msgid "Placement of GDPR opt-in above or below the social login icons"
2598
  msgstr "Testo da mostrare sopra l'interfaccia Social Login"
2599
 
2600
- #: ../admin/social_login.php:1077
2601
  msgid "Opt-in text"
2602
  msgstr ""
2603
 
2604
- #: ../admin/social_login.php:1087
2605
  #, fuzzy
2606
  msgid "Text for the GDPR opt-in"
2607
  msgstr "Abilita Disqus Commenting"
2608
 
2609
- #: ../admin/social_login.php:1094
2610
  msgid "Text to link to Terms-Conditions page"
2611
  msgstr ""
2612
 
2613
- #: ../admin/social_login.php:1104
2614
  msgid "Word(s) in the opt-in text to be linked to terms-conditions page"
2615
  msgstr ""
2616
 
2617
- #: ../admin/social_login.php:1111
2618
  msgid "Terms-Conditions Url"
2619
  msgstr ""
2620
 
2621
- #: ../admin/social_login.php:1121
2622
  #, fuzzy
2623
  msgid "Url of the terms-conditions page of your website"
2624
  msgstr "Url della homepage del tuo sito web"
2625
 
2626
- #: ../admin/social_login.php:1128
2627
  msgid "Text to link to Privacy Policy page"
2628
  msgstr ""
2629
 
2630
- #: ../admin/social_login.php:1138
2631
  msgid "Word(s) in the opt-in text to be linked to privacy policy page"
2632
  msgstr ""
2633
 
2634
- #: ../admin/social_login.php:1145
2635
  msgid "Privacy Policy Url"
2636
  msgstr ""
2637
 
2638
- #: ../admin/social_login.php:1155
2639
  #, fuzzy
2640
  msgid "Url of the privacy policy page of your website"
2641
  msgstr "Url della homepage del tuo sito web"
2642
 
2643
- #: ../admin/social_login.php:1206 ../inc/widget.php:260 ../inc/widget.php:438
2644
  #: ../inc/widget.php:602 ../inc/widget.php:750
2645
  msgid "Select"
2646
  msgstr "Selezionare"
2647
 
2648
- #: ../admin/social_login.php:1237
2649
  msgid "Social Login Shortcode & Widget"
2650
  msgstr "Shortcode & Widget"
2651
 
2652
- #: ../admin/social_login.php:1238
2653
  msgid "Social Linking Shortcode"
2654
  msgstr "Social Linking Shortcode"
2655
 
2656
- #: ../admin/social_login.php:1253
2657
  msgid "Why is social login not working?"
2658
  msgstr ""
2659
 
2660
- #: ../admin/social_login.php:1254
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:1256
2667
  msgid "Social Login not working with Varnish enabled"
2668
  msgstr ""
2669
 
2670
- #: ../admin/social_login.php:1257
2671
  msgid ""
2672
  "Why the user is not appearing logged in even after Social Login until the "
2673
  "webpage is refreshed manually?"
@@ -2887,27 +2958,27 @@ msgstr "Domanda non valida"
2887
  msgid "Providers not selected"
2888
  msgstr "Providers non selezionati"
2889
 
2890
- #: ../inc/social_login.php:747
2891
  msgid "Email"
2892
  msgstr "Email"
2893
 
2894
- #: ../inc/social_login.php:748
2895
  msgid "Confirm email"
2896
  msgstr "Conferma email"
2897
 
2898
- #: ../inc/social_login.php:750
2899
  msgid "Save"
2900
  msgstr "Salva"
2901
 
2902
- #: ../inc/social_login.php:751
2903
  msgid "Cancel"
2904
  msgstr "Cancella"
2905
 
2906
- #: ../inc/social_login.php:825
2907
  msgid "Email Verification"
2908
  msgstr "Abilita verifica email"
2909
 
2910
- #: ../inc/social_login.php:827
2911
  msgid ""
2912
  "Please click on the following link or paste it in browser to verify your "
2913
  "email"
@@ -3504,9 +3575,6 @@ msgstr ""
3504
  #~ msgid "Print"
3505
  #~ msgstr "Stampa"
3506
 
3507
- #~ msgid "Yahoo"
3508
- #~ msgstr "Yahoo"
3509
-
3510
  #~ msgid "Reddit"
3511
  #~ msgstr "Reddit"
3512
 
2
  msgstr ""
3
  "Project-Id-Version: Super Socializer\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2020-09-23 09:47+0530\n"
6
+ "PO-Revision-Date: 2020-09-23 09:47+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:667
20
  msgid "Problem fetching access token: "
21
  msgstr ""
22
 
23
+ #: ../super_socializer.php:671 ../super_socializer.php:685
24
  msgid "Facebook SDK returned an error: "
25
  msgstr ""
26
 
27
+ #: ../super_socializer.php:681
28
  msgid "Graph returned an error: "
29
  msgstr ""
30
 
31
+ #: ../super_socializer.php:870
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:898
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:901
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:904
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:1086 ../helper.php:961
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:1086
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:1090
79
  msgid "Notification"
80
  msgstr "Notifiche"
81
 
82
+ #: ../super_socializer.php:1108 ../admin/social_login.php:869
83
  msgid "Email required"
84
  msgstr "Email Obbligatoria"
85
 
86
+ #: ../super_socializer.php:1111
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:1180
93
  msgid "Leave a reply"
94
  msgstr "Lascia un commento"
95
 
96
+ #: ../super_socializer.php:1196 ../inc/social_sharing.php:241
97
  msgid "Shares"
98
  msgstr "Shares"
99
 
100
+ #: ../super_socializer.php:1196 ../inc/social_sharing.php:241
101
  msgid "Share"
102
  msgstr "Share"
103
 
104
+ #: ../super_socializer.php:1196
105
  #, fuzzy
106
  msgid "Link copied."
107
  msgstr "LinkedIn"
108
 
109
+ #: ../super_socializer.php:1441
110
  msgid "Super Socializer - General Options"
111
  msgstr "Super Socializer - Opzioni"
112
 
113
+ #: ../super_socializer.php:1441 ../admin/general_options.php:15
114
  #: ../admin/social_commenting.php:47
115
  msgid "General Options"
116
  msgstr "Opzioni Generali"
117
 
118
+ #: ../super_socializer.php:1509 ../helper.php:883
119
  msgid "Social Avatar"
120
  msgstr "Social Avatar"
121
 
122
+ #: ../super_socializer.php:1512
123
  msgid "Small Avatar Url"
124
  msgstr "Url Avatar Piccolo"
125
 
126
+ #: ../super_socializer.php:1516
127
  msgid "Large Avatar Url"
128
  msgstr "URL Avatar Grande"
129
 
130
+ #: ../super_socializer.php:1520 ../helper.php:886
131
  msgid ""
132
  "Do not fetch and update social avatar from my profile, next time I Social "
133
  "Login"
135
  "La prossima volta che uso Social Login, non prendere e/o aggiornare il "
136
  "social avatar dal mio profilo."
137
 
138
+ #: ../super_socializer.php:1524 ../helper.php:887
139
  msgid "Update social avatar, next time I Social Login"
140
  msgstr "La prossima volta che si usa Social Login, aggiorna il social avatar."
141
 
142
+ #: ../super_socializer.php:1601
143
  msgid "Login with your Social ID"
144
  msgstr "Login con il tuo ID Social"
145
 
146
+ #: ../super_socializer.php:1602
147
  msgid "Email you entered is already registered or invalid"
148
  msgstr "La email inserita è già registrata o non è valida"
149
 
150
+ #: ../super_socializer.php:1607
151
  msgid "Please enter a valid email address. You might be required to verify it"
152
  msgstr ""
153
  "Si prega di inserire un indirizzo email valido. Potrebbe esserne richiesta "
154
  "una verifica"
155
 
156
+ #: ../super_socializer.php:1611 ../super_socializer.php:2309
157
  msgid "Link your social account to login to your account at this website"
158
  msgstr ""
159
  "Collega il tuo social account per accedere al tuo account su questo sito"
160
 
161
+ #: ../super_socializer.php:1851
162
  msgid "Thanks for installing Super Socializer plugin"
163
  msgstr ""
164
 
165
+ #: ../super_socializer.php:1853
166
  msgid "Configure the Plugin"
167
  msgstr ""
168
 
169
+ #: ../super_socializer.php:1864
170
  msgid ""
171
  "Update \"Facebook Comments Moderation\" add-on for compatibility with "
172
  "current version of Super Socializer"
173
  msgstr ""
174
 
175
+ #: ../super_socializer.php:1873
176
  msgid ""
177
  "Update \"Facebook Comments Notifier\" add-on for compatibility with current "
178
  "version of Super Socializer"
179
  msgstr ""
180
 
181
+ #: ../super_socializer.php:1882
182
  msgid ""
183
  "Update \"Social Login Buttons\" add-on for compatibility with current "
184
  "version of Super Socializer"
185
  msgstr ""
186
 
187
+ #: ../super_socializer.php:1891
188
  msgid ""
189
  "Update \"Social Share myCRED Integration\" add-on for maximum compatibility "
190
  "with current version of Super Socializer"
191
  msgstr ""
192
 
193
+ #: ../super_socializer.php:1900
194
  msgid ""
195
  "Update \"Social Login myCRED Integration\" add-on for maximum compatibility "
196
  "with current version of Super Socializer"
197
  msgstr ""
198
 
199
+ #: ../super_socializer.php:1911
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:1920
206
  #, php-format
207
  msgid ""
208
  "To continue using Instagram login create a new Instagram App as described <a "
210
  "Instagram App Secret <a href=\"%s\">here</a>"
211
  msgstr ""
212
 
213
+ #: ../super_socializer.php:1929 ../super_socializer.php:1938
214
  #, php-format
215
  msgid ""
216
  "To continue using bitly url shortener, login to your bit.ly account and "
219
  "\">here</a>. More details at the <a href=\"%s\" target=\"_blank\">link</a>"
220
  msgstr ""
221
 
222
+ #: ../super_socializer.php:1954
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:1978
229
  #, php-format
230
  msgid ""
231
  "Add %s in \"Valid OAuth redirect URIs\" option in your Facebook app settings "
233
  "target=\"_blank\">here</a>"
234
  msgstr ""
235
 
236
+ #: ../super_socializer.php:1978 ../super_socializer.php:2003
237
+ #: ../super_socializer.php:2028 ../super_socializer.php:2053
238
+ #: ../super_socializer.php:2086 ../super_socializer.php:2114
239
+ #: ../super_socializer.php:2141
240
  msgid "Okay"
241
  msgstr ""
242
 
243
+ #: ../super_socializer.php:2003
244
  #, php-format
245
  msgid ""
246
  "Add %s in \"Callback URLs\" option in your Twitter app settings for Twitter "
248
  "\">here</a>"
249
  msgstr ""
250
 
251
+ #: ../super_socializer.php:2028
252
  #, php-format
253
  msgid ""
254
  "Add %s in \"Authorized Redirect URLs\" option in your Linkedin app settings "
256
  "target=\"_blank\">here</a>"
257
  msgstr ""
258
 
259
+ #: ../super_socializer.php:2053
260
  #, php-format
261
  msgid ""
262
  "Add %s in \"Authorized redirect URIs\" option in your Google client settings "
264
  "target=\"_blank\">here</a>"
265
  msgstr ""
266
 
267
+ #: ../super_socializer.php:2064
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:2086
274
  #, php-format
275
  msgid ""
276
  "This plugin is GDPR compliant. You need to update the privacy policy of your "
278
  "\"%s\" target=\"_blank\">here</a>"
279
  msgstr ""
280
 
281
+ #: ../super_socializer.php:2114
282
  #, php-format
283
  msgid ""
284
  "Now plugin supports a new service Twitcount.com to show Twitter shares. To "
287
  "your website %s with them. No need to copy-paste any code from their website."
288
  msgstr ""
289
 
290
+ #: ../super_socializer.php:2141
291
  #, php-format
292
  msgid ""
293
  "Replace url saved in \"Callback URLs\" option in your Twitter app settings "
295
  "\"%s\" target=\"_blank\">here</a>"
296
  msgstr ""
297
 
298
+ #: ../super_socializer.php:2166
299
  #, php-format
300
  msgid ""
301
  "If you cannot get Linkedin login to work after updating the plugin, replace "
303
  "For more details, check step 6 <a href=\"%s\" target=\"_blank\">here</a>"
304
  msgstr ""
305
 
306
+ #: ../super_socializer.php:2166 ../super_socializer.php:2193
307
  msgid "Dismiss"
308
  msgstr ""
309
 
310
+ #: ../super_socializer.php:2192
311
  #, php-format
312
  msgid ""
313
  "Save Facebook App ID and Secret keys in \"Standard Interface\" and/or "
316
  "that, clear share counts cache from \"Miscellaneous\" section"
317
  msgstr ""
318
 
319
+ #: ../super_socializer.php:2385
320
  msgid ""
321
  "Your browser is blocking some features of this website. Please follow the "
322
  "instructions at {support_url} to unblock these."
418
 
419
  #: ../helper.php:898 ../admin/general_options.php:89
420
  #: ../admin/social_sharing.php:1944 ../admin/social_commenting.php:400
421
+ #: ../admin/social_login.php:1359 ../admin/like_buttons.php:780
422
  msgid "Save Changes"
423
  msgstr "Salva le modifiche"
424
 
442
  #: ../admin/general_options.php:7 ../admin/general_options.php:93
443
  #: ../admin/social_sharing.php:5 ../admin/social_sharing.php:1948
444
  #: ../admin/social_commenting.php:5 ../admin/social_commenting.php:404
445
+ #: ../admin/social_login.php:5 ../admin/social_login.php:1363
446
  #: ../admin/like_buttons.php:6 ../admin/like_buttons.php:784
447
  #, fuzzy, php-format
448
  msgid ""
497
  "È possibile specificare regole CSS aggiuntive (senza &lt;style&gt; tag)"
498
 
499
  #: ../admin/general_options.php:103 ../admin/social_sharing.php:1954
500
+ #: ../admin/social_commenting.php:410 ../admin/social_login.php:1369
501
  #: ../admin/like_buttons.php:790
502
  #, fuzzy
503
  msgid "Instagram Shoutout"
504
  msgstr "Instagram"
505
 
506
  #: ../admin/general_options.php:105 ../admin/social_sharing.php:1956
507
+ #: ../admin/social_commenting.php:412 ../admin/social_login.php:1371
508
  #: ../admin/like_buttons.php:792
509
  msgid ""
510
  "If you can send (to hello@heateor.com) how this plugin is helping your "
642
 
643
  #: ../admin/social_sharing.php:67 ../admin/social_sharing.php:1869
644
  #: ../admin/social_sharing.php:1871 ../admin/social_login.php:45
645
+ #: ../admin/social_login.php:1325 ../admin/like_buttons.php:50
646
  #: ../admin/like_buttons.php:751
647
  msgid "Shortcode & Widget"
648
  msgstr "Shortcode & Widget"
653
 
654
  #: ../admin/social_sharing.php:69 ../admin/social_sharing.php:1902
655
  #: ../admin/social_commenting.php:40 ../admin/social_commenting.php:384
656
+ #: ../admin/social_login.php:46 ../admin/social_login.php:1339
657
  #: ../admin/like_buttons.php:51 ../admin/like_buttons.php:764
658
  msgid "FAQ"
659
  msgstr "FAQ"
888
  msgid "Url to share"
889
  msgstr "Url da condividere"
890
 
891
+ #: ../admin/social_sharing.php:725 ../admin/social_login.php:610
892
+ #: ../admin/social_login.php:986 ../admin/like_buttons.php:105
893
  #: ../inc/widget.php:945
894
  msgid "Title"
895
  msgstr "Titolo"
976
  msgstr "Collocazione"
977
 
978
  #: ../admin/social_sharing.php:957 ../admin/social_sharing.php:1383
979
+ #: ../admin/social_login.php:927 ../admin/social_login.php:956
980
  #: ../admin/like_buttons.php:218 ../admin/like_buttons.php:494
981
  msgid "Homepage"
982
  msgstr "Homepage"
1246
  msgid "Required only to track Facebook share count"
1247
  msgstr ""
1248
 
1249
+ #: ../admin/social_sharing.php:1584 ../admin/social_login.php:158
1250
  msgid "Facebook App ID"
1251
  msgstr "Facebook App ID"
1252
 
1260
  "Facebook App ID, consulta la documentazione che trovi su <a href=\"%s\" "
1261
  "target=\"_blank\">questo collegamento</a>"
1262
 
1263
+ #: ../admin/social_sharing.php:1601 ../admin/social_login.php:179
1264
  #, fuzzy
1265
  msgid "Facebook App Secret"
1266
  msgstr "Facebook App ID"
1452
  "funzionato) e cliicca sul pulsante \"Fetch New Scrape Information\" ."
1453
 
1454
  #: ../admin/social_sharing.php:1904 ../admin/social_commenting.php:386
1455
+ #: ../admin/social_login.php:1341
1456
  msgid ""
1457
  "<strong>Note:</strong> Plugin will not work on local server. You should have "
1458
  "an online website for the plugin to function properly."
1510
  msgstr ""
1511
 
1512
  #: ../admin/social_sharing.php:1919 ../admin/social_commenting.php:389
1513
+ #: ../admin/social_login.php:1348
1514
  msgid "Why is my browser blocking some features of the plugin?"
1515
  msgstr ""
1516
 
1833
  msgid "Advanced Configuration"
1834
  msgstr "Configurazione Avanzata"
1835
 
1836
+ #: ../admin/social_login.php:41 ../admin/social_login.php:1125
1837
  msgid "GDPR"
1838
  msgstr ""
1839
 
1840
+ #: ../admin/social_login.php:43 ../admin/social_login.php:1276
1841
  msgid "XProfile Integration"
1842
  msgstr "XProfile Integration"
1843
 
1908
  msgstr ""
1909
 
1910
  #: ../admin/social_login.php:135
1911
+ msgid "Wordpress"
1912
+ msgstr ""
1913
+
1914
+ #: ../admin/social_login.php:139
1915
  msgid "Windows Live"
1916
  msgstr ""
1917
 
1918
  #: ../admin/social_login.php:143
1919
+ msgid "Yahoo"
1920
+ msgstr "Yahoo"
1921
+
1922
+ #: ../admin/social_login.php:151
1923
  msgid "Select Social ID provider to enable in Social Login"
1924
  msgstr "Per abilitare Social Login devi selezionare almeno un Social Provider "
1925
 
1926
+ #: ../admin/social_login.php:168
1927
  #, php-format
1928
  msgid ""
1929
  "Required for Facebook Social Login to work. Please follow the documentation "
1933
  "Facebook App ID, consulta la documentazione che trovi su <a href=\"%s\" "
1934
  "target=\"_blank\">questo collegamento</a>"
1935
 
1936
+ #: ../admin/social_login.php:170 ../admin/social_login.php:191
1937
  #, fuzzy
1938
  msgid ""
1939
  "Paste following url in <strong>Site URL</strong> option mentioned at the link"
1941
  "Incolla la seguente URL nelle opzioni <strong>Site URL</ strong> al link "
1942
  "indicato"
1943
 
1944
+ #: ../admin/social_login.php:189
1945
  #, fuzzy, php-format
1946
  msgid ""
1947
  "Required for Facebook Social Login to work. Please follow the documentation "
1951
  "Facebook App ID, consulta la documentazione che trovi su <a href=\"%s\" "
1952
  "target=\"_blank\">questo collegamento</a>"
1953
 
1954
+ #: ../admin/social_login.php:200
1955
  msgid "Twitter API Key"
1956
  msgstr "Twitter API Key"
1957
 
1958
+ #: ../admin/social_login.php:210
1959
  #, php-format
1960
  msgid ""
1961
  "Required for Twitter Social Login to work. Please follow the documentation "
1965
  "API Key, consulta la documentazione che trovi su <a href=\"%s\" target="
1966
  "\"_blank\">questa pagina</a>"
1967
 
1968
+ #: ../admin/social_login.php:212 ../admin/social_login.php:237
1969
  #, fuzzy
1970
  msgid ""
1971
  "Paste following url in <strong>Website</strong> option mentioned at the link"
1973
  "Incolla la seguente URL nelle opzioni <strong>Website URL</ strong> al link "
1974
  "indicato"
1975
 
1976
+ #: ../admin/social_login.php:216 ../admin/social_login.php:241
1977
+ #: ../admin/social_login.php:429 ../admin/social_login.php:449
1978
+ #: ../admin/social_login.php:469 ../admin/social_login.php:489
1979
  #, fuzzy
1980
  msgid ""
1981
  "Paste following url in <strong>Callback URL</strong> option mentioned at the "
1984
  "Incolla la seguente URL nelle opzioni <strong>Callback domain</ strong> al "
1985
  "link indicato"
1986
 
1987
+ #: ../admin/social_login.php:225
1988
  msgid "Twitter API Secret"
1989
  msgstr "Twitter API Secret"
1990
 
1991
+ #: ../admin/social_login.php:235
1992
  #, php-format
1993
  msgid ""
1994
  "Required for Twitter Social Login to work. Please follow the documentation "
1998
  "API Secret, consulta la documentazione che trovi su <a href=\"%s\" target="
1999
  "\"_blank\">questo collegamento</a>"
2000
 
2001
+ #: ../admin/social_login.php:250
2002
  #, fuzzy
2003
  msgid "LinkedIn Client ID"
2004
  msgstr "LinkedIn"
2005
 
2006
+ #: ../admin/social_login.php:260
2007
  #, fuzzy, php-format
2008
  msgid ""
2009
  "Required for LinkedIn Social Login to work. Please follow the documentation "
2013
  "LinkedIn API Key, consulta la documentazione che trovi su <a href=\"%s\" "
2014
  "target=\"_blank\">questo collegamento</a>"
2015
 
2016
+ #: ../admin/social_login.php:262 ../admin/social_login.php:283
2017
  #, fuzzy
2018
  msgid ""
2019
  "Paste following url in <strong>Redirect URLs</strong> option mentioned at "
2022
  "Incolla la seguente URL nelle opzioni <strong>Site URL</ strong> al link "
2023
  "indicato"
2024
 
2025
+ #: ../admin/social_login.php:271
2026
  #, fuzzy
2027
  msgid "LinkedIn Client Secret"
2028
  msgstr "LinkedIn"
2029
 
2030
+ #: ../admin/social_login.php:281
2031
  #, fuzzy, php-format
2032
  msgid ""
2033
  "Required for LinkedIn Social Login to work. Please follow the documentation "
2038
  "LinkedIn API Key, consulta la documentazione che trovi su <a href=\"%s\" "
2039
  "target=\"_blank\">questo collegamento</a>"
2040
 
2041
+ #: ../admin/social_login.php:292
2042
  #, fuzzy
2043
  msgid "Google Client ID"
2044
  msgstr "Google+ Client ID"
2045
 
2046
+ #: ../admin/social_login.php:302
2047
  #, fuzzy, php-format
2048
  msgid ""
2049
  "Required for Google Social Login to work. Please follow the documentation at "
2053
  "GooglePlus Client ID, consulta la documentazione che trovi su <a href=\"%s\" "
2054
  "target=\"_blank\">questo collegamento</a>"
2055
 
2056
+ #: ../admin/social_login.php:304 ../admin/social_login.php:325
2057
  #, fuzzy
2058
  msgid ""
2059
  "Paste following url in <strong>AUTHORIZED REDIRECT URI</strong> option "
2062
  "Incolla la seguente URL nelle opzioni <strong>Redirect URI</ strong> al link "
2063
  "indicato"
2064
 
2065
+ #: ../admin/social_login.php:313
2066
  #, fuzzy
2067
  msgid "Google Client Secret"
2068
  msgstr "Google+ Client ID"
2069
 
2070
+ #: ../admin/social_login.php:323
2071
  #, fuzzy, php-format
2072
  msgid ""
2073
  "Required for Google Social Login to work. Please follow the documentation at "
2077
  "GooglePlus Client ID, consulta la documentazione che trovi su <a href=\"%s\" "
2078
  "target=\"_blank\">questo collegamento</a>"
2079
 
2080
+ #: ../admin/social_login.php:334
2081
  msgid "Vkontakte Application ID"
2082
  msgstr "Vkontakte App ID"
2083
 
2084
+ #: ../admin/social_login.php:344 ../admin/social_login.php:365
2085
  #, php-format
2086
  msgid ""
2087
  "Required for Vkontakte Social Login to work. Please follow the documentation "
2092
  "Vkontakte Application ID, consulta la documentazione che trovi su <a href="
2093
  "\"%s\" target=\"_blank\">questo collegamento</a>"
2094
 
2095
+ #: ../admin/social_login.php:346 ../admin/social_login.php:367
2096
  #, fuzzy
2097
  msgid ""
2098
  "Paste following url in <strong>Site address</strong> option mentioned at the "
2101
  "Incolla la seguente URL nelle opzioni <strong>Site address</ strong> al link "
2102
  "indicato"
2103
 
2104
+ #: ../admin/social_login.php:355
2105
  #, fuzzy
2106
  msgid "Vkontakte Secure key"
2107
  msgstr "Vkontakte"
2108
 
2109
+ #: ../admin/social_login.php:376
2110
  #, fuzzy
2111
  msgid "Instagram App ID"
2112
  msgstr "Instagram Client ID"
2113
 
2114
+ #: ../admin/social_login.php:386
2115
  #, fuzzy, php-format
2116
  msgid ""
2117
  "Required for Instagram Social Login to work. Please follow the documentation "
2121
  "l'Instagram Client ID, consulta la documentazione che trovi su <a href=\"%s"
2122
  "\" target=\"_blank\">questo collegamento</a>"
2123
 
2124
+ #: ../admin/social_login.php:388 ../admin/social_login.php:409
2125
  #, fuzzy
2126
  msgid ""
2127
  "Paste following url in <strong>Valid OAuth Redirect URIs</strong> option "
2130
  "Incolla la seguente URL nelle opzioni <strong>Site URL</ strong> al link "
2131
  "indicato"
2132
 
2133
+ #: ../admin/social_login.php:397
2134
  #, fuzzy
2135
  msgid "Instagram App Secret"
2136
  msgstr "Username Instagram"
2137
 
2138
+ #: ../admin/social_login.php:407
2139
  #, fuzzy, php-format
2140
  msgid ""
2141
  "Required for Instagram Social Login to work. Please follow the documentation "
2145
  "l'Instagram Client ID, consulta la documentazione che trovi su <a href=\"%s"
2146
  "\" target=\"_blank\">questo collegamento</a>"
2147
 
2148
+ #: ../admin/social_login.php:418
2149
  msgid "Line Channel ID"
2150
  msgstr ""
2151
 
2152
+ #: ../admin/social_login.php:427
2153
  #, fuzzy, php-format
2154
  msgid ""
2155
  "Required for Line Social Login to work. Please follow the documentation at "
2159
  "LinkedIn API Key, consulta la documentazione che trovi su <a href=\"%s\" "
2160
  "target=\"_blank\">questo collegamento</a>"
2161
 
2162
+ #: ../admin/social_login.php:438
2163
  #, fuzzy
2164
  msgid "Line Channel Secret"
2165
  msgstr "LinkedIn"
2166
 
2167
+ #: ../admin/social_login.php:447
2168
  #, fuzzy, php-format
2169
  msgid ""
2170
  "Required for Line Social Login to work. Please follow the documentation at "
2174
  "LinkedIn API Key, consulta la documentazione che trovi su <a href=\"%s\" "
2175
  "target=\"_blank\">questo collegamento</a>"
2176
 
2177
+ #: ../admin/social_login.php:458
2178
+ #, fuzzy
2179
+ msgid "Wordpress Client ID"
2180
+ msgstr "Google+ Client ID"
2181
+
2182
+ #: ../admin/social_login.php:467
2183
+ #, fuzzy, php-format
2184
+ msgid ""
2185
+ "Required for Wordpress Social Login to work. Please follow the documentation "
2186
+ "at <a href=\"%s\" target=\"_blank\">this link</a> to get Wordpress Client ID"
2187
+ msgstr ""
2188
+ "Necessario per far funzionare GooglePlus Social Login. Per ottenere il "
2189
+ "GooglePlus Client ID, consulta la documentazione che trovi su <a href=\"%s\" "
2190
+ "target=\"_blank\">questo collegamento</a>"
2191
+
2192
+ #: ../admin/social_login.php:478
2193
+ #, fuzzy
2194
+ msgid "Wordpress Client Secret"
2195
+ msgstr "Google+ Client ID"
2196
+
2197
+ #: ../admin/social_login.php:487
2198
+ #, fuzzy, php-format
2199
+ msgid ""
2200
+ "Required for Wordpress Social Login to work. Please follow the documentation "
2201
+ "at <a href=\"%s\" target=\"_blank\">this link</a> to get Wordpress Client "
2202
+ "Secret"
2203
+ msgstr ""
2204
+ "Necessario per far funzionare GooglePlus Social Login. Per ottenere il "
2205
+ "GooglePlus Client ID, consulta la documentazione che trovi su <a href=\"%s\" "
2206
+ "target=\"_blank\">questo collegamento</a>"
2207
+
2208
+ #: ../admin/social_login.php:498
2209
  #, fuzzy
2210
  msgid "Microsoft Client ID"
2211
  msgstr "Google+ Client ID"
2212
 
2213
+ #: ../admin/social_login.php:507
2214
  #, fuzzy, php-format
2215
  msgid ""
2216
  "Required for Live Social Login to work. Please follow the documentation at "
2220
  "GooglePlus Client ID, consulta la documentazione che trovi su <a href=\"%s\" "
2221
  "target=\"_blank\">questo collegamento</a>"
2222
 
2223
+ #: ../admin/social_login.php:509 ../admin/social_login.php:529
2224
+ #: ../admin/social_login.php:567 ../admin/social_login.php:587
2225
  #, fuzzy
2226
  msgid ""
2227
  "Paste following url in <strong>Redirect URIs</strong> option mentioned at "
2230
  "Incolla la seguente URL nelle opzioni <strong>Site URL</ strong> al link "
2231
  "indicato"
2232
 
2233
+ #: ../admin/social_login.php:518
2234
  #, fuzzy
2235
  msgid "Microsoft Client Secret"
2236
  msgstr "Google+ Client ID"
2237
 
2238
+ #: ../admin/social_login.php:527
2239
  #, fuzzy, php-format
2240
  msgid ""
2241
  "Required for Live Social Login to work. Please follow the documentation at "
2246
  "GooglePlus Client ID, consulta la documentazione che trovi su <a href=\"%s\" "
2247
  "target=\"_blank\">questo collegamento</a>"
2248
 
2249
+ #: ../admin/social_login.php:537
2250
  #, fuzzy
2251
  msgid "Steam API Key"
2252
  msgstr "Twitter API Key"
2253
 
2254
+ #: ../admin/social_login.php:546
2255
  #, fuzzy, php-format
2256
  msgid ""
2257
  "Required for Steam Social Login to work. Get it at <a href=\"%s\" target="
2261
  "API Key, consulta la documentazione che trovi su <a href=\"%s\" target="
2262
  "\"_blank\">questa pagina</a>"
2263
 
2264
+ #: ../admin/social_login.php:547
2265
  #, fuzzy
2266
  msgid "Save following <strong>domain</strong> to get the key"
2267
  msgstr ""
2268
  "Incolla la seguente URL nelle opzioni <strong>Callback domain</ strong> al "
2269
  "link indicato"
2270
 
2271
+ #: ../admin/social_login.php:556
2272
+ #, fuzzy
2273
+ msgid "Yahoo Client ID"
2274
+ msgstr "Google+ Client ID"
2275
+
2276
+ #: ../admin/social_login.php:565
2277
+ #, fuzzy, php-format
2278
+ msgid ""
2279
+ "Required for Yahoo Social Login to work. Please follow the documentation at "
2280
+ "<a href=\"%s\" target=\"_blank\">this link</a> to get Yahoo Client ID"
2281
+ msgstr ""
2282
+ "Necessario per far funzionare GooglePlus Social Login. Per ottenere il "
2283
+ "GooglePlus Client ID, consulta la documentazione che trovi su <a href=\"%s\" "
2284
+ "target=\"_blank\">questo collegamento</a>"
2285
+
2286
+ #: ../admin/social_login.php:576
2287
+ #, fuzzy
2288
+ msgid "Yahoo Client Secret"
2289
+ msgstr "Google+ Client ID"
2290
+
2291
+ #: ../admin/social_login.php:585
2292
+ #, fuzzy, php-format
2293
+ msgid ""
2294
+ "Required for Yahoo Social Login to work. Please follow the documentation at "
2295
+ "<a href=\"%s\" target=\"_blank\">this link</a> to get Yahoo Client Secret key"
2296
+ msgstr ""
2297
+ "Necessario per far funzionare GooglePlus Social Login. Per ottenere il "
2298
+ "GooglePlus Client ID, consulta la documentazione che trovi su <a href=\"%s\" "
2299
+ "target=\"_blank\">questo collegamento</a>"
2300
+
2301
+ #: ../admin/social_login.php:605
2302
  msgid "Social Login Options"
2303
  msgstr "Opzioni"
2304
 
2305
+ #: ../admin/social_login.php:620
2306
  msgid "Text to display above the Social Login interface"
2307
  msgstr "Testo da mostrare sopra l'interfaccia Social Login"
2308
 
2309
+ #: ../admin/social_login.php:628
2310
  msgid "Trigger social login in the same browser tab"
2311
  msgstr ""
2312
 
2313
+ #: ../admin/social_login.php:638
2314
  msgid "Trigger social login in the same browser tab instead of a popup window"
2315
  msgstr ""
2316
 
2317
+ #: ../admin/social_login.php:645
2318
  #, fuzzy
2319
  msgid "Center align icons"
2320
  msgstr "Riorganizza le icone"
2321
 
2322
+ #: ../admin/social_login.php:655
2323
  #, fuzzy
2324
  msgid "Center align social login icons"
2325
  msgstr "Opzioni"
2326
 
2327
+ #: ../admin/social_login.php:662
2328
  msgid "Enable at login page"
2329
  msgstr "Attiva nella pagina di Login"
2330
 
2331
+ #: ../admin/social_login.php:672
2332
  msgid ""
2333
  "Social Login interface will get enabled at the login page of your website"
2334
  msgstr ""
2335
  "L'Interfaccia Social Login si attiverá nella pagina di Login del tuo sito web"
2336
 
2337
+ #: ../admin/social_login.php:679
2338
  msgid "Enable at register page"
2339
  msgstr "Abilita nella pagina di registrazione"
2340
 
2341
+ #: ../admin/social_login.php:689
2342
  msgid ""
2343
  "Social Login interface will get enabled at the registration page of your "
2344
  "website"
2346
  "L'Interfaccia Social Login si attiverá nella pagina di registrazione del tuo "
2347
  "sito web"
2348
 
2349
+ #: ../admin/social_login.php:696
2350
  msgid "Enable at comment form"
2351
  msgstr "Attiva nel form dei commenti"
2352
 
2353
+ #: ../admin/social_login.php:706
2354
  msgid "Social Login interface will get enabled at your Wordpress Comment form"
2355
  msgstr "L'Interfaccia Social Login si attiverá nel form di commenti Wordpress"
2356
 
2357
+ #: ../admin/social_login.php:720
2358
  msgid "Enable before WooCommerce Customer Login Form"
2359
  msgstr "Abilita prima del form Customer Login di WooCommerce"
2360
 
2361
+ #: ../admin/social_login.php:730
2362
  msgid ""
2363
  "Social Login Interface will get enabled before the customer login form at "
2364
  "WooCommerce My Account page"
2366
  "L'Interfaccia Social Login si attiverá, nella pagina il mio Account di "
2367
  "Woocommerce, prima del Form di Login."
2368
 
2369
+ #: ../admin/social_login.php:737
2370
  #, fuzzy
2371
  msgid "Enable at WooCommerce Customer Login Form"
2372
  msgstr "Abilita dopo il form Customer Login di WooCommerce"
2373
 
2374
+ #: ../admin/social_login.php:747
2375
  #, fuzzy
2376
  msgid ""
2377
  "Integrate Social Login Interface with the customer login form at WooCommerce "
2380
  "L'Interfaccia Social Login si attiverá, nella pagina il mio Account di "
2381
  "Woocommerce, dopo il Form di Login."
2382
 
2383
+ #: ../admin/social_login.php:754
2384
  #, fuzzy
2385
  msgid "Enable at WooCommerce Customer Register Form"
2386
  msgstr "Abilita dopo il form Customer Login di WooCommerce"
2387
 
2388
+ #: ../admin/social_login.php:764
2389
  #, fuzzy
2390
  msgid ""
2391
  "Integrate Social Login Interface with the customer register form at "
2394
  "L'Interfaccia Social Login si attiverá, nella pagina il mio Account di "
2395
  "Woocommerce, dopo il Form di Login."
2396
 
2397
+ #: ../admin/social_login.php:771
2398
  msgid "Enable at WooCommerce checkout page"
2399
  msgstr "Abilita nella pagina checkout di WooCommerce"
2400
 
2401
+ #: ../admin/social_login.php:781
2402
  msgid "Social Login Interface will get enabled at WooCommerce checkout page"
2403
  msgstr ""
2404
  "L'Interfaccia Social Login si attiverá nella pagina di Checkout di "
2405
  "Woocommerce"
2406
 
2407
+ #: ../admin/social_login.php:791
2408
  msgid "Auto-approve comments made by Social Login users"
2409
  msgstr "Auto-approvare i commenti fatti da utenti con accesso Social Login"
2410
 
2411
+ #: ../admin/social_login.php:801
2412
  msgid ""
2413
  "If this option is enabled, and WordPress comment is made by Social Login "
2414
  "user, comment will get approved immediately without keeping in moderation."
2417
  "che hanno avuto accesso tramite Social Login, il commento sará approvato "
2418
  "immediatamente senza nessuna possibilitá di moderazione."
2419
 
2420
+ #: ../admin/social_login.php:802
2421
  msgid "Note: This is not related to Facebook comments"
2422
  msgstr "Nota: Questa opzione non si applica ai commenti Facebook"
2423
 
2424
+ #: ../admin/social_login.php:811
2425
  msgid "Enable social avatar"
2426
  msgstr "Abilita Avatar"
2427
 
2428
+ #: ../admin/social_login.php:821
2429
  msgid ""
2430
  "Social profile pictures of the logged in user will be displayed as profile "
2431
  "avatar"
2433
  "Le immagini del profilo degli utenti registrati verranno visualizzate come "
2434
  "avatar del profilo sul tuo sito"
2435
 
2436
+ #: ../admin/social_login.php:830
2437
  msgid "Avatar quality"
2438
  msgstr "Qualità Avatar"
2439
 
2440
+ #: ../admin/social_login.php:833
2441
  msgid "Average"
2442
  msgstr "Media"
2443
 
2444
+ #: ../admin/social_login.php:834
2445
  msgid "Best"
2446
  msgstr "Migliore"
2447
 
2448
+ #: ../admin/social_login.php:841
2449
  msgid "Choose avatar quality"
2450
  msgstr "Scelta qualità Avatar"
2451
 
2452
+ #: ../admin/social_login.php:849
2453
  msgid ""
2454
  "Show option for users to update social avatar at BuddyPress profile page"
2455
  msgstr ""
2456
  "Attiva questa opzione per aggiornare il social avatar nella pagina di "
2457
  "profilo BuddyPress"
2458
 
2459
+ #: ../admin/social_login.php:859
2460
  msgid ""
2461
  "If enabled, users would be able to update their social avatar from \"Profile "
2462
  "photo\" section in BuddyPress profile at front-end"
2464
  "Se abilitato, gli utenti saranno in grado di aggiornare il proprio social "
2465
  "avatar nella sezione \"Profile photo\" al front-end di BuddyPress."
2466
 
2467
+ #: ../admin/social_login.php:879
2468
  msgid ""
2469
  "If enabled and Social ID provider does not provide user's email address on "
2470
  "login, user will be asked to provide his/her email address. Otherwise, a "
2475
  "completare questa informazione. In caso contrario, sará generata una email "
2476
  "fittizia"
2477
 
2478
+ #: ../admin/social_login.php:887
2479
  msgid "Send post-registration email to user to set account password"
2480
  msgstr ""
2481
  "Invia e-mail post-registrazione all'utente per impostare la sua account "
2482
  "password"
2483
 
2484
+ #: ../admin/social_login.php:897
2485
  msgid ""
2486
  "If enabled, an email will be sent to user after registration through Social "
2487
  "Login, regarding his/her login credentials (username-password to be able to "
2491
  "Login, sará inviata all'utente una email con le informazioni necessarie per "
2492
  "accedere attraverso il metodo tradizionale (codice d'accesso e password)"
2493
 
2494
+ #: ../admin/social_login.php:904
2495
  msgid "Send new user registration notification email to admin"
2496
  msgstr "Invia email di notifica registrazione nuovo utente all' Amministratore"
2497
 
2498
+ #: ../admin/social_login.php:914
2499
  msgid ""
2500
  "If enabled, an email will be sent to admin after new user registers through "
2501
  "Social Login, notifying admin about the new user registration"
2504
  "Login, sará inviata all'amministratore una email di notifica della nuova "
2505
  "registrazione"
2506
 
2507
+ #: ../admin/social_login.php:921
2508
  msgid "Login redirection"
2509
  msgstr "Reindirizzamento Login"
2510
 
2511
+ #: ../admin/social_login.php:925
2512
  msgid "Same page where user logged in"
2513
  msgstr "La stessa pagina dove l'utente ha iniziato la sessione"
2514
 
2515
+ #: ../admin/social_login.php:929 ../admin/social_login.php:958
2516
  msgid "Account dashboard"
2517
  msgstr "Pannello Account"
2518
 
2519
+ #: ../admin/social_login.php:932 ../admin/social_login.php:961
2520
  msgid "BuddyPress profile page"
2521
  msgstr "Pagina di profilo BuddyPress"
2522
 
2523
+ #: ../admin/social_login.php:935 ../admin/social_login.php:964
2524
  msgid "Custom Url"
2525
  msgstr "Url personalizzata"
2526
 
2527
+ #: ../admin/social_login.php:943
2528
  msgid "User will be redirected to the selected page after Social Login"
2529
  msgstr ""
2530
  "L'utente sará reindirizzato alla pagina selezionata dopo il Social Login"
2531
 
2532
+ #: ../admin/social_login.php:950
2533
  msgid "Registration redirection"
2534
  msgstr "Reindirizzamento Registratione"
2535
 
2536
+ #: ../admin/social_login.php:954
2537
  msgid "Same page from where user registered"
2538
  msgstr "La stessa pagina dove l'utente si è registrato"
2539
 
2540
+ #: ../admin/social_login.php:972
2541
  msgid ""
2542
  "User will be redirected to the selected page after registration (first "
2543
  "Social Login) through Social Login"
2545
  "L'utente sará reindirizzato alla pagina selezionata dopo la registrazione "
2546
  "(il primo Social Login) tramite il Social Login"
2547
 
2548
+ #: ../admin/social_login.php:981
2549
  #, fuzzy
2550
  msgid "Social Account Linking Options"
2551
  msgstr "Collegamento Social Account"
2552
 
2553
+ #: ../admin/social_login.php:996
2554
  #, fuzzy
2555
  msgid "Text to display above the Social Account Linking interface"
2556
  msgstr "Testo da mostrare sopra l'interfaccia Social Login"
2557
 
2558
+ #: ../admin/social_login.php:1003
2559
  #, fuzzy
2560
  msgid ""
2561
  "Link social account to already existing account, if email address matches"
2562
  msgstr ""
2563
  "Collega il tuo social account per accedere al tuo account su questo sito"
2564
 
2565
+ #: ../admin/social_login.php:1013
2566
  msgid ""
2567
  "If email address of the user's Social Account matches with an already "
2568
  "existing account at your website, that social account will be linked to "
2570
  "Linking interface at their profile page."
2571
  msgstr ""
2572
 
2573
+ #: ../admin/social_login.php:1021
2574
  msgid "Enable social account linking at BuddyPress profile page"
2575
  msgstr "Abilita collegamento social account nella pagina di profilo BuddyPress"
2576
 
2577
+ #: ../admin/social_login.php:1031
2578
  msgid ""
2579
  "Enable this option to show social account linking interface at BuddyPress "
2580
  "profile page"
2582
  "Attiva questa opzione per visualizzare l'interfaccia social account linking "
2583
  "nella pagina di profilo BuddyPress"
2584
 
2585
+ #: ../admin/social_login.php:1042
2586
  msgid "Email popup options"
2587
  msgstr "Opzioni del popup 'Email Obbligatoria'"
2588
 
2589
+ #: ../admin/social_login.php:1047
2590
  msgid "Text on 'Email required' popup"
2591
  msgstr "Testo del pop-up"
2592
 
2593
+ #: ../admin/social_login.php:1057
2594
  msgid ""
2595
  "This text will be displayed on email required popup. Leave empty if not "
2596
  "required."
2598
  "Questo é il testo che verrà mostrato nella finestra pop-up. Lasciare in "
2599
  "bianco se non si vuole utilizzare."
2600
 
2601
+ #: ../admin/social_login.php:1065
2602
  msgid "Error message for 'Email required' popup"
2603
  msgstr "Messaggio d'errore"
2604
 
2605
+ #: ../admin/social_login.php:1075
2606
  msgid ""
2607
  "This message will be displayed to user if it provides invalid or already "
2608
  "registered email"
2610
  "Questo é il testo che verrà mostrato all'utente nel caso inserisca un "
2611
  "indirizzo email non valido o già registrato."
2612
 
2613
+ #: ../admin/social_login.php:1083
2614
  msgid "Email popup height"
2615
  msgstr "Altezza pop-up Email"
2616
 
2617
+ #: ../admin/social_login.php:1093
2618
  msgid ""
2619
  "If you are seeing vertical scrollbar in the \"Email required\" popup, you "
2620
  "can increase the height of popup by specifying in this option. Leave empty "
2624
  "Obbligatoria\", è possibile aumentare l'altezza del popup specificandolo in "
2625
  "questa opzione. Lasciare vuoto per l'impostazione predefinita."
2626
 
2627
+ #: ../admin/social_login.php:1100
2628
  msgid "Enable email verification"
2629
  msgstr "Abilita verifica email"
2630
 
2631
+ #: ../admin/social_login.php:1110
2632
  msgid ""
2633
  "If enabled, email provided by the user will be verified by sending a "
2634
  "confirmation link to that email. User would not be able to login without "
2638
  "verificato mediante l'invio di un link all' indirizzo e-mail specificato. "
2639
  "L'utente non potrà accedere senza aver effettuato la procedura di verifica."
2640
 
2641
+ #: ../admin/social_login.php:1130
2642
  #, fuzzy
2643
  msgid "Enable GDPR opt-in"
2644
  msgstr "Abilita Disqus Commenting"
2645
 
2646
+ #: ../admin/social_login.php:1140
2647
  msgid ""
2648
  "Enable it to show GDPR opt-in for social login and social account linking"
2649
  msgstr ""
2650
 
2651
+ #: ../admin/social_login.php:1148
2652
  #, fuzzy
2653
  msgid "Placement of GDPR opt-in"
2654
  msgstr "Abilita Disqus Commenting"
2655
 
2656
+ #: ../admin/social_login.php:1152
2657
  #, fuzzy
2658
  msgid "Above Social Login icons"
2659
  msgstr "Opzioni"
2660
 
2661
+ #: ../admin/social_login.php:1154
2662
  #, fuzzy
2663
  msgid "Below Social Login icons"
2664
  msgstr "Opzioni"
2665
 
2666
+ #: ../admin/social_login.php:1160
2667
  #, fuzzy
2668
  msgid "Placement of GDPR opt-in above or below the social login icons"
2669
  msgstr "Testo da mostrare sopra l'interfaccia Social Login"
2670
 
2671
+ #: ../admin/social_login.php:1167
2672
  msgid "Opt-in text"
2673
  msgstr ""
2674
 
2675
+ #: ../admin/social_login.php:1177
2676
  #, fuzzy
2677
  msgid "Text for the GDPR opt-in"
2678
  msgstr "Abilita Disqus Commenting"
2679
 
2680
+ #: ../admin/social_login.php:1184
2681
  msgid "Text to link to Terms-Conditions page"
2682
  msgstr ""
2683
 
2684
+ #: ../admin/social_login.php:1194
2685
  msgid "Word(s) in the opt-in text to be linked to terms-conditions page"
2686
  msgstr ""
2687
 
2688
+ #: ../admin/social_login.php:1201
2689
  msgid "Terms-Conditions Url"
2690
  msgstr ""
2691
 
2692
+ #: ../admin/social_login.php:1211
2693
  #, fuzzy
2694
  msgid "Url of the terms-conditions page of your website"
2695
  msgstr "Url della homepage del tuo sito web"
2696
 
2697
+ #: ../admin/social_login.php:1218
2698
  msgid "Text to link to Privacy Policy page"
2699
  msgstr ""
2700
 
2701
+ #: ../admin/social_login.php:1228
2702
  msgid "Word(s) in the opt-in text to be linked to privacy policy page"
2703
  msgstr ""
2704
 
2705
+ #: ../admin/social_login.php:1235
2706
  msgid "Privacy Policy Url"
2707
  msgstr ""
2708
 
2709
+ #: ../admin/social_login.php:1245
2710
  #, fuzzy
2711
  msgid "Url of the privacy policy page of your website"
2712
  msgstr "Url della homepage del tuo sito web"
2713
 
2714
+ #: ../admin/social_login.php:1296 ../inc/widget.php:260 ../inc/widget.php:438
2715
  #: ../inc/widget.php:602 ../inc/widget.php:750
2716
  msgid "Select"
2717
  msgstr "Selezionare"
2718
 
2719
+ #: ../admin/social_login.php:1327
2720
  msgid "Social Login Shortcode & Widget"
2721
  msgstr "Shortcode & Widget"
2722
 
2723
+ #: ../admin/social_login.php:1328
2724
  msgid "Social Linking Shortcode"
2725
  msgstr "Social Linking Shortcode"
2726
 
2727
+ #: ../admin/social_login.php:1343
2728
  msgid "Why is social login not working?"
2729
  msgstr ""
2730
 
2731
+ #: ../admin/social_login.php:1344
2732
  msgid ""
2733
  "Make sure that App ID and Secret (Client ID and Secret) keys you have saved, "
2734
  "belong to the same app"
2735
  msgstr ""
2736
 
2737
+ #: ../admin/social_login.php:1346
2738
  msgid "Social Login not working with Varnish enabled"
2739
  msgstr ""
2740
 
2741
+ #: ../admin/social_login.php:1347
2742
  msgid ""
2743
  "Why the user is not appearing logged in even after Social Login until the "
2744
  "webpage is refreshed manually?"
2958
  msgid "Providers not selected"
2959
  msgstr "Providers non selezionati"
2960
 
2961
+ #: ../inc/social_login.php:792
2962
  msgid "Email"
2963
  msgstr "Email"
2964
 
2965
+ #: ../inc/social_login.php:793
2966
  msgid "Confirm email"
2967
  msgstr "Conferma email"
2968
 
2969
+ #: ../inc/social_login.php:795
2970
  msgid "Save"
2971
  msgstr "Salva"
2972
 
2973
+ #: ../inc/social_login.php:796
2974
  msgid "Cancel"
2975
  msgstr "Cancella"
2976
 
2977
+ #: ../inc/social_login.php:870
2978
  msgid "Email Verification"
2979
  msgstr "Abilita verifica email"
2980
 
2981
+ #: ../inc/social_login.php:872
2982
  msgid ""
2983
  "Please click on the following link or paste it in browser to verify your "
2984
  "email"
3575
  #~ msgid "Print"
3576
  #~ msgstr "Stampa"
3577
 
 
 
 
3578
  #~ msgid "Reddit"
3579
  #~ msgstr "Reddit"
3580
 
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: 2020-08-20 08:13+0530\n"
6
- "PO-Revision-Date: 2020-08-20 08:13+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:523
19
  msgid "Problem fetching access token: "
20
  msgstr ""
21
 
22
- #: ../super_socializer.php:527 ../super_socializer.php:541
23
  msgid "Facebook SDK returned an error: "
24
  msgstr ""
25
 
26
- #: ../super_socializer.php:537
27
  msgid "Graph returned an error: "
28
  msgstr ""
29
 
30
- #: ../super_socializer.php:726
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:754
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:757
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:760
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,65 +64,65 @@ 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:942 ../helper.php:961
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:942
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:946
76
  msgid "Notification"
77
  msgstr "Notificaçao"
78
 
79
- #: ../super_socializer.php:964 ../admin/social_login.php:779
80
  msgid "Email required"
81
  msgstr "Necessário email"
82
 
83
- #: ../super_socializer.php:967
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:1036
88
  msgid "Leave a reply"
89
  msgstr "Deixe uma resposta"
90
 
91
- #: ../super_socializer.php:1052 ../inc/social_sharing.php:241
92
  msgid "Shares"
93
  msgstr ""
94
 
95
- #: ../super_socializer.php:1052 ../inc/social_sharing.php:241
96
  msgid "Share"
97
  msgstr ""
98
 
99
- #: ../super_socializer.php:1052
100
  #, fuzzy
101
  msgid "Link copied."
102
  msgstr "LinkedIn"
103
 
104
- #: ../super_socializer.php:1298
105
  msgid "Super Socializer - General Options"
106
  msgstr "Super Socializer - Opções Gerais"
107
 
108
- #: ../super_socializer.php:1298 ../admin/general_options.php:15
109
  #: ../admin/social_commenting.php:47
110
  msgid "General Options"
111
  msgstr "Opções Gerais"
112
 
113
- #: ../super_socializer.php:1366 ../helper.php:883
114
  msgid "Social Avatar"
115
  msgstr "Avatar Social"
116
 
117
- #: ../super_socializer.php:1369
118
  msgid "Small Avatar Url"
119
  msgstr "Url para Avatar pequeno"
120
 
121
- #: ../super_socializer.php:1373
122
  msgid "Large Avatar Url"
123
  msgstr "Url para Avatar Grande"
124
 
125
- #: ../super_socializer.php:1377 ../helper.php:886
126
  msgid ""
127
  "Do not fetch and update social avatar from my profile, next time I Social "
128
  "Login"
@@ -130,73 +130,73 @@ msgstr ""
130
  "Não busque ou atualize o avatar social do meu perfil, na próxima vez farei a "
131
  "Autenticação Social"
132
 
133
- #: ../super_socializer.php:1381 ../helper.php:887
134
  msgid "Update social avatar, next time I Social Login"
135
  msgstr "Atualize o avatar social, na próxima vez farei a Autenticação Social"
136
 
137
- #: ../super_socializer.php:1458
138
  msgid "Login with your Social ID"
139
  msgstr ""
140
 
141
- #: ../super_socializer.php:1459
142
  msgid "Email you entered is already registered or invalid"
143
  msgstr "Email fornecido já está registrado ou é inválido"
144
 
145
- #: ../super_socializer.php:1464
146
  msgid "Please enter a valid email address. You might be required to verify it"
147
  msgstr ""
148
  "Por favor forneça um endereço de email válido. Você pode ser solicitado a "
149
  "confirmá-lo"
150
 
151
- #: ../super_socializer.php:1468 ../super_socializer.php:2166
152
  msgid "Link your social account to login to your account at this website"
153
  msgstr "Associe sua conta social ao login de sua conta neste website"
154
 
155
- #: ../super_socializer.php:1708
156
  msgid "Thanks for installing Super Socializer plugin"
157
  msgstr ""
158
 
159
- #: ../super_socializer.php:1710
160
  msgid "Configure the Plugin"
161
  msgstr ""
162
 
163
- #: ../super_socializer.php:1721
164
  msgid ""
165
  "Update \"Facebook Comments Moderation\" add-on for compatibility with "
166
  "current version of Super Socializer"
167
  msgstr ""
168
 
169
- #: ../super_socializer.php:1730
170
  msgid ""
171
  "Update \"Facebook Comments Notifier\" add-on for compatibility with current "
172
  "version of Super Socializer"
173
  msgstr ""
174
 
175
- #: ../super_socializer.php:1739
176
  msgid ""
177
  "Update \"Social Login Buttons\" add-on for compatibility with current "
178
  "version of Super Socializer"
179
  msgstr ""
180
 
181
- #: ../super_socializer.php:1748
182
  msgid ""
183
  "Update \"Social Share myCRED Integration\" add-on for maximum compatibility "
184
  "with current version of Super Socializer"
185
  msgstr ""
186
 
187
- #: ../super_socializer.php:1757
188
  msgid ""
189
  "Update \"Social Login myCRED Integration\" add-on for maximum compatibility "
190
  "with current version of Super Socializer"
191
  msgstr ""
192
 
193
- #: ../super_socializer.php:1768
194
  #, php-format
195
  msgid ""
196
  "To continue using Steam login save Steam API key <a href=\"%s\">here</a>"
197
  msgstr ""
198
 
199
- #: ../super_socializer.php:1777
200
  #, php-format
201
  msgid ""
202
  "To continue using Instagram login create a new Instagram App as described <a "
@@ -204,7 +204,7 @@ msgid ""
204
  "Instagram App Secret <a href=\"%s\">here</a>"
205
  msgstr ""
206
 
207
- #: ../super_socializer.php:1786 ../super_socializer.php:1795
208
  #, php-format
209
  msgid ""
210
  "To continue using bitly url shortener, login to your bit.ly account and "
@@ -213,13 +213,13 @@ msgid ""
213
  "\">here</a>. More details at the <a href=\"%s\" target=\"_blank\">link</a>"
214
  msgstr ""
215
 
216
- #: ../super_socializer.php:1811
217
  #, php-format
218
  msgid ""
219
  "To continue using Social Login, save the secret keys <a href=\"%s\">here</a>"
220
  msgstr ""
221
 
222
- #: ../super_socializer.php:1835
223
  #, php-format
224
  msgid ""
225
  "Add %s in \"Valid OAuth redirect URIs\" option in your Facebook app settings "
@@ -227,14 +227,14 @@ msgid ""
227
  "target=\"_blank\">here</a>"
228
  msgstr ""
229
 
230
- #: ../super_socializer.php:1835 ../super_socializer.php:1860
231
- #: ../super_socializer.php:1885 ../super_socializer.php:1910
232
- #: ../super_socializer.php:1943 ../super_socializer.php:1971
233
- #: ../super_socializer.php:1998
234
  msgid "Okay"
235
  msgstr ""
236
 
237
- #: ../super_socializer.php:1860
238
  #, php-format
239
  msgid ""
240
  "Add %s in \"Callback URLs\" option in your Twitter app settings for Twitter "
@@ -242,7 +242,7 @@ msgid ""
242
  "\">here</a>"
243
  msgstr ""
244
 
245
- #: ../super_socializer.php:1885
246
  #, php-format
247
  msgid ""
248
  "Add %s in \"Authorized Redirect URLs\" option in your Linkedin app settings "
@@ -250,7 +250,7 @@ msgid ""
250
  "target=\"_blank\">here</a>"
251
  msgstr ""
252
 
253
- #: ../super_socializer.php:1910
254
  #, php-format
255
  msgid ""
256
  "Add %s in \"Authorized redirect URIs\" option in your Google client settings "
@@ -258,13 +258,13 @@ msgid ""
258
  "target=\"_blank\">here</a>"
259
  msgstr ""
260
 
261
- #: ../super_socializer.php:1921
262
  #, php-format
263
  msgid ""
264
  "Save the url of privacy policy page of your website <a href=\"%s\">here</a>"
265
  msgstr ""
266
 
267
- #: ../super_socializer.php:1943
268
  #, php-format
269
  msgid ""
270
  "This plugin is GDPR compliant. You need to update the privacy policy of your "
@@ -272,7 +272,7 @@ msgid ""
272
  "\"%s\" target=\"_blank\">here</a>"
273
  msgstr ""
274
 
275
- #: ../super_socializer.php:1971
276
  #, php-format
277
  msgid ""
278
  "Now plugin supports a new service Twitcount.com to show Twitter shares. To "
@@ -281,7 +281,7 @@ msgid ""
281
  "your website %s with them. No need to copy-paste any code from their website."
282
  msgstr ""
283
 
284
- #: ../super_socializer.php:1998
285
  #, php-format
286
  msgid ""
287
  "Replace url saved in \"Callback URLs\" option in your Twitter app settings "
@@ -289,7 +289,7 @@ msgid ""
289
  "\"%s\" target=\"_blank\">here</a>"
290
  msgstr ""
291
 
292
- #: ../super_socializer.php:2023
293
  #, php-format
294
  msgid ""
295
  "If you cannot get Linkedin login to work after updating the plugin, replace "
@@ -297,11 +297,11 @@ msgid ""
297
  "For more details, check step 6 <a href=\"%s\" target=\"_blank\">here</a>"
298
  msgstr ""
299
 
300
- #: ../super_socializer.php:2023 ../super_socializer.php:2050
301
  msgid "Dismiss"
302
  msgstr ""
303
 
304
- #: ../super_socializer.php:2049
305
  #, php-format
306
  msgid ""
307
  "Save Facebook App ID and Secret keys in \"Standard Interface\" and/or "
@@ -310,7 +310,7 @@ msgid ""
310
  "that, clear share counts cache from \"Miscellaneous\" section"
311
  msgstr ""
312
 
313
- #: ../super_socializer.php:2242
314
  msgid ""
315
  "Your browser is blocking some features of this website. Please follow the "
316
  "instructions at {support_url} to unblock these."
@@ -413,7 +413,7 @@ msgstr "Avatar Grande"
413
 
414
  #: ../helper.php:898 ../admin/general_options.php:89
415
  #: ../admin/social_sharing.php:1944 ../admin/social_commenting.php:400
416
- #: ../admin/social_login.php:1269 ../admin/like_buttons.php:780
417
  msgid "Save Changes"
418
  msgstr "Salvar Alterações"
419
 
@@ -437,7 +437,7 @@ msgstr ""
437
  #: ../admin/general_options.php:7 ../admin/general_options.php:93
438
  #: ../admin/social_sharing.php:5 ../admin/social_sharing.php:1948
439
  #: ../admin/social_commenting.php:5 ../admin/social_commenting.php:404
440
- #: ../admin/social_login.php:5 ../admin/social_login.php:1273
441
  #: ../admin/like_buttons.php:6 ../admin/like_buttons.php:784
442
  #, fuzzy, php-format
443
  msgid ""
@@ -493,14 +493,14 @@ msgstr ""
493
  "style&gt; )"
494
 
495
  #: ../admin/general_options.php:103 ../admin/social_sharing.php:1954
496
- #: ../admin/social_commenting.php:410 ../admin/social_login.php:1279
497
  #: ../admin/like_buttons.php:790
498
  #, fuzzy
499
  msgid "Instagram Shoutout"
500
  msgstr "Instagram"
501
 
502
  #: ../admin/general_options.php:105 ../admin/social_sharing.php:1956
503
- #: ../admin/social_commenting.php:412 ../admin/social_login.php:1281
504
  #: ../admin/like_buttons.php:792
505
  msgid ""
506
  "If you can send (to hello@heateor.com) how this plugin is helping your "
@@ -639,7 +639,7 @@ msgstr ""
639
 
640
  #: ../admin/social_sharing.php:67 ../admin/social_sharing.php:1869
641
  #: ../admin/social_sharing.php:1871 ../admin/social_login.php:45
642
- #: ../admin/social_login.php:1235 ../admin/like_buttons.php:50
643
  #: ../admin/like_buttons.php:751
644
  msgid "Shortcode & Widget"
645
  msgstr "Shortcode & Widget"
@@ -650,7 +650,7 @@ msgstr "Resolução de Problemas"
650
 
651
  #: ../admin/social_sharing.php:69 ../admin/social_sharing.php:1902
652
  #: ../admin/social_commenting.php:40 ../admin/social_commenting.php:384
653
- #: ../admin/social_login.php:46 ../admin/social_login.php:1249
654
  #: ../admin/like_buttons.php:51 ../admin/like_buttons.php:764
655
  msgid "FAQ"
656
  msgstr "P&R"
@@ -883,8 +883,8 @@ msgstr "Url personalizada"
883
  msgid "Url to share"
884
  msgstr "Url para compartilhar"
885
 
886
- #: ../admin/social_sharing.php:725 ../admin/social_login.php:520
887
- #: ../admin/social_login.php:896 ../admin/like_buttons.php:105
888
  #: ../inc/widget.php:945
889
  msgid "Title"
890
  msgstr "Título"
@@ -973,7 +973,7 @@ msgid "Placement"
973
  msgstr "Localização"
974
 
975
  #: ../admin/social_sharing.php:957 ../admin/social_sharing.php:1383
976
- #: ../admin/social_login.php:837 ../admin/social_login.php:866
977
  #: ../admin/like_buttons.php:218 ../admin/like_buttons.php:494
978
  msgid "Homepage"
979
  msgstr "Homepage"
@@ -1252,7 +1252,7 @@ msgstr ""
1252
  msgid "Required only to track Facebook share count"
1253
  msgstr ""
1254
 
1255
- #: ../admin/social_sharing.php:1584 ../admin/social_login.php:150
1256
  msgid "Facebook App ID"
1257
  msgstr "Facebook App ID"
1258
 
@@ -1266,7 +1266,7 @@ msgstr ""
1266
  "a documentação em <a href=\\\"%s\\\" target=\\\"_blank\\\">neste link</a> "
1267
  "para obter o Facebook App ID"
1268
 
1269
- #: ../admin/social_sharing.php:1601 ../admin/social_login.php:171
1270
  #, fuzzy
1271
  msgid "Facebook App Secret"
1272
  msgstr "Facebook App ID"
@@ -1457,7 +1457,7 @@ msgstr ""
1457
  "website:"
1458
 
1459
  #: ../admin/social_sharing.php:1904 ../admin/social_commenting.php:386
1460
- #: ../admin/social_login.php:1251
1461
  msgid ""
1462
  "<strong>Note:</strong> Plugin will not work on local server. You should have "
1463
  "an online website for the plugin to function properly."
@@ -1514,7 +1514,7 @@ msgid ""
1514
  msgstr ""
1515
 
1516
  #: ../admin/social_sharing.php:1919 ../admin/social_commenting.php:389
1517
- #: ../admin/social_login.php:1258
1518
  msgid "Why is my browser blocking some features of the plugin?"
1519
  msgstr ""
1520
 
@@ -1838,11 +1838,11 @@ msgstr "Configuração Básica"
1838
  msgid "Advanced Configuration"
1839
  msgstr "Configuração Básica"
1840
 
1841
- #: ../admin/social_login.php:41 ../admin/social_login.php:1035
1842
  msgid "GDPR"
1843
  msgstr ""
1844
 
1845
- #: ../admin/social_login.php:43 ../admin/social_login.php:1186
1846
  msgid "XProfile Integration"
1847
  msgstr ""
1848
 
@@ -1912,15 +1912,23 @@ msgid "Line"
1912
  msgstr ""
1913
 
1914
  #: ../admin/social_login.php:135
 
 
 
 
1915
  msgid "Windows Live"
1916
  msgstr ""
1917
 
1918
  #: ../admin/social_login.php:143
 
 
 
 
1919
  msgid "Select Social ID provider to enable in Social Login"
1920
  msgstr ""
1921
  "Selecione o provedor Social pelo seu ID para habilitar a autenticação social"
1922
 
1923
- #: ../admin/social_login.php:160
1924
  #, php-format
1925
  msgid ""
1926
  "Required for Facebook Social Login to work. Please follow the documentation "
@@ -1930,14 +1938,14 @@ msgstr ""
1930
  "a documentação em <a href=\\\"%s\\\" target=\\\"_blank\\\">neste link</a> "
1931
  "para obter o Facebook App ID"
1932
 
1933
- #: ../admin/social_login.php:162 ../admin/social_login.php:183
1934
  #, fuzzy
1935
  msgid ""
1936
  "Paste following url in <strong>Site URL</strong> option mentioned at the link"
1937
  msgstr ""
1938
  "Cole a seguinte opção de url <strong>Site URL</strong> no link mencionado"
1939
 
1940
- #: ../admin/social_login.php:181
1941
  #, fuzzy, php-format
1942
  msgid ""
1943
  "Required for Facebook Social Login to work. Please follow the documentation "
@@ -1947,11 +1955,11 @@ msgstr ""
1947
  "a documentação em <a href=\\\"%s\\\" target=\\\"_blank\\\">neste link</a> "
1948
  "para obter o Facebook App ID"
1949
 
1950
- #: ../admin/social_login.php:192
1951
  msgid "Twitter API Key"
1952
  msgstr "Twitter API Key"
1953
 
1954
- #: ../admin/social_login.php:202
1955
  #, php-format
1956
  msgid ""
1957
  "Required for Twitter Social Login to work. Please follow the documentation "
@@ -1961,15 +1969,16 @@ msgstr ""
1961
  "documentação <a href=\\\"%s\\\" target=\\\"_blank\\\">neste link link</a> "
1962
  "para obter Twitter API Key"
1963
 
1964
- #: ../admin/social_login.php:204 ../admin/social_login.php:229
1965
  #, fuzzy
1966
  msgid ""
1967
  "Paste following url in <strong>Website</strong> option mentioned at the link"
1968
  msgstr ""
1969
  "Cole na opção da url em <strong>Website URL</strong> no link mencionado"
1970
 
1971
- #: ../admin/social_login.php:208 ../admin/social_login.php:233
1972
- #: ../admin/social_login.php:421 ../admin/social_login.php:441
 
1973
  #, fuzzy
1974
  msgid ""
1975
  "Paste following url in <strong>Callback URL</strong> option mentioned at the "
@@ -1978,11 +1987,11 @@ msgstr ""
1978
  "Cole a seguinte opção de url <strong>Callback domain</strong> para o link "
1979
  "mencionado"
1980
 
1981
- #: ../admin/social_login.php:217
1982
  msgid "Twitter API Secret"
1983
  msgstr "Segredo API Twitter"
1984
 
1985
- #: ../admin/social_login.php:227
1986
  #, php-format
1987
  msgid ""
1988
  "Required for Twitter Social Login to work. Please follow the documentation "
@@ -1992,12 +2001,12 @@ msgstr ""
1992
  "documentação <a href=\\\"%s\\\" target=\\\"_blank\\\">neste link</a> para "
1993
  "obter o segredo da API Twitter"
1994
 
1995
- #: ../admin/social_login.php:242
1996
  #, fuzzy
1997
  msgid "LinkedIn Client ID"
1998
  msgstr "LinkedIn"
1999
 
2000
- #: ../admin/social_login.php:252
2001
  #, fuzzy, php-format
2002
  msgid ""
2003
  "Required for LinkedIn Social Login to work. Please follow the documentation "
@@ -2007,7 +2016,7 @@ msgstr ""
2007
  "documentação <a href=\\\"%s\\\" target=\\\"_blank\\\">neste link</a> para "
2008
  "obeter API Key do LinkedIn"
2009
 
2010
- #: ../admin/social_login.php:254 ../admin/social_login.php:275
2011
  #, fuzzy
2012
  msgid ""
2013
  "Paste following url in <strong>Redirect URLs</strong> option mentioned at "
@@ -2015,12 +2024,12 @@ msgid ""
2015
  msgstr ""
2016
  "Cole a seguinte opção de url <strong>Site URL</strong> no link mencionado"
2017
 
2018
- #: ../admin/social_login.php:263
2019
  #, fuzzy
2020
  msgid "LinkedIn Client Secret"
2021
  msgstr "LinkedIn"
2022
 
2023
- #: ../admin/social_login.php:273
2024
  #, fuzzy, php-format
2025
  msgid ""
2026
  "Required for LinkedIn Social Login to work. Please follow the documentation "
@@ -2031,12 +2040,12 @@ msgstr ""
2031
  "documentação <a href=\\\"%s\\\" target=\\\"_blank\\\">neste link</a> para "
2032
  "obeter API Key do LinkedIn"
2033
 
2034
- #: ../admin/social_login.php:284
2035
  #, fuzzy
2036
  msgid "Google Client ID"
2037
  msgstr "Google+ Client ID"
2038
 
2039
- #: ../admin/social_login.php:294
2040
  #, fuzzy, php-format
2041
  msgid ""
2042
  "Required for Google Social Login to work. Please follow the documentation at "
@@ -2046,7 +2055,7 @@ msgstr ""
2046
  "documentação <a href=\\\"%s\\\" target=\\\"_blank\\\">neste link</a> para "
2047
  "obter o GooglePlus Client ID"
2048
 
2049
- #: ../admin/social_login.php:296 ../admin/social_login.php:317
2050
  #, fuzzy
2051
  msgid ""
2052
  "Paste following url in <strong>AUTHORIZED REDIRECT URI</strong> option "
@@ -2054,12 +2063,12 @@ msgid ""
2054
  msgstr ""
2055
  "Cole a seguinte opção de url <strong>Site URL</strong> no link mencionado"
2056
 
2057
- #: ../admin/social_login.php:305
2058
  #, fuzzy
2059
  msgid "Google Client Secret"
2060
  msgstr "Google+ Client ID"
2061
 
2062
- #: ../admin/social_login.php:315
2063
  #, fuzzy, php-format
2064
  msgid ""
2065
  "Required for Google Social Login to work. Please follow the documentation at "
@@ -2069,11 +2078,11 @@ msgstr ""
2069
  "documentação <a href=\\\"%s\\\" target=\\\"_blank\\\">neste link</a> para "
2070
  "obter o GooglePlus Client ID"
2071
 
2072
- #: ../admin/social_login.php:326
2073
  msgid "Vkontakte Application ID"
2074
  msgstr "Vkontakte Application ID"
2075
 
2076
- #: ../admin/social_login.php:336 ../admin/social_login.php:357
2077
  #, php-format
2078
  msgid ""
2079
  "Required for Vkontakte Social Login to work. Please follow the documentation "
@@ -2084,7 +2093,7 @@ msgstr ""
2084
  "documentação <a href=\\\"%s\\\" target=\\\"_blank\\\">neste link</a> para "
2085
  "obter Vkontakte Application ID"
2086
 
2087
- #: ../admin/social_login.php:338 ../admin/social_login.php:359
2088
  #, fuzzy
2089
  msgid ""
2090
  "Paste following url in <strong>Site address</strong> option mentioned at the "
@@ -2092,17 +2101,17 @@ msgid ""
2092
  msgstr ""
2093
  "Cole a seguinte url em <strong>Site address</strong> no link mencionado"
2094
 
2095
- #: ../admin/social_login.php:347
2096
  #, fuzzy
2097
  msgid "Vkontakte Secure key"
2098
  msgstr "Vkontakte"
2099
 
2100
- #: ../admin/social_login.php:368
2101
  #, fuzzy
2102
  msgid "Instagram App ID"
2103
  msgstr "Instagram Client ID"
2104
 
2105
- #: ../admin/social_login.php:378
2106
  #, fuzzy, php-format
2107
  msgid ""
2108
  "Required for Instagram Social Login to work. Please follow the documentation "
@@ -2112,7 +2121,7 @@ msgstr ""
2112
  "documentação <a href=\\\"%s\\\" target=\\\"_blank\\\">neste link</a> para "
2113
  "obter Instagram Client ID"
2114
 
2115
- #: ../admin/social_login.php:380 ../admin/social_login.php:401
2116
  #, fuzzy
2117
  msgid ""
2118
  "Paste following url in <strong>Valid OAuth Redirect URIs</strong> option "
@@ -2120,12 +2129,12 @@ msgid ""
2120
  msgstr ""
2121
  "Cole a seguinte opção de url <strong>Site URL</strong> no link mencionado"
2122
 
2123
- #: ../admin/social_login.php:389
2124
  #, fuzzy
2125
  msgid "Instagram App Secret"
2126
  msgstr "Instagram"
2127
 
2128
- #: ../admin/social_login.php:399
2129
  #, fuzzy, php-format
2130
  msgid ""
2131
  "Required for Instagram Social Login to work. Please follow the documentation "
@@ -2135,11 +2144,11 @@ msgstr ""
2135
  "documentação <a href=\\\"%s\\\" target=\\\"_blank\\\">neste link</a> para "
2136
  "obter Instagram Client ID"
2137
 
2138
- #: ../admin/social_login.php:410
2139
  msgid "Line Channel ID"
2140
  msgstr ""
2141
 
2142
- #: ../admin/social_login.php:419
2143
  #, fuzzy, php-format
2144
  msgid ""
2145
  "Required for Line Social Login to work. Please follow the documentation at "
@@ -2149,12 +2158,12 @@ msgstr ""
2149
  "documentação <a href=\\\"%s\\\" target=\\\"_blank\\\">neste link</a> para "
2150
  "obeter API Key do LinkedIn"
2151
 
2152
- #: ../admin/social_login.php:430
2153
  #, fuzzy
2154
  msgid "Line Channel Secret"
2155
  msgstr "LinkedIn"
2156
 
2157
- #: ../admin/social_login.php:439
2158
  #, fuzzy, php-format
2159
  msgid ""
2160
  "Required for Line Social Login to work. Please follow the documentation at "
@@ -2164,12 +2173,43 @@ msgstr ""
2164
  "documentação <a href=\\\"%s\\\" target=\\\"_blank\\\">neste link</a> para "
2165
  "obeter API Key do LinkedIn"
2166
 
2167
- #: ../admin/social_login.php:450
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2168
  #, fuzzy
2169
  msgid "Microsoft Client ID"
2170
  msgstr "Google+ Client ID"
2171
 
2172
- #: ../admin/social_login.php:459
2173
  #, fuzzy, php-format
2174
  msgid ""
2175
  "Required for Live Social Login to work. Please follow the documentation at "
@@ -2179,7 +2219,8 @@ msgstr ""
2179
  "documentação <a href=\\\"%s\\\" target=\\\"_blank\\\">neste link</a> para "
2180
  "obter o GooglePlus Client ID"
2181
 
2182
- #: ../admin/social_login.php:461 ../admin/social_login.php:481
 
2183
  #, fuzzy
2184
  msgid ""
2185
  "Paste following url in <strong>Redirect URIs</strong> option mentioned at "
@@ -2187,12 +2228,12 @@ msgid ""
2187
  msgstr ""
2188
  "Cole a seguinte opção de url <strong>Site URL</strong> no link mencionado"
2189
 
2190
- #: ../admin/social_login.php:470
2191
  #, fuzzy
2192
  msgid "Microsoft Client Secret"
2193
  msgstr "Google+ Client ID"
2194
 
2195
- #: ../admin/social_login.php:479
2196
  #, fuzzy, php-format
2197
  msgid ""
2198
  "Required for Live Social Login to work. Please follow the documentation at "
@@ -2203,12 +2244,12 @@ msgstr ""
2203
  "documentação <a href=\\\"%s\\\" target=\\\"_blank\\\">neste link</a> para "
2204
  "obter o GooglePlus Client ID"
2205
 
2206
- #: ../admin/social_login.php:489
2207
  #, fuzzy
2208
  msgid "Steam API Key"
2209
  msgstr "Twitter API Key"
2210
 
2211
- #: ../admin/social_login.php:498
2212
  #, fuzzy, php-format
2213
  msgid ""
2214
  "Required for Steam Social Login to work. Get it at <a href=\"%s\" target="
@@ -2218,56 +2259,86 @@ msgstr ""
2218
  "documentação <a href=\\\"%s\\\" target=\\\"_blank\\\">neste link link</a> "
2219
  "para obter Twitter API Key"
2220
 
2221
- #: ../admin/social_login.php:499
2222
  #, fuzzy
2223
  msgid "Save following <strong>domain</strong> to get the key"
2224
  msgstr ""
2225
  "Cole a seguinte opção de url <strong>Callback domain</strong> para o link "
2226
  "mencionado"
2227
 
2228
- #: ../admin/social_login.php:515
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2229
  #, fuzzy
2230
  msgid "Social Login Options"
2231
  msgstr "Autenticação Social"
2232
 
2233
- #: ../admin/social_login.php:530
2234
  msgid "Text to display above the Social Login interface"
2235
  msgstr "Texto exibido acima da interface de Autenticação Social"
2236
 
2237
- #: ../admin/social_login.php:538
2238
  msgid "Trigger social login in the same browser tab"
2239
  msgstr ""
2240
 
2241
- #: ../admin/social_login.php:548
2242
  msgid "Trigger social login in the same browser tab instead of a popup window"
2243
  msgstr ""
2244
 
2245
- #: ../admin/social_login.php:555
2246
  #, fuzzy
2247
  msgid "Center align icons"
2248
  msgstr "Rearranjar ícones"
2249
 
2250
- #: ../admin/social_login.php:565
2251
  #, fuzzy
2252
  msgid "Center align social login icons"
2253
  msgstr "Autenticação Social"
2254
 
2255
- #: ../admin/social_login.php:572
2256
  msgid "Enable at login page"
2257
  msgstr "Habilia a página de autenticação"
2258
 
2259
- #: ../admin/social_login.php:582
2260
  msgid ""
2261
  "Social Login interface will get enabled at the login page of your website"
2262
  msgstr ""
2263
  "Interface de Autenticação Social será habilitada na página de autenticação "
2264
  "do seu website"
2265
 
2266
- #: ../admin/social_login.php:589
2267
  msgid "Enable at register page"
2268
  msgstr "Habilitar página de registro"
2269
 
2270
- #: ../admin/social_login.php:599
2271
  msgid ""
2272
  "Social Login interface will get enabled at the registration page of your "
2273
  "website"
@@ -2275,21 +2346,21 @@ msgstr ""
2275
  "Interface de Autenticação Social será habilitada na página de registro de "
2276
  "seu website"
2277
 
2278
- #: ../admin/social_login.php:606
2279
  msgid "Enable at comment form"
2280
  msgstr "Habilitar no formulário de comentário"
2281
 
2282
- #: ../admin/social_login.php:616
2283
  msgid "Social Login interface will get enabled at your Wordpress Comment form"
2284
  msgstr ""
2285
  "Interface de Autenticação Social será habilitada em seu formulário de "
2286
  "comentários Wordpress"
2287
 
2288
- #: ../admin/social_login.php:630
2289
  msgid "Enable before WooCommerce Customer Login Form"
2290
  msgstr "Habilido antes do formulário de autenticação do WooCommerce"
2291
 
2292
- #: ../admin/social_login.php:640
2293
  msgid ""
2294
  "Social Login Interface will get enabled before the customer login form at "
2295
  "WooCommerce My Account page"
@@ -2297,13 +2368,13 @@ msgstr ""
2297
  "Interface de Autenticação Social será habilitada antes do formulário de "
2298
  "autenticação de cliente na página Minha Conta do WooCommerce"
2299
 
2300
- #: ../admin/social_login.php:647
2301
  #, fuzzy
2302
  msgid "Enable at WooCommerce Customer Login Form"
2303
  msgstr ""
2304
  "Habilitado depois do Formulário de Autenticação do Cliente do WooCommerce"
2305
 
2306
- #: ../admin/social_login.php:657
2307
  #, fuzzy
2308
  msgid ""
2309
  "Integrate Social Login Interface with the customer login form at WooCommerce "
@@ -2312,13 +2383,13 @@ msgstr ""
2312
  "Interface de Autenticação Social será habilitada depois do formulário de "
2313
  "autenticação de cliente na página Minha Conta do WooCommerce"
2314
 
2315
- #: ../admin/social_login.php:664
2316
  #, fuzzy
2317
  msgid "Enable at WooCommerce Customer Register Form"
2318
  msgstr ""
2319
  "Habilitado depois do Formulário de Autenticação do Cliente do WooCommerce"
2320
 
2321
- #: ../admin/social_login.php:674
2322
  #, fuzzy
2323
  msgid ""
2324
  "Integrate Social Login Interface with the customer register form at "
@@ -2327,22 +2398,22 @@ msgstr ""
2327
  "Interface de Autenticação Social será habilitada depois do formulário de "
2328
  "autenticação de cliente na página Minha Conta do WooCommerce"
2329
 
2330
- #: ../admin/social_login.php:681
2331
  msgid "Enable at WooCommerce checkout page"
2332
  msgstr "Habilitado na página de checkout do WooCommerce"
2333
 
2334
- #: ../admin/social_login.php:691
2335
  msgid "Social Login Interface will get enabled at WooCommerce checkout page"
2336
  msgstr ""
2337
  "Interface de Autenticação Social será habilitada página de checkout do "
2338
  "WooCommerce"
2339
 
2340
- #: ../admin/social_login.php:701
2341
  msgid "Auto-approve comments made by Social Login users"
2342
  msgstr ""
2343
  "Aprovação automática de comentários feito pelo usuário de Autenticação Social"
2344
 
2345
- #: ../admin/social_login.php:711
2346
  msgid ""
2347
  "If this option is enabled, and WordPress comment is made by Social Login "
2348
  "user, comment will get approved immediately without keeping in moderation."
@@ -2351,15 +2422,15 @@ msgstr ""
2351
  "usuário de Autenticação social, o comentário será aprovado imediatamente sem "
2352
  "considerações de moderação."
2353
 
2354
- #: ../admin/social_login.php:712
2355
  msgid "Note: This is not related to Facebook comments"
2356
  msgstr "Note: Isto não está relacionado com comentários do Facebook"
2357
 
2358
- #: ../admin/social_login.php:721
2359
  msgid "Enable social avatar"
2360
  msgstr "Habilitar o avatar social"
2361
 
2362
- #: ../admin/social_login.php:731
2363
  msgid ""
2364
  "Social profile pictures of the logged in user will be displayed as profile "
2365
  "avatar"
@@ -2367,30 +2438,30 @@ msgstr ""
2367
  "Fotogragia do perfil social do usuário autenticado será exibido como avatar "
2368
  "do perfil"
2369
 
2370
- #: ../admin/social_login.php:740
2371
  msgid "Avatar quality"
2372
  msgstr "Qualidade do Avatar"
2373
 
2374
- #: ../admin/social_login.php:743
2375
  msgid "Average"
2376
  msgstr "Média"
2377
 
2378
- #: ../admin/social_login.php:744
2379
  msgid "Best"
2380
  msgstr "Melhor"
2381
 
2382
- #: ../admin/social_login.php:751
2383
  msgid "Choose avatar quality"
2384
  msgstr "Escolha a qualidade do avatar"
2385
 
2386
- #: ../admin/social_login.php:759
2387
  msgid ""
2388
  "Show option for users to update social avatar at BuddyPress profile page"
2389
  msgstr ""
2390
  "Exibir opção para os usuários atualizarem o avatar social na página do "
2391
  "perfil do BuddyPress"
2392
 
2393
- #: ../admin/social_login.php:769
2394
  msgid ""
2395
  "If enabled, users would be able to update their social avatar from \"Profile "
2396
  "photo\" section in BuddyPress profile at front-end"
@@ -2398,7 +2469,7 @@ msgstr ""
2398
  "Se habilitado, usuários serão capazes de atualizar seus avatar social pela "
2399
  "seção \\\"Foto do perfil\\\" no front-end do perfil BuddyPress"
2400
 
2401
- #: ../admin/social_login.php:789
2402
  msgid ""
2403
  "If enabled and Social ID provider does not provide user's email address on "
2404
  "login, user will be asked to provide his/her email address. Otherwise, a "
@@ -2408,11 +2479,11 @@ msgstr ""
2408
  "usuário na autenticação, ao usuário será solicitado fornecer seu endereço de "
2409
  "email. Do contrário, um email postiço será gerado"
2410
 
2411
- #: ../admin/social_login.php:797
2412
  msgid "Send post-registration email to user to set account password"
2413
  msgstr ""
2414
 
2415
- #: ../admin/social_login.php:807
2416
  msgid ""
2417
  "If enabled, an email will be sent to user after registration through Social "
2418
  "Login, regarding his/her login credentials (username-password to be able to "
@@ -2422,12 +2493,12 @@ msgstr ""
2422
  "Social, com respeito as credecial do usuário para autenticação (username-"
2423
  "senha para possibilitar a autenticação via formulário tradicional)"
2424
 
2425
- #: ../admin/social_login.php:814
2426
  #, fuzzy
2427
  msgid "Send new user registration notification email to admin"
2428
  msgstr "Desabilitar o registro de usuários via Autenticação Social"
2429
 
2430
- #: ../admin/social_login.php:824
2431
  #, fuzzy
2432
  msgid ""
2433
  "If enabled, an email will be sent to admin after new user registers through "
@@ -2437,40 +2508,40 @@ msgstr ""
2437
  "Social, com respeito as credecial do usuário para autenticação (username-"
2438
  "senha para possibilitar a autenticação via formulário tradicional)"
2439
 
2440
- #: ../admin/social_login.php:831
2441
  msgid "Login redirection"
2442
  msgstr "Redireção de autenticação"
2443
 
2444
- #: ../admin/social_login.php:835
2445
  msgid "Same page where user logged in"
2446
  msgstr "Mesma página onde o usuário autenticou-se"
2447
 
2448
- #: ../admin/social_login.php:839 ../admin/social_login.php:868
2449
  msgid "Account dashboard"
2450
  msgstr "Painel da Conta"
2451
 
2452
- #: ../admin/social_login.php:842 ../admin/social_login.php:871
2453
  msgid "BuddyPress profile page"
2454
  msgstr "Página de perfil BuddyPress"
2455
 
2456
- #: ../admin/social_login.php:845 ../admin/social_login.php:874
2457
  msgid "Custom Url"
2458
  msgstr "Url Personalizada"
2459
 
2460
- #: ../admin/social_login.php:853
2461
  msgid "User will be redirected to the selected page after Social Login"
2462
  msgstr ""
2463
  "O usuário será redirecionado para a página selcionada de Autenticação Soocial"
2464
 
2465
- #: ../admin/social_login.php:860
2466
  msgid "Registration redirection"
2467
  msgstr "Redirecionamento de registro"
2468
 
2469
- #: ../admin/social_login.php:864
2470
  msgid "Same page from where user registered"
2471
  msgstr "Mesma página de onde o usuário se registrou"
2472
 
2473
- #: ../admin/social_login.php:882
2474
  msgid ""
2475
  "User will be redirected to the selected page after registration (first "
2476
  "Social Login) through Social Login"
@@ -2478,23 +2549,23 @@ msgstr ""
2478
  "O usuário será redirecionado para a página selecionada após o registro "
2479
  "(primeira Autenticação Social) através da Autenticação Social"
2480
 
2481
- #: ../admin/social_login.php:891
2482
  #, fuzzy
2483
  msgid "Social Account Linking Options"
2484
  msgstr "Comentário Social"
2485
 
2486
- #: ../admin/social_login.php:906
2487
  #, fuzzy
2488
  msgid "Text to display above the Social Account Linking interface"
2489
  msgstr "Texto exibido acima da interface de Autenticação Social"
2490
 
2491
- #: ../admin/social_login.php:913
2492
  #, fuzzy
2493
  msgid ""
2494
  "Link social account to already existing account, if email address matches"
2495
  msgstr "Associe sua conta social ao login de sua conta neste website"
2496
 
2497
- #: ../admin/social_login.php:923
2498
  msgid ""
2499
  "If email address of the user's Social Account matches with an already "
2500
  "existing account at your website, that social account will be linked to "
@@ -2502,11 +2573,11 @@ msgid ""
2502
  "Linking interface at their profile page."
2503
  msgstr ""
2504
 
2505
- #: ../admin/social_login.php:931
2506
  msgid "Enable social account linking at BuddyPress profile page"
2507
  msgstr "Habilitar conta social associada à página de perfil no BuddyPress"
2508
 
2509
- #: ../admin/social_login.php:941
2510
  msgid ""
2511
  "Enable this option to show social account linking interface at BuddyPress "
2512
  "profile page"
@@ -2514,15 +2585,15 @@ msgstr ""
2514
  "Habilitar estar opção para exibir a conta social associada a página de "
2515
  "interface de perfil do BuddyPress"
2516
 
2517
- #: ../admin/social_login.php:952
2518
  msgid "Email popup options"
2519
  msgstr "Opções de popup de email"
2520
 
2521
- #: ../admin/social_login.php:957
2522
  msgid "Text on 'Email required' popup"
2523
  msgstr "Texto popup de 'Email requerido'"
2524
 
2525
- #: ../admin/social_login.php:967
2526
  msgid ""
2527
  "This text will be displayed on email required popup. Leave empty if not "
2528
  "required."
@@ -2530,11 +2601,11 @@ msgstr ""
2530
  "Este texto será exibido no popup de requisição de email. Deixe em branco se "
2531
  "o email não for requerido."
2532
 
2533
- #: ../admin/social_login.php:975
2534
  msgid "Error message for 'Email required' popup"
2535
  msgstr "Mensagem de erro para popup de 'Email requerido'"
2536
 
2537
- #: ../admin/social_login.php:985
2538
  msgid ""
2539
  "This message will be displayed to user if it provides invalid or already "
2540
  "registered email"
@@ -2542,11 +2613,11 @@ msgstr ""
2542
  "Esta mensagem será exibida para o usuário se ele fornecer um email inválido "
2543
  "ou já registrado"
2544
 
2545
- #: ../admin/social_login.php:993
2546
  msgid "Email popup height"
2547
  msgstr "Altura do popup de email"
2548
 
2549
- #: ../admin/social_login.php:1003
2550
  msgid ""
2551
  "If you are seeing vertical scrollbar in the \"Email required\" popup, you "
2552
  "can increase the height of popup by specifying in this option. Leave empty "
@@ -2556,11 +2627,11 @@ msgstr ""
2556
  "requirido\\\", você pode incrementar a altura do popup através de "
2557
  "especificação nesta opção. Deixe vazio para padrão."
2558
 
2559
- #: ../admin/social_login.php:1010
2560
  msgid "Enable email verification"
2561
  msgstr "Habilitar verificação de email"
2562
 
2563
- #: ../admin/social_login.php:1020
2564
  msgid ""
2565
  "If enabled, email provided by the user will be verified by sending a "
2566
  "confirmation link to that email. User would not be able to login without "
@@ -2570,107 +2641,107 @@ msgstr ""
2570
  "um link de confirmação para aquele email. O usuário não poderá se autenticar "
2571
  "antes de validar seu email"
2572
 
2573
- #: ../admin/social_login.php:1040
2574
  #, fuzzy
2575
  msgid "Enable GDPR opt-in"
2576
  msgstr "Habilitar comentário Disqus"
2577
 
2578
- #: ../admin/social_login.php:1050
2579
  msgid ""
2580
  "Enable it to show GDPR opt-in for social login and social account linking"
2581
  msgstr ""
2582
 
2583
- #: ../admin/social_login.php:1058
2584
  #, fuzzy
2585
  msgid "Placement of GDPR opt-in"
2586
  msgstr "Habilitar comentário Disqus"
2587
 
2588
- #: ../admin/social_login.php:1062
2589
  #, fuzzy
2590
  msgid "Above Social Login icons"
2591
  msgstr "Autenticação Social"
2592
 
2593
- #: ../admin/social_login.php:1064
2594
  #, fuzzy
2595
  msgid "Below Social Login icons"
2596
  msgstr "Autenticação Social"
2597
 
2598
- #: ../admin/social_login.php:1070
2599
  #, fuzzy
2600
  msgid "Placement of GDPR opt-in above or below the social login icons"
2601
  msgstr "Texto exibido acima da interface de Autenticação Social"
2602
 
2603
- #: ../admin/social_login.php:1077
2604
  msgid "Opt-in text"
2605
  msgstr ""
2606
 
2607
- #: ../admin/social_login.php:1087
2608
  #, fuzzy
2609
  msgid "Text for the GDPR opt-in"
2610
  msgstr "Habilitar comentário Disqus"
2611
 
2612
- #: ../admin/social_login.php:1094
2613
  msgid "Text to link to Terms-Conditions page"
2614
  msgstr ""
2615
 
2616
- #: ../admin/social_login.php:1104
2617
  msgid "Word(s) in the opt-in text to be linked to terms-conditions page"
2618
  msgstr ""
2619
 
2620
- #: ../admin/social_login.php:1111
2621
  msgid "Terms-Conditions Url"
2622
  msgstr ""
2623
 
2624
- #: ../admin/social_login.php:1121
2625
  #, fuzzy
2626
  msgid "Url of the terms-conditions page of your website"
2627
  msgstr "Url da homepage do seu website"
2628
 
2629
- #: ../admin/social_login.php:1128
2630
  msgid "Text to link to Privacy Policy page"
2631
  msgstr ""
2632
 
2633
- #: ../admin/social_login.php:1138
2634
  msgid "Word(s) in the opt-in text to be linked to privacy policy page"
2635
  msgstr ""
2636
 
2637
- #: ../admin/social_login.php:1145
2638
  msgid "Privacy Policy Url"
2639
  msgstr ""
2640
 
2641
- #: ../admin/social_login.php:1155
2642
  #, fuzzy
2643
  msgid "Url of the privacy policy page of your website"
2644
  msgstr "Url da homepage do seu website"
2645
 
2646
- #: ../admin/social_login.php:1206 ../inc/widget.php:260 ../inc/widget.php:438
2647
  #: ../inc/widget.php:602 ../inc/widget.php:750
2648
  msgid "Select"
2649
  msgstr "Selecione"
2650
 
2651
- #: ../admin/social_login.php:1237
2652
  msgid "Social Login Shortcode & Widget"
2653
  msgstr "Autenticação Social Shortcode & Widget"
2654
 
2655
- #: ../admin/social_login.php:1238
2656
  msgid "Social Linking Shortcode"
2657
  msgstr "Shortcode de associação Social"
2658
 
2659
- #: ../admin/social_login.php:1253
2660
  msgid "Why is social login not working?"
2661
  msgstr ""
2662
 
2663
- #: ../admin/social_login.php:1254
2664
  msgid ""
2665
  "Make sure that App ID and Secret (Client ID and Secret) keys you have saved, "
2666
  "belong to the same app"
2667
  msgstr ""
2668
 
2669
- #: ../admin/social_login.php:1256
2670
  msgid "Social Login not working with Varnish enabled"
2671
  msgstr ""
2672
 
2673
- #: ../admin/social_login.php:1257
2674
  msgid ""
2675
  "Why the user is not appearing logged in even after Social Login until the "
2676
  "webpage is refreshed manually?"
@@ -2887,28 +2958,28 @@ msgstr "Requisição inválida"
2887
  msgid "Providers not selected"
2888
  msgstr "Provedor não selecionado"
2889
 
2890
- #: ../inc/social_login.php:747
2891
  msgid "Email"
2892
  msgstr ""
2893
 
2894
- #: ../inc/social_login.php:748
2895
  msgid "Confirm email"
2896
  msgstr ""
2897
 
2898
- #: ../inc/social_login.php:750
2899
  msgid "Save"
2900
  msgstr ""
2901
 
2902
- #: ../inc/social_login.php:751
2903
  msgid "Cancel"
2904
  msgstr ""
2905
 
2906
- #: ../inc/social_login.php:825
2907
  #, fuzzy
2908
  msgid "Email Verification"
2909
  msgstr "Habilitar verificação de email"
2910
 
2911
- #: ../inc/social_login.php:827
2912
  msgid ""
2913
  "Please click on the following link or paste it in browser to verify your "
2914
  "email"
2
  msgstr ""
3
  "Project-Id-Version: Super Socializer\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2020-09-23 09:46+0530\n"
6
+ "PO-Revision-Date: 2020-09-23 09:46+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:667
19
  msgid "Problem fetching access token: "
20
  msgstr ""
21
 
22
+ #: ../super_socializer.php:671 ../super_socializer.php:685
23
  msgid "Facebook SDK returned an error: "
24
  msgstr ""
25
 
26
+ #: ../super_socializer.php:681
27
  msgid "Graph returned an error: "
28
  msgstr ""
29
 
30
+ #: ../super_socializer.php:870
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:898
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:901
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:904
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:1086 ../helper.php:961
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:1086
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:1090
76
  msgid "Notification"
77
  msgstr "Notificaçao"
78
 
79
+ #: ../super_socializer.php:1108 ../admin/social_login.php:869
80
  msgid "Email required"
81
  msgstr "Necessário email"
82
 
83
+ #: ../super_socializer.php:1111
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:1180
88
  msgid "Leave a reply"
89
  msgstr "Deixe uma resposta"
90
 
91
+ #: ../super_socializer.php:1196 ../inc/social_sharing.php:241
92
  msgid "Shares"
93
  msgstr ""
94
 
95
+ #: ../super_socializer.php:1196 ../inc/social_sharing.php:241
96
  msgid "Share"
97
  msgstr ""
98
 
99
+ #: ../super_socializer.php:1196
100
  #, fuzzy
101
  msgid "Link copied."
102
  msgstr "LinkedIn"
103
 
104
+ #: ../super_socializer.php:1441
105
  msgid "Super Socializer - General Options"
106
  msgstr "Super Socializer - Opções Gerais"
107
 
108
+ #: ../super_socializer.php:1441 ../admin/general_options.php:15
109
  #: ../admin/social_commenting.php:47
110
  msgid "General Options"
111
  msgstr "Opções Gerais"
112
 
113
+ #: ../super_socializer.php:1509 ../helper.php:883
114
  msgid "Social Avatar"
115
  msgstr "Avatar Social"
116
 
117
+ #: ../super_socializer.php:1512
118
  msgid "Small Avatar Url"
119
  msgstr "Url para Avatar pequeno"
120
 
121
+ #: ../super_socializer.php:1516
122
  msgid "Large Avatar Url"
123
  msgstr "Url para Avatar Grande"
124
 
125
+ #: ../super_socializer.php:1520 ../helper.php:886
126
  msgid ""
127
  "Do not fetch and update social avatar from my profile, next time I Social "
128
  "Login"
130
  "Não busque ou atualize o avatar social do meu perfil, na próxima vez farei a "
131
  "Autenticação Social"
132
 
133
+ #: ../super_socializer.php:1524 ../helper.php:887
134
  msgid "Update social avatar, next time I Social Login"
135
  msgstr "Atualize o avatar social, na próxima vez farei a Autenticação Social"
136
 
137
+ #: ../super_socializer.php:1601
138
  msgid "Login with your Social ID"
139
  msgstr ""
140
 
141
+ #: ../super_socializer.php:1602
142
  msgid "Email you entered is already registered or invalid"
143
  msgstr "Email fornecido já está registrado ou é inválido"
144
 
145
+ #: ../super_socializer.php:1607
146
  msgid "Please enter a valid email address. You might be required to verify it"
147
  msgstr ""
148
  "Por favor forneça um endereço de email válido. Você pode ser solicitado a "
149
  "confirmá-lo"
150
 
151
+ #: ../super_socializer.php:1611 ../super_socializer.php:2309
152
  msgid "Link your social account to login to your account at this website"
153
  msgstr "Associe sua conta social ao login de sua conta neste website"
154
 
155
+ #: ../super_socializer.php:1851
156
  msgid "Thanks for installing Super Socializer plugin"
157
  msgstr ""
158
 
159
+ #: ../super_socializer.php:1853
160
  msgid "Configure the Plugin"
161
  msgstr ""
162
 
163
+ #: ../super_socializer.php:1864
164
  msgid ""
165
  "Update \"Facebook Comments Moderation\" add-on for compatibility with "
166
  "current version of Super Socializer"
167
  msgstr ""
168
 
169
+ #: ../super_socializer.php:1873
170
  msgid ""
171
  "Update \"Facebook Comments Notifier\" add-on for compatibility with current "
172
  "version of Super Socializer"
173
  msgstr ""
174
 
175
+ #: ../super_socializer.php:1882
176
  msgid ""
177
  "Update \"Social Login Buttons\" add-on for compatibility with current "
178
  "version of Super Socializer"
179
  msgstr ""
180
 
181
+ #: ../super_socializer.php:1891
182
  msgid ""
183
  "Update \"Social Share myCRED Integration\" add-on for maximum compatibility "
184
  "with current version of Super Socializer"
185
  msgstr ""
186
 
187
+ #: ../super_socializer.php:1900
188
  msgid ""
189
  "Update \"Social Login myCRED Integration\" add-on for maximum compatibility "
190
  "with current version of Super Socializer"
191
  msgstr ""
192
 
193
+ #: ../super_socializer.php:1911
194
  #, php-format
195
  msgid ""
196
  "To continue using Steam login save Steam API key <a href=\"%s\">here</a>"
197
  msgstr ""
198
 
199
+ #: ../super_socializer.php:1920
200
  #, php-format
201
  msgid ""
202
  "To continue using Instagram login create a new Instagram App as described <a "
204
  "Instagram App Secret <a href=\"%s\">here</a>"
205
  msgstr ""
206
 
207
+ #: ../super_socializer.php:1929 ../super_socializer.php:1938
208
  #, php-format
209
  msgid ""
210
  "To continue using bitly url shortener, login to your bit.ly account and "
213
  "\">here</a>. More details at the <a href=\"%s\" target=\"_blank\">link</a>"
214
  msgstr ""
215
 
216
+ #: ../super_socializer.php:1954
217
  #, php-format
218
  msgid ""
219
  "To continue using Social Login, save the secret keys <a href=\"%s\">here</a>"
220
  msgstr ""
221
 
222
+ #: ../super_socializer.php:1978
223
  #, php-format
224
  msgid ""
225
  "Add %s in \"Valid OAuth redirect URIs\" option in your Facebook app settings "
227
  "target=\"_blank\">here</a>"
228
  msgstr ""
229
 
230
+ #: ../super_socializer.php:1978 ../super_socializer.php:2003
231
+ #: ../super_socializer.php:2028 ../super_socializer.php:2053
232
+ #: ../super_socializer.php:2086 ../super_socializer.php:2114
233
+ #: ../super_socializer.php:2141
234
  msgid "Okay"
235
  msgstr ""
236
 
237
+ #: ../super_socializer.php:2003
238
  #, php-format
239
  msgid ""
240
  "Add %s in \"Callback URLs\" option in your Twitter app settings for Twitter "
242
  "\">here</a>"
243
  msgstr ""
244
 
245
+ #: ../super_socializer.php:2028
246
  #, php-format
247
  msgid ""
248
  "Add %s in \"Authorized Redirect URLs\" option in your Linkedin app settings "
250
  "target=\"_blank\">here</a>"
251
  msgstr ""
252
 
253
+ #: ../super_socializer.php:2053
254
  #, php-format
255
  msgid ""
256
  "Add %s in \"Authorized redirect URIs\" option in your Google client settings "
258
  "target=\"_blank\">here</a>"
259
  msgstr ""
260
 
261
+ #: ../super_socializer.php:2064
262
  #, php-format
263
  msgid ""
264
  "Save the url of privacy policy page of your website <a href=\"%s\">here</a>"
265
  msgstr ""
266
 
267
+ #: ../super_socializer.php:2086
268
  #, php-format
269
  msgid ""
270
  "This plugin is GDPR compliant. You need to update the privacy policy of your "
272
  "\"%s\" target=\"_blank\">here</a>"
273
  msgstr ""
274
 
275
+ #: ../super_socializer.php:2114
276
  #, php-format
277
  msgid ""
278
  "Now plugin supports a new service Twitcount.com to show Twitter shares. To "
281
  "your website %s with them. No need to copy-paste any code from their website."
282
  msgstr ""
283
 
284
+ #: ../super_socializer.php:2141
285
  #, php-format
286
  msgid ""
287
  "Replace url saved in \"Callback URLs\" option in your Twitter app settings "
289
  "\"%s\" target=\"_blank\">here</a>"
290
  msgstr ""
291
 
292
+ #: ../super_socializer.php:2166
293
  #, php-format
294
  msgid ""
295
  "If you cannot get Linkedin login to work after updating the plugin, replace "
297
  "For more details, check step 6 <a href=\"%s\" target=\"_blank\">here</a>"
298
  msgstr ""
299
 
300
+ #: ../super_socializer.php:2166 ../super_socializer.php:2193
301
  msgid "Dismiss"
302
  msgstr ""
303
 
304
+ #: ../super_socializer.php:2192
305
  #, php-format
306
  msgid ""
307
  "Save Facebook App ID and Secret keys in \"Standard Interface\" and/or "
310
  "that, clear share counts cache from \"Miscellaneous\" section"
311
  msgstr ""
312
 
313
+ #: ../super_socializer.php:2385
314
  msgid ""
315
  "Your browser is blocking some features of this website. Please follow the "
316
  "instructions at {support_url} to unblock these."
413
 
414
  #: ../helper.php:898 ../admin/general_options.php:89
415
  #: ../admin/social_sharing.php:1944 ../admin/social_commenting.php:400
416
+ #: ../admin/social_login.php:1359 ../admin/like_buttons.php:780
417
  msgid "Save Changes"
418
  msgstr "Salvar Alterações"
419
 
437
  #: ../admin/general_options.php:7 ../admin/general_options.php:93
438
  #: ../admin/social_sharing.php:5 ../admin/social_sharing.php:1948
439
  #: ../admin/social_commenting.php:5 ../admin/social_commenting.php:404
440
+ #: ../admin/social_login.php:5 ../admin/social_login.php:1363
441
  #: ../admin/like_buttons.php:6 ../admin/like_buttons.php:784
442
  #, fuzzy, php-format
443
  msgid ""
493
  "style&gt; )"
494
 
495
  #: ../admin/general_options.php:103 ../admin/social_sharing.php:1954
496
+ #: ../admin/social_commenting.php:410 ../admin/social_login.php:1369
497
  #: ../admin/like_buttons.php:790
498
  #, fuzzy
499
  msgid "Instagram Shoutout"
500
  msgstr "Instagram"
501
 
502
  #: ../admin/general_options.php:105 ../admin/social_sharing.php:1956
503
+ #: ../admin/social_commenting.php:412 ../admin/social_login.php:1371
504
  #: ../admin/like_buttons.php:792
505
  msgid ""
506
  "If you can send (to hello@heateor.com) how this plugin is helping your "
639
 
640
  #: ../admin/social_sharing.php:67 ../admin/social_sharing.php:1869
641
  #: ../admin/social_sharing.php:1871 ../admin/social_login.php:45
642
+ #: ../admin/social_login.php:1325 ../admin/like_buttons.php:50
643
  #: ../admin/like_buttons.php:751
644
  msgid "Shortcode & Widget"
645
  msgstr "Shortcode & Widget"
650
 
651
  #: ../admin/social_sharing.php:69 ../admin/social_sharing.php:1902
652
  #: ../admin/social_commenting.php:40 ../admin/social_commenting.php:384
653
+ #: ../admin/social_login.php:46 ../admin/social_login.php:1339
654
  #: ../admin/like_buttons.php:51 ../admin/like_buttons.php:764
655
  msgid "FAQ"
656
  msgstr "P&R"
883
  msgid "Url to share"
884
  msgstr "Url para compartilhar"
885
 
886
+ #: ../admin/social_sharing.php:725 ../admin/social_login.php:610
887
+ #: ../admin/social_login.php:986 ../admin/like_buttons.php:105
888
  #: ../inc/widget.php:945
889
  msgid "Title"
890
  msgstr "Título"
973
  msgstr "Localização"
974
 
975
  #: ../admin/social_sharing.php:957 ../admin/social_sharing.php:1383
976
+ #: ../admin/social_login.php:927 ../admin/social_login.php:956
977
  #: ../admin/like_buttons.php:218 ../admin/like_buttons.php:494
978
  msgid "Homepage"
979
  msgstr "Homepage"
1252
  msgid "Required only to track Facebook share count"
1253
  msgstr ""
1254
 
1255
+ #: ../admin/social_sharing.php:1584 ../admin/social_login.php:158
1256
  msgid "Facebook App ID"
1257
  msgstr "Facebook App ID"
1258
 
1266
  "a documentação em <a href=\\\"%s\\\" target=\\\"_blank\\\">neste link</a> "
1267
  "para obter o Facebook App ID"
1268
 
1269
+ #: ../admin/social_sharing.php:1601 ../admin/social_login.php:179
1270
  #, fuzzy
1271
  msgid "Facebook App Secret"
1272
  msgstr "Facebook App ID"
1457
  "website:"
1458
 
1459
  #: ../admin/social_sharing.php:1904 ../admin/social_commenting.php:386
1460
+ #: ../admin/social_login.php:1341
1461
  msgid ""
1462
  "<strong>Note:</strong> Plugin will not work on local server. You should have "
1463
  "an online website for the plugin to function properly."
1514
  msgstr ""
1515
 
1516
  #: ../admin/social_sharing.php:1919 ../admin/social_commenting.php:389
1517
+ #: ../admin/social_login.php:1348
1518
  msgid "Why is my browser blocking some features of the plugin?"
1519
  msgstr ""
1520
 
1838
  msgid "Advanced Configuration"
1839
  msgstr "Configuração Básica"
1840
 
1841
+ #: ../admin/social_login.php:41 ../admin/social_login.php:1125
1842
  msgid "GDPR"
1843
  msgstr ""
1844
 
1845
+ #: ../admin/social_login.php:43 ../admin/social_login.php:1276
1846
  msgid "XProfile Integration"
1847
  msgstr ""
1848
 
1912
  msgstr ""
1913
 
1914
  #: ../admin/social_login.php:135
1915
+ msgid "Wordpress"
1916
+ msgstr ""
1917
+
1918
+ #: ../admin/social_login.php:139
1919
  msgid "Windows Live"
1920
  msgstr ""
1921
 
1922
  #: ../admin/social_login.php:143
1923
+ msgid "Yahoo"
1924
+ msgstr ""
1925
+
1926
+ #: ../admin/social_login.php:151
1927
  msgid "Select Social ID provider to enable in Social Login"
1928
  msgstr ""
1929
  "Selecione o provedor Social pelo seu ID para habilitar a autenticação social"
1930
 
1931
+ #: ../admin/social_login.php:168
1932
  #, php-format
1933
  msgid ""
1934
  "Required for Facebook Social Login to work. Please follow the documentation "
1938
  "a documentação em <a href=\\\"%s\\\" target=\\\"_blank\\\">neste link</a> "
1939
  "para obter o Facebook App ID"
1940
 
1941
+ #: ../admin/social_login.php:170 ../admin/social_login.php:191
1942
  #, fuzzy
1943
  msgid ""
1944
  "Paste following url in <strong>Site URL</strong> option mentioned at the link"
1945
  msgstr ""
1946
  "Cole a seguinte opção de url <strong>Site URL</strong> no link mencionado"
1947
 
1948
+ #: ../admin/social_login.php:189
1949
  #, fuzzy, php-format
1950
  msgid ""
1951
  "Required for Facebook Social Login to work. Please follow the documentation "
1955
  "a documentação em <a href=\\\"%s\\\" target=\\\"_blank\\\">neste link</a> "
1956
  "para obter o Facebook App ID"
1957
 
1958
+ #: ../admin/social_login.php:200
1959
  msgid "Twitter API Key"
1960
  msgstr "Twitter API Key"
1961
 
1962
+ #: ../admin/social_login.php:210
1963
  #, php-format
1964
  msgid ""
1965
  "Required for Twitter Social Login to work. Please follow the documentation "
1969
  "documentação <a href=\\\"%s\\\" target=\\\"_blank\\\">neste link link</a> "
1970
  "para obter Twitter API Key"
1971
 
1972
+ #: ../admin/social_login.php:212 ../admin/social_login.php:237
1973
  #, fuzzy
1974
  msgid ""
1975
  "Paste following url in <strong>Website</strong> option mentioned at the link"
1976
  msgstr ""
1977
  "Cole na opção da url em <strong>Website URL</strong> no link mencionado"
1978
 
1979
+ #: ../admin/social_login.php:216 ../admin/social_login.php:241
1980
+ #: ../admin/social_login.php:429 ../admin/social_login.php:449
1981
+ #: ../admin/social_login.php:469 ../admin/social_login.php:489
1982
  #, fuzzy
1983
  msgid ""
1984
  "Paste following url in <strong>Callback URL</strong> option mentioned at the "
1987
  "Cole a seguinte opção de url <strong>Callback domain</strong> para o link "
1988
  "mencionado"
1989
 
1990
+ #: ../admin/social_login.php:225
1991
  msgid "Twitter API Secret"
1992
  msgstr "Segredo API Twitter"
1993
 
1994
+ #: ../admin/social_login.php:235
1995
  #, php-format
1996
  msgid ""
1997
  "Required for Twitter Social Login to work. Please follow the documentation "
2001
  "documentação <a href=\\\"%s\\\" target=\\\"_blank\\\">neste link</a> para "
2002
  "obter o segredo da API Twitter"
2003
 
2004
+ #: ../admin/social_login.php:250
2005
  #, fuzzy
2006
  msgid "LinkedIn Client ID"
2007
  msgstr "LinkedIn"
2008
 
2009
+ #: ../admin/social_login.php:260
2010
  #, fuzzy, php-format
2011
  msgid ""
2012
  "Required for LinkedIn Social Login to work. Please follow the documentation "
2016
  "documentação <a href=\\\"%s\\\" target=\\\"_blank\\\">neste link</a> para "
2017
  "obeter API Key do LinkedIn"
2018
 
2019
+ #: ../admin/social_login.php:262 ../admin/social_login.php:283
2020
  #, fuzzy
2021
  msgid ""
2022
  "Paste following url in <strong>Redirect URLs</strong> option mentioned at "
2024
  msgstr ""
2025
  "Cole a seguinte opção de url <strong>Site URL</strong> no link mencionado"
2026
 
2027
+ #: ../admin/social_login.php:271
2028
  #, fuzzy
2029
  msgid "LinkedIn Client Secret"
2030
  msgstr "LinkedIn"
2031
 
2032
+ #: ../admin/social_login.php:281
2033
  #, fuzzy, php-format
2034
  msgid ""
2035
  "Required for LinkedIn Social Login to work. Please follow the documentation "
2040
  "documentação <a href=\\\"%s\\\" target=\\\"_blank\\\">neste link</a> para "
2041
  "obeter API Key do LinkedIn"
2042
 
2043
+ #: ../admin/social_login.php:292
2044
  #, fuzzy
2045
  msgid "Google Client ID"
2046
  msgstr "Google+ Client ID"
2047
 
2048
+ #: ../admin/social_login.php:302
2049
  #, fuzzy, php-format
2050
  msgid ""
2051
  "Required for Google Social Login to work. Please follow the documentation at "
2055
  "documentação <a href=\\\"%s\\\" target=\\\"_blank\\\">neste link</a> para "
2056
  "obter o GooglePlus Client ID"
2057
 
2058
+ #: ../admin/social_login.php:304 ../admin/social_login.php:325
2059
  #, fuzzy
2060
  msgid ""
2061
  "Paste following url in <strong>AUTHORIZED REDIRECT URI</strong> option "
2063
  msgstr ""
2064
  "Cole a seguinte opção de url <strong>Site URL</strong> no link mencionado"
2065
 
2066
+ #: ../admin/social_login.php:313
2067
  #, fuzzy
2068
  msgid "Google Client Secret"
2069
  msgstr "Google+ Client ID"
2070
 
2071
+ #: ../admin/social_login.php:323
2072
  #, fuzzy, php-format
2073
  msgid ""
2074
  "Required for Google Social Login to work. Please follow the documentation at "
2078
  "documentação <a href=\\\"%s\\\" target=\\\"_blank\\\">neste link</a> para "
2079
  "obter o GooglePlus Client ID"
2080
 
2081
+ #: ../admin/social_login.php:334
2082
  msgid "Vkontakte Application ID"
2083
  msgstr "Vkontakte Application ID"
2084
 
2085
+ #: ../admin/social_login.php:344 ../admin/social_login.php:365
2086
  #, php-format
2087
  msgid ""
2088
  "Required for Vkontakte Social Login to work. Please follow the documentation "
2093
  "documentação <a href=\\\"%s\\\" target=\\\"_blank\\\">neste link</a> para "
2094
  "obter Vkontakte Application ID"
2095
 
2096
+ #: ../admin/social_login.php:346 ../admin/social_login.php:367
2097
  #, fuzzy
2098
  msgid ""
2099
  "Paste following url in <strong>Site address</strong> option mentioned at the "
2101
  msgstr ""
2102
  "Cole a seguinte url em <strong>Site address</strong> no link mencionado"
2103
 
2104
+ #: ../admin/social_login.php:355
2105
  #, fuzzy
2106
  msgid "Vkontakte Secure key"
2107
  msgstr "Vkontakte"
2108
 
2109
+ #: ../admin/social_login.php:376
2110
  #, fuzzy
2111
  msgid "Instagram App ID"
2112
  msgstr "Instagram Client ID"
2113
 
2114
+ #: ../admin/social_login.php:386
2115
  #, fuzzy, php-format
2116
  msgid ""
2117
  "Required for Instagram Social Login to work. Please follow the documentation "
2121
  "documentação <a href=\\\"%s\\\" target=\\\"_blank\\\">neste link</a> para "
2122
  "obter Instagram Client ID"
2123
 
2124
+ #: ../admin/social_login.php:388 ../admin/social_login.php:409
2125
  #, fuzzy
2126
  msgid ""
2127
  "Paste following url in <strong>Valid OAuth Redirect URIs</strong> option "
2129
  msgstr ""
2130
  "Cole a seguinte opção de url <strong>Site URL</strong> no link mencionado"
2131
 
2132
+ #: ../admin/social_login.php:397
2133
  #, fuzzy
2134
  msgid "Instagram App Secret"
2135
  msgstr "Instagram"
2136
 
2137
+ #: ../admin/social_login.php:407
2138
  #, fuzzy, php-format
2139
  msgid ""
2140
  "Required for Instagram Social Login to work. Please follow the documentation "
2144
  "documentação <a href=\\\"%s\\\" target=\\\"_blank\\\">neste link</a> para "
2145
  "obter Instagram Client ID"
2146
 
2147
+ #: ../admin/social_login.php:418
2148
  msgid "Line Channel ID"
2149
  msgstr ""
2150
 
2151
+ #: ../admin/social_login.php:427
2152
  #, fuzzy, php-format
2153
  msgid ""
2154
  "Required for Line Social Login to work. Please follow the documentation at "
2158
  "documentação <a href=\\\"%s\\\" target=\\\"_blank\\\">neste link</a> para "
2159
  "obeter API Key do LinkedIn"
2160
 
2161
+ #: ../admin/social_login.php:438
2162
  #, fuzzy
2163
  msgid "Line Channel Secret"
2164
  msgstr "LinkedIn"
2165
 
2166
+ #: ../admin/social_login.php:447
2167
  #, fuzzy, php-format
2168
  msgid ""
2169
  "Required for Line Social Login to work. Please follow the documentation at "
2173
  "documentação <a href=\\\"%s\\\" target=\\\"_blank\\\">neste link</a> para "
2174
  "obeter API Key do LinkedIn"
2175
 
2176
+ #: ../admin/social_login.php:458
2177
+ #, fuzzy
2178
+ msgid "Wordpress Client ID"
2179
+ msgstr "Google+ Client ID"
2180
+
2181
+ #: ../admin/social_login.php:467
2182
+ #, fuzzy, php-format
2183
+ msgid ""
2184
+ "Required for Wordpress Social Login to work. Please follow the documentation "
2185
+ "at <a href=\"%s\" target=\"_blank\">this link</a> to get Wordpress Client ID"
2186
+ msgstr ""
2187
+ "Requirido para Autenticação Social GooglePlus funcionar. Por favor siga a "
2188
+ "documentação <a href=\\\"%s\\\" target=\\\"_blank\\\">neste link</a> para "
2189
+ "obter o GooglePlus Client ID"
2190
+
2191
+ #: ../admin/social_login.php:478
2192
+ #, fuzzy
2193
+ msgid "Wordpress Client Secret"
2194
+ msgstr "Google+ Client ID"
2195
+
2196
+ #: ../admin/social_login.php:487
2197
+ #, fuzzy, php-format
2198
+ msgid ""
2199
+ "Required for Wordpress Social Login to work. Please follow the documentation "
2200
+ "at <a href=\"%s\" target=\"_blank\">this link</a> to get Wordpress Client "
2201
+ "Secret"
2202
+ msgstr ""
2203
+ "Requirido para Autenticação Social GooglePlus funcionar. Por favor siga a "
2204
+ "documentação <a href=\\\"%s\\\" target=\\\"_blank\\\">neste link</a> para "
2205
+ "obter o GooglePlus Client ID"
2206
+
2207
+ #: ../admin/social_login.php:498
2208
  #, fuzzy
2209
  msgid "Microsoft Client ID"
2210
  msgstr "Google+ Client ID"
2211
 
2212
+ #: ../admin/social_login.php:507
2213
  #, fuzzy, php-format
2214
  msgid ""
2215
  "Required for Live Social Login to work. Please follow the documentation at "
2219
  "documentação <a href=\\\"%s\\\" target=\\\"_blank\\\">neste link</a> para "
2220
  "obter o GooglePlus Client ID"
2221
 
2222
+ #: ../admin/social_login.php:509 ../admin/social_login.php:529
2223
+ #: ../admin/social_login.php:567 ../admin/social_login.php:587
2224
  #, fuzzy
2225
  msgid ""
2226
  "Paste following url in <strong>Redirect URIs</strong> option mentioned at "
2228
  msgstr ""
2229
  "Cole a seguinte opção de url <strong>Site URL</strong> no link mencionado"
2230
 
2231
+ #: ../admin/social_login.php:518
2232
  #, fuzzy
2233
  msgid "Microsoft Client Secret"
2234
  msgstr "Google+ Client ID"
2235
 
2236
+ #: ../admin/social_login.php:527
2237
  #, fuzzy, php-format
2238
  msgid ""
2239
  "Required for Live Social Login to work. Please follow the documentation at "
2244
  "documentação <a href=\\\"%s\\\" target=\\\"_blank\\\">neste link</a> para "
2245
  "obter o GooglePlus Client ID"
2246
 
2247
+ #: ../admin/social_login.php:537
2248
  #, fuzzy
2249
  msgid "Steam API Key"
2250
  msgstr "Twitter API Key"
2251
 
2252
+ #: ../admin/social_login.php:546
2253
  #, fuzzy, php-format
2254
  msgid ""
2255
  "Required for Steam Social Login to work. Get it at <a href=\"%s\" target="
2259
  "documentação <a href=\\\"%s\\\" target=\\\"_blank\\\">neste link link</a> "
2260
  "para obter Twitter API Key"
2261
 
2262
+ #: ../admin/social_login.php:547
2263
  #, fuzzy
2264
  msgid "Save following <strong>domain</strong> to get the key"
2265
  msgstr ""
2266
  "Cole a seguinte opção de url <strong>Callback domain</strong> para o link "
2267
  "mencionado"
2268
 
2269
+ #: ../admin/social_login.php:556
2270
+ #, fuzzy
2271
+ msgid "Yahoo Client ID"
2272
+ msgstr "Google+ Client ID"
2273
+
2274
+ #: ../admin/social_login.php:565
2275
+ #, fuzzy, php-format
2276
+ msgid ""
2277
+ "Required for Yahoo Social Login to work. Please follow the documentation at "
2278
+ "<a href=\"%s\" target=\"_blank\">this link</a> to get Yahoo Client ID"
2279
+ msgstr ""
2280
+ "Requirido para Autenticação Social GooglePlus funcionar. Por favor siga a "
2281
+ "documentação <a href=\\\"%s\\\" target=\\\"_blank\\\">neste link</a> para "
2282
+ "obter o GooglePlus Client ID"
2283
+
2284
+ #: ../admin/social_login.php:576
2285
+ #, fuzzy
2286
+ msgid "Yahoo Client Secret"
2287
+ msgstr "Google+ Client ID"
2288
+
2289
+ #: ../admin/social_login.php:585
2290
+ #, fuzzy, php-format
2291
+ msgid ""
2292
+ "Required for Yahoo Social Login to work. Please follow the documentation at "
2293
+ "<a href=\"%s\" target=\"_blank\">this link</a> to get Yahoo Client Secret key"
2294
+ msgstr ""
2295
+ "Requirido para Autenticação Social GooglePlus funcionar. Por favor siga a "
2296
+ "documentação <a href=\\\"%s\\\" target=\\\"_blank\\\">neste link</a> para "
2297
+ "obter o GooglePlus Client ID"
2298
+
2299
+ #: ../admin/social_login.php:605
2300
  #, fuzzy
2301
  msgid "Social Login Options"
2302
  msgstr "Autenticação Social"
2303
 
2304
+ #: ../admin/social_login.php:620
2305
  msgid "Text to display above the Social Login interface"
2306
  msgstr "Texto exibido acima da interface de Autenticação Social"
2307
 
2308
+ #: ../admin/social_login.php:628
2309
  msgid "Trigger social login in the same browser tab"
2310
  msgstr ""
2311
 
2312
+ #: ../admin/social_login.php:638
2313
  msgid "Trigger social login in the same browser tab instead of a popup window"
2314
  msgstr ""
2315
 
2316
+ #: ../admin/social_login.php:645
2317
  #, fuzzy
2318
  msgid "Center align icons"
2319
  msgstr "Rearranjar ícones"
2320
 
2321
+ #: ../admin/social_login.php:655
2322
  #, fuzzy
2323
  msgid "Center align social login icons"
2324
  msgstr "Autenticação Social"
2325
 
2326
+ #: ../admin/social_login.php:662
2327
  msgid "Enable at login page"
2328
  msgstr "Habilia a página de autenticação"
2329
 
2330
+ #: ../admin/social_login.php:672
2331
  msgid ""
2332
  "Social Login interface will get enabled at the login page of your website"
2333
  msgstr ""
2334
  "Interface de Autenticação Social será habilitada na página de autenticação "
2335
  "do seu website"
2336
 
2337
+ #: ../admin/social_login.php:679
2338
  msgid "Enable at register page"
2339
  msgstr "Habilitar página de registro"
2340
 
2341
+ #: ../admin/social_login.php:689
2342
  msgid ""
2343
  "Social Login interface will get enabled at the registration page of your "
2344
  "website"
2346
  "Interface de Autenticação Social será habilitada na página de registro de "
2347
  "seu website"
2348
 
2349
+ #: ../admin/social_login.php:696
2350
  msgid "Enable at comment form"
2351
  msgstr "Habilitar no formulário de comentário"
2352
 
2353
+ #: ../admin/social_login.php:706
2354
  msgid "Social Login interface will get enabled at your Wordpress Comment form"
2355
  msgstr ""
2356
  "Interface de Autenticação Social será habilitada em seu formulário de "
2357
  "comentários Wordpress"
2358
 
2359
+ #: ../admin/social_login.php:720
2360
  msgid "Enable before WooCommerce Customer Login Form"
2361
  msgstr "Habilido antes do formulário de autenticação do WooCommerce"
2362
 
2363
+ #: ../admin/social_login.php:730
2364
  msgid ""
2365
  "Social Login Interface will get enabled before the customer login form at "
2366
  "WooCommerce My Account page"
2368
  "Interface de Autenticação Social será habilitada antes do formulário de "
2369
  "autenticação de cliente na página Minha Conta do WooCommerce"
2370
 
2371
+ #: ../admin/social_login.php:737
2372
  #, fuzzy
2373
  msgid "Enable at WooCommerce Customer Login Form"
2374
  msgstr ""
2375
  "Habilitado depois do Formulário de Autenticação do Cliente do WooCommerce"
2376
 
2377
+ #: ../admin/social_login.php:747
2378
  #, fuzzy
2379
  msgid ""
2380
  "Integrate Social Login Interface with the customer login form at WooCommerce "
2383
  "Interface de Autenticação Social será habilitada depois do formulário de "
2384
  "autenticação de cliente na página Minha Conta do WooCommerce"
2385
 
2386
+ #: ../admin/social_login.php:754
2387
  #, fuzzy
2388
  msgid "Enable at WooCommerce Customer Register Form"
2389
  msgstr ""
2390
  "Habilitado depois do Formulário de Autenticação do Cliente do WooCommerce"
2391
 
2392
+ #: ../admin/social_login.php:764
2393
  #, fuzzy
2394
  msgid ""
2395
  "Integrate Social Login Interface with the customer register form at "
2398
  "Interface de Autenticação Social será habilitada depois do formulário de "
2399
  "autenticação de cliente na página Minha Conta do WooCommerce"
2400
 
2401
+ #: ../admin/social_login.php:771
2402
  msgid "Enable at WooCommerce checkout page"
2403
  msgstr "Habilitado na página de checkout do WooCommerce"
2404
 
2405
+ #: ../admin/social_login.php:781
2406
  msgid "Social Login Interface will get enabled at WooCommerce checkout page"
2407
  msgstr ""
2408
  "Interface de Autenticação Social será habilitada página de checkout do "
2409
  "WooCommerce"
2410
 
2411
+ #: ../admin/social_login.php:791
2412
  msgid "Auto-approve comments made by Social Login users"
2413
  msgstr ""
2414
  "Aprovação automática de comentários feito pelo usuário de Autenticação Social"
2415
 
2416
+ #: ../admin/social_login.php:801
2417
  msgid ""
2418
  "If this option is enabled, and WordPress comment is made by Social Login "
2419
  "user, comment will get approved immediately without keeping in moderation."
2422
  "usuário de Autenticação social, o comentário será aprovado imediatamente sem "
2423
  "considerações de moderação."
2424
 
2425
+ #: ../admin/social_login.php:802
2426
  msgid "Note: This is not related to Facebook comments"
2427
  msgstr "Note: Isto não está relacionado com comentários do Facebook"
2428
 
2429
+ #: ../admin/social_login.php:811
2430
  msgid "Enable social avatar"
2431
  msgstr "Habilitar o avatar social"
2432
 
2433
+ #: ../admin/social_login.php:821
2434
  msgid ""
2435
  "Social profile pictures of the logged in user will be displayed as profile "
2436
  "avatar"
2438
  "Fotogragia do perfil social do usuário autenticado será exibido como avatar "
2439
  "do perfil"
2440
 
2441
+ #: ../admin/social_login.php:830
2442
  msgid "Avatar quality"
2443
  msgstr "Qualidade do Avatar"
2444
 
2445
+ #: ../admin/social_login.php:833
2446
  msgid "Average"
2447
  msgstr "Média"
2448
 
2449
+ #: ../admin/social_login.php:834
2450
  msgid "Best"
2451
  msgstr "Melhor"
2452
 
2453
+ #: ../admin/social_login.php:841
2454
  msgid "Choose avatar quality"
2455
  msgstr "Escolha a qualidade do avatar"
2456
 
2457
+ #: ../admin/social_login.php:849
2458
  msgid ""
2459
  "Show option for users to update social avatar at BuddyPress profile page"
2460
  msgstr ""
2461
  "Exibir opção para os usuários atualizarem o avatar social na página do "
2462
  "perfil do BuddyPress"
2463
 
2464
+ #: ../admin/social_login.php:859
2465
  msgid ""
2466
  "If enabled, users would be able to update their social avatar from \"Profile "
2467
  "photo\" section in BuddyPress profile at front-end"
2469
  "Se habilitado, usuários serão capazes de atualizar seus avatar social pela "
2470
  "seção \\\"Foto do perfil\\\" no front-end do perfil BuddyPress"
2471
 
2472
+ #: ../admin/social_login.php:879
2473
  msgid ""
2474
  "If enabled and Social ID provider does not provide user's email address on "
2475
  "login, user will be asked to provide his/her email address. Otherwise, a "
2479
  "usuário na autenticação, ao usuário será solicitado fornecer seu endereço de "
2480
  "email. Do contrário, um email postiço será gerado"
2481
 
2482
+ #: ../admin/social_login.php:887
2483
  msgid "Send post-registration email to user to set account password"
2484
  msgstr ""
2485
 
2486
+ #: ../admin/social_login.php:897
2487
  msgid ""
2488
  "If enabled, an email will be sent to user after registration through Social "
2489
  "Login, regarding his/her login credentials (username-password to be able to "
2493
  "Social, com respeito as credecial do usuário para autenticação (username-"
2494
  "senha para possibilitar a autenticação via formulário tradicional)"
2495
 
2496
+ #: ../admin/social_login.php:904
2497
  #, fuzzy
2498
  msgid "Send new user registration notification email to admin"
2499
  msgstr "Desabilitar o registro de usuários via Autenticação Social"
2500
 
2501
+ #: ../admin/social_login.php:914
2502
  #, fuzzy
2503
  msgid ""
2504
  "If enabled, an email will be sent to admin after new user registers through "
2508
  "Social, com respeito as credecial do usuário para autenticação (username-"
2509
  "senha para possibilitar a autenticação via formulário tradicional)"
2510
 
2511
+ #: ../admin/social_login.php:921
2512
  msgid "Login redirection"
2513
  msgstr "Redireção de autenticação"
2514
 
2515
+ #: ../admin/social_login.php:925
2516
  msgid "Same page where user logged in"
2517
  msgstr "Mesma página onde o usuário autenticou-se"
2518
 
2519
+ #: ../admin/social_login.php:929 ../admin/social_login.php:958
2520
  msgid "Account dashboard"
2521
  msgstr "Painel da Conta"
2522
 
2523
+ #: ../admin/social_login.php:932 ../admin/social_login.php:961
2524
  msgid "BuddyPress profile page"
2525
  msgstr "Página de perfil BuddyPress"
2526
 
2527
+ #: ../admin/social_login.php:935 ../admin/social_login.php:964
2528
  msgid "Custom Url"
2529
  msgstr "Url Personalizada"
2530
 
2531
+ #: ../admin/social_login.php:943
2532
  msgid "User will be redirected to the selected page after Social Login"
2533
  msgstr ""
2534
  "O usuário será redirecionado para a página selcionada de Autenticação Soocial"
2535
 
2536
+ #: ../admin/social_login.php:950
2537
  msgid "Registration redirection"
2538
  msgstr "Redirecionamento de registro"
2539
 
2540
+ #: ../admin/social_login.php:954
2541
  msgid "Same page from where user registered"
2542
  msgstr "Mesma página de onde o usuário se registrou"
2543
 
2544
+ #: ../admin/social_login.php:972
2545
  msgid ""
2546
  "User will be redirected to the selected page after registration (first "
2547
  "Social Login) through Social Login"
2549
  "O usuário será redirecionado para a página selecionada após o registro "
2550
  "(primeira Autenticação Social) através da Autenticação Social"
2551
 
2552
+ #: ../admin/social_login.php:981
2553
  #, fuzzy
2554
  msgid "Social Account Linking Options"
2555
  msgstr "Comentário Social"
2556
 
2557
+ #: ../admin/social_login.php:996
2558
  #, fuzzy
2559
  msgid "Text to display above the Social Account Linking interface"
2560
  msgstr "Texto exibido acima da interface de Autenticação Social"
2561
 
2562
+ #: ../admin/social_login.php:1003
2563
  #, fuzzy
2564
  msgid ""
2565
  "Link social account to already existing account, if email address matches"
2566
  msgstr "Associe sua conta social ao login de sua conta neste website"
2567
 
2568
+ #: ../admin/social_login.php:1013
2569
  msgid ""
2570
  "If email address of the user's Social Account matches with an already "
2571
  "existing account at your website, that social account will be linked to "
2573
  "Linking interface at their profile page."
2574
  msgstr ""
2575
 
2576
+ #: ../admin/social_login.php:1021
2577
  msgid "Enable social account linking at BuddyPress profile page"
2578
  msgstr "Habilitar conta social associada à página de perfil no BuddyPress"
2579
 
2580
+ #: ../admin/social_login.php:1031
2581
  msgid ""
2582
  "Enable this option to show social account linking interface at BuddyPress "
2583
  "profile page"
2585
  "Habilitar estar opção para exibir a conta social associada a página de "
2586
  "interface de perfil do BuddyPress"
2587
 
2588
+ #: ../admin/social_login.php:1042
2589
  msgid "Email popup options"
2590
  msgstr "Opções de popup de email"
2591
 
2592
+ #: ../admin/social_login.php:1047
2593
  msgid "Text on 'Email required' popup"
2594
  msgstr "Texto popup de 'Email requerido'"
2595
 
2596
+ #: ../admin/social_login.php:1057
2597
  msgid ""
2598
  "This text will be displayed on email required popup. Leave empty if not "
2599
  "required."
2601
  "Este texto será exibido no popup de requisição de email. Deixe em branco se "
2602
  "o email não for requerido."
2603
 
2604
+ #: ../admin/social_login.php:1065
2605
  msgid "Error message for 'Email required' popup"
2606
  msgstr "Mensagem de erro para popup de 'Email requerido'"
2607
 
2608
+ #: ../admin/social_login.php:1075
2609
  msgid ""
2610
  "This message will be displayed to user if it provides invalid or already "
2611
  "registered email"
2613
  "Esta mensagem será exibida para o usuário se ele fornecer um email inválido "
2614
  "ou já registrado"
2615
 
2616
+ #: ../admin/social_login.php:1083
2617
  msgid "Email popup height"
2618
  msgstr "Altura do popup de email"
2619
 
2620
+ #: ../admin/social_login.php:1093
2621
  msgid ""
2622
  "If you are seeing vertical scrollbar in the \"Email required\" popup, you "
2623
  "can increase the height of popup by specifying in this option. Leave empty "
2627
  "requirido\\\", você pode incrementar a altura do popup através de "
2628
  "especificação nesta opção. Deixe vazio para padrão."
2629
 
2630
+ #: ../admin/social_login.php:1100
2631
  msgid "Enable email verification"
2632
  msgstr "Habilitar verificação de email"
2633
 
2634
+ #: ../admin/social_login.php:1110
2635
  msgid ""
2636
  "If enabled, email provided by the user will be verified by sending a "
2637
  "confirmation link to that email. User would not be able to login without "
2641
  "um link de confirmação para aquele email. O usuário não poderá se autenticar "
2642
  "antes de validar seu email"
2643
 
2644
+ #: ../admin/social_login.php:1130
2645
  #, fuzzy
2646
  msgid "Enable GDPR opt-in"
2647
  msgstr "Habilitar comentário Disqus"
2648
 
2649
+ #: ../admin/social_login.php:1140
2650
  msgid ""
2651
  "Enable it to show GDPR opt-in for social login and social account linking"
2652
  msgstr ""
2653
 
2654
+ #: ../admin/social_login.php:1148
2655
  #, fuzzy
2656
  msgid "Placement of GDPR opt-in"
2657
  msgstr "Habilitar comentário Disqus"
2658
 
2659
+ #: ../admin/social_login.php:1152
2660
  #, fuzzy
2661
  msgid "Above Social Login icons"
2662
  msgstr "Autenticação Social"
2663
 
2664
+ #: ../admin/social_login.php:1154
2665
  #, fuzzy
2666
  msgid "Below Social Login icons"
2667
  msgstr "Autenticação Social"
2668
 
2669
+ #: ../admin/social_login.php:1160
2670
  #, fuzzy
2671
  msgid "Placement of GDPR opt-in above or below the social login icons"
2672
  msgstr "Texto exibido acima da interface de Autenticação Social"
2673
 
2674
+ #: ../admin/social_login.php:1167
2675
  msgid "Opt-in text"
2676
  msgstr ""
2677
 
2678
+ #: ../admin/social_login.php:1177
2679
  #, fuzzy
2680
  msgid "Text for the GDPR opt-in"
2681
  msgstr "Habilitar comentário Disqus"
2682
 
2683
+ #: ../admin/social_login.php:1184
2684
  msgid "Text to link to Terms-Conditions page"
2685
  msgstr ""
2686
 
2687
+ #: ../admin/social_login.php:1194
2688
  msgid "Word(s) in the opt-in text to be linked to terms-conditions page"
2689
  msgstr ""
2690
 
2691
+ #: ../admin/social_login.php:1201
2692
  msgid "Terms-Conditions Url"
2693
  msgstr ""
2694
 
2695
+ #: ../admin/social_login.php:1211
2696
  #, fuzzy
2697
  msgid "Url of the terms-conditions page of your website"
2698
  msgstr "Url da homepage do seu website"
2699
 
2700
+ #: ../admin/social_login.php:1218
2701
  msgid "Text to link to Privacy Policy page"
2702
  msgstr ""
2703
 
2704
+ #: ../admin/social_login.php:1228
2705
  msgid "Word(s) in the opt-in text to be linked to privacy policy page"
2706
  msgstr ""
2707
 
2708
+ #: ../admin/social_login.php:1235
2709
  msgid "Privacy Policy Url"
2710
  msgstr ""
2711
 
2712
+ #: ../admin/social_login.php:1245
2713
  #, fuzzy
2714
  msgid "Url of the privacy policy page of your website"
2715
  msgstr "Url da homepage do seu website"
2716
 
2717
+ #: ../admin/social_login.php:1296 ../inc/widget.php:260 ../inc/widget.php:438
2718
  #: ../inc/widget.php:602 ../inc/widget.php:750
2719
  msgid "Select"
2720
  msgstr "Selecione"
2721
 
2722
+ #: ../admin/social_login.php:1327
2723
  msgid "Social Login Shortcode & Widget"
2724
  msgstr "Autenticação Social Shortcode & Widget"
2725
 
2726
+ #: ../admin/social_login.php:1328
2727
  msgid "Social Linking Shortcode"
2728
  msgstr "Shortcode de associação Social"
2729
 
2730
+ #: ../admin/social_login.php:1343
2731
  msgid "Why is social login not working?"
2732
  msgstr ""
2733
 
2734
+ #: ../admin/social_login.php:1344
2735
  msgid ""
2736
  "Make sure that App ID and Secret (Client ID and Secret) keys you have saved, "
2737
  "belong to the same app"
2738
  msgstr ""
2739
 
2740
+ #: ../admin/social_login.php:1346
2741
  msgid "Social Login not working with Varnish enabled"
2742
  msgstr ""
2743
 
2744
+ #: ../admin/social_login.php:1347
2745
  msgid ""
2746
  "Why the user is not appearing logged in even after Social Login until the "
2747
  "webpage is refreshed manually?"
2958
  msgid "Providers not selected"
2959
  msgstr "Provedor não selecionado"
2960
 
2961
+ #: ../inc/social_login.php:792
2962
  msgid "Email"
2963
  msgstr ""
2964
 
2965
+ #: ../inc/social_login.php:793
2966
  msgid "Confirm email"
2967
  msgstr ""
2968
 
2969
+ #: ../inc/social_login.php:795
2970
  msgid "Save"
2971
  msgstr ""
2972
 
2973
+ #: ../inc/social_login.php:796
2974
  msgid "Cancel"
2975
  msgstr ""
2976
 
2977
+ #: ../inc/social_login.php:870
2978
  #, fuzzy
2979
  msgid "Email Verification"
2980
  msgstr "Habilitar verificação de email"
2981
 
2982
+ #: ../inc/social_login.php:872
2983
  msgid ""
2984
  "Please click on the following link or paste it in browser to verify your "
2985
  "email"
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: 2020-08-20 08:12+0530\n"
6
- "PO-Revision-Date: 2020-08-20 08:13+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:523
21
  msgid "Problem fetching access token: "
22
  msgstr ""
23
 
24
- #: ../super_socializer.php:527 ../super_socializer.php:541
25
  msgid "Facebook SDK returned an error: "
26
  msgstr ""
27
 
28
- #: ../super_socializer.php:537
29
  msgid "Graph returned an error: "
30
  msgstr ""
31
 
32
- #: ../super_socializer.php:726
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:754
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:757
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:760
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,65 +63,65 @@ msgstr ""
63
  "Убедитесь Curl включен в вашем веб-сайте сервера. Вы, возможно, потребуется "
64
  "обратиться к администратору сервера вашего сайта, чтобы убедиться, это"
65
 
66
- #: ../super_socializer.php:942 ../helper.php:961
67
  msgid "Please verify your email address to login."
68
  msgstr "Пожалуйста, подтвердите ваш адрес электронной почты."
69
 
70
- #: ../super_socializer.php:942
71
  msgid "Your email has been verified. Now you can login to your account"
72
  msgstr "Ваше сообщение было проверено. Теперь вы можете войти в свой аккаунт"
73
 
74
- #: ../super_socializer.php:946
75
  msgid "Notification"
76
  msgstr "Уведомления"
77
 
78
- #: ../super_socializer.php:964 ../admin/social_login.php:779
79
  msgid "Email required"
80
  msgstr "Email (Обязательно)"
81
 
82
- #: ../super_socializer.php:967
83
  msgid "Please check your email inbox to complete the registration."
84
  msgstr "Пожалуйста, проверьте свой почтовый ящик для завершения регистрации."
85
 
86
- #: ../super_socializer.php:1036
87
  msgid "Leave a reply"
88
  msgstr "Оставить ответ"
89
 
90
- #: ../super_socializer.php:1052 ../inc/social_sharing.php:241
91
  msgid "Shares"
92
  msgstr "Поделились"
93
 
94
- #: ../super_socializer.php:1052 ../inc/social_sharing.php:241
95
  msgid "Share"
96
  msgstr "Поделиться"
97
 
98
- #: ../super_socializer.php:1052
99
  #, fuzzy
100
  msgid "Link copied."
101
  msgstr "LinkedIn"
102
 
103
- #: ../super_socializer.php:1298
104
  msgid "Super Socializer - General Options"
105
  msgstr "Super Socializer - Общие настройки"
106
 
107
- #: ../super_socializer.php:1298 ../admin/general_options.php:15
108
  #: ../admin/social_commenting.php:47
109
  msgid "General Options"
110
  msgstr "Основные настройки"
111
 
112
- #: ../super_socializer.php:1366 ../helper.php:883
113
  msgid "Social Avatar"
114
  msgstr "Социальный аватар"
115
 
116
- #: ../super_socializer.php:1369
117
  msgid "Small Avatar Url"
118
  msgstr "Ссылка для маленького аватара"
119
 
120
- #: ../super_socializer.php:1373
121
  msgid "Large Avatar Url"
122
  msgstr "Ссылка для большого аватара"
123
 
124
- #: ../super_socializer.php:1377 ../helper.php:886
125
  msgid ""
126
  "Do not fetch and update social avatar from my profile, next time I Social "
127
  "Login"
@@ -129,78 +129,78 @@ msgstr ""
129
  "Не получать и обновлять социальный аватар из моего профиля, в следующий раз "
130
  "я когда я использую вход через соцсети"
131
 
132
- #: ../super_socializer.php:1381 ../helper.php:887
133
  msgid "Update social avatar, next time I Social Login"
134
  msgstr ""
135
  "Обновление аватара соцсетей в следующий раз при использовании входа через "
136
  "соцсети"
137
 
138
- #: ../super_socializer.php:1458
139
  msgid "Login with your Social ID"
140
  msgstr "Войти, используя социальный аккаунт"
141
 
142
- #: ../super_socializer.php:1459
143
  msgid "Email you entered is already registered or invalid"
144
  msgstr ""
145
  "Электронная почта, которую вы ввели, уже зарегистрирована или недействительна"
146
 
147
- #: ../super_socializer.php:1464
148
  msgid "Please enter a valid email address. You might be required to verify it"
149
  msgstr ""
150
  "Пожалуйста, введите действительный адрес электронной почты. Вам, возможно, "
151
  "потребуется проверить его"
152
 
153
- #: ../super_socializer.php:1468 ../super_socializer.php:2166
154
  msgid "Link your social account to login to your account at this website"
155
  msgstr ""
156
  "Введите ссылку на ваш аккаут в социальных сетях чтобы войти в аккаунт на "
157
  "этом сайте"
158
 
159
- #: ../super_socializer.php:1708
160
  msgid "Thanks for installing Super Socializer plugin"
161
  msgstr ""
162
 
163
- #: ../super_socializer.php:1710
164
  msgid "Configure the Plugin"
165
  msgstr ""
166
 
167
- #: ../super_socializer.php:1721
168
  msgid ""
169
  "Update \"Facebook Comments Moderation\" add-on for compatibility with "
170
  "current version of Super Socializer"
171
  msgstr ""
172
 
173
- #: ../super_socializer.php:1730
174
  msgid ""
175
  "Update \"Facebook Comments Notifier\" add-on for compatibility with current "
176
  "version of Super Socializer"
177
  msgstr ""
178
 
179
- #: ../super_socializer.php:1739
180
  msgid ""
181
  "Update \"Social Login Buttons\" add-on for compatibility with current "
182
  "version of Super Socializer"
183
  msgstr ""
184
 
185
- #: ../super_socializer.php:1748
186
  msgid ""
187
  "Update \"Social Share myCRED Integration\" add-on for maximum compatibility "
188
  "with current version of Super Socializer"
189
  msgstr ""
190
 
191
- #: ../super_socializer.php:1757
192
  msgid ""
193
  "Update \"Social Login myCRED Integration\" add-on for maximum compatibility "
194
  "with current version of Super Socializer"
195
  msgstr ""
196
 
197
- #: ../super_socializer.php:1768
198
  #, php-format
199
  msgid ""
200
  "To continue using Steam login save Steam API key <a href=\"%s\">here</a>"
201
  msgstr ""
202
 
203
- #: ../super_socializer.php:1777
204
  #, php-format
205
  msgid ""
206
  "To continue using Instagram login create a new Instagram App as described <a "
@@ -208,7 +208,7 @@ msgid ""
208
  "Instagram App Secret <a href=\"%s\">here</a>"
209
  msgstr ""
210
 
211
- #: ../super_socializer.php:1786 ../super_socializer.php:1795
212
  #, php-format
213
  msgid ""
214
  "To continue using bitly url shortener, login to your bit.ly account and "
@@ -217,13 +217,13 @@ msgid ""
217
  "\">here</a>. More details at the <a href=\"%s\" target=\"_blank\">link</a>"
218
  msgstr ""
219
 
220
- #: ../super_socializer.php:1811
221
  #, php-format
222
  msgid ""
223
  "To continue using Social Login, save the secret keys <a href=\"%s\">here</a>"
224
  msgstr ""
225
 
226
- #: ../super_socializer.php:1835
227
  #, php-format
228
  msgid ""
229
  "Add %s in \"Valid OAuth redirect URIs\" option in your Facebook app settings "
@@ -231,14 +231,14 @@ msgid ""
231
  "target=\"_blank\">here</a>"
232
  msgstr ""
233
 
234
- #: ../super_socializer.php:1835 ../super_socializer.php:1860
235
- #: ../super_socializer.php:1885 ../super_socializer.php:1910
236
- #: ../super_socializer.php:1943 ../super_socializer.php:1971
237
- #: ../super_socializer.php:1998
238
  msgid "Okay"
239
  msgstr "Окей"
240
 
241
- #: ../super_socializer.php:1860
242
  #, php-format
243
  msgid ""
244
  "Add %s in \"Callback URLs\" option in your Twitter app settings for Twitter "
@@ -246,7 +246,7 @@ msgid ""
246
  "\">here</a>"
247
  msgstr ""
248
 
249
- #: ../super_socializer.php:1885
250
  #, php-format
251
  msgid ""
252
  "Add %s in \"Authorized Redirect URLs\" option in your Linkedin app settings "
@@ -254,7 +254,7 @@ msgid ""
254
  "target=\"_blank\">here</a>"
255
  msgstr ""
256
 
257
- #: ../super_socializer.php:1910
258
  #, php-format
259
  msgid ""
260
  "Add %s in \"Authorized redirect URIs\" option in your Google client settings "
@@ -262,13 +262,13 @@ msgid ""
262
  "target=\"_blank\">here</a>"
263
  msgstr ""
264
 
265
- #: ../super_socializer.php:1921
266
  #, php-format
267
  msgid ""
268
  "Save the url of privacy policy page of your website <a href=\"%s\">here</a>"
269
  msgstr ""
270
 
271
- #: ../super_socializer.php:1943
272
  #, php-format
273
  msgid ""
274
  "This plugin is GDPR compliant. You need to update the privacy policy of your "
@@ -276,7 +276,7 @@ msgid ""
276
  "\"%s\" target=\"_blank\">here</a>"
277
  msgstr ""
278
 
279
- #: ../super_socializer.php:1971
280
  #, php-format
281
  msgid ""
282
  "Now plugin supports a new service Twitcount.com to show Twitter shares. To "
@@ -285,7 +285,7 @@ msgid ""
285
  "your website %s with them. No need to copy-paste any code from their website."
286
  msgstr ""
287
 
288
- #: ../super_socializer.php:1998
289
  #, php-format
290
  msgid ""
291
  "Replace url saved in \"Callback URLs\" option in your Twitter app settings "
@@ -293,7 +293,7 @@ msgid ""
293
  "\"%s\" target=\"_blank\">here</a>"
294
  msgstr ""
295
 
296
- #: ../super_socializer.php:2023
297
  #, php-format
298
  msgid ""
299
  "If you cannot get Linkedin login to work after updating the plugin, replace "
@@ -301,11 +301,11 @@ msgid ""
301
  "For more details, check step 6 <a href=\"%s\" target=\"_blank\">here</a>"
302
  msgstr ""
303
 
304
- #: ../super_socializer.php:2023 ../super_socializer.php:2050
305
  msgid "Dismiss"
306
  msgstr ""
307
 
308
- #: ../super_socializer.php:2049
309
  #, php-format
310
  msgid ""
311
  "Save Facebook App ID and Secret keys in \"Standard Interface\" and/or "
@@ -314,7 +314,7 @@ msgid ""
314
  "that, clear share counts cache from \"Miscellaneous\" section"
315
  msgstr ""
316
 
317
- #: ../super_socializer.php:2242
318
  msgid ""
319
  "Your browser is blocking some features of this website. Please follow the "
320
  "instructions at {support_url} to unblock these."
@@ -416,7 +416,7 @@ msgstr "Большой аватар"
416
 
417
  #: ../helper.php:898 ../admin/general_options.php:89
418
  #: ../admin/social_sharing.php:1944 ../admin/social_commenting.php:400
419
- #: ../admin/social_login.php:1269 ../admin/like_buttons.php:780
420
  msgid "Save Changes"
421
  msgstr "Сохранить изменения"
422
 
@@ -440,7 +440,7 @@ msgstr ""
440
  #: ../admin/general_options.php:7 ../admin/general_options.php:93
441
  #: ../admin/social_sharing.php:5 ../admin/social_sharing.php:1948
442
  #: ../admin/social_commenting.php:5 ../admin/social_commenting.php:404
443
- #: ../admin/social_login.php:5 ../admin/social_login.php:1273
444
  #: ../admin/like_buttons.php:6 ../admin/like_buttons.php:784
445
  #, fuzzy, php-format
446
  msgid ""
@@ -495,14 +495,14 @@ msgstr ""
495
  "Можно указать любые дополнительные правила CSS (без тега &lt; style &gt;)"
496
 
497
  #: ../admin/general_options.php:103 ../admin/social_sharing.php:1954
498
- #: ../admin/social_commenting.php:410 ../admin/social_login.php:1279
499
  #: ../admin/like_buttons.php:790
500
  #, fuzzy
501
  msgid "Instagram Shoutout"
502
  msgstr "Instagram"
503
 
504
  #: ../admin/general_options.php:105 ../admin/social_sharing.php:1956
505
- #: ../admin/social_commenting.php:412 ../admin/social_login.php:1281
506
  #: ../admin/like_buttons.php:792
507
  msgid ""
508
  "If you can send (to hello@heateor.com) how this plugin is helping your "
@@ -641,7 +641,7 @@ msgstr "XProfile интеграция"
641
 
642
  #: ../admin/social_sharing.php:67 ../admin/social_sharing.php:1869
643
  #: ../admin/social_sharing.php:1871 ../admin/social_login.php:45
644
- #: ../admin/social_login.php:1235 ../admin/like_buttons.php:50
645
  #: ../admin/like_buttons.php:751
646
  msgid "Shortcode & Widget"
647
  msgstr "Шорткод и виджет"
@@ -652,7 +652,7 @@ msgstr "Устранение неисправностей"
652
 
653
  #: ../admin/social_sharing.php:69 ../admin/social_sharing.php:1902
654
  #: ../admin/social_commenting.php:40 ../admin/social_commenting.php:384
655
- #: ../admin/social_login.php:46 ../admin/social_login.php:1249
656
  #: ../admin/like_buttons.php:51 ../admin/like_buttons.php:764
657
  msgid "FAQ"
658
  msgstr "Часто задаваемые вопросы (FAQ)"
@@ -884,8 +884,8 @@ msgstr "Пользовательская ссылка"
884
  msgid "Url to share"
885
  msgstr "Ссылка чтобы Поделиться"
886
 
887
- #: ../admin/social_sharing.php:725 ../admin/social_login.php:520
888
- #: ../admin/social_login.php:896 ../admin/like_buttons.php:105
889
  #: ../inc/widget.php:945
890
  msgid "Title"
891
  msgstr "Заголовок"
@@ -971,7 +971,7 @@ msgid "Placement"
971
  msgstr "Размещение"
972
 
973
  #: ../admin/social_sharing.php:957 ../admin/social_sharing.php:1383
974
- #: ../admin/social_login.php:837 ../admin/social_login.php:866
975
  #: ../admin/like_buttons.php:218 ../admin/like_buttons.php:494
976
  msgid "Homepage"
977
  msgstr "Главная"
@@ -1240,7 +1240,7 @@ msgstr ""
1240
  msgid "Required only to track Facebook share count"
1241
  msgstr ""
1242
 
1243
- #: ../admin/social_sharing.php:1584 ../admin/social_login.php:150
1244
  msgid "Facebook App ID"
1245
  msgstr "Facebook App ID"
1246
 
@@ -1253,7 +1253,7 @@ msgstr ""
1253
  "Необходимо для входа через Facebook. Пожалуйста, посмотрите документацию <a "
1254
  "href=\"%s\" target=\"_blank\">здесь</a> для получения ID приложения Facebook."
1255
 
1256
- #: ../admin/social_sharing.php:1601 ../admin/social_login.php:171
1257
  #, fuzzy
1258
  msgid "Facebook App Secret"
1259
  msgstr "Facebook App ID"
@@ -1441,7 +1441,7 @@ msgstr ""
1441
  "\"Получение информации о новой поломке\" ."
1442
 
1443
  #: ../admin/social_sharing.php:1904 ../admin/social_commenting.php:386
1444
- #: ../admin/social_login.php:1251
1445
  msgid ""
1446
  "<strong>Note:</strong> Plugin will not work on local server. You should have "
1447
  "an online website for the plugin to function properly."
@@ -1499,7 +1499,7 @@ msgid ""
1499
  msgstr ""
1500
 
1501
  #: ../admin/social_sharing.php:1919 ../admin/social_commenting.php:389
1502
- #: ../admin/social_login.php:1258
1503
  msgid "Why is my browser blocking some features of the plugin?"
1504
  msgstr "Почему мой браузер блокирует некоторые функции плагина?"
1505
 
@@ -1817,11 +1817,11 @@ msgstr "Основные настройки"
1817
  msgid "Advanced Configuration"
1818
  msgstr "Расширенная конфигурация"
1819
 
1820
- #: ../admin/social_login.php:41 ../admin/social_login.php:1035
1821
  msgid "GDPR"
1822
  msgstr ""
1823
 
1824
- #: ../admin/social_login.php:43 ../admin/social_login.php:1186
1825
  msgid "XProfile Integration"
1826
  msgstr "XProfile интеграция"
1827
 
@@ -1892,14 +1892,22 @@ msgid "Line"
1892
  msgstr ""
1893
 
1894
  #: ../admin/social_login.php:135
 
 
 
 
1895
  msgid "Windows Live"
1896
  msgstr ""
1897
 
1898
  #: ../admin/social_login.php:143
 
 
 
 
1899
  msgid "Select Social ID provider to enable in Social Login"
1900
  msgstr "Выберите социальные сети чтобы активировать вход через социальные сети"
1901
 
1902
- #: ../admin/social_login.php:160
1903
  #, php-format
1904
  msgid ""
1905
  "Required for Facebook Social Login to work. Please follow the documentation "
@@ -1908,7 +1916,7 @@ msgstr ""
1908
  "Необходимо для входа через Facebook. Пожалуйста, посмотрите документацию <a "
1909
  "href=\"%s\" target=\"_blank\">здесь</a> для получения ID приложения Facebook."
1910
 
1911
- #: ../admin/social_login.php:162 ../admin/social_login.php:183
1912
  #, fuzzy
1913
  msgid ""
1914
  "Paste following url in <strong>Site URL</strong> option mentioned at the link"
@@ -1916,7 +1924,7 @@ msgstr ""
1916
  "Вставьте следующий URL-адрес в <strong>URL-адрес сайта</strong> для "
1917
  "упоминания ссылки."
1918
 
1919
- #: ../admin/social_login.php:181
1920
  #, fuzzy, php-format
1921
  msgid ""
1922
  "Required for Facebook Social Login to work. Please follow the documentation "
@@ -1925,11 +1933,11 @@ msgstr ""
1925
  "Необходимо для входа через Facebook. Пожалуйста, посмотрите документацию <a "
1926
  "href=\"%s\" target=\"_blank\">здесь</a> для получения ID приложения Facebook."
1927
 
1928
- #: ../admin/social_login.php:192
1929
  msgid "Twitter API Key"
1930
  msgstr "Twitter API ключ"
1931
 
1932
- #: ../admin/social_login.php:202
1933
  #, php-format
1934
  msgid ""
1935
  "Required for Twitter Social Login to work. Please follow the documentation "
@@ -1939,7 +1947,7 @@ msgstr ""
1939
  "href=\"%s\" target=\"_blank\">здесь</a> для получения ключа приложения "
1940
  "Twitter."
1941
 
1942
- #: ../admin/social_login.php:204 ../admin/social_login.php:229
1943
  #, fuzzy
1944
  msgid ""
1945
  "Paste following url in <strong>Website</strong> option mentioned at the link"
@@ -1947,8 +1955,9 @@ msgstr ""
1947
  "Вставьте следующий URL-адрес в <strong>URL веб-сайта</strong> для упоминания "
1948
  "ссылки"
1949
 
1950
- #: ../admin/social_login.php:208 ../admin/social_login.php:233
1951
- #: ../admin/social_login.php:421 ../admin/social_login.php:441
 
1952
  #, fuzzy
1953
  msgid ""
1954
  "Paste following url in <strong>Callback URL</strong> option mentioned at the "
@@ -1957,11 +1966,11 @@ msgstr ""
1957
  "Вставьте следующий URL-адрес в <strong>URL веб-сайта</strong> для упоминания "
1958
  "ссылки"
1959
 
1960
- #: ../admin/social_login.php:217
1961
  msgid "Twitter API Secret"
1962
  msgstr "Twitter API секретный ключ"
1963
 
1964
- #: ../admin/social_login.php:227
1965
  #, php-format
1966
  msgid ""
1967
  "Required for Twitter Social Login to work. Please follow the documentation "
@@ -1971,12 +1980,12 @@ msgstr ""
1971
  "href=\"%s\" target=\"_blank\">здесь</a> для получения секретного ключа "
1972
  "приложения Facebook."
1973
 
1974
- #: ../admin/social_login.php:242
1975
  #, fuzzy
1976
  msgid "LinkedIn Client ID"
1977
  msgstr "LinkedIn"
1978
 
1979
- #: ../admin/social_login.php:252
1980
  #, fuzzy, php-format
1981
  msgid ""
1982
  "Required for LinkedIn Social Login to work. Please follow the documentation "
@@ -1986,7 +1995,7 @@ msgstr ""
1986
  "href=\"%s\" target=\"_blank\">здесь</a> для получения ключа приложения "
1987
  "LinkedIn."
1988
 
1989
- #: ../admin/social_login.php:254 ../admin/social_login.php:275
1990
  #, fuzzy
1991
  msgid ""
1992
  "Paste following url in <strong>Redirect URLs</strong> option mentioned at "
@@ -1995,12 +2004,12 @@ msgstr ""
1995
  "Вставьте следующий URL-адрес в <strong>URL-адрес сайта</strong> для "
1996
  "упоминания ссылки."
1997
 
1998
- #: ../admin/social_login.php:263
1999
  #, fuzzy
2000
  msgid "LinkedIn Client Secret"
2001
  msgstr "LinkedIn"
2002
 
2003
- #: ../admin/social_login.php:273
2004
  #, fuzzy, php-format
2005
  msgid ""
2006
  "Required for LinkedIn Social Login to work. Please follow the documentation "
@@ -2011,12 +2020,12 @@ msgstr ""
2011
  "href=\"%s\" target=\"_blank\">здесь</a> для получения ключа приложения "
2012
  "LinkedIn."
2013
 
2014
- #: ../admin/social_login.php:284
2015
  #, fuzzy
2016
  msgid "Google Client ID"
2017
  msgstr "Google+ ID клиента"
2018
 
2019
- #: ../admin/social_login.php:294
2020
  #, fuzzy, php-format
2021
  msgid ""
2022
  "Required for Google Social Login to work. Please follow the documentation at "
@@ -2025,7 +2034,7 @@ msgstr ""
2025
  "Необходимо для входа через Google+. Пожалуйста, посмотрите документацию <a "
2026
  "href=\"%s\" target=\"_blank\">здесь</a> для получения ID клиента в Google+."
2027
 
2028
- #: ../admin/social_login.php:296 ../admin/social_login.php:317
2029
  #, fuzzy
2030
  msgid ""
2031
  "Paste following url in <strong>AUTHORIZED REDIRECT URI</strong> option "
@@ -2034,12 +2043,12 @@ msgstr ""
2034
  "Вставьте следующий URL-адрес в <strong>URL-адрес сайта</strong> для "
2035
  "упоминания ссылки."
2036
 
2037
- #: ../admin/social_login.php:305
2038
  #, fuzzy
2039
  msgid "Google Client Secret"
2040
  msgstr "Google+ ID клиента"
2041
 
2042
- #: ../admin/social_login.php:315
2043
  #, fuzzy, php-format
2044
  msgid ""
2045
  "Required for Google Social Login to work. Please follow the documentation at "
@@ -2048,11 +2057,11 @@ msgstr ""
2048
  "Необходимо для входа через Google+. Пожалуйста, посмотрите документацию <a "
2049
  "href=\"%s\" target=\"_blank\">здесь</a> для получения ID клиента в Google+."
2050
 
2051
- #: ../admin/social_login.php:326
2052
  msgid "Vkontakte Application ID"
2053
  msgstr " ID приложения Vkontakte"
2054
 
2055
- #: ../admin/social_login.php:336 ../admin/social_login.php:357
2056
  #, php-format
2057
  msgid ""
2058
  "Required for Vkontakte Social Login to work. Please follow the documentation "
@@ -2063,7 +2072,7 @@ msgstr ""
2063
  "href=\"%s\" target=\"_blank\">здесь</a> для получения ID приложения "
2064
  "Vkontakte."
2065
 
2066
- #: ../admin/social_login.php:338 ../admin/social_login.php:359
2067
  #, fuzzy
2068
  msgid ""
2069
  "Paste following url in <strong>Site address</strong> option mentioned at the "
@@ -2072,17 +2081,17 @@ msgstr ""
2072
  "Вставьте следующий URL-адрес в <strong>URL-адрес сайта</strong> для "
2073
  "упоминания ссылки."
2074
 
2075
- #: ../admin/social_login.php:347
2076
  #, fuzzy
2077
  msgid "Vkontakte Secure key"
2078
  msgstr "Вконтакте"
2079
 
2080
- #: ../admin/social_login.php:368
2081
  #, fuzzy
2082
  msgid "Instagram App ID"
2083
  msgstr "Instagram ID клиента"
2084
 
2085
- #: ../admin/social_login.php:378
2086
  #, fuzzy, php-format
2087
  msgid ""
2088
  "Required for Instagram Social Login to work. Please follow the documentation "
@@ -2092,7 +2101,7 @@ msgstr ""
2092
  "href=\"%s\" target=\"_blank\">здесь</a> для получения ID клиента в "
2093
  "Instagram."
2094
 
2095
- #: ../admin/social_login.php:380 ../admin/social_login.php:401
2096
  #, fuzzy
2097
  msgid ""
2098
  "Paste following url in <strong>Valid OAuth Redirect URIs</strong> option "
@@ -2101,12 +2110,12 @@ msgstr ""
2101
  "Вставьте следующий URL-адрес в <strong>URL-адрес сайта</strong> для "
2102
  "упоминания ссылки."
2103
 
2104
- #: ../admin/social_login.php:389
2105
  #, fuzzy
2106
  msgid "Instagram App Secret"
2107
  msgstr "Введите имя пользователя Instagram."
2108
 
2109
- #: ../admin/social_login.php:399
2110
  #, fuzzy, php-format
2111
  msgid ""
2112
  "Required for Instagram Social Login to work. Please follow the documentation "
@@ -2116,11 +2125,11 @@ msgstr ""
2116
  "href=\"%s\" target=\"_blank\">здесь</a> для получения ID клиента в "
2117
  "Instagram."
2118
 
2119
- #: ../admin/social_login.php:410
2120
  msgid "Line Channel ID"
2121
  msgstr ""
2122
 
2123
- #: ../admin/social_login.php:419
2124
  #, fuzzy, php-format
2125
  msgid ""
2126
  "Required for Line Social Login to work. Please follow the documentation at "
@@ -2130,12 +2139,12 @@ msgstr ""
2130
  "href=\"%s\" target=\"_blank\">здесь</a> для получения ключа приложения "
2131
  "LinkedIn."
2132
 
2133
- #: ../admin/social_login.php:430
2134
  #, fuzzy
2135
  msgid "Line Channel Secret"
2136
  msgstr "LinkedIn"
2137
 
2138
- #: ../admin/social_login.php:439
2139
  #, fuzzy, php-format
2140
  msgid ""
2141
  "Required for Line Social Login to work. Please follow the documentation at "
@@ -2145,12 +2154,41 @@ msgstr ""
2145
  "href=\"%s\" target=\"_blank\">здесь</a> для получения ключа приложения "
2146
  "LinkedIn."
2147
 
2148
- #: ../admin/social_login.php:450
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2149
  #, fuzzy
2150
  msgid "Microsoft Client ID"
2151
  msgstr "Google+ ID клиента"
2152
 
2153
- #: ../admin/social_login.php:459
2154
  #, fuzzy, php-format
2155
  msgid ""
2156
  "Required for Live Social Login to work. Please follow the documentation at "
@@ -2159,7 +2197,8 @@ msgstr ""
2159
  "Необходимо для входа через Google+. Пожалуйста, посмотрите документацию <a "
2160
  "href=\"%s\" target=\"_blank\">здесь</a> для получения ID клиента в Google+."
2161
 
2162
- #: ../admin/social_login.php:461 ../admin/social_login.php:481
 
2163
  #, fuzzy
2164
  msgid ""
2165
  "Paste following url in <strong>Redirect URIs</strong> option mentioned at "
@@ -2168,12 +2207,12 @@ msgstr ""
2168
  "Вставьте следующий URL-адрес в <strong>URL-адрес сайта</strong> для "
2169
  "упоминания ссылки."
2170
 
2171
- #: ../admin/social_login.php:470
2172
  #, fuzzy
2173
  msgid "Microsoft Client Secret"
2174
  msgstr "Google+ ID клиента"
2175
 
2176
- #: ../admin/social_login.php:479
2177
  #, fuzzy, php-format
2178
  msgid ""
2179
  "Required for Live Social Login to work. Please follow the documentation at "
@@ -2183,12 +2222,12 @@ msgstr ""
2183
  "Необходимо для входа через Google+. Пожалуйста, посмотрите документацию <a "
2184
  "href=\"%s\" target=\"_blank\">здесь</a> для получения ID клиента в Google+."
2185
 
2186
- #: ../admin/social_login.php:489
2187
  #, fuzzy
2188
  msgid "Steam API Key"
2189
  msgstr "Twitter API ключ"
2190
 
2191
- #: ../admin/social_login.php:498
2192
  #, fuzzy, php-format
2193
  msgid ""
2194
  "Required for Steam Social Login to work. Get it at <a href=\"%s\" target="
@@ -2198,74 +2237,102 @@ msgstr ""
2198
  "href=\"%s\" target=\"_blank\">здесь</a> для получения ключа приложения "
2199
  "Twitter."
2200
 
2201
- #: ../admin/social_login.php:499
2202
  #, fuzzy
2203
  msgid "Save following <strong>domain</strong> to get the key"
2204
  msgstr ""
2205
  "Вставьте следующий URL-адрес в <strong>URL веб-сайта</strong> для упоминания "
2206
  "ссылки"
2207
 
2208
- #: ../admin/social_login.php:515
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2209
  msgid "Social Login Options"
2210
  msgstr "Параметры входа через соцсети"
2211
 
2212
- #: ../admin/social_login.php:530
2213
  msgid "Text to display above the Social Login interface"
2214
  msgstr "Текст, отображаемый над интерфейсом входа через социальные сети"
2215
 
2216
- #: ../admin/social_login.php:538
2217
  msgid "Trigger social login in the same browser tab"
2218
  msgstr ""
2219
 
2220
- #: ../admin/social_login.php:548
2221
  msgid "Trigger social login in the same browser tab instead of a popup window"
2222
  msgstr ""
2223
 
2224
- #: ../admin/social_login.php:555
2225
  #, fuzzy
2226
  msgid "Center align icons"
2227
  msgstr "Переставить иконы"
2228
 
2229
- #: ../admin/social_login.php:565
2230
  #, fuzzy
2231
  msgid "Center align social login icons"
2232
  msgstr "Параметры входа через соцсети"
2233
 
2234
- #: ../admin/social_login.php:572
2235
  msgid "Enable at login page"
2236
  msgstr "Включить страницу входа"
2237
 
2238
- #: ../admin/social_login.php:582
2239
  msgid ""
2240
  "Social Login interface will get enabled at the login page of your website"
2241
  msgstr ""
2242
  "Интерфейс входа через социальные сети будет активирован на странице входа "
2243
 
2244
- #: ../admin/social_login.php:589
2245
  msgid "Enable at register page"
2246
  msgstr "Включить на странице регистрации"
2247
 
2248
- #: ../admin/social_login.php:599
2249
  msgid ""
2250
  "Social Login interface will get enabled at the registration page of your "
2251
  "website"
2252
  msgstr "Интерфейс входа через социальные сети будет активирован на странице"
2253
 
2254
- #: ../admin/social_login.php:606
2255
  msgid "Enable at comment form"
2256
  msgstr "Включить в форму комментирования"
2257
 
2258
- #: ../admin/social_login.php:616
2259
  msgid "Social Login interface will get enabled at your Wordpress Comment form"
2260
  msgstr ""
2261
  "Интерфейс входа через социальные сети будет активирован в вашей форме "
2262
  "комментирования Wordpress"
2263
 
2264
- #: ../admin/social_login.php:630
2265
  msgid "Enable before WooCommerce Customer Login Form"
2266
  msgstr "Активировать перед формой входа покупателя в WooCommerce"
2267
 
2268
- #: ../admin/social_login.php:640
2269
  msgid ""
2270
  "Social Login Interface will get enabled before the customer login form at "
2271
  "WooCommerce My Account page"
@@ -2273,12 +2340,12 @@ msgstr ""
2273
  "Интерфейс входа через социальные сети будет активирован перед формой входа "
2274
  "для покупателя на странице Мой Аккаунт в WooCommerce"
2275
 
2276
- #: ../admin/social_login.php:647
2277
  #, fuzzy
2278
  msgid "Enable at WooCommerce Customer Login Form"
2279
  msgstr "Включить после формы входа клиента WooCommerce"
2280
 
2281
- #: ../admin/social_login.php:657
2282
  #, fuzzy
2283
  msgid ""
2284
  "Integrate Social Login Interface with the customer login form at WooCommerce "
@@ -2287,12 +2354,12 @@ msgstr ""
2287
  "Интерфейс входа через социальные сети будет активирован после формы входа "
2288
  "для покупателя на странице Мой Аккаунт в WooCommerce"
2289
 
2290
- #: ../admin/social_login.php:664
2291
  #, fuzzy
2292
  msgid "Enable at WooCommerce Customer Register Form"
2293
  msgstr "Включить после формы входа клиента WooCommerce"
2294
 
2295
- #: ../admin/social_login.php:674
2296
  #, fuzzy
2297
  msgid ""
2298
  "Integrate Social Login Interface with the customer register form at "
@@ -2301,22 +2368,22 @@ msgstr ""
2301
  "Интерфейс входа через социальные сети будет активирован после формы входа "
2302
  "для покупателя на странице Мой Аккаунт в WooCommerce"
2303
 
2304
- #: ../admin/social_login.php:681
2305
  msgid "Enable at WooCommerce checkout page"
2306
  msgstr "Включить на странице оформления заказа WooCommerce"
2307
 
2308
- #: ../admin/social_login.php:691
2309
  msgid "Social Login Interface will get enabled at WooCommerce checkout page"
2310
  msgstr ""
2311
  "Интерфейс входа через социальные сети будет активирован на странице "
2312
  "оформления заказа в WooCommerce"
2313
 
2314
- #: ../admin/social_login.php:701
2315
  msgid "Auto-approve comments made by Social Login users"
2316
  msgstr ""
2317
  "Автоодобрение комментариев для пользователей, вошедших через социальные сети"
2318
 
2319
- #: ../admin/social_login.php:711
2320
  msgid ""
2321
  "If this option is enabled, and WordPress comment is made by Social Login "
2322
  "user, comment will get approved immediately without keeping in moderation."
@@ -2325,15 +2392,15 @@ msgstr ""
2325
  "который вошел через социальные сети, то комментарий будет опубликован сразу "
2326
  "без модерации."
2327
 
2328
- #: ../admin/social_login.php:712
2329
  msgid "Note: This is not related to Facebook comments"
2330
  msgstr "Примечание: Это не связано с комментариями от Facebook"
2331
 
2332
- #: ../admin/social_login.php:721
2333
  msgid "Enable social avatar"
2334
  msgstr "Включение социальных аватар"
2335
 
2336
- #: ../admin/social_login.php:731
2337
  msgid ""
2338
  "Social profile pictures of the logged in user will be displayed as profile "
2339
  "avatar"
@@ -2341,30 +2408,30 @@ msgstr ""
2341
  "Изображения пользователя в социальных сетях будет использоваться как "
2342
  "изображение профиля на сайте"
2343
 
2344
- #: ../admin/social_login.php:740
2345
  msgid "Avatar quality"
2346
  msgstr "Качество аватары"
2347
 
2348
- #: ../admin/social_login.php:743
2349
  msgid "Average"
2350
  msgstr "Среднее"
2351
 
2352
- #: ../admin/social_login.php:744
2353
  msgid "Best"
2354
  msgstr "лучший"
2355
 
2356
- #: ../admin/social_login.php:751
2357
  msgid "Choose avatar quality"
2358
  msgstr "Выберите качество аватара"
2359
 
2360
- #: ../admin/social_login.php:759
2361
  msgid ""
2362
  "Show option for users to update social avatar at BuddyPress profile page"
2363
  msgstr ""
2364
  "Показать вариант для пользователей для обновления социального аватара на "
2365
  "странице профиля BuddyPress"
2366
 
2367
- #: ../admin/social_login.php:769
2368
  msgid ""
2369
  "If enabled, users would be able to update their social avatar from \"Profile "
2370
  "photo\" section in BuddyPress profile at front-end"
@@ -2372,7 +2439,7 @@ msgstr ""
2372
  "Если этот параметр включен, пользователи смогут обновить свой социальный "
2373
  "аватар из раздела «Профиль» фото в профиле BuddyPress "
2374
 
2375
- #: ../admin/social_login.php:789
2376
  msgid ""
2377
  "If enabled and Social ID provider does not provide user's email address on "
2378
  "login, user will be asked to provide his/her email address. Otherwise, a "
@@ -2382,13 +2449,13 @@ msgstr ""
2382
  "для входа, пользователю потребуется ввести свою почту. В противном же "
2383
  "случае, почта будет создана по образцу."
2384
 
2385
- #: ../admin/social_login.php:797
2386
  msgid "Send post-registration email to user to set account password"
2387
  msgstr ""
2388
  "Отправить после регистрации по электронной почте пользователю письмо чтобы "
2389
  "установить пароль учетной записи"
2390
 
2391
- #: ../admin/social_login.php:807
2392
  msgid ""
2393
  "If enabled, an email will be sent to user after registration through Social "
2394
  "Login, regarding his/her login credentials (username-password to be able to "
@@ -2398,13 +2465,13 @@ msgstr ""
2398
  "социальные сети будет отправлено письмо с именем и пароль чтобы была "
2399
  "возможность зайти черед стандартную форму авторизации"
2400
 
2401
- #: ../admin/social_login.php:814
2402
  msgid "Send new user registration notification email to admin"
2403
  msgstr ""
2404
  "Отправить уведомление о регистрации нового пользователя по электронной почте "
2405
  "администратору"
2406
 
2407
- #: ../admin/social_login.php:824
2408
  msgid ""
2409
  "If enabled, an email will be sent to admin after new user registers through "
2410
  "Social Login, notifying admin about the new user registration"
@@ -2412,41 +2479,41 @@ msgstr ""
2412
  "Если опция включена, на почту администратора прийдет уведомление о "
2413
  "регистрации нового пользователя через соцсети."
2414
 
2415
- #: ../admin/social_login.php:831
2416
  msgid "Login redirection"
2417
  msgstr "Перенаправления входа"
2418
 
2419
- #: ../admin/social_login.php:835
2420
  msgid "Same page where user logged in"
2421
  msgstr "Та же страница, на которой пользователь произвел вход "
2422
 
2423
- #: ../admin/social_login.php:839 ../admin/social_login.php:868
2424
  msgid "Account dashboard"
2425
  msgstr "Страница управления моим аккаунтом"
2426
 
2427
- #: ../admin/social_login.php:842 ../admin/social_login.php:871
2428
  msgid "BuddyPress profile page"
2429
  msgstr "Страница профиля BuddyPress"
2430
 
2431
- #: ../admin/social_login.php:845 ../admin/social_login.php:874
2432
  msgid "Custom Url"
2433
  msgstr "Пользовательская ссылка"
2434
 
2435
- #: ../admin/social_login.php:853
2436
  msgid "User will be redirected to the selected page after Social Login"
2437
  msgstr ""
2438
  "Пользователь будет перенаправлен на выбранную страницу после входа через "
2439
  "социальные сети"
2440
 
2441
- #: ../admin/social_login.php:860
2442
  msgid "Registration redirection"
2443
  msgstr "Перенаправлении регистрации"
2444
 
2445
- #: ../admin/social_login.php:864
2446
  msgid "Same page from where user registered"
2447
  msgstr "URL целевой страницы, на которой зарегистрирован пользователь"
2448
 
2449
- #: ../admin/social_login.php:882
2450
  msgid ""
2451
  "User will be redirected to the selected page after registration (first "
2452
  "Social Login) through Social Login"
@@ -2454,23 +2521,23 @@ msgstr ""
2454
  "Пользователь будет перенаправлен на выбранную страницу после регистрации "
2455
  "(первый вход чере социальные сети) через социальные логин"
2456
 
2457
- #: ../admin/social_login.php:891
2458
  #, fuzzy
2459
  msgid "Social Account Linking Options"
2460
  msgstr "Ссылки на социальный аккаунт"
2461
 
2462
- #: ../admin/social_login.php:906
2463
  #, fuzzy
2464
  msgid "Text to display above the Social Account Linking interface"
2465
  msgstr "Текст, отображаемый над интерфейсом входа через социальные сети"
2466
 
2467
- #: ../admin/social_login.php:913
2468
  msgid ""
2469
  "Link social account to already existing account, if email address matches"
2470
  msgstr ""
2471
  "Связывает аккаунт соцсетей с существующим аккаунтом если почта совпадает."
2472
 
2473
- #: ../admin/social_login.php:923
2474
  #, fuzzy
2475
  msgid ""
2476
  "If email address of the user's Social Account matches with an already "
@@ -2483,11 +2550,11 @@ msgstr ""
2483
  "связан с существующей учетной записью. Пользователь сможет управлять этим на "
2484
  "странице профиля."
2485
 
2486
- #: ../admin/social_login.php:931
2487
  msgid "Enable social account linking at BuddyPress profile page"
2488
  msgstr "Интегрирует социальный аккаунт на странице профиля BuddyPress"
2489
 
2490
- #: ../admin/social_login.php:941
2491
  msgid ""
2492
  "Enable this option to show social account linking interface at BuddyPress "
2493
  "profile page"
@@ -2495,15 +2562,15 @@ msgstr ""
2495
  "Активируйте эту функцию чтобы интегрировать социальный аккаунт на странице "
2496
  "профиля BuddyPress"
2497
 
2498
- #: ../admin/social_login.php:952
2499
  msgid "Email popup options"
2500
  msgstr "Параметры всплывающей электронной Почты"
2501
 
2502
- #: ../admin/social_login.php:957
2503
  msgid "Text on 'Email required' popup"
2504
  msgstr "Текст на всплывающем окне «Электронная почта требуется» "
2505
 
2506
- #: ../admin/social_login.php:967
2507
  msgid ""
2508
  "This text will be displayed on email required popup. Leave empty if not "
2509
  "required."
@@ -2511,11 +2578,11 @@ msgstr ""
2511
  "Этот текст будет отображаться на всплывающем окне. требующем почту. Оставьте "
2512
  "поле пустым если не требуется."
2513
 
2514
- #: ../admin/social_login.php:975
2515
  msgid "Error message for 'Email required' popup"
2516
  msgstr "Сообщение ошибки во всплывающем окне \"Требуется почта\""
2517
 
2518
- #: ../admin/social_login.php:985
2519
  msgid ""
2520
  "This message will be displayed to user if it provides invalid or already "
2521
  "registered email"
@@ -2523,11 +2590,11 @@ msgstr ""
2523
  "Это сообщение будет показано пользователю, если он предоставил неверную или "
2524
  "уже используемую почту"
2525
 
2526
- #: ../admin/social_login.php:993
2527
  msgid "Email popup height"
2528
  msgstr "Высота высплывающего окна"
2529
 
2530
- #: ../admin/social_login.php:1003
2531
  msgid ""
2532
  "If you are seeing vertical scrollbar in the \"Email required\" popup, you "
2533
  "can increase the height of popup by specifying in this option. Leave empty "
@@ -2537,11 +2604,11 @@ msgstr ""
2537
  "\", то вы можете увеличить высотку всплывающего окна. Оставьте пустым для "
2538
  "базового значения."
2539
 
2540
- #: ../admin/social_login.php:1010
2541
  msgid "Enable email verification"
2542
  msgstr "Включить проверку электронной почты"
2543
 
2544
- #: ../admin/social_login.php:1020
2545
  msgid ""
2546
  "If enabled, email provided by the user will be verified by sending a "
2547
  "confirmation link to that email. User would not be able to login without "
@@ -2550,108 +2617,108 @@ msgstr ""
2550
  "Если опция включена, то на почту, которую указал пользователь, придет письмо "
2551
  "с подтверждением. Пользователь не сможет зайти без подтверждения своей почты."
2552
 
2553
- #: ../admin/social_login.php:1040
2554
  #, fuzzy
2555
  msgid "Enable GDPR opt-in"
2556
  msgstr "Активировать комментирование через Disqus"
2557
 
2558
- #: ../admin/social_login.php:1050
2559
  msgid ""
2560
  "Enable it to show GDPR opt-in for social login and social account linking"
2561
  msgstr ""
2562
 
2563
- #: ../admin/social_login.php:1058
2564
  #, fuzzy
2565
  msgid "Placement of GDPR opt-in"
2566
  msgstr "Активировать комментирование через Disqus"
2567
 
2568
- #: ../admin/social_login.php:1062
2569
  #, fuzzy
2570
  msgid "Above Social Login icons"
2571
  msgstr "Параметры входа через соцсети"
2572
 
2573
- #: ../admin/social_login.php:1064
2574
  #, fuzzy
2575
  msgid "Below Social Login icons"
2576
  msgstr "Параметры входа через соцсети"
2577
 
2578
- #: ../admin/social_login.php:1070
2579
  #, fuzzy
2580
  msgid "Placement of GDPR opt-in above or below the social login icons"
2581
  msgstr "Текст, отображаемый над интерфейсом входа через социальные сети"
2582
 
2583
- #: ../admin/social_login.php:1077
2584
  msgid "Opt-in text"
2585
  msgstr ""
2586
 
2587
- #: ../admin/social_login.php:1087
2588
  #, fuzzy
2589
  msgid "Text for the GDPR opt-in"
2590
  msgstr "Активировать комментирование через Disqus"
2591
 
2592
- #: ../admin/social_login.php:1094
2593
  msgid "Text to link to Terms-Conditions page"
2594
  msgstr ""
2595
 
2596
- #: ../admin/social_login.php:1104
2597
  msgid "Word(s) in the opt-in text to be linked to terms-conditions page"
2598
  msgstr ""
2599
 
2600
- #: ../admin/social_login.php:1111
2601
  msgid "Terms-Conditions Url"
2602
  msgstr ""
2603
 
2604
- #: ../admin/social_login.php:1121
2605
  #, fuzzy
2606
  msgid "Url of the terms-conditions page of your website"
2607
  msgstr "URL-адрес домашней страницы вашего веб-сайта"
2608
 
2609
- #: ../admin/social_login.php:1128
2610
  msgid "Text to link to Privacy Policy page"
2611
  msgstr ""
2612
 
2613
- #: ../admin/social_login.php:1138
2614
  msgid "Word(s) in the opt-in text to be linked to privacy policy page"
2615
  msgstr ""
2616
 
2617
- #: ../admin/social_login.php:1145
2618
  msgid "Privacy Policy Url"
2619
  msgstr ""
2620
 
2621
- #: ../admin/social_login.php:1155
2622
  #, fuzzy
2623
  msgid "Url of the privacy policy page of your website"
2624
  msgstr "URL-адрес домашней страницы вашего веб-сайта"
2625
 
2626
- #: ../admin/social_login.php:1206 ../inc/widget.php:260 ../inc/widget.php:438
2627
  #: ../inc/widget.php:602 ../inc/widget.php:750
2628
  msgid "Select"
2629
  msgstr "Выбор"
2630
 
2631
- #: ../admin/social_login.php:1237
2632
  msgid "Social Login Shortcode & Widget"
2633
  msgstr "Шорткод и виджет для входа через социальные сети "
2634
 
2635
- #: ../admin/social_login.php:1238
2636
  msgid "Social Linking Shortcode"
2637
  msgstr "Шорткод социальных ссылок"
2638
 
2639
- #: ../admin/social_login.php:1253
2640
  #, fuzzy
2641
  msgid "Why is social login not working?"
2642
  msgstr "Почему Facebook логин не работает?"
2643
 
2644
- #: ../admin/social_login.php:1254
2645
  msgid ""
2646
  "Make sure that App ID and Secret (Client ID and Secret) keys you have saved, "
2647
  "belong to the same app"
2648
  msgstr ""
2649
 
2650
- #: ../admin/social_login.php:1256
2651
  msgid "Social Login not working with Varnish enabled"
2652
  msgstr ""
2653
 
2654
- #: ../admin/social_login.php:1257
2655
  msgid ""
2656
  "Why the user is not appearing logged in even after Social Login until the "
2657
  "webpage is refreshed manually?"
@@ -2870,27 +2937,27 @@ msgstr "Неверный Запрос!"
2870
  msgid "Providers not selected"
2871
  msgstr "Сервисы не выбраны"
2872
 
2873
- #: ../inc/social_login.php:747
2874
  msgid "Email"
2875
  msgstr "Email"
2876
 
2877
- #: ../inc/social_login.php:748
2878
  msgid "Confirm email"
2879
  msgstr "Подтвердить e-mail"
2880
 
2881
- #: ../inc/social_login.php:750
2882
  msgid "Save"
2883
  msgstr "Сохранить"
2884
 
2885
- #: ../inc/social_login.php:751
2886
  msgid "Cancel"
2887
  msgstr "Отменить"
2888
 
2889
- #: ../inc/social_login.php:825
2890
  msgid "Email Verification"
2891
  msgstr "Подтверждение адреса электронной почты"
2892
 
2893
- #: ../inc/social_login.php:827
2894
  msgid ""
2895
  "Please click on the following link or paste it in browser to verify your "
2896
  "email"
2
  msgstr ""
3
  "Project-Id-Version: Super Socializer\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2020-09-23 09:46+0530\n"
6
+ "PO-Revision-Date: 2020-09-23 09:46+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:667
21
  msgid "Problem fetching access token: "
22
  msgstr ""
23
 
24
+ #: ../super_socializer.php:671 ../super_socializer.php:685
25
  msgid "Facebook SDK returned an error: "
26
  msgstr ""
27
 
28
+ #: ../super_socializer.php:681
29
  msgid "Graph returned an error: "
30
  msgstr ""
31
 
32
+ #: ../super_socializer.php:870
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:898
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:901
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:904
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:1086 ../helper.php:961
67
  msgid "Please verify your email address to login."
68
  msgstr "Пожалуйста, подтвердите ваш адрес электронной почты."
69
 
70
+ #: ../super_socializer.php:1086
71
  msgid "Your email has been verified. Now you can login to your account"
72
  msgstr "Ваше сообщение было проверено. Теперь вы можете войти в свой аккаунт"
73
 
74
+ #: ../super_socializer.php:1090
75
  msgid "Notification"
76
  msgstr "Уведомления"
77
 
78
+ #: ../super_socializer.php:1108 ../admin/social_login.php:869
79
  msgid "Email required"
80
  msgstr "Email (Обязательно)"
81
 
82
+ #: ../super_socializer.php:1111
83
  msgid "Please check your email inbox to complete the registration."
84
  msgstr "Пожалуйста, проверьте свой почтовый ящик для завершения регистрации."
85
 
86
+ #: ../super_socializer.php:1180
87
  msgid "Leave a reply"
88
  msgstr "Оставить ответ"
89
 
90
+ #: ../super_socializer.php:1196 ../inc/social_sharing.php:241
91
  msgid "Shares"
92
  msgstr "Поделились"
93
 
94
+ #: ../super_socializer.php:1196 ../inc/social_sharing.php:241
95
  msgid "Share"
96
  msgstr "Поделиться"
97
 
98
+ #: ../super_socializer.php:1196
99
  #, fuzzy
100
  msgid "Link copied."
101
  msgstr "LinkedIn"
102
 
103
+ #: ../super_socializer.php:1441
104
  msgid "Super Socializer - General Options"
105
  msgstr "Super Socializer - Общие настройки"
106
 
107
+ #: ../super_socializer.php:1441 ../admin/general_options.php:15
108
  #: ../admin/social_commenting.php:47
109
  msgid "General Options"
110
  msgstr "Основные настройки"
111
 
112
+ #: ../super_socializer.php:1509 ../helper.php:883
113
  msgid "Social Avatar"
114
  msgstr "Социальный аватар"
115
 
116
+ #: ../super_socializer.php:1512
117
  msgid "Small Avatar Url"
118
  msgstr "Ссылка для маленького аватара"
119
 
120
+ #: ../super_socializer.php:1516
121
  msgid "Large Avatar Url"
122
  msgstr "Ссылка для большого аватара"
123
 
124
+ #: ../super_socializer.php:1520 ../helper.php:886
125
  msgid ""
126
  "Do not fetch and update social avatar from my profile, next time I Social "
127
  "Login"
129
  "Не получать и обновлять социальный аватар из моего профиля, в следующий раз "
130
  "я когда я использую вход через соцсети"
131
 
132
+ #: ../super_socializer.php:1524 ../helper.php:887
133
  msgid "Update social avatar, next time I Social Login"
134
  msgstr ""
135
  "Обновление аватара соцсетей в следующий раз при использовании входа через "
136
  "соцсети"
137
 
138
+ #: ../super_socializer.php:1601
139
  msgid "Login with your Social ID"
140
  msgstr "Войти, используя социальный аккаунт"
141
 
142
+ #: ../super_socializer.php:1602
143
  msgid "Email you entered is already registered or invalid"
144
  msgstr ""
145
  "Электронная почта, которую вы ввели, уже зарегистрирована или недействительна"
146
 
147
+ #: ../super_socializer.php:1607
148
  msgid "Please enter a valid email address. You might be required to verify it"
149
  msgstr ""
150
  "Пожалуйста, введите действительный адрес электронной почты. Вам, возможно, "
151
  "потребуется проверить его"
152
 
153
+ #: ../super_socializer.php:1611 ../super_socializer.php:2309
154
  msgid "Link your social account to login to your account at this website"
155
  msgstr ""
156
  "Введите ссылку на ваш аккаут в социальных сетях чтобы войти в аккаунт на "
157
  "этом сайте"
158
 
159
+ #: ../super_socializer.php:1851
160
  msgid "Thanks for installing Super Socializer plugin"
161
  msgstr ""
162
 
163
+ #: ../super_socializer.php:1853
164
  msgid "Configure the Plugin"
165
  msgstr ""
166
 
167
+ #: ../super_socializer.php:1864
168
  msgid ""
169
  "Update \"Facebook Comments Moderation\" add-on for compatibility with "
170
  "current version of Super Socializer"
171
  msgstr ""
172
 
173
+ #: ../super_socializer.php:1873
174
  msgid ""
175
  "Update \"Facebook Comments Notifier\" add-on for compatibility with current "
176
  "version of Super Socializer"
177
  msgstr ""
178
 
179
+ #: ../super_socializer.php:1882
180
  msgid ""
181
  "Update \"Social Login Buttons\" add-on for compatibility with current "
182
  "version of Super Socializer"
183
  msgstr ""
184
 
185
+ #: ../super_socializer.php:1891
186
  msgid ""
187
  "Update \"Social Share myCRED Integration\" add-on for maximum compatibility "
188
  "with current version of Super Socializer"
189
  msgstr ""
190
 
191
+ #: ../super_socializer.php:1900
192
  msgid ""
193
  "Update \"Social Login myCRED Integration\" add-on for maximum compatibility "
194
  "with current version of Super Socializer"
195
  msgstr ""
196
 
197
+ #: ../super_socializer.php:1911
198
  #, php-format
199
  msgid ""
200
  "To continue using Steam login save Steam API key <a href=\"%s\">here</a>"
201
  msgstr ""
202
 
203
+ #: ../super_socializer.php:1920
204
  #, php-format
205
  msgid ""
206
  "To continue using Instagram login create a new Instagram App as described <a "
208
  "Instagram App Secret <a href=\"%s\">here</a>"
209
  msgstr ""
210
 
211
+ #: ../super_socializer.php:1929 ../super_socializer.php:1938
212
  #, php-format
213
  msgid ""
214
  "To continue using bitly url shortener, login to your bit.ly account and "
217
  "\">here</a>. More details at the <a href=\"%s\" target=\"_blank\">link</a>"
218
  msgstr ""
219
 
220
+ #: ../super_socializer.php:1954
221
  #, php-format
222
  msgid ""
223
  "To continue using Social Login, save the secret keys <a href=\"%s\">here</a>"
224
  msgstr ""
225
 
226
+ #: ../super_socializer.php:1978
227
  #, php-format
228
  msgid ""
229
  "Add %s in \"Valid OAuth redirect URIs\" option in your Facebook app settings "
231
  "target=\"_blank\">here</a>"
232
  msgstr ""
233
 
234
+ #: ../super_socializer.php:1978 ../super_socializer.php:2003
235
+ #: ../super_socializer.php:2028 ../super_socializer.php:2053
236
+ #: ../super_socializer.php:2086 ../super_socializer.php:2114
237
+ #: ../super_socializer.php:2141
238
  msgid "Okay"
239
  msgstr "Окей"
240
 
241
+ #: ../super_socializer.php:2003
242
  #, php-format
243
  msgid ""
244
  "Add %s in \"Callback URLs\" option in your Twitter app settings for Twitter "
246
  "\">here</a>"
247
  msgstr ""
248
 
249
+ #: ../super_socializer.php:2028
250
  #, php-format
251
  msgid ""
252
  "Add %s in \"Authorized Redirect URLs\" option in your Linkedin app settings "
254
  "target=\"_blank\">here</a>"
255
  msgstr ""
256
 
257
+ #: ../super_socializer.php:2053
258
  #, php-format
259
  msgid ""
260
  "Add %s in \"Authorized redirect URIs\" option in your Google client settings "
262
  "target=\"_blank\">here</a>"
263
  msgstr ""
264
 
265
+ #: ../super_socializer.php:2064
266
  #, php-format
267
  msgid ""
268
  "Save the url of privacy policy page of your website <a href=\"%s\">here</a>"
269
  msgstr ""
270
 
271
+ #: ../super_socializer.php:2086
272
  #, php-format
273
  msgid ""
274
  "This plugin is GDPR compliant. You need to update the privacy policy of your "
276
  "\"%s\" target=\"_blank\">here</a>"
277
  msgstr ""
278
 
279
+ #: ../super_socializer.php:2114
280
  #, php-format
281
  msgid ""
282
  "Now plugin supports a new service Twitcount.com to show Twitter shares. To "
285
  "your website %s with them. No need to copy-paste any code from their website."
286
  msgstr ""
287
 
288
+ #: ../super_socializer.php:2141
289
  #, php-format
290
  msgid ""
291
  "Replace url saved in \"Callback URLs\" option in your Twitter app settings "
293
  "\"%s\" target=\"_blank\">here</a>"
294
  msgstr ""
295
 
296
+ #: ../super_socializer.php:2166
297
  #, php-format
298
  msgid ""
299
  "If you cannot get Linkedin login to work after updating the plugin, replace "
301
  "For more details, check step 6 <a href=\"%s\" target=\"_blank\">here</a>"
302
  msgstr ""
303
 
304
+ #: ../super_socializer.php:2166 ../super_socializer.php:2193
305
  msgid "Dismiss"
306
  msgstr ""
307
 
308
+ #: ../super_socializer.php:2192
309
  #, php-format
310
  msgid ""
311
  "Save Facebook App ID and Secret keys in \"Standard Interface\" and/or "
314
  "that, clear share counts cache from \"Miscellaneous\" section"
315
  msgstr ""
316
 
317
+ #: ../super_socializer.php:2385
318
  msgid ""
319
  "Your browser is blocking some features of this website. Please follow the "
320
  "instructions at {support_url} to unblock these."
416
 
417
  #: ../helper.php:898 ../admin/general_options.php:89
418
  #: ../admin/social_sharing.php:1944 ../admin/social_commenting.php:400
419
+ #: ../admin/social_login.php:1359 ../admin/like_buttons.php:780
420
  msgid "Save Changes"
421
  msgstr "Сохранить изменения"
422
 
440
  #: ../admin/general_options.php:7 ../admin/general_options.php:93
441
  #: ../admin/social_sharing.php:5 ../admin/social_sharing.php:1948
442
  #: ../admin/social_commenting.php:5 ../admin/social_commenting.php:404
443
+ #: ../admin/social_login.php:5 ../admin/social_login.php:1363
444
  #: ../admin/like_buttons.php:6 ../admin/like_buttons.php:784
445
  #, fuzzy, php-format
446
  msgid ""
495
  "Можно указать любые дополнительные правила CSS (без тега &lt; style &gt;)"
496
 
497
  #: ../admin/general_options.php:103 ../admin/social_sharing.php:1954
498
+ #: ../admin/social_commenting.php:410 ../admin/social_login.php:1369
499
  #: ../admin/like_buttons.php:790
500
  #, fuzzy
501
  msgid "Instagram Shoutout"
502
  msgstr "Instagram"
503
 
504
  #: ../admin/general_options.php:105 ../admin/social_sharing.php:1956
505
+ #: ../admin/social_commenting.php:412 ../admin/social_login.php:1371
506
  #: ../admin/like_buttons.php:792
507
  msgid ""
508
  "If you can send (to hello@heateor.com) how this plugin is helping your "
641
 
642
  #: ../admin/social_sharing.php:67 ../admin/social_sharing.php:1869
643
  #: ../admin/social_sharing.php:1871 ../admin/social_login.php:45
644
+ #: ../admin/social_login.php:1325 ../admin/like_buttons.php:50
645
  #: ../admin/like_buttons.php:751
646
  msgid "Shortcode & Widget"
647
  msgstr "Шорткод и виджет"
652
 
653
  #: ../admin/social_sharing.php:69 ../admin/social_sharing.php:1902
654
  #: ../admin/social_commenting.php:40 ../admin/social_commenting.php:384
655
+ #: ../admin/social_login.php:46 ../admin/social_login.php:1339
656
  #: ../admin/like_buttons.php:51 ../admin/like_buttons.php:764
657
  msgid "FAQ"
658
  msgstr "Часто задаваемые вопросы (FAQ)"
884
  msgid "Url to share"
885
  msgstr "Ссылка чтобы Поделиться"
886
 
887
+ #: ../admin/social_sharing.php:725 ../admin/social_login.php:610
888
+ #: ../admin/social_login.php:986 ../admin/like_buttons.php:105
889
  #: ../inc/widget.php:945
890
  msgid "Title"
891
  msgstr "Заголовок"
971
  msgstr "Размещение"
972
 
973
  #: ../admin/social_sharing.php:957 ../admin/social_sharing.php:1383
974
+ #: ../admin/social_login.php:927 ../admin/social_login.php:956
975
  #: ../admin/like_buttons.php:218 ../admin/like_buttons.php:494
976
  msgid "Homepage"
977
  msgstr "Главная"
1240
  msgid "Required only to track Facebook share count"
1241
  msgstr ""
1242
 
1243
+ #: ../admin/social_sharing.php:1584 ../admin/social_login.php:158
1244
  msgid "Facebook App ID"
1245
  msgstr "Facebook App ID"
1246
 
1253
  "Необходимо для входа через Facebook. Пожалуйста, посмотрите документацию <a "
1254
  "href=\"%s\" target=\"_blank\">здесь</a> для получения ID приложения Facebook."
1255
 
1256
+ #: ../admin/social_sharing.php:1601 ../admin/social_login.php:179
1257
  #, fuzzy
1258
  msgid "Facebook App Secret"
1259
  msgstr "Facebook App ID"
1441
  "\"Получение информации о новой поломке\" ."
1442
 
1443
  #: ../admin/social_sharing.php:1904 ../admin/social_commenting.php:386
1444
+ #: ../admin/social_login.php:1341
1445
  msgid ""
1446
  "<strong>Note:</strong> Plugin will not work on local server. You should have "
1447
  "an online website for the plugin to function properly."
1499
  msgstr ""
1500
 
1501
  #: ../admin/social_sharing.php:1919 ../admin/social_commenting.php:389
1502
+ #: ../admin/social_login.php:1348
1503
  msgid "Why is my browser blocking some features of the plugin?"
1504
  msgstr "Почему мой браузер блокирует некоторые функции плагина?"
1505
 
1817
  msgid "Advanced Configuration"
1818
  msgstr "Расширенная конфигурация"
1819
 
1820
+ #: ../admin/social_login.php:41 ../admin/social_login.php:1125
1821
  msgid "GDPR"
1822
  msgstr ""
1823
 
1824
+ #: ../admin/social_login.php:43 ../admin/social_login.php:1276
1825
  msgid "XProfile Integration"
1826
  msgstr "XProfile интеграция"
1827
 
1892
  msgstr ""
1893
 
1894
  #: ../admin/social_login.php:135
1895
+ msgid "Wordpress"
1896
+ msgstr ""
1897
+
1898
+ #: ../admin/social_login.php:139
1899
  msgid "Windows Live"
1900
  msgstr ""
1901
 
1902
  #: ../admin/social_login.php:143
1903
+ msgid "Yahoo"
1904
+ msgstr ""
1905
+
1906
+ #: ../admin/social_login.php:151
1907
  msgid "Select Social ID provider to enable in Social Login"
1908
  msgstr "Выберите социальные сети чтобы активировать вход через социальные сети"
1909
 
1910
+ #: ../admin/social_login.php:168
1911
  #, php-format
1912
  msgid ""
1913
  "Required for Facebook Social Login to work. Please follow the documentation "
1916
  "Необходимо для входа через Facebook. Пожалуйста, посмотрите документацию <a "
1917
  "href=\"%s\" target=\"_blank\">здесь</a> для получения ID приложения Facebook."
1918
 
1919
+ #: ../admin/social_login.php:170 ../admin/social_login.php:191
1920
  #, fuzzy
1921
  msgid ""
1922
  "Paste following url in <strong>Site URL</strong> option mentioned at the link"
1924
  "Вставьте следующий URL-адрес в <strong>URL-адрес сайта</strong> для "
1925
  "упоминания ссылки."
1926
 
1927
+ #: ../admin/social_login.php:189
1928
  #, fuzzy, php-format
1929
  msgid ""
1930
  "Required for Facebook Social Login to work. Please follow the documentation "
1933
  "Необходимо для входа через Facebook. Пожалуйста, посмотрите документацию <a "
1934
  "href=\"%s\" target=\"_blank\">здесь</a> для получения ID приложения Facebook."
1935
 
1936
+ #: ../admin/social_login.php:200
1937
  msgid "Twitter API Key"
1938
  msgstr "Twitter API ключ"
1939
 
1940
+ #: ../admin/social_login.php:210
1941
  #, php-format
1942
  msgid ""
1943
  "Required for Twitter Social Login to work. Please follow the documentation "
1947
  "href=\"%s\" target=\"_blank\">здесь</a> для получения ключа приложения "
1948
  "Twitter."
1949
 
1950
+ #: ../admin/social_login.php:212 ../admin/social_login.php:237
1951
  #, fuzzy
1952
  msgid ""
1953
  "Paste following url in <strong>Website</strong> option mentioned at the link"
1955
  "Вставьте следующий URL-адрес в <strong>URL веб-сайта</strong> для упоминания "
1956
  "ссылки"
1957
 
1958
+ #: ../admin/social_login.php:216 ../admin/social_login.php:241
1959
+ #: ../admin/social_login.php:429 ../admin/social_login.php:449
1960
+ #: ../admin/social_login.php:469 ../admin/social_login.php:489
1961
  #, fuzzy
1962
  msgid ""
1963
  "Paste following url in <strong>Callback URL</strong> option mentioned at the "
1966
  "Вставьте следующий URL-адрес в <strong>URL веб-сайта</strong> для упоминания "
1967
  "ссылки"
1968
 
1969
+ #: ../admin/social_login.php:225
1970
  msgid "Twitter API Secret"
1971
  msgstr "Twitter API секретный ключ"
1972
 
1973
+ #: ../admin/social_login.php:235
1974
  #, php-format
1975
  msgid ""
1976
  "Required for Twitter Social Login to work. Please follow the documentation "
1980
  "href=\"%s\" target=\"_blank\">здесь</a> для получения секретного ключа "
1981
  "приложения Facebook."
1982
 
1983
+ #: ../admin/social_login.php:250
1984
  #, fuzzy
1985
  msgid "LinkedIn Client ID"
1986
  msgstr "LinkedIn"
1987
 
1988
+ #: ../admin/social_login.php:260
1989
  #, fuzzy, php-format
1990
  msgid ""
1991
  "Required for LinkedIn Social Login to work. Please follow the documentation "
1995
  "href=\"%s\" target=\"_blank\">здесь</a> для получения ключа приложения "
1996
  "LinkedIn."
1997
 
1998
+ #: ../admin/social_login.php:262 ../admin/social_login.php:283
1999
  #, fuzzy
2000
  msgid ""
2001
  "Paste following url in <strong>Redirect URLs</strong> option mentioned at "
2004
  "Вставьте следующий URL-адрес в <strong>URL-адрес сайта</strong> для "
2005
  "упоминания ссылки."
2006
 
2007
+ #: ../admin/social_login.php:271
2008
  #, fuzzy
2009
  msgid "LinkedIn Client Secret"
2010
  msgstr "LinkedIn"
2011
 
2012
+ #: ../admin/social_login.php:281
2013
  #, fuzzy, php-format
2014
  msgid ""
2015
  "Required for LinkedIn Social Login to work. Please follow the documentation "
2020
  "href=\"%s\" target=\"_blank\">здесь</a> для получения ключа приложения "
2021
  "LinkedIn."
2022
 
2023
+ #: ../admin/social_login.php:292
2024
  #, fuzzy
2025
  msgid "Google Client ID"
2026
  msgstr "Google+ ID клиента"
2027
 
2028
+ #: ../admin/social_login.php:302
2029
  #, fuzzy, php-format
2030
  msgid ""
2031
  "Required for Google Social Login to work. Please follow the documentation at "
2034
  "Необходимо для входа через Google+. Пожалуйста, посмотрите документацию <a "
2035
  "href=\"%s\" target=\"_blank\">здесь</a> для получения ID клиента в Google+."
2036
 
2037
+ #: ../admin/social_login.php:304 ../admin/social_login.php:325
2038
  #, fuzzy
2039
  msgid ""
2040
  "Paste following url in <strong>AUTHORIZED REDIRECT URI</strong> option "
2043
  "Вставьте следующий URL-адрес в <strong>URL-адрес сайта</strong> для "
2044
  "упоминания ссылки."
2045
 
2046
+ #: ../admin/social_login.php:313
2047
  #, fuzzy
2048
  msgid "Google Client Secret"
2049
  msgstr "Google+ ID клиента"
2050
 
2051
+ #: ../admin/social_login.php:323
2052
  #, fuzzy, php-format
2053
  msgid ""
2054
  "Required for Google Social Login to work. Please follow the documentation at "
2057
  "Необходимо для входа через Google+. Пожалуйста, посмотрите документацию <a "
2058
  "href=\"%s\" target=\"_blank\">здесь</a> для получения ID клиента в Google+."
2059
 
2060
+ #: ../admin/social_login.php:334
2061
  msgid "Vkontakte Application ID"
2062
  msgstr " ID приложения Vkontakte"
2063
 
2064
+ #: ../admin/social_login.php:344 ../admin/social_login.php:365
2065
  #, php-format
2066
  msgid ""
2067
  "Required for Vkontakte Social Login to work. Please follow the documentation "
2072
  "href=\"%s\" target=\"_blank\">здесь</a> для получения ID приложения "
2073
  "Vkontakte."
2074
 
2075
+ #: ../admin/social_login.php:346 ../admin/social_login.php:367
2076
  #, fuzzy
2077
  msgid ""
2078
  "Paste following url in <strong>Site address</strong> option mentioned at the "
2081
  "Вставьте следующий URL-адрес в <strong>URL-адрес сайта</strong> для "
2082
  "упоминания ссылки."
2083
 
2084
+ #: ../admin/social_login.php:355
2085
  #, fuzzy
2086
  msgid "Vkontakte Secure key"
2087
  msgstr "Вконтакте"
2088
 
2089
+ #: ../admin/social_login.php:376
2090
  #, fuzzy
2091
  msgid "Instagram App ID"
2092
  msgstr "Instagram ID клиента"
2093
 
2094
+ #: ../admin/social_login.php:386
2095
  #, fuzzy, php-format
2096
  msgid ""
2097
  "Required for Instagram Social Login to work. Please follow the documentation "
2101
  "href=\"%s\" target=\"_blank\">здесь</a> для получения ID клиента в "
2102
  "Instagram."
2103
 
2104
+ #: ../admin/social_login.php:388 ../admin/social_login.php:409
2105
  #, fuzzy
2106
  msgid ""
2107
  "Paste following url in <strong>Valid OAuth Redirect URIs</strong> option "
2110
  "Вставьте следующий URL-адрес в <strong>URL-адрес сайта</strong> для "
2111
  "упоминания ссылки."
2112
 
2113
+ #: ../admin/social_login.php:397
2114
  #, fuzzy
2115
  msgid "Instagram App Secret"
2116
  msgstr "Введите имя пользователя Instagram."
2117
 
2118
+ #: ../admin/social_login.php:407
2119
  #, fuzzy, php-format
2120
  msgid ""
2121
  "Required for Instagram Social Login to work. Please follow the documentation "
2125
  "href=\"%s\" target=\"_blank\">здесь</a> для получения ID клиента в "
2126
  "Instagram."
2127
 
2128
+ #: ../admin/social_login.php:418
2129
  msgid "Line Channel ID"
2130
  msgstr ""
2131
 
2132
+ #: ../admin/social_login.php:427
2133
  #, fuzzy, php-format
2134
  msgid ""
2135
  "Required for Line Social Login to work. Please follow the documentation at "
2139
  "href=\"%s\" target=\"_blank\">здесь</a> для получения ключа приложения "
2140
  "LinkedIn."
2141
 
2142
+ #: ../admin/social_login.php:438
2143
  #, fuzzy
2144
  msgid "Line Channel Secret"
2145
  msgstr "LinkedIn"
2146
 
2147
+ #: ../admin/social_login.php:447
2148
  #, fuzzy, php-format
2149
  msgid ""
2150
  "Required for Line Social Login to work. Please follow the documentation at "
2154
  "href=\"%s\" target=\"_blank\">здесь</a> для получения ключа приложения "
2155
  "LinkedIn."
2156
 
2157
+ #: ../admin/social_login.php:458
2158
+ #, fuzzy
2159
+ msgid "Wordpress Client ID"
2160
+ msgstr "Google+ ID клиента"
2161
+
2162
+ #: ../admin/social_login.php:467
2163
+ #, fuzzy, php-format
2164
+ msgid ""
2165
+ "Required for Wordpress Social Login to work. Please follow the documentation "
2166
+ "at <a href=\"%s\" target=\"_blank\">this link</a> to get Wordpress Client ID"
2167
+ msgstr ""
2168
+ "Необходимо для входа через Google+. Пожалуйста, посмотрите документацию <a "
2169
+ "href=\"%s\" target=\"_blank\">здесь</a> для получения ID клиента в Google+."
2170
+
2171
+ #: ../admin/social_login.php:478
2172
+ #, fuzzy
2173
+ msgid "Wordpress Client Secret"
2174
+ msgstr "Google+ ID клиента"
2175
+
2176
+ #: ../admin/social_login.php:487
2177
+ #, fuzzy, php-format
2178
+ msgid ""
2179
+ "Required for Wordpress Social Login to work. Please follow the documentation "
2180
+ "at <a href=\"%s\" target=\"_blank\">this link</a> to get Wordpress Client "
2181
+ "Secret"
2182
+ msgstr ""
2183
+ "Необходимо для входа через Google+. Пожалуйста, посмотрите документацию <a "
2184
+ "href=\"%s\" target=\"_blank\">здесь</a> для получения ID клиента в Google+."
2185
+
2186
+ #: ../admin/social_login.php:498
2187
  #, fuzzy
2188
  msgid "Microsoft Client ID"
2189
  msgstr "Google+ ID клиента"
2190
 
2191
+ #: ../admin/social_login.php:507
2192
  #, fuzzy, php-format
2193
  msgid ""
2194
  "Required for Live Social Login to work. Please follow the documentation at "
2197
  "Необходимо для входа через Google+. Пожалуйста, посмотрите документацию <a "
2198
  "href=\"%s\" target=\"_blank\">здесь</a> для получения ID клиента в Google+."
2199
 
2200
+ #: ../admin/social_login.php:509 ../admin/social_login.php:529
2201
+ #: ../admin/social_login.php:567 ../admin/social_login.php:587
2202
  #, fuzzy
2203
  msgid ""
2204
  "Paste following url in <strong>Redirect URIs</strong> option mentioned at "
2207
  "Вставьте следующий URL-адрес в <strong>URL-адрес сайта</strong> для "
2208
  "упоминания ссылки."
2209
 
2210
+ #: ../admin/social_login.php:518
2211
  #, fuzzy
2212
  msgid "Microsoft Client Secret"
2213
  msgstr "Google+ ID клиента"
2214
 
2215
+ #: ../admin/social_login.php:527
2216
  #, fuzzy, php-format
2217
  msgid ""
2218
  "Required for Live Social Login to work. Please follow the documentation at "
2222
  "Необходимо для входа через Google+. Пожалуйста, посмотрите документацию <a "
2223
  "href=\"%s\" target=\"_blank\">здесь</a> для получения ID клиента в Google+."
2224
 
2225
+ #: ../admin/social_login.php:537
2226
  #, fuzzy
2227
  msgid "Steam API Key"
2228
  msgstr "Twitter API ключ"
2229
 
2230
+ #: ../admin/social_login.php:546
2231
  #, fuzzy, php-format
2232
  msgid ""
2233
  "Required for Steam Social Login to work. Get it at <a href=\"%s\" target="
2237
  "href=\"%s\" target=\"_blank\">здесь</a> для получения ключа приложения "
2238
  "Twitter."
2239
 
2240
+ #: ../admin/social_login.php:547
2241
  #, fuzzy
2242
  msgid "Save following <strong>domain</strong> to get the key"
2243
  msgstr ""
2244
  "Вставьте следующий URL-адрес в <strong>URL веб-сайта</strong> для упоминания "
2245
  "ссылки"
2246
 
2247
+ #: ../admin/social_login.php:556
2248
+ #, fuzzy
2249
+ msgid "Yahoo Client ID"
2250
+ msgstr "Google+ ID клиента"
2251
+
2252
+ #: ../admin/social_login.php:565
2253
+ #, fuzzy, php-format
2254
+ msgid ""
2255
+ "Required for Yahoo Social Login to work. Please follow the documentation at "
2256
+ "<a href=\"%s\" target=\"_blank\">this link</a> to get Yahoo Client ID"
2257
+ msgstr ""
2258
+ "Необходимо для входа через Google+. Пожалуйста, посмотрите документацию <a "
2259
+ "href=\"%s\" target=\"_blank\">здесь</a> для получения ID клиента в Google+."
2260
+
2261
+ #: ../admin/social_login.php:576
2262
+ #, fuzzy
2263
+ msgid "Yahoo Client Secret"
2264
+ msgstr "Google+ ID клиента"
2265
+
2266
+ #: ../admin/social_login.php:585
2267
+ #, fuzzy, php-format
2268
+ msgid ""
2269
+ "Required for Yahoo Social Login to work. Please follow the documentation at "
2270
+ "<a href=\"%s\" target=\"_blank\">this link</a> to get Yahoo Client Secret key"
2271
+ msgstr ""
2272
+ "Необходимо для входа через Google+. Пожалуйста, посмотрите документацию <a "
2273
+ "href=\"%s\" target=\"_blank\">здесь</a> для получения ID клиента в Google+."
2274
+
2275
+ #: ../admin/social_login.php:605
2276
  msgid "Social Login Options"
2277
  msgstr "Параметры входа через соцсети"
2278
 
2279
+ #: ../admin/social_login.php:620
2280
  msgid "Text to display above the Social Login interface"
2281
  msgstr "Текст, отображаемый над интерфейсом входа через социальные сети"
2282
 
2283
+ #: ../admin/social_login.php:628
2284
  msgid "Trigger social login in the same browser tab"
2285
  msgstr ""
2286
 
2287
+ #: ../admin/social_login.php:638
2288
  msgid "Trigger social login in the same browser tab instead of a popup window"
2289
  msgstr ""
2290
 
2291
+ #: ../admin/social_login.php:645
2292
  #, fuzzy
2293
  msgid "Center align icons"
2294
  msgstr "Переставить иконы"
2295
 
2296
+ #: ../admin/social_login.php:655
2297
  #, fuzzy
2298
  msgid "Center align social login icons"
2299
  msgstr "Параметры входа через соцсети"
2300
 
2301
+ #: ../admin/social_login.php:662
2302
  msgid "Enable at login page"
2303
  msgstr "Включить страницу входа"
2304
 
2305
+ #: ../admin/social_login.php:672
2306
  msgid ""
2307
  "Social Login interface will get enabled at the login page of your website"
2308
  msgstr ""
2309
  "Интерфейс входа через социальные сети будет активирован на странице входа "
2310
 
2311
+ #: ../admin/social_login.php:679
2312
  msgid "Enable at register page"
2313
  msgstr "Включить на странице регистрации"
2314
 
2315
+ #: ../admin/social_login.php:689
2316
  msgid ""
2317
  "Social Login interface will get enabled at the registration page of your "
2318
  "website"
2319
  msgstr "Интерфейс входа через социальные сети будет активирован на странице"
2320
 
2321
+ #: ../admin/social_login.php:696
2322
  msgid "Enable at comment form"
2323
  msgstr "Включить в форму комментирования"
2324
 
2325
+ #: ../admin/social_login.php:706
2326
  msgid "Social Login interface will get enabled at your Wordpress Comment form"
2327
  msgstr ""
2328
  "Интерфейс входа через социальные сети будет активирован в вашей форме "
2329
  "комментирования Wordpress"
2330
 
2331
+ #: ../admin/social_login.php:720
2332
  msgid "Enable before WooCommerce Customer Login Form"
2333
  msgstr "Активировать перед формой входа покупателя в WooCommerce"
2334
 
2335
+ #: ../admin/social_login.php:730
2336
  msgid ""
2337
  "Social Login Interface will get enabled before the customer login form at "
2338
  "WooCommerce My Account page"
2340
  "Интерфейс входа через социальные сети будет активирован перед формой входа "
2341
  "для покупателя на странице Мой Аккаунт в WooCommerce"
2342
 
2343
+ #: ../admin/social_login.php:737
2344
  #, fuzzy
2345
  msgid "Enable at WooCommerce Customer Login Form"
2346
  msgstr "Включить после формы входа клиента WooCommerce"
2347
 
2348
+ #: ../admin/social_login.php:747
2349
  #, fuzzy
2350
  msgid ""
2351
  "Integrate Social Login Interface with the customer login form at WooCommerce "
2354
  "Интерфейс входа через социальные сети будет активирован после формы входа "
2355
  "для покупателя на странице Мой Аккаунт в WooCommerce"
2356
 
2357
+ #: ../admin/social_login.php:754
2358
  #, fuzzy
2359
  msgid "Enable at WooCommerce Customer Register Form"
2360
  msgstr "Включить после формы входа клиента WooCommerce"
2361
 
2362
+ #: ../admin/social_login.php:764
2363
  #, fuzzy
2364
  msgid ""
2365
  "Integrate Social Login Interface with the customer register form at "
2368
  "Интерфейс входа через социальные сети будет активирован после формы входа "
2369
  "для покупателя на странице Мой Аккаунт в WooCommerce"
2370
 
2371
+ #: ../admin/social_login.php:771
2372
  msgid "Enable at WooCommerce checkout page"
2373
  msgstr "Включить на странице оформления заказа WooCommerce"
2374
 
2375
+ #: ../admin/social_login.php:781
2376
  msgid "Social Login Interface will get enabled at WooCommerce checkout page"
2377
  msgstr ""
2378
  "Интерфейс входа через социальные сети будет активирован на странице "
2379
  "оформления заказа в WooCommerce"
2380
 
2381
+ #: ../admin/social_login.php:791
2382
  msgid "Auto-approve comments made by Social Login users"
2383
  msgstr ""
2384
  "Автоодобрение комментариев для пользователей, вошедших через социальные сети"
2385
 
2386
+ #: ../admin/social_login.php:801
2387
  msgid ""
2388
  "If this option is enabled, and WordPress comment is made by Social Login "
2389
  "user, comment will get approved immediately without keeping in moderation."
2392
  "который вошел через социальные сети, то комментарий будет опубликован сразу "
2393
  "без модерации."
2394
 
2395
+ #: ../admin/social_login.php:802
2396
  msgid "Note: This is not related to Facebook comments"
2397
  msgstr "Примечание: Это не связано с комментариями от Facebook"
2398
 
2399
+ #: ../admin/social_login.php:811
2400
  msgid "Enable social avatar"
2401
  msgstr "Включение социальных аватар"
2402
 
2403
+ #: ../admin/social_login.php:821
2404
  msgid ""
2405
  "Social profile pictures of the logged in user will be displayed as profile "
2406
  "avatar"
2408
  "Изображения пользователя в социальных сетях будет использоваться как "
2409
  "изображение профиля на сайте"
2410
 
2411
+ #: ../admin/social_login.php:830
2412
  msgid "Avatar quality"
2413
  msgstr "Качество аватары"
2414
 
2415
+ #: ../admin/social_login.php:833
2416
  msgid "Average"
2417
  msgstr "Среднее"
2418
 
2419
+ #: ../admin/social_login.php:834
2420
  msgid "Best"
2421
  msgstr "лучший"
2422
 
2423
+ #: ../admin/social_login.php:841
2424
  msgid "Choose avatar quality"
2425
  msgstr "Выберите качество аватара"
2426
 
2427
+ #: ../admin/social_login.php:849
2428
  msgid ""
2429
  "Show option for users to update social avatar at BuddyPress profile page"
2430
  msgstr ""
2431
  "Показать вариант для пользователей для обновления социального аватара на "
2432
  "странице профиля BuddyPress"
2433
 
2434
+ #: ../admin/social_login.php:859
2435
  msgid ""
2436
  "If enabled, users would be able to update their social avatar from \"Profile "
2437
  "photo\" section in BuddyPress profile at front-end"
2439
  "Если этот параметр включен, пользователи смогут обновить свой социальный "
2440
  "аватар из раздела «Профиль» фото в профиле BuddyPress "
2441
 
2442
+ #: ../admin/social_login.php:879
2443
  msgid ""
2444
  "If enabled and Social ID provider does not provide user's email address on "
2445
  "login, user will be asked to provide his/her email address. Otherwise, a "
2449
  "для входа, пользователю потребуется ввести свою почту. В противном же "
2450
  "случае, почта будет создана по образцу."
2451
 
2452
+ #: ../admin/social_login.php:887
2453
  msgid "Send post-registration email to user to set account password"
2454
  msgstr ""
2455
  "Отправить после регистрации по электронной почте пользователю письмо чтобы "
2456
  "установить пароль учетной записи"
2457
 
2458
+ #: ../admin/social_login.php:897
2459
  msgid ""
2460
  "If enabled, an email will be sent to user after registration through Social "
2461
  "Login, regarding his/her login credentials (username-password to be able to "
2465
  "социальные сети будет отправлено письмо с именем и пароль чтобы была "
2466
  "возможность зайти черед стандартную форму авторизации"
2467
 
2468
+ #: ../admin/social_login.php:904
2469
  msgid "Send new user registration notification email to admin"
2470
  msgstr ""
2471
  "Отправить уведомление о регистрации нового пользователя по электронной почте "
2472
  "администратору"
2473
 
2474
+ #: ../admin/social_login.php:914
2475
  msgid ""
2476
  "If enabled, an email will be sent to admin after new user registers through "
2477
  "Social Login, notifying admin about the new user registration"
2479
  "Если опция включена, на почту администратора прийдет уведомление о "
2480
  "регистрации нового пользователя через соцсети."
2481
 
2482
+ #: ../admin/social_login.php:921
2483
  msgid "Login redirection"
2484
  msgstr "Перенаправления входа"
2485
 
2486
+ #: ../admin/social_login.php:925
2487
  msgid "Same page where user logged in"
2488
  msgstr "Та же страница, на которой пользователь произвел вход "
2489
 
2490
+ #: ../admin/social_login.php:929 ../admin/social_login.php:958
2491
  msgid "Account dashboard"
2492
  msgstr "Страница управления моим аккаунтом"
2493
 
2494
+ #: ../admin/social_login.php:932 ../admin/social_login.php:961
2495
  msgid "BuddyPress profile page"
2496
  msgstr "Страница профиля BuddyPress"
2497
 
2498
+ #: ../admin/social_login.php:935 ../admin/social_login.php:964
2499
  msgid "Custom Url"
2500
  msgstr "Пользовательская ссылка"
2501
 
2502
+ #: ../admin/social_login.php:943
2503
  msgid "User will be redirected to the selected page after Social Login"
2504
  msgstr ""
2505
  "Пользователь будет перенаправлен на выбранную страницу после входа через "
2506
  "социальные сети"
2507
 
2508
+ #: ../admin/social_login.php:950
2509
  msgid "Registration redirection"
2510
  msgstr "Перенаправлении регистрации"
2511
 
2512
+ #: ../admin/social_login.php:954
2513
  msgid "Same page from where user registered"
2514
  msgstr "URL целевой страницы, на которой зарегистрирован пользователь"
2515
 
2516
+ #: ../admin/social_login.php:972
2517
  msgid ""
2518
  "User will be redirected to the selected page after registration (first "
2519
  "Social Login) through Social Login"
2521
  "Пользователь будет перенаправлен на выбранную страницу после регистрации "
2522
  "(первый вход чере социальные сети) через социальные логин"
2523
 
2524
+ #: ../admin/social_login.php:981
2525
  #, fuzzy
2526
  msgid "Social Account Linking Options"
2527
  msgstr "Ссылки на социальный аккаунт"
2528
 
2529
+ #: ../admin/social_login.php:996
2530
  #, fuzzy
2531
  msgid "Text to display above the Social Account Linking interface"
2532
  msgstr "Текст, отображаемый над интерфейсом входа через социальные сети"
2533
 
2534
+ #: ../admin/social_login.php:1003
2535
  msgid ""
2536
  "Link social account to already existing account, if email address matches"
2537
  msgstr ""
2538
  "Связывает аккаунт соцсетей с существующим аккаунтом если почта совпадает."
2539
 
2540
+ #: ../admin/social_login.php:1013
2541
  #, fuzzy
2542
  msgid ""
2543
  "If email address of the user's Social Account matches with an already "
2550
  "связан с существующей учетной записью. Пользователь сможет управлять этим на "
2551
  "странице профиля."
2552
 
2553
+ #: ../admin/social_login.php:1021
2554
  msgid "Enable social account linking at BuddyPress profile page"
2555
  msgstr "Интегрирует социальный аккаунт на странице профиля BuddyPress"
2556
 
2557
+ #: ../admin/social_login.php:1031
2558
  msgid ""
2559
  "Enable this option to show social account linking interface at BuddyPress "
2560
  "profile page"
2562
  "Активируйте эту функцию чтобы интегрировать социальный аккаунт на странице "
2563
  "профиля BuddyPress"
2564
 
2565
+ #: ../admin/social_login.php:1042
2566
  msgid "Email popup options"
2567
  msgstr "Параметры всплывающей электронной Почты"
2568
 
2569
+ #: ../admin/social_login.php:1047
2570
  msgid "Text on 'Email required' popup"
2571
  msgstr "Текст на всплывающем окне «Электронная почта требуется» "
2572
 
2573
+ #: ../admin/social_login.php:1057
2574
  msgid ""
2575
  "This text will be displayed on email required popup. Leave empty if not "
2576
  "required."
2578
  "Этот текст будет отображаться на всплывающем окне. требующем почту. Оставьте "
2579
  "поле пустым если не требуется."
2580
 
2581
+ #: ../admin/social_login.php:1065
2582
  msgid "Error message for 'Email required' popup"
2583
  msgstr "Сообщение ошибки во всплывающем окне \"Требуется почта\""
2584
 
2585
+ #: ../admin/social_login.php:1075
2586
  msgid ""
2587
  "This message will be displayed to user if it provides invalid or already "
2588
  "registered email"
2590
  "Это сообщение будет показано пользователю, если он предоставил неверную или "
2591
  "уже используемую почту"
2592
 
2593
+ #: ../admin/social_login.php:1083
2594
  msgid "Email popup height"
2595
  msgstr "Высота высплывающего окна"
2596
 
2597
+ #: ../admin/social_login.php:1093
2598
  msgid ""
2599
  "If you are seeing vertical scrollbar in the \"Email required\" popup, you "
2600
  "can increase the height of popup by specifying in this option. Leave empty "
2604
  "\", то вы можете увеличить высотку всплывающего окна. Оставьте пустым для "
2605
  "базового значения."
2606
 
2607
+ #: ../admin/social_login.php:1100
2608
  msgid "Enable email verification"
2609
  msgstr "Включить проверку электронной почты"
2610
 
2611
+ #: ../admin/social_login.php:1110
2612
  msgid ""
2613
  "If enabled, email provided by the user will be verified by sending a "
2614
  "confirmation link to that email. User would not be able to login without "
2617
  "Если опция включена, то на почту, которую указал пользователь, придет письмо "
2618
  "с подтверждением. Пользователь не сможет зайти без подтверждения своей почты."
2619
 
2620
+ #: ../admin/social_login.php:1130
2621
  #, fuzzy
2622
  msgid "Enable GDPR opt-in"
2623
  msgstr "Активировать комментирование через Disqus"
2624
 
2625
+ #: ../admin/social_login.php:1140
2626
  msgid ""
2627
  "Enable it to show GDPR opt-in for social login and social account linking"
2628
  msgstr ""
2629
 
2630
+ #: ../admin/social_login.php:1148
2631
  #, fuzzy
2632
  msgid "Placement of GDPR opt-in"
2633
  msgstr "Активировать комментирование через Disqus"
2634
 
2635
+ #: ../admin/social_login.php:1152
2636
  #, fuzzy
2637
  msgid "Above Social Login icons"
2638
  msgstr "Параметры входа через соцсети"
2639
 
2640
+ #: ../admin/social_login.php:1154
2641
  #, fuzzy
2642
  msgid "Below Social Login icons"
2643
  msgstr "Параметры входа через соцсети"
2644
 
2645
+ #: ../admin/social_login.php:1160
2646
  #, fuzzy
2647
  msgid "Placement of GDPR opt-in above or below the social login icons"
2648
  msgstr "Текст, отображаемый над интерфейсом входа через социальные сети"
2649
 
2650
+ #: ../admin/social_login.php:1167
2651
  msgid "Opt-in text"
2652
  msgstr ""
2653
 
2654
+ #: ../admin/social_login.php:1177
2655
  #, fuzzy
2656
  msgid "Text for the GDPR opt-in"
2657
  msgstr "Активировать комментирование через Disqus"
2658
 
2659
+ #: ../admin/social_login.php:1184
2660
  msgid "Text to link to Terms-Conditions page"
2661
  msgstr ""
2662
 
2663
+ #: ../admin/social_login.php:1194
2664
  msgid "Word(s) in the opt-in text to be linked to terms-conditions page"
2665
  msgstr ""
2666
 
2667
+ #: ../admin/social_login.php:1201
2668
  msgid "Terms-Conditions Url"
2669
  msgstr ""
2670
 
2671
+ #: ../admin/social_login.php:1211
2672
  #, fuzzy
2673
  msgid "Url of the terms-conditions page of your website"
2674
  msgstr "URL-адрес домашней страницы вашего веб-сайта"
2675
 
2676
+ #: ../admin/social_login.php:1218
2677
  msgid "Text to link to Privacy Policy page"
2678
  msgstr ""
2679
 
2680
+ #: ../admin/social_login.php:1228
2681
  msgid "Word(s) in the opt-in text to be linked to privacy policy page"
2682
  msgstr ""
2683
 
2684
+ #: ../admin/social_login.php:1235
2685
  msgid "Privacy Policy Url"
2686
  msgstr ""
2687
 
2688
+ #: ../admin/social_login.php:1245
2689
  #, fuzzy
2690
  msgid "Url of the privacy policy page of your website"
2691
  msgstr "URL-адрес домашней страницы вашего веб-сайта"
2692
 
2693
+ #: ../admin/social_login.php:1296 ../inc/widget.php:260 ../inc/widget.php:438
2694
  #: ../inc/widget.php:602 ../inc/widget.php:750
2695
  msgid "Select"
2696
  msgstr "Выбор"
2697
 
2698
+ #: ../admin/social_login.php:1327
2699
  msgid "Social Login Shortcode & Widget"
2700
  msgstr "Шорткод и виджет для входа через социальные сети "
2701
 
2702
+ #: ../admin/social_login.php:1328
2703
  msgid "Social Linking Shortcode"
2704
  msgstr "Шорткод социальных ссылок"
2705
 
2706
+ #: ../admin/social_login.php:1343
2707
  #, fuzzy
2708
  msgid "Why is social login not working?"
2709
  msgstr "Почему Facebook логин не работает?"
2710
 
2711
+ #: ../admin/social_login.php:1344
2712
  msgid ""
2713
  "Make sure that App ID and Secret (Client ID and Secret) keys you have saved, "
2714
  "belong to the same app"
2715
  msgstr ""
2716
 
2717
+ #: ../admin/social_login.php:1346
2718
  msgid "Social Login not working with Varnish enabled"
2719
  msgstr ""
2720
 
2721
+ #: ../admin/social_login.php:1347
2722
  msgid ""
2723
  "Why the user is not appearing logged in even after Social Login until the "
2724
  "webpage is refreshed manually?"
2937
  msgid "Providers not selected"
2938
  msgstr "Сервисы не выбраны"
2939
 
2940
+ #: ../inc/social_login.php:792
2941
  msgid "Email"
2942
  msgstr "Email"
2943
 
2944
+ #: ../inc/social_login.php:793
2945
  msgid "Confirm email"
2946
  msgstr "Подтвердить e-mail"
2947
 
2948
+ #: ../inc/social_login.php:795
2949
  msgid "Save"
2950
  msgstr "Сохранить"
2951
 
2952
+ #: ../inc/social_login.php:796
2953
  msgid "Cancel"
2954
  msgstr "Отменить"
2955
 
2956
+ #: ../inc/social_login.php:870
2957
  msgid "Email Verification"
2958
  msgstr "Подтверждение адреса электронной почты"
2959
 
2960
+ #: ../inc/social_login.php:872
2961
  msgid ""
2962
  "Please click on the following link or paste it in browser to verify your "
2963
  "email"
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: 2020-08-20 08:12+0530\n"
6
- "PO-Revision-Date: 2020-08-20 08:12+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:523
21
  msgid "Problem fetching access token: "
22
  msgstr ""
23
 
24
- #: ../super_socializer.php:527 ../super_socializer.php:541
25
  msgid "Facebook SDK returned an error: "
26
  msgstr ""
27
 
28
- #: ../super_socializer.php:537
29
  msgid "Graph returned an error: "
30
  msgstr ""
31
 
32
- #: ../super_socializer.php:726
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:754
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:757
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:760
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,67 +64,67 @@ msgstr ""
64
  "буде потрібно звернутися до адміністратора сервера вашого сайту, щоб "
65
  "переконатися в цьому."
66
 
67
- #: ../super_socializer.php:942 ../helper.php:961
68
  msgid "Please verify your email address to login."
69
  msgstr "Будь ласка, підтвердіть свою адресу електронної пошти."
70
 
71
- #: ../super_socializer.php:942
72
  msgid "Your email has been verified. Now you can login to your account"
73
  msgstr ""
74
  "Ваша електронна адреса була перевірена. Тепер ви можете увійти до свого "
75
  "облікового запису"
76
 
77
- #: ../super_socializer.php:946
78
  msgid "Notification"
79
  msgstr "Повідомлення"
80
 
81
- #: ../super_socializer.php:964 ../admin/social_login.php:779
82
  msgid "Email required"
83
  msgstr "Електронна адреса (обо'язково)"
84
 
85
- #: ../super_socializer.php:967
86
  msgid "Please check your email inbox to complete the registration."
87
  msgstr "Будь ласка, перевірте вашу поштову скриньку для завершення реєстрації."
88
 
89
- #: ../super_socializer.php:1036
90
  msgid "Leave a reply"
91
  msgstr "Залишити коментар"
92
 
93
- #: ../super_socializer.php:1052 ../inc/social_sharing.php:241
94
  msgid "Shares"
95
  msgstr "Поширили:"
96
 
97
- #: ../super_socializer.php:1052 ../inc/social_sharing.php:241
98
  msgid "Share"
99
  msgstr "Поділитися"
100
 
101
- #: ../super_socializer.php:1052
102
  #, fuzzy
103
  msgid "Link copied."
104
  msgstr "LinkedIn"
105
 
106
- #: ../super_socializer.php:1298
107
  msgid "Super Socializer - General Options"
108
  msgstr "Super Socializer - Загальні Параметри"
109
 
110
- #: ../super_socializer.php:1298 ../admin/general_options.php:15
111
  #: ../admin/social_commenting.php:47
112
  msgid "General Options"
113
  msgstr "Загальні параметри"
114
 
115
- #: ../super_socializer.php:1366 ../helper.php:883
116
  msgid "Social Avatar"
117
  msgstr "Соціальний Аватар"
118
 
119
- #: ../super_socializer.php:1369
120
  msgid "Small Avatar Url"
121
  msgstr "Посилання для маленького аватара"
122
 
123
- #: ../super_socializer.php:1373
124
  msgid "Large Avatar Url"
125
  msgstr "Посилання для великого аватара"
126
 
127
- #: ../super_socializer.php:1377 ../helper.php:886
128
  msgid ""
129
  "Do not fetch and update social avatar from my profile, next time I Social "
130
  "Login"
@@ -132,77 +132,77 @@ msgstr ""
132
  "Не отримувати і оновлювати соціальний аватар з мого профілю, в наступний "
133
  "раз коли я використовую вхід через соцмережі"
134
 
135
- #: ../super_socializer.php:1381 ../helper.php:887
136
  msgid "Update social avatar, next time I Social Login"
137
  msgstr ""
138
  "Оновлення аватара соцмереж наступного разу при використанні входу через "
139
  "соцмережі"
140
 
141
- #: ../super_socializer.php:1458
142
  msgid "Login with your Social ID"
143
  msgstr "Увійти через соціальний аккаунт"
144
 
145
- #: ../super_socializer.php:1459
146
  msgid "Email you entered is already registered or invalid"
147
  msgstr "Електронна пошта, яку ви ввели, вже зареєстрована або недійсна"
148
 
149
- #: ../super_socializer.php:1464
150
  msgid "Please enter a valid email address. You might be required to verify it"
151
  msgstr ""
152
  "Будь ласка, введіть дійсну адресу електронної пошти. Вам, можливо, буде "
153
  "потрібно перевірити його"
154
 
155
- #: ../super_socializer.php:1468 ../super_socializer.php:2166
156
  msgid "Link your social account to login to your account at this website"
157
  msgstr ""
158
  "Введіть посилання на ваш аккаунт в соціальних мережах щоб увійти в обліковий "
159
  "запис на цьому сайті"
160
 
161
- #: ../super_socializer.php:1708
162
  msgid "Thanks for installing Super Socializer plugin"
163
  msgstr ""
164
 
165
- #: ../super_socializer.php:1710
166
  msgid "Configure the Plugin"
167
  msgstr ""
168
 
169
- #: ../super_socializer.php:1721
170
  msgid ""
171
  "Update \"Facebook Comments Moderation\" add-on for compatibility with "
172
  "current version of Super Socializer"
173
  msgstr ""
174
 
175
- #: ../super_socializer.php:1730
176
  msgid ""
177
  "Update \"Facebook Comments Notifier\" add-on for compatibility with current "
178
  "version of Super Socializer"
179
  msgstr ""
180
 
181
- #: ../super_socializer.php:1739
182
  msgid ""
183
  "Update \"Social Login Buttons\" add-on for compatibility with current "
184
  "version of Super Socializer"
185
  msgstr ""
186
 
187
- #: ../super_socializer.php:1748
188
  msgid ""
189
  "Update \"Social Share myCRED Integration\" add-on for maximum compatibility "
190
  "with current version of Super Socializer"
191
  msgstr ""
192
 
193
- #: ../super_socializer.php:1757
194
  msgid ""
195
  "Update \"Social Login myCRED Integration\" add-on for maximum compatibility "
196
  "with current version of Super Socializer"
197
  msgstr ""
198
 
199
- #: ../super_socializer.php:1768
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:1777
206
  #, php-format
207
  msgid ""
208
  "To continue using Instagram login create a new Instagram App as described <a "
@@ -210,7 +210,7 @@ msgid ""
210
  "Instagram App Secret <a href=\"%s\">here</a>"
211
  msgstr ""
212
 
213
- #: ../super_socializer.php:1786 ../super_socializer.php:1795
214
  #, php-format
215
  msgid ""
216
  "To continue using bitly url shortener, login to your bit.ly account and "
@@ -219,13 +219,13 @@ msgid ""
219
  "\">here</a>. More details at the <a href=\"%s\" target=\"_blank\">link</a>"
220
  msgstr ""
221
 
222
- #: ../super_socializer.php:1811
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:1835
229
  #, php-format
230
  msgid ""
231
  "Add %s in \"Valid OAuth redirect URIs\" option in your Facebook app settings "
@@ -233,14 +233,14 @@ msgid ""
233
  "target=\"_blank\">here</a>"
234
  msgstr ""
235
 
236
- #: ../super_socializer.php:1835 ../super_socializer.php:1860
237
- #: ../super_socializer.php:1885 ../super_socializer.php:1910
238
- #: ../super_socializer.php:1943 ../super_socializer.php:1971
239
- #: ../super_socializer.php:1998
240
  msgid "Okay"
241
  msgstr "Гаразд."
242
 
243
- #: ../super_socializer.php:1860
244
  #, php-format
245
  msgid ""
246
  "Add %s in \"Callback URLs\" option in your Twitter app settings for Twitter "
@@ -248,7 +248,7 @@ msgid ""
248
  "\">here</a>"
249
  msgstr ""
250
 
251
- #: ../super_socializer.php:1885
252
  #, php-format
253
  msgid ""
254
  "Add %s in \"Authorized Redirect URLs\" option in your Linkedin app settings "
@@ -256,7 +256,7 @@ msgid ""
256
  "target=\"_blank\">here</a>"
257
  msgstr ""
258
 
259
- #: ../super_socializer.php:1910
260
  #, php-format
261
  msgid ""
262
  "Add %s in \"Authorized redirect URIs\" option in your Google client settings "
@@ -264,13 +264,13 @@ msgid ""
264
  "target=\"_blank\">here</a>"
265
  msgstr ""
266
 
267
- #: ../super_socializer.php:1921
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:1943
274
  #, php-format
275
  msgid ""
276
  "This plugin is GDPR compliant. You need to update the privacy policy of your "
@@ -278,7 +278,7 @@ msgid ""
278
  "\"%s\" target=\"_blank\">here</a>"
279
  msgstr ""
280
 
281
- #: ../super_socializer.php:1971
282
  #, php-format
283
  msgid ""
284
  "Now plugin supports a new service Twitcount.com to show Twitter shares. To "
@@ -287,7 +287,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:1998
291
  #, php-format
292
  msgid ""
293
  "Replace url saved in \"Callback URLs\" option in your Twitter app settings "
@@ -295,7 +295,7 @@ msgid ""
295
  "\"%s\" target=\"_blank\">here</a>"
296
  msgstr ""
297
 
298
- #: ../super_socializer.php:2023
299
  #, php-format
300
  msgid ""
301
  "If you cannot get Linkedin login to work after updating the plugin, replace "
@@ -303,11 +303,11 @@ msgid ""
303
  "For more details, check step 6 <a href=\"%s\" target=\"_blank\">here</a>"
304
  msgstr ""
305
 
306
- #: ../super_socializer.php:2023 ../super_socializer.php:2050
307
  msgid "Dismiss"
308
  msgstr ""
309
 
310
- #: ../super_socializer.php:2049
311
  #, php-format
312
  msgid ""
313
  "Save Facebook App ID and Secret keys in \"Standard Interface\" and/or "
@@ -316,7 +316,7 @@ msgid ""
316
  "that, clear share counts cache from \"Miscellaneous\" section"
317
  msgstr ""
318
 
319
- #: ../super_socializer.php:2242
320
  msgid ""
321
  "Your browser is blocking some features of this website. Please follow the "
322
  "instructions at {support_url} to unblock these."
@@ -418,7 +418,7 @@ msgstr "Великий аватар"
418
 
419
  #: ../helper.php:898 ../admin/general_options.php:89
420
  #: ../admin/social_sharing.php:1944 ../admin/social_commenting.php:400
421
- #: ../admin/social_login.php:1269 ../admin/like_buttons.php:780
422
  msgid "Save Changes"
423
  msgstr "Зберегти налаштування"
424
 
@@ -442,7 +442,7 @@ msgstr ""
442
  #: ../admin/general_options.php:7 ../admin/general_options.php:93
443
  #: ../admin/social_sharing.php:5 ../admin/social_sharing.php:1948
444
  #: ../admin/social_commenting.php:5 ../admin/social_commenting.php:404
445
- #: ../admin/social_login.php:5 ../admin/social_login.php:1273
446
  #: ../admin/like_buttons.php:6 ../admin/like_buttons.php:784
447
  #, fuzzy, php-format
448
  msgid ""
@@ -496,14 +496,14 @@ msgstr ""
496
  "Можна вказати будь-які додаткові правила CSS (без тега & lt; style & gt;)"
497
 
498
  #: ../admin/general_options.php:103 ../admin/social_sharing.php:1954
499
- #: ../admin/social_commenting.php:410 ../admin/social_login.php:1279
500
  #: ../admin/like_buttons.php:790
501
  #, fuzzy
502
  msgid "Instagram Shoutout"
503
  msgstr "Instagram"
504
 
505
  #: ../admin/general_options.php:105 ../admin/social_sharing.php:1956
506
- #: ../admin/social_commenting.php:412 ../admin/social_login.php:1281
507
  #: ../admin/like_buttons.php:792
508
  msgid ""
509
  "If you can send (to hello@heateor.com) how this plugin is helping your "
@@ -642,7 +642,7 @@ msgstr "XProfile інтеграція"
642
 
643
  #: ../admin/social_sharing.php:67 ../admin/social_sharing.php:1869
644
  #: ../admin/social_sharing.php:1871 ../admin/social_login.php:45
645
- #: ../admin/social_login.php:1235 ../admin/like_buttons.php:50
646
  #: ../admin/like_buttons.php:751
647
  msgid "Shortcode & Widget"
648
  msgstr "Шорткод і віджет"
@@ -653,7 +653,7 @@ msgstr "Усунення несправностей"
653
 
654
  #: ../admin/social_sharing.php:69 ../admin/social_sharing.php:1902
655
  #: ../admin/social_commenting.php:40 ../admin/social_commenting.php:384
656
- #: ../admin/social_login.php:46 ../admin/social_login.php:1249
657
  #: ../admin/like_buttons.php:51 ../admin/like_buttons.php:764
658
  msgid "FAQ"
659
  msgstr "Часті питання (FAQ)"
@@ -885,8 +885,8 @@ msgstr "Користувальницьке посилання"
885
  msgid "Url to share"
886
  msgstr "Посилання щоб Поділитися"
887
 
888
- #: ../admin/social_sharing.php:725 ../admin/social_login.php:520
889
- #: ../admin/social_login.php:896 ../admin/like_buttons.php:105
890
  #: ../inc/widget.php:945
891
  msgid "Title"
892
  msgstr "Заголовок"
@@ -972,7 +972,7 @@ msgid "Placement"
972
  msgstr "Розміщення"
973
 
974
  #: ../admin/social_sharing.php:957 ../admin/social_sharing.php:1383
975
- #: ../admin/social_login.php:837 ../admin/social_login.php:866
976
  #: ../admin/like_buttons.php:218 ../admin/like_buttons.php:494
977
  msgid "Homepage"
978
  msgstr "Головна"
@@ -1241,7 +1241,7 @@ msgstr ""
1241
  msgid "Required only to track Facebook share count"
1242
  msgstr ""
1243
 
1244
- #: ../admin/social_sharing.php:1584 ../admin/social_login.php:150
1245
  msgid "Facebook App ID"
1246
  msgstr "Facebook App ID"
1247
 
@@ -1254,7 +1254,7 @@ msgstr ""
1254
  "Необхідно для входу через Facebook. Будь ласка, подивіться документацію <a "
1255
  "href=\"%s\" target=\"_blank\"> тут </a> для отримання ID додатку Facebook."
1256
 
1257
- #: ../admin/social_sharing.php:1601 ../admin/social_login.php:171
1258
  #, fuzzy
1259
  msgid "Facebook App Secret"
1260
  msgstr "Facebook App ID"
@@ -1443,7 +1443,7 @@ msgstr ""
1443
  "\"Отримання інформації про нову поломки \"."
1444
 
1445
  #: ../admin/social_sharing.php:1904 ../admin/social_commenting.php:386
1446
- #: ../admin/social_login.php:1251
1447
  msgid ""
1448
  "<strong>Note:</strong> Plugin will not work on local server. You should have "
1449
  "an online website for the plugin to function properly."
@@ -1501,7 +1501,7 @@ msgid ""
1501
  msgstr ""
1502
 
1503
  #: ../admin/social_sharing.php:1919 ../admin/social_commenting.php:389
1504
- #: ../admin/social_login.php:1258
1505
  msgid "Why is my browser blocking some features of the plugin?"
1506
  msgstr "Чому мій браузер блокує деякі функції плагіна?"
1507
 
@@ -1818,11 +1818,11 @@ msgstr "Основные настройки"
1818
  msgid "Advanced Configuration"
1819
  msgstr "Розширена конфігурація"
1820
 
1821
- #: ../admin/social_login.php:41 ../admin/social_login.php:1035
1822
  msgid "GDPR"
1823
  msgstr ""
1824
 
1825
- #: ../admin/social_login.php:43 ../admin/social_login.php:1186
1826
  msgid "XProfile Integration"
1827
  msgstr "XProfile інтеграція"
1828
 
@@ -1891,14 +1891,22 @@ msgid "Line"
1891
  msgstr ""
1892
 
1893
  #: ../admin/social_login.php:135
 
 
 
 
1894
  msgid "Windows Live"
1895
  msgstr ""
1896
 
1897
  #: ../admin/social_login.php:143
 
 
 
 
1898
  msgid "Select Social ID provider to enable in Social Login"
1899
  msgstr "Виберіть соцмережі щоб активувати вхід через соцмережі"
1900
 
1901
- #: ../admin/social_login.php:160
1902
  #, php-format
1903
  msgid ""
1904
  "Required for Facebook Social Login to work. Please follow the documentation "
@@ -1907,7 +1915,7 @@ msgstr ""
1907
  "Необхідно для входу через Facebook. Будь ласка, подивіться документацію <a "
1908
  "href=\"%s\" target=\"_blank\"> тут </a> для отримання ID додатку Facebook."
1909
 
1910
- #: ../admin/social_login.php:162 ../admin/social_login.php:183
1911
  #, fuzzy
1912
  msgid ""
1913
  "Paste following url in <strong>Site URL</strong> option mentioned at the link"
@@ -1915,7 +1923,7 @@ msgstr ""
1915
  "Вставити наступний URL-адресу в <strong> URL-адресу сайту </ strong> для "
1916
  "згадки посилання."
1917
 
1918
- #: ../admin/social_login.php:181
1919
  #, fuzzy, php-format
1920
  msgid ""
1921
  "Required for Facebook Social Login to work. Please follow the documentation "
@@ -1924,11 +1932,11 @@ msgstr ""
1924
  "Необхідно для входу через Facebook. Будь ласка, подивіться документацію <a "
1925
  "href=\"%s\" target=\"_blank\"> тут </a> для отримання ID додатку Facebook."
1926
 
1927
- #: ../admin/social_login.php:192
1928
  msgid "Twitter API Key"
1929
  msgstr "Twitter API ключ"
1930
 
1931
- #: ../admin/social_login.php:202
1932
  #, php-format
1933
  msgid ""
1934
  "Required for Twitter Social Login to work. Please follow the documentation "
@@ -1937,7 +1945,7 @@ msgstr ""
1937
  "Необхідно для входу через Twitter. Будь ласка, подивіться документацію <a "
1938
  "href=\"%s\" target=\"_blank\"> тут </a> для отримання ключа додатку Twitter."
1939
 
1940
- #: ../admin/social_login.php:204 ../admin/social_login.php:229
1941
  #, fuzzy
1942
  msgid ""
1943
  "Paste following url in <strong>Website</strong> option mentioned at the link"
@@ -1945,8 +1953,9 @@ msgstr ""
1945
  "Вставити наступний URL-адресу в <strong> URL веб-сайту </ strong> для згадки "
1946
  "посилання"
1947
 
1948
- #: ../admin/social_login.php:208 ../admin/social_login.php:233
1949
- #: ../admin/social_login.php:421 ../admin/social_login.php:441
 
1950
  #, fuzzy
1951
  msgid ""
1952
  "Paste following url in <strong>Callback URL</strong> option mentioned at the "
@@ -1955,11 +1964,11 @@ msgstr ""
1955
  "Вставити наступний URL-адресу в <strong> URL веб-сайту </ strong> для згадки "
1956
  "посилання"
1957
 
1958
- #: ../admin/social_login.php:217
1959
  msgid "Twitter API Secret"
1960
  msgstr "Twitter API секретний ключ"
1961
 
1962
- #: ../admin/social_login.php:227
1963
  #, php-format
1964
  msgid ""
1965
  "Required for Twitter Social Login to work. Please follow the documentation "
@@ -1969,12 +1978,12 @@ msgstr ""
1969
  "href=\"%s\" target=\"_blank\"> тут </a> для отримання секретного ключа "
1970
  "додатку Twitter ."
1971
 
1972
- #: ../admin/social_login.php:242
1973
  #, fuzzy
1974
  msgid "LinkedIn Client ID"
1975
  msgstr "LinkedIn"
1976
 
1977
- #: ../admin/social_login.php:252
1978
  #, fuzzy, php-format
1979
  msgid ""
1980
  "Required for LinkedIn Social Login to work. Please follow the documentation "
@@ -1983,7 +1992,7 @@ msgstr ""
1983
  "Необхідно для входу через LinkedIn. Будь ласка, подивіться документацію <a "
1984
  "href=\"%s\" target=\"_blank\"> тут </a> для отримання ключа додатку LinkedIn."
1985
 
1986
- #: ../admin/social_login.php:254 ../admin/social_login.php:275
1987
  #, fuzzy
1988
  msgid ""
1989
  "Paste following url in <strong>Redirect URLs</strong> option mentioned at "
@@ -1992,12 +2001,12 @@ msgstr ""
1992
  "Вставити наступний URL-адресу в <strong> URL-адресу сайту </ strong> для "
1993
  "згадки посилання."
1994
 
1995
- #: ../admin/social_login.php:263
1996
  #, fuzzy
1997
  msgid "LinkedIn Client Secret"
1998
  msgstr "LinkedIn"
1999
 
2000
- #: ../admin/social_login.php:273
2001
  #, fuzzy, php-format
2002
  msgid ""
2003
  "Required for LinkedIn Social Login to work. Please follow the documentation "
@@ -2007,12 +2016,12 @@ msgstr ""
2007
  "Необхідно для входу через LinkedIn. Будь ласка, подивіться документацію <a "
2008
  "href=\"%s\" target=\"_blank\"> тут </a> для отримання ключа додатку LinkedIn."
2009
 
2010
- #: ../admin/social_login.php:284
2011
  #, fuzzy
2012
  msgid "Google Client ID"
2013
  msgstr "Google+ ID клієнта"
2014
 
2015
- #: ../admin/social_login.php:294
2016
  #, fuzzy, php-format
2017
  msgid ""
2018
  "Required for Google Social Login to work. Please follow the documentation at "
@@ -2021,7 +2030,7 @@ msgstr ""
2021
  "Необхідно для входу через Google+. Будь ласка, подивіться документацію <a "
2022
  "href=\"%s\" target=\"_blank\"> тут </a> для отримання ID клієнта в Google+."
2023
 
2024
- #: ../admin/social_login.php:296 ../admin/social_login.php:317
2025
  #, fuzzy
2026
  msgid ""
2027
  "Paste following url in <strong>AUTHORIZED REDIRECT URI</strong> option "
@@ -2030,12 +2039,12 @@ msgstr ""
2030
  "Вставити наступний URL-адресу в <strong> URL-адресу сайту </ strong> для "
2031
  "згадки посилання."
2032
 
2033
- #: ../admin/social_login.php:305
2034
  #, fuzzy
2035
  msgid "Google Client Secret"
2036
  msgstr "Google+ ID клієнта"
2037
 
2038
- #: ../admin/social_login.php:315
2039
  #, fuzzy, php-format
2040
  msgid ""
2041
  "Required for Google Social Login to work. Please follow the documentation at "
@@ -2044,11 +2053,11 @@ msgstr ""
2044
  "Необхідно для входу через Google+. Будь ласка, подивіться документацію <a "
2045
  "href=\"%s\" target=\"_blank\"> тут </a> для отримання ID клієнта в Google+."
2046
 
2047
- #: ../admin/social_login.php:326
2048
  msgid "Vkontakte Application ID"
2049
  msgstr "ID додатку Вконтакте"
2050
 
2051
- #: ../admin/social_login.php:336 ../admin/social_login.php:357
2052
  #, php-format
2053
  msgid ""
2054
  "Required for Vkontakte Social Login to work. Please follow the documentation "
@@ -2058,7 +2067,7 @@ msgstr ""
2058
  "Необхідно для входу через Vkontakte. Будь ласка, подивіться документацію <a "
2059
  "href=\"%s\" target=\"_blank\"> тут </a> для отримання ID додатку Vkontakte."
2060
 
2061
- #: ../admin/social_login.php:338 ../admin/social_login.php:359
2062
  #, fuzzy
2063
  msgid ""
2064
  "Paste following url in <strong>Site address</strong> option mentioned at the "
@@ -2067,17 +2076,17 @@ msgstr ""
2067
  "Вставити наступний URL-адресу в <strong> URL-адресу сайту </ strong> для "
2068
  "згадки посилання."
2069
 
2070
- #: ../admin/social_login.php:347
2071
  #, fuzzy
2072
  msgid "Vkontakte Secure key"
2073
  msgstr "Вконтакте"
2074
 
2075
- #: ../admin/social_login.php:368
2076
  #, fuzzy
2077
  msgid "Instagram App ID"
2078
  msgstr "Instagram ID клієнта"
2079
 
2080
- #: ../admin/social_login.php:378
2081
  #, fuzzy, php-format
2082
  msgid ""
2083
  "Required for Instagram Social Login to work. Please follow the documentation "
@@ -2086,7 +2095,7 @@ msgstr ""
2086
  "Необхідно для входу через Instagram. Будь ласка, подивіться документацію <a "
2087
  "href=\"%s\" target=\"_blank\"> тут </a> для отримання ID клієнта в Instagram."
2088
 
2089
- #: ../admin/social_login.php:380 ../admin/social_login.php:401
2090
  #, fuzzy
2091
  msgid ""
2092
  "Paste following url in <strong>Valid OAuth Redirect URIs</strong> option "
@@ -2095,12 +2104,12 @@ msgstr ""
2095
  "Вставити наступний URL-адресу в <strong> URL-адресу сайту </ strong> для "
2096
  "згадки посилання."
2097
 
2098
- #: ../admin/social_login.php:389
2099
  #, fuzzy
2100
  msgid "Instagram App Secret"
2101
  msgstr "Введіть ім'я користувача Instagram."
2102
 
2103
- #: ../admin/social_login.php:399
2104
  #, fuzzy, php-format
2105
  msgid ""
2106
  "Required for Instagram Social Login to work. Please follow the documentation "
@@ -2109,11 +2118,11 @@ msgstr ""
2109
  "Необхідно для входу через Instagram. Будь ласка, подивіться документацію <a "
2110
  "href=\"%s\" target=\"_blank\"> тут </a> для отримання ID клієнта в Instagram."
2111
 
2112
- #: ../admin/social_login.php:410
2113
  msgid "Line Channel ID"
2114
  msgstr ""
2115
 
2116
- #: ../admin/social_login.php:419
2117
  #, fuzzy, php-format
2118
  msgid ""
2119
  "Required for Line Social Login to work. Please follow the documentation at "
@@ -2122,12 +2131,12 @@ msgstr ""
2122
  "Необхідно для входу через LinkedIn. Будь ласка, подивіться документацію <a "
2123
  "href=\"%s\" target=\"_blank\"> тут </a> для отримання ключа додатку LinkedIn."
2124
 
2125
- #: ../admin/social_login.php:430
2126
  #, fuzzy
2127
  msgid "Line Channel Secret"
2128
  msgstr "LinkedIn"
2129
 
2130
- #: ../admin/social_login.php:439
2131
  #, fuzzy, php-format
2132
  msgid ""
2133
  "Required for Line Social Login to work. Please follow the documentation at "
@@ -2136,12 +2145,41 @@ msgstr ""
2136
  "Необхідно для входу через LinkedIn. Будь ласка, подивіться документацію <a "
2137
  "href=\"%s\" target=\"_blank\"> тут </a> для отримання ключа додатку LinkedIn."
2138
 
2139
- #: ../admin/social_login.php:450
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2140
  #, fuzzy
2141
  msgid "Microsoft Client ID"
2142
  msgstr "Google+ ID клієнта"
2143
 
2144
- #: ../admin/social_login.php:459
2145
  #, fuzzy, php-format
2146
  msgid ""
2147
  "Required for Live Social Login to work. Please follow the documentation at "
@@ -2150,7 +2188,8 @@ msgstr ""
2150
  "Необхідно для входу через Google+. Будь ласка, подивіться документацію <a "
2151
  "href=\"%s\" target=\"_blank\"> тут </a> для отримання ID клієнта в Google+."
2152
 
2153
- #: ../admin/social_login.php:461 ../admin/social_login.php:481
 
2154
  #, fuzzy
2155
  msgid ""
2156
  "Paste following url in <strong>Redirect URIs</strong> option mentioned at "
@@ -2159,12 +2198,12 @@ msgstr ""
2159
  "Вставити наступний URL-адресу в <strong> URL-адресу сайту </ strong> для "
2160
  "згадки посилання."
2161
 
2162
- #: ../admin/social_login.php:470
2163
  #, fuzzy
2164
  msgid "Microsoft Client Secret"
2165
  msgstr "Google+ ID клієнта"
2166
 
2167
- #: ../admin/social_login.php:479
2168
  #, fuzzy, php-format
2169
  msgid ""
2170
  "Required for Live Social Login to work. Please follow the documentation at "
@@ -2174,12 +2213,12 @@ msgstr ""
2174
  "Необхідно для входу через Google+. Будь ласка, подивіться документацію <a "
2175
  "href=\"%s\" target=\"_blank\"> тут </a> для отримання ID клієнта в Google+."
2176
 
2177
- #: ../admin/social_login.php:489
2178
  #, fuzzy
2179
  msgid "Steam API Key"
2180
  msgstr "Twitter API ключ"
2181
 
2182
- #: ../admin/social_login.php:498
2183
  #, fuzzy, php-format
2184
  msgid ""
2185
  "Required for Steam Social Login to work. Get it at <a href=\"%s\" target="
@@ -2188,73 +2227,101 @@ msgstr ""
2188
  "Необхідно для входу через Twitter. Будь ласка, подивіться документацію <a "
2189
  "href=\"%s\" target=\"_blank\"> тут </a> для отримання ключа додатку Twitter."
2190
 
2191
- #: ../admin/social_login.php:499
2192
  #, fuzzy
2193
  msgid "Save following <strong>domain</strong> to get the key"
2194
  msgstr ""
2195
  "Вставити наступний URL-адресу в <strong> URL веб-сайту </ strong> для згадки "
2196
  "посилання"
2197
 
2198
- #: ../admin/social_login.php:515
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2199
  msgid "Social Login Options"
2200
  msgstr "Параметри входу через соцмережі"
2201
 
2202
- #: ../admin/social_login.php:530
2203
  msgid "Text to display above the Social Login interface"
2204
  msgstr "Текст, що відображається над інтерфейсом входу через соцмережі"
2205
 
2206
- #: ../admin/social_login.php:538
2207
  msgid "Trigger social login in the same browser tab"
2208
  msgstr ""
2209
 
2210
- #: ../admin/social_login.php:548
2211
  msgid "Trigger social login in the same browser tab instead of a popup window"
2212
  msgstr ""
2213
 
2214
- #: ../admin/social_login.php:555
2215
  #, fuzzy
2216
  msgid "Center align icons"
2217
  msgstr "Змінити порядок іконок"
2218
 
2219
- #: ../admin/social_login.php:565
2220
  #, fuzzy
2221
  msgid "Center align social login icons"
2222
  msgstr "Параметри входу через соцмережі"
2223
 
2224
- #: ../admin/social_login.php:572
2225
  msgid "Enable at login page"
2226
  msgstr "Включити сторінку входу"
2227
 
2228
- #: ../admin/social_login.php:582
2229
  msgid ""
2230
  "Social Login interface will get enabled at the login page of your website"
2231
  msgstr "Інтерфейс входу через соцмережі буде активовано на сторінці входу"
2232
 
2233
- #: ../admin/social_login.php:589
2234
  msgid "Enable at register page"
2235
  msgstr "Включити на сторінці реєстрації"
2236
 
2237
- #: ../admin/social_login.php:599
2238
  msgid ""
2239
  "Social Login interface will get enabled at the registration page of your "
2240
  "website"
2241
  msgstr "Інтерфейс входу через соцмережі буде активовано на сторінці"
2242
 
2243
- #: ../admin/social_login.php:606
2244
  msgid "Enable at comment form"
2245
  msgstr "Включити в формі коментування"
2246
 
2247
- #: ../admin/social_login.php:616
2248
  msgid "Social Login interface will get enabled at your Wordpress Comment form"
2249
  msgstr ""
2250
  "Інтерфейс входу через соцмережі буде активовано у вашій формі коментування "
2251
  "Wordpress"
2252
 
2253
- #: ../admin/social_login.php:630
2254
  msgid "Enable before WooCommerce Customer Login Form"
2255
  msgstr "Активувати перед формою входу покупця в WooCommerce"
2256
 
2257
- #: ../admin/social_login.php:640
2258
  msgid ""
2259
  "Social Login Interface will get enabled before the customer login form at "
2260
  "WooCommerce My Account page"
@@ -2262,12 +2329,12 @@ msgstr ""
2262
  "Інтерфейс входу через соцмережі буде активовано перед формою входу для "
2263
  "покупця на сторінці Мій Аккаунт в WooCommerce"
2264
 
2265
- #: ../admin/social_login.php:647
2266
  #, fuzzy
2267
  msgid "Enable at WooCommerce Customer Login Form"
2268
  msgstr "Включити після форми входу клієнта WooCommerce"
2269
 
2270
- #: ../admin/social_login.php:657
2271
  #, fuzzy
2272
  msgid ""
2273
  "Integrate Social Login Interface with the customer login form at WooCommerce "
@@ -2276,12 +2343,12 @@ msgstr ""
2276
  "Інтерфейс входу через соцмережі буде активовано після форми входу для "
2277
  "покупця на сторінці Мій Аккаунт в WooCommerce"
2278
 
2279
- #: ../admin/social_login.php:664
2280
  #, fuzzy
2281
  msgid "Enable at WooCommerce Customer Register Form"
2282
  msgstr "Включити після форми входу клієнта WooCommerce"
2283
 
2284
- #: ../admin/social_login.php:674
2285
  #, fuzzy
2286
  msgid ""
2287
  "Integrate Social Login Interface with the customer register form at "
@@ -2290,23 +2357,23 @@ msgstr ""
2290
  "Інтерфейс входу через соцмережі буде активовано після форми входу для "
2291
  "покупця на сторінці Мій Аккаунт в WooCommerce"
2292
 
2293
- #: ../admin/social_login.php:681
2294
  msgid "Enable at WooCommerce checkout page"
2295
  msgstr "Включити на сторінці оформлення замовлення WooCommerce"
2296
 
2297
- #: ../admin/social_login.php:691
2298
  msgid "Social Login Interface will get enabled at WooCommerce checkout page"
2299
  msgstr ""
2300
  "Інтерфейс входу через соцмережі буде активовано на сторінці оформлення "
2301
  "замовлення в WooCommerce"
2302
 
2303
- #: ../admin/social_login.php:701
2304
  msgid "Auto-approve comments made by Social Login users"
2305
  msgstr ""
2306
  "Автоматичне схвалення коментарів для користувачів, які увійшли через "
2307
  "соцмережі"
2308
 
2309
- #: ../admin/social_login.php:711
2310
  msgid ""
2311
  "If this option is enabled, and WordPress comment is made by Social Login "
2312
  "user, comment will get approved immediately without keeping in moderation."
@@ -2315,15 +2382,15 @@ msgstr ""
2315
  "користувачем, який увійшов через соцмережі, то коментар буде опублікований "
2316
  "відразу без модерації."
2317
 
2318
- #: ../admin/social_login.php:712
2319
  msgid "Note: This is not related to Facebook comments"
2320
  msgstr "Примітка: Це не пов'язано з коментарями від Facebook"
2321
 
2322
- #: ../admin/social_login.php:721
2323
  msgid "Enable social avatar"
2324
  msgstr "Включення соціальних аватар"
2325
 
2326
- #: ../admin/social_login.php:731
2327
  msgid ""
2328
  "Social profile pictures of the logged in user will be displayed as profile "
2329
  "avatar"
@@ -2331,30 +2398,30 @@ msgstr ""
2331
  "Зображення користувача в соцмережах буде використовуватися як зображення "
2332
  "профілю на сайті"
2333
 
2334
- #: ../admin/social_login.php:740
2335
  msgid "Avatar quality"
2336
  msgstr "Якість аватарки"
2337
 
2338
- #: ../admin/social_login.php:743
2339
  msgid "Average"
2340
  msgstr "Середнє"
2341
 
2342
- #: ../admin/social_login.php:744
2343
  msgid "Best"
2344
  msgstr "Кращий"
2345
 
2346
- #: ../admin/social_login.php:751
2347
  msgid "Choose avatar quality"
2348
  msgstr "Виберіть якість аватара"
2349
 
2350
- #: ../admin/social_login.php:759
2351
  msgid ""
2352
  "Show option for users to update social avatar at BuddyPress profile page"
2353
  msgstr ""
2354
  "Показати варіант для користувачів для оновлення соціального аватара на "
2355
  "сторінці профілю BuddyPress"
2356
 
2357
- #: ../admin/social_login.php:769
2358
  msgid ""
2359
  "If enabled, users would be able to update their social avatar from \"Profile "
2360
  "photo\" section in BuddyPress profile at front-end"
@@ -2362,7 +2429,7 @@ msgstr ""
2362
  "Якщо цей параметр включений, користувачі зможуть оновити свій соціальний "
2363
  "аватар з розділу «Профіль» фото в профілі BuddyPress"
2364
 
2365
- #: ../admin/social_login.php:789
2366
  msgid ""
2367
  "If enabled and Social ID provider does not provide user's email address on "
2368
  "login, user will be asked to provide his/her email address. Otherwise, a "
@@ -2372,13 +2439,13 @@ msgstr ""
2372
  "входу, користувачеві буде потрібно ввести свою пошту. В іншому ж випадку, "
2373
  "пошта буде створена за зразком."
2374
 
2375
- #: ../admin/social_login.php:797
2376
  msgid "Send post-registration email to user to set account password"
2377
  msgstr ""
2378
  "Відправити після реєстрації електронною поштою користувачу лист щоб "
2379
  "встановити пароль облікового запису"
2380
 
2381
- #: ../admin/social_login.php:807
2382
  msgid ""
2383
  "If enabled, an email will be sent to user after registration through Social "
2384
  "Login, regarding his/her login credentials (username-password to be able to "
@@ -2388,13 +2455,13 @@ msgstr ""
2388
  "буде відправлено лист з ім'ям і пароль щоб була можливість зайти через "
2389
  "стандартну форму авторизації"
2390
 
2391
- #: ../admin/social_login.php:814
2392
  msgid "Send new user registration notification email to admin"
2393
  msgstr ""
2394
  "Надіслати повідомлення про реєстрацію нового користувача по електронній "
2395
  "пошті адміністратору"
2396
 
2397
- #: ../admin/social_login.php:824
2398
  msgid ""
2399
  "If enabled, an email will be sent to admin after new user registers through "
2400
  "Social Login, notifying admin about the new user registration"
@@ -2402,41 +2469,41 @@ msgstr ""
2402
  "Якщо опція включена, на пошту адміністратора прийде повідомлення про "
2403
  "реєстрацію нового користувача через соцмережі."
2404
 
2405
- #: ../admin/social_login.php:831
2406
  msgid "Login redirection"
2407
  msgstr "Перенаправлення входу"
2408
 
2409
- #: ../admin/social_login.php:835
2410
  msgid "Same page where user logged in"
2411
  msgstr "Та ж сторінка, на якій користувач зробив вхід"
2412
 
2413
- #: ../admin/social_login.php:839 ../admin/social_login.php:868
2414
  msgid "Account dashboard"
2415
  msgstr "Сторінка управління аккаунтом"
2416
 
2417
- #: ../admin/social_login.php:842 ../admin/social_login.php:871
2418
  msgid "BuddyPress profile page"
2419
  msgstr "Сторінка профілю BuddyPress"
2420
 
2421
- #: ../admin/social_login.php:845 ../admin/social_login.php:874
2422
  msgid "Custom Url"
2423
  msgstr "Користувацьке посилання"
2424
 
2425
- #: ../admin/social_login.php:853
2426
  msgid "User will be redirected to the selected page after Social Login"
2427
  msgstr ""
2428
  "Користувач буде перенаправлений на обрану сторінку після входу через "
2429
  "соцмережі"
2430
 
2431
- #: ../admin/social_login.php:860
2432
  msgid "Registration redirection"
2433
  msgstr "Перенаправлення реєстрації"
2434
 
2435
- #: ../admin/social_login.php:864
2436
  msgid "Same page from where user registered"
2437
  msgstr "URL цільової сторінки, на якій зареєстрований користувач"
2438
 
2439
- #: ../admin/social_login.php:882
2440
  msgid ""
2441
  "User will be redirected to the selected page after registration (first "
2442
  "Social Login) through Social Login"
@@ -2444,23 +2511,23 @@ msgstr ""
2444
  "Користувач буде перенаправлений на обрану сторінку після реєстрації (перший "
2445
  "вхід чере соцмережі) через соцмережі"
2446
 
2447
- #: ../admin/social_login.php:891
2448
  #, fuzzy
2449
  msgid "Social Account Linking Options"
2450
  msgstr "Посилання на соціальний аккаунт"
2451
 
2452
- #: ../admin/social_login.php:906
2453
  #, fuzzy
2454
  msgid "Text to display above the Social Account Linking interface"
2455
  msgstr "Текст, що відображається над інтерфейсом входу через соцмережі"
2456
 
2457
- #: ../admin/social_login.php:913
2458
  msgid ""
2459
  "Link social account to already existing account, if email address matches"
2460
  msgstr ""
2461
  "Пов'язує аккаунт соцмереж з існуючим обліковим записом якщо пошта збігається."
2462
 
2463
- #: ../admin/social_login.php:923
2464
  #, fuzzy
2465
  msgid ""
2466
  "If email address of the user's Social Account matches with an already "
@@ -2473,11 +2540,11 @@ msgstr ""
2473
  "існуючим обліковим записом. Користувач зможе управляти цим на сторінці "
2474
  "профілю."
2475
 
2476
- #: ../admin/social_login.php:931
2477
  msgid "Enable social account linking at BuddyPress profile page"
2478
  msgstr "Інтегрує соціальний аккаунт на сторінці профілю BuddyPress"
2479
 
2480
- #: ../admin/social_login.php:941
2481
  msgid ""
2482
  "Enable this option to show social account linking interface at BuddyPress "
2483
  "profile page"
@@ -2485,15 +2552,15 @@ msgstr ""
2485
  "Активуйте цю функцію щоб інтегрувати соціальний аккаунт на сторінці профілю "
2486
  "BuddyPress"
2487
 
2488
- #: ../admin/social_login.php:952
2489
  msgid "Email popup options"
2490
  msgstr "Параметри спливаючій електронної пошти"
2491
 
2492
- #: ../admin/social_login.php:957
2493
  msgid "Text on 'Email required' popup"
2494
  msgstr "Текст на спливаючому вікні «Електронна пошта потрібна»"
2495
 
2496
- #: ../admin/social_login.php:967
2497
  msgid ""
2498
  "This text will be displayed on email required popup. Leave empty if not "
2499
  "required."
@@ -2501,11 +2568,11 @@ msgstr ""
2501
  "Цей текст буде відображатися на спливаючому вікні, що вимагає пошту. Залиште "
2502
  "поле порожнім якщо не потрібно."
2503
 
2504
- #: ../admin/social_login.php:975
2505
  msgid "Error message for 'Email required' popup"
2506
  msgstr "Повідомлення помилки у спливаючому вікні \"Потрібно пошта \""
2507
 
2508
- #: ../admin/social_login.php:985
2509
  msgid ""
2510
  "This message will be displayed to user if it provides invalid or already "
2511
  "registered email"
@@ -2513,11 +2580,11 @@ msgstr ""
2513
  "Це повідомлення буде показано користувачеві, якщо він надав невірну або "
2514
  "раніше запроваджену пошту"
2515
 
2516
- #: ../admin/social_login.php:993
2517
  msgid "Email popup height"
2518
  msgstr "Висота спливаючого вікна"
2519
 
2520
- #: ../admin/social_login.php:1003
2521
  msgid ""
2522
  "If you are seeing vertical scrollbar in the \"Email required\" popup, you "
2523
  "can increase the height of popup by specifying in this option. Leave empty "
@@ -2527,11 +2594,11 @@ msgstr ""
2527
  "то ви можете збільшити висотку спливаючого вікна. Залиште порожнім для "
2528
  "базового значення."
2529
 
2530
- #: ../admin/social_login.php:1010
2531
  msgid "Enable email verification"
2532
  msgstr "Включити перевірку електронної пошти"
2533
 
2534
- #: ../admin/social_login.php:1020
2535
  msgid ""
2536
  "If enabled, email provided by the user will be verified by sending a "
2537
  "confirmation link to that email. User would not be able to login without "
@@ -2540,108 +2607,108 @@ msgstr ""
2540
  "Якщо опція включена, то на пошту, яку вказав користувач, прийде лист з "
2541
  "підтвердженням. Користувач не зможе зайти без підтвердження своєї пошти."
2542
 
2543
- #: ../admin/social_login.php:1040
2544
  #, fuzzy
2545
  msgid "Enable GDPR opt-in"
2546
  msgstr "Активувати коментування через Disqus"
2547
 
2548
- #: ../admin/social_login.php:1050
2549
  msgid ""
2550
  "Enable it to show GDPR opt-in for social login and social account linking"
2551
  msgstr ""
2552
 
2553
- #: ../admin/social_login.php:1058
2554
  #, fuzzy
2555
  msgid "Placement of GDPR opt-in"
2556
  msgstr "Активувати коментування через Disqus"
2557
 
2558
- #: ../admin/social_login.php:1062
2559
  #, fuzzy
2560
  msgid "Above Social Login icons"
2561
  msgstr "Параметри входу через соцмережі"
2562
 
2563
- #: ../admin/social_login.php:1064
2564
  #, fuzzy
2565
  msgid "Below Social Login icons"
2566
  msgstr "Параметри входу через соцмережі"
2567
 
2568
- #: ../admin/social_login.php:1070
2569
  #, fuzzy
2570
  msgid "Placement of GDPR opt-in above or below the social login icons"
2571
  msgstr "Текст, що відображається над інтерфейсом входу через соцмережі"
2572
 
2573
- #: ../admin/social_login.php:1077
2574
  msgid "Opt-in text"
2575
  msgstr ""
2576
 
2577
- #: ../admin/social_login.php:1087
2578
  #, fuzzy
2579
  msgid "Text for the GDPR opt-in"
2580
  msgstr "Активувати коментування через Disqus"
2581
 
2582
- #: ../admin/social_login.php:1094
2583
  msgid "Text to link to Terms-Conditions page"
2584
  msgstr ""
2585
 
2586
- #: ../admin/social_login.php:1104
2587
  msgid "Word(s) in the opt-in text to be linked to terms-conditions page"
2588
  msgstr ""
2589
 
2590
- #: ../admin/social_login.php:1111
2591
  msgid "Terms-Conditions Url"
2592
  msgstr ""
2593
 
2594
- #: ../admin/social_login.php:1121
2595
  #, fuzzy
2596
  msgid "Url of the terms-conditions page of your website"
2597
  msgstr "URL-адреса домашньої сторінки вашого веб-сайту"
2598
 
2599
- #: ../admin/social_login.php:1128
2600
  msgid "Text to link to Privacy Policy page"
2601
  msgstr ""
2602
 
2603
- #: ../admin/social_login.php:1138
2604
  msgid "Word(s) in the opt-in text to be linked to privacy policy page"
2605
  msgstr ""
2606
 
2607
- #: ../admin/social_login.php:1145
2608
  msgid "Privacy Policy Url"
2609
  msgstr ""
2610
 
2611
- #: ../admin/social_login.php:1155
2612
  #, fuzzy
2613
  msgid "Url of the privacy policy page of your website"
2614
  msgstr "URL-адреса домашньої сторінки вашого веб-сайту"
2615
 
2616
- #: ../admin/social_login.php:1206 ../inc/widget.php:260 ../inc/widget.php:438
2617
  #: ../inc/widget.php:602 ../inc/widget.php:750
2618
  msgid "Select"
2619
  msgstr "Вибір"
2620
 
2621
- #: ../admin/social_login.php:1237
2622
  msgid "Social Login Shortcode & Widget"
2623
  msgstr "Шорткод і віджет для входу через соцмережі"
2624
 
2625
- #: ../admin/social_login.php:1238
2626
  msgid "Social Linking Shortcode"
2627
  msgstr "Шорткод соціальних посилань"
2628
 
2629
- #: ../admin/social_login.php:1253
2630
  #, fuzzy
2631
  msgid "Why is social login not working?"
2632
  msgstr "Чому Facebook Логін не працює?"
2633
 
2634
- #: ../admin/social_login.php:1254
2635
  msgid ""
2636
  "Make sure that App ID and Secret (Client ID and Secret) keys you have saved, "
2637
  "belong to the same app"
2638
  msgstr ""
2639
 
2640
- #: ../admin/social_login.php:1256
2641
  msgid "Social Login not working with Varnish enabled"
2642
  msgstr ""
2643
 
2644
- #: ../admin/social_login.php:1257
2645
  msgid ""
2646
  "Why the user is not appearing logged in even after Social Login until the "
2647
  "webpage is refreshed manually?"
@@ -2860,27 +2927,27 @@ msgstr "Невірний Запит!"
2860
  msgid "Providers not selected"
2861
  msgstr "Сервіси не вибрані"
2862
 
2863
- #: ../inc/social_login.php:747
2864
  msgid "Email"
2865
  msgstr "Email"
2866
 
2867
- #: ../inc/social_login.php:748
2868
  msgid "Confirm email"
2869
  msgstr "Підтвердити e-mail"
2870
 
2871
- #: ../inc/social_login.php:750
2872
  msgid "Save"
2873
  msgstr "Зберегти"
2874
 
2875
- #: ../inc/social_login.php:751
2876
  msgid "Cancel"
2877
  msgstr "Скасувати"
2878
 
2879
- #: ../inc/social_login.php:825
2880
  msgid "Email Verification"
2881
  msgstr "Підтвердження адреси електронної пошти"
2882
 
2883
- #: ../inc/social_login.php:827
2884
  msgid ""
2885
  "Please click on the following link or paste it in browser to verify your "
2886
  "email"
2
  msgstr ""
3
  "Project-Id-Version: Super Socializer\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2020-09-23 09:45+0530\n"
6
+ "PO-Revision-Date: 2020-09-23 09:45+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:667
21
  msgid "Problem fetching access token: "
22
  msgstr ""
23
 
24
+ #: ../super_socializer.php:671 ../super_socializer.php:685
25
  msgid "Facebook SDK returned an error: "
26
  msgstr ""
27
 
28
+ #: ../super_socializer.php:681
29
  msgid "Graph returned an error: "
30
  msgstr ""
31
 
32
+ #: ../super_socializer.php:870
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:898
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:901
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:904
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:1086 ../helper.php:961
68
  msgid "Please verify your email address to login."
69
  msgstr "Будь ласка, підтвердіть свою адресу електронної пошти."
70
 
71
+ #: ../super_socializer.php:1086
72
  msgid "Your email has been verified. Now you can login to your account"
73
  msgstr ""
74
  "Ваша електронна адреса була перевірена. Тепер ви можете увійти до свого "
75
  "облікового запису"
76
 
77
+ #: ../super_socializer.php:1090
78
  msgid "Notification"
79
  msgstr "Повідомлення"
80
 
81
+ #: ../super_socializer.php:1108 ../admin/social_login.php:869
82
  msgid "Email required"
83
  msgstr "Електронна адреса (обо'язково)"
84
 
85
+ #: ../super_socializer.php:1111
86
  msgid "Please check your email inbox to complete the registration."
87
  msgstr "Будь ласка, перевірте вашу поштову скриньку для завершення реєстрації."
88
 
89
+ #: ../super_socializer.php:1180
90
  msgid "Leave a reply"
91
  msgstr "Залишити коментар"
92
 
93
+ #: ../super_socializer.php:1196 ../inc/social_sharing.php:241
94
  msgid "Shares"
95
  msgstr "Поширили:"
96
 
97
+ #: ../super_socializer.php:1196 ../inc/social_sharing.php:241
98
  msgid "Share"
99
  msgstr "Поділитися"
100
 
101
+ #: ../super_socializer.php:1196
102
  #, fuzzy
103
  msgid "Link copied."
104
  msgstr "LinkedIn"
105
 
106
+ #: ../super_socializer.php:1441
107
  msgid "Super Socializer - General Options"
108
  msgstr "Super Socializer - Загальні Параметри"
109
 
110
+ #: ../super_socializer.php:1441 ../admin/general_options.php:15
111
  #: ../admin/social_commenting.php:47
112
  msgid "General Options"
113
  msgstr "Загальні параметри"
114
 
115
+ #: ../super_socializer.php:1509 ../helper.php:883
116
  msgid "Social Avatar"
117
  msgstr "Соціальний Аватар"
118
 
119
+ #: ../super_socializer.php:1512
120
  msgid "Small Avatar Url"
121
  msgstr "Посилання для маленького аватара"
122
 
123
+ #: ../super_socializer.php:1516
124
  msgid "Large Avatar Url"
125
  msgstr "Посилання для великого аватара"
126
 
127
+ #: ../super_socializer.php:1520 ../helper.php:886
128
  msgid ""
129
  "Do not fetch and update social avatar from my profile, next time I Social "
130
  "Login"
132
  "Не отримувати і оновлювати соціальний аватар з мого профілю, в наступний "
133
  "раз коли я використовую вхід через соцмережі"
134
 
135
+ #: ../super_socializer.php:1524 ../helper.php:887
136
  msgid "Update social avatar, next time I Social Login"
137
  msgstr ""
138
  "Оновлення аватара соцмереж наступного разу при використанні входу через "
139
  "соцмережі"
140
 
141
+ #: ../super_socializer.php:1601
142
  msgid "Login with your Social ID"
143
  msgstr "Увійти через соціальний аккаунт"
144
 
145
+ #: ../super_socializer.php:1602
146
  msgid "Email you entered is already registered or invalid"
147
  msgstr "Електронна пошта, яку ви ввели, вже зареєстрована або недійсна"
148
 
149
+ #: ../super_socializer.php:1607
150
  msgid "Please enter a valid email address. You might be required to verify it"
151
  msgstr ""
152
  "Будь ласка, введіть дійсну адресу електронної пошти. Вам, можливо, буде "
153
  "потрібно перевірити його"
154
 
155
+ #: ../super_socializer.php:1611 ../super_socializer.php:2309
156
  msgid "Link your social account to login to your account at this website"
157
  msgstr ""
158
  "Введіть посилання на ваш аккаунт в соціальних мережах щоб увійти в обліковий "
159
  "запис на цьому сайті"
160
 
161
+ #: ../super_socializer.php:1851
162
  msgid "Thanks for installing Super Socializer plugin"
163
  msgstr ""
164
 
165
+ #: ../super_socializer.php:1853
166
  msgid "Configure the Plugin"
167
  msgstr ""
168
 
169
+ #: ../super_socializer.php:1864
170
  msgid ""
171
  "Update \"Facebook Comments Moderation\" add-on for compatibility with "
172
  "current version of Super Socializer"
173
  msgstr ""
174
 
175
+ #: ../super_socializer.php:1873
176
  msgid ""
177
  "Update \"Facebook Comments Notifier\" add-on for compatibility with current "
178
  "version of Super Socializer"
179
  msgstr ""
180
 
181
+ #: ../super_socializer.php:1882
182
  msgid ""
183
  "Update \"Social Login Buttons\" add-on for compatibility with current "
184
  "version of Super Socializer"
185
  msgstr ""
186
 
187
+ #: ../super_socializer.php:1891
188
  msgid ""
189
  "Update \"Social Share myCRED Integration\" add-on for maximum compatibility "
190
  "with current version of Super Socializer"
191
  msgstr ""
192
 
193
+ #: ../super_socializer.php:1900
194
  msgid ""
195
  "Update \"Social Login myCRED Integration\" add-on for maximum compatibility "
196
  "with current version of Super Socializer"
197
  msgstr ""
198
 
199
+ #: ../super_socializer.php:1911
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:1920
206
  #, php-format
207
  msgid ""
208
  "To continue using Instagram login create a new Instagram App as described <a "
210
  "Instagram App Secret <a href=\"%s\">here</a>"
211
  msgstr ""
212
 
213
+ #: ../super_socializer.php:1929 ../super_socializer.php:1938
214
  #, php-format
215
  msgid ""
216
  "To continue using bitly url shortener, login to your bit.ly account and "
219
  "\">here</a>. More details at the <a href=\"%s\" target=\"_blank\">link</a>"
220
  msgstr ""
221
 
222
+ #: ../super_socializer.php:1954
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:1978
229
  #, php-format
230
  msgid ""
231
  "Add %s in \"Valid OAuth redirect URIs\" option in your Facebook app settings "
233
  "target=\"_blank\">here</a>"
234
  msgstr ""
235
 
236
+ #: ../super_socializer.php:1978 ../super_socializer.php:2003
237
+ #: ../super_socializer.php:2028 ../super_socializer.php:2053
238
+ #: ../super_socializer.php:2086 ../super_socializer.php:2114
239
+ #: ../super_socializer.php:2141
240
  msgid "Okay"
241
  msgstr "Гаразд."
242
 
243
+ #: ../super_socializer.php:2003
244
  #, php-format
245
  msgid ""
246
  "Add %s in \"Callback URLs\" option in your Twitter app settings for Twitter "
248
  "\">here</a>"
249
  msgstr ""
250
 
251
+ #: ../super_socializer.php:2028
252
  #, php-format
253
  msgid ""
254
  "Add %s in \"Authorized Redirect URLs\" option in your Linkedin app settings "
256
  "target=\"_blank\">here</a>"
257
  msgstr ""
258
 
259
+ #: ../super_socializer.php:2053
260
  #, php-format
261
  msgid ""
262
  "Add %s in \"Authorized redirect URIs\" option in your Google client settings "
264
  "target=\"_blank\">here</a>"
265
  msgstr ""
266
 
267
+ #: ../super_socializer.php:2064
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:2086
274
  #, php-format
275
  msgid ""
276
  "This plugin is GDPR compliant. You need to update the privacy policy of your "
278
  "\"%s\" target=\"_blank\">here</a>"
279
  msgstr ""
280
 
281
+ #: ../super_socializer.php:2114
282
  #, php-format
283
  msgid ""
284
  "Now plugin supports a new service Twitcount.com to show Twitter shares. To "
287
  "your website %s with them. No need to copy-paste any code from their website."
288
  msgstr ""
289
 
290
+ #: ../super_socializer.php:2141
291
  #, php-format
292
  msgid ""
293
  "Replace url saved in \"Callback URLs\" option in your Twitter app settings "
295
  "\"%s\" target=\"_blank\">here</a>"
296
  msgstr ""
297
 
298
+ #: ../super_socializer.php:2166
299
  #, php-format
300
  msgid ""
301
  "If you cannot get Linkedin login to work after updating the plugin, replace "
303
  "For more details, check step 6 <a href=\"%s\" target=\"_blank\">here</a>"
304
  msgstr ""
305
 
306
+ #: ../super_socializer.php:2166 ../super_socializer.php:2193
307
  msgid "Dismiss"
308
  msgstr ""
309
 
310
+ #: ../super_socializer.php:2192
311
  #, php-format
312
  msgid ""
313
  "Save Facebook App ID and Secret keys in \"Standard Interface\" and/or "
316
  "that, clear share counts cache from \"Miscellaneous\" section"
317
  msgstr ""
318
 
319
+ #: ../super_socializer.php:2385
320
  msgid ""
321
  "Your browser is blocking some features of this website. Please follow the "
322
  "instructions at {support_url} to unblock these."
418
 
419
  #: ../helper.php:898 ../admin/general_options.php:89
420
  #: ../admin/social_sharing.php:1944 ../admin/social_commenting.php:400
421
+ #: ../admin/social_login.php:1359 ../admin/like_buttons.php:780
422
  msgid "Save Changes"
423
  msgstr "Зберегти налаштування"
424
 
442
  #: ../admin/general_options.php:7 ../admin/general_options.php:93
443
  #: ../admin/social_sharing.php:5 ../admin/social_sharing.php:1948
444
  #: ../admin/social_commenting.php:5 ../admin/social_commenting.php:404
445
+ #: ../admin/social_login.php:5 ../admin/social_login.php:1363
446
  #: ../admin/like_buttons.php:6 ../admin/like_buttons.php:784
447
  #, fuzzy, php-format
448
  msgid ""
496
  "Можна вказати будь-які додаткові правила CSS (без тега & lt; style & gt;)"
497
 
498
  #: ../admin/general_options.php:103 ../admin/social_sharing.php:1954
499
+ #: ../admin/social_commenting.php:410 ../admin/social_login.php:1369
500
  #: ../admin/like_buttons.php:790
501
  #, fuzzy
502
  msgid "Instagram Shoutout"
503
  msgstr "Instagram"
504
 
505
  #: ../admin/general_options.php:105 ../admin/social_sharing.php:1956
506
+ #: ../admin/social_commenting.php:412 ../admin/social_login.php:1371
507
  #: ../admin/like_buttons.php:792
508
  msgid ""
509
  "If you can send (to hello@heateor.com) how this plugin is helping your "
642
 
643
  #: ../admin/social_sharing.php:67 ../admin/social_sharing.php:1869
644
  #: ../admin/social_sharing.php:1871 ../admin/social_login.php:45
645
+ #: ../admin/social_login.php:1325 ../admin/like_buttons.php:50
646
  #: ../admin/like_buttons.php:751
647
  msgid "Shortcode & Widget"
648
  msgstr "Шорткод і віджет"
653
 
654
  #: ../admin/social_sharing.php:69 ../admin/social_sharing.php:1902
655
  #: ../admin/social_commenting.php:40 ../admin/social_commenting.php:384
656
+ #: ../admin/social_login.php:46 ../admin/social_login.php:1339
657
  #: ../admin/like_buttons.php:51 ../admin/like_buttons.php:764
658
  msgid "FAQ"
659
  msgstr "Часті питання (FAQ)"
885
  msgid "Url to share"
886
  msgstr "Посилання щоб Поділитися"
887
 
888
+ #: ../admin/social_sharing.php:725 ../admin/social_login.php:610
889
+ #: ../admin/social_login.php:986 ../admin/like_buttons.php:105
890
  #: ../inc/widget.php:945
891
  msgid "Title"
892
  msgstr "Заголовок"
972
  msgstr "Розміщення"
973
 
974
  #: ../admin/social_sharing.php:957 ../admin/social_sharing.php:1383
975
+ #: ../admin/social_login.php:927 ../admin/social_login.php:956
976
  #: ../admin/like_buttons.php:218 ../admin/like_buttons.php:494
977
  msgid "Homepage"
978
  msgstr "Головна"
1241
  msgid "Required only to track Facebook share count"
1242
  msgstr ""
1243
 
1244
+ #: ../admin/social_sharing.php:1584 ../admin/social_login.php:158
1245
  msgid "Facebook App ID"
1246
  msgstr "Facebook App ID"
1247
 
1254
  "Необхідно для входу через Facebook. Будь ласка, подивіться документацію <a "
1255
  "href=\"%s\" target=\"_blank\"> тут </a> для отримання ID додатку Facebook."
1256
 
1257
+ #: ../admin/social_sharing.php:1601 ../admin/social_login.php:179
1258
  #, fuzzy
1259
  msgid "Facebook App Secret"
1260
  msgstr "Facebook App ID"
1443
  "\"Отримання інформації про нову поломки \"."
1444
 
1445
  #: ../admin/social_sharing.php:1904 ../admin/social_commenting.php:386
1446
+ #: ../admin/social_login.php:1341
1447
  msgid ""
1448
  "<strong>Note:</strong> Plugin will not work on local server. You should have "
1449
  "an online website for the plugin to function properly."
1501
  msgstr ""
1502
 
1503
  #: ../admin/social_sharing.php:1919 ../admin/social_commenting.php:389
1504
+ #: ../admin/social_login.php:1348
1505
  msgid "Why is my browser blocking some features of the plugin?"
1506
  msgstr "Чому мій браузер блокує деякі функції плагіна?"
1507
 
1818
  msgid "Advanced Configuration"
1819
  msgstr "Розширена конфігурація"
1820
 
1821
+ #: ../admin/social_login.php:41 ../admin/social_login.php:1125
1822
  msgid "GDPR"
1823
  msgstr ""
1824
 
1825
+ #: ../admin/social_login.php:43 ../admin/social_login.php:1276
1826
  msgid "XProfile Integration"
1827
  msgstr "XProfile інтеграція"
1828
 
1891
  msgstr ""
1892
 
1893
  #: ../admin/social_login.php:135
1894
+ msgid "Wordpress"
1895
+ msgstr ""
1896
+
1897
+ #: ../admin/social_login.php:139
1898
  msgid "Windows Live"
1899
  msgstr ""
1900
 
1901
  #: ../admin/social_login.php:143
1902
+ msgid "Yahoo"
1903
+ msgstr ""
1904
+
1905
+ #: ../admin/social_login.php:151
1906
  msgid "Select Social ID provider to enable in Social Login"
1907
  msgstr "Виберіть соцмережі щоб активувати вхід через соцмережі"
1908
 
1909
+ #: ../admin/social_login.php:168
1910
  #, php-format
1911
  msgid ""
1912
  "Required for Facebook Social Login to work. Please follow the documentation "
1915
  "Необхідно для входу через Facebook. Будь ласка, подивіться документацію <a "
1916
  "href=\"%s\" target=\"_blank\"> тут </a> для отримання ID додатку Facebook."
1917
 
1918
+ #: ../admin/social_login.php:170 ../admin/social_login.php:191
1919
  #, fuzzy
1920
  msgid ""
1921
  "Paste following url in <strong>Site URL</strong> option mentioned at the link"
1923
  "Вставити наступний URL-адресу в <strong> URL-адресу сайту </ strong> для "
1924
  "згадки посилання."
1925
 
1926
+ #: ../admin/social_login.php:189
1927
  #, fuzzy, php-format
1928
  msgid ""
1929
  "Required for Facebook Social Login to work. Please follow the documentation "
1932
  "Необхідно для входу через Facebook. Будь ласка, подивіться документацію <a "
1933
  "href=\"%s\" target=\"_blank\"> тут </a> для отримання ID додатку Facebook."
1934
 
1935
+ #: ../admin/social_login.php:200
1936
  msgid "Twitter API Key"
1937
  msgstr "Twitter API ключ"
1938
 
1939
+ #: ../admin/social_login.php:210
1940
  #, php-format
1941
  msgid ""
1942
  "Required for Twitter Social Login to work. Please follow the documentation "
1945
  "Необхідно для входу через Twitter. Будь ласка, подивіться документацію <a "
1946
  "href=\"%s\" target=\"_blank\"> тут </a> для отримання ключа додатку Twitter."
1947
 
1948
+ #: ../admin/social_login.php:212 ../admin/social_login.php:237
1949
  #, fuzzy
1950
  msgid ""
1951
  "Paste following url in <strong>Website</strong> option mentioned at the link"
1953
  "Вставити наступний URL-адресу в <strong> URL веб-сайту </ strong> для згадки "
1954
  "посилання"
1955
 
1956
+ #: ../admin/social_login.php:216 ../admin/social_login.php:241
1957
+ #: ../admin/social_login.php:429 ../admin/social_login.php:449
1958
+ #: ../admin/social_login.php:469 ../admin/social_login.php:489
1959
  #, fuzzy
1960
  msgid ""
1961
  "Paste following url in <strong>Callback URL</strong> option mentioned at the "
1964
  "Вставити наступний URL-адресу в <strong> URL веб-сайту </ strong> для згадки "
1965
  "посилання"
1966
 
1967
+ #: ../admin/social_login.php:225
1968
  msgid "Twitter API Secret"
1969
  msgstr "Twitter API секретний ключ"
1970
 
1971
+ #: ../admin/social_login.php:235
1972
  #, php-format
1973
  msgid ""
1974
  "Required for Twitter Social Login to work. Please follow the documentation "
1978
  "href=\"%s\" target=\"_blank\"> тут </a> для отримання секретного ключа "
1979
  "додатку Twitter ."
1980
 
1981
+ #: ../admin/social_login.php:250
1982
  #, fuzzy
1983
  msgid "LinkedIn Client ID"
1984
  msgstr "LinkedIn"
1985
 
1986
+ #: ../admin/social_login.php:260
1987
  #, fuzzy, php-format
1988
  msgid ""
1989
  "Required for LinkedIn Social Login to work. Please follow the documentation "
1992
  "Необхідно для входу через LinkedIn. Будь ласка, подивіться документацію <a "
1993
  "href=\"%s\" target=\"_blank\"> тут </a> для отримання ключа додатку LinkedIn."
1994
 
1995
+ #: ../admin/social_login.php:262 ../admin/social_login.php:283
1996
  #, fuzzy
1997
  msgid ""
1998
  "Paste following url in <strong>Redirect URLs</strong> option mentioned at "
2001
  "Вставити наступний URL-адресу в <strong> URL-адресу сайту </ strong> для "
2002
  "згадки посилання."
2003
 
2004
+ #: ../admin/social_login.php:271
2005
  #, fuzzy
2006
  msgid "LinkedIn Client Secret"
2007
  msgstr "LinkedIn"
2008
 
2009
+ #: ../admin/social_login.php:281
2010
  #, fuzzy, php-format
2011
  msgid ""
2012
  "Required for LinkedIn Social Login to work. Please follow the documentation "
2016
  "Необхідно для входу через LinkedIn. Будь ласка, подивіться документацію <a "
2017
  "href=\"%s\" target=\"_blank\"> тут </a> для отримання ключа додатку LinkedIn."
2018
 
2019
+ #: ../admin/social_login.php:292
2020
  #, fuzzy
2021
  msgid "Google Client ID"
2022
  msgstr "Google+ ID клієнта"
2023
 
2024
+ #: ../admin/social_login.php:302
2025
  #, fuzzy, php-format
2026
  msgid ""
2027
  "Required for Google Social Login to work. Please follow the documentation at "
2030
  "Необхідно для входу через Google+. Будь ласка, подивіться документацію <a "
2031
  "href=\"%s\" target=\"_blank\"> тут </a> для отримання ID клієнта в Google+."
2032
 
2033
+ #: ../admin/social_login.php:304 ../admin/social_login.php:325
2034
  #, fuzzy
2035
  msgid ""
2036
  "Paste following url in <strong>AUTHORIZED REDIRECT URI</strong> option "
2039
  "Вставити наступний URL-адресу в <strong> URL-адресу сайту </ strong> для "
2040
  "згадки посилання."
2041
 
2042
+ #: ../admin/social_login.php:313
2043
  #, fuzzy
2044
  msgid "Google Client Secret"
2045
  msgstr "Google+ ID клієнта"
2046
 
2047
+ #: ../admin/social_login.php:323
2048
  #, fuzzy, php-format
2049
  msgid ""
2050
  "Required for Google Social Login to work. Please follow the documentation at "
2053
  "Необхідно для входу через Google+. Будь ласка, подивіться документацію <a "
2054
  "href=\"%s\" target=\"_blank\"> тут </a> для отримання ID клієнта в Google+."
2055
 
2056
+ #: ../admin/social_login.php:334
2057
  msgid "Vkontakte Application ID"
2058
  msgstr "ID додатку Вконтакте"
2059
 
2060
+ #: ../admin/social_login.php:344 ../admin/social_login.php:365
2061
  #, php-format
2062
  msgid ""
2063
  "Required for Vkontakte Social Login to work. Please follow the documentation "
2067
  "Необхідно для входу через Vkontakte. Будь ласка, подивіться документацію <a "
2068
  "href=\"%s\" target=\"_blank\"> тут </a> для отримання ID додатку Vkontakte."
2069
 
2070
+ #: ../admin/social_login.php:346 ../admin/social_login.php:367
2071
  #, fuzzy
2072
  msgid ""
2073
  "Paste following url in <strong>Site address</strong> option mentioned at the "
2076
  "Вставити наступний URL-адресу в <strong> URL-адресу сайту </ strong> для "
2077
  "згадки посилання."
2078
 
2079
+ #: ../admin/social_login.php:355
2080
  #, fuzzy
2081
  msgid "Vkontakte Secure key"
2082
  msgstr "Вконтакте"
2083
 
2084
+ #: ../admin/social_login.php:376
2085
  #, fuzzy
2086
  msgid "Instagram App ID"
2087
  msgstr "Instagram ID клієнта"
2088
 
2089
+ #: ../admin/social_login.php:386
2090
  #, fuzzy, php-format
2091
  msgid ""
2092
  "Required for Instagram Social Login to work. Please follow the documentation "
2095
  "Необхідно для входу через Instagram. Будь ласка, подивіться документацію <a "
2096
  "href=\"%s\" target=\"_blank\"> тут </a> для отримання ID клієнта в Instagram."
2097
 
2098
+ #: ../admin/social_login.php:388 ../admin/social_login.php:409
2099
  #, fuzzy
2100
  msgid ""
2101
  "Paste following url in <strong>Valid OAuth Redirect URIs</strong> option "
2104
  "Вставити наступний URL-адресу в <strong> URL-адресу сайту </ strong> для "
2105
  "згадки посилання."
2106
 
2107
+ #: ../admin/social_login.php:397
2108
  #, fuzzy
2109
  msgid "Instagram App Secret"
2110
  msgstr "Введіть ім'я користувача Instagram."
2111
 
2112
+ #: ../admin/social_login.php:407
2113
  #, fuzzy, php-format
2114
  msgid ""
2115
  "Required for Instagram Social Login to work. Please follow the documentation "
2118
  "Необхідно для входу через Instagram. Будь ласка, подивіться документацію <a "
2119
  "href=\"%s\" target=\"_blank\"> тут </a> для отримання ID клієнта в Instagram."
2120
 
2121
+ #: ../admin/social_login.php:418
2122
  msgid "Line Channel ID"
2123
  msgstr ""
2124
 
2125
+ #: ../admin/social_login.php:427
2126
  #, fuzzy, php-format
2127
  msgid ""
2128
  "Required for Line Social Login to work. Please follow the documentation at "
2131
  "Необхідно для входу через LinkedIn. Будь ласка, подивіться документацію <a "
2132
  "href=\"%s\" target=\"_blank\"> тут </a> для отримання ключа додатку LinkedIn."
2133
 
2134
+ #: ../admin/social_login.php:438
2135
  #, fuzzy
2136
  msgid "Line Channel Secret"
2137
  msgstr "LinkedIn"
2138
 
2139
+ #: ../admin/social_login.php:447
2140
  #, fuzzy, php-format
2141
  msgid ""
2142
  "Required for Line Social Login to work. Please follow the documentation at "
2145
  "Необхідно для входу через LinkedIn. Будь ласка, подивіться документацію <a "
2146
  "href=\"%s\" target=\"_blank\"> тут </a> для отримання ключа додатку LinkedIn."
2147
 
2148
+ #: ../admin/social_login.php:458
2149
+ #, fuzzy
2150
+ msgid "Wordpress Client ID"
2151
+ msgstr "Google+ ID клієнта"
2152
+
2153
+ #: ../admin/social_login.php:467
2154
+ #, fuzzy, php-format
2155
+ msgid ""
2156
+ "Required for Wordpress Social Login to work. Please follow the documentation "
2157
+ "at <a href=\"%s\" target=\"_blank\">this link</a> to get Wordpress Client ID"
2158
+ msgstr ""
2159
+ "Необхідно для входу через Google+. Будь ласка, подивіться документацію <a "
2160
+ "href=\"%s\" target=\"_blank\"> тут </a> для отримання ID клієнта в Google+."
2161
+
2162
+ #: ../admin/social_login.php:478
2163
+ #, fuzzy
2164
+ msgid "Wordpress Client Secret"
2165
+ msgstr "Google+ ID клієнта"
2166
+
2167
+ #: ../admin/social_login.php:487
2168
+ #, fuzzy, php-format
2169
+ msgid ""
2170
+ "Required for Wordpress Social Login to work. Please follow the documentation "
2171
+ "at <a href=\"%s\" target=\"_blank\">this link</a> to get Wordpress Client "
2172
+ "Secret"
2173
+ msgstr ""
2174
+ "Необхідно для входу через Google+. Будь ласка, подивіться документацію <a "
2175
+ "href=\"%s\" target=\"_blank\"> тут </a> для отримання ID клієнта в Google+."
2176
+
2177
+ #: ../admin/social_login.php:498
2178
  #, fuzzy
2179
  msgid "Microsoft Client ID"
2180
  msgstr "Google+ ID клієнта"
2181
 
2182
+ #: ../admin/social_login.php:507
2183
  #, fuzzy, php-format
2184
  msgid ""
2185
  "Required for Live Social Login to work. Please follow the documentation at "
2188
  "Необхідно для входу через Google+. Будь ласка, подивіться документацію <a "
2189
  "href=\"%s\" target=\"_blank\"> тут </a> для отримання ID клієнта в Google+."
2190
 
2191
+ #: ../admin/social_login.php:509 ../admin/social_login.php:529
2192
+ #: ../admin/social_login.php:567 ../admin/social_login.php:587
2193
  #, fuzzy
2194
  msgid ""
2195
  "Paste following url in <strong>Redirect URIs</strong> option mentioned at "
2198
  "Вставити наступний URL-адресу в <strong> URL-адресу сайту </ strong> для "
2199
  "згадки посилання."
2200
 
2201
+ #: ../admin/social_login.php:518
2202
  #, fuzzy
2203
  msgid "Microsoft Client Secret"
2204
  msgstr "Google+ ID клієнта"
2205
 
2206
+ #: ../admin/social_login.php:527
2207
  #, fuzzy, php-format
2208
  msgid ""
2209
  "Required for Live Social Login to work. Please follow the documentation at "
2213
  "Необхідно для входу через Google+. Будь ласка, подивіться документацію <a "
2214
  "href=\"%s\" target=\"_blank\"> тут </a> для отримання ID клієнта в Google+."
2215
 
2216
+ #: ../admin/social_login.php:537
2217
  #, fuzzy
2218
  msgid "Steam API Key"
2219
  msgstr "Twitter API ключ"
2220
 
2221
+ #: ../admin/social_login.php:546
2222
  #, fuzzy, php-format
2223
  msgid ""
2224
  "Required for Steam Social Login to work. Get it at <a href=\"%s\" target="
2227
  "Необхідно для входу через Twitter. Будь ласка, подивіться документацію <a "
2228
  "href=\"%s\" target=\"_blank\"> тут </a> для отримання ключа додатку Twitter."
2229
 
2230
+ #: ../admin/social_login.php:547
2231
  #, fuzzy
2232
  msgid "Save following <strong>domain</strong> to get the key"
2233
  msgstr ""
2234
  "Вставити наступний URL-адресу в <strong> URL веб-сайту </ strong> для згадки "
2235
  "посилання"
2236
 
2237
+ #: ../admin/social_login.php:556
2238
+ #, fuzzy
2239
+ msgid "Yahoo Client ID"
2240
+ msgstr "Google+ ID клієнта"
2241
+
2242
+ #: ../admin/social_login.php:565
2243
+ #, fuzzy, php-format
2244
+ msgid ""
2245
+ "Required for Yahoo Social Login to work. Please follow the documentation at "
2246
+ "<a href=\"%s\" target=\"_blank\">this link</a> to get Yahoo Client ID"
2247
+ msgstr ""
2248
+ "Необхідно для входу через Google+. Будь ласка, подивіться документацію <a "
2249
+ "href=\"%s\" target=\"_blank\"> тут </a> для отримання ID клієнта в Google+."
2250
+
2251
+ #: ../admin/social_login.php:576
2252
+ #, fuzzy
2253
+ msgid "Yahoo Client Secret"
2254
+ msgstr "Google+ ID клієнта"
2255
+
2256
+ #: ../admin/social_login.php:585
2257
+ #, fuzzy, php-format
2258
+ msgid ""
2259
+ "Required for Yahoo Social Login to work. Please follow the documentation at "
2260
+ "<a href=\"%s\" target=\"_blank\">this link</a> to get Yahoo Client Secret key"
2261
+ msgstr ""
2262
+ "Необхідно для входу через Google+. Будь ласка, подивіться документацію <a "
2263
+ "href=\"%s\" target=\"_blank\"> тут </a> для отримання ID клієнта в Google+."
2264
+
2265
+ #: ../admin/social_login.php:605
2266
  msgid "Social Login Options"
2267
  msgstr "Параметри входу через соцмережі"
2268
 
2269
+ #: ../admin/social_login.php:620
2270
  msgid "Text to display above the Social Login interface"
2271
  msgstr "Текст, що відображається над інтерфейсом входу через соцмережі"
2272
 
2273
+ #: ../admin/social_login.php:628
2274
  msgid "Trigger social login in the same browser tab"
2275
  msgstr ""
2276
 
2277
+ #: ../admin/social_login.php:638
2278
  msgid "Trigger social login in the same browser tab instead of a popup window"
2279
  msgstr ""
2280
 
2281
+ #: ../admin/social_login.php:645
2282
  #, fuzzy
2283
  msgid "Center align icons"
2284
  msgstr "Змінити порядок іконок"
2285
 
2286
+ #: ../admin/social_login.php:655
2287
  #, fuzzy
2288
  msgid "Center align social login icons"
2289
  msgstr "Параметри входу через соцмережі"
2290
 
2291
+ #: ../admin/social_login.php:662
2292
  msgid "Enable at login page"
2293
  msgstr "Включити сторінку входу"
2294
 
2295
+ #: ../admin/social_login.php:672
2296
  msgid ""
2297
  "Social Login interface will get enabled at the login page of your website"
2298
  msgstr "Інтерфейс входу через соцмережі буде активовано на сторінці входу"
2299
 
2300
+ #: ../admin/social_login.php:679
2301
  msgid "Enable at register page"
2302
  msgstr "Включити на сторінці реєстрації"
2303
 
2304
+ #: ../admin/social_login.php:689
2305
  msgid ""
2306
  "Social Login interface will get enabled at the registration page of your "
2307
  "website"
2308
  msgstr "Інтерфейс входу через соцмережі буде активовано на сторінці"
2309
 
2310
+ #: ../admin/social_login.php:696
2311
  msgid "Enable at comment form"
2312
  msgstr "Включити в формі коментування"
2313
 
2314
+ #: ../admin/social_login.php:706
2315
  msgid "Social Login interface will get enabled at your Wordpress Comment form"
2316
  msgstr ""
2317
  "Інтерфейс входу через соцмережі буде активовано у вашій формі коментування "
2318
  "Wordpress"
2319
 
2320
+ #: ../admin/social_login.php:720
2321
  msgid "Enable before WooCommerce Customer Login Form"
2322
  msgstr "Активувати перед формою входу покупця в WooCommerce"
2323
 
2324
+ #: ../admin/social_login.php:730
2325
  msgid ""
2326
  "Social Login Interface will get enabled before the customer login form at "
2327
  "WooCommerce My Account page"
2329
  "Інтерфейс входу через соцмережі буде активовано перед формою входу для "
2330
  "покупця на сторінці Мій Аккаунт в WooCommerce"
2331
 
2332
+ #: ../admin/social_login.php:737
2333
  #, fuzzy
2334
  msgid "Enable at WooCommerce Customer Login Form"
2335
  msgstr "Включити після форми входу клієнта WooCommerce"
2336
 
2337
+ #: ../admin/social_login.php:747
2338
  #, fuzzy
2339
  msgid ""
2340
  "Integrate Social Login Interface with the customer login form at WooCommerce "
2343
  "Інтерфейс входу через соцмережі буде активовано після форми входу для "
2344
  "покупця на сторінці Мій Аккаунт в WooCommerce"
2345
 
2346
+ #: ../admin/social_login.php:754
2347
  #, fuzzy
2348
  msgid "Enable at WooCommerce Customer Register Form"
2349
  msgstr "Включити після форми входу клієнта WooCommerce"
2350
 
2351
+ #: ../admin/social_login.php:764
2352
  #, fuzzy
2353
  msgid ""
2354
  "Integrate Social Login Interface with the customer register form at "
2357
  "Інтерфейс входу через соцмережі буде активовано після форми входу для "
2358
  "покупця на сторінці Мій Аккаунт в WooCommerce"
2359
 
2360
+ #: ../admin/social_login.php:771
2361
  msgid "Enable at WooCommerce checkout page"
2362
  msgstr "Включити на сторінці оформлення замовлення WooCommerce"
2363
 
2364
+ #: ../admin/social_login.php:781
2365
  msgid "Social Login Interface will get enabled at WooCommerce checkout page"
2366
  msgstr ""
2367
  "Інтерфейс входу через соцмережі буде активовано на сторінці оформлення "
2368
  "замовлення в WooCommerce"
2369
 
2370
+ #: ../admin/social_login.php:791
2371
  msgid "Auto-approve comments made by Social Login users"
2372
  msgstr ""
2373
  "Автоматичне схвалення коментарів для користувачів, які увійшли через "
2374
  "соцмережі"
2375
 
2376
+ #: ../admin/social_login.php:801
2377
  msgid ""
2378
  "If this option is enabled, and WordPress comment is made by Social Login "
2379
  "user, comment will get approved immediately without keeping in moderation."
2382
  "користувачем, який увійшов через соцмережі, то коментар буде опублікований "
2383
  "відразу без модерації."
2384
 
2385
+ #: ../admin/social_login.php:802
2386
  msgid "Note: This is not related to Facebook comments"
2387
  msgstr "Примітка: Це не пов'язано з коментарями від Facebook"
2388
 
2389
+ #: ../admin/social_login.php:811
2390
  msgid "Enable social avatar"
2391
  msgstr "Включення соціальних аватар"
2392
 
2393
+ #: ../admin/social_login.php:821
2394
  msgid ""
2395
  "Social profile pictures of the logged in user will be displayed as profile "
2396
  "avatar"
2398
  "Зображення користувача в соцмережах буде використовуватися як зображення "
2399
  "профілю на сайті"
2400
 
2401
+ #: ../admin/social_login.php:830
2402
  msgid "Avatar quality"
2403
  msgstr "Якість аватарки"
2404
 
2405
+ #: ../admin/social_login.php:833
2406
  msgid "Average"
2407
  msgstr "Середнє"
2408
 
2409
+ #: ../admin/social_login.php:834
2410
  msgid "Best"
2411
  msgstr "Кращий"
2412
 
2413
+ #: ../admin/social_login.php:841
2414
  msgid "Choose avatar quality"
2415
  msgstr "Виберіть якість аватара"
2416
 
2417
+ #: ../admin/social_login.php:849
2418
  msgid ""
2419
  "Show option for users to update social avatar at BuddyPress profile page"
2420
  msgstr ""
2421
  "Показати варіант для користувачів для оновлення соціального аватара на "
2422
  "сторінці профілю BuddyPress"
2423
 
2424
+ #: ../admin/social_login.php:859
2425
  msgid ""
2426
  "If enabled, users would be able to update their social avatar from \"Profile "
2427
  "photo\" section in BuddyPress profile at front-end"
2429
  "Якщо цей параметр включений, користувачі зможуть оновити свій соціальний "
2430
  "аватар з розділу «Профіль» фото в профілі BuddyPress"
2431
 
2432
+ #: ../admin/social_login.php:879
2433
  msgid ""
2434
  "If enabled and Social ID provider does not provide user's email address on "
2435
  "login, user will be asked to provide his/her email address. Otherwise, a "
2439
  "входу, користувачеві буде потрібно ввести свою пошту. В іншому ж випадку, "
2440
  "пошта буде створена за зразком."
2441
 
2442
+ #: ../admin/social_login.php:887
2443
  msgid "Send post-registration email to user to set account password"
2444
  msgstr ""
2445
  "Відправити після реєстрації електронною поштою користувачу лист щоб "
2446
  "встановити пароль облікового запису"
2447
 
2448
+ #: ../admin/social_login.php:897
2449
  msgid ""
2450
  "If enabled, an email will be sent to user after registration through Social "
2451
  "Login, regarding his/her login credentials (username-password to be able to "
2455
  "буде відправлено лист з ім'ям і пароль щоб була можливість зайти через "
2456
  "стандартну форму авторизації"
2457
 
2458
+ #: ../admin/social_login.php:904
2459
  msgid "Send new user registration notification email to admin"
2460
  msgstr ""
2461
  "Надіслати повідомлення про реєстрацію нового користувача по електронній "
2462
  "пошті адміністратору"
2463
 
2464
+ #: ../admin/social_login.php:914
2465
  msgid ""
2466
  "If enabled, an email will be sent to admin after new user registers through "
2467
  "Social Login, notifying admin about the new user registration"
2469
  "Якщо опція включена, на пошту адміністратора прийде повідомлення про "
2470
  "реєстрацію нового користувача через соцмережі."
2471
 
2472
+ #: ../admin/social_login.php:921
2473
  msgid "Login redirection"
2474
  msgstr "Перенаправлення входу"
2475
 
2476
+ #: ../admin/social_login.php:925
2477
  msgid "Same page where user logged in"
2478
  msgstr "Та ж сторінка, на якій користувач зробив вхід"
2479
 
2480
+ #: ../admin/social_login.php:929 ../admin/social_login.php:958
2481
  msgid "Account dashboard"
2482
  msgstr "Сторінка управління аккаунтом"
2483
 
2484
+ #: ../admin/social_login.php:932 ../admin/social_login.php:961
2485
  msgid "BuddyPress profile page"
2486
  msgstr "Сторінка профілю BuddyPress"
2487
 
2488
+ #: ../admin/social_login.php:935 ../admin/social_login.php:964
2489
  msgid "Custom Url"
2490
  msgstr "Користувацьке посилання"
2491
 
2492
+ #: ../admin/social_login.php:943
2493
  msgid "User will be redirected to the selected page after Social Login"
2494
  msgstr ""
2495
  "Користувач буде перенаправлений на обрану сторінку після входу через "
2496
  "соцмережі"
2497
 
2498
+ #: ../admin/social_login.php:950
2499
  msgid "Registration redirection"
2500
  msgstr "Перенаправлення реєстрації"
2501
 
2502
+ #: ../admin/social_login.php:954
2503
  msgid "Same page from where user registered"
2504
  msgstr "URL цільової сторінки, на якій зареєстрований користувач"
2505
 
2506
+ #: ../admin/social_login.php:972
2507
  msgid ""
2508
  "User will be redirected to the selected page after registration (first "
2509
  "Social Login) through Social Login"
2511
  "Користувач буде перенаправлений на обрану сторінку після реєстрації (перший "
2512
  "вхід чере соцмережі) через соцмережі"
2513
 
2514
+ #: ../admin/social_login.php:981
2515
  #, fuzzy
2516
  msgid "Social Account Linking Options"
2517
  msgstr "Посилання на соціальний аккаунт"
2518
 
2519
+ #: ../admin/social_login.php:996
2520
  #, fuzzy
2521
  msgid "Text to display above the Social Account Linking interface"
2522
  msgstr "Текст, що відображається над інтерфейсом входу через соцмережі"
2523
 
2524
+ #: ../admin/social_login.php:1003
2525
  msgid ""
2526
  "Link social account to already existing account, if email address matches"
2527
  msgstr ""
2528
  "Пов'язує аккаунт соцмереж з існуючим обліковим записом якщо пошта збігається."
2529
 
2530
+ #: ../admin/social_login.php:1013
2531
  #, fuzzy
2532
  msgid ""
2533
  "If email address of the user's Social Account matches with an already "
2540
  "існуючим обліковим записом. Користувач зможе управляти цим на сторінці "
2541
  "профілю."
2542
 
2543
+ #: ../admin/social_login.php:1021
2544
  msgid "Enable social account linking at BuddyPress profile page"
2545
  msgstr "Інтегрує соціальний аккаунт на сторінці профілю BuddyPress"
2546
 
2547
+ #: ../admin/social_login.php:1031
2548
  msgid ""
2549
  "Enable this option to show social account linking interface at BuddyPress "
2550
  "profile page"
2552
  "Активуйте цю функцію щоб інтегрувати соціальний аккаунт на сторінці профілю "
2553
  "BuddyPress"
2554
 
2555
+ #: ../admin/social_login.php:1042
2556
  msgid "Email popup options"
2557
  msgstr "Параметри спливаючій електронної пошти"
2558
 
2559
+ #: ../admin/social_login.php:1047
2560
  msgid "Text on 'Email required' popup"
2561
  msgstr "Текст на спливаючому вікні «Електронна пошта потрібна»"
2562
 
2563
+ #: ../admin/social_login.php:1057
2564
  msgid ""
2565
  "This text will be displayed on email required popup. Leave empty if not "
2566
  "required."
2568
  "Цей текст буде відображатися на спливаючому вікні, що вимагає пошту. Залиште "
2569
  "поле порожнім якщо не потрібно."
2570
 
2571
+ #: ../admin/social_login.php:1065
2572
  msgid "Error message for 'Email required' popup"
2573
  msgstr "Повідомлення помилки у спливаючому вікні \"Потрібно пошта \""
2574
 
2575
+ #: ../admin/social_login.php:1075
2576
  msgid ""
2577
  "This message will be displayed to user if it provides invalid or already "
2578
  "registered email"
2580
  "Це повідомлення буде показано користувачеві, якщо він надав невірну або "
2581
  "раніше запроваджену пошту"
2582
 
2583
+ #: ../admin/social_login.php:1083
2584
  msgid "Email popup height"
2585
  msgstr "Висота спливаючого вікна"
2586
 
2587
+ #: ../admin/social_login.php:1093
2588
  msgid ""
2589
  "If you are seeing vertical scrollbar in the \"Email required\" popup, you "
2590
  "can increase the height of popup by specifying in this option. Leave empty "
2594
  "то ви можете збільшити висотку спливаючого вікна. Залиште порожнім для "
2595
  "базового значення."
2596
 
2597
+ #: ../admin/social_login.php:1100
2598
  msgid "Enable email verification"
2599
  msgstr "Включити перевірку електронної пошти"
2600
 
2601
+ #: ../admin/social_login.php:1110
2602
  msgid ""
2603
  "If enabled, email provided by the user will be verified by sending a "
2604
  "confirmation link to that email. User would not be able to login without "
2607
  "Якщо опція включена, то на пошту, яку вказав користувач, прийде лист з "
2608
  "підтвердженням. Користувач не зможе зайти без підтвердження своєї пошти."
2609
 
2610
+ #: ../admin/social_login.php:1130
2611
  #, fuzzy
2612
  msgid "Enable GDPR opt-in"
2613
  msgstr "Активувати коментування через Disqus"
2614
 
2615
+ #: ../admin/social_login.php:1140
2616
  msgid ""
2617
  "Enable it to show GDPR opt-in for social login and social account linking"
2618
  msgstr ""
2619
 
2620
+ #: ../admin/social_login.php:1148
2621
  #, fuzzy
2622
  msgid "Placement of GDPR opt-in"
2623
  msgstr "Активувати коментування через Disqus"
2624
 
2625
+ #: ../admin/social_login.php:1152
2626
  #, fuzzy
2627
  msgid "Above Social Login icons"
2628
  msgstr "Параметри входу через соцмережі"
2629
 
2630
+ #: ../admin/social_login.php:1154
2631
  #, fuzzy
2632
  msgid "Below Social Login icons"
2633
  msgstr "Параметри входу через соцмережі"
2634
 
2635
+ #: ../admin/social_login.php:1160
2636
  #, fuzzy
2637
  msgid "Placement of GDPR opt-in above or below the social login icons"
2638
  msgstr "Текст, що відображається над інтерфейсом входу через соцмережі"
2639
 
2640
+ #: ../admin/social_login.php:1167
2641
  msgid "Opt-in text"
2642
  msgstr ""
2643
 
2644
+ #: ../admin/social_login.php:1177
2645
  #, fuzzy
2646
  msgid "Text for the GDPR opt-in"
2647
  msgstr "Активувати коментування через Disqus"
2648
 
2649
+ #: ../admin/social_login.php:1184
2650
  msgid "Text to link to Terms-Conditions page"
2651
  msgstr ""
2652
 
2653
+ #: ../admin/social_login.php:1194
2654
  msgid "Word(s) in the opt-in text to be linked to terms-conditions page"
2655
  msgstr ""
2656
 
2657
+ #: ../admin/social_login.php:1201
2658
  msgid "Terms-Conditions Url"
2659
  msgstr ""
2660
 
2661
+ #: ../admin/social_login.php:1211
2662
  #, fuzzy
2663
  msgid "Url of the terms-conditions page of your website"
2664
  msgstr "URL-адреса домашньої сторінки вашого веб-сайту"
2665
 
2666
+ #: ../admin/social_login.php:1218
2667
  msgid "Text to link to Privacy Policy page"
2668
  msgstr ""
2669
 
2670
+ #: ../admin/social_login.php:1228
2671
  msgid "Word(s) in the opt-in text to be linked to privacy policy page"
2672
  msgstr ""
2673
 
2674
+ #: ../admin/social_login.php:1235
2675
  msgid "Privacy Policy Url"
2676
  msgstr ""
2677
 
2678
+ #: ../admin/social_login.php:1245
2679
  #, fuzzy
2680
  msgid "Url of the privacy policy page of your website"
2681
  msgstr "URL-адреса домашньої сторінки вашого веб-сайту"
2682
 
2683
+ #: ../admin/social_login.php:1296 ../inc/widget.php:260 ../inc/widget.php:438
2684
  #: ../inc/widget.php:602 ../inc/widget.php:750
2685
  msgid "Select"
2686
  msgstr "Вибір"
2687
 
2688
+ #: ../admin/social_login.php:1327
2689
  msgid "Social Login Shortcode & Widget"
2690
  msgstr "Шорткод і віджет для входу через соцмережі"
2691
 
2692
+ #: ../admin/social_login.php:1328
2693
  msgid "Social Linking Shortcode"
2694
  msgstr "Шорткод соціальних посилань"
2695
 
2696
+ #: ../admin/social_login.php:1343
2697
  #, fuzzy
2698
  msgid "Why is social login not working?"
2699
  msgstr "Чому Facebook Логін не працює?"
2700
 
2701
+ #: ../admin/social_login.php:1344
2702
  msgid ""
2703
  "Make sure that App ID and Secret (Client ID and Secret) keys you have saved, "
2704
  "belong to the same app"
2705
  msgstr ""
2706
 
2707
+ #: ../admin/social_login.php:1346
2708
  msgid "Social Login not working with Varnish enabled"
2709
  msgstr ""
2710
 
2711
+ #: ../admin/social_login.php:1347
2712
  msgid ""
2713
  "Why the user is not appearing logged in even after Social Login until the "
2714
  "webpage is refreshed manually?"
2927
  msgid "Providers not selected"
2928
  msgstr "Сервіси не вибрані"
2929
 
2930
+ #: ../inc/social_login.php:792
2931
  msgid "Email"
2932
  msgstr "Email"
2933
 
2934
+ #: ../inc/social_login.php:793
2935
  msgid "Confirm email"
2936
  msgstr "Підтвердити e-mail"
2937
 
2938
+ #: ../inc/social_login.php:795
2939
  msgid "Save"
2940
  msgstr "Зберегти"
2941
 
2942
+ #: ../inc/social_login.php:796
2943
  msgid "Cancel"
2944
  msgstr "Скасувати"
2945
 
2946
+ #: ../inc/social_login.php:870
2947
  msgid "Email Verification"
2948
  msgstr "Підтвердження адреси електронної пошти"
2949
 
2950
+ #: ../inc/social_login.php:872
2951
  msgid ""
2952
  "Please click on the following link or paste it in browser to verify your "
2953
  "email"
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: 2020-08-20 08:12+0530\n"
5
- "PO-Revision-Date: 2020-08-20 08:12+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:523
25
  msgid "Problem fetching access token: "
26
  msgstr "获取access token的问题:"
27
 
28
- #: super_socializer.php:527 super_socializer.php:541
29
  msgid "Facebook SDK returned an error: "
30
  msgstr "facebook sdk 返回了一个错误:"
31
 
32
- #: super_socializer.php:537
33
  msgid "Graph returned an error: "
34
  msgstr ""
35
 
36
- #: super_socializer.php:726
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:754
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:757
52
  #, php-format
53
  msgid ""
54
  "Enter exactly the following url in <strong>Callback URLs</strong> option in "
@@ -57,112 +57,112 @@ msgstr ""
57
  "在 twitter 应用中 <strong> 回调 url </strong> 选项中输入以下 url (请参阅步骤 "
58
  "3 %s)"
59
 
60
- #: super_socializer.php:760
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:942 helper.php:961
68
  msgid "Please verify your email address to login."
69
  msgstr "请验证您的电子邮件地址以便登录。"
70
 
71
- #: super_socializer.php:942
72
  msgid "Your email has been verified. Now you can login to your account"
73
  msgstr "您的电子邮件已验证。现在你可以登录到您的帐户"
74
 
75
- #: super_socializer.php:946
76
  msgid "Notification"
77
  msgstr "通知"
78
 
79
- #: super_socializer.php:964 admin/social_login.php:779
80
  msgid "Email required"
81
  msgstr "邮件地址(比选)"
82
 
83
- #: super_socializer.php:967
84
  msgid "Please check your email inbox to complete the registration."
85
  msgstr "请检查您的电子邮件收件箱以完成注册。"
86
 
87
- #: super_socializer.php:1036
88
  msgid "Leave a reply"
89
  msgstr "回复"
90
 
91
- #: super_socializer.php:1052 inc/social_sharing.php:241
92
  msgid "Shares"
93
  msgstr "分享"
94
 
95
- #: super_socializer.php:1052 inc/social_sharing.php:241
96
  msgid "Share"
97
  msgstr "分享"
98
 
99
- #: super_socializer.php:1052
100
  msgid "Link copied."
101
  msgstr "链接已复制。"
102
 
103
- #: super_socializer.php:1298
104
  msgid "Super Socializer - General Options"
105
  msgstr "Super Socializer-常规选项"
106
 
107
- #: super_socializer.php:1298 admin/general_options.php:15
108
  #: admin/social_commenting.php:47
109
  msgid "General Options"
110
  msgstr "常规选项"
111
 
112
- #: super_socializer.php:1366 helper.php:883
113
  msgid "Social Avatar"
114
  msgstr "社会化头像"
115
 
116
- #: super_socializer.php:1369
117
  msgid "Small Avatar Url"
118
  msgstr "小头像 Url"
119
 
120
- #: super_socializer.php:1373
121
  msgid "Large Avatar Url"
122
  msgstr "大头像 Url"
123
 
124
- #: super_socializer.php:1377 helper.php:886
125
  msgid ""
126
  "Do not fetch and update social avatar from my profile, next time I Social "
127
  "Login"
128
  msgstr "不从我的个人资料里获取及更新社会化头像,下次社会化登录"
129
 
130
- #: super_socializer.php:1381 helper.php:887
131
  msgid "Update social avatar, next time I Social Login"
132
  msgstr "更新社会化头像,下次社会化登录"
133
 
134
- #: super_socializer.php:1458
135
  msgid "Login with your Social ID"
136
  msgstr "使用您的社交 ID登录"
137
 
138
- #: super_socializer.php:1459
139
  msgid "Email you entered is already registered or invalid"
140
  msgstr "您输入的电子邮件已经注册或无效"
141
 
142
- #: super_socializer.php:1464
143
  msgid "Please enter a valid email address. You might be required to verify it"
144
  msgstr "请输入一个有效的电子邮件地址。您可能需要验证它"
145
 
146
- #: super_socializer.php:1468 super_socializer.php:2166
147
  msgid "Link your social account to login to your account at this website"
148
  msgstr "链接你的社会化媒体帐户登录您本站账号"
149
 
150
- #: super_socializer.php:1708
151
  msgid "Thanks for installing Super Socializer plugin"
152
  msgstr ""
153
 
154
- #: super_socializer.php:1710
155
  msgid "Configure the Plugin"
156
  msgstr ""
157
 
158
- #: super_socializer.php:1721
159
  #, fuzzy
160
  msgid ""
161
  "Update \"Facebook Comments Moderation\" add-on for compatibility with "
162
  "current version of Super Socializer"
163
  msgstr "更新 \"facebook 评论审核\" 加载项与当前版本的Super Socialzer"
164
 
165
- #: super_socializer.php:1730
166
  #, fuzzy
167
  msgid ""
168
  "Update \"Facebook Comments Notifier\" add-on for compatibility with current "
@@ -170,14 +170,14 @@ msgid ""
170
  msgstr ""
171
  "更新 \"facebook 评论通知程序\" 加载项, 以与当前版本的超级社交提供兼容性"
172
 
173
- #: super_socializer.php:1739
174
  #, fuzzy
175
  msgid ""
176
  "Update \"Social Login Buttons\" add-on for compatibility with current "
177
  "version of Super Socializer"
178
  msgstr "更新 \"社交登录按钮\" 加载项与当前版本的超级社交器兼容"
179
 
180
- #: super_socializer.php:1748
181
  #, fuzzy
182
  msgid ""
183
  "Update \"Social Share myCRED Integration\" add-on for maximum compatibility "
@@ -186,7 +186,7 @@ msgstr ""
186
  "更新 \"社交分享 mycred 集成\" 加载项, 以最大限度地与当前版本的超级社交提供兼"
187
  "容"
188
 
189
- #: super_socializer.php:1757
190
  #, fuzzy
191
  msgid ""
192
  "Update \"Social Login myCRED Integration\" add-on for maximum compatibility "
@@ -194,7 +194,7 @@ msgid ""
194
  msgstr ""
195
  "更新 \"社交登录 mycred 集成\" 加载项, 以最大限度地兼容当前版本的超级社交"
196
 
197
- #: super_socializer.php:1768
198
  #, php-format
199
  msgid ""
200
  "To continue using Steam login save Steam API key <a href=\"%s\">here</a>"
@@ -202,7 +202,7 @@ msgstr ""
202
  "要继续使用 steam 登录, 请保存 steam api 密钥 < a href = \" %s\" >, 请点击此"
203
  "处 </a>"
204
 
205
- #: super_socializer.php:1777
206
  #, php-format
207
  msgid ""
208
  "To continue using Instagram login create a new Instagram App as described <a "
@@ -210,7 +210,7 @@ msgid ""
210
  "Instagram App Secret <a href=\"%s\">here</a>"
211
  msgstr ""
212
 
213
- #: super_socializer.php:1786 super_socializer.php:1795
214
  #, php-format
215
  msgid ""
216
  "To continue using bitly url shortener, login to your bit.ly account and "
@@ -219,13 +219,13 @@ msgid ""
219
  "\">here</a>. More details at the <a href=\"%s\" target=\"_blank\">link</a>"
220
  msgstr ""
221
 
222
- #: super_socializer.php:1811
223
  #, php-format
224
  msgid ""
225
  "To continue using Social Login, save the secret keys <a href=\"%s\">here</a>"
226
  msgstr "若要继续使用社交登录, 请在此处保存密钥 < ref = \" %s\" > </a>"
227
 
228
- #: super_socializer.php:1835
229
  #, php-format
230
  msgid ""
231
  "Add %s in \"Valid OAuth redirect URIs\" option in your Facebook app settings "
@@ -236,14 +236,14 @@ msgstr ""
236
  "facebook 登录正常工作。有关更多详细信息, 请在此处检查步骤 9 < ref = \" %s\" "
237
  "target = \"_ black\" > </a>"
238
 
239
- #: super_socializer.php:1835 super_socializer.php:1860
240
- #: super_socializer.php:1885 super_socializer.php:1910
241
- #: super_socializer.php:1943 super_socializer.php:1971
242
- #: super_socializer.php:1998
243
  msgid "Okay"
244
  msgstr "好的"
245
 
246
- #: super_socializer.php:1860
247
  #, php-format
248
  msgid ""
249
  "Add %s in \"Callback URLs\" option in your Twitter app settings for Twitter "
@@ -254,7 +254,7 @@ msgstr ""
254
  "关更多详细信息, 请在此处检查步骤 4 < ref = \" %s\" target = \"_ black\" > </"
255
  "a>"
256
 
257
- #: super_socializer.php:1885
258
  #, php-format
259
  msgid ""
260
  "Add %s in \"Authorized Redirect URLs\" option in your Linkedin app settings "
@@ -265,7 +265,7 @@ msgstr ""
265
  "正常工作。有关更多详细信息, 请在此处检查步骤 4 < ref = \" %s\" target = \"_ "
266
  "black\" > </a>"
267
 
268
- #: super_socializer.php:1910
269
  #, php-format
270
  msgid ""
271
  "Add %s in \"Authorized redirect URIs\" option in your Google client settings "
@@ -276,13 +276,13 @@ msgstr ""
276
  "常工作。有关更多详细信息, 请在此处检查步骤 11 < ref = \" %s\" target = \"_ "
277
  "black\" > </a>"
278
 
279
- #: super_socializer.php:1921
280
  #, php-format
281
  msgid ""
282
  "Save the url of privacy policy page of your website <a href=\"%s\">here</a>"
283
  msgstr "保存您的网站 < reof = \" %s\" 的隐私政策页面的网址 </a>"
284
 
285
- #: super_socializer.php:1943
286
  #, php-format
287
  msgid ""
288
  "This plugin is GDPR compliant. You need to update the privacy policy of your "
@@ -292,7 +292,7 @@ msgstr ""
292
  "这个插件是符合GDPR的。您需要更新网站有关此插件保存的个人数据的隐私政策。如 "
293
  "<a href=\"%s\" target=\"_blank\">这里</a>所述"
294
 
295
- #: super_socializer.php:1971
296
  #, php-format
297
  msgid ""
298
  "Now plugin supports a new service Twitcount.com to show Twitter shares. To "
@@ -301,7 +301,7 @@ msgid ""
301
  "your website %s with them. No need to copy-paste any code from their website."
302
  msgstr ""
303
 
304
- #: super_socializer.php:1998
305
  #, php-format
306
  msgid ""
307
  "Replace url saved in \"Callback URLs\" option in your Twitter app settings "
@@ -312,7 +312,7 @@ msgstr ""
312
  "工作。有关更多详细信息, 请在此处检查步骤 4 < ref = \" %s\" target = \"_ black"
313
  "\" > </a>"
314
 
315
- #: super_socializer.php:2023
316
  #, fuzzy, php-format
317
  msgid ""
318
  "If you cannot get Linkedin login to work after updating the plugin, replace "
@@ -323,11 +323,11 @@ msgstr ""
323
  "正常工作。有关更多详细信息, 请在此处检查步骤 4 < ref = \" %s\" target = \"_ "
324
  "black\" > </a>"
325
 
326
- #: super_socializer.php:2023 super_socializer.php:2050
327
  msgid "Dismiss"
328
  msgstr ""
329
 
330
- #: super_socializer.php:2049
331
  #, php-format
332
  msgid ""
333
  "Save Facebook App ID and Secret keys in \"Standard Interface\" and/or "
@@ -336,7 +336,7 @@ msgid ""
336
  "that, clear share counts cache from \"Miscellaneous\" section"
337
  msgstr ""
338
 
339
- #: super_socializer.php:2242
340
  msgid ""
341
  "Your browser is blocking some features of this website. Please follow the "
342
  "instructions at {support_url} to unblock these."
@@ -438,7 +438,7 @@ msgid "Large Avatar"
438
  msgstr "大头像"
439
 
440
  #: helper.php:898 admin/general_options.php:89 admin/social_sharing.php:1944
441
- #: admin/social_commenting.php:400 admin/social_login.php:1269
442
  #: admin/like_buttons.php:780
443
  msgid "Save Changes"
444
  msgstr "保存更改"
@@ -462,7 +462,7 @@ msgstr "发生了一些不好的事情"
462
  #: admin/general_options.php:7 admin/general_options.php:93
463
  #: admin/social_sharing.php:5 admin/social_sharing.php:1948
464
  #: admin/social_commenting.php:5 admin/social_commenting.php:404
465
- #: admin/social_login.php:5 admin/social_login.php:1273
466
  #: admin/like_buttons.php:6 admin/like_buttons.php:784
467
  #, fuzzy, php-format
468
  msgid ""
@@ -509,13 +509,13 @@ msgid "You can specify any additional CSS rules (without &lt;style&gt; tag)"
509
  msgstr "您可以指定任何额外的 CSS 规则(无需 &lt;style&gt; tag)"
510
 
511
  #: admin/general_options.php:103 admin/social_sharing.php:1954
512
- #: admin/social_commenting.php:410 admin/social_login.php:1279
513
  #: admin/like_buttons.php:790
514
  msgid "Instagram Shoutout"
515
  msgstr ""
516
 
517
  #: admin/general_options.php:105 admin/social_sharing.php:1956
518
- #: admin/social_commenting.php:412 admin/social_login.php:1281
519
  #: admin/like_buttons.php:792
520
  #, fuzzy
521
  msgid ""
@@ -656,7 +656,7 @@ msgstr "第三方集成"
656
 
657
  #: admin/social_sharing.php:67 admin/social_sharing.php:1869
658
  #: admin/social_sharing.php:1871 admin/social_login.php:45
659
- #: admin/social_login.php:1235 admin/like_buttons.php:50
660
  #: admin/like_buttons.php:751
661
  msgid "Shortcode & Widget"
662
  msgstr "简码&小工具"
@@ -667,7 +667,7 @@ msgstr "排错"
667
 
668
  #: admin/social_sharing.php:69 admin/social_sharing.php:1902
669
  #: admin/social_commenting.php:40 admin/social_commenting.php:384
670
- #: admin/social_login.php:46 admin/social_login.php:1249
671
  #: admin/like_buttons.php:51 admin/like_buttons.php:764
672
  msgid "FAQ"
673
  msgstr "常见问题解答"
@@ -893,8 +893,8 @@ msgstr "自定义 URL"
893
  msgid "Url to share"
894
  msgstr "要分享的网址"
895
 
896
- #: admin/social_sharing.php:725 admin/social_login.php:520
897
- #: admin/social_login.php:896 admin/like_buttons.php:105 inc/widget.php:945
898
  msgid "Title"
899
  msgstr "标题"
900
 
@@ -976,7 +976,7 @@ msgid "Placement"
976
  msgstr "放置"
977
 
978
  #: admin/social_sharing.php:957 admin/social_sharing.php:1383
979
- #: admin/social_login.php:837 admin/social_login.php:866
980
  #: admin/like_buttons.php:218 admin/like_buttons.php:494
981
  msgid "Homepage"
982
  msgstr "主页"
@@ -1222,7 +1222,7 @@ msgstr ""
1222
  msgid "Required only to track Facebook share count"
1223
  msgstr ""
1224
 
1225
- #: admin/social_sharing.php:1584 admin/social_login.php:150
1226
  msgid "Facebook App ID"
1227
  msgstr "Facebook 应用 ID"
1228
 
@@ -1235,7 +1235,7 @@ msgstr ""
1235
  "需要Facebook社交登录。请按照在<a href=“%s” target=“_blank”>的链接 </a>得到"
1236
  "Facebook的应用程序ID"
1237
 
1238
- #: admin/social_sharing.php:1601 admin/social_login.php:171
1239
  msgid "Facebook App Secret"
1240
  msgstr "FacebookAPP密码"
1241
 
@@ -1416,7 +1416,7 @@ msgstr ""
1416
  "题的URL(Facebook分享无法正常工作)。 单击“获取新的Scrape信息”按钮。"
1417
 
1418
  #: admin/social_sharing.php:1904 admin/social_commenting.php:386
1419
- #: admin/social_login.php:1251
1420
  msgid ""
1421
  "<strong>Note:</strong> Plugin will not work on local server. You should have "
1422
  "an online website for the plugin to function properly."
@@ -1476,7 +1476,7 @@ msgid ""
1476
  msgstr "如何恢复在将我的网站转移到SSL/https之后丢失的社交分享数?"
1477
 
1478
  #: admin/social_sharing.php:1919 admin/social_commenting.php:389
1479
- #: admin/social_login.php:1258
1480
  msgid "Why is my browser blocking some features of the plugin?"
1481
  msgstr "为什么我的浏览器会阻止插件的某些功能?"
1482
 
@@ -1769,11 +1769,11 @@ msgstr "基本配置"
1769
  msgid "Advanced Configuration"
1770
  msgstr "高级配置"
1771
 
1772
- #: admin/social_login.php:41 admin/social_login.php:1035
1773
  msgid "GDPR"
1774
  msgstr "GDPR"
1775
 
1776
- #: admin/social_login.php:43 admin/social_login.php:1186
1777
  msgid "XProfile Integration"
1778
  msgstr "xprofile 集成"
1779
 
@@ -1839,14 +1839,22 @@ msgid "Line"
1839
  msgstr ""
1840
 
1841
  #: admin/social_login.php:135
 
 
 
 
1842
  msgid "Windows Live"
1843
  msgstr ""
1844
 
1845
  #: admin/social_login.php:143
 
 
 
 
1846
  msgid "Select Social ID provider to enable in Social Login"
1847
  msgstr "选择社会化ID提供商以启用社会化登录"
1848
 
1849
- #: admin/social_login.php:160
1850
  #, php-format
1851
  msgid ""
1852
  "Required for Facebook Social Login to work. Please follow the documentation "
@@ -1855,13 +1863,13 @@ msgstr ""
1855
  "需要Facebook社交登录。请按照在<a href=“%s” target=“_blank”>的链接 </a>得到"
1856
  "Facebook的应用程序ID"
1857
 
1858
- #: admin/social_login.php:162 admin/social_login.php:183
1859
  #, fuzzy
1860
  msgid ""
1861
  "Paste following url in <strong>Site URL</strong> option mentioned at the link"
1862
  msgstr "在提到的链接选项中粘贴以下url<strong>网站URL</strong>"
1863
 
1864
- #: admin/social_login.php:181
1865
  #, php-format
1866
  msgid ""
1867
  "Required for Facebook Social Login to work. Please follow the documentation "
@@ -1870,11 +1878,11 @@ msgstr ""
1870
  "facebook 社交登录工作所需。请按照文档在 < href = \" %s\" 目标 = \"_ black\" "
1871
  "> 此链接 </a>, 以获得 facebook 应用程序机密"
1872
 
1873
- #: admin/social_login.php:192
1874
  msgid "Twitter API Key"
1875
  msgstr "Twitter API密钥"
1876
 
1877
- #: admin/social_login.php:202
1878
  #, php-format
1879
  msgid ""
1880
  "Required for Twitter Social Login to work. Please follow the documentation "
@@ -1883,25 +1891,26 @@ msgstr ""
1883
  "需要Twitter社交登录。请按照在<a href=“%s” target=“_blank”>的链接</a>得到"
1884
  "Twitter的API密钥"
1885
 
1886
- #: admin/social_login.php:204 admin/social_login.php:229
1887
  #, fuzzy
1888
  msgid ""
1889
  "Paste following url in <strong>Website</strong> option mentioned at the link"
1890
  msgstr "粘贴以下网址 <strong> 网站 </strong> 选项在提到的链接"
1891
 
1892
- #: admin/social_login.php:208 admin/social_login.php:233
1893
- #: admin/social_login.php:421 admin/social_login.php:441
 
1894
  #, fuzzy
1895
  msgid ""
1896
  "Paste following url in <strong>Callback URL</strong> option mentioned at the "
1897
  "link"
1898
  msgstr "粘贴以下网址 <strong> 回拨 url </strong> 选项在提到的链接"
1899
 
1900
- #: admin/social_login.php:217
1901
  msgid "Twitter API Secret"
1902
  msgstr "Twitter API Secret"
1903
 
1904
- #: admin/social_login.php:227
1905
  #, php-format
1906
  msgid ""
1907
  "Required for Twitter Social Login to work. Please follow the documentation "
@@ -1910,11 +1919,11 @@ msgstr ""
1910
  "需要Twitter社交登录。请按照在<a href=“%s” target=“_blank”>的链接</a>得到"
1911
  "Twitter的API密钥"
1912
 
1913
- #: admin/social_login.php:242
1914
  msgid "LinkedIn Client ID"
1915
  msgstr ""
1916
 
1917
- #: admin/social_login.php:252
1918
  #, php-format
1919
  msgid ""
1920
  "Required for LinkedIn Social Login to work. Please follow the documentation "
@@ -1923,18 +1932,18 @@ msgstr ""
1923
  "链接登录需要工作。请按照 < href = \" %s\" target = \"_ black\" > 此链接 </a> "
1924
  "的文档获取 linkedin 客户端 id"
1925
 
1926
- #: admin/social_login.php:254 admin/social_login.php:275
1927
  #, fuzzy
1928
  msgid ""
1929
  "Paste following url in <strong>Redirect URLs</strong> option mentioned at "
1930
  "the link"
1931
  msgstr "粘贴以下 url 在 <strong> 重定向 uri </strong> 选项中提到的链接"
1932
 
1933
- #: admin/social_login.php:263
1934
  msgid "LinkedIn Client Secret"
1935
  msgstr ""
1936
 
1937
- #: admin/social_login.php:273
1938
  #, php-format
1939
  msgid ""
1940
  "Required for LinkedIn Social Login to work. Please follow the documentation "
@@ -1944,11 +1953,11 @@ msgstr ""
1944
  "链接登录需要工作。请按照 \"href =\" %s \"target =\" _ black \"> 此链接中的文"
1945
  "档进行操作, 以获取 linkedin 客户端机密"
1946
 
1947
- #: admin/social_login.php:284
1948
  msgid "Google Client ID"
1949
  msgstr ""
1950
 
1951
- #: admin/social_login.php:294
1952
  #, fuzzy, php-format
1953
  msgid ""
1954
  "Required for Google Social Login to work. Please follow the documentation at "
@@ -1957,18 +1966,18 @@ msgstr ""
1957
  "需要GOOGLEPLUS社会化登录工作。请按照文件在<a href=“%s” target=“_blank”>这个链"
1958
  "接</a>得到GOOGLEPLUS客户端ID"
1959
 
1960
- #: admin/social_login.php:296 admin/social_login.php:317
1961
  #, fuzzy
1962
  msgid ""
1963
  "Paste following url in <strong>AUTHORIZED REDIRECT URI</strong> option "
1964
  "mentioned at the link"
1965
  msgstr "粘贴以下 url 在 <strong> 授权的 re正确性 uri </strong> 选项在上述链接"
1966
 
1967
- #: admin/social_login.php:305
1968
  msgid "Google Client Secret"
1969
  msgstr ""
1970
 
1971
- #: admin/social_login.php:315
1972
  #, fuzzy, php-format
1973
  msgid ""
1974
  "Required for Google Social Login to work. Please follow the documentation at "
@@ -1977,11 +1986,11 @@ msgstr ""
1977
  "需要谷歌 + 社交登录工作。请按照文档 < href = \" %s\" 目标 = \"_ black\" > 此"
1978
  "链接 </a> 获取 google plus 客户端机密"
1979
 
1980
- #: admin/social_login.php:326
1981
  msgid "Vkontakte Application ID"
1982
  msgstr ""
1983
 
1984
- #: admin/social_login.php:336 admin/social_login.php:357
1985
  #, php-format
1986
  msgid ""
1987
  "Required for Vkontakte Social Login to work. Please follow the documentation "
@@ -1991,23 +2000,23 @@ msgstr ""
1991
  "要求Vkontakte社会化登录。请按照文件在<a href=“%s” target=“_blank”>这个环节</"
1992
  "a>得到的Vkontakte应用程序ID"
1993
 
1994
- #: admin/social_login.php:338 admin/social_login.php:359
1995
  #, fuzzy
1996
  msgid ""
1997
  "Paste following url in <strong>Site address</strong> option mentioned at the "
1998
  "link"
1999
  msgstr "在<strong>网站地址</strong>选项里(该选项在链接里提到)粘贴以下网址"
2000
 
2001
- #: admin/social_login.php:347
2002
  msgid "Vkontakte Secure key"
2003
  msgstr ""
2004
 
2005
- #: admin/social_login.php:368
2006
  #, fuzzy
2007
  msgid "Instagram App ID"
2008
  msgstr "Instagram"
2009
 
2010
- #: admin/social_login.php:378
2011
  #, fuzzy, php-format
2012
  msgid ""
2013
  "Required for Instagram Social Login to work. Please follow the documentation "
@@ -2016,19 +2025,19 @@ msgstr ""
2016
  "需要Instagram的社交登录。请按照文件在<a href=“%s” target=“_blank”>这个环节</"
2017
  "a>得到的Instagram客户端ID"
2018
 
2019
- #: admin/social_login.php:380 admin/social_login.php:401
2020
  #, fuzzy
2021
  msgid ""
2022
  "Paste following url in <strong>Valid OAuth Redirect URIs</strong> option "
2023
  "mentioned at the link"
2024
  msgstr "粘贴以下 url 在 <strong> 重定向 uri </strong> 选项中提到的链接"
2025
 
2026
- #: admin/social_login.php:389
2027
  #, fuzzy
2028
  msgid "Instagram App Secret"
2029
  msgstr "Instagram"
2030
 
2031
- #: admin/social_login.php:399
2032
  #, fuzzy, php-format
2033
  msgid ""
2034
  "Required for Instagram Social Login to work. Please follow the documentation "
@@ -2037,11 +2046,11 @@ msgstr ""
2037
  "需要Instagram的社交登录。请按照文件在<a href=“%s” target=“_blank”>这个环节</"
2038
  "a>得到的Instagram客户端ID"
2039
 
2040
- #: admin/social_login.php:410
2041
  msgid "Line Channel ID"
2042
  msgstr ""
2043
 
2044
- #: admin/social_login.php:419
2045
  #, fuzzy, php-format
2046
  msgid ""
2047
  "Required for Line Social Login to work. Please follow the documentation at "
@@ -2050,11 +2059,11 @@ msgstr ""
2050
  "链接登录需要工作。请按照 < href = \" %s\" target = \"_ black\" > 此链接 </a> "
2051
  "的文档获取 linkedin 客户端 id"
2052
 
2053
- #: admin/social_login.php:430
2054
  msgid "Line Channel Secret"
2055
  msgstr ""
2056
 
2057
- #: admin/social_login.php:439
2058
  #, fuzzy, php-format
2059
  msgid ""
2060
  "Required for Line Social Login to work. Please follow the documentation at "
@@ -2063,11 +2072,38 @@ msgstr ""
2063
  "链接登录需要工作。请按照 \"href =\" %s \"target =\" _ black \"> 此链接中的文"
2064
  "档进行操作, 以获取 linkedin 客户端机密"
2065
 
2066
- #: admin/social_login.php:450
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2067
  msgid "Microsoft Client ID"
2068
  msgstr ""
2069
 
2070
- #: admin/social_login.php:459
2071
  #, fuzzy, php-format
2072
  msgid ""
2073
  "Required for Live Social Login to work. Please follow the documentation at "
@@ -2076,18 +2112,19 @@ msgstr ""
2076
  "需要GOOGLEPLUS社会化登录工作。请按照文件在<a href=“%s” target=“_blank”>这个链"
2077
  "接</a>得到GOOGLEPLUS客户端ID"
2078
 
2079
- #: admin/social_login.php:461 admin/social_login.php:481
 
2080
  #, fuzzy
2081
  msgid ""
2082
  "Paste following url in <strong>Redirect URIs</strong> option mentioned at "
2083
  "the link"
2084
  msgstr "粘贴以下 url 在 <strong> 重定向 uri </strong> 选项中提到的链接"
2085
 
2086
- #: admin/social_login.php:470
2087
  msgid "Microsoft Client Secret"
2088
  msgstr ""
2089
 
2090
- #: admin/social_login.php:479
2091
  #, fuzzy, php-format
2092
  msgid ""
2093
  "Required for Live Social Login to work. Please follow the documentation at "
@@ -2097,11 +2134,11 @@ msgstr ""
2097
  "需要谷歌 + 社交登录工作。请按照文档 < href = \" %s\" 目标 = \"_ black\" > 此"
2098
  "链接 </a> 获取 google plus 客户端机密"
2099
 
2100
- #: admin/social_login.php:489
2101
  msgid "Steam API Key"
2102
  msgstr ""
2103
 
2104
- #: admin/social_login.php:498
2105
  #, php-format
2106
  msgid ""
2107
  "Required for Steam Social Login to work. Get it at <a href=\"%s\" target="
@@ -2109,111 +2146,137 @@ msgid ""
2109
  msgstr ""
2110
  "蒸汽社交登录工作所需。获取 < href = \" %s\" 目标 = \"_ black\" > 此链接 </a>"
2111
 
2112
- #: admin/social_login.php:499
2113
  msgid "Save following <strong>domain</strong> to get the key"
2114
  msgstr "保存以下 <strong> 域 </strong> 以获取密钥"
2115
 
2116
- #: admin/social_login.php:515
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2117
  #, fuzzy
2118
  msgid "Social Login Options"
2119
  msgstr "社交登录选项"
2120
 
2121
- #: admin/social_login.php:530
2122
  msgid "Text to display above the Social Login interface"
2123
  msgstr "文本显示社交登录界面的上方"
2124
 
2125
- #: admin/social_login.php:538
2126
  msgid "Trigger social login in the same browser tab"
2127
  msgstr ""
2128
 
2129
- #: admin/social_login.php:548
2130
  msgid "Trigger social login in the same browser tab instead of a popup window"
2131
  msgstr ""
2132
 
2133
- #: admin/social_login.php:555
2134
  #, fuzzy
2135
  msgid "Center align icons"
2136
  msgstr "重新排列图标"
2137
 
2138
- #: admin/social_login.php:565
2139
  #, fuzzy
2140
  msgid "Center align social login icons"
2141
  msgstr "社交登录选项"
2142
 
2143
- #: admin/social_login.php:572
2144
  msgid "Enable at login page"
2145
  msgstr "在登录页面启用"
2146
 
2147
- #: admin/social_login.php:582
2148
  msgid ""
2149
  "Social Login interface will get enabled at the login page of your website"
2150
  msgstr "社交登录界面会在你的网站的登录页面启用"
2151
 
2152
- #: admin/social_login.php:589
2153
  msgid "Enable at register page"
2154
  msgstr "在注册页面启用"
2155
 
2156
- #: admin/social_login.php:599
2157
  msgid ""
2158
  "Social Login interface will get enabled at the registration page of your "
2159
  "website"
2160
  msgstr "社交登录界面会在你的网站的注册页面启用"
2161
 
2162
- #: admin/social_login.php:606
2163
  msgid "Enable at comment form"
2164
  msgstr "在评论表单启用"
2165
 
2166
- #: admin/social_login.php:616
2167
  msgid "Social Login interface will get enabled at your Wordpress Comment form"
2168
  msgstr "社交登录界面会在您的WordPress评论的表单启用"
2169
 
2170
- #: admin/social_login.php:630
2171
  msgid "Enable before WooCommerce Customer Login Form"
2172
  msgstr "WooCommerce客户登录表单前启用"
2173
 
2174
- #: admin/social_login.php:640
2175
  msgid ""
2176
  "Social Login Interface will get enabled before the customer login form at "
2177
  "WooCommerce My Account page"
2178
  msgstr "社交登录界面将在WooCommerce我的帐户页面客户登录表单之前启用"
2179
 
2180
- #: admin/social_login.php:647
2181
  #, fuzzy
2182
  msgid "Enable at WooCommerce Customer Login Form"
2183
  msgstr "在WooCommerce客户登录表单后启用"
2184
 
2185
- #: admin/social_login.php:657
2186
  #, fuzzy
2187
  msgid ""
2188
  "Integrate Social Login Interface with the customer login form at WooCommerce "
2189
  "My Account page"
2190
  msgstr "社交登录界面将在WooCommerce我的帐户页面客户登录表单后启用"
2191
 
2192
- #: admin/social_login.php:664
2193
  #, fuzzy
2194
  msgid "Enable at WooCommerce Customer Register Form"
2195
  msgstr "在WooCommerce客户登录表单后启用"
2196
 
2197
- #: admin/social_login.php:674
2198
  #, fuzzy
2199
  msgid ""
2200
  "Integrate Social Login Interface with the customer register form at "
2201
  "WooCommerce My Account page"
2202
  msgstr "社交登录界面将在WooCommerce我的帐户页面客户登录表单后启用"
2203
 
2204
- #: admin/social_login.php:681
2205
  msgid "Enable at WooCommerce checkout page"
2206
  msgstr "在WooCommerce “结算”页面启用"
2207
 
2208
- #: admin/social_login.php:691
2209
  msgid "Social Login Interface will get enabled at WooCommerce checkout page"
2210
  msgstr "社交登录界面将在WooCommerce结帐页面启用"
2211
 
2212
- #: admin/social_login.php:701
2213
  msgid "Auto-approve comments made by Social Login users"
2214
  msgstr "自动批准社交登录用户评论"
2215
 
2216
- #: admin/social_login.php:711
2217
  msgid ""
2218
  "If this option is enabled, and WordPress comment is made by Social Login "
2219
  "user, comment will get approved immediately without keeping in moderation."
@@ -2221,42 +2284,42 @@ msgstr ""
2221
  "如果启用该选项,已经WordPress评论由社交登录用户发出,评论将会在不需要批准的情"
2222
  "况下立即批准。"
2223
 
2224
- #: admin/social_login.php:712
2225
  msgid "Note: This is not related to Facebook comments"
2226
  msgstr "注:这Facebook的评论无关"
2227
 
2228
- #: admin/social_login.php:721
2229
  msgid "Enable social avatar"
2230
  msgstr "启用社交头像"
2231
 
2232
- #: admin/social_login.php:731
2233
  msgid ""
2234
  "Social profile pictures of the logged in user will be displayed as profile "
2235
  "avatar"
2236
  msgstr "登录用户的社交资料图片将显示为个人头像"
2237
 
2238
- #: admin/social_login.php:740
2239
  msgid "Avatar quality"
2240
  msgstr "头像质量"
2241
 
2242
- #: admin/social_login.php:743
2243
  msgid "Average"
2244
  msgstr "一般"
2245
 
2246
- #: admin/social_login.php:744
2247
  msgid "Best"
2248
  msgstr "最好"
2249
 
2250
- #: admin/social_login.php:751
2251
  msgid "Choose avatar quality"
2252
  msgstr "选择头像质量"
2253
 
2254
- #: admin/social_login.php:759
2255
  msgid ""
2256
  "Show option for users to update social avatar at BuddyPress profile page"
2257
  msgstr "在BuddyPress的个人资料页面显示更新显示社会化头像选项"
2258
 
2259
- #: admin/social_login.php:769
2260
  msgid ""
2261
  "If enabled, users would be able to update their social avatar from \"Profile "
2262
  "photo\" section in BuddyPress profile at front-end"
@@ -2264,7 +2327,7 @@ msgstr ""
2264
  "如果启用,用户将能够在前端从BuddyPress的个人档案“个人资料照片”部分更新社会化"
2265
  "头像"
2266
 
2267
- #: admin/social_login.php:789
2268
  msgid ""
2269
  "If enabled and Social ID provider does not provide user's email address on "
2270
  "login, user will be asked to provide his/her email address. Otherwise, a "
@@ -2273,11 +2336,11 @@ msgstr ""
2273
  "如果启用,当登录时如果社会化ID提供商不提供或支持用户的电子邮件地址,用户将被"
2274
  "要求提供他/她的电子邮件地址。否则,将产生一个虚拟的电子邮件"
2275
 
2276
- #: admin/social_login.php:797
2277
  msgid "Send post-registration email to user to set account password"
2278
  msgstr "向用户发送注册后电子邮件以设置帐户密码"
2279
 
2280
- #: admin/social_login.php:807
2281
  msgid ""
2282
  "If enabled, an email will be sent to user after registration through Social "
2283
  "Login, regarding his/her login credentials (username-password to be able to "
@@ -2286,11 +2349,11 @@ msgstr ""
2286
  "如果启用,通过社会化注册登录后,将给用户发送一封email; 包括他/她的登录凭据"
2287
  "(用户名,密码,能够通过传统的登录表单登录)"
2288
 
2289
- #: admin/social_login.php:814
2290
  msgid "Send new user registration notification email to admin"
2291
  msgstr "向管理员发送新的用户注册通知电子邮件"
2292
 
2293
- #: admin/social_login.php:824
2294
  msgid ""
2295
  "If enabled, an email will be sent to admin after new user registers through "
2296
  "Social Login, notifying admin about the new user registration"
@@ -2298,59 +2361,59 @@ msgstr ""
2298
  "如果启用, 将在新用户通过社交登录注册后向管理员发送一封电子邮件, 通知管理员有"
2299
  "关新用户注册的信息"
2300
 
2301
- #: admin/social_login.php:831
2302
  msgid "Login redirection"
2303
  msgstr "登录重定向"
2304
 
2305
- #: admin/social_login.php:835
2306
  msgid "Same page where user logged in"
2307
  msgstr "用户登录同样的页面"
2308
 
2309
- #: admin/social_login.php:839 admin/social_login.php:868
2310
  msgid "Account dashboard"
2311
  msgstr "帐户信息中心"
2312
 
2313
- #: admin/social_login.php:842 admin/social_login.php:871
2314
  msgid "BuddyPress profile page"
2315
  msgstr "BuddyPress 档案"
2316
 
2317
- #: admin/social_login.php:845 admin/social_login.php:874
2318
  msgid "Custom Url"
2319
  msgstr "自定义 URL"
2320
 
2321
- #: admin/social_login.php:853
2322
  msgid "User will be redirected to the selected page after Social Login"
2323
  msgstr "用户社交登录后会被重定向到选择的页面"
2324
 
2325
- #: admin/social_login.php:860
2326
  msgid "Registration redirection"
2327
  msgstr "注册重定向"
2328
 
2329
- #: admin/social_login.php:864
2330
  msgid "Same page from where user registered"
2331
  msgstr "用户注册同样的页面"
2332
 
2333
- #: admin/social_login.php:882
2334
  msgid ""
2335
  "User will be redirected to the selected page after registration (first "
2336
  "Social Login) through Social Login"
2337
  msgstr ""
2338
  "注册之后,通过社会化登录(第一个社交化登录)后,用户将被重定向到所选择的页面"
2339
 
2340
- #: admin/social_login.php:891
2341
  msgid "Social Account Linking Options"
2342
  msgstr "社交帐户链接选项"
2343
 
2344
- #: admin/social_login.php:906
2345
  msgid "Text to display above the Social Account Linking interface"
2346
  msgstr "要显示在社交帐户链接界面上方的文本"
2347
 
2348
- #: admin/social_login.php:913
2349
  msgid ""
2350
  "Link social account to already existing account, if email address matches"
2351
  msgstr "如果电子邮件地址匹配, 请将社交帐户链接到已存在的帐户"
2352
 
2353
- #: admin/social_login.php:923
2354
  msgid ""
2355
  "If email address of the user's Social Account matches with an already "
2356
  "existing account at your website, that social account will be linked to "
@@ -2360,45 +2423,45 @@ msgstr ""
2360
  "如果用户的社交帐户的电子邮件地址与您网站上已存在的帐户匹配, 则该社交帐户将链"
2361
  "接到现有帐户。用户将能够管理这从社交帐户链接界面在他们的个人资料页面。"
2362
 
2363
- #: admin/social_login.php:931
2364
  msgid "Enable social account linking at BuddyPress profile page"
2365
  msgstr "在BuddyPress的个人资料页面启用社交帐户链接"
2366
 
2367
- #: admin/social_login.php:941
2368
  msgid ""
2369
  "Enable this option to show social account linking interface at BuddyPress "
2370
  "profile page"
2371
  msgstr "启用该选项,以在BuddyPress的个人资料页显示社交帐户连结界面"
2372
 
2373
- #: admin/social_login.php:952
2374
  msgid "Email popup options"
2375
  msgstr "电子邮件弹出选项"
2376
 
2377
- #: admin/social_login.php:957
2378
  msgid "Text on 'Email required' popup"
2379
  msgstr "在“电子邮件必填”弹出口显示的文本"
2380
 
2381
- #: admin/social_login.php:967
2382
  msgid ""
2383
  "This text will be displayed on email required popup. Leave empty if not "
2384
  "required."
2385
  msgstr "在电子邮件必填弹出口将显示的文本。如果不需要请留空。"
2386
 
2387
- #: admin/social_login.php:975
2388
  msgid "Error message for 'Email required' popup"
2389
  msgstr "“电子邮件必填”弹出口的错误信息"
2390
 
2391
- #: admin/social_login.php:985
2392
  msgid ""
2393
  "This message will be displayed to user if it provides invalid or already "
2394
  "registered email"
2395
  msgstr "如果无效及已经注册的email地址,这个信息将显示给用户"
2396
 
2397
- #: admin/social_login.php:993
2398
  msgid "Email popup height"
2399
  msgstr "电子邮件弹出口高度"
2400
 
2401
- #: admin/social_login.php:1003
2402
  msgid ""
2403
  "If you are seeing vertical scrollbar in the \"Email required\" popup, you "
2404
  "can increase the height of popup by specifying in this option. Leave empty "
@@ -2407,11 +2470,11 @@ msgstr ""
2407
  "如果在“电子邮件必填”弹出窗口中看到垂直滚动条,你可以通过这个选项指定加大弹出"
2408
  "的高度。留空为默认。"
2409
 
2410
- #: admin/social_login.php:1010
2411
  msgid "Enable email verification"
2412
  msgstr "启用电子邮件验证"
2413
 
2414
- #: admin/social_login.php:1020
2415
  msgid ""
2416
  "If enabled, email provided by the user will be verified by sending a "
2417
  "confirmation link to that email. User would not be able to login without "
@@ -2420,105 +2483,105 @@ msgstr ""
2420
  "如果启用,将向用户的email地址发送一个确认链接进行验证。不验证,用户将无法登"
2421
  "录。"
2422
 
2423
- #: admin/social_login.php:1040
2424
  msgid "Enable GDPR opt-in"
2425
  msgstr ""
2426
 
2427
- #: admin/social_login.php:1050
2428
  msgid ""
2429
  "Enable it to show GDPR opt-in for social login and social account linking"
2430
  msgstr "使其能够显示 gdpr 选择加入的社交登录和社交帐户链接"
2431
 
2432
- #: admin/social_login.php:1058
2433
  msgid "Placement of GDPR opt-in"
2434
  msgstr ""
2435
 
2436
- #: admin/social_login.php:1062
2437
  #, fuzzy
2438
  msgid "Above Social Login icons"
2439
  msgstr "社交登录选项"
2440
 
2441
- #: admin/social_login.php:1064
2442
  #, fuzzy
2443
  msgid "Below Social Login icons"
2444
  msgstr "社交登录选项"
2445
 
2446
- #: admin/social_login.php:1070
2447
  #, fuzzy
2448
  msgid "Placement of GDPR opt-in above or below the social login icons"
2449
  msgstr "在社交登录图标上方显示的选择加入的文本"
2450
 
2451
- #: admin/social_login.php:1077
2452
  msgid "Opt-in text"
2453
  msgstr ""
2454
 
2455
- #: admin/social_login.php:1087
2456
  msgid "Text for the GDPR opt-in"
2457
  msgstr ""
2458
 
2459
- #: admin/social_login.php:1094
2460
  #, fuzzy
2461
  msgid "Text to link to Terms-Conditions page"
2462
  msgstr "要链接到隐私政策页面的文本"
2463
 
2464
- #: admin/social_login.php:1104
2465
  #, fuzzy
2466
  msgid "Word(s) in the opt-in text to be linked to terms-conditions page"
2467
  msgstr "要链接到隐私策略页的选入文本中的单词"
2468
 
2469
- #: admin/social_login.php:1111
2470
  msgid "Terms-Conditions Url"
2471
  msgstr ""
2472
 
2473
- #: admin/social_login.php:1121
2474
  #, fuzzy
2475
  msgid "Url of the terms-conditions page of your website"
2476
  msgstr "您网站的主页的 Url"
2477
 
2478
- #: admin/social_login.php:1128
2479
  msgid "Text to link to Privacy Policy page"
2480
  msgstr "要链接到隐私政策页面的文本"
2481
 
2482
- #: admin/social_login.php:1138
2483
  msgid "Word(s) in the opt-in text to be linked to privacy policy page"
2484
  msgstr "要链接到隐私策略页的选入文本中的单词"
2485
 
2486
- #: admin/social_login.php:1145
2487
  msgid "Privacy Policy Url"
2488
  msgstr "隐私政策网址"
2489
 
2490
- #: admin/social_login.php:1155
2491
  msgid "Url of the privacy policy page of your website"
2492
  msgstr "您网站的隐私政策页面的网址"
2493
 
2494
- #: admin/social_login.php:1206 inc/widget.php:260 inc/widget.php:438
2495
  #: inc/widget.php:602 inc/widget.php:750
2496
  msgid "Select"
2497
  msgstr "选择"
2498
 
2499
- #: admin/social_login.php:1237
2500
  msgid "Social Login Shortcode & Widget"
2501
  msgstr ""
2502
 
2503
- #: admin/social_login.php:1238
2504
  msgid "Social Linking Shortcode"
2505
  msgstr "社交链接简码"
2506
 
2507
- #: admin/social_login.php:1253
2508
  msgid "Why is social login not working?"
2509
  msgstr "为什么社交登录不起作用?"
2510
 
2511
- #: admin/social_login.php:1254
2512
  msgid ""
2513
  "Make sure that App ID and Secret (Client ID and Secret) keys you have saved, "
2514
  "belong to the same app"
2515
  msgstr ""
2516
 
2517
- #: admin/social_login.php:1256
2518
  msgid "Social Login not working with Varnish enabled"
2519
  msgstr ""
2520
 
2521
- #: admin/social_login.php:1257
2522
  msgid ""
2523
  "Why the user is not appearing logged in even after Social Login until the "
2524
  "webpage is refreshed manually?"
@@ -2717,27 +2780,27 @@ msgstr "无效请求。"
2717
  msgid "Providers not selected"
2718
  msgstr "未选定的供应商"
2719
 
2720
- #: inc/social_login.php:747
2721
  msgid "Email"
2722
  msgstr "邮箱"
2723
 
2724
- #: inc/social_login.php:748
2725
  msgid "Confirm email"
2726
  msgstr "确认邮箱"
2727
 
2728
- #: inc/social_login.php:750
2729
  msgid "Save"
2730
  msgstr "保存"
2731
 
2732
- #: inc/social_login.php:751
2733
  msgid "Cancel"
2734
  msgstr "取消"
2735
 
2736
- #: inc/social_login.php:825
2737
  msgid "Email Verification"
2738
  msgstr "电子邮件验证"
2739
 
2740
- #: inc/social_login.php:827
2741
  msgid ""
2742
  "Please click on the following link or paste it in browser to verify your "
2743
  "email"
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Super Socializer\n"
4
+ "POT-Creation-Date: 2020-09-23 09:46+0530\n"
5
+ "PO-Revision-Date: 2020-09-23 09:46+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:667
25
  msgid "Problem fetching access token: "
26
  msgstr "获取access token的问题:"
27
 
28
+ #: super_socializer.php:671 super_socializer.php:685
29
  msgid "Facebook SDK returned an error: "
30
  msgstr "facebook sdk 返回了一个错误:"
31
 
32
+ #: super_socializer.php:681
33
  msgid "Graph returned an error: "
34
  msgstr ""
35
 
36
+ #: super_socializer.php:870
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:898
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:901
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:904
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:1086 helper.php:961
68
  msgid "Please verify your email address to login."
69
  msgstr "请验证您的电子邮件地址以便登录。"
70
 
71
+ #: super_socializer.php:1086
72
  msgid "Your email has been verified. Now you can login to your account"
73
  msgstr "您的电子邮件已验证。现在你可以登录到您的帐户"
74
 
75
+ #: super_socializer.php:1090
76
  msgid "Notification"
77
  msgstr "通知"
78
 
79
+ #: super_socializer.php:1108 admin/social_login.php:869
80
  msgid "Email required"
81
  msgstr "邮件地址(比选)"
82
 
83
+ #: super_socializer.php:1111
84
  msgid "Please check your email inbox to complete the registration."
85
  msgstr "请检查您的电子邮件收件箱以完成注册。"
86
 
87
+ #: super_socializer.php:1180
88
  msgid "Leave a reply"
89
  msgstr "回复"
90
 
91
+ #: super_socializer.php:1196 inc/social_sharing.php:241
92
  msgid "Shares"
93
  msgstr "分享"
94
 
95
+ #: super_socializer.php:1196 inc/social_sharing.php:241
96
  msgid "Share"
97
  msgstr "分享"
98
 
99
+ #: super_socializer.php:1196
100
  msgid "Link copied."
101
  msgstr "链接已复制。"
102
 
103
+ #: super_socializer.php:1441
104
  msgid "Super Socializer - General Options"
105
  msgstr "Super Socializer-常规选项"
106
 
107
+ #: super_socializer.php:1441 admin/general_options.php:15
108
  #: admin/social_commenting.php:47
109
  msgid "General Options"
110
  msgstr "常规选项"
111
 
112
+ #: super_socializer.php:1509 helper.php:883
113
  msgid "Social Avatar"
114
  msgstr "社会化头像"
115
 
116
+ #: super_socializer.php:1512
117
  msgid "Small Avatar Url"
118
  msgstr "小头像 Url"
119
 
120
+ #: super_socializer.php:1516
121
  msgid "Large Avatar Url"
122
  msgstr "大头像 Url"
123
 
124
+ #: super_socializer.php:1520 helper.php:886
125
  msgid ""
126
  "Do not fetch and update social avatar from my profile, next time I Social "
127
  "Login"
128
  msgstr "不从我的个人资料里获取及更新社会化头像,下次社会化登录"
129
 
130
+ #: super_socializer.php:1524 helper.php:887
131
  msgid "Update social avatar, next time I Social Login"
132
  msgstr "更新社会化头像,下次社会化登录"
133
 
134
+ #: super_socializer.php:1601
135
  msgid "Login with your Social ID"
136
  msgstr "使用您的社交 ID登录"
137
 
138
+ #: super_socializer.php:1602
139
  msgid "Email you entered is already registered or invalid"
140
  msgstr "您输入的电子邮件已经注册或无效"
141
 
142
+ #: super_socializer.php:1607
143
  msgid "Please enter a valid email address. You might be required to verify it"
144
  msgstr "请输入一个有效的电子邮件地址。您可能需要验证它"
145
 
146
+ #: super_socializer.php:1611 super_socializer.php:2309
147
  msgid "Link your social account to login to your account at this website"
148
  msgstr "链接你的社会化媒体帐户登录您本站账号"
149
 
150
+ #: super_socializer.php:1851
151
  msgid "Thanks for installing Super Socializer plugin"
152
  msgstr ""
153
 
154
+ #: super_socializer.php:1853
155
  msgid "Configure the Plugin"
156
  msgstr ""
157
 
158
+ #: super_socializer.php:1864
159
  #, fuzzy
160
  msgid ""
161
  "Update \"Facebook Comments Moderation\" add-on for compatibility with "
162
  "current version of Super Socializer"
163
  msgstr "更新 \"facebook 评论审核\" 加载项与当前版本的Super Socialzer"
164
 
165
+ #: super_socializer.php:1873
166
  #, fuzzy
167
  msgid ""
168
  "Update \"Facebook Comments Notifier\" add-on for compatibility with current "
170
  msgstr ""
171
  "更新 \"facebook 评论通知程序\" 加载项, 以与当前版本的超级社交提供兼容性"
172
 
173
+ #: super_socializer.php:1882
174
  #, fuzzy
175
  msgid ""
176
  "Update \"Social Login Buttons\" add-on for compatibility with current "
177
  "version of Super Socializer"
178
  msgstr "更新 \"社交登录按钮\" 加载项与当前版本的超级社交器兼容"
179
 
180
+ #: super_socializer.php:1891
181
  #, fuzzy
182
  msgid ""
183
  "Update \"Social Share myCRED Integration\" add-on for maximum compatibility "
186
  "更新 \"社交分享 mycred 集成\" 加载项, 以最大限度地与当前版本的超级社交提供兼"
187
  "容"
188
 
189
+ #: super_socializer.php:1900
190
  #, fuzzy
191
  msgid ""
192
  "Update \"Social Login myCRED Integration\" add-on for maximum compatibility "
194
  msgstr ""
195
  "更新 \"社交登录 mycred 集成\" 加载项, 以最大限度地兼容当前版本的超级社交"
196
 
197
+ #: super_socializer.php:1911
198
  #, php-format
199
  msgid ""
200
  "To continue using Steam login save Steam API key <a href=\"%s\">here</a>"
202
  "要继续使用 steam 登录, 请保存 steam api 密钥 < a href = \" %s\" >, 请点击此"
203
  "处 </a>"
204
 
205
+ #: super_socializer.php:1920
206
  #, php-format
207
  msgid ""
208
  "To continue using Instagram login create a new Instagram App as described <a "
210
  "Instagram App Secret <a href=\"%s\">here</a>"
211
  msgstr ""
212
 
213
+ #: super_socializer.php:1929 super_socializer.php:1938
214
  #, php-format
215
  msgid ""
216
  "To continue using bitly url shortener, login to your bit.ly account and "
219
  "\">here</a>. More details at the <a href=\"%s\" target=\"_blank\">link</a>"
220
  msgstr ""
221
 
222
+ #: super_socializer.php:1954
223
  #, php-format
224
  msgid ""
225
  "To continue using Social Login, save the secret keys <a href=\"%s\">here</a>"
226
  msgstr "若要继续使用社交登录, 请在此处保存密钥 < ref = \" %s\" > </a>"
227
 
228
+ #: super_socializer.php:1978
229
  #, php-format
230
  msgid ""
231
  "Add %s in \"Valid OAuth redirect URIs\" option in your Facebook app settings "
236
  "facebook 登录正常工作。有关更多详细信息, 请在此处检查步骤 9 < ref = \" %s\" "
237
  "target = \"_ black\" > </a>"
238
 
239
+ #: super_socializer.php:1978 super_socializer.php:2003
240
+ #: super_socializer.php:2028 super_socializer.php:2053
241
+ #: super_socializer.php:2086 super_socializer.php:2114
242
+ #: super_socializer.php:2141
243
  msgid "Okay"
244
  msgstr "好的"
245
 
246
+ #: super_socializer.php:2003
247
  #, php-format
248
  msgid ""
249
  "Add %s in \"Callback URLs\" option in your Twitter app settings for Twitter "
254
  "关更多详细信息, 请在此处检查步骤 4 < ref = \" %s\" target = \"_ black\" > </"
255
  "a>"
256
 
257
+ #: super_socializer.php:2028
258
  #, php-format
259
  msgid ""
260
  "Add %s in \"Authorized Redirect URLs\" option in your Linkedin app settings "
265
  "正常工作。有关更多详细信息, 请在此处检查步骤 4 < ref = \" %s\" target = \"_ "
266
  "black\" > </a>"
267
 
268
+ #: super_socializer.php:2053
269
  #, php-format
270
  msgid ""
271
  "Add %s in \"Authorized redirect URIs\" option in your Google client settings "
276
  "常工作。有关更多详细信息, 请在此处检查步骤 11 < ref = \" %s\" target = \"_ "
277
  "black\" > </a>"
278
 
279
+ #: super_socializer.php:2064
280
  #, php-format
281
  msgid ""
282
  "Save the url of privacy policy page of your website <a href=\"%s\">here</a>"
283
  msgstr "保存您的网站 < reof = \" %s\" 的隐私政策页面的网址 </a>"
284
 
285
+ #: super_socializer.php:2086
286
  #, php-format
287
  msgid ""
288
  "This plugin is GDPR compliant. You need to update the privacy policy of your "
292
  "这个插件是符合GDPR的。您需要更新网站有关此插件保存的个人数据的隐私政策。如 "
293
  "<a href=\"%s\" target=\"_blank\">这里</a>所述"
294
 
295
+ #: super_socializer.php:2114
296
  #, php-format
297
  msgid ""
298
  "Now plugin supports a new service Twitcount.com to show Twitter shares. To "
301
  "your website %s with them. No need to copy-paste any code from their website."
302
  msgstr ""
303
 
304
+ #: super_socializer.php:2141
305
  #, php-format
306
  msgid ""
307
  "Replace url saved in \"Callback URLs\" option in your Twitter app settings "
312
  "工作。有关更多详细信息, 请在此处检查步骤 4 < ref = \" %s\" target = \"_ black"
313
  "\" > </a>"
314
 
315
+ #: super_socializer.php:2166
316
  #, fuzzy, php-format
317
  msgid ""
318
  "If you cannot get Linkedin login to work after updating the plugin, replace "
323
  "正常工作。有关更多详细信息, 请在此处检查步骤 4 < ref = \" %s\" target = \"_ "
324
  "black\" > </a>"
325
 
326
+ #: super_socializer.php:2166 super_socializer.php:2193
327
  msgid "Dismiss"
328
  msgstr ""
329
 
330
+ #: super_socializer.php:2192
331
  #, php-format
332
  msgid ""
333
  "Save Facebook App ID and Secret keys in \"Standard Interface\" and/or "
336
  "that, clear share counts cache from \"Miscellaneous\" section"
337
  msgstr ""
338
 
339
+ #: super_socializer.php:2385
340
  msgid ""
341
  "Your browser is blocking some features of this website. Please follow the "
342
  "instructions at {support_url} to unblock these."
438
  msgstr "大头像"
439
 
440
  #: helper.php:898 admin/general_options.php:89 admin/social_sharing.php:1944
441
+ #: admin/social_commenting.php:400 admin/social_login.php:1359
442
  #: admin/like_buttons.php:780
443
  msgid "Save Changes"
444
  msgstr "保存更改"
462
  #: admin/general_options.php:7 admin/general_options.php:93
463
  #: admin/social_sharing.php:5 admin/social_sharing.php:1948
464
  #: admin/social_commenting.php:5 admin/social_commenting.php:404
465
+ #: admin/social_login.php:5 admin/social_login.php:1363
466
  #: admin/like_buttons.php:6 admin/like_buttons.php:784
467
  #, fuzzy, php-format
468
  msgid ""
509
  msgstr "您可以指定任何额外的 CSS 规则(无需 &lt;style&gt; tag)"
510
 
511
  #: admin/general_options.php:103 admin/social_sharing.php:1954
512
+ #: admin/social_commenting.php:410 admin/social_login.php:1369
513
  #: admin/like_buttons.php:790
514
  msgid "Instagram Shoutout"
515
  msgstr ""
516
 
517
  #: admin/general_options.php:105 admin/social_sharing.php:1956
518
+ #: admin/social_commenting.php:412 admin/social_login.php:1371
519
  #: admin/like_buttons.php:792
520
  #, fuzzy
521
  msgid ""
656
 
657
  #: admin/social_sharing.php:67 admin/social_sharing.php:1869
658
  #: admin/social_sharing.php:1871 admin/social_login.php:45
659
+ #: admin/social_login.php:1325 admin/like_buttons.php:50
660
  #: admin/like_buttons.php:751
661
  msgid "Shortcode & Widget"
662
  msgstr "简码&小工具"
667
 
668
  #: admin/social_sharing.php:69 admin/social_sharing.php:1902
669
  #: admin/social_commenting.php:40 admin/social_commenting.php:384
670
+ #: admin/social_login.php:46 admin/social_login.php:1339
671
  #: admin/like_buttons.php:51 admin/like_buttons.php:764
672
  msgid "FAQ"
673
  msgstr "常见问题解答"
893
  msgid "Url to share"
894
  msgstr "要分享的网址"
895
 
896
+ #: admin/social_sharing.php:725 admin/social_login.php:610
897
+ #: admin/social_login.php:986 admin/like_buttons.php:105 inc/widget.php:945
898
  msgid "Title"
899
  msgstr "标题"
900
 
976
  msgstr "放置"
977
 
978
  #: admin/social_sharing.php:957 admin/social_sharing.php:1383
979
+ #: admin/social_login.php:927 admin/social_login.php:956
980
  #: admin/like_buttons.php:218 admin/like_buttons.php:494
981
  msgid "Homepage"
982
  msgstr "主页"
1222
  msgid "Required only to track Facebook share count"
1223
  msgstr ""
1224
 
1225
+ #: admin/social_sharing.php:1584 admin/social_login.php:158
1226
  msgid "Facebook App ID"
1227
  msgstr "Facebook 应用 ID"
1228
 
1235
  "需要Facebook社交登录。请按照在<a href=“%s” target=“_blank”>的链接 </a>得到"
1236
  "Facebook的应用程序ID"
1237
 
1238
+ #: admin/social_sharing.php:1601 admin/social_login.php:179
1239
  msgid "Facebook App Secret"
1240
  msgstr "FacebookAPP密码"
1241
 
1416
  "题的URL(Facebook分享无法正常工作)。 单击“获取新的Scrape信息”按钮。"
1417
 
1418
  #: admin/social_sharing.php:1904 admin/social_commenting.php:386
1419
+ #: admin/social_login.php:1341
1420
  msgid ""
1421
  "<strong>Note:</strong> Plugin will not work on local server. You should have "
1422
  "an online website for the plugin to function properly."
1476
  msgstr "如何恢复在将我的网站转移到SSL/https之后丢失的社交分享数?"
1477
 
1478
  #: admin/social_sharing.php:1919 admin/social_commenting.php:389
1479
+ #: admin/social_login.php:1348
1480
  msgid "Why is my browser blocking some features of the plugin?"
1481
  msgstr "为什么我的浏览器会阻止插件的某些功能?"
1482
 
1769
  msgid "Advanced Configuration"
1770
  msgstr "高级配置"
1771
 
1772
+ #: admin/social_login.php:41 admin/social_login.php:1125
1773
  msgid "GDPR"
1774
  msgstr "GDPR"
1775
 
1776
+ #: admin/social_login.php:43 admin/social_login.php:1276
1777
  msgid "XProfile Integration"
1778
  msgstr "xprofile 集成"
1779
 
1839
  msgstr ""
1840
 
1841
  #: admin/social_login.php:135
1842
+ msgid "Wordpress"
1843
+ msgstr ""
1844
+
1845
+ #: admin/social_login.php:139
1846
  msgid "Windows Live"
1847
  msgstr ""
1848
 
1849
  #: admin/social_login.php:143
1850
+ msgid "Yahoo"
1851
+ msgstr ""
1852
+
1853
+ #: admin/social_login.php:151
1854
  msgid "Select Social ID provider to enable in Social Login"
1855
  msgstr "选择社会化ID提供商以启用社会化登录"
1856
 
1857
+ #: admin/social_login.php:168
1858
  #, php-format
1859
  msgid ""
1860
  "Required for Facebook Social Login to work. Please follow the documentation "
1863
  "需要Facebook社交登录。请按照在<a href=“%s” target=“_blank”>的链接 </a>得到"
1864
  "Facebook的应用程序ID"
1865
 
1866
+ #: admin/social_login.php:170 admin/social_login.php:191
1867
  #, fuzzy
1868
  msgid ""
1869
  "Paste following url in <strong>Site URL</strong> option mentioned at the link"
1870
  msgstr "在提到的链接选项中粘贴以下url<strong>网站URL</strong>"
1871
 
1872
+ #: admin/social_login.php:189
1873
  #, php-format
1874
  msgid ""
1875
  "Required for Facebook Social Login to work. Please follow the documentation "
1878
  "facebook 社交登录工作所需。请按照文档在 < href = \" %s\" 目标 = \"_ black\" "
1879
  "> 此链接 </a>, 以获得 facebook 应用程序机密"
1880
 
1881
+ #: admin/social_login.php:200
1882
  msgid "Twitter API Key"
1883
  msgstr "Twitter API密钥"
1884
 
1885
+ #: admin/social_login.php:210
1886
  #, php-format
1887
  msgid ""
1888
  "Required for Twitter Social Login to work. Please follow the documentation "
1891
  "需要Twitter社交登录。请按照在<a href=“%s” target=“_blank”>的链接</a>得到"
1892
  "Twitter的API密钥"
1893
 
1894
+ #: admin/social_login.php:212 admin/social_login.php:237
1895
  #, fuzzy
1896
  msgid ""
1897
  "Paste following url in <strong>Website</strong> option mentioned at the link"
1898
  msgstr "粘贴以下网址 <strong> 网站 </strong> 选项在提到的链接"
1899
 
1900
+ #: admin/social_login.php:216 admin/social_login.php:241
1901
+ #: admin/social_login.php:429 admin/social_login.php:449
1902
+ #: admin/social_login.php:469 admin/social_login.php:489
1903
  #, fuzzy
1904
  msgid ""
1905
  "Paste following url in <strong>Callback URL</strong> option mentioned at the "
1906
  "link"
1907
  msgstr "粘贴以下网址 <strong> 回拨 url </strong> 选项在提到的链接"
1908
 
1909
+ #: admin/social_login.php:225
1910
  msgid "Twitter API Secret"
1911
  msgstr "Twitter API Secret"
1912
 
1913
+ #: admin/social_login.php:235
1914
  #, php-format
1915
  msgid ""
1916
  "Required for Twitter Social Login to work. Please follow the documentation "
1919
  "需要Twitter社交登录。请按照在<a href=“%s” target=“_blank”>的链接</a>得到"
1920
  "Twitter的API密钥"
1921
 
1922
+ #: admin/social_login.php:250
1923
  msgid "LinkedIn Client ID"
1924
  msgstr ""
1925
 
1926
+ #: admin/social_login.php:260
1927
  #, php-format
1928
  msgid ""
1929
  "Required for LinkedIn Social Login to work. Please follow the documentation "
1932
  "链接登录需要工作。请按照 < href = \" %s\" target = \"_ black\" > 此链接 </a> "
1933
  "的文档获取 linkedin 客户端 id"
1934
 
1935
+ #: admin/social_login.php:262 admin/social_login.php:283
1936
  #, fuzzy
1937
  msgid ""
1938
  "Paste following url in <strong>Redirect URLs</strong> option mentioned at "
1939
  "the link"
1940
  msgstr "粘贴以下 url 在 <strong> 重定向 uri </strong> 选项中提到的链接"
1941
 
1942
+ #: admin/social_login.php:271
1943
  msgid "LinkedIn Client Secret"
1944
  msgstr ""
1945
 
1946
+ #: admin/social_login.php:281
1947
  #, php-format
1948
  msgid ""
1949
  "Required for LinkedIn Social Login to work. Please follow the documentation "
1953
  "链接登录需要工作。请按照 \"href =\" %s \"target =\" _ black \"> 此链接中的文"
1954
  "档进行操作, 以获取 linkedin 客户端机密"
1955
 
1956
+ #: admin/social_login.php:292
1957
  msgid "Google Client ID"
1958
  msgstr ""
1959
 
1960
+ #: admin/social_login.php:302
1961
  #, fuzzy, php-format
1962
  msgid ""
1963
  "Required for Google Social Login to work. Please follow the documentation at "
1966
  "需要GOOGLEPLUS社会化登录工作。请按照文件在<a href=“%s” target=“_blank”>这个链"
1967
  "接</a>得到GOOGLEPLUS客户端ID"
1968
 
1969
+ #: admin/social_login.php:304 admin/social_login.php:325
1970
  #, fuzzy
1971
  msgid ""
1972
  "Paste following url in <strong>AUTHORIZED REDIRECT URI</strong> option "
1973
  "mentioned at the link"
1974
  msgstr "粘贴以下 url 在 <strong> 授权的 re正确性 uri </strong> 选项在上述链接"
1975
 
1976
+ #: admin/social_login.php:313
1977
  msgid "Google Client Secret"
1978
  msgstr ""
1979
 
1980
+ #: admin/social_login.php:323
1981
  #, fuzzy, php-format
1982
  msgid ""
1983
  "Required for Google Social Login to work. Please follow the documentation at "
1986
  "需要谷歌 + 社交登录工作。请按照文档 < href = \" %s\" 目标 = \"_ black\" > 此"
1987
  "链接 </a> 获取 google plus 客户端机密"
1988
 
1989
+ #: admin/social_login.php:334
1990
  msgid "Vkontakte Application ID"
1991
  msgstr ""
1992
 
1993
+ #: admin/social_login.php:344 admin/social_login.php:365
1994
  #, php-format
1995
  msgid ""
1996
  "Required for Vkontakte Social Login to work. Please follow the documentation "
2000
  "要求Vkontakte社会化登录。请按照文件在<a href=“%s” target=“_blank”>这个环节</"
2001
  "a>得到的Vkontakte应用程序ID"
2002
 
2003
+ #: admin/social_login.php:346 admin/social_login.php:367
2004
  #, fuzzy
2005
  msgid ""
2006
  "Paste following url in <strong>Site address</strong> option mentioned at the "
2007
  "link"
2008
  msgstr "在<strong>网站地址</strong>选项里(该选项在链接里提到)粘贴以下网址"
2009
 
2010
+ #: admin/social_login.php:355
2011
  msgid "Vkontakte Secure key"
2012
  msgstr ""
2013
 
2014
+ #: admin/social_login.php:376
2015
  #, fuzzy
2016
  msgid "Instagram App ID"
2017
  msgstr "Instagram"
2018
 
2019
+ #: admin/social_login.php:386
2020
  #, fuzzy, php-format
2021
  msgid ""
2022
  "Required for Instagram Social Login to work. Please follow the documentation "
2025
  "需要Instagram的社交登录。请按照文件在<a href=“%s” target=“_blank”>这个环节</"
2026
  "a>得到的Instagram客户端ID"
2027
 
2028
+ #: admin/social_login.php:388 admin/social_login.php:409
2029
  #, fuzzy
2030
  msgid ""
2031
  "Paste following url in <strong>Valid OAuth Redirect URIs</strong> option "
2032
  "mentioned at the link"
2033
  msgstr "粘贴以下 url 在 <strong> 重定向 uri </strong> 选项中提到的链接"
2034
 
2035
+ #: admin/social_login.php:397
2036
  #, fuzzy
2037
  msgid "Instagram App Secret"
2038
  msgstr "Instagram"
2039
 
2040
+ #: admin/social_login.php:407
2041
  #, fuzzy, php-format
2042
  msgid ""
2043
  "Required for Instagram Social Login to work. Please follow the documentation "
2046
  "需要Instagram的社交登录。请按照文件在<a href=“%s” target=“_blank”>这个环节</"
2047
  "a>得到的Instagram客户端ID"
2048
 
2049
+ #: admin/social_login.php:418
2050
  msgid "Line Channel ID"
2051
  msgstr ""
2052
 
2053
+ #: admin/social_login.php:427
2054
  #, fuzzy, php-format
2055
  msgid ""
2056
  "Required for Line Social Login to work. Please follow the documentation at "
2059
  "链接登录需要工作。请按照 < href = \" %s\" target = \"_ black\" > 此链接 </a> "
2060
  "的文档获取 linkedin 客户端 id"
2061
 
2062
+ #: admin/social_login.php:438
2063
  msgid "Line Channel Secret"
2064
  msgstr ""
2065
 
2066
+ #: admin/social_login.php:447
2067
  #, fuzzy, php-format
2068
  msgid ""
2069
  "Required for Line Social Login to work. Please follow the documentation at "
2072
  "链接登录需要工作。请按照 \"href =\" %s \"target =\" _ black \"> 此链接中的文"
2073
  "档进行操作, 以获取 linkedin 客户端机密"
2074
 
2075
+ #: admin/social_login.php:458
2076
+ msgid "Wordpress Client ID"
2077
+ msgstr ""
2078
+
2079
+ #: admin/social_login.php:467
2080
+ #, fuzzy, php-format
2081
+ msgid ""
2082
+ "Required for Wordpress Social Login to work. Please follow the documentation "
2083
+ "at <a href=\"%s\" target=\"_blank\">this link</a> to get Wordpress Client ID"
2084
+ msgstr ""
2085
+ "需要GOOGLEPLUS社会化登录工作。请按照文件在<a href=“%s” target=“_blank”>这个链"
2086
+ "接</a>得到GOOGLEPLUS客户端ID"
2087
+
2088
+ #: admin/social_login.php:478
2089
+ msgid "Wordpress Client Secret"
2090
+ msgstr ""
2091
+
2092
+ #: admin/social_login.php:487
2093
+ #, fuzzy, php-format
2094
+ msgid ""
2095
+ "Required for Wordpress Social Login to work. Please follow the documentation "
2096
+ "at <a href=\"%s\" target=\"_blank\">this link</a> to get Wordpress Client "
2097
+ "Secret"
2098
+ msgstr ""
2099
+ "需要谷歌 + 社交登录工作。请按照文档 < href = \" %s\" 目标 = \"_ black\" > 此"
2100
+ "链接 </a> 获取 google plus 客户端机密"
2101
+
2102
+ #: admin/social_login.php:498
2103
  msgid "Microsoft Client ID"
2104
  msgstr ""
2105
 
2106
+ #: admin/social_login.php:507
2107
  #, fuzzy, php-format
2108
  msgid ""
2109
  "Required for Live Social Login to work. Please follow the documentation at "
2112
  "需要GOOGLEPLUS社会化登录工作。请按照文件在<a href=“%s” target=“_blank”>这个链"
2113
  "接</a>得到GOOGLEPLUS客户端ID"
2114
 
2115
+ #: admin/social_login.php:509 admin/social_login.php:529
2116
+ #: admin/social_login.php:567 admin/social_login.php:587
2117
  #, fuzzy
2118
  msgid ""
2119
  "Paste following url in <strong>Redirect URIs</strong> option mentioned at "
2120
  "the link"
2121
  msgstr "粘贴以下 url 在 <strong> 重定向 uri </strong> 选项中提到的链接"
2122
 
2123
+ #: admin/social_login.php:518
2124
  msgid "Microsoft Client Secret"
2125
  msgstr ""
2126
 
2127
+ #: admin/social_login.php:527
2128
  #, fuzzy, php-format
2129
  msgid ""
2130
  "Required for Live Social Login to work. Please follow the documentation at "
2134
  "需要谷歌 + 社交登录工作。请按照文档 < href = \" %s\" 目标 = \"_ black\" > 此"
2135
  "链接 </a> 获取 google plus 客户端机密"
2136
 
2137
+ #: admin/social_login.php:537
2138
  msgid "Steam API Key"
2139
  msgstr ""
2140
 
2141
+ #: admin/social_login.php:546
2142
  #, php-format
2143
  msgid ""
2144
  "Required for Steam Social Login to work. Get it at <a href=\"%s\" target="
2146
  msgstr ""
2147
  "蒸汽社交登录工作所需。获取 < href = \" %s\" 目标 = \"_ black\" > 此链接 </a>"
2148
 
2149
+ #: admin/social_login.php:547
2150
  msgid "Save following <strong>domain</strong> to get the key"
2151
  msgstr "保存以下 <strong> 域 </strong> 以获取密钥"
2152
 
2153
+ #: admin/social_login.php:556
2154
+ msgid "Yahoo Client ID"
2155
+ msgstr ""
2156
+
2157
+ #: admin/social_login.php:565
2158
+ #, fuzzy, php-format
2159
+ msgid ""
2160
+ "Required for Yahoo Social Login to work. Please follow the documentation at "
2161
+ "<a href=\"%s\" target=\"_blank\">this link</a> to get Yahoo Client ID"
2162
+ msgstr ""
2163
+ "需要GOOGLEPLUS社会化登录工作。请按照文件在<a href=“%s” target=“_blank”>这个链"
2164
+ "接</a>得到GOOGLEPLUS客户端ID"
2165
+
2166
+ #: admin/social_login.php:576
2167
+ msgid "Yahoo Client Secret"
2168
+ msgstr ""
2169
+
2170
+ #: admin/social_login.php:585
2171
+ #, fuzzy, php-format
2172
+ msgid ""
2173
+ "Required for Yahoo Social Login to work. Please follow the documentation at "
2174
+ "<a href=\"%s\" target=\"_blank\">this link</a> to get Yahoo Client Secret key"
2175
+ msgstr ""
2176
+ "需要谷歌 + 社交登录工作。请按照文档 < href = \" %s\" 目标 = \"_ black\" > 此"
2177
+ "链接 </a> 获取 google plus 客户端机密"
2178
+
2179
+ #: admin/social_login.php:605
2180
  #, fuzzy
2181
  msgid "Social Login Options"
2182
  msgstr "社交登录选项"
2183
 
2184
+ #: admin/social_login.php:620
2185
  msgid "Text to display above the Social Login interface"
2186
  msgstr "文本显示社交登录界面的上方"
2187
 
2188
+ #: admin/social_login.php:628
2189
  msgid "Trigger social login in the same browser tab"
2190
  msgstr ""
2191
 
2192
+ #: admin/social_login.php:638
2193
  msgid "Trigger social login in the same browser tab instead of a popup window"
2194
  msgstr ""
2195
 
2196
+ #: admin/social_login.php:645
2197
  #, fuzzy
2198
  msgid "Center align icons"
2199
  msgstr "重新排列图标"
2200
 
2201
+ #: admin/social_login.php:655
2202
  #, fuzzy
2203
  msgid "Center align social login icons"
2204
  msgstr "社交登录选项"
2205
 
2206
+ #: admin/social_login.php:662
2207
  msgid "Enable at login page"
2208
  msgstr "在登录页面启用"
2209
 
2210
+ #: admin/social_login.php:672
2211
  msgid ""
2212
  "Social Login interface will get enabled at the login page of your website"
2213
  msgstr "社交登录界面会在你的网站的登录页面启用"
2214
 
2215
+ #: admin/social_login.php:679
2216
  msgid "Enable at register page"
2217
  msgstr "在注册页面启用"
2218
 
2219
+ #: admin/social_login.php:689
2220
  msgid ""
2221
  "Social Login interface will get enabled at the registration page of your "
2222
  "website"
2223
  msgstr "社交登录界面会在你的网站的注册页面启用"
2224
 
2225
+ #: admin/social_login.php:696
2226
  msgid "Enable at comment form"
2227
  msgstr "在评论表单启用"
2228
 
2229
+ #: admin/social_login.php:706
2230
  msgid "Social Login interface will get enabled at your Wordpress Comment form"
2231
  msgstr "社交登录界面会在您的WordPress评论的表单启用"
2232
 
2233
+ #: admin/social_login.php:720
2234
  msgid "Enable before WooCommerce Customer Login Form"
2235
  msgstr "WooCommerce客户登录表单前启用"
2236
 
2237
+ #: admin/social_login.php:730
2238
  msgid ""
2239
  "Social Login Interface will get enabled before the customer login form at "
2240
  "WooCommerce My Account page"
2241
  msgstr "社交登录界面将在WooCommerce我的帐户页面客户登录表单之前启用"
2242
 
2243
+ #: admin/social_login.php:737
2244
  #, fuzzy
2245
  msgid "Enable at WooCommerce Customer Login Form"
2246
  msgstr "在WooCommerce客户登录表单后启用"
2247
 
2248
+ #: admin/social_login.php:747
2249
  #, fuzzy
2250
  msgid ""
2251
  "Integrate Social Login Interface with the customer login form at WooCommerce "
2252
  "My Account page"
2253
  msgstr "社交登录界面将在WooCommerce我的帐户页面客户登录表单后启用"
2254
 
2255
+ #: admin/social_login.php:754
2256
  #, fuzzy
2257
  msgid "Enable at WooCommerce Customer Register Form"
2258
  msgstr "在WooCommerce客户登录表单后启用"
2259
 
2260
+ #: admin/social_login.php:764
2261
  #, fuzzy
2262
  msgid ""
2263
  "Integrate Social Login Interface with the customer register form at "
2264
  "WooCommerce My Account page"
2265
  msgstr "社交登录界面将在WooCommerce我的帐户页面客户登录表单后启用"
2266
 
2267
+ #: admin/social_login.php:771
2268
  msgid "Enable at WooCommerce checkout page"
2269
  msgstr "在WooCommerce “结算”页面启用"
2270
 
2271
+ #: admin/social_login.php:781
2272
  msgid "Social Login Interface will get enabled at WooCommerce checkout page"
2273
  msgstr "社交登录界面将在WooCommerce结帐页面启用"
2274
 
2275
+ #: admin/social_login.php:791
2276
  msgid "Auto-approve comments made by Social Login users"
2277
  msgstr "自动批准社交登录用户评论"
2278
 
2279
+ #: admin/social_login.php:801
2280
  msgid ""
2281
  "If this option is enabled, and WordPress comment is made by Social Login "
2282
  "user, comment will get approved immediately without keeping in moderation."
2284
  "如果启用该选项,已经WordPress评论由社交登录用户发出,评论将会在不需要批准的情"
2285
  "况下立即批准。"
2286
 
2287
+ #: admin/social_login.php:802
2288
  msgid "Note: This is not related to Facebook comments"
2289
  msgstr "注:这Facebook的评论无关"
2290
 
2291
+ #: admin/social_login.php:811
2292
  msgid "Enable social avatar"
2293
  msgstr "启用社交头像"
2294
 
2295
+ #: admin/social_login.php:821
2296
  msgid ""
2297
  "Social profile pictures of the logged in user will be displayed as profile "
2298
  "avatar"
2299
  msgstr "登录用户的社交资料图片将显示为个人头像"
2300
 
2301
+ #: admin/social_login.php:830
2302
  msgid "Avatar quality"
2303
  msgstr "头像质量"
2304
 
2305
+ #: admin/social_login.php:833
2306
  msgid "Average"
2307
  msgstr "一般"
2308
 
2309
+ #: admin/social_login.php:834
2310
  msgid "Best"
2311
  msgstr "最好"
2312
 
2313
+ #: admin/social_login.php:841
2314
  msgid "Choose avatar quality"
2315
  msgstr "选择头像质量"
2316
 
2317
+ #: admin/social_login.php:849
2318
  msgid ""
2319
  "Show option for users to update social avatar at BuddyPress profile page"
2320
  msgstr "在BuddyPress的个人资料页面显示更新显示社会化头像选项"
2321
 
2322
+ #: admin/social_login.php:859
2323
  msgid ""
2324
  "If enabled, users would be able to update their social avatar from \"Profile "
2325
  "photo\" section in BuddyPress profile at front-end"
2327
  "如果启用,用户将能够在前端从BuddyPress的个人档案“个人资料照片”部分更新社会化"
2328
  "头像"
2329
 
2330
+ #: admin/social_login.php:879
2331
  msgid ""
2332
  "If enabled and Social ID provider does not provide user's email address on "
2333
  "login, user will be asked to provide his/her email address. Otherwise, a "
2336
  "如果启用,当登录时如果社会化ID提供商不提供或支持用户的电子邮件地址,用户将被"
2337
  "要求提供他/她的电子邮件地址。否则,将产生一个虚拟的电子邮件"
2338
 
2339
+ #: admin/social_login.php:887
2340
  msgid "Send post-registration email to user to set account password"
2341
  msgstr "向用户发送注册后电子邮件以设置帐户密码"
2342
 
2343
+ #: admin/social_login.php:897
2344
  msgid ""
2345
  "If enabled, an email will be sent to user after registration through Social "
2346
  "Login, regarding his/her login credentials (username-password to be able to "
2349
  "如果启用,通过社会化注册登录后,将给用户发送一封email; 包括他/她的登录凭据"
2350
  "(用户名,密码,能够通过传统的登录表单登录)"
2351
 
2352
+ #: admin/social_login.php:904
2353
  msgid "Send new user registration notification email to admin"
2354
  msgstr "向管理员发送新的用户注册通知电子邮件"
2355
 
2356
+ #: admin/social_login.php:914
2357
  msgid ""
2358
  "If enabled, an email will be sent to admin after new user registers through "
2359
  "Social Login, notifying admin about the new user registration"
2361
  "如果启用, 将在新用户通过社交登录注册后向管理员发送一封电子邮件, 通知管理员有"
2362
  "关新用户注册的信息"
2363
 
2364
+ #: admin/social_login.php:921
2365
  msgid "Login redirection"
2366
  msgstr "登录重定向"
2367
 
2368
+ #: admin/social_login.php:925
2369
  msgid "Same page where user logged in"
2370
  msgstr "用户登录同样的页面"
2371
 
2372
+ #: admin/social_login.php:929 admin/social_login.php:958
2373
  msgid "Account dashboard"
2374
  msgstr "帐户信息中心"
2375
 
2376
+ #: admin/social_login.php:932 admin/social_login.php:961
2377
  msgid "BuddyPress profile page"
2378
  msgstr "BuddyPress 档案"
2379
 
2380
+ #: admin/social_login.php:935 admin/social_login.php:964
2381
  msgid "Custom Url"
2382
  msgstr "自定义 URL"
2383
 
2384
+ #: admin/social_login.php:943
2385
  msgid "User will be redirected to the selected page after Social Login"
2386
  msgstr "用户社交登录后会被重定向到选择的页面"
2387
 
2388
+ #: admin/social_login.php:950
2389
  msgid "Registration redirection"
2390
  msgstr "注册重定向"
2391
 
2392
+ #: admin/social_login.php:954
2393
  msgid "Same page from where user registered"
2394
  msgstr "用户注册同样的页面"
2395
 
2396
+ #: admin/social_login.php:972
2397
  msgid ""
2398
  "User will be redirected to the selected page after registration (first "
2399
  "Social Login) through Social Login"
2400
  msgstr ""
2401
  "注册之后,通过社会化登录(第一个社交化登录)后,用户将被重定向到所选择的页面"
2402
 
2403
+ #: admin/social_login.php:981
2404
  msgid "Social Account Linking Options"
2405
  msgstr "社交帐户链接选项"
2406
 
2407
+ #: admin/social_login.php:996
2408
  msgid "Text to display above the Social Account Linking interface"
2409
  msgstr "要显示在社交帐户链接界面上方的文本"
2410
 
2411
+ #: admin/social_login.php:1003
2412
  msgid ""
2413
  "Link social account to already existing account, if email address matches"
2414
  msgstr "如果电子邮件地址匹配, 请将社交帐户链接到已存在的帐户"
2415
 
2416
+ #: admin/social_login.php:1013
2417
  msgid ""
2418
  "If email address of the user's Social Account matches with an already "
2419
  "existing account at your website, that social account will be linked to "
2423
  "如果用户的社交帐户的电子邮件地址与您网站上已存在的帐户匹配, 则该社交帐户将链"
2424
  "接到现有帐户。用户将能够管理这从社交帐户链接界面在他们的个人资料页面。"
2425
 
2426
+ #: admin/social_login.php:1021
2427
  msgid "Enable social account linking at BuddyPress profile page"
2428
  msgstr "在BuddyPress的个人资料页面启用社交帐户链接"
2429
 
2430
+ #: admin/social_login.php:1031
2431
  msgid ""
2432
  "Enable this option to show social account linking interface at BuddyPress "
2433
  "profile page"
2434
  msgstr "启用该选项,以在BuddyPress的个人资料页显示社交帐户连结界面"
2435
 
2436
+ #: admin/social_login.php:1042
2437
  msgid "Email popup options"
2438
  msgstr "电子邮件弹出选项"
2439
 
2440
+ #: admin/social_login.php:1047
2441
  msgid "Text on 'Email required' popup"
2442
  msgstr "在“电子邮件必填”弹出口显示的文本"
2443
 
2444
+ #: admin/social_login.php:1057
2445
  msgid ""
2446
  "This text will be displayed on email required popup. Leave empty if not "
2447
  "required."
2448
  msgstr "在电子邮件必填弹出口将显示的文本。如果不需要请留空。"
2449
 
2450
+ #: admin/social_login.php:1065
2451
  msgid "Error message for 'Email required' popup"
2452
  msgstr "“电子邮件必填”弹出口的错误信息"
2453
 
2454
+ #: admin/social_login.php:1075
2455
  msgid ""
2456
  "This message will be displayed to user if it provides invalid or already "
2457
  "registered email"
2458
  msgstr "如果无效及已经注册的email地址,这个信息将显示给用户"
2459
 
2460
+ #: admin/social_login.php:1083
2461
  msgid "Email popup height"
2462
  msgstr "电子邮件弹出口高度"
2463
 
2464
+ #: admin/social_login.php:1093
2465
  msgid ""
2466
  "If you are seeing vertical scrollbar in the \"Email required\" popup, you "
2467
  "can increase the height of popup by specifying in this option. Leave empty "
2470
  "如果在“电子邮件必填”弹出窗口中看到垂直滚动条,你可以通过这个选项指定加大弹出"
2471
  "的高度。留空为默认。"
2472
 
2473
+ #: admin/social_login.php:1100
2474
  msgid "Enable email verification"
2475
  msgstr "启用电子邮件验证"
2476
 
2477
+ #: admin/social_login.php:1110
2478
  msgid ""
2479
  "If enabled, email provided by the user will be verified by sending a "
2480
  "confirmation link to that email. User would not be able to login without "
2483
  "如果启用,将向用户的email地址发送一个确认链接进行验证。不验证,用户将无法登"
2484
  "录。"
2485
 
2486
+ #: admin/social_login.php:1130
2487
  msgid "Enable GDPR opt-in"
2488
  msgstr ""
2489
 
2490
+ #: admin/social_login.php:1140
2491
  msgid ""
2492
  "Enable it to show GDPR opt-in for social login and social account linking"
2493
  msgstr "使其能够显示 gdpr 选择加入的社交登录和社交帐户链接"
2494
 
2495
+ #: admin/social_login.php:1148
2496
  msgid "Placement of GDPR opt-in"
2497
  msgstr ""
2498
 
2499
+ #: admin/social_login.php:1152
2500
  #, fuzzy
2501
  msgid "Above Social Login icons"
2502
  msgstr "社交登录选项"
2503
 
2504
+ #: admin/social_login.php:1154
2505
  #, fuzzy
2506
  msgid "Below Social Login icons"
2507
  msgstr "社交登录选项"
2508
 
2509
+ #: admin/social_login.php:1160
2510
  #, fuzzy
2511
  msgid "Placement of GDPR opt-in above or below the social login icons"
2512
  msgstr "在社交登录图标上方显示的选择加入的文本"
2513
 
2514
+ #: admin/social_login.php:1167
2515
  msgid "Opt-in text"
2516
  msgstr ""
2517
 
2518
+ #: admin/social_login.php:1177
2519
  msgid "Text for the GDPR opt-in"
2520
  msgstr ""
2521
 
2522
+ #: admin/social_login.php:1184
2523
  #, fuzzy
2524
  msgid "Text to link to Terms-Conditions page"
2525
  msgstr "要链接到隐私政策页面的文本"
2526
 
2527
+ #: admin/social_login.php:1194
2528
  #, fuzzy
2529
  msgid "Word(s) in the opt-in text to be linked to terms-conditions page"
2530
  msgstr "要链接到隐私策略页的选入文本中的单词"
2531
 
2532
+ #: admin/social_login.php:1201
2533
  msgid "Terms-Conditions Url"
2534
  msgstr ""
2535
 
2536
+ #: admin/social_login.php:1211
2537
  #, fuzzy
2538
  msgid "Url of the terms-conditions page of your website"
2539
  msgstr "您网站的主页的 Url"
2540
 
2541
+ #: admin/social_login.php:1218
2542
  msgid "Text to link to Privacy Policy page"
2543
  msgstr "要链接到隐私政策页面的文本"
2544
 
2545
+ #: admin/social_login.php:1228
2546
  msgid "Word(s) in the opt-in text to be linked to privacy policy page"
2547
  msgstr "要链接到隐私策略页的选入文本中的单词"
2548
 
2549
+ #: admin/social_login.php:1235
2550
  msgid "Privacy Policy Url"
2551
  msgstr "隐私政策网址"
2552
 
2553
+ #: admin/social_login.php:1245
2554
  msgid "Url of the privacy policy page of your website"
2555
  msgstr "您网站的隐私政策页面的网址"
2556
 
2557
+ #: admin/social_login.php:1296 inc/widget.php:260 inc/widget.php:438
2558
  #: inc/widget.php:602 inc/widget.php:750
2559
  msgid "Select"
2560
  msgstr "选择"
2561
 
2562
+ #: admin/social_login.php:1327
2563
  msgid "Social Login Shortcode & Widget"
2564
  msgstr ""
2565
 
2566
+ #: admin/social_login.php:1328
2567
  msgid "Social Linking Shortcode"
2568
  msgstr "社交链接简码"
2569
 
2570
+ #: admin/social_login.php:1343
2571
  msgid "Why is social login not working?"
2572
  msgstr "为什么社交登录不起作用?"
2573
 
2574
+ #: admin/social_login.php:1344
2575
  msgid ""
2576
  "Make sure that App ID and Secret (Client ID and Secret) keys you have saved, "
2577
  "belong to the same app"
2578
  msgstr ""
2579
 
2580
+ #: admin/social_login.php:1346
2581
  msgid "Social Login not working with Varnish enabled"
2582
  msgstr ""
2583
 
2584
+ #: admin/social_login.php:1347
2585
  msgid ""
2586
  "Why the user is not appearing logged in even after Social Login until the "
2587
  "webpage is refreshed manually?"
2780
  msgid "Providers not selected"
2781
  msgstr "未选定的供应商"
2782
 
2783
+ #: inc/social_login.php:792
2784
  msgid "Email"
2785
  msgstr "邮箱"
2786
 
2787
+ #: inc/social_login.php:793
2788
  msgid "Confirm email"
2789
  msgstr "确认邮箱"
2790
 
2791
+ #: inc/social_login.php:795
2792
  msgid "Save"
2793
  msgstr "保存"
2794
 
2795
+ #: inc/social_login.php:796
2796
  msgid "Cancel"
2797
  msgstr "取消"
2798
 
2799
+ #: inc/social_login.php:870
2800
  msgid "Email Verification"
2801
  msgstr "电子邮件验证"
2802
 
2803
+ #: inc/social_login.php:872
2804
  msgid ""
2805
  "Please click on the following link or paste it in browser to verify your "
2806
  "email"
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: 2020-08-20 08:14+0530\n"
6
- "PO-Revision-Date: 2020-08-20 08:14+0530\n"
7
  "Last-Translator: Heateor <hello@heateor.com>\n"
8
  "Language-Team: Heateor <hello@heateor.com>\n"
9
  "Language: en_IN\n"
@@ -15,172 +15,172 @@ msgstr ""
15
  "X-Generator: Poedit 1.5.4\n"
16
  "X-Poedit-SearchPath-0: ..\n"
17
 
18
- #: ../super_socializer.php:523
19
  msgid "Problem fetching access token: "
20
  msgstr ""
21
 
22
- #: ../super_socializer.php:527 ../super_socializer.php:541
23
  msgid "Facebook SDK returned an error: "
24
  msgstr ""
25
 
26
- #: ../super_socializer.php:537
27
  msgid "Graph returned an error: "
28
  msgstr ""
29
 
30
- #: ../super_socializer.php:726
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:754
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:757
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:760
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:942 ../helper.php:961
57
  msgid "Please verify your email address to login."
58
  msgstr ""
59
 
60
- #: ../super_socializer.php:942
61
  msgid "Your email has been verified. Now you can login to your account"
62
  msgstr ""
63
 
64
- #: ../super_socializer.php:946
65
  msgid "Notification"
66
  msgstr ""
67
 
68
- #: ../super_socializer.php:964 ../admin/social_login.php:779
69
  msgid "Email required"
70
  msgstr ""
71
 
72
- #: ../super_socializer.php:967
73
  msgid "Please check your email inbox to complete the registration."
74
  msgstr ""
75
 
76
- #: ../super_socializer.php:1036
77
  msgid "Leave a reply"
78
  msgstr ""
79
 
80
- #: ../super_socializer.php:1052 ../inc/social_sharing.php:241
81
  msgid "Shares"
82
  msgstr ""
83
 
84
- #: ../super_socializer.php:1052 ../inc/social_sharing.php:241
85
  msgid "Share"
86
  msgstr ""
87
 
88
- #: ../super_socializer.php:1052
89
  msgid "Link copied."
90
  msgstr ""
91
 
92
- #: ../super_socializer.php:1298
93
  msgid "Super Socializer - General Options"
94
  msgstr ""
95
 
96
- #: ../super_socializer.php:1298 ../admin/general_options.php:15
97
  #: ../admin/social_commenting.php:47
98
  msgid "General Options"
99
  msgstr ""
100
 
101
- #: ../super_socializer.php:1366 ../helper.php:883
102
  msgid "Social Avatar"
103
  msgstr ""
104
 
105
- #: ../super_socializer.php:1369
106
  msgid "Small Avatar Url"
107
  msgstr ""
108
 
109
- #: ../super_socializer.php:1373
110
  msgid "Large Avatar Url"
111
  msgstr ""
112
 
113
- #: ../super_socializer.php:1377 ../helper.php:886
114
  msgid ""
115
  "Do not fetch and update social avatar from my profile, next time I Social "
116
  "Login"
117
  msgstr ""
118
 
119
- #: ../super_socializer.php:1381 ../helper.php:887
120
  msgid "Update social avatar, next time I Social Login"
121
  msgstr ""
122
 
123
- #: ../super_socializer.php:1458
124
  msgid "Login with your Social ID"
125
  msgstr ""
126
 
127
- #: ../super_socializer.php:1459
128
  msgid "Email you entered is already registered or invalid"
129
  msgstr ""
130
 
131
- #: ../super_socializer.php:1464
132
  msgid "Please enter a valid email address. You might be required to verify it"
133
  msgstr ""
134
 
135
- #: ../super_socializer.php:1468 ../super_socializer.php:2166
136
  msgid "Link your social account to login to your account at this website"
137
  msgstr ""
138
 
139
- #: ../super_socializer.php:1708
140
  msgid "Thanks for installing Super Socializer plugin"
141
  msgstr ""
142
 
143
- #: ../super_socializer.php:1710
144
  msgid "Configure the Plugin"
145
  msgstr ""
146
 
147
- #: ../super_socializer.php:1721
148
  msgid ""
149
  "Update \"Facebook Comments Moderation\" add-on for compatibility with "
150
  "current version of Super Socializer"
151
  msgstr ""
152
 
153
- #: ../super_socializer.php:1730
154
  msgid ""
155
  "Update \"Facebook Comments Notifier\" add-on for compatibility with current "
156
  "version of Super Socializer"
157
  msgstr ""
158
 
159
- #: ../super_socializer.php:1739
160
  msgid ""
161
  "Update \"Social Login Buttons\" add-on for compatibility with current "
162
  "version of Super Socializer"
163
  msgstr ""
164
 
165
- #: ../super_socializer.php:1748
166
  msgid ""
167
  "Update \"Social Share myCRED Integration\" add-on for maximum compatibility "
168
  "with current version of Super Socializer"
169
  msgstr ""
170
 
171
- #: ../super_socializer.php:1757
172
  msgid ""
173
  "Update \"Social Login myCRED Integration\" add-on for maximum compatibility "
174
  "with current version of Super Socializer"
175
  msgstr ""
176
 
177
- #: ../super_socializer.php:1768
178
  #, php-format
179
  msgid ""
180
  "To continue using Steam login save Steam API key <a href=\"%s\">here</a>"
181
  msgstr ""
182
 
183
- #: ../super_socializer.php:1777
184
  #, php-format
185
  msgid ""
186
  "To continue using Instagram login create a new Instagram App as described <a "
@@ -188,7 +188,7 @@ msgid ""
188
  "Instagram App Secret <a href=\"%s\">here</a>"
189
  msgstr ""
190
 
191
- #: ../super_socializer.php:1786 ../super_socializer.php:1795
192
  #, php-format
193
  msgid ""
194
  "To continue using bitly url shortener, login to your bit.ly account and "
@@ -197,13 +197,13 @@ msgid ""
197
  "\">here</a>. More details at the <a href=\"%s\" target=\"_blank\">link</a>"
198
  msgstr ""
199
 
200
- #: ../super_socializer.php:1811
201
  #, php-format
202
  msgid ""
203
  "To continue using Social Login, save the secret keys <a href=\"%s\">here</a>"
204
  msgstr ""
205
 
206
- #: ../super_socializer.php:1835
207
  #, php-format
208
  msgid ""
209
  "Add %s in \"Valid OAuth redirect URIs\" option in your Facebook app settings "
@@ -211,14 +211,14 @@ msgid ""
211
  "target=\"_blank\">here</a>"
212
  msgstr ""
213
 
214
- #: ../super_socializer.php:1835 ../super_socializer.php:1860
215
- #: ../super_socializer.php:1885 ../super_socializer.php:1910
216
- #: ../super_socializer.php:1943 ../super_socializer.php:1971
217
- #: ../super_socializer.php:1998
218
  msgid "Okay"
219
  msgstr ""
220
 
221
- #: ../super_socializer.php:1860
222
  #, php-format
223
  msgid ""
224
  "Add %s in \"Callback URLs\" option in your Twitter app settings for Twitter "
@@ -226,7 +226,7 @@ msgid ""
226
  "\">here</a>"
227
  msgstr ""
228
 
229
- #: ../super_socializer.php:1885
230
  #, php-format
231
  msgid ""
232
  "Add %s in \"Authorized Redirect URLs\" option in your Linkedin app settings "
@@ -234,7 +234,7 @@ msgid ""
234
  "target=\"_blank\">here</a>"
235
  msgstr ""
236
 
237
- #: ../super_socializer.php:1910
238
  #, php-format
239
  msgid ""
240
  "Add %s in \"Authorized redirect URIs\" option in your Google client settings "
@@ -242,13 +242,13 @@ msgid ""
242
  "target=\"_blank\">here</a>"
243
  msgstr ""
244
 
245
- #: ../super_socializer.php:1921
246
  #, php-format
247
  msgid ""
248
  "Save the url of privacy policy page of your website <a href=\"%s\">here</a>"
249
  msgstr ""
250
 
251
- #: ../super_socializer.php:1943
252
  #, php-format
253
  msgid ""
254
  "This plugin is GDPR compliant. You need to update the privacy policy of your "
@@ -256,7 +256,7 @@ msgid ""
256
  "\"%s\" target=\"_blank\">here</a>"
257
  msgstr ""
258
 
259
- #: ../super_socializer.php:1971
260
  #, php-format
261
  msgid ""
262
  "Now plugin supports a new service Twitcount.com to show Twitter shares. To "
@@ -265,7 +265,7 @@ msgid ""
265
  "your website %s with them. No need to copy-paste any code from their website."
266
  msgstr ""
267
 
268
- #: ../super_socializer.php:1998
269
  #, php-format
270
  msgid ""
271
  "Replace url saved in \"Callback URLs\" option in your Twitter app settings "
@@ -273,7 +273,7 @@ msgid ""
273
  "\"%s\" target=\"_blank\">here</a>"
274
  msgstr ""
275
 
276
- #: ../super_socializer.php:2023
277
  #, php-format
278
  msgid ""
279
  "If you cannot get Linkedin login to work after updating the plugin, replace "
@@ -281,11 +281,11 @@ msgid ""
281
  "For more details, check step 6 <a href=\"%s\" target=\"_blank\">here</a>"
282
  msgstr ""
283
 
284
- #: ../super_socializer.php:2023 ../super_socializer.php:2050
285
  msgid "Dismiss"
286
  msgstr ""
287
 
288
- #: ../super_socializer.php:2049
289
  #, php-format
290
  msgid ""
291
  "Save Facebook App ID and Secret keys in \"Standard Interface\" and/or "
@@ -294,7 +294,7 @@ msgid ""
294
  "that, clear share counts cache from \"Miscellaneous\" section"
295
  msgstr ""
296
 
297
- #: ../super_socializer.php:2242
298
  msgid ""
299
  "Your browser is blocking some features of this website. Please follow the "
300
  "instructions at {support_url} to unblock these."
@@ -394,7 +394,7 @@ msgstr ""
394
 
395
  #: ../helper.php:898 ../admin/general_options.php:89
396
  #: ../admin/social_sharing.php:1944 ../admin/social_commenting.php:400
397
- #: ../admin/social_login.php:1269 ../admin/like_buttons.php:780
398
  msgid "Save Changes"
399
  msgstr ""
400
 
@@ -417,7 +417,7 @@ msgstr ""
417
  #: ../admin/general_options.php:7 ../admin/general_options.php:93
418
  #: ../admin/social_sharing.php:5 ../admin/social_sharing.php:1948
419
  #: ../admin/social_commenting.php:5 ../admin/social_commenting.php:404
420
- #: ../admin/social_login.php:5 ../admin/social_login.php:1273
421
  #: ../admin/like_buttons.php:6 ../admin/like_buttons.php:784
422
  #, php-format
423
  msgid ""
@@ -463,13 +463,13 @@ msgid "You can specify any additional CSS rules (without &lt;style&gt; tag)"
463
  msgstr ""
464
 
465
  #: ../admin/general_options.php:103 ../admin/social_sharing.php:1954
466
- #: ../admin/social_commenting.php:410 ../admin/social_login.php:1279
467
  #: ../admin/like_buttons.php:790
468
  msgid "Instagram Shoutout"
469
  msgstr ""
470
 
471
  #: ../admin/general_options.php:105 ../admin/social_sharing.php:1956
472
- #: ../admin/social_commenting.php:412 ../admin/social_login.php:1281
473
  #: ../admin/like_buttons.php:792
474
  msgid ""
475
  "If you can send (to hello@heateor.com) how this plugin is helping your "
@@ -601,7 +601,7 @@ msgstr ""
601
 
602
  #: ../admin/social_sharing.php:67 ../admin/social_sharing.php:1869
603
  #: ../admin/social_sharing.php:1871 ../admin/social_login.php:45
604
- #: ../admin/social_login.php:1235 ../admin/like_buttons.php:50
605
  #: ../admin/like_buttons.php:751
606
  msgid "Shortcode & Widget"
607
  msgstr ""
@@ -612,7 +612,7 @@ msgstr ""
612
 
613
  #: ../admin/social_sharing.php:69 ../admin/social_sharing.php:1902
614
  #: ../admin/social_commenting.php:40 ../admin/social_commenting.php:384
615
- #: ../admin/social_login.php:46 ../admin/social_login.php:1249
616
  #: ../admin/like_buttons.php:51 ../admin/like_buttons.php:764
617
  msgid "FAQ"
618
  msgstr ""
@@ -832,8 +832,8 @@ msgstr ""
832
  msgid "Url to share"
833
  msgstr ""
834
 
835
- #: ../admin/social_sharing.php:725 ../admin/social_login.php:520
836
- #: ../admin/social_login.php:896 ../admin/like_buttons.php:105
837
  #: ../inc/widget.php:945
838
  msgid "Title"
839
  msgstr ""
@@ -916,7 +916,7 @@ msgid "Placement"
916
  msgstr ""
917
 
918
  #: ../admin/social_sharing.php:957 ../admin/social_sharing.php:1383
919
- #: ../admin/social_login.php:837 ../admin/social_login.php:866
920
  #: ../admin/like_buttons.php:218 ../admin/like_buttons.php:494
921
  msgid "Homepage"
922
  msgstr ""
@@ -1152,7 +1152,7 @@ msgstr ""
1152
  msgid "Required only to track Facebook share count"
1153
  msgstr ""
1154
 
1155
- #: ../admin/social_sharing.php:1584 ../admin/social_login.php:150
1156
  msgid "Facebook App ID"
1157
  msgstr ""
1158
 
@@ -1163,7 +1163,7 @@ msgid ""
1163
  "at <a href=\"%s\" target=\"_blank\">this link</a> to get Facebook App ID"
1164
  msgstr ""
1165
 
1166
- #: ../admin/social_sharing.php:1601 ../admin/social_login.php:171
1167
  msgid "Facebook App Secret"
1168
  msgstr ""
1169
 
@@ -1331,7 +1331,7 @@ msgid ""
1331
  msgstr ""
1332
 
1333
  #: ../admin/social_sharing.php:1904 ../admin/social_commenting.php:386
1334
- #: ../admin/social_login.php:1251
1335
  msgid ""
1336
  "<strong>Note:</strong> Plugin will not work on local server. You should have "
1337
  "an online website for the plugin to function properly."
@@ -1385,7 +1385,7 @@ msgid ""
1385
  msgstr ""
1386
 
1387
  #: ../admin/social_sharing.php:1919 ../admin/social_commenting.php:389
1388
- #: ../admin/social_login.php:1258
1389
  msgid "Why is my browser blocking some features of the plugin?"
1390
  msgstr ""
1391
 
@@ -1668,11 +1668,11 @@ msgstr ""
1668
  msgid "Advanced Configuration"
1669
  msgstr ""
1670
 
1671
- #: ../admin/social_login.php:41 ../admin/social_login.php:1035
1672
  msgid "GDPR"
1673
  msgstr ""
1674
 
1675
- #: ../admin/social_login.php:43 ../admin/social_login.php:1186
1676
  msgid "XProfile Integration"
1677
  msgstr ""
1678
 
@@ -1734,88 +1734,97 @@ msgid "Line"
1734
  msgstr ""
1735
 
1736
  #: ../admin/social_login.php:135
 
 
 
 
1737
  msgid "Windows Live"
1738
  msgstr ""
1739
 
1740
  #: ../admin/social_login.php:143
 
 
 
 
1741
  msgid "Select Social ID provider to enable in Social Login"
1742
  msgstr ""
1743
 
1744
- #: ../admin/social_login.php:160
1745
  #, php-format
1746
  msgid ""
1747
  "Required for Facebook Social Login to work. Please follow the documentation "
1748
  "at <a href=\"%s\" target=\"_blank\">this link</a> to get Facebook App ID"
1749
  msgstr ""
1750
 
1751
- #: ../admin/social_login.php:162 ../admin/social_login.php:183
1752
  msgid ""
1753
  "Paste following url in <strong>Site URL</strong> option mentioned at the link"
1754
  msgstr ""
1755
 
1756
- #: ../admin/social_login.php:181
1757
  #, php-format
1758
  msgid ""
1759
  "Required for Facebook Social Login to work. Please follow the documentation "
1760
  "at <a href=\"%s\" target=\"_blank\">this link</a> to get Facebook App Secret"
1761
  msgstr ""
1762
 
1763
- #: ../admin/social_login.php:192
1764
  msgid "Twitter API Key"
1765
  msgstr ""
1766
 
1767
- #: ../admin/social_login.php:202
1768
  #, php-format
1769
  msgid ""
1770
  "Required for Twitter Social Login to work. Please follow the documentation "
1771
  "at <a href=\"%s\" target=\"_blank\">this link</a> to get Twitter API Key"
1772
  msgstr ""
1773
 
1774
- #: ../admin/social_login.php:204 ../admin/social_login.php:229
1775
  msgid ""
1776
  "Paste following url in <strong>Website</strong> option mentioned at the link"
1777
  msgstr ""
1778
 
1779
- #: ../admin/social_login.php:208 ../admin/social_login.php:233
1780
- #: ../admin/social_login.php:421 ../admin/social_login.php:441
 
1781
  msgid ""
1782
  "Paste following url in <strong>Callback URL</strong> option mentioned at the "
1783
  "link"
1784
  msgstr ""
1785
 
1786
- #: ../admin/social_login.php:217
1787
  msgid "Twitter API Secret"
1788
  msgstr ""
1789
 
1790
- #: ../admin/social_login.php:227
1791
  #, php-format
1792
  msgid ""
1793
  "Required for Twitter Social Login to work. Please follow the documentation "
1794
  "at <a href=\"%s\" target=\"_blank\">this link</a> to get Twitter API Secret"
1795
  msgstr ""
1796
 
1797
- #: ../admin/social_login.php:242
1798
  msgid "LinkedIn Client ID"
1799
  msgstr ""
1800
 
1801
- #: ../admin/social_login.php:252
1802
  #, php-format
1803
  msgid ""
1804
  "Required for LinkedIn Social Login to work. Please follow the documentation "
1805
  "at <a href=\"%s\" target=\"_blank\">this link</a> to get LinkedIn Client ID"
1806
  msgstr ""
1807
 
1808
- #: ../admin/social_login.php:254 ../admin/social_login.php:275
1809
  msgid ""
1810
  "Paste following url in <strong>Redirect URLs</strong> option mentioned at "
1811
  "the link"
1812
  msgstr ""
1813
 
1814
- #: ../admin/social_login.php:263
1815
  msgid "LinkedIn Client Secret"
1816
  msgstr ""
1817
 
1818
- #: ../admin/social_login.php:273
1819
  #, php-format
1820
  msgid ""
1821
  "Required for LinkedIn Social Login to work. Please follow the documentation "
@@ -1823,39 +1832,39 @@ msgid ""
1823
  "Secret"
1824
  msgstr ""
1825
 
1826
- #: ../admin/social_login.php:284
1827
  msgid "Google Client ID"
1828
  msgstr ""
1829
 
1830
- #: ../admin/social_login.php:294
1831
  #, php-format
1832
  msgid ""
1833
  "Required for Google Social Login to work. Please follow the documentation at "
1834
  "<a href=\"%s\" target=\"_blank\">this link</a> to get Google Client ID"
1835
  msgstr ""
1836
 
1837
- #: ../admin/social_login.php:296 ../admin/social_login.php:317
1838
  msgid ""
1839
  "Paste following url in <strong>AUTHORIZED REDIRECT URI</strong> option "
1840
  "mentioned at the link"
1841
  msgstr ""
1842
 
1843
- #: ../admin/social_login.php:305
1844
  msgid "Google Client Secret"
1845
  msgstr ""
1846
 
1847
- #: ../admin/social_login.php:315
1848
  #, php-format
1849
  msgid ""
1850
  "Required for Google Social Login to work. Please follow the documentation at "
1851
  "<a href=\"%s\" target=\"_blank\">this link</a> to get Google Client Secret"
1852
  msgstr ""
1853
 
1854
- #: ../admin/social_login.php:326
1855
  msgid "Vkontakte Application ID"
1856
  msgstr ""
1857
 
1858
- #: ../admin/social_login.php:336 ../admin/social_login.php:357
1859
  #, php-format
1860
  msgid ""
1861
  "Required for Vkontakte Social Login to work. Please follow the documentation "
@@ -1863,88 +1872,112 @@ msgid ""
1863
  "Application ID"
1864
  msgstr ""
1865
 
1866
- #: ../admin/social_login.php:338 ../admin/social_login.php:359
1867
  msgid ""
1868
  "Paste following url in <strong>Site address</strong> option mentioned at the "
1869
  "link"
1870
  msgstr ""
1871
 
1872
- #: ../admin/social_login.php:347
1873
  msgid "Vkontakte Secure key"
1874
  msgstr ""
1875
 
1876
- #: ../admin/social_login.php:368
1877
  msgid "Instagram App ID"
1878
  msgstr ""
1879
 
1880
- #: ../admin/social_login.php:378
1881
  #, php-format
1882
  msgid ""
1883
  "Required for Instagram Social Login to work. Please follow the documentation "
1884
  "at <a href=\"%s\" target=\"_blank\">this link</a> to get Instagram App ID"
1885
  msgstr ""
1886
 
1887
- #: ../admin/social_login.php:380 ../admin/social_login.php:401
1888
  msgid ""
1889
  "Paste following url in <strong>Valid OAuth Redirect URIs</strong> option "
1890
  "mentioned at the link"
1891
  msgstr ""
1892
 
1893
- #: ../admin/social_login.php:389
1894
  msgid "Instagram App Secret"
1895
  msgstr ""
1896
 
1897
- #: ../admin/social_login.php:399
1898
  #, php-format
1899
  msgid ""
1900
  "Required for Instagram Social Login to work. Please follow the documentation "
1901
  "at <a href=\"%s\" target=\"_blank\">this link</a> to get Instagram App Secret"
1902
  msgstr ""
1903
 
1904
- #: ../admin/social_login.php:410
1905
  msgid "Line Channel ID"
1906
  msgstr ""
1907
 
1908
- #: ../admin/social_login.php:419
1909
  #, php-format
1910
  msgid ""
1911
  "Required for Line Social Login to work. Please follow the documentation at "
1912
  "<a href=\"%s\" target=\"_blank\">this link</a> to get Line Channel ID"
1913
  msgstr ""
1914
 
1915
- #: ../admin/social_login.php:430
1916
  msgid "Line Channel Secret"
1917
  msgstr ""
1918
 
1919
- #: ../admin/social_login.php:439
1920
  #, php-format
1921
  msgid ""
1922
  "Required for Line Social Login to work. Please follow the documentation at "
1923
  "<a href=\"%s\" target=\"_blank\">this link</a> to get Line Channel Secret"
1924
  msgstr ""
1925
 
1926
- #: ../admin/social_login.php:450
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1927
  msgid "Microsoft Client ID"
1928
  msgstr ""
1929
 
1930
- #: ../admin/social_login.php:459
1931
  #, php-format
1932
  msgid ""
1933
  "Required for Live Social Login to work. Please follow the documentation at "
1934
  "<a href=\"%s\" target=\"_blank\">this link</a> to get Microsoft Client ID"
1935
  msgstr ""
1936
 
1937
- #: ../admin/social_login.php:461 ../admin/social_login.php:481
 
1938
  msgid ""
1939
  "Paste following url in <strong>Redirect URIs</strong> option mentioned at "
1940
  "the link"
1941
  msgstr ""
1942
 
1943
- #: ../admin/social_login.php:470
1944
  msgid "Microsoft Client Secret"
1945
  msgstr ""
1946
 
1947
- #: ../admin/social_login.php:479
1948
  #, php-format
1949
  msgid ""
1950
  "Required for Live Social Login to work. Please follow the documentation at "
@@ -1952,241 +1985,263 @@ msgid ""
1952
  "Secret key"
1953
  msgstr ""
1954
 
1955
- #: ../admin/social_login.php:489
1956
  msgid "Steam API Key"
1957
  msgstr ""
1958
 
1959
- #: ../admin/social_login.php:498
1960
  #, php-format
1961
  msgid ""
1962
  "Required for Steam Social Login to work. Get it at <a href=\"%s\" target="
1963
  "\"_blank\">this link</a>"
1964
  msgstr ""
1965
 
1966
- #: ../admin/social_login.php:499
1967
  msgid "Save following <strong>domain</strong> to get the key"
1968
  msgstr ""
1969
 
1970
- #: ../admin/social_login.php:515
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1971
  msgid "Social Login Options"
1972
  msgstr ""
1973
 
1974
- #: ../admin/social_login.php:530
1975
  msgid "Text to display above the Social Login interface"
1976
  msgstr ""
1977
 
1978
- #: ../admin/social_login.php:538
1979
  msgid "Trigger social login in the same browser tab"
1980
  msgstr ""
1981
 
1982
- #: ../admin/social_login.php:548
1983
  msgid "Trigger social login in the same browser tab instead of a popup window"
1984
  msgstr ""
1985
 
1986
- #: ../admin/social_login.php:555
1987
  msgid "Center align icons"
1988
  msgstr ""
1989
 
1990
- #: ../admin/social_login.php:565
1991
  msgid "Center align social login icons"
1992
  msgstr ""
1993
 
1994
- #: ../admin/social_login.php:572
1995
  msgid "Enable at login page"
1996
  msgstr ""
1997
 
1998
- #: ../admin/social_login.php:582
1999
  msgid ""
2000
  "Social Login interface will get enabled at the login page of your website"
2001
  msgstr ""
2002
 
2003
- #: ../admin/social_login.php:589
2004
  msgid "Enable at register page"
2005
  msgstr ""
2006
 
2007
- #: ../admin/social_login.php:599
2008
  msgid ""
2009
  "Social Login interface will get enabled at the registration page of your "
2010
  "website"
2011
  msgstr ""
2012
 
2013
- #: ../admin/social_login.php:606
2014
  msgid "Enable at comment form"
2015
  msgstr ""
2016
 
2017
- #: ../admin/social_login.php:616
2018
  msgid "Social Login interface will get enabled at your Wordpress Comment form"
2019
  msgstr ""
2020
 
2021
- #: ../admin/social_login.php:630
2022
  msgid "Enable before WooCommerce Customer Login Form"
2023
  msgstr ""
2024
 
2025
- #: ../admin/social_login.php:640
2026
  msgid ""
2027
  "Social Login Interface will get enabled before the customer login form at "
2028
  "WooCommerce My Account page"
2029
  msgstr ""
2030
 
2031
- #: ../admin/social_login.php:647
2032
  msgid "Enable at WooCommerce Customer Login Form"
2033
  msgstr ""
2034
 
2035
- #: ../admin/social_login.php:657
2036
  msgid ""
2037
  "Integrate Social Login Interface with the customer login form at WooCommerce "
2038
  "My Account page"
2039
  msgstr ""
2040
 
2041
- #: ../admin/social_login.php:664
2042
  msgid "Enable at WooCommerce Customer Register Form"
2043
  msgstr ""
2044
 
2045
- #: ../admin/social_login.php:674
2046
  msgid ""
2047
  "Integrate Social Login Interface with the customer register form at "
2048
  "WooCommerce My Account page"
2049
  msgstr ""
2050
 
2051
- #: ../admin/social_login.php:681
2052
  msgid "Enable at WooCommerce checkout page"
2053
  msgstr ""
2054
 
2055
- #: ../admin/social_login.php:691
2056
  msgid "Social Login Interface will get enabled at WooCommerce checkout page"
2057
  msgstr ""
2058
 
2059
- #: ../admin/social_login.php:701
2060
  msgid "Auto-approve comments made by Social Login users"
2061
  msgstr ""
2062
 
2063
- #: ../admin/social_login.php:711
2064
  msgid ""
2065
  "If this option is enabled, and WordPress comment is made by Social Login "
2066
  "user, comment will get approved immediately without keeping in moderation."
2067
  msgstr ""
2068
 
2069
- #: ../admin/social_login.php:712
2070
  msgid "Note: This is not related to Facebook comments"
2071
  msgstr ""
2072
 
2073
- #: ../admin/social_login.php:721
2074
  msgid "Enable social avatar"
2075
  msgstr ""
2076
 
2077
- #: ../admin/social_login.php:731
2078
  msgid ""
2079
  "Social profile pictures of the logged in user will be displayed as profile "
2080
  "avatar"
2081
  msgstr ""
2082
 
2083
- #: ../admin/social_login.php:740
2084
  msgid "Avatar quality"
2085
  msgstr ""
2086
 
2087
- #: ../admin/social_login.php:743
2088
  msgid "Average"
2089
  msgstr ""
2090
 
2091
- #: ../admin/social_login.php:744
2092
  msgid "Best"
2093
  msgstr ""
2094
 
2095
- #: ../admin/social_login.php:751
2096
  msgid "Choose avatar quality"
2097
  msgstr ""
2098
 
2099
- #: ../admin/social_login.php:759
2100
  msgid ""
2101
  "Show option for users to update social avatar at BuddyPress profile page"
2102
  msgstr ""
2103
 
2104
- #: ../admin/social_login.php:769
2105
  msgid ""
2106
  "If enabled, users would be able to update their social avatar from \"Profile "
2107
  "photo\" section in BuddyPress profile at front-end"
2108
  msgstr ""
2109
 
2110
- #: ../admin/social_login.php:789
2111
  msgid ""
2112
  "If enabled and Social ID provider does not provide user's email address on "
2113
  "login, user will be asked to provide his/her email address. Otherwise, a "
2114
  "dummy email will be generated"
2115
  msgstr ""
2116
 
2117
- #: ../admin/social_login.php:797
2118
  msgid "Send post-registration email to user to set account password"
2119
  msgstr ""
2120
 
2121
- #: ../admin/social_login.php:807
2122
  msgid ""
2123
  "If enabled, an email will be sent to user after registration through Social "
2124
  "Login, regarding his/her login credentials (username-password to be able to "
2125
  "login via traditional login form)"
2126
  msgstr ""
2127
 
2128
- #: ../admin/social_login.php:814
2129
  msgid "Send new user registration notification email to admin"
2130
  msgstr ""
2131
 
2132
- #: ../admin/social_login.php:824
2133
  msgid ""
2134
  "If enabled, an email will be sent to admin after new user registers through "
2135
  "Social Login, notifying admin about the new user registration"
2136
  msgstr ""
2137
 
2138
- #: ../admin/social_login.php:831
2139
  msgid "Login redirection"
2140
  msgstr ""
2141
 
2142
- #: ../admin/social_login.php:835
2143
  msgid "Same page where user logged in"
2144
  msgstr ""
2145
 
2146
- #: ../admin/social_login.php:839 ../admin/social_login.php:868
2147
  msgid "Account dashboard"
2148
  msgstr ""
2149
 
2150
- #: ../admin/social_login.php:842 ../admin/social_login.php:871
2151
  msgid "BuddyPress profile page"
2152
  msgstr ""
2153
 
2154
- #: ../admin/social_login.php:845 ../admin/social_login.php:874
2155
  msgid "Custom Url"
2156
  msgstr ""
2157
 
2158
- #: ../admin/social_login.php:853
2159
  msgid "User will be redirected to the selected page after Social Login"
2160
  msgstr ""
2161
 
2162
- #: ../admin/social_login.php:860
2163
  msgid "Registration redirection"
2164
  msgstr ""
2165
 
2166
- #: ../admin/social_login.php:864
2167
  msgid "Same page from where user registered"
2168
  msgstr ""
2169
 
2170
- #: ../admin/social_login.php:882
2171
  msgid ""
2172
  "User will be redirected to the selected page after registration (first "
2173
  "Social Login) through Social Login"
2174
  msgstr ""
2175
 
2176
- #: ../admin/social_login.php:891
2177
  msgid "Social Account Linking Options"
2178
  msgstr ""
2179
 
2180
- #: ../admin/social_login.php:906
2181
  msgid "Text to display above the Social Account Linking interface"
2182
  msgstr ""
2183
 
2184
- #: ../admin/social_login.php:913
2185
  msgid ""
2186
  "Link social account to already existing account, if email address matches"
2187
  msgstr ""
2188
 
2189
- #: ../admin/social_login.php:923
2190
  msgid ""
2191
  "If email address of the user's Social Account matches with an already "
2192
  "existing account at your website, that social account will be linked to "
@@ -2194,155 +2249,155 @@ msgid ""
2194
  "Linking interface at their profile page."
2195
  msgstr ""
2196
 
2197
- #: ../admin/social_login.php:931
2198
  msgid "Enable social account linking at BuddyPress profile page"
2199
  msgstr ""
2200
 
2201
- #: ../admin/social_login.php:941
2202
  msgid ""
2203
  "Enable this option to show social account linking interface at BuddyPress "
2204
  "profile page"
2205
  msgstr ""
2206
 
2207
- #: ../admin/social_login.php:952
2208
  msgid "Email popup options"
2209
  msgstr ""
2210
 
2211
- #: ../admin/social_login.php:957
2212
  msgid "Text on 'Email required' popup"
2213
  msgstr ""
2214
 
2215
- #: ../admin/social_login.php:967
2216
  msgid ""
2217
  "This text will be displayed on email required popup. Leave empty if not "
2218
  "required."
2219
  msgstr ""
2220
 
2221
- #: ../admin/social_login.php:975
2222
  msgid "Error message for 'Email required' popup"
2223
  msgstr ""
2224
 
2225
- #: ../admin/social_login.php:985
2226
  msgid ""
2227
  "This message will be displayed to user if it provides invalid or already "
2228
  "registered email"
2229
  msgstr ""
2230
 
2231
- #: ../admin/social_login.php:993
2232
  msgid "Email popup height"
2233
  msgstr ""
2234
 
2235
- #: ../admin/social_login.php:1003
2236
  msgid ""
2237
  "If you are seeing vertical scrollbar in the \"Email required\" popup, you "
2238
  "can increase the height of popup by specifying in this option. Leave empty "
2239
  "for default."
2240
  msgstr ""
2241
 
2242
- #: ../admin/social_login.php:1010
2243
  msgid "Enable email verification"
2244
  msgstr ""
2245
 
2246
- #: ../admin/social_login.php:1020
2247
  msgid ""
2248
  "If enabled, email provided by the user will be verified by sending a "
2249
  "confirmation link to that email. User would not be able to login without "
2250
  "verifying his/her email"
2251
  msgstr ""
2252
 
2253
- #: ../admin/social_login.php:1040
2254
  msgid "Enable GDPR opt-in"
2255
  msgstr ""
2256
 
2257
- #: ../admin/social_login.php:1050
2258
  msgid ""
2259
  "Enable it to show GDPR opt-in for social login and social account linking"
2260
  msgstr ""
2261
 
2262
- #: ../admin/social_login.php:1058
2263
  msgid "Placement of GDPR opt-in"
2264
  msgstr ""
2265
 
2266
- #: ../admin/social_login.php:1062
2267
  msgid "Above Social Login icons"
2268
  msgstr ""
2269
 
2270
- #: ../admin/social_login.php:1064
2271
  msgid "Below Social Login icons"
2272
  msgstr ""
2273
 
2274
- #: ../admin/social_login.php:1070
2275
  msgid "Placement of GDPR opt-in above or below the social login icons"
2276
  msgstr ""
2277
 
2278
- #: ../admin/social_login.php:1077
2279
  msgid "Opt-in text"
2280
  msgstr ""
2281
 
2282
- #: ../admin/social_login.php:1087
2283
  msgid "Text for the GDPR opt-in"
2284
  msgstr ""
2285
 
2286
- #: ../admin/social_login.php:1094
2287
  msgid "Text to link to Terms-Conditions page"
2288
  msgstr ""
2289
 
2290
- #: ../admin/social_login.php:1104
2291
  msgid "Word(s) in the opt-in text to be linked to terms-conditions page"
2292
  msgstr ""
2293
 
2294
- #: ../admin/social_login.php:1111
2295
  msgid "Terms-Conditions Url"
2296
  msgstr ""
2297
 
2298
- #: ../admin/social_login.php:1121
2299
  msgid "Url of the terms-conditions page of your website"
2300
  msgstr ""
2301
 
2302
- #: ../admin/social_login.php:1128
2303
  msgid "Text to link to Privacy Policy page"
2304
  msgstr ""
2305
 
2306
- #: ../admin/social_login.php:1138
2307
  msgid "Word(s) in the opt-in text to be linked to privacy policy page"
2308
  msgstr ""
2309
 
2310
- #: ../admin/social_login.php:1145
2311
  msgid "Privacy Policy Url"
2312
  msgstr ""
2313
 
2314
- #: ../admin/social_login.php:1155
2315
  msgid "Url of the privacy policy page of your website"
2316
  msgstr ""
2317
 
2318
- #: ../admin/social_login.php:1206 ../inc/widget.php:260 ../inc/widget.php:438
2319
  #: ../inc/widget.php:602 ../inc/widget.php:750
2320
  msgid "Select"
2321
  msgstr ""
2322
 
2323
- #: ../admin/social_login.php:1237
2324
  msgid "Social Login Shortcode & Widget"
2325
  msgstr ""
2326
 
2327
- #: ../admin/social_login.php:1238
2328
  msgid "Social Linking Shortcode"
2329
  msgstr ""
2330
 
2331
- #: ../admin/social_login.php:1253
2332
  msgid "Why is social login not working?"
2333
  msgstr ""
2334
 
2335
- #: ../admin/social_login.php:1254
2336
  msgid ""
2337
  "Make sure that App ID and Secret (Client ID and Secret) keys you have saved, "
2338
  "belong to the same app"
2339
  msgstr ""
2340
 
2341
- #: ../admin/social_login.php:1256
2342
  msgid "Social Login not working with Varnish enabled"
2343
  msgstr ""
2344
 
2345
- #: ../admin/social_login.php:1257
2346
  msgid ""
2347
  "Why the user is not appearing logged in even after Social Login until the "
2348
  "webpage is refreshed manually?"
@@ -2530,27 +2585,27 @@ msgstr ""
2530
  msgid "Providers not selected"
2531
  msgstr ""
2532
 
2533
- #: ../inc/social_login.php:747
2534
  msgid "Email"
2535
  msgstr ""
2536
 
2537
- #: ../inc/social_login.php:748
2538
  msgid "Confirm email"
2539
  msgstr ""
2540
 
2541
- #: ../inc/social_login.php:750
2542
  msgid "Save"
2543
  msgstr ""
2544
 
2545
- #: ../inc/social_login.php:751
2546
  msgid "Cancel"
2547
  msgstr ""
2548
 
2549
- #: ../inc/social_login.php:825
2550
  msgid "Email Verification"
2551
  msgstr ""
2552
 
2553
- #: ../inc/social_login.php:827
2554
  msgid ""
2555
  "Please click on the following link or paste it in browser to verify your "
2556
  "email"
2
  msgstr ""
3
  "Project-Id-Version: Super Socializer\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2020-09-23 09:47+0530\n"
6
+ "PO-Revision-Date: 2020-09-23 09:47+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:667
19
  msgid "Problem fetching access token: "
20
  msgstr ""
21
 
22
+ #: ../super_socializer.php:671 ../super_socializer.php:685
23
  msgid "Facebook SDK returned an error: "
24
  msgstr ""
25
 
26
+ #: ../super_socializer.php:681
27
  msgid "Graph returned an error: "
28
  msgstr ""
29
 
30
+ #: ../super_socializer.php:870
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:898
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:901
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:904
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:1086 ../helper.php:961
57
  msgid "Please verify your email address to login."
58
  msgstr ""
59
 
60
+ #: ../super_socializer.php:1086
61
  msgid "Your email has been verified. Now you can login to your account"
62
  msgstr ""
63
 
64
+ #: ../super_socializer.php:1090
65
  msgid "Notification"
66
  msgstr ""
67
 
68
+ #: ../super_socializer.php:1108 ../admin/social_login.php:869
69
  msgid "Email required"
70
  msgstr ""
71
 
72
+ #: ../super_socializer.php:1111
73
  msgid "Please check your email inbox to complete the registration."
74
  msgstr ""
75
 
76
+ #: ../super_socializer.php:1180
77
  msgid "Leave a reply"
78
  msgstr ""
79
 
80
+ #: ../super_socializer.php:1196 ../inc/social_sharing.php:241
81
  msgid "Shares"
82
  msgstr ""
83
 
84
+ #: ../super_socializer.php:1196 ../inc/social_sharing.php:241
85
  msgid "Share"
86
  msgstr ""
87
 
88
+ #: ../super_socializer.php:1196
89
  msgid "Link copied."
90
  msgstr ""
91
 
92
+ #: ../super_socializer.php:1441
93
  msgid "Super Socializer - General Options"
94
  msgstr ""
95
 
96
+ #: ../super_socializer.php:1441 ../admin/general_options.php:15
97
  #: ../admin/social_commenting.php:47
98
  msgid "General Options"
99
  msgstr ""
100
 
101
+ #: ../super_socializer.php:1509 ../helper.php:883
102
  msgid "Social Avatar"
103
  msgstr ""
104
 
105
+ #: ../super_socializer.php:1512
106
  msgid "Small Avatar Url"
107
  msgstr ""
108
 
109
+ #: ../super_socializer.php:1516
110
  msgid "Large Avatar Url"
111
  msgstr ""
112
 
113
+ #: ../super_socializer.php:1520 ../helper.php:886
114
  msgid ""
115
  "Do not fetch and update social avatar from my profile, next time I Social "
116
  "Login"
117
  msgstr ""
118
 
119
+ #: ../super_socializer.php:1524 ../helper.php:887
120
  msgid "Update social avatar, next time I Social Login"
121
  msgstr ""
122
 
123
+ #: ../super_socializer.php:1601
124
  msgid "Login with your Social ID"
125
  msgstr ""
126
 
127
+ #: ../super_socializer.php:1602
128
  msgid "Email you entered is already registered or invalid"
129
  msgstr ""
130
 
131
+ #: ../super_socializer.php:1607
132
  msgid "Please enter a valid email address. You might be required to verify it"
133
  msgstr ""
134
 
135
+ #: ../super_socializer.php:1611 ../super_socializer.php:2309
136
  msgid "Link your social account to login to your account at this website"
137
  msgstr ""
138
 
139
+ #: ../super_socializer.php:1851
140
  msgid "Thanks for installing Super Socializer plugin"
141
  msgstr ""
142
 
143
+ #: ../super_socializer.php:1853
144
  msgid "Configure the Plugin"
145
  msgstr ""
146
 
147
+ #: ../super_socializer.php:1864
148
  msgid ""
149
  "Update \"Facebook Comments Moderation\" add-on for compatibility with "
150
  "current version of Super Socializer"
151
  msgstr ""
152
 
153
+ #: ../super_socializer.php:1873
154
  msgid ""
155
  "Update \"Facebook Comments Notifier\" add-on for compatibility with current "
156
  "version of Super Socializer"
157
  msgstr ""
158
 
159
+ #: ../super_socializer.php:1882
160
  msgid ""
161
  "Update \"Social Login Buttons\" add-on for compatibility with current "
162
  "version of Super Socializer"
163
  msgstr ""
164
 
165
+ #: ../super_socializer.php:1891
166
  msgid ""
167
  "Update \"Social Share myCRED Integration\" add-on for maximum compatibility "
168
  "with current version of Super Socializer"
169
  msgstr ""
170
 
171
+ #: ../super_socializer.php:1900
172
  msgid ""
173
  "Update \"Social Login myCRED Integration\" add-on for maximum compatibility "
174
  "with current version of Super Socializer"
175
  msgstr ""
176
 
177
+ #: ../super_socializer.php:1911
178
  #, php-format
179
  msgid ""
180
  "To continue using Steam login save Steam API key <a href=\"%s\">here</a>"
181
  msgstr ""
182
 
183
+ #: ../super_socializer.php:1920
184
  #, php-format
185
  msgid ""
186
  "To continue using Instagram login create a new Instagram App as described <a "
188
  "Instagram App Secret <a href=\"%s\">here</a>"
189
  msgstr ""
190
 
191
+ #: ../super_socializer.php:1929 ../super_socializer.php:1938
192
  #, php-format
193
  msgid ""
194
  "To continue using bitly url shortener, login to your bit.ly account and "
197
  "\">here</a>. More details at the <a href=\"%s\" target=\"_blank\">link</a>"
198
  msgstr ""
199
 
200
+ #: ../super_socializer.php:1954
201
  #, php-format
202
  msgid ""
203
  "To continue using Social Login, save the secret keys <a href=\"%s\">here</a>"
204
  msgstr ""
205
 
206
+ #: ../super_socializer.php:1978
207
  #, php-format
208
  msgid ""
209
  "Add %s in \"Valid OAuth redirect URIs\" option in your Facebook app settings "
211
  "target=\"_blank\">here</a>"
212
  msgstr ""
213
 
214
+ #: ../super_socializer.php:1978 ../super_socializer.php:2003
215
+ #: ../super_socializer.php:2028 ../super_socializer.php:2053
216
+ #: ../super_socializer.php:2086 ../super_socializer.php:2114
217
+ #: ../super_socializer.php:2141
218
  msgid "Okay"
219
  msgstr ""
220
 
221
+ #: ../super_socializer.php:2003
222
  #, php-format
223
  msgid ""
224
  "Add %s in \"Callback URLs\" option in your Twitter app settings for Twitter "
226
  "\">here</a>"
227
  msgstr ""
228
 
229
+ #: ../super_socializer.php:2028
230
  #, php-format
231
  msgid ""
232
  "Add %s in \"Authorized Redirect URLs\" option in your Linkedin app settings "
234
  "target=\"_blank\">here</a>"
235
  msgstr ""
236
 
237
+ #: ../super_socializer.php:2053
238
  #, php-format
239
  msgid ""
240
  "Add %s in \"Authorized redirect URIs\" option in your Google client settings "
242
  "target=\"_blank\">here</a>"
243
  msgstr ""
244
 
245
+ #: ../super_socializer.php:2064
246
  #, php-format
247
  msgid ""
248
  "Save the url of privacy policy page of your website <a href=\"%s\">here</a>"
249
  msgstr ""
250
 
251
+ #: ../super_socializer.php:2086
252
  #, php-format
253
  msgid ""
254
  "This plugin is GDPR compliant. You need to update the privacy policy of your "
256
  "\"%s\" target=\"_blank\">here</a>"
257
  msgstr ""
258
 
259
+ #: ../super_socializer.php:2114
260
  #, php-format
261
  msgid ""
262
  "Now plugin supports a new service Twitcount.com to show Twitter shares. To "
265
  "your website %s with them. No need to copy-paste any code from their website."
266
  msgstr ""
267
 
268
+ #: ../super_socializer.php:2141
269
  #, php-format
270
  msgid ""
271
  "Replace url saved in \"Callback URLs\" option in your Twitter app settings "
273
  "\"%s\" target=\"_blank\">here</a>"
274
  msgstr ""
275
 
276
+ #: ../super_socializer.php:2166
277
  #, php-format
278
  msgid ""
279
  "If you cannot get Linkedin login to work after updating the plugin, replace "
281
  "For more details, check step 6 <a href=\"%s\" target=\"_blank\">here</a>"
282
  msgstr ""
283
 
284
+ #: ../super_socializer.php:2166 ../super_socializer.php:2193
285
  msgid "Dismiss"
286
  msgstr ""
287
 
288
+ #: ../super_socializer.php:2192
289
  #, php-format
290
  msgid ""
291
  "Save Facebook App ID and Secret keys in \"Standard Interface\" and/or "
294
  "that, clear share counts cache from \"Miscellaneous\" section"
295
  msgstr ""
296
 
297
+ #: ../super_socializer.php:2385
298
  msgid ""
299
  "Your browser is blocking some features of this website. Please follow the "
300
  "instructions at {support_url} to unblock these."
394
 
395
  #: ../helper.php:898 ../admin/general_options.php:89
396
  #: ../admin/social_sharing.php:1944 ../admin/social_commenting.php:400
397
+ #: ../admin/social_login.php:1359 ../admin/like_buttons.php:780
398
  msgid "Save Changes"
399
  msgstr ""
400
 
417
  #: ../admin/general_options.php:7 ../admin/general_options.php:93
418
  #: ../admin/social_sharing.php:5 ../admin/social_sharing.php:1948
419
  #: ../admin/social_commenting.php:5 ../admin/social_commenting.php:404
420
+ #: ../admin/social_login.php:5 ../admin/social_login.php:1363
421
  #: ../admin/like_buttons.php:6 ../admin/like_buttons.php:784
422
  #, php-format
423
  msgid ""
463
  msgstr ""
464
 
465
  #: ../admin/general_options.php:103 ../admin/social_sharing.php:1954
466
+ #: ../admin/social_commenting.php:410 ../admin/social_login.php:1369
467
  #: ../admin/like_buttons.php:790
468
  msgid "Instagram Shoutout"
469
  msgstr ""
470
 
471
  #: ../admin/general_options.php:105 ../admin/social_sharing.php:1956
472
+ #: ../admin/social_commenting.php:412 ../admin/social_login.php:1371
473
  #: ../admin/like_buttons.php:792
474
  msgid ""
475
  "If you can send (to hello@heateor.com) how this plugin is helping your "
601
 
602
  #: ../admin/social_sharing.php:67 ../admin/social_sharing.php:1869
603
  #: ../admin/social_sharing.php:1871 ../admin/social_login.php:45
604
+ #: ../admin/social_login.php:1325 ../admin/like_buttons.php:50
605
  #: ../admin/like_buttons.php:751
606
  msgid "Shortcode & Widget"
607
  msgstr ""
612
 
613
  #: ../admin/social_sharing.php:69 ../admin/social_sharing.php:1902
614
  #: ../admin/social_commenting.php:40 ../admin/social_commenting.php:384
615
+ #: ../admin/social_login.php:46 ../admin/social_login.php:1339
616
  #: ../admin/like_buttons.php:51 ../admin/like_buttons.php:764
617
  msgid "FAQ"
618
  msgstr ""
832
  msgid "Url to share"
833
  msgstr ""
834
 
835
+ #: ../admin/social_sharing.php:725 ../admin/social_login.php:610
836
+ #: ../admin/social_login.php:986 ../admin/like_buttons.php:105
837
  #: ../inc/widget.php:945
838
  msgid "Title"
839
  msgstr ""
916
  msgstr ""
917
 
918
  #: ../admin/social_sharing.php:957 ../admin/social_sharing.php:1383
919
+ #: ../admin/social_login.php:927 ../admin/social_login.php:956
920
  #: ../admin/like_buttons.php:218 ../admin/like_buttons.php:494
921
  msgid "Homepage"
922
  msgstr ""
1152
  msgid "Required only to track Facebook share count"
1153
  msgstr ""
1154
 
1155
+ #: ../admin/social_sharing.php:1584 ../admin/social_login.php:158
1156
  msgid "Facebook App ID"
1157
  msgstr ""
1158
 
1163
  "at <a href=\"%s\" target=\"_blank\">this link</a> to get Facebook App ID"
1164
  msgstr ""
1165
 
1166
+ #: ../admin/social_sharing.php:1601 ../admin/social_login.php:179
1167
  msgid "Facebook App Secret"
1168
  msgstr ""
1169
 
1331
  msgstr ""
1332
 
1333
  #: ../admin/social_sharing.php:1904 ../admin/social_commenting.php:386
1334
+ #: ../admin/social_login.php:1341
1335
  msgid ""
1336
  "<strong>Note:</strong> Plugin will not work on local server. You should have "
1337
  "an online website for the plugin to function properly."
1385
  msgstr ""
1386
 
1387
  #: ../admin/social_sharing.php:1919 ../admin/social_commenting.php:389
1388
+ #: ../admin/social_login.php:1348
1389
  msgid "Why is my browser blocking some features of the plugin?"
1390
  msgstr ""
1391
 
1668
  msgid "Advanced Configuration"
1669
  msgstr ""
1670
 
1671
+ #: ../admin/social_login.php:41 ../admin/social_login.php:1125
1672
  msgid "GDPR"
1673
  msgstr ""
1674
 
1675
+ #: ../admin/social_login.php:43 ../admin/social_login.php:1276
1676
  msgid "XProfile Integration"
1677
  msgstr ""
1678
 
1734
  msgstr ""
1735
 
1736
  #: ../admin/social_login.php:135
1737
+ msgid "Wordpress"
1738
+ msgstr ""
1739
+
1740
+ #: ../admin/social_login.php:139
1741
  msgid "Windows Live"
1742
  msgstr ""
1743
 
1744
  #: ../admin/social_login.php:143
1745
+ msgid "Yahoo"
1746
+ msgstr ""
1747
+
1748
+ #: ../admin/social_login.php:151
1749
  msgid "Select Social ID provider to enable in Social Login"
1750
  msgstr ""
1751
 
1752
+ #: ../admin/social_login.php:168
1753
  #, php-format
1754
  msgid ""
1755
  "Required for Facebook Social Login to work. Please follow the documentation "
1756
  "at <a href=\"%s\" target=\"_blank\">this link</a> to get Facebook App ID"
1757
  msgstr ""
1758
 
1759
+ #: ../admin/social_login.php:170 ../admin/social_login.php:191
1760
  msgid ""
1761
  "Paste following url in <strong>Site URL</strong> option mentioned at the link"
1762
  msgstr ""
1763
 
1764
+ #: ../admin/social_login.php:189
1765
  #, php-format
1766
  msgid ""
1767
  "Required for Facebook Social Login to work. Please follow the documentation "
1768
  "at <a href=\"%s\" target=\"_blank\">this link</a> to get Facebook App Secret"
1769
  msgstr ""
1770
 
1771
+ #: ../admin/social_login.php:200
1772
  msgid "Twitter API Key"
1773
  msgstr ""
1774
 
1775
+ #: ../admin/social_login.php:210
1776
  #, php-format
1777
  msgid ""
1778
  "Required for Twitter Social Login to work. Please follow the documentation "
1779
  "at <a href=\"%s\" target=\"_blank\">this link</a> to get Twitter API Key"
1780
  msgstr ""
1781
 
1782
+ #: ../admin/social_login.php:212 ../admin/social_login.php:237
1783
  msgid ""
1784
  "Paste following url in <strong>Website</strong> option mentioned at the link"
1785
  msgstr ""
1786
 
1787
+ #: ../admin/social_login.php:216 ../admin/social_login.php:241
1788
+ #: ../admin/social_login.php:429 ../admin/social_login.php:449
1789
+ #: ../admin/social_login.php:469 ../admin/social_login.php:489
1790
  msgid ""
1791
  "Paste following url in <strong>Callback URL</strong> option mentioned at the "
1792
  "link"
1793
  msgstr ""
1794
 
1795
+ #: ../admin/social_login.php:225
1796
  msgid "Twitter API Secret"
1797
  msgstr ""
1798
 
1799
+ #: ../admin/social_login.php:235
1800
  #, php-format
1801
  msgid ""
1802
  "Required for Twitter Social Login to work. Please follow the documentation "
1803
  "at <a href=\"%s\" target=\"_blank\">this link</a> to get Twitter API Secret"
1804
  msgstr ""
1805
 
1806
+ #: ../admin/social_login.php:250
1807
  msgid "LinkedIn Client ID"
1808
  msgstr ""
1809
 
1810
+ #: ../admin/social_login.php:260
1811
  #, php-format
1812
  msgid ""
1813
  "Required for LinkedIn Social Login to work. Please follow the documentation "
1814
  "at <a href=\"%s\" target=\"_blank\">this link</a> to get LinkedIn Client ID"
1815
  msgstr ""
1816
 
1817
+ #: ../admin/social_login.php:262 ../admin/social_login.php:283
1818
  msgid ""
1819
  "Paste following url in <strong>Redirect URLs</strong> option mentioned at "
1820
  "the link"
1821
  msgstr ""
1822
 
1823
+ #: ../admin/social_login.php:271
1824
  msgid "LinkedIn Client Secret"
1825
  msgstr ""
1826
 
1827
+ #: ../admin/social_login.php:281
1828
  #, php-format
1829
  msgid ""
1830
  "Required for LinkedIn Social Login to work. Please follow the documentation "
1832
  "Secret"
1833
  msgstr ""
1834
 
1835
+ #: ../admin/social_login.php:292
1836
  msgid "Google Client ID"
1837
  msgstr ""
1838
 
1839
+ #: ../admin/social_login.php:302
1840
  #, php-format
1841
  msgid ""
1842
  "Required for Google Social Login to work. Please follow the documentation at "
1843
  "<a href=\"%s\" target=\"_blank\">this link</a> to get Google Client ID"
1844
  msgstr ""
1845
 
1846
+ #: ../admin/social_login.php:304 ../admin/social_login.php:325
1847
  msgid ""
1848
  "Paste following url in <strong>AUTHORIZED REDIRECT URI</strong> option "
1849
  "mentioned at the link"
1850
  msgstr ""
1851
 
1852
+ #: ../admin/social_login.php:313
1853
  msgid "Google Client Secret"
1854
  msgstr ""
1855
 
1856
+ #: ../admin/social_login.php:323
1857
  #, php-format
1858
  msgid ""
1859
  "Required for Google Social Login to work. Please follow the documentation at "
1860
  "<a href=\"%s\" target=\"_blank\">this link</a> to get Google Client Secret"
1861
  msgstr ""
1862
 
1863
+ #: ../admin/social_login.php:334
1864
  msgid "Vkontakte Application ID"
1865
  msgstr ""
1866
 
1867
+ #: ../admin/social_login.php:344 ../admin/social_login.php:365
1868
  #, php-format
1869
  msgid ""
1870
  "Required for Vkontakte Social Login to work. Please follow the documentation "
1872
  "Application ID"
1873
  msgstr ""
1874
 
1875
+ #: ../admin/social_login.php:346 ../admin/social_login.php:367
1876
  msgid ""
1877
  "Paste following url in <strong>Site address</strong> option mentioned at the "
1878
  "link"
1879
  msgstr ""
1880
 
1881
+ #: ../admin/social_login.php:355
1882
  msgid "Vkontakte Secure key"
1883
  msgstr ""
1884
 
1885
+ #: ../admin/social_login.php:376
1886
  msgid "Instagram App ID"
1887
  msgstr ""
1888
 
1889
+ #: ../admin/social_login.php:386
1890
  #, php-format
1891
  msgid ""
1892
  "Required for Instagram Social Login to work. Please follow the documentation "
1893
  "at <a href=\"%s\" target=\"_blank\">this link</a> to get Instagram App ID"
1894
  msgstr ""
1895
 
1896
+ #: ../admin/social_login.php:388 ../admin/social_login.php:409
1897
  msgid ""
1898
  "Paste following url in <strong>Valid OAuth Redirect URIs</strong> option "
1899
  "mentioned at the link"
1900
  msgstr ""
1901
 
1902
+ #: ../admin/social_login.php:397
1903
  msgid "Instagram App Secret"
1904
  msgstr ""
1905
 
1906
+ #: ../admin/social_login.php:407
1907
  #, php-format
1908
  msgid ""
1909
  "Required for Instagram Social Login to work. Please follow the documentation "
1910
  "at <a href=\"%s\" target=\"_blank\">this link</a> to get Instagram App Secret"
1911
  msgstr ""
1912
 
1913
+ #: ../admin/social_login.php:418
1914
  msgid "Line Channel ID"
1915
  msgstr ""
1916
 
1917
+ #: ../admin/social_login.php:427
1918
  #, php-format
1919
  msgid ""
1920
  "Required for Line Social Login to work. Please follow the documentation at "
1921
  "<a href=\"%s\" target=\"_blank\">this link</a> to get Line Channel ID"
1922
  msgstr ""
1923
 
1924
+ #: ../admin/social_login.php:438
1925
  msgid "Line Channel Secret"
1926
  msgstr ""
1927
 
1928
+ #: ../admin/social_login.php:447
1929
  #, php-format
1930
  msgid ""
1931
  "Required for Line Social Login to work. Please follow the documentation at "
1932
  "<a href=\"%s\" target=\"_blank\">this link</a> to get Line Channel Secret"
1933
  msgstr ""
1934
 
1935
+ #: ../admin/social_login.php:458
1936
+ msgid "Wordpress Client ID"
1937
+ msgstr ""
1938
+
1939
+ #: ../admin/social_login.php:467
1940
+ #, php-format
1941
+ msgid ""
1942
+ "Required for Wordpress Social Login to work. Please follow the documentation "
1943
+ "at <a href=\"%s\" target=\"_blank\">this link</a> to get Wordpress Client ID"
1944
+ msgstr ""
1945
+
1946
+ #: ../admin/social_login.php:478
1947
+ msgid "Wordpress Client Secret"
1948
+ msgstr ""
1949
+
1950
+ #: ../admin/social_login.php:487
1951
+ #, php-format
1952
+ msgid ""
1953
+ "Required for Wordpress Social Login to work. Please follow the documentation "
1954
+ "at <a href=\"%s\" target=\"_blank\">this link</a> to get Wordpress Client "
1955
+ "Secret"
1956
+ msgstr ""
1957
+
1958
+ #: ../admin/social_login.php:498
1959
  msgid "Microsoft Client ID"
1960
  msgstr ""
1961
 
1962
+ #: ../admin/social_login.php:507
1963
  #, php-format
1964
  msgid ""
1965
  "Required for Live Social Login to work. Please follow the documentation at "
1966
  "<a href=\"%s\" target=\"_blank\">this link</a> to get Microsoft Client ID"
1967
  msgstr ""
1968
 
1969
+ #: ../admin/social_login.php:509 ../admin/social_login.php:529
1970
+ #: ../admin/social_login.php:567 ../admin/social_login.php:587
1971
  msgid ""
1972
  "Paste following url in <strong>Redirect URIs</strong> option mentioned at "
1973
  "the link"
1974
  msgstr ""
1975
 
1976
+ #: ../admin/social_login.php:518
1977
  msgid "Microsoft Client Secret"
1978
  msgstr ""
1979
 
1980
+ #: ../admin/social_login.php:527
1981
  #, php-format
1982
  msgid ""
1983
  "Required for Live Social Login to work. Please follow the documentation at "
1985
  "Secret key"
1986
  msgstr ""
1987
 
1988
+ #: ../admin/social_login.php:537
1989
  msgid "Steam API Key"
1990
  msgstr ""
1991
 
1992
+ #: ../admin/social_login.php:546
1993
  #, php-format
1994
  msgid ""
1995
  "Required for Steam Social Login to work. Get it at <a href=\"%s\" target="
1996
  "\"_blank\">this link</a>"
1997
  msgstr ""
1998
 
1999
+ #: ../admin/social_login.php:547
2000
  msgid "Save following <strong>domain</strong> to get the key"
2001
  msgstr ""
2002
 
2003
+ #: ../admin/social_login.php:556
2004
+ msgid "Yahoo Client ID"
2005
+ msgstr ""
2006
+
2007
+ #: ../admin/social_login.php:565
2008
+ #, php-format
2009
+ msgid ""
2010
+ "Required for Yahoo Social Login to work. Please follow the documentation at "
2011
+ "<a href=\"%s\" target=\"_blank\">this link</a> to get Yahoo Client ID"
2012
+ msgstr ""
2013
+
2014
+ #: ../admin/social_login.php:576
2015
+ msgid "Yahoo Client Secret"
2016
+ msgstr ""
2017
+
2018
+ #: ../admin/social_login.php:585
2019
+ #, php-format
2020
+ msgid ""
2021
+ "Required for Yahoo Social Login to work. Please follow the documentation at "
2022
+ "<a href=\"%s\" target=\"_blank\">this link</a> to get Yahoo Client Secret key"
2023
+ msgstr ""
2024
+
2025
+ #: ../admin/social_login.php:605
2026
  msgid "Social Login Options"
2027
  msgstr ""
2028
 
2029
+ #: ../admin/social_login.php:620
2030
  msgid "Text to display above the Social Login interface"
2031
  msgstr ""
2032
 
2033
+ #: ../admin/social_login.php:628
2034
  msgid "Trigger social login in the same browser tab"
2035
  msgstr ""
2036
 
2037
+ #: ../admin/social_login.php:638
2038
  msgid "Trigger social login in the same browser tab instead of a popup window"
2039
  msgstr ""
2040
 
2041
+ #: ../admin/social_login.php:645
2042
  msgid "Center align icons"
2043
  msgstr ""
2044
 
2045
+ #: ../admin/social_login.php:655
2046
  msgid "Center align social login icons"
2047
  msgstr ""
2048
 
2049
+ #: ../admin/social_login.php:662
2050
  msgid "Enable at login page"
2051
  msgstr ""
2052
 
2053
+ #: ../admin/social_login.php:672
2054
  msgid ""
2055
  "Social Login interface will get enabled at the login page of your website"
2056
  msgstr ""
2057
 
2058
+ #: ../admin/social_login.php:679
2059
  msgid "Enable at register page"
2060
  msgstr ""
2061
 
2062
+ #: ../admin/social_login.php:689
2063
  msgid ""
2064
  "Social Login interface will get enabled at the registration page of your "
2065
  "website"
2066
  msgstr ""
2067
 
2068
+ #: ../admin/social_login.php:696
2069
  msgid "Enable at comment form"
2070
  msgstr ""
2071
 
2072
+ #: ../admin/social_login.php:706
2073
  msgid "Social Login interface will get enabled at your Wordpress Comment form"
2074
  msgstr ""
2075
 
2076
+ #: ../admin/social_login.php:720
2077
  msgid "Enable before WooCommerce Customer Login Form"
2078
  msgstr ""
2079
 
2080
+ #: ../admin/social_login.php:730
2081
  msgid ""
2082
  "Social Login Interface will get enabled before the customer login form at "
2083
  "WooCommerce My Account page"
2084
  msgstr ""
2085
 
2086
+ #: ../admin/social_login.php:737
2087
  msgid "Enable at WooCommerce Customer Login Form"
2088
  msgstr ""
2089
 
2090
+ #: ../admin/social_login.php:747
2091
  msgid ""
2092
  "Integrate Social Login Interface with the customer login form at WooCommerce "
2093
  "My Account page"
2094
  msgstr ""
2095
 
2096
+ #: ../admin/social_login.php:754
2097
  msgid "Enable at WooCommerce Customer Register Form"
2098
  msgstr ""
2099
 
2100
+ #: ../admin/social_login.php:764
2101
  msgid ""
2102
  "Integrate Social Login Interface with the customer register form at "
2103
  "WooCommerce My Account page"
2104
  msgstr ""
2105
 
2106
+ #: ../admin/social_login.php:771
2107
  msgid "Enable at WooCommerce checkout page"
2108
  msgstr ""
2109
 
2110
+ #: ../admin/social_login.php:781
2111
  msgid "Social Login Interface will get enabled at WooCommerce checkout page"
2112
  msgstr ""
2113
 
2114
+ #: ../admin/social_login.php:791
2115
  msgid "Auto-approve comments made by Social Login users"
2116
  msgstr ""
2117
 
2118
+ #: ../admin/social_login.php:801
2119
  msgid ""
2120
  "If this option is enabled, and WordPress comment is made by Social Login "
2121
  "user, comment will get approved immediately without keeping in moderation."
2122
  msgstr ""
2123
 
2124
+ #: ../admin/social_login.php:802
2125
  msgid "Note: This is not related to Facebook comments"
2126
  msgstr ""
2127
 
2128
+ #: ../admin/social_login.php:811
2129
  msgid "Enable social avatar"
2130
  msgstr ""
2131
 
2132
+ #: ../admin/social_login.php:821
2133
  msgid ""
2134
  "Social profile pictures of the logged in user will be displayed as profile "
2135
  "avatar"
2136
  msgstr ""
2137
 
2138
+ #: ../admin/social_login.php:830
2139
  msgid "Avatar quality"
2140
  msgstr ""
2141
 
2142
+ #: ../admin/social_login.php:833
2143
  msgid "Average"
2144
  msgstr ""
2145
 
2146
+ #: ../admin/social_login.php:834
2147
  msgid "Best"
2148
  msgstr ""
2149
 
2150
+ #: ../admin/social_login.php:841
2151
  msgid "Choose avatar quality"
2152
  msgstr ""
2153
 
2154
+ #: ../admin/social_login.php:849
2155
  msgid ""
2156
  "Show option for users to update social avatar at BuddyPress profile page"
2157
  msgstr ""
2158
 
2159
+ #: ../admin/social_login.php:859
2160
  msgid ""
2161
  "If enabled, users would be able to update their social avatar from \"Profile "
2162
  "photo\" section in BuddyPress profile at front-end"
2163
  msgstr ""
2164
 
2165
+ #: ../admin/social_login.php:879
2166
  msgid ""
2167
  "If enabled and Social ID provider does not provide user's email address on "
2168
  "login, user will be asked to provide his/her email address. Otherwise, a "
2169
  "dummy email will be generated"
2170
  msgstr ""
2171
 
2172
+ #: ../admin/social_login.php:887
2173
  msgid "Send post-registration email to user to set account password"
2174
  msgstr ""
2175
 
2176
+ #: ../admin/social_login.php:897
2177
  msgid ""
2178
  "If enabled, an email will be sent to user after registration through Social "
2179
  "Login, regarding his/her login credentials (username-password to be able to "
2180
  "login via traditional login form)"
2181
  msgstr ""
2182
 
2183
+ #: ../admin/social_login.php:904
2184
  msgid "Send new user registration notification email to admin"
2185
  msgstr ""
2186
 
2187
+ #: ../admin/social_login.php:914
2188
  msgid ""
2189
  "If enabled, an email will be sent to admin after new user registers through "
2190
  "Social Login, notifying admin about the new user registration"
2191
  msgstr ""
2192
 
2193
+ #: ../admin/social_login.php:921
2194
  msgid "Login redirection"
2195
  msgstr ""
2196
 
2197
+ #: ../admin/social_login.php:925
2198
  msgid "Same page where user logged in"
2199
  msgstr ""
2200
 
2201
+ #: ../admin/social_login.php:929 ../admin/social_login.php:958
2202
  msgid "Account dashboard"
2203
  msgstr ""
2204
 
2205
+ #: ../admin/social_login.php:932 ../admin/social_login.php:961
2206
  msgid "BuddyPress profile page"
2207
  msgstr ""
2208
 
2209
+ #: ../admin/social_login.php:935 ../admin/social_login.php:964
2210
  msgid "Custom Url"
2211
  msgstr ""
2212
 
2213
+ #: ../admin/social_login.php:943
2214
  msgid "User will be redirected to the selected page after Social Login"
2215
  msgstr ""
2216
 
2217
+ #: ../admin/social_login.php:950
2218
  msgid "Registration redirection"
2219
  msgstr ""
2220
 
2221
+ #: ../admin/social_login.php:954
2222
  msgid "Same page from where user registered"
2223
  msgstr ""
2224
 
2225
+ #: ../admin/social_login.php:972
2226
  msgid ""
2227
  "User will be redirected to the selected page after registration (first "
2228
  "Social Login) through Social Login"
2229
  msgstr ""
2230
 
2231
+ #: ../admin/social_login.php:981
2232
  msgid "Social Account Linking Options"
2233
  msgstr ""
2234
 
2235
+ #: ../admin/social_login.php:996
2236
  msgid "Text to display above the Social Account Linking interface"
2237
  msgstr ""
2238
 
2239
+ #: ../admin/social_login.php:1003
2240
  msgid ""
2241
  "Link social account to already existing account, if email address matches"
2242
  msgstr ""
2243
 
2244
+ #: ../admin/social_login.php:1013
2245
  msgid ""
2246
  "If email address of the user's Social Account matches with an already "
2247
  "existing account at your website, that social account will be linked to "
2249
  "Linking interface at their profile page."
2250
  msgstr ""
2251
 
2252
+ #: ../admin/social_login.php:1021
2253
  msgid "Enable social account linking at BuddyPress profile page"
2254
  msgstr ""
2255
 
2256
+ #: ../admin/social_login.php:1031
2257
  msgid ""
2258
  "Enable this option to show social account linking interface at BuddyPress "
2259
  "profile page"
2260
  msgstr ""
2261
 
2262
+ #: ../admin/social_login.php:1042
2263
  msgid "Email popup options"
2264
  msgstr ""
2265
 
2266
+ #: ../admin/social_login.php:1047
2267
  msgid "Text on 'Email required' popup"
2268
  msgstr ""
2269
 
2270
+ #: ../admin/social_login.php:1057
2271
  msgid ""
2272
  "This text will be displayed on email required popup. Leave empty if not "
2273
  "required."
2274
  msgstr ""
2275
 
2276
+ #: ../admin/social_login.php:1065
2277
  msgid "Error message for 'Email required' popup"
2278
  msgstr ""
2279
 
2280
+ #: ../admin/social_login.php:1075
2281
  msgid ""
2282
  "This message will be displayed to user if it provides invalid or already "
2283
  "registered email"
2284
  msgstr ""
2285
 
2286
+ #: ../admin/social_login.php:1083
2287
  msgid "Email popup height"
2288
  msgstr ""
2289
 
2290
+ #: ../admin/social_login.php:1093
2291
  msgid ""
2292
  "If you are seeing vertical scrollbar in the \"Email required\" popup, you "
2293
  "can increase the height of popup by specifying in this option. Leave empty "
2294
  "for default."
2295
  msgstr ""
2296
 
2297
+ #: ../admin/social_login.php:1100
2298
  msgid "Enable email verification"
2299
  msgstr ""
2300
 
2301
+ #: ../admin/social_login.php:1110
2302
  msgid ""
2303
  "If enabled, email provided by the user will be verified by sending a "
2304
  "confirmation link to that email. User would not be able to login without "
2305
  "verifying his/her email"
2306
  msgstr ""
2307
 
2308
+ #: ../admin/social_login.php:1130
2309
  msgid "Enable GDPR opt-in"
2310
  msgstr ""
2311
 
2312
+ #: ../admin/social_login.php:1140
2313
  msgid ""
2314
  "Enable it to show GDPR opt-in for social login and social account linking"
2315
  msgstr ""
2316
 
2317
+ #: ../admin/social_login.php:1148
2318
  msgid "Placement of GDPR opt-in"
2319
  msgstr ""
2320
 
2321
+ #: ../admin/social_login.php:1152
2322
  msgid "Above Social Login icons"
2323
  msgstr ""
2324
 
2325
+ #: ../admin/social_login.php:1154
2326
  msgid "Below Social Login icons"
2327
  msgstr ""
2328
 
2329
+ #: ../admin/social_login.php:1160
2330
  msgid "Placement of GDPR opt-in above or below the social login icons"
2331
  msgstr ""
2332
 
2333
+ #: ../admin/social_login.php:1167
2334
  msgid "Opt-in text"
2335
  msgstr ""
2336
 
2337
+ #: ../admin/social_login.php:1177
2338
  msgid "Text for the GDPR opt-in"
2339
  msgstr ""
2340
 
2341
+ #: ../admin/social_login.php:1184
2342
  msgid "Text to link to Terms-Conditions page"
2343
  msgstr ""
2344
 
2345
+ #: ../admin/social_login.php:1194
2346
  msgid "Word(s) in the opt-in text to be linked to terms-conditions page"
2347
  msgstr ""
2348
 
2349
+ #: ../admin/social_login.php:1201
2350
  msgid "Terms-Conditions Url"
2351
  msgstr ""
2352
 
2353
+ #: ../admin/social_login.php:1211
2354
  msgid "Url of the terms-conditions page of your website"
2355
  msgstr ""
2356
 
2357
+ #: ../admin/social_login.php:1218
2358
  msgid "Text to link to Privacy Policy page"
2359
  msgstr ""
2360
 
2361
+ #: ../admin/social_login.php:1228
2362
  msgid "Word(s) in the opt-in text to be linked to privacy policy page"
2363
  msgstr ""
2364
 
2365
+ #: ../admin/social_login.php:1235
2366
  msgid "Privacy Policy Url"
2367
  msgstr ""
2368
 
2369
+ #: ../admin/social_login.php:1245
2370
  msgid "Url of the privacy policy page of your website"
2371
  msgstr ""
2372
 
2373
+ #: ../admin/social_login.php:1296 ../inc/widget.php:260 ../inc/widget.php:438
2374
  #: ../inc/widget.php:602 ../inc/widget.php:750
2375
  msgid "Select"
2376
  msgstr ""
2377
 
2378
+ #: ../admin/social_login.php:1327
2379
  msgid "Social Login Shortcode & Widget"
2380
  msgstr ""
2381
 
2382
+ #: ../admin/social_login.php:1328
2383
  msgid "Social Linking Shortcode"
2384
  msgstr ""
2385
 
2386
+ #: ../admin/social_login.php:1343
2387
  msgid "Why is social login not working?"
2388
  msgstr ""
2389
 
2390
+ #: ../admin/social_login.php:1344
2391
  msgid ""
2392
  "Make sure that App ID and Secret (Client ID and Secret) keys you have saved, "
2393
  "belong to the same app"
2394
  msgstr ""
2395
 
2396
+ #: ../admin/social_login.php:1346
2397
  msgid "Social Login not working with Varnish enabled"
2398
  msgstr ""
2399
 
2400
+ #: ../admin/social_login.php:1347
2401
  msgid ""
2402
  "Why the user is not appearing logged in even after Social Login until the "
2403
  "webpage is refreshed manually?"
2585
  msgid "Providers not selected"
2586
  msgstr ""
2587
 
2588
+ #: ../inc/social_login.php:792
2589
  msgid "Email"
2590
  msgstr ""
2591
 
2592
+ #: ../inc/social_login.php:793
2593
  msgid "Confirm email"
2594
  msgstr ""
2595
 
2596
+ #: ../inc/social_login.php:795
2597
  msgid "Save"
2598
  msgstr ""
2599
 
2600
+ #: ../inc/social_login.php:796
2601
  msgid "Cancel"
2602
  msgstr ""
2603
 
2604
+ #: ../inc/social_login.php:870
2605
  msgid "Email Verification"
2606
  msgstr ""
2607
 
2608
+ #: ../inc/social_login.php:872
2609
  msgid ""
2610
  "Please click on the following link or paste it in browser to verify your "
2611
  "email"
readme.txt CHANGED
@@ -1,10 +1,10 @@
1
  === WordPress Social Share, Social Login and Social Comments Plugin - Super Socializer ===
2
  Contributors: Heateor, farhan8heateor, jatin8heateor, the_champ, Hungarian Translator: László Tavaszi http://kerekmese.hu, Chinese Translator: CalmSmile calmsmile.org, Portuguese Translator: Paulo Purkyt https://www.linkedin.com/in/ppurkyt, Italian Translator: FG3D (Freedom's Gate) https://fg3d.net, Spanish translator: Ignacio Iglesias http://trespies.com, Arabic Translator: http://www.ArabsSM.com, Russian/Ukrainian Translator: Nicholas Lagunov
3
  Donate link: https://www.heateor.com/donate?action=Super+Socializer
4
- Tags: social login, social share, line login, social commenting, social comments, social plugin, profile data, social analytics, online identity, social profile storage, single sign-on, social media follow, facebook login, Windows Live Login, Microsoft Login
5
  Requires at least: 2.5.0
6
- Tested up to: 5.5
7
- Stable tag: 7.12.50
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
@@ -15,8 +15,9 @@ Integrate Social Login, Social Share and Social Comments at your website easiest
15
  **Note:**
16
  1. Plugin will not work on local server. You should have an online website for the plugin to function properly.
17
  2. If you want to integrate only Facebook Login button, you should install <a target="_blank" href="https://wordpress.org/plugins/heateor-login/">Heateor Login</a>
18
- 3. If you want to integrate only Facebook Comments, you should install <a target="_blank" href="https://wordpress.org/plugins/fancy-facebook-comments/">Fancy Comments</a>
19
- 4. If you want to integrate only Social Share, you should install <a target="_blank" href="https://wordpress.org/plugins/sassy-social-share">Sassy Social Share</a>
 
20
 
21
  = Feature list =
22
  * GDPR Compliant
@@ -42,7 +43,7 @@ Integrate Social Login, Social Share and Social Comments at your website easiest
42
  * Mobile responsive sharing interface
43
  * Compatible with AMP
44
  * Enable/Disable vertical/floating sharing interface on mobile device
45
- * Social Login from 7 Social Networks - Facebook, Google, Linkedin, Twitter, Vkontakte, Line, Windows Live (Microsoft) and Steam
46
  * Enable Social Login interface at WordPress Login, Register pages and comment form
47
  * Syncs user's basic social profile data with WordPress profile
48
  * Enable Social Login at WooCommerce checkout page and customer login form
@@ -211,6 +212,11 @@ Yes, we can help you with it. Just drop an email at support[ at ]heateor[ dot ]c
211
  8. **Social Commenting**: Disqus Commenting selected
212
 
213
  == Changelog ==
 
 
 
 
 
214
  = 7.12.50 [20 August 2020] =
215
  [Improvement] Admin UI improvements
216
 
@@ -2093,4 +2099,9 @@ Yes, we can help you with it. Just drop an email at support[ at ]heateor[ dot ]c
2093
  [Bugfix] Instagram login was not triggering Instagram login form in the social login popup
2094
 
2095
  = 7.12.50 [20 August 2020] =
2096
- [Improvement] Admin UI improvements
 
 
 
 
 
1
  === WordPress Social Share, Social Login and Social Comments Plugin - Super Socializer ===
2
  Contributors: Heateor, farhan8heateor, jatin8heateor, the_champ, Hungarian Translator: László Tavaszi http://kerekmese.hu, Chinese Translator: CalmSmile calmsmile.org, Portuguese Translator: Paulo Purkyt https://www.linkedin.com/in/ppurkyt, Italian Translator: FG3D (Freedom's Gate) https://fg3d.net, Spanish translator: Ignacio Iglesias http://trespies.com, Arabic Translator: http://www.ArabsSM.com, Russian/Ukrainian Translator: Nicholas Lagunov
3
  Donate link: https://www.heateor.com/donate?action=Super+Socializer
4
+ Tags: social login, social share, line login, social commenting, social comments, social plugin, profile data, social analytics, online identity, social profile storage, single sign-on, social media follow, facebook login, Windows Live Login, Microsoft Login, Wordpress login, Yahoo login
5
  Requires at least: 2.5.0
6
+ Tested up to: 5.5.1
7
+ Stable tag: 7.13
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
15
  **Note:**
16
  1. Plugin will not work on local server. You should have an online website for the plugin to function properly.
17
  2. If you want to integrate only Facebook Login button, you should install <a target="_blank" href="https://wordpress.org/plugins/heateor-login/">Heateor Login</a>
18
+ 3. If you want to integrate only Social Login buttons, you should install <a target="_blank" href="https://wordpress.org/plugins/heateor-social-login/">Heateor Social Login</a>
19
+ 4. If you want to integrate only Facebook Comments, you should install <a target="_blank" href="https://wordpress.org/plugins/fancy-facebook-comments/">Fancy Comments</a>
20
+ 5. If you want to integrate only Social Share, you should install <a target="_blank" href="https://wordpress.org/plugins/sassy-social-share">Sassy Social Share</a>
21
 
22
  = Feature list =
23
  * GDPR Compliant
43
  * Mobile responsive sharing interface
44
  * Compatible with AMP
45
  * Enable/Disable vertical/floating sharing interface on mobile device
46
+ * Social Login from 7 Social Networks - Facebook, Google, Linkedin, Twitter, Vkontakte, Line, Windows Live (Microsoft), Yahoo, WordPress and Steam
47
  * Enable Social Login interface at WordPress Login, Register pages and comment form
48
  * Syncs user's basic social profile data with WordPress profile
49
  * Enable Social Login at WooCommerce checkout page and customer login form
212
  8. **Social Commenting**: Disqus Commenting selected
213
 
214
  == Changelog ==
215
+ = 7.13 [23 September 2020] =
216
+ [New] Added WordPress and Yahoo in the social login networks
217
+ [Improvement] Usernames for BuddyPress have now firstname-lastname format instead of just firstname
218
+ [Improvement] Code improvement
219
+
220
  = 7.12.50 [20 August 2020] =
221
  [Improvement] Admin UI improvements
222
 
2099
  [Bugfix] Instagram login was not triggering Instagram login form in the social login popup
2100
 
2101
  = 7.12.50 [20 August 2020] =
2102
+ [Improvement] Admin UI improvements
2103
+
2104
+ = 7.13 [23 September 2020] =
2105
+ [New] Added WordPress and Yahoo in the social login networks
2106
+ [Improvement] Usernames for BuddyPress have now firstname-lastname format instead of just firstname
2107
+ [Improvement] Code improvement
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.50
7
  Author: Team Heateor
8
  Author URI: https://www.heateor.com
9
  Text Domain: super-socializer
@@ -11,13 +11,13 @@ Domain Path: /languages
11
  License: GPL2+
12
  */
13
  defined('ABSPATH') or die("Cheating........Uh!!");
14
- define('THE_CHAMP_SS_VERSION', '7.12.50');
15
 
16
  require 'helper.php';
17
 
18
  $theChampLoginOptions = get_option('the_champ_login');
19
  if(the_champ_social_login_enabled()){
20
- if(isset($theChampLoginOptions['providers']) && in_array('twitter', $theChampLoginOptions['providers'])){
21
  require 'library/Twitter/src/Config.php';
22
  require 'library/Twitter/src/Response.php';
23
  require 'library/Twitter/src/SignatureMethod.php';
@@ -30,7 +30,7 @@ if(the_champ_social_login_enabled()){
30
  require 'library/Twitter/src/Util/JsonDecoder.php';
31
  require 'library/Twitter/src/TwitterOAuth.php';
32
  }
33
- if(isset($theChampLoginOptions['providers']) && in_array('steam', $theChampLoginOptions['providers'])){
34
  require 'library/SteamLogin/SteamLogin.php';
35
  $theChampSteamLogin = new SteamLogin();
36
  }
@@ -196,7 +196,7 @@ function the_champ_connect(){
196
  $response = wp_remote_get('https://graph.instagram.com/'.$body->user_id.'?fields=ig_id,account_type,id,username&access_token='.$body->access_token, array('timeout' => 15));
197
 
198
  if(!is_wp_error($response) && isset($response['response']['code']) && 200 === $response['response']['code']){
199
- $profileData = json_decode(wp_remote_retrieve_body( $response ));
200
 
201
  if(is_object($profileData) && isset($profileData->id)){
202
  $profileData = the_champ_sanitize_profile_data($profileData, 'instagram');
@@ -209,9 +209,9 @@ function the_champ_connect(){
209
  if(is_array($response) && isset($response['message']) && $response['message'] == 'register' && (!isset($response['url']) || $response['url'] == '')){
210
  $redirectTo = the_champ_get_login_redirection_url($instagramRedirectUrl, true);
211
  }elseif(isset($response['message']) && $response['message'] == 'linked'){
212
- $redirectTo = $instagramRedirectUrl . ( strpos( $instagramRedirectUrl, '?' ) !== false ? '&' : '?' ) . 'linked=1';
213
  }elseif(isset($response['message']) && $response['message'] == 'not linked'){
214
- $redirectTo = $instagramRedirectUrl . ( strpos( $instagramRedirectUrl, '?' ) !== false ? '&' : '?' ) . 'linked=0';
215
  }elseif(isset($response['url']) && $response['url'] != ''){
216
  $redirectTo = $response['url'];
217
  }else{
@@ -243,9 +243,9 @@ function the_champ_connect(){
243
  if(is_array($response) && isset($response['message']) && $response['message'] == 'register' && (!isset($response['url']) || $response['url'] == '')){
244
  $redirectTo = the_champ_get_login_redirection_url($steamRedirect, true);
245
  }elseif(isset($response['message']) && $response['message'] == 'linked'){
246
- $redirectTo = $steamRedirect . (strpos($steamRedirect, '?') !== false ? '&' : '?') . 'linked=1';
247
  }elseif(isset($response['message']) && $response['message'] == 'not linked'){
248
- $redirectTo = $steamRedirect . (strpos($steamRedirect, '?') !== false ? '&' : '?') . 'linked=0';
249
  }elseif(isset($response['url']) && $response['url'] != ''){
250
  $redirectTo = $response['url'];
251
  }else{
@@ -267,7 +267,7 @@ function the_champ_connect(){
267
  update_user_meta($linkedinAuthState, 'heateor_ss_linkedin_mc_sub', 1);
268
  }
269
  $linkedinScope = 'r_liteprofile,r_emailaddress';
270
- wp_redirect('https://www.linkedin.com/oauth/v2/authorization?response_type=code&client_id=' . $theChampLoginOptions['li_key'] . '&redirect_uri=' . urlencode(home_url() . '/?SuperSocializerAuth=Linkedin') . '&state='. $linkedinAuthState .'&scope=' . $linkedinScope);
271
  die;
272
  }
273
  if(isset($_GET['code']) && isset($_GET['state']) && ($linkedinRedirectUrl = get_user_meta(esc_attr(trim($_GET['state'])), 'heateor_ss_linkedin_auth_state', true))){
@@ -276,7 +276,7 @@ function the_champ_connect(){
276
  $data_access_token = array(
277
  'grant_type' => 'authorization_code',
278
  'code' => esc_attr(trim($_GET['code'])),
279
- 'redirect_uri' => home_url() . '/?SuperSocializerAuth=Linkedin',
280
  'client_id' => $theChampLoginOptions['li_key'],
281
  'client_secret' => $theChampLoginOptions['li_secret']
282
  );
@@ -312,8 +312,8 @@ function the_champ_connect(){
312
  if(is_object($firstLastNameBody) && isset($firstLastNameBody->id) && $firstLastNameBody->id && is_object($emailBody) && isset($emailBody->elements)){
313
  $firstLastNameBody = json_decode(json_encode($firstLastNameBody), true);
314
  $emailBody = json_decode(json_encode($emailBody), true);
315
- $firstName = isset($firstLastNameBody['firstName']) && isset($firstLastNameBody['firstName']['localized']) && isset($firstLastNameBody['firstName']['preferredLocale']) && isset($firstLastNameBody['firstName']['preferredLocale']['language']) && isset($firstLastNameBody['firstName']['preferredLocale']['country']) ? $firstLastNameBody['firstName']['localized'][$firstLastNameBody['firstName']['preferredLocale']['language'] . '_' . $firstLastNameBody['firstName']['preferredLocale']['country']] : '';
316
- $lastName = isset($firstLastNameBody['lastName']) && isset($firstLastNameBody['lastName']['localized']) && isset($firstLastNameBody['lastName']['preferredLocale']) && isset($firstLastNameBody['lastName']['preferredLocale']['language']) && isset($firstLastNameBody['lastName']['preferredLocale']['country']) ? $firstLastNameBody['lastName']['localized'][$firstLastNameBody['lastName']['preferredLocale']['language'] . '_' . $firstLastNameBody['lastName']['preferredLocale']['country']] : '';
317
  $smallAvatar = isset($firstLastNameBody['profilePicture']) && isset($firstLastNameBody['profilePicture']['displayImage~']) && isset($firstLastNameBody['profilePicture']['displayImage~']['elements']) && is_array($firstLastNameBody['profilePicture']['displayImage~']['elements']) && isset($firstLastNameBody['profilePicture']['displayImage~']['elements'][0]['identifiers']) && is_array($firstLastNameBody['profilePicture']['displayImage~']['elements'][0]['identifiers'][0]) && isset($firstLastNameBody['profilePicture']['displayImage~']['elements'][0]['identifiers'][0]['identifier']) ? $firstLastNameBody['profilePicture']['displayImage~']['elements'][0]['identifiers'][0]['identifier'] : '';
318
  $largeAvatar = isset($firstLastNameBody['profilePicture']) && isset($firstLastNameBody['profilePicture']['displayImage~']) && isset($firstLastNameBody['profilePicture']['displayImage~']['elements']) && is_array($firstLastNameBody['profilePicture']['displayImage~']['elements']) && isset($firstLastNameBody['profilePicture']['displayImage~']['elements'][3]['identifiers']) && is_array($firstLastNameBody['profilePicture']['displayImage~']['elements'][3]['identifiers'][0]) && isset($firstLastNameBody['profilePicture']['displayImage~']['elements'][3]['identifiers'][0]['identifier']) ? $firstLastNameBody['profilePicture']['displayImage~']['elements'][3]['identifiers'][0]['identifier'] : '';
319
  $emailAddress = isset($emailBody['elements']) && is_array($emailBody['elements']) && isset($emailBody['elements'][0]['handle~']) && isset($emailBody['elements'][0]['handle~']['emailAddress']) ? $emailBody['elements'][0]['handle~']['emailAddress'] : '';
@@ -335,9 +335,9 @@ function the_champ_connect(){
335
  if(is_array($response) && isset($response['message']) && $response['message'] == 'register' && (!isset($response['url']) || $response['url'] == '')){
336
  $redirectTo = the_champ_get_login_redirection_url($linkedinRedirectUrl, true);
337
  }elseif(isset($response['message']) && $response['message'] == 'linked'){
338
- $redirectTo = $linkedinRedirectUrl . (strpos($linkedinRedirectUrl, '?') !== false ? '&' : '?') . 'linked=1';
339
  }elseif(isset($response['message']) && $response['message'] == 'not linked'){
340
- $redirectTo = $linkedinRedirectUrl . (strpos($linkedinRedirectUrl, '?') !== false ? '&' : '?') . 'linked=0';
341
  }elseif(isset($response['url']) && $response['url'] != ''){
342
  $redirectTo = $response['url'];
343
  }else{
@@ -402,9 +402,9 @@ function the_champ_connect(){
402
  if(is_array($response) && isset($response['message']) && $response['message'] == 'register' && (!isset($response['url']) || $response['url'] == '')){
403
  $redirectTo = the_champ_get_login_redirection_url($lineRedirectUrl, true);
404
  }elseif(isset($response['message']) && $response['message'] == 'linked'){
405
- $redirectTo = $lineRedirectUrl . ( strpos( $lineRedirectUrl, '?' ) !== false ? '&' : '?' ) . 'linked=1';
406
  }elseif(isset($response['message']) && $response['message'] == 'not linked'){
407
- $redirectTo = $lineRedirectUrl . ( strpos( $lineRedirectUrl, '?' ) !== false ? '&' : '?' ) . 'linked=0';
408
  }elseif(isset($response['url']) && $response['url'] != ''){
409
  $redirectTo = $response['url'];
410
  }else{
@@ -414,6 +414,150 @@ function the_champ_connect(){
414
  }
415
  }
416
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
417
 
418
  // windows live
419
  if((isset($_GET['SuperSocializerAuth']) && sanitize_text_field($_GET['SuperSocializerAuth']) == 'Live')){
@@ -459,7 +603,7 @@ function the_champ_connect(){
459
  $response = wp_remote_get("https://apis.live.net/v5.0/me?access_token=".$body->access_token, array('timeout' => 15));
460
 
461
  if(!is_wp_error($response) && isset($response['response']['code']) && 200 === $response['response']['code']){
462
- $profileData = json_decode(wp_remote_retrieve_body( $response ));
463
 
464
  if(is_object($profileData) && isset($profileData->id)){
465
  $profileData = the_champ_sanitize_profile_data($profileData, 'microsoft');
@@ -472,9 +616,9 @@ function the_champ_connect(){
472
  if(is_array($response) && isset($response['message']) && $response['message'] == 'register' && (!isset($response['url']) || $response['url'] == '')){
473
  $redirectTo = the_champ_get_login_redirection_url($liveRedirectUrl, true);
474
  }elseif(isset($response['message']) && $response['message'] == 'linked'){
475
- $redirectTo = $liveRedirectUrl . ( strpos( $liveRedirectUrl, '?' ) !== false ? '&' : '?' ) . 'linked=1';
476
  }elseif(isset($response['message']) && $response['message'] == 'not linked'){
477
- $redirectTo = $liveRedirectUrl . ( strpos( $liveRedirectUrl, '?' ) !== false ? '&' : '?' ) . 'linked=0';
478
  }elseif(isset($response['url']) && $response['url'] != ''){
479
  $redirectTo = $response['url'];
480
  }else{
@@ -513,12 +657,12 @@ function the_champ_connect(){
513
 
514
  $permissions = array('email'); // Optional permissions
515
  if(!isset($_GET['code'])){
516
- $loginUrl = $helper->getLoginUrl(home_url() . '/?SuperSocializerAuth=Facebook', $permissions);
517
  wp_redirect($loginUrl);
518
  die;
519
  }else{
520
  try{
521
- $accessToken = $helper->getAccessToken(home_url() . '/?SuperSocializerAuth=Facebook');
522
  }catch(Facebook\Exceptions\FacebookResponseException $e){
523
  _e('Problem fetching access token: ', 'super-socializer');
524
  echo $e->getMessage();
@@ -555,9 +699,9 @@ function the_champ_connect(){
555
  if(is_array($response) && isset($response['message']) && $response['message'] == 'register' && (!isset($response['url']) || $response['url'] == '')){
556
  $redirectTo = the_champ_get_login_redirection_url($facebookRedirectUrl, true);
557
  }elseif(isset($response['message']) && $response['message'] == 'linked'){
558
- $redirectTo = $facebookRedirectUrl . (strpos($facebookRedirectUrl, '?') !== false ? '&' : '?') . 'linked=1';
559
  }elseif(isset($response['message']) && $response['message'] == 'not linked'){
560
- $redirectTo = $facebookRedirectUrl . (strpos($facebookRedirectUrl, '?') !== false ? '&' : '?') . 'linked=0';
561
  }elseif(isset($response['url']) && $response['url'] != ''){
562
  $redirectTo = $response['url'];
563
  }else{
@@ -610,7 +754,7 @@ function the_champ_connect(){
610
  if(!isset($_GET['code']) && !isset($_GET['state'])){
611
  $_SESSION['super_socializer_google_redirect'] = isset($_GET['super_socializer_redirect_to']) ? esc_url(trim($_GET['super_socializer_redirect_to'])) : esc_url(home_url());
612
  }
613
- $gpAuthUrl = $googleClient->createAuthUrl() . '&state=super_socializer_google';
614
  if(!isset($_GET['code']) && !isset($_GET['state'])){
615
  wp_redirect($gpAuthUrl);
616
  die;
@@ -643,9 +787,9 @@ function the_champ_connect(){
643
  if(is_array($response) && isset($response['message']) && $response['message'] == 'register' && (!isset($response['url']) || $response['url'] == '')){
644
  $redirectTo = the_champ_get_login_redirection_url($googleRedirectUrl, true);
645
  }elseif(isset($response['message']) && $response['message'] == 'linked'){
646
- $redirectTo = $googleRedirectUrl . (strpos($googleRedirectUrl, '?') !== false ? '&' : '?') . 'linked=1';
647
  }elseif(isset($response['message']) && $response['message'] == 'not linked'){
648
- $redirectTo = $googleRedirectUrl . (strpos($googleRedirectUrl, '?') !== false ? '&' : '?') . 'linked=0';
649
  }elseif(isset($response['url']) && $response['url'] != ''){
650
  $redirectTo = $response['url'];
651
  }else{
@@ -704,9 +848,9 @@ function the_champ_connect(){
704
  if(is_array($response) && isset($response['message']) && $response['message'] == 'register' && (!isset($response['url']) || $response['url'] == '')){
705
  $redirectTo = the_champ_get_login_redirection_url($vkontakteRedirectUrl, true);
706
  }elseif(isset($response['message']) && $response['message'] == 'linked'){
707
- $redirectTo = $vkontakteRedirectUrl . (strpos($vkontakteRedirectUrl, '?') !== false ? '&' : '?') . 'linked=1';
708
  }elseif(isset($response['message']) && $response['message'] == 'not linked'){
709
- $redirectTo = $vkontakteRedirectUrl . (strpos($vkontakteRedirectUrl, '?') !== false ? '&' : '?') . 'linked=0';
710
  }elseif(isset($response['url']) && $response['url'] != ''){
711
  $redirectTo = $response['url'];
712
  }else{
@@ -787,7 +931,7 @@ function the_champ_connect(){
787
  delete_user_meta($uniqueId, 'thechamp_twitter_oauthtokensecret');
788
  delete_user_meta($uniqueId, 'thechamp_twitter_oauthtoken');
789
  delete_user_meta($uniqueId, 'thechamp_twitter_redirect');
790
- if(is_object($content) && isset($content -> id)){
791
  $profileData = the_champ_sanitize_profile_data($content, 'twitter');
792
  if(get_user_meta($uniqueId, 'thechamp_mc_subscribe', true) != ''){
793
  $profileData['mc_subscribe'] = 1;
@@ -797,9 +941,9 @@ function the_champ_connect(){
797
  if(is_array($response) && isset($response['message']) && $response['message'] == 'register' && (!isset($response['url']) || $response['url'] == '')){
798
  $redirectTo = the_champ_get_login_redirection_url($twitterRedirectUrl, true);
799
  }elseif(isset($response['message']) && $response['message'] == 'linked'){
800
- $redirectTo = $twitterRedirectUrl . (strpos($twitterRedirectUrl, '?') !== false ? '&' : '?') . 'linked=1';
801
  }elseif(isset($response['message']) && $response['message'] == 'not linked'){
802
- $redirectTo = $twitterRedirectUrl . (strpos($twitterRedirectUrl, '?') !== false ? '&' : '?') . 'linked=0';
803
  }elseif(isset($response['url']) && $response['url'] != ''){
804
  $redirectTo = $response['url'];
805
  }else{
@@ -883,7 +1027,7 @@ function the_champ_get_login_redirection_url($twitterRedirect = '', $register =
883
  if($twitterRedirect != ''){
884
  $url = $twitterRedirect;
885
  }else{
886
- $url = html_entity_decode(esc_url($http.$_SERVER["HTTP_HOST"] . $_SERVER["REQUEST_URI"]));
887
  }
888
  $redirectionUrl = the_champ_get_valid_url($url);
889
  }elseif($theChampLoginOptions[$option.'_redirection'] == 'homepage'){
@@ -955,7 +1099,7 @@ function the_champ_frontend_scripts(){
955
  $emailPopup = true;
956
  $emailAjaxUrl = esc_url(add_query_arg(
957
  array(
958
- 'height' => isset($theChampLoginOptions['popup_height']) && $theChampLoginOptions['popup_height'] != '' ? esc_attr( $theChampLoginOptions['popup_height'] ) : 210,
959
  'width' => 300,
960
  'action' => 'the_champ_ask_email'
961
  ),
@@ -967,10 +1111,10 @@ function the_champ_frontend_scripts(){
967
  $emailPopupVerifyMessage = __('Please check your email inbox to complete the registration.', 'super-socializer');
968
  }
969
  global $theChampSteamLogin;
970
- $twitterRedirect = urlencode(the_champ_get_valid_url(html_entity_decode(esc_url(the_champ_get_http().$_SERVER["HTTP_HOST"] . $_SERVER["REQUEST_URI"]))));
971
  $currentPageUrl = urldecode($twitterRedirect);
972
  ?>
973
- <script> var theChampFBKey = '<?php echo $fbKey ?>', theChampSameTabLogin = '<?php echo isset($theChampLoginOptions["same_tab_login"]) ? 1 : 0; ?>', theChampVerified = <?php echo intval($userVerified) ?>; var theChampAjaxUrl = '<?php echo html_entity_decode(admin_url().$ajaxUrl) ?>'; var theChampPopupTitle = '<?php echo $notification; ?>'; var theChampEmailPopup = <?php echo intval($emailPopup); ?>; var theChampEmailAjaxUrl = '<?php echo html_entity_decode(admin_url().$emailAjaxUrl); ?>'; var theChampEmailPopupTitle = '<?php echo $emailPopupTitle; ?>'; var theChampEmailPopupErrorMsg = '<?php echo htmlspecialchars($emailPopupErrorMessage, ENT_QUOTES); ?>'; var theChampEmailPopupUniqueId = '<?php echo $emailPopupUniqueId; ?>'; var theChampEmailPopupVerifyMessage = '<?php echo $emailPopupVerifyMessage; ?>'; var theChampSteamAuthUrl = "<?php echo $theChampSteamLogin ? $theChampSteamLogin->url( esc_url(home_url()) . '?SuperSocializerSteamAuth=' . $twitterRedirect ) : ''; ?>"; var theChampTwitterRedirect = '<?php echo $twitterRedirect ?>'; <?php echo isset($theChampLoginOptions['disable_reg']) && isset($theChampLoginOptions['disable_reg_redirect']) && $theChampLoginOptions['disable_reg_redirect'] != '' ? 'var theChampDisableRegRedirect = "' . html_entity_decode(esc_url($theChampLoginOptions['disable_reg_redirect'])) . '";' : ''; ?> var heateorMSEnabled = 0; var theChampTwitterAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Twitter&super_socializer_redirect_to=" + theChampTwitterRedirect; var theChampLineAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Line&super_socializer_redirect_to=" + theChampTwitterRedirect; var theChampLiveAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Live&super_socializer_redirect_to=" + theChampTwitterRedirect; var theChampFacebookAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Facebook&super_socializer_redirect_to=" + theChampTwitterRedirect; var theChampGoogleAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Google&super_socializer_redirect_to=" + theChampTwitterRedirect; var theChampVkontakteAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Vkontakte&super_socializer_redirect_to=" + theChampTwitterRedirect; var theChampLinkedinAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Linkedin&super_socializer_redirect_to=" + theChampTwitterRedirect; var theChampInstagramAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Instagram&super_socializer_redirect_to=" + theChampTwitterRedirect;</script>
974
  <?php
975
  if(!$combinedScript){
976
  wp_enqueue_script('the_champ_sl_common', plugins_url('js/front/social_login/common.js', __FILE__), array('jquery'), THE_CHAMP_SS_VERSION, $inFooter);
@@ -981,7 +1125,7 @@ function the_champ_frontend_scripts(){
981
  // Facebook scripts
982
  if(the_champ_facebook_plugin_enabled()){
983
  ?>
984
- <script> var theChampFBKey = '<?php echo $fbKey ?>', theChampFBLang = '<?php echo (isset($theChampFacebookOptions["comment_lang"]) && $theChampFacebookOptions["comment_lang"] != '') ? $theChampFacebookOptions["comment_lang"] : get_locale() ?>', theChampFbLikeMycred = <?php echo defined( 'HEATEOR_SOCIAL_SHARE_MYCRED_INTEGRATION_VERSION' ) && the_champ_facebook_like_rec_enabled() ? 1 : 0 ?>, theChampSsga = <?php echo defined( 'HEATEOR_SHARING_GOOGLE_ANALYTICS_VERSION' ) ? 1 : 0 ?>, theChampCommentNotification = <?php echo (defined('HEATEOR_FB_COM_NOT_VERSION') && version_compare('1.1.4', HEATEOR_FB_COM_NOT_VERSION) > 0) || function_exists('heateor_ss_check_querystring') || function_exists('the_champ_check_querystring') ? 1 : 0; ?>, theChampHeateorFcmRecentComments = <?php echo defined('HEATEOR_FB_COM_MOD_VERSION') && HEATEOR_FB_COM_MOD_VERSION == '1.1.4' ? 1 : 0 ?>, theChampFbIosLogin = <?php echo !is_user_logged_in() && isset($_GET['code']) && esc_attr(trim($_GET['code'])) != '' ? 1 : 0; ?>; </script>
985
  <?php
986
  add_action('wp_footer', 'the_champ_fb_root_div');
987
  if(!$combinedScript){
@@ -993,14 +1137,14 @@ function the_champ_frontend_scripts(){
993
  if(the_champ_social_commenting_enabled()){
994
  global $post;
995
  if($post){
996
- $postMeta = get_post_meta($post -> ID, '_the_champ_meta', true);
997
- if(isset($theChampFacebookOptions['enable_' . $post->post_type]) && !(isset($postMeta) && isset($postMeta['fb_comments']) && $postMeta['fb_comments'] == 1)){
998
  if(isset($theChampFacebookOptions['urlToComment']) && $theChampFacebookOptions['urlToComment'] != ''){
999
  $commentUrl = $theChampFacebookOptions['urlToComment'];
1000
- }elseif(isset($post -> ID) && $post -> ID){
1001
- $commentUrl = get_permalink($post -> ID);
1002
  }else{
1003
- $commentUrl = html_entity_decode(esc_url(the_champ_get_http().$_SERVER["HTTP_HOST"] . $_SERVER["REQUEST_URI"]));
1004
  }
1005
 
1006
  $commentingTabsOrder = ($theChampFacebookOptions['commenting_order'] != '' ? $theChampFacebookOptions['commenting_order'] : 'wordpress,facebook,disqus');
@@ -1017,7 +1161,7 @@ function the_champ_frontend_scripts(){
1017
  $labels = array();
1018
  $labels['wordpress'] = $theChampFacebookOptions['label_wordpress_comments'] != '' ? htmlspecialchars($theChampFacebookOptions['label_wordpress_comments'], ENT_QUOTES) : 'Default Comments';
1019
  $commentsCount = wp_count_comments($post->ID);
1020
- $labels['wordpress'] .= ' ('. ($commentsCount && isset($commentsCount -> approved) ? $commentsCount -> approved : '') .')';
1021
  $labels['fb'] = $theChampFacebookOptions['label_facebook_comments'] != '' ? htmlspecialchars($theChampFacebookOptions['label_facebook_comments'], ENT_QUOTES) : 'Facebook Comments';
1022
  $labels['disqus'] = $theChampFacebookOptions['label_disqus_comments'] != '' ? htmlspecialchars($theChampFacebookOptions['label_disqus_comments'], ENT_QUOTES) : 'Disqus Comments';
1023
  global $heateor_fcm_options;
@@ -1049,11 +1193,11 @@ function the_champ_frontend_scripts(){
1049
  $fb_key = $theChampLoginOptions['fb_key'];
1050
  }
1051
  ?>
1052
- <script> var theChampSharingAjaxUrl = '<?php echo get_admin_url() ?>admin-ajax.php', heateorSsFbMessengerAPI = '<?php echo heateor_ss_check_if_mobile() ? "fb-messenger://share/?link=%encoded_post_url%" : "https://www.facebook.com/dialog/send?app_id=". $fb_key ."&display=popup&link=%encoded_post_url%&redirect_uri=%encoded_post_url%"; ?>',heateorSsWhatsappShareAPI = '<?php echo heateor_ss_whatsapp_share_api(); ?>', heateorSsUrlCountFetched = [], heateorSsSharesText = '<?php echo htmlspecialchars(__('Shares', 'super-socializer'), ENT_QUOTES); ?>', heateorSsShareText = '<?php echo htmlspecialchars(__('Share', 'super-socializer'), ENT_QUOTES); ?>', theChampPluginIconPath = '<?php echo plugins_url('images/logo.png', __FILE__) ?>', theChampHorizontalSharingCountEnable = <?php echo isset($theChampSharingOptions['enable']) && isset($theChampSharingOptions['hor_enable']) && ( isset($theChampSharingOptions['horizontal_counts']) || isset($theChampSharingOptions['horizontal_total_shares']) ) ? 1 : 0 ?>, theChampVerticalSharingCountEnable = <?php echo isset($theChampSharingOptions['enable']) && isset($theChampSharingOptions['vertical_enable']) && ( isset($theChampSharingOptions['vertical_counts']) || isset($theChampSharingOptions['vertical_total_shares']) ) ? 1 : 0 ?>, theChampSharingOffset = <?php echo (isset($theChampSharingOptions['alignment']) && $theChampSharingOptions['alignment'] != '' && isset($theChampSharingOptions[$theChampSharingOptions['alignment'].'_offset']) && $theChampSharingOptions[$theChampSharingOptions['alignment'].'_offset'] != '' ? $theChampSharingOptions[$theChampSharingOptions['alignment'].'_offset'] : 0) ?>, theChampCounterOffset = <?php echo (isset($theChampCounterOptions['alignment']) && $theChampCounterOptions['alignment'] != '' && isset($theChampCounterOptions[$theChampCounterOptions['alignment'].'_offset']) && $theChampCounterOptions[$theChampCounterOptions['alignment'].'_offset'] != '' ? $theChampCounterOptions[$theChampCounterOptions['alignment'].'_offset'] : 0) ?>, theChampMobileStickySharingEnabled = <?php echo isset($theChampSharingOptions['vertical_enable']) && isset($theChampSharingOptions['bottom_mobile_sharing']) && $theChampSharingOptions['horizontal_screen_width'] != '' ? 1 : 0; ?>, heateorSsCopyLinkMessage = "<?php echo htmlspecialchars(__('Link copied.', 'super-socializer'), ENT_QUOTES); ?>";
1053
  <?php
1054
  if(isset($theChampSharingOptions['horizontal_re_providers']) && (isset($theChampSharingOptions['horizontal_more']) || in_array('Copy_Link', $theChampSharingOptions['horizontal_re_providers']))){
1055
  $postId = 0;
1056
- $postUrl = html_entity_decode(esc_url(the_champ_get_http().$_SERVER["HTTP_HOST"] . $_SERVER["REQUEST_URI"]));
1057
  if(isset($theChampSharingOptions['horizontal_target_url'])){
1058
  if($theChampSharingOptions['horizontal_target_url'] == 'default'){
1059
  if($post){
@@ -1079,7 +1223,7 @@ function the_champ_frontend_scripts(){
1079
  }
1080
  if(isset($theChampSharingOptions['vertical_re_providers']) && (isset($theChampSharingOptions['vertical_more']) || in_array('Copy_Link', $theChampSharingOptions['vertical_re_providers']))){
1081
  $postId = 0;
1082
- $postUrl = html_entity_decode(esc_url(the_champ_get_http().$_SERVER["HTTP_HOST"] . $_SERVER["REQUEST_URI"]));
1083
  if(isset($theChampSharingOptions['vertical_target_url'])){
1084
  if($theChampSharingOptions['vertical_target_url'] == 'default'){
1085
  if($post){
@@ -1131,15 +1275,15 @@ function the_champ_frontend_styles(){
1131
  global $theChampSharingOptions, $theChampGeneralOptions, $theChampLoginOptions, $theChampCounterOptions;
1132
  ?>
1133
  <style type="text/css">.the_champ_horizontal_sharing .theChampSharing{
1134
- <?php if ( $theChampSharingOptions['horizontal_bg_color_default'] != '' ) { ?>
1135
  background-color:<?php echo $theChampSharingOptions['horizontal_bg_color_default'] ?>;background:<?php echo $theChampSharingOptions['horizontal_bg_color_default'] ?>;
1136
  <?php } ?>
1137
  color: <?php echo $theChampSharingOptions['horizontal_font_color_default'] ? $theChampSharingOptions['horizontal_font_color_default'] : '#fff' ?>;
1138
  <?php
1139
  $border_width = 0;
1140
- if ( $theChampSharingOptions['horizontal_border_width_default'] != '' ) {
1141
  $border_width = $theChampSharingOptions['horizontal_border_width_default'];
1142
- } elseif ( $theChampSharingOptions['horizontal_border_width_hover'] != '' ) {
1143
  $border_width = $theChampSharingOptions['horizontal_border_width_hover'];
1144
  }
1145
  ?>
@@ -1147,30 +1291,30 @@ function the_champ_frontend_styles(){
1147
  border-style: solid;
1148
  border-color: <?php echo $theChampSharingOptions['horizontal_border_color_default'] != '' ? $theChampSharingOptions['horizontal_border_color_default'] : 'transparent'; ?>;
1149
  }
1150
- <?php if ( $theChampSharingOptions['horizontal_font_color_default'] == '' ) { ?>
1151
  .the_champ_horizontal_sharing .theChampTCBackground{
1152
  color:#666;
1153
  }
1154
  <?php } ?>
1155
  .the_champ_horizontal_sharing .theChampSharing:hover{
1156
- <?php if ( $theChampSharingOptions['horizontal_bg_color_hover'] != '' ) { ?>
1157
  background-color:<?php echo $theChampSharingOptions['horizontal_bg_color_hover'] ?>;background:<?php echo $theChampSharingOptions['horizontal_bg_color_hover'] ?>;
1158
  <?php }
1159
- if ( $theChampSharingOptions['horizontal_font_color_hover'] != '' ) { ?>
1160
  color: <?php echo $theChampSharingOptions['horizontal_font_color_hover'] ?>;
1161
  <?php } ?>
1162
  border-color: <?php echo $theChampSharingOptions['horizontal_border_color_hover'] != '' ? $theChampSharingOptions['horizontal_border_color_hover'] : 'transparent'; ?>;
1163
  }
1164
  .the_champ_vertical_sharing .theChampSharing{
1165
- <?php if ( $theChampSharingOptions['vertical_bg_color_default'] != '' ) { ?>
1166
  background-color: <?php echo $theChampSharingOptions['vertical_bg_color_default'] ?>;background:<?php echo $theChampSharingOptions['vertical_bg_color_default'] ?>;
1167
  <?php } ?>
1168
  color: <?php echo $theChampSharingOptions['vertical_font_color_default'] ? $theChampSharingOptions['vertical_font_color_default'] : '#fff' ?>;
1169
  <?php
1170
  $verticalBorderWidth = 0;
1171
- if ( $theChampSharingOptions['vertical_border_width_default'] != '' ) {
1172
  $verticalBorderWidth = $theChampSharingOptions['vertical_border_width_default'];
1173
- } elseif ( $theChampSharingOptions['vertical_border_width_hover'] != '' ) {
1174
  $verticalBorderWidth = $theChampSharingOptions['vertical_border_width_hover'];
1175
  }
1176
  ?>
@@ -1178,60 +1322,59 @@ function the_champ_frontend_styles(){
1178
  border-style: solid;
1179
  border-color: <?php echo $theChampSharingOptions['vertical_border_color_default'] != '' ? $theChampSharingOptions['vertical_border_color_default'] : 'transparent'; ?>;
1180
  }
1181
- <?php if ( $theChampSharingOptions['horizontal_font_color_default'] == '' ) { ?>
1182
  .the_champ_vertical_sharing .theChampTCBackground{
1183
  color:#666;
1184
  }
1185
  <?php } ?>
1186
  .the_champ_vertical_sharing .theChampSharing:hover{
1187
- <?php if ( $theChampSharingOptions['vertical_bg_color_hover'] != '' ) { ?>
1188
  background-color: <?php echo $theChampSharingOptions['vertical_bg_color_hover'] ?>;background:<?php echo $theChampSharingOptions['vertical_bg_color_hover'] ?>;
1189
  <?php }
1190
- if ( $theChampSharingOptions['vertical_font_color_hover'] != '' ) { ?>
1191
  color: <?php echo $theChampSharingOptions['vertical_font_color_hover'] ?>;
1192
  <?php } ?>
1193
  border-color: <?php echo $theChampSharingOptions['vertical_border_color_hover'] != '' ? $theChampSharingOptions['vertical_border_color_hover'] : 'transparent'; ?>;
1194
  }
1195
  <?php
1196
- if ( isset( $theChampSharingOptions['horizontal_counts'] ) ) {
1197
  $svg_height = $theChampSharingOptions['horizontal_sharing_shape'] == 'rectangle' ? $theChampSharingOptions['horizontal_sharing_height'] : $theChampSharingOptions['horizontal_sharing_size'];
1198
- if ( isset( $theChampSharingOptions['horizontal_counter_position'] ) && in_array( $theChampSharingOptions['horizontal_counter_position'], array( 'inner_top', 'inner_bottom' ) ) ) {
1199
  $line_height_percent = $theChampSharingOptions['horizontal_counter_position'] == 'inner_top' ? 38 : 19;
1200
  ?>
1201
  div.the_champ_horizontal_sharing .theChampSharingSvg{height:70%;margin-top:<?php echo $svg_height*15/100 ?>px}div.the_champ_horizontal_sharing .the_champ_square_count{line-height:<?php echo $svg_height*$line_height_percent/100 ?>px;}
1202
  <?php
1203
- } elseif ( isset( $theChampSharingOptions['horizontal_counter_position'] ) && in_array( $theChampSharingOptions['horizontal_counter_position'], array( 'inner_left', 'inner_right' ) ) ) { ?>
1204
  div.the_champ_horizontal_sharing .theChampSharingSvg{width:50%;margin:auto;}div.the_champ_horizontal_sharing .the_champ_square_count{float:left;width:50%;line-height:<?php echo $svg_height; ?>px;}
1205
  <?php
1206
- } elseif ( isset( $theChampSharingOptions['horizontal_counter_position'] ) && in_array( $theChampSharingOptions['horizontal_counter_position'], array( 'left', 'right' ) ) ) { ?>
1207
  div.the_champ_horizontal_sharing .the_champ_square_count{float:<?php echo $theChampSharingOptions['horizontal_counter_position'] ?>;margin:0 8px;line-height:<?php echo $svg_height + 2 * $border_width; ?>px;}
1208
  <?php
1209
- } elseif ( ! isset( $theChampSharingOptions['horizontal_counter_position'] ) || $theChampSharingOptions['horizontal_counter_position'] == 'top' ) { ?>
1210
  div.the_champ_horizontal_sharing .the_champ_square_count{display: block}
1211
  <?php
1212
  }
1213
-
1214
  }
1215
- if ( isset( $theChampSharingOptions['vertical_counts'] ) ) {
1216
  $vertical_svg_height = $theChampSharingOptions['vertical_sharing_shape'] == 'rectangle' ? $theChampSharingOptions['vertical_sharing_height'] : $theChampSharingOptions['vertical_sharing_size'];
1217
  $vertical_svg_width = $theChampSharingOptions['vertical_sharing_shape'] == 'rectangle' ? $theChampSharingOptions['vertical_sharing_width'] : $theChampSharingOptions['vertical_sharing_size'];
1218
- if ( ( isset( $theChampSharingOptions['vertical_counter_position'] ) && in_array( $theChampSharingOptions['vertical_counter_position'], array( 'inner_top', 'inner_bottom' ) ) ) || ! isset( $theChampSharingOptions['vertical_counter_position'] ) ) {
1219
- $vertical_line_height_percent = ! isset( $theChampSharingOptions['vertical_counter_position'] ) || $theChampSharingOptions['vertical_counter_position'] == 'inner_top' ? 38 : 19;
1220
  ?>
1221
  div.the_champ_vertical_sharing .theChampSharingSvg{height:70%;margin-top:<?php echo $vertical_svg_height*15/100 ?>px}div.the_champ_vertical_sharing .the_champ_square_count{line-height:<?php echo $vertical_svg_height*$vertical_line_height_percent/100; ?>px;}
1222
  <?php
1223
- } elseif ( isset( $theChampSharingOptions['vertical_counter_position'] ) && in_array( $theChampSharingOptions['vertical_counter_position'], array( 'inner_left', 'inner_right' ) ) ) { ?>
1224
  div.the_champ_vertical_sharing .theChampSharingSvg{width:50%;margin:auto;}div.the_champ_vertical_sharing .the_champ_square_count{float:left;width:50%;line-height:<?php echo $vertical_svg_height; ?>px;}
1225
  <?php
1226
- } elseif ( isset( $theChampSharingOptions['vertical_counter_position'] ) && in_array( $theChampSharingOptions['vertical_counter_position'], array( 'left', 'right' ) ) ) { ?>
1227
  div.the_champ_vertical_sharing .the_champ_square_count{float:<?php echo $theChampSharingOptions['vertical_counter_position'] ?>;margin:0 8px;line-height:<?php echo $vertical_svg_height; ?>px; <?php echo $theChampSharingOptions['vertical_counter_position'] == 'left' ? 'min-width:' . $vertical_svg_width*30/100 . 'px;display: block' : '';?>}
1228
  <?php
1229
- } elseif ( isset( $theChampSharingOptions['vertical_counter_position'] ) && $theChampSharingOptions['vertical_counter_position'] == 'top' ) { ?>
1230
  div.the_champ_vertical_sharing .the_champ_square_count{display: block}
1231
  <?php
1232
  }
1233
  }
1234
- echo isset( $theChampSharingOptions['hide_mobile_sharing'] ) && $theChampSharingOptions['vertical_screen_width'] != '' ? '@media screen and (max-width:' . $theChampSharingOptions['vertical_screen_width'] . 'px){.the_champ_vertical_sharing{display:none!important}}' : '';
1235
  $bottom_sharing_postion_inverse = $theChampSharingOptions['bottom_sharing_alignment'] == 'left' ? 'right' : 'left';
1236
  $bottom_sharing_responsive_css = '';
1237
  $num_sharing_icons = isset($theChampSharingOptions['vertical_re_providers']) ? count($theChampSharingOptions['vertical_re_providers']) : 0;
@@ -1239,9 +1382,9 @@ function the_champ_frontend_styles(){
1239
  $vertical_sharing_icon_height = $theChampSharingOptions['vertical_sharing_shape'] == 'rectangle' ? $theChampSharingOptions['vertical_sharing_height'] : $theChampSharingOptions['vertical_sharing_size'];
1240
  $total_share_count_enabled = isset($theChampSharingOptions['vertical_total_shares']) ? 1 : 0;
1241
  $more_icon_enabled = isset($theChampSharingOptions['vertical_more']) ? 1 : 0;
1242
- $bottom_sharing_responsive_css = 'div.the_champ_bottom_sharing{width:100%!important;left:0!important;}div.the_champ_bottom_sharing li{width:'.(100/($num_sharing_icons+$total_share_count_enabled+$more_icon_enabled)).'% !important;}div.the_champ_bottom_sharing .theChampSharing{width: 100% !important;}div.the_champ_bottom_sharing div.theChampTotalShareCount{font-size:1em!important;line-height:' . ( $vertical_sharing_icon_height*70/100 ) . 'px!important}div.the_champ_bottom_sharing div.theChampTotalShareText{font-size:.7em!important;line-height:0px!important}';
1243
  }
1244
- echo isset($theChampSharingOptions['vertical_enable']) && isset( $theChampSharingOptions['bottom_mobile_sharing'] ) && $theChampSharingOptions['horizontal_screen_width'] != '' ? 'div.heateor_ss_mobile_footer{display:none;}@media screen and (max-width:' . $theChampSharingOptions['horizontal_screen_width'] . 'px){i.theChampTCBackground{background-color:white!important}'.$bottom_sharing_responsive_css.'div.heateor_ss_mobile_footer{display:block;height:'.($theChampSharingOptions['vertical_sharing_shape'] == 'rectangle' ? $theChampSharingOptions['vertical_sharing_height'] : $theChampSharingOptions['vertical_sharing_size']).'px;}.the_champ_bottom_sharing{padding:0!important;' . ( $theChampSharingOptions['bottom_sharing_position_radio'] == 'nonresponsive' && $theChampSharingOptions['bottom_sharing_position'] != '' ? $theChampSharingOptions['bottom_sharing_alignment'] . ':' . $theChampSharingOptions['bottom_sharing_position'] . 'px!important;' . $bottom_sharing_postion_inverse . ':auto!important;' : '' ) . 'display:block!important;width: auto!important;bottom:' . ( isset( $theChampSharingOptions['vertical_total_shares'] ) ? '-10' : '-2' ) . 'px!important;top: auto!important;}.the_champ_bottom_sharing .the_champ_square_count{line-height: inherit;}.the_champ_bottom_sharing .theChampSharingArrow{display:none;}.the_champ_bottom_sharing .theChampTCBackground{margin-right: 1.1em !important}}' : '';
1245
  echo $theChampGeneralOptions['custom_css'];
1246
  echo isset($theChampSharingOptions['hide_slider']) ? 'div.theChampSharingArrow{display:none}' : '';
1247
  if(isset($theChampSharingOptions['hor_enable']) && $theChampSharingOptions['hor_sharing_alignment'] == "center"){
@@ -1254,38 +1397,38 @@ function the_champ_frontend_styles(){
1254
  echo 'div.the_champ_social_login_title,div.the_champ_login_container{text-align:center}ul.the_champ_login_ul{width:100%;text-align:center;}div.the_champ_login_container ul.the_champ_login_ul li{float:none!important;display:inline-block;}';
1255
  }?></style>
1256
  <?php
1257
- wp_enqueue_style( 'the_champ_frontend_css', plugins_url( 'css/front.css', __FILE__ ), false, THE_CHAMP_SS_VERSION );
1258
  $default_svg = false;
1259
- if ( isset( $theChampSharingOptions['enable'] ) ) {
1260
- if ( isset( $theChampSharingOptions['hor_enable'] ) ) {
1261
- if ( isset( $theChampSharingOptions['horizontal_more'] ) ) {
1262
  $default_svg = true;
1263
  }
1264
- if ( $theChampSharingOptions['horizontal_font_color_default'] != '' ) {
1265
- wp_enqueue_style( 'the_champ_sharing_svg', plugins_url( 'css/share-default-svg-horizontal.css', __FILE__ ), false, THE_CHAMP_SS_VERSION );
1266
- } else {
1267
  $default_svg = true;
1268
  }
1269
- if ( $theChampSharingOptions['horizontal_font_color_hover'] != '' ) {
1270
- wp_enqueue_style( 'the_champ_sharing_svg_hover', plugins_url( 'css/share-hover-svg-horizontal.css', __FILE__ ), false, THE_CHAMP_SS_VERSION );
1271
  }
1272
  }
1273
- if ( isset( $theChampSharingOptions['vertical_enable'] ) ) {
1274
- if ( isset( $theChampSharingOptions['vertical_more'] ) ) {
1275
  $default_svg = true;
1276
  }
1277
- if ( $theChampSharingOptions['vertical_font_color_default'] != '' ) {
1278
- wp_enqueue_style( 'the_champ_vertical_sharing_svg', plugins_url( 'css/share-default-svg-vertical.css', __FILE__ ), false, THE_CHAMP_SS_VERSION );
1279
- } else {
1280
  $default_svg = true;
1281
  }
1282
- if ( $theChampSharingOptions['vertical_font_color_hover'] != '' ) {
1283
- wp_enqueue_style( 'the_champ_vertical_sharing_svg_hover', plugins_url( 'css/share-hover-svg-vertical.css', __FILE__ ), false, THE_CHAMP_SS_VERSION );
1284
  }
1285
  }
1286
  }
1287
- if ( $default_svg ) {
1288
- wp_enqueue_style( 'the_champ_sharing_default_svg', plugins_url( 'css/share-svg.css', __FILE__ ), false, THE_CHAMP_SS_VERSION );
1289
  }
1290
  }
1291
 
@@ -1295,7 +1438,7 @@ function the_champ_frontend_styles(){
1295
  function the_champ_create_admin_menu(){
1296
  $page = add_menu_page('Super Socializer by Heateor', 'Super Socializer', 'manage_options', 'heateor-ss-general-options', 'the_champ_general_options_page', plugins_url('images/logo.png', __FILE__));
1297
  // general options page
1298
- $generalOptionsPage = add_submenu_page( 'heateor-ss-general-options', __( "Super Socializer - General Options", 'super-socializer' ), __( "General Options", 'super-socializer' ), 'manage_options', 'heateor-ss-general-options', 'the_champ_general_options_page' );
1299
  // facebook page
1300
  $facebookPage = add_submenu_page('heateor-ss-general-options', 'Super Socializer - Social Commenting', 'Social Commenting', 'manage_options', 'heateor-social-commenting', 'the_champ_facebook_page');
1301
  // social login page
@@ -1304,27 +1447,27 @@ function the_champ_create_admin_menu(){
1304
  $sharingPage = add_submenu_page('heateor-ss-general-options', 'Super Socializer - Social Sharing', 'Social Sharing', 'manage_options', 'heateor-social-sharing', 'the_champ_social_sharing_page');
1305
  // like buttons page
1306
  $counterPage = add_submenu_page('heateor-ss-general-options', 'Super Socializer - Like Buttons', 'Like Buttons', 'manage_options', 'heateor-like-buttons', 'the_champ_like_buttons_page');
1307
- add_action('admin_print_scripts-' . $page, 'the_champ_admin_scripts');
1308
- add_action('admin_print_scripts-' . $page, 'the_champ_admin_style');
1309
- add_action('admin_print_scripts-' . $page, 'the_champ_fb_sdk_script');
1310
- add_action('admin_print_scripts-' . $generalOptionsPage, 'the_champ_admin_scripts');
1311
- add_action('admin_print_scripts-' . $generalOptionsPage, 'the_champ_fb_sdk_script');
1312
- add_action('admin_print_styles-' . $generalOptionsPage, 'the_champ_admin_style');
1313
- add_action('admin_print_scripts-' . $facebookPage, 'the_champ_admin_scripts');
1314
- add_action('admin_print_scripts-' . $facebookPage, 'the_champ_fb_sdk_script');
1315
- add_action('admin_print_styles-' . $facebookPage, 'the_champ_admin_style');
1316
- add_action('admin_print_scripts-' . $loginPage, 'the_champ_admin_scripts');
1317
- add_action('admin_print_scripts-' . $loginPage, 'the_champ_fb_sdk_script');
1318
- add_action('admin_print_styles-' . $loginPage, 'the_champ_admin_style');
1319
- add_action('admin_print_scripts-' . $sharingPage, 'the_champ_admin_scripts');
1320
- add_action('admin_print_scripts-' . $sharingPage, 'the_champ_fb_sdk_script');
1321
- add_action('admin_print_scripts-' . $sharingPage, 'the_champ_admin_sharing_scripts');
1322
- add_action('admin_print_styles-' . $sharingPage, 'the_champ_admin_style');
1323
- add_action('admin_print_styles-' . $sharingPage, 'the_champ_admin_sharing_style');
1324
- add_action('admin_print_scripts-' . $counterPage, 'the_champ_admin_scripts');
1325
- add_action('admin_print_scripts-' . $counterPage, 'the_champ_fb_sdk_script');
1326
- add_action('admin_print_scripts-' . $counterPage, 'the_champ_admin_counter_scripts');
1327
- add_action('admin_print_styles-' . $counterPage, 'the_champ_admin_style');
1328
  }
1329
  add_action('admin_menu', 'the_champ_create_admin_menu');
1330
 
@@ -1358,55 +1501,55 @@ function the_champ_fb_root_div(){
1358
  /**
1359
  * Show Social Avatar options at profile page
1360
  */
1361
- function the_champ_show_avatar_option( $user ) {
1362
  global $user_ID, $theChampLoginOptions;
1363
- if ( isset( $theChampLoginOptions['enable'] ) && isset( $theChampLoginOptions['avatar'] ) ) {
1364
  $dontUpdateAvatar = get_user_meta($user_ID, 'thechamp_dontupdate_avatar', true);
1365
  ?>
1366
- <h3><?php _e( 'Social Avatar', 'super-socializer' ) ?></h3>
1367
  <table class="form-table">
1368
  <tr>
1369
- <th><label for="ss_small_avatar"><?php _e( 'Small Avatar Url', 'super-socializer' ) ?></label></th>
1370
- <td><input id="ss_small_avatar" type="text" name="the_champ_small_avatar" value="<?php echo esc_attr(get_user_meta( $user->ID, 'thechamp_avatar', true )); ?>" class="regular-text" /></td>
1371
  </tr>
1372
  <tr>
1373
- <th><label for="ss_large_avatar"><?php _e( 'Large Avatar Url', 'super-socializer' ) ?></label></th>
1374
- <td><input id="ss_large_avatar" type="text" name="the_champ_large_avatar" value="<?php echo esc_attr(get_user_meta( $user->ID, 'thechamp_large_avatar', true )); ?>" class="regular-text" /></td>
1375
  </tr>
1376
  <tr>
1377
- <th><label for="ss_dontupdate_avatar_1"><?php _e( 'Do not fetch and update social avatar from my profile, next time I Social Login', 'super-socializer' ) ?></label></th>
1378
  <td><input id="ss_dontupdate_avatar_1" style="margin-right:5px" type="radio" name="ss_dontupdate_avatar" value="1" <?php echo $dontUpdateAvatar ? 'checked' : '' ?> /></td>
1379
  </tr>
1380
  <tr>
1381
- <th><label for="ss_dontupdate_avatar_0"><?php _e( 'Update social avatar, next time I Social Login', 'super-socializer' ) ?></label></th>
1382
- <td><input id="ss_dontupdate_avatar_0" style="margin-right:5px" type="radio" name="ss_dontupdate_avatar" value="0" <?php echo ! $dontUpdateAvatar ? 'checked' : '' ?> /></td>
1383
  </tr>
1384
  </table>
1385
  <?php
1386
  }
1387
  }
1388
- add_action( 'edit_user_profile', 'the_champ_show_avatar_option' );
1389
- add_action( 'show_user_profile', 'the_champ_show_avatar_option' );
1390
 
1391
  /**
1392
  * Save social avatar options from profile page
1393
  */
1394
- function the_champ_save_avatar( $user_id ) {
1395
- if ( ! current_user_can( 'edit_user', $user_id ) ) {
1396
  return false;
1397
  }
1398
- if ( isset( $_POST['the_champ_small_avatar'] ) ) {
1399
- update_user_meta( $user_id, 'thechamp_avatar', esc_url(trim($_POST['the_champ_small_avatar'])) );
1400
  }
1401
- if ( isset( $_POST['the_champ_large_avatar'] ) ) {
1402
- update_user_meta( $user_id, 'thechamp_large_avatar', esc_url(trim($_POST['the_champ_large_avatar'])) );
1403
  }
1404
- if ( isset( $_POST['ss_dontupdate_avatar'] ) ) {
1405
- update_user_meta( $user_id, 'thechamp_dontupdate_avatar', intval( $_POST['ss_dontupdate_avatar'] ) );
1406
  }
1407
  }
1408
- add_action( 'personal_options_update', 'the_champ_save_avatar' );
1409
- add_action( 'edit_user_profile_update', 'the_champ_save_avatar' );
1410
 
1411
  if(!function_exists('array_replace')){
1412
  /**
@@ -1529,7 +1672,7 @@ function the_champ_save_default_options(){
1529
  'title' => 'Spread the love',
1530
  'instagram_username' => '',
1531
  'comment_container_id' => 'respond',
1532
- 'horizontal_re_providers' => array( 'facebook', 'twitter', 'linkedin', 'pinterest', 'reddit', 'MeWe', 'mix', 'whatsapp' ),
1533
  'hor_sharing_alignment' => 'left',
1534
  'top' => '1',
1535
  'post' => '1',
@@ -1540,7 +1683,7 @@ function the_champ_save_default_options(){
1540
  'vertical_target_url_custom' => '',
1541
  'vertical_instagram_username' => '',
1542
  'vertical_comment_container_id' => 'respond',
1543
- 'vertical_re_providers' => array( 'facebook', 'twitter', 'linkedin', 'pinterest', 'reddit', 'MeWe', 'mix', 'whatsapp' ),
1544
  'vertical_bg' => '',
1545
  'alignment' => 'left',
1546
  'left_offset' => '-10',
@@ -1600,7 +1743,7 @@ function the_champ_activate_plugin($networkWide){
1600
  }
1601
  }
1602
  the_champ_save_default_options();
1603
- set_transient( 'heateor-ss-admin-notice-on-activation', true, 5 );
1604
  }
1605
  register_activation_hook(__FILE__, 'the_champ_activate_plugin');
1606
 
@@ -1732,7 +1875,7 @@ function the_champ_addon_update_notification(){
1732
  <?php
1733
  }
1734
 
1735
- if(defined('HEATEOR_SOCIAL_LOGIN_BUTTONS_VERSION') && version_compare('1.1.18', HEATEOR_SOCIAL_LOGIN_BUTTONS_VERSION) > 0){
1736
  ?>
1737
  <div class="error notice">
1738
  <h3>Social Login Buttons</h3>
@@ -1800,7 +1943,7 @@ function the_champ_addon_update_notification(){
1800
  if(version_compare('7.11', $currentVersion) <= 0 && isset($theChampLoginOptions['enable']) && isset($theChampLoginOptions['providers']) &&
1801
  (
1802
  (in_array('facebook', $theChampLoginOptions['providers']) && (!isset($theChampLoginOptions['fb_secret']) || $theChampLoginOptions['fb_secret'] == '')) ||
1803
- (in_array('linkedin', $theChampLoginOptions['providers']) && (!isset($theChampLoginOptions['li_secret']) || $theChampLoginOptions['li_secret'] == '') ) ||
1804
  (in_array('google', $theChampLoginOptions['providers']) && (!isset($theChampLoginOptions['google_secret']) || $theChampLoginOptions['google_secret'] == '')) ||
1805
  (in_array('vkontakte', $theChampLoginOptions['providers']) && (!isset($theChampLoginOptions['vk_secure_key']) || $theChampLoginOptions['vk_secure_key'] == ''))
1806
  )
@@ -1832,7 +1975,7 @@ function the_champ_addon_update_notification(){
1832
  </script>
1833
  <div id="heateor_ss_fb_redirection_notification" class="error">
1834
  <h3>Super Socializer</h3>
1835
- <p><?php echo sprintf(__('Add %s in "Valid OAuth redirect URIs" option in your Facebook app settings for Facebook login to work. For more details, check step 9 <a href="%s" target="_blank">here</a>', 'super-socializer'), home_url() . '/?SuperSocializerAuth=Facebook', 'http://support.heateor.com/how-to-get-facebook-app-id/'); ?><input type="button" onclick="heateorSsFbRedirectionNotificationRead()" style="margin-left: 5px;" class="button button-primary" value="<?php _e('Okay', 'super-socializer') ?>" /></p>
1836
  </div>
1837
  <?php
1838
  }
@@ -1888,7 +2031,7 @@ function the_champ_addon_update_notification(){
1888
  }
1889
  }
1890
 
1891
- if(version_compare('7.11', $currentVersion) <= 0 && isset($theChampLoginOptions['enable']) && isset($theChampLoginOptions['providers']) && is_array($theChampLoginOptions['providers']) && in_array('google', $theChampLoginOptions['providers']) && home_url() != the_champ_get_http() . $_SERVER['HTTP_HOST']){
1892
  if(!get_option('heateor_ss_google_redirection_notification_read')){
1893
  ?>
1894
  <script type="text/javascript">
@@ -1968,7 +2111,7 @@ function the_champ_addon_update_notification(){
1968
  </script>
1969
  <div id="heateor_ss_twitcount_notification" class="notice notice-warning">
1970
  <h3>Super Socializer</h3>
1971
- <p><?php echo sprintf( __( 'Now plugin supports a new service Twitcount.com to show Twitter shares. To continue showing the Twitter shares, click "Give me my Twitter counts back" button at <a href="%s" target="_blank">their website</a> and register your website %s with them. No need to copy-paste any code from their website.', 'super-socializer' ), 'http://twitcount.com', home_url() ); ?><input type="button" onclick="heateorSsTwitcountNotificationRead()" style="margin-left: 5px;" class="button button-primary" value="<?php _e( 'Okay', 'super-socializer' ) ?>" /></p>
1972
  </div>
1973
  <?php
1974
  }
@@ -2381,17 +2524,17 @@ function the_champ_update_db_check(){
2381
 
2382
  if(version_compare($currentVersion, '6.9') > 0){
2383
  global $theChampSharingOptions;
2384
- if ( $theChampSharingOptions['horizontal_sharing_replace_color'] != '#fff' ) {
2385
- the_champ_update_svg_css( $theChampSharingOptions['horizontal_sharing_replace_color'], 'share-default-svg-horizontal' );
2386
  }
2387
- if ( $theChampSharingOptions['horizontal_sharing_replace_color_hover'] != '#fff' ) {
2388
- the_champ_update_svg_css( $theChampSharingOptions['horizontal_sharing_replace_color_hover'], 'share-hover-svg-horizontal' );
2389
  }
2390
- if ( $theChampSharingOptions['vertical_sharing_replace_color'] != '#fff' ) {
2391
- the_champ_update_svg_css( $theChampSharingOptions['vertical_sharing_replace_color'], 'share-default-svg-vertical' );
2392
  }
2393
- if ( $theChampSharingOptions['vertical_sharing_replace_color_hover'] != '#fff' ) {
2394
- the_champ_update_svg_css( $theChampSharingOptions['vertical_sharing_replace_color_hover'], 'share-hover-svg-vertical' );
2395
  }
2396
  }
2397
 
@@ -2410,16 +2553,16 @@ add_action('plugins_loaded', 'the_champ_update_db_check');
2410
  * Updates SVG CSS file according to chosen logo color
2411
  */
2412
  function the_champ_update_svg_css($colorToBeReplaced, $cssFile){
2413
- $path = plugin_dir_url( __FILE__ ) . 'css/' . $cssFile . '.css';
2414
  try{
2415
- $content = file( $path );
2416
- if ( $content !== false ) {
2417
- $handle = fopen( dirname( __FILE__ ) . '/css/' . $cssFile . '.css','w' );
2418
- if ( $handle !== false ) {
2419
- foreach ( $content as $value ) {
2420
- fwrite( $handle, str_replace( '%23fff', str_replace( '#', '%23', $colorToBeReplaced ), $value ) );
2421
  }
2422
- fclose( $handle );
2423
  }
2424
  }
2425
  }catch(Exception $e){}
@@ -2448,7 +2591,7 @@ function the_champ_frontend_amp_css(){
2448
  if($theChampSharingOptions['horizontal_sharing_shape'] == 'round'){
2449
  $css .= '.heateor_ss_amp amp-img{border-radius:999px;}';
2450
  }elseif($theChampSharingOptions['horizontal_border_radius'] != ''){
2451
- $css .= '.heateor_ss_amp amp-img{border-radius:' . $theChampSharingOptions['horizontal_border_radius'] . 'px;}';
2452
  }
2453
 
2454
  if(current_action() == 'wp_print_styles'){
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.13
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.13');
15
 
16
  require 'helper.php';
17
 
18
  $theChampLoginOptions = get_option('the_champ_login');
19
  if(the_champ_social_login_enabled()){
20
+ if(isset($theChampLoginOptions['providers']) && in_array('twitter', $theChampLoginOptions['providers']) && !class_exists('Abraham\TwitterOAuth\Config')){
21
  require 'library/Twitter/src/Config.php';
22
  require 'library/Twitter/src/Response.php';
23
  require 'library/Twitter/src/SignatureMethod.php';
30
  require 'library/Twitter/src/Util/JsonDecoder.php';
31
  require 'library/Twitter/src/TwitterOAuth.php';
32
  }
33
+ if(isset($theChampLoginOptions['providers']) && in_array('steam', $theChampLoginOptions['providers']) && !interface_exists('SteamLoginInterface')){
34
  require 'library/SteamLogin/SteamLogin.php';
35
  $theChampSteamLogin = new SteamLogin();
36
  }
196
  $response = wp_remote_get('https://graph.instagram.com/'.$body->user_id.'?fields=ig_id,account_type,id,username&access_token='.$body->access_token, array('timeout' => 15));
197
 
198
  if(!is_wp_error($response) && isset($response['response']['code']) && 200 === $response['response']['code']){
199
+ $profileData = json_decode(wp_remote_retrieve_body($response ));
200
 
201
  if(is_object($profileData) && isset($profileData->id)){
202
  $profileData = the_champ_sanitize_profile_data($profileData, 'instagram');
209
  if(is_array($response) && isset($response['message']) && $response['message'] == 'register' && (!isset($response['url']) || $response['url'] == '')){
210
  $redirectTo = the_champ_get_login_redirection_url($instagramRedirectUrl, true);
211
  }elseif(isset($response['message']) && $response['message'] == 'linked'){
212
+ $redirectTo = $instagramRedirectUrl.( strpos($instagramRedirectUrl, '?') !== false ? '&' : '?').'linked=1';
213
  }elseif(isset($response['message']) && $response['message'] == 'not linked'){
214
+ $redirectTo = $instagramRedirectUrl.( strpos($instagramRedirectUrl, '?') !== false ? '&' : '?').'linked=0';
215
  }elseif(isset($response['url']) && $response['url'] != ''){
216
  $redirectTo = $response['url'];
217
  }else{
243
  if(is_array($response) && isset($response['message']) && $response['message'] == 'register' && (!isset($response['url']) || $response['url'] == '')){
244
  $redirectTo = the_champ_get_login_redirection_url($steamRedirect, true);
245
  }elseif(isset($response['message']) && $response['message'] == 'linked'){
246
+ $redirectTo = $steamRedirect.(strpos($steamRedirect, '?') !== false ? '&' : '?').'linked=1';
247
  }elseif(isset($response['message']) && $response['message'] == 'not linked'){
248
+ $redirectTo = $steamRedirect.(strpos($steamRedirect, '?') !== false ? '&' : '?').'linked=0';
249
  }elseif(isset($response['url']) && $response['url'] != ''){
250
  $redirectTo = $response['url'];
251
  }else{
267
  update_user_meta($linkedinAuthState, 'heateor_ss_linkedin_mc_sub', 1);
268
  }
269
  $linkedinScope = 'r_liteprofile,r_emailaddress';
270
+ wp_redirect('https://www.linkedin.com/oauth/v2/authorization?response_type=code&client_id='.$theChampLoginOptions['li_key'].'&redirect_uri='.urlencode(home_url().'/?SuperSocializerAuth=Linkedin').'&state='. $linkedinAuthState .'&scope='.$linkedinScope);
271
  die;
272
  }
273
  if(isset($_GET['code']) && isset($_GET['state']) && ($linkedinRedirectUrl = get_user_meta(esc_attr(trim($_GET['state'])), 'heateor_ss_linkedin_auth_state', true))){
276
  $data_access_token = array(
277
  'grant_type' => 'authorization_code',
278
  'code' => esc_attr(trim($_GET['code'])),
279
+ 'redirect_uri' => home_url().'/?SuperSocializerAuth=Linkedin',
280
  'client_id' => $theChampLoginOptions['li_key'],
281
  'client_secret' => $theChampLoginOptions['li_secret']
282
  );
312
  if(is_object($firstLastNameBody) && isset($firstLastNameBody->id) && $firstLastNameBody->id && is_object($emailBody) && isset($emailBody->elements)){
313
  $firstLastNameBody = json_decode(json_encode($firstLastNameBody), true);
314
  $emailBody = json_decode(json_encode($emailBody), true);
315
+ $firstName = isset($firstLastNameBody['firstName']) && isset($firstLastNameBody['firstName']['localized']) && isset($firstLastNameBody['firstName']['preferredLocale']) && isset($firstLastNameBody['firstName']['preferredLocale']['language']) && isset($firstLastNameBody['firstName']['preferredLocale']['country']) ? $firstLastNameBody['firstName']['localized'][$firstLastNameBody['firstName']['preferredLocale']['language'].'_'.$firstLastNameBody['firstName']['preferredLocale']['country']] : '';
316
+ $lastName = isset($firstLastNameBody['lastName']) && isset($firstLastNameBody['lastName']['localized']) && isset($firstLastNameBody['lastName']['preferredLocale']) && isset($firstLastNameBody['lastName']['preferredLocale']['language']) && isset($firstLastNameBody['lastName']['preferredLocale']['country']) ? $firstLastNameBody['lastName']['localized'][$firstLastNameBody['lastName']['preferredLocale']['language'].'_'.$firstLastNameBody['lastName']['preferredLocale']['country']] : '';
317
  $smallAvatar = isset($firstLastNameBody['profilePicture']) && isset($firstLastNameBody['profilePicture']['displayImage~']) && isset($firstLastNameBody['profilePicture']['displayImage~']['elements']) && is_array($firstLastNameBody['profilePicture']['displayImage~']['elements']) && isset($firstLastNameBody['profilePicture']['displayImage~']['elements'][0]['identifiers']) && is_array($firstLastNameBody['profilePicture']['displayImage~']['elements'][0]['identifiers'][0]) && isset($firstLastNameBody['profilePicture']['displayImage~']['elements'][0]['identifiers'][0]['identifier']) ? $firstLastNameBody['profilePicture']['displayImage~']['elements'][0]['identifiers'][0]['identifier'] : '';
318
  $largeAvatar = isset($firstLastNameBody['profilePicture']) && isset($firstLastNameBody['profilePicture']['displayImage~']) && isset($firstLastNameBody['profilePicture']['displayImage~']['elements']) && is_array($firstLastNameBody['profilePicture']['displayImage~']['elements']) && isset($firstLastNameBody['profilePicture']['displayImage~']['elements'][3]['identifiers']) && is_array($firstLastNameBody['profilePicture']['displayImage~']['elements'][3]['identifiers'][0]) && isset($firstLastNameBody['profilePicture']['displayImage~']['elements'][3]['identifiers'][0]['identifier']) ? $firstLastNameBody['profilePicture']['displayImage~']['elements'][3]['identifiers'][0]['identifier'] : '';
319
  $emailAddress = isset($emailBody['elements']) && is_array($emailBody['elements']) && isset($emailBody['elements'][0]['handle~']) && isset($emailBody['elements'][0]['handle~']['emailAddress']) ? $emailBody['elements'][0]['handle~']['emailAddress'] : '';
335
  if(is_array($response) && isset($response['message']) && $response['message'] == 'register' && (!isset($response['url']) || $response['url'] == '')){
336
  $redirectTo = the_champ_get_login_redirection_url($linkedinRedirectUrl, true);
337
  }elseif(isset($response['message']) && $response['message'] == 'linked'){
338
+ $redirectTo = $linkedinRedirectUrl.(strpos($linkedinRedirectUrl, '?') !== false ? '&' : '?').'linked=1';
339
  }elseif(isset($response['message']) && $response['message'] == 'not linked'){
340
+ $redirectTo = $linkedinRedirectUrl.(strpos($linkedinRedirectUrl, '?') !== false ? '&' : '?').'linked=0';
341
  }elseif(isset($response['url']) && $response['url'] != ''){
342
  $redirectTo = $response['url'];
343
  }else{
402
  if(is_array($response) && isset($response['message']) && $response['message'] == 'register' && (!isset($response['url']) || $response['url'] == '')){
403
  $redirectTo = the_champ_get_login_redirection_url($lineRedirectUrl, true);
404
  }elseif(isset($response['message']) && $response['message'] == 'linked'){
405
+ $redirectTo = $lineRedirectUrl.( strpos($lineRedirectUrl, '?') !== false ? '&' : '?').'linked=1';
406
  }elseif(isset($response['message']) && $response['message'] == 'not linked'){
407
+ $redirectTo = $lineRedirectUrl.( strpos($lineRedirectUrl, '?') !== false ? '&' : '?').'linked=0';
408
  }elseif(isset($response['url']) && $response['url'] != ''){
409
  $redirectTo = $response['url'];
410
  }else{
414
  }
415
  }
416
  }
417
+
418
+ // yahoo
419
+ if((isset($_GET['SuperSocializerAuth']) && sanitize_text_field($_GET['SuperSocializerAuth']) == 'Yahoo')){
420
+ if(isset($theChampLoginOptions['providers']) && in_array('yahoo', $theChampLoginOptions['providers']) && isset($theChampLoginOptions['yahoo_channel_id']) && $theChampLoginOptions['yahoo_channel_id'] != '' && isset($theChampLoginOptions['yahoo_channel_secret']) && $theChampLoginOptions['yahoo_channel_secret'] != ''){
421
+ wp_redirect("https://api.login.yahoo.com/oauth2/request_auth?client_id=".$theChampLoginOptions['yahoo_channel_id']."&response_type=code&language=en-us&redirect_uri=".home_url()."/SuperSocializerAuth/Yahoo");
422
+ die;
423
+ }
424
+ if(!isset($_GET['code'])){
425
+ // save referrer url in state
426
+ $_SESSION['super_socializer_yahoo_redirect'] = isset($_GET['super_socializer_redirect_to']) ? esc_url(trim($_GET['super_socializer_redirect_to'])) : home_url();
427
+ }
428
+ }
429
+
430
+ if(isset($_GET['code']) && remove_query_arg(array('code'), html_entity_decode(esc_url(the_champ_get_http().$_SERVER["HTTP_HOST"].$_SERVER["REQUEST_URI"]))) == home_url().'/SuperSocializerAuth/Yahoo'){
431
+ if(function_exists('session_start')){
432
+ if(session_status() == PHP_SESSION_NONE){
433
+ session_start();
434
+ }
435
+ }
436
+
437
+ $postData = array(
438
+ 'grant_type' => 'authorization_code',
439
+ 'code' => esc_attr(trim($_GET['code'])),
440
+ 'redirect_uri' => home_url()."/SuperSocializerAuth/Yahoo",
441
+ 'client_id' => $theChampLoginOptions['yahoo_channel_id'],
442
+ 'client_secret' => $theChampLoginOptions['yahoo_channel_secret']
443
+ );
444
+ $response = wp_remote_post("https://api.login.yahoo.com/oauth2/get_token", array(
445
+ 'method' => 'POST',
446
+ 'timeout' => 15,
447
+ 'redirection' => 5,
448
+ 'httpversion' => '1.0',
449
+ 'sslverify' => false,
450
+ 'headers' => array('Content-Type' => 'application/x-www-form-urlencoded'),
451
+ 'body' => http_build_query($postData)
452
+ )
453
+ );
454
+
455
+ if(!is_wp_error($response) && isset($response['response']['code']) && 200 === $response['response']['code']){
456
+ $body = json_decode(wp_remote_retrieve_body($response));
457
+ $authorization = "Bearer ".$body->access_token;
458
+
459
+ $response = wp_remote_get("https://api.login.yahoo.com/openid/v1/userinfo", array('timeout' => 15, 'headers' => array('Accept' => 'application/json' , 'Authorization' => $authorization )));
460
+
461
+ if(!is_wp_error($response) && isset($response['response']['code']) && 200 === $response['response']['code']){
462
+ $profileData = json_decode(wp_remote_retrieve_body( $response ));
463
+
464
+ if(is_object($profileData) && isset($profileData->sub)){
465
+ $profileData = the_champ_sanitize_profile_data($profileData, 'yahoo');
466
+ $yahooRedirectUrl = isset($_SESSION['super_socializer_yahoo_redirect']) && $_SESSION['super_socializer_yahoo_redirect'] ? esc_url(trim($_SESSION['super_socializer_yahoo_redirect'])) : home_url();
467
+ unset($_SESSION['super_socializer_yahoo_redirect']);
468
+ $response = the_champ_user_auth($profileData, 'yahoo', $yahooRedirectUrl);
469
+ if($response == 'show form'){
470
+ return;
471
+ }
472
+ if(is_array($response) && isset($response['message']) && $response['message'] == 'register' && (!isset($response['url']) || $response['url'] == '')){
473
+ $redirectTo = the_champ_get_login_redirection_url($yahooRedirectUrl, true);
474
+ }elseif(isset($response['message']) && $response['message'] == 'linked'){
475
+ $redirectTo = $yahooRedirectUrl . ( strpos( $yahooRedirectUrl, '?' ) !== false ? '&' : '?' ) . 'linked=1';
476
+ }elseif(isset($response['message']) && $response['message'] == 'not linked'){
477
+ $redirectTo = $yahooRedirectUrl . ( strpos( $yahooRedirectUrl, '?' ) !== false ? '&' : '?' ) . 'linked=0';
478
+ }elseif(isset($response['url']) && $response['url'] != ''){
479
+ $redirectTo = $response['url'];
480
+ }else{
481
+ $redirectTo = the_champ_get_login_redirection_url($yahooRedirectUrl);
482
+ }
483
+ the_champ_close_login_popup($redirectTo);
484
+ }
485
+
486
+ }
487
+ }
488
+ }
489
+
490
+ //wordpress
491
+ if((isset($_GET['SuperSocializerAuth']) && sanitize_text_field($_GET['SuperSocializerAuth']) == 'Wordpress')){
492
+ if(isset($theChampLoginOptions['providers']) && in_array('wordpress', $theChampLoginOptions['providers']) && isset($theChampLoginOptions['wordpress_client_id']) && $theChampLoginOptions['wordpress_client_id'] != '' && isset($theChampLoginOptions['wordpress_client_secret']) && $theChampLoginOptions['wordpress_client_secret'] != ''){
493
+ wp_redirect("https://public-api.wordpress.com/oauth2/authorize?client_id=".$theChampLoginOptions['wordpress_client_id']."&scope=auth&response_type=code&redirect_uri=".home_url()."/SuperSocializerAuth/Wordpress");
494
+ die;
495
+ }
496
+
497
+ if(!isset($_GET['code'])){
498
+ // save referrer url in state
499
+ $_SESSION['super_socializer_wordpress_redirect'] = isset($_GET['super_socializer_wordpress_redirect_to']) ? esc_url(trim($_GET['super_socializer_wordpress_redirect_to'])) : home_url();
500
+ }
501
+ }
502
+ if(isset($_GET['code']) && remove_query_arg(array('code','state'), html_entity_decode(esc_url(the_champ_get_http().$_SERVER["HTTP_HOST"].$_SERVER["REQUEST_URI"]))) == home_url().'/SuperSocializerAuth/Wordpress'){
503
+ if(function_exists('session_start')){
504
+ if(session_status() == PHP_SESSION_NONE){
505
+ session_start();
506
+ }
507
+ }
508
+
509
+ $postData = array(
510
+ 'grant_type' => 'authorization_code',
511
+ 'code' => esc_attr(trim($_GET['code'])),
512
+ 'redirect_uri' => home_url()."/SuperSocializerAuth/Wordpress",
513
+ 'client_id' => $theChampLoginOptions['wordpress_client_id'],
514
+ 'client_secret' => $theChampLoginOptions['wordpress_client_secret']
515
+ );
516
+ $response = wp_remote_post("https://public-api.wordpress.com/oauth2/token", array(
517
+ 'method' => 'POST',
518
+ 'timeout' => 15,
519
+ 'redirection' => 5,
520
+ 'httpversion' => '1.0',
521
+ 'sslverify' => false,
522
+ 'headers' => array('Content-Type' => 'application/x-www-form-urlencoded'),
523
+ 'body' => http_build_query($postData)
524
+ )
525
+ );
526
+
527
+ if(!is_wp_error($response) && isset($response['response']['code']) && 200 === $response['response']['code']){
528
+ $body = json_decode(wp_remote_retrieve_body($response));
529
+ $authorization = "Bearer ".$body->access_token;
530
+
531
+ $response = wp_remote_get("https://public-api.wordpress.com/rest/v1/me/", array('timeout' => 15, 'headers' => array('Accept' => 'application/json', 'Authorization' => $authorization )));
532
+
533
+ if(!is_wp_error($response) && isset($response['response']['code']) && 200 === $response['response']['code']){
534
+ $profileData = json_decode(wp_remote_retrieve_body($response));
535
+
536
+ if(is_object($profileData) && isset($profileData->ID)){
537
+ $profileData = the_champ_sanitize_profile_data($profileData, 'wordpress');
538
+ $wordpressRedirectUrl = isset($_SESSION['super_socializer_wordpress_redirect']) && $_SESSION['super_socializer_wordpress_redirect'] ? esc_url(trim($_SESSION['super_socializer_wordpress_redirect'])) : home_url();
539
+ unset($_SESSION['super_socializer_wordpress_redirect']);
540
+ $response = the_champ_user_auth($profileData, 'wordpress', $wordpressRedirectUrl);
541
+ if($response == 'show form'){
542
+ return;
543
+ }
544
+ if(is_array($response) && isset($response['message']) && $response['message'] == 'register' && (!isset($response['url']) || $response['url'] == '')){
545
+ $redirectTo = the_champ_get_login_redirection_url($wordpressRedirectUrl, true);
546
+ }elseif(isset($response['message']) && $response['message'] == 'linked'){
547
+ $redirectTo = $wordpressRedirectUrl.(strpos($wordpressRedirectUrl, '?') !== false ? '&' : '?').'linked=1';
548
+ }elseif(isset($response['message']) && $response['message'] == 'not linked'){
549
+ $redirectTo = $wordpressRedirectUrl.(strpos($wordpressRedirectUrl, '?') !== false ? '&' : '?').'linked=0';
550
+ }elseif(isset($response['url']) && $response['url'] != ''){
551
+ $redirectTo = $response['url'];
552
+ }else{
553
+ $redirectTo = the_champ_get_login_redirection_url($wordpressRedirectUrl);
554
+ }
555
+ the_champ_close_login_popup($redirectTo);
556
+ }
557
+
558
+ }
559
+ }
560
+ }
561
 
562
  // windows live
563
  if((isset($_GET['SuperSocializerAuth']) && sanitize_text_field($_GET['SuperSocializerAuth']) == 'Live')){
603
  $response = wp_remote_get("https://apis.live.net/v5.0/me?access_token=".$body->access_token, array('timeout' => 15));
604
 
605
  if(!is_wp_error($response) && isset($response['response']['code']) && 200 === $response['response']['code']){
606
+ $profileData = json_decode(wp_remote_retrieve_body($response ));
607
 
608
  if(is_object($profileData) && isset($profileData->id)){
609
  $profileData = the_champ_sanitize_profile_data($profileData, 'microsoft');
616
  if(is_array($response) && isset($response['message']) && $response['message'] == 'register' && (!isset($response['url']) || $response['url'] == '')){
617
  $redirectTo = the_champ_get_login_redirection_url($liveRedirectUrl, true);
618
  }elseif(isset($response['message']) && $response['message'] == 'linked'){
619
+ $redirectTo = $liveRedirectUrl.( strpos($liveRedirectUrl, '?') !== false ? '&' : '?').'linked=1';
620
  }elseif(isset($response['message']) && $response['message'] == 'not linked'){
621
+ $redirectTo = $liveRedirectUrl.( strpos($liveRedirectUrl, '?') !== false ? '&' : '?').'linked=0';
622
  }elseif(isset($response['url']) && $response['url'] != ''){
623
  $redirectTo = $response['url'];
624
  }else{
657
 
658
  $permissions = array('email'); // Optional permissions
659
  if(!isset($_GET['code'])){
660
+ $loginUrl = $helper->getLoginUrl(home_url().'/?SuperSocializerAuth=Facebook', $permissions);
661
  wp_redirect($loginUrl);
662
  die;
663
  }else{
664
  try{
665
+ $accessToken = $helper->getAccessToken(home_url().'/?SuperSocializerAuth=Facebook');
666
  }catch(Facebook\Exceptions\FacebookResponseException $e){
667
  _e('Problem fetching access token: ', 'super-socializer');
668
  echo $e->getMessage();
699
  if(is_array($response) && isset($response['message']) && $response['message'] == 'register' && (!isset($response['url']) || $response['url'] == '')){
700
  $redirectTo = the_champ_get_login_redirection_url($facebookRedirectUrl, true);
701
  }elseif(isset($response['message']) && $response['message'] == 'linked'){
702
+ $redirectTo = $facebookRedirectUrl.(strpos($facebookRedirectUrl, '?') !== false ? '&' : '?').'linked=1';
703
  }elseif(isset($response['message']) && $response['message'] == 'not linked'){
704
+ $redirectTo = $facebookRedirectUrl.(strpos($facebookRedirectUrl, '?') !== false ? '&' : '?').'linked=0';
705
  }elseif(isset($response['url']) && $response['url'] != ''){
706
  $redirectTo = $response['url'];
707
  }else{
754
  if(!isset($_GET['code']) && !isset($_GET['state'])){
755
  $_SESSION['super_socializer_google_redirect'] = isset($_GET['super_socializer_redirect_to']) ? esc_url(trim($_GET['super_socializer_redirect_to'])) : esc_url(home_url());
756
  }
757
+ $gpAuthUrl = $googleClient->createAuthUrl().'&state=super_socializer_google';
758
  if(!isset($_GET['code']) && !isset($_GET['state'])){
759
  wp_redirect($gpAuthUrl);
760
  die;
787
  if(is_array($response) && isset($response['message']) && $response['message'] == 'register' && (!isset($response['url']) || $response['url'] == '')){
788
  $redirectTo = the_champ_get_login_redirection_url($googleRedirectUrl, true);
789
  }elseif(isset($response['message']) && $response['message'] == 'linked'){
790
+ $redirectTo = $googleRedirectUrl.(strpos($googleRedirectUrl, '?') !== false ? '&' : '?').'linked=1';
791
  }elseif(isset($response['message']) && $response['message'] == 'not linked'){
792
+ $redirectTo = $googleRedirectUrl.(strpos($googleRedirectUrl, '?') !== false ? '&' : '?').'linked=0';
793
  }elseif(isset($response['url']) && $response['url'] != ''){
794
  $redirectTo = $response['url'];
795
  }else{
848
  if(is_array($response) && isset($response['message']) && $response['message'] == 'register' && (!isset($response['url']) || $response['url'] == '')){
849
  $redirectTo = the_champ_get_login_redirection_url($vkontakteRedirectUrl, true);
850
  }elseif(isset($response['message']) && $response['message'] == 'linked'){
851
+ $redirectTo = $vkontakteRedirectUrl.(strpos($vkontakteRedirectUrl, '?') !== false ? '&' : '?').'linked=1';
852
  }elseif(isset($response['message']) && $response['message'] == 'not linked'){
853
+ $redirectTo = $vkontakteRedirectUrl.(strpos($vkontakteRedirectUrl, '?') !== false ? '&' : '?').'linked=0';
854
  }elseif(isset($response['url']) && $response['url'] != ''){
855
  $redirectTo = $response['url'];
856
  }else{
931
  delete_user_meta($uniqueId, 'thechamp_twitter_oauthtokensecret');
932
  delete_user_meta($uniqueId, 'thechamp_twitter_oauthtoken');
933
  delete_user_meta($uniqueId, 'thechamp_twitter_redirect');
934
+ if(is_object($content) && isset($content-> id)){
935
  $profileData = the_champ_sanitize_profile_data($content, 'twitter');
936
  if(get_user_meta($uniqueId, 'thechamp_mc_subscribe', true) != ''){
937
  $profileData['mc_subscribe'] = 1;
941
  if(is_array($response) && isset($response['message']) && $response['message'] == 'register' && (!isset($response['url']) || $response['url'] == '')){
942
  $redirectTo = the_champ_get_login_redirection_url($twitterRedirectUrl, true);
943
  }elseif(isset($response['message']) && $response['message'] == 'linked'){
944
+ $redirectTo = $twitterRedirectUrl.(strpos($twitterRedirectUrl, '?') !== false ? '&' : '?').'linked=1';
945
  }elseif(isset($response['message']) && $response['message'] == 'not linked'){
946
+ $redirectTo = $twitterRedirectUrl.(strpos($twitterRedirectUrl, '?') !== false ? '&' : '?').'linked=0';
947
  }elseif(isset($response['url']) && $response['url'] != ''){
948
  $redirectTo = $response['url'];
949
  }else{
1027
  if($twitterRedirect != ''){
1028
  $url = $twitterRedirect;
1029
  }else{
1030
+ $url = html_entity_decode(esc_url($http.$_SERVER["HTTP_HOST"].$_SERVER["REQUEST_URI"]));
1031
  }
1032
  $redirectionUrl = the_champ_get_valid_url($url);
1033
  }elseif($theChampLoginOptions[$option.'_redirection'] == 'homepage'){
1099
  $emailPopup = true;
1100
  $emailAjaxUrl = esc_url(add_query_arg(
1101
  array(
1102
+ 'height' => isset($theChampLoginOptions['popup_height']) && $theChampLoginOptions['popup_height'] != '' ? esc_attr($theChampLoginOptions['popup_height']) : 210,
1103
  'width' => 300,
1104
  'action' => 'the_champ_ask_email'
1105
  ),
1111
  $emailPopupVerifyMessage = __('Please check your email inbox to complete the registration.', 'super-socializer');
1112
  }
1113
  global $theChampSteamLogin;
1114
+ $twitterRedirect = urlencode(the_champ_get_valid_url(html_entity_decode(esc_url(the_champ_get_http().$_SERVER["HTTP_HOST"].$_SERVER["REQUEST_URI"]))));
1115
  $currentPageUrl = urldecode($twitterRedirect);
1116
  ?>
1117
+ <script> var theChampFBKey = '<?php echo $fbKey ?>', theChampSameTabLogin = '<?php echo isset($theChampLoginOptions["same_tab_login"]) ? 1 : 0; ?>', theChampVerified = <?php echo intval($userVerified) ?>; var theChampAjaxUrl = '<?php echo html_entity_decode(admin_url().$ajaxUrl) ?>'; var theChampPopupTitle = '<?php echo $notification; ?>'; var theChampEmailPopup = <?php echo intval($emailPopup); ?>; var theChampEmailAjaxUrl = '<?php echo html_entity_decode(admin_url().$emailAjaxUrl); ?>'; var theChampEmailPopupTitle = '<?php echo $emailPopupTitle; ?>'; var theChampEmailPopupErrorMsg = '<?php echo htmlspecialchars($emailPopupErrorMessage, ENT_QUOTES); ?>'; var theChampEmailPopupUniqueId = '<?php echo $emailPopupUniqueId; ?>'; var theChampEmailPopupVerifyMessage = '<?php echo $emailPopupVerifyMessage; ?>'; var theChampSteamAuthUrl = "<?php echo $theChampSteamLogin ? $theChampSteamLogin->url( esc_url(home_url()).'?SuperSocializerSteamAuth='.$twitterRedirect ) : ''; ?>"; var theChampCurrentPageUrl = '<?php echo $twitterRedirect ?>'; <?php echo isset($theChampLoginOptions['disable_reg']) && isset($theChampLoginOptions['disable_reg_redirect']) && $theChampLoginOptions['disable_reg_redirect'] != '' ? 'var theChampDisableRegRedirect = "'.html_entity_decode(esc_url($theChampLoginOptions['disable_reg_redirect'])).'";' : ''; ?> var heateorMSEnabled = 0; var theChampTwitterAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Twitter&super_socializer_redirect_to=" + theChampCurrentPageUrl; var theChampLineAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Line&super_socializer_redirect_to=" + theChampCurrentPageUrl; var theChampLiveAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Live&super_socializer_redirect_to=" + theChampCurrentPageUrl; var theChampFacebookAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Facebook&super_socializer_redirect_to=" + theChampCurrentPageUrl; var theChampYahooAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Yahoo&super_socializer_redirect_to=" + theChampCurrentPageUrl; var theChampGoogleAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Google&super_socializer_redirect_to=" + theChampCurrentPageUrl; var theChampVkontakteAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Vkontakte&super_socializer_redirect_to=" + theChampCurrentPageUrl; var theChampLinkedinAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Linkedin&super_socializer_redirect_to=" + theChampCurrentPageUrl; var theChampInstagramAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Instagram&super_socializer_redirect_to=" + theChampCurrentPageUrl; var theChampWordpressAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Wordpress&super_socializer_redirect_to=" + theChampCurrentPageUrl;</script>
1118
  <?php
1119
  if(!$combinedScript){
1120
  wp_enqueue_script('the_champ_sl_common', plugins_url('js/front/social_login/common.js', __FILE__), array('jquery'), THE_CHAMP_SS_VERSION, $inFooter);
1125
  // Facebook scripts
1126
  if(the_champ_facebook_plugin_enabled()){
1127
  ?>
1128
+ <script> var theChampFBKey = '<?php echo $fbKey ?>', theChampFBLang = '<?php echo (isset($theChampFacebookOptions["comment_lang"]) && $theChampFacebookOptions["comment_lang"] != '') ? $theChampFacebookOptions["comment_lang"] : get_locale() ?>', theChampFbLikeMycred = <?php echo defined('HEATEOR_SOCIAL_SHARE_MYCRED_INTEGRATION_VERSION') && the_champ_facebook_like_rec_enabled() ? 1 : 0 ?>, theChampSsga = <?php echo defined('HEATEOR_SHARING_GOOGLE_ANALYTICS_VERSION') ? 1 : 0 ?>, theChampCommentNotification = <?php echo (defined('HEATEOR_FB_COM_NOT_VERSION') && version_compare('1.1.4', HEATEOR_FB_COM_NOT_VERSION) > 0) || function_exists('heateor_ss_check_querystring') || function_exists('the_champ_check_querystring') ? 1 : 0; ?>, theChampHeateorFcmRecentComments = <?php echo defined('HEATEOR_FB_COM_MOD_VERSION') && HEATEOR_FB_COM_MOD_VERSION == '1.1.4' ? 1 : 0 ?>, theChampFbIosLogin = <?php echo !is_user_logged_in() && isset($_GET['code']) && esc_attr(trim($_GET['code'])) != '' ? 1 : 0; ?>; </script>
1129
  <?php
1130
  add_action('wp_footer', 'the_champ_fb_root_div');
1131
  if(!$combinedScript){
1137
  if(the_champ_social_commenting_enabled()){
1138
  global $post;
1139
  if($post){
1140
+ $postMeta = get_post_meta($post-> ID, '_the_champ_meta', true);
1141
+ if(isset($theChampFacebookOptions['enable_'.$post->post_type]) && !(isset($postMeta) && isset($postMeta['fb_comments']) && $postMeta['fb_comments'] == 1)){
1142
  if(isset($theChampFacebookOptions['urlToComment']) && $theChampFacebookOptions['urlToComment'] != ''){
1143
  $commentUrl = $theChampFacebookOptions['urlToComment'];
1144
+ }elseif(isset($post-> ID) && $post-> ID){
1145
+ $commentUrl = get_permalink($post-> ID);
1146
  }else{
1147
+ $commentUrl = html_entity_decode(esc_url(the_champ_get_http().$_SERVER["HTTP_HOST"].$_SERVER["REQUEST_URI"]));
1148
  }
1149
 
1150
  $commentingTabsOrder = ($theChampFacebookOptions['commenting_order'] != '' ? $theChampFacebookOptions['commenting_order'] : 'wordpress,facebook,disqus');
1161
  $labels = array();
1162
  $labels['wordpress'] = $theChampFacebookOptions['label_wordpress_comments'] != '' ? htmlspecialchars($theChampFacebookOptions['label_wordpress_comments'], ENT_QUOTES) : 'Default Comments';
1163
  $commentsCount = wp_count_comments($post->ID);
1164
+ $labels['wordpress'] .= ' ('. ($commentsCount && isset($commentsCount-> approved) ? $commentsCount-> approved : '') .')';
1165
  $labels['fb'] = $theChampFacebookOptions['label_facebook_comments'] != '' ? htmlspecialchars($theChampFacebookOptions['label_facebook_comments'], ENT_QUOTES) : 'Facebook Comments';
1166
  $labels['disqus'] = $theChampFacebookOptions['label_disqus_comments'] != '' ? htmlspecialchars($theChampFacebookOptions['label_disqus_comments'], ENT_QUOTES) : 'Disqus Comments';
1167
  global $heateor_fcm_options;
1193
  $fb_key = $theChampLoginOptions['fb_key'];
1194
  }
1195
  ?>
1196
+ <script> var theChampSharingAjaxUrl = '<?php echo get_admin_url() ?>admin-ajax.php', heateorSsFbMessengerAPI = '<?php echo heateor_ss_check_if_mobile() ? "fb-messenger://share/?link=%encoded_post_url%" : "https://www.facebook.com/dialog/send?app_id=". $fb_key ."&display=popup&link=%encoded_post_url%&redirect_uri=%encoded_post_url%"; ?>',heateorSsWhatsappShareAPI = '<?php echo heateor_ss_whatsapp_share_api(); ?>', heateorSsUrlCountFetched = [], heateorSsSharesText = '<?php echo htmlspecialchars(__('Shares', 'super-socializer'), ENT_QUOTES); ?>', heateorSsShareText = '<?php echo htmlspecialchars(__('Share', 'super-socializer'), ENT_QUOTES); ?>', theChampPluginIconPath = '<?php echo plugins_url('images/logo.png', __FILE__) ?>', theChampHorizontalSharingCountEnable = <?php echo isset($theChampSharingOptions['enable']) && isset($theChampSharingOptions['hor_enable']) && (isset($theChampSharingOptions['horizontal_counts']) || isset($theChampSharingOptions['horizontal_total_shares'])) ? 1 : 0 ?>, theChampVerticalSharingCountEnable = <?php echo isset($theChampSharingOptions['enable']) && isset($theChampSharingOptions['vertical_enable']) && (isset($theChampSharingOptions['vertical_counts']) || isset($theChampSharingOptions['vertical_total_shares'])) ? 1 : 0 ?>, theChampSharingOffset = <?php echo (isset($theChampSharingOptions['alignment']) && $theChampSharingOptions['alignment'] != '' && isset($theChampSharingOptions[$theChampSharingOptions['alignment'].'_offset']) && $theChampSharingOptions[$theChampSharingOptions['alignment'].'_offset'] != '' ? $theChampSharingOptions[$theChampSharingOptions['alignment'].'_offset'] : 0) ?>, theChampCounterOffset = <?php echo (isset($theChampCounterOptions['alignment']) && $theChampCounterOptions['alignment'] != '' && isset($theChampCounterOptions[$theChampCounterOptions['alignment'].'_offset']) && $theChampCounterOptions[$theChampCounterOptions['alignment'].'_offset'] != '' ? $theChampCounterOptions[$theChampCounterOptions['alignment'].'_offset'] : 0) ?>, theChampMobileStickySharingEnabled = <?php echo isset($theChampSharingOptions['vertical_enable']) && isset($theChampSharingOptions['bottom_mobile_sharing']) && $theChampSharingOptions['horizontal_screen_width'] != '' ? 1 : 0; ?>, heateorSsCopyLinkMessage = "<?php echo htmlspecialchars(__('Link copied.', 'super-socializer'), ENT_QUOTES); ?>";
1197
  <?php
1198
  if(isset($theChampSharingOptions['horizontal_re_providers']) && (isset($theChampSharingOptions['horizontal_more']) || in_array('Copy_Link', $theChampSharingOptions['horizontal_re_providers']))){
1199
  $postId = 0;
1200
+ $postUrl = html_entity_decode(esc_url(the_champ_get_http().$_SERVER["HTTP_HOST"].$_SERVER["REQUEST_URI"]));
1201
  if(isset($theChampSharingOptions['horizontal_target_url'])){
1202
  if($theChampSharingOptions['horizontal_target_url'] == 'default'){
1203
  if($post){
1223
  }
1224
  if(isset($theChampSharingOptions['vertical_re_providers']) && (isset($theChampSharingOptions['vertical_more']) || in_array('Copy_Link', $theChampSharingOptions['vertical_re_providers']))){
1225
  $postId = 0;
1226
+ $postUrl = html_entity_decode(esc_url(the_champ_get_http().$_SERVER["HTTP_HOST"].$_SERVER["REQUEST_URI"]));
1227
  if(isset($theChampSharingOptions['vertical_target_url'])){
1228
  if($theChampSharingOptions['vertical_target_url'] == 'default'){
1229
  if($post){
1275
  global $theChampSharingOptions, $theChampGeneralOptions, $theChampLoginOptions, $theChampCounterOptions;
1276
  ?>
1277
  <style type="text/css">.the_champ_horizontal_sharing .theChampSharing{
1278
+ <?php if($theChampSharingOptions['horizontal_bg_color_default'] != ''){ ?>
1279
  background-color:<?php echo $theChampSharingOptions['horizontal_bg_color_default'] ?>;background:<?php echo $theChampSharingOptions['horizontal_bg_color_default'] ?>;
1280
  <?php } ?>
1281
  color: <?php echo $theChampSharingOptions['horizontal_font_color_default'] ? $theChampSharingOptions['horizontal_font_color_default'] : '#fff' ?>;
1282
  <?php
1283
  $border_width = 0;
1284
+ if($theChampSharingOptions['horizontal_border_width_default'] != ''){
1285
  $border_width = $theChampSharingOptions['horizontal_border_width_default'];
1286
+ }elseif($theChampSharingOptions['horizontal_border_width_hover'] != ''){
1287
  $border_width = $theChampSharingOptions['horizontal_border_width_hover'];
1288
  }
1289
  ?>
1291
  border-style: solid;
1292
  border-color: <?php echo $theChampSharingOptions['horizontal_border_color_default'] != '' ? $theChampSharingOptions['horizontal_border_color_default'] : 'transparent'; ?>;
1293
  }
1294
+ <?php if($theChampSharingOptions['horizontal_font_color_default'] == ''){ ?>
1295
  .the_champ_horizontal_sharing .theChampTCBackground{
1296
  color:#666;
1297
  }
1298
  <?php } ?>
1299
  .the_champ_horizontal_sharing .theChampSharing:hover{
1300
+ <?php if($theChampSharingOptions['horizontal_bg_color_hover'] != ''){ ?>
1301
  background-color:<?php echo $theChampSharingOptions['horizontal_bg_color_hover'] ?>;background:<?php echo $theChampSharingOptions['horizontal_bg_color_hover'] ?>;
1302
  <?php }
1303
+ if($theChampSharingOptions['horizontal_font_color_hover'] != ''){ ?>
1304
  color: <?php echo $theChampSharingOptions['horizontal_font_color_hover'] ?>;
1305
  <?php } ?>
1306
  border-color: <?php echo $theChampSharingOptions['horizontal_border_color_hover'] != '' ? $theChampSharingOptions['horizontal_border_color_hover'] : 'transparent'; ?>;
1307
  }
1308
  .the_champ_vertical_sharing .theChampSharing{
1309
+ <?php if($theChampSharingOptions['vertical_bg_color_default'] != ''){ ?>
1310
  background-color: <?php echo $theChampSharingOptions['vertical_bg_color_default'] ?>;background:<?php echo $theChampSharingOptions['vertical_bg_color_default'] ?>;
1311
  <?php } ?>
1312
  color: <?php echo $theChampSharingOptions['vertical_font_color_default'] ? $theChampSharingOptions['vertical_font_color_default'] : '#fff' ?>;
1313
  <?php
1314
  $verticalBorderWidth = 0;
1315
+ if($theChampSharingOptions['vertical_border_width_default'] != ''){
1316
  $verticalBorderWidth = $theChampSharingOptions['vertical_border_width_default'];
1317
+ }elseif($theChampSharingOptions['vertical_border_width_hover'] != ''){
1318
  $verticalBorderWidth = $theChampSharingOptions['vertical_border_width_hover'];
1319
  }
1320
  ?>
1322
  border-style: solid;
1323
  border-color: <?php echo $theChampSharingOptions['vertical_border_color_default'] != '' ? $theChampSharingOptions['vertical_border_color_default'] : 'transparent'; ?>;
1324
  }
1325
+ <?php if($theChampSharingOptions['horizontal_font_color_default'] == ''){ ?>
1326
  .the_champ_vertical_sharing .theChampTCBackground{
1327
  color:#666;
1328
  }
1329
  <?php } ?>
1330
  .the_champ_vertical_sharing .theChampSharing:hover{
1331
+ <?php if($theChampSharingOptions['vertical_bg_color_hover'] != ''){ ?>
1332
  background-color: <?php echo $theChampSharingOptions['vertical_bg_color_hover'] ?>;background:<?php echo $theChampSharingOptions['vertical_bg_color_hover'] ?>;
1333
  <?php }
1334
+ if($theChampSharingOptions['vertical_font_color_hover'] != ''){ ?>
1335
  color: <?php echo $theChampSharingOptions['vertical_font_color_hover'] ?>;
1336
  <?php } ?>
1337
  border-color: <?php echo $theChampSharingOptions['vertical_border_color_hover'] != '' ? $theChampSharingOptions['vertical_border_color_hover'] : 'transparent'; ?>;
1338
  }
1339
  <?php
1340
+ if(isset($theChampSharingOptions['horizontal_counts'])){
1341
  $svg_height = $theChampSharingOptions['horizontal_sharing_shape'] == 'rectangle' ? $theChampSharingOptions['horizontal_sharing_height'] : $theChampSharingOptions['horizontal_sharing_size'];
1342
+ if(isset($theChampSharingOptions['horizontal_counter_position']) && in_array($theChampSharingOptions['horizontal_counter_position'], array('inner_top', 'inner_bottom'))){
1343
  $line_height_percent = $theChampSharingOptions['horizontal_counter_position'] == 'inner_top' ? 38 : 19;
1344
  ?>
1345
  div.the_champ_horizontal_sharing .theChampSharingSvg{height:70%;margin-top:<?php echo $svg_height*15/100 ?>px}div.the_champ_horizontal_sharing .the_champ_square_count{line-height:<?php echo $svg_height*$line_height_percent/100 ?>px;}
1346
  <?php
1347
+ }elseif(isset($theChampSharingOptions['horizontal_counter_position']) && in_array($theChampSharingOptions['horizontal_counter_position'], array('inner_left', 'inner_right'))){ ?>
1348
  div.the_champ_horizontal_sharing .theChampSharingSvg{width:50%;margin:auto;}div.the_champ_horizontal_sharing .the_champ_square_count{float:left;width:50%;line-height:<?php echo $svg_height; ?>px;}
1349
  <?php
1350
+ }elseif(isset($theChampSharingOptions['horizontal_counter_position']) && in_array($theChampSharingOptions['horizontal_counter_position'], array('left', 'right'))){ ?>
1351
  div.the_champ_horizontal_sharing .the_champ_square_count{float:<?php echo $theChampSharingOptions['horizontal_counter_position'] ?>;margin:0 8px;line-height:<?php echo $svg_height + 2 * $border_width; ?>px;}
1352
  <?php
1353
+ }elseif(!isset($theChampSharingOptions['horizontal_counter_position']) || $theChampSharingOptions['horizontal_counter_position'] == 'top'){ ?>
1354
  div.the_champ_horizontal_sharing .the_champ_square_count{display: block}
1355
  <?php
1356
  }
 
1357
  }
1358
+ if(isset($theChampSharingOptions['vertical_counts'])){
1359
  $vertical_svg_height = $theChampSharingOptions['vertical_sharing_shape'] == 'rectangle' ? $theChampSharingOptions['vertical_sharing_height'] : $theChampSharingOptions['vertical_sharing_size'];
1360
  $vertical_svg_width = $theChampSharingOptions['vertical_sharing_shape'] == 'rectangle' ? $theChampSharingOptions['vertical_sharing_width'] : $theChampSharingOptions['vertical_sharing_size'];
1361
+ if((isset($theChampSharingOptions['vertical_counter_position']) && in_array($theChampSharingOptions['vertical_counter_position'], array('inner_top', 'inner_bottom'))) || !isset($theChampSharingOptions['vertical_counter_position'])){
1362
+ $vertical_line_height_percent = !isset($theChampSharingOptions['vertical_counter_position']) || $theChampSharingOptions['vertical_counter_position'] == 'inner_top' ? 38 : 19;
1363
  ?>
1364
  div.the_champ_vertical_sharing .theChampSharingSvg{height:70%;margin-top:<?php echo $vertical_svg_height*15/100 ?>px}div.the_champ_vertical_sharing .the_champ_square_count{line-height:<?php echo $vertical_svg_height*$vertical_line_height_percent/100; ?>px;}
1365
  <?php
1366
+ }elseif(isset($theChampSharingOptions['vertical_counter_position']) && in_array($theChampSharingOptions['vertical_counter_position'], array('inner_left', 'inner_right'))){ ?>
1367
  div.the_champ_vertical_sharing .theChampSharingSvg{width:50%;margin:auto;}div.the_champ_vertical_sharing .the_champ_square_count{float:left;width:50%;line-height:<?php echo $vertical_svg_height; ?>px;}
1368
  <?php
1369
+ }elseif(isset($theChampSharingOptions['vertical_counter_position']) && in_array($theChampSharingOptions['vertical_counter_position'], array('left', 'right'))){ ?>
1370
  div.the_champ_vertical_sharing .the_champ_square_count{float:<?php echo $theChampSharingOptions['vertical_counter_position'] ?>;margin:0 8px;line-height:<?php echo $vertical_svg_height; ?>px; <?php echo $theChampSharingOptions['vertical_counter_position'] == 'left' ? 'min-width:' . $vertical_svg_width*30/100 . 'px;display: block' : '';?>}
1371
  <?php
1372
+ }elseif(isset($theChampSharingOptions['vertical_counter_position']) && $theChampSharingOptions['vertical_counter_position'] == 'top'){?>
1373
  div.the_champ_vertical_sharing .the_champ_square_count{display: block}
1374
  <?php
1375
  }
1376
  }
1377
+ echo isset($theChampSharingOptions['hide_mobile_sharing']) && $theChampSharingOptions['vertical_screen_width'] != '' ? '@media screen and (max-width:'.$theChampSharingOptions['vertical_screen_width'].'px){.the_champ_vertical_sharing{display:none!important}}' : '';
1378
  $bottom_sharing_postion_inverse = $theChampSharingOptions['bottom_sharing_alignment'] == 'left' ? 'right' : 'left';
1379
  $bottom_sharing_responsive_css = '';
1380
  $num_sharing_icons = isset($theChampSharingOptions['vertical_re_providers']) ? count($theChampSharingOptions['vertical_re_providers']) : 0;
1382
  $vertical_sharing_icon_height = $theChampSharingOptions['vertical_sharing_shape'] == 'rectangle' ? $theChampSharingOptions['vertical_sharing_height'] : $theChampSharingOptions['vertical_sharing_size'];
1383
  $total_share_count_enabled = isset($theChampSharingOptions['vertical_total_shares']) ? 1 : 0;
1384
  $more_icon_enabled = isset($theChampSharingOptions['vertical_more']) ? 1 : 0;
1385
+ $bottom_sharing_responsive_css = 'div.the_champ_bottom_sharing{width:100%!important;left:0!important;}div.the_champ_bottom_sharing li{width:'.(100/($num_sharing_icons+$total_share_count_enabled+$more_icon_enabled)).'% !important;}div.the_champ_bottom_sharing .theChampSharing{width: 100% !important;}div.the_champ_bottom_sharing div.theChampTotalShareCount{font-size:1em!important;line-height:'.($vertical_sharing_icon_height*70/100 ).'px!important}div.the_champ_bottom_sharing div.theChampTotalShareText{font-size:.7em!important;line-height:0px!important}';
1386
  }
1387
+ echo isset($theChampSharingOptions['vertical_enable']) && isset($theChampSharingOptions['bottom_mobile_sharing']) && $theChampSharingOptions['horizontal_screen_width'] != '' ? 'div.heateor_ss_mobile_footer{display:none;}@media screen and (max-width:'.$theChampSharingOptions['horizontal_screen_width'].'px){i.theChampTCBackground{background-color:white!important}'.$bottom_sharing_responsive_css.'div.heateor_ss_mobile_footer{display:block;height:'.($theChampSharingOptions['vertical_sharing_shape'] == 'rectangle' ? $theChampSharingOptions['vertical_sharing_height'] : $theChampSharingOptions['vertical_sharing_size']).'px;}.the_champ_bottom_sharing{padding:0!important;'.($theChampSharingOptions['bottom_sharing_position_radio'] == 'nonresponsive' && $theChampSharingOptions['bottom_sharing_position'] != '' ? $theChampSharingOptions['bottom_sharing_alignment'].':'.$theChampSharingOptions['bottom_sharing_position'].'px!important;'.$bottom_sharing_postion_inverse.':auto!important;' : '').'display:block!important;width: auto!important;bottom:'.(isset($theChampSharingOptions['vertical_total_shares']) ? '-10' : '-2').'px!important;top: auto!important;}.the_champ_bottom_sharing .the_champ_square_count{line-height: inherit;}.the_champ_bottom_sharing .theChampSharingArrow{display:none;}.the_champ_bottom_sharing .theChampTCBackground{margin-right: 1.1em !important}}' : '';
1388
  echo $theChampGeneralOptions['custom_css'];
1389
  echo isset($theChampSharingOptions['hide_slider']) ? 'div.theChampSharingArrow{display:none}' : '';
1390
  if(isset($theChampSharingOptions['hor_enable']) && $theChampSharingOptions['hor_sharing_alignment'] == "center"){
1397
  echo 'div.the_champ_social_login_title,div.the_champ_login_container{text-align:center}ul.the_champ_login_ul{width:100%;text-align:center;}div.the_champ_login_container ul.the_champ_login_ul li{float:none!important;display:inline-block;}';
1398
  }?></style>
1399
  <?php
1400
+ wp_enqueue_style('the_champ_frontend_css', plugins_url('css/front.css', __FILE__ ), false, THE_CHAMP_SS_VERSION);
1401
  $default_svg = false;
1402
+ if(isset($theChampSharingOptions['enable'])){
1403
+ if(isset($theChampSharingOptions['hor_enable'])){
1404
+ if(isset($theChampSharingOptions['horizontal_more'])){
1405
  $default_svg = true;
1406
  }
1407
+ if($theChampSharingOptions['horizontal_font_color_default'] != ''){
1408
+ wp_enqueue_style('the_champ_sharing_svg', plugins_url('css/share-default-svg-horizontal.css', __FILE__ ), false, THE_CHAMP_SS_VERSION);
1409
+ }else {
1410
  $default_svg = true;
1411
  }
1412
+ if($theChampSharingOptions['horizontal_font_color_hover'] != ''){
1413
+ wp_enqueue_style('the_champ_sharing_svg_hover', plugins_url('css/share-hover-svg-horizontal.css', __FILE__ ), false, THE_CHAMP_SS_VERSION);
1414
  }
1415
  }
1416
+ if(isset($theChampSharingOptions['vertical_enable'])){
1417
+ if(isset($theChampSharingOptions['vertical_more'])){
1418
  $default_svg = true;
1419
  }
1420
+ if($theChampSharingOptions['vertical_font_color_default'] != ''){
1421
+ wp_enqueue_style('the_champ_vertical_sharing_svg', plugins_url('css/share-default-svg-vertical.css', __FILE__ ), false, THE_CHAMP_SS_VERSION);
1422
+ }else {
1423
  $default_svg = true;
1424
  }
1425
+ if($theChampSharingOptions['vertical_font_color_hover'] != ''){
1426
+ wp_enqueue_style('the_champ_vertical_sharing_svg_hover', plugins_url('css/share-hover-svg-vertical.css', __FILE__ ), false, THE_CHAMP_SS_VERSION);
1427
  }
1428
  }
1429
  }
1430
+ if($default_svg ){
1431
+ wp_enqueue_style('the_champ_sharing_default_svg', plugins_url('css/share-svg.css', __FILE__ ), false, THE_CHAMP_SS_VERSION);
1432
  }
1433
  }
1434
 
1438
  function the_champ_create_admin_menu(){
1439
  $page = add_menu_page('Super Socializer by Heateor', 'Super Socializer', 'manage_options', 'heateor-ss-general-options', 'the_champ_general_options_page', plugins_url('images/logo.png', __FILE__));
1440
  // general options page
1441
+ $generalOptionsPage = add_submenu_page('heateor-ss-general-options', __( "Super Socializer - General Options", 'super-socializer'), __( "General Options", 'super-socializer'), 'manage_options', 'heateor-ss-general-options', 'the_champ_general_options_page');
1442
  // facebook page
1443
  $facebookPage = add_submenu_page('heateor-ss-general-options', 'Super Socializer - Social Commenting', 'Social Commenting', 'manage_options', 'heateor-social-commenting', 'the_champ_facebook_page');
1444
  // social login page
1447
  $sharingPage = add_submenu_page('heateor-ss-general-options', 'Super Socializer - Social Sharing', 'Social Sharing', 'manage_options', 'heateor-social-sharing', 'the_champ_social_sharing_page');
1448
  // like buttons page
1449
  $counterPage = add_submenu_page('heateor-ss-general-options', 'Super Socializer - Like Buttons', 'Like Buttons', 'manage_options', 'heateor-like-buttons', 'the_champ_like_buttons_page');
1450
+ add_action('admin_print_scripts-'.$page, 'the_champ_admin_scripts');
1451
+ add_action('admin_print_scripts-'.$page, 'the_champ_admin_style');
1452
+ add_action('admin_print_scripts-'.$page, 'the_champ_fb_sdk_script');
1453
+ add_action('admin_print_scripts-'.$generalOptionsPage, 'the_champ_admin_scripts');
1454
+ add_action('admin_print_scripts-'.$generalOptionsPage, 'the_champ_fb_sdk_script');
1455
+ add_action('admin_print_styles-'.$generalOptionsPage, 'the_champ_admin_style');
1456
+ add_action('admin_print_scripts-'.$facebookPage, 'the_champ_admin_scripts');
1457
+ add_action('admin_print_scripts-'.$facebookPage, 'the_champ_fb_sdk_script');
1458
+ add_action('admin_print_styles-'.$facebookPage, 'the_champ_admin_style');
1459
+ add_action('admin_print_scripts-'.$loginPage, 'the_champ_admin_scripts');
1460
+ add_action('admin_print_scripts-'.$loginPage, 'the_champ_fb_sdk_script');
1461
+ add_action('admin_print_styles-'.$loginPage, 'the_champ_admin_style');
1462
+ add_action('admin_print_scripts-'.$sharingPage, 'the_champ_admin_scripts');
1463
+ add_action('admin_print_scripts-'.$sharingPage, 'the_champ_fb_sdk_script');
1464
+ add_action('admin_print_scripts-'.$sharingPage, 'the_champ_admin_sharing_scripts');
1465
+ add_action('admin_print_styles-'.$sharingPage, 'the_champ_admin_style');
1466
+ add_action('admin_print_styles-'.$sharingPage, 'the_champ_admin_sharing_style');
1467
+ add_action('admin_print_scripts-'.$counterPage, 'the_champ_admin_scripts');
1468
+ add_action('admin_print_scripts-'.$counterPage, 'the_champ_fb_sdk_script');
1469
+ add_action('admin_print_scripts-'.$counterPage, 'the_champ_admin_counter_scripts');
1470
+ add_action('admin_print_styles-'.$counterPage, 'the_champ_admin_style');
1471
  }
1472
  add_action('admin_menu', 'the_champ_create_admin_menu');
1473
 
1501
  /**
1502
  * Show Social Avatar options at profile page
1503
  */
1504
+ function the_champ_show_avatar_option($user ){
1505
  global $user_ID, $theChampLoginOptions;
1506
+ if(isset($theChampLoginOptions['enable']) && isset($theChampLoginOptions['avatar'])){
1507
  $dontUpdateAvatar = get_user_meta($user_ID, 'thechamp_dontupdate_avatar', true);
1508
  ?>
1509
+ <h3><?php _e('Social Avatar', 'super-socializer') ?></h3>
1510
  <table class="form-table">
1511
  <tr>
1512
+ <th><label for="ss_small_avatar"><?php _e('Small Avatar Url', 'super-socializer') ?></label></th>
1513
+ <td><input id="ss_small_avatar" type="text" name="the_champ_small_avatar" value="<?php echo esc_attr(get_user_meta($user->ID, 'thechamp_avatar', true )); ?>" class="regular-text" /></td>
1514
  </tr>
1515
  <tr>
1516
+ <th><label for="ss_large_avatar"><?php _e('Large Avatar Url', 'super-socializer') ?></label></th>
1517
+ <td><input id="ss_large_avatar" type="text" name="the_champ_large_avatar" value="<?php echo esc_attr(get_user_meta($user->ID, 'thechamp_large_avatar', true )); ?>" class="regular-text" /></td>
1518
  </tr>
1519
  <tr>
1520
+ <th><label for="ss_dontupdate_avatar_1"><?php _e('Do not fetch and update social avatar from my profile, next time I Social Login', 'super-socializer') ?></label></th>
1521
  <td><input id="ss_dontupdate_avatar_1" style="margin-right:5px" type="radio" name="ss_dontupdate_avatar" value="1" <?php echo $dontUpdateAvatar ? 'checked' : '' ?> /></td>
1522
  </tr>
1523
  <tr>
1524
+ <th><label for="ss_dontupdate_avatar_0"><?php _e('Update social avatar, next time I Social Login', 'super-socializer') ?></label></th>
1525
+ <td><input id="ss_dontupdate_avatar_0" style="margin-right:5px" type="radio" name="ss_dontupdate_avatar" value="0" <?php echo !$dontUpdateAvatar ? 'checked' : '' ?> /></td>
1526
  </tr>
1527
  </table>
1528
  <?php
1529
  }
1530
  }
1531
+ add_action('edit_user_profile', 'the_champ_show_avatar_option');
1532
+ add_action('show_user_profile', 'the_champ_show_avatar_option');
1533
 
1534
  /**
1535
  * Save social avatar options from profile page
1536
  */
1537
+ function the_champ_save_avatar($user_id ){
1538
+ if(!current_user_can('edit_user', $user_id )){
1539
  return false;
1540
  }
1541
+ if(isset($_POST['the_champ_small_avatar'])){
1542
+ update_user_meta($user_id, 'thechamp_avatar', esc_url(trim($_POST['the_champ_small_avatar'])));
1543
  }
1544
+ if(isset($_POST['the_champ_large_avatar'])){
1545
+ update_user_meta($user_id, 'thechamp_large_avatar', esc_url(trim($_POST['the_champ_large_avatar'])));
1546
  }
1547
+ if(isset($_POST['ss_dontupdate_avatar'])){
1548
+ update_user_meta($user_id, 'thechamp_dontupdate_avatar', intval($_POST['ss_dontupdate_avatar']));
1549
  }
1550
  }
1551
+ add_action('personal_options_update', 'the_champ_save_avatar');
1552
+ add_action('edit_user_profile_update', 'the_champ_save_avatar');
1553
 
1554
  if(!function_exists('array_replace')){
1555
  /**
1672
  'title' => 'Spread the love',
1673
  'instagram_username' => '',
1674
  'comment_container_id' => 'respond',
1675
+ 'horizontal_re_providers' => array('facebook', 'twitter', 'linkedin', 'pinterest', 'reddit', 'MeWe', 'mix', 'whatsapp'),
1676
  'hor_sharing_alignment' => 'left',
1677
  'top' => '1',
1678
  'post' => '1',
1683
  'vertical_target_url_custom' => '',
1684
  'vertical_instagram_username' => '',
1685
  'vertical_comment_container_id' => 'respond',
1686
+ 'vertical_re_providers' => array('facebook', 'twitter', 'linkedin', 'pinterest', 'reddit', 'MeWe', 'mix', 'whatsapp'),
1687
  'vertical_bg' => '',
1688
  'alignment' => 'left',
1689
  'left_offset' => '-10',
1743
  }
1744
  }
1745
  the_champ_save_default_options();
1746
+ set_transient('heateor-ss-admin-notice-on-activation', true, 5 );
1747
  }
1748
  register_activation_hook(__FILE__, 'the_champ_activate_plugin');
1749
 
1875
  <?php
1876
  }
1877
 
1878
+ if(defined('HEATEOR_SOCIAL_LOGIN_BUTTONS_VERSION') && version_compare('1.2', HEATEOR_SOCIAL_LOGIN_BUTTONS_VERSION) > 0){
1879
  ?>
1880
  <div class="error notice">
1881
  <h3>Social Login Buttons</h3>
1943
  if(version_compare('7.11', $currentVersion) <= 0 && isset($theChampLoginOptions['enable']) && isset($theChampLoginOptions['providers']) &&
1944
  (
1945
  (in_array('facebook', $theChampLoginOptions['providers']) && (!isset($theChampLoginOptions['fb_secret']) || $theChampLoginOptions['fb_secret'] == '')) ||
1946
+ (in_array('linkedin', $theChampLoginOptions['providers']) && (!isset($theChampLoginOptions['li_secret']) || $theChampLoginOptions['li_secret'] == '')) ||
1947
  (in_array('google', $theChampLoginOptions['providers']) && (!isset($theChampLoginOptions['google_secret']) || $theChampLoginOptions['google_secret'] == '')) ||
1948
  (in_array('vkontakte', $theChampLoginOptions['providers']) && (!isset($theChampLoginOptions['vk_secure_key']) || $theChampLoginOptions['vk_secure_key'] == ''))
1949
  )
1975
  </script>
1976
  <div id="heateor_ss_fb_redirection_notification" class="error">
1977
  <h3>Super Socializer</h3>
1978
+ <p><?php echo sprintf(__('Add %s in "Valid OAuth redirect URIs" option in your Facebook app settings for Facebook login to work. For more details, check step 9 <a href="%s" target="_blank">here</a>', 'super-socializer'), home_url().'/?SuperSocializerAuth=Facebook', 'http://support.heateor.com/how-to-get-facebook-app-id/'); ?><input type="button" onclick="heateorSsFbRedirectionNotificationRead()" style="margin-left: 5px;" class="button button-primary" value="<?php _e('Okay', 'super-socializer') ?>" /></p>
1979
  </div>
1980
  <?php
1981
  }
2031
  }
2032
  }
2033
 
2034
+ if(version_compare('7.11', $currentVersion) <= 0 && isset($theChampLoginOptions['enable']) && isset($theChampLoginOptions['providers']) && is_array($theChampLoginOptions['providers']) && in_array('google', $theChampLoginOptions['providers']) && home_url() != the_champ_get_http().$_SERVER['HTTP_HOST']){
2035
  if(!get_option('heateor_ss_google_redirection_notification_read')){
2036
  ?>
2037
  <script type="text/javascript">
2111
  </script>
2112
  <div id="heateor_ss_twitcount_notification" class="notice notice-warning">
2113
  <h3>Super Socializer</h3>
2114
+ <p><?php echo sprintf( __('Now plugin supports a new service Twitcount.com to show Twitter shares. To continue showing the Twitter shares, click "Give me my Twitter counts back" button at <a href="%s" target="_blank">their website</a> and register your website %s with them. No need to copy-paste any code from their website.', 'super-socializer'), 'http://twitcount.com', home_url()); ?><input type="button" onclick="heateorSsTwitcountNotificationRead()" style="margin-left: 5px;" class="button button-primary" value="<?php _e('Okay', 'super-socializer') ?>" /></p>
2115
  </div>
2116
  <?php
2117
  }
2524
 
2525
  if(version_compare($currentVersion, '6.9') > 0){
2526
  global $theChampSharingOptions;
2527
+ if($theChampSharingOptions['horizontal_sharing_replace_color'] != '#fff'){
2528
+ the_champ_update_svg_css($theChampSharingOptions['horizontal_sharing_replace_color'], 'share-default-svg-horizontal');
2529
  }
2530
+ if($theChampSharingOptions['horizontal_sharing_replace_color_hover'] != '#fff'){
2531
+ the_champ_update_svg_css($theChampSharingOptions['horizontal_sharing_replace_color_hover'], 'share-hover-svg-horizontal');
2532
  }
2533
+ if($theChampSharingOptions['vertical_sharing_replace_color'] != '#fff'){
2534
+ the_champ_update_svg_css($theChampSharingOptions['vertical_sharing_replace_color'], 'share-default-svg-vertical');
2535
  }
2536
+ if($theChampSharingOptions['vertical_sharing_replace_color_hover'] != '#fff'){
2537
+ the_champ_update_svg_css($theChampSharingOptions['vertical_sharing_replace_color_hover'], 'share-hover-svg-vertical');
2538
  }
2539
  }
2540
 
2553
  * Updates SVG CSS file according to chosen logo color
2554
  */
2555
  function the_champ_update_svg_css($colorToBeReplaced, $cssFile){
2556
+ $path = plugin_dir_url( __FILE__ ).'css/'.$cssFile.'.css';
2557
  try{
2558
+ $content = file($path );
2559
+ if($content !== false ){
2560
+ $handle = fopen( dirname( __FILE__ ).'/css/'.$cssFile.'.css','w');
2561
+ if($handle !== false ){
2562
+ foreach ($content as $value ){
2563
+ fwrite($handle, str_replace('%23fff', str_replace('#', '%23', $colorToBeReplaced ), $value ));
2564
  }
2565
+ fclose($handle );
2566
  }
2567
  }
2568
  }catch(Exception $e){}
2591
  if($theChampSharingOptions['horizontal_sharing_shape'] == 'round'){
2592
  $css .= '.heateor_ss_amp amp-img{border-radius:999px;}';
2593
  }elseif($theChampSharingOptions['horizontal_border_radius'] != ''){
2594
+ $css .= '.heateor_ss_amp amp-img{border-radius:'.$theChampSharingOptions['horizontal_border_radius'].'px;}';
2595
  }
2596
 
2597
  if(current_action() == 'wp_print_styles'){