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

Version Description

  • [Improvement] Performance improvement
  • [Improvement] Improved Spanish translation
Download this release

Release Info

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

Code changes from version 7.8.10 to 7.8.11

helper.php CHANGED
@@ -3,7 +3,7 @@
3
  * Display notification message when plugin options are saved
4
  */
5
  function the_champ_settings_saved_notification(){
6
- if( isset( $_GET['settings-updated'] ) && $_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
  }
@@ -267,7 +267,7 @@ function the_champ_ajax_response($response){
267
  function the_champ_notify(){
268
  if(isset($_GET['message'])){
269
  ?>
270
- <div><?php echo trim(esc_attr($_GET['message'])) ?></div>
271
  <?php
272
  }
273
  die;
@@ -551,7 +551,7 @@ function the_champ_account_linking(){
551
  <div id="fb-root"></div>
552
  <script>
553
  var theChampFBKey = '<?php echo (isset($theChampLoginOptions["fb_key"]) && $theChampLoginOptions["fb_key"] != "") ? $theChampLoginOptions["fb_key"] : "" ?>'; var theChampFBLang = '<?php echo (isset($theChampFacebookOptions["comment_lang"]) && $theChampFacebookOptions["comment_lang"] != '') ? $theChampFacebookOptions["comment_lang"] : "en_US" ?>';
554
- var theChampFacebookScope = 'email', theChampFbIosLogin = <?php echo is_user_logged_in() && isset($_GET['code']) && esc_attr($_GET['code']) != '' ? 1 : 0; ?>;
555
  </script>
556
  <?php
557
  wp_enqueue_script('the_champ_fb_sdk', plugins_url('js/front/facebook/sdk.js', __FILE__), false, THE_CHAMP_SS_VERSION);
@@ -569,11 +569,11 @@ function the_champ_account_linking(){
569
  <table class="form-table editcomment superSocializerTable">
570
  <tbody>';
571
  if(isset($_GET['linked'])){
572
- if($_GET['linked'] == 1){
573
  $html .= '<tr>
574
  <td colspan="2" style="color: green">' . __('Account linked successfully', 'Super-Socializer') . '</td>
575
  </tr>';
576
- }elseif($_GET['linked'] == 0){
577
  $html .= '<tr>
578
  <td colspan="2" style="color: red">' . __('Account already exists or linked', 'Super-Socializer') . '</td>
579
  </tr>';
@@ -674,7 +674,7 @@ function the_champ_unlink(){
674
  $linkedAccounts = get_user_meta($user_ID, 'thechamp_linked_accounts', true);
675
  if($linkedAccounts){
676
  $linkedAccounts = maybe_unserialize($linkedAccounts);
677
- unset($linkedAccounts[$_POST['provider']]);
678
  update_user_meta($user_ID, 'thechamp_linked_accounts', maybe_serialize($linkedAccounts));
679
  the_champ_ajax_response(array('status' => 1, 'message' => ''));
680
  }
@@ -830,6 +830,9 @@ function the_champ_save_sharing_meta($postId){
830
  }
831
  if ( isset( $_POST['_the_champ_meta'] ) ) {
832
  $newData = $_POST['_the_champ_meta'];
 
 
 
833
  }else{
834
  $newData = array( 'sharing' => 0, 'vertical_sharing' => 0, 'counter' => 0, 'vertical_counter' => 0, 'fb_comments' => 0 );
835
  }
@@ -865,18 +868,18 @@ function the_champ_social_avatar_options(){
865
  global $user_ID, $theChampLoginOptions;
866
  if(isset($theChampLoginOptions['enable']) && isset($theChampLoginOptions['avatar']) && isset($theChampLoginOptions['avatar_options'])){
867
  if(isset($_POST['ss_dontupdate_avatar'])){
868
- $dontUpdateAvatar = $_POST['ss_dontupdate_avatar'];
869
- update_user_meta( $user_ID, 'thechamp_dontupdate_avatar', $dontUpdateAvatar );
870
  }else{
871
  $dontUpdateAvatar = get_user_meta($user_ID, 'thechamp_dontupdate_avatar', true);
872
  }
873
- if(isset($_POST['ss_small_avatar'])){
874
- $updatedSmallAvatar = esc_url( str_replace( 'http://', '//', $_POST['ss_small_avatar']) );
875
- update_user_meta( $user_ID, 'thechamp_avatar', $updatedSmallAvatar );
876
  }
877
- if(isset($_POST['ss_large_avatar'])){
878
- $updatedLargeAvatar = esc_url( str_replace( 'http://', '//', $_POST['ss_large_avatar']) );
879
- update_user_meta( $user_ID, 'thechamp_large_avatar', $updatedLargeAvatar );
880
  }
881
  ?>
882
  <div class="profile" style="margin-bottom:20px">
@@ -938,11 +941,11 @@ $heateorSsLoginAttempt = 0;
938
  /**
939
  * Stop unverified users from logging in.
940
  */
941
- function heateor_ss_filter_login( $user, $username, $password ) {
942
- $tempUser = get_user_by( 'login', $username );
943
- if ( isset( $tempUser->data->ID ) ) {
944
  $id = $tempUser->data->ID;
945
- if ( $id != 1 && get_user_meta( $id, 'thechamp_key', true ) != '' ) {
946
  global $heateorSsLoginAttempt;
947
  $heateorSsLoginAttempt = 1;
948
  return null;
@@ -950,17 +953,24 @@ function heateor_ss_filter_login( $user, $username, $password ) {
950
  }
951
  return $user;
952
  }
953
- add_filter( 'authenticate', 'heateor_ss_filter_login', 40, 3 );
954
 
955
  /**
956
  * Show message, if an unverified user logs in via login form
957
  */
958
- function heateor_ss_login_error_message( $error ){
959
  global $heateorSsLoginAttempt;
960
  //check if unverified user has attempted to login
961
- if ( $heateorSsLoginAttempt == 1 ) {
962
- $error = __( 'Please verify your email address to login.', 'Super-Socializer' );
963
  }
964
  return $error;
965
  }
966
- add_filter( 'login_errors', 'heateor_ss_login_error_message' );
 
 
 
 
 
 
 
3
  * Display notification message when plugin options are saved
4
  */
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
  }
267
  function the_champ_notify(){
268
  if(isset($_GET['message'])){
269
  ?>
270
+ <div><?php echo sanitize_text_field($_GET['message']) ?></div>
271
  <?php
272
  }
273
  die;
551
  <div id="fb-root"></div>
552
  <script>
553
  var theChampFBKey = '<?php echo (isset($theChampLoginOptions["fb_key"]) && $theChampLoginOptions["fb_key"] != "") ? $theChampLoginOptions["fb_key"] : "" ?>'; var theChampFBLang = '<?php echo (isset($theChampFacebookOptions["comment_lang"]) && $theChampFacebookOptions["comment_lang"] != '') ? $theChampFacebookOptions["comment_lang"] : "en_US" ?>';
554
+ var theChampFacebookScope = 'email', theChampFbIosLogin = <?php echo is_user_logged_in() && isset($_GET['code']) && trim($_GET['code']) != '' ? 1 : 0; ?>;
555
  </script>
556
  <?php
557
  wp_enqueue_script('the_champ_fb_sdk', plugins_url('js/front/facebook/sdk.js', __FILE__), false, THE_CHAMP_SS_VERSION);
569
  <table class="form-table editcomment superSocializerTable">
570
  <tbody>';
571
  if(isset($_GET['linked'])){
572
+ if(intval($_GET['linked']) == 1){
573
  $html .= '<tr>
574
  <td colspan="2" style="color: green">' . __('Account linked successfully', 'Super-Socializer') . '</td>
575
  </tr>';
576
+ }elseif(intval($_GET['linked']) == 0){
577
  $html .= '<tr>
578
  <td colspan="2" style="color: red">' . __('Account already exists or linked', 'Super-Socializer') . '</td>
579
  </tr>';
674
  $linkedAccounts = get_user_meta($user_ID, 'thechamp_linked_accounts', true);
675
  if($linkedAccounts){
676
  $linkedAccounts = maybe_unserialize($linkedAccounts);
677
+ unset($linkedAccounts[sanitize_text_field($_POST['provider'])]);
678
  update_user_meta($user_ID, 'thechamp_linked_accounts', maybe_serialize($linkedAccounts));
679
  the_champ_ajax_response(array('status' => 1, 'message' => ''));
680
  }
830
  }
831
  if ( isset( $_POST['_the_champ_meta'] ) ) {
832
  $newData = $_POST['_the_champ_meta'];
833
+ foreach($newData as $k => $v){
834
+ $newData[$k] = intval($v);
835
+ }
836
  }else{
837
  $newData = array( 'sharing' => 0, 'vertical_sharing' => 0, 'counter' => 0, 'vertical_counter' => 0, 'fb_comments' => 0 );
838
  }
868
  global $user_ID, $theChampLoginOptions;
869
  if(isset($theChampLoginOptions['enable']) && isset($theChampLoginOptions['avatar']) && isset($theChampLoginOptions['avatar_options'])){
870
  if(isset($_POST['ss_dontupdate_avatar'])){
871
+ $dontUpdateAvatar = intval($_POST['ss_dontupdate_avatar']);
872
+ update_user_meta($user_ID, 'thechamp_dontupdate_avatar', $dontUpdateAvatar);
873
  }else{
874
  $dontUpdateAvatar = get_user_meta($user_ID, 'thechamp_dontupdate_avatar', true);
875
  }
876
+ if(isset($_POST['ss_small_avatar']) && heateor_ss_validate_url($_POST['ss_small_avatar']) !== false){
877
+ $updatedSmallAvatar = str_replace('http://', '//', esc_url(trim($_POST['ss_small_avatar'])));
878
+ update_user_meta($user_ID, 'thechamp_avatar', $updatedSmallAvatar);
879
  }
880
+ if(isset($_POST['ss_large_avatar']) && heateor_ss_validate_url($_POST['ss_large_avatar']) !== false){
881
+ $updatedLargeAvatar = str_replace('http://', '//', esc_url(trim($_POST['ss_large_avatar'])));
882
+ update_user_meta($user_ID, 'thechamp_large_avatar', $updatedLargeAvatar);
883
  }
884
  ?>
885
  <div class="profile" style="margin-bottom:20px">
941
  /**
942
  * Stop unverified users from logging in.
943
  */
944
+ function heateor_ss_filter_login($user, $username, $password){
945
+ $tempUser = get_user_by('login', $username);
946
+ if(isset($tempUser->data->ID)){
947
  $id = $tempUser->data->ID;
948
+ if($id != 1 && get_user_meta($id, 'thechamp_key', true) != ''){
949
  global $heateorSsLoginAttempt;
950
  $heateorSsLoginAttempt = 1;
951
  return null;
953
  }
954
  return $user;
955
  }
956
+ add_filter('authenticate', 'heateor_ss_filter_login', 40, 3);
957
 
958
  /**
959
  * Show message, if an unverified user logs in via login form
960
  */
961
+ function heateor_ss_login_error_message($error){
962
  global $heateorSsLoginAttempt;
963
  //check if unverified user has attempted to login
964
+ if($heateorSsLoginAttempt == 1){
965
+ $error = __('Please verify your email address to login.', 'Super-Socializer');
966
  }
967
  return $error;
968
  }
969
+ add_filter('login_errors', 'heateor_ss_login_error_message');
970
+
971
+ /**
972
+ * Check if url is in valid format
973
+ */
974
+ function heateor_ss_validate_url($url){
975
+ return filter_var(trim($url), FILTER_VALIDATE_URL);
976
+ }
inc/social_login.php CHANGED
@@ -351,69 +351,80 @@ function the_champ_buddypress_avatar($text, $args){
351
  /**
352
  * Format social profile data
353
  */
354
- function the_champ_format_profile_data($profileData, $provider){
355
  $temp = array();
356
- if($provider == 'twitter'){
357
- $temp['id'] = isset($profileData -> id) ? $profileData -> id : '';
358
- $temp['email'] = isset($profileData -> email) ? $profileData -> email : '';
 
 
 
 
 
 
 
 
 
 
 
359
  $temp['name'] = isset($profileData -> name) ? $profileData -> name : '';
360
  $temp['username'] = isset($profileData -> screen_name) ? $profileData -> screen_name : '';
361
  $temp['first_name'] = '';
362
  $temp['last_name'] = '';
363
- $temp['bio'] = isset($profileData -> description) ? $profileData -> description : '';
364
- $temp['link'] = $temp['username'] != '' ? 'https://twitter.com/'.$temp['username'] : '';
365
- $temp['avatar'] = isset($profileData -> profile_image_url) ? $profileData -> profile_image_url : '';
366
  $temp['large_avatar'] = $temp['avatar'] != '' ? str_replace('_normal', '', $temp['avatar']) : '';
367
  }elseif($provider == 'twitch'){
368
- $temp['id'] = isset($profileData['_id']) ? $profileData['_id'] : '';
369
- $temp['email'] = isset($profileData['email']) && $profileData['email'] != null ? $profileData['email'] : '';
370
  $temp['name'] = isset($profileData['name']) && $profileData['name'] != null ? $profileData['name'] : '';
371
  $temp['username'] = isset($profileData['display_name']) && $profileData['display_name'] != null ? $profileData['display_name'] : '';
372
  $temp['first_name'] = '';
373
  $temp['last_name'] = '';
374
- $temp['bio'] = isset($profileData['bio']) && $profileData['bio'] != null ? $profileData['bio'] : '';
375
  $temp['link'] = '';
376
- $temp['avatar'] = isset($profileData['logo']) && $profileData['logo'] != null ? $profileData['logo'] : '';
377
  $temp['large_avatar'] = '';
378
  }elseif($provider == 'steam'){
379
- $temp['id'] = isset($profileData->steamID64) ? (string) $profileData->steamID64 : '';
380
  $temp['email'] = '';
381
  $temp['name'] = isset($profileData->realname) ? (string) $profileData->realname : '';
382
  $temp['username'] = isset($profileData->steamID) ? (string) $profileData->steamID : '';
383
  $temp['first_name'] = '';
384
  $temp['last_name'] = '';
385
- $temp['bio'] = isset($profileData->summary) ? (string) $profileData->summary : '';
386
  $temp['link'] = 'http://steamcommunity.com/profiles/' . $temp['id'];
387
- $temp['avatar'] = isset($profileData->avatarMedium) ? (string) $profileData->avatarMedium : '';
388
- $temp['large_avatar'] = isset($profileData->avatarFull) ? (string) $profileData->avatarFull : '';
389
  }elseif($provider == 'xing'){
390
- $temp['id'] = isset($profileData -> id) ? $profileData -> id : '';
391
- $temp['email'] = isset($profileData -> active_email) ? $profileData -> active_email : '';;
392
  $temp['name'] = isset($profileData -> display_name) ? $profileData -> display_name : '';
393
  $temp['username'] = '';
394
  $temp['first_name'] = isset($profileData -> first_name) ? $profileData -> first_name : '';
395
  $temp['last_name'] = isset($profileData -> last_name) ? $profileData -> last_name : '';
396
  $temp['bio'] = '';
397
- $temp['link'] = isset($profileData -> permalink) ? $profileData -> permalink : '';
398
- $temp['avatar'] = isset($profileData -> photo_urls -> medium_thumb) ? $profileData -> photo_urls -> medium_thumb : '';
399
- $temp['large_avatar'] = isset($profileData -> photo_urls -> size_original) ? $profileData -> photo_urls -> size_original : '';
400
  }elseif($provider == 'linkedin'){
401
- $temp['id'] = isset($profileData['id']) ? $profileData['id'] : '';
402
- $temp['email'] = isset($profileData['emailAddress']) ? $profileData['emailAddress'] : '';
403
  $temp['name'] = '';
404
  $temp['username'] = '';
405
  $temp['first_name'] = isset($profileData['firstName']) ? $profileData['firstName'] : '';
406
  $temp['last_name'] = isset($profileData['lastName']) ? $profileData['lastName'] : '';
407
- $temp['bio'] = isset($profileData['headline']) ? $profileData['headline'] : '';
408
- $temp['link'] = isset($profileData['publicProfileUrl']) ? $profileData['publicProfileUrl'] : '';
409
- $temp['avatar'] = isset($profileData['pictureUrl']) ? $profileData['pictureUrl'] : '';
410
- $temp['large_avatar'] = isset($profileData['pictureUrls']) && isset($profileData['pictureUrls']['values']) && isset($profileData['pictureUrls']['values'][0]) ? $profileData['pictureUrls']['values'][0] : '';
411
  }elseif($provider == 'google'){
412
- $temp['id'] = isset($profileData['id']) ? $profileData['id'] : '';
413
  $temp['email'] = '';
414
  foreach($profileData['emails'] as $email){
415
  if(isset($email['value']) && $email['value'] != ''){
416
- $temp['email'] = $email['value'];
417
  break;
418
  }
419
  }
@@ -422,30 +433,30 @@ function the_champ_format_profile_data($profileData, $provider){
422
  $temp['first_name'] = isset($profileData['name']) && isset($profileData['name']['givenName']) ? $profileData['name']['givenName'] : '';
423
  $temp['last_name'] = isset($profileData['name']) && isset($profileData['name']['familyName']) ? $profileData['name']['familyName'] : '';
424
  $temp['bio'] = '';
425
- $temp['link'] = isset($profileData['url']) ? $profileData['url'] : '';
426
- $temp['avatar'] = isset($profileData['image']['url']) ? $profileData['image']['url'] : '';
427
  $temp['large_avatar'] = $temp['avatar'] != '' ? str_replace('?sz=50', '', $temp['avatar']) : '';
428
  }elseif($provider == 'vkontakte'){
429
- $temp['id'] = isset($profileData['uid']) ? $profileData['uid'] : '';
430
  $temp['email'] = '';
431
  $temp['name'] = isset($profileData['nickname']) ? $profileData['nickname'] : '';
432
  $temp['username'] = '';
433
  $temp['first_name'] = isset($profileData['first_name']) ? $profileData['first_name'] : '';
434
  $temp['last_name'] = isset($profileData['last_name']) ? $profileData['last_name'] : '';
435
  $temp['bio'] = '';
436
- $temp['link'] = isset($profileData['uid']) ? 'https://vk.com/id' . $profileData['uid'] : '';
437
- $temp['avatar'] = isset($profileData['photo']) ? $profileData['photo'] : '';
438
- $temp['large_avatar'] = isset($profileData['photo_big']) ? $profileData['photo_big'] : '';
439
  }elseif($provider == 'instagram'){
440
- $temp['id'] = isset($profileData -> id) ? $profileData -> id : '';
441
  $temp['email'] = '';
442
  $temp['name'] = isset($profileData -> full_name) ? $profileData -> full_name : '';
443
  $temp['username'] = isset($profileData -> username) ? $profileData -> username : '';
444
  $temp['first_name'] = '';
445
  $temp['last_name'] = '';
446
- $temp['bio'] = isset($profileData -> bio) ? $profileData -> bio : '';
447
- $temp['link'] = isset($profileData -> website) ? $profileData -> website : '';
448
- $temp['avatar'] = isset($profileData -> profile_picture) ? $profileData -> profile_picture : '';
449
  $temp['large_avatar'] = '';
450
  }
451
  $temp['avatar'] = str_replace( 'http://', '//', $temp['avatar'] );
@@ -464,7 +475,7 @@ function the_champ_format_profile_data($profileData, $provider){
464
  */
465
  function the_champ_user_auth($profileData, $provider = 'facebook', $twitterRedirect = ''){
466
  global $theChampLoginOptions, $user_ID;
467
- if($provider != 'facebook'){
468
  $profileData = the_champ_format_profile_data($profileData, $provider);
469
  }else{
470
  $profileData['provider'] = 'facebook';
@@ -472,7 +483,7 @@ function the_champ_user_auth($profileData, $provider = 'facebook', $twitterRedir
472
  // social avatar url
473
  $profileData['avatar'] = "//graph.facebook.com/" . $profileData['id'] . "/picture?type=square";
474
  $profileData['large_avatar'] = "//graph.facebook.com/" . $profileData['id'] . "/picture?type=large";
475
- }
476
  // authenticate user
477
  // check if Social ID exists in database
478
  if($profileData['id'] == ''){
@@ -647,13 +658,19 @@ function the_champ_link_account($socialId, $provider, $userId){
647
  */
648
  function the_champ_user_auth_ajax(){
649
  if(isset($_POST['error'])){
650
- the_champ_log_error(esc_attr($_POST['error']));
651
  }
652
  if(!isset($_POST['profileData'])){
653
  the_champ_ajax_response(array('status' => 0, 'message' => 'Invalid request'));
654
  }
655
  $profileData = $_POST['profileData'];
656
- $response = the_champ_user_auth($profileData, esc_attr($_POST['provider']), esc_attr(urldecode($_POST['redirectionUrl'])));
 
 
 
 
 
 
657
  the_champ_ajax_response($response);
658
  }
659
  add_action('wp_ajax_the_champ_user_auth', 'the_champ_user_auth_ajax');
@@ -685,11 +702,11 @@ add_action('wp_ajax_nopriv_the_champ_ask_email', 'the_champ_ask_email');
685
  */
686
  function the_champ_save_email(){
687
  if(isset($_POST['elemId'])){
688
- $elementId = trim($_POST['elemId']);
689
- if(isset($_POST['id']) && ($id = trim($_POST['id'])) != ''){
690
  if($elementId == 'save'){
691
  global $theChampLoginOptions;
692
- $email = isset($_POST['email']) ? trim(esc_attr($_POST['email'])) : '';
693
  // validate email
694
  if(is_email($email) && !email_exists($email)){
695
  if(($tempData = get_user_meta($id, 'the_champ_temp_data', true)) != ''){
351
  /**
352
  * Format social profile data
353
  */
354
+ function the_champ_sanitize_profile_data($profileData, $provider){
355
  $temp = array();
356
+ if($provider == 'facebook'){
357
+ $temp['id'] = isset($profileData['id']) ? sanitize_text_field($profileData['id']) : '';
358
+ $temp['email'] = isset($profileData['email']) ? sanitize_email($profileData['email']) : '';
359
+ $temp['name'] = isset($profileData['name']) ? $profileData['name'] : '';
360
+ $temp['username'] = isset($profileData['username']) ? $profileData['username'] : '';
361
+ $temp['first_name'] = '';
362
+ $temp['last_name'] = '';
363
+ $temp['bio'] = isset($profileData['about']) ? $profileData['about'] : '';
364
+ $temp['link'] = isset($profileData['link']) && heateor_ss_validate_url($profileData['link']) !== false ? trim($profileData['link']) : '';
365
+ $temp['avatar'] = "//graph.facebook.com/" . $profileData['id'] . "/picture?type=square";
366
+ $temp['large_avatar'] = "//graph.facebook.com/" . $profileData['id'] . "/picture?type=large";
367
+ }elseif($provider == 'twitter'){
368
+ $temp['id'] = isset($profileData -> id) ? sanitize_text_field($profileData -> id) : '';
369
+ $temp['email'] = isset($profileData -> email) ? sanitize_email($profileData -> email) : '';
370
  $temp['name'] = isset($profileData -> name) ? $profileData -> name : '';
371
  $temp['username'] = isset($profileData -> screen_name) ? $profileData -> screen_name : '';
372
  $temp['first_name'] = '';
373
  $temp['last_name'] = '';
374
+ $temp['bio'] = isset($profileData -> description) ? sanitize_text_field($profileData -> description) : '';
375
+ $temp['link'] = $temp['username'] != '' ? 'https://twitter.com/'.sanitize_user($temp['username']) : '';
376
+ $temp['avatar'] = isset($profileData -> profile_image_url) && heateor_ss_validate_url($profileData -> profile_image_url) !== false ? trim($profileData -> profile_image_url) : '';
377
  $temp['large_avatar'] = $temp['avatar'] != '' ? str_replace('_normal', '', $temp['avatar']) : '';
378
  }elseif($provider == 'twitch'){
379
+ $temp['id'] = isset($profileData['_id']) ? sanitize_text_field($profileData['_id']) : '';
380
+ $temp['email'] = isset($profileData['email']) && $profileData['email'] != null ? sanitize_email($profileData['email']) : '';
381
  $temp['name'] = isset($profileData['name']) && $profileData['name'] != null ? $profileData['name'] : '';
382
  $temp['username'] = isset($profileData['display_name']) && $profileData['display_name'] != null ? $profileData['display_name'] : '';
383
  $temp['first_name'] = '';
384
  $temp['last_name'] = '';
385
+ $temp['bio'] = isset($profileData['bio']) && $profileData['bio'] != null ? sanitize_text_field($profileData['bio']) : '';
386
  $temp['link'] = '';
387
+ $temp['avatar'] = isset($profileData['logo']) && $profileData['logo'] != null && heateor_ss_validate_url($profileData['logo']) !== false ? trim($profileData['logo']) : '';
388
  $temp['large_avatar'] = '';
389
  }elseif($provider == 'steam'){
390
+ $temp['id'] = isset($profileData->steamID64) ? sanitize_text_field((string) $profileData->steamID64) : '';
391
  $temp['email'] = '';
392
  $temp['name'] = isset($profileData->realname) ? (string) $profileData->realname : '';
393
  $temp['username'] = isset($profileData->steamID) ? (string) $profileData->steamID : '';
394
  $temp['first_name'] = '';
395
  $temp['last_name'] = '';
396
+ $temp['bio'] = isset($profileData->summary) ? sanitize_text_field((string) $profileData->summary) : '';
397
  $temp['link'] = 'http://steamcommunity.com/profiles/' . $temp['id'];
398
+ $temp['avatar'] = isset($profileData->avatarMedium) && heateor_ss_validate_url((string) $profileData->avatarMedium) !== false ? (string) $profileData->avatarMedium : '';
399
+ $temp['large_avatar'] = isset($profileData->avatarFull) && heateor_ss_validate_url((string) $profileData->avatarFull) !== false ? (string) $profileData->avatarFull : '';
400
  }elseif($provider == 'xing'){
401
+ $temp['id'] = isset($profileData -> id) ? sanitize_text_field($profileData -> id) : '';
402
+ $temp['email'] = isset($profileData -> active_email) ? sanitize_email($profileData -> active_email) : '';;
403
  $temp['name'] = isset($profileData -> display_name) ? $profileData -> display_name : '';
404
  $temp['username'] = '';
405
  $temp['first_name'] = isset($profileData -> first_name) ? $profileData -> first_name : '';
406
  $temp['last_name'] = isset($profileData -> last_name) ? $profileData -> last_name : '';
407
  $temp['bio'] = '';
408
+ $temp['link'] = isset($profileData -> permalink) && heateor_ss_validate_url($profileData -> permalink) !== false ? trim($profileData -> permalink) : '';
409
+ $temp['avatar'] = isset($profileData -> photo_urls -> medium_thumb) && heateor_ss_validate_url($profileData -> photo_urls -> medium_thumb) !== false ? trim($profileData -> photo_urls -> medium_thumb) : '';
410
+ $temp['large_avatar'] = isset($profileData -> photo_urls -> size_original) && heateor_ss_validate_url($profileData -> photo_urls -> size_original) !== false ? trim($profileData -> photo_urls -> size_original) : '';
411
  }elseif($provider == 'linkedin'){
412
+ $temp['id'] = isset($profileData['id']) ? sanitize_text_field($profileData['id']) : '';
413
+ $temp['email'] = isset($profileData['emailAddress']) ? sanitize_email($profileData['emailAddress']) : '';
414
  $temp['name'] = '';
415
  $temp['username'] = '';
416
  $temp['first_name'] = isset($profileData['firstName']) ? $profileData['firstName'] : '';
417
  $temp['last_name'] = isset($profileData['lastName']) ? $profileData['lastName'] : '';
418
+ $temp['bio'] = isset($profileData['headline']) ? sanitize_text_field($profileData['headline']) : '';
419
+ $temp['link'] = isset($profileData['publicProfileUrl']) && heateor_ss_validate_url($profileData['publicProfileUrl']) !== false ? trim($profileData['publicProfileUrl']) : '';
420
+ $temp['avatar'] = isset($profileData['pictureUrl']) && heateor_ss_validate_url($profileData['pictureUrl']) !== false ? trim($profileData['pictureUrl']) : '';
421
+ $temp['large_avatar'] = isset($profileData['pictureUrls']) && isset($profileData['pictureUrls']['values']) && isset($profileData['pictureUrls']['values'][0]) && heateor_ss_validate_url($profileData['pictureUrls']['values'][0]) !== false ? trim($profileData['pictureUrls']['values'][0]) : '';
422
  }elseif($provider == 'google'){
423
+ $temp['id'] = isset($profileData['id']) ? sanitize_text_field($profileData['id']) : '';
424
  $temp['email'] = '';
425
  foreach($profileData['emails'] as $email){
426
  if(isset($email['value']) && $email['value'] != ''){
427
+ $temp['email'] = sanitize_email($email['value']);
428
  break;
429
  }
430
  }
433
  $temp['first_name'] = isset($profileData['name']) && isset($profileData['name']['givenName']) ? $profileData['name']['givenName'] : '';
434
  $temp['last_name'] = isset($profileData['name']) && isset($profileData['name']['familyName']) ? $profileData['name']['familyName'] : '';
435
  $temp['bio'] = '';
436
+ $temp['link'] = isset($profileData['url']) && heateor_ss_validate_url($profileData['url']) !== false ? trim($profileData['url']) : '';
437
+ $temp['avatar'] = isset($profileData['image']['url']) && heateor_ss_validate_url($profileData['image']['url']) !== false ? trim($profileData['image']['url']) : '';
438
  $temp['large_avatar'] = $temp['avatar'] != '' ? str_replace('?sz=50', '', $temp['avatar']) : '';
439
  }elseif($provider == 'vkontakte'){
440
+ $temp['id'] = isset($profileData['uid']) ? sanitize_text_field($profileData['uid']) : '';
441
  $temp['email'] = '';
442
  $temp['name'] = isset($profileData['nickname']) ? $profileData['nickname'] : '';
443
  $temp['username'] = '';
444
  $temp['first_name'] = isset($profileData['first_name']) ? $profileData['first_name'] : '';
445
  $temp['last_name'] = isset($profileData['last_name']) ? $profileData['last_name'] : '';
446
  $temp['bio'] = '';
447
+ $temp['link'] = $temp['id'] != '' ? 'https://vk.com/id' . $temp['id'] : '';
448
+ $temp['avatar'] = isset($profileData['photo']) && heateor_ss_validate_url($profileData['photo']) !== false ? trim($profileData['photo']) : '';
449
+ $temp['large_avatar'] = isset($profileData['photo_big']) && heateor_ss_validate_url($profileData['photo_big']) !== false ? trim($profileData['photo_big']) : '';
450
  }elseif($provider == 'instagram'){
451
+ $temp['id'] = isset($profileData -> id) ? sanitize_text_field($profileData -> id) : '';
452
  $temp['email'] = '';
453
  $temp['name'] = isset($profileData -> full_name) ? $profileData -> full_name : '';
454
  $temp['username'] = isset($profileData -> username) ? $profileData -> username : '';
455
  $temp['first_name'] = '';
456
  $temp['last_name'] = '';
457
+ $temp['bio'] = isset($profileData -> bio) ? sanitize_text_field($profileData -> bio) : '';
458
+ $temp['link'] = isset($profileData -> website) && heateor_ss_validate_url($profileData -> website) !== false ? trim($profileData -> website) : '';
459
+ $temp['avatar'] = isset($profileData -> profile_picture) && heateor_ss_validate_url($profileData -> profile_picture) !== false ? trim($profileData -> profile_picture) : '';
460
  $temp['large_avatar'] = '';
461
  }
462
  $temp['avatar'] = str_replace( 'http://', '//', $temp['avatar'] );
475
  */
476
  function the_champ_user_auth($profileData, $provider = 'facebook', $twitterRedirect = ''){
477
  global $theChampLoginOptions, $user_ID;
478
+ /*if($provider != 'facebook'){
479
  $profileData = the_champ_format_profile_data($profileData, $provider);
480
  }else{
481
  $profileData['provider'] = 'facebook';
483
  // social avatar url
484
  $profileData['avatar'] = "//graph.facebook.com/" . $profileData['id'] . "/picture?type=square";
485
  $profileData['large_avatar'] = "//graph.facebook.com/" . $profileData['id'] . "/picture?type=large";
486
+ }*/
487
  // authenticate user
488
  // check if Social ID exists in database
489
  if($profileData['id'] == ''){
658
  */
659
  function the_champ_user_auth_ajax(){
660
  if(isset($_POST['error'])){
661
+ the_champ_log_error(sanitize_text_field($_POST['error']));
662
  }
663
  if(!isset($_POST['profileData'])){
664
  the_champ_ajax_response(array('status' => 0, 'message' => 'Invalid request'));
665
  }
666
  $profileData = $_POST['profileData'];
667
+ $redirectionUrl = esc_url(urldecode(trim($_POST['redirectionUrl'])));
668
+ if(heateor_ss_validate_url($redirectionUrl) === false){
669
+ $redirectionUrl = '';
670
+ }
671
+ $socialNetwork = sanitize_title($_POST['provider']);
672
+ $profileData = the_champ_sanitize_profile_data($profileData, $socialNetwork);
673
+ $response = the_champ_user_auth($profileData, $socialNetwork, $redirectionUrl);
674
  the_champ_ajax_response($response);
675
  }
676
  add_action('wp_ajax_the_champ_user_auth', 'the_champ_user_auth_ajax');
702
  */
703
  function the_champ_save_email(){
704
  if(isset($_POST['elemId'])){
705
+ $elementId = sanitize_text_field(trim($_POST['elemId']));
706
+ if(isset($_POST['id']) && ($id = intval(trim($_POST['id']))) != ''){
707
  if($elementId == 'save'){
708
  global $theChampLoginOptions;
709
+ $email = isset($_POST['email']) ? sanitize_email(trim($_POST['email'])) : '';
710
  // validate email
711
  if(is_email($email) && !email_exists($email)){
712
  if(($tempData = get_user_meta($id, 'the_champ_temp_data', true)) != ''){
inc/social_sharing.php CHANGED
@@ -782,10 +782,12 @@ add_filter('get_the_excerpt', 'the_champ_remove_render_sharing', 9);
782
  * Get sharing count for providers
783
  */
784
  function the_champ_sharing_count(){
785
- if(isset($_GET['urls']) && count($_GET['urls']) > 0){
786
  $targetUrls = array_unique($_GET['urls']);
787
  foreach($targetUrls as $k => $v){
788
- $targetUrls[$k] = esc_attr($v);
 
 
789
  }
790
  }else{
791
  the_champ_ajax_response(array('status' => 0, 'message' => __('Invalid request')));
@@ -1004,7 +1006,7 @@ function the_champ_save_facebook_shares(){
1004
  if(isset($_GET['share_counts']) && is_array($_GET['share_counts']) && count($_GET['share_counts']) > 0){
1005
  $targetUrls = $_GET['share_counts'];
1006
  foreach($targetUrls as $k => $v){
1007
- $targetUrls[$k] = esc_attr(trim($v));
1008
  }
1009
  }else{
1010
  the_champ_ajax_response(array('status' => 0, 'message' => __('Invalid request')));
782
  * Get sharing count for providers
783
  */
784
  function the_champ_sharing_count(){
785
+ if(isset($_GET['urls']) && is_array($_GET['urls']) && count($_GET['urls']) > 0){
786
  $targetUrls = array_unique($_GET['urls']);
787
  foreach($targetUrls as $k => $v){
788
+ if(heateor_ss_validate_url($v) !== false){
789
+ $targetUrls[$k] = trim($v);
790
+ }
791
  }
792
  }else{
793
  the_champ_ajax_response(array('status' => 0, 'message' => __('Invalid request')));
1006
  if(isset($_GET['share_counts']) && is_array($_GET['share_counts']) && count($_GET['share_counts']) > 0){
1007
  $targetUrls = $_GET['share_counts'];
1008
  foreach($targetUrls as $k => $v){
1009
+ $targetUrls[$k] = intval($v);
1010
  }
1011
  }else{
1012
  the_champ_ajax_response(array('status' => 0, 'message' => __('Invalid request')));
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: 2016-11-30 12:59+0530\n"
6
- "PO-Revision-Date: 2016-11-30 12:59+0530\n"
7
  "Last-Translator: The Champ <lordofthechamps@gmail.com>\n"
8
  "Language-Team: Heateor <hello@heateor.com>\n"
9
  "Language: es\n"
@@ -12,7 +12,7 @@ msgstr ""
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: __;_e\n"
14
  "X-Poedit-Basepath: .\n"
15
- "X-Generator: Poedit 1.8.6\n"
16
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
17
  "X-Poedit-SearchPath-0: ..\n"
18
 
@@ -36,7 +36,7 @@ msgid "Make sure that \"Enable Callback Locking\" option is disabled. See step 4
36
  msgstr ""
37
 
38
  #: ../super_socializer.php:505
39
- #: ../helper.php:962
40
  msgid "Please verify your email address to login."
41
  msgstr "Por favor verifica tu dirección de email para ingresar."
42
 
@@ -49,7 +49,7 @@ msgid "Notification"
49
  msgstr "Notificación"
50
 
51
  #: ../super_socializer.php:527
52
- #: ../admin/social_login.php:595
53
  msgid "Email required"
54
  msgstr "Email requerido"
55
 
@@ -79,12 +79,12 @@ msgstr "Super Socializer - Opciones Generales"
79
 
80
  #: ../super_socializer.php:823
81
  #: ../admin/general_options.php:11
82
- #: ../admin/social_commenting.php:42
83
  msgid "General Options"
84
  msgstr "Opciones Generales"
85
 
86
  #: ../super_socializer.php:887
87
- #: ../helper.php:884
88
  msgid "Social Avatar"
89
  msgstr "Avatar Social"
90
 
@@ -97,12 +97,12 @@ msgid "Large Avatar Url"
97
  msgstr "Url de Avatar Grande"
98
 
99
  #: ../super_socializer.php:898
100
- #: ../helper.php:887
101
  msgid "Do not fetch and update social avatar from my profile, next time I Social Login"
102
  msgstr "No se ha podido recuperar y actualizar el avatar social desde mi perfil, la próxima vez | Social Login"
103
 
104
  #: ../super_socializer.php:902
105
- #: ../helper.php:888
106
  msgid "Update social avatar, next time I Social Login"
107
  msgstr "Actualiza tu avatar de redes sociales | Social Login"
108
 
@@ -217,20 +217,20 @@ msgstr "Comienzo del Contador de veces compartidas"
217
  msgid "Floating Sharing Interface"
218
  msgstr "Interfaz Flotante de botones Compartir"
219
 
220
- #: ../helper.php:891
221
  msgid "Small Avatar"
222
  msgstr "Avatar Pequeño"
223
 
224
- #: ../helper.php:895
225
  msgid "Large Avatar"
226
  msgstr "Avatar Grande"
227
 
228
- #: ../helper.php:899
229
  #: ../admin/general_options.php:89
230
- #: ../admin/social_sharing.php:1861
231
- #: ../admin/social_commenting.php:464
232
- #: ../admin/social_login.php:893
233
- #: ../admin/like_buttons.php:780
234
  msgid "Save Changes"
235
  msgstr "Guardar Cambios"
236
 
@@ -370,12 +370,12 @@ msgid "Miscellaneous"
370
  msgstr "Miscelánea"
371
 
372
  #: ../admin/social_sharing.php:39
373
- #: ../admin/social_sharing.php:1805
374
- #: ../admin/social_sharing.php:1807
375
  #: ../admin/social_login.php:40
376
- #: ../admin/social_login.php:879
377
  #: ../admin/like_buttons.php:40
378
- #: ../admin/like_buttons.php:753
379
  msgid "Shortcode & Widget"
380
  msgstr "Widgets y Shortcodes"
381
 
@@ -384,796 +384,797 @@ msgid "Troubleshooter"
384
  msgstr "Resolución de problmas"
385
 
386
  #: ../admin/social_sharing.php:41
387
- #: ../admin/social_sharing.php:1836
388
  #: ../admin/social_commenting.php:36
389
- #: ../admin/social_commenting.php:452
390
  #: ../admin/like_buttons.php:41
391
- #: ../admin/like_buttons.php:765
392
  msgid "FAQ"
393
  msgstr "FAQ"
394
 
395
- #: ../admin/social_sharing.php:48
396
  msgid "Standard interface theme"
397
  msgstr "Tema de la Interfaz Estándar"
398
 
399
- #: ../admin/social_sharing.php:53
400
- #: ../admin/social_sharing.php:360
401
  msgid "Icon Preview"
402
  msgstr "Vista previa de Icono"
403
 
404
- #: ../admin/social_sharing.php:125
405
- #: ../admin/social_sharing.php:433
406
  msgid "Do not forget to save the configuration after making changes by clicking the save button below"
407
  msgstr "No olvides guardar la configuración después de hacer cambios clickando en el botón \"Guardar\" de abajo"
408
 
409
- #: ../admin/social_sharing.php:132
410
- #: ../admin/social_sharing.php:440
411
  msgid "Shape"
412
  msgstr "Forma"
413
 
414
- #: ../admin/social_sharing.php:136
415
- #: ../admin/social_sharing.php:444
416
  msgid "Round"
417
  msgstr "Redondeado"
418
 
419
- #: ../admin/social_sharing.php:138
420
- #: ../admin/social_sharing.php:446
421
  msgid "Square"
422
  msgstr "Cuadrado"
423
 
424
- #: ../admin/social_sharing.php:140
425
- #: ../admin/social_sharing.php:448
426
  msgid "Rectangle"
427
  msgstr "Rectángulo"
428
 
429
- #: ../admin/social_sharing.php:147
430
- #: ../admin/social_sharing.php:455
431
  msgid "Shape of the sharing icons"
432
  msgstr "Forma de los iconos de compartir"
433
 
434
- #: ../admin/social_sharing.php:156
435
- #: ../admin/social_sharing.php:464
436
  msgid "Size (in pixels)"
437
  msgstr "Tamaño (en pixels)"
438
 
439
- #: ../admin/social_sharing.php:172
440
- #: ../admin/social_sharing.php:480
441
  msgid "Size of the sharing icons"
442
  msgstr "Tamaño de los iconos de Compartir"
443
 
444
- #: ../admin/social_sharing.php:182
445
- #: ../admin/social_sharing.php:490
446
  msgid "Width (in pixels)"
447
  msgstr "Anchura (en pixels)"
448
 
449
- #: ../admin/social_sharing.php:198
450
- #: ../admin/social_sharing.php:506
451
  msgid "Width of the sharing icons"
452
  msgstr "Anchura de los iconos de Compartir"
453
 
454
- #: ../admin/social_sharing.php:206
455
- #: ../admin/social_sharing.php:514
456
  msgid "Height (in pixels)"
457
  msgstr "Altura (en pixels)"
458
 
459
- #: ../admin/social_sharing.php:222
460
- #: ../admin/social_sharing.php:530
461
  msgid "Height of the sharing icons"
462
  msgstr "Altura de los iconos de Compartir"
463
 
464
- #: ../admin/social_sharing.php:232
465
- #: ../admin/social_sharing.php:540
466
  msgid "Border radius (in pixels)"
467
  msgstr "Borde del radio (en pixels)"
468
 
469
- #: ../admin/social_sharing.php:242
470
- #: ../admin/social_sharing.php:550
471
  msgid "Specify a value for rounded corners. More the value, more rounded will the corners be. Leave empty for sharp corners."
472
  msgstr "Especifica un valor para las esquinas redondeadas. Cuanto más alto sea el valor, más redondeadas serán las esquinas. Déjalo vacío si prefieres las esquinas cuaadradas."
473
 
474
- #: ../admin/social_sharing.php:251
475
- #: ../admin/social_sharing.php:559
476
  msgid "Logo Color"
477
  msgstr "Color del Logo"
478
 
479
- #: ../admin/social_sharing.php:255
480
- #: ../admin/social_sharing.php:276
481
- #: ../admin/social_sharing.php:296
482
- #: ../admin/social_sharing.php:563
483
- #: ../admin/social_sharing.php:584
484
- #: ../admin/social_sharing.php:603
485
  msgid "Default"
486
  msgstr "Por defecto "
487
 
488
- #: ../admin/social_sharing.php:257
489
- #: ../admin/social_sharing.php:277
490
- #: ../admin/social_sharing.php:301
491
- #: ../admin/social_sharing.php:565
492
- #: ../admin/social_sharing.php:585
493
- #: ../admin/social_sharing.php:608
494
  msgid "On Hover"
495
  msgstr "Con el puntero encima "
496
 
497
- #: ../admin/social_sharing.php:265
498
- #: ../admin/social_sharing.php:573
499
  msgid "Specify the color or hex code (example #cc78e0) for the logo of icon. Leave empty for default. You can get the hex code of the required color from <a href=\"http://www.colorpicker.com/\" target=\"_blank\">this link</a>"
500
  msgstr "Especifica el color o código hexadecimal (por ejemplo #cc78e0) para el logo del icono. Déjalo vacío para que se aplique el valor por defecto. Puedes conseguir el código hexadecimal del color que desees en <a href=\"http://www.colorpicker.com/\" target=\"_blank\">este enlace</a>"
501
 
502
- #: ../admin/social_sharing.php:273
503
- #: ../admin/social_sharing.php:581
504
- #: ../admin/social_sharing.php:1262
505
- #: ../admin/like_buttons.php:397
506
  msgid "Background Color"
507
  msgstr "Color del fondo"
508
 
509
- #: ../admin/social_sharing.php:284
510
- #: ../admin/social_sharing.php:592
511
  msgid "Specify the color or hex code (example #cc78e0) for icon background. Save \"transparent\" for transparent background. Leave empty for default. You can get the hex code of the required color from <a href=\"http://www.colorpicker.com/\" target=\"_blank\">this link</a>"
512
  msgstr "Especifica el color o código hexadecimal (por ejemplo #cc78e0) para el fondo del icono. Selecciona \"transparente\" para que el fondo sea transparente. Déjalo vacío para que se aplique el valor por defecto. Puedes conseguir el código hexadecimal del color que desees en <a href=\"http://www.colorpicker.com/\" target=\"_blank\">este enlace</a>"
513
 
514
- #: ../admin/social_sharing.php:292
515
- #: ../admin/social_sharing.php:600
516
  msgid "Border"
517
  msgstr "Borde"
518
 
519
- #: ../admin/social_sharing.php:298
520
- #: ../admin/social_sharing.php:303
521
- #: ../admin/social_sharing.php:605
522
- #: ../admin/social_sharing.php:610
523
- msgid "Border Width"
524
- msgstr "Anchura del borde "
525
-
526
  #: ../admin/social_sharing.php:299
527
  #: ../admin/social_sharing.php:304
528
  #: ../admin/social_sharing.php:606
529
  #: ../admin/social_sharing.php:611
 
 
 
 
 
 
 
530
  msgid "Border Color"
531
  msgstr "Color del borde "
532
 
533
- #: ../admin/social_sharing.php:311
534
- #: ../admin/social_sharing.php:618
535
  msgid "Icon border"
536
  msgstr "Borde del icono"
537
 
538
- #: ../admin/social_sharing.php:319
539
- #: ../admin/social_sharing.php:626
540
  msgid "Counter Position"
541
  msgstr "Posición del Contador"
542
 
543
- #: ../admin/social_sharing.php:319
544
- #: ../admin/social_sharing.php:626
545
  msgid "(applies, if counter enabled)"
546
  msgstr "(aplicable si el contador está activo)"
547
 
548
- #: ../admin/social_sharing.php:323
549
- #: ../admin/social_sharing.php:630
550
- #: ../admin/social_sharing.php:880
551
- #: ../admin/social_sharing.php:1284
552
- #: ../admin/like_buttons.php:171
553
- #: ../admin/like_buttons.php:419
554
  msgid "Left"
555
  msgstr "Izquierda"
556
 
557
- #: ../admin/social_sharing.php:325
558
- #: ../admin/social_sharing.php:632
559
  msgid "Top"
560
  msgstr "Arriba"
561
 
562
- #: ../admin/social_sharing.php:327
563
- #: ../admin/social_sharing.php:634
564
- #: ../admin/social_sharing.php:882
565
- #: ../admin/social_sharing.php:1285
566
- #: ../admin/like_buttons.php:173
567
- #: ../admin/like_buttons.php:420
568
  msgid "Right"
569
  msgstr "Derecha"
570
 
571
- #: ../admin/social_sharing.php:329
572
- #: ../admin/social_sharing.php:636
573
  msgid "Bottom"
574
  msgstr "Abajo"
575
 
576
- #: ../admin/social_sharing.php:331
577
- #: ../admin/social_sharing.php:638
578
  msgid "Inner Left"
579
  msgstr "Izquierda Interior"
580
 
581
- #: ../admin/social_sharing.php:333
582
- #: ../admin/social_sharing.php:640
583
  msgid "Inner Top"
584
  msgstr "Arriba Interior"
585
 
586
- #: ../admin/social_sharing.php:335
587
- #: ../admin/social_sharing.php:642
588
  msgid "Inner Right"
589
  msgstr "Derecha Interior"
590
 
591
- #: ../admin/social_sharing.php:337
592
- #: ../admin/social_sharing.php:644
593
  msgid "Inner Bottom"
594
  msgstr "Abajo Interior"
595
 
596
- #: ../admin/social_sharing.php:345
597
- #: ../admin/social_sharing.php:652
598
  msgid "Position of share counter"
599
  msgstr "Posición del contador de veces compartidas"
600
 
601
- #: ../admin/social_sharing.php:355
602
  msgid "Floating interface theme"
603
  msgstr "Tema de la Interfaz Flotante"
604
 
605
- #: ../admin/social_sharing.php:667
606
  msgid "Standard Sharing Interface Options"
607
  msgstr "Opciones de la interfaz estándar de Compartir"
608
 
609
- #: ../admin/social_sharing.php:673
610
  msgid "Enable Standard sharing interface"
611
  msgstr "Permitir Interfaz Estándar de Compartir"
612
 
613
- #: ../admin/social_sharing.php:683
614
  msgid "Master control to enable standard sharing"
615
  msgstr "Control Maestro para permitir Compartir estándar"
616
 
617
- #: ../admin/social_sharing.php:693
618
- #: ../admin/social_sharing.php:1110
619
- #: ../admin/like_buttons.php:74
620
- #: ../admin/like_buttons.php:323
621
  msgid "Target Url"
622
  msgstr "Target Url"
623
 
624
- #: ../admin/social_sharing.php:697
625
- #: ../admin/social_sharing.php:1114
626
- #: ../admin/like_buttons.php:78
627
- #: ../admin/like_buttons.php:327
628
  msgid "Url of the webpage where icons are located (default)"
629
  msgstr "Url de la página web donde los iconos están localizados (por defecto)"
630
 
631
- #: ../admin/social_sharing.php:699
632
- #: ../admin/social_sharing.php:1116
633
- #: ../admin/like_buttons.php:80
634
- #: ../admin/like_buttons.php:329
635
  msgid "Url of the homepage of your website"
636
  msgstr "Url de la página de inicio de tu sitio web"
637
 
638
- #: ../admin/social_sharing.php:701
639
- #: ../admin/social_sharing.php:1118
640
- #: ../admin/like_buttons.php:82
641
- #: ../admin/like_buttons.php:331
642
  msgid "Custom url"
643
  msgstr "Url personalizada"
644
 
645
- #: ../admin/social_sharing.php:708
646
- #: ../admin/social_sharing.php:1125
647
  msgid "Url to share"
648
  msgstr "Url para compartir"
649
 
650
- #: ../admin/social_sharing.php:716
651
- #: ../admin/social_login.php:377
652
- #: ../admin/like_buttons.php:97
653
  msgid "Title"
654
  msgstr "Título"
655
 
656
- #: ../admin/social_sharing.php:726
657
  msgid "The text to display above the sharing interface"
658
  msgstr "El texto para mostrar sobre la interfaz de Compartir"
659
 
660
- #: ../admin/social_sharing.php:744
661
- #: ../admin/social_sharing.php:1134
662
  #, fuzzy
663
  msgid "Instagram username"
664
  msgstr "Instagram"
665
 
666
- #: ../admin/social_sharing.php:754
667
- #: ../admin/social_sharing.php:1144
668
  msgid "Username of the Instagram account you want to redirect users to, on clicking the icon"
669
  msgstr ""
670
 
671
- #: ../admin/social_sharing.php:767
672
- #: ../admin/social_sharing.php:1153
673
  msgid "Rearrange icons"
674
  msgstr "Reorganizar iconos"
675
 
676
- #: ../admin/social_sharing.php:826
677
- #: ../admin/social_sharing.php:1212
678
  msgid "Drag the icons to rearrange in desired order"
679
  msgstr "Arrastra los iconos para reorganizarlos en el orden deseado"
680
 
681
- #: ../admin/social_sharing.php:834
682
- #: ../admin/social_sharing.php:1220
683
  msgid "Select Sharing Services"
684
  msgstr "Selecciona los Servicios para Compartir"
685
 
686
- #: ../admin/social_sharing.php:841
687
- #: ../admin/social_sharing.php:1227
688
  msgid "Select sharing services to show in social share bar"
689
  msgstr "Selecciona los servicios para compartir en la barra de Compartir en redes sociales"
690
 
691
- #: ../admin/social_sharing.php:876
692
- #: ../admin/social_sharing.php:1280
693
- #: ../admin/like_buttons.php:167
694
- #: ../admin/like_buttons.php:415
695
  msgid "Horizontal alignment"
696
  msgstr "Alineación horizontal"
697
 
698
- #: ../admin/social_sharing.php:881
699
- #: ../admin/like_buttons.php:172
700
  msgid "Center"
701
  msgstr "Centrar"
702
 
703
- #: ../admin/social_sharing.php:890
704
- #: ../admin/social_sharing.php:1293
705
  msgid "Horizontal alignment of the sharing interface"
706
  msgstr "Alineación horizontal de la interfaz de Compartir"
707
 
708
- #: ../admin/social_sharing.php:898
709
- #: ../admin/like_buttons.php:189
710
  msgid "Position with respect to content"
711
  msgstr "Posición respecto al contenido"
712
 
713
- #: ../admin/social_sharing.php:902
714
- #: ../admin/like_buttons.php:193
715
  msgid "Top of the content"
716
  msgstr "Encima del contenido"
717
 
718
- #: ../admin/social_sharing.php:904
719
- #: ../admin/like_buttons.php:195
720
  msgid "Bottom of the content"
721
  msgstr "Debajo del contenido"
722
 
723
- #: ../admin/social_sharing.php:911
724
  msgid "Specify position of the sharing interface with respect to the content"
725
  msgstr "Especifica la posición de la interfaz de Compartir respecto al contenido"
726
 
727
- #: ../admin/social_sharing.php:919
728
- #: ../admin/social_sharing.php:1359
729
  msgid "Placement"
730
  msgstr "Ubicación"
731
 
732
- #: ../admin/social_sharing.php:923
733
- #: ../admin/social_sharing.php:1363
734
- #: ../admin/social_login.php:676
735
- #: ../admin/social_login.php:706
736
- #: ../admin/like_buttons.php:214
737
- #: ../admin/like_buttons.php:498
738
  msgid "Homepage"
739
  msgstr "Página de Inicio"
740
 
741
- #: ../admin/social_sharing.php:925
742
- #: ../admin/social_sharing.php:1365
743
- #: ../admin/like_buttons.php:216
744
- #: ../admin/like_buttons.php:500
745
  msgid "Posts"
746
  msgstr "Entradas"
747
 
748
- #: ../admin/social_sharing.php:927
749
- #: ../admin/social_sharing.php:1367
750
- #: ../admin/like_buttons.php:218
751
- #: ../admin/like_buttons.php:502
752
  msgid "Pages"
753
  msgstr "Páginas"
754
 
755
- #: ../admin/social_sharing.php:929
756
- #: ../admin/social_sharing.php:1369
757
- #: ../admin/like_buttons.php:220
758
- #: ../admin/like_buttons.php:504
759
  #, fuzzy
760
  msgid "Excerpts and Posts page"
761
  msgstr "Extractos (en la Página de Inicio)"
762
 
763
- #: ../admin/social_sharing.php:931
764
- #: ../admin/social_sharing.php:1371
765
- #: ../admin/like_buttons.php:222
766
- #: ../admin/like_buttons.php:506
767
  msgid "Category Archives"
768
  msgstr "Archivos por Categoría"
769
 
770
- #: ../admin/social_sharing.php:933
771
- #: ../admin/social_sharing.php:1373
772
- #: ../admin/like_buttons.php:224
773
- #: ../admin/like_buttons.php:508
774
  msgid "Archive Pages (Category, Tag, Author or Date based pages)"
775
  msgstr "Páginas de Archivo (Categoría, Etiqueta, Autor o páginas clasificadas por Fecha)"
776
 
777
- #: ../admin/social_sharing.php:949
778
- #: ../admin/like_buttons.php:240
779
  msgid "BuddyPress activity"
780
  msgstr "Actividad en BuddyPress"
781
 
782
- #: ../admin/social_sharing.php:951
783
- #: ../admin/like_buttons.php:243
784
  msgid "BuddyPress group (only at top of content)"
785
  msgstr "Grupo BuddyPress (sólo encima del contenido)"
786
 
787
- #: ../admin/social_sharing.php:957
788
- #: ../admin/social_sharing.php:1395
789
- #: ../admin/like_buttons.php:250
790
- #: ../admin/like_buttons.php:529
791
  msgid "BBPress forum"
792
  msgstr "Foro BBPress"
793
 
794
- #: ../admin/social_sharing.php:960
795
- #: ../admin/social_sharing.php:1398
796
- #: ../admin/like_buttons.php:253
797
- #: ../admin/like_buttons.php:532
798
  msgid "BBPress topic"
799
  msgstr "Tema BBPress"
800
 
801
- #: ../admin/social_sharing.php:963
802
- #: ../admin/like_buttons.php:256
803
  msgid "BBPress reply"
804
  msgstr "Respuesta BBPress"
805
 
806
- #: ../admin/social_sharing.php:970
807
- #: ../admin/like_buttons.php:263
808
  msgid "After individual product at WooCommerce Shop page"
809
  msgstr "Después de cada producto individual en página de Tienda WooCommerce"
810
 
811
- #: ../admin/social_sharing.php:973
812
- #: ../admin/like_buttons.php:266
813
  msgid "WooCommerce Product Page"
814
  msgstr "Página de Producto WooCommerce"
815
 
816
- #: ../admin/social_sharing.php:976
817
- #: ../admin/like_buttons.php:269
818
  msgid "WooCommerce Thankyou Page"
819
  msgstr "Página de Agradecimiento WooCommerce"
820
 
821
- #: ../admin/social_sharing.php:987
822
  msgid "Specify the pages where you want to enable Sharing interface"
823
  msgstr "Especifica las páginas donde tú quieres permitir la interfaz de Compartir"
824
 
825
- #: ../admin/social_sharing.php:995
826
- #: ../admin/social_sharing.php:1416
827
  msgid "Show share counts"
828
  msgstr "Mostrar contadores de las veces compartidas"
829
 
830
- #: ../admin/social_sharing.php:1000
831
- #: ../admin/social_sharing.php:1421
832
  #, fuzzy
833
  msgid "Share counts are supported for Facebook, Twitter, Linkedin, GooglePlus, Delicious, Buffer, Reddit, Pinterest, Stumbleupon and Vkontakte"
834
  msgstr "Los contadores oficiales de las veces compartidas son soportados por Facebook, Linkedin, GooglePlus, Delicious, Buffer, Reddit, Pinterest, Stumbleupon y Vkontakte"
835
 
836
- #: ../admin/social_sharing.php:1017
837
- #: ../admin/social_sharing.php:1429
838
  #, php-format
839
  msgid "Use <a href=\"%s\" target=\"_blank\">NewShareCounts</a> to show Twitter share counts"
840
  msgstr "Usa <a href=\"%s\" target=\"_blank\">Nuevos Contadores de Compartir</a> para mostrar el número de veces compartidas en Twitter"
841
 
842
- #: ../admin/social_sharing.php:1019
843
- #: ../admin/social_sharing.php:1431
844
  #, php-format
845
  msgid "For this to work, you have to enter your website url %s and sign in using Twitter at <a href=\"%s\" target=\"_blank\">their website</a>"
846
  msgstr "Para que esto funcione, tienes que introducir la url de tu sitio web %s e ingresar usando Twitter en <a href=\"%s\" target=\"_blank\">su sitio web</a>"
847
 
848
- #: ../admin/social_sharing.php:1021
849
- #: ../admin/social_sharing.php:1433
850
  #, php-format
851
  msgid "Use <a href=\"%s\" target=\"_blank\">OpenShareCount</a> to show Twitter share counts"
852
  msgstr "Usa <a href=\"%s\" target=\"_blank\">Abrir Contador de Compartir</a> para mostrar el número de veces compartidas en Twitter"
853
 
854
- #: ../admin/social_sharing.php:1023
855
- #: ../admin/social_sharing.php:1435
856
  #, php-format
857
  msgid "For this to work, you have to sign up and register your website url %s at <a href=\"%s\" target=\"_blank\">their website</a>"
858
  msgstr "Para que esto funcione, tienes que firmar y registrar la url de tu sitio web %s en <a href=\"%s\" target=\"_blank\">su sitio web </a>"
859
 
860
- #: ../admin/social_sharing.php:1030
861
- #: ../admin/social_sharing.php:1442
862
  msgid "If enabled, share counts are displayed above sharing icons."
863
  msgstr "Si se activa, los contadores de veces compartidas aparecerán encima de los iconos de compartir."
864
 
865
- #: ../admin/social_sharing.php:1039
866
- #: ../admin/social_sharing.php:1451
867
  msgid "Show total shares"
868
  msgstr "Mostrar número total de veces compartidas"
869
 
870
- #: ../admin/social_sharing.php:1049
871
- #: ../admin/social_sharing.php:1461
872
  msgid "If enabled, total shares will be displayed with sharing icons"
873
  msgstr "Si se activa, los contadores de veces compartidas aparecerán con los iconos de compartir."
874
 
875
- #: ../admin/social_sharing.php:1058
876
- #: ../admin/social_sharing.php:1470
877
  msgid "Enable 'More' icon"
878
  msgstr "Permitir el icono 'Más'"
879
 
880
- #: ../admin/social_sharing.php:1068
881
- #: ../admin/social_sharing.php:1480
882
  msgid "If enabled, \"More\" icon will be displayed after selected sharing icons which shows additional sharing networks in popup"
883
  msgstr "Si se activa, el icono \"Más\" aparecerá después de los iconos de compartir seleccionados, y mostrará en un popup las redes adicionales para compartir"
884
 
885
- #: ../admin/social_sharing.php:1084
886
  msgid "Floating Sharing Interface Options"
887
  msgstr "Opciones de la Interfaz Flotante de Compartir"
888
 
889
- #: ../admin/social_sharing.php:1090
890
  msgid "Enable Floating sharing interface"
891
  msgstr "Permitir la Interfaz Flotante de Compartir"
892
 
893
- #: ../admin/social_sharing.php:1100
894
  msgid "Master control to enable floating sharing widget"
895
  msgstr "Control maestro para permitir el widget flotante de compartir"
896
 
897
- #: ../admin/social_sharing.php:1272
898
  msgid "Specify the color or hex code (example #cc78e0) for the background of vertical sharing bar. Leave empty for transparent. You can get the hex code of the required color from <a href=\"http://www.colorpicker.com/\" target=\"_blank\">this link</a>"
899
  msgstr "Especifica el color o código hexadecimal (por ejemplo #cc78e0) para el fondo de la barra vertical de compartir. Déjalo vacío si lo quieres transparente. Puedes conseguir el código hexadecimal del color que desees en <a href=\"http://www.colorpicker.com/\" target=\"_blank\">este enlace</a>"
900
 
901
- #: ../admin/social_sharing.php:1302
902
- #: ../admin/like_buttons.php:437
903
  msgid "Left offset"
904
  msgstr "Desplazamiento a la izquierda"
905
 
906
- #: ../admin/social_sharing.php:1312
907
  msgid "Specify a number. Increase in number will shift sharing interface towards right and decrease will shift it towards left. Number can be negative too."
908
  msgstr "Especifica un número. Al aumentar el número la interfaz de compartir se desplazará hacia la derecha, mientras que al disminuirlo se desplazará hacia la izquierda. El número puede ser negativo también."
909
 
910
- #: ../admin/social_sharing.php:1322
911
- #: ../admin/like_buttons.php:457
912
  msgid "Right offset"
913
  msgstr "Desplazamiento a la derecha"
914
 
915
- #: ../admin/social_sharing.php:1332
916
  msgid "Specify a number. Increase in number will shift sharing interface towards left and decrease will shift it towards right. Number can be negative too."
917
  msgstr "Especifica un número. Al aumentar el número la interfaz de compartir se desplazará hacia la izquierda, mientras que al disminuirlo se desplazará hacia la derecha. El número puede ser negativo también."
918
 
919
- #: ../admin/social_sharing.php:1341
920
- #: ../admin/like_buttons.php:476
921
  msgid "Top offset"
922
  msgstr "Desplazamiento hacia arriba"
923
 
924
- #: ../admin/social_sharing.php:1351
925
  msgid "Specify a number. Increase in number will shift sharing interface towards bottom and decrease will shift it towards top."
926
  msgstr "Especifica un número. Al aumentar el número la interfaz de compartir se desplazará hacia abajo, mientras que al disminuirlo se desplazará hacia abajo."
927
 
928
- #: ../admin/social_sharing.php:1387
929
- #: ../admin/like_buttons.php:522
930
  msgid "BuddyPress group"
931
  msgstr "grupo BuddyPress"
932
 
933
- #: ../admin/social_sharing.php:1408
934
  msgid "Specify the pages where you want to enable vertical Sharing interface"
935
  msgstr "Especifica las páginas donde quieres permitir la interfaz vertical de Compartir"
936
 
937
- #: ../admin/social_sharing.php:1488
938
  msgid "Vertical floating bar responsiveness"
939
  msgstr "Barra flotante vertical adaptativa multidispositivo (responsiveness)"
940
 
941
- #: ../admin/social_sharing.php:1491
942
  #, php-format
943
  msgid "Display vertical interface only when screen is wider than %s pixels"
944
  msgstr "Mostrar la interfaz vertical sólo cuando la pantalla es más ancha que %s pixels"
945
 
946
- #: ../admin/social_sharing.php:1498
947
  msgid "Display vertical interface only when screen is wider than the width specified."
948
  msgstr "Mostrar la interfaz vertical sólo cuando la pantalla es más ancha que el ancho especificado."
949
 
950
- #: ../admin/social_sharing.php:1506
951
  msgid "Horizontal floating bar responsiveness"
952
  msgstr "Barra flotante vertical adaptativa multidispositivo (responsiveness)"
953
 
954
- #: ../admin/social_sharing.php:1509
955
  #, php-format
956
  msgid "Stick vertical floating interface horizontally at bottom only when screen is narrower than %s pixels"
957
  msgstr "Mantener siempre visible la interfaz vertical flotante horizontalmente en el fondo sólo cuando la pantalla sea más estrecha que %s pixels"
958
 
959
- #: ../admin/social_sharing.php:1516
960
  msgid "Stick vertical floating interface horizontally at bottom only when screen is narrower than the width specified"
961
  msgstr "Mantener siempre visible la interfaz vertical flotante horizontalmente en el fondo sólo cuando la pantalla sea más estrecha que el ancho especificado"
962
 
963
- #: ../admin/social_sharing.php:1526
964
  msgid "Horizontal floating bar position"
965
  msgstr "Posición de la barra flotante horizontal"
966
 
967
- #: ../admin/social_sharing.php:1529
968
  #, php-format
969
  msgid "%s pixels from %s"
970
  msgstr "%s pixels de %s"
971
 
972
- #: ../admin/social_sharing.php:1536
973
  msgid "Alignment of horizontal floating interface. Number can be negative too."
974
  msgstr "Alineación de la interfaz flotante horizontal, El número puede ser negativo también."
975
 
976
- #: ../admin/social_sharing.php:1555
977
- #: ../admin/like_buttons.php:578
978
  msgid "Url shortener"
979
  msgstr "Acortador de Url"
980
 
981
- #: ../admin/social_sharing.php:1561
982
  msgid "Use shortlinks already installed"
983
  msgstr "Utiliza los shortlinks ya instalados"
984
 
985
- #: ../admin/social_sharing.php:1571
986
  msgid "Uses default short url permalinks without using any additional plugin"
987
  msgstr ""
988
 
989
- #: ../admin/social_sharing.php:1579
990
  msgid "Enable bit.ly url shortener for sharing"
991
  msgstr "Habilitar acortador de url bit.ly para compartir"
992
 
993
- #: ../admin/social_sharing.php:1589
994
- #: ../admin/like_buttons.php:612
995
  msgid "Master control to enable bit.ly url shortening for sharing"
996
  msgstr "Control maestro para permitir el acortamiento de URL bit.ly para compartir"
997
 
998
- #: ../admin/social_sharing.php:1597
 
999
  msgid "bit.ly Login"
1000
- msgstr ""
1001
 
1002
- #: ../admin/social_sharing.php:1607
1003
  #, fuzzy, php-format
1004
  msgid "Login to your bit.ly account and navigate to <a href=\"%s\" target=\"_blank\">this link</a> to get bit.ly login"
1005
  msgstr "Ingresa a tu cuenta bit.ly y ve a <a href=\"%s\" target=\"_blank\">este enlace</a> para obtener tu nombre de usuario bit.ly"
1006
 
1007
- #: ../admin/social_sharing.php:1616
1008
- #: ../admin/like_buttons.php:639
1009
  msgid "bit.ly API Key"
1010
  msgstr "bit.ly API Key"
1011
 
1012
- #: ../admin/social_sharing.php:1626
1013
- #: ../admin/like_buttons.php:649
1014
  #, php-format
1015
  msgid "Login to your bit.ly account and navigate to <a href=\"%s\" target=\"_blank\">this link</a> to get your API key"
1016
  msgstr "Ingresa a tu cuenta bit.ly y ve a <a href=\"%s\" target=\"_blank\">este enlace</a> para obtener tu API key"
1017
 
1018
- #: ../admin/social_sharing.php:1635
1019
- #: ../admin/like_buttons.php:658
1020
  msgid "Clear Bitly Cache"
1021
  msgstr ""
1022
 
1023
- #: ../admin/social_sharing.php:1639
1024
- #: ../admin/like_buttons.php:662
1025
  msgid "ShortUrl cache cleared successfully."
1026
  msgstr "La caché de ShortUrl se ha vaciado con éxito."
1027
 
1028
- #: ../admin/social_sharing.php:1646
1029
- #: ../admin/like_buttons.php:669
1030
  msgid "Use this to delete short urls saved in database. Handy, if urls of your website have been changed but short urls are still being generated for old urls."
1031
  msgstr "Utiliza esta opción para eliminar las url cortas guardadas en la base de datos. Esto es práctico, si las url de tu sitio web han cambiado, pero las url cortas todavía se están generando para viejas url."
1032
 
1033
- #: ../admin/social_sharing.php:1655
1034
  msgid "Share Count Cache"
1035
  msgstr ""
1036
 
1037
- #: ../admin/social_sharing.php:1661
1038
  msgid "Refresh Share Count cache every"
1039
  msgstr ""
1040
 
1041
- #: ../admin/social_sharing.php:1666
1042
  msgid "Second(s)"
1043
  msgstr ""
1044
 
1045
- #: ../admin/social_sharing.php:1667
1046
  msgid "Minute(s)"
1047
  msgstr ""
1048
 
1049
- #: ../admin/social_sharing.php:1668
1050
  msgid "Hour(s)"
1051
  msgstr ""
1052
 
1053
- #: ../admin/social_sharing.php:1669
1054
  msgid "Day(s)"
1055
  msgstr ""
1056
 
1057
- #: ../admin/social_sharing.php:1677
1058
  msgid "Frequent cache refreshing results in slower loading of pages with share counts enabled"
1059
  msgstr ""
1060
 
1061
- #: ../admin/social_sharing.php:1685
1062
  msgid "Clear Share Counts Cache"
1063
  msgstr ""
1064
 
1065
- #: ../admin/social_sharing.php:1689
1066
  #, fuzzy
1067
  msgid "Share Counts cache cleared successfully."
1068
  msgstr "La caché de ShortUrl se ha vaciado con éxito."
1069
 
1070
- #: ../admin/social_sharing.php:1696
1071
  msgid "Use this to clear cached share counts"
1072
  msgstr ""
1073
 
1074
- #: ../admin/social_sharing.php:1705
1075
- #: ../admin/social_sharing.php:1711
1076
- #: ../admin/social_commenting.php:311
1077
- #: ../admin/like_buttons.php:678
1078
- #: ../admin/like_buttons.php:684
1079
  msgid "Language"
1080
  msgstr "Idioma"
1081
 
1082
- #: ../admin/social_sharing.php:1721
1083
  #, php-format
1084
  msgid "Enter the code of the language you want to use for like buttons. You can find the language codes at <a href=\"%s\" target=\"_blank\">this link</a>. Leave it empty for default language(English)"
1085
  msgstr "Introduce el código del idioma que deseas utilizar para los botones \"Me gusta\". Puedes encontrar los códigos de idioma en <a href=\"%s\" target=\"_blank\">este enlace</a>. Déjalo vacío para el idioma por defecto (Inglés)"
1086
 
1087
- #: ../admin/social_sharing.php:1730
1088
  msgid "Username in sharing"
1089
  msgstr "Nombre de usuario en Compartir"
1090
 
1091
- #: ../admin/social_sharing.php:1736
1092
  msgid "Twitter username (without @)"
1093
  msgstr "Nombre de usuario de Twitter (sin @)"
1094
 
1095
- #: ../admin/social_sharing.php:1746
1096
- #: ../admin/social_sharing.php:1765
1097
  msgid "Provided username will be appended after the content being shared as \"via @USERNAME\". Leave empty if you do not want any username in the content being shared."
1098
  msgstr "El nombre de usuario proporcionado se añadirá después de que el contenido sea comparte como \"via @USERNAME\". Déjalo vacío si no quieres ningún nombre de usuario en el contenido compartido."
1099
 
1100
- #: ../admin/social_sharing.php:1755
1101
  msgid "Buffer username (without @)"
1102
  msgstr "Nombre de usuario de Buffer (sin @)"
1103
 
1104
- #: ../admin/social_sharing.php:1774
1105
  msgid "AMP"
1106
  msgstr ""
1107
 
1108
- #: ../admin/social_sharing.php:1780
1109
  #, fuzzy
1110
  msgid "Enable sharing on AMP pages"
1111
  msgstr "Permitir Página de Ingreso"
1112
 
1113
- #: ../admin/social_sharing.php:1790
1114
  msgid "Enable this option to render sharing icons on AMP pages"
1115
  msgstr ""
1116
 
1117
- #: ../admin/social_sharing.php:1817
1118
  msgid "Facebook Sharing Troubleshooter"
1119
  msgstr "Resolución de problemas al Compartir en Facebook"
1120
 
1121
- #: ../admin/social_sharing.php:1822
1122
  #, fuzzy
1123
  msgid "If Facebook sharing is not working fine, click at the following link and enter the problematic url (where Facebook sharing is not working properly) of your website in the text field. Click \"Fetch New Scrape Information\" button."
1124
  msgstr "Si el contenido no se está compartiendo correctamente en Facebook, haz click en el siguiente enlace e introduce la url problemática de tu sitio web (la que Facebook no está compartiendo correctamente) en el campo de texto:"
1125
 
1126
- #: ../admin/social_sharing.php:1838
1127
  msgid "Why is sharer not showing the correct image, title and other meta tags content?"
1128
  msgstr ""
1129
 
1130
- #: ../admin/social_sharing.php:1839
1131
  msgid "How can I show share counts of my website rather than of individual pages/posts?"
1132
  msgstr "¿Cómo puedo mostrar los contadores de veces compartidas de mi sitio web en lugar de páginas individuales o entradas?"
1133
 
1134
- #: ../admin/social_sharing.php:1840
1135
  msgid "How can I disable sharing on particular page/post?"
1136
  msgstr "¿Cómo puedo desactivar los botones de Compartir en una página individual o entrada?"
1137
 
1138
- #: ../admin/social_sharing.php:1841
1139
  msgid "How can I specify minimum sharing count for sharing networks?"
1140
  msgstr "¿Cómo puedo especificar el número mínimo de veces compartidas para las redes sociales?"
1141
 
1142
- #: ../admin/social_sharing.php:1842
1143
  msgid "How to share specific page?"
1144
  msgstr "¿Cómo compartir una página específica?"
1145
 
1146
- #: ../admin/social_sharing.php:1843
1147
  msgid "How to integrate Google Analytics with sharing?"
1148
  msgstr "¿Cómo integrar Google Analytics con Compartir?"
1149
 
1150
- #: ../admin/social_sharing.php:1844
1151
  msgid "How to customize the look of total share counts?"
1152
  msgstr "¿Cómo personalizar el aspecto de los contadores totales de veces compartidas?"
1153
 
1154
- #: ../admin/social_sharing.php:1845
1155
  msgid "How to customize the look of individual share counts?"
1156
  msgstr "¿Cómo personalizar el aspecto de los contadores individuales de veces compartidas?"
1157
 
1158
- #: ../admin/social_sharing.php:1846
1159
  msgid "How to show Whatsapp icon only on mobile devices?"
1160
  msgstr "¿Cómo mostrar el icono de WhatsApp sólo en dispositivos móviles?"
1161
 
1162
- #: ../admin/social_sharing.php:1847
1163
  msgid "How to hide arrow after floating sharing bar?"
1164
  msgstr ""
1165
 
1166
- #: ../admin/social_sharing.php:1848
1167
  msgid "Why are Share Counts Not Updating?"
1168
  msgstr ""
1169
 
1170
- #: ../admin/social_sharing.php:1849
1171
- #: ../admin/like_buttons.php:767
1172
  msgid "Why is there so much space between like buttons?"
1173
  msgstr ""
1174
 
1175
- #: ../admin/social_sharing.php:1850
1176
- #: ../admin/like_buttons.php:768
1177
  msgid "Why are floating sharing/like buttons not appearing at homepage?"
1178
  msgstr ""
1179
 
@@ -1190,185 +1191,185 @@ msgid "Social Commenting"
1190
  msgstr "Comentarios en redes sociales"
1191
 
1192
  #: ../admin/social_commenting.php:35
1193
- #: ../admin/social_commenting.php:440
1194
  msgid "Shortcode"
1195
  msgstr "Shortcode"
1196
 
1197
- #: ../admin/social_commenting.php:48
1198
  msgid "Order of tabs in commenting interface"
1199
  msgstr "Orden de pestañas en la interfaz de comentarios"
1200
 
1201
- #: ../admin/social_commenting.php:58
1202
  msgid "Order of the tabs shown in social commenting interface. Defaults to wordpress,facebook,googleplus,disqus"
1203
  msgstr "Orden de las pestañas mostradas en la interfaz de comentarios en redes sociales. Por defecto es: wordpress, facebook, google plus, disqus"
1204
 
1205
- #: ../admin/social_commenting.php:66
1206
  msgid "Comment area label"
1207
  msgstr "Etiqueta del área de comentarios"
1208
 
1209
- #: ../admin/social_commenting.php:76
1210
  msgid "Label for comment area"
1211
  msgstr "Etiqueta para el área de comentarios"
1212
 
1213
- #: ../admin/social_commenting.php:89
1214
  msgid "Enable Social Commenting at"
1215
  msgstr "Permitir Comentarios Sociales en"
1216
 
1217
- #: ../admin/social_commenting.php:108
1218
  msgid "Specify the page/post groups where you want to enable Social Commenting"
1219
  msgstr "Especifica los grupos de páginas/entradas donde quieres permitir Comentarios Sociales"
1220
 
1221
- #: ../admin/social_commenting.php:119
1222
  msgid "HTML ID of comment form container"
1223
  msgstr "HTML ID del contenedor del formulario de comentario"
1224
 
1225
- #: ../admin/social_commenting.php:129
1226
  msgid "HTML ID of container element of the default comment form at front end. Leave empty for default ID - \"respond\". You need to specify it if default comment form is appearing and Social Commenting is not getting enabled at front-end of your website."
1227
  msgstr "HTML ID del elemento contenedor del formulario de comentario por defecto en la vista de usuario del sitio web. Déjalo vacío para el ID por defecto - \"responder\". Es necesario especificar si el formulario de comentarios por defecto se muestra y si los Comentarios Sociales no están permitidos en la vista del usuario de tu sitio web."
1228
 
1229
- #: ../admin/social_commenting.php:139
1230
  msgid "Labels"
1231
  msgstr "Etiquetas"
1232
 
1233
- #: ../admin/social_commenting.php:144
1234
  msgid "Label for WordPress Commenting tab"
1235
  msgstr "Etiqueta para la pestaña de Comentarios de WordPress"
1236
 
1237
- #: ../admin/social_commenting.php:153
1238
  msgid "Label for Facebook Commenting tab"
1239
  msgstr "Etiqueta para la pestaña de Comentarios de Facebook"
1240
 
1241
- #: ../admin/social_commenting.php:162
1242
  msgid "Label for G+ Commenting tab"
1243
  msgstr "Etiqueta para la pestaña de Comentarios de G+"
1244
 
1245
- #: ../admin/social_commenting.php:171
1246
  msgid "Label for Disqus Commenting tab"
1247
  msgstr "Etiqueta para la pestaña de Comentarios de Disqus"
1248
 
1249
- #: ../admin/social_commenting.php:182
1250
  msgid "Facebook Commenting Options"
1251
  msgstr "Opciones de Comentarios de Facebook"
1252
 
1253
- #: ../admin/social_commenting.php:188
1254
  msgid "Enable Facebook Comments notification and moderation"
1255
  msgstr "Permitir la notificación y moderación de Comentarios de Facebook"
1256
 
1257
- #: ../admin/social_commenting.php:196
1258
- #: ../admin/social_commenting.php:206
1259
  msgid "Enable Facebook Commenting"
1260
  msgstr "Permitir Comentarios de Facebook"
1261
 
1262
- #: ../admin/social_commenting.php:214
1263
- #: ../admin/social_commenting.php:372
1264
  msgid "Url to comment on"
1265
  msgstr "Url para comentar"
1266
 
1267
- #: ../admin/social_commenting.php:224
1268
  msgid "The absolute URL that comments posted will be permanently associated with. Stories on Facebook about comments posted, will link to this URL.<br/>If left empty <strong>(Recommended)</strong>, url of the webpage will be used at which commenting is enabled."
1269
  msgstr "Los comentarios se asociarán de manera permanente con la URL absoluta donde son publicados. Las Historias en Facebook sobre comentarios publicados se vincularán a esta URL.<br/>Si se deja vacía <strong>(Recomendado)</ strong>, se utilizará la url de la página web en la que los comentarios están activos."
1270
 
1271
- #: ../admin/social_commenting.php:232
1272
- #: ../admin/social_commenting.php:354
1273
  msgid "Width"
1274
  msgstr "Ancho"
1275
 
1276
- #: ../admin/social_commenting.php:242
1277
  msgid "Leave empty to auto-adjust the width. The width (in pixels) of the Comments block."
1278
  msgstr "Dejar en blanco para que el ancho se ajuste de manera automática. El ancho (en píxeles) del Bloque de Comentarios."
1279
 
1280
- #: ../admin/social_commenting.php:250
1281
  msgid "Color Scheme"
1282
  msgstr "Esquema de Color"
1283
 
1284
- #: ../admin/social_commenting.php:254
1285
  msgid "Light"
1286
  msgstr "Claro"
1287
 
1288
- #: ../admin/social_commenting.php:255
1289
  msgid "Dark"
1290
  msgstr "Oscuro"
1291
 
1292
- #: ../admin/social_commenting.php:263
1293
  msgid "The color scheme used by the plugin. Can be \"light\" or \"dark\"."
1294
  msgstr "El esquema de color utilizado por el plugin. Puede ser \"claro\" o \"oscuro\"."
1295
 
1296
- #: ../admin/social_commenting.php:271
1297
  msgid "Number of comments"
1298
  msgstr "Número de comentarios"
1299
 
1300
- #: ../admin/social_commenting.php:281
1301
  msgid "The number of comments to show by default. The minimum value is 1. Defaults to 10"
1302
  msgstr "El número de comentarios que se mostrará de forma predeterminada. El valor mínimo es 1. El valor predeterminado es 10"
1303
 
1304
- #: ../admin/social_commenting.php:289
1305
  msgid "Order by"
1306
  msgstr "Ordenar por"
1307
 
1308
- #: ../admin/social_commenting.php:293
1309
  msgid "Social"
1310
  msgstr "Social"
1311
 
1312
- #: ../admin/social_commenting.php:294
1313
  msgid "Reverse Time"
1314
  msgstr "Invertir Fecha"
1315
 
1316
- #: ../admin/social_commenting.php:295
1317
  msgid "Time"
1318
  msgstr "Fecha"
1319
 
1320
- #: ../admin/social_commenting.php:303
1321
  msgid "The order to use when displaying comments."
1322
  msgstr "El orden para usar cuando se muestren los comentarios."
1323
 
1324
- #: ../admin/social_commenting.php:321
1325
  #, php-format
1326
  msgid "Enter the code of the language you want to use to display commenting. You can find the language codes at <a href=\"%s\" target=\"_blank\">this link</a>. Leave it empty for default language(English)"
1327
  msgstr "Introduce el código del idioma que deseas utilizar para mostrar los comentarios. Puedes encontrar los códigos de idioma en <a href=\"%s\" target=\"_blank\">este enlace</a>. Déjalo vacío para el idioma por defecto (Inglés)"
1328
 
1329
- #: ../admin/social_commenting.php:330
1330
  msgid "Google Plus Commenting Options"
1331
  msgstr "Opciones de Comentarios de Google Plus"
1332
 
1333
- #: ../admin/social_commenting.php:336
1334
- #: ../admin/social_commenting.php:346
1335
  msgid "Enable Google Plus Commenting"
1336
  msgstr "Permitir Comentarios de Google Plus"
1337
 
1338
- #: ../admin/social_commenting.php:364
1339
  msgid "Width of GooglePlus Commenting interface. Leave empty for auto adjust"
1340
  msgstr "Ancho de la interfaz de los Comentarios de Google Plus. Déjalo vacío para que se ajuste automáticamente."
1341
 
1342
- #: ../admin/social_commenting.php:382
1343
  msgid "The absolute URL that comments posted will be permanently associated with. Stories on Google Plus about comments posted, will link to this URL.<br/>If left empty <strong>(Recommended)</strong>, url of the webpage will be used at which commenting is enabled."
1344
  msgstr "Los comentarios se asociarán de manera permanente con la URL absoluta donde son publicados. Las Historias en Google Plus sobre comentarios publicados se vincularán a esta URL.<br/>Si se deja vacía <strong>(Recomendado)</ strong>, se utilizará la url de la página web en la que los comentarios están activos."
1345
 
1346
- #: ../admin/social_commenting.php:391
1347
  msgid "Disqus Commenting Options"
1348
  msgstr "Opciones de Comentarios de Disqus"
1349
 
1350
- #: ../admin/social_commenting.php:397
1351
- #: ../admin/social_commenting.php:407
1352
  msgid "Enable Disqus Commenting"
1353
  msgstr "Permitir Comentarios de Disqus"
1354
 
1355
- #: ../admin/social_commenting.php:415
1356
  msgid "Disqus Shortname"
1357
  msgstr "Shortname Disqus"
1358
 
1359
- #: ../admin/social_commenting.php:425
1360
  msgid "<strong>Required to use Disqus commenting.</strong> For more info on shortname, visit following link."
1361
  msgstr "<strong>Necesario para utilizar los Comentarios de Disqus.</ strong> Para obtener más información sobre el shortname, visita el siguiente enlace."
1362
 
1363
- #: ../admin/social_commenting.php:442
1364
  msgid "Social Commenting Shortcode"
1365
  msgstr "Shortcode de Comentarios Sociales"
1366
 
1367
- #: ../admin/social_commenting.php:454
1368
  msgid "How can I disable Social Commenting at individual page/post?"
1369
  msgstr "¿Cómo puedo desactivar los Comentarios Sociales en páginas individuales o entradas?"
1370
 
1371
- #: ../admin/social_commenting.php:455
1372
  msgid "How to disable default comment form from Social Commenting?"
1373
  msgstr "¿Cómo desactivar el formulario de comentarios por defecto de los Comentarios Sociales?"
1374
 
@@ -1381,7 +1382,7 @@ msgid "Master control for Social Login. It must be checked to enable Social Logi
1381
  msgstr "Control Maestro para el Ingreso a través de redes sociales. Debe estar activado para permitir esta funcionalidad"
1382
 
1383
  #: ../admin/social_login.php:35
1384
- #: ../admin/social_login.php:46
1385
  msgid "Basic Configuration"
1386
  msgstr "Configuración básica"
1387
 
@@ -1391,409 +1392,409 @@ msgid "Advanced Configuration"
1391
  msgstr "Configuración básica"
1392
 
1393
  #: ../admin/social_login.php:38
1394
- #: ../admin/social_login.php:831
1395
  msgid "XProfile Integration"
1396
  msgstr ""
1397
 
1398
- #: ../admin/social_login.php:53
1399
  msgid "Disable user registration via Social Login"
1400
  msgstr "Desactivar el registro de usuario mediante redes sociales"
1401
 
1402
- #: ../admin/social_login.php:63
1403
  msgid "After enabling this option, new users will not be able to login through social login. Only existing users will be able to social login."
1404
  msgstr "Después de activar esta opción, los nuevos usuarios no podrán acceder a través de las redes sociales. Sólo los usuarios ya existentes podrán hacerlo."
1405
 
1406
- #: ../admin/social_login.php:72
1407
  msgid "Redirection url"
1408
  msgstr "Redirección de la url"
1409
 
1410
- #: ../admin/social_login.php:82
1411
  msgid "User will be redirected to this page after unsuccessful registration attempt via Social Login. You can specify the url of registration form or of a page showing message regarding disabled registration through Social Login."
1412
  msgstr "El usuario será redirigido a esta página después de un intento de registro fallido a través de su contraseña de una red social. Puedes especificar la url del formulario de registro o de una página que muestre un mensaje advirtiendo que el registro a través de redes sociales está desactivado."
1413
 
1414
- #: ../admin/social_login.php:91
1415
  msgid "Select providers"
1416
  msgstr "Seleccionar redes sociales"
1417
 
1418
- #: ../admin/social_login.php:96
1419
  msgid "Facebook"
1420
  msgstr "Facebook"
1421
 
1422
- #: ../admin/social_login.php:100
1423
  msgid "Twitter"
1424
- msgstr "Facebook"
1425
 
1426
- #: ../admin/social_login.php:104
1427
  msgid "LinkedIn"
1428
  msgstr "LinkedIn"
1429
 
1430
- #: ../admin/social_login.php:108
1431
  msgid "Google+"
1432
  msgstr "Google+"
1433
 
1434
- #: ../admin/social_login.php:112
1435
  msgid "Vkontakte"
1436
  msgstr "Vkontakte"
1437
 
1438
- #: ../admin/social_login.php:116
1439
  msgid "Instagram"
1440
  msgstr "Instagram"
1441
 
1442
- #: ../admin/social_login.php:120
1443
  msgid "Xing"
1444
  msgstr "Xing"
1445
 
1446
- #: ../admin/social_login.php:124
1447
  msgid "Steam"
1448
  msgstr ""
1449
 
1450
- #: ../admin/social_login.php:129
1451
  #, fuzzy
1452
  msgid "Twitch"
1453
- msgstr "Facebook"
1454
 
1455
- #: ../admin/social_login.php:137
1456
  msgid "Select Social ID provider to enable in Social Login"
1457
  msgstr "Seleccionar un proveedor de Social ID para permitir el ingreso a través de redes sociales"
1458
 
1459
- #: ../admin/social_login.php:145
1460
  msgid "Facebook App ID"
1461
  msgstr "Facebook App ID"
1462
 
1463
- #: ../admin/social_login.php:155
1464
  #, php-format
1465
  msgid "Required for Facebook Social Login to work. Please follow the documentation at <a href=\"%s\" target=\"_blank\">this link</a> to get Facebook App ID"
1466
  msgstr "Requerido para que funcione el ingreso a través de Facebook. Por favor, sigue la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> para conseguir tu Facebook App ID"
1467
 
1468
- #: ../admin/social_login.php:157
1469
  msgid "Paste following url in <strong>Site URL</strong> option at the link mentioned"
1470
  msgstr "Pega la siguiente url en la opción <strong>Site URL</ strong> en el enlace mencionado"
1471
 
1472
- #: ../admin/social_login.php:167
1473
  msgid "Twitter API Key"
1474
  msgstr "Twitter API Key"
1475
 
1476
- #: ../admin/social_login.php:177
1477
  #, php-format
1478
  msgid "Required for Twitter Social Login to work. Please follow the documentation at <a href=\"%s\" target=\"_blank\">this link</a> to get Twitter API Key"
1479
  msgstr "Requerido para que funcione el ingreso a través de Twitter. Por favor, sigue la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> para conseguir tu Twitter Key"
1480
 
1481
- #: ../admin/social_login.php:179
1482
- #: ../admin/social_login.php:201
1483
  msgid "Paste following url in <strong>Website</strong> and <strong>Callback URL</strong> options at the link mentioned"
1484
  msgstr "Pega la siguiente url en las opciones <strong>Website</ strong> y <strong>Callback URL</strong> en el enlace mencionado"
1485
 
1486
- #: ../admin/social_login.php:189
1487
  msgid "Twitter API Secret"
1488
  msgstr "Twitter API Secret"
1489
 
1490
- #: ../admin/social_login.php:199
1491
  #, php-format
1492
  msgid "Required for Twitter Social Login to work. Please follow the documentation at <a href=\"%s\" target=\"_blank\">this link</a> to get Twitter API Secret"
1493
  msgstr "Requerido para que funcione el ingreso a través de Twitter. Por favor, sigue la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> para conseguir tu Twitter API Secret"
1494
 
1495
- #: ../admin/social_login.php:211
1496
  msgid "LinkedIn API Key"
1497
  msgstr "LinkedIn API Key"
1498
 
1499
- #: ../admin/social_login.php:221
1500
  #, php-format
1501
  msgid "Required for LinkedIn Social Login to work. Please follow the documentation at <a href=\"%s\" target=\"_blank\">this link</a> to get LinkedIn API Key"
1502
  msgstr "Requerido para que funcione el ingreso a través de LinkedIn. Por favor, sigue la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> para conseguir tu LinkedIn API Key"
1503
 
1504
- #: ../admin/social_login.php:223
1505
- #: ../admin/social_login.php:289
1506
  msgid "Paste following url in <strong>Website URL</strong> option at the link mentioned"
1507
  msgstr "Pega la siguiente url en la opción <strong>Website URL</ strong> en el enlace mencionado"
1508
 
1509
- #: ../admin/social_login.php:233
1510
  msgid "Google+ Client ID"
1511
  msgstr "Google+ Client ID"
1512
 
1513
- #: ../admin/social_login.php:243
1514
  #, php-format
1515
  msgid "Required for GooglePlus Social Login to work. Please follow the documentation at <a href=\"%s\" target=\"_blank\">this link</a> to get GooglePlus Client ID"
1516
  msgstr "Requerido para que funcione el ingreso a través de GooglePlus. Por favor, sigue la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> para conseguir tu GooglePlus Client ID"
1517
 
1518
- #: ../admin/social_login.php:245
1519
  msgid "Paste following url in <strong>AUTHORIZED JAVASCRIPT ORIGINS</strong> and <strong>AUTHORIZED REDIRECT URI</strong> options at the link mentioned"
1520
  msgstr "Pega la siguiente url en las opciones <strong>AUTHORIZED JAVASCRIPT ORIGINS</ strong> y <strong>AUTHORIZED REDIRECT URI</strong> en el enlace mencionado"
1521
 
1522
- #: ../admin/social_login.php:255
1523
  msgid "Vkontakte Application ID"
1524
  msgstr "Vkontakte Application ID"
1525
 
1526
- #: ../admin/social_login.php:265
1527
  #, php-format
1528
  msgid "Required for Vkontakte Social Login to work. Please follow the documentation at <a href=\"%s\" target=\"_blank\">this link</a> to get Vkontakte Application ID"
1529
  msgstr "Requerido para que funcione el ingreso a través de Vkontakte. Por favor, sigue la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> para conseguir tu Vkontakte Application ID"
1530
 
1531
- #: ../admin/social_login.php:267
1532
  msgid "Paste following url in <strong>Site address</strong> option at the link mentioned"
1533
  msgstr "Pega la siguiente url en la opción <strong>Site address</ strong> en el enlace mencionado"
1534
 
1535
- #: ../admin/social_login.php:277
1536
  msgid "Instagram Client ID"
1537
  msgstr "Instagram Client ID"
1538
 
1539
- #: ../admin/social_login.php:287
1540
  #, php-format
1541
  msgid "Required for Instagram Social Login to work. Please follow the documentation at <a href=\"%s\" target=\"_blank\">this link</a> to get Instagram Client ID"
1542
  msgstr "Requerido para que funcione el ingreso a través de Instagram. Por favor, sigue la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> para conseguir tu Instagram Client ID"
1543
 
1544
- #: ../admin/social_login.php:299
1545
  msgid "Xing Consumer Key"
1546
  msgstr "Xing Consumer Key"
1547
 
1548
- #: ../admin/social_login.php:309
1549
  #, php-format
1550
  msgid "Required for Xing Social Login to work. Please follow the documentation at <a href=\"%s\" target=\"_blank\">this link</a> to get Xing Consumer Key"
1551
  msgstr "Requerido para que funcione el ingreso a través de Xing. Por favor, sigue la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> para conseguir tu Xing Consumer Key"
1552
 
1553
- #: ../admin/social_login.php:311
1554
- #: ../admin/social_login.php:333
1555
  msgid "Paste following url in <strong>Callback domain</strong> option at the link mentioned"
1556
  msgstr "Pega la siguiente url en la opción <strong>Callback domain</ strong> en el enlace mencionado"
1557
 
1558
- #: ../admin/social_login.php:321
1559
  msgid "Xing Consumer Secret"
1560
  msgstr "Xing Consumer Secret"
1561
 
1562
- #: ../admin/social_login.php:331
1563
  #, php-format
1564
  msgid "Required for Xing Social Login to work. Please follow the documentation at <a href=\"%s\" target=\"_blank\">this link</a> to get Xing Consumer Secret"
1565
  msgstr "Requerido para que funcione el ingreso a través de Xing. Por favor, sigue la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> para conseguir tu Xing Consumer Secret"
1566
 
1567
- #: ../admin/social_login.php:343
1568
  #, fuzzy
1569
  msgid "Twitch Client ID"
1570
  msgstr "Instagram Client ID"
1571
 
1572
- #: ../admin/social_login.php:353
1573
  #, fuzzy, php-format
1574
  msgid "Required for Twitch Social Login to work. Please follow the documentation at <a href=\"%s\" target=\"_blank\">this link</a> to get Twitch Client ID"
1575
  msgstr "Requerido para que funcione el ingreso a través de Twitter. Por favor, sigue la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> para conseguir tu Twitter Key"
1576
 
1577
- #: ../admin/social_login.php:355
1578
  #, fuzzy
1579
  msgid "Paste following url in <strong>Redirect URI</strong> option at the link mentioned"
1580
  msgstr "Pega la siguiente url en la opción <strong>Site URL</ strong> en el enlace mencionado"
1581
 
1582
- #: ../admin/social_login.php:371
1583
  #, fuzzy
1584
  msgid "Social Login Options"
1585
  msgstr "Ingreso a través de redes sociales"
1586
 
1587
- #: ../admin/social_login.php:387
1588
  msgid "Text to display above the Social Login interface"
1589
  msgstr "Texto para mostrar sobre la interfaz del Ingreso a través de redes sociales"
1590
 
1591
- #: ../admin/social_login.php:396
1592
  msgid "Enable at login page"
1593
  msgstr "Permitir Página de Ingreso"
1594
 
1595
- #: ../admin/social_login.php:406
1596
  msgid "Social Login interface will get enabled at the login page of your website"
1597
  msgstr "La interfaz de Ingreso a través de redes sociales aparecerá en la página de acceso de tu sitio web"
1598
 
1599
- #: ../admin/social_login.php:414
1600
  msgid "Enable at register page"
1601
  msgstr "Permitir Página de Registro"
1602
 
1603
- #: ../admin/social_login.php:424
1604
  msgid "Social Login interface will get enabled at the registration page of your website"
1605
  msgstr "La interfaz de Ingreso a través de redes sociales aparecerá en la página de registro de tu sitio web"
1606
 
1607
- #: ../admin/social_login.php:432
1608
  msgid "Enable at comment form"
1609
  msgstr "Permitir el formulario de comentarios"
1610
 
1611
- #: ../admin/social_login.php:442
1612
  msgid "Social Login interface will get enabled at your Wordpress Comment form"
1613
  msgstr "La interfaz de Ingreso a través de redes sociales aparecerá en el formulario de Comentario de tu WordPress"
1614
 
1615
- #: ../admin/social_login.php:456
1616
  msgid "Enable before WooCommerce Customer Login Form"
1617
  msgstr "Permitir antes del Formulario de Ingreso de Cliente de WooCommerce"
1618
 
1619
- #: ../admin/social_login.php:466
1620
  msgid "Social Login Interface will get enabled before the customer login form at WooCommerce My Account page"
1621
  msgstr "La interfaz de Ingreso a través de redes sociales aparecerá antes del formulario de ingreso de cliente de la página Mi Cuenta de WooCommerce"
1622
 
1623
- #: ../admin/social_login.php:474
1624
  msgid "Enable after WooCommerce Customer Login Form"
1625
  msgstr "Permitir después del Formulario de Ingreso de Cliente de WooCommerce"
1626
 
1627
- #: ../admin/social_login.php:484
1628
  msgid "Social Login Interface will get enabled after the customer login form at WooCommerce My Account page"
1629
  msgstr "La interfaz de Ingreso a través de redes sociales aparecerá después del formulario de ingreso de cliente de la página Mi Cuenta de WooCommerce"
1630
 
1631
- #: ../admin/social_login.php:492
1632
  msgid "Enable at WooCommerce checkout page"
1633
  msgstr "Permitir en la página de checkout de WooCommerce"
1634
 
1635
- #: ../admin/social_login.php:502
1636
  msgid "Social Login Interface will get enabled at WooCommerce checkout page"
1637
  msgstr "La interfaz de Ingreso a través de redes sociales aparecerá en la página de checkout de WooCommerce"
1638
 
1639
- #: ../admin/social_login.php:513
1640
  msgid "Auto-approve comments made by Social Login users"
1641
  msgstr "Aprobar automáticamente los comentarios hechos por los usuarios conectados a través de redes sociales"
1642
 
1643
- #: ../admin/social_login.php:523
1644
  msgid "If this option is enabled, and WordPress comment is made by Social Login user, comment will get approved immediately without keeping in moderation."
1645
  msgstr "Si esta opción está activada, y el comentario WordPress es hecho por un usuario conectado a través de WordPress, su comentario será aprobado de inmediato sin necesidad de moderación."
1646
 
1647
- #: ../admin/social_login.php:524
1648
  msgid "Note: This is not related to Facebook comments"
1649
  msgstr "Nota: Esto no es válido para los comentarios de Facebook"
1650
 
1651
- #: ../admin/social_login.php:534
1652
  msgid "Enable social avatar"
1653
  msgstr "Permitir avatar social"
1654
 
1655
- #: ../admin/social_login.php:544
1656
  msgid "Social profile pictures of the logged in user will be displayed as profile avatar"
1657
  msgstr "Las imágenes del perfil social del usuario conectado se mostrarán como su avatar de perfil"
1658
 
1659
- #: ../admin/social_login.php:554
1660
  msgid "Avatar quality"
1661
  msgstr "Calidad del avatar"
1662
 
1663
- #: ../admin/social_login.php:557
1664
  msgid "Average"
1665
  msgstr "Media"
1666
 
1667
- #: ../admin/social_login.php:558
1668
  msgid "Best"
1669
  msgstr "Alta"
1670
 
1671
- #: ../admin/social_login.php:565
1672
  msgid "Choose avatar quality"
1673
  msgstr "Elegir la calidad del avatar"
1674
 
1675
- #: ../admin/social_login.php:574
1676
  msgid "Show option for users to update social avatar at BuddyPress profile page"
1677
  msgstr "Mostrar la opción para los usuarios de actualizar su avatar social en su página de perfil de BuddyPress"
1678
 
1679
- #: ../admin/social_login.php:584
1680
  msgid "If enabled, users would be able to update their social avatar from \"Profile photo\" section in BuddyPress profile at front-end"
1681
  msgstr "Si está activa, los usuarios podrán actualizar su avatar social desde la sección \"Foto de perfil\" en el perfil BuddyPress, en la vista de usuario"
1682
 
1683
- #: ../admin/social_login.php:605
1684
  msgid "If enabled and Social ID provider does not provide user's email address on login, user will be asked to provide his/her email address. Otherwise, a dummy email will be generated"
1685
  msgstr "Si se activa y el proveedor de ID de red social no proporciona dirección de email del usuario al iniciar sesión, se le pedirá al usuario que proporcione su dirección de email. De lo contrario, se generará un email aleatorio"
1686
 
1687
- #: ../admin/social_login.php:614
1688
  msgid "Send post-registration email to user to set account password"
1689
  msgstr ""
1690
 
1691
- #: ../admin/social_login.php:624
1692
  msgid "If enabled, an email will be sent to user after registration through Social Login, regarding his/her login credentials (username-password to be able to login via traditional login form)"
1693
  msgstr "Si se activa, se enviará un email al usuario después de su registro a través de la red social elegida, con su nombre de usuario y su contraseña para poder iniciar sesión a través del formulario de acceso tradicional"
1694
 
1695
- #: ../admin/social_login.php:632
1696
  #, fuzzy
1697
  msgid "Send new user registration notification email to admin"
1698
  msgstr "Desactivar el registro de usuario mediante redes sociales"
1699
 
1700
- #: ../admin/social_login.php:642
1701
  #, fuzzy
1702
  msgid "If enabled, an email will be sent to admin after new user registers through Social Login, notifying admin about the new user registration"
1703
  msgstr "Si se activa, se enviará un email al usuario después de su registro a través de la red social elegida, con su nombre de usuario y su contraseña para poder iniciar sesión a través del formulario de acceso tradicional"
1704
 
1705
- #: ../admin/social_login.php:651
1706
  msgid "Enable social account linking at BuddyPress profile page"
1707
  msgstr "Permitir cuenta de red social enlazando a la página de perfil de BuddyPress"
1708
 
1709
- #: ../admin/social_login.php:661
1710
  msgid "Enable this option to show social account linking interface at BuddyPress profile page"
1711
  msgstr "Activa esta opción para mostrar la cuenta social enlazando a la interfaz de la página de perfil de BuddyPress"
1712
 
1713
- #: ../admin/social_login.php:670
1714
  msgid "Login redirection"
1715
  msgstr "Redirección de Ingreso"
1716
 
1717
- #: ../admin/social_login.php:674
1718
  msgid "Same page where user logged in"
1719
  msgstr "La misma página en la que el usuario ha iniciado sesión"
1720
 
1721
- #: ../admin/social_login.php:678
1722
- #: ../admin/social_login.php:708
1723
  msgid "Account dashboard"
1724
  msgstr "Panel de cuenta de usuario"
1725
 
1726
- #: ../admin/social_login.php:681
1727
- #: ../admin/social_login.php:711
1728
  msgid "BuddyPress profile page"
1729
  msgstr "Página de perfil de BuddyPress"
1730
 
1731
- #: ../admin/social_login.php:684
1732
- #: ../admin/social_login.php:714
1733
  msgid "Custom Url"
1734
  msgstr "Url personalizada"
1735
 
1736
- #: ../admin/social_login.php:692
1737
  msgid "User will be redirected to the selected page after Social Login"
1738
  msgstr "El usuario será redirigido a la página seleccionada después de su ingreso"
1739
 
1740
- #: ../admin/social_login.php:700
1741
  msgid "Registration redirection"
1742
  msgstr "Redirección de Registro"
1743
 
1744
- #: ../admin/social_login.php:704
1745
  msgid "Same page from where user registered"
1746
  msgstr "La misma página en la que el usuario se ha registrado"
1747
 
1748
- #: ../admin/social_login.php:722
1749
  msgid "User will be redirected to the selected page after registration (first Social Login) through Social Login"
1750
  msgstr "El usuario será redirigido a la página seleccionada después de su registro (en su primer inicio de sesión) a través de la red social"
1751
 
1752
- #: ../admin/social_login.php:730
1753
  msgid "Email popup options"
1754
  msgstr "Opciones de popup del Email"
1755
 
1756
- #: ../admin/social_login.php:736
1757
  msgid "Text on 'Email required' popup"
1758
  msgstr "Texto del popup 'Email requerido'"
1759
 
1760
- #: ../admin/social_login.php:746
1761
  msgid "This text will be displayed on email required popup. Leave empty if not required."
1762
  msgstr "Este texto se mostrará en el popup de email requerido. Déjalo en blanco si no es necesario."
1763
 
1764
- #: ../admin/social_login.php:755
1765
  msgid "Error message for 'Email required' popup"
1766
  msgstr "Mensaje de error para el popup de 'Email requerido'"
1767
 
1768
- #: ../admin/social_login.php:765
1769
  msgid "This message will be displayed to user if it provides invalid or already registered email"
1770
  msgstr "Este mensaje se mostrará si el usuario introduce un email no válido o ya registrado"
1771
 
1772
- #: ../admin/social_login.php:774
1773
  msgid "Email popup height"
1774
  msgstr "Altura del popup del Email"
1775
 
1776
- #: ../admin/social_login.php:784
1777
  msgid "If you are seeing vertical scrollbar in the \"Email required\" popup, you can increase the height of popup by specifying in this option. Leave empty for default."
1778
  msgstr "Si estás viendo la barra de desplazamiento vertical en el popup de \"Email requerido\", puedes aumentar la altura del popup especificándola en esta opción. Déjala en blanco para la altura por defecto."
1779
 
1780
- #: ../admin/social_login.php:792
1781
  msgid "Enable email verification"
1782
  msgstr "Activar verificación por email"
1783
 
1784
- #: ../admin/social_login.php:802
1785
  msgid "If enabled, email provided by the user will be verified by sending a confirmation link to that email. User would not be able to login without verifying his/her email"
1786
  msgstr "Si se activa, se enviará un enlace de confirmación al email proporcionado por el usuario. El usuario no podrá conectarse sin verificar su email y pulsar este enlace"
1787
 
1788
- #: ../admin/social_login.php:851
1789
  msgid "Select"
1790
  msgstr "Seleccionar"
1791
 
1792
- #: ../admin/social_login.php:881
1793
  msgid "Social Login Shortcode & Widget"
1794
  msgstr "Widget y Shortcode para el Ingreso a través de redes sociales"
1795
 
1796
- #: ../admin/social_login.php:882
1797
  msgid "Social Linking Shortcode"
1798
  msgstr "Shortcode para enlace a través de redes sociales"
1799
 
@@ -1805,142 +1806,142 @@ msgstr "Permitir Botones Me gusta"
1805
  msgid "Master control for like buttons. It must be checked to enable like buttons functionality"
1806
  msgstr "Control maestro para los botones Me gusta. Debes activarlo para permitir su funcionalidad"
1807
 
1808
- #: ../admin/like_buttons.php:48
1809
  msgid "Standard Interface Options"
1810
  msgstr "Opciones de la Interfaz Estándar"
1811
 
1812
- #: ../admin/like_buttons.php:54
1813
  msgid "Enable standard interface"
1814
  msgstr "Permitir la interfaz estándar"
1815
 
1816
- #: ../admin/like_buttons.php:64
1817
  msgid "Master control to enable horizontal like buttons"
1818
  msgstr "Control maestro para permitir los botones Me gusta horizontales"
1819
 
1820
- #: ../admin/like_buttons.php:89
1821
- #: ../admin/like_buttons.php:338
1822
  msgid "Url to like/share/tweet and display like/share/tweet counts"
1823
  msgstr "Url para los Me gusta / Compartir / Tweets y mostrar sus contadores"
1824
 
1825
- #: ../admin/like_buttons.php:107
1826
  msgid "The text to display above the interface"
1827
  msgstr "Texto para mostrar sobre la interfaz"
1828
 
1829
- #: ../admin/like_buttons.php:115
1830
- #: ../admin/like_buttons.php:346
1831
  msgid "Select and rearrange providers"
1832
  msgstr "Seleccionar y reordenar redes sociales"
1833
 
1834
- #: ../admin/like_buttons.php:159
1835
- #: ../admin/like_buttons.php:389
1836
  msgid "Select the providers for interface. Drag them to rearrange."
1837
  msgstr "Seleccionar las redes sociales para la interfaz. Arrástralas para reordenarlas."
1838
 
1839
- #: ../admin/like_buttons.php:181
1840
- #: ../admin/like_buttons.php:428
1841
  msgid "Horizontal alignment of the interface"
1842
  msgstr "Alineación horizontal de la interfaz"
1843
 
1844
- #: ../admin/like_buttons.php:202
1845
  msgid "Specify position of the interface with respect to the content"
1846
  msgstr "Especificar la posición de la interfaz con respecto al contenido"
1847
 
1848
- #: ../admin/like_buttons.php:210
1849
- #: ../admin/like_buttons.php:494
1850
  msgid "Interface location"
1851
  msgstr "Posición de la interfaz"
1852
 
1853
- #: ../admin/like_buttons.php:280
1854
  msgid "Specify the pages where you want to enable interface"
1855
  msgstr "Especifica las páginas donde quieres permitir la interfaz"
1856
 
1857
- #: ../admin/like_buttons.php:297
1858
  msgid "Vertical (Floating) like buttons Options"
1859
  msgstr "Opciones de los botones Me gusta en Barra Vertical Flotante"
1860
 
1861
- #: ../admin/like_buttons.php:303
1862
  msgid "Enable floating like buttons"
1863
  msgstr "Permitir Barra Flotante de botones Me gusta"
1864
 
1865
- #: ../admin/like_buttons.php:313
1866
  msgid "Master control to enable vertical (floating) counter widget"
1867
  msgstr "Control maestro para permitir el widget vertical flotante del contador"
1868
 
1869
- #: ../admin/like_buttons.php:407
1870
  msgid "Specify the color or hex code (example #cc78e0) for the background of vertical interface. Leave empty for transparent. You can get the hex code of the required color from <a href=\"http://www.colorpicker.com/\" target=\"_blank\">this link</a>"
1871
  msgstr "Especifica el color o código hexadecimal (por ejemplo #cc78e0) para el fondo de la interfaz vertical. Déjalo vacío para que sea transparente. Puedes conseguir el código hexadecimal del color que desees en <a href=\"http://www.colorpicker.com/\" target=\"_blank\">este enlace</a>"
1872
 
1873
- #: ../admin/like_buttons.php:447
1874
  msgid "Specify a number. Increase in number will shift interface towards right and decrease will shift it towards left. Number can be negative too."
1875
  msgstr "Especifica un número. Al incrementar el número la interfaz se desplazará a la derecha y al disminuirlo se desplazará hacia la izquierda. El número puede ser negativo también."
1876
 
1877
- #: ../admin/like_buttons.php:467
1878
  msgid "Specify a number. Increase in number will shift interface towards left and decrease will shift it towards right. Number can be negative too."
1879
  msgstr "Especifica un número. Al incrementar el número la interfaz se desplazará a la izquierda y al disminuirlo se desplazará hacia la derecha. El número puede ser negativo también."
1880
 
1881
- #: ../admin/like_buttons.php:486
1882
  msgid "Specify a number. Increase in number will shift interface towards bottom and decrease will shift it towards top."
1883
  msgstr "Especifica un número. Al incrementar el número la interfaz se desplazará hacia abajo y al disminuirlo se desplazará hacia arriba."
1884
 
1885
- #: ../admin/like_buttons.php:542
1886
  msgid "Specify the pages where you want to enable vertical interface"
1887
  msgstr "Especifica las páginas donde quieres permitir la interfaz vertical"
1888
 
1889
- #: ../admin/like_buttons.php:550
1890
  msgid "Hide like buttons on mobile devices"
1891
  msgstr "Ocultar botones Me gusta en dispositivos móviles "
1892
 
1893
- #: ../admin/like_buttons.php:560
1894
  msgid "If enabled, vertical like buttons will not appear on mobile devices"
1895
  msgstr "Si se activa, la barra vertical de botones Me gusta no aparecerá en dispositivos móviles"
1896
 
1897
- #: ../admin/like_buttons.php:584
1898
  msgid "Use shortlinks already installed, for tweet button"
1899
  msgstr "Usa los shortlinks ya instalados para el botón de twittear"
1900
 
1901
- #: ../admin/like_buttons.php:594
1902
  msgid "Allows for shortened URLs to be used when sharing content if a shortening plugin is installed"
1903
  msgstr "Permite que las URLs abreviadas se usen al compartir contenido, si un plugin de abreviatura está instalado"
1904
 
1905
- #: ../admin/like_buttons.php:602
1906
  msgid "Enable bit.ly url shortener for tweet button"
1907
  msgstr "Permitir el abreviador de url bit.ly para el botón de twittear"
1908
 
1909
- #: ../admin/like_buttons.php:620
1910
  msgid "bit.ly username"
1911
  msgstr "Nombre de usuario bit.ly"
1912
 
1913
- #: ../admin/like_buttons.php:630
1914
  #, php-format
1915
  msgid "Login to your bit.ly account and navigate to <a href=\"%s\" target=\"_blank\">this link</a> to get bit.ly username"
1916
  msgstr "Ingresa a tu cuenta bit.ly y ve a <a href=\"%s\" target=\"_blank\">este enlace</a> para obtener tu nombre de usuario bit.ly"
1917
 
1918
- #: ../admin/like_buttons.php:694
1919
  #, php-format
1920
  msgid "Enter the code of the language you want to use to render counters. You can find the language codes at <a href=\"%s\" target=\"_blank\">this link</a>. Leave it empty for default language(English)"
1921
  msgstr "Introduce el código del idioma que deseas utilizar para renderizar los contadores. Puedes encontrar los códigos de idioma en <a href=\"%s\" target=\"_blank\">este enlace</a>. Déjalo vacío para el idioma por defecto (Inglés)"
1922
 
1923
- #: ../admin/like_buttons.php:703
1924
  msgid "Twitter Username"
1925
  msgstr "Nombre de usuario de Twitter"
1926
 
1927
- #: ../admin/like_buttons.php:709
1928
  msgid "Twitter username for Tweet (without @)"
1929
  msgstr "Nombre de usuario para twittear (sin @)"
1930
 
1931
- #: ../admin/like_buttons.php:719
1932
  msgid "Provided username will be appended after the content being tweeted as \"via @USERNAME\". Leave empty if you do not want any username."
1933
  msgstr "El nombre de usuario introducido será añadido después del contenido twiteado como \"via @USERNAME\". Déjalo vacío si no quieres ningún nombre de usuario."
1934
 
1935
- #: ../admin/like_buttons.php:728
1936
  msgid "Twitter username for Buffer sharing (without @)"
1937
  msgstr "Nombre de usuario de Twitter para compartir en Buffer (sin @)"
1938
 
1939
- #: ../admin/like_buttons.php:738
1940
  msgid "Provided username will be appended after the content in Buffer sharing as \"via @USERNAME\". Leave empty if you do not want any username."
1941
  msgstr "El nombre de usuario introducido será añadido después del contenido compartido en Buffer como \"via @USERNAME\". Déjalo vacío si no quieres ningún nombre de usuario."
1942
 
1943
- #: ../admin/like_buttons.php:755
1944
  msgid "Like Buttons Shortcode & Widget"
1945
  msgstr "Shortcode y Widget Botones Me gusta"
1946
 
@@ -1953,37 +1954,37 @@ msgstr "Cerrar sesión"
1953
  msgid "Enable Social Login from \"Basic Configuration\" section at \"Super Socializer > Social Login\" page in admin panel"
1954
  msgstr "Permitir el Ingreso a través de redes sociales desde la sección de \"Configuración Básica\" en la página del panel de control \"Super Socializer > Social Login\""
1955
 
1956
- #: ../inc/social_sharing.php:791
1957
- #: ../inc/social_sharing.php:1010
1958
  msgid "Invalid request"
1959
  msgstr "Petición no válida"
1960
 
1961
- #: ../inc/social_sharing.php:798
1962
  msgid "Providers not selected"
1963
  msgstr "Redes sociales no seleccionadas"
1964
 
1965
- #: ../inc/social_login.php:672
1966
  msgid "Email"
1967
  msgstr ""
1968
 
1969
- #: ../inc/social_login.php:673
1970
  msgid "Confirm email"
1971
  msgstr ""
1972
 
1973
- #: ../inc/social_login.php:675
1974
  msgid "Save"
1975
  msgstr ""
1976
 
1977
- #: ../inc/social_login.php:676
1978
  msgid "Cancel"
1979
  msgstr ""
1980
 
1981
- #: ../inc/social_login.php:750
1982
  #, fuzzy
1983
  msgid "Email Verification"
1984
  msgstr "Activar verificación por email"
1985
 
1986
- #: ../inc/social_login.php:752
1987
  msgid "Please click on the following link or paste it in browser to verify your email"
1988
  msgstr ""
1989
 
@@ -2106,9 +2107,15 @@ msgstr "Widget horizontal de botones Me gusta. Permite a los usuarios de tu siti
2106
  msgid "Make sure \"Floating Like Buttons\" are enabled from \"Super Socializer > Like Buttons\" page."
2107
  msgstr "Asegúrate de que \"Botones Me gusta Horizontal\" está permitido en la página \"Super Socializer > Like Buttons\"."
2108
 
2109
- #, fuzzy
2110
- #~ msgid "Please specify a vaild reason"
2111
- #~ msgstr "Por favor verifica tu dirección de email para ingresar."
 
 
 
 
 
 
2112
 
2113
  #~ msgid "Welcome"
2114
  #~ msgstr "Bienvenid@"
@@ -2158,8 +2165,8 @@ msgstr "Asegúrate de que \"Botones Me gusta Horizontal\" está permitido en la
2158
  #~ "color de los botones Me gusta, así como configurar sus diferentes "
2159
  #~ "opciones."
2160
 
2161
- #~ msgid "Super Socializer - Social Avatar"
2162
- #~ msgstr "Super Socializer - Social Avatar"
2163
 
2164
  #~ msgid "Username: %s"
2165
  #~ msgstr "Nombre de usuario: %s"
@@ -2169,13 +2176,3 @@ msgstr "Asegúrate de que \"Botones Me gusta Horizontal\" está permitido en la
2169
 
2170
  #~ msgid "[%s] Your username and password"
2171
  #~ msgstr "[%s] Tu nombre de usuario y contraseña"
2172
-
2173
- #~ msgid "Excerpts"
2174
- #~ msgstr "Extractos"
2175
-
2176
- #~ msgid "Send username-password after user registration"
2177
- #~ msgstr ""
2178
- #~ "Enviar nombre de usuario y contraseña después del registro del usuario"
2179
-
2180
- #~ msgid "Login options"
2181
- #~ msgstr "Opciones de Ingreso"
2
  msgstr ""
3
  "Project-Id-Version: Super Socializer\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2017-01-17 05:29+0530\n"
6
+ "PO-Revision-Date: 2017-01-17 05:30+0530\n"
7
  "Last-Translator: The Champ <lordofthechamps@gmail.com>\n"
8
  "Language-Team: Heateor <hello@heateor.com>\n"
9
  "Language: es\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: __;_e\n"
14
  "X-Poedit-Basepath: .\n"
15
+ "X-Generator: Poedit 1.8.11\n"
16
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
17
  "X-Poedit-SearchPath-0: ..\n"
18
 
36
  msgstr ""
37
 
38
  #: ../super_socializer.php:505
39
+ #: ../helper.php:965
40
  msgid "Please verify your email address to login."
41
  msgstr "Por favor verifica tu dirección de email para ingresar."
42
 
49
  msgstr "Notificación"
50
 
51
  #: ../super_socializer.php:527
52
+ #: ../admin/social_login.php:597
53
  msgid "Email required"
54
  msgstr "Email requerido"
55
 
79
 
80
  #: ../super_socializer.php:823
81
  #: ../admin/general_options.php:11
82
+ #: ../admin/social_commenting.php:43
83
  msgid "General Options"
84
  msgstr "Opciones Generales"
85
 
86
  #: ../super_socializer.php:887
87
+ #: ../helper.php:887
88
  msgid "Social Avatar"
89
  msgstr "Avatar Social"
90
 
97
  msgstr "Url de Avatar Grande"
98
 
99
  #: ../super_socializer.php:898
100
+ #: ../helper.php:890
101
  msgid "Do not fetch and update social avatar from my profile, next time I Social Login"
102
  msgstr "No se ha podido recuperar y actualizar el avatar social desde mi perfil, la próxima vez | Social Login"
103
 
104
  #: ../super_socializer.php:902
105
+ #: ../helper.php:891
106
  msgid "Update social avatar, next time I Social Login"
107
  msgstr "Actualiza tu avatar de redes sociales | Social Login"
108
 
217
  msgid "Floating Sharing Interface"
218
  msgstr "Interfaz Flotante de botones Compartir"
219
 
220
+ #: ../helper.php:894
221
  msgid "Small Avatar"
222
  msgstr "Avatar Pequeño"
223
 
224
+ #: ../helper.php:898
225
  msgid "Large Avatar"
226
  msgstr "Avatar Grande"
227
 
228
+ #: ../helper.php:902
229
  #: ../admin/general_options.php:89
230
+ #: ../admin/social_sharing.php:1868
231
+ #: ../admin/social_commenting.php:467
232
+ #: ../admin/social_login.php:897
233
+ #: ../admin/like_buttons.php:785
234
  msgid "Save Changes"
235
  msgstr "Guardar Cambios"
236
 
370
  msgstr "Miscelánea"
371
 
372
  #: ../admin/social_sharing.php:39
373
+ #: ../admin/social_sharing.php:1810
374
+ #: ../admin/social_sharing.php:1812
375
  #: ../admin/social_login.php:40
376
+ #: ../admin/social_login.php:883
377
  #: ../admin/like_buttons.php:40
378
+ #: ../admin/like_buttons.php:757
379
  msgid "Shortcode & Widget"
380
  msgstr "Widgets y Shortcodes"
381
 
384
  msgstr "Resolución de problmas"
385
 
386
  #: ../admin/social_sharing.php:41
387
+ #: ../admin/social_sharing.php:1843
388
  #: ../admin/social_commenting.php:36
389
+ #: ../admin/social_commenting.php:455
390
  #: ../admin/like_buttons.php:41
391
+ #: ../admin/like_buttons.php:770
392
  msgid "FAQ"
393
  msgstr "FAQ"
394
 
395
+ #: ../admin/social_sharing.php:49
396
  msgid "Standard interface theme"
397
  msgstr "Tema de la Interfaz Estándar"
398
 
399
+ #: ../admin/social_sharing.php:54
400
+ #: ../admin/social_sharing.php:361
401
  msgid "Icon Preview"
402
  msgstr "Vista previa de Icono"
403
 
404
+ #: ../admin/social_sharing.php:126
405
+ #: ../admin/social_sharing.php:434
406
  msgid "Do not forget to save the configuration after making changes by clicking the save button below"
407
  msgstr "No olvides guardar la configuración después de hacer cambios clickando en el botón \"Guardar\" de abajo"
408
 
409
+ #: ../admin/social_sharing.php:133
410
+ #: ../admin/social_sharing.php:441
411
  msgid "Shape"
412
  msgstr "Forma"
413
 
414
+ #: ../admin/social_sharing.php:137
415
+ #: ../admin/social_sharing.php:445
416
  msgid "Round"
417
  msgstr "Redondeado"
418
 
419
+ #: ../admin/social_sharing.php:139
420
+ #: ../admin/social_sharing.php:447
421
  msgid "Square"
422
  msgstr "Cuadrado"
423
 
424
+ #: ../admin/social_sharing.php:141
425
+ #: ../admin/social_sharing.php:449
426
  msgid "Rectangle"
427
  msgstr "Rectángulo"
428
 
429
+ #: ../admin/social_sharing.php:148
430
+ #: ../admin/social_sharing.php:456
431
  msgid "Shape of the sharing icons"
432
  msgstr "Forma de los iconos de compartir"
433
 
434
+ #: ../admin/social_sharing.php:157
435
+ #: ../admin/social_sharing.php:465
436
  msgid "Size (in pixels)"
437
  msgstr "Tamaño (en pixels)"
438
 
439
+ #: ../admin/social_sharing.php:173
440
+ #: ../admin/social_sharing.php:481
441
  msgid "Size of the sharing icons"
442
  msgstr "Tamaño de los iconos de Compartir"
443
 
444
+ #: ../admin/social_sharing.php:183
445
+ #: ../admin/social_sharing.php:491
446
  msgid "Width (in pixels)"
447
  msgstr "Anchura (en pixels)"
448
 
449
+ #: ../admin/social_sharing.php:199
450
+ #: ../admin/social_sharing.php:507
451
  msgid "Width of the sharing icons"
452
  msgstr "Anchura de los iconos de Compartir"
453
 
454
+ #: ../admin/social_sharing.php:207
455
+ #: ../admin/social_sharing.php:515
456
  msgid "Height (in pixels)"
457
  msgstr "Altura (en pixels)"
458
 
459
+ #: ../admin/social_sharing.php:223
460
+ #: ../admin/social_sharing.php:531
461
  msgid "Height of the sharing icons"
462
  msgstr "Altura de los iconos de Compartir"
463
 
464
+ #: ../admin/social_sharing.php:233
465
+ #: ../admin/social_sharing.php:541
466
  msgid "Border radius (in pixels)"
467
  msgstr "Borde del radio (en pixels)"
468
 
469
+ #: ../admin/social_sharing.php:243
470
+ #: ../admin/social_sharing.php:551
471
  msgid "Specify a value for rounded corners. More the value, more rounded will the corners be. Leave empty for sharp corners."
472
  msgstr "Especifica un valor para las esquinas redondeadas. Cuanto más alto sea el valor, más redondeadas serán las esquinas. Déjalo vacío si prefieres las esquinas cuaadradas."
473
 
474
+ #: ../admin/social_sharing.php:252
475
+ #: ../admin/social_sharing.php:560
476
  msgid "Logo Color"
477
  msgstr "Color del Logo"
478
 
479
+ #: ../admin/social_sharing.php:256
480
+ #: ../admin/social_sharing.php:277
481
+ #: ../admin/social_sharing.php:297
482
+ #: ../admin/social_sharing.php:564
483
+ #: ../admin/social_sharing.php:585
484
+ #: ../admin/social_sharing.php:604
485
  msgid "Default"
486
  msgstr "Por defecto "
487
 
488
+ #: ../admin/social_sharing.php:258
489
+ #: ../admin/social_sharing.php:278
490
+ #: ../admin/social_sharing.php:302
491
+ #: ../admin/social_sharing.php:566
492
+ #: ../admin/social_sharing.php:586
493
+ #: ../admin/social_sharing.php:609
494
  msgid "On Hover"
495
  msgstr "Con el puntero encima "
496
 
497
+ #: ../admin/social_sharing.php:266
498
+ #: ../admin/social_sharing.php:574
499
  msgid "Specify the color or hex code (example #cc78e0) for the logo of icon. Leave empty for default. You can get the hex code of the required color from <a href=\"http://www.colorpicker.com/\" target=\"_blank\">this link</a>"
500
  msgstr "Especifica el color o código hexadecimal (por ejemplo #cc78e0) para el logo del icono. Déjalo vacío para que se aplique el valor por defecto. Puedes conseguir el código hexadecimal del color que desees en <a href=\"http://www.colorpicker.com/\" target=\"_blank\">este enlace</a>"
501
 
502
+ #: ../admin/social_sharing.php:274
503
+ #: ../admin/social_sharing.php:582
504
+ #: ../admin/social_sharing.php:1265
505
+ #: ../admin/like_buttons.php:399
506
  msgid "Background Color"
507
  msgstr "Color del fondo"
508
 
509
+ #: ../admin/social_sharing.php:285
510
+ #: ../admin/social_sharing.php:593
511
  msgid "Specify the color or hex code (example #cc78e0) for icon background. Save \"transparent\" for transparent background. Leave empty for default. You can get the hex code of the required color from <a href=\"http://www.colorpicker.com/\" target=\"_blank\">this link</a>"
512
  msgstr "Especifica el color o código hexadecimal (por ejemplo #cc78e0) para el fondo del icono. Selecciona \"transparente\" para que el fondo sea transparente. Déjalo vacío para que se aplique el valor por defecto. Puedes conseguir el código hexadecimal del color que desees en <a href=\"http://www.colorpicker.com/\" target=\"_blank\">este enlace</a>"
513
 
514
+ #: ../admin/social_sharing.php:293
515
+ #: ../admin/social_sharing.php:601
516
  msgid "Border"
517
  msgstr "Borde"
518
 
 
 
 
 
 
 
 
519
  #: ../admin/social_sharing.php:299
520
  #: ../admin/social_sharing.php:304
521
  #: ../admin/social_sharing.php:606
522
  #: ../admin/social_sharing.php:611
523
+ msgid "Border Width"
524
+ msgstr "Anchura del borde "
525
+
526
+ #: ../admin/social_sharing.php:300
527
+ #: ../admin/social_sharing.php:305
528
+ #: ../admin/social_sharing.php:607
529
+ #: ../admin/social_sharing.php:612
530
  msgid "Border Color"
531
  msgstr "Color del borde "
532
 
533
+ #: ../admin/social_sharing.php:312
534
+ #: ../admin/social_sharing.php:619
535
  msgid "Icon border"
536
  msgstr "Borde del icono"
537
 
538
+ #: ../admin/social_sharing.php:320
539
+ #: ../admin/social_sharing.php:627
540
  msgid "Counter Position"
541
  msgstr "Posición del Contador"
542
 
543
+ #: ../admin/social_sharing.php:320
544
+ #: ../admin/social_sharing.php:627
545
  msgid "(applies, if counter enabled)"
546
  msgstr "(aplicable si el contador está activo)"
547
 
548
+ #: ../admin/social_sharing.php:324
549
+ #: ../admin/social_sharing.php:631
550
+ #: ../admin/social_sharing.php:882
551
+ #: ../admin/social_sharing.php:1287
552
+ #: ../admin/like_buttons.php:172
553
+ #: ../admin/like_buttons.php:421
554
  msgid "Left"
555
  msgstr "Izquierda"
556
 
557
+ #: ../admin/social_sharing.php:326
558
+ #: ../admin/social_sharing.php:633
559
  msgid "Top"
560
  msgstr "Arriba"
561
 
562
+ #: ../admin/social_sharing.php:328
563
+ #: ../admin/social_sharing.php:635
564
+ #: ../admin/social_sharing.php:884
565
+ #: ../admin/social_sharing.php:1288
566
+ #: ../admin/like_buttons.php:174
567
+ #: ../admin/like_buttons.php:422
568
  msgid "Right"
569
  msgstr "Derecha"
570
 
571
+ #: ../admin/social_sharing.php:330
572
+ #: ../admin/social_sharing.php:637
573
  msgid "Bottom"
574
  msgstr "Abajo"
575
 
576
+ #: ../admin/social_sharing.php:332
577
+ #: ../admin/social_sharing.php:639
578
  msgid "Inner Left"
579
  msgstr "Izquierda Interior"
580
 
581
+ #: ../admin/social_sharing.php:334
582
+ #: ../admin/social_sharing.php:641
583
  msgid "Inner Top"
584
  msgstr "Arriba Interior"
585
 
586
+ #: ../admin/social_sharing.php:336
587
+ #: ../admin/social_sharing.php:643
588
  msgid "Inner Right"
589
  msgstr "Derecha Interior"
590
 
591
+ #: ../admin/social_sharing.php:338
592
+ #: ../admin/social_sharing.php:645
593
  msgid "Inner Bottom"
594
  msgstr "Abajo Interior"
595
 
596
+ #: ../admin/social_sharing.php:346
597
+ #: ../admin/social_sharing.php:653
598
  msgid "Position of share counter"
599
  msgstr "Posición del contador de veces compartidas"
600
 
601
+ #: ../admin/social_sharing.php:356
602
  msgid "Floating interface theme"
603
  msgstr "Tema de la Interfaz Flotante"
604
 
605
+ #: ../admin/social_sharing.php:669
606
  msgid "Standard Sharing Interface Options"
607
  msgstr "Opciones de la interfaz estándar de Compartir"
608
 
609
+ #: ../admin/social_sharing.php:675
610
  msgid "Enable Standard sharing interface"
611
  msgstr "Permitir Interfaz Estándar de Compartir"
612
 
613
+ #: ../admin/social_sharing.php:685
614
  msgid "Master control to enable standard sharing"
615
  msgstr "Control Maestro para permitir Compartir estándar"
616
 
617
+ #: ../admin/social_sharing.php:695
618
+ #: ../admin/social_sharing.php:1113
619
+ #: ../admin/like_buttons.php:75
620
+ #: ../admin/like_buttons.php:325
621
  msgid "Target Url"
622
  msgstr "Target Url"
623
 
624
+ #: ../admin/social_sharing.php:699
625
+ #: ../admin/social_sharing.php:1117
626
+ #: ../admin/like_buttons.php:79
627
+ #: ../admin/like_buttons.php:329
628
  msgid "Url of the webpage where icons are located (default)"
629
  msgstr "Url de la página web donde los iconos están localizados (por defecto)"
630
 
631
+ #: ../admin/social_sharing.php:701
632
+ #: ../admin/social_sharing.php:1119
633
+ #: ../admin/like_buttons.php:81
634
+ #: ../admin/like_buttons.php:331
635
  msgid "Url of the homepage of your website"
636
  msgstr "Url de la página de inicio de tu sitio web"
637
 
638
+ #: ../admin/social_sharing.php:703
639
+ #: ../admin/social_sharing.php:1121
640
+ #: ../admin/like_buttons.php:83
641
+ #: ../admin/like_buttons.php:333
642
  msgid "Custom url"
643
  msgstr "Url personalizada"
644
 
645
+ #: ../admin/social_sharing.php:710
646
+ #: ../admin/social_sharing.php:1128
647
  msgid "Url to share"
648
  msgstr "Url para compartir"
649
 
650
+ #: ../admin/social_sharing.php:718
651
+ #: ../admin/social_login.php:379
652
+ #: ../admin/like_buttons.php:98
653
  msgid "Title"
654
  msgstr "Título"
655
 
656
+ #: ../admin/social_sharing.php:728
657
  msgid "The text to display above the sharing interface"
658
  msgstr "El texto para mostrar sobre la interfaz de Compartir"
659
 
660
+ #: ../admin/social_sharing.php:746
661
+ #: ../admin/social_sharing.php:1137
662
  #, fuzzy
663
  msgid "Instagram username"
664
  msgstr "Instagram"
665
 
666
+ #: ../admin/social_sharing.php:756
667
+ #: ../admin/social_sharing.php:1147
668
  msgid "Username of the Instagram account you want to redirect users to, on clicking the icon"
669
  msgstr ""
670
 
671
+ #: ../admin/social_sharing.php:769
672
+ #: ../admin/social_sharing.php:1156
673
  msgid "Rearrange icons"
674
  msgstr "Reorganizar iconos"
675
 
676
+ #: ../admin/social_sharing.php:828
677
+ #: ../admin/social_sharing.php:1215
678
  msgid "Drag the icons to rearrange in desired order"
679
  msgstr "Arrastra los iconos para reorganizarlos en el orden deseado"
680
 
681
+ #: ../admin/social_sharing.php:836
682
+ #: ../admin/social_sharing.php:1223
683
  msgid "Select Sharing Services"
684
  msgstr "Selecciona los Servicios para Compartir"
685
 
686
+ #: ../admin/social_sharing.php:843
687
+ #: ../admin/social_sharing.php:1230
688
  msgid "Select sharing services to show in social share bar"
689
  msgstr "Selecciona los servicios para compartir en la barra de Compartir en redes sociales"
690
 
691
+ #: ../admin/social_sharing.php:878
692
+ #: ../admin/social_sharing.php:1283
693
+ #: ../admin/like_buttons.php:168
694
+ #: ../admin/like_buttons.php:417
695
  msgid "Horizontal alignment"
696
  msgstr "Alineación horizontal"
697
 
698
+ #: ../admin/social_sharing.php:883
699
+ #: ../admin/like_buttons.php:173
700
  msgid "Center"
701
  msgstr "Centrar"
702
 
703
+ #: ../admin/social_sharing.php:892
704
+ #: ../admin/social_sharing.php:1296
705
  msgid "Horizontal alignment of the sharing interface"
706
  msgstr "Alineación horizontal de la interfaz de Compartir"
707
 
708
+ #: ../admin/social_sharing.php:900
709
+ #: ../admin/like_buttons.php:190
710
  msgid "Position with respect to content"
711
  msgstr "Posición respecto al contenido"
712
 
713
+ #: ../admin/social_sharing.php:904
714
+ #: ../admin/like_buttons.php:194
715
  msgid "Top of the content"
716
  msgstr "Encima del contenido"
717
 
718
+ #: ../admin/social_sharing.php:906
719
+ #: ../admin/like_buttons.php:196
720
  msgid "Bottom of the content"
721
  msgstr "Debajo del contenido"
722
 
723
+ #: ../admin/social_sharing.php:913
724
  msgid "Specify position of the sharing interface with respect to the content"
725
  msgstr "Especifica la posición de la interfaz de Compartir respecto al contenido"
726
 
727
+ #: ../admin/social_sharing.php:921
728
+ #: ../admin/social_sharing.php:1362
729
  msgid "Placement"
730
  msgstr "Ubicación"
731
 
732
+ #: ../admin/social_sharing.php:925
733
+ #: ../admin/social_sharing.php:1366
734
+ #: ../admin/social_login.php:678
735
+ #: ../admin/social_login.php:708
736
+ #: ../admin/like_buttons.php:215
737
+ #: ../admin/like_buttons.php:500
738
  msgid "Homepage"
739
  msgstr "Página de Inicio"
740
 
741
+ #: ../admin/social_sharing.php:927
742
+ #: ../admin/social_sharing.php:1368
743
+ #: ../admin/like_buttons.php:217
744
+ #: ../admin/like_buttons.php:502
745
  msgid "Posts"
746
  msgstr "Entradas"
747
 
748
+ #: ../admin/social_sharing.php:929
749
+ #: ../admin/social_sharing.php:1370
750
+ #: ../admin/like_buttons.php:219
751
+ #: ../admin/like_buttons.php:504
752
  msgid "Pages"
753
  msgstr "Páginas"
754
 
755
+ #: ../admin/social_sharing.php:931
756
+ #: ../admin/social_sharing.php:1372
757
+ #: ../admin/like_buttons.php:221
758
+ #: ../admin/like_buttons.php:506
759
  #, fuzzy
760
  msgid "Excerpts and Posts page"
761
  msgstr "Extractos (en la Página de Inicio)"
762
 
763
+ #: ../admin/social_sharing.php:933
764
+ #: ../admin/social_sharing.php:1374
765
+ #: ../admin/like_buttons.php:223
766
+ #: ../admin/like_buttons.php:508
767
  msgid "Category Archives"
768
  msgstr "Archivos por Categoría"
769
 
770
+ #: ../admin/social_sharing.php:935
771
+ #: ../admin/social_sharing.php:1376
772
+ #: ../admin/like_buttons.php:225
773
+ #: ../admin/like_buttons.php:510
774
  msgid "Archive Pages (Category, Tag, Author or Date based pages)"
775
  msgstr "Páginas de Archivo (Categoría, Etiqueta, Autor o páginas clasificadas por Fecha)"
776
 
777
+ #: ../admin/social_sharing.php:951
778
+ #: ../admin/like_buttons.php:241
779
  msgid "BuddyPress activity"
780
  msgstr "Actividad en BuddyPress"
781
 
782
+ #: ../admin/social_sharing.php:953
783
+ #: ../admin/like_buttons.php:244
784
  msgid "BuddyPress group (only at top of content)"
785
  msgstr "Grupo BuddyPress (sólo encima del contenido)"
786
 
787
+ #: ../admin/social_sharing.php:959
788
+ #: ../admin/social_sharing.php:1398
789
+ #: ../admin/like_buttons.php:251
790
+ #: ../admin/like_buttons.php:531
791
  msgid "BBPress forum"
792
  msgstr "Foro BBPress"
793
 
794
+ #: ../admin/social_sharing.php:962
795
+ #: ../admin/social_sharing.php:1401
796
+ #: ../admin/like_buttons.php:254
797
+ #: ../admin/like_buttons.php:534
798
  msgid "BBPress topic"
799
  msgstr "Tema BBPress"
800
 
801
+ #: ../admin/social_sharing.php:965
802
+ #: ../admin/like_buttons.php:257
803
  msgid "BBPress reply"
804
  msgstr "Respuesta BBPress"
805
 
806
+ #: ../admin/social_sharing.php:972
807
+ #: ../admin/like_buttons.php:264
808
  msgid "After individual product at WooCommerce Shop page"
809
  msgstr "Después de cada producto individual en página de Tienda WooCommerce"
810
 
811
+ #: ../admin/social_sharing.php:975
812
+ #: ../admin/like_buttons.php:267
813
  msgid "WooCommerce Product Page"
814
  msgstr "Página de Producto WooCommerce"
815
 
816
+ #: ../admin/social_sharing.php:978
817
+ #: ../admin/like_buttons.php:270
818
  msgid "WooCommerce Thankyou Page"
819
  msgstr "Página de Agradecimiento WooCommerce"
820
 
821
+ #: ../admin/social_sharing.php:989
822
  msgid "Specify the pages where you want to enable Sharing interface"
823
  msgstr "Especifica las páginas donde tú quieres permitir la interfaz de Compartir"
824
 
825
+ #: ../admin/social_sharing.php:997
826
+ #: ../admin/social_sharing.php:1419
827
  msgid "Show share counts"
828
  msgstr "Mostrar contadores de las veces compartidas"
829
 
830
+ #: ../admin/social_sharing.php:1002
831
+ #: ../admin/social_sharing.php:1424
832
  #, fuzzy
833
  msgid "Share counts are supported for Facebook, Twitter, Linkedin, GooglePlus, Delicious, Buffer, Reddit, Pinterest, Stumbleupon and Vkontakte"
834
  msgstr "Los contadores oficiales de las veces compartidas son soportados por Facebook, Linkedin, GooglePlus, Delicious, Buffer, Reddit, Pinterest, Stumbleupon y Vkontakte"
835
 
836
+ #: ../admin/social_sharing.php:1019
837
+ #: ../admin/social_sharing.php:1432
838
  #, php-format
839
  msgid "Use <a href=\"%s\" target=\"_blank\">NewShareCounts</a> to show Twitter share counts"
840
  msgstr "Usa <a href=\"%s\" target=\"_blank\">Nuevos Contadores de Compartir</a> para mostrar el número de veces compartidas en Twitter"
841
 
842
+ #: ../admin/social_sharing.php:1021
843
+ #: ../admin/social_sharing.php:1434
844
  #, php-format
845
  msgid "For this to work, you have to enter your website url %s and sign in using Twitter at <a href=\"%s\" target=\"_blank\">their website</a>"
846
  msgstr "Para que esto funcione, tienes que introducir la url de tu sitio web %s e ingresar usando Twitter en <a href=\"%s\" target=\"_blank\">su sitio web</a>"
847
 
848
+ #: ../admin/social_sharing.php:1023
849
+ #: ../admin/social_sharing.php:1436
850
  #, php-format
851
  msgid "Use <a href=\"%s\" target=\"_blank\">OpenShareCount</a> to show Twitter share counts"
852
  msgstr "Usa <a href=\"%s\" target=\"_blank\">Abrir Contador de Compartir</a> para mostrar el número de veces compartidas en Twitter"
853
 
854
+ #: ../admin/social_sharing.php:1025
855
+ #: ../admin/social_sharing.php:1438
856
  #, php-format
857
  msgid "For this to work, you have to sign up and register your website url %s at <a href=\"%s\" target=\"_blank\">their website</a>"
858
  msgstr "Para que esto funcione, tienes que firmar y registrar la url de tu sitio web %s en <a href=\"%s\" target=\"_blank\">su sitio web </a>"
859
 
860
+ #: ../admin/social_sharing.php:1032
861
+ #: ../admin/social_sharing.php:1445
862
  msgid "If enabled, share counts are displayed above sharing icons."
863
  msgstr "Si se activa, los contadores de veces compartidas aparecerán encima de los iconos de compartir."
864
 
865
+ #: ../admin/social_sharing.php:1041
866
+ #: ../admin/social_sharing.php:1454
867
  msgid "Show total shares"
868
  msgstr "Mostrar número total de veces compartidas"
869
 
870
+ #: ../admin/social_sharing.php:1051
871
+ #: ../admin/social_sharing.php:1464
872
  msgid "If enabled, total shares will be displayed with sharing icons"
873
  msgstr "Si se activa, los contadores de veces compartidas aparecerán con los iconos de compartir."
874
 
875
+ #: ../admin/social_sharing.php:1060
876
+ #: ../admin/social_sharing.php:1473
877
  msgid "Enable 'More' icon"
878
  msgstr "Permitir el icono 'Más'"
879
 
880
+ #: ../admin/social_sharing.php:1070
881
+ #: ../admin/social_sharing.php:1483
882
  msgid "If enabled, \"More\" icon will be displayed after selected sharing icons which shows additional sharing networks in popup"
883
  msgstr "Si se activa, el icono \"Más\" aparecerá después de los iconos de compartir seleccionados, y mostrará en un popup las redes adicionales para compartir"
884
 
885
+ #: ../admin/social_sharing.php:1087
886
  msgid "Floating Sharing Interface Options"
887
  msgstr "Opciones de la Interfaz Flotante de Compartir"
888
 
889
+ #: ../admin/social_sharing.php:1093
890
  msgid "Enable Floating sharing interface"
891
  msgstr "Permitir la Interfaz Flotante de Compartir"
892
 
893
+ #: ../admin/social_sharing.php:1103
894
  msgid "Master control to enable floating sharing widget"
895
  msgstr "Control maestro para permitir el widget flotante de compartir"
896
 
897
+ #: ../admin/social_sharing.php:1275
898
  msgid "Specify the color or hex code (example #cc78e0) for the background of vertical sharing bar. Leave empty for transparent. You can get the hex code of the required color from <a href=\"http://www.colorpicker.com/\" target=\"_blank\">this link</a>"
899
  msgstr "Especifica el color o código hexadecimal (por ejemplo #cc78e0) para el fondo de la barra vertical de compartir. Déjalo vacío si lo quieres transparente. Puedes conseguir el código hexadecimal del color que desees en <a href=\"http://www.colorpicker.com/\" target=\"_blank\">este enlace</a>"
900
 
901
+ #: ../admin/social_sharing.php:1305
902
+ #: ../admin/like_buttons.php:439
903
  msgid "Left offset"
904
  msgstr "Desplazamiento a la izquierda"
905
 
906
+ #: ../admin/social_sharing.php:1315
907
  msgid "Specify a number. Increase in number will shift sharing interface towards right and decrease will shift it towards left. Number can be negative too."
908
  msgstr "Especifica un número. Al aumentar el número la interfaz de compartir se desplazará hacia la derecha, mientras que al disminuirlo se desplazará hacia la izquierda. El número puede ser negativo también."
909
 
910
+ #: ../admin/social_sharing.php:1325
911
+ #: ../admin/like_buttons.php:459
912
  msgid "Right offset"
913
  msgstr "Desplazamiento a la derecha"
914
 
915
+ #: ../admin/social_sharing.php:1335
916
  msgid "Specify a number. Increase in number will shift sharing interface towards left and decrease will shift it towards right. Number can be negative too."
917
  msgstr "Especifica un número. Al aumentar el número la interfaz de compartir se desplazará hacia la izquierda, mientras que al disminuirlo se desplazará hacia la derecha. El número puede ser negativo también."
918
 
919
+ #: ../admin/social_sharing.php:1344
920
+ #: ../admin/like_buttons.php:478
921
  msgid "Top offset"
922
  msgstr "Desplazamiento hacia arriba"
923
 
924
+ #: ../admin/social_sharing.php:1354
925
  msgid "Specify a number. Increase in number will shift sharing interface towards bottom and decrease will shift it towards top."
926
  msgstr "Especifica un número. Al aumentar el número la interfaz de compartir se desplazará hacia abajo, mientras que al disminuirlo se desplazará hacia abajo."
927
 
928
+ #: ../admin/social_sharing.php:1390
929
+ #: ../admin/like_buttons.php:524
930
  msgid "BuddyPress group"
931
  msgstr "grupo BuddyPress"
932
 
933
+ #: ../admin/social_sharing.php:1411
934
  msgid "Specify the pages where you want to enable vertical Sharing interface"
935
  msgstr "Especifica las páginas donde quieres permitir la interfaz vertical de Compartir"
936
 
937
+ #: ../admin/social_sharing.php:1491
938
  msgid "Vertical floating bar responsiveness"
939
  msgstr "Barra flotante vertical adaptativa multidispositivo (responsiveness)"
940
 
941
+ #: ../admin/social_sharing.php:1494
942
  #, php-format
943
  msgid "Display vertical interface only when screen is wider than %s pixels"
944
  msgstr "Mostrar la interfaz vertical sólo cuando la pantalla es más ancha que %s pixels"
945
 
946
+ #: ../admin/social_sharing.php:1501
947
  msgid "Display vertical interface only when screen is wider than the width specified."
948
  msgstr "Mostrar la interfaz vertical sólo cuando la pantalla es más ancha que el ancho especificado."
949
 
950
+ #: ../admin/social_sharing.php:1509
951
  msgid "Horizontal floating bar responsiveness"
952
  msgstr "Barra flotante vertical adaptativa multidispositivo (responsiveness)"
953
 
954
+ #: ../admin/social_sharing.php:1512
955
  #, php-format
956
  msgid "Stick vertical floating interface horizontally at bottom only when screen is narrower than %s pixels"
957
  msgstr "Mantener siempre visible la interfaz vertical flotante horizontalmente en el fondo sólo cuando la pantalla sea más estrecha que %s pixels"
958
 
959
+ #: ../admin/social_sharing.php:1519
960
  msgid "Stick vertical floating interface horizontally at bottom only when screen is narrower than the width specified"
961
  msgstr "Mantener siempre visible la interfaz vertical flotante horizontalmente en el fondo sólo cuando la pantalla sea más estrecha que el ancho especificado"
962
 
963
+ #: ../admin/social_sharing.php:1529
964
  msgid "Horizontal floating bar position"
965
  msgstr "Posición de la barra flotante horizontal"
966
 
967
+ #: ../admin/social_sharing.php:1532
968
  #, php-format
969
  msgid "%s pixels from %s"
970
  msgstr "%s pixels de %s"
971
 
972
+ #: ../admin/social_sharing.php:1539
973
  msgid "Alignment of horizontal floating interface. Number can be negative too."
974
  msgstr "Alineación de la interfaz flotante horizontal, El número puede ser negativo también."
975
 
976
+ #: ../admin/social_sharing.php:1559
977
+ #: ../admin/like_buttons.php:581
978
  msgid "Url shortener"
979
  msgstr "Acortador de Url"
980
 
981
+ #: ../admin/social_sharing.php:1565
982
  msgid "Use shortlinks already installed"
983
  msgstr "Utiliza los shortlinks ya instalados"
984
 
985
+ #: ../admin/social_sharing.php:1575
986
  msgid "Uses default short url permalinks without using any additional plugin"
987
  msgstr ""
988
 
989
+ #: ../admin/social_sharing.php:1583
990
  msgid "Enable bit.ly url shortener for sharing"
991
  msgstr "Habilitar acortador de url bit.ly para compartir"
992
 
993
+ #: ../admin/social_sharing.php:1593
994
+ #: ../admin/like_buttons.php:615
995
  msgid "Master control to enable bit.ly url shortening for sharing"
996
  msgstr "Control maestro para permitir el acortamiento de URL bit.ly para compartir"
997
 
998
+ #: ../admin/social_sharing.php:1601
999
+ #, fuzzy
1000
  msgid "bit.ly Login"
1001
+ msgstr "Ingreso a través de redes sociales"
1002
 
1003
+ #: ../admin/social_sharing.php:1611
1004
  #, fuzzy, php-format
1005
  msgid "Login to your bit.ly account and navigate to <a href=\"%s\" target=\"_blank\">this link</a> to get bit.ly login"
1006
  msgstr "Ingresa a tu cuenta bit.ly y ve a <a href=\"%s\" target=\"_blank\">este enlace</a> para obtener tu nombre de usuario bit.ly"
1007
 
1008
+ #: ../admin/social_sharing.php:1620
1009
+ #: ../admin/like_buttons.php:642
1010
  msgid "bit.ly API Key"
1011
  msgstr "bit.ly API Key"
1012
 
1013
+ #: ../admin/social_sharing.php:1630
1014
+ #: ../admin/like_buttons.php:652
1015
  #, php-format
1016
  msgid "Login to your bit.ly account and navigate to <a href=\"%s\" target=\"_blank\">this link</a> to get your API key"
1017
  msgstr "Ingresa a tu cuenta bit.ly y ve a <a href=\"%s\" target=\"_blank\">este enlace</a> para obtener tu API key"
1018
 
1019
+ #: ../admin/social_sharing.php:1639
1020
+ #: ../admin/like_buttons.php:661
1021
  msgid "Clear Bitly Cache"
1022
  msgstr ""
1023
 
1024
+ #: ../admin/social_sharing.php:1643
1025
+ #: ../admin/like_buttons.php:665
1026
  msgid "ShortUrl cache cleared successfully."
1027
  msgstr "La caché de ShortUrl se ha vaciado con éxito."
1028
 
1029
+ #: ../admin/social_sharing.php:1650
1030
+ #: ../admin/like_buttons.php:672
1031
  msgid "Use this to delete short urls saved in database. Handy, if urls of your website have been changed but short urls are still being generated for old urls."
1032
  msgstr "Utiliza esta opción para eliminar las url cortas guardadas en la base de datos. Esto es práctico, si las url de tu sitio web han cambiado, pero las url cortas todavía se están generando para viejas url."
1033
 
1034
+ #: ../admin/social_sharing.php:1659
1035
  msgid "Share Count Cache"
1036
  msgstr ""
1037
 
1038
+ #: ../admin/social_sharing.php:1665
1039
  msgid "Refresh Share Count cache every"
1040
  msgstr ""
1041
 
1042
+ #: ../admin/social_sharing.php:1670
1043
  msgid "Second(s)"
1044
  msgstr ""
1045
 
1046
+ #: ../admin/social_sharing.php:1671
1047
  msgid "Minute(s)"
1048
  msgstr ""
1049
 
1050
+ #: ../admin/social_sharing.php:1672
1051
  msgid "Hour(s)"
1052
  msgstr ""
1053
 
1054
+ #: ../admin/social_sharing.php:1673
1055
  msgid "Day(s)"
1056
  msgstr ""
1057
 
1058
+ #: ../admin/social_sharing.php:1681
1059
  msgid "Frequent cache refreshing results in slower loading of pages with share counts enabled"
1060
  msgstr ""
1061
 
1062
+ #: ../admin/social_sharing.php:1689
1063
  msgid "Clear Share Counts Cache"
1064
  msgstr ""
1065
 
1066
+ #: ../admin/social_sharing.php:1693
1067
  #, fuzzy
1068
  msgid "Share Counts cache cleared successfully."
1069
  msgstr "La caché de ShortUrl se ha vaciado con éxito."
1070
 
1071
+ #: ../admin/social_sharing.php:1700
1072
  msgid "Use this to clear cached share counts"
1073
  msgstr ""
1074
 
1075
+ #: ../admin/social_sharing.php:1709
1076
+ #: ../admin/social_sharing.php:1715
1077
+ #: ../admin/social_commenting.php:312
1078
+ #: ../admin/like_buttons.php:681
1079
+ #: ../admin/like_buttons.php:687
1080
  msgid "Language"
1081
  msgstr "Idioma"
1082
 
1083
+ #: ../admin/social_sharing.php:1725
1084
  #, php-format
1085
  msgid "Enter the code of the language you want to use for like buttons. You can find the language codes at <a href=\"%s\" target=\"_blank\">this link</a>. Leave it empty for default language(English)"
1086
  msgstr "Introduce el código del idioma que deseas utilizar para los botones \"Me gusta\". Puedes encontrar los códigos de idioma en <a href=\"%s\" target=\"_blank\">este enlace</a>. Déjalo vacío para el idioma por defecto (Inglés)"
1087
 
1088
+ #: ../admin/social_sharing.php:1734
1089
  msgid "Username in sharing"
1090
  msgstr "Nombre de usuario en Compartir"
1091
 
1092
+ #: ../admin/social_sharing.php:1740
1093
  msgid "Twitter username (without @)"
1094
  msgstr "Nombre de usuario de Twitter (sin @)"
1095
 
1096
+ #: ../admin/social_sharing.php:1750
1097
+ #: ../admin/social_sharing.php:1769
1098
  msgid "Provided username will be appended after the content being shared as \"via @USERNAME\". Leave empty if you do not want any username in the content being shared."
1099
  msgstr "El nombre de usuario proporcionado se añadirá después de que el contenido sea comparte como \"via @USERNAME\". Déjalo vacío si no quieres ningún nombre de usuario en el contenido compartido."
1100
 
1101
+ #: ../admin/social_sharing.php:1759
1102
  msgid "Buffer username (without @)"
1103
  msgstr "Nombre de usuario de Buffer (sin @)"
1104
 
1105
+ #: ../admin/social_sharing.php:1778
1106
  msgid "AMP"
1107
  msgstr ""
1108
 
1109
+ #: ../admin/social_sharing.php:1784
1110
  #, fuzzy
1111
  msgid "Enable sharing on AMP pages"
1112
  msgstr "Permitir Página de Ingreso"
1113
 
1114
+ #: ../admin/social_sharing.php:1794
1115
  msgid "Enable this option to render sharing icons on AMP pages"
1116
  msgstr ""
1117
 
1118
+ #: ../admin/social_sharing.php:1823
1119
  msgid "Facebook Sharing Troubleshooter"
1120
  msgstr "Resolución de problemas al Compartir en Facebook"
1121
 
1122
+ #: ../admin/social_sharing.php:1828
1123
  #, fuzzy
1124
  msgid "If Facebook sharing is not working fine, click at the following link and enter the problematic url (where Facebook sharing is not working properly) of your website in the text field. Click \"Fetch New Scrape Information\" button."
1125
  msgstr "Si el contenido no se está compartiendo correctamente en Facebook, haz click en el siguiente enlace e introduce la url problemática de tu sitio web (la que Facebook no está compartiendo correctamente) en el campo de texto:"
1126
 
1127
+ #: ../admin/social_sharing.php:1845
1128
  msgid "Why is sharer not showing the correct image, title and other meta tags content?"
1129
  msgstr ""
1130
 
1131
+ #: ../admin/social_sharing.php:1846
1132
  msgid "How can I show share counts of my website rather than of individual pages/posts?"
1133
  msgstr "¿Cómo puedo mostrar los contadores de veces compartidas de mi sitio web en lugar de páginas individuales o entradas?"
1134
 
1135
+ #: ../admin/social_sharing.php:1847
1136
  msgid "How can I disable sharing on particular page/post?"
1137
  msgstr "¿Cómo puedo desactivar los botones de Compartir en una página individual o entrada?"
1138
 
1139
+ #: ../admin/social_sharing.php:1848
1140
  msgid "How can I specify minimum sharing count for sharing networks?"
1141
  msgstr "¿Cómo puedo especificar el número mínimo de veces compartidas para las redes sociales?"
1142
 
1143
+ #: ../admin/social_sharing.php:1849
1144
  msgid "How to share specific page?"
1145
  msgstr "¿Cómo compartir una página específica?"
1146
 
1147
+ #: ../admin/social_sharing.php:1850
1148
  msgid "How to integrate Google Analytics with sharing?"
1149
  msgstr "¿Cómo integrar Google Analytics con Compartir?"
1150
 
1151
+ #: ../admin/social_sharing.php:1851
1152
  msgid "How to customize the look of total share counts?"
1153
  msgstr "¿Cómo personalizar el aspecto de los contadores totales de veces compartidas?"
1154
 
1155
+ #: ../admin/social_sharing.php:1852
1156
  msgid "How to customize the look of individual share counts?"
1157
  msgstr "¿Cómo personalizar el aspecto de los contadores individuales de veces compartidas?"
1158
 
1159
+ #: ../admin/social_sharing.php:1853
1160
  msgid "How to show Whatsapp icon only on mobile devices?"
1161
  msgstr "¿Cómo mostrar el icono de WhatsApp sólo en dispositivos móviles?"
1162
 
1163
+ #: ../admin/social_sharing.php:1854
1164
  msgid "How to hide arrow after floating sharing bar?"
1165
  msgstr ""
1166
 
1167
+ #: ../admin/social_sharing.php:1855
1168
  msgid "Why are Share Counts Not Updating?"
1169
  msgstr ""
1170
 
1171
+ #: ../admin/social_sharing.php:1856
1172
+ #: ../admin/like_buttons.php:772
1173
  msgid "Why is there so much space between like buttons?"
1174
  msgstr ""
1175
 
1176
+ #: ../admin/social_sharing.php:1857
1177
+ #: ../admin/like_buttons.php:773
1178
  msgid "Why are floating sharing/like buttons not appearing at homepage?"
1179
  msgstr ""
1180
 
1191
  msgstr "Comentarios en redes sociales"
1192
 
1193
  #: ../admin/social_commenting.php:35
1194
+ #: ../admin/social_commenting.php:442
1195
  msgid "Shortcode"
1196
  msgstr "Shortcode"
1197
 
1198
+ #: ../admin/social_commenting.php:49
1199
  msgid "Order of tabs in commenting interface"
1200
  msgstr "Orden de pestañas en la interfaz de comentarios"
1201
 
1202
+ #: ../admin/social_commenting.php:59
1203
  msgid "Order of the tabs shown in social commenting interface. Defaults to wordpress,facebook,googleplus,disqus"
1204
  msgstr "Orden de las pestañas mostradas en la interfaz de comentarios en redes sociales. Por defecto es: wordpress, facebook, google plus, disqus"
1205
 
1206
+ #: ../admin/social_commenting.php:67
1207
  msgid "Comment area label"
1208
  msgstr "Etiqueta del área de comentarios"
1209
 
1210
+ #: ../admin/social_commenting.php:77
1211
  msgid "Label for comment area"
1212
  msgstr "Etiqueta para el área de comentarios"
1213
 
1214
+ #: ../admin/social_commenting.php:90
1215
  msgid "Enable Social Commenting at"
1216
  msgstr "Permitir Comentarios Sociales en"
1217
 
1218
+ #: ../admin/social_commenting.php:109
1219
  msgid "Specify the page/post groups where you want to enable Social Commenting"
1220
  msgstr "Especifica los grupos de páginas/entradas donde quieres permitir Comentarios Sociales"
1221
 
1222
+ #: ../admin/social_commenting.php:120
1223
  msgid "HTML ID of comment form container"
1224
  msgstr "HTML ID del contenedor del formulario de comentario"
1225
 
1226
+ #: ../admin/social_commenting.php:130
1227
  msgid "HTML ID of container element of the default comment form at front end. Leave empty for default ID - \"respond\". You need to specify it if default comment form is appearing and Social Commenting is not getting enabled at front-end of your website."
1228
  msgstr "HTML ID del elemento contenedor del formulario de comentario por defecto en la vista de usuario del sitio web. Déjalo vacío para el ID por defecto - \"responder\". Es necesario especificar si el formulario de comentarios por defecto se muestra y si los Comentarios Sociales no están permitidos en la vista del usuario de tu sitio web."
1229
 
1230
+ #: ../admin/social_commenting.php:140
1231
  msgid "Labels"
1232
  msgstr "Etiquetas"
1233
 
1234
+ #: ../admin/social_commenting.php:145
1235
  msgid "Label for WordPress Commenting tab"
1236
  msgstr "Etiqueta para la pestaña de Comentarios de WordPress"
1237
 
1238
+ #: ../admin/social_commenting.php:154
1239
  msgid "Label for Facebook Commenting tab"
1240
  msgstr "Etiqueta para la pestaña de Comentarios de Facebook"
1241
 
1242
+ #: ../admin/social_commenting.php:163
1243
  msgid "Label for G+ Commenting tab"
1244
  msgstr "Etiqueta para la pestaña de Comentarios de G+"
1245
 
1246
+ #: ../admin/social_commenting.php:172
1247
  msgid "Label for Disqus Commenting tab"
1248
  msgstr "Etiqueta para la pestaña de Comentarios de Disqus"
1249
 
1250
+ #: ../admin/social_commenting.php:183
1251
  msgid "Facebook Commenting Options"
1252
  msgstr "Opciones de Comentarios de Facebook"
1253
 
1254
+ #: ../admin/social_commenting.php:189
1255
  msgid "Enable Facebook Comments notification and moderation"
1256
  msgstr "Permitir la notificación y moderación de Comentarios de Facebook"
1257
 
1258
+ #: ../admin/social_commenting.php:197
1259
+ #: ../admin/social_commenting.php:207
1260
  msgid "Enable Facebook Commenting"
1261
  msgstr "Permitir Comentarios de Facebook"
1262
 
1263
+ #: ../admin/social_commenting.php:215
1264
+ #: ../admin/social_commenting.php:373
1265
  msgid "Url to comment on"
1266
  msgstr "Url para comentar"
1267
 
1268
+ #: ../admin/social_commenting.php:225
1269
  msgid "The absolute URL that comments posted will be permanently associated with. Stories on Facebook about comments posted, will link to this URL.<br/>If left empty <strong>(Recommended)</strong>, url of the webpage will be used at which commenting is enabled."
1270
  msgstr "Los comentarios se asociarán de manera permanente con la URL absoluta donde son publicados. Las Historias en Facebook sobre comentarios publicados se vincularán a esta URL.<br/>Si se deja vacía <strong>(Recomendado)</ strong>, se utilizará la url de la página web en la que los comentarios están activos."
1271
 
1272
+ #: ../admin/social_commenting.php:233
1273
+ #: ../admin/social_commenting.php:355
1274
  msgid "Width"
1275
  msgstr "Ancho"
1276
 
1277
+ #: ../admin/social_commenting.php:243
1278
  msgid "Leave empty to auto-adjust the width. The width (in pixels) of the Comments block."
1279
  msgstr "Dejar en blanco para que el ancho se ajuste de manera automática. El ancho (en píxeles) del Bloque de Comentarios."
1280
 
1281
+ #: ../admin/social_commenting.php:251
1282
  msgid "Color Scheme"
1283
  msgstr "Esquema de Color"
1284
 
1285
+ #: ../admin/social_commenting.php:255
1286
  msgid "Light"
1287
  msgstr "Claro"
1288
 
1289
+ #: ../admin/social_commenting.php:256
1290
  msgid "Dark"
1291
  msgstr "Oscuro"
1292
 
1293
+ #: ../admin/social_commenting.php:264
1294
  msgid "The color scheme used by the plugin. Can be \"light\" or \"dark\"."
1295
  msgstr "El esquema de color utilizado por el plugin. Puede ser \"claro\" o \"oscuro\"."
1296
 
1297
+ #: ../admin/social_commenting.php:272
1298
  msgid "Number of comments"
1299
  msgstr "Número de comentarios"
1300
 
1301
+ #: ../admin/social_commenting.php:282
1302
  msgid "The number of comments to show by default. The minimum value is 1. Defaults to 10"
1303
  msgstr "El número de comentarios que se mostrará de forma predeterminada. El valor mínimo es 1. El valor predeterminado es 10"
1304
 
1305
+ #: ../admin/social_commenting.php:290
1306
  msgid "Order by"
1307
  msgstr "Ordenar por"
1308
 
1309
+ #: ../admin/social_commenting.php:294
1310
  msgid "Social"
1311
  msgstr "Social"
1312
 
1313
+ #: ../admin/social_commenting.php:295
1314
  msgid "Reverse Time"
1315
  msgstr "Invertir Fecha"
1316
 
1317
+ #: ../admin/social_commenting.php:296
1318
  msgid "Time"
1319
  msgstr "Fecha"
1320
 
1321
+ #: ../admin/social_commenting.php:304
1322
  msgid "The order to use when displaying comments."
1323
  msgstr "El orden para usar cuando se muestren los comentarios."
1324
 
1325
+ #: ../admin/social_commenting.php:322
1326
  #, php-format
1327
  msgid "Enter the code of the language you want to use to display commenting. You can find the language codes at <a href=\"%s\" target=\"_blank\">this link</a>. Leave it empty for default language(English)"
1328
  msgstr "Introduce el código del idioma que deseas utilizar para mostrar los comentarios. Puedes encontrar los códigos de idioma en <a href=\"%s\" target=\"_blank\">este enlace</a>. Déjalo vacío para el idioma por defecto (Inglés)"
1329
 
1330
+ #: ../admin/social_commenting.php:331
1331
  msgid "Google Plus Commenting Options"
1332
  msgstr "Opciones de Comentarios de Google Plus"
1333
 
1334
+ #: ../admin/social_commenting.php:337
1335
+ #: ../admin/social_commenting.php:347
1336
  msgid "Enable Google Plus Commenting"
1337
  msgstr "Permitir Comentarios de Google Plus"
1338
 
1339
+ #: ../admin/social_commenting.php:365
1340
  msgid "Width of GooglePlus Commenting interface. Leave empty for auto adjust"
1341
  msgstr "Ancho de la interfaz de los Comentarios de Google Plus. Déjalo vacío para que se ajuste automáticamente."
1342
 
1343
+ #: ../admin/social_commenting.php:383
1344
  msgid "The absolute URL that comments posted will be permanently associated with. Stories on Google Plus about comments posted, will link to this URL.<br/>If left empty <strong>(Recommended)</strong>, url of the webpage will be used at which commenting is enabled."
1345
  msgstr "Los comentarios se asociarán de manera permanente con la URL absoluta donde son publicados. Las Historias en Google Plus sobre comentarios publicados se vincularán a esta URL.<br/>Si se deja vacía <strong>(Recomendado)</ strong>, se utilizará la url de la página web en la que los comentarios están activos."
1346
 
1347
+ #: ../admin/social_commenting.php:392
1348
  msgid "Disqus Commenting Options"
1349
  msgstr "Opciones de Comentarios de Disqus"
1350
 
1351
+ #: ../admin/social_commenting.php:398
1352
+ #: ../admin/social_commenting.php:408
1353
  msgid "Enable Disqus Commenting"
1354
  msgstr "Permitir Comentarios de Disqus"
1355
 
1356
+ #: ../admin/social_commenting.php:416
1357
  msgid "Disqus Shortname"
1358
  msgstr "Shortname Disqus"
1359
 
1360
+ #: ../admin/social_commenting.php:426
1361
  msgid "<strong>Required to use Disqus commenting.</strong> For more info on shortname, visit following link."
1362
  msgstr "<strong>Necesario para utilizar los Comentarios de Disqus.</ strong> Para obtener más información sobre el shortname, visita el siguiente enlace."
1363
 
1364
+ #: ../admin/social_commenting.php:444
1365
  msgid "Social Commenting Shortcode"
1366
  msgstr "Shortcode de Comentarios Sociales"
1367
 
1368
+ #: ../admin/social_commenting.php:457
1369
  msgid "How can I disable Social Commenting at individual page/post?"
1370
  msgstr "¿Cómo puedo desactivar los Comentarios Sociales en páginas individuales o entradas?"
1371
 
1372
+ #: ../admin/social_commenting.php:458
1373
  msgid "How to disable default comment form from Social Commenting?"
1374
  msgstr "¿Cómo desactivar el formulario de comentarios por defecto de los Comentarios Sociales?"
1375
 
1382
  msgstr "Control Maestro para el Ingreso a través de redes sociales. Debe estar activado para permitir esta funcionalidad"
1383
 
1384
  #: ../admin/social_login.php:35
1385
+ #: ../admin/social_login.php:47
1386
  msgid "Basic Configuration"
1387
  msgstr "Configuración básica"
1388
 
1392
  msgstr "Configuración básica"
1393
 
1394
  #: ../admin/social_login.php:38
1395
+ #: ../admin/social_login.php:834
1396
  msgid "XProfile Integration"
1397
  msgstr ""
1398
 
1399
+ #: ../admin/social_login.php:54
1400
  msgid "Disable user registration via Social Login"
1401
  msgstr "Desactivar el registro de usuario mediante redes sociales"
1402
 
1403
+ #: ../admin/social_login.php:64
1404
  msgid "After enabling this option, new users will not be able to login through social login. Only existing users will be able to social login."
1405
  msgstr "Después de activar esta opción, los nuevos usuarios no podrán acceder a través de las redes sociales. Sólo los usuarios ya existentes podrán hacerlo."
1406
 
1407
+ #: ../admin/social_login.php:73
1408
  msgid "Redirection url"
1409
  msgstr "Redirección de la url"
1410
 
1411
+ #: ../admin/social_login.php:83
1412
  msgid "User will be redirected to this page after unsuccessful registration attempt via Social Login. You can specify the url of registration form or of a page showing message regarding disabled registration through Social Login."
1413
  msgstr "El usuario será redirigido a esta página después de un intento de registro fallido a través de su contraseña de una red social. Puedes especificar la url del formulario de registro o de una página que muestre un mensaje advirtiendo que el registro a través de redes sociales está desactivado."
1414
 
1415
+ #: ../admin/social_login.php:92
1416
  msgid "Select providers"
1417
  msgstr "Seleccionar redes sociales"
1418
 
1419
+ #: ../admin/social_login.php:97
1420
  msgid "Facebook"
1421
  msgstr "Facebook"
1422
 
1423
+ #: ../admin/social_login.php:101
1424
  msgid "Twitter"
1425
+ msgstr "Twitter"
1426
 
1427
+ #: ../admin/social_login.php:105
1428
  msgid "LinkedIn"
1429
  msgstr "LinkedIn"
1430
 
1431
+ #: ../admin/social_login.php:109
1432
  msgid "Google+"
1433
  msgstr "Google+"
1434
 
1435
+ #: ../admin/social_login.php:113
1436
  msgid "Vkontakte"
1437
  msgstr "Vkontakte"
1438
 
1439
+ #: ../admin/social_login.php:117
1440
  msgid "Instagram"
1441
  msgstr "Instagram"
1442
 
1443
+ #: ../admin/social_login.php:121
1444
  msgid "Xing"
1445
  msgstr "Xing"
1446
 
1447
+ #: ../admin/social_login.php:125
1448
  msgid "Steam"
1449
  msgstr ""
1450
 
1451
+ #: ../admin/social_login.php:130
1452
  #, fuzzy
1453
  msgid "Twitch"
1454
+ msgstr "Twitter"
1455
 
1456
+ #: ../admin/social_login.php:138
1457
  msgid "Select Social ID provider to enable in Social Login"
1458
  msgstr "Seleccionar un proveedor de Social ID para permitir el ingreso a través de redes sociales"
1459
 
1460
+ #: ../admin/social_login.php:146
1461
  msgid "Facebook App ID"
1462
  msgstr "Facebook App ID"
1463
 
1464
+ #: ../admin/social_login.php:156
1465
  #, php-format
1466
  msgid "Required for Facebook Social Login to work. Please follow the documentation at <a href=\"%s\" target=\"_blank\">this link</a> to get Facebook App ID"
1467
  msgstr "Requerido para que funcione el ingreso a través de Facebook. Por favor, sigue la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> para conseguir tu Facebook App ID"
1468
 
1469
+ #: ../admin/social_login.php:158
1470
  msgid "Paste following url in <strong>Site URL</strong> option at the link mentioned"
1471
  msgstr "Pega la siguiente url en la opción <strong>Site URL</ strong> en el enlace mencionado"
1472
 
1473
+ #: ../admin/social_login.php:168
1474
  msgid "Twitter API Key"
1475
  msgstr "Twitter API Key"
1476
 
1477
+ #: ../admin/social_login.php:178
1478
  #, php-format
1479
  msgid "Required for Twitter Social Login to work. Please follow the documentation at <a href=\"%s\" target=\"_blank\">this link</a> to get Twitter API Key"
1480
  msgstr "Requerido para que funcione el ingreso a través de Twitter. Por favor, sigue la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> para conseguir tu Twitter Key"
1481
 
1482
+ #: ../admin/social_login.php:180
1483
+ #: ../admin/social_login.php:202
1484
  msgid "Paste following url in <strong>Website</strong> and <strong>Callback URL</strong> options at the link mentioned"
1485
  msgstr "Pega la siguiente url en las opciones <strong>Website</ strong> y <strong>Callback URL</strong> en el enlace mencionado"
1486
 
1487
+ #: ../admin/social_login.php:190
1488
  msgid "Twitter API Secret"
1489
  msgstr "Twitter API Secret"
1490
 
1491
+ #: ../admin/social_login.php:200
1492
  #, php-format
1493
  msgid "Required for Twitter Social Login to work. Please follow the documentation at <a href=\"%s\" target=\"_blank\">this link</a> to get Twitter API Secret"
1494
  msgstr "Requerido para que funcione el ingreso a través de Twitter. Por favor, sigue la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> para conseguir tu Twitter API Secret"
1495
 
1496
+ #: ../admin/social_login.php:212
1497
  msgid "LinkedIn API Key"
1498
  msgstr "LinkedIn API Key"
1499
 
1500
+ #: ../admin/social_login.php:222
1501
  #, php-format
1502
  msgid "Required for LinkedIn Social Login to work. Please follow the documentation at <a href=\"%s\" target=\"_blank\">this link</a> to get LinkedIn API Key"
1503
  msgstr "Requerido para que funcione el ingreso a través de LinkedIn. Por favor, sigue la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> para conseguir tu LinkedIn API Key"
1504
 
1505
+ #: ../admin/social_login.php:224
1506
+ #: ../admin/social_login.php:290
1507
  msgid "Paste following url in <strong>Website URL</strong> option at the link mentioned"
1508
  msgstr "Pega la siguiente url en la opción <strong>Website URL</ strong> en el enlace mencionado"
1509
 
1510
+ #: ../admin/social_login.php:234
1511
  msgid "Google+ Client ID"
1512
  msgstr "Google+ Client ID"
1513
 
1514
+ #: ../admin/social_login.php:244
1515
  #, php-format
1516
  msgid "Required for GooglePlus Social Login to work. Please follow the documentation at <a href=\"%s\" target=\"_blank\">this link</a> to get GooglePlus Client ID"
1517
  msgstr "Requerido para que funcione el ingreso a través de GooglePlus. Por favor, sigue la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> para conseguir tu GooglePlus Client ID"
1518
 
1519
+ #: ../admin/social_login.php:246
1520
  msgid "Paste following url in <strong>AUTHORIZED JAVASCRIPT ORIGINS</strong> and <strong>AUTHORIZED REDIRECT URI</strong> options at the link mentioned"
1521
  msgstr "Pega la siguiente url en las opciones <strong>AUTHORIZED JAVASCRIPT ORIGINS</ strong> y <strong>AUTHORIZED REDIRECT URI</strong> en el enlace mencionado"
1522
 
1523
+ #: ../admin/social_login.php:256
1524
  msgid "Vkontakte Application ID"
1525
  msgstr "Vkontakte Application ID"
1526
 
1527
+ #: ../admin/social_login.php:266
1528
  #, php-format
1529
  msgid "Required for Vkontakte Social Login to work. Please follow the documentation at <a href=\"%s\" target=\"_blank\">this link</a> to get Vkontakte Application ID"
1530
  msgstr "Requerido para que funcione el ingreso a través de Vkontakte. Por favor, sigue la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> para conseguir tu Vkontakte Application ID"
1531
 
1532
+ #: ../admin/social_login.php:268
1533
  msgid "Paste following url in <strong>Site address</strong> option at the link mentioned"
1534
  msgstr "Pega la siguiente url en la opción <strong>Site address</ strong> en el enlace mencionado"
1535
 
1536
+ #: ../admin/social_login.php:278
1537
  msgid "Instagram Client ID"
1538
  msgstr "Instagram Client ID"
1539
 
1540
+ #: ../admin/social_login.php:288
1541
  #, php-format
1542
  msgid "Required for Instagram Social Login to work. Please follow the documentation at <a href=\"%s\" target=\"_blank\">this link</a> to get Instagram Client ID"
1543
  msgstr "Requerido para que funcione el ingreso a través de Instagram. Por favor, sigue la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> para conseguir tu Instagram Client ID"
1544
 
1545
+ #: ../admin/social_login.php:300
1546
  msgid "Xing Consumer Key"
1547
  msgstr "Xing Consumer Key"
1548
 
1549
+ #: ../admin/social_login.php:310
1550
  #, php-format
1551
  msgid "Required for Xing Social Login to work. Please follow the documentation at <a href=\"%s\" target=\"_blank\">this link</a> to get Xing Consumer Key"
1552
  msgstr "Requerido para que funcione el ingreso a través de Xing. Por favor, sigue la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> para conseguir tu Xing Consumer Key"
1553
 
1554
+ #: ../admin/social_login.php:312
1555
+ #: ../admin/social_login.php:334
1556
  msgid "Paste following url in <strong>Callback domain</strong> option at the link mentioned"
1557
  msgstr "Pega la siguiente url en la opción <strong>Callback domain</ strong> en el enlace mencionado"
1558
 
1559
+ #: ../admin/social_login.php:322
1560
  msgid "Xing Consumer Secret"
1561
  msgstr "Xing Consumer Secret"
1562
 
1563
+ #: ../admin/social_login.php:332
1564
  #, php-format
1565
  msgid "Required for Xing Social Login to work. Please follow the documentation at <a href=\"%s\" target=\"_blank\">this link</a> to get Xing Consumer Secret"
1566
  msgstr "Requerido para que funcione el ingreso a través de Xing. Por favor, sigue la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> para conseguir tu Xing Consumer Secret"
1567
 
1568
+ #: ../admin/social_login.php:344
1569
  #, fuzzy
1570
  msgid "Twitch Client ID"
1571
  msgstr "Instagram Client ID"
1572
 
1573
+ #: ../admin/social_login.php:354
1574
  #, fuzzy, php-format
1575
  msgid "Required for Twitch Social Login to work. Please follow the documentation at <a href=\"%s\" target=\"_blank\">this link</a> to get Twitch Client ID"
1576
  msgstr "Requerido para que funcione el ingreso a través de Twitter. Por favor, sigue la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> para conseguir tu Twitter Key"
1577
 
1578
+ #: ../admin/social_login.php:356
1579
  #, fuzzy
1580
  msgid "Paste following url in <strong>Redirect URI</strong> option at the link mentioned"
1581
  msgstr "Pega la siguiente url en la opción <strong>Site URL</ strong> en el enlace mencionado"
1582
 
1583
+ #: ../admin/social_login.php:373
1584
  #, fuzzy
1585
  msgid "Social Login Options"
1586
  msgstr "Ingreso a través de redes sociales"
1587
 
1588
+ #: ../admin/social_login.php:389
1589
  msgid "Text to display above the Social Login interface"
1590
  msgstr "Texto para mostrar sobre la interfaz del Ingreso a través de redes sociales"
1591
 
1592
+ #: ../admin/social_login.php:398
1593
  msgid "Enable at login page"
1594
  msgstr "Permitir Página de Ingreso"
1595
 
1596
+ #: ../admin/social_login.php:408
1597
  msgid "Social Login interface will get enabled at the login page of your website"
1598
  msgstr "La interfaz de Ingreso a través de redes sociales aparecerá en la página de acceso de tu sitio web"
1599
 
1600
+ #: ../admin/social_login.php:416
1601
  msgid "Enable at register page"
1602
  msgstr "Permitir Página de Registro"
1603
 
1604
+ #: ../admin/social_login.php:426
1605
  msgid "Social Login interface will get enabled at the registration page of your website"
1606
  msgstr "La interfaz de Ingreso a través de redes sociales aparecerá en la página de registro de tu sitio web"
1607
 
1608
+ #: ../admin/social_login.php:434
1609
  msgid "Enable at comment form"
1610
  msgstr "Permitir el formulario de comentarios"
1611
 
1612
+ #: ../admin/social_login.php:444
1613
  msgid "Social Login interface will get enabled at your Wordpress Comment form"
1614
  msgstr "La interfaz de Ingreso a través de redes sociales aparecerá en el formulario de Comentario de tu WordPress"
1615
 
1616
+ #: ../admin/social_login.php:458
1617
  msgid "Enable before WooCommerce Customer Login Form"
1618
  msgstr "Permitir antes del Formulario de Ingreso de Cliente de WooCommerce"
1619
 
1620
+ #: ../admin/social_login.php:468
1621
  msgid "Social Login Interface will get enabled before the customer login form at WooCommerce My Account page"
1622
  msgstr "La interfaz de Ingreso a través de redes sociales aparecerá antes del formulario de ingreso de cliente de la página Mi Cuenta de WooCommerce"
1623
 
1624
+ #: ../admin/social_login.php:476
1625
  msgid "Enable after WooCommerce Customer Login Form"
1626
  msgstr "Permitir después del Formulario de Ingreso de Cliente de WooCommerce"
1627
 
1628
+ #: ../admin/social_login.php:486
1629
  msgid "Social Login Interface will get enabled after the customer login form at WooCommerce My Account page"
1630
  msgstr "La interfaz de Ingreso a través de redes sociales aparecerá después del formulario de ingreso de cliente de la página Mi Cuenta de WooCommerce"
1631
 
1632
+ #: ../admin/social_login.php:494
1633
  msgid "Enable at WooCommerce checkout page"
1634
  msgstr "Permitir en la página de checkout de WooCommerce"
1635
 
1636
+ #: ../admin/social_login.php:504
1637
  msgid "Social Login Interface will get enabled at WooCommerce checkout page"
1638
  msgstr "La interfaz de Ingreso a través de redes sociales aparecerá en la página de checkout de WooCommerce"
1639
 
1640
+ #: ../admin/social_login.php:515
1641
  msgid "Auto-approve comments made by Social Login users"
1642
  msgstr "Aprobar automáticamente los comentarios hechos por los usuarios conectados a través de redes sociales"
1643
 
1644
+ #: ../admin/social_login.php:525
1645
  msgid "If this option is enabled, and WordPress comment is made by Social Login user, comment will get approved immediately without keeping in moderation."
1646
  msgstr "Si esta opción está activada, y el comentario WordPress es hecho por un usuario conectado a través de WordPress, su comentario será aprobado de inmediato sin necesidad de moderación."
1647
 
1648
+ #: ../admin/social_login.php:526
1649
  msgid "Note: This is not related to Facebook comments"
1650
  msgstr "Nota: Esto no es válido para los comentarios de Facebook"
1651
 
1652
+ #: ../admin/social_login.php:536
1653
  msgid "Enable social avatar"
1654
  msgstr "Permitir avatar social"
1655
 
1656
+ #: ../admin/social_login.php:546
1657
  msgid "Social profile pictures of the logged in user will be displayed as profile avatar"
1658
  msgstr "Las imágenes del perfil social del usuario conectado se mostrarán como su avatar de perfil"
1659
 
1660
+ #: ../admin/social_login.php:556
1661
  msgid "Avatar quality"
1662
  msgstr "Calidad del avatar"
1663
 
1664
+ #: ../admin/social_login.php:559
1665
  msgid "Average"
1666
  msgstr "Media"
1667
 
1668
+ #: ../admin/social_login.php:560
1669
  msgid "Best"
1670
  msgstr "Alta"
1671
 
1672
+ #: ../admin/social_login.php:567
1673
  msgid "Choose avatar quality"
1674
  msgstr "Elegir la calidad del avatar"
1675
 
1676
+ #: ../admin/social_login.php:576
1677
  msgid "Show option for users to update social avatar at BuddyPress profile page"
1678
  msgstr "Mostrar la opción para los usuarios de actualizar su avatar social en su página de perfil de BuddyPress"
1679
 
1680
+ #: ../admin/social_login.php:586
1681
  msgid "If enabled, users would be able to update their social avatar from \"Profile photo\" section in BuddyPress profile at front-end"
1682
  msgstr "Si está activa, los usuarios podrán actualizar su avatar social desde la sección \"Foto de perfil\" en el perfil BuddyPress, en la vista de usuario"
1683
 
1684
+ #: ../admin/social_login.php:607
1685
  msgid "If enabled and Social ID provider does not provide user's email address on login, user will be asked to provide his/her email address. Otherwise, a dummy email will be generated"
1686
  msgstr "Si se activa y el proveedor de ID de red social no proporciona dirección de email del usuario al iniciar sesión, se le pedirá al usuario que proporcione su dirección de email. De lo contrario, se generará un email aleatorio"
1687
 
1688
+ #: ../admin/social_login.php:616
1689
  msgid "Send post-registration email to user to set account password"
1690
  msgstr ""
1691
 
1692
+ #: ../admin/social_login.php:626
1693
  msgid "If enabled, an email will be sent to user after registration through Social Login, regarding his/her login credentials (username-password to be able to login via traditional login form)"
1694
  msgstr "Si se activa, se enviará un email al usuario después de su registro a través de la red social elegida, con su nombre de usuario y su contraseña para poder iniciar sesión a través del formulario de acceso tradicional"
1695
 
1696
+ #: ../admin/social_login.php:634
1697
  #, fuzzy
1698
  msgid "Send new user registration notification email to admin"
1699
  msgstr "Desactivar el registro de usuario mediante redes sociales"
1700
 
1701
+ #: ../admin/social_login.php:644
1702
  #, fuzzy
1703
  msgid "If enabled, an email will be sent to admin after new user registers through Social Login, notifying admin about the new user registration"
1704
  msgstr "Si se activa, se enviará un email al usuario después de su registro a través de la red social elegida, con su nombre de usuario y su contraseña para poder iniciar sesión a través del formulario de acceso tradicional"
1705
 
1706
+ #: ../admin/social_login.php:653
1707
  msgid "Enable social account linking at BuddyPress profile page"
1708
  msgstr "Permitir cuenta de red social enlazando a la página de perfil de BuddyPress"
1709
 
1710
+ #: ../admin/social_login.php:663
1711
  msgid "Enable this option to show social account linking interface at BuddyPress profile page"
1712
  msgstr "Activa esta opción para mostrar la cuenta social enlazando a la interfaz de la página de perfil de BuddyPress"
1713
 
1714
+ #: ../admin/social_login.php:672
1715
  msgid "Login redirection"
1716
  msgstr "Redirección de Ingreso"
1717
 
1718
+ #: ../admin/social_login.php:676
1719
  msgid "Same page where user logged in"
1720
  msgstr "La misma página en la que el usuario ha iniciado sesión"
1721
 
1722
+ #: ../admin/social_login.php:680
1723
+ #: ../admin/social_login.php:710
1724
  msgid "Account dashboard"
1725
  msgstr "Panel de cuenta de usuario"
1726
 
1727
+ #: ../admin/social_login.php:683
1728
+ #: ../admin/social_login.php:713
1729
  msgid "BuddyPress profile page"
1730
  msgstr "Página de perfil de BuddyPress"
1731
 
1732
+ #: ../admin/social_login.php:686
1733
+ #: ../admin/social_login.php:716
1734
  msgid "Custom Url"
1735
  msgstr "Url personalizada"
1736
 
1737
+ #: ../admin/social_login.php:694
1738
  msgid "User will be redirected to the selected page after Social Login"
1739
  msgstr "El usuario será redirigido a la página seleccionada después de su ingreso"
1740
 
1741
+ #: ../admin/social_login.php:702
1742
  msgid "Registration redirection"
1743
  msgstr "Redirección de Registro"
1744
 
1745
+ #: ../admin/social_login.php:706
1746
  msgid "Same page from where user registered"
1747
  msgstr "La misma página en la que el usuario se ha registrado"
1748
 
1749
+ #: ../admin/social_login.php:724
1750
  msgid "User will be redirected to the selected page after registration (first Social Login) through Social Login"
1751
  msgstr "El usuario será redirigido a la página seleccionada después de su registro (en su primer inicio de sesión) a través de la red social"
1752
 
1753
+ #: ../admin/social_login.php:732
1754
  msgid "Email popup options"
1755
  msgstr "Opciones de popup del Email"
1756
 
1757
+ #: ../admin/social_login.php:738
1758
  msgid "Text on 'Email required' popup"
1759
  msgstr "Texto del popup 'Email requerido'"
1760
 
1761
+ #: ../admin/social_login.php:748
1762
  msgid "This text will be displayed on email required popup. Leave empty if not required."
1763
  msgstr "Este texto se mostrará en el popup de email requerido. Déjalo en blanco si no es necesario."
1764
 
1765
+ #: ../admin/social_login.php:757
1766
  msgid "Error message for 'Email required' popup"
1767
  msgstr "Mensaje de error para el popup de 'Email requerido'"
1768
 
1769
+ #: ../admin/social_login.php:767
1770
  msgid "This message will be displayed to user if it provides invalid or already registered email"
1771
  msgstr "Este mensaje se mostrará si el usuario introduce un email no válido o ya registrado"
1772
 
1773
+ #: ../admin/social_login.php:776
1774
  msgid "Email popup height"
1775
  msgstr "Altura del popup del Email"
1776
 
1777
+ #: ../admin/social_login.php:786
1778
  msgid "If you are seeing vertical scrollbar in the \"Email required\" popup, you can increase the height of popup by specifying in this option. Leave empty for default."
1779
  msgstr "Si estás viendo la barra de desplazamiento vertical en el popup de \"Email requerido\", puedes aumentar la altura del popup especificándola en esta opción. Déjala en blanco para la altura por defecto."
1780
 
1781
+ #: ../admin/social_login.php:794
1782
  msgid "Enable email verification"
1783
  msgstr "Activar verificación por email"
1784
 
1785
+ #: ../admin/social_login.php:804
1786
  msgid "If enabled, email provided by the user will be verified by sending a confirmation link to that email. User would not be able to login without verifying his/her email"
1787
  msgstr "Si se activa, se enviará un enlace de confirmación al email proporcionado por el usuario. El usuario no podrá conectarse sin verificar su email y pulsar este enlace"
1788
 
1789
+ #: ../admin/social_login.php:854
1790
  msgid "Select"
1791
  msgstr "Seleccionar"
1792
 
1793
+ #: ../admin/social_login.php:885
1794
  msgid "Social Login Shortcode & Widget"
1795
  msgstr "Widget y Shortcode para el Ingreso a través de redes sociales"
1796
 
1797
+ #: ../admin/social_login.php:886
1798
  msgid "Social Linking Shortcode"
1799
  msgstr "Shortcode para enlace a través de redes sociales"
1800
 
1806
  msgid "Master control for like buttons. It must be checked to enable like buttons functionality"
1807
  msgstr "Control maestro para los botones Me gusta. Debes activarlo para permitir su funcionalidad"
1808
 
1809
+ #: ../admin/like_buttons.php:49
1810
  msgid "Standard Interface Options"
1811
  msgstr "Opciones de la Interfaz Estándar"
1812
 
1813
+ #: ../admin/like_buttons.php:55
1814
  msgid "Enable standard interface"
1815
  msgstr "Permitir la interfaz estándar"
1816
 
1817
+ #: ../admin/like_buttons.php:65
1818
  msgid "Master control to enable horizontal like buttons"
1819
  msgstr "Control maestro para permitir los botones Me gusta horizontales"
1820
 
1821
+ #: ../admin/like_buttons.php:90
1822
+ #: ../admin/like_buttons.php:340
1823
  msgid "Url to like/share/tweet and display like/share/tweet counts"
1824
  msgstr "Url para los Me gusta / Compartir / Tweets y mostrar sus contadores"
1825
 
1826
+ #: ../admin/like_buttons.php:108
1827
  msgid "The text to display above the interface"
1828
  msgstr "Texto para mostrar sobre la interfaz"
1829
 
1830
+ #: ../admin/like_buttons.php:116
1831
+ #: ../admin/like_buttons.php:348
1832
  msgid "Select and rearrange providers"
1833
  msgstr "Seleccionar y reordenar redes sociales"
1834
 
1835
+ #: ../admin/like_buttons.php:160
1836
+ #: ../admin/like_buttons.php:391
1837
  msgid "Select the providers for interface. Drag them to rearrange."
1838
  msgstr "Seleccionar las redes sociales para la interfaz. Arrástralas para reordenarlas."
1839
 
1840
+ #: ../admin/like_buttons.php:182
1841
+ #: ../admin/like_buttons.php:430
1842
  msgid "Horizontal alignment of the interface"
1843
  msgstr "Alineación horizontal de la interfaz"
1844
 
1845
+ #: ../admin/like_buttons.php:203
1846
  msgid "Specify position of the interface with respect to the content"
1847
  msgstr "Especificar la posición de la interfaz con respecto al contenido"
1848
 
1849
+ #: ../admin/like_buttons.php:211
1850
+ #: ../admin/like_buttons.php:496
1851
  msgid "Interface location"
1852
  msgstr "Posición de la interfaz"
1853
 
1854
+ #: ../admin/like_buttons.php:281
1855
  msgid "Specify the pages where you want to enable interface"
1856
  msgstr "Especifica las páginas donde quieres permitir la interfaz"
1857
 
1858
+ #: ../admin/like_buttons.php:299
1859
  msgid "Vertical (Floating) like buttons Options"
1860
  msgstr "Opciones de los botones Me gusta en Barra Vertical Flotante"
1861
 
1862
+ #: ../admin/like_buttons.php:305
1863
  msgid "Enable floating like buttons"
1864
  msgstr "Permitir Barra Flotante de botones Me gusta"
1865
 
1866
+ #: ../admin/like_buttons.php:315
1867
  msgid "Master control to enable vertical (floating) counter widget"
1868
  msgstr "Control maestro para permitir el widget vertical flotante del contador"
1869
 
1870
+ #: ../admin/like_buttons.php:409
1871
  msgid "Specify the color or hex code (example #cc78e0) for the background of vertical interface. Leave empty for transparent. You can get the hex code of the required color from <a href=\"http://www.colorpicker.com/\" target=\"_blank\">this link</a>"
1872
  msgstr "Especifica el color o código hexadecimal (por ejemplo #cc78e0) para el fondo de la interfaz vertical. Déjalo vacío para que sea transparente. Puedes conseguir el código hexadecimal del color que desees en <a href=\"http://www.colorpicker.com/\" target=\"_blank\">este enlace</a>"
1873
 
1874
+ #: ../admin/like_buttons.php:449
1875
  msgid "Specify a number. Increase in number will shift interface towards right and decrease will shift it towards left. Number can be negative too."
1876
  msgstr "Especifica un número. Al incrementar el número la interfaz se desplazará a la derecha y al disminuirlo se desplazará hacia la izquierda. El número puede ser negativo también."
1877
 
1878
+ #: ../admin/like_buttons.php:469
1879
  msgid "Specify a number. Increase in number will shift interface towards left and decrease will shift it towards right. Number can be negative too."
1880
  msgstr "Especifica un número. Al incrementar el número la interfaz se desplazará a la izquierda y al disminuirlo se desplazará hacia la derecha. El número puede ser negativo también."
1881
 
1882
+ #: ../admin/like_buttons.php:488
1883
  msgid "Specify a number. Increase in number will shift interface towards bottom and decrease will shift it towards top."
1884
  msgstr "Especifica un número. Al incrementar el número la interfaz se desplazará hacia abajo y al disminuirlo se desplazará hacia arriba."
1885
 
1886
+ #: ../admin/like_buttons.php:544
1887
  msgid "Specify the pages where you want to enable vertical interface"
1888
  msgstr "Especifica las páginas donde quieres permitir la interfaz vertical"
1889
 
1890
+ #: ../admin/like_buttons.php:552
1891
  msgid "Hide like buttons on mobile devices"
1892
  msgstr "Ocultar botones Me gusta en dispositivos móviles "
1893
 
1894
+ #: ../admin/like_buttons.php:562
1895
  msgid "If enabled, vertical like buttons will not appear on mobile devices"
1896
  msgstr "Si se activa, la barra vertical de botones Me gusta no aparecerá en dispositivos móviles"
1897
 
1898
+ #: ../admin/like_buttons.php:587
1899
  msgid "Use shortlinks already installed, for tweet button"
1900
  msgstr "Usa los shortlinks ya instalados para el botón de twittear"
1901
 
1902
+ #: ../admin/like_buttons.php:597
1903
  msgid "Allows for shortened URLs to be used when sharing content if a shortening plugin is installed"
1904
  msgstr "Permite que las URLs abreviadas se usen al compartir contenido, si un plugin de abreviatura está instalado"
1905
 
1906
+ #: ../admin/like_buttons.php:605
1907
  msgid "Enable bit.ly url shortener for tweet button"
1908
  msgstr "Permitir el abreviador de url bit.ly para el botón de twittear"
1909
 
1910
+ #: ../admin/like_buttons.php:623
1911
  msgid "bit.ly username"
1912
  msgstr "Nombre de usuario bit.ly"
1913
 
1914
+ #: ../admin/like_buttons.php:633
1915
  #, php-format
1916
  msgid "Login to your bit.ly account and navigate to <a href=\"%s\" target=\"_blank\">this link</a> to get bit.ly username"
1917
  msgstr "Ingresa a tu cuenta bit.ly y ve a <a href=\"%s\" target=\"_blank\">este enlace</a> para obtener tu nombre de usuario bit.ly"
1918
 
1919
+ #: ../admin/like_buttons.php:697
1920
  #, php-format
1921
  msgid "Enter the code of the language you want to use to render counters. You can find the language codes at <a href=\"%s\" target=\"_blank\">this link</a>. Leave it empty for default language(English)"
1922
  msgstr "Introduce el código del idioma que deseas utilizar para renderizar los contadores. Puedes encontrar los códigos de idioma en <a href=\"%s\" target=\"_blank\">este enlace</a>. Déjalo vacío para el idioma por defecto (Inglés)"
1923
 
1924
+ #: ../admin/like_buttons.php:706
1925
  msgid "Twitter Username"
1926
  msgstr "Nombre de usuario de Twitter"
1927
 
1928
+ #: ../admin/like_buttons.php:712
1929
  msgid "Twitter username for Tweet (without @)"
1930
  msgstr "Nombre de usuario para twittear (sin @)"
1931
 
1932
+ #: ../admin/like_buttons.php:722
1933
  msgid "Provided username will be appended after the content being tweeted as \"via @USERNAME\". Leave empty if you do not want any username."
1934
  msgstr "El nombre de usuario introducido será añadido después del contenido twiteado como \"via @USERNAME\". Déjalo vacío si no quieres ningún nombre de usuario."
1935
 
1936
+ #: ../admin/like_buttons.php:731
1937
  msgid "Twitter username for Buffer sharing (without @)"
1938
  msgstr "Nombre de usuario de Twitter para compartir en Buffer (sin @)"
1939
 
1940
+ #: ../admin/like_buttons.php:741
1941
  msgid "Provided username will be appended after the content in Buffer sharing as \"via @USERNAME\". Leave empty if you do not want any username."
1942
  msgstr "El nombre de usuario introducido será añadido después del contenido compartido en Buffer como \"via @USERNAME\". Déjalo vacío si no quieres ningún nombre de usuario."
1943
 
1944
+ #: ../admin/like_buttons.php:759
1945
  msgid "Like Buttons Shortcode & Widget"
1946
  msgstr "Shortcode y Widget Botones Me gusta"
1947
 
1954
  msgid "Enable Social Login from \"Basic Configuration\" section at \"Super Socializer > Social Login\" page in admin panel"
1955
  msgstr "Permitir el Ingreso a través de redes sociales desde la sección de \"Configuración Básica\" en la página del panel de control \"Super Socializer > Social Login\""
1956
 
1957
+ #: ../inc/social_sharing.php:793
1958
+ #: ../inc/social_sharing.php:1012
1959
  msgid "Invalid request"
1960
  msgstr "Petición no válida"
1961
 
1962
+ #: ../inc/social_sharing.php:800
1963
  msgid "Providers not selected"
1964
  msgstr "Redes sociales no seleccionadas"
1965
 
1966
+ #: ../inc/social_login.php:689
1967
  msgid "Email"
1968
  msgstr ""
1969
 
1970
+ #: ../inc/social_login.php:690
1971
  msgid "Confirm email"
1972
  msgstr ""
1973
 
1974
+ #: ../inc/social_login.php:692
1975
  msgid "Save"
1976
  msgstr ""
1977
 
1978
+ #: ../inc/social_login.php:693
1979
  msgid "Cancel"
1980
  msgstr ""
1981
 
1982
+ #: ../inc/social_login.php:767
1983
  #, fuzzy
1984
  msgid "Email Verification"
1985
  msgstr "Activar verificación por email"
1986
 
1987
+ #: ../inc/social_login.php:769
1988
  msgid "Please click on the following link or paste it in browser to verify your email"
1989
  msgstr ""
1990
 
2107
  msgid "Make sure \"Floating Like Buttons\" are enabled from \"Super Socializer > Like Buttons\" page."
2108
  msgstr "Asegúrate de que \"Botones Me gusta Horizontal\" está permitido en la página \"Super Socializer > Like Buttons\"."
2109
 
2110
+ #~ msgid "Super Socializer - Social Avatar"
2111
+ #~ msgstr "Super Socializer - Social Avatar"
2112
+
2113
+ #~ msgid "Login options"
2114
+ #~ msgstr "Opciones de Ingreso"
2115
+
2116
+ #~ msgid "Send username-password after user registration"
2117
+ #~ msgstr ""
2118
+ #~ "Enviar nombre de usuario y contraseña después del registro del usuario"
2119
 
2120
  #~ msgid "Welcome"
2121
  #~ msgstr "Bienvenid@"
2165
  #~ "color de los botones Me gusta, así como configurar sus diferentes "
2166
  #~ "opciones."
2167
 
2168
+ #~ msgid "Excerpts"
2169
+ #~ msgstr "Extractos"
2170
 
2171
  #~ msgid "Username: %s"
2172
  #~ msgstr "Nombre de usuario: %s"
2176
 
2177
  #~ msgid "[%s] Your username and password"
2178
  #~ msgstr "[%s] Tu nombre de usuario y contraseña"
 
 
 
 
 
 
 
 
 
 
readme.txt CHANGED
@@ -1,10 +1,10 @@
1
  === Super Socializer ===
2
  Contributors: Heateor, the_champ, Hungarian Translator: László Tavaszi http://kerekmese.hu, Chinese Translator: Alex Li plpkj.com, 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: the champ, champ, social login, social sharing, social commenting, social comments, social plugin, buddypress, bbpress, social share, comments, share post, user profile data, social analytics, online identity, social profile storage, id provider, single sign-on, social media tools, free social login, post to social networks, social authentication, social app, connect, capture social data, social sign-in, signin, sign up, signup, social connect, facebook login, twitter login, google login, google+ login, linkedin login, yahoo, vkontakte, instagram, reddit, digg, stumbleupon, delicious, float it, tumblr, social network
5
  Requires at least: 2.5.0
6
  Tested up to: 4.7.1
7
- Stable tag: 7.8.10
8
  License: GPLv2 or later
9
 
10
  The unique Social Plugin to let you integrate Social Login, Social Share and Social Comments at your website
@@ -204,6 +204,10 @@ Yes, we can help you with it. Just drop an email at support@heateor.com
204
  8. **Social Commenting**: Disqus Commenting selected
205
 
206
  == Changelog ==
 
 
 
 
207
  = 7.8.10 =
208
  * [Bugfix] Fixed XSS vulnerability
209
  * [Improvement] Using class names 'the_champ_sharing_title' and 'the_champ_social_login_title' for title text of Social Sharing and Social Login shortcodes
@@ -1120,4 +1124,8 @@ Yes, we can help you with it. Just drop an email at support@heateor.com
1120
 
1121
  = 7.8.10 =
1122
  * [Bugfix] Fixed XSS vulnerability
1123
- * [Improvement] Using class names 'the_champ_sharing_title' and 'the_champ_social_login_title' for title text of Social Sharing and Social Login shortcodes
 
 
 
 
1
  === Super Socializer ===
2
  Contributors: Heateor, the_champ, Hungarian Translator: László Tavaszi http://kerekmese.hu, Chinese Translator: Alex Li plpkj.com, 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, social commenting, social comments, social plugin, profile data, social analytics, online identity, social profile storage, single sign-on, social media, facebook login
5
  Requires at least: 2.5.0
6
  Tested up to: 4.7.1
7
+ Stable tag: 7.8.11
8
  License: GPLv2 or later
9
 
10
  The unique Social Plugin to let you integrate Social Login, Social Share and Social Comments at your website
204
  8. **Social Commenting**: Disqus Commenting selected
205
 
206
  == Changelog ==
207
+ = 7.8.11 =
208
+ * [Improvement] Performance improvement
209
+ * [Improvement] Improved Spanish translation
210
+
211
  = 7.8.10 =
212
  * [Bugfix] Fixed XSS vulnerability
213
  * [Improvement] Using class names 'the_champ_sharing_title' and 'the_champ_social_login_title' for title text of Social Sharing and Social Login shortcodes
1124
 
1125
  = 7.8.10 =
1126
  * [Bugfix] Fixed XSS vulnerability
1127
+ * [Improvement] Using class names 'the_champ_sharing_title' and 'the_champ_social_login_title' for title text of Social Sharing and Social Login shortcodes
1128
+
1129
+ = 7.8.11 =
1130
+ * [Improvement] Performance improvement
1131
+ * [Improvement] Improved Spanish translation
super_socializer.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Super Socializer
4
  Plugin URI: http://super-socializer-wordpress.heateor.com
5
  Description: A complete 360 degree solution to provide all the social features like Social Login, Social Commenting, Social Sharing and more.
6
- Version: 7.8.10
7
  Author: Team Heateor
8
  Author URI: https://www.heateor.com
9
  Text Domain: Super-Socializer
@@ -11,7 +11,7 @@ Domain Path: /languages
11
  License: GPL2+
12
  */
13
  defined('ABSPATH') or die("Cheating........Uh!!");
14
- define('THE_CHAMP_SS_VERSION', '7.8.10');
15
 
16
  require 'helper.php';
17
 
@@ -119,7 +119,7 @@ function the_champ_load_event(){
119
  function the_champ_connect(){
120
  global $theChampLoginOptions;
121
  // verify email
122
- if(isset($_GET['SuperSocializerKey']) && ($verificationKey = trim(esc_attr($_GET['SuperSocializerKey']))) != ''){
123
  $users = get_users('meta_key=thechamp_key&meta_value='.$verificationKey);
124
  if(count($users) > 0 && isset($users[0] -> ID)){
125
  delete_user_meta($users[0] -> ID, 'thechamp_key');
@@ -129,14 +129,14 @@ function the_champ_connect(){
129
  }
130
 
131
  // Instagram auth
132
- if(isset($_GET['SuperSocializerInstaToken']) && $_GET['SuperSocializerInstaToken'] != ''){
133
- $instaAuthUrl = 'https://api.instagram.com/v1/users/self?access_token=' . trim(esc_attr($_GET['SuperSocializerInstaToken']));
134
  $response = wp_remote_get( $instaAuthUrl, array( 'timeout' => 15 ) );
135
  if( ! is_wp_error( $response ) && isset( $response['response']['code'] ) && 200 === $response['response']['code'] ){
136
  $body = json_decode(wp_remote_retrieve_body( $response ));
137
  if(is_object($body -> data) && isset($body -> data) && isset($body -> data -> id)){
138
- $redirection = isset($_GET['super_socializer_redirect_to']) && $_GET['super_socializer_redirect_to'] != '' ? esc_attr($_GET['super_socializer_redirect_to']) : '';
139
- $response = the_champ_user_auth($body -> data, 'instagram', $redirection);
140
  if(is_array($response) && isset($response['message']) && $response['message'] == 'register' && (!isset($response['url']) || $response['url'] == '')){
141
  $redirectTo = the_champ_get_login_redirection_url($redirection, true);
142
  }elseif(isset($response['message']) && $response['message'] == 'linked'){
@@ -154,17 +154,17 @@ function the_champ_connect(){
154
  }
155
 
156
  // Twitch auth
157
- if((isset($_GET['SuperSocializerAuth']) && $_GET['SuperSocializerAuth'] == 'Twitch')){
158
  if(isset($_GET['SuperSocializerData'])){
159
- $body = explode('&&', urldecode($_GET['SuperSocializerData']));
160
  $profileData = array();
161
  foreach($body as $dataField){
162
  $keyValue = explode('=', $dataField);
163
  $profileData[$keyValue[0]] = $keyValue[1];
164
  }
165
  if(isset($profileData['_id']) && $profileData['_id'] != ''){
166
- $redirection = isset($_GET['super_socializer_redirect_to']) && $_GET['super_socializer_redirect_to'] != '' ? esc_attr($_GET['super_socializer_redirect_to']) : '';
167
- $response = the_champ_user_auth($profileData, 'twitch', $redirection);
168
  if(is_array($response) && isset($response['message']) && $response['message'] == 'register' && (!isset($response['url']) || $response['url'] == '')){
169
  $redirectTo = the_champ_get_login_redirection_url($redirection, true);
170
  }elseif(isset($response['message']) && $response['message'] == 'linked'){
@@ -222,7 +222,7 @@ function the_champ_connect(){
222
  }
223
 
224
  // Steam auth
225
- if(isset($_GET['SuperSocializerSteamAuth']) && $_GET['SuperSocializerSteamAuth'] != ''){
226
  global $theChampSteamLogin;
227
  $theChampSteamId = $theChampSteamLogin->validate();
228
  $result = wp_remote_get( "http://steamcommunity.com/profiles/$theChampSteamId/?xml=1", array( 'timeout' => 15 ) );
@@ -230,8 +230,8 @@ function the_champ_connect(){
230
  $body = wp_remote_retrieve_body( $result );
231
  $xml = simplexml_load_string( $body, null, LIBXML_NOCDATA );
232
  if( $xml && isset( $xml->steamID64 ) && $xml->steamID64 ) {
233
- $steamRedirect = esc_url($_GET['SuperSocializerSteamAuth']);
234
- $response = the_champ_user_auth($xml, 'steam', $steamRedirect);
235
  if(is_array($response) && isset($response['message']) && $response['message'] == 'register' && (!isset($response['url']) || $response['url'] == '')){
236
  $redirectTo = the_champ_get_login_redirection_url($steamRedirect, true);
237
  }elseif(isset($response['message']) && $response['message'] == 'linked'){
@@ -250,7 +250,7 @@ function the_champ_connect(){
250
  }
251
 
252
  // send request to Xing
253
- if((isset($_GET['SuperSocializerAuth']) && $_GET['SuperSocializerAuth'] == 'Xing')){
254
  session_start();
255
  if(!isset($_GET['oauth_token']) && isset($_SESSION['OAUTH_ACCESS_TOKEN'])){
256
  Unset($_SESSION['OAUTH_ACCESS_TOKEN']);
@@ -260,7 +260,7 @@ function the_champ_connect(){
260
  $xingClient->debug = 0;
261
  $xingClient->debug_http = 1;
262
  $xingClient->server = 'XING';
263
- $xingClient->redirect_uri = esc_url(home_url()) . '/index.php?SuperSocializerAuth=Xing&super_socializer_redirect_to=' . esc_attr(str_replace(array('http://', 'https://'), '', urldecode($_GET['super_socializer_redirect_to'])));
264
  $xingClient->client_id = $theChampLoginOptions['xing_ck'];
265
  $xingClient->client_secret = $theChampLoginOptions['xing_cs'];
266
  if(($success = $xingClient->Initialize())){
@@ -277,7 +277,7 @@ function the_champ_connect(){
277
  if($success){
278
  if(isset($xingResponse -> users) && is_array($xingResponse -> users) && isset($xingResponse -> users[0] -> id)){
279
  $xingRedirect = the_champ_get_http() . esc_attr($_GET['super_socializer_redirect_to']);
280
- $response = the_champ_user_auth($xingResponse -> users[0], 'xing', $xingRedirect);
281
  if(is_array($response) && isset($response['message']) && $response['message'] == 'register' && (!isset($response['url']) || $response['url'] == '')){
282
  $redirectTo = the_champ_get_login_redirection_url($xingRedirect, true);
283
  }elseif(isset($response['message']) && $response['message'] == 'linked'){
@@ -299,7 +299,7 @@ function the_champ_connect(){
299
  }
300
 
301
  // send request to twitter
302
- if(isset($_GET['SuperSocializerAuth']) && $_GET['SuperSocializerAuth'] == 'Twitter'){
303
  if(isset($theChampLoginOptions['twitter_key']) && $theChampLoginOptions['twitter_key'] != '' && isset($theChampLoginOptions['twitter_secret']) && $theChampLoginOptions['twitter_secret'] != ''){
304
  if(!function_exists('curl_init')){
305
  ?>
@@ -319,8 +319,8 @@ function the_champ_connect(){
319
  // save oauth token and secret in db temporarily
320
  update_user_meta($uniqueId, 'thechamp_twitter_oauthtoken', $requestToken['oauth_token']);
321
  update_user_meta($uniqueId, 'thechamp_twitter_oauthtokensecret', $requestToken['oauth_token_secret']);
322
- if(isset($_GET['super_socializer_redirect_to']) && $_GET['super_socializer_redirect_to'] != ''){
323
- update_user_meta($uniqueId, 'thechamp_twitter_redirect', esc_attr($_GET['super_socializer_redirect_to']));
324
  }
325
  wp_redirect($connection->getAuthorizeURL($requestToken['oauth_token']));
326
  die;
@@ -343,7 +343,7 @@ function the_champ_connect(){
343
  // twitter authentication
344
  if(isset($_REQUEST['oauth_token'])){
345
  global $wpdb;
346
- $uniqueId = $wpdb->get_var($wpdb->prepare("SELECT user_id FROM $wpdb->usermeta WHERE meta_key = 'thechamp_twitter_oauthtoken' and meta_value = %s", $_REQUEST['oauth_token']));
347
  $oauthTokenSecret = get_user_meta($uniqueId, 'thechamp_twitter_oauthtokensecret', true);
348
  // twitter redirect url
349
  $twitterRedirectUrl = get_user_meta($uniqueId, 'thechamp_twitter_redirect', true);
@@ -363,7 +363,7 @@ function the_champ_connect(){
363
  delete_user_meta($uniqueId, 'thechamp_twitter_oauthtoken');
364
  delete_user_meta($uniqueId, 'thechamp_twitter_redirect');
365
  if(is_object($content) && isset($content -> id)){
366
- $response = the_champ_user_auth($content, 'twitter', $twitterRedirectUrl);
367
  if(is_array($response) && isset($response['message']) && $response['message'] == 'register' && (!isset($response['url']) || $response['url'] == '')){
368
  $redirectTo = the_champ_get_login_redirection_url($twitterRedirectUrl, true);
369
  }elseif(isset($response['message']) && $response['message'] == 'linked'){
@@ -384,10 +384,10 @@ function the_champ_close_login_popup($redirectionUrl){
384
  ?>
385
  <script>
386
  if(window.opener){
387
- window.opener.location.href="<?php echo $redirectionUrl; ?>";
388
  window.close();
389
  }else{
390
- window.location.href="<?php echo $redirectionUrl; ?>";
391
  }
392
  </script>
393
  <?php
@@ -417,8 +417,8 @@ function the_champ_get_http(){
417
  * Return valid redirection url.
418
  */
419
  function the_champ_get_valid_url($url){
420
- $url = urldecode($url);
421
- if(html_entity_decode(esc_url(remove_query_arg(array('ss_message', 'SuperSocializerVerified', 'SuperSocializerUnverified'), $url))) == wp_login_url() || $url == home_url().'/wp-login.php?action=register' || $url == home_url().'/wp-login.php?loggedout=true'){
422
  $url = esc_url(home_url()).'/';
423
  }elseif(isset($_GET['redirect_to'])){
424
  if(urldecode($_GET['redirect_to']) == admin_url()){
@@ -429,7 +429,7 @@ function the_champ_get_valid_url($url){
429
  $url = esc_url(home_url()).'/';
430
  }
431
  }
432
- return str_replace(array("&#038;","#038;","&amp;"), "&", esc_url($url));
433
  }
434
 
435
  /**
@@ -526,7 +526,7 @@ function the_champ_frontend_scripts(){
526
  ));
527
  $emailPopupTitle = __('Email required', 'Super-Socializer');
528
  $emailPopupErrorMessage = isset($theChampLoginOptions["email_error_message"]) ? $theChampLoginOptions["email_error_message"] : "";
529
- $emailPopupUniqueId = isset($_GET['par']) ? trim(esc_attr($_GET['par'])) : '';
530
  $emailPopupVerifyMessage = __('Please check your email inbox to complete the registration.', 'Super-Socializer');
531
  }
532
  global $theChampSteamLogin;
@@ -585,7 +585,7 @@ function the_champ_frontend_scripts(){
585
  if(the_champ_facebook_plugin_enabled()){
586
  global $heateor_fcn_options;
587
  ?>
588
- <script> var theChampFBKey = '<?php echo $fbKey ?>', theChampFBLang = '<?php echo (isset($theChampFacebookOptions["comment_lang"]) && $theChampFacebookOptions["comment_lang"] != '') ? $theChampFacebookOptions["comment_lang"] : "en_US" ?>', 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 isset($heateor_fcn_options) || function_exists('heateor_ss_check_querystring') || function_exists('the_champ_check_querystring') ? 1 : 0; ?>, theChampFbIosLogin = <?php echo !is_user_logged_in() && isset($_GET['code']) && esc_attr($_GET['code']) != '' ? 1 : 0; ?>; </script>
589
  <?php
590
  add_action('wp_footer', 'the_champ_fb_root_div');
591
  if(!$combinedScript){
@@ -914,13 +914,13 @@ function the_champ_save_avatar( $user_id ) {
914
  return false;
915
  }
916
  if ( isset( $_POST['the_champ_small_avatar'] ) ) {
917
- update_user_meta( $user_id, 'thechamp_avatar', esc_attr( trim( $_POST['the_champ_small_avatar'] ) ) );
918
  }
919
  if ( isset( $_POST['the_champ_large_avatar'] ) ) {
920
- update_user_meta( $user_id, 'thechamp_large_avatar', esc_attr( trim( $_POST['the_champ_large_avatar'] ) ) );
921
  }
922
  if ( isset( $_POST['ss_dontupdate_avatar'] ) ) {
923
- update_user_meta( $user_id, 'thechamp_dontupdate_avatar', esc_attr( trim( $_POST['ss_dontupdate_avatar'] ) ) );
924
  }
925
  }
926
  add_action( 'personal_options_update', 'the_champ_save_avatar' );
3
  Plugin Name: Super Socializer
4
  Plugin URI: http://super-socializer-wordpress.heateor.com
5
  Description: A complete 360 degree solution to provide all the social features like Social Login, Social Commenting, Social Sharing and more.
6
+ Version: 7.8.11
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.8.11');
15
 
16
  require 'helper.php';
17
 
119
  function the_champ_connect(){
120
  global $theChampLoginOptions;
121
  // verify email
122
+ if(isset($_GET['SuperSocializerKey']) && ($verificationKey = sanitize_text_field($_GET['SuperSocializerKey'])) != ''){
123
  $users = get_users('meta_key=thechamp_key&meta_value='.$verificationKey);
124
  if(count($users) > 0 && isset($users[0] -> ID)){
125
  delete_user_meta($users[0] -> ID, 'thechamp_key');
129
  }
130
 
131
  // Instagram auth
132
+ if(isset($_GET['SuperSocializerInstaToken']) && trim($_GET['SuperSocializerInstaToken']) != ''){
133
+ $instaAuthUrl = 'https://api.instagram.com/v1/users/self?access_token=' . sanitize_text_field($_GET['SuperSocializerInstaToken']);
134
  $response = wp_remote_get( $instaAuthUrl, array( 'timeout' => 15 ) );
135
  if( ! is_wp_error( $response ) && isset( $response['response']['code'] ) && 200 === $response['response']['code'] ){
136
  $body = json_decode(wp_remote_retrieve_body( $response ));
137
  if(is_object($body -> data) && isset($body -> data) && isset($body -> data -> id)){
138
+ $redirection = isset($_GET['super_socializer_redirect_to']) && heateor_ss_validate_url($_GET['super_socializer_redirect_to']) !== false ? esc_url($_GET['super_socializer_redirect_to']) : '';
139
+ $response = the_champ_user_auth(the_champ_sanitize_profile_data($body -> data, 'instagram'), 'instagram', $redirection);
140
  if(is_array($response) && isset($response['message']) && $response['message'] == 'register' && (!isset($response['url']) || $response['url'] == '')){
141
  $redirectTo = the_champ_get_login_redirection_url($redirection, true);
142
  }elseif(isset($response['message']) && $response['message'] == 'linked'){
154
  }
155
 
156
  // Twitch auth
157
+ if((isset($_GET['SuperSocializerAuth']) && sanitize_text_field($_GET['SuperSocializerAuth']) == 'Twitch')){
158
  if(isset($_GET['SuperSocializerData'])){
159
+ $body = explode('&&', sanitize_text_field(urldecode($_GET['SuperSocializerData'])));
160
  $profileData = array();
161
  foreach($body as $dataField){
162
  $keyValue = explode('=', $dataField);
163
  $profileData[$keyValue[0]] = $keyValue[1];
164
  }
165
  if(isset($profileData['_id']) && $profileData['_id'] != ''){
166
+ $redirection = isset($_GET['super_socializer_redirect_to']) && heateor_ss_validate_url($_GET['super_socializer_redirect_to']) !== false ? esc_url($_GET['super_socializer_redirect_to']) : '';
167
+ $response = the_champ_user_auth(the_champ_sanitize_profile_data($profileData, 'twitch'), 'twitch', $redirection);
168
  if(is_array($response) && isset($response['message']) && $response['message'] == 'register' && (!isset($response['url']) || $response['url'] == '')){
169
  $redirectTo = the_champ_get_login_redirection_url($redirection, true);
170
  }elseif(isset($response['message']) && $response['message'] == 'linked'){
222
  }
223
 
224
  // Steam auth
225
+ if(isset($_GET['SuperSocializerSteamAuth']) && trim($_GET['SuperSocializerSteamAuth']) != ''){
226
  global $theChampSteamLogin;
227
  $theChampSteamId = $theChampSteamLogin->validate();
228
  $result = wp_remote_get( "http://steamcommunity.com/profiles/$theChampSteamId/?xml=1", array( 'timeout' => 15 ) );
230
  $body = wp_remote_retrieve_body( $result );
231
  $xml = simplexml_load_string( $body, null, LIBXML_NOCDATA );
232
  if( $xml && isset( $xml->steamID64 ) && $xml->steamID64 ) {
233
+ $steamRedirect = heateor_ss_validate_url($_GET['SuperSocializerSteamAuth']) !== false ? esc_url(trim($_GET['SuperSocializerSteamAuth'])) : '';
234
+ $response = the_champ_user_auth(the_champ_sanitize_profile_data($xml, 'steam'), 'steam', $steamRedirect);
235
  if(is_array($response) && isset($response['message']) && $response['message'] == 'register' && (!isset($response['url']) || $response['url'] == '')){
236
  $redirectTo = the_champ_get_login_redirection_url($steamRedirect, true);
237
  }elseif(isset($response['message']) && $response['message'] == 'linked'){
250
  }
251
 
252
  // send request to Xing
253
+ if((isset($_GET['SuperSocializerAuth']) && sanitize_text_field($_GET['SuperSocializerAuth']) == 'Xing')){
254
  session_start();
255
  if(!isset($_GET['oauth_token']) && isset($_SESSION['OAUTH_ACCESS_TOKEN'])){
256
  Unset($_SESSION['OAUTH_ACCESS_TOKEN']);
260
  $xingClient->debug = 0;
261
  $xingClient->debug_http = 1;
262
  $xingClient->server = 'XING';
263
+ $xingClient->redirect_uri = home_url() . '/index.php?SuperSocializerAuth=Xing&super_socializer_redirect_to=' . str_replace(array('http://', 'https://'), '', esc_url(urldecode(trim($_GET['super_socializer_redirect_to']))));
264
  $xingClient->client_id = $theChampLoginOptions['xing_ck'];
265
  $xingClient->client_secret = $theChampLoginOptions['xing_cs'];
266
  if(($success = $xingClient->Initialize())){
277
  if($success){
278
  if(isset($xingResponse -> users) && is_array($xingResponse -> users) && isset($xingResponse -> users[0] -> id)){
279
  $xingRedirect = the_champ_get_http() . esc_attr($_GET['super_socializer_redirect_to']);
280
+ $response = the_champ_user_auth(the_champ_sanitize_profile_data($xingResponse -> users[0], 'xing'), 'xing', $xingRedirect);
281
  if(is_array($response) && isset($response['message']) && $response['message'] == 'register' && (!isset($response['url']) || $response['url'] == '')){
282
  $redirectTo = the_champ_get_login_redirection_url($xingRedirect, true);
283
  }elseif(isset($response['message']) && $response['message'] == 'linked'){
299
  }
300
 
301
  // send request to twitter
302
+ if(isset($_GET['SuperSocializerAuth']) && sanitize_text_field($_GET['SuperSocializerAuth']) == 'Twitter'){
303
  if(isset($theChampLoginOptions['twitter_key']) && $theChampLoginOptions['twitter_key'] != '' && isset($theChampLoginOptions['twitter_secret']) && $theChampLoginOptions['twitter_secret'] != ''){
304
  if(!function_exists('curl_init')){
305
  ?>
319
  // save oauth token and secret in db temporarily
320
  update_user_meta($uniqueId, 'thechamp_twitter_oauthtoken', $requestToken['oauth_token']);
321
  update_user_meta($uniqueId, 'thechamp_twitter_oauthtokensecret', $requestToken['oauth_token_secret']);
322
+ if(isset($_GET['super_socializer_redirect_to']) && heateor_ss_validate_url($_GET['super_socializer_redirect_to']) !== false){
323
+ update_user_meta($uniqueId, 'thechamp_twitter_redirect', esc_url(trim($_GET['super_socializer_redirect_to'])));
324
  }
325
  wp_redirect($connection->getAuthorizeURL($requestToken['oauth_token']));
326
  die;
343
  // twitter authentication
344
  if(isset($_REQUEST['oauth_token'])){
345
  global $wpdb;
346
+ $uniqueId = $wpdb->get_var($wpdb->prepare("SELECT user_id FROM $wpdb->usermeta WHERE meta_key = 'thechamp_twitter_oauthtoken' and meta_value = %s", sanitize_text_field($_REQUEST['oauth_token'])));
347
  $oauthTokenSecret = get_user_meta($uniqueId, 'thechamp_twitter_oauthtokensecret', true);
348
  // twitter redirect url
349
  $twitterRedirectUrl = get_user_meta($uniqueId, 'thechamp_twitter_redirect', true);
363
  delete_user_meta($uniqueId, 'thechamp_twitter_oauthtoken');
364
  delete_user_meta($uniqueId, 'thechamp_twitter_redirect');
365
  if(is_object($content) && isset($content -> id)){
366
+ $response = the_champ_user_auth(the_champ_sanitize_profile_data($content, 'twitter'), 'twitter', $twitterRedirectUrl);
367
  if(is_array($response) && isset($response['message']) && $response['message'] == 'register' && (!isset($response['url']) || $response['url'] == '')){
368
  $redirectTo = the_champ_get_login_redirection_url($twitterRedirectUrl, true);
369
  }elseif(isset($response['message']) && $response['message'] == 'linked'){
384
  ?>
385
  <script>
386
  if(window.opener){
387
+ window.opener.location.href="<?php echo trim($redirectionUrl); ?>";
388
  window.close();
389
  }else{
390
+ window.location.href="<?php echo trim($redirectionUrl); ?>";
391
  }
392
  </script>
393
  <?php
417
  * Return valid redirection url.
418
  */
419
  function the_champ_get_valid_url($url){
420
+ $decodedUrl = urldecode($url);
421
+ if(html_entity_decode(esc_url(remove_query_arg(array('ss_message', 'SuperSocializerVerified', 'SuperSocializerUnverified'), $decodedUrl))) == wp_login_url() || $decodedUrl == home_url().'/wp-login.php?action=register' || $decodedUrl == home_url().'/wp-login.php?loggedout=true'){
422
  $url = esc_url(home_url()).'/';
423
  }elseif(isset($_GET['redirect_to'])){
424
  if(urldecode($_GET['redirect_to']) == admin_url()){
429
  $url = esc_url(home_url()).'/';
430
  }
431
  }
432
+ return $url;
433
  }
434
 
435
  /**
526
  ));
527
  $emailPopupTitle = __('Email required', 'Super-Socializer');
528
  $emailPopupErrorMessage = isset($theChampLoginOptions["email_error_message"]) ? $theChampLoginOptions["email_error_message"] : "";
529
+ $emailPopupUniqueId = isset($_GET['par']) ? sanitize_text_field($_GET['par']) : '';
530
  $emailPopupVerifyMessage = __('Please check your email inbox to complete the registration.', 'Super-Socializer');
531
  }
532
  global $theChampSteamLogin;
585
  if(the_champ_facebook_plugin_enabled()){
586
  global $heateor_fcn_options;
587
  ?>
588
+ <script> var theChampFBKey = '<?php echo $fbKey ?>', theChampFBLang = '<?php echo (isset($theChampFacebookOptions["comment_lang"]) && $theChampFacebookOptions["comment_lang"] != '') ? $theChampFacebookOptions["comment_lang"] : "en_US" ?>', 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 isset($heateor_fcn_options) || function_exists('heateor_ss_check_querystring') || function_exists('the_champ_check_querystring') ? 1 : 0; ?>, theChampFbIosLogin = <?php echo !is_user_logged_in() && isset($_GET['code']) && esc_attr(trim($_GET['code'])) != '' ? 1 : 0; ?>; </script>
589
  <?php
590
  add_action('wp_footer', 'the_champ_fb_root_div');
591
  if(!$combinedScript){
914
  return false;
915
  }
916
  if ( isset( $_POST['the_champ_small_avatar'] ) ) {
917
+ update_user_meta( $user_id, 'thechamp_avatar', heateor_ss_validate_url($_POST['the_champ_small_avatar']) !== false ? esc_url(trim($_POST['the_champ_small_avatar'])) : '' );
918
  }
919
  if ( isset( $_POST['the_champ_large_avatar'] ) ) {
920
+ update_user_meta( $user_id, 'thechamp_large_avatar', heateor_ss_validate_url($_POST['the_champ_large_avatar']) !== false ? esc_url(trim($_POST['the_champ_large_avatar'])) : '' );
921
  }
922
  if ( isset( $_POST['ss_dontupdate_avatar'] ) ) {
923
+ update_user_meta( $user_id, 'thechamp_dontupdate_avatar', intval( $_POST['ss_dontupdate_avatar'] ) );
924
  }
925
  }
926
  add_action( 'personal_options_update', 'the_champ_save_avatar' );