Nextend Social Login and Register (Facebook, Google, Twitter) - Version 3.0.28

Version Description

  • Fix: We didn't display the disabled registration notification when the "OAuth redirect uri proxy page" feature was used.
  • Fix: Google provider - Social button didn't appear in Opera Mini and iOS Opera Touch.
  • Fix: WordPress couldn't download the avatars coming from the social media when the avatar URL was too long.
  • Fix: Our styles were missing from pages with AMP mode of "AMP for WP".
  • Fix: There was an AMP validation error as earlier we didn't load our styles into the unique style tag with the "amp-custom" attribute.
  • Fix: Database - There was a database error on MySQL 8.0.17 and above, as the display width attribute has been deprecated for integer data types.
  • Fix: Database - Default values of register_date, login_date and link_date have been changed from "0000-00-00 00:00:00" to NULL, since the old value could cause a database error when we tried to make database structure modifications in databases when NO_ZERO_DATE, NO_ZERO_IN_DATE values are set in sql_mode.
  • Improvement: Developers can now pass false value for the nsl_disabled_register_error_message filter for turning off our registration disabled notification.
  • Improvement: Google provider - The Google button will no longer be hidden in Line App WebView, as Google allows the authentication over the WebView of this App.
  • Improvement: Developers can now use the nsl_unlink_user action to run custom function when a user unlinks the social media account from the WordPress account.
  • Improvement: Twitter Getting Started Update
  • Improvement: Google Getting Started Update
  • Improvement: Facebook Getting Started Update
  • Improvement: The context "Register form submit button label" has been added to the Register button appearing in our register flow. So it can now be translated with language files separately.
  • Improvement: On the frontend we will use native JavaScript instead of jQuery.

  • PRO: Fix: Linkedin provider didn't store the first name and last name, if the account didn't have profile with English as either primary language or secondary language.

  • PRO: Fix: Our integration for "Checkout for WooCommerce" didn't work with their most recent versions.

  • PRO: Improvement: Apple Getting Started Update

Download this release

Release Info

Developer nextendweb
Plugin Icon 128x128 Nextend Social Login and Register (Facebook, Google, Twitter)
Version 3.0.28
Comparing to
See all releases

Code changes from version 3.0.27 to 3.0.28

Files changed (38) hide show
  1. NSL/Notices.php +8 -0
  2. admin/templates-provider/buttons.php +32 -26
  3. admin/templates/settings/woocommerce.php +1 -1
  4. includes/avatar.php +169 -3
  5. includes/provider.php +5 -3
  6. includes/user.php +4 -4
  7. includes/userData.php +2 -1
  8. js/nsl.js +65 -51
  9. languages/nextend-facebook-connect-de_DE.mo +0 -0
  10. languages/nextend-facebook-connect-de_DE.po +243 -157
  11. languages/nextend-facebook-connect-es_LA.mo +0 -0
  12. languages/nextend-facebook-connect-es_LA.po +303 -187
  13. languages/nextend-facebook-connect-fr_FR.mo +0 -0
  14. languages/nextend-facebook-connect-fr_FR.po +243 -157
  15. languages/nextend-facebook-connect-hu_HU.mo +0 -0
  16. languages/nextend-facebook-connect-hu_HU.po +305 -186
  17. languages/nextend-facebook-connect-it_IT.mo +0 -0
  18. languages/nextend-facebook-connect-it_IT.po +344 -178
  19. languages/nextend-facebook-connect-nl_NL.mo +0 -0
  20. languages/nextend-facebook-connect-nl_NL.po +302 -186
  21. languages/nextend-facebook-connect-pt_BR.mo +0 -0
  22. languages/nextend-facebook-connect-pt_BR.po +302 -188
  23. languages/nextend-facebook-connect-ru_RU.mo +0 -0
  24. languages/nextend-facebook-connect-ru_RU.po +243 -157
  25. languages/nextend-facebook-connect-zh_ZH.mo +0 -0
  26. languages/nextend-facebook-connect-zh_ZH.po +304 -187
  27. languages/nextend-facebook-connect.pot +247 -158
  28. nextend-facebook-connect.php +1 -1
  29. nextend-social-login.php +88 -37
  30. providers/facebook/admin/getting-started.php +9 -2
  31. providers/github/github.png +0 -0
  32. providers/google/admin/getting-started.php +18 -16
  33. providers/google/google.php +1 -1
  34. providers/twitter/admin/fix-redirect-uri.php +1 -0
  35. providers/twitter/admin/getting-started.php +12 -14
  36. readme.txt +26 -2
  37. template-parts/embedded-login/below.php +12 -16
  38. template-parts/login/below.php +25 -29
NSL/Notices.php CHANGED
@@ -203,4 +203,12 @@ class Notices {
203
  Persistent::delete('notices');
204
  self::$notices = array();
205
  }
 
 
 
 
 
 
 
 
206
  }
203
  Persistent::delete('notices');
204
  self::$notices = array();
205
  }
206
+
207
+ public static function hasErrors() {
208
+ if (isset(self::$notices['error'])) {
209
+ return true;
210
+ }
211
+
212
+ return false;
213
+ }
214
  }
admin/templates-provider/buttons.php CHANGED
@@ -10,8 +10,8 @@ $isPRO = apply_filters('nsl-pro', false);
10
  ?>
11
  <div class="nsl-admin-sub-content">
12
  <script type="text/javascript">
13
- (function ($) {
14
 
 
15
  window.resetButtonToDefault = function (id) {
16
  var defaultButtonValues = {
17
  '#login_label': <?php echo wp_json_encode($settings->get('login_label', 'default')); ?>,
@@ -22,41 +22,47 @@ $isPRO = apply_filters('nsl-pro', false);
22
  '#custom_icon_button': <?php echo wp_json_encode($provider->getRawIconButton()); ?>
23
  };
24
 
25
- var $CodeMirror = jQuery(id).val(defaultButtonValues[id]).siblings('.CodeMirror').get(0);
26
- if ($CodeMirror && typeof $CodeMirror.CodeMirror !== 'undefined') {
27
- $CodeMirror.CodeMirror.setValue(defaultButtonValues[id]);
 
 
 
28
  }
29
  return false;
30
  };
31
 
32
- $(document).ready(function () {
33
- $('#custom_default_button_enabled').on('change', function () {
34
- if ($(this).is(':checked')) {
35
- $('#custom_default_button_textarea_container').css('display', '');
36
 
37
- var $CodeMirror = jQuery('#custom_default_button').siblings('.CodeMirror').get(0);
38
- if ($CodeMirror && typeof $CodeMirror.CodeMirror !== 'undefined') {
39
- $CodeMirror.CodeMirror.refresh();
40
- }
41
- } else {
42
- $('#custom_default_button_textarea_container').css('display', 'none');
43
  }
44
- });
 
 
 
45
 
46
- $('#custom_icon_button_enabled').on('change', function () {
47
- if ($(this).is(':checked')) {
48
- $('#custom_icon_button_textarea_container').css('display', '');
 
49
 
50
- var $CodeMirror = jQuery('#custom_icon_button').siblings('.CodeMirror').get(0);
51
- if ($CodeMirror && typeof $CodeMirror.CodeMirror !== 'undefined') {
52
- $CodeMirror.CodeMirror.refresh();
53
- }
54
- } else {
55
- $('#custom_icon_button_textarea_container').css('display', 'none');
56
  }
57
- });
 
 
58
  });
59
- })(jQuery);
 
60
  </script>
61
 
62
  <form method="post" action="<?php echo admin_url('admin-post.php'); ?>" novalidate="novalidate">
10
  ?>
11
  <div class="nsl-admin-sub-content">
12
  <script type="text/javascript">
 
13
 
14
+ document.addEventListener("DOMContentLoaded", function () {
15
  window.resetButtonToDefault = function (id) {
16
  var defaultButtonValues = {
17
  '#login_label': <?php echo wp_json_encode($settings->get('login_label', 'default')); ?>,
22
  '#custom_icon_button': <?php echo wp_json_encode($provider->getRawIconButton()); ?>
23
  };
24
 
25
+ var inputField = document.querySelector(id),
26
+ codeMirror = inputField.parentNode.querySelector('.CodeMirror');
27
+
28
+ inputField.value = defaultButtonValues[id];
29
+ if (codeMirror) {
30
+ codeMirror.CodeMirror.setValue(defaultButtonValues[id]);
31
  }
32
  return false;
33
  };
34
 
35
+ var defaultButton = document.getElementById('custom_default_button_enabled');
36
+ defaultButton.addEventListener('change', function () {
37
+ if (this.checked) {
38
+ document.getElementById('custom_default_button_textarea_container').style.removeProperty('display');
39
 
40
+ var inputField = document.getElementById('custom_default_button'),
41
+ codeMirror = inputField.parentNode.querySelector('.CodeMirror');
42
+ if (codeMirror) {
43
+ codeMirror.CodeMirror.refresh();
 
 
44
  }
45
+ } else {
46
+ document.getElementById('custom_default_button_textarea_container').style.display = 'none';
47
+ }
48
+ });
49
 
50
+ var defaultIcon = document.getElementById('custom_icon_button_enabled');
51
+ defaultIcon.addEventListener('change', function () {
52
+ if (this.checked) {
53
+ document.getElementById('custom_icon_button_textarea_container').style.removeProperty('display');
54
 
55
+ var inputField = document.getElementById('custom_icon_button');
56
+ var codeMirror = inputField.parentNode.querySelector('.CodeMirror');
57
+ if (codeMirror) {
58
+ codeMirror.CodeMirror.refresh();
 
 
59
  }
60
+ } else {
61
+ document.getElementById('custom_icon_button_textarea_container').style.display = 'none';
62
+ }
63
  });
64
+ });
65
+
66
  </script>
67
 
68
  <form method="post" action="<?php echo admin_url('admin-post.php'); ?>" novalidate="novalidate">
admin/templates/settings/woocommerce.php CHANGED
@@ -227,7 +227,7 @@ NextendSocialLoginAdmin::showProBox();
227
  </td>
228
  </tr>
229
 
230
- <?php if (class_exists('Objectiv\Plugins\Checkout\Main', false)) { ?>
231
  <!-- Integration for "Checkout for WooCommerce" plugin: -->
232
  <tr>
233
  <th scope="row"><?php _e('Checkout for WooCommerce', 'nextend-facebook-connect'); ?></th>
227
  </td>
228
  </tr>
229
 
230
+ <?php if (defined('CFW_MAIN_FILE')) { ?>
231
  <!-- Integration for "Checkout for WooCommerce" plugin: -->
232
  <tr>
233
  <th scope="row"><?php _e('Checkout for WooCommerce', 'nextend-facebook-connect'); ?></th>
includes/avatar.php CHANGED
@@ -98,7 +98,7 @@ class NextendSocialLoginAvatar {
98
  if (preg_match('/\.(jpg|jpeg|gif|png)/', $avatarUrl, $match)) {
99
  $extension = $match[1];
100
  }
101
- $avatarTempPath = download_url($avatarUrl);
102
  if (!is_wp_error($avatarTempPath)) {
103
  $umAvatarKey = 'profile_photo';
104
  $umNameWithExtension = $umAvatarKey . '.' . $extension;
@@ -139,7 +139,7 @@ class NextendSocialLoginAvatar {
139
  }
140
 
141
  require_once(ABSPATH . '/wp-admin/includes/file.php');
142
- $avatarTempPath = download_url($avatarUrl);
143
 
144
  if (!is_wp_error($avatarTempPath)) {
145
  if (!function_exists('bp_members_avatar_upload_dir')) {
@@ -226,7 +226,7 @@ class NextendSocialLoginAvatar {
226
  if (!$original_attachment_id || $overwriteAttachment === true) {
227
  require_once(ABSPATH . '/wp-admin/includes/file.php');
228
 
229
- $avatarTempPath = download_url($avatarUrl);
230
  if (!is_wp_error($avatarTempPath)) {
231
  $mime = wp_get_image_mime($avatarTempPath);
232
  $mime_to_ext = apply_filters('getimagesize_mimes_to_exts', array(
@@ -372,6 +372,172 @@ class NextendSocialLoginAvatar {
372
 
373
  return $description;
374
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
375
  }
376
 
377
  NextendSocialLoginAvatar::getInstance();
98
  if (preg_match('/\.(jpg|jpeg|gif|png)/', $avatarUrl, $match)) {
99
  $extension = $match[1];
100
  }
101
+ $avatarTempPath = self::download_url($avatarUrl);
102
  if (!is_wp_error($avatarTempPath)) {
103
  $umAvatarKey = 'profile_photo';
104
  $umNameWithExtension = $umAvatarKey . '.' . $extension;
139
  }
140
 
141
  require_once(ABSPATH . '/wp-admin/includes/file.php');
142
+ $avatarTempPath = self::download_url($avatarUrl);
143
 
144
  if (!is_wp_error($avatarTempPath)) {
145
  if (!function_exists('bp_members_avatar_upload_dir')) {
226
  if (!$original_attachment_id || $overwriteAttachment === true) {
227
  require_once(ABSPATH . '/wp-admin/includes/file.php');
228
 
229
+ $avatarTempPath = self::download_url($avatarUrl);
230
  if (!is_wp_error($avatarTempPath)) {
231
  $mime = wp_get_image_mime($avatarTempPath);
232
  $mime_to_ext = apply_filters('getimagesize_mimes_to_exts', array(
372
 
373
  return $description;
374
  }
375
+
376
+
377
+ /**
378
+ * Adjusted according to WordPress 5.7
379
+ * Override for WordPress default download_url() since wp_tempnam() can not handle long urls properly to generate temp file names.
380
+ *
381
+ * Downloads a URL to a local temporary file using the WordPress HTTP API.
382
+ *
383
+ * Please note that the calling function must unlink() the file.
384
+ *
385
+ * @param string $url The URL of the file to download.
386
+ * @param int $timeout The timeout for the request to download the file.
387
+ * Default 300 seconds.
388
+ * @param bool $signature_verification Whether to perform Signature Verification.
389
+ * Default false.
390
+ *
391
+ * @return string|WP_Error Filename on success, WP_Error on failure.
392
+ * @since 2.5.0
393
+ * @since 5.2.0 Signature Verification with SoftFail was added.
394
+ *
395
+ */
396
+ public static function download_url($url, $timeout = 300, $signature_verification = false) {
397
+ // WARNING: The file is not automatically deleted, the script must unlink() the file.
398
+ if (!$url) {
399
+ return new WP_Error('http_no_url', __('Invalid URL Provided.'));
400
+ }
401
+
402
+ $tmpfname = wp_tempnam();
403
+ if (!$tmpfname) {
404
+ return new WP_Error('http_no_file', __('Could not create Temporary file.'));
405
+ }
406
+
407
+ $response = wp_safe_remote_get($url, array(
408
+ 'timeout' => $timeout,
409
+ 'stream' => true,
410
+ 'filename' => $tmpfname,
411
+ ));
412
+
413
+ if (is_wp_error($response)) {
414
+ unlink($tmpfname);
415
+
416
+ return $response;
417
+ }
418
+
419
+ $response_code = wp_remote_retrieve_response_code($response);
420
+
421
+ if (200 != $response_code) {
422
+ $data = array(
423
+ 'code' => $response_code,
424
+ );
425
+
426
+ // Retrieve a sample of the response body for debugging purposes.
427
+ $tmpf = fopen($tmpfname, 'rb');
428
+ if ($tmpf) {
429
+ /**
430
+ * Filters the maximum error response body size in `download_url()`.
431
+ *
432
+ * @param int $size The maximum error response body size. Default 1 KB.
433
+ *
434
+ * @see download_url()
435
+ *
436
+ * @since 5.1.0
437
+ *
438
+ */
439
+ $response_size = apply_filters('download_url_error_max_body_size', KB_IN_BYTES);
440
+ $data['body'] = fread($tmpf, $response_size);
441
+ fclose($tmpf);
442
+ }
443
+
444
+ unlink($tmpfname);
445
+
446
+ return new WP_Error('http_404', trim(wp_remote_retrieve_response_message($response)), $data);
447
+ }
448
+
449
+ $content_md5 = wp_remote_retrieve_header($response, 'content-md5');
450
+ if ($content_md5) {
451
+ $md5_check = verify_file_md5($tmpfname, $content_md5);
452
+ if (is_wp_error($md5_check)) {
453
+ unlink($tmpfname);
454
+
455
+ return $md5_check;
456
+ }
457
+ }
458
+
459
+ // If the caller expects signature verification to occur, check to see if this URL supports it.
460
+ if ($signature_verification) {
461
+ /**
462
+ * Filters the list of hosts which should have Signature Verification attempted on.
463
+ *
464
+ * @param string[] $hostnames List of hostnames.
465
+ *
466
+ * @since 5.2.0
467
+ *
468
+ */
469
+ $signed_hostnames = apply_filters('wp_signature_hosts', array(
470
+ 'wordpress.org',
471
+ 'downloads.wordpress.org',
472
+ 's.w.org'
473
+ ));
474
+ $signature_verification = in_array(parse_url($url, PHP_URL_HOST), $signed_hostnames, true);
475
+ }
476
+
477
+ // Perform signature valiation if supported.
478
+ if ($signature_verification) {
479
+ $signature = wp_remote_retrieve_header($response, 'x-content-signature');
480
+ if (!$signature) {
481
+ // Retrieve signatures from a file if the header wasn't included.
482
+ // WordPress.org stores signatures at $package_url.sig.
483
+
484
+ $signature_url = false;
485
+ $url_path = parse_url($url, PHP_URL_PATH);
486
+
487
+ if ('.zip' === substr($url_path, -4) || '.tar.gz' === substr($url_path, -7)) {
488
+ $signature_url = str_replace($url_path, $url_path . '.sig', $url);
489
+ }
490
+
491
+ /**
492
+ * Filters the URL where the signature for a file is located.
493
+ *
494
+ * @param false|string $signature_url The URL where signatures can be found for a file, or false if none are known.
495
+ * @param string $url The URL being verified.
496
+ *
497
+ * @since 5.2.0
498
+ *
499
+ */
500
+ $signature_url = apply_filters('wp_signature_url', $signature_url, $url);
501
+
502
+ if ($signature_url) {
503
+ $signature_request = wp_safe_remote_get($signature_url, array(
504
+ 'limit_response_size' => 10 * KB_IN_BYTES,
505
+ // 10KB should be large enough for quite a few signatures.
506
+ ));
507
+
508
+ if (!is_wp_error($signature_request) && 200 === wp_remote_retrieve_response_code($signature_request)) {
509
+ $signature = explode("\n", wp_remote_retrieve_body($signature_request));
510
+ }
511
+ }
512
+ }
513
+
514
+ // Perform the checks.
515
+ $signature_verification = verify_file_signature($tmpfname, $signature, basename(parse_url($url, PHP_URL_PATH)));
516
+ }
517
+
518
+ if (is_wp_error($signature_verification)) {
519
+ if (/**
520
+ * Filters whether Signature Verification failures should be allowed to soft fail.
521
+ *
522
+ * WARNING: This may be removed from a future release.
523
+ *
524
+ * @param bool $signature_softfail If a softfail is allowed.
525
+ * @param string $url The url being accessed.
526
+ *
527
+ * @since 5.2.0
528
+ *
529
+ */ apply_filters('wp_signature_softfail', true, $url)) {
530
+ $signature_verification->add_data($tmpfname, 'softfail-filename');
531
+ } else {
532
+ // Hard-fail.
533
+ unlink($tmpfname);
534
+ }
535
+
536
+ return $signature_verification;
537
+ }
538
+
539
+ return $tmpfname;
540
+ }
541
  }
542
 
543
  NextendSocialLoginAvatar::getInstance();
includes/provider.php CHANGED
@@ -53,7 +53,7 @@ abstract class NextendSocialProvider extends NextendSocialProviderDummy {
53
  )
54
  ));
55
 
56
- foreach ($this->getSyncFields() AS $field_name => $fieldData) {
57
 
58
  $extraSettings['sync_fields/fields/' . $field_name . '/enabled'] = 0;
59
  $extraSettings['sync_fields/fields/' . $field_name . '/meta_key'] = $this->id . '_' . $field_name;
@@ -207,7 +207,7 @@ abstract class NextendSocialProvider extends NextendSocialProviderDummy {
207
  * @return string
208
  */
209
  public function getState() {
210
- foreach ($this->requiredFields AS $name => $label) {
211
  $value = $this->settings->get($name);
212
  if (empty($value)) {
213
  return 'not-configured';
@@ -524,6 +524,8 @@ abstract class NextendSocialProvider extends NextendSocialProviderDummy {
524
  if ($user_info->ID) {
525
  $this->removeConnectionByUserID($user_info->ID);
526
 
 
 
527
  return true;
528
  }
529
  }
@@ -1110,7 +1112,7 @@ abstract class NextendSocialProvider extends NextendSocialProviderDummy {
1110
  );
1111
  }
1112
 
1113
- foreach ($this->getSyncFields() AS $fieldName => $fieldData) {
1114
  $meta_key = $this->settings->get('sync_fields/fields/' . $fieldName . '/meta_key');
1115
  if (!empty($meta_key)) {
1116
  $value = get_user_meta($userID, $meta_key, true);
53
  )
54
  ));
55
 
56
+ foreach ($this->getSyncFields() as $field_name => $fieldData) {
57
 
58
  $extraSettings['sync_fields/fields/' . $field_name . '/enabled'] = 0;
59
  $extraSettings['sync_fields/fields/' . $field_name . '/meta_key'] = $this->id . '_' . $field_name;
207
  * @return string
208
  */
209
  public function getState() {
210
+ foreach ($this->requiredFields as $name => $label) {
211
  $value = $this->settings->get($name);
212
  if (empty($value)) {
213
  return 'not-configured';
524
  if ($user_info->ID) {
525
  $this->removeConnectionByUserID($user_info->ID);
526
 
527
+ do_action('nsl_unlink_user', $user_info->ID, $this->getId());
528
+
529
  return true;
530
  }
531
  }
1112
  );
1113
  }
1114
 
1115
+ foreach ($this->getSyncFields() as $fieldName => $fieldData) {
1116
  $meta_key = $this->settings->get('sync_fields/fields/' . $fieldName . '/meta_key');
1117
  if (!empty($meta_key)) {
1118
  $value = get_user_meta($userID, $meta_key, true);
includes/user.php CHANGED
@@ -129,14 +129,14 @@ class NextendSocialUser {
129
 
130
  $proxyPage = NextendSocialLogin::getProxyPage();
131
  if ($proxyPage) {
132
- if (empty($registerDisabledMessage)) {
133
  /**
134
  * There is no custom message and proxy page is used, so we need to inform the user with our own message.
135
  */
136
  $registerDisabledMessage = $defaultDisabledMessage;
137
  }
138
  } else {
139
- if (empty($registerDisabledMessage)) {
140
  if (!empty($registerDisabledRedirectURL)) {
141
  /**
142
  * There is no custom message and it is a custom redirect url, so we need to inform the user with our own message.
@@ -421,12 +421,12 @@ class NextendSocialUser {
421
  if (NextendSocialLogin::$settings->get('store_name') == 1) {
422
  $first_name = $this->getAuthUserData('first_name');
423
  if (!empty($first_name)) {
424
- add_user_meta($user_id, 'billing_first_name', $first_name);
425
  }
426
 
427
  $last_name = $this->getAuthUserData('last_name');
428
  if (!empty($last_name)) {
429
- add_user_meta($user_id, 'billing_last_name', $last_name);
430
  }
431
  }
432
  }
129
 
130
  $proxyPage = NextendSocialLogin::getProxyPage();
131
  if ($proxyPage) {
132
+ if (empty($registerDisabledMessage) && $registerDisabledMessage !== false) {
133
  /**
134
  * There is no custom message and proxy page is used, so we need to inform the user with our own message.
135
  */
136
  $registerDisabledMessage = $defaultDisabledMessage;
137
  }
138
  } else {
139
+ if (empty($registerDisabledMessage) && $registerDisabledMessage !== false) {
140
  if (!empty($registerDisabledRedirectURL)) {
141
  /**
142
  * There is no custom message and it is a custom redirect url, so we need to inform the user with our own message.
421
  if (NextendSocialLogin::$settings->get('store_name') == 1) {
422
  $first_name = $this->getAuthUserData('first_name');
423
  if (!empty($first_name)) {
424
+ update_user_meta($user_id, 'billing_first_name', $first_name);
425
  }
426
 
427
  $last_name = $this->getAuthUserData('last_name');
428
  if (!empty($last_name)) {
429
+ update_user_meta($user_id, 'billing_last_name', $last_name);
430
  }
431
  }
432
  }
includes/userData.php CHANGED
@@ -174,6 +174,7 @@ class NextendSocialUserData {
174
  } else {
175
  $postUrl = add_query_arg('loginSocial', $this->provider->getId(), NextendSocialLogin::getLoginUrl('login_post'));
176
  }
 
177
  ob_start();
178
  ?>
179
  <form name="registerform" id="registerform" action="<?php echo esc_url($postUrl); ?>" method="post">
@@ -185,7 +186,7 @@ class NextendSocialUserData {
185
 
186
  <br class="clear"/>
187
  <p class="submit"><input type="submit" name="wp-submit" id="wp-submit"
188
- class="button button-primary button-large" value="<?php esc_attr_e('Register'); ?>"/>
189
  </p>
190
  </form>
191
  <?php
174
  } else {
175
  $postUrl = add_query_arg('loginSocial', $this->provider->getId(), NextendSocialLogin::getLoginUrl('login_post'));
176
  }
177
+
178
  ob_start();
179
  ?>
180
  <form name="registerform" id="registerform" action="<?php echo esc_url($postUrl); ?>" method="post">
186
 
187
  <br class="clear"/>
188
  <p class="submit"><input type="submit" name="wp-submit" id="wp-submit"
189
+ class="button button-primary button-large" value="<?php echo esc_attr_x('Register', 'Register form submit button label', 'nextend-facebook-connect'); ?>"/>
190
  </p>
191
  </form>
192
  <?php
js/nsl.js CHANGED
@@ -59,7 +59,9 @@ function checkWebView() {
59
  function _detectBrowser(ua) {
60
  var android = /Android/.test(ua);
61
 
62
- if (/CriOS/.test(ua)) {
 
 
63
  return "Chrome for iOS";
64
  } else if (/Edge/.test(ua)) {
65
  return "Edge";
@@ -82,7 +84,11 @@ function checkWebView() {
82
  }
83
 
84
  function _detectBrowserVersion(ua, browser) {
85
- if (browser === "Chrome for iOS") {
 
 
 
 
86
  return _getVersion(ua, "CriOS/");
87
  } else if (browser === "Edge") {
88
  return _getVersion(ua, "Edge/");
@@ -168,79 +174,87 @@ function checkWebView() {
168
  function isAllowedWebViewForUserAgent() {
169
  var nav = window.navigator || {};
170
  var ua = nav.userAgent || "";
171
- if (/Instagram/.test(ua)) {
172
- /*Instagram WebView*/
173
- return true;
174
- } else if (/FBAV/.test(ua) || /FBAN/.test(ua)) {
175
- /*Facebook WebView*/
 
176
  return true;
177
  }
178
 
179
  return false;
180
  }
181
 
182
- window._nsl.push(function ($) {
183
 
184
  window.nslRedirect = function (url) {
185
- $('<div style="position:fixed;z-index:1000000;left:0;top:0;width:100%;height:100%;"></div>').appendTo('body');
 
 
186
  window.location = url;
187
  };
188
 
189
  var targetWindow = _targetWindow || 'prefer-popup',
190
  lastPopup = false;
191
 
192
- $(document.body).on('click', 'a[data-plugin="nsl"][data-action="connect"],a[data-plugin="nsl"][data-action="link"]', function (e) {
193
- if (lastPopup && !lastPopup.closed) {
194
- e.preventDefault();
195
- lastPopup.focus();
196
- } else {
197
-
198
- var $target = $(this),
199
- href = $target.attr('href'),
200
- success = false;
201
- if (href.indexOf('?') !== -1) {
202
- href += '&';
203
  } else {
204
- href += '?';
205
- }
206
- var redirectTo = $target.data('redirect');
207
- if (redirectTo === 'current') {
208
- href += 'redirect=' + encodeURIComponent(window.location.href) + '&';
209
- } else if (redirectTo && redirectTo !== '') {
210
- href += 'redirect=' + encodeURIComponent(redirectTo) + '&';
211
- }
212
 
213
- if (targetWindow !== 'prefer-same-window' && checkWebView()) {
214
- targetWindow = 'prefer-same-window';
215
- }
 
 
 
 
216
 
217
- if (targetWindow === 'prefer-popup') {
 
 
 
 
 
218
 
219
- lastPopup = NSLPopup(href + 'display=popup', 'nsl-social-connect', $target.data('popupwidth'), $target.data('popupheight'));
220
- if (lastPopup) {
221
- success = true;
222
- e.preventDefault();
223
  }
224
- } else if (targetWindow === 'prefer-new-tab') {
225
- var newTab = window.open(href + 'display=popup', '_blank');
226
- if (newTab) {
227
- if (window.focus) {
228
- newTab.focus();
 
 
 
 
 
 
 
 
 
 
229
  }
230
- success = true;
231
- e.preventDefault();
232
  }
233
- }
234
 
235
- if (!success) {
236
- window.location = href;
237
- e.preventDefault();
 
238
  }
239
- }
240
  });
241
 
242
- var googleLoginButton = $('a[data-plugin="nsl"][data-provider="google"]');
243
- if (googleLoginButton.length && checkWebView() && !isAllowedWebViewForUserAgent()) {
244
- googleLoginButton.remove();
 
 
245
  }
246
  });
59
  function _detectBrowser(ua) {
60
  var android = /Android/.test(ua);
61
 
62
+ if (/Opera Mini/.test(ua) || / OPR/.test(ua) || / OPT/.test(ua)) {
63
+ return "Opera";
64
+ } else if (/CriOS/.test(ua)) {
65
  return "Chrome for iOS";
66
  } else if (/Edge/.test(ua)) {
67
  return "Edge";
84
  }
85
 
86
  function _detectBrowserVersion(ua, browser) {
87
+ if (browser === "Opera") {
88
+ return /Opera Mini/.test(ua) ? _getVersion(ua, "Opera Mini/") :
89
+ / OPR/.test(ua) ? _getVersion(ua, " OPR/") :
90
+ _getVersion(ua, " OPT/");
91
+ } else if (browser === "Chrome for iOS") {
92
  return _getVersion(ua, "CriOS/");
93
  } else if (browser === "Edge") {
94
  return _getVersion(ua, "Edge/");
174
  function isAllowedWebViewForUserAgent() {
175
  var nav = window.navigator || {};
176
  var ua = nav.userAgent || "";
177
+ if (ua.match(new RegExp([
178
+ 'Instagram',
179
+ 'FBAV',
180
+ 'FBAN',
181
+ 'Line',
182
+ ].join('|')))) {
183
  return true;
184
  }
185
 
186
  return false;
187
  }
188
 
189
+ window._nslDOMReady(function () {
190
 
191
  window.nslRedirect = function (url) {
192
+ var overlay = document.createElement('div');
193
+ overlay.style.cssText = "position:fixed;z-index:1000000;left:0;top:0;width:100%;height:100%;";
194
+ document.body.appendChild(overlay);
195
  window.location = url;
196
  };
197
 
198
  var targetWindow = _targetWindow || 'prefer-popup',
199
  lastPopup = false;
200
 
201
+
202
+ var buttonLinks = document.querySelectorAll(' a[data-plugin="nsl"][data-action="connect"], a[data-plugin="nsl"][data-action="link"]');
203
+ buttonLinks.forEach(function (buttonLink) {
204
+ buttonLink.addEventListener('click', function (e) {
205
+ if (lastPopup && !lastPopup.closed) {
206
+ e.preventDefault();
207
+ lastPopup.focus();
 
 
 
 
208
  } else {
 
 
 
 
 
 
 
 
209
 
210
+ var href = this.href,
211
+ success = false;
212
+ if (href.indexOf('?') !== -1) {
213
+ href += '&';
214
+ } else {
215
+ href += '?';
216
+ }
217
 
218
+ var redirectTo = this.dataset.redirect;
219
+ if (redirectTo === 'current') {
220
+ href += 'redirect=' + encodeURIComponent(window.location.href) + '&';
221
+ } else if (redirectTo && redirectTo !== '') {
222
+ href += 'redirect=' + encodeURIComponent(redirectTo) + '&';
223
+ }
224
 
225
+ if (targetWindow !== 'prefer-same-window' && checkWebView()) {
226
+ targetWindow = 'prefer-same-window';
 
 
227
  }
228
+
229
+ if (targetWindow === 'prefer-popup') {
230
+ lastPopup = NSLPopup(href + 'display=popup', 'nsl-social-connect', this.dataset.popupwidth, this.dataset.popupheight);
231
+ if (lastPopup) {
232
+ success = true;
233
+ e.preventDefault();
234
+ }
235
+ } else if (targetWindow === 'prefer-new-tab') {
236
+ var newTab = window.open(href + 'display=popup', '_blank');
237
+ if (newTab) {
238
+ if (window.focus) {
239
+ newTab.focus();
240
+ }
241
+ success = true;
242
+ e.preventDefault();
243
  }
 
 
244
  }
 
245
 
246
+ if (!success) {
247
+ window.location = href;
248
+ e.preventDefault();
249
+ }
250
  }
251
+ });
252
  });
253
 
254
+ var googleLoginButtons = document.querySelectorAll(' a[data-plugin="nsl"][data-provider="google"]');
255
+ if (googleLoginButtons.length && checkWebView() && !isAllowedWebViewForUserAgent()) {
256
+ googleLoginButtons.forEach(function (googleLoginButton) {
257
+ googleLoginButton.remove();
258
+ });
259
  }
260
  });
languages/nextend-facebook-connect-de_DE.mo CHANGED
Binary file
languages/nextend-facebook-connect-de_DE.po CHANGED
@@ -1,15 +1,15 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: nextend-facebook-connect\n"
4
- "POT-Creation-Date: 2021-01-27 13:56+0100\n"
5
- "PO-Revision-Date: 2021-01-27 13:56+0100\n"
6
  "Last-Translator: \n"
7
  "Language-Team: nextend-facebook-connect\n"
8
  "Language: de\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 2.4.1\n"
13
  "X-Poedit-Basepath: ../..\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
@@ -112,29 +112,29 @@ msgstr ""
112
  msgid "User"
113
  msgstr ""
114
 
115
- #: nextend-facebook-connect/admin/admin.php:206
116
  #, php-format
117
  msgid "%s needs json_decode function."
118
  msgstr ""
119
 
120
- #: nextend-facebook-connect/admin/admin.php:206
121
  msgid "Please contact your server administrator and ask for solution!"
122
  msgstr ""
123
 
124
- #: nextend-facebook-connect/admin/admin.php:238
125
- #: nextend-facebook-connect/admin/admin.php:268
126
  msgid "Settings saved."
127
  msgstr ""
128
 
129
- #: nextend-facebook-connect/admin/admin.php:247
130
  msgid "The activation was successful"
131
  msgstr ""
132
 
133
- #: nextend-facebook-connect/admin/admin.php:258
134
  msgid "Deactivate completed."
135
  msgstr ""
136
 
137
- #: nextend-facebook-connect/admin/admin.php:437
138
  #: nextend-facebook-connect/admin/templates-provider/menu.php:15
139
  #: nextend-facebook-connect/admin/templates/providers.php:89
140
  #: nextend-facebook-connect/admin/templates/providers.php:101
@@ -142,7 +142,7 @@ msgstr ""
142
  msgid "Settings"
143
  msgstr ""
144
 
145
- #: nextend-facebook-connect/admin/admin.php:520
146
  #: nextend-facebook-connect/includes/oauth2.php:143
147
  #: nextend-facebook-connect/includes/oauth2.php:288
148
  #: nextend-facebook-connect/providers/facebook/facebook-client.php:84
@@ -153,7 +153,7 @@ msgstr ""
153
  msgid "Unexpected response: %s"
154
  msgstr ""
155
 
156
- #: nextend-facebook-connect/admin/admin.php:581
157
  #: nextend-facebook-connect/admin/templates/fix-redirect-uri.php:21
158
  #, php-format
159
  msgid ""
@@ -161,31 +161,31 @@ msgid ""
161
  "URIs in the related social applications."
162
  msgstr ""
163
 
164
- #: nextend-facebook-connect/admin/admin.php:582
165
  #: nextend-social-login-pro/providers/apple/apple.php:310
166
  msgid "Fix Error"
167
  msgstr ""
168
 
169
- #: nextend-facebook-connect/admin/admin.php:582
170
  msgid "Oauth Redirect URI"
171
  msgstr ""
172
 
173
- #: nextend-facebook-connect/admin/admin.php:599
174
  #, php-format
175
  msgid ""
176
  "%1$s detected that %2$s installed on your site. You need the Pro Addon to "
177
  "display Social Login buttons in %2$s login form!"
178
  msgstr ""
179
 
180
- #: nextend-facebook-connect/admin/admin.php:600
181
  msgid "Dismiss and check Pro Addon"
182
  msgstr ""
183
 
184
- #: nextend-facebook-connect/admin/admin.php:600
185
  msgid "Dismiss"
186
  msgstr ""
187
 
188
- #: nextend-facebook-connect/admin/admin.php:606
189
  #, php-format
190
  msgid ""
191
  "%1$s detected that %2$s installed on your site. You must set \"<b>Page for "
@@ -193,35 +193,35 @@ msgid ""
193
  "work properly."
194
  msgstr ""
195
 
196
- #: nextend-facebook-connect/admin/admin.php:607
197
  msgid "Fix now"
198
  msgstr ""
199
 
200
- #: nextend-facebook-connect/admin/admin.php:631
201
  msgid "Activate your Pro Addon"
202
  msgstr ""
203
 
204
- #: nextend-facebook-connect/admin/admin.php:632
205
  msgid ""
206
  "To be able to use the Pro features, you need to activate Nextend Social "
207
  "Login Pro Addon. You can do this by clicking on the Activate button below "
208
  "then select the related purchase."
209
  msgstr ""
210
 
211
- #: nextend-facebook-connect/admin/admin.php:637
212
  #: nextend-social-login-pro/nextend-social-login-pro.php:110
213
  msgid "Activate"
214
  msgstr ""
215
 
216
- #: nextend-facebook-connect/admin/admin.php:735
217
  msgid "License key"
218
  msgstr ""
219
 
220
- #: nextend-facebook-connect/admin/admin.php:758
221
  msgid "OAuth proxy page"
222
  msgstr ""
223
 
224
- #: nextend-facebook-connect/admin/admin.php:761
225
  msgid "Register flow page"
226
  msgstr ""
227
 
@@ -230,51 +230,51 @@ msgstr ""
230
  msgid "You have logged in successfully."
231
  msgstr ""
232
 
233
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:80
234
  msgid "Login label"
235
  msgstr ""
236
 
237
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:85
238
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:101
239
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:114
240
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:125
241
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:154
242
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:184
243
  #: nextend-facebook-connect/admin/templates/settings/privacy.php:53
244
  msgid "Reset to default"
245
  msgstr ""
246
 
247
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:95
248
  msgid "Register label"
249
  msgstr ""
250
 
251
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:108
252
  msgid "Link label"
253
  msgstr ""
254
 
255
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:120
256
  msgid "Unlink label"
257
  msgstr ""
258
 
259
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:131
260
  msgid "Default button"
261
  msgstr ""
262
 
263
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:147
264
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:177
265
  msgid "Use custom button"
266
  msgstr ""
267
 
268
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:154
269
  #, php-format
270
  msgid "Use the %s in your custom button's code to make the label show up."
271
  msgstr ""
272
 
273
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:162
274
  msgid "Icon button"
275
  msgstr ""
276
 
277
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:193
278
  #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:140
279
  #: nextend-facebook-connect/admin/templates-provider/sync-data.php:104
280
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:170
@@ -452,7 +452,6 @@ msgid "Default"
452
  msgstr ""
453
 
454
  #: nextend-facebook-connect/admin/templates-provider/sync-data.php:50
455
- #: nextend-facebook-connect/includes/userData.php:188
456
  msgid "Register"
457
  msgstr ""
458
 
@@ -1387,7 +1386,7 @@ msgid "Avatar"
1387
  msgstr ""
1388
 
1389
  #: nextend-facebook-connect/admin/templates/settings/privacy.php:102
1390
- #: nextend-facebook-connect/includes/provider.php:1100
1391
  msgid "Access token"
1392
  msgstr ""
1393
 
@@ -1501,6 +1500,14 @@ msgid_plural "Avatar <span class=\"count\">(%s)</span>"
1501
  msgstr[0] ""
1502
  msgstr[1] ""
1503
 
 
 
 
 
 
 
 
 
1504
  #: nextend-facebook-connect/includes/compat-wp-login.php:63
1505
  #, php-format
1506
  msgid "%1$s &lsaquo; %2$s &#8212; WordPress"
@@ -1571,39 +1578,39 @@ msgid "Please save your changes before verifying settings."
1571
  msgstr ""
1572
 
1573
  #: nextend-facebook-connect/includes/provider.php:358
1574
- #: nextend-facebook-connect/includes/provider.php:717
1575
- #: nextend-facebook-connect/includes/provider.php:725
1576
  msgid "Authentication successful"
1577
  msgstr ""
1578
 
1579
- #: nextend-facebook-connect/includes/provider.php:654
1580
  #: nextend-facebook-connect/includes/user.php:168
1581
  #: nextend-facebook-connect/includes/user.php:597
1582
  msgid "Authentication error"
1583
  msgstr ""
1584
 
1585
- #: nextend-facebook-connect/includes/provider.php:669
1586
  msgid "Unlink successful."
1587
  msgstr ""
1588
 
1589
- #: nextend-facebook-connect/includes/provider.php:671
1590
  msgid "Unlink is not allowed!"
1591
  msgstr ""
1592
 
1593
- #: nextend-facebook-connect/includes/provider.php:886
1594
- #: nextend-facebook-connect/includes/provider.php:893
1595
  msgid "The test was successful"
1596
  msgstr ""
1597
 
1598
- #: nextend-facebook-connect/includes/provider.php:939
1599
  msgid "Authentication failed"
1600
  msgstr ""
1601
 
1602
- #: nextend-facebook-connect/includes/provider.php:1092
1603
  msgid "Identifier"
1604
  msgstr ""
1605
 
1606
- #: nextend-facebook-connect/includes/provider.php:1108
1607
  msgid "Profile picture"
1608
  msgstr ""
1609
 
@@ -1634,6 +1641,11 @@ msgstr ""
1634
  msgid "Register For This Site!"
1635
  msgstr ""
1636
 
 
 
 
 
 
1637
  #: nextend-facebook-connect/nextend-facebook-connect.php:37
1638
  #, php-format
1639
  msgid "%1$s requires PHP version %2$s+, plugin is currently NOT ACTIVE."
@@ -1657,12 +1669,12 @@ msgstr ""
1657
  msgid "Update now!"
1658
  msgstr ""
1659
 
1660
- #: nextend-facebook-connect/nextend-social-login.php:762
1661
- #: nextend-facebook-connect/nextend-social-login.php:1140
1662
  msgid "Social Login"
1663
  msgstr ""
1664
 
1665
- #: nextend-facebook-connect/nextend-social-login.php:1121
1666
  msgid "Social Accounts"
1667
  msgstr ""
1668
 
@@ -1704,7 +1716,6 @@ msgstr ""
1704
  #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:9
1705
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:25
1706
  #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:9
1707
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:17
1708
  #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:9
1709
  #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:9
1710
  #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:20
@@ -1812,7 +1823,7 @@ msgstr ""
1812
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:26
1813
  msgid ""
1814
  "Click on the \"<b>Create App</b>\" button and in the Popup choose the "
1815
- "\"<b>Build Connected Experiences</b>\" option!"
1816
  msgstr ""
1817
 
1818
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:27
@@ -1836,8 +1847,7 @@ msgid ""
1836
  msgstr ""
1837
 
1838
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:30
1839
- msgid ""
1840
- "Click the \"<b>Create App ID</b>\" button and complete the Security Check."
1841
  msgstr ""
1842
 
1843
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:31
@@ -1950,8 +1960,37 @@ msgid ""
1950
  msgstr ""
1951
 
1952
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:60
1953
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:40
1954
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:37
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1955
  #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:39
1956
  #: nextend-social-login-pro/providers/apple/admin/getting-started.php:122
1957
  #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:30
@@ -2088,7 +2127,6 @@ msgid ""
2088
  msgstr ""
2089
 
2090
  #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:12
2091
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:34
2092
  #, php-format
2093
  msgid ""
2094
  "Add the following URL to the \"<b>Authorised redirect URIs</b>\" field: <b>"
@@ -2096,37 +2134,60 @@ msgid ""
2096
  msgstr ""
2097
 
2098
  #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:13
2099
- #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:13
2100
  #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:14
2101
  msgid "Click on \"<b>Save</b>\""
2102
  msgstr ""
2103
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2104
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:18
 
2105
  msgid ""
2106
  "If you don't have a project yet, you'll need to create one. You can do this "
2107
- "by clicking on the blue \"<b>Create</b>\" button on the right side! ( If "
2108
- "you already have a project, click on the name of your project in the "
2109
- "dashboard instead, which will bring up a modal and click <b>\"New Project\"</"
2110
- "b>. )"
2111
  msgstr ""
2112
 
2113
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:19
2114
- msgid "Name your project and then click on the \"<b>Create</b>\" button again"
 
2115
  msgstr ""
2116
 
2117
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:20
2118
- msgid "Once you have a project, you'll end up in the dashboard."
 
 
 
2119
  msgstr ""
2120
 
2121
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:21
2122
- msgid "Click the “<b>OAuth consent screen</b>” button on the left hand side."
 
2123
  msgstr ""
2124
 
2125
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:22
 
2126
  msgid ""
2127
- "Choose a <b>User Type</b> according to your needs. If you want to enable the "
2128
- "social login with Google for any users with a Google account, then pick the "
2129
- "External option!"
2130
  msgstr ""
2131
 
2132
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:24
@@ -2138,51 +2199,81 @@ msgid ""
2138
  msgstr ""
2139
 
2140
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:27
 
2141
  msgid ""
2142
- "Enter a name for your App to the \"<b>Application name</b>\" field, which "
2143
- "will appear as the name of the app asking for consent."
2144
  msgstr ""
2145
 
2146
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:28
2147
  #, php-format
2148
  msgid ""
2149
- "Fill the \"<b>Authorized domains</b>\" field with your domain name probably: "
2150
- "<b>%s</b> without subdomains!"
2151
  msgstr ""
2152
 
2153
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:29
2154
- msgid "Save your settings!"
 
 
 
2155
  msgstr ""
2156
 
2157
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:30
2158
  #, php-format
2159
  msgid ""
2160
- "On the left side, click on the \"<b>%1$s</b>\" menu point, then click the "
2161
- "\"<b>%2$s</b>\" button in the top bar."
2162
  msgstr ""
2163
 
2164
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:31
2165
- msgid "Choose the \"<b>OAuth client ID</b>\" option."
 
 
 
2166
  msgstr ""
2167
 
2168
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:32
2169
- msgid "Select the \"<b>Web application</b>\" under Application type."
 
 
 
2170
  msgstr ""
2171
 
2172
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:33
2173
- msgid "Enter a \"<b>Name</b>\" for your OAuth client ID."
 
 
 
 
 
 
2174
  msgstr ""
2175
 
2176
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:35
2177
- msgid "Click on the \"<b>Create</b>\" button"
 
2178
  msgstr ""
2179
 
2180
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:36
 
 
 
 
 
 
 
 
 
 
 
 
 
2181
  msgid ""
2182
  "A modal should pop up with your credentials. If that doesn't happen, go to "
2183
- "the Credentials in the left hand menu and select your app by clicking on its "
2184
- "name and you'll be able to copy-paste the \"<b>Client ID</b>\" and "
2185
- "\"<b>Client Secret</b>\" from there."
2186
  msgstr ""
2187
 
2188
  #: nextend-facebook-connect/providers/google/admin/settings.php:27
@@ -2243,7 +2334,6 @@ msgid ""
2243
  msgstr ""
2244
 
2245
  #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:11
2246
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:27
2247
  msgid "Click on the <b>Edit</b> button at <b>Authentication settings</b>."
2248
  msgstr ""
2249
 
@@ -2252,20 +2342,10 @@ msgstr ""
2252
  msgid "Add the following URL to the \"<b>Callback URLs</b>\" field: <b>%s</b>"
2253
  msgstr ""
2254
 
2255
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:17
2256
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:25
2257
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:38
2258
- #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:9
2259
- #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:16
2260
- #: nextend-social-login-pro/providers/github/admin/getting-started.php:16
2261
- #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:9
2262
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:17
2263
- #: nextend-social-login-pro/providers/vk/admin/getting-started.php:16
2264
- #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:9
2265
- #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:16
2266
- #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:17
2267
  #, php-format
2268
- msgid "Log in with your %s credentials if you are not logged in."
 
2269
  msgstr ""
2270
 
2271
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:18
@@ -2282,68 +2362,72 @@ msgid ""
2282
  msgstr ""
2283
 
2284
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:20
2285
- msgid "Click on <b>+ New Project</b>!"
 
2286
  msgstr ""
2287
 
2288
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:21
2289
  msgid ""
2290
  "Name your project, and go through the basic setup. You’ll need to select "
2291
- "your use case and give a description."
2292
  msgstr ""
2293
 
2294
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:22
2295
- msgid "Create a new app, or select an existing one, then click <b>Complete</b>"
 
2296
  msgstr ""
2297
 
2298
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:23
 
2299
  msgid ""
2300
- "You’ll find your API key and secret on this page. Copy and paste the <b>API "
2301
- "key</b> and the <b>API secret key</b> to the corresponding fields at Nextend "
2302
- "Social Login and press <b>Save Changes</b>."
2303
  msgstr ""
2304
 
2305
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:24
2306
  #, php-format
2307
- msgid "Click on the <b>App Settings</b> button at %s."
 
 
2308
  msgstr ""
2309
 
2310
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:25
2311
- msgid "Find the Apps section, and the app you created a few steps ago."
 
2312
  msgstr ""
2313
 
2314
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:26
2315
- msgid "Click on the App settings icon. (The one that looks like a gear.)"
2316
- msgstr ""
2317
-
2318
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:28
2319
- msgid "Switch on the <b>Enable 3-legged OAuth</b> option."
2320
  msgstr ""
2321
 
2322
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:29
2323
  #, php-format
2324
- msgid "Add the following URL to the <b>Callback URLs</b> field: <b>%s</b>"
2325
  msgstr ""
2326
 
2327
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:30
2328
  #, php-format
2329
- msgid "Enter your site's URL to the <b>Website URL</b> field: <b>%s</b>"
2330
  msgstr ""
2331
 
2332
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:31
 
2333
  msgid ""
2334
  "If you want to get the email address as well, then don’t forget to enable "
2335
- "the <b>Request email address from users</b> option. In this case you also "
2336
- "need to fill the <b>Terms of service</b> and the <b>Privacy policy</b> "
2337
- "fields with the corresponding URLs!"
2338
  msgstr ""
2339
 
2340
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:32
2341
- msgid "Click on <b>Save</b>."
 
2342
  msgstr ""
2343
 
2344
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:33
2345
  #, php-format
2346
- msgid "Go back to Nextend Social Login and <b>Verify</b> your %s provider."
2347
  msgstr ""
2348
 
2349
  #: nextend-facebook-connect/providers/twitter/admin/settings.php:27
@@ -2662,8 +2746,10 @@ msgstr ""
2662
 
2663
  #: nextend-social-login-pro/providers/apple/admin/getting-started.php:35
2664
  msgid ""
2665
- "Make sure you have an <strong>active subscription for the Apple Developer "
2666
- "Program</strong>!"
 
 
2667
  msgstr ""
2668
 
2669
  #: nextend-social-login-pro/providers/apple/admin/getting-started.php:36
@@ -3572,34 +3658,34 @@ msgstr ""
3572
  msgid "Required permission: %1$s"
3573
  msgstr ""
3574
 
3575
- #: nextend-social-login-pro/template-parts/buddypress/login/above-separator.php:10
3576
- #: nextend-social-login-pro/template-parts/buddypress/login/below-separator.php:10
3577
- #: nextend-social-login-pro/template-parts/embedded-login/above-separator.php:10
3578
- #: nextend-social-login-pro/template-parts/embedded-login/below-separator.php:10
3579
- #: nextend-social-login-pro/template-parts/login/above-separator.php:20
3580
- #: nextend-social-login-pro/template-parts/login/below-separator.php:8
3581
- #: nextend-social-login-pro/template-parts/memberpress/login/above-separator.php:10
3582
- #: nextend-social-login-pro/template-parts/memberpress/login/below-separator.php:10
3583
- #: nextend-social-login-pro/template-parts/memberpress/sign-up/above-separator.php:10
3584
- #: nextend-social-login-pro/template-parts/memberpress/sign-up/below-separator.php:10
3585
- #: nextend-social-login-pro/template-parts/ultimate-member/login/above-separator.php:10
3586
- #: nextend-social-login-pro/template-parts/ultimate-member/login/below-separator.php:10
3587
- #: nextend-social-login-pro/template-parts/ultimate-member/register/above-separator.php:10
3588
- #: nextend-social-login-pro/template-parts/ultimate-member/register/below-separator.php:10
3589
- #: nextend-social-login-pro/template-parts/userpro/login/above-separator.php:10
3590
- #: nextend-social-login-pro/template-parts/userpro/login/below-separator.php:10
3591
- #: nextend-social-login-pro/template-parts/userpro/register/above-separator.php:10
3592
- #: nextend-social-login-pro/template-parts/userpro/register/below-separator.php:10
3593
- #: nextend-social-login-pro/template-parts/woocommerce/billing/above-separator.php:11
3594
- #: nextend-social-login-pro/template-parts/woocommerce/billing/below-separator.php:11
3595
- #: nextend-social-login-pro/template-parts/woocommerce/billing/default-separator-after.php:7
3596
- #: nextend-social-login-pro/template-parts/woocommerce/billing/default-separator-before.php:7
3597
- #: nextend-social-login-pro/template-parts/woocommerce/checkout-for-woocommerce/above-separator.php:15
3598
- #: nextend-social-login-pro/template-parts/woocommerce/checkout-for-woocommerce/below-separator.php:15
3599
- #: nextend-social-login-pro/template-parts/woocommerce/login/above-separator.php:10
3600
- #: nextend-social-login-pro/template-parts/woocommerce/login/below-separator.php:10
3601
- #: nextend-social-login-pro/template-parts/woocommerce/register/above-separator.php:10
3602
- #: nextend-social-login-pro/template-parts/woocommerce/register/below-separator.php:10
3603
  msgid "OR"
3604
  msgstr "ODER"
3605
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: nextend-facebook-connect\n"
4
+ "POT-Creation-Date: 2021-06-16 14:00+0200\n"
5
+ "PO-Revision-Date: 2021-06-16 14:00+0200\n"
6
  "Last-Translator: \n"
7
  "Language-Team: nextend-facebook-connect\n"
8
  "Language: de\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 3.0\n"
13
  "X-Poedit-Basepath: ../..\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
112
  msgid "User"
113
  msgstr ""
114
 
115
+ #: nextend-facebook-connect/admin/admin.php:204
116
  #, php-format
117
  msgid "%s needs json_decode function."
118
  msgstr ""
119
 
120
+ #: nextend-facebook-connect/admin/admin.php:204
121
  msgid "Please contact your server administrator and ask for solution!"
122
  msgstr ""
123
 
124
+ #: nextend-facebook-connect/admin/admin.php:236
125
+ #: nextend-facebook-connect/admin/admin.php:266
126
  msgid "Settings saved."
127
  msgstr ""
128
 
129
+ #: nextend-facebook-connect/admin/admin.php:245
130
  msgid "The activation was successful"
131
  msgstr ""
132
 
133
+ #: nextend-facebook-connect/admin/admin.php:256
134
  msgid "Deactivate completed."
135
  msgstr ""
136
 
137
+ #: nextend-facebook-connect/admin/admin.php:435
138
  #: nextend-facebook-connect/admin/templates-provider/menu.php:15
139
  #: nextend-facebook-connect/admin/templates/providers.php:89
140
  #: nextend-facebook-connect/admin/templates/providers.php:101
142
  msgid "Settings"
143
  msgstr ""
144
 
145
+ #: nextend-facebook-connect/admin/admin.php:518
146
  #: nextend-facebook-connect/includes/oauth2.php:143
147
  #: nextend-facebook-connect/includes/oauth2.php:288
148
  #: nextend-facebook-connect/providers/facebook/facebook-client.php:84
153
  msgid "Unexpected response: %s"
154
  msgstr ""
155
 
156
+ #: nextend-facebook-connect/admin/admin.php:579
157
  #: nextend-facebook-connect/admin/templates/fix-redirect-uri.php:21
158
  #, php-format
159
  msgid ""
161
  "URIs in the related social applications."
162
  msgstr ""
163
 
164
+ #: nextend-facebook-connect/admin/admin.php:580
165
  #: nextend-social-login-pro/providers/apple/apple.php:310
166
  msgid "Fix Error"
167
  msgstr ""
168
 
169
+ #: nextend-facebook-connect/admin/admin.php:580
170
  msgid "Oauth Redirect URI"
171
  msgstr ""
172
 
173
+ #: nextend-facebook-connect/admin/admin.php:597
174
  #, php-format
175
  msgid ""
176
  "%1$s detected that %2$s installed on your site. You need the Pro Addon to "
177
  "display Social Login buttons in %2$s login form!"
178
  msgstr ""
179
 
180
+ #: nextend-facebook-connect/admin/admin.php:598
181
  msgid "Dismiss and check Pro Addon"
182
  msgstr ""
183
 
184
+ #: nextend-facebook-connect/admin/admin.php:598
185
  msgid "Dismiss"
186
  msgstr ""
187
 
188
+ #: nextend-facebook-connect/admin/admin.php:604
189
  #, php-format
190
  msgid ""
191
  "%1$s detected that %2$s installed on your site. You must set \"<b>Page for "
193
  "work properly."
194
  msgstr ""
195
 
196
+ #: nextend-facebook-connect/admin/admin.php:605
197
  msgid "Fix now"
198
  msgstr ""
199
 
200
+ #: nextend-facebook-connect/admin/admin.php:629
201
  msgid "Activate your Pro Addon"
202
  msgstr ""
203
 
204
+ #: nextend-facebook-connect/admin/admin.php:630
205
  msgid ""
206
  "To be able to use the Pro features, you need to activate Nextend Social "
207
  "Login Pro Addon. You can do this by clicking on the Activate button below "
208
  "then select the related purchase."
209
  msgstr ""
210
 
211
+ #: nextend-facebook-connect/admin/admin.php:635
212
  #: nextend-social-login-pro/nextend-social-login-pro.php:110
213
  msgid "Activate"
214
  msgstr ""
215
 
216
+ #: nextend-facebook-connect/admin/admin.php:733
217
  msgid "License key"
218
  msgstr ""
219
 
220
+ #: nextend-facebook-connect/admin/admin.php:756
221
  msgid "OAuth proxy page"
222
  msgstr ""
223
 
224
+ #: nextend-facebook-connect/admin/admin.php:759
225
  msgid "Register flow page"
226
  msgstr ""
227
 
230
  msgid "You have logged in successfully."
231
  msgstr ""
232
 
233
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:86
234
  msgid "Login label"
235
  msgstr ""
236
 
237
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:91
238
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:107
239
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:120
240
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:131
241
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:160
242
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:190
243
  #: nextend-facebook-connect/admin/templates/settings/privacy.php:53
244
  msgid "Reset to default"
245
  msgstr ""
246
 
247
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:101
248
  msgid "Register label"
249
  msgstr ""
250
 
251
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:114
252
  msgid "Link label"
253
  msgstr ""
254
 
255
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:126
256
  msgid "Unlink label"
257
  msgstr ""
258
 
259
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:137
260
  msgid "Default button"
261
  msgstr ""
262
 
263
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:153
264
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:183
265
  msgid "Use custom button"
266
  msgstr ""
267
 
268
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:160
269
  #, php-format
270
  msgid "Use the %s in your custom button's code to make the label show up."
271
  msgstr ""
272
 
273
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:168
274
  msgid "Icon button"
275
  msgstr ""
276
 
277
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:199
278
  #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:140
279
  #: nextend-facebook-connect/admin/templates-provider/sync-data.php:104
280
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:170
452
  msgstr ""
453
 
454
  #: nextend-facebook-connect/admin/templates-provider/sync-data.php:50
 
455
  msgid "Register"
456
  msgstr ""
457
 
1386
  msgstr ""
1387
 
1388
  #: nextend-facebook-connect/admin/templates/settings/privacy.php:102
1389
+ #: nextend-facebook-connect/includes/provider.php:1102
1390
  msgid "Access token"
1391
  msgstr ""
1392
 
1500
  msgstr[0] ""
1501
  msgstr[1] ""
1502
 
1503
+ #: nextend-facebook-connect/includes/avatar.php:399
1504
+ msgid "Invalid URL Provided."
1505
+ msgstr ""
1506
+
1507
+ #: nextend-facebook-connect/includes/avatar.php:404
1508
+ msgid "Could not create Temporary file."
1509
+ msgstr ""
1510
+
1511
  #: nextend-facebook-connect/includes/compat-wp-login.php:63
1512
  #, php-format
1513
  msgid "%1$s &lsaquo; %2$s &#8212; WordPress"
1578
  msgstr ""
1579
 
1580
  #: nextend-facebook-connect/includes/provider.php:358
1581
+ #: nextend-facebook-connect/includes/provider.php:719
1582
+ #: nextend-facebook-connect/includes/provider.php:727
1583
  msgid "Authentication successful"
1584
  msgstr ""
1585
 
1586
+ #: nextend-facebook-connect/includes/provider.php:656
1587
  #: nextend-facebook-connect/includes/user.php:168
1588
  #: nextend-facebook-connect/includes/user.php:597
1589
  msgid "Authentication error"
1590
  msgstr ""
1591
 
1592
+ #: nextend-facebook-connect/includes/provider.php:671
1593
  msgid "Unlink successful."
1594
  msgstr ""
1595
 
1596
+ #: nextend-facebook-connect/includes/provider.php:673
1597
  msgid "Unlink is not allowed!"
1598
  msgstr ""
1599
 
1600
+ #: nextend-facebook-connect/includes/provider.php:888
1601
+ #: nextend-facebook-connect/includes/provider.php:895
1602
  msgid "The test was successful"
1603
  msgstr ""
1604
 
1605
+ #: nextend-facebook-connect/includes/provider.php:941
1606
  msgid "Authentication failed"
1607
  msgstr ""
1608
 
1609
+ #: nextend-facebook-connect/includes/provider.php:1094
1610
  msgid "Identifier"
1611
  msgstr ""
1612
 
1613
+ #: nextend-facebook-connect/includes/provider.php:1110
1614
  msgid "Profile picture"
1615
  msgstr ""
1616
 
1641
  msgid "Register For This Site!"
1642
  msgstr ""
1643
 
1644
+ #: nextend-facebook-connect/includes/userData.php:189
1645
+ msgctxt "Register form submit button label"
1646
+ msgid "Register"
1647
+ msgstr ""
1648
+
1649
  #: nextend-facebook-connect/nextend-facebook-connect.php:37
1650
  #, php-format
1651
  msgid "%1$s requires PHP version %2$s+, plugin is currently NOT ACTIVE."
1669
  msgid "Update now!"
1670
  msgstr ""
1671
 
1672
+ #: nextend-facebook-connect/nextend-social-login.php:820
1673
+ #: nextend-facebook-connect/nextend-social-login.php:1199
1674
  msgid "Social Login"
1675
  msgstr ""
1676
 
1677
+ #: nextend-facebook-connect/nextend-social-login.php:1180
1678
  msgid "Social Accounts"
1679
  msgstr ""
1680
 
1716
  #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:9
1717
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:25
1718
  #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:9
 
1719
  #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:9
1720
  #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:9
1721
  #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:20
1823
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:26
1824
  msgid ""
1825
  "Click on the \"<b>Create App</b>\" button and in the Popup choose the "
1826
+ "\"<b>Consumer</b>\" App type!"
1827
  msgstr ""
1828
 
1829
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:27
1847
  msgstr ""
1848
 
1849
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:30
1850
+ msgid "Click the \"<b>Create App</b>\" button and complete the Security Check."
 
1851
  msgstr ""
1852
 
1853
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:31
1960
  msgstr ""
1961
 
1962
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:60
1963
+ msgid "Maintaining the Facebook App:"
1964
+ msgstr ""
1965
+
1966
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:61
1967
+ #, php-format
1968
+ msgid ""
1969
+ "<strong><u>Facebook Data Use Checkup:</u></strong> To protecting people's "
1970
+ "privacy, Facebook might requests you to fill some forms, so they can ensure "
1971
+ "that your API access and data use comply with the Facebook policies.\n"
1972
+ "If Facebook displays the \"%1$s\" modal for your App, then in our "
1973
+ "%2$sdocumentation%3$s you can find more information about the permissions "
1974
+ "that we need."
1975
+ msgstr ""
1976
+
1977
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:63
1978
+ #, php-format
1979
+ msgid ""
1980
+ "<strong><u>New Data Access Levels:</u></strong> Facebook started replacing "
1981
+ "the Development Mode / Live Mode switch in some Apps with %1$s ( earlier "
1982
+ "Development Mode ) and %2$s ( earlier Live mode ), which can be modified on "
1983
+ "the <strong>%3$s</strong> page. You can reach this page from the left hand "
1984
+ "menu of your App, under <strong>%4$s</strong>.\n"
1985
+ "If you want people outside of your business to be able to use their Faceook "
1986
+ "account to register and login over your App, then make sure you requested "
1987
+ "<strong>%2$s</strong> for the <strong>%5$s</strong> and <strong>%6$s</"
1988
+ "strong> permissions. "
1989
+ msgstr ""
1990
+
1991
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:67
1992
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:42
1993
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:35
1994
  #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:39
1995
  #: nextend-social-login-pro/providers/apple/admin/getting-started.php:122
1996
  #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:30
2127
  msgstr ""
2128
 
2129
  #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:12
 
2130
  #, php-format
2131
  msgid ""
2132
  "Add the following URL to the \"<b>Authorised redirect URIs</b>\" field: <b>"
2134
  msgstr ""
2135
 
2136
  #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:13
2137
+ #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:14
2138
  #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:14
2139
  msgid "Click on \"<b>Save</b>\""
2140
  msgstr ""
2141
 
2142
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:17
2143
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:17
2144
+ #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:25
2145
+ #: nextend-social-login-pro/providers/apple/admin/getting-started.php:38
2146
+ #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:9
2147
+ #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:16
2148
+ #: nextend-social-login-pro/providers/github/admin/getting-started.php:16
2149
+ #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:9
2150
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:17
2151
+ #: nextend-social-login-pro/providers/vk/admin/getting-started.php:16
2152
+ #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:9
2153
+ #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:16
2154
+ #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:17
2155
+ #, php-format
2156
+ msgid "Log in with your %s credentials if you are not logged in."
2157
+ msgstr ""
2158
+
2159
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:18
2160
+ #, php-format
2161
  msgid ""
2162
  "If you don't have a project yet, you'll need to create one. You can do this "
2163
+ "by clicking on the blue \"<b>%1$s</b>\" text on the right side! ( If you "
2164
+ "already have a project, then in the top bar click on the name of your "
2165
+ "project instead, which will bring up a modal and click <b>\"%2$s\"</b>. )"
 
2166
  msgstr ""
2167
 
2168
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:19
2169
+ #, php-format
2170
+ msgid "Name your project and then click on the \"<b>%1$s</b>\" button again!"
2171
  msgstr ""
2172
 
2173
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:20
2174
+ msgid ""
2175
+ "Once you have a project, you'll end up in the dashboard. ( If earlier you "
2176
+ "have already had a Project, then make sure you select the created project in "
2177
+ "the top bar! )"
2178
  msgstr ""
2179
 
2180
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:21
2181
+ #, php-format
2182
+ msgid "Click the “<b>%1$s</b>” button on the left hand side."
2183
  msgstr ""
2184
 
2185
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:22
2186
+ #, php-format
2187
  msgid ""
2188
+ "Choose a <b>%1$s</b> according to your needs and press \"<b>%2$s</b>\". If "
2189
+ "you want to enable the social login with %3$s for any users with a %3$s "
2190
+ "account, then pick the \"%4$s\" option!"
2191
  msgstr ""
2192
 
2193
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:24
2199
  msgstr ""
2200
 
2201
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:27
2202
+ #, php-format
2203
  msgid ""
2204
+ "Enter a name for your App to the \"<b>%1$s</b>\" field, which will appear as "
2205
+ "the name of the app asking for consent."
2206
  msgstr ""
2207
 
2208
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:28
2209
  #, php-format
2210
  msgid ""
2211
+ "For the \"<b>%1$s</b>\" field, select an email address that users can use to "
2212
+ "contact you with questions about their consent."
2213
  msgstr ""
2214
 
2215
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:29
2216
+ #, php-format
2217
+ msgid ""
2218
+ "Under the \"<b>%1$s</b>\" section press the \"<b>%2$s</b>\" button and "
2219
+ "enter your domain name, probably: <b>%3$s</b> without subdomains!"
2220
  msgstr ""
2221
 
2222
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:30
2223
  #, php-format
2224
  msgid ""
2225
+ "At the \"<b>%1$s</b>\" section, enter an email address that %2$s can use to "
2226
+ "notify you about any changes to your project."
2227
  msgstr ""
2228
 
2229
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:31
2230
+ #, php-format
2231
+ msgid ""
2232
+ "Press \"<b>%1$s</b>\" then press it again on the \"%2$s\", \"%3$s\" pages, "
2233
+ "too!"
2234
  msgstr ""
2235
 
2236
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:32
2237
+ #, php-format
2238
+ msgid ""
2239
+ "On the left side, click on the \"<b>%1$s</b>\" menu point, then click the "
2240
+ "\"<b>%2$s</b>\" button in the top bar."
2241
  msgstr ""
2242
 
2243
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:33
2244
+ #, php-format
2245
+ msgid "Choose the \"<b>%1$s</b>\" option."
2246
+ msgstr ""
2247
+
2248
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:34
2249
+ #, php-format
2250
+ msgid "Select the \"<b>%1$s</b>\" under Application type."
2251
  msgstr ""
2252
 
2253
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:35
2254
+ #, php-format
2255
+ msgid "Enter a \"<b>%1$s</b>\" for your OAuth client ID."
2256
  msgstr ""
2257
 
2258
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:36
2259
+ #, php-format
2260
+ msgid ""
2261
+ "Under the \"<b>%1$s</b>\" section click \"<b>%2$s</b>\" and add the "
2262
+ "following URL: <b>%3$s</b>"
2263
+ msgstr ""
2264
+
2265
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:37
2266
+ #, php-format
2267
+ msgid "Click on the \"<b>%1$s</b>\" button"
2268
+ msgstr ""
2269
+
2270
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:38
2271
+ #, php-format
2272
  msgid ""
2273
  "A modal should pop up with your credentials. If that doesn't happen, go to "
2274
+ "the %1$s in the left hand menu and select your app by clicking on its name "
2275
+ "and you'll be able to copy-paste the \"<b>%2$s</b>\" and \"<b>%3$s</b>\" "
2276
+ "from there."
2277
  msgstr ""
2278
 
2279
  #: nextend-facebook-connect/providers/google/admin/settings.php:27
2334
  msgstr ""
2335
 
2336
  #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:11
 
2337
  msgid "Click on the <b>Edit</b> button at <b>Authentication settings</b>."
2338
  msgstr ""
2339
 
2342
  msgid "Add the following URL to the \"<b>Callback URLs</b>\" field: <b>%s</b>"
2343
  msgstr ""
2344
 
2345
+ #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:13
 
 
 
 
 
 
 
 
 
 
 
2346
  #, php-format
2347
+ msgid ""
2348
+ "Make sure the \"<b>%1$s</b>\" field contains the following URL: <b>%2$s</b>"
2349
  msgstr ""
2350
 
2351
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:18
2362
  msgstr ""
2363
 
2364
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:20
2365
+ #, php-format
2366
+ msgid "Click on \"<b>%s</b>\"!"
2367
  msgstr ""
2368
 
2369
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:21
2370
  msgid ""
2371
  "Name your project, and go through the basic setup. You’ll need to select "
2372
+ "your use case, give a description and enter a name for the App as well."
2373
  msgstr ""
2374
 
2375
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:22
2376
+ #, php-format
2377
+ msgid "Click \"<b>%s</b>\"!"
2378
  msgstr ""
2379
 
2380
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:23
2381
+ #, php-format
2382
  msgid ""
2383
+ "You’ll find your API key and secret on this page. Copy and paste the \"<b>"
2384
+ "%1$s</b>\" and the \"<b>%2$s</b>\" to the corresponding fields at %3$s and "
2385
+ "press \"<b>Save Changes</b>\"."
2386
  msgstr ""
2387
 
2388
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:24
2389
  #, php-format
2390
+ msgid ""
2391
+ "Go back to your Twitter project and on the left side, under the \"<b>%s</b>"
2392
+ "\" section click on the name of your App."
2393
  msgstr ""
2394
 
2395
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:25
2396
+ #, php-format
2397
+ msgid "Scroll down and click on the \"<b>%1$s</b>\" button at \"<b>%2$s</b>\"."
2398
  msgstr ""
2399
 
2400
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:26
2401
+ #, php-format
2402
+ msgid "Switch on the \"<b>%s</b>\" option."
 
 
 
2403
  msgstr ""
2404
 
2405
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:27
2406
  #, php-format
2407
+ msgid "Add the following URL to the \"<b>%1$s</b>\" field: <b>%2$s</b>"
2408
  msgstr ""
2409
 
2410
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:28
2411
  #, php-format
2412
+ msgid "Enter your site's URL to the \"<b>%1$s</b>\" field: <b>%2$s</b>"
2413
  msgstr ""
2414
 
2415
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:29
2416
+ #, php-format
2417
  msgid ""
2418
  "If you want to get the email address as well, then don’t forget to enable "
2419
+ "the \"<b>%1$s</b>\" option. In this case you also need to fill the \"<b>"
2420
+ "%2$s</b>\" and the \"<b>%3$s</b>\" fields with the corresponding URLs!"
 
2421
  msgstr ""
2422
 
2423
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:30
2424
+ #, php-format
2425
+ msgid "Click on \"<b>%s</b>\"."
2426
  msgstr ""
2427
 
2428
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:31
2429
  #, php-format
2430
+ msgid "Go back to %1$s and <b>Verify</b> your %2$s provider."
2431
  msgstr ""
2432
 
2433
  #: nextend-facebook-connect/providers/twitter/admin/settings.php:27
2746
 
2747
  #: nextend-social-login-pro/providers/apple/admin/getting-started.php:35
2748
  msgid ""
2749
+ "Make sure you have an <strong>active subscription for the <a href=\"https://"
2750
+ "developer.apple.com/programs/\" target=\"_blank\">Apple Developer Program</"
2751
+ "a></strong>, as that is necessary for both creating and maintaining an Apple "
2752
+ "App!"
2753
  msgstr ""
2754
 
2755
  #: nextend-social-login-pro/providers/apple/admin/getting-started.php:36
3658
  msgid "Required permission: %1$s"
3659
  msgstr ""
3660
 
3661
+ #: nextend-social-login-pro/template-parts/buddypress/login/above-separator.php:18
3662
+ #: nextend-social-login-pro/template-parts/buddypress/login/below-separator.php:18
3663
+ #: nextend-social-login-pro/template-parts/embedded-login/above-separator.php:18
3664
+ #: nextend-social-login-pro/template-parts/embedded-login/below-separator.php:18
3665
+ #: nextend-social-login-pro/template-parts/login/above-separator.php:25
3666
+ #: nextend-social-login-pro/template-parts/login/below-separator.php:30
3667
+ #: nextend-social-login-pro/template-parts/memberpress/login/above-separator.php:18
3668
+ #: nextend-social-login-pro/template-parts/memberpress/login/below-separator.php:18
3669
+ #: nextend-social-login-pro/template-parts/memberpress/sign-up/above-separator.php:18
3670
+ #: nextend-social-login-pro/template-parts/memberpress/sign-up/below-separator.php:18
3671
+ #: nextend-social-login-pro/template-parts/ultimate-member/login/above-separator.php:18
3672
+ #: nextend-social-login-pro/template-parts/ultimate-member/login/below-separator.php:18
3673
+ #: nextend-social-login-pro/template-parts/ultimate-member/register/above-separator.php:18
3674
+ #: nextend-social-login-pro/template-parts/ultimate-member/register/below-separator.php:18
3675
+ #: nextend-social-login-pro/template-parts/userpro/login/above-separator.php:18
3676
+ #: nextend-social-login-pro/template-parts/userpro/login/below-separator.php:18
3677
+ #: nextend-social-login-pro/template-parts/userpro/register/above-separator.php:18
3678
+ #: nextend-social-login-pro/template-parts/userpro/register/below-separator.php:18
3679
+ #: nextend-social-login-pro/template-parts/woocommerce/billing/above-separator.php:25
3680
+ #: nextend-social-login-pro/template-parts/woocommerce/billing/below-separator.php:25
3681
+ #: nextend-social-login-pro/template-parts/woocommerce/billing/default-separator-after.php:13
3682
+ #: nextend-social-login-pro/template-parts/woocommerce/billing/default-separator-before.php:13
3683
+ #: nextend-social-login-pro/template-parts/woocommerce/checkout-for-woocommerce/above-separator.php:25
3684
+ #: nextend-social-login-pro/template-parts/woocommerce/checkout-for-woocommerce/below-separator.php:25
3685
+ #: nextend-social-login-pro/template-parts/woocommerce/login/above-separator.php:18
3686
+ #: nextend-social-login-pro/template-parts/woocommerce/login/below-separator.php:18
3687
+ #: nextend-social-login-pro/template-parts/woocommerce/register/above-separator.php:18
3688
+ #: nextend-social-login-pro/template-parts/woocommerce/register/below-separator.php:18
3689
  msgid "OR"
3690
  msgstr "ODER"
3691
 
languages/nextend-facebook-connect-es_LA.mo CHANGED
Binary file
languages/nextend-facebook-connect-es_LA.po CHANGED
@@ -1,15 +1,15 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: nextend-facebook-connect\n"
4
- "POT-Creation-Date: 2021-01-27 13:56+0100\n"
5
- "PO-Revision-Date: 2021-01-27 13:56+0100\n"
6
  "Last-Translator: Gabriel Vilaró <gabo@etereo.ch>\n"
7
  "Language-Team: nextend-facebook-connect\n"
8
  "Language: es_419\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 2.4.1\n"
13
  "X-Poedit-Basepath: ../..\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
@@ -112,35 +112,35 @@ msgstr ""
112
  msgid "User"
113
  msgstr "Usario"
114
 
115
- #: nextend-facebook-connect/admin/admin.php:206
116
  #, php-format
117
  msgid "%s needs json_decode function."
118
  msgstr "%s necesita la función json_decode."
119
 
120
- #: nextend-facebook-connect/admin/admin.php:206
121
  msgid "Please contact your server administrator and ask for solution!"
122
  msgstr ""
123
  "¡Por favor, ponte en contacto con el administrador de tu servidor y solicita "
124
  "una solución!"
125
 
126
- #: nextend-facebook-connect/admin/admin.php:238
127
- #: nextend-facebook-connect/admin/admin.php:268
128
  msgid "Settings saved."
129
  msgstr "Ajustes guardados."
130
 
131
- #: nextend-facebook-connect/admin/admin.php:247
132
  #, fuzzy
133
  #| msgid "The authorization was successful"
134
  msgid "The activation was successful"
135
  msgstr "La autorización fue exitosa"
136
 
137
- #: nextend-facebook-connect/admin/admin.php:258
138
  #, fuzzy
139
  #| msgid "Deauthorize completed."
140
  msgid "Deactivate completed."
141
  msgstr "Desautorizar completado."
142
 
143
- #: nextend-facebook-connect/admin/admin.php:437
144
  #: nextend-facebook-connect/admin/templates-provider/menu.php:15
145
  #: nextend-facebook-connect/admin/templates/providers.php:89
146
  #: nextend-facebook-connect/admin/templates/providers.php:101
@@ -148,7 +148,7 @@ msgstr "Desautorizar completado."
148
  msgid "Settings"
149
  msgstr "Ajustes"
150
 
151
- #: nextend-facebook-connect/admin/admin.php:520
152
  #: nextend-facebook-connect/includes/oauth2.php:143
153
  #: nextend-facebook-connect/includes/oauth2.php:288
154
  #: nextend-facebook-connect/providers/facebook/facebook-client.php:84
@@ -159,7 +159,7 @@ msgstr "Ajustes"
159
  msgid "Unexpected response: %s"
160
  msgstr "Respuesta inesperada: %s"
161
 
162
- #: nextend-facebook-connect/admin/admin.php:581
163
  #: nextend-facebook-connect/admin/templates/fix-redirect-uri.php:21
164
  #, php-format
165
  msgid ""
@@ -169,16 +169,16 @@ msgstr ""
169
  "%s detectó que tu URL de inicio de sesión cambió. Debes actualizar los URI "
170
  "de redireccionamiento de Oauth en las aplicaciones sociales relacionadas."
171
 
172
- #: nextend-facebook-connect/admin/admin.php:582
173
  #: nextend-social-login-pro/providers/apple/apple.php:310
174
  msgid "Fix Error"
175
  msgstr "Arreglar Error"
176
 
177
- #: nextend-facebook-connect/admin/admin.php:582
178
  msgid "Oauth Redirect URI"
179
  msgstr "URI de redireccionamiento de Oauth"
180
 
181
- #: nextend-facebook-connect/admin/admin.php:599
182
  #, php-format
183
  msgid ""
184
  "%1$s detected that %2$s installed on your site. You need the Pro Addon to "
@@ -187,15 +187,15 @@ msgstr ""
187
  "%1$s detectó que %2$s está instalado en tu sitio. ¡Necesitas el Pro Addon "
188
  "para mostrar los botones de Social Login en el formulario de acceso de %2$s!"
189
 
190
- #: nextend-facebook-connect/admin/admin.php:600
191
  msgid "Dismiss and check Pro Addon"
192
  msgstr "Descartar y verificar Pro Addon"
193
 
194
- #: nextend-facebook-connect/admin/admin.php:600
195
  msgid "Dismiss"
196
  msgstr "Descartar"
197
 
198
- #: nextend-facebook-connect/admin/admin.php:606
199
  #, php-format
200
  msgid ""
201
  "%1$s detected that %2$s installed on your site. You must set \"<b>Page for "
@@ -203,19 +203,19 @@ msgid ""
203
  "work properly."
204
  msgstr ""
205
 
206
- #: nextend-facebook-connect/admin/admin.php:607
207
  #, fuzzy
208
  #| msgid "Fix Error"
209
  msgid "Fix now"
210
  msgstr "Arreglar Error"
211
 
212
- #: nextend-facebook-connect/admin/admin.php:631
213
  #, fuzzy
214
  #| msgid "Activate Pro Addon"
215
  msgid "Activate your Pro Addon"
216
  msgstr "Activar Pro Addon"
217
 
218
- #: nextend-facebook-connect/admin/admin.php:632
219
  #, fuzzy
220
  #| msgid ""
221
  #| "To be able to use the Pro features, you need to authorize Nextend Social "
@@ -230,20 +230,20 @@ msgstr ""
230
  "Pro Addon. Puedes hacer esto haciendo clic en el botón Autorizar a "
231
  "continuación y luego seleccionar la compra relacionada."
232
 
233
- #: nextend-facebook-connect/admin/admin.php:637
234
  #: nextend-social-login-pro/nextend-social-login-pro.php:110
235
  msgid "Activate"
236
  msgstr "Activar"
237
 
238
- #: nextend-facebook-connect/admin/admin.php:735
239
  msgid "License key"
240
  msgstr "Clave de licencia"
241
 
242
- #: nextend-facebook-connect/admin/admin.php:758
243
  msgid "OAuth proxy page"
244
  msgstr ""
245
 
246
- #: nextend-facebook-connect/admin/admin.php:761
247
  #, fuzzy
248
  #| msgid "Register layout"
249
  msgid "Register flow page"
@@ -254,55 +254,55 @@ msgstr "Diseño de Registro"
254
  msgid "You have logged in successfully."
255
  msgstr "Has ingresado exitosamente."
256
 
257
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:80
258
  msgid "Login label"
259
  msgstr "Etiqueta de acceso"
260
 
261
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:85
262
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:101
263
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:114
264
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:125
265
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:154
266
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:184
267
  #: nextend-facebook-connect/admin/templates/settings/privacy.php:53
268
  msgid "Reset to default"
269
  msgstr "Restablecer los valores predeterminados"
270
 
271
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:95
272
  #, fuzzy
273
  #| msgid "Register layout"
274
  msgid "Register label"
275
  msgstr "Diseño de Registro"
276
 
277
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:108
278
  msgid "Link label"
279
  msgstr "Etiqueta de enlace"
280
 
281
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:120
282
  msgid "Unlink label"
283
  msgstr "Etiqueta de desenlazar"
284
 
285
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:131
286
  msgid "Default button"
287
  msgstr "Botón predeterminado"
288
 
289
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:147
290
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:177
291
  msgid "Use custom button"
292
  msgstr "Usa botón personalizado"
293
 
294
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:154
295
  #, php-format
296
  msgid "Use the %s in your custom button's code to make the label show up."
297
  msgstr ""
298
  "Use el %s en el código de tu botón personalizado para que aparezca la "
299
  "etiqueta."
300
 
301
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:162
302
  msgid "Icon button"
303
  msgstr "Botón de icono"
304
 
305
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:193
306
  #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:140
307
  #: nextend-facebook-connect/admin/templates-provider/sync-data.php:104
308
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:170
@@ -483,7 +483,6 @@ msgid "Default"
483
  msgstr "Predeterminado"
484
 
485
  #: nextend-facebook-connect/admin/templates-provider/sync-data.php:50
486
- #: nextend-facebook-connect/includes/userData.php:188
487
  msgid "Register"
488
  msgstr "Registrarse"
489
 
@@ -1510,7 +1509,7 @@ msgid "Avatar"
1510
  msgstr "Avatar"
1511
 
1512
  #: nextend-facebook-connect/admin/templates/settings/privacy.php:102
1513
- #: nextend-facebook-connect/includes/provider.php:1100
1514
  msgid "Access token"
1515
  msgstr ""
1516
 
@@ -1645,6 +1644,14 @@ msgid_plural "Avatar <span class=\"count\">(%s)</span>"
1645
  msgstr[0] "Avatar <span class=\"count\">(%s)</span>"
1646
  msgstr[1] "Avatar <span class=\"count\">(%s)</span>"
1647
 
 
 
 
 
 
 
 
 
1648
  #: nextend-facebook-connect/includes/compat-wp-login.php:63
1649
  #, php-format
1650
  msgid "%1$s &lsaquo; %2$s &#8212; WordPress"
@@ -1727,39 +1734,39 @@ msgid "Please save your changes before verifying settings."
1727
  msgstr "Guarda tus cambios antes de verificar la configuración, por favor."
1728
 
1729
  #: nextend-facebook-connect/includes/provider.php:358
1730
- #: nextend-facebook-connect/includes/provider.php:717
1731
- #: nextend-facebook-connect/includes/provider.php:725
1732
  msgid "Authentication successful"
1733
  msgstr "Autenticación exitosa"
1734
 
1735
- #: nextend-facebook-connect/includes/provider.php:654
1736
  #: nextend-facebook-connect/includes/user.php:168
1737
  #: nextend-facebook-connect/includes/user.php:597
1738
  msgid "Authentication error"
1739
  msgstr "Error de autenticación"
1740
 
1741
- #: nextend-facebook-connect/includes/provider.php:669
1742
  msgid "Unlink successful."
1743
  msgstr "Desenlace exitoso."
1744
 
1745
- #: nextend-facebook-connect/includes/provider.php:671
1746
  msgid "Unlink is not allowed!"
1747
  msgstr ""
1748
 
1749
- #: nextend-facebook-connect/includes/provider.php:886
1750
- #: nextend-facebook-connect/includes/provider.php:893
1751
  msgid "The test was successful"
1752
  msgstr "La prueba fue exitosa"
1753
 
1754
- #: nextend-facebook-connect/includes/provider.php:939
1755
  msgid "Authentication failed"
1756
  msgstr "Error de autenticación"
1757
 
1758
- #: nextend-facebook-connect/includes/provider.php:1092
1759
  msgid "Identifier"
1760
  msgstr ""
1761
 
1762
- #: nextend-facebook-connect/includes/provider.php:1108
1763
  msgid "Profile picture"
1764
  msgstr ""
1765
 
@@ -1798,6 +1805,13 @@ msgstr ""
1798
  msgid "Register For This Site!"
1799
  msgstr "¡Registrarse Para Este Sitio!"
1800
 
 
 
 
 
 
 
 
1801
  #: nextend-facebook-connect/nextend-facebook-connect.php:37
1802
  #, php-format
1803
  msgid "%1$s requires PHP version %2$s+, plugin is currently NOT ACTIVE."
@@ -1823,12 +1837,12 @@ msgstr "Por favor, actualiza %1$s a la versión %2$s o más reciente."
1823
  msgid "Update now!"
1824
  msgstr "¡Actualizar ahora!"
1825
 
1826
- #: nextend-facebook-connect/nextend-social-login.php:762
1827
- #: nextend-facebook-connect/nextend-social-login.php:1140
1828
  msgid "Social Login"
1829
  msgstr "Social Login"
1830
 
1831
- #: nextend-facebook-connect/nextend-social-login.php:1121
1832
  msgid "Social Accounts"
1833
  msgstr "Cuentas Sociales"
1834
 
@@ -1873,7 +1887,6 @@ msgstr "Navegar a %s"
1873
  #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:9
1874
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:25
1875
  #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:9
1876
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:17
1877
  #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:9
1878
  #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:9
1879
  #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:20
@@ -1999,7 +2012,7 @@ msgstr "Navegar a %s"
1999
  #| msgid "Click on the \"Create New App\" button"
2000
  msgid ""
2001
  "Click on the \"<b>Create App</b>\" button and in the Popup choose the "
2002
- "\"<b>Build Connected Experiences</b>\" option!"
2003
  msgstr "Haz clic en el botón de \"Create New App\" por favor"
2004
 
2005
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:27
@@ -2025,8 +2038,7 @@ msgstr ""
2025
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:30
2026
  #, fuzzy
2027
  #| msgid "Click on the \"Create New App\" button"
2028
- msgid ""
2029
- "Click the \"<b>Create App ID</b>\" button and complete the Security Check."
2030
  msgstr "Haz clic en el botón de \"Create New App\" por favor"
2031
 
2032
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:31
@@ -2172,8 +2184,37 @@ msgid ""
2172
  msgstr ""
2173
 
2174
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:60
2175
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:40
2176
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:37
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2177
  #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:39
2178
  #: nextend-social-login-pro/providers/apple/admin/getting-started.php:122
2179
  #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:30
@@ -2317,7 +2358,6 @@ msgid ""
2317
  msgstr ""
2318
 
2319
  #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:12
2320
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:34
2321
  #, fuzzy, php-format
2322
  #| msgid ""
2323
  #| "Add the following URL to the \"Authorised redirect URIs\" field: <b>%s</b>"
@@ -2328,47 +2368,69 @@ msgstr ""
2328
  "Agrega la siguiente URL al campo \"Authorised redirect URIs\": <b>%s</b>"
2329
 
2330
  #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:13
2331
- #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:13
2332
  #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:14
2333
  #, fuzzy
2334
  #| msgid "Click on \"Save\""
2335
  msgid "Click on \"<b>Save</b>\""
2336
  msgstr "Haz clic en \"Guardar Cambios\""
2337
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2338
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:18
2339
- #, fuzzy
2340
  #| msgid ""
2341
  #| "If you don't have a project yet, you'll need to create one. You can do "
2342
  #| "this by clicking on the blue \"Create project\" button on the right side"
2343
  msgid ""
2344
  "If you don't have a project yet, you'll need to create one. You can do this "
2345
- "by clicking on the blue \"<b>Create</b>\" button on the right side! ( If "
2346
- "you already have a project, click on the name of your project in the "
2347
- "dashboard instead, which will bring up a modal and click <b>\"New Project\"</"
2348
- "b>. )"
2349
  msgstr ""
2350
  "Si aún no tienes un proyecto, deberás crear uno. Puedes hacer esto haciendo "
2351
  "clic en el botón azul \"Create project\" en el lado derecho"
2352
 
2353
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:19
2354
- #, fuzzy
2355
  #| msgid "Name your project and then click on the Create button"
2356
- msgid "Name your project and then click on the \"<b>Create</b>\" button again"
2357
  msgstr "Denomina tu proyecto y luego haz clic en el botón Create"
2358
 
2359
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:20
2360
- msgid "Once you have a project, you'll end up in the dashboard."
2361
- msgstr "Una vez que tengas un proyecto, llegarás al escritorio."
 
 
 
2362
 
2363
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:21
2364
- msgid "Click the “<b>OAuth consent screen</b>” button on the left hand side."
2365
- msgstr ""
 
 
2366
 
2367
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:22
 
2368
  msgid ""
2369
- "Choose a <b>User Type</b> according to your needs. If you want to enable the "
2370
- "social login with Google for any users with a Google account, then pick the "
2371
- "External option!"
2372
  msgstr ""
2373
 
2374
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:24
@@ -2380,55 +2442,81 @@ msgid ""
2380
  msgstr ""
2381
 
2382
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:27
 
2383
  msgid ""
2384
- "Enter a name for your App to the \"<b>Application name</b>\" field, which "
2385
- "will appear as the name of the app asking for consent."
2386
  msgstr ""
2387
 
2388
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:28
 
 
 
 
 
 
 
2389
  #, fuzzy, php-format
2390
  #| msgid "Fill the \"Base domain\" field with your domain, probably: <b>%s</b>"
2391
  msgid ""
2392
- "Fill the \"<b>Authorized domains</b>\" field with your domain name probably: "
2393
- "<b>%s</b> without subdomains!"
2394
  msgstr ""
2395
  "Llena el campo \"Base domain\" con tu dominio, probablemente: <b>%s</b>"
2396
 
2397
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:29
2398
- #, fuzzy
2399
- #| msgid "Save your changes."
2400
- msgid "Save your settings!"
2401
- msgstr "Guarda tus cambios."
2402
-
2403
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:30
2404
  #, php-format
2405
  msgid ""
2406
- "On the left side, click on the \"<b>%1$s</b>\" menu point, then click the "
2407
- "\"<b>%2$s</b>\" button in the top bar."
2408
  msgstr ""
2409
 
2410
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:31
2411
- msgid "Choose the \"<b>OAuth client ID</b>\" option."
 
 
 
2412
  msgstr ""
2413
 
2414
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:32
2415
- #, fuzzy
 
 
 
 
 
 
 
 
 
 
 
 
 
2416
  #| msgid "Click on the \"Create New App\" button"
2417
- msgid "Select the \"<b>Web application</b>\" under Application type."
2418
  msgstr "Haz clic en el botón de \"Create New App\" por favor"
2419
 
2420
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:33
2421
- msgid "Enter a \"<b>Name</b>\" for your OAuth client ID."
 
2422
  msgstr ""
2423
 
2424
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:35
2425
- #, fuzzy
 
 
 
 
 
 
 
2426
  #| msgid "Click on the Create button"
2427
- msgid "Click on the \"<b>Create</b>\" button"
2428
  msgstr "Haz clic en el botón Create"
2429
 
2430
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:36
2431
- #, fuzzy
2432
  #| msgid ""
2433
  #| "A modal should pop up with your credentials. If that doesn't happen, go "
2434
  #| "to the Credentials in the left hand menu and select your app by clicking "
@@ -2436,9 +2524,9 @@ msgstr "Haz clic en el botón Create"
2436
  #| "Secret from there."
2437
  msgid ""
2438
  "A modal should pop up with your credentials. If that doesn't happen, go to "
2439
- "the Credentials in the left hand menu and select your app by clicking on its "
2440
- "name and you'll be able to copy-paste the \"<b>Client ID</b>\" and "
2441
- "\"<b>Client Secret</b>\" from there."
2442
  msgstr ""
2443
  "Un modal debería aparecer con tus credenciales. Si eso no sucede, ve a "
2444
  "Credentials en el menú de la izquierda y selecciona tu aplicación haciendo "
@@ -2508,7 +2596,6 @@ msgid ""
2508
  msgstr "Denomina tu proyecto y luego haz clic en el botón Create"
2509
 
2510
  #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:11
2511
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:27
2512
  #, fuzzy
2513
  #| msgid "Click on the \"Create New App\" button"
2514
  msgid "Click on the <b>Edit</b> button at <b>Authentication settings</b>."
@@ -2520,21 +2607,12 @@ msgstr "Haz clic en el botón de \"Create New App\" por favor"
2520
  msgid "Add the following URL to the \"<b>Callback URLs</b>\" field: <b>%s</b>"
2521
  msgstr "Agrega la siguiente URL al campo de \"Callback URL\": <b>%s</b>"
2522
 
2523
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:17
2524
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:25
2525
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:38
2526
- #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:9
2527
- #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:16
2528
- #: nextend-social-login-pro/providers/github/admin/getting-started.php:16
2529
- #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:9
2530
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:17
2531
- #: nextend-social-login-pro/providers/vk/admin/getting-started.php:16
2532
- #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:9
2533
- #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:16
2534
- #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:17
2535
- #, php-format
2536
- msgid "Log in with your %s credentials if you are not logged in."
2537
- msgstr "Inicia sesión con tus %s credenciales si no has iniciado sesión."
2538
 
2539
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:18
2540
  msgid ""
@@ -2550,76 +2628,81 @@ msgid ""
2550
  msgstr ""
2551
 
2552
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:20
2553
- #, fuzzy
2554
  #| msgid "Click on \"Save\""
2555
- msgid "Click on <b>+ New Project</b>!"
2556
  msgstr "Haz clic en \"Guardar Cambios\""
2557
 
2558
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:21
2559
  msgid ""
2560
  "Name your project, and go through the basic setup. You’ll need to select "
2561
- "your use case and give a description."
2562
  msgstr ""
2563
 
2564
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:22
2565
- msgid "Create a new app, or select an existing one, then click <b>Complete</b>"
2566
- msgstr ""
 
 
2567
 
2568
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:23
 
2569
  msgid ""
2570
- "You’ll find your API key and secret on this page. Copy and paste the <b>API "
2571
- "key</b> and the <b>API secret key</b> to the corresponding fields at Nextend "
2572
- "Social Login and press <b>Save Changes</b>."
2573
  msgstr ""
2574
 
2575
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:24
2576
- #, fuzzy, php-format
2577
- #| msgid "Click on \"Save Changes\""
2578
- msgid "Click on the <b>App Settings</b> button at %s."
2579
- msgstr "Haz clic en \"Guardar Cambios\""
 
2580
 
2581
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:25
2582
- msgid "Find the Apps section, and the app you created a few steps ago."
2583
- msgstr ""
 
 
2584
 
2585
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:26
2586
- msgid "Click on the App settings icon. (The one that looks like a gear.)"
2587
- msgstr ""
2588
-
2589
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:28
2590
- msgid "Switch on the <b>Enable 3-legged OAuth</b> option."
2591
- msgstr ""
2592
 
2593
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:29
2594
  #, fuzzy, php-format
2595
- #| msgid "Add the following URL to the \"Callback URL\" field: <b>%s</b>"
2596
- msgid "Add the following URL to the <b>Callback URLs</b> field: <b>%s</b>"
2597
- msgstr "Agrega la siguiente URL al campo de \"Callback URL\": <b>%s</b>"
 
2598
 
2599
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:30
2600
  #, fuzzy, php-format
2601
  #| msgid ""
2602
  #| "Add the following URL to the \"Allowed Return URLs\" field <b>%s</b> "
2603
- msgid "Enter your site's URL to the <b>Website URL</b> field: <b>%s</b>"
2604
  msgstr "Agrega la siguiente URL al campo \"Allowed Return URLs\" <b>%s</b> "
2605
 
2606
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:31
 
2607
  msgid ""
2608
  "If you want to get the email address as well, then don’t forget to enable "
2609
- "the <b>Request email address from users</b> option. In this case you also "
2610
- "need to fill the <b>Terms of service</b> and the <b>Privacy policy</b> "
2611
- "fields with the corresponding URLs!"
2612
  msgstr ""
2613
 
2614
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:32
2615
- #, fuzzy
2616
  #| msgid "Click on \"Save\""
2617
- msgid "Click on <b>Save</b>."
2618
  msgstr "Haz clic en \"Guardar Cambios\""
2619
 
2620
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:33
2621
  #, php-format
2622
- msgid "Go back to Nextend Social Login and <b>Verify</b> your %s provider."
2623
  msgstr ""
2624
 
2625
  #: nextend-facebook-connect/providers/twitter/admin/settings.php:27
@@ -3017,8 +3100,10 @@ msgstr ""
3017
 
3018
  #: nextend-social-login-pro/providers/apple/admin/getting-started.php:35
3019
  msgid ""
3020
- "Make sure you have an <strong>active subscription for the Apple Developer "
3021
- "Program</strong>!"
 
 
3022
  msgstr ""
3023
 
3024
  #: nextend-social-login-pro/providers/apple/admin/getting-started.php:36
@@ -4107,34 +4192,34 @@ msgstr "Desenlazar cuenta de <b>Yahoo</b>"
4107
  msgid "Required permission: %1$s"
4108
  msgstr "Alcance requerido: %1$s"
4109
 
4110
- #: nextend-social-login-pro/template-parts/buddypress/login/above-separator.php:10
4111
- #: nextend-social-login-pro/template-parts/buddypress/login/below-separator.php:10
4112
- #: nextend-social-login-pro/template-parts/embedded-login/above-separator.php:10
4113
- #: nextend-social-login-pro/template-parts/embedded-login/below-separator.php:10
4114
- #: nextend-social-login-pro/template-parts/login/above-separator.php:20
4115
- #: nextend-social-login-pro/template-parts/login/below-separator.php:8
4116
- #: nextend-social-login-pro/template-parts/memberpress/login/above-separator.php:10
4117
- #: nextend-social-login-pro/template-parts/memberpress/login/below-separator.php:10
4118
- #: nextend-social-login-pro/template-parts/memberpress/sign-up/above-separator.php:10
4119
- #: nextend-social-login-pro/template-parts/memberpress/sign-up/below-separator.php:10
4120
- #: nextend-social-login-pro/template-parts/ultimate-member/login/above-separator.php:10
4121
- #: nextend-social-login-pro/template-parts/ultimate-member/login/below-separator.php:10
4122
- #: nextend-social-login-pro/template-parts/ultimate-member/register/above-separator.php:10
4123
- #: nextend-social-login-pro/template-parts/ultimate-member/register/below-separator.php:10
4124
- #: nextend-social-login-pro/template-parts/userpro/login/above-separator.php:10
4125
- #: nextend-social-login-pro/template-parts/userpro/login/below-separator.php:10
4126
- #: nextend-social-login-pro/template-parts/userpro/register/above-separator.php:10
4127
- #: nextend-social-login-pro/template-parts/userpro/register/below-separator.php:10
4128
- #: nextend-social-login-pro/template-parts/woocommerce/billing/above-separator.php:11
4129
- #: nextend-social-login-pro/template-parts/woocommerce/billing/below-separator.php:11
4130
- #: nextend-social-login-pro/template-parts/woocommerce/billing/default-separator-after.php:7
4131
- #: nextend-social-login-pro/template-parts/woocommerce/billing/default-separator-before.php:7
4132
- #: nextend-social-login-pro/template-parts/woocommerce/checkout-for-woocommerce/above-separator.php:15
4133
- #: nextend-social-login-pro/template-parts/woocommerce/checkout-for-woocommerce/below-separator.php:15
4134
- #: nextend-social-login-pro/template-parts/woocommerce/login/above-separator.php:10
4135
- #: nextend-social-login-pro/template-parts/woocommerce/login/below-separator.php:10
4136
- #: nextend-social-login-pro/template-parts/woocommerce/register/above-separator.php:10
4137
- #: nextend-social-login-pro/template-parts/woocommerce/register/below-separator.php:10
4138
  msgid "OR"
4139
  msgstr "O"
4140
 
@@ -4145,6 +4230,40 @@ msgstr "O"
4145
  msgid "Social accounts"
4146
  msgstr "Cuentas sociales"
4147
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4148
  #, fuzzy, php-format
4149
  #~| msgid "Log in with your %s credentials if you are not logged in"
4150
  #~ msgid "Log in with your %s credentials if you are not logged in yet"
@@ -4396,9 +4515,6 @@ msgstr "Cuentas sociales"
4396
  #~ "Ve al menú de Ajustes que se encuentra debajo del Facebook Login en el "
4397
  #~ "menú de la izquierda."
4398
 
4399
- #~ msgid "Make sure that the \"%1$s\" field contains %2$s"
4400
- #~ msgstr "Asegúrate que el campo \"%1$s\" tiene %2$s"
4401
-
4402
  #~ msgid "The following settings will be imported:"
4403
  #~ msgstr "Se importarán las siguientes configuraciones:"
4404
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: nextend-facebook-connect\n"
4
+ "POT-Creation-Date: 2021-06-16 14:00+0200\n"
5
+ "PO-Revision-Date: 2021-06-16 14:00+0200\n"
6
  "Last-Translator: Gabriel Vilaró <gabo@etereo.ch>\n"
7
  "Language-Team: nextend-facebook-connect\n"
8
  "Language: es_419\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 3.0\n"
13
  "X-Poedit-Basepath: ../..\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
112
  msgid "User"
113
  msgstr "Usario"
114
 
115
+ #: nextend-facebook-connect/admin/admin.php:204
116
  #, php-format
117
  msgid "%s needs json_decode function."
118
  msgstr "%s necesita la función json_decode."
119
 
120
+ #: nextend-facebook-connect/admin/admin.php:204
121
  msgid "Please contact your server administrator and ask for solution!"
122
  msgstr ""
123
  "¡Por favor, ponte en contacto con el administrador de tu servidor y solicita "
124
  "una solución!"
125
 
126
+ #: nextend-facebook-connect/admin/admin.php:236
127
+ #: nextend-facebook-connect/admin/admin.php:266
128
  msgid "Settings saved."
129
  msgstr "Ajustes guardados."
130
 
131
+ #: nextend-facebook-connect/admin/admin.php:245
132
  #, fuzzy
133
  #| msgid "The authorization was successful"
134
  msgid "The activation was successful"
135
  msgstr "La autorización fue exitosa"
136
 
137
+ #: nextend-facebook-connect/admin/admin.php:256
138
  #, fuzzy
139
  #| msgid "Deauthorize completed."
140
  msgid "Deactivate completed."
141
  msgstr "Desautorizar completado."
142
 
143
+ #: nextend-facebook-connect/admin/admin.php:435
144
  #: nextend-facebook-connect/admin/templates-provider/menu.php:15
145
  #: nextend-facebook-connect/admin/templates/providers.php:89
146
  #: nextend-facebook-connect/admin/templates/providers.php:101
148
  msgid "Settings"
149
  msgstr "Ajustes"
150
 
151
+ #: nextend-facebook-connect/admin/admin.php:518
152
  #: nextend-facebook-connect/includes/oauth2.php:143
153
  #: nextend-facebook-connect/includes/oauth2.php:288
154
  #: nextend-facebook-connect/providers/facebook/facebook-client.php:84
159
  msgid "Unexpected response: %s"
160
  msgstr "Respuesta inesperada: %s"
161
 
162
+ #: nextend-facebook-connect/admin/admin.php:579
163
  #: nextend-facebook-connect/admin/templates/fix-redirect-uri.php:21
164
  #, php-format
165
  msgid ""
169
  "%s detectó que tu URL de inicio de sesión cambió. Debes actualizar los URI "
170
  "de redireccionamiento de Oauth en las aplicaciones sociales relacionadas."
171
 
172
+ #: nextend-facebook-connect/admin/admin.php:580
173
  #: nextend-social-login-pro/providers/apple/apple.php:310
174
  msgid "Fix Error"
175
  msgstr "Arreglar Error"
176
 
177
+ #: nextend-facebook-connect/admin/admin.php:580
178
  msgid "Oauth Redirect URI"
179
  msgstr "URI de redireccionamiento de Oauth"
180
 
181
+ #: nextend-facebook-connect/admin/admin.php:597
182
  #, php-format
183
  msgid ""
184
  "%1$s detected that %2$s installed on your site. You need the Pro Addon to "
187
  "%1$s detectó que %2$s está instalado en tu sitio. ¡Necesitas el Pro Addon "
188
  "para mostrar los botones de Social Login en el formulario de acceso de %2$s!"
189
 
190
+ #: nextend-facebook-connect/admin/admin.php:598
191
  msgid "Dismiss and check Pro Addon"
192
  msgstr "Descartar y verificar Pro Addon"
193
 
194
+ #: nextend-facebook-connect/admin/admin.php:598
195
  msgid "Dismiss"
196
  msgstr "Descartar"
197
 
198
+ #: nextend-facebook-connect/admin/admin.php:604
199
  #, php-format
200
  msgid ""
201
  "%1$s detected that %2$s installed on your site. You must set \"<b>Page for "
203
  "work properly."
204
  msgstr ""
205
 
206
+ #: nextend-facebook-connect/admin/admin.php:605
207
  #, fuzzy
208
  #| msgid "Fix Error"
209
  msgid "Fix now"
210
  msgstr "Arreglar Error"
211
 
212
+ #: nextend-facebook-connect/admin/admin.php:629
213
  #, fuzzy
214
  #| msgid "Activate Pro Addon"
215
  msgid "Activate your Pro Addon"
216
  msgstr "Activar Pro Addon"
217
 
218
+ #: nextend-facebook-connect/admin/admin.php:630
219
  #, fuzzy
220
  #| msgid ""
221
  #| "To be able to use the Pro features, you need to authorize Nextend Social "
230
  "Pro Addon. Puedes hacer esto haciendo clic en el botón Autorizar a "
231
  "continuación y luego seleccionar la compra relacionada."
232
 
233
+ #: nextend-facebook-connect/admin/admin.php:635
234
  #: nextend-social-login-pro/nextend-social-login-pro.php:110
235
  msgid "Activate"
236
  msgstr "Activar"
237
 
238
+ #: nextend-facebook-connect/admin/admin.php:733
239
  msgid "License key"
240
  msgstr "Clave de licencia"
241
 
242
+ #: nextend-facebook-connect/admin/admin.php:756
243
  msgid "OAuth proxy page"
244
  msgstr ""
245
 
246
+ #: nextend-facebook-connect/admin/admin.php:759
247
  #, fuzzy
248
  #| msgid "Register layout"
249
  msgid "Register flow page"
254
  msgid "You have logged in successfully."
255
  msgstr "Has ingresado exitosamente."
256
 
257
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:86
258
  msgid "Login label"
259
  msgstr "Etiqueta de acceso"
260
 
261
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:91
262
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:107
263
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:120
264
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:131
265
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:160
266
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:190
267
  #: nextend-facebook-connect/admin/templates/settings/privacy.php:53
268
  msgid "Reset to default"
269
  msgstr "Restablecer los valores predeterminados"
270
 
271
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:101
272
  #, fuzzy
273
  #| msgid "Register layout"
274
  msgid "Register label"
275
  msgstr "Diseño de Registro"
276
 
277
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:114
278
  msgid "Link label"
279
  msgstr "Etiqueta de enlace"
280
 
281
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:126
282
  msgid "Unlink label"
283
  msgstr "Etiqueta de desenlazar"
284
 
285
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:137
286
  msgid "Default button"
287
  msgstr "Botón predeterminado"
288
 
289
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:153
290
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:183
291
  msgid "Use custom button"
292
  msgstr "Usa botón personalizado"
293
 
294
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:160
295
  #, php-format
296
  msgid "Use the %s in your custom button's code to make the label show up."
297
  msgstr ""
298
  "Use el %s en el código de tu botón personalizado para que aparezca la "
299
  "etiqueta."
300
 
301
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:168
302
  msgid "Icon button"
303
  msgstr "Botón de icono"
304
 
305
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:199
306
  #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:140
307
  #: nextend-facebook-connect/admin/templates-provider/sync-data.php:104
308
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:170
483
  msgstr "Predeterminado"
484
 
485
  #: nextend-facebook-connect/admin/templates-provider/sync-data.php:50
 
486
  msgid "Register"
487
  msgstr "Registrarse"
488
 
1509
  msgstr "Avatar"
1510
 
1511
  #: nextend-facebook-connect/admin/templates/settings/privacy.php:102
1512
+ #: nextend-facebook-connect/includes/provider.php:1102
1513
  msgid "Access token"
1514
  msgstr ""
1515
 
1644
  msgstr[0] "Avatar <span class=\"count\">(%s)</span>"
1645
  msgstr[1] "Avatar <span class=\"count\">(%s)</span>"
1646
 
1647
+ #: nextend-facebook-connect/includes/avatar.php:399
1648
+ msgid "Invalid URL Provided."
1649
+ msgstr ""
1650
+
1651
+ #: nextend-facebook-connect/includes/avatar.php:404
1652
+ msgid "Could not create Temporary file."
1653
+ msgstr ""
1654
+
1655
  #: nextend-facebook-connect/includes/compat-wp-login.php:63
1656
  #, php-format
1657
  msgid "%1$s &lsaquo; %2$s &#8212; WordPress"
1734
  msgstr "Guarda tus cambios antes de verificar la configuración, por favor."
1735
 
1736
  #: nextend-facebook-connect/includes/provider.php:358
1737
+ #: nextend-facebook-connect/includes/provider.php:719
1738
+ #: nextend-facebook-connect/includes/provider.php:727
1739
  msgid "Authentication successful"
1740
  msgstr "Autenticación exitosa"
1741
 
1742
+ #: nextend-facebook-connect/includes/provider.php:656
1743
  #: nextend-facebook-connect/includes/user.php:168
1744
  #: nextend-facebook-connect/includes/user.php:597
1745
  msgid "Authentication error"
1746
  msgstr "Error de autenticación"
1747
 
1748
+ #: nextend-facebook-connect/includes/provider.php:671
1749
  msgid "Unlink successful."
1750
  msgstr "Desenlace exitoso."
1751
 
1752
+ #: nextend-facebook-connect/includes/provider.php:673
1753
  msgid "Unlink is not allowed!"
1754
  msgstr ""
1755
 
1756
+ #: nextend-facebook-connect/includes/provider.php:888
1757
+ #: nextend-facebook-connect/includes/provider.php:895
1758
  msgid "The test was successful"
1759
  msgstr "La prueba fue exitosa"
1760
 
1761
+ #: nextend-facebook-connect/includes/provider.php:941
1762
  msgid "Authentication failed"
1763
  msgstr "Error de autenticación"
1764
 
1765
+ #: nextend-facebook-connect/includes/provider.php:1094
1766
  msgid "Identifier"
1767
  msgstr ""
1768
 
1769
+ #: nextend-facebook-connect/includes/provider.php:1110
1770
  msgid "Profile picture"
1771
  msgstr ""
1772
 
1805
  msgid "Register For This Site!"
1806
  msgstr "¡Registrarse Para Este Sitio!"
1807
 
1808
+ #: nextend-facebook-connect/includes/userData.php:189
1809
+ #, fuzzy
1810
+ #| msgid "Register"
1811
+ msgctxt "Register form submit button label"
1812
+ msgid "Register"
1813
+ msgstr "Registrarse"
1814
+
1815
  #: nextend-facebook-connect/nextend-facebook-connect.php:37
1816
  #, php-format
1817
  msgid "%1$s requires PHP version %2$s+, plugin is currently NOT ACTIVE."
1837
  msgid "Update now!"
1838
  msgstr "¡Actualizar ahora!"
1839
 
1840
+ #: nextend-facebook-connect/nextend-social-login.php:820
1841
+ #: nextend-facebook-connect/nextend-social-login.php:1199
1842
  msgid "Social Login"
1843
  msgstr "Social Login"
1844
 
1845
+ #: nextend-facebook-connect/nextend-social-login.php:1180
1846
  msgid "Social Accounts"
1847
  msgstr "Cuentas Sociales"
1848
 
1887
  #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:9
1888
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:25
1889
  #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:9
 
1890
  #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:9
1891
  #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:9
1892
  #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:20
2012
  #| msgid "Click on the \"Create New App\" button"
2013
  msgid ""
2014
  "Click on the \"<b>Create App</b>\" button and in the Popup choose the "
2015
+ "\"<b>Consumer</b>\" App type!"
2016
  msgstr "Haz clic en el botón de \"Create New App\" por favor"
2017
 
2018
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:27
2038
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:30
2039
  #, fuzzy
2040
  #| msgid "Click on the \"Create New App\" button"
2041
+ msgid "Click the \"<b>Create App</b>\" button and complete the Security Check."
 
2042
  msgstr "Haz clic en el botón de \"Create New App\" por favor"
2043
 
2044
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:31
2184
  msgstr ""
2185
 
2186
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:60
2187
+ msgid "Maintaining the Facebook App:"
2188
+ msgstr ""
2189
+
2190
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:61
2191
+ #, php-format
2192
+ msgid ""
2193
+ "<strong><u>Facebook Data Use Checkup:</u></strong> To protecting people's "
2194
+ "privacy, Facebook might requests you to fill some forms, so they can ensure "
2195
+ "that your API access and data use comply with the Facebook policies.\n"
2196
+ "If Facebook displays the \"%1$s\" modal for your App, then in our "
2197
+ "%2$sdocumentation%3$s you can find more information about the permissions "
2198
+ "that we need."
2199
+ msgstr ""
2200
+
2201
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:63
2202
+ #, php-format
2203
+ msgid ""
2204
+ "<strong><u>New Data Access Levels:</u></strong> Facebook started replacing "
2205
+ "the Development Mode / Live Mode switch in some Apps with %1$s ( earlier "
2206
+ "Development Mode ) and %2$s ( earlier Live mode ), which can be modified on "
2207
+ "the <strong>%3$s</strong> page. You can reach this page from the left hand "
2208
+ "menu of your App, under <strong>%4$s</strong>.\n"
2209
+ "If you want people outside of your business to be able to use their Faceook "
2210
+ "account to register and login over your App, then make sure you requested "
2211
+ "<strong>%2$s</strong> for the <strong>%5$s</strong> and <strong>%6$s</"
2212
+ "strong> permissions. "
2213
+ msgstr ""
2214
+
2215
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:67
2216
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:42
2217
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:35
2218
  #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:39
2219
  #: nextend-social-login-pro/providers/apple/admin/getting-started.php:122
2220
  #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:30
2358
  msgstr ""
2359
 
2360
  #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:12
 
2361
  #, fuzzy, php-format
2362
  #| msgid ""
2363
  #| "Add the following URL to the \"Authorised redirect URIs\" field: <b>%s</b>"
2368
  "Agrega la siguiente URL al campo \"Authorised redirect URIs\": <b>%s</b>"
2369
 
2370
  #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:13
2371
+ #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:14
2372
  #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:14
2373
  #, fuzzy
2374
  #| msgid "Click on \"Save\""
2375
  msgid "Click on \"<b>Save</b>\""
2376
  msgstr "Haz clic en \"Guardar Cambios\""
2377
 
2378
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:17
2379
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:17
2380
+ #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:25
2381
+ #: nextend-social-login-pro/providers/apple/admin/getting-started.php:38
2382
+ #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:9
2383
+ #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:16
2384
+ #: nextend-social-login-pro/providers/github/admin/getting-started.php:16
2385
+ #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:9
2386
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:17
2387
+ #: nextend-social-login-pro/providers/vk/admin/getting-started.php:16
2388
+ #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:9
2389
+ #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:16
2390
+ #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:17
2391
+ #, php-format
2392
+ msgid "Log in with your %s credentials if you are not logged in."
2393
+ msgstr "Inicia sesión con tus %s credenciales si no has iniciado sesión."
2394
+
2395
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:18
2396
+ #, fuzzy, php-format
2397
  #| msgid ""
2398
  #| "If you don't have a project yet, you'll need to create one. You can do "
2399
  #| "this by clicking on the blue \"Create project\" button on the right side"
2400
  msgid ""
2401
  "If you don't have a project yet, you'll need to create one. You can do this "
2402
+ "by clicking on the blue \"<b>%1$s</b>\" text on the right side! ( If you "
2403
+ "already have a project, then in the top bar click on the name of your "
2404
+ "project instead, which will bring up a modal and click <b>\"%2$s\"</b>. )"
 
2405
  msgstr ""
2406
  "Si aún no tienes un proyecto, deberás crear uno. Puedes hacer esto haciendo "
2407
  "clic en el botón azul \"Create project\" en el lado derecho"
2408
 
2409
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:19
2410
+ #, fuzzy, php-format
2411
  #| msgid "Name your project and then click on the Create button"
2412
+ msgid "Name your project and then click on the \"<b>%1$s</b>\" button again!"
2413
  msgstr "Denomina tu proyecto y luego haz clic en el botón Create"
2414
 
2415
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:20
2416
+ msgid ""
2417
+ "Once you have a project, you'll end up in the dashboard. ( If earlier you "
2418
+ "have already had a Project, then make sure you select the created project in "
2419
+ "the top bar! )"
2420
+ msgstr ""
2421
 
2422
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:21
2423
+ #, fuzzy, php-format
2424
+ #| msgid "Click on the \"Credentials\" in the left hand menu"
2425
+ msgid "Click the “<b>%1$s</b>” button on the left hand side."
2426
+ msgstr "Haz clic en \"Credentials\" en el menú de la izquierda"
2427
 
2428
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:22
2429
+ #, php-format
2430
  msgid ""
2431
+ "Choose a <b>%1$s</b> according to your needs and press \"<b>%2$s</b>\". If "
2432
+ "you want to enable the social login with %3$s for any users with a %3$s "
2433
+ "account, then pick the \"%4$s\" option!"
2434
  msgstr ""
2435
 
2436
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:24
2442
  msgstr ""
2443
 
2444
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:27
2445
+ #, php-format
2446
  msgid ""
2447
+ "Enter a name for your App to the \"<b>%1$s</b>\" field, which will appear as "
2448
+ "the name of the app asking for consent."
2449
  msgstr ""
2450
 
2451
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:28
2452
+ #, php-format
2453
+ msgid ""
2454
+ "For the \"<b>%1$s</b>\" field, select an email address that users can use to "
2455
+ "contact you with questions about their consent."
2456
+ msgstr ""
2457
+
2458
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:29
2459
  #, fuzzy, php-format
2460
  #| msgid "Fill the \"Base domain\" field with your domain, probably: <b>%s</b>"
2461
  msgid ""
2462
+ "Under the \"<b>%1$s</b>\" section press the \"<b>%2$s</b>\" button and "
2463
+ "enter your domain name, probably: <b>%3$s</b> without subdomains!"
2464
  msgstr ""
2465
  "Llena el campo \"Base domain\" con tu dominio, probablemente: <b>%s</b>"
2466
 
 
 
 
 
 
 
2467
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:30
2468
  #, php-format
2469
  msgid ""
2470
+ "At the \"<b>%1$s</b>\" section, enter an email address that %2$s can use to "
2471
+ "notify you about any changes to your project."
2472
  msgstr ""
2473
 
2474
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:31
2475
+ #, php-format
2476
+ msgid ""
2477
+ "Press \"<b>%1$s</b>\" then press it again on the \"%2$s\", \"%3$s\" pages, "
2478
+ "too!"
2479
  msgstr ""
2480
 
2481
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:32
2482
+ #, php-format
2483
+ msgid ""
2484
+ "On the left side, click on the \"<b>%1$s</b>\" menu point, then click the "
2485
+ "\"<b>%2$s</b>\" button in the top bar."
2486
+ msgstr ""
2487
+
2488
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:33
2489
+ #, fuzzy, php-format
2490
+ #| msgid "Click on the Create button"
2491
+ msgid "Choose the \"<b>%1$s</b>\" option."
2492
+ msgstr "Haz clic en el botón Create"
2493
+
2494
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:34
2495
+ #, fuzzy, php-format
2496
  #| msgid "Click on the \"Create New App\" button"
2497
+ msgid "Select the \"<b>%1$s</b>\" under Application type."
2498
  msgstr "Haz clic en el botón de \"Create New App\" por favor"
2499
 
2500
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:35
2501
+ #, php-format
2502
+ msgid "Enter a \"<b>%1$s</b>\" for your OAuth client ID."
2503
  msgstr ""
2504
 
2505
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:36
2506
+ #, php-format
2507
+ msgid ""
2508
+ "Under the \"<b>%1$s</b>\" section click \"<b>%2$s</b>\" and add the "
2509
+ "following URL: <b>%3$s</b>"
2510
+ msgstr ""
2511
+
2512
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:37
2513
+ #, fuzzy, php-format
2514
  #| msgid "Click on the Create button"
2515
+ msgid "Click on the \"<b>%1$s</b>\" button"
2516
  msgstr "Haz clic en el botón Create"
2517
 
2518
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:38
2519
+ #, fuzzy, php-format
2520
  #| msgid ""
2521
  #| "A modal should pop up with your credentials. If that doesn't happen, go "
2522
  #| "to the Credentials in the left hand menu and select your app by clicking "
2524
  #| "Secret from there."
2525
  msgid ""
2526
  "A modal should pop up with your credentials. If that doesn't happen, go to "
2527
+ "the %1$s in the left hand menu and select your app by clicking on its name "
2528
+ "and you'll be able to copy-paste the \"<b>%2$s</b>\" and \"<b>%3$s</b>\" "
2529
+ "from there."
2530
  msgstr ""
2531
  "Un modal debería aparecer con tus credenciales. Si eso no sucede, ve a "
2532
  "Credentials en el menú de la izquierda y selecciona tu aplicación haciendo "
2596
  msgstr "Denomina tu proyecto y luego haz clic en el botón Create"
2597
 
2598
  #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:11
 
2599
  #, fuzzy
2600
  #| msgid "Click on the \"Create New App\" button"
2601
  msgid "Click on the <b>Edit</b> button at <b>Authentication settings</b>."
2607
  msgid "Add the following URL to the \"<b>Callback URLs</b>\" field: <b>%s</b>"
2608
  msgstr "Agrega la siguiente URL al campo de \"Callback URL\": <b>%s</b>"
2609
 
2610
+ #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:13
2611
+ #, fuzzy, php-format
2612
+ #| msgid "Make sure that the \"%1$s\" field contains %2$s"
2613
+ msgid ""
2614
+ "Make sure the \"<b>%1$s</b>\" field contains the following URL: <b>%2$s</b>"
2615
+ msgstr "Asegúrate que el campo \"%1$s\" tiene %2$s"
 
 
 
 
 
 
 
 
 
2616
 
2617
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:18
2618
  msgid ""
2628
  msgstr ""
2629
 
2630
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:20
2631
+ #, fuzzy, php-format
2632
  #| msgid "Click on \"Save\""
2633
+ msgid "Click on \"<b>%s</b>\"!"
2634
  msgstr "Haz clic en \"Guardar Cambios\""
2635
 
2636
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:21
2637
  msgid ""
2638
  "Name your project, and go through the basic setup. You’ll need to select "
2639
+ "your use case, give a description and enter a name for the App as well."
2640
  msgstr ""
2641
 
2642
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:22
2643
+ #, fuzzy, php-format
2644
+ #| msgid "Click \"Edit\"."
2645
+ msgid "Click \"<b>%s</b>\"!"
2646
+ msgstr "Haz clic en \"Edit\"."
2647
 
2648
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:23
2649
+ #, php-format
2650
  msgid ""
2651
+ "You’ll find your API key and secret on this page. Copy and paste the \"<b>"
2652
+ "%1$s</b>\" and the \"<b>%2$s</b>\" to the corresponding fields at %3$s and "
2653
+ "press \"<b>Save Changes</b>\"."
2654
  msgstr ""
2655
 
2656
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:24
2657
+ #, php-format
2658
+ msgid ""
2659
+ "Go back to your Twitter project and on the left side, under the \"<b>%s</b>"
2660
+ "\" section click on the name of your App."
2661
+ msgstr ""
2662
 
2663
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:25
2664
+ #, fuzzy, php-format
2665
+ #| msgid "Name your project and then click on the Create button"
2666
+ msgid "Scroll down and click on the \"<b>%1$s</b>\" button at \"<b>%2$s</b>\"."
2667
+ msgstr "Denomina tu proyecto y luego haz clic en el botón Create"
2668
 
2669
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:26
2670
+ #, fuzzy, php-format
2671
+ #| msgid "Click on the Create button"
2672
+ msgid "Switch on the \"<b>%s</b>\" option."
2673
+ msgstr "Haz clic en el botón Create"
 
 
2674
 
2675
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:27
2676
  #, fuzzy, php-format
2677
+ #| msgid ""
2678
+ #| "Add the following URL to the \"Allowed Return URLs\" field <b>%s</b> "
2679
+ msgid "Add the following URL to the \"<b>%1$s</b>\" field: <b>%2$s</b>"
2680
+ msgstr "Agrega la siguiente URL al campo \"Allowed Return URLs\" <b>%s</b> "
2681
 
2682
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:28
2683
  #, fuzzy, php-format
2684
  #| msgid ""
2685
  #| "Add the following URL to the \"Allowed Return URLs\" field <b>%s</b> "
2686
+ msgid "Enter your site's URL to the \"<b>%1$s</b>\" field: <b>%2$s</b>"
2687
  msgstr "Agrega la siguiente URL al campo \"Allowed Return URLs\" <b>%s</b> "
2688
 
2689
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:29
2690
+ #, php-format
2691
  msgid ""
2692
  "If you want to get the email address as well, then don’t forget to enable "
2693
+ "the \"<b>%1$s</b>\" option. In this case you also need to fill the \"<b>"
2694
+ "%2$s</b>\" and the \"<b>%3$s</b>\" fields with the corresponding URLs!"
 
2695
  msgstr ""
2696
 
2697
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:30
2698
+ #, fuzzy, php-format
2699
  #| msgid "Click on \"Save\""
2700
+ msgid "Click on \"<b>%s</b>\"."
2701
  msgstr "Haz clic en \"Guardar Cambios\""
2702
 
2703
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:31
2704
  #, php-format
2705
+ msgid "Go back to %1$s and <b>Verify</b> your %2$s provider."
2706
  msgstr ""
2707
 
2708
  #: nextend-facebook-connect/providers/twitter/admin/settings.php:27
3100
 
3101
  #: nextend-social-login-pro/providers/apple/admin/getting-started.php:35
3102
  msgid ""
3103
+ "Make sure you have an <strong>active subscription for the <a href=\"https://"
3104
+ "developer.apple.com/programs/\" target=\"_blank\">Apple Developer Program</"
3105
+ "a></strong>, as that is necessary for both creating and maintaining an Apple "
3106
+ "App!"
3107
  msgstr ""
3108
 
3109
  #: nextend-social-login-pro/providers/apple/admin/getting-started.php:36
4192
  msgid "Required permission: %1$s"
4193
  msgstr "Alcance requerido: %1$s"
4194
 
4195
+ #: nextend-social-login-pro/template-parts/buddypress/login/above-separator.php:18
4196
+ #: nextend-social-login-pro/template-parts/buddypress/login/below-separator.php:18
4197
+ #: nextend-social-login-pro/template-parts/embedded-login/above-separator.php:18
4198
+ #: nextend-social-login-pro/template-parts/embedded-login/below-separator.php:18
4199
+ #: nextend-social-login-pro/template-parts/login/above-separator.php:25
4200
+ #: nextend-social-login-pro/template-parts/login/below-separator.php:30
4201
+ #: nextend-social-login-pro/template-parts/memberpress/login/above-separator.php:18
4202
+ #: nextend-social-login-pro/template-parts/memberpress/login/below-separator.php:18
4203
+ #: nextend-social-login-pro/template-parts/memberpress/sign-up/above-separator.php:18
4204
+ #: nextend-social-login-pro/template-parts/memberpress/sign-up/below-separator.php:18
4205
+ #: nextend-social-login-pro/template-parts/ultimate-member/login/above-separator.php:18
4206
+ #: nextend-social-login-pro/template-parts/ultimate-member/login/below-separator.php:18
4207
+ #: nextend-social-login-pro/template-parts/ultimate-member/register/above-separator.php:18
4208
+ #: nextend-social-login-pro/template-parts/ultimate-member/register/below-separator.php:18
4209
+ #: nextend-social-login-pro/template-parts/userpro/login/above-separator.php:18
4210
+ #: nextend-social-login-pro/template-parts/userpro/login/below-separator.php:18
4211
+ #: nextend-social-login-pro/template-parts/userpro/register/above-separator.php:18
4212
+ #: nextend-social-login-pro/template-parts/userpro/register/below-separator.php:18
4213
+ #: nextend-social-login-pro/template-parts/woocommerce/billing/above-separator.php:25
4214
+ #: nextend-social-login-pro/template-parts/woocommerce/billing/below-separator.php:25
4215
+ #: nextend-social-login-pro/template-parts/woocommerce/billing/default-separator-after.php:13
4216
+ #: nextend-social-login-pro/template-parts/woocommerce/billing/default-separator-before.php:13
4217
+ #: nextend-social-login-pro/template-parts/woocommerce/checkout-for-woocommerce/above-separator.php:25
4218
+ #: nextend-social-login-pro/template-parts/woocommerce/checkout-for-woocommerce/below-separator.php:25
4219
+ #: nextend-social-login-pro/template-parts/woocommerce/login/above-separator.php:18
4220
+ #: nextend-social-login-pro/template-parts/woocommerce/login/below-separator.php:18
4221
+ #: nextend-social-login-pro/template-parts/woocommerce/register/above-separator.php:18
4222
+ #: nextend-social-login-pro/template-parts/woocommerce/register/below-separator.php:18
4223
  msgid "OR"
4224
  msgstr "O"
4225
 
4230
  msgid "Social accounts"
4231
  msgstr "Cuentas sociales"
4232
 
4233
+ #, fuzzy
4234
+ #~| msgid "Click on \"Save\""
4235
+ #~ msgid "Click on <b>+ New Project</b>!"
4236
+ #~ msgstr "Haz clic en \"Guardar Cambios\""
4237
+
4238
+ #, fuzzy, php-format
4239
+ #~| msgid "Click on \"Save Changes\""
4240
+ #~ msgid "Click on the <b>App Settings</b> button at %s."
4241
+ #~ msgstr "Haz clic en \"Guardar Cambios\""
4242
+
4243
+ #, fuzzy, php-format
4244
+ #~| msgid "Add the following URL to the \"Callback URL\" field: <b>%s</b>"
4245
+ #~ msgid "Add the following URL to the <b>Callback URLs</b> field: <b>%s</b>"
4246
+ #~ msgstr "Agrega la siguiente URL al campo de \"Callback URL\": <b>%s</b>"
4247
+
4248
+ #, fuzzy
4249
+ #~| msgid "Click on \"Save\""
4250
+ #~ msgid "Click on <b>Save</b>."
4251
+ #~ msgstr "Haz clic en \"Guardar Cambios\""
4252
+
4253
+ #, fuzzy
4254
+ #~| msgid "Register"
4255
+ #~ msgctxt "NSL Register Form submit button text"
4256
+ #~ msgid "Register"
4257
+ #~ msgstr "Registrarse"
4258
+
4259
+ #~ msgid "Once you have a project, you'll end up in the dashboard."
4260
+ #~ msgstr "Una vez que tengas un proyecto, llegarás al escritorio."
4261
+
4262
+ #, fuzzy
4263
+ #~| msgid "Save your changes."
4264
+ #~ msgid "Save your settings!"
4265
+ #~ msgstr "Guarda tus cambios."
4266
+
4267
  #, fuzzy, php-format
4268
  #~| msgid "Log in with your %s credentials if you are not logged in"
4269
  #~ msgid "Log in with your %s credentials if you are not logged in yet"
4515
  #~ "Ve al menú de Ajustes que se encuentra debajo del Facebook Login en el "
4516
  #~ "menú de la izquierda."
4517
 
 
 
 
4518
  #~ msgid "The following settings will be imported:"
4519
  #~ msgstr "Se importarán las siguientes configuraciones:"
4520
 
languages/nextend-facebook-connect-fr_FR.mo CHANGED
Binary file
languages/nextend-facebook-connect-fr_FR.po CHANGED
@@ -1,15 +1,15 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: ss3\n"
4
- "POT-Creation-Date: 2021-01-27 13:57+0100\n"
5
- "PO-Revision-Date: 2021-01-27 13:57+0100\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: fr\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 2.4.1\n"
13
  "X-Poedit-Basepath: ../..\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
@@ -117,29 +117,29 @@ msgstr ""
117
  msgid "User"
118
  msgstr ""
119
 
120
- #: nextend-facebook-connect/admin/admin.php:206
121
  #, php-format
122
  msgid "%s needs json_decode function."
123
  msgstr ""
124
 
125
- #: nextend-facebook-connect/admin/admin.php:206
126
  msgid "Please contact your server administrator and ask for solution!"
127
  msgstr ""
128
 
129
- #: nextend-facebook-connect/admin/admin.php:238
130
- #: nextend-facebook-connect/admin/admin.php:268
131
  msgid "Settings saved."
132
  msgstr ""
133
 
134
- #: nextend-facebook-connect/admin/admin.php:247
135
  msgid "The activation was successful"
136
  msgstr ""
137
 
138
- #: nextend-facebook-connect/admin/admin.php:258
139
  msgid "Deactivate completed."
140
  msgstr ""
141
 
142
- #: nextend-facebook-connect/admin/admin.php:437
143
  #: nextend-facebook-connect/admin/templates-provider/menu.php:15
144
  #: nextend-facebook-connect/admin/templates/providers.php:89
145
  #: nextend-facebook-connect/admin/templates/providers.php:101
@@ -147,7 +147,7 @@ msgstr ""
147
  msgid "Settings"
148
  msgstr ""
149
 
150
- #: nextend-facebook-connect/admin/admin.php:520
151
  #: nextend-facebook-connect/includes/oauth2.php:143
152
  #: nextend-facebook-connect/includes/oauth2.php:288
153
  #: nextend-facebook-connect/providers/facebook/facebook-client.php:84
@@ -158,7 +158,7 @@ msgstr ""
158
  msgid "Unexpected response: %s"
159
  msgstr ""
160
 
161
- #: nextend-facebook-connect/admin/admin.php:581
162
  #: nextend-facebook-connect/admin/templates/fix-redirect-uri.php:21
163
  #, php-format
164
  msgid ""
@@ -166,31 +166,31 @@ msgid ""
166
  "URIs in the related social applications."
167
  msgstr ""
168
 
169
- #: nextend-facebook-connect/admin/admin.php:582
170
  #: nextend-social-login-pro/providers/apple/apple.php:310
171
  msgid "Fix Error"
172
  msgstr ""
173
 
174
- #: nextend-facebook-connect/admin/admin.php:582
175
  msgid "Oauth Redirect URI"
176
  msgstr ""
177
 
178
- #: nextend-facebook-connect/admin/admin.php:599
179
  #, php-format
180
  msgid ""
181
  "%1$s detected that %2$s installed on your site. You need the Pro Addon to "
182
  "display Social Login buttons in %2$s login form!"
183
  msgstr ""
184
 
185
- #: nextend-facebook-connect/admin/admin.php:600
186
  msgid "Dismiss and check Pro Addon"
187
  msgstr ""
188
 
189
- #: nextend-facebook-connect/admin/admin.php:600
190
  msgid "Dismiss"
191
  msgstr ""
192
 
193
- #: nextend-facebook-connect/admin/admin.php:606
194
  #, php-format
195
  msgid ""
196
  "%1$s detected that %2$s installed on your site. You must set \"<b>Page for "
@@ -198,35 +198,35 @@ msgid ""
198
  "work properly."
199
  msgstr ""
200
 
201
- #: nextend-facebook-connect/admin/admin.php:607
202
  msgid "Fix now"
203
  msgstr ""
204
 
205
- #: nextend-facebook-connect/admin/admin.php:631
206
  msgid "Activate your Pro Addon"
207
  msgstr ""
208
 
209
- #: nextend-facebook-connect/admin/admin.php:632
210
  msgid ""
211
  "To be able to use the Pro features, you need to activate Nextend Social "
212
  "Login Pro Addon. You can do this by clicking on the Activate button below "
213
  "then select the related purchase."
214
  msgstr ""
215
 
216
- #: nextend-facebook-connect/admin/admin.php:637
217
  #: nextend-social-login-pro/nextend-social-login-pro.php:110
218
  msgid "Activate"
219
  msgstr ""
220
 
221
- #: nextend-facebook-connect/admin/admin.php:735
222
  msgid "License key"
223
  msgstr ""
224
 
225
- #: nextend-facebook-connect/admin/admin.php:758
226
  msgid "OAuth proxy page"
227
  msgstr ""
228
 
229
- #: nextend-facebook-connect/admin/admin.php:761
230
  msgid "Register flow page"
231
  msgstr ""
232
 
@@ -235,51 +235,51 @@ msgstr ""
235
  msgid "You have logged in successfully."
236
  msgstr ""
237
 
238
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:80
239
  msgid "Login label"
240
  msgstr ""
241
 
242
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:85
243
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:101
244
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:114
245
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:125
246
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:154
247
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:184
248
  #: nextend-facebook-connect/admin/templates/settings/privacy.php:53
249
  msgid "Reset to default"
250
  msgstr ""
251
 
252
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:95
253
  msgid "Register label"
254
  msgstr ""
255
 
256
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:108
257
  msgid "Link label"
258
  msgstr ""
259
 
260
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:120
261
  msgid "Unlink label"
262
  msgstr ""
263
 
264
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:131
265
  msgid "Default button"
266
  msgstr ""
267
 
268
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:147
269
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:177
270
  msgid "Use custom button"
271
  msgstr ""
272
 
273
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:154
274
  #, php-format
275
  msgid "Use the %s in your custom button's code to make the label show up."
276
  msgstr ""
277
 
278
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:162
279
  msgid "Icon button"
280
  msgstr ""
281
 
282
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:193
283
  #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:140
284
  #: nextend-facebook-connect/admin/templates-provider/sync-data.php:104
285
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:170
@@ -457,7 +457,6 @@ msgid "Default"
457
  msgstr ""
458
 
459
  #: nextend-facebook-connect/admin/templates-provider/sync-data.php:50
460
- #: nextend-facebook-connect/includes/userData.php:188
461
  msgid "Register"
462
  msgstr ""
463
 
@@ -1392,7 +1391,7 @@ msgid "Avatar"
1392
  msgstr ""
1393
 
1394
  #: nextend-facebook-connect/admin/templates/settings/privacy.php:102
1395
- #: nextend-facebook-connect/includes/provider.php:1100
1396
  msgid "Access token"
1397
  msgstr ""
1398
 
@@ -1506,6 +1505,14 @@ msgid_plural "Avatar <span class=\"count\">(%s)</span>"
1506
  msgstr[0] ""
1507
  msgstr[1] ""
1508
 
 
 
 
 
 
 
 
 
1509
  #: nextend-facebook-connect/includes/compat-wp-login.php:63
1510
  #, php-format
1511
  msgid "%1$s &lsaquo; %2$s &#8212; WordPress"
@@ -1576,39 +1583,39 @@ msgid "Please save your changes before verifying settings."
1576
  msgstr ""
1577
 
1578
  #: nextend-facebook-connect/includes/provider.php:358
1579
- #: nextend-facebook-connect/includes/provider.php:717
1580
- #: nextend-facebook-connect/includes/provider.php:725
1581
  msgid "Authentication successful"
1582
  msgstr ""
1583
 
1584
- #: nextend-facebook-connect/includes/provider.php:654
1585
  #: nextend-facebook-connect/includes/user.php:168
1586
  #: nextend-facebook-connect/includes/user.php:597
1587
  msgid "Authentication error"
1588
  msgstr ""
1589
 
1590
- #: nextend-facebook-connect/includes/provider.php:669
1591
  msgid "Unlink successful."
1592
  msgstr ""
1593
 
1594
- #: nextend-facebook-connect/includes/provider.php:671
1595
  msgid "Unlink is not allowed!"
1596
  msgstr ""
1597
 
1598
- #: nextend-facebook-connect/includes/provider.php:886
1599
- #: nextend-facebook-connect/includes/provider.php:893
1600
  msgid "The test was successful"
1601
  msgstr ""
1602
 
1603
- #: nextend-facebook-connect/includes/provider.php:939
1604
  msgid "Authentication failed"
1605
  msgstr ""
1606
 
1607
- #: nextend-facebook-connect/includes/provider.php:1092
1608
  msgid "Identifier"
1609
  msgstr ""
1610
 
1611
- #: nextend-facebook-connect/includes/provider.php:1108
1612
  msgid "Profile picture"
1613
  msgstr ""
1614
 
@@ -1639,6 +1646,11 @@ msgstr ""
1639
  msgid "Register For This Site!"
1640
  msgstr ""
1641
 
 
 
 
 
 
1642
  #: nextend-facebook-connect/nextend-facebook-connect.php:37
1643
  #, php-format
1644
  msgid "%1$s requires PHP version %2$s+, plugin is currently NOT ACTIVE."
@@ -1662,12 +1674,12 @@ msgstr ""
1662
  msgid "Update now!"
1663
  msgstr ""
1664
 
1665
- #: nextend-facebook-connect/nextend-social-login.php:762
1666
- #: nextend-facebook-connect/nextend-social-login.php:1140
1667
  msgid "Social Login"
1668
  msgstr ""
1669
 
1670
- #: nextend-facebook-connect/nextend-social-login.php:1121
1671
  msgid "Social Accounts"
1672
  msgstr ""
1673
 
@@ -1709,7 +1721,6 @@ msgstr ""
1709
  #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:9
1710
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:25
1711
  #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:9
1712
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:17
1713
  #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:9
1714
  #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:9
1715
  #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:20
@@ -1817,7 +1828,7 @@ msgstr ""
1817
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:26
1818
  msgid ""
1819
  "Click on the \"<b>Create App</b>\" button and in the Popup choose the "
1820
- "\"<b>Build Connected Experiences</b>\" option!"
1821
  msgstr ""
1822
 
1823
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:27
@@ -1841,8 +1852,7 @@ msgid ""
1841
  msgstr ""
1842
 
1843
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:30
1844
- msgid ""
1845
- "Click the \"<b>Create App ID</b>\" button and complete the Security Check."
1846
  msgstr ""
1847
 
1848
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:31
@@ -1955,8 +1965,37 @@ msgid ""
1955
  msgstr ""
1956
 
1957
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:60
1958
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:40
1959
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:37
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1960
  #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:39
1961
  #: nextend-social-login-pro/providers/apple/admin/getting-started.php:122
1962
  #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:30
@@ -2093,7 +2132,6 @@ msgid ""
2093
  msgstr ""
2094
 
2095
  #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:12
2096
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:34
2097
  #, php-format
2098
  msgid ""
2099
  "Add the following URL to the \"<b>Authorised redirect URIs</b>\" field: <b>"
@@ -2101,37 +2139,60 @@ msgid ""
2101
  msgstr ""
2102
 
2103
  #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:13
2104
- #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:13
2105
  #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:14
2106
  msgid "Click on \"<b>Save</b>\""
2107
  msgstr ""
2108
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2109
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:18
 
2110
  msgid ""
2111
  "If you don't have a project yet, you'll need to create one. You can do this "
2112
- "by clicking on the blue \"<b>Create</b>\" button on the right side! ( If "
2113
- "you already have a project, click on the name of your project in the "
2114
- "dashboard instead, which will bring up a modal and click <b>\"New Project\"</"
2115
- "b>. )"
2116
  msgstr ""
2117
 
2118
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:19
2119
- msgid "Name your project and then click on the \"<b>Create</b>\" button again"
 
2120
  msgstr ""
2121
 
2122
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:20
2123
- msgid "Once you have a project, you'll end up in the dashboard."
 
 
 
2124
  msgstr ""
2125
 
2126
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:21
2127
- msgid "Click the “<b>OAuth consent screen</b>” button on the left hand side."
 
2128
  msgstr ""
2129
 
2130
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:22
 
2131
  msgid ""
2132
- "Choose a <b>User Type</b> according to your needs. If you want to enable the "
2133
- "social login with Google for any users with a Google account, then pick the "
2134
- "External option!"
2135
  msgstr ""
2136
 
2137
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:24
@@ -2143,51 +2204,81 @@ msgid ""
2143
  msgstr ""
2144
 
2145
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:27
 
2146
  msgid ""
2147
- "Enter a name for your App to the \"<b>Application name</b>\" field, which "
2148
- "will appear as the name of the app asking for consent."
2149
  msgstr ""
2150
 
2151
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:28
2152
  #, php-format
2153
  msgid ""
2154
- "Fill the \"<b>Authorized domains</b>\" field with your domain name probably: "
2155
- "<b>%s</b> without subdomains!"
2156
  msgstr ""
2157
 
2158
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:29
2159
- msgid "Save your settings!"
 
 
 
2160
  msgstr ""
2161
 
2162
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:30
2163
  #, php-format
2164
  msgid ""
2165
- "On the left side, click on the \"<b>%1$s</b>\" menu point, then click the "
2166
- "\"<b>%2$s</b>\" button in the top bar."
2167
  msgstr ""
2168
 
2169
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:31
2170
- msgid "Choose the \"<b>OAuth client ID</b>\" option."
 
 
 
2171
  msgstr ""
2172
 
2173
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:32
2174
- msgid "Select the \"<b>Web application</b>\" under Application type."
 
 
 
2175
  msgstr ""
2176
 
2177
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:33
2178
- msgid "Enter a \"<b>Name</b>\" for your OAuth client ID."
 
 
 
 
 
 
2179
  msgstr ""
2180
 
2181
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:35
2182
- msgid "Click on the \"<b>Create</b>\" button"
 
2183
  msgstr ""
2184
 
2185
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:36
 
 
 
 
 
 
 
 
 
 
 
 
 
2186
  msgid ""
2187
  "A modal should pop up with your credentials. If that doesn't happen, go to "
2188
- "the Credentials in the left hand menu and select your app by clicking on its "
2189
- "name and you'll be able to copy-paste the \"<b>Client ID</b>\" and "
2190
- "\"<b>Client Secret</b>\" from there."
2191
  msgstr ""
2192
 
2193
  #: nextend-facebook-connect/providers/google/admin/settings.php:27
@@ -2248,7 +2339,6 @@ msgid ""
2248
  msgstr ""
2249
 
2250
  #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:11
2251
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:27
2252
  msgid "Click on the <b>Edit</b> button at <b>Authentication settings</b>."
2253
  msgstr ""
2254
 
@@ -2257,20 +2347,10 @@ msgstr ""
2257
  msgid "Add the following URL to the \"<b>Callback URLs</b>\" field: <b>%s</b>"
2258
  msgstr ""
2259
 
2260
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:17
2261
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:25
2262
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:38
2263
- #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:9
2264
- #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:16
2265
- #: nextend-social-login-pro/providers/github/admin/getting-started.php:16
2266
- #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:9
2267
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:17
2268
- #: nextend-social-login-pro/providers/vk/admin/getting-started.php:16
2269
- #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:9
2270
- #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:16
2271
- #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:17
2272
  #, php-format
2273
- msgid "Log in with your %s credentials if you are not logged in."
 
2274
  msgstr ""
2275
 
2276
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:18
@@ -2287,68 +2367,72 @@ msgid ""
2287
  msgstr ""
2288
 
2289
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:20
2290
- msgid "Click on <b>+ New Project</b>!"
 
2291
  msgstr ""
2292
 
2293
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:21
2294
  msgid ""
2295
  "Name your project, and go through the basic setup. You’ll need to select "
2296
- "your use case and give a description."
2297
  msgstr ""
2298
 
2299
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:22
2300
- msgid "Create a new app, or select an existing one, then click <b>Complete</b>"
 
2301
  msgstr ""
2302
 
2303
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:23
 
2304
  msgid ""
2305
- "You’ll find your API key and secret on this page. Copy and paste the <b>API "
2306
- "key</b> and the <b>API secret key</b> to the corresponding fields at Nextend "
2307
- "Social Login and press <b>Save Changes</b>."
2308
  msgstr ""
2309
 
2310
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:24
2311
  #, php-format
2312
- msgid "Click on the <b>App Settings</b> button at %s."
 
 
2313
  msgstr ""
2314
 
2315
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:25
2316
- msgid "Find the Apps section, and the app you created a few steps ago."
 
2317
  msgstr ""
2318
 
2319
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:26
2320
- msgid "Click on the App settings icon. (The one that looks like a gear.)"
2321
- msgstr ""
2322
-
2323
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:28
2324
- msgid "Switch on the <b>Enable 3-legged OAuth</b> option."
2325
  msgstr ""
2326
 
2327
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:29
2328
  #, php-format
2329
- msgid "Add the following URL to the <b>Callback URLs</b> field: <b>%s</b>"
2330
  msgstr ""
2331
 
2332
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:30
2333
  #, php-format
2334
- msgid "Enter your site's URL to the <b>Website URL</b> field: <b>%s</b>"
2335
  msgstr ""
2336
 
2337
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:31
 
2338
  msgid ""
2339
  "If you want to get the email address as well, then don’t forget to enable "
2340
- "the <b>Request email address from users</b> option. In this case you also "
2341
- "need to fill the <b>Terms of service</b> and the <b>Privacy policy</b> "
2342
- "fields with the corresponding URLs!"
2343
  msgstr ""
2344
 
2345
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:32
2346
- msgid "Click on <b>Save</b>."
 
2347
  msgstr ""
2348
 
2349
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:33
2350
  #, php-format
2351
- msgid "Go back to Nextend Social Login and <b>Verify</b> your %s provider."
2352
  msgstr ""
2353
 
2354
  #: nextend-facebook-connect/providers/twitter/admin/settings.php:27
@@ -2667,8 +2751,10 @@ msgstr ""
2667
 
2668
  #: nextend-social-login-pro/providers/apple/admin/getting-started.php:35
2669
  msgid ""
2670
- "Make sure you have an <strong>active subscription for the Apple Developer "
2671
- "Program</strong>!"
 
 
2672
  msgstr ""
2673
 
2674
  #: nextend-social-login-pro/providers/apple/admin/getting-started.php:36
@@ -3577,34 +3663,34 @@ msgstr ""
3577
  msgid "Required permission: %1$s"
3578
  msgstr ""
3579
 
3580
- #: nextend-social-login-pro/template-parts/buddypress/login/above-separator.php:10
3581
- #: nextend-social-login-pro/template-parts/buddypress/login/below-separator.php:10
3582
- #: nextend-social-login-pro/template-parts/embedded-login/above-separator.php:10
3583
- #: nextend-social-login-pro/template-parts/embedded-login/below-separator.php:10
3584
- #: nextend-social-login-pro/template-parts/login/above-separator.php:20
3585
- #: nextend-social-login-pro/template-parts/login/below-separator.php:8
3586
- #: nextend-social-login-pro/template-parts/memberpress/login/above-separator.php:10
3587
- #: nextend-social-login-pro/template-parts/memberpress/login/below-separator.php:10
3588
- #: nextend-social-login-pro/template-parts/memberpress/sign-up/above-separator.php:10
3589
- #: nextend-social-login-pro/template-parts/memberpress/sign-up/below-separator.php:10
3590
- #: nextend-social-login-pro/template-parts/ultimate-member/login/above-separator.php:10
3591
- #: nextend-social-login-pro/template-parts/ultimate-member/login/below-separator.php:10
3592
- #: nextend-social-login-pro/template-parts/ultimate-member/register/above-separator.php:10
3593
- #: nextend-social-login-pro/template-parts/ultimate-member/register/below-separator.php:10
3594
- #: nextend-social-login-pro/template-parts/userpro/login/above-separator.php:10
3595
- #: nextend-social-login-pro/template-parts/userpro/login/below-separator.php:10
3596
- #: nextend-social-login-pro/template-parts/userpro/register/above-separator.php:10
3597
- #: nextend-social-login-pro/template-parts/userpro/register/below-separator.php:10
3598
- #: nextend-social-login-pro/template-parts/woocommerce/billing/above-separator.php:11
3599
- #: nextend-social-login-pro/template-parts/woocommerce/billing/below-separator.php:11
3600
- #: nextend-social-login-pro/template-parts/woocommerce/billing/default-separator-after.php:7
3601
- #: nextend-social-login-pro/template-parts/woocommerce/billing/default-separator-before.php:7
3602
- #: nextend-social-login-pro/template-parts/woocommerce/checkout-for-woocommerce/above-separator.php:15
3603
- #: nextend-social-login-pro/template-parts/woocommerce/checkout-for-woocommerce/below-separator.php:15
3604
- #: nextend-social-login-pro/template-parts/woocommerce/login/above-separator.php:10
3605
- #: nextend-social-login-pro/template-parts/woocommerce/login/below-separator.php:10
3606
- #: nextend-social-login-pro/template-parts/woocommerce/register/above-separator.php:10
3607
- #: nextend-social-login-pro/template-parts/woocommerce/register/below-separator.php:10
3608
  msgid "OR"
3609
  msgstr "OU"
3610
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: ss3\n"
4
+ "POT-Creation-Date: 2021-06-16 14:00+0200\n"
5
+ "PO-Revision-Date: 2021-06-16 14:00+0200\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: fr\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 3.0\n"
13
  "X-Poedit-Basepath: ../..\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
117
  msgid "User"
118
  msgstr ""
119
 
120
+ #: nextend-facebook-connect/admin/admin.php:204
121
  #, php-format
122
  msgid "%s needs json_decode function."
123
  msgstr ""
124
 
125
+ #: nextend-facebook-connect/admin/admin.php:204
126
  msgid "Please contact your server administrator and ask for solution!"
127
  msgstr ""
128
 
129
+ #: nextend-facebook-connect/admin/admin.php:236
130
+ #: nextend-facebook-connect/admin/admin.php:266
131
  msgid "Settings saved."
132
  msgstr ""
133
 
134
+ #: nextend-facebook-connect/admin/admin.php:245
135
  msgid "The activation was successful"
136
  msgstr ""
137
 
138
+ #: nextend-facebook-connect/admin/admin.php:256
139
  msgid "Deactivate completed."
140
  msgstr ""
141
 
142
+ #: nextend-facebook-connect/admin/admin.php:435
143
  #: nextend-facebook-connect/admin/templates-provider/menu.php:15
144
  #: nextend-facebook-connect/admin/templates/providers.php:89
145
  #: nextend-facebook-connect/admin/templates/providers.php:101
147
  msgid "Settings"
148
  msgstr ""
149
 
150
+ #: nextend-facebook-connect/admin/admin.php:518
151
  #: nextend-facebook-connect/includes/oauth2.php:143
152
  #: nextend-facebook-connect/includes/oauth2.php:288
153
  #: nextend-facebook-connect/providers/facebook/facebook-client.php:84
158
  msgid "Unexpected response: %s"
159
  msgstr ""
160
 
161
+ #: nextend-facebook-connect/admin/admin.php:579
162
  #: nextend-facebook-connect/admin/templates/fix-redirect-uri.php:21
163
  #, php-format
164
  msgid ""
166
  "URIs in the related social applications."
167
  msgstr ""
168
 
169
+ #: nextend-facebook-connect/admin/admin.php:580
170
  #: nextend-social-login-pro/providers/apple/apple.php:310
171
  msgid "Fix Error"
172
  msgstr ""
173
 
174
+ #: nextend-facebook-connect/admin/admin.php:580
175
  msgid "Oauth Redirect URI"
176
  msgstr ""
177
 
178
+ #: nextend-facebook-connect/admin/admin.php:597
179
  #, php-format
180
  msgid ""
181
  "%1$s detected that %2$s installed on your site. You need the Pro Addon to "
182
  "display Social Login buttons in %2$s login form!"
183
  msgstr ""
184
 
185
+ #: nextend-facebook-connect/admin/admin.php:598
186
  msgid "Dismiss and check Pro Addon"
187
  msgstr ""
188
 
189
+ #: nextend-facebook-connect/admin/admin.php:598
190
  msgid "Dismiss"
191
  msgstr ""
192
 
193
+ #: nextend-facebook-connect/admin/admin.php:604
194
  #, php-format
195
  msgid ""
196
  "%1$s detected that %2$s installed on your site. You must set \"<b>Page for "
198
  "work properly."
199
  msgstr ""
200
 
201
+ #: nextend-facebook-connect/admin/admin.php:605
202
  msgid "Fix now"
203
  msgstr ""
204
 
205
+ #: nextend-facebook-connect/admin/admin.php:629
206
  msgid "Activate your Pro Addon"
207
  msgstr ""
208
 
209
+ #: nextend-facebook-connect/admin/admin.php:630
210
  msgid ""
211
  "To be able to use the Pro features, you need to activate Nextend Social "
212
  "Login Pro Addon. You can do this by clicking on the Activate button below "
213
  "then select the related purchase."
214
  msgstr ""
215
 
216
+ #: nextend-facebook-connect/admin/admin.php:635
217
  #: nextend-social-login-pro/nextend-social-login-pro.php:110
218
  msgid "Activate"
219
  msgstr ""
220
 
221
+ #: nextend-facebook-connect/admin/admin.php:733
222
  msgid "License key"
223
  msgstr ""
224
 
225
+ #: nextend-facebook-connect/admin/admin.php:756
226
  msgid "OAuth proxy page"
227
  msgstr ""
228
 
229
+ #: nextend-facebook-connect/admin/admin.php:759
230
  msgid "Register flow page"
231
  msgstr ""
232
 
235
  msgid "You have logged in successfully."
236
  msgstr ""
237
 
238
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:86
239
  msgid "Login label"
240
  msgstr ""
241
 
242
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:91
243
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:107
244
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:120
245
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:131
246
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:160
247
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:190
248
  #: nextend-facebook-connect/admin/templates/settings/privacy.php:53
249
  msgid "Reset to default"
250
  msgstr ""
251
 
252
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:101
253
  msgid "Register label"
254
  msgstr ""
255
 
256
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:114
257
  msgid "Link label"
258
  msgstr ""
259
 
260
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:126
261
  msgid "Unlink label"
262
  msgstr ""
263
 
264
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:137
265
  msgid "Default button"
266
  msgstr ""
267
 
268
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:153
269
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:183
270
  msgid "Use custom button"
271
  msgstr ""
272
 
273
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:160
274
  #, php-format
275
  msgid "Use the %s in your custom button's code to make the label show up."
276
  msgstr ""
277
 
278
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:168
279
  msgid "Icon button"
280
  msgstr ""
281
 
282
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:199
283
  #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:140
284
  #: nextend-facebook-connect/admin/templates-provider/sync-data.php:104
285
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:170
457
  msgstr ""
458
 
459
  #: nextend-facebook-connect/admin/templates-provider/sync-data.php:50
 
460
  msgid "Register"
461
  msgstr ""
462
 
1391
  msgstr ""
1392
 
1393
  #: nextend-facebook-connect/admin/templates/settings/privacy.php:102
1394
+ #: nextend-facebook-connect/includes/provider.php:1102
1395
  msgid "Access token"
1396
  msgstr ""
1397
 
1505
  msgstr[0] ""
1506
  msgstr[1] ""
1507
 
1508
+ #: nextend-facebook-connect/includes/avatar.php:399
1509
+ msgid "Invalid URL Provided."
1510
+ msgstr ""
1511
+
1512
+ #: nextend-facebook-connect/includes/avatar.php:404
1513
+ msgid "Could not create Temporary file."
1514
+ msgstr ""
1515
+
1516
  #: nextend-facebook-connect/includes/compat-wp-login.php:63
1517
  #, php-format
1518
  msgid "%1$s &lsaquo; %2$s &#8212; WordPress"
1583
  msgstr ""
1584
 
1585
  #: nextend-facebook-connect/includes/provider.php:358
1586
+ #: nextend-facebook-connect/includes/provider.php:719
1587
+ #: nextend-facebook-connect/includes/provider.php:727
1588
  msgid "Authentication successful"
1589
  msgstr ""
1590
 
1591
+ #: nextend-facebook-connect/includes/provider.php:656
1592
  #: nextend-facebook-connect/includes/user.php:168
1593
  #: nextend-facebook-connect/includes/user.php:597
1594
  msgid "Authentication error"
1595
  msgstr ""
1596
 
1597
+ #: nextend-facebook-connect/includes/provider.php:671
1598
  msgid "Unlink successful."
1599
  msgstr ""
1600
 
1601
+ #: nextend-facebook-connect/includes/provider.php:673
1602
  msgid "Unlink is not allowed!"
1603
  msgstr ""
1604
 
1605
+ #: nextend-facebook-connect/includes/provider.php:888
1606
+ #: nextend-facebook-connect/includes/provider.php:895
1607
  msgid "The test was successful"
1608
  msgstr ""
1609
 
1610
+ #: nextend-facebook-connect/includes/provider.php:941
1611
  msgid "Authentication failed"
1612
  msgstr ""
1613
 
1614
+ #: nextend-facebook-connect/includes/provider.php:1094
1615
  msgid "Identifier"
1616
  msgstr ""
1617
 
1618
+ #: nextend-facebook-connect/includes/provider.php:1110
1619
  msgid "Profile picture"
1620
  msgstr ""
1621
 
1646
  msgid "Register For This Site!"
1647
  msgstr ""
1648
 
1649
+ #: nextend-facebook-connect/includes/userData.php:189
1650
+ msgctxt "Register form submit button label"
1651
+ msgid "Register"
1652
+ msgstr ""
1653
+
1654
  #: nextend-facebook-connect/nextend-facebook-connect.php:37
1655
  #, php-format
1656
  msgid "%1$s requires PHP version %2$s+, plugin is currently NOT ACTIVE."
1674
  msgid "Update now!"
1675
  msgstr ""
1676
 
1677
+ #: nextend-facebook-connect/nextend-social-login.php:820
1678
+ #: nextend-facebook-connect/nextend-social-login.php:1199
1679
  msgid "Social Login"
1680
  msgstr ""
1681
 
1682
+ #: nextend-facebook-connect/nextend-social-login.php:1180
1683
  msgid "Social Accounts"
1684
  msgstr ""
1685
 
1721
  #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:9
1722
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:25
1723
  #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:9
 
1724
  #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:9
1725
  #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:9
1726
  #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:20
1828
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:26
1829
  msgid ""
1830
  "Click on the \"<b>Create App</b>\" button and in the Popup choose the "
1831
+ "\"<b>Consumer</b>\" App type!"
1832
  msgstr ""
1833
 
1834
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:27
1852
  msgstr ""
1853
 
1854
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:30
1855
+ msgid "Click the \"<b>Create App</b>\" button and complete the Security Check."
 
1856
  msgstr ""
1857
 
1858
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:31
1965
  msgstr ""
1966
 
1967
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:60
1968
+ msgid "Maintaining the Facebook App:"
1969
+ msgstr ""
1970
+
1971
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:61
1972
+ #, php-format
1973
+ msgid ""
1974
+ "<strong><u>Facebook Data Use Checkup:</u></strong> To protecting people's "
1975
+ "privacy, Facebook might requests you to fill some forms, so they can ensure "
1976
+ "that your API access and data use comply with the Facebook policies.\n"
1977
+ "If Facebook displays the \"%1$s\" modal for your App, then in our "
1978
+ "%2$sdocumentation%3$s you can find more information about the permissions "
1979
+ "that we need."
1980
+ msgstr ""
1981
+
1982
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:63
1983
+ #, php-format
1984
+ msgid ""
1985
+ "<strong><u>New Data Access Levels:</u></strong> Facebook started replacing "
1986
+ "the Development Mode / Live Mode switch in some Apps with %1$s ( earlier "
1987
+ "Development Mode ) and %2$s ( earlier Live mode ), which can be modified on "
1988
+ "the <strong>%3$s</strong> page. You can reach this page from the left hand "
1989
+ "menu of your App, under <strong>%4$s</strong>.\n"
1990
+ "If you want people outside of your business to be able to use their Faceook "
1991
+ "account to register and login over your App, then make sure you requested "
1992
+ "<strong>%2$s</strong> for the <strong>%5$s</strong> and <strong>%6$s</"
1993
+ "strong> permissions. "
1994
+ msgstr ""
1995
+
1996
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:67
1997
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:42
1998
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:35
1999
  #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:39
2000
  #: nextend-social-login-pro/providers/apple/admin/getting-started.php:122
2001
  #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:30
2132
  msgstr ""
2133
 
2134
  #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:12
 
2135
  #, php-format
2136
  msgid ""
2137
  "Add the following URL to the \"<b>Authorised redirect URIs</b>\" field: <b>"
2139
  msgstr ""
2140
 
2141
  #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:13
2142
+ #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:14
2143
  #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:14
2144
  msgid "Click on \"<b>Save</b>\""
2145
  msgstr ""
2146
 
2147
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:17
2148
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:17
2149
+ #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:25
2150
+ #: nextend-social-login-pro/providers/apple/admin/getting-started.php:38
2151
+ #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:9
2152
+ #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:16
2153
+ #: nextend-social-login-pro/providers/github/admin/getting-started.php:16
2154
+ #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:9
2155
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:17
2156
+ #: nextend-social-login-pro/providers/vk/admin/getting-started.php:16
2157
+ #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:9
2158
+ #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:16
2159
+ #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:17
2160
+ #, php-format
2161
+ msgid "Log in with your %s credentials if you are not logged in."
2162
+ msgstr ""
2163
+
2164
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:18
2165
+ #, php-format
2166
  msgid ""
2167
  "If you don't have a project yet, you'll need to create one. You can do this "
2168
+ "by clicking on the blue \"<b>%1$s</b>\" text on the right side! ( If you "
2169
+ "already have a project, then in the top bar click on the name of your "
2170
+ "project instead, which will bring up a modal and click <b>\"%2$s\"</b>. )"
 
2171
  msgstr ""
2172
 
2173
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:19
2174
+ #, php-format
2175
+ msgid "Name your project and then click on the \"<b>%1$s</b>\" button again!"
2176
  msgstr ""
2177
 
2178
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:20
2179
+ msgid ""
2180
+ "Once you have a project, you'll end up in the dashboard. ( If earlier you "
2181
+ "have already had a Project, then make sure you select the created project in "
2182
+ "the top bar! )"
2183
  msgstr ""
2184
 
2185
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:21
2186
+ #, php-format
2187
+ msgid "Click the “<b>%1$s</b>” button on the left hand side."
2188
  msgstr ""
2189
 
2190
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:22
2191
+ #, php-format
2192
  msgid ""
2193
+ "Choose a <b>%1$s</b> according to your needs and press \"<b>%2$s</b>\". If "
2194
+ "you want to enable the social login with %3$s for any users with a %3$s "
2195
+ "account, then pick the \"%4$s\" option!"
2196
  msgstr ""
2197
 
2198
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:24
2204
  msgstr ""
2205
 
2206
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:27
2207
+ #, php-format
2208
  msgid ""
2209
+ "Enter a name for your App to the \"<b>%1$s</b>\" field, which will appear as "
2210
+ "the name of the app asking for consent."
2211
  msgstr ""
2212
 
2213
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:28
2214
  #, php-format
2215
  msgid ""
2216
+ "For the \"<b>%1$s</b>\" field, select an email address that users can use to "
2217
+ "contact you with questions about their consent."
2218
  msgstr ""
2219
 
2220
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:29
2221
+ #, php-format
2222
+ msgid ""
2223
+ "Under the \"<b>%1$s</b>\" section press the \"<b>%2$s</b>\" button and "
2224
+ "enter your domain name, probably: <b>%3$s</b> without subdomains!"
2225
  msgstr ""
2226
 
2227
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:30
2228
  #, php-format
2229
  msgid ""
2230
+ "At the \"<b>%1$s</b>\" section, enter an email address that %2$s can use to "
2231
+ "notify you about any changes to your project."
2232
  msgstr ""
2233
 
2234
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:31
2235
+ #, php-format
2236
+ msgid ""
2237
+ "Press \"<b>%1$s</b>\" then press it again on the \"%2$s\", \"%3$s\" pages, "
2238
+ "too!"
2239
  msgstr ""
2240
 
2241
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:32
2242
+ #, php-format
2243
+ msgid ""
2244
+ "On the left side, click on the \"<b>%1$s</b>\" menu point, then click the "
2245
+ "\"<b>%2$s</b>\" button in the top bar."
2246
  msgstr ""
2247
 
2248
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:33
2249
+ #, php-format
2250
+ msgid "Choose the \"<b>%1$s</b>\" option."
2251
+ msgstr ""
2252
+
2253
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:34
2254
+ #, php-format
2255
+ msgid "Select the \"<b>%1$s</b>\" under Application type."
2256
  msgstr ""
2257
 
2258
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:35
2259
+ #, php-format
2260
+ msgid "Enter a \"<b>%1$s</b>\" for your OAuth client ID."
2261
  msgstr ""
2262
 
2263
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:36
2264
+ #, php-format
2265
+ msgid ""
2266
+ "Under the \"<b>%1$s</b>\" section click \"<b>%2$s</b>\" and add the "
2267
+ "following URL: <b>%3$s</b>"
2268
+ msgstr ""
2269
+
2270
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:37
2271
+ #, php-format
2272
+ msgid "Click on the \"<b>%1$s</b>\" button"
2273
+ msgstr ""
2274
+
2275
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:38
2276
+ #, php-format
2277
  msgid ""
2278
  "A modal should pop up with your credentials. If that doesn't happen, go to "
2279
+ "the %1$s in the left hand menu and select your app by clicking on its name "
2280
+ "and you'll be able to copy-paste the \"<b>%2$s</b>\" and \"<b>%3$s</b>\" "
2281
+ "from there."
2282
  msgstr ""
2283
 
2284
  #: nextend-facebook-connect/providers/google/admin/settings.php:27
2339
  msgstr ""
2340
 
2341
  #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:11
 
2342
  msgid "Click on the <b>Edit</b> button at <b>Authentication settings</b>."
2343
  msgstr ""
2344
 
2347
  msgid "Add the following URL to the \"<b>Callback URLs</b>\" field: <b>%s</b>"
2348
  msgstr ""
2349
 
2350
+ #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:13
 
 
 
 
 
 
 
 
 
 
 
2351
  #, php-format
2352
+ msgid ""
2353
+ "Make sure the \"<b>%1$s</b>\" field contains the following URL: <b>%2$s</b>"
2354
  msgstr ""
2355
 
2356
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:18
2367
  msgstr ""
2368
 
2369
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:20
2370
+ #, php-format
2371
+ msgid "Click on \"<b>%s</b>\"!"
2372
  msgstr ""
2373
 
2374
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:21
2375
  msgid ""
2376
  "Name your project, and go through the basic setup. You’ll need to select "
2377
+ "your use case, give a description and enter a name for the App as well."
2378
  msgstr ""
2379
 
2380
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:22
2381
+ #, php-format
2382
+ msgid "Click \"<b>%s</b>\"!"
2383
  msgstr ""
2384
 
2385
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:23
2386
+ #, php-format
2387
  msgid ""
2388
+ "You’ll find your API key and secret on this page. Copy and paste the \"<b>"
2389
+ "%1$s</b>\" and the \"<b>%2$s</b>\" to the corresponding fields at %3$s and "
2390
+ "press \"<b>Save Changes</b>\"."
2391
  msgstr ""
2392
 
2393
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:24
2394
  #, php-format
2395
+ msgid ""
2396
+ "Go back to your Twitter project and on the left side, under the \"<b>%s</b>"
2397
+ "\" section click on the name of your App."
2398
  msgstr ""
2399
 
2400
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:25
2401
+ #, php-format
2402
+ msgid "Scroll down and click on the \"<b>%1$s</b>\" button at \"<b>%2$s</b>\"."
2403
  msgstr ""
2404
 
2405
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:26
2406
+ #, php-format
2407
+ msgid "Switch on the \"<b>%s</b>\" option."
 
 
 
2408
  msgstr ""
2409
 
2410
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:27
2411
  #, php-format
2412
+ msgid "Add the following URL to the \"<b>%1$s</b>\" field: <b>%2$s</b>"
2413
  msgstr ""
2414
 
2415
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:28
2416
  #, php-format
2417
+ msgid "Enter your site's URL to the \"<b>%1$s</b>\" field: <b>%2$s</b>"
2418
  msgstr ""
2419
 
2420
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:29
2421
+ #, php-format
2422
  msgid ""
2423
  "If you want to get the email address as well, then don’t forget to enable "
2424
+ "the \"<b>%1$s</b>\" option. In this case you also need to fill the \"<b>"
2425
+ "%2$s</b>\" and the \"<b>%3$s</b>\" fields with the corresponding URLs!"
 
2426
  msgstr ""
2427
 
2428
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:30
2429
+ #, php-format
2430
+ msgid "Click on \"<b>%s</b>\"."
2431
  msgstr ""
2432
 
2433
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:31
2434
  #, php-format
2435
+ msgid "Go back to %1$s and <b>Verify</b> your %2$s provider."
2436
  msgstr ""
2437
 
2438
  #: nextend-facebook-connect/providers/twitter/admin/settings.php:27
2751
 
2752
  #: nextend-social-login-pro/providers/apple/admin/getting-started.php:35
2753
  msgid ""
2754
+ "Make sure you have an <strong>active subscription for the <a href=\"https://"
2755
+ "developer.apple.com/programs/\" target=\"_blank\">Apple Developer Program</"
2756
+ "a></strong>, as that is necessary for both creating and maintaining an Apple "
2757
+ "App!"
2758
  msgstr ""
2759
 
2760
  #: nextend-social-login-pro/providers/apple/admin/getting-started.php:36
3663
  msgid "Required permission: %1$s"
3664
  msgstr ""
3665
 
3666
+ #: nextend-social-login-pro/template-parts/buddypress/login/above-separator.php:18
3667
+ #: nextend-social-login-pro/template-parts/buddypress/login/below-separator.php:18
3668
+ #: nextend-social-login-pro/template-parts/embedded-login/above-separator.php:18
3669
+ #: nextend-social-login-pro/template-parts/embedded-login/below-separator.php:18
3670
+ #: nextend-social-login-pro/template-parts/login/above-separator.php:25
3671
+ #: nextend-social-login-pro/template-parts/login/below-separator.php:30
3672
+ #: nextend-social-login-pro/template-parts/memberpress/login/above-separator.php:18
3673
+ #: nextend-social-login-pro/template-parts/memberpress/login/below-separator.php:18
3674
+ #: nextend-social-login-pro/template-parts/memberpress/sign-up/above-separator.php:18
3675
+ #: nextend-social-login-pro/template-parts/memberpress/sign-up/below-separator.php:18
3676
+ #: nextend-social-login-pro/template-parts/ultimate-member/login/above-separator.php:18
3677
+ #: nextend-social-login-pro/template-parts/ultimate-member/login/below-separator.php:18
3678
+ #: nextend-social-login-pro/template-parts/ultimate-member/register/above-separator.php:18
3679
+ #: nextend-social-login-pro/template-parts/ultimate-member/register/below-separator.php:18
3680
+ #: nextend-social-login-pro/template-parts/userpro/login/above-separator.php:18
3681
+ #: nextend-social-login-pro/template-parts/userpro/login/below-separator.php:18
3682
+ #: nextend-social-login-pro/template-parts/userpro/register/above-separator.php:18
3683
+ #: nextend-social-login-pro/template-parts/userpro/register/below-separator.php:18
3684
+ #: nextend-social-login-pro/template-parts/woocommerce/billing/above-separator.php:25
3685
+ #: nextend-social-login-pro/template-parts/woocommerce/billing/below-separator.php:25
3686
+ #: nextend-social-login-pro/template-parts/woocommerce/billing/default-separator-after.php:13
3687
+ #: nextend-social-login-pro/template-parts/woocommerce/billing/default-separator-before.php:13
3688
+ #: nextend-social-login-pro/template-parts/woocommerce/checkout-for-woocommerce/above-separator.php:25
3689
+ #: nextend-social-login-pro/template-parts/woocommerce/checkout-for-woocommerce/below-separator.php:25
3690
+ #: nextend-social-login-pro/template-parts/woocommerce/login/above-separator.php:18
3691
+ #: nextend-social-login-pro/template-parts/woocommerce/login/below-separator.php:18
3692
+ #: nextend-social-login-pro/template-parts/woocommerce/register/above-separator.php:18
3693
+ #: nextend-social-login-pro/template-parts/woocommerce/register/below-separator.php:18
3694
  msgid "OR"
3695
  msgstr "OU"
3696
 
languages/nextend-facebook-connect-hu_HU.mo CHANGED
Binary file
languages/nextend-facebook-connect-hu_HU.po CHANGED
@@ -1,15 +1,15 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: nextend-facebook-connect\n"
4
- "POT-Creation-Date: 2021-01-27 13:57+0100\n"
5
- "PO-Revision-Date: 2021-01-27 13:57+0100\n"
6
  "Last-Translator: \n"
7
  "Language-Team: nextend\n"
8
  "Language: hu\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 2.4.1\n"
13
  "X-Poedit-Basepath: ../..\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
@@ -122,30 +122,30 @@ msgstr ""
122
  msgid "User"
123
  msgstr "Felhasználó"
124
 
125
- #: nextend-facebook-connect/admin/admin.php:206
126
  #, php-format
127
  msgid "%s needs json_decode function."
128
  msgstr "A %s-nak szüksége van a json_decode függvényre."
129
 
130
- #: nextend-facebook-connect/admin/admin.php:206
131
  msgid "Please contact your server administrator and ask for solution!"
132
  msgstr ""
133
  "Kérlek lépj kapcsolatba a szerveradminisztrátorral és kérj tőle segítséget!"
134
 
135
- #: nextend-facebook-connect/admin/admin.php:238
136
- #: nextend-facebook-connect/admin/admin.php:268
137
  msgid "Settings saved."
138
  msgstr "Beállítások elmentve."
139
 
140
- #: nextend-facebook-connect/admin/admin.php:247
141
  msgid "The activation was successful"
142
  msgstr "Az aktiváció sikeres volt"
143
 
144
- #: nextend-facebook-connect/admin/admin.php:258
145
  msgid "Deactivate completed."
146
  msgstr "A deaktiválás befejeződött."
147
 
148
- #: nextend-facebook-connect/admin/admin.php:437
149
  #: nextend-facebook-connect/admin/templates-provider/menu.php:15
150
  #: nextend-facebook-connect/admin/templates/providers.php:89
151
  #: nextend-facebook-connect/admin/templates/providers.php:101
@@ -153,7 +153,7 @@ msgstr "A deaktiválás befejeződött."
153
  msgid "Settings"
154
  msgstr "Beállítások"
155
 
156
- #: nextend-facebook-connect/admin/admin.php:520
157
  #: nextend-facebook-connect/includes/oauth2.php:143
158
  #: nextend-facebook-connect/includes/oauth2.php:288
159
  #: nextend-facebook-connect/providers/facebook/facebook-client.php:84
@@ -164,7 +164,7 @@ msgstr "Beállítások"
164
  msgid "Unexpected response: %s"
165
  msgstr "Nem várt válasz: %s"
166
 
167
- #: nextend-facebook-connect/admin/admin.php:581
168
  #: nextend-facebook-connect/admin/templates/fix-redirect-uri.php:21
169
  #, php-format
170
  msgid ""
@@ -174,16 +174,16 @@ msgstr ""
174
  "%s érzékelte hogy a bejelentkezési url megváltozott. Frissitened kell az "
175
  "\"Oauth redirect URIs\" értékeket a konfigurált alkalmazásaidban."
176
 
177
- #: nextend-facebook-connect/admin/admin.php:582
178
  #: nextend-social-login-pro/providers/apple/apple.php:310
179
  msgid "Fix Error"
180
  msgstr "Hiba javítása"
181
 
182
- #: nextend-facebook-connect/admin/admin.php:582
183
  msgid "Oauth Redirect URI"
184
  msgstr "Oauth Redirect URI"
185
 
186
- #: nextend-facebook-connect/admin/admin.php:599
187
  #, php-format
188
  msgid ""
189
  "%1$s detected that %2$s installed on your site. You need the Pro Addon to "
@@ -193,15 +193,15 @@ msgstr ""
193
  "social login gombok megjelenjenek a(z) %2$s login formokban, a Pro Addon-ra "
194
  "van szükséged!"
195
 
196
- #: nextend-facebook-connect/admin/admin.php:600
197
  msgid "Dismiss and check Pro Addon"
198
  msgstr "Eltüntent és Pro Addon ellenörzése."
199
 
200
- #: nextend-facebook-connect/admin/admin.php:600
201
  msgid "Dismiss"
202
  msgstr "Eltüntet"
203
 
204
- #: nextend-facebook-connect/admin/admin.php:606
205
  #, php-format
206
  msgid ""
207
  "%1$s detected that %2$s installed on your site. You must set \"<b>Page for "
@@ -209,15 +209,15 @@ msgid ""
209
  "work properly."
210
  msgstr ""
211
 
212
- #: nextend-facebook-connect/admin/admin.php:607
213
  msgid "Fix now"
214
  msgstr "Javítás most"
215
 
216
- #: nextend-facebook-connect/admin/admin.php:631
217
  msgid "Activate your Pro Addon"
218
  msgstr "Pro Addon aktiválása"
219
 
220
- #: nextend-facebook-connect/admin/admin.php:632
221
  #, fuzzy
222
  #| msgid ""
223
  #| "To be able to use the Pro features, you need to activate Nextend Social "
@@ -232,20 +232,20 @@ msgstr ""
232
  "Addon-t. Ezt megteheted az Activate gombra való kattintással és a társított "
233
  "vásárlás kiválasztásával."
234
 
235
- #: nextend-facebook-connect/admin/admin.php:637
236
  #: nextend-social-login-pro/nextend-social-login-pro.php:110
237
  msgid "Activate"
238
  msgstr "Aktiválás"
239
 
240
- #: nextend-facebook-connect/admin/admin.php:735
241
  msgid "License key"
242
  msgstr "Licensz kulcs"
243
 
244
- #: nextend-facebook-connect/admin/admin.php:758
245
  msgid "OAuth proxy page"
246
  msgstr "OAuth proxy page"
247
 
248
- #: nextend-facebook-connect/admin/admin.php:761
249
  msgid "Register flow page"
250
  msgstr "Register flow page"
251
 
@@ -254,53 +254,53 @@ msgstr "Register flow page"
254
  msgid "You have logged in successfully."
255
  msgstr "Sikeresen bejelentkeztél"
256
 
257
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:80
258
  msgid "Login label"
259
  msgstr "Bejelentkezés felirat"
260
 
261
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:85
262
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:101
263
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:114
264
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:125
265
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:154
266
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:184
267
  #: nextend-facebook-connect/admin/templates/settings/privacy.php:53
268
  msgid "Reset to default"
269
  msgstr "Alapbeállítás visszaállítása"
270
 
271
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:95
272
  #, fuzzy
273
  #| msgid "Login layout"
274
  msgid "Register label"
275
  msgstr "Login elrendezése"
276
 
277
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:108
278
  msgid "Link label"
279
  msgstr "Profil összekapcsolás felirat"
280
 
281
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:120
282
  msgid "Unlink label"
283
  msgstr "Profile szétkapcsolás felirat"
284
 
285
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:131
286
  msgid "Default button"
287
  msgstr "Alap gomb"
288
 
289
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:147
290
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:177
291
  msgid "Use custom button"
292
  msgstr "Egyedi gomb használata"
293
 
294
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:154
295
  #, php-format
296
  msgid "Use the %s in your custom button's code to make the label show up."
297
  msgstr "Használd a %s azonosítót, hogy megfelenjen a gomb felirat."
298
 
299
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:162
300
  msgid "Icon button"
301
  msgstr "Ikon gomb"
302
 
303
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:193
304
  #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:140
305
  #: nextend-facebook-connect/admin/templates-provider/sync-data.php:104
306
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:170
@@ -478,7 +478,6 @@ msgid "Default"
478
  msgstr "Alapbeállítás"
479
 
480
  #: nextend-facebook-connect/admin/templates-provider/sync-data.php:50
481
- #: nextend-facebook-connect/includes/userData.php:188
482
  msgid "Register"
483
  msgstr "Regisztráció"
484
 
@@ -1479,7 +1478,7 @@ msgid "Avatar"
1479
  msgstr ""
1480
 
1481
  #: nextend-facebook-connect/admin/templates/settings/privacy.php:102
1482
- #: nextend-facebook-connect/includes/provider.php:1100
1483
  msgid "Access token"
1484
  msgstr ""
1485
 
@@ -1618,6 +1617,14 @@ msgid_plural "Avatar <span class=\"count\">(%s)</span>"
1618
  msgstr[0] ""
1619
  msgstr[1] ""
1620
 
 
 
 
 
 
 
 
 
1621
  #: nextend-facebook-connect/includes/compat-wp-login.php:63
1622
  #, php-format
1623
  msgid "%1$s &lsaquo; %2$s &#8212; WordPress"
@@ -1700,39 +1707,39 @@ msgid "Please save your changes before verifying settings."
1700
  msgstr ""
1701
 
1702
  #: nextend-facebook-connect/includes/provider.php:358
1703
- #: nextend-facebook-connect/includes/provider.php:717
1704
- #: nextend-facebook-connect/includes/provider.php:725
1705
  msgid "Authentication successful"
1706
  msgstr "Hitelesítés sikeres"
1707
 
1708
- #: nextend-facebook-connect/includes/provider.php:654
1709
  #: nextend-facebook-connect/includes/user.php:168
1710
  #: nextend-facebook-connect/includes/user.php:597
1711
  msgid "Authentication error"
1712
  msgstr "Hitelesítési hiba"
1713
 
1714
- #: nextend-facebook-connect/includes/provider.php:669
1715
  msgid "Unlink successful."
1716
  msgstr "Szétkapcsolás sikeres"
1717
 
1718
- #: nextend-facebook-connect/includes/provider.php:671
1719
  msgid "Unlink is not allowed!"
1720
  msgstr ""
1721
 
1722
- #: nextend-facebook-connect/includes/provider.php:886
1723
- #: nextend-facebook-connect/includes/provider.php:893
1724
  msgid "The test was successful"
1725
  msgstr "A teszt sikeres volt"
1726
 
1727
- #: nextend-facebook-connect/includes/provider.php:939
1728
  msgid "Authentication failed"
1729
  msgstr "Hitelesítés sikertelen"
1730
 
1731
- #: nextend-facebook-connect/includes/provider.php:1092
1732
  msgid "Identifier"
1733
  msgstr ""
1734
 
1735
- #: nextend-facebook-connect/includes/provider.php:1108
1736
  msgid "Profile picture"
1737
  msgstr ""
1738
 
@@ -1770,6 +1777,13 @@ msgstr ""
1770
  msgid "Register For This Site!"
1771
  msgstr ""
1772
 
 
 
 
 
 
 
 
1773
  #: nextend-facebook-connect/nextend-facebook-connect.php:37
1774
  #, php-format
1775
  msgid "%1$s requires PHP version %2$s+, plugin is currently NOT ACTIVE."
@@ -1793,12 +1807,12 @@ msgstr ""
1793
  msgid "Update now!"
1794
  msgstr ""
1795
 
1796
- #: nextend-facebook-connect/nextend-social-login.php:762
1797
- #: nextend-facebook-connect/nextend-social-login.php:1140
1798
  msgid "Social Login"
1799
  msgstr "Közösségi belépés"
1800
 
1801
- #: nextend-facebook-connect/nextend-social-login.php:1121
1802
  msgid "Social Accounts"
1803
  msgstr ""
1804
 
@@ -1841,7 +1855,6 @@ msgstr "Látogasd meg ezt az oldalt: %s"
1841
  #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:9
1842
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:25
1843
  #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:9
1844
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:17
1845
  #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:9
1846
  #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:9
1847
  #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:20
@@ -1964,7 +1977,7 @@ msgstr "Látogasd meg ezt az oldalt: %s"
1964
  #| msgid "Click the \"Create App\" button."
1965
  msgid ""
1966
  "Click on the \"<b>Create App</b>\" button and in the Popup choose the "
1967
- "\"<b>Build Connected Experiences</b>\" option!"
1968
  msgstr "Kattints a \"Create App\" gombra"
1969
 
1970
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:27
@@ -1990,8 +2003,7 @@ msgstr ""
1990
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:30
1991
  #, fuzzy
1992
  #| msgid "Click the \"Create App\" button."
1993
- msgid ""
1994
- "Click the \"<b>Create App ID</b>\" button and complete the Security Check."
1995
  msgstr "Kattints a \"Create App\" gombra"
1996
 
1997
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:31
@@ -2133,8 +2145,37 @@ msgid ""
2133
  msgstr ""
2134
 
2135
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:60
2136
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:40
2137
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:37
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2138
  #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:39
2139
  #: nextend-social-login-pro/providers/apple/admin/getting-started.php:122
2140
  #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:30
@@ -2281,7 +2322,6 @@ msgid ""
2281
  msgstr ""
2282
 
2283
  #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:12
2284
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:34
2285
  #, fuzzy, php-format
2286
  #| msgid ""
2287
  #| "Add the following URL to the \"Authorised redirect URIs\" field: <b>%s</b>"
@@ -2292,15 +2332,32 @@ msgstr ""
2292
  "Tedd a következő linket az \"Valid OAuth redirect URIs\" mezőbe: <b>%s</b>"
2293
 
2294
  #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:13
2295
- #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:13
2296
  #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:14
2297
  #, fuzzy
2298
  #| msgid "Click on \"Save\""
2299
  msgid "Click on \"<b>Save</b>\""
2300
  msgstr "Kattints a \"Save\" gombra"
2301
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2302
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:18
2303
- #, fuzzy
2304
  #| msgid ""
2305
  #| "If you don't have a project yet, you'll need to create one. You can do "
2306
  #| "this by clicking on the blue \"Create project\" button on the right "
@@ -2309,10 +2366,9 @@ msgstr "Kattints a \"Save\" gombra"
2309
  #| "Project. )"
2310
  msgid ""
2311
  "If you don't have a project yet, you'll need to create one. You can do this "
2312
- "by clicking on the blue \"<b>Create</b>\" button on the right side! ( If "
2313
- "you already have a project, click on the name of your project in the "
2314
- "dashboard instead, which will bring up a modal and click <b>\"New Project\"</"
2315
- "b>. )"
2316
  msgstr ""
2317
  "Ha még nincs projected, készítened kell egyet. Ezt a job oldalon levő "
2318
  "\"Create project\" gombra kattintva teheted meg! ( Ha már van projected, "
@@ -2320,24 +2376,34 @@ msgstr ""
2320
  "a \"New Project\"-re kell kattintanod.)"
2321
 
2322
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:19
2323
- #, fuzzy
2324
  #| msgid "Name your project and then click on the Create button again"
2325
- msgid "Name your project and then click on the \"<b>Create</b>\" button again"
2326
  msgstr "Adj nevet a projektnek és kattints a \"Create\" gombra újra."
2327
 
2328
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:20
2329
- msgid "Once you have a project, you'll end up in the dashboard."
2330
- msgstr "Ha van már projekted át leszel irányítva az irányítópultra"
 
 
 
2331
 
2332
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:21
2333
- msgid "Click the “<b>OAuth consent screen</b>” button on the left hand side."
 
 
 
 
2334
  msgstr ""
 
 
2335
 
2336
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:22
 
2337
  msgid ""
2338
- "Choose a <b>User Type</b> according to your needs. If you want to enable the "
2339
- "social login with Google for any users with a Google account, then pick the "
2340
- "External option!"
2341
  msgstr ""
2342
 
2343
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:24
@@ -2349,61 +2415,87 @@ msgid ""
2349
  msgstr ""
2350
 
2351
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:27
 
2352
  msgid ""
2353
- "Enter a name for your App to the \"<b>Application name</b>\" field, which "
2354
- "will appear as the name of the app asking for consent."
2355
  msgstr ""
2356
 
2357
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:28
 
 
 
 
 
 
 
2358
  #, fuzzy, php-format
2359
  #| msgid ""
2360
  #| "Fill the \"Authorized domains\" field with your domain name probably: <b>"
2361
  #| "%s</b> without subdomains!"
2362
  msgid ""
2363
- "Fill the \"<b>Authorized domains</b>\" field with your domain name probably: "
2364
- "<b>%s</b> without subdomains!"
2365
  msgstr ""
2366
  "Írd be a weboldalad főoldalának címét a \"Authorized domains\" mezőbe. "
2367
  "Valószínűleg ez lesz az: <b>%s</b>"
2368
 
2369
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:29
2370
- #, fuzzy
2371
- #| msgid "Save your changes."
2372
- msgid "Save your settings!"
2373
- msgstr "Mentsd el a módosításaidat."
2374
-
2375
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:30
2376
  #, php-format
2377
  msgid ""
2378
- "On the left side, click on the \"<b>%1$s</b>\" menu point, then click the "
2379
- "\"<b>%2$s</b>\" button in the top bar."
2380
  msgstr ""
2381
 
2382
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:31
2383
- msgid "Choose the \"<b>OAuth client ID</b>\" option."
 
 
 
2384
  msgstr ""
2385
 
2386
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:32
2387
- #, fuzzy
 
 
 
 
 
 
 
 
 
 
 
 
 
2388
  #| msgid ""
2389
  #| "Click on the link \"registering an application\" under the Applications "
2390
  #| "tab."
2391
- msgid "Select the \"<b>Web application</b>\" under Application type."
2392
  msgstr ""
2393
  "Kattints a \"registering an application\" linker az Aplications tab alatt."
2394
 
2395
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:33
2396
- msgid "Enter a \"<b>Name</b>\" for your OAuth client ID."
 
2397
  msgstr ""
2398
 
2399
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:35
2400
- #, fuzzy
 
 
 
 
 
 
 
2401
  #| msgid "Click on the Create button"
2402
- msgid "Click on the \"<b>Create</b>\" button"
2403
  msgstr "Kattints a \"Create\" gombra"
2404
 
2405
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:36
2406
- #, fuzzy
2407
  #| msgid ""
2408
  #| "A modal should pop up with your credentials. If that doesn't happen, go "
2409
  #| "to the Credentials in the left hand menu and select your app by clicking "
@@ -2411,9 +2503,9 @@ msgstr "Kattints a \"Create\" gombra"
2411
  #| "Secret from there."
2412
  msgid ""
2413
  "A modal should pop up with your credentials. If that doesn't happen, go to "
2414
- "the Credentials in the left hand menu and select your app by clicking on its "
2415
- "name and you'll be able to copy-paste the \"<b>Client ID</b>\" and "
2416
- "\"<b>Client Secret</b>\" from there."
2417
  msgstr ""
2418
  "Fel fog ugrani egy ablak a hitelesítő adataiddal. Ha ez nem történik meg, "
2419
  "menj a \"Credentials\" fülre a bal oldali menüben és választ ki az appodat a "
@@ -2479,7 +2571,6 @@ msgid ""
2479
  msgstr "Keresd meg az Appod és kattints a Details gombra."
2480
 
2481
  #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:11
2482
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:27
2483
  #, fuzzy
2484
  #| msgid "Click the \"Create App\" button."
2485
  msgid "Click on the <b>Edit</b> button at <b>Authentication settings</b>."
@@ -2491,21 +2582,12 @@ msgstr "Kattints a \"Create App\" gombra"
2491
  msgid "Add the following URL to the \"<b>Callback URLs</b>\" field: <b>%s</b>"
2492
  msgstr "Tedd a következő linket az \"Callback URL\" mezőbe: <b>%s</b>"
2493
 
2494
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:17
2495
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:25
2496
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:38
2497
- #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:9
2498
- #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:16
2499
- #: nextend-social-login-pro/providers/github/admin/getting-started.php:16
2500
- #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:9
2501
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:17
2502
- #: nextend-social-login-pro/providers/vk/admin/getting-started.php:16
2503
- #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:9
2504
- #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:16
2505
- #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:17
2506
- #, php-format
2507
- msgid "Log in with your %s credentials if you are not logged in."
2508
- msgstr "Lépj be a %s fiókoddal ha még nem vagy belépve."
2509
 
2510
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:18
2511
  msgid ""
@@ -2521,75 +2603,79 @@ msgid ""
2521
  msgstr ""
2522
 
2523
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:20
2524
- #, fuzzy
2525
  #| msgid "Click on \"Save\""
2526
- msgid "Click on <b>+ New Project</b>!"
2527
  msgstr "Kattints a \"Save\" gombra"
2528
 
2529
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:21
2530
  msgid ""
2531
  "Name your project, and go through the basic setup. You’ll need to select "
2532
- "your use case and give a description."
2533
  msgstr ""
2534
 
2535
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:22
2536
- msgid "Create a new app, or select an existing one, then click <b>Complete</b>"
2537
- msgstr ""
 
 
2538
 
2539
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:23
 
2540
  msgid ""
2541
- "You’ll find your API key and secret on this page. Copy and paste the <b>API "
2542
- "key</b> and the <b>API secret key</b> to the corresponding fields at Nextend "
2543
- "Social Login and press <b>Save Changes</b>."
2544
  msgstr ""
2545
 
2546
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:24
2547
- #, fuzzy, php-format
2548
- #| msgid "Click on the \"Save Changes\" button."
2549
- msgid "Click on the <b>App Settings</b> button at %s."
2550
- msgstr "Kattints a \"Save Changes\" gombra."
 
2551
 
2552
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:25
2553
- msgid "Find the Apps section, and the app you created a few steps ago."
2554
- msgstr ""
 
 
2555
 
2556
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:26
2557
- msgid "Click on the App settings icon. (The one that looks like a gear.)"
2558
- msgstr ""
2559
-
2560
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:28
2561
- msgid "Switch on the <b>Enable 3-legged OAuth</b> option."
2562
- msgstr ""
2563
 
2564
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:29
2565
  #, fuzzy, php-format
2566
- #| msgid "Add the following URL to the \"Callback URLs\" field: <b>%s</b>"
2567
- msgid "Add the following URL to the <b>Callback URLs</b> field: <b>%s</b>"
2568
- msgstr "Tedd a következő linket az \"Callback URL\" mezőbe: <b>%s</b>"
2569
 
2570
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:30
2571
  #, fuzzy, php-format
2572
  #| msgid "Add the following URL to the \"Live Return URL\" field <b>%s</b> "
2573
- msgid "Enter your site's URL to the <b>Website URL</b> field: <b>%s</b>"
2574
  msgstr "Tedd a következő linket az \"Live Return URL\" mezőbe: <b>%s</b>"
2575
 
2576
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:31
 
2577
  msgid ""
2578
  "If you want to get the email address as well, then don’t forget to enable "
2579
- "the <b>Request email address from users</b> option. In this case you also "
2580
- "need to fill the <b>Terms of service</b> and the <b>Privacy policy</b> "
2581
- "fields with the corresponding URLs!"
2582
  msgstr ""
2583
 
2584
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:32
2585
- #, fuzzy
2586
  #| msgid "Click on \"Save\""
2587
- msgid "Click on <b>Save</b>."
2588
  msgstr "Kattints a \"Save\" gombra"
2589
 
2590
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:33
2591
  #, php-format
2592
- msgid "Go back to Nextend Social Login and <b>Verify</b> your %s provider."
2593
  msgstr ""
2594
 
2595
  #: nextend-facebook-connect/providers/twitter/admin/settings.php:27
@@ -2955,8 +3041,10 @@ msgstr ""
2955
 
2956
  #: nextend-social-login-pro/providers/apple/admin/getting-started.php:35
2957
  msgid ""
2958
- "Make sure you have an <strong>active subscription for the Apple Developer "
2959
- "Program</strong>!"
 
 
2960
  msgstr ""
2961
 
2962
  #: nextend-social-login-pro/providers/apple/admin/getting-started.php:36
@@ -4006,34 +4094,34 @@ msgstr "Szétkapcsolás <b>Yahoo</b>-tól"
4006
  msgid "Required permission: %1$s"
4007
  msgstr "Szükséges API: %1$s"
4008
 
4009
- #: nextend-social-login-pro/template-parts/buddypress/login/above-separator.php:10
4010
- #: nextend-social-login-pro/template-parts/buddypress/login/below-separator.php:10
4011
- #: nextend-social-login-pro/template-parts/embedded-login/above-separator.php:10
4012
- #: nextend-social-login-pro/template-parts/embedded-login/below-separator.php:10
4013
- #: nextend-social-login-pro/template-parts/login/above-separator.php:20
4014
- #: nextend-social-login-pro/template-parts/login/below-separator.php:8
4015
- #: nextend-social-login-pro/template-parts/memberpress/login/above-separator.php:10
4016
- #: nextend-social-login-pro/template-parts/memberpress/login/below-separator.php:10
4017
- #: nextend-social-login-pro/template-parts/memberpress/sign-up/above-separator.php:10
4018
- #: nextend-social-login-pro/template-parts/memberpress/sign-up/below-separator.php:10
4019
- #: nextend-social-login-pro/template-parts/ultimate-member/login/above-separator.php:10
4020
- #: nextend-social-login-pro/template-parts/ultimate-member/login/below-separator.php:10
4021
- #: nextend-social-login-pro/template-parts/ultimate-member/register/above-separator.php:10
4022
- #: nextend-social-login-pro/template-parts/ultimate-member/register/below-separator.php:10
4023
- #: nextend-social-login-pro/template-parts/userpro/login/above-separator.php:10
4024
- #: nextend-social-login-pro/template-parts/userpro/login/below-separator.php:10
4025
- #: nextend-social-login-pro/template-parts/userpro/register/above-separator.php:10
4026
- #: nextend-social-login-pro/template-parts/userpro/register/below-separator.php:10
4027
- #: nextend-social-login-pro/template-parts/woocommerce/billing/above-separator.php:11
4028
- #: nextend-social-login-pro/template-parts/woocommerce/billing/below-separator.php:11
4029
- #: nextend-social-login-pro/template-parts/woocommerce/billing/default-separator-after.php:7
4030
- #: nextend-social-login-pro/template-parts/woocommerce/billing/default-separator-before.php:7
4031
- #: nextend-social-login-pro/template-parts/woocommerce/checkout-for-woocommerce/above-separator.php:15
4032
- #: nextend-social-login-pro/template-parts/woocommerce/checkout-for-woocommerce/below-separator.php:15
4033
- #: nextend-social-login-pro/template-parts/woocommerce/login/above-separator.php:10
4034
- #: nextend-social-login-pro/template-parts/woocommerce/login/below-separator.php:10
4035
- #: nextend-social-login-pro/template-parts/woocommerce/register/above-separator.php:10
4036
- #: nextend-social-login-pro/template-parts/woocommerce/register/below-separator.php:10
4037
  msgid "OR"
4038
  msgstr "VAGY"
4039
 
@@ -4044,6 +4132,40 @@ msgstr "VAGY"
4044
  msgid "Social accounts"
4045
  msgstr "Közösségi fiókok"
4046
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4047
  #, php-format
4048
  #~ msgid "Log in with your %s credentials if you are not logged in yet"
4049
  #~ msgstr "Lépj be a %s fiókoddal ha még nem vagy belépve."
@@ -4242,9 +4364,6 @@ msgstr "Közösségi fiókok"
4242
  #~ "Menj a \"Settings\" menübe a \"Facebook Login\" alatt a bal oldali "
4243
  #~ "menüben."
4244
 
4245
- #~ msgid "Make sure that the \"%1$s\" field contains %2$s"
4246
- #~ msgstr "Győződj meg róla, hogy a \"%1$s\" mező tartalmazza: %2$s"
4247
-
4248
  #~ msgid "The following settings will be imported:"
4249
  #~ msgstr "Az alábbi beállítások kerülnek importálásra:"
4250
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: nextend-facebook-connect\n"
4
+ "POT-Creation-Date: 2021-06-16 14:00+0200\n"
5
+ "PO-Revision-Date: 2021-06-16 14:00+0200\n"
6
  "Last-Translator: \n"
7
  "Language-Team: nextend\n"
8
  "Language: hu\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 3.0\n"
13
  "X-Poedit-Basepath: ../..\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
122
  msgid "User"
123
  msgstr "Felhasználó"
124
 
125
+ #: nextend-facebook-connect/admin/admin.php:204
126
  #, php-format
127
  msgid "%s needs json_decode function."
128
  msgstr "A %s-nak szüksége van a json_decode függvényre."
129
 
130
+ #: nextend-facebook-connect/admin/admin.php:204
131
  msgid "Please contact your server administrator and ask for solution!"
132
  msgstr ""
133
  "Kérlek lépj kapcsolatba a szerveradminisztrátorral és kérj tőle segítséget!"
134
 
135
+ #: nextend-facebook-connect/admin/admin.php:236
136
+ #: nextend-facebook-connect/admin/admin.php:266
137
  msgid "Settings saved."
138
  msgstr "Beállítások elmentve."
139
 
140
+ #: nextend-facebook-connect/admin/admin.php:245
141
  msgid "The activation was successful"
142
  msgstr "Az aktiváció sikeres volt"
143
 
144
+ #: nextend-facebook-connect/admin/admin.php:256
145
  msgid "Deactivate completed."
146
  msgstr "A deaktiválás befejeződött."
147
 
148
+ #: nextend-facebook-connect/admin/admin.php:435
149
  #: nextend-facebook-connect/admin/templates-provider/menu.php:15
150
  #: nextend-facebook-connect/admin/templates/providers.php:89
151
  #: nextend-facebook-connect/admin/templates/providers.php:101
153
  msgid "Settings"
154
  msgstr "Beállítások"
155
 
156
+ #: nextend-facebook-connect/admin/admin.php:518
157
  #: nextend-facebook-connect/includes/oauth2.php:143
158
  #: nextend-facebook-connect/includes/oauth2.php:288
159
  #: nextend-facebook-connect/providers/facebook/facebook-client.php:84
164
  msgid "Unexpected response: %s"
165
  msgstr "Nem várt válasz: %s"
166
 
167
+ #: nextend-facebook-connect/admin/admin.php:579
168
  #: nextend-facebook-connect/admin/templates/fix-redirect-uri.php:21
169
  #, php-format
170
  msgid ""
174
  "%s érzékelte hogy a bejelentkezési url megváltozott. Frissitened kell az "
175
  "\"Oauth redirect URIs\" értékeket a konfigurált alkalmazásaidban."
176
 
177
+ #: nextend-facebook-connect/admin/admin.php:580
178
  #: nextend-social-login-pro/providers/apple/apple.php:310
179
  msgid "Fix Error"
180
  msgstr "Hiba javítása"
181
 
182
+ #: nextend-facebook-connect/admin/admin.php:580
183
  msgid "Oauth Redirect URI"
184
  msgstr "Oauth Redirect URI"
185
 
186
+ #: nextend-facebook-connect/admin/admin.php:597
187
  #, php-format
188
  msgid ""
189
  "%1$s detected that %2$s installed on your site. You need the Pro Addon to "
193
  "social login gombok megjelenjenek a(z) %2$s login formokban, a Pro Addon-ra "
194
  "van szükséged!"
195
 
196
+ #: nextend-facebook-connect/admin/admin.php:598
197
  msgid "Dismiss and check Pro Addon"
198
  msgstr "Eltüntent és Pro Addon ellenörzése."
199
 
200
+ #: nextend-facebook-connect/admin/admin.php:598
201
  msgid "Dismiss"
202
  msgstr "Eltüntet"
203
 
204
+ #: nextend-facebook-connect/admin/admin.php:604
205
  #, php-format
206
  msgid ""
207
  "%1$s detected that %2$s installed on your site. You must set \"<b>Page for "
209
  "work properly."
210
  msgstr ""
211
 
212
+ #: nextend-facebook-connect/admin/admin.php:605
213
  msgid "Fix now"
214
  msgstr "Javítás most"
215
 
216
+ #: nextend-facebook-connect/admin/admin.php:629
217
  msgid "Activate your Pro Addon"
218
  msgstr "Pro Addon aktiválása"
219
 
220
+ #: nextend-facebook-connect/admin/admin.php:630
221
  #, fuzzy
222
  #| msgid ""
223
  #| "To be able to use the Pro features, you need to activate Nextend Social "
232
  "Addon-t. Ezt megteheted az Activate gombra való kattintással és a társított "
233
  "vásárlás kiválasztásával."
234
 
235
+ #: nextend-facebook-connect/admin/admin.php:635
236
  #: nextend-social-login-pro/nextend-social-login-pro.php:110
237
  msgid "Activate"
238
  msgstr "Aktiválás"
239
 
240
+ #: nextend-facebook-connect/admin/admin.php:733
241
  msgid "License key"
242
  msgstr "Licensz kulcs"
243
 
244
+ #: nextend-facebook-connect/admin/admin.php:756
245
  msgid "OAuth proxy page"
246
  msgstr "OAuth proxy page"
247
 
248
+ #: nextend-facebook-connect/admin/admin.php:759
249
  msgid "Register flow page"
250
  msgstr "Register flow page"
251
 
254
  msgid "You have logged in successfully."
255
  msgstr "Sikeresen bejelentkeztél"
256
 
257
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:86
258
  msgid "Login label"
259
  msgstr "Bejelentkezés felirat"
260
 
261
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:91
262
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:107
263
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:120
264
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:131
265
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:160
266
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:190
267
  #: nextend-facebook-connect/admin/templates/settings/privacy.php:53
268
  msgid "Reset to default"
269
  msgstr "Alapbeállítás visszaállítása"
270
 
271
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:101
272
  #, fuzzy
273
  #| msgid "Login layout"
274
  msgid "Register label"
275
  msgstr "Login elrendezése"
276
 
277
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:114
278
  msgid "Link label"
279
  msgstr "Profil összekapcsolás felirat"
280
 
281
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:126
282
  msgid "Unlink label"
283
  msgstr "Profile szétkapcsolás felirat"
284
 
285
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:137
286
  msgid "Default button"
287
  msgstr "Alap gomb"
288
 
289
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:153
290
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:183
291
  msgid "Use custom button"
292
  msgstr "Egyedi gomb használata"
293
 
294
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:160
295
  #, php-format
296
  msgid "Use the %s in your custom button's code to make the label show up."
297
  msgstr "Használd a %s azonosítót, hogy megfelenjen a gomb felirat."
298
 
299
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:168
300
  msgid "Icon button"
301
  msgstr "Ikon gomb"
302
 
303
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:199
304
  #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:140
305
  #: nextend-facebook-connect/admin/templates-provider/sync-data.php:104
306
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:170
478
  msgstr "Alapbeállítás"
479
 
480
  #: nextend-facebook-connect/admin/templates-provider/sync-data.php:50
 
481
  msgid "Register"
482
  msgstr "Regisztráció"
483
 
1478
  msgstr ""
1479
 
1480
  #: nextend-facebook-connect/admin/templates/settings/privacy.php:102
1481
+ #: nextend-facebook-connect/includes/provider.php:1102
1482
  msgid "Access token"
1483
  msgstr ""
1484
 
1617
  msgstr[0] ""
1618
  msgstr[1] ""
1619
 
1620
+ #: nextend-facebook-connect/includes/avatar.php:399
1621
+ msgid "Invalid URL Provided."
1622
+ msgstr ""
1623
+
1624
+ #: nextend-facebook-connect/includes/avatar.php:404
1625
+ msgid "Could not create Temporary file."
1626
+ msgstr ""
1627
+
1628
  #: nextend-facebook-connect/includes/compat-wp-login.php:63
1629
  #, php-format
1630
  msgid "%1$s &lsaquo; %2$s &#8212; WordPress"
1707
  msgstr ""
1708
 
1709
  #: nextend-facebook-connect/includes/provider.php:358
1710
+ #: nextend-facebook-connect/includes/provider.php:719
1711
+ #: nextend-facebook-connect/includes/provider.php:727
1712
  msgid "Authentication successful"
1713
  msgstr "Hitelesítés sikeres"
1714
 
1715
+ #: nextend-facebook-connect/includes/provider.php:656
1716
  #: nextend-facebook-connect/includes/user.php:168
1717
  #: nextend-facebook-connect/includes/user.php:597
1718
  msgid "Authentication error"
1719
  msgstr "Hitelesítési hiba"
1720
 
1721
+ #: nextend-facebook-connect/includes/provider.php:671
1722
  msgid "Unlink successful."
1723
  msgstr "Szétkapcsolás sikeres"
1724
 
1725
+ #: nextend-facebook-connect/includes/provider.php:673
1726
  msgid "Unlink is not allowed!"
1727
  msgstr ""
1728
 
1729
+ #: nextend-facebook-connect/includes/provider.php:888
1730
+ #: nextend-facebook-connect/includes/provider.php:895
1731
  msgid "The test was successful"
1732
  msgstr "A teszt sikeres volt"
1733
 
1734
+ #: nextend-facebook-connect/includes/provider.php:941
1735
  msgid "Authentication failed"
1736
  msgstr "Hitelesítés sikertelen"
1737
 
1738
+ #: nextend-facebook-connect/includes/provider.php:1094
1739
  msgid "Identifier"
1740
  msgstr ""
1741
 
1742
+ #: nextend-facebook-connect/includes/provider.php:1110
1743
  msgid "Profile picture"
1744
  msgstr ""
1745
 
1777
  msgid "Register For This Site!"
1778
  msgstr ""
1779
 
1780
+ #: nextend-facebook-connect/includes/userData.php:189
1781
+ #, fuzzy
1782
+ #| msgid "Register"
1783
+ msgctxt "Register form submit button label"
1784
+ msgid "Register"
1785
+ msgstr "Regisztráció"
1786
+
1787
  #: nextend-facebook-connect/nextend-facebook-connect.php:37
1788
  #, php-format
1789
  msgid "%1$s requires PHP version %2$s+, plugin is currently NOT ACTIVE."
1807
  msgid "Update now!"
1808
  msgstr ""
1809
 
1810
+ #: nextend-facebook-connect/nextend-social-login.php:820
1811
+ #: nextend-facebook-connect/nextend-social-login.php:1199
1812
  msgid "Social Login"
1813
  msgstr "Közösségi belépés"
1814
 
1815
+ #: nextend-facebook-connect/nextend-social-login.php:1180
1816
  msgid "Social Accounts"
1817
  msgstr ""
1818
 
1855
  #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:9
1856
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:25
1857
  #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:9
 
1858
  #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:9
1859
  #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:9
1860
  #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:20
1977
  #| msgid "Click the \"Create App\" button."
1978
  msgid ""
1979
  "Click on the \"<b>Create App</b>\" button and in the Popup choose the "
1980
+ "\"<b>Consumer</b>\" App type!"
1981
  msgstr "Kattints a \"Create App\" gombra"
1982
 
1983
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:27
2003
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:30
2004
  #, fuzzy
2005
  #| msgid "Click the \"Create App\" button."
2006
+ msgid "Click the \"<b>Create App</b>\" button and complete the Security Check."
 
2007
  msgstr "Kattints a \"Create App\" gombra"
2008
 
2009
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:31
2145
  msgstr ""
2146
 
2147
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:60
2148
+ msgid "Maintaining the Facebook App:"
2149
+ msgstr ""
2150
+
2151
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:61
2152
+ #, php-format
2153
+ msgid ""
2154
+ "<strong><u>Facebook Data Use Checkup:</u></strong> To protecting people's "
2155
+ "privacy, Facebook might requests you to fill some forms, so they can ensure "
2156
+ "that your API access and data use comply with the Facebook policies.\n"
2157
+ "If Facebook displays the \"%1$s\" modal for your App, then in our "
2158
+ "%2$sdocumentation%3$s you can find more information about the permissions "
2159
+ "that we need."
2160
+ msgstr ""
2161
+
2162
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:63
2163
+ #, php-format
2164
+ msgid ""
2165
+ "<strong><u>New Data Access Levels:</u></strong> Facebook started replacing "
2166
+ "the Development Mode / Live Mode switch in some Apps with %1$s ( earlier "
2167
+ "Development Mode ) and %2$s ( earlier Live mode ), which can be modified on "
2168
+ "the <strong>%3$s</strong> page. You can reach this page from the left hand "
2169
+ "menu of your App, under <strong>%4$s</strong>.\n"
2170
+ "If you want people outside of your business to be able to use their Faceook "
2171
+ "account to register and login over your App, then make sure you requested "
2172
+ "<strong>%2$s</strong> for the <strong>%5$s</strong> and <strong>%6$s</"
2173
+ "strong> permissions. "
2174
+ msgstr ""
2175
+
2176
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:67
2177
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:42
2178
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:35
2179
  #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:39
2180
  #: nextend-social-login-pro/providers/apple/admin/getting-started.php:122
2181
  #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:30
2322
  msgstr ""
2323
 
2324
  #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:12
 
2325
  #, fuzzy, php-format
2326
  #| msgid ""
2327
  #| "Add the following URL to the \"Authorised redirect URIs\" field: <b>%s</b>"
2332
  "Tedd a következő linket az \"Valid OAuth redirect URIs\" mezőbe: <b>%s</b>"
2333
 
2334
  #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:13
2335
+ #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:14
2336
  #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:14
2337
  #, fuzzy
2338
  #| msgid "Click on \"Save\""
2339
  msgid "Click on \"<b>Save</b>\""
2340
  msgstr "Kattints a \"Save\" gombra"
2341
 
2342
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:17
2343
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:17
2344
+ #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:25
2345
+ #: nextend-social-login-pro/providers/apple/admin/getting-started.php:38
2346
+ #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:9
2347
+ #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:16
2348
+ #: nextend-social-login-pro/providers/github/admin/getting-started.php:16
2349
+ #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:9
2350
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:17
2351
+ #: nextend-social-login-pro/providers/vk/admin/getting-started.php:16
2352
+ #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:9
2353
+ #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:16
2354
+ #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:17
2355
+ #, php-format
2356
+ msgid "Log in with your %s credentials if you are not logged in."
2357
+ msgstr "Lépj be a %s fiókoddal ha még nem vagy belépve."
2358
+
2359
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:18
2360
+ #, fuzzy, php-format
2361
  #| msgid ""
2362
  #| "If you don't have a project yet, you'll need to create one. You can do "
2363
  #| "this by clicking on the blue \"Create project\" button on the right "
2366
  #| "Project. )"
2367
  msgid ""
2368
  "If you don't have a project yet, you'll need to create one. You can do this "
2369
+ "by clicking on the blue \"<b>%1$s</b>\" text on the right side! ( If you "
2370
+ "already have a project, then in the top bar click on the name of your "
2371
+ "project instead, which will bring up a modal and click <b>\"%2$s\"</b>. )"
 
2372
  msgstr ""
2373
  "Ha még nincs projected, készítened kell egyet. Ezt a job oldalon levő "
2374
  "\"Create project\" gombra kattintva teheted meg! ( Ha már van projected, "
2376
  "a \"New Project\"-re kell kattintanod.)"
2377
 
2378
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:19
2379
+ #, fuzzy, php-format
2380
  #| msgid "Name your project and then click on the Create button again"
2381
+ msgid "Name your project and then click on the \"<b>%1$s</b>\" button again!"
2382
  msgstr "Adj nevet a projektnek és kattints a \"Create\" gombra újra."
2383
 
2384
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:20
2385
+ msgid ""
2386
+ "Once you have a project, you'll end up in the dashboard. ( If earlier you "
2387
+ "have already had a Project, then make sure you select the created project in "
2388
+ "the top bar! )"
2389
+ msgstr ""
2390
 
2391
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:21
2392
+ #, fuzzy, php-format
2393
+ #| msgid ""
2394
+ #| "Click on the \"Credentials\" in the left hand menu to create new API "
2395
+ #| "credentials"
2396
+ msgid "Click the “<b>%1$s</b>” button on the left hand side."
2397
  msgstr ""
2398
+ "Kattints a \"Credentials\" feliratra a bal oldali menüben hogy új API "
2399
+ "adatokat készíts"
2400
 
2401
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:22
2402
+ #, php-format
2403
  msgid ""
2404
+ "Choose a <b>%1$s</b> according to your needs and press \"<b>%2$s</b>\". If "
2405
+ "you want to enable the social login with %3$s for any users with a %3$s "
2406
+ "account, then pick the \"%4$s\" option!"
2407
  msgstr ""
2408
 
2409
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:24
2415
  msgstr ""
2416
 
2417
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:27
2418
+ #, php-format
2419
  msgid ""
2420
+ "Enter a name for your App to the \"<b>%1$s</b>\" field, which will appear as "
2421
+ "the name of the app asking for consent."
2422
  msgstr ""
2423
 
2424
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:28
2425
+ #, php-format
2426
+ msgid ""
2427
+ "For the \"<b>%1$s</b>\" field, select an email address that users can use to "
2428
+ "contact you with questions about their consent."
2429
+ msgstr ""
2430
+
2431
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:29
2432
  #, fuzzy, php-format
2433
  #| msgid ""
2434
  #| "Fill the \"Authorized domains\" field with your domain name probably: <b>"
2435
  #| "%s</b> without subdomains!"
2436
  msgid ""
2437
+ "Under the \"<b>%1$s</b>\" section press the \"<b>%2$s</b>\" button and "
2438
+ "enter your domain name, probably: <b>%3$s</b> without subdomains!"
2439
  msgstr ""
2440
  "Írd be a weboldalad főoldalának címét a \"Authorized domains\" mezőbe. "
2441
  "Valószínűleg ez lesz az: <b>%s</b>"
2442
 
 
 
 
 
 
 
2443
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:30
2444
  #, php-format
2445
  msgid ""
2446
+ "At the \"<b>%1$s</b>\" section, enter an email address that %2$s can use to "
2447
+ "notify you about any changes to your project."
2448
  msgstr ""
2449
 
2450
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:31
2451
+ #, php-format
2452
+ msgid ""
2453
+ "Press \"<b>%1$s</b>\" then press it again on the \"%2$s\", \"%3$s\" pages, "
2454
+ "too!"
2455
  msgstr ""
2456
 
2457
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:32
2458
+ #, php-format
2459
+ msgid ""
2460
+ "On the left side, click on the \"<b>%1$s</b>\" menu point, then click the "
2461
+ "\"<b>%2$s</b>\" button in the top bar."
2462
+ msgstr ""
2463
+
2464
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:33
2465
+ #, fuzzy, php-format
2466
+ #| msgid "Click on the Create button"
2467
+ msgid "Choose the \"<b>%1$s</b>\" option."
2468
+ msgstr "Kattints a \"Create\" gombra"
2469
+
2470
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:34
2471
+ #, fuzzy, php-format
2472
  #| msgid ""
2473
  #| "Click on the link \"registering an application\" under the Applications "
2474
  #| "tab."
2475
+ msgid "Select the \"<b>%1$s</b>\" under Application type."
2476
  msgstr ""
2477
  "Kattints a \"registering an application\" linker az Aplications tab alatt."
2478
 
2479
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:35
2480
+ #, php-format
2481
+ msgid "Enter a \"<b>%1$s</b>\" for your OAuth client ID."
2482
  msgstr ""
2483
 
2484
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:36
2485
+ #, php-format
2486
+ msgid ""
2487
+ "Under the \"<b>%1$s</b>\" section click \"<b>%2$s</b>\" and add the "
2488
+ "following URL: <b>%3$s</b>"
2489
+ msgstr ""
2490
+
2491
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:37
2492
+ #, fuzzy, php-format
2493
  #| msgid "Click on the Create button"
2494
+ msgid "Click on the \"<b>%1$s</b>\" button"
2495
  msgstr "Kattints a \"Create\" gombra"
2496
 
2497
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:38
2498
+ #, fuzzy, php-format
2499
  #| msgid ""
2500
  #| "A modal should pop up with your credentials. If that doesn't happen, go "
2501
  #| "to the Credentials in the left hand menu and select your app by clicking "
2503
  #| "Secret from there."
2504
  msgid ""
2505
  "A modal should pop up with your credentials. If that doesn't happen, go to "
2506
+ "the %1$s in the left hand menu and select your app by clicking on its name "
2507
+ "and you'll be able to copy-paste the \"<b>%2$s</b>\" and \"<b>%3$s</b>\" "
2508
+ "from there."
2509
  msgstr ""
2510
  "Fel fog ugrani egy ablak a hitelesítő adataiddal. Ha ez nem történik meg, "
2511
  "menj a \"Credentials\" fülre a bal oldali menüben és választ ki az appodat a "
2571
  msgstr "Keresd meg az Appod és kattints a Details gombra."
2572
 
2573
  #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:11
 
2574
  #, fuzzy
2575
  #| msgid "Click the \"Create App\" button."
2576
  msgid "Click on the <b>Edit</b> button at <b>Authentication settings</b>."
2582
  msgid "Add the following URL to the \"<b>Callback URLs</b>\" field: <b>%s</b>"
2583
  msgstr "Tedd a következő linket az \"Callback URL\" mezőbe: <b>%s</b>"
2584
 
2585
+ #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:13
2586
+ #, fuzzy, php-format
2587
+ #| msgid "Make sure that the \"%1$s\" field contains %2$s"
2588
+ msgid ""
2589
+ "Make sure the \"<b>%1$s</b>\" field contains the following URL: <b>%2$s</b>"
2590
+ msgstr "Győződj meg róla, hogy a \"%1$s\" mező tartalmazza: %2$s"
 
 
 
 
 
 
 
 
 
2591
 
2592
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:18
2593
  msgid ""
2603
  msgstr ""
2604
 
2605
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:20
2606
+ #, fuzzy, php-format
2607
  #| msgid "Click on \"Save\""
2608
+ msgid "Click on \"<b>%s</b>\"!"
2609
  msgstr "Kattints a \"Save\" gombra"
2610
 
2611
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:21
2612
  msgid ""
2613
  "Name your project, and go through the basic setup. You’ll need to select "
2614
+ "your use case, give a description and enter a name for the App as well."
2615
  msgstr ""
2616
 
2617
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:22
2618
+ #, fuzzy, php-format
2619
+ #| msgid "Click on \"Save\""
2620
+ msgid "Click \"<b>%s</b>\"!"
2621
+ msgstr "Kattints a \"Save\" gombra"
2622
 
2623
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:23
2624
+ #, php-format
2625
  msgid ""
2626
+ "You’ll find your API key and secret on this page. Copy and paste the \"<b>"
2627
+ "%1$s</b>\" and the \"<b>%2$s</b>\" to the corresponding fields at %3$s and "
2628
+ "press \"<b>Save Changes</b>\"."
2629
  msgstr ""
2630
 
2631
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:24
2632
+ #, php-format
2633
+ msgid ""
2634
+ "Go back to your Twitter project and on the left side, under the \"<b>%s</b>"
2635
+ "\" section click on the name of your App."
2636
+ msgstr ""
2637
 
2638
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:25
2639
+ #, fuzzy, php-format
2640
+ #| msgid "Name your project and then click on the Create button again"
2641
+ msgid "Scroll down and click on the \"<b>%1$s</b>\" button at \"<b>%2$s</b>\"."
2642
+ msgstr "Adj nevet a projektnek és kattints a \"Create\" gombra újra."
2643
 
2644
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:26
2645
+ #, fuzzy, php-format
2646
+ #| msgid "Click on the Create button"
2647
+ msgid "Switch on the \"<b>%s</b>\" option."
2648
+ msgstr "Kattints a \"Create\" gombra"
 
 
2649
 
2650
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:27
2651
  #, fuzzy, php-format
2652
+ #| msgid "Add the following URL to the \"Live Return URL\" field <b>%s</b> "
2653
+ msgid "Add the following URL to the \"<b>%1$s</b>\" field: <b>%2$s</b>"
2654
+ msgstr "Tedd a következő linket az \"Live Return URL\" mezőbe: <b>%s</b>"
2655
 
2656
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:28
2657
  #, fuzzy, php-format
2658
  #| msgid "Add the following URL to the \"Live Return URL\" field <b>%s</b> "
2659
+ msgid "Enter your site's URL to the \"<b>%1$s</b>\" field: <b>%2$s</b>"
2660
  msgstr "Tedd a következő linket az \"Live Return URL\" mezőbe: <b>%s</b>"
2661
 
2662
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:29
2663
+ #, php-format
2664
  msgid ""
2665
  "If you want to get the email address as well, then don’t forget to enable "
2666
+ "the \"<b>%1$s</b>\" option. In this case you also need to fill the \"<b>"
2667
+ "%2$s</b>\" and the \"<b>%3$s</b>\" fields with the corresponding URLs!"
 
2668
  msgstr ""
2669
 
2670
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:30
2671
+ #, fuzzy, php-format
2672
  #| msgid "Click on \"Save\""
2673
+ msgid "Click on \"<b>%s</b>\"."
2674
  msgstr "Kattints a \"Save\" gombra"
2675
 
2676
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:31
2677
  #, php-format
2678
+ msgid "Go back to %1$s and <b>Verify</b> your %2$s provider."
2679
  msgstr ""
2680
 
2681
  #: nextend-facebook-connect/providers/twitter/admin/settings.php:27
3041
 
3042
  #: nextend-social-login-pro/providers/apple/admin/getting-started.php:35
3043
  msgid ""
3044
+ "Make sure you have an <strong>active subscription for the <a href=\"https://"
3045
+ "developer.apple.com/programs/\" target=\"_blank\">Apple Developer Program</"
3046
+ "a></strong>, as that is necessary for both creating and maintaining an Apple "
3047
+ "App!"
3048
  msgstr ""
3049
 
3050
  #: nextend-social-login-pro/providers/apple/admin/getting-started.php:36
4094
  msgid "Required permission: %1$s"
4095
  msgstr "Szükséges API: %1$s"
4096
 
4097
+ #: nextend-social-login-pro/template-parts/buddypress/login/above-separator.php:18
4098
+ #: nextend-social-login-pro/template-parts/buddypress/login/below-separator.php:18
4099
+ #: nextend-social-login-pro/template-parts/embedded-login/above-separator.php:18
4100
+ #: nextend-social-login-pro/template-parts/embedded-login/below-separator.php:18
4101
+ #: nextend-social-login-pro/template-parts/login/above-separator.php:25
4102
+ #: nextend-social-login-pro/template-parts/login/below-separator.php:30
4103
+ #: nextend-social-login-pro/template-parts/memberpress/login/above-separator.php:18
4104
+ #: nextend-social-login-pro/template-parts/memberpress/login/below-separator.php:18
4105
+ #: nextend-social-login-pro/template-parts/memberpress/sign-up/above-separator.php:18
4106
+ #: nextend-social-login-pro/template-parts/memberpress/sign-up/below-separator.php:18
4107
+ #: nextend-social-login-pro/template-parts/ultimate-member/login/above-separator.php:18
4108
+ #: nextend-social-login-pro/template-parts/ultimate-member/login/below-separator.php:18
4109
+ #: nextend-social-login-pro/template-parts/ultimate-member/register/above-separator.php:18
4110
+ #: nextend-social-login-pro/template-parts/ultimate-member/register/below-separator.php:18
4111
+ #: nextend-social-login-pro/template-parts/userpro/login/above-separator.php:18
4112
+ #: nextend-social-login-pro/template-parts/userpro/login/below-separator.php:18
4113
+ #: nextend-social-login-pro/template-parts/userpro/register/above-separator.php:18
4114
+ #: nextend-social-login-pro/template-parts/userpro/register/below-separator.php:18
4115
+ #: nextend-social-login-pro/template-parts/woocommerce/billing/above-separator.php:25
4116
+ #: nextend-social-login-pro/template-parts/woocommerce/billing/below-separator.php:25
4117
+ #: nextend-social-login-pro/template-parts/woocommerce/billing/default-separator-after.php:13
4118
+ #: nextend-social-login-pro/template-parts/woocommerce/billing/default-separator-before.php:13
4119
+ #: nextend-social-login-pro/template-parts/woocommerce/checkout-for-woocommerce/above-separator.php:25
4120
+ #: nextend-social-login-pro/template-parts/woocommerce/checkout-for-woocommerce/below-separator.php:25
4121
+ #: nextend-social-login-pro/template-parts/woocommerce/login/above-separator.php:18
4122
+ #: nextend-social-login-pro/template-parts/woocommerce/login/below-separator.php:18
4123
+ #: nextend-social-login-pro/template-parts/woocommerce/register/above-separator.php:18
4124
+ #: nextend-social-login-pro/template-parts/woocommerce/register/below-separator.php:18
4125
  msgid "OR"
4126
  msgstr "VAGY"
4127
 
4132
  msgid "Social accounts"
4133
  msgstr "Közösségi fiókok"
4134
 
4135
+ #, fuzzy
4136
+ #~| msgid "Click on \"Save\""
4137
+ #~ msgid "Click on <b>+ New Project</b>!"
4138
+ #~ msgstr "Kattints a \"Save\" gombra"
4139
+
4140
+ #, fuzzy, php-format
4141
+ #~| msgid "Click on the \"Save Changes\" button."
4142
+ #~ msgid "Click on the <b>App Settings</b> button at %s."
4143
+ #~ msgstr "Kattints a \"Save Changes\" gombra."
4144
+
4145
+ #, fuzzy, php-format
4146
+ #~| msgid "Add the following URL to the \"Callback URLs\" field: <b>%s</b>"
4147
+ #~ msgid "Add the following URL to the <b>Callback URLs</b> field: <b>%s</b>"
4148
+ #~ msgstr "Tedd a következő linket az \"Callback URL\" mezőbe: <b>%s</b>"
4149
+
4150
+ #, fuzzy
4151
+ #~| msgid "Click on \"Save\""
4152
+ #~ msgid "Click on <b>Save</b>."
4153
+ #~ msgstr "Kattints a \"Save\" gombra"
4154
+
4155
+ #, fuzzy
4156
+ #~| msgid "Register"
4157
+ #~ msgctxt "NSL Register Form submit button text"
4158
+ #~ msgid "Register"
4159
+ #~ msgstr "Regisztráció"
4160
+
4161
+ #~ msgid "Once you have a project, you'll end up in the dashboard."
4162
+ #~ msgstr "Ha van már projekted át leszel irányítva az irányítópultra"
4163
+
4164
+ #, fuzzy
4165
+ #~| msgid "Save your changes."
4166
+ #~ msgid "Save your settings!"
4167
+ #~ msgstr "Mentsd el a módosításaidat."
4168
+
4169
  #, php-format
4170
  #~ msgid "Log in with your %s credentials if you are not logged in yet"
4171
  #~ msgstr "Lépj be a %s fiókoddal ha még nem vagy belépve."
4364
  #~ "Menj a \"Settings\" menübe a \"Facebook Login\" alatt a bal oldali "
4365
  #~ "menüben."
4366
 
 
 
 
4367
  #~ msgid "The following settings will be imported:"
4368
  #~ msgstr "Az alábbi beállítások kerülnek importálásra:"
4369
 
languages/nextend-facebook-connect-it_IT.mo CHANGED
Binary file
languages/nextend-facebook-connect-it_IT.po CHANGED
@@ -1,15 +1,15 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: nextend-facebook-connect\n"
4
- "POT-Creation-Date: 2021-01-27 13:57+0100\n"
5
- "PO-Revision-Date: 2021-01-27 13:57+0100\n"
6
  "Last-Translator: \n"
7
  "Language-Team: nextend-facebook-connect\n"
8
  "Language: it_IT\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 2.4.1\n"
13
  "X-Poedit-Basepath: ../..\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
@@ -135,30 +135,30 @@ msgstr ""
135
  msgid "User"
136
  msgstr "Utente"
137
 
138
- #: nextend-facebook-connect/admin/admin.php:206
139
  #, php-format
140
  msgid "%s needs json_decode function."
141
  msgstr "%s necessita della funzione json_decode."
142
 
143
- #: nextend-facebook-connect/admin/admin.php:206
144
  msgid "Please contact your server administrator and ask for solution!"
145
  msgstr ""
146
  "Per favore contatta l'amministratore del tuo server e chiedi una soluzione!"
147
 
148
- #: nextend-facebook-connect/admin/admin.php:238
149
- #: nextend-facebook-connect/admin/admin.php:268
150
  msgid "Settings saved."
151
  msgstr "Settaggio salvato."
152
 
153
- #: nextend-facebook-connect/admin/admin.php:247
154
  msgid "The activation was successful"
155
  msgstr "Attivazione completata"
156
 
157
- #: nextend-facebook-connect/admin/admin.php:258
158
  msgid "Deactivate completed."
159
  msgstr "Disattivazione completata."
160
 
161
- #: nextend-facebook-connect/admin/admin.php:437
162
  #: nextend-facebook-connect/admin/templates-provider/menu.php:15
163
  #: nextend-facebook-connect/admin/templates/providers.php:89
164
  #: nextend-facebook-connect/admin/templates/providers.php:101
@@ -166,7 +166,7 @@ msgstr "Disattivazione completata."
166
  msgid "Settings"
167
  msgstr "Settaggi"
168
 
169
- #: nextend-facebook-connect/admin/admin.php:520
170
  #: nextend-facebook-connect/includes/oauth2.php:143
171
  #: nextend-facebook-connect/includes/oauth2.php:288
172
  #: nextend-facebook-connect/providers/facebook/facebook-client.php:84
@@ -177,7 +177,7 @@ msgstr "Settaggi"
177
  msgid "Unexpected response: %s"
178
  msgstr "Unexpected response: %s"
179
 
180
- #: nextend-facebook-connect/admin/admin.php:581
181
  #: nextend-facebook-connect/admin/templates/fix-redirect-uri.php:21
182
  #, php-format
183
  msgid ""
@@ -187,16 +187,16 @@ msgstr ""
187
  "%s ha rilevato che la tua url di login è cambiata. Devi aggiornare il "
188
  "redirect Oauth URIs nella relative applicazioni social."
189
 
190
- #: nextend-facebook-connect/admin/admin.php:582
191
  #: nextend-social-login-pro/providers/apple/apple.php:310
192
  msgid "Fix Error"
193
  msgstr "Ripara Errore"
194
 
195
- #: nextend-facebook-connect/admin/admin.php:582
196
  msgid "Oauth Redirect URI"
197
  msgstr "Oauth Redirect URI"
198
 
199
- #: nextend-facebook-connect/admin/admin.php:599
200
  #, php-format
201
  msgid ""
202
  "%1$s detected that %2$s installed on your site. You need the Pro Addon to "
@@ -205,15 +205,15 @@ msgstr ""
205
  "%1$s ha rilevato che %2$s è installato sul tuo sito. Hai bisogno di Pro "
206
  "Addon per mostrare i bottoni Social Login nel form di login di %2$s!"
207
 
208
- #: nextend-facebook-connect/admin/admin.php:600
209
  msgid "Dismiss and check Pro Addon"
210
  msgstr ""
211
 
212
- #: nextend-facebook-connect/admin/admin.php:600
213
  msgid "Dismiss"
214
  msgstr ""
215
 
216
- #: nextend-facebook-connect/admin/admin.php:606
217
  #, php-format
218
  msgid ""
219
  "%1$s detected that %2$s installed on your site. You must set \"<b>Page for "
@@ -224,15 +224,15 @@ msgstr ""
224
  "\"<b>Pagina per il flusso di registrazione</b>\" e \"<b>OAuth redirect uri "
225
  "proxy page</b>\" in %1$s per funzionare correttamente."
226
 
227
- #: nextend-facebook-connect/admin/admin.php:607
228
  msgid "Fix now"
229
  msgstr "Ripara ora"
230
 
231
- #: nextend-facebook-connect/admin/admin.php:631
232
  msgid "Activate your Pro Addon"
233
  msgstr "Attiva il tuo Pro Addon"
234
 
235
- #: nextend-facebook-connect/admin/admin.php:632
236
  msgid ""
237
  "To be able to use the Pro features, you need to activate Nextend Social "
238
  "Login Pro Addon. You can do this by clicking on the Activate button below "
@@ -242,20 +242,20 @@ msgstr ""
242
  "Login Pro. Puoi farlo cliccando sul bottone Attiva in basso e selezionare il "
243
  "relativo acquisto."
244
 
245
- #: nextend-facebook-connect/admin/admin.php:637
246
  #: nextend-social-login-pro/nextend-social-login-pro.php:110
247
  msgid "Activate"
248
  msgstr "Attiva"
249
 
250
- #: nextend-facebook-connect/admin/admin.php:735
251
  msgid "License key"
252
  msgstr "Chiave di licenza"
253
 
254
- #: nextend-facebook-connect/admin/admin.php:758
255
  msgid "OAuth proxy page"
256
  msgstr "Pagina OAuth proxy"
257
 
258
- #: nextend-facebook-connect/admin/admin.php:761
259
  msgid "Register flow page"
260
  msgstr "Pagina del flusso di registrazione"
261
 
@@ -264,55 +264,55 @@ msgstr "Pagina del flusso di registrazione"
264
  msgid "You have logged in successfully."
265
  msgstr "Ti sei loggato."
266
 
267
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:80
268
  msgid "Login label"
269
  msgstr "Etichetta login"
270
 
271
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:85
272
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:101
273
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:114
274
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:125
275
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:154
276
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:184
277
  #: nextend-facebook-connect/admin/templates/settings/privacy.php:53
278
  msgid "Reset to default"
279
  msgstr "Ripristina predefiniti"
280
 
281
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:95
282
  #, fuzzy
283
  #| msgid "Register layout"
284
  msgid "Register label"
285
  msgstr "Layout registrazione"
286
 
287
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:108
288
  msgid "Link label"
289
  msgstr "Collega etichetta"
290
 
291
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:120
292
  msgid "Unlink label"
293
  msgstr "Scollega etichetta"
294
 
295
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:131
296
  msgid "Default button"
297
  msgstr "Bottone standard"
298
 
299
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:147
300
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:177
301
  msgid "Use custom button"
302
  msgstr "Usa bottone personalizzato"
303
 
304
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:154
305
  #, php-format
306
  msgid "Use the %s in your custom button's code to make the label show up."
307
  msgstr ""
308
  "Utilizza %s nei codici dei tuoi bottoni personalizzati per rendere "
309
  "l'etichetta visibile."
310
 
311
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:162
312
  msgid "Icon button"
313
  msgstr "Bottone icona"
314
 
315
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:193
316
  #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:140
317
  #: nextend-facebook-connect/admin/templates-provider/sync-data.php:104
318
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:170
@@ -490,7 +490,6 @@ msgid "Default"
490
  msgstr "Default"
491
 
492
  #: nextend-facebook-connect/admin/templates-provider/sync-data.php:50
493
- #: nextend-facebook-connect/includes/userData.php:188
494
  msgid "Register"
495
  msgstr "Registra"
496
 
@@ -1471,7 +1470,7 @@ msgid "Avatar"
1471
  msgstr "Avatar"
1472
 
1473
  #: nextend-facebook-connect/admin/templates/settings/privacy.php:102
1474
- #: nextend-facebook-connect/includes/provider.php:1100
1475
  msgid "Access token"
1476
  msgstr "Token d'accesso"
1477
 
@@ -1593,6 +1592,14 @@ msgid_plural "Avatar <span class=\"count\">(%s)</span>"
1593
  msgstr[0] "Avatar <span class=\"count\">(%s)</span>"
1594
  msgstr[1] "Avatar <span class=\"count\">(%s)</span>"
1595
 
 
 
 
 
 
 
 
 
1596
  #: nextend-facebook-connect/includes/compat-wp-login.php:63
1597
  #, php-format
1598
  msgid "%1$s &lsaquo; %2$s &#8212; WordPress"
@@ -1674,39 +1681,39 @@ msgid "Please save your changes before verifying settings."
1674
  msgstr "Per favore salva le tue modifiche prima di verificare le impostazioni."
1675
 
1676
  #: nextend-facebook-connect/includes/provider.php:358
1677
- #: nextend-facebook-connect/includes/provider.php:717
1678
- #: nextend-facebook-connect/includes/provider.php:725
1679
  msgid "Authentication successful"
1680
  msgstr "Autenticazione riuscita"
1681
 
1682
- #: nextend-facebook-connect/includes/provider.php:654
1683
  #: nextend-facebook-connect/includes/user.php:168
1684
  #: nextend-facebook-connect/includes/user.php:597
1685
  msgid "Authentication error"
1686
  msgstr "Errore di autenticazione"
1687
 
1688
- #: nextend-facebook-connect/includes/provider.php:669
1689
  msgid "Unlink successful."
1690
  msgstr "Scollegamento riuscito."
1691
 
1692
- #: nextend-facebook-connect/includes/provider.php:671
1693
  msgid "Unlink is not allowed!"
1694
  msgstr "Lo scollegamento non è consentito!"
1695
 
1696
- #: nextend-facebook-connect/includes/provider.php:886
1697
- #: nextend-facebook-connect/includes/provider.php:893
1698
  msgid "The test was successful"
1699
  msgstr "Il test è riuscito"
1700
 
1701
- #: nextend-facebook-connect/includes/provider.php:939
1702
  msgid "Authentication failed"
1703
  msgstr "Autenticazione fallita"
1704
 
1705
- #: nextend-facebook-connect/includes/provider.php:1092
1706
  msgid "Identifier"
1707
  msgstr "Identificatore"
1708
 
1709
- #: nextend-facebook-connect/includes/provider.php:1108
1710
  msgid "Profile picture"
1711
  msgstr "Immagine del profilo"
1712
 
@@ -1745,6 +1752,13 @@ msgstr "La registrazione dell'utente non è al momento consentita."
1745
  msgid "Register For This Site!"
1746
  msgstr "Registrati per questo sito!"
1747
 
 
 
 
 
 
 
 
1748
  #: nextend-facebook-connect/nextend-facebook-connect.php:37
1749
  #, php-format
1750
  msgid "%1$s requires PHP version %2$s+, plugin is currently NOT ACTIVE."
@@ -1771,12 +1785,12 @@ msgstr "Please update %1$s to version %2$s or newer."
1771
  msgid "Update now!"
1772
  msgstr "Aggiorna adesso!"
1773
 
1774
- #: nextend-facebook-connect/nextend-social-login.php:762
1775
- #: nextend-facebook-connect/nextend-social-login.php:1140
1776
  msgid "Social Login"
1777
  msgstr "Social Login"
1778
 
1779
- #: nextend-facebook-connect/nextend-social-login.php:1121
1780
  msgid "Social Accounts"
1781
  msgstr "Account Social"
1782
 
@@ -1818,7 +1832,6 @@ msgstr "Naviga in <b>%s</b>"
1818
  #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:9
1819
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:25
1820
  #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:9
1821
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:17
1822
  #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:9
1823
  #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:9
1824
  #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:20
@@ -1940,7 +1953,7 @@ msgstr "Naviga a %s"
1940
  #| "Click on the \"<b>Create an App</b>\" button on the top right corner."
1941
  msgid ""
1942
  "Click on the \"<b>Create App</b>\" button and in the Popup choose the "
1943
- "\"<b>Build Connected Experiences</b>\" option!"
1944
  msgstr ""
1945
  "Clicca sul bottone \"<b>Crea un'App</b>\" nell'angolo in alto a destra."
1946
 
@@ -1973,8 +1986,10 @@ msgid ""
1973
  msgstr ""
1974
 
1975
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:30
1976
- msgid ""
1977
- "Click the \"<b>Create App ID</b>\" button and complete the Security Check."
 
 
1978
  msgstr ""
1979
  "Clicca il bottone \"<b>Crea App ID</b>\" e completa la Verifica di Sicurezza."
1980
 
@@ -2115,8 +2130,37 @@ msgid ""
2115
  msgstr ""
2116
 
2117
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:60
2118
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:40
2119
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:37
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2120
  #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:39
2121
  #: nextend-social-login-pro/providers/apple/admin/getting-started.php:122
2122
  #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:30
@@ -2261,7 +2305,6 @@ msgstr ""
2261
  "%s</b>"
2262
 
2263
  #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:12
2264
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:34
2265
  #, php-format
2266
  msgid ""
2267
  "Add the following URL to the \"<b>Authorised redirect URIs</b>\" field: <b>"
@@ -2271,18 +2314,41 @@ msgstr ""
2271
  "b>"
2272
 
2273
  #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:13
2274
- #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:13
2275
  #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:14
2276
  msgid "Click on \"<b>Save</b>\""
2277
  msgstr "Clicca su \"<b>Salva</b>\""
2278
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2279
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:18
 
 
 
 
 
 
 
2280
  msgid ""
2281
  "If you don't have a project yet, you'll need to create one. You can do this "
2282
- "by clicking on the blue \"<b>Create</b>\" button on the right side! ( If "
2283
- "you already have a project, click on the name of your project in the "
2284
- "dashboard instead, which will bring up a modal and click <b>\"New Project\"</"
2285
- "b>. )"
2286
  msgstr ""
2287
  "Se non hai ancora un progetto, avrai bisogno di crearne uno. Puoi farlo "
2288
  "cliccando sul bottone blu \"<b>Crea</b>\" sul lato destro! ( Se già hai un "
@@ -2290,24 +2356,38 @@ msgstr ""
2290
  "finestra e dovri cliccare su <b>\"Nuovo Progetto\"</b>. )"
2291
 
2292
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:19
2293
- msgid "Name your project and then click on the \"<b>Create</b>\" button again"
 
 
 
2294
  msgstr ""
2295
  "Inserisci un nome per il tuo progetto e poi clicca di nuovo sul bottone "
2296
  "\"<b>Crea</b>\""
2297
 
2298
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:20
2299
- msgid "Once you have a project, you'll end up in the dashboard."
2300
- msgstr "Una volta ottenuto il progetto, ti troverai sulla dashboard."
 
 
 
2301
 
2302
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:21
2303
- msgid "Click the “<b>OAuth consent screen</b>” button on the left hand side."
 
 
 
2304
  msgstr "Clicca il bottone “<b>OAuth consent screen</b>” sulla sinistra."
2305
 
2306
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:22
 
 
 
 
 
2307
  msgid ""
2308
- "Choose a <b>User Type</b> according to your needs. If you want to enable the "
2309
- "social login with Google for any users with a Google account, then pick the "
2310
- "External option!"
2311
  msgstr ""
2312
  "Scegli un <b>Tipo Utente</b> secondo le tue necessità. Se vuoi attivare "
2313
  "Social Login con Google per qualunque utente con un account Google, "
@@ -2322,9 +2402,13 @@ msgid ""
2322
  msgstr ""
2323
 
2324
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:27
 
 
 
 
2325
  msgid ""
2326
- "Enter a name for your App to the \"<b>Application name</b>\" field, which "
2327
- "will appear as the name of the app asking for consent."
2328
  msgstr ""
2329
  "Inserisci un nome per la tua App nel campo \"<b>Nome applicazione</b>\", che "
2330
  "apparirà come nome dell'app che chiede per il consenso."
@@ -2332,47 +2416,88 @@ msgstr ""
2332
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:28
2333
  #, php-format
2334
  msgid ""
2335
- "Fill the \"<b>Authorized domains</b>\" field with your domain name probably: "
2336
- "<b>%s</b> without subdomains!"
2337
  msgstr ""
2338
- "Compila il campo \"<b>Domini autorizzati</b>\" col tuo nome del tuo dominio, "
2339
- "probabilmente: <b>%s</b> senza sottodomini!"
2340
 
2341
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:29
2342
- msgid "Save your settings!"
2343
- msgstr "Salva le impostazioni!"
 
 
 
 
 
 
 
 
2344
 
2345
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:30
2346
  #, php-format
2347
  msgid ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2348
  "On the left side, click on the \"<b>%1$s</b>\" menu point, then click the "
2349
  "\"<b>%2$s</b>\" button in the top bar."
2350
  msgstr ""
2351
  "Sul lato sinistro, clicca nel menù su \"<b>%1$s</b>\", quindi clicca il "
2352
  "bottone \"<b>%2$s</b>\" nella barra superiore."
2353
 
2354
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:31
2355
- msgid "Choose the \"<b>OAuth client ID</b>\" option."
 
 
2356
  msgstr "Scegli l'opzione \"<b>OAuth client ID</b>\"."
2357
 
2358
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:32
2359
- msgid "Select the \"<b>Web application</b>\" under Application type."
 
 
2360
  msgstr "Seleziona \"<b>Applicazione web</b>\" sotto Tipo di applicazione."
2361
 
2362
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:33
2363
- msgid "Enter a \"<b>Name</b>\" for your OAuth client ID."
 
 
2364
  msgstr "Inserisci un \"<b>Name</b>\" per il tuo OAuth client ID."
2365
 
2366
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:35
2367
- msgid "Click on the \"<b>Create</b>\" button"
 
 
 
 
 
 
 
 
 
2368
  msgstr "Clicca sul bottone \"<b>Crea</b>\""
2369
 
2370
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:36
 
 
 
 
 
 
2371
  msgid ""
2372
  "A modal should pop up with your credentials. If that doesn't happen, go to "
2373
- "the Credentials in the left hand menu and select your app by clicking on its "
2374
- "name and you'll be able to copy-paste the \"<b>Client ID</b>\" and "
2375
- "\"<b>Client Secret</b>\" from there."
2376
  msgstr ""
2377
  "Una finestra modal dovrebbe comparire con le tue credenziali. Se questo non "
2378
  "avvenisse, vai su Credenziali nel menù a sinistra e seleziona la tua app "
@@ -2442,7 +2567,6 @@ msgid ""
2442
  msgstr "Cerca la tua App e clicca sul bottone \"<b>Dettagli</b>\""
2443
 
2444
  #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:11
2445
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:27
2446
  #, fuzzy
2447
  #| msgid ""
2448
  #| "Click on the \"<b>Create an App</b>\" button on the top right corner."
@@ -2455,21 +2579,16 @@ msgstr ""
2455
  msgid "Add the following URL to the \"<b>Callback URLs</b>\" field: <b>%s</b>"
2456
  msgstr "Aggiungi l'URL seguente al campo \"<b>Callback URLs</b>\": <b>%s</b>"
2457
 
2458
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:17
2459
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:25
2460
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:38
2461
- #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:9
2462
- #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:16
2463
- #: nextend-social-login-pro/providers/github/admin/getting-started.php:16
2464
- #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:9
2465
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:17
2466
- #: nextend-social-login-pro/providers/vk/admin/getting-started.php:16
2467
- #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:9
2468
- #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:16
2469
- #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:17
2470
- #, php-format
2471
- msgid "Log in with your %s credentials if you are not logged in."
2472
- msgstr "Accedi con le tue credenziali %s se non sei loggato."
2473
 
2474
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:18
2475
  msgid ""
@@ -2489,79 +2608,85 @@ msgstr ""
2489
  "%s</b> se non sei già lì!"
2490
 
2491
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:20
2492
- #, fuzzy
2493
  #| msgid "Click on \"<b>Save</b>\""
2494
- msgid "Click on <b>+ New Project</b>!"
2495
  msgstr "Clicca su \"<b>Salva</b>\""
2496
 
2497
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:21
2498
  msgid ""
2499
  "Name your project, and go through the basic setup. You’ll need to select "
2500
- "your use case and give a description."
2501
  msgstr ""
2502
 
2503
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:22
2504
- msgid "Create a new app, or select an existing one, then click <b>Complete</b>"
2505
- msgstr ""
 
 
2506
 
2507
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:23
 
2508
  msgid ""
2509
- "You’ll find your API key and secret on this page. Copy and paste the <b>API "
2510
- "key</b> and the <b>API secret key</b> to the corresponding fields at Nextend "
2511
- "Social Login and press <b>Save Changes</b>."
2512
  msgstr ""
2513
 
2514
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:24
2515
- #, fuzzy, php-format
2516
- #| msgid "Click on the \"<b>Save Changes</b>\" button."
2517
- msgid "Click on the <b>App Settings</b> button at %s."
2518
- msgstr "Clicca sul bottone \"<b>Salva Modifiche</b>\"."
 
2519
 
2520
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:25
2521
- msgid "Find the Apps section, and the app you created a few steps ago."
 
 
 
2522
  msgstr ""
 
 
2523
 
2524
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:26
2525
- msgid "Click on the App settings icon. (The one that looks like a gear.)"
2526
- msgstr ""
2527
-
2528
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:28
2529
- msgid "Switch on the <b>Enable 3-legged OAuth</b> option."
2530
- msgstr ""
2531
 
2532
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:29
2533
  #, fuzzy, php-format
2534
- #| msgid ""
2535
- #| "Add the following URL to the \"<b>Callback URLs</b>\" field: <b>%s</b>"
2536
- msgid "Add the following URL to the <b>Callback URLs</b> field: <b>%s</b>"
2537
- msgstr "Aggiungi l'URL seguente al campo \"<b>Callback URLs</b>\": <b>%s</b>"
2538
 
2539
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:30
2540
  #, fuzzy, php-format
2541
  #| msgid ""
2542
  #| "Enter the URL of your site to the \"<b>Home Page URL</b>\" field: <b>%s</"
2543
  #| "b>"
2544
- msgid "Enter your site's URL to the <b>Website URL</b> field: <b>%s</b>"
2545
  msgstr ""
2546
  "Inserisci l'URL del tuo sito nel campo \"<b>Home Page URL</b>\": <b>%s</b>"
2547
 
2548
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:31
 
2549
  msgid ""
2550
  "If you want to get the email address as well, then don’t forget to enable "
2551
- "the <b>Request email address from users</b> option. In this case you also "
2552
- "need to fill the <b>Terms of service</b> and the <b>Privacy policy</b> "
2553
- "fields with the corresponding URLs!"
2554
  msgstr ""
2555
 
2556
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:32
2557
- #, fuzzy
2558
  #| msgid "Click on \"<b>Save</b>\""
2559
- msgid "Click on <b>Save</b>."
2560
  msgstr "Clicca su \"<b>Salva</b>\""
2561
 
2562
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:33
2563
  #, php-format
2564
- msgid "Go back to Nextend Social Login and <b>Verify</b> your %s provider."
2565
  msgstr ""
2566
 
2567
  #: nextend-facebook-connect/providers/twitter/admin/settings.php:27
@@ -2916,11 +3041,11 @@ msgstr ""
2916
 
2917
  #: nextend-social-login-pro/providers/apple/admin/getting-started.php:35
2918
  msgid ""
2919
- "Make sure you have an <strong>active subscription for the Apple Developer "
2920
- "Program</strong>!"
 
 
2921
  msgstr ""
2922
- "Accertati che tu abbia una <strong>sottoscrizione attiva all'Apple Developer "
2923
- "Program</strong>!"
2924
 
2925
  #: nextend-social-login-pro/providers/apple/admin/getting-started.php:36
2926
  msgid ""
@@ -3983,34 +4108,34 @@ msgstr "Scollega account da <b>Yahoo</b>"
3983
  msgid "Required permission: %1$s"
3984
  msgstr "Permesso richiesto: %1$s"
3985
 
3986
- #: nextend-social-login-pro/template-parts/buddypress/login/above-separator.php:10
3987
- #: nextend-social-login-pro/template-parts/buddypress/login/below-separator.php:10
3988
- #: nextend-social-login-pro/template-parts/embedded-login/above-separator.php:10
3989
- #: nextend-social-login-pro/template-parts/embedded-login/below-separator.php:10
3990
- #: nextend-social-login-pro/template-parts/login/above-separator.php:20
3991
- #: nextend-social-login-pro/template-parts/login/below-separator.php:8
3992
- #: nextend-social-login-pro/template-parts/memberpress/login/above-separator.php:10
3993
- #: nextend-social-login-pro/template-parts/memberpress/login/below-separator.php:10
3994
- #: nextend-social-login-pro/template-parts/memberpress/sign-up/above-separator.php:10
3995
- #: nextend-social-login-pro/template-parts/memberpress/sign-up/below-separator.php:10
3996
- #: nextend-social-login-pro/template-parts/ultimate-member/login/above-separator.php:10
3997
- #: nextend-social-login-pro/template-parts/ultimate-member/login/below-separator.php:10
3998
- #: nextend-social-login-pro/template-parts/ultimate-member/register/above-separator.php:10
3999
- #: nextend-social-login-pro/template-parts/ultimate-member/register/below-separator.php:10
4000
- #: nextend-social-login-pro/template-parts/userpro/login/above-separator.php:10
4001
- #: nextend-social-login-pro/template-parts/userpro/login/below-separator.php:10
4002
- #: nextend-social-login-pro/template-parts/userpro/register/above-separator.php:10
4003
- #: nextend-social-login-pro/template-parts/userpro/register/below-separator.php:10
4004
- #: nextend-social-login-pro/template-parts/woocommerce/billing/above-separator.php:11
4005
- #: nextend-social-login-pro/template-parts/woocommerce/billing/below-separator.php:11
4006
- #: nextend-social-login-pro/template-parts/woocommerce/billing/default-separator-after.php:7
4007
- #: nextend-social-login-pro/template-parts/woocommerce/billing/default-separator-before.php:7
4008
- #: nextend-social-login-pro/template-parts/woocommerce/checkout-for-woocommerce/above-separator.php:15
4009
- #: nextend-social-login-pro/template-parts/woocommerce/checkout-for-woocommerce/below-separator.php:15
4010
- #: nextend-social-login-pro/template-parts/woocommerce/login/above-separator.php:10
4011
- #: nextend-social-login-pro/template-parts/woocommerce/login/below-separator.php:10
4012
- #: nextend-social-login-pro/template-parts/woocommerce/register/above-separator.php:10
4013
- #: nextend-social-login-pro/template-parts/woocommerce/register/below-separator.php:10
4014
  msgid "OR"
4015
  msgstr "OR"
4016
 
@@ -4021,6 +4146,47 @@ msgstr "OR"
4021
  msgid "Social accounts"
4022
  msgstr "Account social"
4023
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4024
  #~ msgid ""
4025
  #~ "The <b>Edit</b> button can be found on the App details tab. Click on it "
4026
  #~ "and select \"<b>Edit details</b>\""
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: nextend-facebook-connect\n"
4
+ "POT-Creation-Date: 2021-06-16 14:00+0200\n"
5
+ "PO-Revision-Date: 2021-06-16 14:00+0200\n"
6
  "Last-Translator: \n"
7
  "Language-Team: nextend-facebook-connect\n"
8
  "Language: it_IT\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 3.0\n"
13
  "X-Poedit-Basepath: ../..\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
135
  msgid "User"
136
  msgstr "Utente"
137
 
138
+ #: nextend-facebook-connect/admin/admin.php:204
139
  #, php-format
140
  msgid "%s needs json_decode function."
141
  msgstr "%s necessita della funzione json_decode."
142
 
143
+ #: nextend-facebook-connect/admin/admin.php:204
144
  msgid "Please contact your server administrator and ask for solution!"
145
  msgstr ""
146
  "Per favore contatta l'amministratore del tuo server e chiedi una soluzione!"
147
 
148
+ #: nextend-facebook-connect/admin/admin.php:236
149
+ #: nextend-facebook-connect/admin/admin.php:266
150
  msgid "Settings saved."
151
  msgstr "Settaggio salvato."
152
 
153
+ #: nextend-facebook-connect/admin/admin.php:245
154
  msgid "The activation was successful"
155
  msgstr "Attivazione completata"
156
 
157
+ #: nextend-facebook-connect/admin/admin.php:256
158
  msgid "Deactivate completed."
159
  msgstr "Disattivazione completata."
160
 
161
+ #: nextend-facebook-connect/admin/admin.php:435
162
  #: nextend-facebook-connect/admin/templates-provider/menu.php:15
163
  #: nextend-facebook-connect/admin/templates/providers.php:89
164
  #: nextend-facebook-connect/admin/templates/providers.php:101
166
  msgid "Settings"
167
  msgstr "Settaggi"
168
 
169
+ #: nextend-facebook-connect/admin/admin.php:518
170
  #: nextend-facebook-connect/includes/oauth2.php:143
171
  #: nextend-facebook-connect/includes/oauth2.php:288
172
  #: nextend-facebook-connect/providers/facebook/facebook-client.php:84
177
  msgid "Unexpected response: %s"
178
  msgstr "Unexpected response: %s"
179
 
180
+ #: nextend-facebook-connect/admin/admin.php:579
181
  #: nextend-facebook-connect/admin/templates/fix-redirect-uri.php:21
182
  #, php-format
183
  msgid ""
187
  "%s ha rilevato che la tua url di login è cambiata. Devi aggiornare il "
188
  "redirect Oauth URIs nella relative applicazioni social."
189
 
190
+ #: nextend-facebook-connect/admin/admin.php:580
191
  #: nextend-social-login-pro/providers/apple/apple.php:310
192
  msgid "Fix Error"
193
  msgstr "Ripara Errore"
194
 
195
+ #: nextend-facebook-connect/admin/admin.php:580
196
  msgid "Oauth Redirect URI"
197
  msgstr "Oauth Redirect URI"
198
 
199
+ #: nextend-facebook-connect/admin/admin.php:597
200
  #, php-format
201
  msgid ""
202
  "%1$s detected that %2$s installed on your site. You need the Pro Addon to "
205
  "%1$s ha rilevato che %2$s è installato sul tuo sito. Hai bisogno di Pro "
206
  "Addon per mostrare i bottoni Social Login nel form di login di %2$s!"
207
 
208
+ #: nextend-facebook-connect/admin/admin.php:598
209
  msgid "Dismiss and check Pro Addon"
210
  msgstr ""
211
 
212
+ #: nextend-facebook-connect/admin/admin.php:598
213
  msgid "Dismiss"
214
  msgstr ""
215
 
216
+ #: nextend-facebook-connect/admin/admin.php:604
217
  #, php-format
218
  msgid ""
219
  "%1$s detected that %2$s installed on your site. You must set \"<b>Page for "
224
  "\"<b>Pagina per il flusso di registrazione</b>\" e \"<b>OAuth redirect uri "
225
  "proxy page</b>\" in %1$s per funzionare correttamente."
226
 
227
+ #: nextend-facebook-connect/admin/admin.php:605
228
  msgid "Fix now"
229
  msgstr "Ripara ora"
230
 
231
+ #: nextend-facebook-connect/admin/admin.php:629
232
  msgid "Activate your Pro Addon"
233
  msgstr "Attiva il tuo Pro Addon"
234
 
235
+ #: nextend-facebook-connect/admin/admin.php:630
236
  msgid ""
237
  "To be able to use the Pro features, you need to activate Nextend Social "
238
  "Login Pro Addon. You can do this by clicking on the Activate button below "
242
  "Login Pro. Puoi farlo cliccando sul bottone Attiva in basso e selezionare il "
243
  "relativo acquisto."
244
 
245
+ #: nextend-facebook-connect/admin/admin.php:635
246
  #: nextend-social-login-pro/nextend-social-login-pro.php:110
247
  msgid "Activate"
248
  msgstr "Attiva"
249
 
250
+ #: nextend-facebook-connect/admin/admin.php:733
251
  msgid "License key"
252
  msgstr "Chiave di licenza"
253
 
254
+ #: nextend-facebook-connect/admin/admin.php:756
255
  msgid "OAuth proxy page"
256
  msgstr "Pagina OAuth proxy"
257
 
258
+ #: nextend-facebook-connect/admin/admin.php:759
259
  msgid "Register flow page"
260
  msgstr "Pagina del flusso di registrazione"
261
 
264
  msgid "You have logged in successfully."
265
  msgstr "Ti sei loggato."
266
 
267
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:86
268
  msgid "Login label"
269
  msgstr "Etichetta login"
270
 
271
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:91
272
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:107
273
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:120
274
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:131
275
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:160
276
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:190
277
  #: nextend-facebook-connect/admin/templates/settings/privacy.php:53
278
  msgid "Reset to default"
279
  msgstr "Ripristina predefiniti"
280
 
281
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:101
282
  #, fuzzy
283
  #| msgid "Register layout"
284
  msgid "Register label"
285
  msgstr "Layout registrazione"
286
 
287
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:114
288
  msgid "Link label"
289
  msgstr "Collega etichetta"
290
 
291
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:126
292
  msgid "Unlink label"
293
  msgstr "Scollega etichetta"
294
 
295
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:137
296
  msgid "Default button"
297
  msgstr "Bottone standard"
298
 
299
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:153
300
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:183
301
  msgid "Use custom button"
302
  msgstr "Usa bottone personalizzato"
303
 
304
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:160
305
  #, php-format
306
  msgid "Use the %s in your custom button's code to make the label show up."
307
  msgstr ""
308
  "Utilizza %s nei codici dei tuoi bottoni personalizzati per rendere "
309
  "l'etichetta visibile."
310
 
311
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:168
312
  msgid "Icon button"
313
  msgstr "Bottone icona"
314
 
315
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:199
316
  #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:140
317
  #: nextend-facebook-connect/admin/templates-provider/sync-data.php:104
318
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:170
490
  msgstr "Default"
491
 
492
  #: nextend-facebook-connect/admin/templates-provider/sync-data.php:50
 
493
  msgid "Register"
494
  msgstr "Registra"
495
 
1470
  msgstr "Avatar"
1471
 
1472
  #: nextend-facebook-connect/admin/templates/settings/privacy.php:102
1473
+ #: nextend-facebook-connect/includes/provider.php:1102
1474
  msgid "Access token"
1475
  msgstr "Token d'accesso"
1476
 
1592
  msgstr[0] "Avatar <span class=\"count\">(%s)</span>"
1593
  msgstr[1] "Avatar <span class=\"count\">(%s)</span>"
1594
 
1595
+ #: nextend-facebook-connect/includes/avatar.php:399
1596
+ msgid "Invalid URL Provided."
1597
+ msgstr ""
1598
+
1599
+ #: nextend-facebook-connect/includes/avatar.php:404
1600
+ msgid "Could not create Temporary file."
1601
+ msgstr ""
1602
+
1603
  #: nextend-facebook-connect/includes/compat-wp-login.php:63
1604
  #, php-format
1605
  msgid "%1$s &lsaquo; %2$s &#8212; WordPress"
1681
  msgstr "Per favore salva le tue modifiche prima di verificare le impostazioni."
1682
 
1683
  #: nextend-facebook-connect/includes/provider.php:358
1684
+ #: nextend-facebook-connect/includes/provider.php:719
1685
+ #: nextend-facebook-connect/includes/provider.php:727
1686
  msgid "Authentication successful"
1687
  msgstr "Autenticazione riuscita"
1688
 
1689
+ #: nextend-facebook-connect/includes/provider.php:656
1690
  #: nextend-facebook-connect/includes/user.php:168
1691
  #: nextend-facebook-connect/includes/user.php:597
1692
  msgid "Authentication error"
1693
  msgstr "Errore di autenticazione"
1694
 
1695
+ #: nextend-facebook-connect/includes/provider.php:671
1696
  msgid "Unlink successful."
1697
  msgstr "Scollegamento riuscito."
1698
 
1699
+ #: nextend-facebook-connect/includes/provider.php:673
1700
  msgid "Unlink is not allowed!"
1701
  msgstr "Lo scollegamento non è consentito!"
1702
 
1703
+ #: nextend-facebook-connect/includes/provider.php:888
1704
+ #: nextend-facebook-connect/includes/provider.php:895
1705
  msgid "The test was successful"
1706
  msgstr "Il test è riuscito"
1707
 
1708
+ #: nextend-facebook-connect/includes/provider.php:941
1709
  msgid "Authentication failed"
1710
  msgstr "Autenticazione fallita"
1711
 
1712
+ #: nextend-facebook-connect/includes/provider.php:1094
1713
  msgid "Identifier"
1714
  msgstr "Identificatore"
1715
 
1716
+ #: nextend-facebook-connect/includes/provider.php:1110
1717
  msgid "Profile picture"
1718
  msgstr "Immagine del profilo"
1719
 
1752
  msgid "Register For This Site!"
1753
  msgstr "Registrati per questo sito!"
1754
 
1755
+ #: nextend-facebook-connect/includes/userData.php:189
1756
+ #, fuzzy
1757
+ #| msgid "Register"
1758
+ msgctxt "Register form submit button label"
1759
+ msgid "Register"
1760
+ msgstr "Registra"
1761
+
1762
  #: nextend-facebook-connect/nextend-facebook-connect.php:37
1763
  #, php-format
1764
  msgid "%1$s requires PHP version %2$s+, plugin is currently NOT ACTIVE."
1785
  msgid "Update now!"
1786
  msgstr "Aggiorna adesso!"
1787
 
1788
+ #: nextend-facebook-connect/nextend-social-login.php:820
1789
+ #: nextend-facebook-connect/nextend-social-login.php:1199
1790
  msgid "Social Login"
1791
  msgstr "Social Login"
1792
 
1793
+ #: nextend-facebook-connect/nextend-social-login.php:1180
1794
  msgid "Social Accounts"
1795
  msgstr "Account Social"
1796
 
1832
  #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:9
1833
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:25
1834
  #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:9
 
1835
  #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:9
1836
  #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:9
1837
  #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:20
1953
  #| "Click on the \"<b>Create an App</b>\" button on the top right corner."
1954
  msgid ""
1955
  "Click on the \"<b>Create App</b>\" button and in the Popup choose the "
1956
+ "\"<b>Consumer</b>\" App type!"
1957
  msgstr ""
1958
  "Clicca sul bottone \"<b>Crea un'App</b>\" nell'angolo in alto a destra."
1959
 
1986
  msgstr ""
1987
 
1988
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:30
1989
+ #, fuzzy
1990
+ #| msgid ""
1991
+ #| "Click the \"<b>Create App ID</b>\" button and complete the Security Check."
1992
+ msgid "Click the \"<b>Create App</b>\" button and complete the Security Check."
1993
  msgstr ""
1994
  "Clicca il bottone \"<b>Crea App ID</b>\" e completa la Verifica di Sicurezza."
1995
 
2130
  msgstr ""
2131
 
2132
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:60
2133
+ msgid "Maintaining the Facebook App:"
2134
+ msgstr ""
2135
+
2136
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:61
2137
+ #, php-format
2138
+ msgid ""
2139
+ "<strong><u>Facebook Data Use Checkup:</u></strong> To protecting people's "
2140
+ "privacy, Facebook might requests you to fill some forms, so they can ensure "
2141
+ "that your API access and data use comply with the Facebook policies.\n"
2142
+ "If Facebook displays the \"%1$s\" modal for your App, then in our "
2143
+ "%2$sdocumentation%3$s you can find more information about the permissions "
2144
+ "that we need."
2145
+ msgstr ""
2146
+
2147
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:63
2148
+ #, php-format
2149
+ msgid ""
2150
+ "<strong><u>New Data Access Levels:</u></strong> Facebook started replacing "
2151
+ "the Development Mode / Live Mode switch in some Apps with %1$s ( earlier "
2152
+ "Development Mode ) and %2$s ( earlier Live mode ), which can be modified on "
2153
+ "the <strong>%3$s</strong> page. You can reach this page from the left hand "
2154
+ "menu of your App, under <strong>%4$s</strong>.\n"
2155
+ "If you want people outside of your business to be able to use their Faceook "
2156
+ "account to register and login over your App, then make sure you requested "
2157
+ "<strong>%2$s</strong> for the <strong>%5$s</strong> and <strong>%6$s</"
2158
+ "strong> permissions. "
2159
+ msgstr ""
2160
+
2161
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:67
2162
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:42
2163
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:35
2164
  #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:39
2165
  #: nextend-social-login-pro/providers/apple/admin/getting-started.php:122
2166
  #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:30
2305
  "%s</b>"
2306
 
2307
  #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:12
 
2308
  #, php-format
2309
  msgid ""
2310
  "Add the following URL to the \"<b>Authorised redirect URIs</b>\" field: <b>"
2314
  "b>"
2315
 
2316
  #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:13
2317
+ #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:14
2318
  #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:14
2319
  msgid "Click on \"<b>Save</b>\""
2320
  msgstr "Clicca su \"<b>Salva</b>\""
2321
 
2322
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:17
2323
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:17
2324
+ #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:25
2325
+ #: nextend-social-login-pro/providers/apple/admin/getting-started.php:38
2326
+ #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:9
2327
+ #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:16
2328
+ #: nextend-social-login-pro/providers/github/admin/getting-started.php:16
2329
+ #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:9
2330
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:17
2331
+ #: nextend-social-login-pro/providers/vk/admin/getting-started.php:16
2332
+ #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:9
2333
+ #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:16
2334
+ #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:17
2335
+ #, php-format
2336
+ msgid "Log in with your %s credentials if you are not logged in."
2337
+ msgstr "Accedi con le tue credenziali %s se non sei loggato."
2338
+
2339
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:18
2340
+ #, fuzzy, php-format
2341
+ #| msgid ""
2342
+ #| "If you don't have a project yet, you'll need to create one. You can do "
2343
+ #| "this by clicking on the blue \"<b>Create</b>\" button on the right side! "
2344
+ #| "( If you already have a project, click on the name of your project in the "
2345
+ #| "dashboard instead, which will bring up a modal and click <b>\"New Project"
2346
+ #| "\"</b>. )"
2347
  msgid ""
2348
  "If you don't have a project yet, you'll need to create one. You can do this "
2349
+ "by clicking on the blue \"<b>%1$s</b>\" text on the right side! ( If you "
2350
+ "already have a project, then in the top bar click on the name of your "
2351
+ "project instead, which will bring up a modal and click <b>\"%2$s\"</b>. )"
 
2352
  msgstr ""
2353
  "Se non hai ancora un progetto, avrai bisogno di crearne uno. Puoi farlo "
2354
  "cliccando sul bottone blu \"<b>Crea</b>\" sul lato destro! ( Se già hai un "
2356
  "finestra e dovri cliccare su <b>\"Nuovo Progetto\"</b>. )"
2357
 
2358
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:19
2359
+ #, fuzzy, php-format
2360
+ #| msgid ""
2361
+ #| "Name your project and then click on the \"<b>Create</b>\" button again"
2362
+ msgid "Name your project and then click on the \"<b>%1$s</b>\" button again!"
2363
  msgstr ""
2364
  "Inserisci un nome per il tuo progetto e poi clicca di nuovo sul bottone "
2365
  "\"<b>Crea</b>\""
2366
 
2367
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:20
2368
+ msgid ""
2369
+ "Once you have a project, you'll end up in the dashboard. ( If earlier you "
2370
+ "have already had a Project, then make sure you select the created project in "
2371
+ "the top bar! )"
2372
+ msgstr ""
2373
 
2374
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:21
2375
+ #, fuzzy, php-format
2376
+ #| msgid ""
2377
+ #| "Click the “<b>OAuth consent screen</b>” button on the left hand side."
2378
+ msgid "Click the “<b>%1$s</b>” button on the left hand side."
2379
  msgstr "Clicca il bottone “<b>OAuth consent screen</b>” sulla sinistra."
2380
 
2381
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:22
2382
+ #, fuzzy, php-format
2383
+ #| msgid ""
2384
+ #| "Choose a <b>User Type</b> according to your needs. If you want to enable "
2385
+ #| "the social login with Google for any users with a Google account, then "
2386
+ #| "pick the External option!"
2387
  msgid ""
2388
+ "Choose a <b>%1$s</b> according to your needs and press \"<b>%2$s</b>\". If "
2389
+ "you want to enable the social login with %3$s for any users with a %3$s "
2390
+ "account, then pick the \"%4$s\" option!"
2391
  msgstr ""
2392
  "Scegli un <b>Tipo Utente</b> secondo le tue necessità. Se vuoi attivare "
2393
  "Social Login con Google per qualunque utente con un account Google, "
2402
  msgstr ""
2403
 
2404
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:27
2405
+ #, fuzzy, php-format
2406
+ #| msgid ""
2407
+ #| "Enter a name for your App to the \"<b>Application name</b>\" field, which "
2408
+ #| "will appear as the name of the app asking for consent."
2409
  msgid ""
2410
+ "Enter a name for your App to the \"<b>%1$s</b>\" field, which will appear as "
2411
+ "the name of the app asking for consent."
2412
  msgstr ""
2413
  "Inserisci un nome per la tua App nel campo \"<b>Nome applicazione</b>\", che "
2414
  "apparirà come nome dell'app che chiede per il consenso."
2416
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:28
2417
  #, php-format
2418
  msgid ""
2419
+ "For the \"<b>%1$s</b>\" field, select an email address that users can use to "
2420
+ "contact you with questions about their consent."
2421
  msgstr ""
 
 
2422
 
2423
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:29
2424
+ #, fuzzy, php-format
2425
+ #| msgid ""
2426
+ #| "Fill the \"<b>Authorized domains</b>\" field with your domain name "
2427
+ #| "probably: <b>%s</b> without subdomains!"
2428
+ msgid ""
2429
+ "Under the \"<b>%1$s</b>\" section press the \"<b>%2$s</b>\" button and "
2430
+ "enter your domain name, probably: <b>%3$s</b> without subdomains!"
2431
+ msgstr ""
2432
+ "Compila il campo \"<b>Domini autorizzati</b>\" col tuo nome del tuo dominio, "
2433
+ "probabilmente: <b>%s</b> senza sottodomini!"
2434
 
2435
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:30
2436
  #, php-format
2437
  msgid ""
2438
+ "At the \"<b>%1$s</b>\" section, enter an email address that %2$s can use to "
2439
+ "notify you about any changes to your project."
2440
+ msgstr ""
2441
+
2442
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:31
2443
+ #, php-format
2444
+ msgid ""
2445
+ "Press \"<b>%1$s</b>\" then press it again on the \"%2$s\", \"%3$s\" pages, "
2446
+ "too!"
2447
+ msgstr ""
2448
+
2449
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:32
2450
+ #, php-format
2451
+ msgid ""
2452
  "On the left side, click on the \"<b>%1$s</b>\" menu point, then click the "
2453
  "\"<b>%2$s</b>\" button in the top bar."
2454
  msgstr ""
2455
  "Sul lato sinistro, clicca nel menù su \"<b>%1$s</b>\", quindi clicca il "
2456
  "bottone \"<b>%2$s</b>\" nella barra superiore."
2457
 
2458
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:33
2459
+ #, fuzzy, php-format
2460
+ #| msgid "Choose the \"<b>OAuth client ID</b>\" option."
2461
+ msgid "Choose the \"<b>%1$s</b>\" option."
2462
  msgstr "Scegli l'opzione \"<b>OAuth client ID</b>\"."
2463
 
2464
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:34
2465
+ #, fuzzy, php-format
2466
+ #| msgid "Select the \"<b>Web application</b>\" under Application type."
2467
+ msgid "Select the \"<b>%1$s</b>\" under Application type."
2468
  msgstr "Seleziona \"<b>Applicazione web</b>\" sotto Tipo di applicazione."
2469
 
2470
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:35
2471
+ #, fuzzy, php-format
2472
+ #| msgid "Enter a \"<b>Name</b>\" for your OAuth client ID."
2473
+ msgid "Enter a \"<b>%1$s</b>\" for your OAuth client ID."
2474
  msgstr "Inserisci un \"<b>Name</b>\" per il tuo OAuth client ID."
2475
 
2476
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:36
2477
+ #, php-format
2478
+ msgid ""
2479
+ "Under the \"<b>%1$s</b>\" section click \"<b>%2$s</b>\" and add the "
2480
+ "following URL: <b>%3$s</b>"
2481
+ msgstr ""
2482
+
2483
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:37
2484
+ #, fuzzy, php-format
2485
+ #| msgid "Click on the \"<b>Create</b>\" button"
2486
+ msgid "Click on the \"<b>%1$s</b>\" button"
2487
  msgstr "Clicca sul bottone \"<b>Crea</b>\""
2488
 
2489
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:38
2490
+ #, fuzzy, php-format
2491
+ #| msgid ""
2492
+ #| "A modal should pop up with your credentials. If that doesn't happen, go "
2493
+ #| "to the Credentials in the left hand menu and select your app by clicking "
2494
+ #| "on its name and you'll be able to copy-paste the \"<b>Client ID</b>\" and "
2495
+ #| "\"<b>Client Secret</b>\" from there."
2496
  msgid ""
2497
  "A modal should pop up with your credentials. If that doesn't happen, go to "
2498
+ "the %1$s in the left hand menu and select your app by clicking on its name "
2499
+ "and you'll be able to copy-paste the \"<b>%2$s</b>\" and \"<b>%3$s</b>\" "
2500
+ "from there."
2501
  msgstr ""
2502
  "Una finestra modal dovrebbe comparire con le tue credenziali. Se questo non "
2503
  "avvenisse, vai su Credenziali nel menù a sinistra e seleziona la tua app "
2567
  msgstr "Cerca la tua App e clicca sul bottone \"<b>Dettagli</b>\""
2568
 
2569
  #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:11
 
2570
  #, fuzzy
2571
  #| msgid ""
2572
  #| "Click on the \"<b>Create an App</b>\" button on the top right corner."
2579
  msgid "Add the following URL to the \"<b>Callback URLs</b>\" field: <b>%s</b>"
2580
  msgstr "Aggiungi l'URL seguente al campo \"<b>Callback URLs</b>\": <b>%s</b>"
2581
 
2582
+ #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:13
2583
+ #, fuzzy, php-format
2584
+ #| msgid ""
2585
+ #| "Make sure the <b>%1$s</b> tab is selected and click on the <b>%2$s</b> "
2586
+ #| "button."
2587
+ msgid ""
2588
+ "Make sure the \"<b>%1$s</b>\" field contains the following URL: <b>%2$s</b>"
2589
+ msgstr ""
2590
+ "Accertati che la tab <b>%1$s</b> sia selezionata e clicca sul bottone <b>"
2591
+ "%2$s</b>."
 
 
 
 
 
2592
 
2593
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:18
2594
  msgid ""
2608
  "%s</b> se non sei già lì!"
2609
 
2610
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:20
2611
+ #, fuzzy, php-format
2612
  #| msgid "Click on \"<b>Save</b>\""
2613
+ msgid "Click on \"<b>%s</b>\"!"
2614
  msgstr "Clicca su \"<b>Salva</b>\""
2615
 
2616
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:21
2617
  msgid ""
2618
  "Name your project, and go through the basic setup. You’ll need to select "
2619
+ "your use case, give a description and enter a name for the App as well."
2620
  msgstr ""
2621
 
2622
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:22
2623
+ #, fuzzy, php-format
2624
+ #| msgid "Click \"<b>Edit</b>\"."
2625
+ msgid "Click \"<b>%s</b>\"!"
2626
+ msgstr "Clicca \"<b>Modifica</b>\"."
2627
 
2628
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:23
2629
+ #, php-format
2630
  msgid ""
2631
+ "You’ll find your API key and secret on this page. Copy and paste the \"<b>"
2632
+ "%1$s</b>\" and the \"<b>%2$s</b>\" to the corresponding fields at %3$s and "
2633
+ "press \"<b>Save Changes</b>\"."
2634
  msgstr ""
2635
 
2636
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:24
2637
+ #, php-format
2638
+ msgid ""
2639
+ "Go back to your Twitter project and on the left side, under the \"<b>%s</b>"
2640
+ "\" section click on the name of your App."
2641
+ msgstr ""
2642
 
2643
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:25
2644
+ #, fuzzy, php-format
2645
+ #| msgid ""
2646
+ #| "Name your project and then click on the \"<b>Create</b>\" button again"
2647
+ msgid "Scroll down and click on the \"<b>%1$s</b>\" button at \"<b>%2$s</b>\"."
2648
  msgstr ""
2649
+ "Inserisci un nome per il tuo progetto e poi clicca di nuovo sul bottone "
2650
+ "\"<b>Crea</b>\""
2651
 
2652
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:26
2653
+ #, fuzzy, php-format
2654
+ #| msgid "Choose the \"<b>OAuth client ID</b>\" option."
2655
+ msgid "Switch on the \"<b>%s</b>\" option."
2656
+ msgstr "Scegli l'opzione \"<b>OAuth client ID</b>\"."
 
 
2657
 
2658
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:27
2659
  #, fuzzy, php-format
2660
+ #| msgid "Add the following URL to the \"<b>Return URLs</b>\" field: <b>%s</b>"
2661
+ msgid "Add the following URL to the \"<b>%1$s</b>\" field: <b>%2$s</b>"
2662
+ msgstr "Aggiungi l'URL seguente al campo \"<b>URLs di ritorno</b>\": <b>%s</b>"
 
2663
 
2664
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:28
2665
  #, fuzzy, php-format
2666
  #| msgid ""
2667
  #| "Enter the URL of your site to the \"<b>Home Page URL</b>\" field: <b>%s</"
2668
  #| "b>"
2669
+ msgid "Enter your site's URL to the \"<b>%1$s</b>\" field: <b>%2$s</b>"
2670
  msgstr ""
2671
  "Inserisci l'URL del tuo sito nel campo \"<b>Home Page URL</b>\": <b>%s</b>"
2672
 
2673
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:29
2674
+ #, php-format
2675
  msgid ""
2676
  "If you want to get the email address as well, then don’t forget to enable "
2677
+ "the \"<b>%1$s</b>\" option. In this case you also need to fill the \"<b>"
2678
+ "%2$s</b>\" and the \"<b>%3$s</b>\" fields with the corresponding URLs!"
 
2679
  msgstr ""
2680
 
2681
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:30
2682
+ #, fuzzy, php-format
2683
  #| msgid "Click on \"<b>Save</b>\""
2684
+ msgid "Click on \"<b>%s</b>\"."
2685
  msgstr "Clicca su \"<b>Salva</b>\""
2686
 
2687
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:31
2688
  #, php-format
2689
+ msgid "Go back to %1$s and <b>Verify</b> your %2$s provider."
2690
  msgstr ""
2691
 
2692
  #: nextend-facebook-connect/providers/twitter/admin/settings.php:27
3041
 
3042
  #: nextend-social-login-pro/providers/apple/admin/getting-started.php:35
3043
  msgid ""
3044
+ "Make sure you have an <strong>active subscription for the <a href=\"https://"
3045
+ "developer.apple.com/programs/\" target=\"_blank\">Apple Developer Program</"
3046
+ "a></strong>, as that is necessary for both creating and maintaining an Apple "
3047
+ "App!"
3048
  msgstr ""
 
 
3049
 
3050
  #: nextend-social-login-pro/providers/apple/admin/getting-started.php:36
3051
  msgid ""
4108
  msgid "Required permission: %1$s"
4109
  msgstr "Permesso richiesto: %1$s"
4110
 
4111
+ #: nextend-social-login-pro/template-parts/buddypress/login/above-separator.php:18
4112
+ #: nextend-social-login-pro/template-parts/buddypress/login/below-separator.php:18
4113
+ #: nextend-social-login-pro/template-parts/embedded-login/above-separator.php:18
4114
+ #: nextend-social-login-pro/template-parts/embedded-login/below-separator.php:18
4115
+ #: nextend-social-login-pro/template-parts/login/above-separator.php:25
4116
+ #: nextend-social-login-pro/template-parts/login/below-separator.php:30
4117
+ #: nextend-social-login-pro/template-parts/memberpress/login/above-separator.php:18
4118
+ #: nextend-social-login-pro/template-parts/memberpress/login/below-separator.php:18
4119
+ #: nextend-social-login-pro/template-parts/memberpress/sign-up/above-separator.php:18
4120
+ #: nextend-social-login-pro/template-parts/memberpress/sign-up/below-separator.php:18
4121
+ #: nextend-social-login-pro/template-parts/ultimate-member/login/above-separator.php:18
4122
+ #: nextend-social-login-pro/template-parts/ultimate-member/login/below-separator.php:18
4123
+ #: nextend-social-login-pro/template-parts/ultimate-member/register/above-separator.php:18
4124
+ #: nextend-social-login-pro/template-parts/ultimate-member/register/below-separator.php:18
4125
+ #: nextend-social-login-pro/template-parts/userpro/login/above-separator.php:18
4126
+ #: nextend-social-login-pro/template-parts/userpro/login/below-separator.php:18
4127
+ #: nextend-social-login-pro/template-parts/userpro/register/above-separator.php:18
4128
+ #: nextend-social-login-pro/template-parts/userpro/register/below-separator.php:18
4129
+ #: nextend-social-login-pro/template-parts/woocommerce/billing/above-separator.php:25
4130
+ #: nextend-social-login-pro/template-parts/woocommerce/billing/below-separator.php:25
4131
+ #: nextend-social-login-pro/template-parts/woocommerce/billing/default-separator-after.php:13
4132
+ #: nextend-social-login-pro/template-parts/woocommerce/billing/default-separator-before.php:13
4133
+ #: nextend-social-login-pro/template-parts/woocommerce/checkout-for-woocommerce/above-separator.php:25
4134
+ #: nextend-social-login-pro/template-parts/woocommerce/checkout-for-woocommerce/below-separator.php:25
4135
+ #: nextend-social-login-pro/template-parts/woocommerce/login/above-separator.php:18
4136
+ #: nextend-social-login-pro/template-parts/woocommerce/login/below-separator.php:18
4137
+ #: nextend-social-login-pro/template-parts/woocommerce/register/above-separator.php:18
4138
+ #: nextend-social-login-pro/template-parts/woocommerce/register/below-separator.php:18
4139
  msgid "OR"
4140
  msgstr "OR"
4141
 
4146
  msgid "Social accounts"
4147
  msgstr "Account social"
4148
 
4149
+ #, fuzzy
4150
+ #~| msgid "Click on \"<b>Save</b>\""
4151
+ #~ msgid "Click on <b>+ New Project</b>!"
4152
+ #~ msgstr "Clicca su \"<b>Salva</b>\""
4153
+
4154
+ #, fuzzy, php-format
4155
+ #~| msgid "Click on the \"<b>Save Changes</b>\" button."
4156
+ #~ msgid "Click on the <b>App Settings</b> button at %s."
4157
+ #~ msgstr "Clicca sul bottone \"<b>Salva Modifiche</b>\"."
4158
+
4159
+ #, fuzzy, php-format
4160
+ #~| msgid ""
4161
+ #~| "Add the following URL to the \"<b>Callback URLs</b>\" field: <b>%s</b>"
4162
+ #~ msgid "Add the following URL to the <b>Callback URLs</b> field: <b>%s</b>"
4163
+ #~ msgstr ""
4164
+ #~ "Aggiungi l'URL seguente al campo \"<b>Callback URLs</b>\": <b>%s</b>"
4165
+
4166
+ #, fuzzy
4167
+ #~| msgid "Click on \"<b>Save</b>\""
4168
+ #~ msgid "Click on <b>Save</b>."
4169
+ #~ msgstr "Clicca su \"<b>Salva</b>\""
4170
+
4171
+ #, fuzzy
4172
+ #~| msgid "Register"
4173
+ #~ msgctxt "NSL Register Form submit button text"
4174
+ #~ msgid "Register"
4175
+ #~ msgstr "Registra"
4176
+
4177
+ #~ msgid "Once you have a project, you'll end up in the dashboard."
4178
+ #~ msgstr "Una volta ottenuto il progetto, ti troverai sulla dashboard."
4179
+
4180
+ #~ msgid "Save your settings!"
4181
+ #~ msgstr "Salva le impostazioni!"
4182
+
4183
+ #~ msgid ""
4184
+ #~ "Make sure you have an <strong>active subscription for the Apple Developer "
4185
+ #~ "Program</strong>!"
4186
+ #~ msgstr ""
4187
+ #~ "Accertati che tu abbia una <strong>sottoscrizione attiva all'Apple "
4188
+ #~ "Developer Program</strong>!"
4189
+
4190
  #~ msgid ""
4191
  #~ "The <b>Edit</b> button can be found on the App details tab. Click on it "
4192
  #~ "and select \"<b>Edit details</b>\""
languages/nextend-facebook-connect-nl_NL.mo CHANGED
Binary file
languages/nextend-facebook-connect-nl_NL.po CHANGED
@@ -1,15 +1,15 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: nextend-facebook-connect\n"
4
- "POT-Creation-Date: 2021-01-27 13:58+0100\n"
5
- "PO-Revision-Date: 2021-01-27 13:58+0100\n"
6
  "Last-Translator: Erik Molenaar <info@erikmolenaar.nl>\n"
7
  "Language-Team: nextend-facebook-connect\n"
8
  "Language: nl_NL\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 2.4.1\n"
13
  "X-Poedit-Basepath: ../..\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
@@ -135,29 +135,29 @@ msgstr ""
135
  msgid "User"
136
  msgstr "Gebruiker"
137
 
138
- #: nextend-facebook-connect/admin/admin.php:206
139
  #, php-format
140
  msgid "%s needs json_decode function."
141
  msgstr "%s heeft de functie json_decode nodig."
142
 
143
- #: nextend-facebook-connect/admin/admin.php:206
144
  msgid "Please contact your server administrator and ask for solution!"
145
  msgstr "Neem contact op met je serverbeheerder en vraag om een oplossing!"
146
 
147
- #: nextend-facebook-connect/admin/admin.php:238
148
- #: nextend-facebook-connect/admin/admin.php:268
149
  msgid "Settings saved."
150
  msgstr "Instellingen opgeslagen."
151
 
152
- #: nextend-facebook-connect/admin/admin.php:247
153
  msgid "The activation was successful"
154
  msgstr "De activering was succesvol"
155
 
156
- #: nextend-facebook-connect/admin/admin.php:258
157
  msgid "Deactivate completed."
158
  msgstr "Deactiveren voltooid."
159
 
160
- #: nextend-facebook-connect/admin/admin.php:437
161
  #: nextend-facebook-connect/admin/templates-provider/menu.php:15
162
  #: nextend-facebook-connect/admin/templates/providers.php:89
163
  #: nextend-facebook-connect/admin/templates/providers.php:101
@@ -165,7 +165,7 @@ msgstr "Deactiveren voltooid."
165
  msgid "Settings"
166
  msgstr "Instellingen"
167
 
168
- #: nextend-facebook-connect/admin/admin.php:520
169
  #: nextend-facebook-connect/includes/oauth2.php:143
170
  #: nextend-facebook-connect/includes/oauth2.php:288
171
  #: nextend-facebook-connect/providers/facebook/facebook-client.php:84
@@ -176,7 +176,7 @@ msgstr "Instellingen"
176
  msgid "Unexpected response: %s"
177
  msgstr "Onverwachte reactie: %s"
178
 
179
- #: nextend-facebook-connect/admin/admin.php:581
180
  #: nextend-facebook-connect/admin/templates/fix-redirect-uri.php:21
181
  #, php-format
182
  msgid ""
@@ -186,16 +186,16 @@ msgstr ""
186
  "%s detecteert dat je inlog-URL is gewijzigd. Je moet de Oauth-omleidings-"
187
  "URI's bijwerken in de bijbehorende social applicatie."
188
 
189
- #: nextend-facebook-connect/admin/admin.php:582
190
  #: nextend-social-login-pro/providers/apple/apple.php:310
191
  msgid "Fix Error"
192
  msgstr "Fout Oplossen"
193
 
194
- #: nextend-facebook-connect/admin/admin.php:582
195
  msgid "Oauth Redirect URI"
196
  msgstr "Oauth Omleidings-URI"
197
 
198
- #: nextend-facebook-connect/admin/admin.php:599
199
  #, php-format
200
  msgid ""
201
  "%1$s detected that %2$s installed on your site. You need the Pro Addon to "
@@ -205,15 +205,15 @@ msgstr ""
205
  "Add-on nodig om Social Login-knoppen weer te geven in het %2$s "
206
  "aanmeldingsformulier!"
207
 
208
- #: nextend-facebook-connect/admin/admin.php:600
209
  msgid "Dismiss and check Pro Addon"
210
  msgstr "Sluiten en vink Pro-uitbreiding aan"
211
 
212
- #: nextend-facebook-connect/admin/admin.php:600
213
  msgid "Dismiss"
214
  msgstr "Sluiten"
215
 
216
- #: nextend-facebook-connect/admin/admin.php:606
217
  #, php-format
218
  msgid ""
219
  "%1$s detected that %2$s installed on your site. You must set \"<b>Page for "
@@ -224,15 +224,15 @@ msgstr ""
224
  "\"<b>Pagina voor registreerproces</b>\" en \"<b>OAuth-omleidingspagina voor "
225
  "uri-proxy</b>\" instellen om %1$s correct te laten werken."
226
 
227
- #: nextend-facebook-connect/admin/admin.php:607
228
  msgid "Fix now"
229
  msgstr "Nu maken"
230
 
231
- #: nextend-facebook-connect/admin/admin.php:631
232
  msgid "Activate your Pro Addon"
233
  msgstr "Activeer je Pro Add-on"
234
 
235
- #: nextend-facebook-connect/admin/admin.php:632
236
  #, fuzzy
237
  #| msgid ""
238
  #| "To be able to use the Pro features, you need to activate Nextend Social "
@@ -247,20 +247,20 @@ msgstr ""
247
  "uitbreiding activeren. Je kunt dit doen door hieronder op de knop Activeren "
248
  "te klikken en vervolgens de bijbehorende aankoop te selecteren."
249
 
250
- #: nextend-facebook-connect/admin/admin.php:637
251
  #: nextend-social-login-pro/nextend-social-login-pro.php:110
252
  msgid "Activate"
253
  msgstr "Activeren"
254
 
255
- #: nextend-facebook-connect/admin/admin.php:735
256
  msgid "License key"
257
  msgstr "Licentiesleutel"
258
 
259
- #: nextend-facebook-connect/admin/admin.php:758
260
  msgid "OAuth proxy page"
261
  msgstr "OAuth-proxy-pagina"
262
 
263
- #: nextend-facebook-connect/admin/admin.php:761
264
  msgid "Register flow page"
265
  msgstr "Registreerproces-pagina"
266
 
@@ -269,55 +269,55 @@ msgstr "Registreerproces-pagina"
269
  msgid "You have logged in successfully."
270
  msgstr "Je bent succesvol ingelogd."
271
 
272
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:80
273
  msgid "Login label"
274
  msgstr "Login label"
275
 
276
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:85
277
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:101
278
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:114
279
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:125
280
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:154
281
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:184
282
  #: nextend-facebook-connect/admin/templates/settings/privacy.php:53
283
  msgid "Reset to default"
284
  msgstr "Reset naar standaard"
285
 
286
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:95
287
  #, fuzzy
288
  #| msgid "Register layout"
289
  msgid "Register label"
290
  msgstr "Registratie layout"
291
 
292
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:108
293
  msgid "Link label"
294
  msgstr "Koppel label"
295
 
296
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:120
297
  msgid "Unlink label"
298
  msgstr "Ontkoppel label"
299
 
300
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:131
301
  msgid "Default button"
302
  msgstr "Standaard knop"
303
 
304
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:147
305
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:177
306
  msgid "Use custom button"
307
  msgstr "Gebruik de aangepaste knop"
308
 
309
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:154
310
  #, php-format
311
  msgid "Use the %s in your custom button's code to make the label show up."
312
  msgstr ""
313
  "Gebruik de %s in de code van je aangepaste knop om het label te laten "
314
  "verschijnen."
315
 
316
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:162
317
  msgid "Icon button"
318
  msgstr "Pictogram knop"
319
 
320
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:193
321
  #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:140
322
  #: nextend-facebook-connect/admin/templates-provider/sync-data.php:104
323
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:170
@@ -497,7 +497,6 @@ msgid "Default"
497
  msgstr "Standaard"
498
 
499
  #: nextend-facebook-connect/admin/templates-provider/sync-data.php:50
500
- #: nextend-facebook-connect/includes/userData.php:188
501
  msgid "Register"
502
  msgstr "Registreren"
503
 
@@ -1487,7 +1486,7 @@ msgid "Avatar"
1487
  msgstr "Profielfoto"
1488
 
1489
  #: nextend-facebook-connect/admin/templates/settings/privacy.php:102
1490
- #: nextend-facebook-connect/includes/provider.php:1100
1491
  msgid "Access token"
1492
  msgstr "Toegangstoken"
1493
 
@@ -1613,6 +1612,14 @@ msgid_plural "Avatar <span class=\"count\">(%s)</span>"
1613
  msgstr[0] "Profielfoto <span class=\"count\">(%s)</span>"
1614
  msgstr[1] "Profielfoto <span class=\"count\">(%s)</span>"
1615
 
 
 
 
 
 
 
 
 
1616
  #: nextend-facebook-connect/includes/compat-wp-login.php:63
1617
  #, php-format
1618
  msgid "%1$s &lsaquo; %2$s &#8212; WordPress"
@@ -1695,39 +1702,39 @@ msgid "Please save your changes before verifying settings."
1695
  msgstr "Sla je wijzigingen op voordat je de instellingen controleert."
1696
 
1697
  #: nextend-facebook-connect/includes/provider.php:358
1698
- #: nextend-facebook-connect/includes/provider.php:717
1699
- #: nextend-facebook-connect/includes/provider.php:725
1700
  msgid "Authentication successful"
1701
  msgstr "Authenticatie geslaagd"
1702
 
1703
- #: nextend-facebook-connect/includes/provider.php:654
1704
  #: nextend-facebook-connect/includes/user.php:168
1705
  #: nextend-facebook-connect/includes/user.php:597
1706
  msgid "Authentication error"
1707
  msgstr "Authenticatiefout"
1708
 
1709
- #: nextend-facebook-connect/includes/provider.php:669
1710
  msgid "Unlink successful."
1711
  msgstr "Ontkoppeling succesvol."
1712
 
1713
- #: nextend-facebook-connect/includes/provider.php:671
1714
  msgid "Unlink is not allowed!"
1715
  msgstr "Ontkoppelen is niet toegestaan!"
1716
 
1717
- #: nextend-facebook-connect/includes/provider.php:886
1718
- #: nextend-facebook-connect/includes/provider.php:893
1719
  msgid "The test was successful"
1720
  msgstr "De test was succesvol"
1721
 
1722
- #: nextend-facebook-connect/includes/provider.php:939
1723
  msgid "Authentication failed"
1724
  msgstr "Authenticatie mislukt"
1725
 
1726
- #: nextend-facebook-connect/includes/provider.php:1092
1727
  msgid "Identifier"
1728
  msgstr "Identificatie"
1729
 
1730
- #: nextend-facebook-connect/includes/provider.php:1108
1731
  msgid "Profile picture"
1732
  msgstr "Profielfoto"
1733
 
@@ -1766,6 +1773,13 @@ msgstr "Gebruikersregistratie is momenteel niet toegestaan."
1766
  msgid "Register For This Site!"
1767
  msgstr "Registreer Voor Deze Site!"
1768
 
 
 
 
 
 
 
 
1769
  #: nextend-facebook-connect/nextend-facebook-connect.php:37
1770
  #, php-format
1771
  msgid "%1$s requires PHP version %2$s+, plugin is currently NOT ACTIVE."
@@ -1791,12 +1805,12 @@ msgstr "Gelieve %1$s bij te werken naar versie %2$s of nieuwer."
1791
  msgid "Update now!"
1792
  msgstr "Update nu!"
1793
 
1794
- #: nextend-facebook-connect/nextend-social-login.php:762
1795
- #: nextend-facebook-connect/nextend-social-login.php:1140
1796
  msgid "Social Login"
1797
  msgstr "Social Login"
1798
 
1799
- #: nextend-facebook-connect/nextend-social-login.php:1121
1800
  msgid "Social Accounts"
1801
  msgstr "Social Accounts"
1802
 
@@ -1839,7 +1853,6 @@ msgstr "Navigeer naar %s"
1839
  #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:9
1840
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:25
1841
  #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:9
1842
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:17
1843
  #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:9
1844
  #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:9
1845
  #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:20
@@ -1966,7 +1979,7 @@ msgstr "Navigeer naar %s"
1966
  #| msgid "Click on the \"Create an App\" button on the top right corner."
1967
  msgid ""
1968
  "Click on the \"<b>Create App</b>\" button and in the Popup choose the "
1969
- "\"<b>Build Connected Experiences</b>\" option!"
1970
  msgstr "Klik op de knop \"Maak een App\" in de rechterbovenhoek."
1971
 
1972
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:27
@@ -1997,8 +2010,7 @@ msgstr ""
1997
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:30
1998
  #, fuzzy
1999
  #| msgid "Click on the \"Create an App\" button on the top right corner."
2000
- msgid ""
2001
- "Click the \"<b>Create App ID</b>\" button and complete the Security Check."
2002
  msgstr "Klik op de knop \"Maak een App\" in de rechterbovenhoek."
2003
 
2004
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:31
@@ -2141,8 +2153,37 @@ msgid ""
2141
  msgstr ""
2142
 
2143
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:60
2144
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:40
2145
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:37
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2146
  #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:39
2147
  #: nextend-social-login-pro/providers/apple/admin/getting-started.php:122
2148
  #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:30
@@ -2287,7 +2328,6 @@ msgid ""
2287
  msgstr ""
2288
 
2289
  #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:12
2290
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:34
2291
  #, fuzzy, php-format
2292
  #| msgid ""
2293
  #| "Add the following URL to the \"Authorised redirect URIs\" field: <b>%s</b>"
@@ -2299,15 +2339,32 @@ msgstr ""
2299
  "%s</b>"
2300
 
2301
  #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:13
2302
- #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:13
2303
  #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:14
2304
  #, fuzzy
2305
  #| msgid "Click on \"Save\""
2306
  msgid "Click on \"<b>Save</b>\""
2307
  msgstr "Klik op \"Opslaan\""
2308
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2309
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:18
2310
- #, fuzzy
2311
  #| msgid ""
2312
  #| "If you don't have a project yet, you'll need to create one. You can do "
2313
  #| "this by clicking on the blue \"Create project\" button on the right "
@@ -2316,10 +2373,9 @@ msgstr "Klik op \"Opslaan\""
2316
  #| "Project. )"
2317
  msgid ""
2318
  "If you don't have a project yet, you'll need to create one. You can do this "
2319
- "by clicking on the blue \"<b>Create</b>\" button on the right side! ( If "
2320
- "you already have a project, click on the name of your project in the "
2321
- "dashboard instead, which will bring up a modal and click <b>\"New Project\"</"
2322
- "b>. )"
2323
  msgstr ""
2324
  "Als je nog geen project hebt, moet je er een maken. Je kunt dit doen door op "
2325
  "de blauwe knop \"Maak project\" aan de rechterkant te klikken! (Als je al "
@@ -2327,24 +2383,30 @@ msgstr ""
2327
  "het dashboard, die een modal zal weergeven en klik op Nieuw Project. )"
2328
 
2329
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:19
2330
- #, fuzzy
2331
  #| msgid "Name your project and then click on the Create button again"
2332
- msgid "Name your project and then click on the \"<b>Create</b>\" button again"
2333
  msgstr "Geef je project een naam en klik dan opnieuw op de knop Aanmaken"
2334
 
2335
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:20
2336
- msgid "Once you have a project, you'll end up in the dashboard."
2337
- msgstr "Als je eenmaal een project hebt, kom je in het dashboard terecht."
 
 
 
2338
 
2339
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:21
2340
- msgid "Click the “<b>OAuth consent screen</b>” button on the left hand side."
2341
- msgstr ""
 
 
2342
 
2343
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:22
 
2344
  msgid ""
2345
- "Choose a <b>User Type</b> according to your needs. If you want to enable the "
2346
- "social login with Google for any users with a Google account, then pick the "
2347
- "External option!"
2348
  msgstr ""
2349
 
2350
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:24
@@ -2356,69 +2418,93 @@ msgid ""
2356
  msgstr ""
2357
 
2358
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:27
2359
- #, fuzzy
2360
  #| msgid ""
2361
  #| "Enter a name for your App under the \"Application name\" field, which "
2362
  #| "will appear as the name of the app asking for consent."
2363
  msgid ""
2364
- "Enter a name for your App to the \"<b>Application name</b>\" field, which "
2365
- "will appear as the name of the app asking for consent."
2366
  msgstr ""
2367
  "Voer een naam in voor je App in het veld \"Toepassingsnaam\", die zal "
2368
  "verschijnen als de naam van de app die om toestemming vraagt."
2369
 
2370
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:28
 
 
 
 
 
 
 
2371
  #, fuzzy, php-format
2372
  #| msgid ""
2373
  #| "Fill the \"Authorized domains\" field with your domain name probably: <b>"
2374
  #| "%s</b> without subdomains!"
2375
  msgid ""
2376
- "Fill the \"<b>Authorized domains</b>\" field with your domain name probably: "
2377
- "<b>%s</b> without subdomains!"
2378
  msgstr ""
2379
  "Vul het veld \"Geautoriseerde domeinen\" in met je domeinnaam "
2380
  "waarschijnlijk: <b>%s</b> zonder subdomeinen!"
2381
 
2382
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:29
2383
- #, fuzzy
2384
- #| msgid "Other settings"
2385
- msgid "Save your settings!"
2386
- msgstr "Overige instellingen"
2387
-
2388
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:30
2389
  #, php-format
2390
  msgid ""
2391
- "On the left side, click on the \"<b>%1$s</b>\" menu point, then click the "
2392
- "\"<b>%2$s</b>\" button in the top bar."
2393
  msgstr ""
2394
 
2395
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:31
2396
- msgid "Choose the \"<b>OAuth client ID</b>\" option."
 
 
 
2397
  msgstr ""
2398
 
2399
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:32
2400
- #, fuzzy
 
 
 
 
 
 
 
 
 
 
 
 
 
2401
  #| msgid ""
2402
  #| "Click on the link \"registering an application\" under the Applications "
2403
  #| "tab."
2404
- msgid "Select the \"<b>Web application</b>\" under Application type."
2405
  msgstr ""
2406
  "Klik op de link \"aanvraag registreren\" onder het tabblad \"Applicaties\"."
2407
 
2408
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:33
2409
- #, fuzzy
2410
  #| msgid "Enter a \"Description\" for your app!"
2411
- msgid "Enter a \"<b>Name</b>\" for your OAuth client ID."
2412
  msgstr "Vul een \"Beschrijving\" in voor je app!"
2413
 
2414
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:35
2415
- #, fuzzy
 
 
 
 
 
 
 
2416
  #| msgid "Click on the Create button"
2417
- msgid "Click on the \"<b>Create</b>\" button"
2418
  msgstr "Klik op de knop Aanmaken"
2419
 
2420
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:36
2421
- #, fuzzy
2422
  #| msgid ""
2423
  #| "A modal should pop up with your credentials. If that doesn't happen, go "
2424
  #| "to the Credentials in the left hand menu and select your app by clicking "
@@ -2426,9 +2512,9 @@ msgstr "Klik op de knop Aanmaken"
2426
  #| "Secret from there."
2427
  msgid ""
2428
  "A modal should pop up with your credentials. If that doesn't happen, go to "
2429
- "the Credentials in the left hand menu and select your app by clicking on its "
2430
- "name and you'll be able to copy-paste the \"<b>Client ID</b>\" and "
2431
- "\"<b>Client Secret</b>\" from there."
2432
  msgstr ""
2433
  "Een modal moet opduiken met je inloggegevens. Als dat niet gebeurt, ga dan "
2434
  "naar de Inloggegevens in het linkermenu en selecteer je app door op de naam "
@@ -2497,7 +2583,6 @@ msgid ""
2497
  msgstr "Vind jew app en klik op de knop Details"
2498
 
2499
  #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:11
2500
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:27
2501
  #, fuzzy
2502
  #| msgid "Click on the \"Create an App\" button on the top right corner."
2503
  msgid "Click on the <b>Edit</b> button at <b>Authentication settings</b>."
@@ -2509,21 +2594,12 @@ msgstr "Klik op de knop \"Maak een App\" in de rechterbovenhoek."
2509
  msgid "Add the following URL to the \"<b>Callback URLs</b>\" field: <b>%s</b>"
2510
  msgstr "Voeg de volgende URL toe aan het veld \"Callback URL's\": <b>%s</b>"
2511
 
2512
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:17
2513
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:25
2514
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:38
2515
- #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:9
2516
- #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:16
2517
- #: nextend-social-login-pro/providers/github/admin/getting-started.php:16
2518
- #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:9
2519
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:17
2520
- #: nextend-social-login-pro/providers/vk/admin/getting-started.php:16
2521
- #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:9
2522
- #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:16
2523
- #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:17
2524
- #, php-format
2525
- msgid "Log in with your %s credentials if you are not logged in."
2526
- msgstr "Log in met je %s inloggegevens als je niet ingelogd bent."
2527
 
2528
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:18
2529
  msgid ""
@@ -2546,75 +2622,79 @@ msgstr ""
2546
  "nog niet bent!"
2547
 
2548
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:20
2549
- #, fuzzy
2550
  #| msgid "Click on \"Save\""
2551
- msgid "Click on <b>+ New Project</b>!"
2552
  msgstr "Klik op \"Opslaan\""
2553
 
2554
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:21
2555
  msgid ""
2556
  "Name your project, and go through the basic setup. You’ll need to select "
2557
- "your use case and give a description."
2558
  msgstr ""
2559
 
2560
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:22
2561
- msgid "Create a new app, or select an existing one, then click <b>Complete</b>"
2562
- msgstr ""
 
 
2563
 
2564
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:23
 
2565
  msgid ""
2566
- "You’ll find your API key and secret on this page. Copy and paste the <b>API "
2567
- "key</b> and the <b>API secret key</b> to the corresponding fields at Nextend "
2568
- "Social Login and press <b>Save Changes</b>."
2569
  msgstr ""
2570
 
2571
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:24
2572
- #, fuzzy, php-format
2573
- #| msgid "Click on the \"Save Changes\" button."
2574
- msgid "Click on the <b>App Settings</b> button at %s."
2575
- msgstr "Klik op de knop \"Wijzigingen Opslaan\"."
 
2576
 
2577
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:25
2578
- msgid "Find the Apps section, and the app you created a few steps ago."
2579
- msgstr ""
 
 
2580
 
2581
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:26
2582
- msgid "Click on the App settings icon. (The one that looks like a gear.)"
2583
- msgstr ""
2584
-
2585
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:28
2586
- msgid "Switch on the <b>Enable 3-legged OAuth</b> option."
2587
- msgstr ""
2588
 
2589
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:29
2590
  #, fuzzy, php-format
2591
- #| msgid "Add the following URL to the \"Callback URLs\" field: <b>%s</b>"
2592
- msgid "Add the following URL to the <b>Callback URLs</b> field: <b>%s</b>"
2593
- msgstr "Voeg de volgende URL toe aan het veld \"Callback URL's\": <b>%s</b>"
2594
 
2595
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:30
2596
  #, fuzzy, php-format
2597
  #| msgid "Enter the URL of your site to the \"Home Page URL\" field: <b>%s</b>"
2598
- msgid "Enter your site's URL to the <b>Website URL</b> field: <b>%s</b>"
2599
  msgstr "Voer de URL van je site in het veld \"Home Page URL\" in: <b>%s</b>"
2600
 
2601
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:31
 
2602
  msgid ""
2603
  "If you want to get the email address as well, then don’t forget to enable "
2604
- "the <b>Request email address from users</b> option. In this case you also "
2605
- "need to fill the <b>Terms of service</b> and the <b>Privacy policy</b> "
2606
- "fields with the corresponding URLs!"
2607
  msgstr ""
2608
 
2609
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:32
2610
- #, fuzzy
2611
  #| msgid "Click on \"Save\""
2612
- msgid "Click on <b>Save</b>."
2613
  msgstr "Klik op \"Opslaan\""
2614
 
2615
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:33
2616
  #, php-format
2617
- msgid "Go back to Nextend Social Login and <b>Verify</b> your %s provider."
2618
  msgstr ""
2619
 
2620
  #: nextend-facebook-connect/providers/twitter/admin/settings.php:27
@@ -3014,8 +3094,10 @@ msgstr ""
3014
 
3015
  #: nextend-social-login-pro/providers/apple/admin/getting-started.php:35
3016
  msgid ""
3017
- "Make sure you have an <strong>active subscription for the Apple Developer "
3018
- "Program</strong>!"
 
 
3019
  msgstr ""
3020
 
3021
  #: nextend-social-login-pro/providers/apple/admin/getting-started.php:36
@@ -4183,34 +4265,34 @@ msgstr "Ontkoppel van <b>Yahoo</b>"
4183
  msgid "Required permission: %1$s"
4184
  msgstr "Vereiste toestemming: %1$s"
4185
 
4186
- #: nextend-social-login-pro/template-parts/buddypress/login/above-separator.php:10
4187
- #: nextend-social-login-pro/template-parts/buddypress/login/below-separator.php:10
4188
- #: nextend-social-login-pro/template-parts/embedded-login/above-separator.php:10
4189
- #: nextend-social-login-pro/template-parts/embedded-login/below-separator.php:10
4190
- #: nextend-social-login-pro/template-parts/login/above-separator.php:20
4191
- #: nextend-social-login-pro/template-parts/login/below-separator.php:8
4192
- #: nextend-social-login-pro/template-parts/memberpress/login/above-separator.php:10
4193
- #: nextend-social-login-pro/template-parts/memberpress/login/below-separator.php:10
4194
- #: nextend-social-login-pro/template-parts/memberpress/sign-up/above-separator.php:10
4195
- #: nextend-social-login-pro/template-parts/memberpress/sign-up/below-separator.php:10
4196
- #: nextend-social-login-pro/template-parts/ultimate-member/login/above-separator.php:10
4197
- #: nextend-social-login-pro/template-parts/ultimate-member/login/below-separator.php:10
4198
- #: nextend-social-login-pro/template-parts/ultimate-member/register/above-separator.php:10
4199
- #: nextend-social-login-pro/template-parts/ultimate-member/register/below-separator.php:10
4200
- #: nextend-social-login-pro/template-parts/userpro/login/above-separator.php:10
4201
- #: nextend-social-login-pro/template-parts/userpro/login/below-separator.php:10
4202
- #: nextend-social-login-pro/template-parts/userpro/register/above-separator.php:10
4203
- #: nextend-social-login-pro/template-parts/userpro/register/below-separator.php:10
4204
- #: nextend-social-login-pro/template-parts/woocommerce/billing/above-separator.php:11
4205
- #: nextend-social-login-pro/template-parts/woocommerce/billing/below-separator.php:11
4206
- #: nextend-social-login-pro/template-parts/woocommerce/billing/default-separator-after.php:7
4207
- #: nextend-social-login-pro/template-parts/woocommerce/billing/default-separator-before.php:7
4208
- #: nextend-social-login-pro/template-parts/woocommerce/checkout-for-woocommerce/above-separator.php:15
4209
- #: nextend-social-login-pro/template-parts/woocommerce/checkout-for-woocommerce/below-separator.php:15
4210
- #: nextend-social-login-pro/template-parts/woocommerce/login/above-separator.php:10
4211
- #: nextend-social-login-pro/template-parts/woocommerce/login/below-separator.php:10
4212
- #: nextend-social-login-pro/template-parts/woocommerce/register/above-separator.php:10
4213
- #: nextend-social-login-pro/template-parts/woocommerce/register/below-separator.php:10
4214
  msgid "OR"
4215
  msgstr "OF"
4216
 
@@ -4221,6 +4303,40 @@ msgstr "OF"
4221
  msgid "Social accounts"
4222
  msgstr "Social accounts"
4223
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4224
  #, fuzzy
4225
  #~| msgid ""
4226
  #~| "The Edit button can be found on the App details tab. Click on it and "
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: nextend-facebook-connect\n"
4
+ "POT-Creation-Date: 2021-06-16 14:00+0200\n"
5
+ "PO-Revision-Date: 2021-06-16 14:00+0200\n"
6
  "Last-Translator: Erik Molenaar <info@erikmolenaar.nl>\n"
7
  "Language-Team: nextend-facebook-connect\n"
8
  "Language: nl_NL\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 3.0\n"
13
  "X-Poedit-Basepath: ../..\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
135
  msgid "User"
136
  msgstr "Gebruiker"
137
 
138
+ #: nextend-facebook-connect/admin/admin.php:204
139
  #, php-format
140
  msgid "%s needs json_decode function."
141
  msgstr "%s heeft de functie json_decode nodig."
142
 
143
+ #: nextend-facebook-connect/admin/admin.php:204
144
  msgid "Please contact your server administrator and ask for solution!"
145
  msgstr "Neem contact op met je serverbeheerder en vraag om een oplossing!"
146
 
147
+ #: nextend-facebook-connect/admin/admin.php:236
148
+ #: nextend-facebook-connect/admin/admin.php:266
149
  msgid "Settings saved."
150
  msgstr "Instellingen opgeslagen."
151
 
152
+ #: nextend-facebook-connect/admin/admin.php:245
153
  msgid "The activation was successful"
154
  msgstr "De activering was succesvol"
155
 
156
+ #: nextend-facebook-connect/admin/admin.php:256
157
  msgid "Deactivate completed."
158
  msgstr "Deactiveren voltooid."
159
 
160
+ #: nextend-facebook-connect/admin/admin.php:435
161
  #: nextend-facebook-connect/admin/templates-provider/menu.php:15
162
  #: nextend-facebook-connect/admin/templates/providers.php:89
163
  #: nextend-facebook-connect/admin/templates/providers.php:101
165
  msgid "Settings"
166
  msgstr "Instellingen"
167
 
168
+ #: nextend-facebook-connect/admin/admin.php:518
169
  #: nextend-facebook-connect/includes/oauth2.php:143
170
  #: nextend-facebook-connect/includes/oauth2.php:288
171
  #: nextend-facebook-connect/providers/facebook/facebook-client.php:84
176
  msgid "Unexpected response: %s"
177
  msgstr "Onverwachte reactie: %s"
178
 
179
+ #: nextend-facebook-connect/admin/admin.php:579
180
  #: nextend-facebook-connect/admin/templates/fix-redirect-uri.php:21
181
  #, php-format
182
  msgid ""
186
  "%s detecteert dat je inlog-URL is gewijzigd. Je moet de Oauth-omleidings-"
187
  "URI's bijwerken in de bijbehorende social applicatie."
188
 
189
+ #: nextend-facebook-connect/admin/admin.php:580
190
  #: nextend-social-login-pro/providers/apple/apple.php:310
191
  msgid "Fix Error"
192
  msgstr "Fout Oplossen"
193
 
194
+ #: nextend-facebook-connect/admin/admin.php:580
195
  msgid "Oauth Redirect URI"
196
  msgstr "Oauth Omleidings-URI"
197
 
198
+ #: nextend-facebook-connect/admin/admin.php:597
199
  #, php-format
200
  msgid ""
201
  "%1$s detected that %2$s installed on your site. You need the Pro Addon to "
205
  "Add-on nodig om Social Login-knoppen weer te geven in het %2$s "
206
  "aanmeldingsformulier!"
207
 
208
+ #: nextend-facebook-connect/admin/admin.php:598
209
  msgid "Dismiss and check Pro Addon"
210
  msgstr "Sluiten en vink Pro-uitbreiding aan"
211
 
212
+ #: nextend-facebook-connect/admin/admin.php:598
213
  msgid "Dismiss"
214
  msgstr "Sluiten"
215
 
216
+ #: nextend-facebook-connect/admin/admin.php:604
217
  #, php-format
218
  msgid ""
219
  "%1$s detected that %2$s installed on your site. You must set \"<b>Page for "
224
  "\"<b>Pagina voor registreerproces</b>\" en \"<b>OAuth-omleidingspagina voor "
225
  "uri-proxy</b>\" instellen om %1$s correct te laten werken."
226
 
227
+ #: nextend-facebook-connect/admin/admin.php:605
228
  msgid "Fix now"
229
  msgstr "Nu maken"
230
 
231
+ #: nextend-facebook-connect/admin/admin.php:629
232
  msgid "Activate your Pro Addon"
233
  msgstr "Activeer je Pro Add-on"
234
 
235
+ #: nextend-facebook-connect/admin/admin.php:630
236
  #, fuzzy
237
  #| msgid ""
238
  #| "To be able to use the Pro features, you need to activate Nextend Social "
247
  "uitbreiding activeren. Je kunt dit doen door hieronder op de knop Activeren "
248
  "te klikken en vervolgens de bijbehorende aankoop te selecteren."
249
 
250
+ #: nextend-facebook-connect/admin/admin.php:635
251
  #: nextend-social-login-pro/nextend-social-login-pro.php:110
252
  msgid "Activate"
253
  msgstr "Activeren"
254
 
255
+ #: nextend-facebook-connect/admin/admin.php:733
256
  msgid "License key"
257
  msgstr "Licentiesleutel"
258
 
259
+ #: nextend-facebook-connect/admin/admin.php:756
260
  msgid "OAuth proxy page"
261
  msgstr "OAuth-proxy-pagina"
262
 
263
+ #: nextend-facebook-connect/admin/admin.php:759
264
  msgid "Register flow page"
265
  msgstr "Registreerproces-pagina"
266
 
269
  msgid "You have logged in successfully."
270
  msgstr "Je bent succesvol ingelogd."
271
 
272
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:86
273
  msgid "Login label"
274
  msgstr "Login label"
275
 
276
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:91
277
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:107
278
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:120
279
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:131
280
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:160
281
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:190
282
  #: nextend-facebook-connect/admin/templates/settings/privacy.php:53
283
  msgid "Reset to default"
284
  msgstr "Reset naar standaard"
285
 
286
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:101
287
  #, fuzzy
288
  #| msgid "Register layout"
289
  msgid "Register label"
290
  msgstr "Registratie layout"
291
 
292
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:114
293
  msgid "Link label"
294
  msgstr "Koppel label"
295
 
296
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:126
297
  msgid "Unlink label"
298
  msgstr "Ontkoppel label"
299
 
300
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:137
301
  msgid "Default button"
302
  msgstr "Standaard knop"
303
 
304
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:153
305
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:183
306
  msgid "Use custom button"
307
  msgstr "Gebruik de aangepaste knop"
308
 
309
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:160
310
  #, php-format
311
  msgid "Use the %s in your custom button's code to make the label show up."
312
  msgstr ""
313
  "Gebruik de %s in de code van je aangepaste knop om het label te laten "
314
  "verschijnen."
315
 
316
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:168
317
  msgid "Icon button"
318
  msgstr "Pictogram knop"
319
 
320
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:199
321
  #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:140
322
  #: nextend-facebook-connect/admin/templates-provider/sync-data.php:104
323
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:170
497
  msgstr "Standaard"
498
 
499
  #: nextend-facebook-connect/admin/templates-provider/sync-data.php:50
 
500
  msgid "Register"
501
  msgstr "Registreren"
502
 
1486
  msgstr "Profielfoto"
1487
 
1488
  #: nextend-facebook-connect/admin/templates/settings/privacy.php:102
1489
+ #: nextend-facebook-connect/includes/provider.php:1102
1490
  msgid "Access token"
1491
  msgstr "Toegangstoken"
1492
 
1612
  msgstr[0] "Profielfoto <span class=\"count\">(%s)</span>"
1613
  msgstr[1] "Profielfoto <span class=\"count\">(%s)</span>"
1614
 
1615
+ #: nextend-facebook-connect/includes/avatar.php:399
1616
+ msgid "Invalid URL Provided."
1617
+ msgstr ""
1618
+
1619
+ #: nextend-facebook-connect/includes/avatar.php:404
1620
+ msgid "Could not create Temporary file."
1621
+ msgstr ""
1622
+
1623
  #: nextend-facebook-connect/includes/compat-wp-login.php:63
1624
  #, php-format
1625
  msgid "%1$s &lsaquo; %2$s &#8212; WordPress"
1702
  msgstr "Sla je wijzigingen op voordat je de instellingen controleert."
1703
 
1704
  #: nextend-facebook-connect/includes/provider.php:358
1705
+ #: nextend-facebook-connect/includes/provider.php:719
1706
+ #: nextend-facebook-connect/includes/provider.php:727
1707
  msgid "Authentication successful"
1708
  msgstr "Authenticatie geslaagd"
1709
 
1710
+ #: nextend-facebook-connect/includes/provider.php:656
1711
  #: nextend-facebook-connect/includes/user.php:168
1712
  #: nextend-facebook-connect/includes/user.php:597
1713
  msgid "Authentication error"
1714
  msgstr "Authenticatiefout"
1715
 
1716
+ #: nextend-facebook-connect/includes/provider.php:671
1717
  msgid "Unlink successful."
1718
  msgstr "Ontkoppeling succesvol."
1719
 
1720
+ #: nextend-facebook-connect/includes/provider.php:673
1721
  msgid "Unlink is not allowed!"
1722
  msgstr "Ontkoppelen is niet toegestaan!"
1723
 
1724
+ #: nextend-facebook-connect/includes/provider.php:888
1725
+ #: nextend-facebook-connect/includes/provider.php:895
1726
  msgid "The test was successful"
1727
  msgstr "De test was succesvol"
1728
 
1729
+ #: nextend-facebook-connect/includes/provider.php:941
1730
  msgid "Authentication failed"
1731
  msgstr "Authenticatie mislukt"
1732
 
1733
+ #: nextend-facebook-connect/includes/provider.php:1094
1734
  msgid "Identifier"
1735
  msgstr "Identificatie"
1736
 
1737
+ #: nextend-facebook-connect/includes/provider.php:1110
1738
  msgid "Profile picture"
1739
  msgstr "Profielfoto"
1740
 
1773
  msgid "Register For This Site!"
1774
  msgstr "Registreer Voor Deze Site!"
1775
 
1776
+ #: nextend-facebook-connect/includes/userData.php:189
1777
+ #, fuzzy
1778
+ #| msgid "Register"
1779
+ msgctxt "Register form submit button label"
1780
+ msgid "Register"
1781
+ msgstr "Registreren"
1782
+
1783
  #: nextend-facebook-connect/nextend-facebook-connect.php:37
1784
  #, php-format
1785
  msgid "%1$s requires PHP version %2$s+, plugin is currently NOT ACTIVE."
1805
  msgid "Update now!"
1806
  msgstr "Update nu!"
1807
 
1808
+ #: nextend-facebook-connect/nextend-social-login.php:820
1809
+ #: nextend-facebook-connect/nextend-social-login.php:1199
1810
  msgid "Social Login"
1811
  msgstr "Social Login"
1812
 
1813
+ #: nextend-facebook-connect/nextend-social-login.php:1180
1814
  msgid "Social Accounts"
1815
  msgstr "Social Accounts"
1816
 
1853
  #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:9
1854
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:25
1855
  #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:9
 
1856
  #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:9
1857
  #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:9
1858
  #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:20
1979
  #| msgid "Click on the \"Create an App\" button on the top right corner."
1980
  msgid ""
1981
  "Click on the \"<b>Create App</b>\" button and in the Popup choose the "
1982
+ "\"<b>Consumer</b>\" App type!"
1983
  msgstr "Klik op de knop \"Maak een App\" in de rechterbovenhoek."
1984
 
1985
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:27
2010
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:30
2011
  #, fuzzy
2012
  #| msgid "Click on the \"Create an App\" button on the top right corner."
2013
+ msgid "Click the \"<b>Create App</b>\" button and complete the Security Check."
 
2014
  msgstr "Klik op de knop \"Maak een App\" in de rechterbovenhoek."
2015
 
2016
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:31
2153
  msgstr ""
2154
 
2155
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:60
2156
+ msgid "Maintaining the Facebook App:"
2157
+ msgstr ""
2158
+
2159
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:61
2160
+ #, php-format
2161
+ msgid ""
2162
+ "<strong><u>Facebook Data Use Checkup:</u></strong> To protecting people's "
2163
+ "privacy, Facebook might requests you to fill some forms, so they can ensure "
2164
+ "that your API access and data use comply with the Facebook policies.\n"
2165
+ "If Facebook displays the \"%1$s\" modal for your App, then in our "
2166
+ "%2$sdocumentation%3$s you can find more information about the permissions "
2167
+ "that we need."
2168
+ msgstr ""
2169
+
2170
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:63
2171
+ #, php-format
2172
+ msgid ""
2173
+ "<strong><u>New Data Access Levels:</u></strong> Facebook started replacing "
2174
+ "the Development Mode / Live Mode switch in some Apps with %1$s ( earlier "
2175
+ "Development Mode ) and %2$s ( earlier Live mode ), which can be modified on "
2176
+ "the <strong>%3$s</strong> page. You can reach this page from the left hand "
2177
+ "menu of your App, under <strong>%4$s</strong>.\n"
2178
+ "If you want people outside of your business to be able to use their Faceook "
2179
+ "account to register and login over your App, then make sure you requested "
2180
+ "<strong>%2$s</strong> for the <strong>%5$s</strong> and <strong>%6$s</"
2181
+ "strong> permissions. "
2182
+ msgstr ""
2183
+
2184
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:67
2185
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:42
2186
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:35
2187
  #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:39
2188
  #: nextend-social-login-pro/providers/apple/admin/getting-started.php:122
2189
  #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:30
2328
  msgstr ""
2329
 
2330
  #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:12
 
2331
  #, fuzzy, php-format
2332
  #| msgid ""
2333
  #| "Add the following URL to the \"Authorised redirect URIs\" field: <b>%s</b>"
2339
  "%s</b>"
2340
 
2341
  #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:13
2342
+ #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:14
2343
  #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:14
2344
  #, fuzzy
2345
  #| msgid "Click on \"Save\""
2346
  msgid "Click on \"<b>Save</b>\""
2347
  msgstr "Klik op \"Opslaan\""
2348
 
2349
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:17
2350
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:17
2351
+ #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:25
2352
+ #: nextend-social-login-pro/providers/apple/admin/getting-started.php:38
2353
+ #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:9
2354
+ #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:16
2355
+ #: nextend-social-login-pro/providers/github/admin/getting-started.php:16
2356
+ #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:9
2357
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:17
2358
+ #: nextend-social-login-pro/providers/vk/admin/getting-started.php:16
2359
+ #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:9
2360
+ #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:16
2361
+ #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:17
2362
+ #, php-format
2363
+ msgid "Log in with your %s credentials if you are not logged in."
2364
+ msgstr "Log in met je %s inloggegevens als je niet ingelogd bent."
2365
+
2366
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:18
2367
+ #, fuzzy, php-format
2368
  #| msgid ""
2369
  #| "If you don't have a project yet, you'll need to create one. You can do "
2370
  #| "this by clicking on the blue \"Create project\" button on the right "
2373
  #| "Project. )"
2374
  msgid ""
2375
  "If you don't have a project yet, you'll need to create one. You can do this "
2376
+ "by clicking on the blue \"<b>%1$s</b>\" text on the right side! ( If you "
2377
+ "already have a project, then in the top bar click on the name of your "
2378
+ "project instead, which will bring up a modal and click <b>\"%2$s\"</b>. )"
 
2379
  msgstr ""
2380
  "Als je nog geen project hebt, moet je er een maken. Je kunt dit doen door op "
2381
  "de blauwe knop \"Maak project\" aan de rechterkant te klikken! (Als je al "
2383
  "het dashboard, die een modal zal weergeven en klik op Nieuw Project. )"
2384
 
2385
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:19
2386
+ #, fuzzy, php-format
2387
  #| msgid "Name your project and then click on the Create button again"
2388
+ msgid "Name your project and then click on the \"<b>%1$s</b>\" button again!"
2389
  msgstr "Geef je project een naam en klik dan opnieuw op de knop Aanmaken"
2390
 
2391
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:20
2392
+ msgid ""
2393
+ "Once you have a project, you'll end up in the dashboard. ( If earlier you "
2394
+ "have already had a Project, then make sure you select the created project in "
2395
+ "the top bar! )"
2396
+ msgstr ""
2397
 
2398
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:21
2399
+ #, fuzzy, php-format
2400
+ #| msgid "Click on the \"Credentials\" in the left hand menu"
2401
+ msgid "Click the “<b>%1$s</b>” button on the left hand side."
2402
+ msgstr "Klik op de \"Inloggegevens\" in het linker menu"
2403
 
2404
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:22
2405
+ #, php-format
2406
  msgid ""
2407
+ "Choose a <b>%1$s</b> according to your needs and press \"<b>%2$s</b>\". If "
2408
+ "you want to enable the social login with %3$s for any users with a %3$s "
2409
+ "account, then pick the \"%4$s\" option!"
2410
  msgstr ""
2411
 
2412
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:24
2418
  msgstr ""
2419
 
2420
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:27
2421
+ #, fuzzy, php-format
2422
  #| msgid ""
2423
  #| "Enter a name for your App under the \"Application name\" field, which "
2424
  #| "will appear as the name of the app asking for consent."
2425
  msgid ""
2426
+ "Enter a name for your App to the \"<b>%1$s</b>\" field, which will appear as "
2427
+ "the name of the app asking for consent."
2428
  msgstr ""
2429
  "Voer een naam in voor je App in het veld \"Toepassingsnaam\", die zal "
2430
  "verschijnen als de naam van de app die om toestemming vraagt."
2431
 
2432
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:28
2433
+ #, php-format
2434
+ msgid ""
2435
+ "For the \"<b>%1$s</b>\" field, select an email address that users can use to "
2436
+ "contact you with questions about their consent."
2437
+ msgstr ""
2438
+
2439
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:29
2440
  #, fuzzy, php-format
2441
  #| msgid ""
2442
  #| "Fill the \"Authorized domains\" field with your domain name probably: <b>"
2443
  #| "%s</b> without subdomains!"
2444
  msgid ""
2445
+ "Under the \"<b>%1$s</b>\" section press the \"<b>%2$s</b>\" button and "
2446
+ "enter your domain name, probably: <b>%3$s</b> without subdomains!"
2447
  msgstr ""
2448
  "Vul het veld \"Geautoriseerde domeinen\" in met je domeinnaam "
2449
  "waarschijnlijk: <b>%s</b> zonder subdomeinen!"
2450
 
 
 
 
 
 
 
2451
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:30
2452
  #, php-format
2453
  msgid ""
2454
+ "At the \"<b>%1$s</b>\" section, enter an email address that %2$s can use to "
2455
+ "notify you about any changes to your project."
2456
  msgstr ""
2457
 
2458
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:31
2459
+ #, php-format
2460
+ msgid ""
2461
+ "Press \"<b>%1$s</b>\" then press it again on the \"%2$s\", \"%3$s\" pages, "
2462
+ "too!"
2463
  msgstr ""
2464
 
2465
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:32
2466
+ #, php-format
2467
+ msgid ""
2468
+ "On the left side, click on the \"<b>%1$s</b>\" menu point, then click the "
2469
+ "\"<b>%2$s</b>\" button in the top bar."
2470
+ msgstr ""
2471
+
2472
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:33
2473
+ #, fuzzy, php-format
2474
+ #| msgid "Click on the Create button"
2475
+ msgid "Choose the \"<b>%1$s</b>\" option."
2476
+ msgstr "Klik op de knop Aanmaken"
2477
+
2478
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:34
2479
+ #, fuzzy, php-format
2480
  #| msgid ""
2481
  #| "Click on the link \"registering an application\" under the Applications "
2482
  #| "tab."
2483
+ msgid "Select the \"<b>%1$s</b>\" under Application type."
2484
  msgstr ""
2485
  "Klik op de link \"aanvraag registreren\" onder het tabblad \"Applicaties\"."
2486
 
2487
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:35
2488
+ #, fuzzy, php-format
2489
  #| msgid "Enter a \"Description\" for your app!"
2490
+ msgid "Enter a \"<b>%1$s</b>\" for your OAuth client ID."
2491
  msgstr "Vul een \"Beschrijving\" in voor je app!"
2492
 
2493
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:36
2494
+ #, php-format
2495
+ msgid ""
2496
+ "Under the \"<b>%1$s</b>\" section click \"<b>%2$s</b>\" and add the "
2497
+ "following URL: <b>%3$s</b>"
2498
+ msgstr ""
2499
+
2500
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:37
2501
+ #, fuzzy, php-format
2502
  #| msgid "Click on the Create button"
2503
+ msgid "Click on the \"<b>%1$s</b>\" button"
2504
  msgstr "Klik op de knop Aanmaken"
2505
 
2506
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:38
2507
+ #, fuzzy, php-format
2508
  #| msgid ""
2509
  #| "A modal should pop up with your credentials. If that doesn't happen, go "
2510
  #| "to the Credentials in the left hand menu and select your app by clicking "
2512
  #| "Secret from there."
2513
  msgid ""
2514
  "A modal should pop up with your credentials. If that doesn't happen, go to "
2515
+ "the %1$s in the left hand menu and select your app by clicking on its name "
2516
+ "and you'll be able to copy-paste the \"<b>%2$s</b>\" and \"<b>%3$s</b>\" "
2517
+ "from there."
2518
  msgstr ""
2519
  "Een modal moet opduiken met je inloggegevens. Als dat niet gebeurt, ga dan "
2520
  "naar de Inloggegevens in het linkermenu en selecteer je app door op de naam "
2583
  msgstr "Vind jew app en klik op de knop Details"
2584
 
2585
  #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:11
 
2586
  #, fuzzy
2587
  #| msgid "Click on the \"Create an App\" button on the top right corner."
2588
  msgid "Click on the <b>Edit</b> button at <b>Authentication settings</b>."
2594
  msgid "Add the following URL to the \"<b>Callback URLs</b>\" field: <b>%s</b>"
2595
  msgstr "Voeg de volgende URL toe aan het veld \"Callback URL's\": <b>%s</b>"
2596
 
2597
+ #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:13
2598
+ #, fuzzy, php-format
2599
+ #| msgid "Enter the URL of your site to the \"Home Page URL\" field: <b>%s</b>"
2600
+ msgid ""
2601
+ "Make sure the \"<b>%1$s</b>\" field contains the following URL: <b>%2$s</b>"
2602
+ msgstr "Voer de URL van je site in het veld \"Home Page URL\" in: <b>%s</b>"
 
 
 
 
 
 
 
 
 
2603
 
2604
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:18
2605
  msgid ""
2622
  "nog niet bent!"
2623
 
2624
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:20
2625
+ #, fuzzy, php-format
2626
  #| msgid "Click on \"Save\""
2627
+ msgid "Click on \"<b>%s</b>\"!"
2628
  msgstr "Klik op \"Opslaan\""
2629
 
2630
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:21
2631
  msgid ""
2632
  "Name your project, and go through the basic setup. You’ll need to select "
2633
+ "your use case, give a description and enter a name for the App as well."
2634
  msgstr ""
2635
 
2636
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:22
2637
+ #, fuzzy, php-format
2638
+ #| msgid "Click \"Edit\"."
2639
+ msgid "Click \"<b>%s</b>\"!"
2640
+ msgstr "Klik op \"Bewerken\"."
2641
 
2642
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:23
2643
+ #, php-format
2644
  msgid ""
2645
+ "You’ll find your API key and secret on this page. Copy and paste the \"<b>"
2646
+ "%1$s</b>\" and the \"<b>%2$s</b>\" to the corresponding fields at %3$s and "
2647
+ "press \"<b>Save Changes</b>\"."
2648
  msgstr ""
2649
 
2650
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:24
2651
+ #, php-format
2652
+ msgid ""
2653
+ "Go back to your Twitter project and on the left side, under the \"<b>%s</b>"
2654
+ "\" section click on the name of your App."
2655
+ msgstr ""
2656
 
2657
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:25
2658
+ #, fuzzy, php-format
2659
+ #| msgid "Name your project and then click on the Create button again"
2660
+ msgid "Scroll down and click on the \"<b>%1$s</b>\" button at \"<b>%2$s</b>\"."
2661
+ msgstr "Geef je project een naam en klik dan opnieuw op de knop Aanmaken"
2662
 
2663
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:26
2664
+ #, fuzzy, php-format
2665
+ #| msgid "Click on the Create button"
2666
+ msgid "Switch on the \"<b>%s</b>\" option."
2667
+ msgstr "Klik op de knop Aanmaken"
 
 
2668
 
2669
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:27
2670
  #, fuzzy, php-format
2671
+ #| msgid "Add the following URL to the \"Live Return URL\" field <b>%s</b> "
2672
+ msgid "Add the following URL to the \"<b>%1$s</b>\" field: <b>%2$s</b>"
2673
+ msgstr "Voeg de volgende URL toe aan het \"Live Return URL\" veld <b>%s</b> "
2674
 
2675
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:28
2676
  #, fuzzy, php-format
2677
  #| msgid "Enter the URL of your site to the \"Home Page URL\" field: <b>%s</b>"
2678
+ msgid "Enter your site's URL to the \"<b>%1$s</b>\" field: <b>%2$s</b>"
2679
  msgstr "Voer de URL van je site in het veld \"Home Page URL\" in: <b>%s</b>"
2680
 
2681
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:29
2682
+ #, php-format
2683
  msgid ""
2684
  "If you want to get the email address as well, then don’t forget to enable "
2685
+ "the \"<b>%1$s</b>\" option. In this case you also need to fill the \"<b>"
2686
+ "%2$s</b>\" and the \"<b>%3$s</b>\" fields with the corresponding URLs!"
 
2687
  msgstr ""
2688
 
2689
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:30
2690
+ #, fuzzy, php-format
2691
  #| msgid "Click on \"Save\""
2692
+ msgid "Click on \"<b>%s</b>\"."
2693
  msgstr "Klik op \"Opslaan\""
2694
 
2695
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:31
2696
  #, php-format
2697
+ msgid "Go back to %1$s and <b>Verify</b> your %2$s provider."
2698
  msgstr ""
2699
 
2700
  #: nextend-facebook-connect/providers/twitter/admin/settings.php:27
3094
 
3095
  #: nextend-social-login-pro/providers/apple/admin/getting-started.php:35
3096
  msgid ""
3097
+ "Make sure you have an <strong>active subscription for the <a href=\"https://"
3098
+ "developer.apple.com/programs/\" target=\"_blank\">Apple Developer Program</"
3099
+ "a></strong>, as that is necessary for both creating and maintaining an Apple "
3100
+ "App!"
3101
  msgstr ""
3102
 
3103
  #: nextend-social-login-pro/providers/apple/admin/getting-started.php:36
4265
  msgid "Required permission: %1$s"
4266
  msgstr "Vereiste toestemming: %1$s"
4267
 
4268
+ #: nextend-social-login-pro/template-parts/buddypress/login/above-separator.php:18
4269
+ #: nextend-social-login-pro/template-parts/buddypress/login/below-separator.php:18
4270
+ #: nextend-social-login-pro/template-parts/embedded-login/above-separator.php:18
4271
+ #: nextend-social-login-pro/template-parts/embedded-login/below-separator.php:18
4272
+ #: nextend-social-login-pro/template-parts/login/above-separator.php:25
4273
+ #: nextend-social-login-pro/template-parts/login/below-separator.php:30
4274
+ #: nextend-social-login-pro/template-parts/memberpress/login/above-separator.php:18
4275
+ #: nextend-social-login-pro/template-parts/memberpress/login/below-separator.php:18
4276
+ #: nextend-social-login-pro/template-parts/memberpress/sign-up/above-separator.php:18
4277
+ #: nextend-social-login-pro/template-parts/memberpress/sign-up/below-separator.php:18
4278
+ #: nextend-social-login-pro/template-parts/ultimate-member/login/above-separator.php:18
4279
+ #: nextend-social-login-pro/template-parts/ultimate-member/login/below-separator.php:18
4280
+ #: nextend-social-login-pro/template-parts/ultimate-member/register/above-separator.php:18
4281
+ #: nextend-social-login-pro/template-parts/ultimate-member/register/below-separator.php:18
4282
+ #: nextend-social-login-pro/template-parts/userpro/login/above-separator.php:18
4283
+ #: nextend-social-login-pro/template-parts/userpro/login/below-separator.php:18
4284
+ #: nextend-social-login-pro/template-parts/userpro/register/above-separator.php:18
4285
+ #: nextend-social-login-pro/template-parts/userpro/register/below-separator.php:18
4286
+ #: nextend-social-login-pro/template-parts/woocommerce/billing/above-separator.php:25
4287
+ #: nextend-social-login-pro/template-parts/woocommerce/billing/below-separator.php:25
4288
+ #: nextend-social-login-pro/template-parts/woocommerce/billing/default-separator-after.php:13
4289
+ #: nextend-social-login-pro/template-parts/woocommerce/billing/default-separator-before.php:13
4290
+ #: nextend-social-login-pro/template-parts/woocommerce/checkout-for-woocommerce/above-separator.php:25
4291
+ #: nextend-social-login-pro/template-parts/woocommerce/checkout-for-woocommerce/below-separator.php:25
4292
+ #: nextend-social-login-pro/template-parts/woocommerce/login/above-separator.php:18
4293
+ #: nextend-social-login-pro/template-parts/woocommerce/login/below-separator.php:18
4294
+ #: nextend-social-login-pro/template-parts/woocommerce/register/above-separator.php:18
4295
+ #: nextend-social-login-pro/template-parts/woocommerce/register/below-separator.php:18
4296
  msgid "OR"
4297
  msgstr "OF"
4298
 
4303
  msgid "Social accounts"
4304
  msgstr "Social accounts"
4305
 
4306
+ #, fuzzy
4307
+ #~| msgid "Click on \"Save\""
4308
+ #~ msgid "Click on <b>+ New Project</b>!"
4309
+ #~ msgstr "Klik op \"Opslaan\""
4310
+
4311
+ #, fuzzy, php-format
4312
+ #~| msgid "Click on the \"Save Changes\" button."
4313
+ #~ msgid "Click on the <b>App Settings</b> button at %s."
4314
+ #~ msgstr "Klik op de knop \"Wijzigingen Opslaan\"."
4315
+
4316
+ #, fuzzy, php-format
4317
+ #~| msgid "Add the following URL to the \"Callback URLs\" field: <b>%s</b>"
4318
+ #~ msgid "Add the following URL to the <b>Callback URLs</b> field: <b>%s</b>"
4319
+ #~ msgstr "Voeg de volgende URL toe aan het veld \"Callback URL's\": <b>%s</b>"
4320
+
4321
+ #, fuzzy
4322
+ #~| msgid "Click on \"Save\""
4323
+ #~ msgid "Click on <b>Save</b>."
4324
+ #~ msgstr "Klik op \"Opslaan\""
4325
+
4326
+ #, fuzzy
4327
+ #~| msgid "Register"
4328
+ #~ msgctxt "NSL Register Form submit button text"
4329
+ #~ msgid "Register"
4330
+ #~ msgstr "Registreren"
4331
+
4332
+ #~ msgid "Once you have a project, you'll end up in the dashboard."
4333
+ #~ msgstr "Als je eenmaal een project hebt, kom je in het dashboard terecht."
4334
+
4335
+ #, fuzzy
4336
+ #~| msgid "Other settings"
4337
+ #~ msgid "Save your settings!"
4338
+ #~ msgstr "Overige instellingen"
4339
+
4340
  #, fuzzy
4341
  #~| msgid ""
4342
  #~| "The Edit button can be found on the App details tab. Click on it and "
languages/nextend-facebook-connect-pt_BR.mo CHANGED
Binary file
languages/nextend-facebook-connect-pt_BR.po CHANGED
@@ -1,15 +1,15 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: ss3\n"
4
- "POT-Creation-Date: 2021-01-27 13:58+0100\n"
5
- "PO-Revision-Date: 2021-01-27 13:58+0100\n"
6
  "Last-Translator: \n"
7
  "Language-Team: renato@modernstuff.com.br\n"
8
  "Language: pt_BR\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 2.4.1\n"
13
  "X-Poedit-Basepath: ../..\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
@@ -137,34 +137,34 @@ msgstr ""
137
  msgid "User"
138
  msgstr "Usuário"
139
 
140
- #: nextend-facebook-connect/admin/admin.php:206
141
  #, php-format
142
  msgid "%s needs json_decode function."
143
  msgstr "%s precisa da função json_decode."
144
 
145
- #: nextend-facebook-connect/admin/admin.php:206
146
  msgid "Please contact your server administrator and ask for solution!"
147
  msgstr ""
148
  "Entre em contato com o seu administrador do servidor e peça uma solução!"
149
 
150
- #: nextend-facebook-connect/admin/admin.php:238
151
- #: nextend-facebook-connect/admin/admin.php:268
152
  msgid "Settings saved."
153
  msgstr "Configurações salvas."
154
 
155
- #: nextend-facebook-connect/admin/admin.php:247
156
  #, fuzzy
157
  #| msgid "The authorization was successful"
158
  msgid "The activation was successful"
159
  msgstr "A autorização foi bem sucedida"
160
 
161
- #: nextend-facebook-connect/admin/admin.php:258
162
  #, fuzzy
163
  #| msgid "Deauthorize completed."
164
  msgid "Deactivate completed."
165
  msgstr "Desautorização concluída."
166
 
167
- #: nextend-facebook-connect/admin/admin.php:437
168
  #: nextend-facebook-connect/admin/templates-provider/menu.php:15
169
  #: nextend-facebook-connect/admin/templates/providers.php:89
170
  #: nextend-facebook-connect/admin/templates/providers.php:101
@@ -172,7 +172,7 @@ msgstr "Desautorização concluída."
172
  msgid "Settings"
173
  msgstr "Configurações"
174
 
175
- #: nextend-facebook-connect/admin/admin.php:520
176
  #: nextend-facebook-connect/includes/oauth2.php:143
177
  #: nextend-facebook-connect/includes/oauth2.php:288
178
  #: nextend-facebook-connect/providers/facebook/facebook-client.php:84
@@ -183,7 +183,7 @@ msgstr "Configurações"
183
  msgid "Unexpected response: %s"
184
  msgstr "Resposta inesperada: %s"
185
 
186
- #: nextend-facebook-connect/admin/admin.php:581
187
  #: nextend-facebook-connect/admin/templates/fix-redirect-uri.php:21
188
  #, php-format
189
  msgid ""
@@ -193,16 +193,16 @@ msgstr ""
193
  "%s detectou que sua url de login mudou. Você deve atualizar as URIs de "
194
  "redirecionamento do Oauth nas aplicações sociais relacionados."
195
 
196
- #: nextend-facebook-connect/admin/admin.php:582
197
  #: nextend-social-login-pro/providers/apple/apple.php:310
198
  msgid "Fix Error"
199
  msgstr "Corrigir erro"
200
 
201
- #: nextend-facebook-connect/admin/admin.php:582
202
  msgid "Oauth Redirect URI"
203
  msgstr "URI de Redirecionamento do OAuth"
204
 
205
- #: nextend-facebook-connect/admin/admin.php:599
206
  #, php-format
207
  msgid ""
208
  "%1$s detected that %2$s installed on your site. You need the Pro Addon to "
@@ -211,15 +211,15 @@ msgstr ""
211
  "%1$s detectado que %2$s instalou em seu site. Você precisa Addon Pro para "
212
  "mostrar botões de Login Social no formulário de login %2$s!"
213
 
214
- #: nextend-facebook-connect/admin/admin.php:600
215
  msgid "Dismiss and check Pro Addon"
216
  msgstr "Dispensar e verificar Addon Pro"
217
 
218
- #: nextend-facebook-connect/admin/admin.php:600
219
  msgid "Dismiss"
220
  msgstr "Dispensar"
221
 
222
- #: nextend-facebook-connect/admin/admin.php:606
223
  #, php-format
224
  msgid ""
225
  "%1$s detected that %2$s installed on your site. You must set \"<b>Page for "
@@ -230,17 +230,17 @@ msgstr ""
230
  "página para fluxo de registro</b>\" e \"<b>página do proxy uri do "
231
  "redirecionamento OAuth</b>\" em %1$s para funcionar corretamente."
232
 
233
- #: nextend-facebook-connect/admin/admin.php:607
234
  msgid "Fix now"
235
  msgstr "Corrigir erro"
236
 
237
- #: nextend-facebook-connect/admin/admin.php:631
238
  #, fuzzy
239
  #| msgid "Activate Pro Addon"
240
  msgid "Activate your Pro Addon"
241
  msgstr "Ativar Addon Pro"
242
 
243
- #: nextend-facebook-connect/admin/admin.php:632
244
  #, fuzzy
245
  #| msgid ""
246
  #| "To be able to use the Pro features, you need to authorize Nextend Social "
@@ -255,20 +255,20 @@ msgstr ""
255
  "Pro do Nextend Social Connect. Você pode fazer isso clicando no botão "
256
  "autorizar abaixo e então selecione a compra relacionada."
257
 
258
- #: nextend-facebook-connect/admin/admin.php:637
259
  #: nextend-social-login-pro/nextend-social-login-pro.php:110
260
  msgid "Activate"
261
  msgstr "Ativar"
262
 
263
- #: nextend-facebook-connect/admin/admin.php:735
264
  msgid "License key"
265
  msgstr "Chave de licença"
266
 
267
- #: nextend-facebook-connect/admin/admin.php:758
268
  msgid "OAuth proxy page"
269
  msgstr "Página do proxy OAuth"
270
 
271
- #: nextend-facebook-connect/admin/admin.php:761
272
  msgid "Register flow page"
273
  msgstr "Registrar página de fluxo"
274
 
@@ -277,54 +277,54 @@ msgstr "Registrar página de fluxo"
277
  msgid "You have logged in successfully."
278
  msgstr "Você entrou com sucesso."
279
 
280
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:80
281
  msgid "Login label"
282
  msgstr "Rótulo de Login"
283
 
284
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:85
285
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:101
286
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:114
287
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:125
288
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:154
289
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:184
290
  #: nextend-facebook-connect/admin/templates/settings/privacy.php:53
291
  msgid "Reset to default"
292
  msgstr "Redefinir para o padrão"
293
 
294
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:95
295
  #, fuzzy
296
  #| msgid "Register layout"
297
  msgid "Register label"
298
  msgstr "Cadastrar layout"
299
 
300
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:108
301
  msgid "Link label"
302
  msgstr "Rótulo de Vincular"
303
 
304
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:120
305
  msgid "Unlink label"
306
  msgstr "Rótulo de Desvincular"
307
 
308
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:131
309
  msgid "Default button"
310
  msgstr "Botão padrão"
311
 
312
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:147
313
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:177
314
  msgid "Use custom button"
315
  msgstr "Usar botão personalizado"
316
 
317
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:154
318
  #, php-format
319
  msgid "Use the %s in your custom button's code to make the label show up."
320
  msgstr ""
321
  "Usar o %s em seu código de botão personalizado para fazer o rótulo aparecer."
322
 
323
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:162
324
  msgid "Icon button"
325
  msgstr "Ícone do botão"
326
 
327
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:193
328
  #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:140
329
  #: nextend-facebook-connect/admin/templates-provider/sync-data.php:104
330
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:170
@@ -502,7 +502,6 @@ msgid "Default"
502
  msgstr "Padrão"
503
 
504
  #: nextend-facebook-connect/admin/templates-provider/sync-data.php:50
505
- #: nextend-facebook-connect/includes/userData.php:188
506
  msgid "Register"
507
  msgstr "Cadastrar"
508
 
@@ -1524,7 +1523,7 @@ msgid "Avatar"
1524
  msgstr "Avatar"
1525
 
1526
  #: nextend-facebook-connect/admin/templates/settings/privacy.php:102
1527
- #: nextend-facebook-connect/includes/provider.php:1100
1528
  msgid "Access token"
1529
  msgstr "Token de acesso"
1530
 
@@ -1652,6 +1651,14 @@ msgid_plural "Avatar <span class=\"count\">(%s)</span>"
1652
  msgstr[0] "Avatar <span class=\"count\">(%s)</span>"
1653
  msgstr[1] "Avatar <span class=\"count\">(%s)</span>"
1654
 
 
 
 
 
 
 
 
 
1655
  #: nextend-facebook-connect/includes/compat-wp-login.php:63
1656
  #, php-format
1657
  msgid "%1$s &lsaquo; %2$s &#8212; WordPress"
@@ -1734,39 +1741,39 @@ msgid "Please save your changes before verifying settings."
1734
  msgstr "Salve suas alterações antes de verificar as configurações."
1735
 
1736
  #: nextend-facebook-connect/includes/provider.php:358
1737
- #: nextend-facebook-connect/includes/provider.php:717
1738
- #: nextend-facebook-connect/includes/provider.php:725
1739
  msgid "Authentication successful"
1740
  msgstr "Autenticação bem sucedida"
1741
 
1742
- #: nextend-facebook-connect/includes/provider.php:654
1743
  #: nextend-facebook-connect/includes/user.php:168
1744
  #: nextend-facebook-connect/includes/user.php:597
1745
  msgid "Authentication error"
1746
  msgstr "Erro de autenticação"
1747
 
1748
- #: nextend-facebook-connect/includes/provider.php:669
1749
  msgid "Unlink successful."
1750
  msgstr "Desvinculação bem sucedida."
1751
 
1752
- #: nextend-facebook-connect/includes/provider.php:671
1753
  msgid "Unlink is not allowed!"
1754
  msgstr ""
1755
 
1756
- #: nextend-facebook-connect/includes/provider.php:886
1757
- #: nextend-facebook-connect/includes/provider.php:893
1758
  msgid "The test was successful"
1759
  msgstr "O teste foi bem sucedido"
1760
 
1761
- #: nextend-facebook-connect/includes/provider.php:939
1762
  msgid "Authentication failed"
1763
  msgstr "Falha na autenticação"
1764
 
1765
- #: nextend-facebook-connect/includes/provider.php:1092
1766
  msgid "Identifier"
1767
  msgstr "Identificador"
1768
 
1769
- #: nextend-facebook-connect/includes/provider.php:1108
1770
  msgid "Profile picture"
1771
  msgstr "Foto do perfil"
1772
 
@@ -1805,6 +1812,13 @@ msgstr ""
1805
  msgid "Register For This Site!"
1806
  msgstr "Registrar Para Este Site!"
1807
 
 
 
 
 
 
 
 
1808
  #: nextend-facebook-connect/nextend-facebook-connect.php:37
1809
  #, php-format
1810
  msgid "%1$s requires PHP version %2$s+, plugin is currently NOT ACTIVE."
@@ -1830,12 +1844,12 @@ msgstr "Por favor, atualize %1$s para versão %2$s ou mais recente."
1830
  msgid "Update now!"
1831
  msgstr "Atualizar agora!"
1832
 
1833
- #: nextend-facebook-connect/nextend-social-login.php:762
1834
- #: nextend-facebook-connect/nextend-social-login.php:1140
1835
  msgid "Social Login"
1836
  msgstr "Login Social"
1837
 
1838
- #: nextend-facebook-connect/nextend-social-login.php:1121
1839
  msgid "Social Accounts"
1840
  msgstr "Redes Sociais"
1841
 
@@ -1878,7 +1892,6 @@ msgstr "Navegar para %s"
1878
  #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:9
1879
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:25
1880
  #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:9
1881
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:17
1882
  #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:9
1883
  #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:9
1884
  #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:20
@@ -2005,7 +2018,7 @@ msgstr "Navegar para %s"
2005
  #| msgid "Click the \"Create App\" button."
2006
  msgid ""
2007
  "Click on the \"<b>Create App</b>\" button and in the Popup choose the "
2008
- "\"<b>Build Connected Experiences</b>\" option!"
2009
  msgstr "Clique no botão \"Criar Novo App\"."
2010
 
2011
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:27
@@ -2031,8 +2044,7 @@ msgstr ""
2031
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:30
2032
  #, fuzzy
2033
  #| msgid "Click the \"Create App\" button."
2034
- msgid ""
2035
- "Click the \"<b>Create App ID</b>\" button and complete the Security Check."
2036
  msgstr "Clique no botão \"Criar Novo App\"."
2037
 
2038
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:31
@@ -2177,8 +2189,37 @@ msgid ""
2177
  msgstr ""
2178
 
2179
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:60
2180
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:40
2181
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:37
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2182
  #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:39
2183
  #: nextend-social-login-pro/providers/apple/admin/getting-started.php:122
2184
  #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:30
@@ -2324,7 +2365,6 @@ msgid ""
2324
  msgstr ""
2325
 
2326
  #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:12
2327
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:34
2328
  #, fuzzy, php-format
2329
  #| msgid ""
2330
  #| "Add the following URL to the \"Authorised redirect URIs\" field: <b>%s</b>"
@@ -2336,15 +2376,32 @@ msgstr ""
2336
  "<b>%s</b>"
2337
 
2338
  #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:13
2339
- #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:13
2340
  #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:14
2341
  #, fuzzy
2342
  #| msgid "Click on \"Save\""
2343
  msgid "Click on \"<b>Save</b>\""
2344
  msgstr "Clique em \"Salvar\""
2345
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2346
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:18
2347
- #, fuzzy
2348
  #| msgid ""
2349
  #| "If you don't have a project yet, you'll need to create one. You can do "
2350
  #| "this by clicking on the blue \"Create project\" button on the right "
@@ -2353,34 +2410,38 @@ msgstr "Clique em \"Salvar\""
2353
  #| "Project. )"
2354
  msgid ""
2355
  "If you don't have a project yet, you'll need to create one. You can do this "
2356
- "by clicking on the blue \"<b>Create</b>\" button on the right side! ( If "
2357
- "you already have a project, click on the name of your project in the "
2358
- "dashboard instead, which will bring up a modal and click <b>\"New Project\"</"
2359
- "b>. )"
2360
  msgstr ""
2361
  "Se você não tem um projeto ainda, você precisará criar um. Você pode fazer "
2362
  "isso clicando no botão azul “Criar Projeto” no lado direito"
2363
 
2364
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:19
2365
- #, fuzzy
2366
  #| msgid "Name your project and then click on the Create button again"
2367
- msgid "Name your project and then click on the \"<b>Create</b>\" button again"
2368
  msgstr "Nomeie o projeto e, em seguida, clique no botão Criar"
2369
 
2370
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:20
2371
- msgid "Once you have a project, you'll end up in the dashboard."
 
 
 
2372
  msgstr ""
2373
- "Uma vez que você tenha um projeto, você vai acabar no painel de controle."
2374
 
2375
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:21
2376
- msgid "Click the “<b>OAuth consent screen</b>” button on the left hand side."
2377
- msgstr ""
 
 
2378
 
2379
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:22
 
2380
  msgid ""
2381
- "Choose a <b>User Type</b> according to your needs. If you want to enable the "
2382
- "social login with Google for any users with a Google account, then pick the "
2383
- "External option!"
2384
  msgstr ""
2385
 
2386
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:24
@@ -2392,57 +2453,82 @@ msgid ""
2392
  msgstr ""
2393
 
2394
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:27
 
2395
  msgid ""
2396
- "Enter a name for your App to the \"<b>Application name</b>\" field, which "
2397
- "will appear as the name of the app asking for consent."
2398
  msgstr ""
2399
 
2400
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:28
 
 
 
 
 
 
 
2401
  #, fuzzy, php-format
2402
  #| msgid "Fill the \"Base domain\" field with your domain, probably: <b>%s</b>"
2403
  msgid ""
2404
- "Fill the \"<b>Authorized domains</b>\" field with your domain name probably: "
2405
- "<b>%s</b> without subdomains!"
2406
  msgstr ""
2407
  "Preencha o campo \"Domínio base\" com seu domínio, provavelmente: <b>%s</b>"
2408
 
2409
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:29
2410
- #, fuzzy
2411
- #| msgid "Save your changes."
2412
- msgid "Save your settings!"
2413
- msgstr "Salve suas alterações."
2414
-
2415
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:30
2416
  #, php-format
2417
  msgid ""
2418
- "On the left side, click on the \"<b>%1$s</b>\" menu point, then click the "
2419
- "\"<b>%2$s</b>\" button in the top bar."
2420
  msgstr ""
2421
 
2422
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:31
2423
- msgid "Choose the \"<b>OAuth client ID</b>\" option."
 
 
 
2424
  msgstr ""
2425
 
2426
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:32
2427
- #, fuzzy
 
 
 
 
 
 
 
 
 
 
 
 
 
2428
  #| msgid "Click on the \"Create New Application\" button."
2429
- msgid "Select the \"<b>Web application</b>\" under Application type."
2430
  msgstr "Clique no botão \"Criar novo aplicativo\"."
2431
 
2432
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:33
2433
- #, fuzzy
2434
  #| msgid "Enter a \"Name\" and \"Description\" for your App."
2435
- msgid "Enter a \"<b>Name</b>\" for your OAuth client ID."
2436
  msgstr "Digite um \"Nome\" e \"Descrição\" para seu aplicativo."
2437
 
2438
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:35
2439
- #, fuzzy
 
 
 
 
 
 
 
2440
  #| msgid "Click on the Create button"
2441
- msgid "Click on the \"<b>Create</b>\" button"
2442
  msgstr "Clique no botão Criar"
2443
 
2444
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:36
2445
- #, fuzzy
2446
  #| msgid ""
2447
  #| "A modal should pop up with your credentials. If that doesn't happen, go "
2448
  #| "to the Credentials in the left hand menu and select your app by clicking "
@@ -2450,9 +2536,9 @@ msgstr "Clique no botão Criar"
2450
  #| "Secret from there."
2451
  msgid ""
2452
  "A modal should pop up with your credentials. If that doesn't happen, go to "
2453
- "the Credentials in the left hand menu and select your app by clicking on its "
2454
- "name and you'll be able to copy-paste the \"<b>Client ID</b>\" and "
2455
- "\"<b>Client Secret</b>\" from there."
2456
  msgstr ""
2457
  "Uma modal deverá aparecer com suas credenciais. Se isto não acontecer, vá "
2458
  "para Credenciais no menu esquerdo e selecione seu app clicando no seu nome e "
@@ -2520,7 +2606,6 @@ msgid ""
2520
  msgstr "Nomeie o projeto e, em seguida, clique no botão Criar"
2521
 
2522
  #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:11
2523
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:27
2524
  #, fuzzy
2525
  #| msgid "Click the \"Create App\" button."
2526
  msgid "Click on the <b>Edit</b> button at <b>Authentication settings</b>."
@@ -2532,21 +2617,12 @@ msgstr "Clique no botão \"Criar Novo App\"."
2532
  msgid "Add the following URL to the \"<b>Callback URLs</b>\" field: <b>%s</b>"
2533
  msgstr "Adicione a URL seguinte no campo “URL de Retorno”: <b>%s</b>"
2534
 
2535
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:17
2536
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:25
2537
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:38
2538
- #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:9
2539
- #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:16
2540
- #: nextend-social-login-pro/providers/github/admin/getting-started.php:16
2541
- #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:9
2542
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:17
2543
- #: nextend-social-login-pro/providers/vk/admin/getting-started.php:16
2544
- #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:9
2545
- #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:16
2546
- #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:17
2547
- #, php-format
2548
- msgid "Log in with your %s credentials if you are not logged in."
2549
- msgstr "Faça o login com o seu %s credenciais se você não estiver logado."
2550
 
2551
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:18
2552
  msgid ""
@@ -2569,75 +2645,79 @@ msgstr ""
2569
  "se você ainda não estiver lá!"
2570
 
2571
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:20
2572
- #, fuzzy
2573
  #| msgid "Click on \"Save\""
2574
- msgid "Click on <b>+ New Project</b>!"
2575
  msgstr "Clique em \"Salvar\""
2576
 
2577
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:21
2578
  msgid ""
2579
  "Name your project, and go through the basic setup. You’ll need to select "
2580
- "your use case and give a description."
2581
  msgstr ""
2582
 
2583
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:22
2584
- msgid "Create a new app, or select an existing one, then click <b>Complete</b>"
2585
- msgstr ""
 
 
2586
 
2587
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:23
 
2588
  msgid ""
2589
- "You’ll find your API key and secret on this page. Copy and paste the <b>API "
2590
- "key</b> and the <b>API secret key</b> to the corresponding fields at Nextend "
2591
- "Social Login and press <b>Save Changes</b>."
2592
  msgstr ""
2593
 
2594
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:24
2595
- #, fuzzy, php-format
2596
- #| msgid "Click on \"Save Changes\""
2597
- msgid "Click on the <b>App Settings</b> button at %s."
2598
- msgstr "Clique em \"Salvar Alterações\""
 
2599
 
2600
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:25
2601
- msgid "Find the Apps section, and the app you created a few steps ago."
2602
- msgstr ""
 
 
2603
 
2604
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:26
2605
- msgid "Click on the App settings icon. (The one that looks like a gear.)"
2606
- msgstr ""
2607
-
2608
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:28
2609
- msgid "Switch on the <b>Enable 3-legged OAuth</b> option."
2610
- msgstr ""
2611
 
2612
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:29
2613
  #, fuzzy, php-format
2614
- #| msgid "Add the following URL to the \"Callback URL\" field: <b>%s</b>"
2615
- msgid "Add the following URL to the <b>Callback URLs</b> field: <b>%s</b>"
2616
- msgstr "Adicione a URL seguinte no campo URL de Retorno”: <b>%s</b>"
2617
 
2618
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:30
2619
  #, fuzzy, php-format
2620
  #| msgid "Add the following URL to the \"Live Return URL\" field <b>%s</b> "
2621
- msgid "Enter your site's URL to the <b>Website URL</b> field: <b>%s</b>"
2622
  msgstr "Adicione a seguinte URL ao campo \"URL de retorno ao vivo\" <b>%s</b>"
2623
 
2624
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:31
 
2625
  msgid ""
2626
  "If you want to get the email address as well, then don’t forget to enable "
2627
- "the <b>Request email address from users</b> option. In this case you also "
2628
- "need to fill the <b>Terms of service</b> and the <b>Privacy policy</b> "
2629
- "fields with the corresponding URLs!"
2630
  msgstr ""
2631
 
2632
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:32
2633
- #, fuzzy
2634
  #| msgid "Click on \"Save\""
2635
- msgid "Click on <b>Save</b>."
2636
  msgstr "Clique em \"Salvar\""
2637
 
2638
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:33
2639
  #, php-format
2640
- msgid "Go back to Nextend Social Login and <b>Verify</b> your %s provider."
2641
  msgstr ""
2642
 
2643
  #: nextend-facebook-connect/providers/twitter/admin/settings.php:27
@@ -3028,8 +3108,10 @@ msgstr ""
3028
 
3029
  #: nextend-social-login-pro/providers/apple/admin/getting-started.php:35
3030
  msgid ""
3031
- "Make sure you have an <strong>active subscription for the Apple Developer "
3032
- "Program</strong>!"
 
 
3033
  msgstr ""
3034
 
3035
  #: nextend-social-login-pro/providers/apple/admin/getting-started.php:36
@@ -4161,34 +4243,34 @@ msgstr "Desvincular conta do <b>Yahoo</b>"
4161
  msgid "Required permission: %1$s"
4162
  msgstr "Escopo requerido: %1$s"
4163
 
4164
- #: nextend-social-login-pro/template-parts/buddypress/login/above-separator.php:10
4165
- #: nextend-social-login-pro/template-parts/buddypress/login/below-separator.php:10
4166
- #: nextend-social-login-pro/template-parts/embedded-login/above-separator.php:10
4167
- #: nextend-social-login-pro/template-parts/embedded-login/below-separator.php:10
4168
- #: nextend-social-login-pro/template-parts/login/above-separator.php:20
4169
- #: nextend-social-login-pro/template-parts/login/below-separator.php:8
4170
- #: nextend-social-login-pro/template-parts/memberpress/login/above-separator.php:10
4171
- #: nextend-social-login-pro/template-parts/memberpress/login/below-separator.php:10
4172
- #: nextend-social-login-pro/template-parts/memberpress/sign-up/above-separator.php:10
4173
- #: nextend-social-login-pro/template-parts/memberpress/sign-up/below-separator.php:10
4174
- #: nextend-social-login-pro/template-parts/ultimate-member/login/above-separator.php:10
4175
- #: nextend-social-login-pro/template-parts/ultimate-member/login/below-separator.php:10
4176
- #: nextend-social-login-pro/template-parts/ultimate-member/register/above-separator.php:10
4177
- #: nextend-social-login-pro/template-parts/ultimate-member/register/below-separator.php:10
4178
- #: nextend-social-login-pro/template-parts/userpro/login/above-separator.php:10
4179
- #: nextend-social-login-pro/template-parts/userpro/login/below-separator.php:10
4180
- #: nextend-social-login-pro/template-parts/userpro/register/above-separator.php:10
4181
- #: nextend-social-login-pro/template-parts/userpro/register/below-separator.php:10
4182
- #: nextend-social-login-pro/template-parts/woocommerce/billing/above-separator.php:11
4183
- #: nextend-social-login-pro/template-parts/woocommerce/billing/below-separator.php:11
4184
- #: nextend-social-login-pro/template-parts/woocommerce/billing/default-separator-after.php:7
4185
- #: nextend-social-login-pro/template-parts/woocommerce/billing/default-separator-before.php:7
4186
- #: nextend-social-login-pro/template-parts/woocommerce/checkout-for-woocommerce/above-separator.php:15
4187
- #: nextend-social-login-pro/template-parts/woocommerce/checkout-for-woocommerce/below-separator.php:15
4188
- #: nextend-social-login-pro/template-parts/woocommerce/login/above-separator.php:10
4189
- #: nextend-social-login-pro/template-parts/woocommerce/login/below-separator.php:10
4190
- #: nextend-social-login-pro/template-parts/woocommerce/register/above-separator.php:10
4191
- #: nextend-social-login-pro/template-parts/woocommerce/register/below-separator.php:10
4192
  msgid "OR"
4193
  msgstr "OU"
4194
 
@@ -4199,6 +4281,41 @@ msgstr "OU"
4199
  msgid "Social accounts"
4200
  msgstr "Contas redes sociais"
4201
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4202
  #, fuzzy, php-format
4203
  #~| msgid "Log in with your %s credentials if you are not logged in"
4204
  #~ msgid "Log in with your %s credentials if you are not logged in yet"
@@ -4485,9 +4602,6 @@ msgstr "Contas redes sociais"
4485
  #~ "Vá para o menu Configurações que você pode encontrar abaixo de Facebook "
4486
  #~ "Login no menu esquerdo."
4487
 
4488
- #~ msgid "Make sure that the \"%1$s\" field contains %2$s"
4489
- #~ msgstr "Certifique-se de que o campo \"%1$s\" contém %2$s"
4490
-
4491
  #~ msgid "The following settings will be imported:"
4492
  #~ msgstr "As configurações seguintes serão importadas:"
4493
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: ss3\n"
4
+ "POT-Creation-Date: 2021-06-16 14:01+0200\n"
5
+ "PO-Revision-Date: 2021-06-16 14:01+0200\n"
6
  "Last-Translator: \n"
7
  "Language-Team: renato@modernstuff.com.br\n"
8
  "Language: pt_BR\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 3.0\n"
13
  "X-Poedit-Basepath: ../..\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
137
  msgid "User"
138
  msgstr "Usuário"
139
 
140
+ #: nextend-facebook-connect/admin/admin.php:204
141
  #, php-format
142
  msgid "%s needs json_decode function."
143
  msgstr "%s precisa da função json_decode."
144
 
145
+ #: nextend-facebook-connect/admin/admin.php:204
146
  msgid "Please contact your server administrator and ask for solution!"
147
  msgstr ""
148
  "Entre em contato com o seu administrador do servidor e peça uma solução!"
149
 
150
+ #: nextend-facebook-connect/admin/admin.php:236
151
+ #: nextend-facebook-connect/admin/admin.php:266
152
  msgid "Settings saved."
153
  msgstr "Configurações salvas."
154
 
155
+ #: nextend-facebook-connect/admin/admin.php:245
156
  #, fuzzy
157
  #| msgid "The authorization was successful"
158
  msgid "The activation was successful"
159
  msgstr "A autorização foi bem sucedida"
160
 
161
+ #: nextend-facebook-connect/admin/admin.php:256
162
  #, fuzzy
163
  #| msgid "Deauthorize completed."
164
  msgid "Deactivate completed."
165
  msgstr "Desautorização concluída."
166
 
167
+ #: nextend-facebook-connect/admin/admin.php:435
168
  #: nextend-facebook-connect/admin/templates-provider/menu.php:15
169
  #: nextend-facebook-connect/admin/templates/providers.php:89
170
  #: nextend-facebook-connect/admin/templates/providers.php:101
172
  msgid "Settings"
173
  msgstr "Configurações"
174
 
175
+ #: nextend-facebook-connect/admin/admin.php:518
176
  #: nextend-facebook-connect/includes/oauth2.php:143
177
  #: nextend-facebook-connect/includes/oauth2.php:288
178
  #: nextend-facebook-connect/providers/facebook/facebook-client.php:84
183
  msgid "Unexpected response: %s"
184
  msgstr "Resposta inesperada: %s"
185
 
186
+ #: nextend-facebook-connect/admin/admin.php:579
187
  #: nextend-facebook-connect/admin/templates/fix-redirect-uri.php:21
188
  #, php-format
189
  msgid ""
193
  "%s detectou que sua url de login mudou. Você deve atualizar as URIs de "
194
  "redirecionamento do Oauth nas aplicações sociais relacionados."
195
 
196
+ #: nextend-facebook-connect/admin/admin.php:580
197
  #: nextend-social-login-pro/providers/apple/apple.php:310
198
  msgid "Fix Error"
199
  msgstr "Corrigir erro"
200
 
201
+ #: nextend-facebook-connect/admin/admin.php:580
202
  msgid "Oauth Redirect URI"
203
  msgstr "URI de Redirecionamento do OAuth"
204
 
205
+ #: nextend-facebook-connect/admin/admin.php:597
206
  #, php-format
207
  msgid ""
208
  "%1$s detected that %2$s installed on your site. You need the Pro Addon to "
211
  "%1$s detectado que %2$s instalou em seu site. Você precisa Addon Pro para "
212
  "mostrar botões de Login Social no formulário de login %2$s!"
213
 
214
+ #: nextend-facebook-connect/admin/admin.php:598
215
  msgid "Dismiss and check Pro Addon"
216
  msgstr "Dispensar e verificar Addon Pro"
217
 
218
+ #: nextend-facebook-connect/admin/admin.php:598
219
  msgid "Dismiss"
220
  msgstr "Dispensar"
221
 
222
+ #: nextend-facebook-connect/admin/admin.php:604
223
  #, php-format
224
  msgid ""
225
  "%1$s detected that %2$s installed on your site. You must set \"<b>Page for "
230
  "página para fluxo de registro</b>\" e \"<b>página do proxy uri do "
231
  "redirecionamento OAuth</b>\" em %1$s para funcionar corretamente."
232
 
233
+ #: nextend-facebook-connect/admin/admin.php:605
234
  msgid "Fix now"
235
  msgstr "Corrigir erro"
236
 
237
+ #: nextend-facebook-connect/admin/admin.php:629
238
  #, fuzzy
239
  #| msgid "Activate Pro Addon"
240
  msgid "Activate your Pro Addon"
241
  msgstr "Ativar Addon Pro"
242
 
243
+ #: nextend-facebook-connect/admin/admin.php:630
244
  #, fuzzy
245
  #| msgid ""
246
  #| "To be able to use the Pro features, you need to authorize Nextend Social "
255
  "Pro do Nextend Social Connect. Você pode fazer isso clicando no botão "
256
  "autorizar abaixo e então selecione a compra relacionada."
257
 
258
+ #: nextend-facebook-connect/admin/admin.php:635
259
  #: nextend-social-login-pro/nextend-social-login-pro.php:110
260
  msgid "Activate"
261
  msgstr "Ativar"
262
 
263
+ #: nextend-facebook-connect/admin/admin.php:733
264
  msgid "License key"
265
  msgstr "Chave de licença"
266
 
267
+ #: nextend-facebook-connect/admin/admin.php:756
268
  msgid "OAuth proxy page"
269
  msgstr "Página do proxy OAuth"
270
 
271
+ #: nextend-facebook-connect/admin/admin.php:759
272
  msgid "Register flow page"
273
  msgstr "Registrar página de fluxo"
274
 
277
  msgid "You have logged in successfully."
278
  msgstr "Você entrou com sucesso."
279
 
280
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:86
281
  msgid "Login label"
282
  msgstr "Rótulo de Login"
283
 
284
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:91
285
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:107
286
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:120
287
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:131
288
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:160
289
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:190
290
  #: nextend-facebook-connect/admin/templates/settings/privacy.php:53
291
  msgid "Reset to default"
292
  msgstr "Redefinir para o padrão"
293
 
294
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:101
295
  #, fuzzy
296
  #| msgid "Register layout"
297
  msgid "Register label"
298
  msgstr "Cadastrar layout"
299
 
300
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:114
301
  msgid "Link label"
302
  msgstr "Rótulo de Vincular"
303
 
304
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:126
305
  msgid "Unlink label"
306
  msgstr "Rótulo de Desvincular"
307
 
308
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:137
309
  msgid "Default button"
310
  msgstr "Botão padrão"
311
 
312
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:153
313
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:183
314
  msgid "Use custom button"
315
  msgstr "Usar botão personalizado"
316
 
317
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:160
318
  #, php-format
319
  msgid "Use the %s in your custom button's code to make the label show up."
320
  msgstr ""
321
  "Usar o %s em seu código de botão personalizado para fazer o rótulo aparecer."
322
 
323
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:168
324
  msgid "Icon button"
325
  msgstr "Ícone do botão"
326
 
327
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:199
328
  #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:140
329
  #: nextend-facebook-connect/admin/templates-provider/sync-data.php:104
330
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:170
502
  msgstr "Padrão"
503
 
504
  #: nextend-facebook-connect/admin/templates-provider/sync-data.php:50
 
505
  msgid "Register"
506
  msgstr "Cadastrar"
507
 
1523
  msgstr "Avatar"
1524
 
1525
  #: nextend-facebook-connect/admin/templates/settings/privacy.php:102
1526
+ #: nextend-facebook-connect/includes/provider.php:1102
1527
  msgid "Access token"
1528
  msgstr "Token de acesso"
1529
 
1651
  msgstr[0] "Avatar <span class=\"count\">(%s)</span>"
1652
  msgstr[1] "Avatar <span class=\"count\">(%s)</span>"
1653
 
1654
+ #: nextend-facebook-connect/includes/avatar.php:399
1655
+ msgid "Invalid URL Provided."
1656
+ msgstr ""
1657
+
1658
+ #: nextend-facebook-connect/includes/avatar.php:404
1659
+ msgid "Could not create Temporary file."
1660
+ msgstr ""
1661
+
1662
  #: nextend-facebook-connect/includes/compat-wp-login.php:63
1663
  #, php-format
1664
  msgid "%1$s &lsaquo; %2$s &#8212; WordPress"
1741
  msgstr "Salve suas alterações antes de verificar as configurações."
1742
 
1743
  #: nextend-facebook-connect/includes/provider.php:358
1744
+ #: nextend-facebook-connect/includes/provider.php:719
1745
+ #: nextend-facebook-connect/includes/provider.php:727
1746
  msgid "Authentication successful"
1747
  msgstr "Autenticação bem sucedida"
1748
 
1749
+ #: nextend-facebook-connect/includes/provider.php:656
1750
  #: nextend-facebook-connect/includes/user.php:168
1751
  #: nextend-facebook-connect/includes/user.php:597
1752
  msgid "Authentication error"
1753
  msgstr "Erro de autenticação"
1754
 
1755
+ #: nextend-facebook-connect/includes/provider.php:671
1756
  msgid "Unlink successful."
1757
  msgstr "Desvinculação bem sucedida."
1758
 
1759
+ #: nextend-facebook-connect/includes/provider.php:673
1760
  msgid "Unlink is not allowed!"
1761
  msgstr ""
1762
 
1763
+ #: nextend-facebook-connect/includes/provider.php:888
1764
+ #: nextend-facebook-connect/includes/provider.php:895
1765
  msgid "The test was successful"
1766
  msgstr "O teste foi bem sucedido"
1767
 
1768
+ #: nextend-facebook-connect/includes/provider.php:941
1769
  msgid "Authentication failed"
1770
  msgstr "Falha na autenticação"
1771
 
1772
+ #: nextend-facebook-connect/includes/provider.php:1094
1773
  msgid "Identifier"
1774
  msgstr "Identificador"
1775
 
1776
+ #: nextend-facebook-connect/includes/provider.php:1110
1777
  msgid "Profile picture"
1778
  msgstr "Foto do perfil"
1779
 
1812
  msgid "Register For This Site!"
1813
  msgstr "Registrar Para Este Site!"
1814
 
1815
+ #: nextend-facebook-connect/includes/userData.php:189
1816
+ #, fuzzy
1817
+ #| msgid "Register"
1818
+ msgctxt "Register form submit button label"
1819
+ msgid "Register"
1820
+ msgstr "Cadastrar"
1821
+
1822
  #: nextend-facebook-connect/nextend-facebook-connect.php:37
1823
  #, php-format
1824
  msgid "%1$s requires PHP version %2$s+, plugin is currently NOT ACTIVE."
1844
  msgid "Update now!"
1845
  msgstr "Atualizar agora!"
1846
 
1847
+ #: nextend-facebook-connect/nextend-social-login.php:820
1848
+ #: nextend-facebook-connect/nextend-social-login.php:1199
1849
  msgid "Social Login"
1850
  msgstr "Login Social"
1851
 
1852
+ #: nextend-facebook-connect/nextend-social-login.php:1180
1853
  msgid "Social Accounts"
1854
  msgstr "Redes Sociais"
1855
 
1892
  #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:9
1893
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:25
1894
  #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:9
 
1895
  #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:9
1896
  #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:9
1897
  #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:20
2018
  #| msgid "Click the \"Create App\" button."
2019
  msgid ""
2020
  "Click on the \"<b>Create App</b>\" button and in the Popup choose the "
2021
+ "\"<b>Consumer</b>\" App type!"
2022
  msgstr "Clique no botão \"Criar Novo App\"."
2023
 
2024
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:27
2044
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:30
2045
  #, fuzzy
2046
  #| msgid "Click the \"Create App\" button."
2047
+ msgid "Click the \"<b>Create App</b>\" button and complete the Security Check."
 
2048
  msgstr "Clique no botão \"Criar Novo App\"."
2049
 
2050
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:31
2189
  msgstr ""
2190
 
2191
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:60
2192
+ msgid "Maintaining the Facebook App:"
2193
+ msgstr ""
2194
+
2195
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:61
2196
+ #, php-format
2197
+ msgid ""
2198
+ "<strong><u>Facebook Data Use Checkup:</u></strong> To protecting people's "
2199
+ "privacy, Facebook might requests you to fill some forms, so they can ensure "
2200
+ "that your API access and data use comply with the Facebook policies.\n"
2201
+ "If Facebook displays the \"%1$s\" modal for your App, then in our "
2202
+ "%2$sdocumentation%3$s you can find more information about the permissions "
2203
+ "that we need."
2204
+ msgstr ""
2205
+
2206
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:63
2207
+ #, php-format
2208
+ msgid ""
2209
+ "<strong><u>New Data Access Levels:</u></strong> Facebook started replacing "
2210
+ "the Development Mode / Live Mode switch in some Apps with %1$s ( earlier "
2211
+ "Development Mode ) and %2$s ( earlier Live mode ), which can be modified on "
2212
+ "the <strong>%3$s</strong> page. You can reach this page from the left hand "
2213
+ "menu of your App, under <strong>%4$s</strong>.\n"
2214
+ "If you want people outside of your business to be able to use their Faceook "
2215
+ "account to register and login over your App, then make sure you requested "
2216
+ "<strong>%2$s</strong> for the <strong>%5$s</strong> and <strong>%6$s</"
2217
+ "strong> permissions. "
2218
+ msgstr ""
2219
+
2220
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:67
2221
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:42
2222
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:35
2223
  #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:39
2224
  #: nextend-social-login-pro/providers/apple/admin/getting-started.php:122
2225
  #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:30
2365
  msgstr ""
2366
 
2367
  #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:12
 
2368
  #, fuzzy, php-format
2369
  #| msgid ""
2370
  #| "Add the following URL to the \"Authorised redirect URIs\" field: <b>%s</b>"
2376
  "<b>%s</b>"
2377
 
2378
  #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:13
2379
+ #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:14
2380
  #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:14
2381
  #, fuzzy
2382
  #| msgid "Click on \"Save\""
2383
  msgid "Click on \"<b>Save</b>\""
2384
  msgstr "Clique em \"Salvar\""
2385
 
2386
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:17
2387
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:17
2388
+ #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:25
2389
+ #: nextend-social-login-pro/providers/apple/admin/getting-started.php:38
2390
+ #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:9
2391
+ #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:16
2392
+ #: nextend-social-login-pro/providers/github/admin/getting-started.php:16
2393
+ #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:9
2394
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:17
2395
+ #: nextend-social-login-pro/providers/vk/admin/getting-started.php:16
2396
+ #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:9
2397
+ #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:16
2398
+ #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:17
2399
+ #, php-format
2400
+ msgid "Log in with your %s credentials if you are not logged in."
2401
+ msgstr "Faça o login com o seu %s credenciais se você não estiver logado."
2402
+
2403
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:18
2404
+ #, fuzzy, php-format
2405
  #| msgid ""
2406
  #| "If you don't have a project yet, you'll need to create one. You can do "
2407
  #| "this by clicking on the blue \"Create project\" button on the right "
2410
  #| "Project. )"
2411
  msgid ""
2412
  "If you don't have a project yet, you'll need to create one. You can do this "
2413
+ "by clicking on the blue \"<b>%1$s</b>\" text on the right side! ( If you "
2414
+ "already have a project, then in the top bar click on the name of your "
2415
+ "project instead, which will bring up a modal and click <b>\"%2$s\"</b>. )"
 
2416
  msgstr ""
2417
  "Se você não tem um projeto ainda, você precisará criar um. Você pode fazer "
2418
  "isso clicando no botão azul “Criar Projeto” no lado direito"
2419
 
2420
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:19
2421
+ #, fuzzy, php-format
2422
  #| msgid "Name your project and then click on the Create button again"
2423
+ msgid "Name your project and then click on the \"<b>%1$s</b>\" button again!"
2424
  msgstr "Nomeie o projeto e, em seguida, clique no botão Criar"
2425
 
2426
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:20
2427
+ msgid ""
2428
+ "Once you have a project, you'll end up in the dashboard. ( If earlier you "
2429
+ "have already had a Project, then make sure you select the created project in "
2430
+ "the top bar! )"
2431
  msgstr ""
 
2432
 
2433
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:21
2434
+ #, fuzzy, php-format
2435
+ #| msgid "Click on the \"Credentials\" in the left hand menu"
2436
+ msgid "Click the “<b>%1$s</b>” button on the left hand side."
2437
+ msgstr "Clique em \"Credenciais\"no menu à esquerda"
2438
 
2439
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:22
2440
+ #, php-format
2441
  msgid ""
2442
+ "Choose a <b>%1$s</b> according to your needs and press \"<b>%2$s</b>\". If "
2443
+ "you want to enable the social login with %3$s for any users with a %3$s "
2444
+ "account, then pick the \"%4$s\" option!"
2445
  msgstr ""
2446
 
2447
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:24
2453
  msgstr ""
2454
 
2455
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:27
2456
+ #, php-format
2457
  msgid ""
2458
+ "Enter a name for your App to the \"<b>%1$s</b>\" field, which will appear as "
2459
+ "the name of the app asking for consent."
2460
  msgstr ""
2461
 
2462
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:28
2463
+ #, php-format
2464
+ msgid ""
2465
+ "For the \"<b>%1$s</b>\" field, select an email address that users can use to "
2466
+ "contact you with questions about their consent."
2467
+ msgstr ""
2468
+
2469
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:29
2470
  #, fuzzy, php-format
2471
  #| msgid "Fill the \"Base domain\" field with your domain, probably: <b>%s</b>"
2472
  msgid ""
2473
+ "Under the \"<b>%1$s</b>\" section press the \"<b>%2$s</b>\" button and "
2474
+ "enter your domain name, probably: <b>%3$s</b> without subdomains!"
2475
  msgstr ""
2476
  "Preencha o campo \"Domínio base\" com seu domínio, provavelmente: <b>%s</b>"
2477
 
 
 
 
 
 
 
2478
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:30
2479
  #, php-format
2480
  msgid ""
2481
+ "At the \"<b>%1$s</b>\" section, enter an email address that %2$s can use to "
2482
+ "notify you about any changes to your project."
2483
  msgstr ""
2484
 
2485
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:31
2486
+ #, php-format
2487
+ msgid ""
2488
+ "Press \"<b>%1$s</b>\" then press it again on the \"%2$s\", \"%3$s\" pages, "
2489
+ "too!"
2490
  msgstr ""
2491
 
2492
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:32
2493
+ #, php-format
2494
+ msgid ""
2495
+ "On the left side, click on the \"<b>%1$s</b>\" menu point, then click the "
2496
+ "\"<b>%2$s</b>\" button in the top bar."
2497
+ msgstr ""
2498
+
2499
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:33
2500
+ #, fuzzy, php-format
2501
+ #| msgid "Click on the Create button"
2502
+ msgid "Choose the \"<b>%1$s</b>\" option."
2503
+ msgstr "Clique no botão Criar"
2504
+
2505
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:34
2506
+ #, fuzzy, php-format
2507
  #| msgid "Click on the \"Create New Application\" button."
2508
+ msgid "Select the \"<b>%1$s</b>\" under Application type."
2509
  msgstr "Clique no botão \"Criar novo aplicativo\"."
2510
 
2511
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:35
2512
+ #, fuzzy, php-format
2513
  #| msgid "Enter a \"Name\" and \"Description\" for your App."
2514
+ msgid "Enter a \"<b>%1$s</b>\" for your OAuth client ID."
2515
  msgstr "Digite um \"Nome\" e \"Descrição\" para seu aplicativo."
2516
 
2517
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:36
2518
+ #, php-format
2519
+ msgid ""
2520
+ "Under the \"<b>%1$s</b>\" section click \"<b>%2$s</b>\" and add the "
2521
+ "following URL: <b>%3$s</b>"
2522
+ msgstr ""
2523
+
2524
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:37
2525
+ #, fuzzy, php-format
2526
  #| msgid "Click on the Create button"
2527
+ msgid "Click on the \"<b>%1$s</b>\" button"
2528
  msgstr "Clique no botão Criar"
2529
 
2530
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:38
2531
+ #, fuzzy, php-format
2532
  #| msgid ""
2533
  #| "A modal should pop up with your credentials. If that doesn't happen, go "
2534
  #| "to the Credentials in the left hand menu and select your app by clicking "
2536
  #| "Secret from there."
2537
  msgid ""
2538
  "A modal should pop up with your credentials. If that doesn't happen, go to "
2539
+ "the %1$s in the left hand menu and select your app by clicking on its name "
2540
+ "and you'll be able to copy-paste the \"<b>%2$s</b>\" and \"<b>%3$s</b>\" "
2541
+ "from there."
2542
  msgstr ""
2543
  "Uma modal deverá aparecer com suas credenciais. Se isto não acontecer, vá "
2544
  "para Credenciais no menu esquerdo e selecione seu app clicando no seu nome e "
2606
  msgstr "Nomeie o projeto e, em seguida, clique no botão Criar"
2607
 
2608
  #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:11
 
2609
  #, fuzzy
2610
  #| msgid "Click the \"Create App\" button."
2611
  msgid "Click on the <b>Edit</b> button at <b>Authentication settings</b>."
2617
  msgid "Add the following URL to the \"<b>Callback URLs</b>\" field: <b>%s</b>"
2618
  msgstr "Adicione a URL seguinte no campo “URL de Retorno”: <b>%s</b>"
2619
 
2620
+ #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:13
2621
+ #, fuzzy, php-format
2622
+ #| msgid "Make sure that the \"%1$s\" field contains %2$s"
2623
+ msgid ""
2624
+ "Make sure the \"<b>%1$s</b>\" field contains the following URL: <b>%2$s</b>"
2625
+ msgstr "Certifique-se de que o campo \"%1$s\" contém %2$s"
 
 
 
 
 
 
 
 
 
2626
 
2627
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:18
2628
  msgid ""
2645
  "se você ainda não estiver lá!"
2646
 
2647
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:20
2648
+ #, fuzzy, php-format
2649
  #| msgid "Click on \"Save\""
2650
+ msgid "Click on \"<b>%s</b>\"!"
2651
  msgstr "Clique em \"Salvar\""
2652
 
2653
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:21
2654
  msgid ""
2655
  "Name your project, and go through the basic setup. You’ll need to select "
2656
+ "your use case, give a description and enter a name for the App as well."
2657
  msgstr ""
2658
 
2659
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:22
2660
+ #, fuzzy, php-format
2661
+ #| msgid "Click \"Edit\"."
2662
+ msgid "Click \"<b>%s</b>\"!"
2663
+ msgstr "Clique \"editar\"."
2664
 
2665
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:23
2666
+ #, php-format
2667
  msgid ""
2668
+ "You’ll find your API key and secret on this page. Copy and paste the \"<b>"
2669
+ "%1$s</b>\" and the \"<b>%2$s</b>\" to the corresponding fields at %3$s and "
2670
+ "press \"<b>Save Changes</b>\"."
2671
  msgstr ""
2672
 
2673
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:24
2674
+ #, php-format
2675
+ msgid ""
2676
+ "Go back to your Twitter project and on the left side, under the \"<b>%s</b>"
2677
+ "\" section click on the name of your App."
2678
+ msgstr ""
2679
 
2680
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:25
2681
+ #, fuzzy, php-format
2682
+ #| msgid "Name your project and then click on the Create button again"
2683
+ msgid "Scroll down and click on the \"<b>%1$s</b>\" button at \"<b>%2$s</b>\"."
2684
+ msgstr "Nomeie o projeto e, em seguida, clique no botão Criar"
2685
 
2686
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:26
2687
+ #, fuzzy, php-format
2688
+ #| msgid "Click on the Create button"
2689
+ msgid "Switch on the \"<b>%s</b>\" option."
2690
+ msgstr "Clique no botão Criar"
 
 
2691
 
2692
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:27
2693
  #, fuzzy, php-format
2694
+ #| msgid "Add the following URL to the \"Live Return URL\" field <b>%s</b> "
2695
+ msgid "Add the following URL to the \"<b>%1$s</b>\" field: <b>%2$s</b>"
2696
+ msgstr "Adicione a seguinte URL ao campo \"URL de retorno ao vivo\" <b>%s</b>"
2697
 
2698
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:28
2699
  #, fuzzy, php-format
2700
  #| msgid "Add the following URL to the \"Live Return URL\" field <b>%s</b> "
2701
+ msgid "Enter your site's URL to the \"<b>%1$s</b>\" field: <b>%2$s</b>"
2702
  msgstr "Adicione a seguinte URL ao campo \"URL de retorno ao vivo\" <b>%s</b>"
2703
 
2704
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:29
2705
+ #, php-format
2706
  msgid ""
2707
  "If you want to get the email address as well, then don’t forget to enable "
2708
+ "the \"<b>%1$s</b>\" option. In this case you also need to fill the \"<b>"
2709
+ "%2$s</b>\" and the \"<b>%3$s</b>\" fields with the corresponding URLs!"
 
2710
  msgstr ""
2711
 
2712
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:30
2713
+ #, fuzzy, php-format
2714
  #| msgid "Click on \"Save\""
2715
+ msgid "Click on \"<b>%s</b>\"."
2716
  msgstr "Clique em \"Salvar\""
2717
 
2718
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:31
2719
  #, php-format
2720
+ msgid "Go back to %1$s and <b>Verify</b> your %2$s provider."
2721
  msgstr ""
2722
 
2723
  #: nextend-facebook-connect/providers/twitter/admin/settings.php:27
3108
 
3109
  #: nextend-social-login-pro/providers/apple/admin/getting-started.php:35
3110
  msgid ""
3111
+ "Make sure you have an <strong>active subscription for the <a href=\"https://"
3112
+ "developer.apple.com/programs/\" target=\"_blank\">Apple Developer Program</"
3113
+ "a></strong>, as that is necessary for both creating and maintaining an Apple "
3114
+ "App!"
3115
  msgstr ""
3116
 
3117
  #: nextend-social-login-pro/providers/apple/admin/getting-started.php:36
4243
  msgid "Required permission: %1$s"
4244
  msgstr "Escopo requerido: %1$s"
4245
 
4246
+ #: nextend-social-login-pro/template-parts/buddypress/login/above-separator.php:18
4247
+ #: nextend-social-login-pro/template-parts/buddypress/login/below-separator.php:18
4248
+ #: nextend-social-login-pro/template-parts/embedded-login/above-separator.php:18
4249
+ #: nextend-social-login-pro/template-parts/embedded-login/below-separator.php:18
4250
+ #: nextend-social-login-pro/template-parts/login/above-separator.php:25
4251
+ #: nextend-social-login-pro/template-parts/login/below-separator.php:30
4252
+ #: nextend-social-login-pro/template-parts/memberpress/login/above-separator.php:18
4253
+ #: nextend-social-login-pro/template-parts/memberpress/login/below-separator.php:18
4254
+ #: nextend-social-login-pro/template-parts/memberpress/sign-up/above-separator.php:18
4255
+ #: nextend-social-login-pro/template-parts/memberpress/sign-up/below-separator.php:18
4256
+ #: nextend-social-login-pro/template-parts/ultimate-member/login/above-separator.php:18
4257
+ #: nextend-social-login-pro/template-parts/ultimate-member/login/below-separator.php:18
4258
+ #: nextend-social-login-pro/template-parts/ultimate-member/register/above-separator.php:18
4259
+ #: nextend-social-login-pro/template-parts/ultimate-member/register/below-separator.php:18
4260
+ #: nextend-social-login-pro/template-parts/userpro/login/above-separator.php:18
4261
+ #: nextend-social-login-pro/template-parts/userpro/login/below-separator.php:18
4262
+ #: nextend-social-login-pro/template-parts/userpro/register/above-separator.php:18
4263
+ #: nextend-social-login-pro/template-parts/userpro/register/below-separator.php:18
4264
+ #: nextend-social-login-pro/template-parts/woocommerce/billing/above-separator.php:25
4265
+ #: nextend-social-login-pro/template-parts/woocommerce/billing/below-separator.php:25
4266
+ #: nextend-social-login-pro/template-parts/woocommerce/billing/default-separator-after.php:13
4267
+ #: nextend-social-login-pro/template-parts/woocommerce/billing/default-separator-before.php:13
4268
+ #: nextend-social-login-pro/template-parts/woocommerce/checkout-for-woocommerce/above-separator.php:25
4269
+ #: nextend-social-login-pro/template-parts/woocommerce/checkout-for-woocommerce/below-separator.php:25
4270
+ #: nextend-social-login-pro/template-parts/woocommerce/login/above-separator.php:18
4271
+ #: nextend-social-login-pro/template-parts/woocommerce/login/below-separator.php:18
4272
+ #: nextend-social-login-pro/template-parts/woocommerce/register/above-separator.php:18
4273
+ #: nextend-social-login-pro/template-parts/woocommerce/register/below-separator.php:18
4274
  msgid "OR"
4275
  msgstr "OU"
4276
 
4281
  msgid "Social accounts"
4282
  msgstr "Contas redes sociais"
4283
 
4284
+ #, fuzzy
4285
+ #~| msgid "Click on \"Save\""
4286
+ #~ msgid "Click on <b>+ New Project</b>!"
4287
+ #~ msgstr "Clique em \"Salvar\""
4288
+
4289
+ #, fuzzy, php-format
4290
+ #~| msgid "Click on \"Save Changes\""
4291
+ #~ msgid "Click on the <b>App Settings</b> button at %s."
4292
+ #~ msgstr "Clique em \"Salvar Alterações\""
4293
+
4294
+ #, fuzzy, php-format
4295
+ #~| msgid "Add the following URL to the \"Callback URL\" field: <b>%s</b>"
4296
+ #~ msgid "Add the following URL to the <b>Callback URLs</b> field: <b>%s</b>"
4297
+ #~ msgstr "Adicione a URL seguinte no campo “URL de Retorno”: <b>%s</b>"
4298
+
4299
+ #, fuzzy
4300
+ #~| msgid "Click on \"Save\""
4301
+ #~ msgid "Click on <b>Save</b>."
4302
+ #~ msgstr "Clique em \"Salvar\""
4303
+
4304
+ #, fuzzy
4305
+ #~| msgid "Register"
4306
+ #~ msgctxt "NSL Register Form submit button text"
4307
+ #~ msgid "Register"
4308
+ #~ msgstr "Cadastrar"
4309
+
4310
+ #~ msgid "Once you have a project, you'll end up in the dashboard."
4311
+ #~ msgstr ""
4312
+ #~ "Uma vez que você tenha um projeto, você vai acabar no painel de controle."
4313
+
4314
+ #, fuzzy
4315
+ #~| msgid "Save your changes."
4316
+ #~ msgid "Save your settings!"
4317
+ #~ msgstr "Salve suas alterações."
4318
+
4319
  #, fuzzy, php-format
4320
  #~| msgid "Log in with your %s credentials if you are not logged in"
4321
  #~ msgid "Log in with your %s credentials if you are not logged in yet"
4602
  #~ "Vá para o menu Configurações que você pode encontrar abaixo de Facebook "
4603
  #~ "Login no menu esquerdo."
4604
 
 
 
 
4605
  #~ msgid "The following settings will be imported:"
4606
  #~ msgstr "As configurações seguintes serão importadas:"
4607
 
languages/nextend-facebook-connect-ru_RU.mo CHANGED
Binary file
languages/nextend-facebook-connect-ru_RU.po CHANGED
@@ -1,15 +1,15 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: nextend-facebook-connect\n"
4
- "POT-Creation-Date: 2021-01-27 13:58+0100\n"
5
- "PO-Revision-Date: 2021-01-27 13:58+0100\n"
6
  "Last-Translator: \n"
7
  "Language-Team: nextend-facebook-connect\n"
8
  "Language: ru\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 2.4.1\n"
13
  "X-Poedit-Basepath: ../..\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
@@ -112,29 +112,29 @@ msgstr ""
112
  msgid "User"
113
  msgstr ""
114
 
115
- #: nextend-facebook-connect/admin/admin.php:206
116
  #, php-format
117
  msgid "%s needs json_decode function."
118
  msgstr ""
119
 
120
- #: nextend-facebook-connect/admin/admin.php:206
121
  msgid "Please contact your server administrator and ask for solution!"
122
  msgstr ""
123
 
124
- #: nextend-facebook-connect/admin/admin.php:238
125
- #: nextend-facebook-connect/admin/admin.php:268
126
  msgid "Settings saved."
127
  msgstr ""
128
 
129
- #: nextend-facebook-connect/admin/admin.php:247
130
  msgid "The activation was successful"
131
  msgstr ""
132
 
133
- #: nextend-facebook-connect/admin/admin.php:258
134
  msgid "Deactivate completed."
135
  msgstr ""
136
 
137
- #: nextend-facebook-connect/admin/admin.php:437
138
  #: nextend-facebook-connect/admin/templates-provider/menu.php:15
139
  #: nextend-facebook-connect/admin/templates/providers.php:89
140
  #: nextend-facebook-connect/admin/templates/providers.php:101
@@ -142,7 +142,7 @@ msgstr ""
142
  msgid "Settings"
143
  msgstr ""
144
 
145
- #: nextend-facebook-connect/admin/admin.php:520
146
  #: nextend-facebook-connect/includes/oauth2.php:143
147
  #: nextend-facebook-connect/includes/oauth2.php:288
148
  #: nextend-facebook-connect/providers/facebook/facebook-client.php:84
@@ -153,7 +153,7 @@ msgstr ""
153
  msgid "Unexpected response: %s"
154
  msgstr ""
155
 
156
- #: nextend-facebook-connect/admin/admin.php:581
157
  #: nextend-facebook-connect/admin/templates/fix-redirect-uri.php:21
158
  #, php-format
159
  msgid ""
@@ -161,31 +161,31 @@ msgid ""
161
  "URIs in the related social applications."
162
  msgstr ""
163
 
164
- #: nextend-facebook-connect/admin/admin.php:582
165
  #: nextend-social-login-pro/providers/apple/apple.php:310
166
  msgid "Fix Error"
167
  msgstr ""
168
 
169
- #: nextend-facebook-connect/admin/admin.php:582
170
  msgid "Oauth Redirect URI"
171
  msgstr ""
172
 
173
- #: nextend-facebook-connect/admin/admin.php:599
174
  #, php-format
175
  msgid ""
176
  "%1$s detected that %2$s installed on your site. You need the Pro Addon to "
177
  "display Social Login buttons in %2$s login form!"
178
  msgstr ""
179
 
180
- #: nextend-facebook-connect/admin/admin.php:600
181
  msgid "Dismiss and check Pro Addon"
182
  msgstr ""
183
 
184
- #: nextend-facebook-connect/admin/admin.php:600
185
  msgid "Dismiss"
186
  msgstr ""
187
 
188
- #: nextend-facebook-connect/admin/admin.php:606
189
  #, php-format
190
  msgid ""
191
  "%1$s detected that %2$s installed on your site. You must set \"<b>Page for "
@@ -193,35 +193,35 @@ msgid ""
193
  "work properly."
194
  msgstr ""
195
 
196
- #: nextend-facebook-connect/admin/admin.php:607
197
  msgid "Fix now"
198
  msgstr ""
199
 
200
- #: nextend-facebook-connect/admin/admin.php:631
201
  msgid "Activate your Pro Addon"
202
  msgstr ""
203
 
204
- #: nextend-facebook-connect/admin/admin.php:632
205
  msgid ""
206
  "To be able to use the Pro features, you need to activate Nextend Social "
207
  "Login Pro Addon. You can do this by clicking on the Activate button below "
208
  "then select the related purchase."
209
  msgstr ""
210
 
211
- #: nextend-facebook-connect/admin/admin.php:637
212
  #: nextend-social-login-pro/nextend-social-login-pro.php:110
213
  msgid "Activate"
214
  msgstr ""
215
 
216
- #: nextend-facebook-connect/admin/admin.php:735
217
  msgid "License key"
218
  msgstr ""
219
 
220
- #: nextend-facebook-connect/admin/admin.php:758
221
  msgid "OAuth proxy page"
222
  msgstr ""
223
 
224
- #: nextend-facebook-connect/admin/admin.php:761
225
  msgid "Register flow page"
226
  msgstr ""
227
 
@@ -230,51 +230,51 @@ msgstr ""
230
  msgid "You have logged in successfully."
231
  msgstr ""
232
 
233
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:80
234
  msgid "Login label"
235
  msgstr ""
236
 
237
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:85
238
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:101
239
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:114
240
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:125
241
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:154
242
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:184
243
  #: nextend-facebook-connect/admin/templates/settings/privacy.php:53
244
  msgid "Reset to default"
245
  msgstr ""
246
 
247
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:95
248
  msgid "Register label"
249
  msgstr ""
250
 
251
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:108
252
  msgid "Link label"
253
  msgstr ""
254
 
255
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:120
256
  msgid "Unlink label"
257
  msgstr ""
258
 
259
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:131
260
  msgid "Default button"
261
  msgstr ""
262
 
263
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:147
264
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:177
265
  msgid "Use custom button"
266
  msgstr ""
267
 
268
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:154
269
  #, php-format
270
  msgid "Use the %s in your custom button's code to make the label show up."
271
  msgstr ""
272
 
273
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:162
274
  msgid "Icon button"
275
  msgstr ""
276
 
277
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:193
278
  #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:140
279
  #: nextend-facebook-connect/admin/templates-provider/sync-data.php:104
280
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:170
@@ -452,7 +452,6 @@ msgid "Default"
452
  msgstr ""
453
 
454
  #: nextend-facebook-connect/admin/templates-provider/sync-data.php:50
455
- #: nextend-facebook-connect/includes/userData.php:188
456
  msgid "Register"
457
  msgstr ""
458
 
@@ -1389,7 +1388,7 @@ msgid "Avatar"
1389
  msgstr ""
1390
 
1391
  #: nextend-facebook-connect/admin/templates/settings/privacy.php:102
1392
- #: nextend-facebook-connect/includes/provider.php:1100
1393
  msgid "Access token"
1394
  msgstr ""
1395
 
@@ -1503,6 +1502,14 @@ msgid_plural "Avatar <span class=\"count\">(%s)</span>"
1503
  msgstr[0] ""
1504
  msgstr[1] ""
1505
 
 
 
 
 
 
 
 
 
1506
  #: nextend-facebook-connect/includes/compat-wp-login.php:63
1507
  #, php-format
1508
  msgid "%1$s &lsaquo; %2$s &#8212; WordPress"
@@ -1573,39 +1580,39 @@ msgid "Please save your changes before verifying settings."
1573
  msgstr ""
1574
 
1575
  #: nextend-facebook-connect/includes/provider.php:358
1576
- #: nextend-facebook-connect/includes/provider.php:717
1577
- #: nextend-facebook-connect/includes/provider.php:725
1578
  msgid "Authentication successful"
1579
  msgstr ""
1580
 
1581
- #: nextend-facebook-connect/includes/provider.php:654
1582
  #: nextend-facebook-connect/includes/user.php:168
1583
  #: nextend-facebook-connect/includes/user.php:597
1584
  msgid "Authentication error"
1585
  msgstr ""
1586
 
1587
- #: nextend-facebook-connect/includes/provider.php:669
1588
  msgid "Unlink successful."
1589
  msgstr ""
1590
 
1591
- #: nextend-facebook-connect/includes/provider.php:671
1592
  msgid "Unlink is not allowed!"
1593
  msgstr ""
1594
 
1595
- #: nextend-facebook-connect/includes/provider.php:886
1596
- #: nextend-facebook-connect/includes/provider.php:893
1597
  msgid "The test was successful"
1598
  msgstr ""
1599
 
1600
- #: nextend-facebook-connect/includes/provider.php:939
1601
  msgid "Authentication failed"
1602
  msgstr ""
1603
 
1604
- #: nextend-facebook-connect/includes/provider.php:1092
1605
  msgid "Identifier"
1606
  msgstr ""
1607
 
1608
- #: nextend-facebook-connect/includes/provider.php:1108
1609
  msgid "Profile picture"
1610
  msgstr ""
1611
 
@@ -1636,6 +1643,11 @@ msgstr ""
1636
  msgid "Register For This Site!"
1637
  msgstr ""
1638
 
 
 
 
 
 
1639
  #: nextend-facebook-connect/nextend-facebook-connect.php:37
1640
  #, php-format
1641
  msgid "%1$s requires PHP version %2$s+, plugin is currently NOT ACTIVE."
@@ -1659,12 +1671,12 @@ msgstr ""
1659
  msgid "Update now!"
1660
  msgstr ""
1661
 
1662
- #: nextend-facebook-connect/nextend-social-login.php:762
1663
- #: nextend-facebook-connect/nextend-social-login.php:1140
1664
  msgid "Social Login"
1665
  msgstr ""
1666
 
1667
- #: nextend-facebook-connect/nextend-social-login.php:1121
1668
  msgid "Social Accounts"
1669
  msgstr ""
1670
 
@@ -1706,7 +1718,6 @@ msgstr ""
1706
  #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:9
1707
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:25
1708
  #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:9
1709
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:17
1710
  #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:9
1711
  #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:9
1712
  #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:20
@@ -1814,7 +1825,7 @@ msgstr ""
1814
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:26
1815
  msgid ""
1816
  "Click on the \"<b>Create App</b>\" button and in the Popup choose the "
1817
- "\"<b>Build Connected Experiences</b>\" option!"
1818
  msgstr ""
1819
 
1820
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:27
@@ -1838,8 +1849,7 @@ msgid ""
1838
  msgstr ""
1839
 
1840
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:30
1841
- msgid ""
1842
- "Click the \"<b>Create App ID</b>\" button and complete the Security Check."
1843
  msgstr ""
1844
 
1845
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:31
@@ -1952,8 +1962,37 @@ msgid ""
1952
  msgstr ""
1953
 
1954
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:60
1955
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:40
1956
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:37
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1957
  #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:39
1958
  #: nextend-social-login-pro/providers/apple/admin/getting-started.php:122
1959
  #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:30
@@ -2092,7 +2131,6 @@ msgid ""
2092
  msgstr ""
2093
 
2094
  #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:12
2095
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:34
2096
  #, php-format
2097
  msgid ""
2098
  "Add the following URL to the \"<b>Authorised redirect URIs</b>\" field: <b>"
@@ -2100,37 +2138,60 @@ msgid ""
2100
  msgstr ""
2101
 
2102
  #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:13
2103
- #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:13
2104
  #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:14
2105
  msgid "Click on \"<b>Save</b>\""
2106
  msgstr ""
2107
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2108
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:18
 
2109
  msgid ""
2110
  "If you don't have a project yet, you'll need to create one. You can do this "
2111
- "by clicking on the blue \"<b>Create</b>\" button on the right side! ( If "
2112
- "you already have a project, click on the name of your project in the "
2113
- "dashboard instead, which will bring up a modal and click <b>\"New Project\"</"
2114
- "b>. )"
2115
  msgstr ""
2116
 
2117
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:19
2118
- msgid "Name your project and then click on the \"<b>Create</b>\" button again"
 
2119
  msgstr ""
2120
 
2121
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:20
2122
- msgid "Once you have a project, you'll end up in the dashboard."
 
 
 
2123
  msgstr ""
2124
 
2125
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:21
2126
- msgid "Click the “<b>OAuth consent screen</b>” button on the left hand side."
 
2127
  msgstr ""
2128
 
2129
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:22
 
2130
  msgid ""
2131
- "Choose a <b>User Type</b> according to your needs. If you want to enable the "
2132
- "social login with Google for any users with a Google account, then pick the "
2133
- "External option!"
2134
  msgstr ""
2135
 
2136
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:24
@@ -2142,51 +2203,81 @@ msgid ""
2142
  msgstr ""
2143
 
2144
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:27
 
2145
  msgid ""
2146
- "Enter a name for your App to the \"<b>Application name</b>\" field, which "
2147
- "will appear as the name of the app asking for consent."
2148
  msgstr ""
2149
 
2150
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:28
2151
  #, php-format
2152
  msgid ""
2153
- "Fill the \"<b>Authorized domains</b>\" field with your domain name probably: "
2154
- "<b>%s</b> without subdomains!"
2155
  msgstr ""
2156
 
2157
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:29
2158
- msgid "Save your settings!"
 
 
 
2159
  msgstr ""
2160
 
2161
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:30
2162
  #, php-format
2163
  msgid ""
2164
- "On the left side, click on the \"<b>%1$s</b>\" menu point, then click the "
2165
- "\"<b>%2$s</b>\" button in the top bar."
2166
  msgstr ""
2167
 
2168
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:31
2169
- msgid "Choose the \"<b>OAuth client ID</b>\" option."
 
 
 
2170
  msgstr ""
2171
 
2172
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:32
2173
- msgid "Select the \"<b>Web application</b>\" under Application type."
 
 
 
2174
  msgstr ""
2175
 
2176
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:33
2177
- msgid "Enter a \"<b>Name</b>\" for your OAuth client ID."
 
 
 
 
 
 
2178
  msgstr ""
2179
 
2180
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:35
2181
- msgid "Click on the \"<b>Create</b>\" button"
 
2182
  msgstr ""
2183
 
2184
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:36
 
 
 
 
 
 
 
 
 
 
 
 
 
2185
  msgid ""
2186
  "A modal should pop up with your credentials. If that doesn't happen, go to "
2187
- "the Credentials in the left hand menu and select your app by clicking on its "
2188
- "name and you'll be able to copy-paste the \"<b>Client ID</b>\" and "
2189
- "\"<b>Client Secret</b>\" from there."
2190
  msgstr ""
2191
 
2192
  #: nextend-facebook-connect/providers/google/admin/settings.php:27
@@ -2249,7 +2340,6 @@ msgid ""
2249
  msgstr ""
2250
 
2251
  #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:11
2252
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:27
2253
  msgid "Click on the <b>Edit</b> button at <b>Authentication settings</b>."
2254
  msgstr ""
2255
 
@@ -2258,20 +2348,10 @@ msgstr ""
2258
  msgid "Add the following URL to the \"<b>Callback URLs</b>\" field: <b>%s</b>"
2259
  msgstr ""
2260
 
2261
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:17
2262
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:25
2263
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:38
2264
- #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:9
2265
- #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:16
2266
- #: nextend-social-login-pro/providers/github/admin/getting-started.php:16
2267
- #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:9
2268
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:17
2269
- #: nextend-social-login-pro/providers/vk/admin/getting-started.php:16
2270
- #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:9
2271
- #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:16
2272
- #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:17
2273
  #, php-format
2274
- msgid "Log in with your %s credentials if you are not logged in."
 
2275
  msgstr ""
2276
 
2277
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:18
@@ -2288,68 +2368,72 @@ msgid ""
2288
  msgstr ""
2289
 
2290
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:20
2291
- msgid "Click on <b>+ New Project</b>!"
 
2292
  msgstr ""
2293
 
2294
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:21
2295
  msgid ""
2296
  "Name your project, and go through the basic setup. You’ll need to select "
2297
- "your use case and give a description."
2298
  msgstr ""
2299
 
2300
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:22
2301
- msgid "Create a new app, or select an existing one, then click <b>Complete</b>"
 
2302
  msgstr ""
2303
 
2304
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:23
 
2305
  msgid ""
2306
- "You’ll find your API key and secret on this page. Copy and paste the <b>API "
2307
- "key</b> and the <b>API secret key</b> to the corresponding fields at Nextend "
2308
- "Social Login and press <b>Save Changes</b>."
2309
  msgstr ""
2310
 
2311
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:24
2312
  #, php-format
2313
- msgid "Click on the <b>App Settings</b> button at %s."
 
 
2314
  msgstr ""
2315
 
2316
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:25
2317
- msgid "Find the Apps section, and the app you created a few steps ago."
 
2318
  msgstr ""
2319
 
2320
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:26
2321
- msgid "Click on the App settings icon. (The one that looks like a gear.)"
2322
- msgstr ""
2323
-
2324
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:28
2325
- msgid "Switch on the <b>Enable 3-legged OAuth</b> option."
2326
  msgstr ""
2327
 
2328
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:29
2329
  #, php-format
2330
- msgid "Add the following URL to the <b>Callback URLs</b> field: <b>%s</b>"
2331
  msgstr ""
2332
 
2333
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:30
2334
  #, php-format
2335
- msgid "Enter your site's URL to the <b>Website URL</b> field: <b>%s</b>"
2336
  msgstr ""
2337
 
2338
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:31
 
2339
  msgid ""
2340
  "If you want to get the email address as well, then don’t forget to enable "
2341
- "the <b>Request email address from users</b> option. In this case you also "
2342
- "need to fill the <b>Terms of service</b> and the <b>Privacy policy</b> "
2343
- "fields with the corresponding URLs!"
2344
  msgstr ""
2345
 
2346
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:32
2347
- msgid "Click on <b>Save</b>."
 
2348
  msgstr ""
2349
 
2350
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:33
2351
  #, php-format
2352
- msgid "Go back to Nextend Social Login and <b>Verify</b> your %s provider."
2353
  msgstr ""
2354
 
2355
  #: nextend-facebook-connect/providers/twitter/admin/settings.php:27
@@ -2671,8 +2755,10 @@ msgstr ""
2671
 
2672
  #: nextend-social-login-pro/providers/apple/admin/getting-started.php:35
2673
  msgid ""
2674
- "Make sure you have an <strong>active subscription for the Apple Developer "
2675
- "Program</strong>!"
 
 
2676
  msgstr ""
2677
 
2678
  #: nextend-social-login-pro/providers/apple/admin/getting-started.php:36
@@ -3588,34 +3674,34 @@ msgstr "Отвязать аккаунты от <b>Yahoo</b>"
3588
  msgid "Required permission: %1$s"
3589
  msgstr ""
3590
 
3591
- #: nextend-social-login-pro/template-parts/buddypress/login/above-separator.php:10
3592
- #: nextend-social-login-pro/template-parts/buddypress/login/below-separator.php:10
3593
- #: nextend-social-login-pro/template-parts/embedded-login/above-separator.php:10
3594
- #: nextend-social-login-pro/template-parts/embedded-login/below-separator.php:10
3595
- #: nextend-social-login-pro/template-parts/login/above-separator.php:20
3596
- #: nextend-social-login-pro/template-parts/login/below-separator.php:8
3597
- #: nextend-social-login-pro/template-parts/memberpress/login/above-separator.php:10
3598
- #: nextend-social-login-pro/template-parts/memberpress/login/below-separator.php:10
3599
- #: nextend-social-login-pro/template-parts/memberpress/sign-up/above-separator.php:10
3600
- #: nextend-social-login-pro/template-parts/memberpress/sign-up/below-separator.php:10
3601
- #: nextend-social-login-pro/template-parts/ultimate-member/login/above-separator.php:10
3602
- #: nextend-social-login-pro/template-parts/ultimate-member/login/below-separator.php:10
3603
- #: nextend-social-login-pro/template-parts/ultimate-member/register/above-separator.php:10
3604
- #: nextend-social-login-pro/template-parts/ultimate-member/register/below-separator.php:10
3605
- #: nextend-social-login-pro/template-parts/userpro/login/above-separator.php:10
3606
- #: nextend-social-login-pro/template-parts/userpro/login/below-separator.php:10
3607
- #: nextend-social-login-pro/template-parts/userpro/register/above-separator.php:10
3608
- #: nextend-social-login-pro/template-parts/userpro/register/below-separator.php:10
3609
- #: nextend-social-login-pro/template-parts/woocommerce/billing/above-separator.php:11
3610
- #: nextend-social-login-pro/template-parts/woocommerce/billing/below-separator.php:11
3611
- #: nextend-social-login-pro/template-parts/woocommerce/billing/default-separator-after.php:7
3612
- #: nextend-social-login-pro/template-parts/woocommerce/billing/default-separator-before.php:7
3613
- #: nextend-social-login-pro/template-parts/woocommerce/checkout-for-woocommerce/above-separator.php:15
3614
- #: nextend-social-login-pro/template-parts/woocommerce/checkout-for-woocommerce/below-separator.php:15
3615
- #: nextend-social-login-pro/template-parts/woocommerce/login/above-separator.php:10
3616
- #: nextend-social-login-pro/template-parts/woocommerce/login/below-separator.php:10
3617
- #: nextend-social-login-pro/template-parts/woocommerce/register/above-separator.php:10
3618
- #: nextend-social-login-pro/template-parts/woocommerce/register/below-separator.php:10
3619
  msgid "OR"
3620
  msgstr "ИЛИ"
3621
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: nextend-facebook-connect\n"
4
+ "POT-Creation-Date: 2021-06-16 14:01+0200\n"
5
+ "PO-Revision-Date: 2021-06-16 14:01+0200\n"
6
  "Last-Translator: \n"
7
  "Language-Team: nextend-facebook-connect\n"
8
  "Language: ru\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 3.0\n"
13
  "X-Poedit-Basepath: ../..\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
112
  msgid "User"
113
  msgstr ""
114
 
115
+ #: nextend-facebook-connect/admin/admin.php:204
116
  #, php-format
117
  msgid "%s needs json_decode function."
118
  msgstr ""
119
 
120
+ #: nextend-facebook-connect/admin/admin.php:204
121
  msgid "Please contact your server administrator and ask for solution!"
122
  msgstr ""
123
 
124
+ #: nextend-facebook-connect/admin/admin.php:236
125
+ #: nextend-facebook-connect/admin/admin.php:266
126
  msgid "Settings saved."
127
  msgstr ""
128
 
129
+ #: nextend-facebook-connect/admin/admin.php:245
130
  msgid "The activation was successful"
131
  msgstr ""
132
 
133
+ #: nextend-facebook-connect/admin/admin.php:256
134
  msgid "Deactivate completed."
135
  msgstr ""
136
 
137
+ #: nextend-facebook-connect/admin/admin.php:435
138
  #: nextend-facebook-connect/admin/templates-provider/menu.php:15
139
  #: nextend-facebook-connect/admin/templates/providers.php:89
140
  #: nextend-facebook-connect/admin/templates/providers.php:101
142
  msgid "Settings"
143
  msgstr ""
144
 
145
+ #: nextend-facebook-connect/admin/admin.php:518
146
  #: nextend-facebook-connect/includes/oauth2.php:143
147
  #: nextend-facebook-connect/includes/oauth2.php:288
148
  #: nextend-facebook-connect/providers/facebook/facebook-client.php:84
153
  msgid "Unexpected response: %s"
154
  msgstr ""
155
 
156
+ #: nextend-facebook-connect/admin/admin.php:579
157
  #: nextend-facebook-connect/admin/templates/fix-redirect-uri.php:21
158
  #, php-format
159
  msgid ""
161
  "URIs in the related social applications."
162
  msgstr ""
163
 
164
+ #: nextend-facebook-connect/admin/admin.php:580
165
  #: nextend-social-login-pro/providers/apple/apple.php:310
166
  msgid "Fix Error"
167
  msgstr ""
168
 
169
+ #: nextend-facebook-connect/admin/admin.php:580
170
  msgid "Oauth Redirect URI"
171
  msgstr ""
172
 
173
+ #: nextend-facebook-connect/admin/admin.php:597
174
  #, php-format
175
  msgid ""
176
  "%1$s detected that %2$s installed on your site. You need the Pro Addon to "
177
  "display Social Login buttons in %2$s login form!"
178
  msgstr ""
179
 
180
+ #: nextend-facebook-connect/admin/admin.php:598
181
  msgid "Dismiss and check Pro Addon"
182
  msgstr ""
183
 
184
+ #: nextend-facebook-connect/admin/admin.php:598
185
  msgid "Dismiss"
186
  msgstr ""
187
 
188
+ #: nextend-facebook-connect/admin/admin.php:604
189
  #, php-format
190
  msgid ""
191
  "%1$s detected that %2$s installed on your site. You must set \"<b>Page for "
193
  "work properly."
194
  msgstr ""
195
 
196
+ #: nextend-facebook-connect/admin/admin.php:605
197
  msgid "Fix now"
198
  msgstr ""
199
 
200
+ #: nextend-facebook-connect/admin/admin.php:629
201
  msgid "Activate your Pro Addon"
202
  msgstr ""
203
 
204
+ #: nextend-facebook-connect/admin/admin.php:630
205
  msgid ""
206
  "To be able to use the Pro features, you need to activate Nextend Social "
207
  "Login Pro Addon. You can do this by clicking on the Activate button below "
208
  "then select the related purchase."
209
  msgstr ""
210
 
211
+ #: nextend-facebook-connect/admin/admin.php:635
212
  #: nextend-social-login-pro/nextend-social-login-pro.php:110
213
  msgid "Activate"
214
  msgstr ""
215
 
216
+ #: nextend-facebook-connect/admin/admin.php:733
217
  msgid "License key"
218
  msgstr ""
219
 
220
+ #: nextend-facebook-connect/admin/admin.php:756
221
  msgid "OAuth proxy page"
222
  msgstr ""
223
 
224
+ #: nextend-facebook-connect/admin/admin.php:759
225
  msgid "Register flow page"
226
  msgstr ""
227
 
230
  msgid "You have logged in successfully."
231
  msgstr ""
232
 
233
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:86
234
  msgid "Login label"
235
  msgstr ""
236
 
237
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:91
238
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:107
239
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:120
240
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:131
241
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:160
242
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:190
243
  #: nextend-facebook-connect/admin/templates/settings/privacy.php:53
244
  msgid "Reset to default"
245
  msgstr ""
246
 
247
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:101
248
  msgid "Register label"
249
  msgstr ""
250
 
251
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:114
252
  msgid "Link label"
253
  msgstr ""
254
 
255
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:126
256
  msgid "Unlink label"
257
  msgstr ""
258
 
259
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:137
260
  msgid "Default button"
261
  msgstr ""
262
 
263
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:153
264
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:183
265
  msgid "Use custom button"
266
  msgstr ""
267
 
268
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:160
269
  #, php-format
270
  msgid "Use the %s in your custom button's code to make the label show up."
271
  msgstr ""
272
 
273
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:168
274
  msgid "Icon button"
275
  msgstr ""
276
 
277
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:199
278
  #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:140
279
  #: nextend-facebook-connect/admin/templates-provider/sync-data.php:104
280
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:170
452
  msgstr ""
453
 
454
  #: nextend-facebook-connect/admin/templates-provider/sync-data.php:50
 
455
  msgid "Register"
456
  msgstr ""
457
 
1388
  msgstr ""
1389
 
1390
  #: nextend-facebook-connect/admin/templates/settings/privacy.php:102
1391
+ #: nextend-facebook-connect/includes/provider.php:1102
1392
  msgid "Access token"
1393
  msgstr ""
1394
 
1502
  msgstr[0] ""
1503
  msgstr[1] ""
1504
 
1505
+ #: nextend-facebook-connect/includes/avatar.php:399
1506
+ msgid "Invalid URL Provided."
1507
+ msgstr ""
1508
+
1509
+ #: nextend-facebook-connect/includes/avatar.php:404
1510
+ msgid "Could not create Temporary file."
1511
+ msgstr ""
1512
+
1513
  #: nextend-facebook-connect/includes/compat-wp-login.php:63
1514
  #, php-format
1515
  msgid "%1$s &lsaquo; %2$s &#8212; WordPress"
1580
  msgstr ""
1581
 
1582
  #: nextend-facebook-connect/includes/provider.php:358
1583
+ #: nextend-facebook-connect/includes/provider.php:719
1584
+ #: nextend-facebook-connect/includes/provider.php:727
1585
  msgid "Authentication successful"
1586
  msgstr ""
1587
 
1588
+ #: nextend-facebook-connect/includes/provider.php:656
1589
  #: nextend-facebook-connect/includes/user.php:168
1590
  #: nextend-facebook-connect/includes/user.php:597
1591
  msgid "Authentication error"
1592
  msgstr ""
1593
 
1594
+ #: nextend-facebook-connect/includes/provider.php:671
1595
  msgid "Unlink successful."
1596
  msgstr ""
1597
 
1598
+ #: nextend-facebook-connect/includes/provider.php:673
1599
  msgid "Unlink is not allowed!"
1600
  msgstr ""
1601
 
1602
+ #: nextend-facebook-connect/includes/provider.php:888
1603
+ #: nextend-facebook-connect/includes/provider.php:895
1604
  msgid "The test was successful"
1605
  msgstr ""
1606
 
1607
+ #: nextend-facebook-connect/includes/provider.php:941
1608
  msgid "Authentication failed"
1609
  msgstr ""
1610
 
1611
+ #: nextend-facebook-connect/includes/provider.php:1094
1612
  msgid "Identifier"
1613
  msgstr ""
1614
 
1615
+ #: nextend-facebook-connect/includes/provider.php:1110
1616
  msgid "Profile picture"
1617
  msgstr ""
1618
 
1643
  msgid "Register For This Site!"
1644
  msgstr ""
1645
 
1646
+ #: nextend-facebook-connect/includes/userData.php:189
1647
+ msgctxt "Register form submit button label"
1648
+ msgid "Register"
1649
+ msgstr ""
1650
+
1651
  #: nextend-facebook-connect/nextend-facebook-connect.php:37
1652
  #, php-format
1653
  msgid "%1$s requires PHP version %2$s+, plugin is currently NOT ACTIVE."
1671
  msgid "Update now!"
1672
  msgstr ""
1673
 
1674
+ #: nextend-facebook-connect/nextend-social-login.php:820
1675
+ #: nextend-facebook-connect/nextend-social-login.php:1199
1676
  msgid "Social Login"
1677
  msgstr ""
1678
 
1679
+ #: nextend-facebook-connect/nextend-social-login.php:1180
1680
  msgid "Social Accounts"
1681
  msgstr ""
1682
 
1718
  #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:9
1719
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:25
1720
  #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:9
 
1721
  #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:9
1722
  #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:9
1723
  #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:20
1825
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:26
1826
  msgid ""
1827
  "Click on the \"<b>Create App</b>\" button and in the Popup choose the "
1828
+ "\"<b>Consumer</b>\" App type!"
1829
  msgstr ""
1830
 
1831
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:27
1849
  msgstr ""
1850
 
1851
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:30
1852
+ msgid "Click the \"<b>Create App</b>\" button and complete the Security Check."
 
1853
  msgstr ""
1854
 
1855
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:31
1962
  msgstr ""
1963
 
1964
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:60
1965
+ msgid "Maintaining the Facebook App:"
1966
+ msgstr ""
1967
+
1968
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:61
1969
+ #, php-format
1970
+ msgid ""
1971
+ "<strong><u>Facebook Data Use Checkup:</u></strong> To protecting people's "
1972
+ "privacy, Facebook might requests you to fill some forms, so they can ensure "
1973
+ "that your API access and data use comply with the Facebook policies.\n"
1974
+ "If Facebook displays the \"%1$s\" modal for your App, then in our "
1975
+ "%2$sdocumentation%3$s you can find more information about the permissions "
1976
+ "that we need."
1977
+ msgstr ""
1978
+
1979
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:63
1980
+ #, php-format
1981
+ msgid ""
1982
+ "<strong><u>New Data Access Levels:</u></strong> Facebook started replacing "
1983
+ "the Development Mode / Live Mode switch in some Apps with %1$s ( earlier "
1984
+ "Development Mode ) and %2$s ( earlier Live mode ), which can be modified on "
1985
+ "the <strong>%3$s</strong> page. You can reach this page from the left hand "
1986
+ "menu of your App, under <strong>%4$s</strong>.\n"
1987
+ "If you want people outside of your business to be able to use their Faceook "
1988
+ "account to register and login over your App, then make sure you requested "
1989
+ "<strong>%2$s</strong> for the <strong>%5$s</strong> and <strong>%6$s</"
1990
+ "strong> permissions. "
1991
+ msgstr ""
1992
+
1993
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:67
1994
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:42
1995
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:35
1996
  #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:39
1997
  #: nextend-social-login-pro/providers/apple/admin/getting-started.php:122
1998
  #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:30
2131
  msgstr ""
2132
 
2133
  #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:12
 
2134
  #, php-format
2135
  msgid ""
2136
  "Add the following URL to the \"<b>Authorised redirect URIs</b>\" field: <b>"
2138
  msgstr ""
2139
 
2140
  #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:13
2141
+ #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:14
2142
  #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:14
2143
  msgid "Click on \"<b>Save</b>\""
2144
  msgstr ""
2145
 
2146
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:17
2147
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:17
2148
+ #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:25
2149
+ #: nextend-social-login-pro/providers/apple/admin/getting-started.php:38
2150
+ #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:9
2151
+ #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:16
2152
+ #: nextend-social-login-pro/providers/github/admin/getting-started.php:16
2153
+ #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:9
2154
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:17
2155
+ #: nextend-social-login-pro/providers/vk/admin/getting-started.php:16
2156
+ #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:9
2157
+ #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:16
2158
+ #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:17
2159
+ #, php-format
2160
+ msgid "Log in with your %s credentials if you are not logged in."
2161
+ msgstr ""
2162
+
2163
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:18
2164
+ #, php-format
2165
  msgid ""
2166
  "If you don't have a project yet, you'll need to create one. You can do this "
2167
+ "by clicking on the blue \"<b>%1$s</b>\" text on the right side! ( If you "
2168
+ "already have a project, then in the top bar click on the name of your "
2169
+ "project instead, which will bring up a modal and click <b>\"%2$s\"</b>. )"
 
2170
  msgstr ""
2171
 
2172
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:19
2173
+ #, php-format
2174
+ msgid "Name your project and then click on the \"<b>%1$s</b>\" button again!"
2175
  msgstr ""
2176
 
2177
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:20
2178
+ msgid ""
2179
+ "Once you have a project, you'll end up in the dashboard. ( If earlier you "
2180
+ "have already had a Project, then make sure you select the created project in "
2181
+ "the top bar! )"
2182
  msgstr ""
2183
 
2184
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:21
2185
+ #, php-format
2186
+ msgid "Click the “<b>%1$s</b>” button on the left hand side."
2187
  msgstr ""
2188
 
2189
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:22
2190
+ #, php-format
2191
  msgid ""
2192
+ "Choose a <b>%1$s</b> according to your needs and press \"<b>%2$s</b>\". If "
2193
+ "you want to enable the social login with %3$s for any users with a %3$s "
2194
+ "account, then pick the \"%4$s\" option!"
2195
  msgstr ""
2196
 
2197
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:24
2203
  msgstr ""
2204
 
2205
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:27
2206
+ #, php-format
2207
  msgid ""
2208
+ "Enter a name for your App to the \"<b>%1$s</b>\" field, which will appear as "
2209
+ "the name of the app asking for consent."
2210
  msgstr ""
2211
 
2212
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:28
2213
  #, php-format
2214
  msgid ""
2215
+ "For the \"<b>%1$s</b>\" field, select an email address that users can use to "
2216
+ "contact you with questions about their consent."
2217
  msgstr ""
2218
 
2219
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:29
2220
+ #, php-format
2221
+ msgid ""
2222
+ "Under the \"<b>%1$s</b>\" section press the \"<b>%2$s</b>\" button and "
2223
+ "enter your domain name, probably: <b>%3$s</b> without subdomains!"
2224
  msgstr ""
2225
 
2226
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:30
2227
  #, php-format
2228
  msgid ""
2229
+ "At the \"<b>%1$s</b>\" section, enter an email address that %2$s can use to "
2230
+ "notify you about any changes to your project."
2231
  msgstr ""
2232
 
2233
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:31
2234
+ #, php-format
2235
+ msgid ""
2236
+ "Press \"<b>%1$s</b>\" then press it again on the \"%2$s\", \"%3$s\" pages, "
2237
+ "too!"
2238
  msgstr ""
2239
 
2240
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:32
2241
+ #, php-format
2242
+ msgid ""
2243
+ "On the left side, click on the \"<b>%1$s</b>\" menu point, then click the "
2244
+ "\"<b>%2$s</b>\" button in the top bar."
2245
  msgstr ""
2246
 
2247
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:33
2248
+ #, php-format
2249
+ msgid "Choose the \"<b>%1$s</b>\" option."
2250
+ msgstr ""
2251
+
2252
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:34
2253
+ #, php-format
2254
+ msgid "Select the \"<b>%1$s</b>\" under Application type."
2255
  msgstr ""
2256
 
2257
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:35
2258
+ #, php-format
2259
+ msgid "Enter a \"<b>%1$s</b>\" for your OAuth client ID."
2260
  msgstr ""
2261
 
2262
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:36
2263
+ #, php-format
2264
+ msgid ""
2265
+ "Under the \"<b>%1$s</b>\" section click \"<b>%2$s</b>\" and add the "
2266
+ "following URL: <b>%3$s</b>"
2267
+ msgstr ""
2268
+
2269
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:37
2270
+ #, php-format
2271
+ msgid "Click on the \"<b>%1$s</b>\" button"
2272
+ msgstr ""
2273
+
2274
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:38
2275
+ #, php-format
2276
  msgid ""
2277
  "A modal should pop up with your credentials. If that doesn't happen, go to "
2278
+ "the %1$s in the left hand menu and select your app by clicking on its name "
2279
+ "and you'll be able to copy-paste the \"<b>%2$s</b>\" and \"<b>%3$s</b>\" "
2280
+ "from there."
2281
  msgstr ""
2282
 
2283
  #: nextend-facebook-connect/providers/google/admin/settings.php:27
2340
  msgstr ""
2341
 
2342
  #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:11
 
2343
  msgid "Click on the <b>Edit</b> button at <b>Authentication settings</b>."
2344
  msgstr ""
2345
 
2348
  msgid "Add the following URL to the \"<b>Callback URLs</b>\" field: <b>%s</b>"
2349
  msgstr ""
2350
 
2351
+ #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:13
 
 
 
 
 
 
 
 
 
 
 
2352
  #, php-format
2353
+ msgid ""
2354
+ "Make sure the \"<b>%1$s</b>\" field contains the following URL: <b>%2$s</b>"
2355
  msgstr ""
2356
 
2357
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:18
2368
  msgstr ""
2369
 
2370
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:20
2371
+ #, php-format
2372
+ msgid "Click on \"<b>%s</b>\"!"
2373
  msgstr ""
2374
 
2375
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:21
2376
  msgid ""
2377
  "Name your project, and go through the basic setup. You’ll need to select "
2378
+ "your use case, give a description and enter a name for the App as well."
2379
  msgstr ""
2380
 
2381
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:22
2382
+ #, php-format
2383
+ msgid "Click \"<b>%s</b>\"!"
2384
  msgstr ""
2385
 
2386
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:23
2387
+ #, php-format
2388
  msgid ""
2389
+ "You’ll find your API key and secret on this page. Copy and paste the \"<b>"
2390
+ "%1$s</b>\" and the \"<b>%2$s</b>\" to the corresponding fields at %3$s and "
2391
+ "press \"<b>Save Changes</b>\"."
2392
  msgstr ""
2393
 
2394
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:24
2395
  #, php-format
2396
+ msgid ""
2397
+ "Go back to your Twitter project and on the left side, under the \"<b>%s</b>"
2398
+ "\" section click on the name of your App."
2399
  msgstr ""
2400
 
2401
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:25
2402
+ #, php-format
2403
+ msgid "Scroll down and click on the \"<b>%1$s</b>\" button at \"<b>%2$s</b>\"."
2404
  msgstr ""
2405
 
2406
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:26
2407
+ #, php-format
2408
+ msgid "Switch on the \"<b>%s</b>\" option."
 
 
 
2409
  msgstr ""
2410
 
2411
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:27
2412
  #, php-format
2413
+ msgid "Add the following URL to the \"<b>%1$s</b>\" field: <b>%2$s</b>"
2414
  msgstr ""
2415
 
2416
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:28
2417
  #, php-format
2418
+ msgid "Enter your site's URL to the \"<b>%1$s</b>\" field: <b>%2$s</b>"
2419
  msgstr ""
2420
 
2421
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:29
2422
+ #, php-format
2423
  msgid ""
2424
  "If you want to get the email address as well, then don’t forget to enable "
2425
+ "the \"<b>%1$s</b>\" option. In this case you also need to fill the \"<b>"
2426
+ "%2$s</b>\" and the \"<b>%3$s</b>\" fields with the corresponding URLs!"
 
2427
  msgstr ""
2428
 
2429
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:30
2430
+ #, php-format
2431
+ msgid "Click on \"<b>%s</b>\"."
2432
  msgstr ""
2433
 
2434
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:31
2435
  #, php-format
2436
+ msgid "Go back to %1$s and <b>Verify</b> your %2$s provider."
2437
  msgstr ""
2438
 
2439
  #: nextend-facebook-connect/providers/twitter/admin/settings.php:27
2755
 
2756
  #: nextend-social-login-pro/providers/apple/admin/getting-started.php:35
2757
  msgid ""
2758
+ "Make sure you have an <strong>active subscription for the <a href=\"https://"
2759
+ "developer.apple.com/programs/\" target=\"_blank\">Apple Developer Program</"
2760
+ "a></strong>, as that is necessary for both creating and maintaining an Apple "
2761
+ "App!"
2762
  msgstr ""
2763
 
2764
  #: nextend-social-login-pro/providers/apple/admin/getting-started.php:36
3674
  msgid "Required permission: %1$s"
3675
  msgstr ""
3676
 
3677
+ #: nextend-social-login-pro/template-parts/buddypress/login/above-separator.php:18
3678
+ #: nextend-social-login-pro/template-parts/buddypress/login/below-separator.php:18
3679
+ #: nextend-social-login-pro/template-parts/embedded-login/above-separator.php:18
3680
+ #: nextend-social-login-pro/template-parts/embedded-login/below-separator.php:18
3681
+ #: nextend-social-login-pro/template-parts/login/above-separator.php:25
3682
+ #: nextend-social-login-pro/template-parts/login/below-separator.php:30
3683
+ #: nextend-social-login-pro/template-parts/memberpress/login/above-separator.php:18
3684
+ #: nextend-social-login-pro/template-parts/memberpress/login/below-separator.php:18
3685
+ #: nextend-social-login-pro/template-parts/memberpress/sign-up/above-separator.php:18
3686
+ #: nextend-social-login-pro/template-parts/memberpress/sign-up/below-separator.php:18
3687
+ #: nextend-social-login-pro/template-parts/ultimate-member/login/above-separator.php:18
3688
+ #: nextend-social-login-pro/template-parts/ultimate-member/login/below-separator.php:18
3689
+ #: nextend-social-login-pro/template-parts/ultimate-member/register/above-separator.php:18
3690
+ #: nextend-social-login-pro/template-parts/ultimate-member/register/below-separator.php:18
3691
+ #: nextend-social-login-pro/template-parts/userpro/login/above-separator.php:18
3692
+ #: nextend-social-login-pro/template-parts/userpro/login/below-separator.php:18
3693
+ #: nextend-social-login-pro/template-parts/userpro/register/above-separator.php:18
3694
+ #: nextend-social-login-pro/template-parts/userpro/register/below-separator.php:18
3695
+ #: nextend-social-login-pro/template-parts/woocommerce/billing/above-separator.php:25
3696
+ #: nextend-social-login-pro/template-parts/woocommerce/billing/below-separator.php:25
3697
+ #: nextend-social-login-pro/template-parts/woocommerce/billing/default-separator-after.php:13
3698
+ #: nextend-social-login-pro/template-parts/woocommerce/billing/default-separator-before.php:13
3699
+ #: nextend-social-login-pro/template-parts/woocommerce/checkout-for-woocommerce/above-separator.php:25
3700
+ #: nextend-social-login-pro/template-parts/woocommerce/checkout-for-woocommerce/below-separator.php:25
3701
+ #: nextend-social-login-pro/template-parts/woocommerce/login/above-separator.php:18
3702
+ #: nextend-social-login-pro/template-parts/woocommerce/login/below-separator.php:18
3703
+ #: nextend-social-login-pro/template-parts/woocommerce/register/above-separator.php:18
3704
+ #: nextend-social-login-pro/template-parts/woocommerce/register/below-separator.php:18
3705
  msgid "OR"
3706
  msgstr "ИЛИ"
3707
 
languages/nextend-facebook-connect-zh_ZH.mo CHANGED
Binary file
languages/nextend-facebook-connect-zh_ZH.po CHANGED
@@ -1,15 +1,15 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: ss3\n"
4
- "POT-Creation-Date: 2021-01-27 13:58+0100\n"
5
- "PO-Revision-Date: 2021-01-27 13:58+0100\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: zh_CN\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 2.4.1\n"
13
  "X-Poedit-Basepath: ../..\n"
14
  "Plural-Forms: nplurals=1; plural=0;\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
@@ -117,33 +117,33 @@ msgstr ""
117
  msgid "User"
118
  msgstr "用户"
119
 
120
- #: nextend-facebook-connect/admin/admin.php:206
121
  #, php-format
122
  msgid "%s needs json_decode function."
123
  msgstr "%s 需要 json_decode 函数。"
124
 
125
- #: nextend-facebook-connect/admin/admin.php:206
126
  msgid "Please contact your server administrator and ask for solution!"
127
  msgstr "请与服务器管理员联系并寻求解决方案!"
128
 
129
- #: nextend-facebook-connect/admin/admin.php:238
130
- #: nextend-facebook-connect/admin/admin.php:268
131
  msgid "Settings saved."
132
  msgstr "设置已保存。"
133
 
134
- #: nextend-facebook-connect/admin/admin.php:247
135
  #, fuzzy
136
  #| msgid "The authorization was successful"
137
  msgid "The activation was successful"
138
  msgstr "授权成功"
139
 
140
- #: nextend-facebook-connect/admin/admin.php:258
141
  #, fuzzy
142
  #| msgid "Deauthorize completed."
143
  msgid "Deactivate completed."
144
  msgstr "取消授权."
145
 
146
- #: nextend-facebook-connect/admin/admin.php:437
147
  #: nextend-facebook-connect/admin/templates-provider/menu.php:15
148
  #: nextend-facebook-connect/admin/templates/providers.php:89
149
  #: nextend-facebook-connect/admin/templates/providers.php:101
@@ -151,7 +151,7 @@ msgstr "取消授权."
151
  msgid "Settings"
152
  msgstr "设置"
153
 
154
- #: nextend-facebook-connect/admin/admin.php:520
155
  #: nextend-facebook-connect/includes/oauth2.php:143
156
  #: nextend-facebook-connect/includes/oauth2.php:288
157
  #: nextend-facebook-connect/providers/facebook/facebook-client.php:84
@@ -162,7 +162,7 @@ msgstr "设置"
162
  msgid "Unexpected response: %s"
163
  msgstr "响应出现意外情况: %s"
164
 
165
- #: nextend-facebook-connect/admin/admin.php:581
166
  #: nextend-facebook-connect/admin/templates/fix-redirect-uri.php:21
167
  #, php-format
168
  msgid ""
@@ -172,16 +172,16 @@ msgstr ""
172
  "%s 检测到您的登录网址已更改。您必须更新相关社交应用程序中的Oauth redirect "
173
  "URIs."
174
 
175
- #: nextend-facebook-connect/admin/admin.php:582
176
  #: nextend-social-login-pro/providers/apple/apple.php:310
177
  msgid "Fix Error"
178
  msgstr "修复错误"
179
 
180
- #: nextend-facebook-connect/admin/admin.php:582
181
  msgid "Oauth Redirect URI"
182
  msgstr "Oauth Redirect URI"
183
 
184
- #: nextend-facebook-connect/admin/admin.php:599
185
  #, php-format
186
  msgid ""
187
  "%1$s detected that %2$s installed on your site. You need the Pro Addon to "
@@ -190,15 +190,15 @@ msgstr ""
190
  "%1$s 检测到 %2$s 已经安装在你的网站. 你需要安装专业版本去显示社交登录按钮 "
191
  "%2$s 登录表单!"
192
 
193
- #: nextend-facebook-connect/admin/admin.php:600
194
  msgid "Dismiss and check Pro Addon"
195
  msgstr "解除并检查专业版本"
196
 
197
- #: nextend-facebook-connect/admin/admin.php:600
198
  msgid "Dismiss"
199
  msgstr "解除"
200
 
201
- #: nextend-facebook-connect/admin/admin.php:606
202
  #, php-format
203
  msgid ""
204
  "%1$s detected that %2$s installed on your site. You must set \"<b>Page for "
@@ -206,19 +206,19 @@ msgid ""
206
  "work properly."
207
  msgstr ""
208
 
209
- #: nextend-facebook-connect/admin/admin.php:607
210
  #, fuzzy
211
  #| msgid "Fix Error"
212
  msgid "Fix now"
213
  msgstr "修复错误"
214
 
215
- #: nextend-facebook-connect/admin/admin.php:631
216
  #, fuzzy
217
  #| msgid "Activate Pro Addon"
218
  msgid "Activate your Pro Addon"
219
  msgstr "启用专业版本插件"
220
 
221
- #: nextend-facebook-connect/admin/admin.php:632
222
  #, fuzzy
223
  #| msgid ""
224
  #| "To be able to use the Pro features, you need to authorize Nextend Social "
@@ -232,20 +232,20 @@ msgstr ""
232
  "要想使用专业版本功能,你需要 Nextend Social Connect 专业版本的授权。你可以点"
233
  "击下面的授权按钮,然后选择购买。"
234
 
235
- #: nextend-facebook-connect/admin/admin.php:637
236
  #: nextend-social-login-pro/nextend-social-login-pro.php:110
237
  msgid "Activate"
238
  msgstr ""
239
 
240
- #: nextend-facebook-connect/admin/admin.php:735
241
  msgid "License key"
242
  msgstr "密匙"
243
 
244
- #: nextend-facebook-connect/admin/admin.php:758
245
  msgid "OAuth proxy page"
246
  msgstr ""
247
 
248
- #: nextend-facebook-connect/admin/admin.php:761
249
  #, fuzzy
250
  #| msgid "Register"
251
  msgid "Register flow page"
@@ -256,53 +256,53 @@ msgstr "注册"
256
  msgid "You have logged in successfully."
257
  msgstr "你已经成功登录。"
258
 
259
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:80
260
  msgid "Login label"
261
  msgstr "登录标签"
262
 
263
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:85
264
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:101
265
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:114
266
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:125
267
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:154
268
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:184
269
  #: nextend-facebook-connect/admin/templates/settings/privacy.php:53
270
  msgid "Reset to default"
271
  msgstr "恢复默认设置"
272
 
273
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:95
274
  #, fuzzy
275
  #| msgid "Register"
276
  msgid "Register label"
277
  msgstr "注册"
278
 
279
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:108
280
  msgid "Link label"
281
  msgstr "链接标签"
282
 
283
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:120
284
  msgid "Unlink label"
285
  msgstr "解除链接标签"
286
 
287
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:131
288
  msgid "Default button"
289
  msgstr "默认按钮"
290
 
291
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:147
292
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:177
293
  msgid "Use custom button"
294
  msgstr "使用自定义按钮"
295
 
296
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:154
297
  #, php-format
298
  msgid "Use the %s in your custom button's code to make the label show up."
299
  msgstr "使用 %s 在你的自定义按钮代码显示界面."
300
 
301
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:162
302
  msgid "Icon button"
303
  msgstr "图标按钮"
304
 
305
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:193
306
  #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:140
307
  #: nextend-facebook-connect/admin/templates-provider/sync-data.php:104
308
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:170
@@ -484,7 +484,6 @@ msgid "Default"
484
  msgstr "默认"
485
 
486
  #: nextend-facebook-connect/admin/templates-provider/sync-data.php:50
487
- #: nextend-facebook-connect/includes/userData.php:188
488
  msgid "Register"
489
  msgstr "注册"
490
 
@@ -1507,7 +1506,7 @@ msgid "Avatar"
1507
  msgstr ""
1508
 
1509
  #: nextend-facebook-connect/admin/templates/settings/privacy.php:102
1510
- #: nextend-facebook-connect/includes/provider.php:1100
1511
  msgid "Access token"
1512
  msgstr ""
1513
 
@@ -1647,6 +1646,14 @@ msgid "Avatar <span class=\"count\">(%s)</span>"
1647
  msgid_plural "Avatar <span class=\"count\">(%s)</span>"
1648
  msgstr[0] ""
1649
 
 
 
 
 
 
 
 
 
1650
  #: nextend-facebook-connect/includes/compat-wp-login.php:63
1651
  #, php-format
1652
  msgid "%1$s &lsaquo; %2$s &#8212; WordPress"
@@ -1722,39 +1729,39 @@ msgid "Please save your changes before verifying settings."
1722
  msgstr ""
1723
 
1724
  #: nextend-facebook-connect/includes/provider.php:358
1725
- #: nextend-facebook-connect/includes/provider.php:717
1726
- #: nextend-facebook-connect/includes/provider.php:725
1727
  msgid "Authentication successful"
1728
  msgstr "授权成功"
1729
 
1730
- #: nextend-facebook-connect/includes/provider.php:654
1731
  #: nextend-facebook-connect/includes/user.php:168
1732
  #: nextend-facebook-connect/includes/user.php:597
1733
  msgid "Authentication error"
1734
  msgstr "授权认证出错"
1735
 
1736
- #: nextend-facebook-connect/includes/provider.php:669
1737
  msgid "Unlink successful."
1738
  msgstr "解除链接成功."
1739
 
1740
- #: nextend-facebook-connect/includes/provider.php:671
1741
  msgid "Unlink is not allowed!"
1742
  msgstr ""
1743
 
1744
- #: nextend-facebook-connect/includes/provider.php:886
1745
- #: nextend-facebook-connect/includes/provider.php:893
1746
  msgid "The test was successful"
1747
  msgstr "测试成功"
1748
 
1749
- #: nextend-facebook-connect/includes/provider.php:939
1750
  msgid "Authentication failed"
1751
  msgstr "授权认证失败"
1752
 
1753
- #: nextend-facebook-connect/includes/provider.php:1092
1754
  msgid "Identifier"
1755
  msgstr ""
1756
 
1757
- #: nextend-facebook-connect/includes/provider.php:1108
1758
  msgid "Profile picture"
1759
  msgstr ""
1760
 
@@ -1790,6 +1797,13 @@ msgstr ""
1790
  msgid "Register For This Site!"
1791
  msgstr "注册此网站!"
1792
 
 
 
 
 
 
 
 
1793
  #: nextend-facebook-connect/nextend-facebook-connect.php:37
1794
  #, php-format
1795
  msgid "%1$s requires PHP version %2$s+, plugin is currently NOT ACTIVE."
@@ -1813,12 +1827,12 @@ msgstr "请更新 %1$s 到 %2$s 版本."
1813
  msgid "Update now!"
1814
  msgstr "现在更新!"
1815
 
1816
- #: nextend-facebook-connect/nextend-social-login.php:762
1817
- #: nextend-facebook-connect/nextend-social-login.php:1140
1818
  msgid "Social Login"
1819
  msgstr "社交登录"
1820
 
1821
- #: nextend-facebook-connect/nextend-social-login.php:1121
1822
  msgid "Social Accounts"
1823
  msgstr "社交账号"
1824
 
@@ -1863,7 +1877,6 @@ msgstr "导航 %s"
1863
  #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:9
1864
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:25
1865
  #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:9
1866
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:17
1867
  #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:9
1868
  #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:9
1869
  #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:20
@@ -1984,7 +1997,7 @@ msgstr "导航 %s"
1984
  #| msgid "Click on the \"Create New App\" button"
1985
  msgid ""
1986
  "Click on the \"<b>Create App</b>\" button and in the Popup choose the "
1987
- "\"<b>Build Connected Experiences</b>\" option!"
1988
  msgstr "点击\"创建新应用\"按钮"
1989
 
1990
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:27
@@ -2010,8 +2023,7 @@ msgstr ""
2010
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:30
2011
  #, fuzzy
2012
  #| msgid "Click on the \"Create New App\" button"
2013
- msgid ""
2014
- "Click the \"<b>Create App ID</b>\" button and complete the Security Check."
2015
  msgstr "点击\"创建新应用\"按钮"
2016
 
2017
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:31
@@ -2153,8 +2165,37 @@ msgid ""
2153
  msgstr ""
2154
 
2155
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:60
2156
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:40
2157
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:37
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2158
  #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:39
2159
  #: nextend-social-login-pro/providers/apple/admin/getting-started.php:122
2160
  #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:30
@@ -2295,7 +2336,6 @@ msgid ""
2295
  msgstr ""
2296
 
2297
  #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:12
2298
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:34
2299
  #, fuzzy, php-format
2300
  #| msgid ""
2301
  #| "Add the following URL to the \"Authorised redirect URIs\" field: <b>%s</b>"
@@ -2305,47 +2345,70 @@ msgid ""
2305
  msgstr "将旁边的URL 填入\"Authorised redirect URIs\" 应该是 <b>%s</b>"
2306
 
2307
  #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:13
2308
- #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:13
2309
  #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:14
2310
  #, fuzzy
2311
  #| msgid "Click on \"Save\""
2312
  msgid "Click on \"<b>Save</b>\""
2313
  msgstr "点击\"保存“"
2314
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2315
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:18
2316
- #, fuzzy
2317
  #| msgid ""
2318
  #| "If you don't have a project yet, you'll need to create one. You can do "
2319
  #| "this by clicking on the blue \"Create project\" button on the right side"
2320
  msgid ""
2321
  "If you don't have a project yet, you'll need to create one. You can do this "
2322
- "by clicking on the blue \"<b>Create</b>\" button on the right side! ( If "
2323
- "you already have a project, click on the name of your project in the "
2324
- "dashboard instead, which will bring up a modal and click <b>\"New Project\"</"
2325
- "b>. )"
2326
  msgstr ""
2327
  "如果你还没有项目,你需要创建一个。 您可以点击右侧蓝色的“创建项目”按钮来完成此"
2328
  "操作"
2329
 
2330
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:19
2331
- #, fuzzy
2332
  #| msgid "Name your project and then click on the Create button"
2333
- msgid "Name your project and then click on the \"<b>Create</b>\" button again"
2334
  msgstr "命名您的项目,然后点击创建按钮"
2335
 
2336
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:20
2337
- msgid "Once you have a project, you'll end up in the dashboard."
2338
- msgstr "一旦你有一个项目,你会在仪表盘发现它。"
 
 
 
2339
 
2340
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:21
2341
- msgid "Click the “<b>OAuth consent screen</b>” button on the left hand side."
2342
- msgstr ""
 
 
2343
 
2344
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:22
 
2345
  msgid ""
2346
- "Choose a <b>User Type</b> according to your needs. If you want to enable the "
2347
- "social login with Google for any users with a Google account, then pick the "
2348
- "External option!"
2349
  msgstr ""
2350
 
2351
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:24
@@ -2357,54 +2420,80 @@ msgid ""
2357
  msgstr ""
2358
 
2359
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:27
 
2360
  msgid ""
2361
- "Enter a name for your App to the \"<b>Application name</b>\" field, which "
2362
- "will appear as the name of the app asking for consent."
2363
  msgstr ""
2364
 
2365
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:28
 
 
 
 
 
 
 
2366
  #, fuzzy, php-format
2367
  #| msgid "Fill \"Site URL\" with the url of your homepage, probably: <b>%s</b>"
2368
  msgid ""
2369
- "Fill the \"<b>Authorized domains</b>\" field with your domain name probably: "
2370
- "<b>%s</b> without subdomains!"
2371
  msgstr "将你网站的首页URL填写到 \"网站URL\",应该是 <b>%s</b>"
2372
 
2373
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:29
2374
- #, fuzzy
2375
- #| msgid "Save your changes."
2376
- msgid "Save your settings!"
2377
- msgstr "保存你的更改."
2378
-
2379
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:30
2380
  #, php-format
2381
  msgid ""
2382
- "On the left side, click on the \"<b>%1$s</b>\" menu point, then click the "
2383
- "\"<b>%2$s</b>\" button in the top bar."
2384
  msgstr ""
2385
 
2386
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:31
2387
- msgid "Choose the \"<b>OAuth client ID</b>\" option."
 
 
 
2388
  msgstr ""
2389
 
2390
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:32
2391
- #, fuzzy
 
 
 
 
 
 
 
 
 
 
 
 
 
2392
  #| msgid "Click on the \"Create New App\" button"
2393
- msgid "Select the \"<b>Web application</b>\" under Application type."
2394
  msgstr "点击\"创建新应用\"按钮"
2395
 
2396
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:33
2397
- msgid "Enter a \"<b>Name</b>\" for your OAuth client ID."
 
2398
  msgstr ""
2399
 
2400
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:35
2401
- #, fuzzy
 
 
 
 
 
 
 
2402
  #| msgid "Click on the Create button"
2403
- msgid "Click on the \"<b>Create</b>\" button"
2404
  msgstr "点击创建按钮"
2405
 
2406
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:36
2407
- #, fuzzy
2408
  #| msgid ""
2409
  #| "A modal should pop up with your credentials. If that doesn't happen, go "
2410
  #| "to the Credentials in the left hand menu and select your app by clicking "
@@ -2412,9 +2501,9 @@ msgstr "点击创建按钮"
2412
  #| "Secret from there."
2413
  msgid ""
2414
  "A modal should pop up with your credentials. If that doesn't happen, go to "
2415
- "the Credentials in the left hand menu and select your app by clicking on its "
2416
- "name and you'll be able to copy-paste the \"<b>Client ID</b>\" and "
2417
- "\"<b>Client Secret</b>\" from there."
2418
  msgstr ""
2419
  "您的凭据会以弹出的形式出现。 如果这种情况没有发生,请转到左侧菜单中的凭证,并"
2420
  "通过单击其名称选择您的应用程序,然后您可以从那里复制粘贴客户端ID和客户端密"
@@ -2483,7 +2572,6 @@ msgid ""
2483
  msgstr "命名您的项目,然后点击创建按钮"
2484
 
2485
  #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:11
2486
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:27
2487
  #, fuzzy
2488
  #| msgid "Click on the \"Create New App\" button"
2489
  msgid "Click on the <b>Edit</b> button at <b>Authentication settings</b>."
@@ -2495,22 +2583,12 @@ msgstr "点击\"创建新应用\"按钮"
2495
  msgid "Add the following URL to the \"<b>Callback URLs</b>\" field: <b>%s</b>"
2496
  msgstr "将以下网址添加到\"Callback URL\"中:<b>%s</b>"
2497
 
2498
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:17
2499
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:25
2500
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:38
2501
- #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:9
2502
- #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:16
2503
- #: nextend-social-login-pro/providers/github/admin/getting-started.php:16
2504
- #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:9
2505
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:17
2506
- #: nextend-social-login-pro/providers/vk/admin/getting-started.php:16
2507
- #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:9
2508
- #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:16
2509
- #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:17
2510
  #, fuzzy, php-format
2511
- #| msgid "Log in with your %s credentials if you are not logged in"
2512
- msgid "Log in with your %s credentials if you are not logged in."
2513
- msgstr "如果您未登录,请使用您的 %s 凭据登录"
 
2514
 
2515
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:18
2516
  msgid ""
@@ -2526,77 +2604,83 @@ msgid ""
2526
  msgstr ""
2527
 
2528
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:20
2529
- #, fuzzy
2530
  #| msgid "Click on \"Save\""
2531
- msgid "Click on <b>+ New Project</b>!"
2532
  msgstr "点击\"保存“"
2533
 
2534
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:21
2535
  msgid ""
2536
  "Name your project, and go through the basic setup. You’ll need to select "
2537
- "your use case and give a description."
2538
  msgstr ""
2539
 
2540
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:22
2541
- msgid "Create a new app, or select an existing one, then click <b>Complete</b>"
2542
- msgstr ""
 
 
2543
 
2544
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:23
 
2545
  msgid ""
2546
- "You’ll find your API key and secret on this page. Copy and paste the <b>API "
2547
- "key</b> and the <b>API secret key</b> to the corresponding fields at Nextend "
2548
- "Social Login and press <b>Save Changes</b>."
2549
  msgstr ""
2550
 
2551
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:24
2552
- #, fuzzy, php-format
2553
- #| msgid "Click on \"Save Changes\""
2554
- msgid "Click on the <b>App Settings</b> button at %s."
2555
- msgstr "点击\"保存设置\""
 
2556
 
2557
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:25
2558
- msgid "Find the Apps section, and the app you created a few steps ago."
2559
- msgstr ""
 
 
2560
 
2561
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:26
2562
- msgid "Click on the App settings icon. (The one that looks like a gear.)"
2563
- msgstr ""
2564
-
2565
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:28
2566
- msgid "Switch on the <b>Enable 3-legged OAuth</b> option."
2567
- msgstr ""
2568
 
2569
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:29
2570
  #, fuzzy, php-format
2571
- #| msgid "Add the following URL to the \"Callback URL\" field: <b>%s</b>"
2572
- msgid "Add the following URL to the <b>Callback URLs</b> field: <b>%s</b>"
2573
- msgstr "将以下网址添加到\"Callback URL\"中:<b>%s</b>"
 
 
2574
 
2575
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:30
2576
  #, fuzzy, php-format
2577
  #| msgid ""
2578
  #| "Add the following URL to the \"Authorized Redirect URLs:\" field: <b>%s</"
2579
  #| "b>"
2580
- msgid "Enter your site's URL to the <b>Website URL</b> field: <b>%s</b>"
2581
  msgstr "将以下网址添加到“授权重定向网址”字段中:<b>%s</b>"
2582
 
2583
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:31
 
2584
  msgid ""
2585
  "If you want to get the email address as well, then don’t forget to enable "
2586
- "the <b>Request email address from users</b> option. In this case you also "
2587
- "need to fill the <b>Terms of service</b> and the <b>Privacy policy</b> "
2588
- "fields with the corresponding URLs!"
2589
  msgstr ""
2590
 
2591
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:32
2592
- #, fuzzy
2593
  #| msgid "Click on \"Save\""
2594
- msgid "Click on <b>Save</b>."
2595
  msgstr "点击\"保存“"
2596
 
2597
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:33
2598
  #, php-format
2599
- msgid "Go back to Nextend Social Login and <b>Verify</b> your %s provider."
2600
  msgstr ""
2601
 
2602
  #: nextend-facebook-connect/providers/twitter/admin/settings.php:27
@@ -2968,8 +3052,10 @@ msgstr ""
2968
 
2969
  #: nextend-social-login-pro/providers/apple/admin/getting-started.php:35
2970
  msgid ""
2971
- "Make sure you have an <strong>active subscription for the Apple Developer "
2972
- "Program</strong>!"
 
 
2973
  msgstr ""
2974
 
2975
  #: nextend-social-login-pro/providers/apple/admin/getting-started.php:36
@@ -4029,34 +4115,34 @@ msgstr "解除关联 <b>Yahoo</b> 账号"
4029
  msgid "Required permission: %1$s"
4030
  msgstr "请求"
4031
 
4032
- #: nextend-social-login-pro/template-parts/buddypress/login/above-separator.php:10
4033
- #: nextend-social-login-pro/template-parts/buddypress/login/below-separator.php:10
4034
- #: nextend-social-login-pro/template-parts/embedded-login/above-separator.php:10
4035
- #: nextend-social-login-pro/template-parts/embedded-login/below-separator.php:10
4036
- #: nextend-social-login-pro/template-parts/login/above-separator.php:20
4037
- #: nextend-social-login-pro/template-parts/login/below-separator.php:8
4038
- #: nextend-social-login-pro/template-parts/memberpress/login/above-separator.php:10
4039
- #: nextend-social-login-pro/template-parts/memberpress/login/below-separator.php:10
4040
- #: nextend-social-login-pro/template-parts/memberpress/sign-up/above-separator.php:10
4041
- #: nextend-social-login-pro/template-parts/memberpress/sign-up/below-separator.php:10
4042
- #: nextend-social-login-pro/template-parts/ultimate-member/login/above-separator.php:10
4043
- #: nextend-social-login-pro/template-parts/ultimate-member/login/below-separator.php:10
4044
- #: nextend-social-login-pro/template-parts/ultimate-member/register/above-separator.php:10
4045
- #: nextend-social-login-pro/template-parts/ultimate-member/register/below-separator.php:10
4046
- #: nextend-social-login-pro/template-parts/userpro/login/above-separator.php:10
4047
- #: nextend-social-login-pro/template-parts/userpro/login/below-separator.php:10
4048
- #: nextend-social-login-pro/template-parts/userpro/register/above-separator.php:10
4049
- #: nextend-social-login-pro/template-parts/userpro/register/below-separator.php:10
4050
- #: nextend-social-login-pro/template-parts/woocommerce/billing/above-separator.php:11
4051
- #: nextend-social-login-pro/template-parts/woocommerce/billing/below-separator.php:11
4052
- #: nextend-social-login-pro/template-parts/woocommerce/billing/default-separator-after.php:7
4053
- #: nextend-social-login-pro/template-parts/woocommerce/billing/default-separator-before.php:7
4054
- #: nextend-social-login-pro/template-parts/woocommerce/checkout-for-woocommerce/above-separator.php:15
4055
- #: nextend-social-login-pro/template-parts/woocommerce/checkout-for-woocommerce/below-separator.php:15
4056
- #: nextend-social-login-pro/template-parts/woocommerce/login/above-separator.php:10
4057
- #: nextend-social-login-pro/template-parts/woocommerce/login/below-separator.php:10
4058
- #: nextend-social-login-pro/template-parts/woocommerce/register/above-separator.php:10
4059
- #: nextend-social-login-pro/template-parts/woocommerce/register/below-separator.php:10
4060
  msgid "OR"
4061
  msgstr "或"
4062
 
@@ -4067,6 +4153,40 @@ msgstr "或"
4067
  msgid "Social accounts"
4068
  msgstr "社交账号"
4069
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4070
  #, fuzzy, php-format
4071
  #~| msgid "Log in with your %s credentials if you are not logged in"
4072
  #~ msgid "Log in with your %s credentials if you are not logged in yet"
@@ -4278,9 +4398,6 @@ msgstr "社交账号"
4278
  #~ "the left menu."
4279
  #~ msgstr "转到设置菜单,您可以在左侧菜单中的Facebook登录下找到它。"
4280
 
4281
- #~ msgid "Make sure that the \"%1$s\" field contains %2$s"
4282
- #~ msgstr "确保 \"%1$s\" 包含 %2$s"
4283
-
4284
  #~ msgid "The following settings will be imported:"
4285
  #~ msgstr "以下设置将被导入:"
4286
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: ss3\n"
4
+ "POT-Creation-Date: 2021-06-16 14:01+0200\n"
5
+ "PO-Revision-Date: 2021-06-16 14:01+0200\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: zh_CN\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 3.0\n"
13
  "X-Poedit-Basepath: ../..\n"
14
  "Plural-Forms: nplurals=1; plural=0;\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
117
  msgid "User"
118
  msgstr "用户"
119
 
120
+ #: nextend-facebook-connect/admin/admin.php:204
121
  #, php-format
122
  msgid "%s needs json_decode function."
123
  msgstr "%s 需要 json_decode 函数。"
124
 
125
+ #: nextend-facebook-connect/admin/admin.php:204
126
  msgid "Please contact your server administrator and ask for solution!"
127
  msgstr "请与服务器管理员联系并寻求解决方案!"
128
 
129
+ #: nextend-facebook-connect/admin/admin.php:236
130
+ #: nextend-facebook-connect/admin/admin.php:266
131
  msgid "Settings saved."
132
  msgstr "设置已保存。"
133
 
134
+ #: nextend-facebook-connect/admin/admin.php:245
135
  #, fuzzy
136
  #| msgid "The authorization was successful"
137
  msgid "The activation was successful"
138
  msgstr "授权成功"
139
 
140
+ #: nextend-facebook-connect/admin/admin.php:256
141
  #, fuzzy
142
  #| msgid "Deauthorize completed."
143
  msgid "Deactivate completed."
144
  msgstr "取消授权."
145
 
146
+ #: nextend-facebook-connect/admin/admin.php:435
147
  #: nextend-facebook-connect/admin/templates-provider/menu.php:15
148
  #: nextend-facebook-connect/admin/templates/providers.php:89
149
  #: nextend-facebook-connect/admin/templates/providers.php:101
151
  msgid "Settings"
152
  msgstr "设置"
153
 
154
+ #: nextend-facebook-connect/admin/admin.php:518
155
  #: nextend-facebook-connect/includes/oauth2.php:143
156
  #: nextend-facebook-connect/includes/oauth2.php:288
157
  #: nextend-facebook-connect/providers/facebook/facebook-client.php:84
162
  msgid "Unexpected response: %s"
163
  msgstr "响应出现意外情况: %s"
164
 
165
+ #: nextend-facebook-connect/admin/admin.php:579
166
  #: nextend-facebook-connect/admin/templates/fix-redirect-uri.php:21
167
  #, php-format
168
  msgid ""
172
  "%s 检测到您的登录网址已更改。您必须更新相关社交应用程序中的Oauth redirect "
173
  "URIs."
174
 
175
+ #: nextend-facebook-connect/admin/admin.php:580
176
  #: nextend-social-login-pro/providers/apple/apple.php:310
177
  msgid "Fix Error"
178
  msgstr "修复错误"
179
 
180
+ #: nextend-facebook-connect/admin/admin.php:580
181
  msgid "Oauth Redirect URI"
182
  msgstr "Oauth Redirect URI"
183
 
184
+ #: nextend-facebook-connect/admin/admin.php:597
185
  #, php-format
186
  msgid ""
187
  "%1$s detected that %2$s installed on your site. You need the Pro Addon to "
190
  "%1$s 检测到 %2$s 已经安装在你的网站. 你需要安装专业版本去显示社交登录按钮 "
191
  "%2$s 登录表单!"
192
 
193
+ #: nextend-facebook-connect/admin/admin.php:598
194
  msgid "Dismiss and check Pro Addon"
195
  msgstr "解除并检查专业版本"
196
 
197
+ #: nextend-facebook-connect/admin/admin.php:598
198
  msgid "Dismiss"
199
  msgstr "解除"
200
 
201
+ #: nextend-facebook-connect/admin/admin.php:604
202
  #, php-format
203
  msgid ""
204
  "%1$s detected that %2$s installed on your site. You must set \"<b>Page for "
206
  "work properly."
207
  msgstr ""
208
 
209
+ #: nextend-facebook-connect/admin/admin.php:605
210
  #, fuzzy
211
  #| msgid "Fix Error"
212
  msgid "Fix now"
213
  msgstr "修复错误"
214
 
215
+ #: nextend-facebook-connect/admin/admin.php:629
216
  #, fuzzy
217
  #| msgid "Activate Pro Addon"
218
  msgid "Activate your Pro Addon"
219
  msgstr "启用专业版本插件"
220
 
221
+ #: nextend-facebook-connect/admin/admin.php:630
222
  #, fuzzy
223
  #| msgid ""
224
  #| "To be able to use the Pro features, you need to authorize Nextend Social "
232
  "要想使用专业版本功能,你需要 Nextend Social Connect 专业版本的授权。你可以点"
233
  "击下面的授权按钮,然后选择购买。"
234
 
235
+ #: nextend-facebook-connect/admin/admin.php:635
236
  #: nextend-social-login-pro/nextend-social-login-pro.php:110
237
  msgid "Activate"
238
  msgstr ""
239
 
240
+ #: nextend-facebook-connect/admin/admin.php:733
241
  msgid "License key"
242
  msgstr "密匙"
243
 
244
+ #: nextend-facebook-connect/admin/admin.php:756
245
  msgid "OAuth proxy page"
246
  msgstr ""
247
 
248
+ #: nextend-facebook-connect/admin/admin.php:759
249
  #, fuzzy
250
  #| msgid "Register"
251
  msgid "Register flow page"
256
  msgid "You have logged in successfully."
257
  msgstr "你已经成功登录。"
258
 
259
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:86
260
  msgid "Login label"
261
  msgstr "登录标签"
262
 
263
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:91
264
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:107
265
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:120
266
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:131
267
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:160
268
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:190
269
  #: nextend-facebook-connect/admin/templates/settings/privacy.php:53
270
  msgid "Reset to default"
271
  msgstr "恢复默认设置"
272
 
273
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:101
274
  #, fuzzy
275
  #| msgid "Register"
276
  msgid "Register label"
277
  msgstr "注册"
278
 
279
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:114
280
  msgid "Link label"
281
  msgstr "链接标签"
282
 
283
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:126
284
  msgid "Unlink label"
285
  msgstr "解除链接标签"
286
 
287
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:137
288
  msgid "Default button"
289
  msgstr "默认按钮"
290
 
291
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:153
292
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:183
293
  msgid "Use custom button"
294
  msgstr "使用自定义按钮"
295
 
296
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:160
297
  #, php-format
298
  msgid "Use the %s in your custom button's code to make the label show up."
299
  msgstr "使用 %s 在你的自定义按钮代码显示界面."
300
 
301
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:168
302
  msgid "Icon button"
303
  msgstr "图标按钮"
304
 
305
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:199
306
  #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:140
307
  #: nextend-facebook-connect/admin/templates-provider/sync-data.php:104
308
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:170
484
  msgstr "默认"
485
 
486
  #: nextend-facebook-connect/admin/templates-provider/sync-data.php:50
 
487
  msgid "Register"
488
  msgstr "注册"
489
 
1506
  msgstr ""
1507
 
1508
  #: nextend-facebook-connect/admin/templates/settings/privacy.php:102
1509
+ #: nextend-facebook-connect/includes/provider.php:1102
1510
  msgid "Access token"
1511
  msgstr ""
1512
 
1646
  msgid_plural "Avatar <span class=\"count\">(%s)</span>"
1647
  msgstr[0] ""
1648
 
1649
+ #: nextend-facebook-connect/includes/avatar.php:399
1650
+ msgid "Invalid URL Provided."
1651
+ msgstr ""
1652
+
1653
+ #: nextend-facebook-connect/includes/avatar.php:404
1654
+ msgid "Could not create Temporary file."
1655
+ msgstr ""
1656
+
1657
  #: nextend-facebook-connect/includes/compat-wp-login.php:63
1658
  #, php-format
1659
  msgid "%1$s &lsaquo; %2$s &#8212; WordPress"
1729
  msgstr ""
1730
 
1731
  #: nextend-facebook-connect/includes/provider.php:358
1732
+ #: nextend-facebook-connect/includes/provider.php:719
1733
+ #: nextend-facebook-connect/includes/provider.php:727
1734
  msgid "Authentication successful"
1735
  msgstr "授权成功"
1736
 
1737
+ #: nextend-facebook-connect/includes/provider.php:656
1738
  #: nextend-facebook-connect/includes/user.php:168
1739
  #: nextend-facebook-connect/includes/user.php:597
1740
  msgid "Authentication error"
1741
  msgstr "授权认证出错"
1742
 
1743
+ #: nextend-facebook-connect/includes/provider.php:671
1744
  msgid "Unlink successful."
1745
  msgstr "解除链接成功."
1746
 
1747
+ #: nextend-facebook-connect/includes/provider.php:673
1748
  msgid "Unlink is not allowed!"
1749
  msgstr ""
1750
 
1751
+ #: nextend-facebook-connect/includes/provider.php:888
1752
+ #: nextend-facebook-connect/includes/provider.php:895
1753
  msgid "The test was successful"
1754
  msgstr "测试成功"
1755
 
1756
+ #: nextend-facebook-connect/includes/provider.php:941
1757
  msgid "Authentication failed"
1758
  msgstr "授权认证失败"
1759
 
1760
+ #: nextend-facebook-connect/includes/provider.php:1094
1761
  msgid "Identifier"
1762
  msgstr ""
1763
 
1764
+ #: nextend-facebook-connect/includes/provider.php:1110
1765
  msgid "Profile picture"
1766
  msgstr ""
1767
 
1797
  msgid "Register For This Site!"
1798
  msgstr "注册此网站!"
1799
 
1800
+ #: nextend-facebook-connect/includes/userData.php:189
1801
+ #, fuzzy
1802
+ #| msgid "Register"
1803
+ msgctxt "Register form submit button label"
1804
+ msgid "Register"
1805
+ msgstr "注册"
1806
+
1807
  #: nextend-facebook-connect/nextend-facebook-connect.php:37
1808
  #, php-format
1809
  msgid "%1$s requires PHP version %2$s+, plugin is currently NOT ACTIVE."
1827
  msgid "Update now!"
1828
  msgstr "现在更新!"
1829
 
1830
+ #: nextend-facebook-connect/nextend-social-login.php:820
1831
+ #: nextend-facebook-connect/nextend-social-login.php:1199
1832
  msgid "Social Login"
1833
  msgstr "社交登录"
1834
 
1835
+ #: nextend-facebook-connect/nextend-social-login.php:1180
1836
  msgid "Social Accounts"
1837
  msgstr "社交账号"
1838
 
1877
  #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:9
1878
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:25
1879
  #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:9
 
1880
  #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:9
1881
  #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:9
1882
  #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:20
1997
  #| msgid "Click on the \"Create New App\" button"
1998
  msgid ""
1999
  "Click on the \"<b>Create App</b>\" button and in the Popup choose the "
2000
+ "\"<b>Consumer</b>\" App type!"
2001
  msgstr "点击\"创建新应用\"按钮"
2002
 
2003
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:27
2023
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:30
2024
  #, fuzzy
2025
  #| msgid "Click on the \"Create New App\" button"
2026
+ msgid "Click the \"<b>Create App</b>\" button and complete the Security Check."
 
2027
  msgstr "点击\"创建新应用\"按钮"
2028
 
2029
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:31
2165
  msgstr ""
2166
 
2167
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:60
2168
+ msgid "Maintaining the Facebook App:"
2169
+ msgstr ""
2170
+
2171
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:61
2172
+ #, php-format
2173
+ msgid ""
2174
+ "<strong><u>Facebook Data Use Checkup:</u></strong> To protecting people's "
2175
+ "privacy, Facebook might requests you to fill some forms, so they can ensure "
2176
+ "that your API access and data use comply with the Facebook policies.\n"
2177
+ "If Facebook displays the \"%1$s\" modal for your App, then in our "
2178
+ "%2$sdocumentation%3$s you can find more information about the permissions "
2179
+ "that we need."
2180
+ msgstr ""
2181
+
2182
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:63
2183
+ #, php-format
2184
+ msgid ""
2185
+ "<strong><u>New Data Access Levels:</u></strong> Facebook started replacing "
2186
+ "the Development Mode / Live Mode switch in some Apps with %1$s ( earlier "
2187
+ "Development Mode ) and %2$s ( earlier Live mode ), which can be modified on "
2188
+ "the <strong>%3$s</strong> page. You can reach this page from the left hand "
2189
+ "menu of your App, under <strong>%4$s</strong>.\n"
2190
+ "If you want people outside of your business to be able to use their Faceook "
2191
+ "account to register and login over your App, then make sure you requested "
2192
+ "<strong>%2$s</strong> for the <strong>%5$s</strong> and <strong>%6$s</"
2193
+ "strong> permissions. "
2194
+ msgstr ""
2195
+
2196
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:67
2197
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:42
2198
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:35
2199
  #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:39
2200
  #: nextend-social-login-pro/providers/apple/admin/getting-started.php:122
2201
  #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:30
2336
  msgstr ""
2337
 
2338
  #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:12
 
2339
  #, fuzzy, php-format
2340
  #| msgid ""
2341
  #| "Add the following URL to the \"Authorised redirect URIs\" field: <b>%s</b>"
2345
  msgstr "将旁边的URL 填入\"Authorised redirect URIs\" 应该是 <b>%s</b>"
2346
 
2347
  #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:13
2348
+ #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:14
2349
  #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:14
2350
  #, fuzzy
2351
  #| msgid "Click on \"Save\""
2352
  msgid "Click on \"<b>Save</b>\""
2353
  msgstr "点击\"保存“"
2354
 
2355
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:17
2356
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:17
2357
+ #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:25
2358
+ #: nextend-social-login-pro/providers/apple/admin/getting-started.php:38
2359
+ #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:9
2360
+ #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:16
2361
+ #: nextend-social-login-pro/providers/github/admin/getting-started.php:16
2362
+ #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:9
2363
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:17
2364
+ #: nextend-social-login-pro/providers/vk/admin/getting-started.php:16
2365
+ #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:9
2366
+ #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:16
2367
+ #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:17
2368
+ #, fuzzy, php-format
2369
+ #| msgid "Log in with your %s credentials if you are not logged in"
2370
+ msgid "Log in with your %s credentials if you are not logged in."
2371
+ msgstr "如果您未登录,请使用您的 %s 凭据登录"
2372
+
2373
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:18
2374
+ #, fuzzy, php-format
2375
  #| msgid ""
2376
  #| "If you don't have a project yet, you'll need to create one. You can do "
2377
  #| "this by clicking on the blue \"Create project\" button on the right side"
2378
  msgid ""
2379
  "If you don't have a project yet, you'll need to create one. You can do this "
2380
+ "by clicking on the blue \"<b>%1$s</b>\" text on the right side! ( If you "
2381
+ "already have a project, then in the top bar click on the name of your "
2382
+ "project instead, which will bring up a modal and click <b>\"%2$s\"</b>. )"
 
2383
  msgstr ""
2384
  "如果你还没有项目,你需要创建一个。 您可以点击右侧蓝色的“创建项目”按钮来完成此"
2385
  "操作"
2386
 
2387
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:19
2388
+ #, fuzzy, php-format
2389
  #| msgid "Name your project and then click on the Create button"
2390
+ msgid "Name your project and then click on the \"<b>%1$s</b>\" button again!"
2391
  msgstr "命名您的项目,然后点击创建按钮"
2392
 
2393
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:20
2394
+ msgid ""
2395
+ "Once you have a project, you'll end up in the dashboard. ( If earlier you "
2396
+ "have already had a Project, then make sure you select the created project in "
2397
+ "the top bar! )"
2398
+ msgstr ""
2399
 
2400
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:21
2401
+ #, fuzzy, php-format
2402
+ #| msgid "Click on the \"Credentials\" in the left hand menu"
2403
+ msgid "Click the “<b>%1$s</b>” button on the left hand side."
2404
+ msgstr "点击左侧菜单的\"凭据\""
2405
 
2406
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:22
2407
+ #, php-format
2408
  msgid ""
2409
+ "Choose a <b>%1$s</b> according to your needs and press \"<b>%2$s</b>\". If "
2410
+ "you want to enable the social login with %3$s for any users with a %3$s "
2411
+ "account, then pick the \"%4$s\" option!"
2412
  msgstr ""
2413
 
2414
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:24
2420
  msgstr ""
2421
 
2422
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:27
2423
+ #, php-format
2424
  msgid ""
2425
+ "Enter a name for your App to the \"<b>%1$s</b>\" field, which will appear as "
2426
+ "the name of the app asking for consent."
2427
  msgstr ""
2428
 
2429
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:28
2430
+ #, php-format
2431
+ msgid ""
2432
+ "For the \"<b>%1$s</b>\" field, select an email address that users can use to "
2433
+ "contact you with questions about their consent."
2434
+ msgstr ""
2435
+
2436
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:29
2437
  #, fuzzy, php-format
2438
  #| msgid "Fill \"Site URL\" with the url of your homepage, probably: <b>%s</b>"
2439
  msgid ""
2440
+ "Under the \"<b>%1$s</b>\" section press the \"<b>%2$s</b>\" button and "
2441
+ "enter your domain name, probably: <b>%3$s</b> without subdomains!"
2442
  msgstr "将你网站的首页URL填写到 \"网站URL\",应该是 <b>%s</b>"
2443
 
 
 
 
 
 
 
2444
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:30
2445
  #, php-format
2446
  msgid ""
2447
+ "At the \"<b>%1$s</b>\" section, enter an email address that %2$s can use to "
2448
+ "notify you about any changes to your project."
2449
  msgstr ""
2450
 
2451
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:31
2452
+ #, php-format
2453
+ msgid ""
2454
+ "Press \"<b>%1$s</b>\" then press it again on the \"%2$s\", \"%3$s\" pages, "
2455
+ "too!"
2456
  msgstr ""
2457
 
2458
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:32
2459
+ #, php-format
2460
+ msgid ""
2461
+ "On the left side, click on the \"<b>%1$s</b>\" menu point, then click the "
2462
+ "\"<b>%2$s</b>\" button in the top bar."
2463
+ msgstr ""
2464
+
2465
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:33
2466
+ #, fuzzy, php-format
2467
+ #| msgid "Click on the Create button"
2468
+ msgid "Choose the \"<b>%1$s</b>\" option."
2469
+ msgstr "点击创建按钮"
2470
+
2471
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:34
2472
+ #, fuzzy, php-format
2473
  #| msgid "Click on the \"Create New App\" button"
2474
+ msgid "Select the \"<b>%1$s</b>\" under Application type."
2475
  msgstr "点击\"创建新应用\"按钮"
2476
 
2477
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:35
2478
+ #, php-format
2479
+ msgid "Enter a \"<b>%1$s</b>\" for your OAuth client ID."
2480
  msgstr ""
2481
 
2482
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:36
2483
+ #, php-format
2484
+ msgid ""
2485
+ "Under the \"<b>%1$s</b>\" section click \"<b>%2$s</b>\" and add the "
2486
+ "following URL: <b>%3$s</b>"
2487
+ msgstr ""
2488
+
2489
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:37
2490
+ #, fuzzy, php-format
2491
  #| msgid "Click on the Create button"
2492
+ msgid "Click on the \"<b>%1$s</b>\" button"
2493
  msgstr "点击创建按钮"
2494
 
2495
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:38
2496
+ #, fuzzy, php-format
2497
  #| msgid ""
2498
  #| "A modal should pop up with your credentials. If that doesn't happen, go "
2499
  #| "to the Credentials in the left hand menu and select your app by clicking "
2501
  #| "Secret from there."
2502
  msgid ""
2503
  "A modal should pop up with your credentials. If that doesn't happen, go to "
2504
+ "the %1$s in the left hand menu and select your app by clicking on its name "
2505
+ "and you'll be able to copy-paste the \"<b>%2$s</b>\" and \"<b>%3$s</b>\" "
2506
+ "from there."
2507
  msgstr ""
2508
  "您的凭据会以弹出的形式出现。 如果这种情况没有发生,请转到左侧菜单中的凭证,并"
2509
  "通过单击其名称选择您的应用程序,然后您可以从那里复制粘贴客户端ID和客户端密"
2572
  msgstr "命名您的项目,然后点击创建按钮"
2573
 
2574
  #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:11
 
2575
  #, fuzzy
2576
  #| msgid "Click on the \"Create New App\" button"
2577
  msgid "Click on the <b>Edit</b> button at <b>Authentication settings</b>."
2583
  msgid "Add the following URL to the \"<b>Callback URLs</b>\" field: <b>%s</b>"
2584
  msgstr "将以下网址添加到\"Callback URL\"中:<b>%s</b>"
2585
 
2586
+ #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:13
 
 
 
 
 
 
 
 
 
 
 
2587
  #, fuzzy, php-format
2588
+ #| msgid "Make sure that the \"%1$s\" field contains %2$s"
2589
+ msgid ""
2590
+ "Make sure the \"<b>%1$s</b>\" field contains the following URL: <b>%2$s</b>"
2591
+ msgstr "确保 \"%1$s\" 包含 %2$s"
2592
 
2593
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:18
2594
  msgid ""
2604
  msgstr ""
2605
 
2606
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:20
2607
+ #, fuzzy, php-format
2608
  #| msgid "Click on \"Save\""
2609
+ msgid "Click on \"<b>%s</b>\"!"
2610
  msgstr "点击\"保存“"
2611
 
2612
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:21
2613
  msgid ""
2614
  "Name your project, and go through the basic setup. You’ll need to select "
2615
+ "your use case, give a description and enter a name for the App as well."
2616
  msgstr ""
2617
 
2618
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:22
2619
+ #, fuzzy, php-format
2620
+ #| msgid "Click on \"Save\""
2621
+ msgid "Click \"<b>%s</b>\"!"
2622
+ msgstr "点击\"保存“"
2623
 
2624
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:23
2625
+ #, php-format
2626
  msgid ""
2627
+ "You’ll find your API key and secret on this page. Copy and paste the \"<b>"
2628
+ "%1$s</b>\" and the \"<b>%2$s</b>\" to the corresponding fields at %3$s and "
2629
+ "press \"<b>Save Changes</b>\"."
2630
  msgstr ""
2631
 
2632
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:24
2633
+ #, php-format
2634
+ msgid ""
2635
+ "Go back to your Twitter project and on the left side, under the \"<b>%s</b>"
2636
+ "\" section click on the name of your App."
2637
+ msgstr ""
2638
 
2639
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:25
2640
+ #, fuzzy, php-format
2641
+ #| msgid "Name your project and then click on the Create button"
2642
+ msgid "Scroll down and click on the \"<b>%1$s</b>\" button at \"<b>%2$s</b>\"."
2643
+ msgstr "命名您的项目,然后点击创建按钮"
2644
 
2645
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:26
2646
+ #, fuzzy, php-format
2647
+ #| msgid "Click on the Create button"
2648
+ msgid "Switch on the \"<b>%s</b>\" option."
2649
+ msgstr "点击创建按钮"
 
 
2650
 
2651
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:27
2652
  #, fuzzy, php-format
2653
+ #| msgid ""
2654
+ #| "Add the following URL to the \"Authorized Redirect URLs:\" field: <b>%s</"
2655
+ #| "b>"
2656
+ msgid "Add the following URL to the \"<b>%1$s</b>\" field: <b>%2$s</b>"
2657
+ msgstr "将以下网址添加到“授权重定向网址”字段中:<b>%s</b>"
2658
 
2659
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:28
2660
  #, fuzzy, php-format
2661
  #| msgid ""
2662
  #| "Add the following URL to the \"Authorized Redirect URLs:\" field: <b>%s</"
2663
  #| "b>"
2664
+ msgid "Enter your site's URL to the \"<b>%1$s</b>\" field: <b>%2$s</b>"
2665
  msgstr "将以下网址添加到“授权重定向网址”字段中:<b>%s</b>"
2666
 
2667
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:29
2668
+ #, php-format
2669
  msgid ""
2670
  "If you want to get the email address as well, then don’t forget to enable "
2671
+ "the \"<b>%1$s</b>\" option. In this case you also need to fill the \"<b>"
2672
+ "%2$s</b>\" and the \"<b>%3$s</b>\" fields with the corresponding URLs!"
 
2673
  msgstr ""
2674
 
2675
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:30
2676
+ #, fuzzy, php-format
2677
  #| msgid "Click on \"Save\""
2678
+ msgid "Click on \"<b>%s</b>\"."
2679
  msgstr "点击\"保存“"
2680
 
2681
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:31
2682
  #, php-format
2683
+ msgid "Go back to %1$s and <b>Verify</b> your %2$s provider."
2684
  msgstr ""
2685
 
2686
  #: nextend-facebook-connect/providers/twitter/admin/settings.php:27
3052
 
3053
  #: nextend-social-login-pro/providers/apple/admin/getting-started.php:35
3054
  msgid ""
3055
+ "Make sure you have an <strong>active subscription for the <a href=\"https://"
3056
+ "developer.apple.com/programs/\" target=\"_blank\">Apple Developer Program</"
3057
+ "a></strong>, as that is necessary for both creating and maintaining an Apple "
3058
+ "App!"
3059
  msgstr ""
3060
 
3061
  #: nextend-social-login-pro/providers/apple/admin/getting-started.php:36
4115
  msgid "Required permission: %1$s"
4116
  msgstr "请求"
4117
 
4118
+ #: nextend-social-login-pro/template-parts/buddypress/login/above-separator.php:18
4119
+ #: nextend-social-login-pro/template-parts/buddypress/login/below-separator.php:18
4120
+ #: nextend-social-login-pro/template-parts/embedded-login/above-separator.php:18
4121
+ #: nextend-social-login-pro/template-parts/embedded-login/below-separator.php:18
4122
+ #: nextend-social-login-pro/template-parts/login/above-separator.php:25
4123
+ #: nextend-social-login-pro/template-parts/login/below-separator.php:30
4124
+ #: nextend-social-login-pro/template-parts/memberpress/login/above-separator.php:18
4125
+ #: nextend-social-login-pro/template-parts/memberpress/login/below-separator.php:18
4126
+ #: nextend-social-login-pro/template-parts/memberpress/sign-up/above-separator.php:18
4127
+ #: nextend-social-login-pro/template-parts/memberpress/sign-up/below-separator.php:18
4128
+ #: nextend-social-login-pro/template-parts/ultimate-member/login/above-separator.php:18
4129
+ #: nextend-social-login-pro/template-parts/ultimate-member/login/below-separator.php:18
4130
+ #: nextend-social-login-pro/template-parts/ultimate-member/register/above-separator.php:18
4131
+ #: nextend-social-login-pro/template-parts/ultimate-member/register/below-separator.php:18
4132
+ #: nextend-social-login-pro/template-parts/userpro/login/above-separator.php:18
4133
+ #: nextend-social-login-pro/template-parts/userpro/login/below-separator.php:18
4134
+ #: nextend-social-login-pro/template-parts/userpro/register/above-separator.php:18
4135
+ #: nextend-social-login-pro/template-parts/userpro/register/below-separator.php:18
4136
+ #: nextend-social-login-pro/template-parts/woocommerce/billing/above-separator.php:25
4137
+ #: nextend-social-login-pro/template-parts/woocommerce/billing/below-separator.php:25
4138
+ #: nextend-social-login-pro/template-parts/woocommerce/billing/default-separator-after.php:13
4139
+ #: nextend-social-login-pro/template-parts/woocommerce/billing/default-separator-before.php:13
4140
+ #: nextend-social-login-pro/template-parts/woocommerce/checkout-for-woocommerce/above-separator.php:25
4141
+ #: nextend-social-login-pro/template-parts/woocommerce/checkout-for-woocommerce/below-separator.php:25
4142
+ #: nextend-social-login-pro/template-parts/woocommerce/login/above-separator.php:18
4143
+ #: nextend-social-login-pro/template-parts/woocommerce/login/below-separator.php:18
4144
+ #: nextend-social-login-pro/template-parts/woocommerce/register/above-separator.php:18
4145
+ #: nextend-social-login-pro/template-parts/woocommerce/register/below-separator.php:18
4146
  msgid "OR"
4147
  msgstr "或"
4148
 
4153
  msgid "Social accounts"
4154
  msgstr "社交账号"
4155
 
4156
+ #, fuzzy
4157
+ #~| msgid "Click on \"Save\""
4158
+ #~ msgid "Click on <b>+ New Project</b>!"
4159
+ #~ msgstr "点击\"保存“"
4160
+
4161
+ #, fuzzy, php-format
4162
+ #~| msgid "Click on \"Save Changes\""
4163
+ #~ msgid "Click on the <b>App Settings</b> button at %s."
4164
+ #~ msgstr "点击\"保存设置\""
4165
+
4166
+ #, fuzzy, php-format
4167
+ #~| msgid "Add the following URL to the \"Callback URL\" field: <b>%s</b>"
4168
+ #~ msgid "Add the following URL to the <b>Callback URLs</b> field: <b>%s</b>"
4169
+ #~ msgstr "将以下网址添加到\"Callback URL\"中:<b>%s</b>"
4170
+
4171
+ #, fuzzy
4172
+ #~| msgid "Click on \"Save\""
4173
+ #~ msgid "Click on <b>Save</b>."
4174
+ #~ msgstr "点击\"保存“"
4175
+
4176
+ #, fuzzy
4177
+ #~| msgid "Register"
4178
+ #~ msgctxt "NSL Register Form submit button text"
4179
+ #~ msgid "Register"
4180
+ #~ msgstr "注册"
4181
+
4182
+ #~ msgid "Once you have a project, you'll end up in the dashboard."
4183
+ #~ msgstr "一旦你有一个项目,你会在仪表盘发现它。"
4184
+
4185
+ #, fuzzy
4186
+ #~| msgid "Save your changes."
4187
+ #~ msgid "Save your settings!"
4188
+ #~ msgstr "保存你的更改."
4189
+
4190
  #, fuzzy, php-format
4191
  #~| msgid "Log in with your %s credentials if you are not logged in"
4192
  #~ msgid "Log in with your %s credentials if you are not logged in yet"
4398
  #~ "the left menu."
4399
  #~ msgstr "转到设置菜单,您可以在左侧菜单中的Facebook登录下找到它。"
4400
 
 
 
 
4401
  #~ msgid "The following settings will be imported:"
4402
  #~ msgstr "以下设置将被导入:"
4403
 
languages/nextend-facebook-connect.pot CHANGED
@@ -2,7 +2,7 @@
2
  msgid ""
3
  msgstr ""
4
  "Project-Id-Version: nextend-facebook-connect\n"
5
- "POT-Creation-Date: 2021-01-27 13:55+0100\n"
6
  "PO-Revision-Date: 2020-06-29 13:58+0200\n"
7
  "Last-Translator: \n"
8
  "Language-Team: nextend-facebook-connect\n"
@@ -10,7 +10,7 @@ msgstr ""
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
- "X-Generator: Poedit 2.4.1\n"
14
  "X-Poedit-Basepath: ../..\n"
15
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
16
  "X-Poedit-SourceCharset: UTF-8\n"
@@ -114,29 +114,29 @@ msgstr ""
114
  msgid "User"
115
  msgstr ""
116
 
117
- #: nextend-facebook-connect/admin/admin.php:206
118
  #, php-format
119
  msgid "%s needs json_decode function."
120
  msgstr ""
121
 
122
- #: nextend-facebook-connect/admin/admin.php:206
123
  msgid "Please contact your server administrator and ask for solution!"
124
  msgstr ""
125
 
126
- #: nextend-facebook-connect/admin/admin.php:238
127
- #: nextend-facebook-connect/admin/admin.php:268
128
  msgid "Settings saved."
129
  msgstr ""
130
 
131
- #: nextend-facebook-connect/admin/admin.php:247
132
  msgid "The activation was successful"
133
  msgstr ""
134
 
135
- #: nextend-facebook-connect/admin/admin.php:258
136
  msgid "Deactivate completed."
137
  msgstr ""
138
 
139
- #: nextend-facebook-connect/admin/admin.php:437
140
  #: nextend-facebook-connect/admin/templates-provider/menu.php:15
141
  #: nextend-facebook-connect/admin/templates/providers.php:89
142
  #: nextend-facebook-connect/admin/templates/providers.php:101
@@ -144,7 +144,7 @@ msgstr ""
144
  msgid "Settings"
145
  msgstr ""
146
 
147
- #: nextend-facebook-connect/admin/admin.php:520
148
  #: nextend-facebook-connect/includes/oauth2.php:143
149
  #: nextend-facebook-connect/includes/oauth2.php:288
150
  #: nextend-facebook-connect/providers/facebook/facebook-client.php:84
@@ -155,7 +155,7 @@ msgstr ""
155
  msgid "Unexpected response: %s"
156
  msgstr ""
157
 
158
- #: nextend-facebook-connect/admin/admin.php:581
159
  #: nextend-facebook-connect/admin/templates/fix-redirect-uri.php:21
160
  #, php-format
161
  msgid ""
@@ -163,31 +163,31 @@ msgid ""
163
  "redirect URIs in the related social applications."
164
  msgstr ""
165
 
166
- #: nextend-facebook-connect/admin/admin.php:582
167
  #: nextend-social-login-pro/providers/apple/apple.php:310
168
  msgid "Fix Error"
169
  msgstr ""
170
 
171
- #: nextend-facebook-connect/admin/admin.php:582
172
  msgid "Oauth Redirect URI"
173
  msgstr ""
174
 
175
- #: nextend-facebook-connect/admin/admin.php:599
176
  #, php-format
177
  msgid ""
178
  "%1$s detected that %2$s installed on your site. You need the Pro Addon "
179
  "to display Social Login buttons in %2$s login form!"
180
  msgstr ""
181
 
182
- #: nextend-facebook-connect/admin/admin.php:600
183
  msgid "Dismiss and check Pro Addon"
184
  msgstr ""
185
 
186
- #: nextend-facebook-connect/admin/admin.php:600
187
  msgid "Dismiss"
188
  msgstr ""
189
 
190
- #: nextend-facebook-connect/admin/admin.php:606
191
  #, php-format
192
  msgid ""
193
  "%1$s detected that %2$s installed on your site. You must set \"<b>Page "
@@ -195,35 +195,35 @@ msgid ""
195
  "in %1$s to work properly."
196
  msgstr ""
197
 
198
- #: nextend-facebook-connect/admin/admin.php:607
199
  msgid "Fix now"
200
  msgstr ""
201
 
202
- #: nextend-facebook-connect/admin/admin.php:631
203
  msgid "Activate your Pro Addon"
204
  msgstr ""
205
 
206
- #: nextend-facebook-connect/admin/admin.php:632
207
  msgid ""
208
  "To be able to use the Pro features, you need to activate Nextend "
209
  "Social Login Pro Addon. You can do this by clicking on the Activate "
210
  "button below then select the related purchase."
211
  msgstr ""
212
 
213
- #: nextend-facebook-connect/admin/admin.php:637
214
  #: nextend-social-login-pro/nextend-social-login-pro.php:110
215
  msgid "Activate"
216
  msgstr ""
217
 
218
- #: nextend-facebook-connect/admin/admin.php:735
219
  msgid "License key"
220
  msgstr ""
221
 
222
- #: nextend-facebook-connect/admin/admin.php:758
223
  msgid "OAuth proxy page"
224
  msgstr ""
225
 
226
- #: nextend-facebook-connect/admin/admin.php:761
227
  msgid "Register flow page"
228
  msgstr ""
229
 
@@ -232,52 +232,52 @@ msgstr ""
232
  msgid "You have logged in successfully."
233
  msgstr ""
234
 
235
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:80
236
  msgid "Login label"
237
  msgstr ""
238
 
239
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:85
240
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:101
241
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:114
242
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:125
243
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:154
244
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:184
245
  #: nextend-facebook-connect/admin/templates/settings/privacy.php:53
246
  msgid "Reset to default"
247
  msgstr ""
248
 
249
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:95
250
  msgid "Register label"
251
  msgstr ""
252
 
253
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:108
254
  msgid "Link label"
255
  msgstr ""
256
 
257
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:120
258
  msgid "Unlink label"
259
  msgstr ""
260
 
261
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:131
262
  msgid "Default button"
263
  msgstr ""
264
 
265
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:147
266
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:177
267
  msgid "Use custom button"
268
  msgstr ""
269
 
270
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:154
271
  #, php-format
272
  msgid ""
273
  "Use the %s in your custom button's code to make the label show up."
274
  msgstr ""
275
 
276
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:162
277
  msgid "Icon button"
278
  msgstr ""
279
 
280
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:193
281
  #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:140
282
  #: nextend-facebook-connect/admin/templates-provider/sync-data.php:104
283
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:170
@@ -455,7 +455,6 @@ msgid "Default"
455
  msgstr ""
456
 
457
  #: nextend-facebook-connect/admin/templates-provider/sync-data.php:50
458
- #: nextend-facebook-connect/includes/userData.php:188
459
  msgid "Register"
460
  msgstr ""
461
 
@@ -1394,7 +1393,7 @@ msgid "Avatar"
1394
  msgstr ""
1395
 
1396
  #: nextend-facebook-connect/admin/templates/settings/privacy.php:102
1397
- #: nextend-facebook-connect/includes/provider.php:1100
1398
  msgid "Access token"
1399
  msgstr ""
1400
 
@@ -1509,6 +1508,14 @@ msgid_plural "Avatar <span class=\"count\">(%s)</span>"
1509
  msgstr[0] ""
1510
  msgstr[1] ""
1511
 
 
 
 
 
 
 
 
 
1512
  #: nextend-facebook-connect/includes/compat-wp-login.php:63
1513
  #, php-format
1514
  msgid "%1$s &lsaquo; %2$s &#8212; WordPress"
@@ -1579,39 +1586,39 @@ msgid "Please save your changes before verifying settings."
1579
  msgstr ""
1580
 
1581
  #: nextend-facebook-connect/includes/provider.php:358
1582
- #: nextend-facebook-connect/includes/provider.php:717
1583
- #: nextend-facebook-connect/includes/provider.php:725
1584
  msgid "Authentication successful"
1585
  msgstr ""
1586
 
1587
- #: nextend-facebook-connect/includes/provider.php:654
1588
  #: nextend-facebook-connect/includes/user.php:168
1589
  #: nextend-facebook-connect/includes/user.php:597
1590
  msgid "Authentication error"
1591
  msgstr ""
1592
 
1593
- #: nextend-facebook-connect/includes/provider.php:669
1594
  msgid "Unlink successful."
1595
  msgstr ""
1596
 
1597
- #: nextend-facebook-connect/includes/provider.php:671
1598
  msgid "Unlink is not allowed!"
1599
  msgstr ""
1600
 
1601
- #: nextend-facebook-connect/includes/provider.php:886
1602
- #: nextend-facebook-connect/includes/provider.php:893
1603
  msgid "The test was successful"
1604
  msgstr ""
1605
 
1606
- #: nextend-facebook-connect/includes/provider.php:939
1607
  msgid "Authentication failed"
1608
  msgstr ""
1609
 
1610
- #: nextend-facebook-connect/includes/provider.php:1092
1611
  msgid "Identifier"
1612
  msgstr ""
1613
 
1614
- #: nextend-facebook-connect/includes/provider.php:1108
1615
  msgid "Profile picture"
1616
  msgstr ""
1617
 
@@ -1642,6 +1649,11 @@ msgstr ""
1642
  msgid "Register For This Site!"
1643
  msgstr ""
1644
 
 
 
 
 
 
1645
  #: nextend-facebook-connect/nextend-facebook-connect.php:37
1646
  #, php-format
1647
  msgid "%1$s requires PHP version %2$s+, plugin is currently NOT ACTIVE."
@@ -1665,12 +1677,12 @@ msgstr ""
1665
  msgid "Update now!"
1666
  msgstr ""
1667
 
1668
- #: nextend-facebook-connect/nextend-social-login.php:762
1669
- #: nextend-facebook-connect/nextend-social-login.php:1140
1670
  msgid "Social Login"
1671
  msgstr ""
1672
 
1673
- #: nextend-facebook-connect/nextend-social-login.php:1121
1674
  msgid "Social Accounts"
1675
  msgstr ""
1676
 
@@ -1712,7 +1724,6 @@ msgstr ""
1712
  #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:9
1713
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:25
1714
  #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:9
1715
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:17
1716
  #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:9
1717
  #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:9
1718
  #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:20
@@ -1821,7 +1832,7 @@ msgstr ""
1821
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:26
1822
  msgid ""
1823
  "Click on the \"<b>Create App</b>\" button and in the Popup choose the "
1824
- "\"<b>Build Connected Experiences</b>\" option!"
1825
  msgstr ""
1826
 
1827
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:27
@@ -1846,8 +1857,7 @@ msgstr ""
1846
 
1847
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:30
1848
  msgid ""
1849
- "Click the \"<b>Create App ID</b>\" button and complete the Security "
1850
- "Check."
1851
  msgstr ""
1852
 
1853
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:31
@@ -1962,8 +1972,39 @@ msgid ""
1962
  msgstr ""
1963
 
1964
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:60
1965
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:40
1966
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:37
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1967
  #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:39
1968
  #: nextend-social-login-pro/providers/apple/admin/getting-started.php:122
1969
  #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:30
@@ -2101,7 +2142,6 @@ msgid ""
2101
  msgstr ""
2102
 
2103
  #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:12
2104
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:34
2105
  #, php-format
2106
  msgid ""
2107
  "Add the following URL to the \"<b>Authorised redirect URIs</b>\" "
@@ -2109,39 +2149,62 @@ msgid ""
2109
  msgstr ""
2110
 
2111
  #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:13
2112
- #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:13
2113
  #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:14
2114
  msgid "Click on \"<b>Save</b>\""
2115
  msgstr ""
2116
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2117
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:18
 
2118
  msgid ""
2119
  "If you don't have a project yet, you'll need to create one. You can do "
2120
- "this by clicking on the blue \"<b>Create</b>\" button on the right "
2121
- "side! ( If you already have a project, click on the name of your "
2122
- "project in the dashboard instead, which will bring up a modal and "
2123
- "click <b>\"New Project\"</b>. )"
2124
  msgstr ""
2125
 
2126
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:19
 
2127
  msgid ""
2128
- "Name your project and then click on the \"<b>Create</b>\" button again"
2129
  msgstr ""
2130
 
2131
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:20
2132
- msgid "Once you have a project, you'll end up in the dashboard."
 
 
 
2133
  msgstr ""
2134
 
2135
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:21
2136
- msgid ""
2137
- "Click the “<b>OAuth consent screen</b>” button on the left hand side."
2138
  msgstr ""
2139
 
2140
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:22
 
2141
  msgid ""
2142
- "Choose a <b>User Type</b> according to your needs. If you want to "
2143
- "enable the social login with Google for any users with a Google "
2144
- "account, then pick the External option!"
2145
  msgstr ""
2146
 
2147
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:24
@@ -2153,51 +2216,81 @@ msgid ""
2153
  msgstr ""
2154
 
2155
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:27
 
2156
  msgid ""
2157
- "Enter a name for your App to the \"<b>Application name</b>\" field, "
2158
- "which will appear as the name of the app asking for consent."
2159
  msgstr ""
2160
 
2161
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:28
2162
  #, php-format
2163
  msgid ""
2164
- "Fill the \"<b>Authorized domains</b>\" field with your domain name "
2165
- "probably: <b>%s</b> without subdomains!"
2166
  msgstr ""
2167
 
2168
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:29
2169
- msgid "Save your settings!"
 
 
 
2170
  msgstr ""
2171
 
2172
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:30
2173
  #, php-format
2174
  msgid ""
2175
- "On the left side, click on the \"<b>%1$s</b>\" menu point, then click "
2176
- "the \"<b>%2$s</b>\" button in the top bar."
2177
  msgstr ""
2178
 
2179
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:31
2180
- msgid "Choose the \"<b>OAuth client ID</b>\" option."
 
 
 
2181
  msgstr ""
2182
 
2183
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:32
2184
- msgid "Select the \"<b>Web application</b>\" under Application type."
 
 
 
2185
  msgstr ""
2186
 
2187
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:33
2188
- msgid "Enter a \"<b>Name</b>\" for your OAuth client ID."
 
 
 
 
 
 
2189
  msgstr ""
2190
 
2191
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:35
2192
- msgid "Click on the \"<b>Create</b>\" button"
 
2193
  msgstr ""
2194
 
2195
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:36
 
 
 
 
 
 
 
 
 
 
 
 
 
2196
  msgid ""
2197
  "A modal should pop up with your credentials. If that doesn't happen, "
2198
- "go to the Credentials in the left hand menu and select your app by "
2199
- "clicking on its name and you'll be able to copy-paste the \"<b>Client "
2200
- "ID</b>\" and \"<b>Client Secret</b>\" from there."
2201
  msgstr ""
2202
 
2203
  #: nextend-facebook-connect/providers/google/admin/settings.php:27
@@ -2259,7 +2352,6 @@ msgid ""
2259
  msgstr ""
2260
 
2261
  #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:11
2262
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:27
2263
  msgid ""
2264
  "Click on the <b>Edit</b> button at <b>Authentication settings</b>."
2265
  msgstr ""
@@ -2270,20 +2362,11 @@ msgid ""
2270
  "Add the following URL to the \"<b>Callback URLs</b>\" field: <b>%s</b>"
2271
  msgstr ""
2272
 
2273
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:17
2274
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:25
2275
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:38
2276
- #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:9
2277
- #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:16
2278
- #: nextend-social-login-pro/providers/github/admin/getting-started.php:16
2279
- #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:9
2280
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:17
2281
- #: nextend-social-login-pro/providers/vk/admin/getting-started.php:16
2282
- #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:9
2283
- #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:16
2284
- #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:17
2285
  #, php-format
2286
- msgid "Log in with your %s credentials if you are not logged in."
 
 
2287
  msgstr ""
2288
 
2289
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:18
@@ -2300,71 +2383,75 @@ msgid ""
2300
  msgstr ""
2301
 
2302
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:20
2303
- msgid "Click on <b>+ New Project</b>!"
 
2304
  msgstr ""
2305
 
2306
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:21
2307
  msgid ""
2308
  "Name your project, and go through the basic setup. You’ll need to "
2309
- "select your use case and give a description."
 
2310
  msgstr ""
2311
 
2312
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:22
2313
- msgid ""
2314
- "Create a new app, or select an existing one, then click <b>Complete</b>"
2315
  msgstr ""
2316
 
2317
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:23
 
2318
  msgid ""
2319
  "You’ll find your API key and secret on this page. Copy and paste the "
2320
- "<b>API key</b> and the <b>API secret key</b> to the corresponding "
2321
- "fields at Nextend Social Login and press <b>Save Changes</b>."
2322
  msgstr ""
2323
 
2324
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:24
2325
  #, php-format
2326
- msgid "Click on the <b>App Settings</b> button at %s."
 
 
2327
  msgstr ""
2328
 
2329
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:25
2330
- msgid "Find the Apps section, and the app you created a few steps ago."
 
 
2331
  msgstr ""
2332
 
2333
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:26
2334
- msgid "Click on the App settings icon. (The one that looks like a gear.)"
 
 
 
 
 
 
2335
  msgstr ""
2336
 
2337
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:28
2338
- msgid "Switch on the <b>Enable 3-legged OAuth</b> option."
 
2339
  msgstr ""
2340
 
2341
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:29
2342
  #, php-format
2343
  msgid ""
2344
- "Add the following URL to the <b>Callback URLs</b> field: <b>%s</b>"
 
 
 
2345
  msgstr ""
2346
 
2347
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:30
2348
  #, php-format
2349
- msgid "Enter your site's URL to the <b>Website URL</b> field: <b>%s</b>"
2350
  msgstr ""
2351
 
2352
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:31
2353
- msgid ""
2354
- "If you want to get the email address as well, then don’t forget to "
2355
- "enable the <b>Request email address from users</b> option. In this "
2356
- "case you also need to fill the <b>Terms of service</b> and the "
2357
- "<b>Privacy policy</b> fields with the corresponding URLs!"
2358
- msgstr ""
2359
-
2360
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:32
2361
- msgid "Click on <b>Save</b>."
2362
- msgstr ""
2363
-
2364
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:33
2365
  #, php-format
2366
- msgid ""
2367
- "Go back to Nextend Social Login and <b>Verify</b> your %s provider."
2368
  msgstr ""
2369
 
2370
  #: nextend-facebook-connect/providers/twitter/admin/settings.php:27
@@ -2687,8 +2774,10 @@ msgstr ""
2687
 
2688
  #: nextend-social-login-pro/providers/apple/admin/getting-started.php:35
2689
  msgid ""
2690
- "Make sure you have an <strong>active subscription for the Apple "
2691
- "Developer Program</strong>!"
 
 
2692
  msgstr ""
2693
 
2694
  #: nextend-social-login-pro/providers/apple/admin/getting-started.php:36
@@ -3626,34 +3715,34 @@ msgstr ""
3626
  msgid "Required permission: %1$s"
3627
  msgstr ""
3628
 
3629
- #: nextend-social-login-pro/template-parts/buddypress/login/above-separator.php:10
3630
- #: nextend-social-login-pro/template-parts/buddypress/login/below-separator.php:10
3631
- #: nextend-social-login-pro/template-parts/embedded-login/above-separator.php:10
3632
- #: nextend-social-login-pro/template-parts/embedded-login/below-separator.php:10
3633
- #: nextend-social-login-pro/template-parts/login/above-separator.php:20
3634
- #: nextend-social-login-pro/template-parts/login/below-separator.php:8
3635
- #: nextend-social-login-pro/template-parts/memberpress/login/above-separator.php:10
3636
- #: nextend-social-login-pro/template-parts/memberpress/login/below-separator.php:10
3637
- #: nextend-social-login-pro/template-parts/memberpress/sign-up/above-separator.php:10
3638
- #: nextend-social-login-pro/template-parts/memberpress/sign-up/below-separator.php:10
3639
- #: nextend-social-login-pro/template-parts/ultimate-member/login/above-separator.php:10
3640
- #: nextend-social-login-pro/template-parts/ultimate-member/login/below-separator.php:10
3641
- #: nextend-social-login-pro/template-parts/ultimate-member/register/above-separator.php:10
3642
- #: nextend-social-login-pro/template-parts/ultimate-member/register/below-separator.php:10
3643
- #: nextend-social-login-pro/template-parts/userpro/login/above-separator.php:10
3644
- #: nextend-social-login-pro/template-parts/userpro/login/below-separator.php:10
3645
- #: nextend-social-login-pro/template-parts/userpro/register/above-separator.php:10
3646
- #: nextend-social-login-pro/template-parts/userpro/register/below-separator.php:10
3647
- #: nextend-social-login-pro/template-parts/woocommerce/billing/above-separator.php:11
3648
- #: nextend-social-login-pro/template-parts/woocommerce/billing/below-separator.php:11
3649
- #: nextend-social-login-pro/template-parts/woocommerce/billing/default-separator-after.php:7
3650
- #: nextend-social-login-pro/template-parts/woocommerce/billing/default-separator-before.php:7
3651
- #: nextend-social-login-pro/template-parts/woocommerce/checkout-for-woocommerce/above-separator.php:15
3652
- #: nextend-social-login-pro/template-parts/woocommerce/checkout-for-woocommerce/below-separator.php:15
3653
- #: nextend-social-login-pro/template-parts/woocommerce/login/above-separator.php:10
3654
- #: nextend-social-login-pro/template-parts/woocommerce/login/below-separator.php:10
3655
- #: nextend-social-login-pro/template-parts/woocommerce/register/above-separator.php:10
3656
- #: nextend-social-login-pro/template-parts/woocommerce/register/below-separator.php:10
3657
  msgid "OR"
3658
  msgstr ""
3659
 
2
  msgid ""
3
  msgstr ""
4
  "Project-Id-Version: nextend-facebook-connect\n"
5
+ "POT-Creation-Date: 2021-06-16 13:59+0200\n"
6
  "PO-Revision-Date: 2020-06-29 13:58+0200\n"
7
  "Last-Translator: \n"
8
  "Language-Team: nextend-facebook-connect\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
+ "X-Generator: Poedit 3.0\n"
14
  "X-Poedit-Basepath: ../..\n"
15
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
16
  "X-Poedit-SourceCharset: UTF-8\n"
114
  msgid "User"
115
  msgstr ""
116
 
117
+ #: nextend-facebook-connect/admin/admin.php:204
118
  #, php-format
119
  msgid "%s needs json_decode function."
120
  msgstr ""
121
 
122
+ #: nextend-facebook-connect/admin/admin.php:204
123
  msgid "Please contact your server administrator and ask for solution!"
124
  msgstr ""
125
 
126
+ #: nextend-facebook-connect/admin/admin.php:236
127
+ #: nextend-facebook-connect/admin/admin.php:266
128
  msgid "Settings saved."
129
  msgstr ""
130
 
131
+ #: nextend-facebook-connect/admin/admin.php:245
132
  msgid "The activation was successful"
133
  msgstr ""
134
 
135
+ #: nextend-facebook-connect/admin/admin.php:256
136
  msgid "Deactivate completed."
137
  msgstr ""
138
 
139
+ #: nextend-facebook-connect/admin/admin.php:435
140
  #: nextend-facebook-connect/admin/templates-provider/menu.php:15
141
  #: nextend-facebook-connect/admin/templates/providers.php:89
142
  #: nextend-facebook-connect/admin/templates/providers.php:101
144
  msgid "Settings"
145
  msgstr ""
146
 
147
+ #: nextend-facebook-connect/admin/admin.php:518
148
  #: nextend-facebook-connect/includes/oauth2.php:143
149
  #: nextend-facebook-connect/includes/oauth2.php:288
150
  #: nextend-facebook-connect/providers/facebook/facebook-client.php:84
155
  msgid "Unexpected response: %s"
156
  msgstr ""
157
 
158
+ #: nextend-facebook-connect/admin/admin.php:579
159
  #: nextend-facebook-connect/admin/templates/fix-redirect-uri.php:21
160
  #, php-format
161
  msgid ""
163
  "redirect URIs in the related social applications."
164
  msgstr ""
165
 
166
+ #: nextend-facebook-connect/admin/admin.php:580
167
  #: nextend-social-login-pro/providers/apple/apple.php:310
168
  msgid "Fix Error"
169
  msgstr ""
170
 
171
+ #: nextend-facebook-connect/admin/admin.php:580
172
  msgid "Oauth Redirect URI"
173
  msgstr ""
174
 
175
+ #: nextend-facebook-connect/admin/admin.php:597
176
  #, php-format
177
  msgid ""
178
  "%1$s detected that %2$s installed on your site. You need the Pro Addon "
179
  "to display Social Login buttons in %2$s login form!"
180
  msgstr ""
181
 
182
+ #: nextend-facebook-connect/admin/admin.php:598
183
  msgid "Dismiss and check Pro Addon"
184
  msgstr ""
185
 
186
+ #: nextend-facebook-connect/admin/admin.php:598
187
  msgid "Dismiss"
188
  msgstr ""
189
 
190
+ #: nextend-facebook-connect/admin/admin.php:604
191
  #, php-format
192
  msgid ""
193
  "%1$s detected that %2$s installed on your site. You must set \"<b>Page "
195
  "in %1$s to work properly."
196
  msgstr ""
197
 
198
+ #: nextend-facebook-connect/admin/admin.php:605
199
  msgid "Fix now"
200
  msgstr ""
201
 
202
+ #: nextend-facebook-connect/admin/admin.php:629
203
  msgid "Activate your Pro Addon"
204
  msgstr ""
205
 
206
+ #: nextend-facebook-connect/admin/admin.php:630
207
  msgid ""
208
  "To be able to use the Pro features, you need to activate Nextend "
209
  "Social Login Pro Addon. You can do this by clicking on the Activate "
210
  "button below then select the related purchase."
211
  msgstr ""
212
 
213
+ #: nextend-facebook-connect/admin/admin.php:635
214
  #: nextend-social-login-pro/nextend-social-login-pro.php:110
215
  msgid "Activate"
216
  msgstr ""
217
 
218
+ #: nextend-facebook-connect/admin/admin.php:733
219
  msgid "License key"
220
  msgstr ""
221
 
222
+ #: nextend-facebook-connect/admin/admin.php:756
223
  msgid "OAuth proxy page"
224
  msgstr ""
225
 
226
+ #: nextend-facebook-connect/admin/admin.php:759
227
  msgid "Register flow page"
228
  msgstr ""
229
 
232
  msgid "You have logged in successfully."
233
  msgstr ""
234
 
235
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:86
236
  msgid "Login label"
237
  msgstr ""
238
 
239
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:91
240
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:107
241
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:120
242
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:131
243
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:160
244
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:190
245
  #: nextend-facebook-connect/admin/templates/settings/privacy.php:53
246
  msgid "Reset to default"
247
  msgstr ""
248
 
249
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:101
250
  msgid "Register label"
251
  msgstr ""
252
 
253
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:114
254
  msgid "Link label"
255
  msgstr ""
256
 
257
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:126
258
  msgid "Unlink label"
259
  msgstr ""
260
 
261
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:137
262
  msgid "Default button"
263
  msgstr ""
264
 
265
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:153
266
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:183
267
  msgid "Use custom button"
268
  msgstr ""
269
 
270
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:160
271
  #, php-format
272
  msgid ""
273
  "Use the %s in your custom button's code to make the label show up."
274
  msgstr ""
275
 
276
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:168
277
  msgid "Icon button"
278
  msgstr ""
279
 
280
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:199
281
  #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:140
282
  #: nextend-facebook-connect/admin/templates-provider/sync-data.php:104
283
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:170
455
  msgstr ""
456
 
457
  #: nextend-facebook-connect/admin/templates-provider/sync-data.php:50
 
458
  msgid "Register"
459
  msgstr ""
460
 
1393
  msgstr ""
1394
 
1395
  #: nextend-facebook-connect/admin/templates/settings/privacy.php:102
1396
+ #: nextend-facebook-connect/includes/provider.php:1102
1397
  msgid "Access token"
1398
  msgstr ""
1399
 
1508
  msgstr[0] ""
1509
  msgstr[1] ""
1510
 
1511
+ #: nextend-facebook-connect/includes/avatar.php:399
1512
+ msgid "Invalid URL Provided."
1513
+ msgstr ""
1514
+
1515
+ #: nextend-facebook-connect/includes/avatar.php:404
1516
+ msgid "Could not create Temporary file."
1517
+ msgstr ""
1518
+
1519
  #: nextend-facebook-connect/includes/compat-wp-login.php:63
1520
  #, php-format
1521
  msgid "%1$s &lsaquo; %2$s &#8212; WordPress"
1586
  msgstr ""
1587
 
1588
  #: nextend-facebook-connect/includes/provider.php:358
1589
+ #: nextend-facebook-connect/includes/provider.php:719
1590
+ #: nextend-facebook-connect/includes/provider.php:727
1591
  msgid "Authentication successful"
1592
  msgstr ""
1593
 
1594
+ #: nextend-facebook-connect/includes/provider.php:656
1595
  #: nextend-facebook-connect/includes/user.php:168
1596
  #: nextend-facebook-connect/includes/user.php:597
1597
  msgid "Authentication error"
1598
  msgstr ""
1599
 
1600
+ #: nextend-facebook-connect/includes/provider.php:671
1601
  msgid "Unlink successful."
1602
  msgstr ""
1603
 
1604
+ #: nextend-facebook-connect/includes/provider.php:673
1605
  msgid "Unlink is not allowed!"
1606
  msgstr ""
1607
 
1608
+ #: nextend-facebook-connect/includes/provider.php:888
1609
+ #: nextend-facebook-connect/includes/provider.php:895
1610
  msgid "The test was successful"
1611
  msgstr ""
1612
 
1613
+ #: nextend-facebook-connect/includes/provider.php:941
1614
  msgid "Authentication failed"
1615
  msgstr ""
1616
 
1617
+ #: nextend-facebook-connect/includes/provider.php:1094
1618
  msgid "Identifier"
1619
  msgstr ""
1620
 
1621
+ #: nextend-facebook-connect/includes/provider.php:1110
1622
  msgid "Profile picture"
1623
  msgstr ""
1624
 
1649
  msgid "Register For This Site!"
1650
  msgstr ""
1651
 
1652
+ #: nextend-facebook-connect/includes/userData.php:189
1653
+ msgctxt "Register form submit button label"
1654
+ msgid "Register"
1655
+ msgstr ""
1656
+
1657
  #: nextend-facebook-connect/nextend-facebook-connect.php:37
1658
  #, php-format
1659
  msgid "%1$s requires PHP version %2$s+, plugin is currently NOT ACTIVE."
1677
  msgid "Update now!"
1678
  msgstr ""
1679
 
1680
+ #: nextend-facebook-connect/nextend-social-login.php:820
1681
+ #: nextend-facebook-connect/nextend-social-login.php:1199
1682
  msgid "Social Login"
1683
  msgstr ""
1684
 
1685
+ #: nextend-facebook-connect/nextend-social-login.php:1180
1686
  msgid "Social Accounts"
1687
  msgstr ""
1688
 
1724
  #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:9
1725
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:25
1726
  #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:9
 
1727
  #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:9
1728
  #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:9
1729
  #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:20
1832
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:26
1833
  msgid ""
1834
  "Click on the \"<b>Create App</b>\" button and in the Popup choose the "
1835
+ "\"<b>Consumer</b>\" App type!"
1836
  msgstr ""
1837
 
1838
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:27
1857
 
1858
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:30
1859
  msgid ""
1860
+ "Click the \"<b>Create App</b>\" button and complete the Security Check."
 
1861
  msgstr ""
1862
 
1863
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:31
1972
  msgstr ""
1973
 
1974
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:60
1975
+ msgid "Maintaining the Facebook App:"
1976
+ msgstr ""
1977
+
1978
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:61
1979
+ #, php-format
1980
+ msgid ""
1981
+ "<strong><u>Facebook Data Use Checkup:</u></strong> To protecting "
1982
+ "people's privacy, Facebook might requests you to fill some forms, so "
1983
+ "they can ensure that your API access and data use comply with the "
1984
+ "Facebook policies.\n"
1985
+ "If Facebook displays the \"%1$s\" modal for your App, then in our "
1986
+ "%2$sdocumentation%3$s you can find more information about the "
1987
+ "permissions that we need."
1988
+ msgstr ""
1989
+
1990
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:63
1991
+ #, php-format
1992
+ msgid ""
1993
+ "<strong><u>New Data Access Levels:</u></strong> Facebook started "
1994
+ "replacing the Development Mode / Live Mode switch in some Apps with "
1995
+ "%1$s ( earlier Development Mode ) and %2$s ( earlier Live mode ), "
1996
+ "which can be modified on the <strong>%3$s</strong> page. You can reach "
1997
+ "this page from the left hand menu of your App, under <strong>%4$s</"
1998
+ "strong>.\n"
1999
+ "If you want people outside of your business to be able to use their "
2000
+ "Faceook account to register and login over your App, then make sure "
2001
+ "you requested <strong>%2$s</strong> for the <strong>%5$s</strong> and "
2002
+ "<strong>%6$s</strong> permissions. "
2003
+ msgstr ""
2004
+
2005
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:67
2006
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:42
2007
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:35
2008
  #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:39
2009
  #: nextend-social-login-pro/providers/apple/admin/getting-started.php:122
2010
  #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:30
2142
  msgstr ""
2143
 
2144
  #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:12
 
2145
  #, php-format
2146
  msgid ""
2147
  "Add the following URL to the \"<b>Authorised redirect URIs</b>\" "
2149
  msgstr ""
2150
 
2151
  #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:13
2152
+ #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:14
2153
  #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:14
2154
  msgid "Click on \"<b>Save</b>\""
2155
  msgstr ""
2156
 
2157
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:17
2158
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:17
2159
+ #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:25
2160
+ #: nextend-social-login-pro/providers/apple/admin/getting-started.php:38
2161
+ #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:9
2162
+ #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:16
2163
+ #: nextend-social-login-pro/providers/github/admin/getting-started.php:16
2164
+ #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:9
2165
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:17
2166
+ #: nextend-social-login-pro/providers/vk/admin/getting-started.php:16
2167
+ #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:9
2168
+ #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:16
2169
+ #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:17
2170
+ #, php-format
2171
+ msgid "Log in with your %s credentials if you are not logged in."
2172
+ msgstr ""
2173
+
2174
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:18
2175
+ #, php-format
2176
  msgid ""
2177
  "If you don't have a project yet, you'll need to create one. You can do "
2178
+ "this by clicking on the blue \"<b>%1$s</b>\" text on the right side! "
2179
+ "( If you already have a project, then in the top bar click on the name "
2180
+ "of your project instead, which will bring up a modal and click <b>"
2181
+ "\"%2$s\"</b>. )"
2182
  msgstr ""
2183
 
2184
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:19
2185
+ #, php-format
2186
  msgid ""
2187
+ "Name your project and then click on the \"<b>%1$s</b>\" button again!"
2188
  msgstr ""
2189
 
2190
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:20
2191
+ msgid ""
2192
+ "Once you have a project, you'll end up in the dashboard. ( If earlier "
2193
+ "you have already had a Project, then make sure you select the created "
2194
+ "project in the top bar! )"
2195
  msgstr ""
2196
 
2197
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:21
2198
+ #, php-format
2199
+ msgid "Click the “<b>%1$s</b>” button on the left hand side."
2200
  msgstr ""
2201
 
2202
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:22
2203
+ #, php-format
2204
  msgid ""
2205
+ "Choose a <b>%1$s</b> according to your needs and press \"<b>%2$s</b>"
2206
+ "\". If you want to enable the social login with %3$s for any users "
2207
+ "with a %3$s account, then pick the \"%4$s\" option!"
2208
  msgstr ""
2209
 
2210
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:24
2216
  msgstr ""
2217
 
2218
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:27
2219
+ #, php-format
2220
  msgid ""
2221
+ "Enter a name for your App to the \"<b>%1$s</b>\" field, which will "
2222
+ "appear as the name of the app asking for consent."
2223
  msgstr ""
2224
 
2225
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:28
2226
  #, php-format
2227
  msgid ""
2228
+ "For the \"<b>%1$s</b>\" field, select an email address that users can "
2229
+ "use to contact you with questions about their consent."
2230
  msgstr ""
2231
 
2232
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:29
2233
+ #, php-format
2234
+ msgid ""
2235
+ "Under the \"<b>%1$s</b>\" section press the \"<b>%2$s</b>\" button "
2236
+ "and enter your domain name, probably: <b>%3$s</b> without subdomains!"
2237
  msgstr ""
2238
 
2239
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:30
2240
  #, php-format
2241
  msgid ""
2242
+ "At the \"<b>%1$s</b>\" section, enter an email address that %2$s can "
2243
+ "use to notify you about any changes to your project."
2244
  msgstr ""
2245
 
2246
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:31
2247
+ #, php-format
2248
+ msgid ""
2249
+ "Press \"<b>%1$s</b>\" then press it again on the \"%2$s\", \"%3$s\" "
2250
+ "pages, too!"
2251
  msgstr ""
2252
 
2253
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:32
2254
+ #, php-format
2255
+ msgid ""
2256
+ "On the left side, click on the \"<b>%1$s</b>\" menu point, then click "
2257
+ "the \"<b>%2$s</b>\" button in the top bar."
2258
  msgstr ""
2259
 
2260
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:33
2261
+ #, php-format
2262
+ msgid "Choose the \"<b>%1$s</b>\" option."
2263
+ msgstr ""
2264
+
2265
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:34
2266
+ #, php-format
2267
+ msgid "Select the \"<b>%1$s</b>\" under Application type."
2268
  msgstr ""
2269
 
2270
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:35
2271
+ #, php-format
2272
+ msgid "Enter a \"<b>%1$s</b>\" for your OAuth client ID."
2273
  msgstr ""
2274
 
2275
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:36
2276
+ #, php-format
2277
+ msgid ""
2278
+ "Under the \"<b>%1$s</b>\" section click \"<b>%2$s</b>\" and add the "
2279
+ "following URL: <b>%3$s</b>"
2280
+ msgstr ""
2281
+
2282
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:37
2283
+ #, php-format
2284
+ msgid "Click on the \"<b>%1$s</b>\" button"
2285
+ msgstr ""
2286
+
2287
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:38
2288
+ #, php-format
2289
  msgid ""
2290
  "A modal should pop up with your credentials. If that doesn't happen, "
2291
+ "go to the %1$s in the left hand menu and select your app by clicking "
2292
+ "on its name and you'll be able to copy-paste the \"<b>%2$s</b>\" and "
2293
+ "\"<b>%3$s</b>\" from there."
2294
  msgstr ""
2295
 
2296
  #: nextend-facebook-connect/providers/google/admin/settings.php:27
2352
  msgstr ""
2353
 
2354
  #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:11
 
2355
  msgid ""
2356
  "Click on the <b>Edit</b> button at <b>Authentication settings</b>."
2357
  msgstr ""
2362
  "Add the following URL to the \"<b>Callback URLs</b>\" field: <b>%s</b>"
2363
  msgstr ""
2364
 
2365
+ #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:13
 
 
 
 
 
 
 
 
 
 
 
2366
  #, php-format
2367
+ msgid ""
2368
+ "Make sure the \"<b>%1$s</b>\" field contains the following URL: <b>"
2369
+ "%2$s</b>"
2370
  msgstr ""
2371
 
2372
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:18
2383
  msgstr ""
2384
 
2385
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:20
2386
+ #, php-format
2387
+ msgid "Click on \"<b>%s</b>\"!"
2388
  msgstr ""
2389
 
2390
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:21
2391
  msgid ""
2392
  "Name your project, and go through the basic setup. You’ll need to "
2393
+ "select your use case, give a description and enter a name for the App "
2394
+ "as well."
2395
  msgstr ""
2396
 
2397
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:22
2398
+ #, php-format
2399
+ msgid "Click \"<b>%s</b>\"!"
2400
  msgstr ""
2401
 
2402
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:23
2403
+ #, php-format
2404
  msgid ""
2405
  "You’ll find your API key and secret on this page. Copy and paste the "
2406
+ "\"<b>%1$s</b>\" and the \"<b>%2$s</b>\" to the corresponding fields at "
2407
+ "%3$s and press \"<b>Save Changes</b>\"."
2408
  msgstr ""
2409
 
2410
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:24
2411
  #, php-format
2412
+ msgid ""
2413
+ "Go back to your Twitter project and on the left side, under the \"<b>"
2414
+ "%s</b>\" section click on the name of your App."
2415
  msgstr ""
2416
 
2417
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:25
2418
+ #, php-format
2419
+ msgid ""
2420
+ "Scroll down and click on the \"<b>%1$s</b>\" button at \"<b>%2$s</b>\"."
2421
  msgstr ""
2422
 
2423
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:26
2424
+ #, php-format
2425
+ msgid "Switch on the \"<b>%s</b>\" option."
2426
+ msgstr ""
2427
+
2428
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:27
2429
+ #, php-format
2430
+ msgid "Add the following URL to the \"<b>%1$s</b>\" field: <b>%2$s</b>"
2431
  msgstr ""
2432
 
2433
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:28
2434
+ #, php-format
2435
+ msgid "Enter your site's URL to the \"<b>%1$s</b>\" field: <b>%2$s</b>"
2436
  msgstr ""
2437
 
2438
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:29
2439
  #, php-format
2440
  msgid ""
2441
+ "If you want to get the email address as well, then don’t forget to "
2442
+ "enable the \"<b>%1$s</b>\" option. In this case you also need to fill "
2443
+ "the \"<b>%2$s</b>\" and the \"<b>%3$s</b>\" fields with the "
2444
+ "corresponding URLs!"
2445
  msgstr ""
2446
 
2447
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:30
2448
  #, php-format
2449
+ msgid "Click on \"<b>%s</b>\"."
2450
  msgstr ""
2451
 
2452
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:31
 
 
 
 
 
 
 
 
 
 
 
 
2453
  #, php-format
2454
+ msgid "Go back to %1$s and <b>Verify</b> your %2$s provider."
 
2455
  msgstr ""
2456
 
2457
  #: nextend-facebook-connect/providers/twitter/admin/settings.php:27
2774
 
2775
  #: nextend-social-login-pro/providers/apple/admin/getting-started.php:35
2776
  msgid ""
2777
+ "Make sure you have an <strong>active subscription for the <a href="
2778
+ "\"https://developer.apple.com/programs/\" target=\"_blank\">Apple "
2779
+ "Developer Program</a></strong>, as that is necessary for both creating "
2780
+ "and maintaining an Apple App!"
2781
  msgstr ""
2782
 
2783
  #: nextend-social-login-pro/providers/apple/admin/getting-started.php:36
3715
  msgid "Required permission: %1$s"
3716
  msgstr ""
3717
 
3718
+ #: nextend-social-login-pro/template-parts/buddypress/login/above-separator.php:18
3719
+ #: nextend-social-login-pro/template-parts/buddypress/login/below-separator.php:18
3720
+ #: nextend-social-login-pro/template-parts/embedded-login/above-separator.php:18
3721
+ #: nextend-social-login-pro/template-parts/embedded-login/below-separator.php:18
3722
+ #: nextend-social-login-pro/template-parts/login/above-separator.php:25
3723
+ #: nextend-social-login-pro/template-parts/login/below-separator.php:30
3724
+ #: nextend-social-login-pro/template-parts/memberpress/login/above-separator.php:18
3725
+ #: nextend-social-login-pro/template-parts/memberpress/login/below-separator.php:18
3726
+ #: nextend-social-login-pro/template-parts/memberpress/sign-up/above-separator.php:18
3727
+ #: nextend-social-login-pro/template-parts/memberpress/sign-up/below-separator.php:18
3728
+ #: nextend-social-login-pro/template-parts/ultimate-member/login/above-separator.php:18
3729
+ #: nextend-social-login-pro/template-parts/ultimate-member/login/below-separator.php:18
3730
+ #: nextend-social-login-pro/template-parts/ultimate-member/register/above-separator.php:18
3731
+ #: nextend-social-login-pro/template-parts/ultimate-member/register/below-separator.php:18
3732
+ #: nextend-social-login-pro/template-parts/userpro/login/above-separator.php:18
3733
+ #: nextend-social-login-pro/template-parts/userpro/login/below-separator.php:18
3734
+ #: nextend-social-login-pro/template-parts/userpro/register/above-separator.php:18
3735
+ #: nextend-social-login-pro/template-parts/userpro/register/below-separator.php:18
3736
+ #: nextend-social-login-pro/template-parts/woocommerce/billing/above-separator.php:25
3737
+ #: nextend-social-login-pro/template-parts/woocommerce/billing/below-separator.php:25
3738
+ #: nextend-social-login-pro/template-parts/woocommerce/billing/default-separator-after.php:13
3739
+ #: nextend-social-login-pro/template-parts/woocommerce/billing/default-separator-before.php:13
3740
+ #: nextend-social-login-pro/template-parts/woocommerce/checkout-for-woocommerce/above-separator.php:25
3741
+ #: nextend-social-login-pro/template-parts/woocommerce/checkout-for-woocommerce/below-separator.php:25
3742
+ #: nextend-social-login-pro/template-parts/woocommerce/login/above-separator.php:18
3743
+ #: nextend-social-login-pro/template-parts/woocommerce/login/below-separator.php:18
3744
+ #: nextend-social-login-pro/template-parts/woocommerce/register/above-separator.php:18
3745
+ #: nextend-social-login-pro/template-parts/woocommerce/register/below-separator.php:18
3746
  msgid "OR"
3747
  msgstr ""
3748
 
nextend-facebook-connect.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Nextend Social Login
4
  Plugin URI: https://nextendweb.com/
5
  Description: Nextend Social Login displays social login buttons for Facebook, Google and Twitter.
6
- Version: 3.0.27
7
  Requires PHP: 7.0
8
  Requires at least: 4.9
9
  Author: Nextendweb
3
  Plugin Name: Nextend Social Login
4
  Plugin URI: https://nextendweb.com/
5
  Description: Nextend Social Login displays social login buttons for Facebook, Google and Twitter.
6
+ Version: 3.0.28
7
  Requires PHP: 7.0
8
  Requires at least: 4.9
9
  Author: Nextendweb
nextend-social-login.php CHANGED
@@ -19,9 +19,9 @@ require_once(NSL_PATH . '/compat.php');
19
 
20
  class NextendSocialLogin {
21
 
22
- public static $version = '3.0.27';
23
 
24
- public static $nslPROMinVersion = '3.0.27';
25
 
26
  public static $proxyPage = false;
27
 
@@ -281,7 +281,7 @@ class NextendSocialLogin {
281
  '.'
282
  ));
283
 
284
- foreach ($providers AS $provider) {
285
  if (file_exists(self::$providersPath . $provider . '/' . $provider . '.php')) {
286
  require_once(self::$providersPath . $provider . '/' . $provider . '.php');
287
  }
@@ -316,8 +316,8 @@ class NextendSocialLogin {
316
 
317
  add_action('parse_request', 'NextendSocialLogin::editProfileRedirect');
318
 
319
- //check if jQuery is loaded
320
- add_action('wp_print_scripts', 'NextendSocialLogin::checkJqueryLoaded');
321
 
322
  if (count(self::$enabledProviders) > 0) {
323
 
@@ -325,14 +325,12 @@ class NextendSocialLogin {
325
  add_action('login_form_login', 'NextendSocialLogin::removeLoginFormAssets');
326
  } else {
327
  add_action('login_form', 'NextendSocialLogin::addLoginFormButtons');
328
- add_action('login_form_login', 'NextendSocialLogin::jQuery');
329
  }
330
 
331
  if (NextendSocialLogin::$settings->get('show_registration_form') == 'hide') {
332
  add_action('login_form_register', 'NextendSocialLogin::removeLoginFormAssets');
333
  } else {
334
  add_action('register_form', 'NextendSocialLogin::addRegisterFormButtons');
335
- add_action('login_form_register', 'NextendSocialLogin::jQuery');
336
  }
337
 
338
  if (NextendSocialLogin::$settings->get('show_embedded_login_form') != 'hide') {
@@ -363,9 +361,13 @@ class NextendSocialLogin {
363
  add_action('wp_head', 'NextendSocialLogin::styles', 100);
364
 
365
  /*
366
- * AMP plugin does not call wp_head in Reader mode.
 
 
 
 
367
  */
368
- add_action('wp', 'NextendSocialLogin::amp_post_template_head');
369
 
370
 
371
  add_action('admin_head', 'NextendSocialLogin::styles', 100);
@@ -447,8 +449,24 @@ class NextendSocialLogin {
447
  }
448
  }
449
 
450
- public static function checkJqueryLoaded() {
451
- echo '<script type="text/javascript">(function(a,d){if(a._nsl===d){a._nsl=[];var c=function(){if(a.jQuery===d)setTimeout(c,33);else{for(var b=0;b<a._nsl.length;b++)a._nsl[b].call(a,a.jQuery);a._nsl={push:function(b){b.call(a,a.jQuery)}}}};c()}})(window);</script>';
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
452
  }
453
 
454
  public static function loginHead() {
@@ -478,14 +496,53 @@ class NextendSocialLogin {
478
  $table_name = $wpdb->prefix . "social_users";
479
  $charset_collate = $wpdb->get_charset_collate();
480
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
481
  $sql = "CREATE TABLE " . $table_name . " (
482
- `social_users_id` int(11) NOT NULL AUTO_INCREMENT PRIMARY KEY,
483
- `ID` int(11) NOT NULL,
484
  `type` varchar(20) NOT NULL,
485
  `identifier` varchar(100) NOT NULL,
486
- `register_date` datetime NOT NULL default '0000-00-00 00:00:00',
487
- `login_date` datetime NOT NULL default '0000-00-00 00:00:00',
488
- `link_date` datetime NOT NULL default '0000-00-00 00:00:00',
 
489
  KEY `ID` (`ID`,`type`),
490
  KEY `identifier` (`identifier`)
491
  ) " . $charset_collate . ";";
@@ -584,6 +641,11 @@ class NextendSocialLogin {
584
  }
585
  } else {
586
  if (!is_front_page() && !is_home()) {
 
 
 
 
 
587
  wp_redirect(home_url());
588
  exit;
589
  }
@@ -655,7 +717,7 @@ class NextendSocialLogin {
655
 
656
  $errorMessages = Notices::getErrors();
657
  if ($errorMessages !== false) {
658
- foreach ($errorMessages AS $errorMessage) {
659
  $errors->add('error', $errorMessage);
660
  }
661
  }
@@ -676,10 +738,6 @@ class NextendSocialLogin {
676
  }
677
  }
678
 
679
- public static function jQuery() {
680
- wp_enqueue_script('jquery');
681
- }
682
-
683
  public static function filterAddEmbeddedLoginFormButtons($ret) {
684
 
685
  return $ret . self::getEmbeddedLoginForm();
@@ -777,7 +835,7 @@ class NextendSocialLogin {
777
  $enabledProviders = false;
778
  if (is_array($providers)) {
779
  $enabledProviders = array();
780
- foreach ($providers AS $provider) {
781
  if ($provider && isset(self::$enabledProviders[$provider->getId()])) {
782
  $enabledProviders[$provider->getId()] = $provider;
783
  }
@@ -789,7 +847,7 @@ class NextendSocialLogin {
789
 
790
  if (count($enabledProviders)) {
791
  $buttons = '';
792
- foreach ($enabledProviders AS $provider) {
793
  if ($provider->isCurrentUserConnected()) {
794
  if ($unlink) {
795
  $buttons .= $provider->getUnLinkButton();
@@ -819,7 +877,7 @@ class NextendSocialLogin {
819
  *
820
  */
821
  public static function getAvatar($user_id) {
822
- foreach (self::$enabledProviders AS $provider) {
823
  $avatar = $provider->getAvatar($user_id);
824
  if ($avatar !== false) {
825
  return $avatar;
@@ -903,7 +961,7 @@ class NextendSocialLogin {
903
  $enabledProviders = false;
904
  if (is_array($providers)) {
905
  $enabledProviders = array();
906
- foreach ($providers AS $provider) {
907
  if ($provider && isset(self::$enabledProviders[$provider->getId()])) {
908
  $enabledProviders[$provider->getId()] = $provider;
909
  }
@@ -915,7 +973,7 @@ class NextendSocialLogin {
915
 
916
  if (count($enabledProviders)) {
917
  $buttons = '';
918
- foreach ($enabledProviders AS $provider) {
919
  $buttons .= $provider->getConnectButton($style, $redirect_to, $trackerData, $labelType);
920
  }
921
 
@@ -930,7 +988,8 @@ class NextendSocialLogin {
930
  $ret = '<div class="nsl-container ' . self::$styles[$style]['container'] . '" data-align="' . esc_attr($align) . '">' . $heading . $buttons . '</div>';
931
  if (defined('DOING_AJAX') && DOING_AJAX) {
932
  $id = md5(uniqid('nsl-ajax-'));
933
- $ret = '<div id="' . $id . '">' . $ret . '</div><script>window._nsl.push(function($){$("#' . $id . '").find("a").each(function(i,el){var href=$(el).attr("href");if(href.indexOf("?") === -1){href+="?"}else{href+="&"}$(el).attr("href", href+"redirect="+encodeURIComponent(window.location.href));});});</script>';
 
934
  }
935
 
936
  return $ret;
@@ -1253,7 +1312,7 @@ class NextendSocialLogin {
1253
 
1254
  public static function hasConfigurationWithNoEnabledProviders() {
1255
  if (count(NextendSocialLogin::$enabledProviders) === 0) {
1256
- foreach (NextendSocialLogin::$providers AS $provider) {
1257
  $state = $provider->getState();
1258
  // Has providers configured, but none of them are enabled
1259
  if ($state === 'disabled') {
@@ -1265,19 +1324,11 @@ class NextendSocialLogin {
1265
  return false;
1266
  }
1267
 
1268
- public static function amp_post_template_head() {
1269
- if (class_exists('AMP_Theme_Support') && function_exists('amp_is_request') && amp_is_request()) {
1270
- if (AMP_Theme_Support::READER_MODE_SLUG === AMP_Options_Manager::get_option(AmpProject\AmpWP\Option::THEME_SUPPORT)) {
1271
- add_action('amp_post_template_head', 'NextendSocialLogin::styles', 100);
1272
- }
1273
- }
1274
- }
1275
-
1276
  public static function enableNoticeForUrl($url) {
1277
  return add_query_arg(array('nsl-notice' => 1), $url);
1278
  }
1279
 
1280
- public static function getUserIDByIdOrEmail($id_or_email){
1281
  $id = 0;
1282
 
1283
  /**
19
 
20
  class NextendSocialLogin {
21
 
22
+ public static $version = '3.0.28';
23
 
24
+ public static $nslPROMinVersion = '3.0.28';
25
 
26
  public static $proxyPage = false;
27
 
281
  '.'
282
  ));
283
 
284
+ foreach ($providers as $provider) {
285
  if (file_exists(self::$providersPath . $provider . '/' . $provider . '.php')) {
286
  require_once(self::$providersPath . $provider . '/' . $provider . '.php');
287
  }
316
 
317
  add_action('parse_request', 'NextendSocialLogin::editProfileRedirect');
318
 
319
+ //check if DOM is ready
320
+ add_action('wp_print_scripts', 'NextendSocialLogin::nslDOMReady');
321
 
322
  if (count(self::$enabledProviders) > 0) {
323
 
325
  add_action('login_form_login', 'NextendSocialLogin::removeLoginFormAssets');
326
  } else {
327
  add_action('login_form', 'NextendSocialLogin::addLoginFormButtons');
 
328
  }
329
 
330
  if (NextendSocialLogin::$settings->get('show_registration_form') == 'hide') {
331
  add_action('login_form_register', 'NextendSocialLogin::removeLoginFormAssets');
332
  } else {
333
  add_action('register_form', 'NextendSocialLogin::addRegisterFormButtons');
 
334
  }
335
 
336
  if (NextendSocialLogin::$settings->get('show_embedded_login_form') != 'hide') {
361
  add_action('wp_head', 'NextendSocialLogin::styles', 100);
362
 
363
  /*
364
+ *
365
+ * We need to call in our styles on the AMP pages using this action, since:
366
+ * -the "AMP" plugin does not call wp_head in Reader mode.
367
+ * -the "AMP for WP" plugin does not call wp_head in AMP view at all.
368
+ * -AMP plugins only allow adding custom CSS in the unique <style> tag with the attribute "amp-custom". Callbacks are only allowed to output bare CSS on this action.
369
  */
370
+ add_action('amp_post_template_css', 'NextendSocialLogin::stylesWithoutTag');
371
 
372
 
373
  add_action('admin_head', 'NextendSocialLogin::styles', 100);
449
  }
450
  }
451
 
452
+ public static function stylesWithoutTag() {
453
+
454
+ $stylesheet = self::get_template_part('style.css');
455
+ if (!empty($stylesheet) && file_exists($stylesheet)) {
456
+ echo file_get_contents($stylesheet);
457
+ }
458
+ }
459
+
460
+ public static function nslDOMReady() {
461
+ echo '<script type="text/javascript">
462
+ window._nslDOMReady = function (callback) {
463
+ if ( document.readyState === "complete" || document.readyState === "interactive" ) {
464
+ callback();
465
+ } else {
466
+ document.addEventListener( "DOMContentLoaded", callback );
467
+ }
468
+ };
469
+ </script>';
470
  }
471
 
472
  public static function loginHead() {
496
  $table_name = $wpdb->prefix . "social_users";
497
  $charset_collate = $wpdb->get_charset_collate();
498
 
499
+ $lastVersion = get_option('nsl-version');
500
+ /**
501
+ * In 3.0.27 we added a new column to the social_users table as autoincrement and primary key.
502
+ * This causes an SQL error for the dbDelta() function so we need to add it beforehand.
503
+ */
504
+ if (version_compare($lastVersion, '3.0.26', '<=')) {
505
+ $row = $wpdb->get_results("SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_SCHEMA = '" . DB_NAME . "' AND TABLE_NAME = '" . $table_name . "' AND COLUMN_NAME = 'social_users_id';");
506
+ if (!$row) {
507
+ $alterQuery = "ALTER TABLE " . $table_name . " ADD `social_users_id` int NOT NULL AUTO_INCREMENT PRIMARY KEY;";
508
+ $wpdb->query($alterQuery);
509
+ }
510
+ }
511
+
512
+ if (version_compare($lastVersion, '3.0.27', '<=')) {
513
+ /*
514
+ * In version 3.0.21 we started storing the register_date, login_date and link_date with '0000-00-00 00:00:00' as default value.
515
+ * That value returned an invalid value error on databases where 'sql_mode' has 'NO_ZERO_DATE, NO_ZERO_IN_DATE' modes, so it prevented us from modifying our database structure.
516
+ */
517
+ $row = $wpdb->get_results("SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_SCHEMA = '" . DB_NAME . "' AND TABLE_NAME = '" . $table_name . "' AND COLUMN_NAME = 'register_date';");
518
+ if (!empty($row)) {
519
+ $alterQuery = "ALTER TABLE " . $table_name . " CHANGE `register_date` `register_date` datetime DEFAULT NULL, CHANGE `login_date` `login_date` datetime DEFAULT NULL, CHANGE `link_date` `link_date` datetime DEFAULT NULL;";
520
+ $result = $wpdb->query($alterQuery);
521
+
522
+ if ($result) {
523
+ $wpdb->update($table_name, array('register_date' => NULL,), array(
524
+ 'register_date' => '0000-00-00 00:00:00'
525
+ ));
526
+ $wpdb->update($table_name, array('login_date' => NULL,), array(
527
+ 'login_date' => '0000-00-00 00:00:00'
528
+ ));
529
+ $wpdb->update($table_name, array('link_date' => NULL,), array(
530
+ 'link_date' => '0000-00-00 00:00:00'
531
+ ));
532
+ }
533
+ }
534
+ }
535
+
536
+
537
  $sql = "CREATE TABLE " . $table_name . " (
538
+ `social_users_id` int NOT NULL AUTO_INCREMENT,
539
+ `ID` int NOT NULL,
540
  `type` varchar(20) NOT NULL,
541
  `identifier` varchar(100) NOT NULL,
542
+ `register_date` datetime default NULL,
543
+ `login_date` datetime default NULL,
544
+ `link_date` datetime default NULL,
545
+ PRIMARY KEY (social_users_id),
546
  KEY `ID` (`ID`,`type`),
547
  KEY `identifier` (`identifier`)
548
  ) " . $charset_collate . ";";
641
  }
642
  } else {
643
  if (!is_front_page() && !is_home()) {
644
+ if (Notices::hasErrors()) {
645
+ wp_redirect(NextendSocialLogin::enableNoticeForUrl(home_url()));
646
+ exit;
647
+ }
648
+
649
  wp_redirect(home_url());
650
  exit;
651
  }
717
 
718
  $errorMessages = Notices::getErrors();
719
  if ($errorMessages !== false) {
720
+ foreach ($errorMessages as $errorMessage) {
721
  $errors->add('error', $errorMessage);
722
  }
723
  }
738
  }
739
  }
740
 
 
 
 
 
741
  public static function filterAddEmbeddedLoginFormButtons($ret) {
742
 
743
  return $ret . self::getEmbeddedLoginForm();
835
  $enabledProviders = false;
836
  if (is_array($providers)) {
837
  $enabledProviders = array();
838
+ foreach ($providers as $provider) {
839
  if ($provider && isset(self::$enabledProviders[$provider->getId()])) {
840
  $enabledProviders[$provider->getId()] = $provider;
841
  }
847
 
848
  if (count($enabledProviders)) {
849
  $buttons = '';
850
+ foreach ($enabledProviders as $provider) {
851
  if ($provider->isCurrentUserConnected()) {
852
  if ($unlink) {
853
  $buttons .= $provider->getUnLinkButton();
877
  *
878
  */
879
  public static function getAvatar($user_id) {
880
+ foreach (self::$enabledProviders as $provider) {
881
  $avatar = $provider->getAvatar($user_id);
882
  if ($avatar !== false) {
883
  return $avatar;
961
  $enabledProviders = false;
962
  if (is_array($providers)) {
963
  $enabledProviders = array();
964
+ foreach ($providers as $provider) {
965
  if ($provider && isset(self::$enabledProviders[$provider->getId()])) {
966
  $enabledProviders[$provider->getId()] = $provider;
967
  }
973
 
974
  if (count($enabledProviders)) {
975
  $buttons = '';
976
+ foreach ($enabledProviders as $provider) {
977
  $buttons .= $provider->getConnectButton($style, $redirect_to, $trackerData, $labelType);
978
  }
979
 
988
  $ret = '<div class="nsl-container ' . self::$styles[$style]['container'] . '" data-align="' . esc_attr($align) . '">' . $heading . $buttons . '</div>';
989
  if (defined('DOING_AJAX') && DOING_AJAX) {
990
  $id = md5(uniqid('nsl-ajax-'));
991
+ $ret = '<div id="' . $id . '">' . $ret . '</div><script>window._nslDOMReady(function(){var socialButtonContainer=document.getElementById("' . $id . '");if(socialButtonContainer){var socialButtons=socialButtonContainer.querySelectorAll("a");socialButtons.forEach(function(el,i){var href=el.getAttribute("href");if(href.indexOf("?")===-1){href+="?"}else{href+="&"}
992
+ el.setAttribute("href",href+"redirect="+encodeURIComponent(window.location.href))})}});</script>';
993
  }
994
 
995
  return $ret;
1312
 
1313
  public static function hasConfigurationWithNoEnabledProviders() {
1314
  if (count(NextendSocialLogin::$enabledProviders) === 0) {
1315
+ foreach (NextendSocialLogin::$providers as $provider) {
1316
  $state = $provider->getState();
1317
  // Has providers configured, but none of them are enabled
1318
  if ($state === 'disabled') {
1324
  return false;
1325
  }
1326
 
 
 
 
 
 
 
 
 
1327
  public static function enableNoticeForUrl($url) {
1328
  return add_query_arg(array('nsl-notice' => 1), $url);
1329
  }
1330
 
1331
+ public static function getUserIDByIdOrEmail($id_or_email) {
1332
  $id = 0;
1333
 
1334
  /**
providers/facebook/admin/getting-started.php CHANGED
@@ -23,11 +23,11 @@ $provider = $this->getProvider();
23
  <ol>
24
  <li><?php printf(__('Navigate to %s', 'nextend-facebook-connect'), '<a href="https://developers.facebook.com/apps/" target="_blank">https://developers.facebook.com/apps/</a>'); ?></li>
25
  <li><?php printf(__('Log in with your %s credentials if you are not logged in', 'nextend-facebook-connect'), 'Facebook'); ?></li>
26
- <li><?php _e('Click on the "<b>Create App</b>" button and in the Popup choose the "<b>Build Connected Experiences</b>" option!', 'nextend-facebook-connect'); ?></li>
27
  <li><?php _e('If you see the message "<b>Become a Facebook Developer</b>", then you need to click on the green "<b>Register Now</b>" button, fill the form then finally verify your account.', 'nextend-facebook-connect'); ?></li>
28
  <li><?php printf(__('Fill "<b>App Display Name</b>", "<b>App Contact Email</b>". The specified "App Display Name" will appear on your %s!', 'nextend-facebook-connect'), '<a href="https://developers.facebook.com/docs/facebook-login/permissions/overview/" target="_blank">Consent Screen</a>'); ?></li>
29
  <li><?php _e('<b>Optional</b>: choose a "<b>Business Manager Account</b>" in the popup, if you have any.', 'nextend-facebook-connect'); ?></li>
30
- <li><?php _e('Click the "<b>Create App ID</b>" button and complete the Security Check.', 'nextend-facebook-connect'); ?></li>
31
  <li><?php printf(__('At the "<b>Add a Product</b>" panel find "<b>%1$s</b>" and click "<b>Set Up</b>"', 'nextend-facebook-connect'), 'Facebook Login', 'Settings') ?></li>
32
  <li><?php printf(__('Select "<b>Web</b>" and enter the following URL to the "<b>Site URL</b>" field: <b>%s</b>', 'nextend-facebook-connect'), site_url()); ?></li>
33
  <li><?php _e('Press “<b>Save</b>”', 'nextend-facebook-connect'); ?></li>
@@ -56,6 +56,13 @@ $provider = $this->getProvider();
56
  <p><?php printf(__('<b>WARNING:</b> <u>Don\'t replace your Facebook App with another!</u> Since WordPress users with linked Facebook accounts can only login using the %1$s App, that was originally used at the time, when the WordPress account was linked with a %1$s Account.<br>
57
  If you would like to know the reason of this, or you really need to replace the Facebook App, then please check our %2$sdocumentation%3$s.', 'nextend-facebook-connect'), 'Facebook', '<a href="https://nextendweb.com/nextend-social-login-docs/provider-facebook/#app_scoped_user_id" target="_blank">', '</a>'); ?></p>
58
 
 
 
 
 
 
 
 
59
  <a href="<?php echo $this->getUrl('settings'); ?>"
60
  class="button button-primary"><?php printf(__('I am done setting up my %s', 'nextend-facebook-connect'), 'Facebook App'); ?></a>
61
 
23
  <ol>
24
  <li><?php printf(__('Navigate to %s', 'nextend-facebook-connect'), '<a href="https://developers.facebook.com/apps/" target="_blank">https://developers.facebook.com/apps/</a>'); ?></li>
25
  <li><?php printf(__('Log in with your %s credentials if you are not logged in', 'nextend-facebook-connect'), 'Facebook'); ?></li>
26
+ <li><?php _e('Click on the "<b>Create App</b>" button and in the Popup choose the "<b>Consumer</b>" App type!', 'nextend-facebook-connect'); ?></li>
27
  <li><?php _e('If you see the message "<b>Become a Facebook Developer</b>", then you need to click on the green "<b>Register Now</b>" button, fill the form then finally verify your account.', 'nextend-facebook-connect'); ?></li>
28
  <li><?php printf(__('Fill "<b>App Display Name</b>", "<b>App Contact Email</b>". The specified "App Display Name" will appear on your %s!', 'nextend-facebook-connect'), '<a href="https://developers.facebook.com/docs/facebook-login/permissions/overview/" target="_blank">Consent Screen</a>'); ?></li>
29
  <li><?php _e('<b>Optional</b>: choose a "<b>Business Manager Account</b>" in the popup, if you have any.', 'nextend-facebook-connect'); ?></li>
30
+ <li><?php _e('Click the "<b>Create App</b>" button and complete the Security Check.', 'nextend-facebook-connect'); ?></li>
31
  <li><?php printf(__('At the "<b>Add a Product</b>" panel find "<b>%1$s</b>" and click "<b>Set Up</b>"', 'nextend-facebook-connect'), 'Facebook Login', 'Settings') ?></li>
32
  <li><?php printf(__('Select "<b>Web</b>" and enter the following URL to the "<b>Site URL</b>" field: <b>%s</b>', 'nextend-facebook-connect'), site_url()); ?></li>
33
  <li><?php _e('Press “<b>Save</b>”', 'nextend-facebook-connect'); ?></li>
56
  <p><?php printf(__('<b>WARNING:</b> <u>Don\'t replace your Facebook App with another!</u> Since WordPress users with linked Facebook accounts can only login using the %1$s App, that was originally used at the time, when the WordPress account was linked with a %1$s Account.<br>
57
  If you would like to know the reason of this, or you really need to replace the Facebook App, then please check our %2$sdocumentation%3$s.', 'nextend-facebook-connect'), 'Facebook', '<a href="https://nextendweb.com/nextend-social-login-docs/provider-facebook/#app_scoped_user_id" target="_blank">', '</a>'); ?></p>
58
 
59
+ <br>
60
+ <h2 class="title"><?php _e('Maintaining the Facebook App:', 'nextend-facebook-connect'); ?></h2>
61
+ <p><?php printf(__('<strong><u>Facebook Data Use Checkup:</u></strong> To protecting people\'s privacy, Facebook might requests you to fill some forms, so they can ensure that your API access and data use comply with the Facebook policies.
62
+ If Facebook displays the "%1$s" modal for your App, then in our %2$sdocumentation%3$s you can find more information about the permissions that we need.', 'nextend-facebook-connect'), 'Data Use Checkup', '<a href="https://nextendweb.com/nextend-social-login-docs/provider-facebook/#data_use_checkup" target="_blank">', '</a>'); ?></p>
63
+ <p><?php printf(__('<strong><u>New Data Access Levels:</u></strong> Facebook started replacing the Development Mode / Live Mode switch in some Apps with %1$s ( earlier Development Mode ) and %2$s ( earlier Live mode ), which can be modified on the <strong>%3$s</strong> page. You can reach this page from the left hand menu of your App, under <strong>%4$s</strong>.
64
+ If you want people outside of your business to be able to use their Faceook account to register and login over your App, then make sure you requested <strong>%2$s</strong> for the <strong>%5$s</strong> and <strong>%6$s</strong> permissions. ', 'nextend-facebook-connect'), 'Standard Access', 'Advanced Access', 'Permissions and Features', 'App Review', 'email', 'public_profile'); ?></p>
65
+
66
  <a href="<?php echo $this->getUrl('settings'); ?>"
67
  class="button button-primary"><?php printf(__('I am done setting up my %s', 'nextend-facebook-connect'), 'Facebook App'); ?></a>
68
 
providers/github/github.png CHANGED
Binary file
providers/google/admin/getting-started.php CHANGED
@@ -14,26 +14,28 @@ $provider = $this->getProvider();
14
 
15
  <ol>
16
  <li><?php printf(__('Navigate to %s', 'nextend-facebook-connect'), '<a href="https://console.developers.google.com/apis/" target="_blank">https://console.developers.google.com/apis/</a>'); ?></li>
17
- <li><?php printf(__('Log in with your %s credentials if you are not logged in', 'nextend-facebook-connect'), 'Google'); ?></li>
18
- <li><?php _e('If you don\'t have a project yet, you\'ll need to create one. You can do this by clicking on the blue "<b>Create</b>" button on the right side! ( If you already have a project, click on the name of your project in the dashboard instead, which will bring up a modal and click <b>"New Project"</b>. )', 'nextend-facebook-connect'); ?></li>
19
- <li><?php _e('Name your project and then click on the "<b>Create</b>" button again', 'nextend-facebook-connect'); ?></li>
20
- <li><?php _e('Once you have a project, you\'ll end up in the dashboard.', 'nextend-facebook-connect'); ?></li>
21
- <li><?php _e('Click the “<b>OAuth consent screen</b>” button on the left hand side.', 'nextend-facebook-connect'); ?></li>
22
- <li><?php _e('Choose a <b>User Type</b> according to your needs. If you want to enable the social login with Google for any users with a Google account, then pick the External option!', 'nextend-facebook-connect'); ?>
23
  <ul>
24
- <li><?php printf(__('<b>Note:</b> We don\'t use sensitive or restricted scopes either. But if you will use this App for other purposes too, then you may need to go through an %1$s!', 'nextend-facebook-connect'), '<a href="https://support.google.com/cloud/answer/9110914" target="_blank">independent security review</a>'); ?></li>
25
  </ul>
26
  </li>
27
- <li><?php _e('Enter a name for your App to the "<b>Application name</b>" field, which will appear as the name of the app asking for consent.', 'nextend-facebook-connect'); ?></li>
28
- <li><?php printf(__('Fill the "<b>Authorized domains</b>" field with your domain name probably: <b>%s</b> without subdomains!', 'nextend-facebook-connect'), str_replace('www.', '', $_SERVER['HTTP_HOST'])); ?></li>
29
- <li><?php _e('Save your settings!', 'nextend-facebook-connect'); ?></li>
 
 
30
  <li><?php printf(__('On the left side, click on the "<b>%1$s</b>" menu point, then click the "<b>%2$s</b>" button in the top bar.', 'nextend-facebook-connect'), 'Credentials', '+ Create Credentials') ?></li>
31
- <li><?php _e('Choose the "<b>OAuth client ID</b>" option.', 'nextend-facebook-connect'); ?></li>
32
- <li><?php _e('Select the "<b>Web application</b>" under Application type.', 'nextend-facebook-connect'); ?></li>
33
- <li><?php _e('Enter a "<b>Name</b>" for your OAuth client ID.', 'nextend-facebook-connect'); ?></li>
34
- <li><?php printf(__('Add the following URL to the "<b>Authorised redirect URIs</b>" field: <b>%s</b>', 'nextend-facebook-connect'), $provider->getLoginUrl()); ?></li>
35
- <li><?php _e('Click on the "<b>Create</b>" button', 'nextend-facebook-connect'); ?></li>
36
- <li><?php _e('A modal should pop up with your credentials. If that doesn\'t happen, go to the Credentials in the left hand menu and select your app by clicking on its name and you\'ll be able to copy-paste the "<b>Client ID</b>" and "<b>Client Secret</b>" from there.', 'nextend-facebook-connect'); ?></li>
37
  </ol>
38
 
39
  <a href="<?php echo $this->getUrl('settings'); ?>"
14
 
15
  <ol>
16
  <li><?php printf(__('Navigate to %s', 'nextend-facebook-connect'), '<a href="https://console.developers.google.com/apis/" target="_blank">https://console.developers.google.com/apis/</a>'); ?></li>
17
+ <li><?php printf(__('Log in with your %s credentials if you are not logged in.', 'nextend-facebook-connect'), 'Google'); ?></li>
18
+ <li><?php printf(__('If you don\'t have a project yet, you\'ll need to create one. You can do this by clicking on the blue "<b>%1$s</b>" text on the right side! ( If you already have a project, then in the top bar click on the name of your project instead, which will bring up a modal and click <b>"%2$s"</b>. )', 'nextend-facebook-connect'), 'Create Project', 'New Project'); ?></li>
19
+ <li><?php printf(__('Name your project and then click on the "<b>%1$s</b>" button again!', 'nextend-facebook-connect'), 'Create'); ?></li>
20
+ <li><?php _e('Once you have a project, you\'ll end up in the dashboard. ( If earlier you have already had a Project, then make sure you select the created project in the top bar! )', 'nextend-facebook-connect'); ?></li>
21
+ <li><?php printf(__('Click the “<b>%1$s</b>” button on the left hand side.', 'nextend-facebook-connect'), 'OAuth consent screen'); ?></li>
22
+ <li><?php printf(__('Choose a <b>%1$s</b> according to your needs and press "<b>%2$s</b>". If you want to enable the social login with %3$s for any users with a %3$s account, then pick the "%4$s" option!', 'nextend-facebook-connect'), 'User Type', 'Create', 'Google', 'External'); ?>
23
  <ul>
24
+ <li><?php printf(__('<b>Note:</b> We don\'t use sensitive or restricted scopes either. But if you will use this App for other purposes too, then you may need to go through an %1$s!', 'nextend-facebook-connect'), '<a href="https://support.google.com/cloud/answer/9110914" target="_blank">Independent security review</a>'); ?></li>
25
  </ul>
26
  </li>
27
+ <li><?php printf(__('Enter a name for your App to the "<b>%1$s</b>" field, which will appear as the name of the app asking for consent.', 'nextend-facebook-connect'), 'App name'); ?></li>
28
+ <li><?php printf(__('For the "<b>%1$s</b>" field, select an email address that users can use to contact you with questions about their consent.', 'nextend-facebook-connect'), 'User support email'); ?></li>
29
+ <li><?php printf(__('Under the "<b>%1$s</b>" section press the "<b>%2$s</b>" button and enter your domain name, probably: <b>%3$s</b> without subdomains!', 'nextend-facebook-connect'), 'Authorized domains', 'Add Domain', str_replace('www.', '', $_SERVER['HTTP_HOST'])); ?></li>
30
+ <li><?php printf(__('At the "<b>%1$s</b>" section, enter an email address that %2$s can use to notify you about any changes to your project.', 'nextend-facebook-connect'), 'Developer contact information', 'Google'); ?></li>
31
+ <li><?php printf(__('Press "<b>%1$s</b>" then press it again on the "%2$s", "%3$s" pages, too!', 'nextend-facebook-connect'), 'Save and Continue', 'Scopes', 'Test users'); ?></li>
32
  <li><?php printf(__('On the left side, click on the "<b>%1$s</b>" menu point, then click the "<b>%2$s</b>" button in the top bar.', 'nextend-facebook-connect'), 'Credentials', '+ Create Credentials') ?></li>
33
+ <li><?php printf(__('Choose the "<b>%1$s</b>" option.', 'nextend-facebook-connect'), 'OAuth client ID'); ?></li>
34
+ <li><?php printf(__('Select the "<b>%1$s</b>" under Application type.', 'nextend-facebook-connect'), 'Web application'); ?></li>
35
+ <li><?php printf(__('Enter a "<b>%1$s</b>" for your OAuth client ID.', 'nextend-facebook-connect'), 'Name'); ?></li>
36
+ <li><?php printf(__('Under the "<b>%1$s</b>" section click "<b>%2$s</b>" and add the following URL: <b>%3$s</b>', 'nextend-facebook-connect'), 'Authorised redirect URIs', 'Add URI', $provider->getLoginUrl()); ?></li>
37
+ <li><?php printf(__('Click on the "<b>%1$s</b>" button', 'nextend-facebook-connect'), 'Create'); ?></li>
38
+ <li><?php printf(__('A modal should pop up with your credentials. If that doesn\'t happen, go to the %1$s in the left hand menu and select your app by clicking on its name and you\'ll be able to copy-paste the "<b>%2$s</b>" and "<b>%3$s</b>" from there.', 'nextend-facebook-connect'), 'Credentials', 'Client ID', 'Client Secret'); ?></li>
39
  </ol>
40
 
41
  <a href="<?php echo $this->getUrl('settings'); ?>"
providers/google/google.php CHANGED
@@ -11,7 +11,7 @@ class NextendSocialProviderGoogle extends NextendSocialProvider {
11
 
12
  protected $colorUniform = '#dc4e41';
13
 
14
- protected $svg = '<svg xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><path fill="#4285F4" fill-rule="nonzero" d="M20.64 12.2045c0-.6381-.0573-1.2518-.1636-1.8409H12v3.4814h4.8436c-.2086 1.125-.8427 2.0782-1.7959 2.7164v2.2581h2.9087c1.7018-1.5668 2.6836-3.874 2.6836-6.615z"/><path fill="#34A853" fill-rule="nonzero" d="M12 21c2.43 0 4.4673-.806 5.9564-2.1805l-2.9087-2.2581c-.8059.54-1.8368.859-3.0477.859-2.344 0-4.3282-1.5831-5.036-3.7104H3.9574v2.3318C5.4382 18.9832 8.4818 21 12 21z"/><path fill="#FBBC05" fill-rule="nonzero" d="M6.964 13.71c-.18-.54-.2822-1.1168-.2822-1.71s.1023-1.17.2823-1.71V7.9582H3.9573A8.9965 8.9965 0 0 0 3 12c0 1.4523.3477 2.8268.9573 4.0418L6.964 13.71z"/><path fill="#EA4335" fill-rule="nonzero" d="M12 6.5795c1.3214 0 2.5077.4541 3.4405 1.346l2.5813-2.5814C16.4632 3.8918 14.426 3 12 3 8.4818 3 5.4382 5.0168 3.9573 7.9582L6.964 10.29C7.6718 8.1627 9.6559 6.5795 12 6.5795z"/><path d="M3 3h18v18H3z"/></g></svg>';
15
 
16
  protected $svgUniform = '<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path fill="#fff" fill-rule="evenodd" d="M11.988,14.28 L11.988,9.816 L23.22,9.816 C23.388,10.572 23.52,11.28 23.52,12.276 C23.52,19.128 18.924,24 12,24 C5.376,24 -9.47390314e-15,18.624 -9.47390314e-15,12 C-9.47390314e-15,5.376 5.376,0 12,0 C15.24,0 17.952,1.188 20.028,3.132 L16.62,6.444 C15.756,5.628 14.244,4.668 12,4.668 C8.028,4.668 4.788,7.968 4.788,12.012 C4.788,16.056 8.028,19.356 12,19.356 C16.596,19.356 18.288,16.176 18.6,14.292 L11.988,14.292 L11.988,14.28 Z"/></svg>';
17
 
11
 
12
  protected $colorUniform = '#dc4e41';
13
 
14
+ protected $svg = '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="#4285F4" d="M20.64 12.2045c0-.6381-.0573-1.2518-.1636-1.8409H12v3.4814h4.8436c-.2086 1.125-.8427 2.0782-1.7959 2.7164v2.2581h2.9087c1.7018-1.5668 2.6836-3.874 2.6836-6.615z"></path><path fill="#34A853" d="M12 21c2.43 0 4.4673-.806 5.9564-2.1805l-2.9087-2.2581c-.8059.54-1.8368.859-3.0477.859-2.344 0-4.3282-1.5831-5.036-3.7104H3.9574v2.3318C5.4382 18.9832 8.4818 21 12 21z"></path><path fill="#FBBC05" d="M6.964 13.71c-.18-.54-.2822-1.1168-.2822-1.71s.1023-1.17.2823-1.71V7.9582H3.9573A8.9965 8.9965 0 0 0 3 12c0 1.4523.3477 2.8268.9573 4.0418L6.964 13.71z"></path><path fill="#EA4335" d="M12 6.5795c1.3214 0 2.5077.4541 3.4405 1.346l2.5813-2.5814C16.4632 3.8918 14.426 3 12 3 8.4818 3 5.4382 5.0168 3.9573 7.9582L6.964 10.29C7.6718 8.1627 9.6559 6.5795 12 6.5795z"></path></svg>';
15
 
16
  protected $svgUniform = '<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path fill="#fff" fill-rule="evenodd" d="M11.988,14.28 L11.988,9.816 L23.22,9.816 C23.388,10.572 23.52,11.28 23.52,12.276 C23.52,19.128 18.924,24 12,24 C5.376,24 -9.47390314e-15,18.624 -9.47390314e-15,12 C-9.47390314e-15,5.376 5.376,0 12,0 C15.24,0 17.952,1.188 20.028,3.132 L16.62,6.444 C15.756,5.628 14.244,4.668 12,4.668 C8.028,4.668 4.788,7.968 4.788,12.012 C4.788,16.056 8.028,19.356 12,19.356 C16.596,19.356 18.288,16.176 18.6,14.292 L11.988,14.292 L11.988,14.28 Z"/></svg>';
17
 
providers/twitter/admin/fix-redirect-uri.php CHANGED
@@ -10,5 +10,6 @@ $provider = $this->getProvider();
10
  <li><?php _e('Find your App and click on the <b>App settings</b> icon. (The one that looks like a gear.)', 'nextend-facebook-connect'); ?></li>
11
  <li><?php _e('Click on the <b>Edit</b> button at <b>Authentication settings</b>.', 'nextend-facebook-connect'); ?></li>
12
  <li><?php printf(__('Add the following URL to the "<b>Callback URLs</b>" field: <b>%s</b>', 'nextend-facebook-connect'), $provider->getRedirectUriForApp()); ?></li>
 
13
  <li><?php _e('Click on "<b>Save</b>"', 'nextend-facebook-connect'); ?></li>
14
  </ol>
10
  <li><?php _e('Find your App and click on the <b>App settings</b> icon. (The one that looks like a gear.)', 'nextend-facebook-connect'); ?></li>
11
  <li><?php _e('Click on the <b>Edit</b> button at <b>Authentication settings</b>.', 'nextend-facebook-connect'); ?></li>
12
  <li><?php printf(__('Add the following URL to the "<b>Callback URLs</b>" field: <b>%s</b>', 'nextend-facebook-connect'), $provider->getRedirectUriForApp()); ?></li>
13
+ <li><?php printf(__('Make sure the "<b>%1$s</b>" field contains the following URL: <b>%2$s</b>', 'nextend-facebook-connect'), 'Website URL', site_url()); ?></li>
14
  <li><?php _e('Click on "<b>Save</b>"', 'nextend-facebook-connect'); ?></li>
15
  </ol>
providers/twitter/admin/getting-started.php CHANGED
@@ -17,20 +17,18 @@ $provider = $this->getProvider();
17
  <li><?php printf(__('Log in with your %s credentials if you are not logged in.', 'nextend-facebook-connect'), 'Twitter'); ?></li>
18
  <li><?php _e('If you don\'t have a developer account yet, please apply one by filling all the required details! This is required for the next steps!', 'nextend-facebook-connect'); ?></li>
19
  <li><?php printf(__('Once your developer account is complete, navigate back to <b>%s</b> if you aren\'t already there!', 'nextend-facebook-connect'), '<a href="https://developer.twitter.com/en/portal/projects-and-apps" target="_blank">https://developer.twitter.com/en/portal/projects-and-apps</a>'); ?>
20
- <li><?php _e('Click on <b>+ New Project</b>!', 'nextend-facebook-connect'); ?></li>
21
- <li><?php _e('Name your project, and go through the basic setup. You’ll need to select your use case and give a description.', 'nextend-facebook-connect'); ?></li>
22
- <li><?php _e('Create a new app, or select an existing one, then click <b>Complete</b>', 'nextend-facebook-connect'); ?></li>
23
- <li><?php _e('You’ll find your API key and secret on this page. Copy and paste the <b>API key</b> and the <b>API secret key</b> to the corresponding fields at Nextend Social Login and press <b>Save Changes</b>.', 'nextend-facebook-connect'); ?></li>
24
- <li><?php printf(__('Click on the <b>App Settings</b> button at %s.', 'nextend-facebook-connect'), 'Twitter'); ?></li>
25
- <li><?php _e('Find the Apps section, and the app you created a few steps ago.', 'nextend-facebook-connect'); ?></li>
26
- <li><?php _e('Click on the App settings icon. (The one that looks like a gear.)', 'nextend-facebook-connect'); ?></li>
27
- <li><?php _e('Click on the <b>Edit</b> button at <b>Authentication settings</b>.', 'nextend-facebook-connect'); ?></li>
28
- <li><?php _e('Switch on the <b>Enable 3-legged OAuth</b> option.', 'nextend-facebook-connect'); ?></li>
29
- <li><?php printf(__('Add the following URL to the <b>Callback URLs</b> field: <b>%s</b>', 'nextend-facebook-connect'), $provider->getRedirectUriForApp()); ?></li>
30
- <li><?php printf(__('Enter your site\'s URL to the <b>Website URL</b> field: <b>%s</b>', 'nextend-facebook-connect'), site_url()); ?></li>
31
- <li><?php _e('If you want to get the email address as well, then don’t forget to enable the <b>Request email address from users</b> option. In this case you also need to fill the <b>Terms of service</b> and the <b>Privacy policy</b> fields with the corresponding URLs!', 'nextend-facebook-connect'); ?></li>
32
- <li><?php _e('Click on <b>Save</b>.', 'nextend-facebook-connect'); ?></li>
33
- <li><?php printf(__('Go back to Nextend Social Login and <b>Verify</b> your %s provider.', 'nextend-facebook-connect'), 'Twitter'); ?></li>
34
  </ol>
35
 
36
  <a href="<?php echo $this->getUrl('settings'); ?>"
17
  <li><?php printf(__('Log in with your %s credentials if you are not logged in.', 'nextend-facebook-connect'), 'Twitter'); ?></li>
18
  <li><?php _e('If you don\'t have a developer account yet, please apply one by filling all the required details! This is required for the next steps!', 'nextend-facebook-connect'); ?></li>
19
  <li><?php printf(__('Once your developer account is complete, navigate back to <b>%s</b> if you aren\'t already there!', 'nextend-facebook-connect'), '<a href="https://developer.twitter.com/en/portal/projects-and-apps" target="_blank">https://developer.twitter.com/en/portal/projects-and-apps</a>'); ?>
20
+ <li><?php printf(__('Click on "<b>%s</b>"!', 'nextend-facebook-connect'), '+ New Project'); ?></li>
21
+ <li><?php _e('Name your project, and go through the basic setup. You’ll need to select your use case, give a description and enter a name for the App as well.', 'nextend-facebook-connect'); ?></li>
22
+ <li><?php printf(__('Click "<b>%s</b>"!', 'nextend-facebook-connect'), 'Complete'); ?></li>
23
+ <li><?php printf(__('You’ll find your API key and secret on this page. Copy and paste the "<b>%1$s</b>" and the "<b>%2$s</b>" to the corresponding fields at %3$s and press "<b>Save Changes</b>".', 'nextend-facebook-connect'), 'API key', 'API secret key', 'Nextend Social Login > Twitter > Settings'); ?></li>
24
+ <li><?php printf(__('Go back to your Twitter project and on the left side, under the "<b>%s</b>" section click on the name of your App.', 'nextend-facebook-connect'), 'Projects and Apps'); ?></li>
25
+ <li><?php printf(__('Scroll down and click on the "<b>%1$s</b>" button at "<b>%2$s</b>".', 'nextend-facebook-connect'), 'Edit', 'Authentication settings'); ?></li>
26
+ <li><?php printf(__('Switch on the "<b>%s</b>" option.', 'nextend-facebook-connect'), 'Enable 3-legged OAuth'); ?></li>
27
+ <li><?php printf(__('Add the following URL to the "<b>%1$s</b>" field: <b>%2$s</b>', 'nextend-facebook-connect'), 'Callback URLs', $provider->getRedirectUriForApp()); ?></li>
28
+ <li><?php printf(__('Enter your site\'s URL to the "<b>%1$s</b>" field: <b>%2$s</b>', 'nextend-facebook-connect'), 'Website URL', site_url()); ?></li>
29
+ <li><?php printf(__('If you want to get the email address as well, then don’t forget to enable the "<b>%1$s</b>" option. In this case you also need to fill the "<b>%2$s</b>" and the "<b>%3$s</b>" fields with the corresponding URLs!', 'nextend-facebook-connect'), 'Request email address from users', 'Terms of service', 'Privacy policy'); ?></li>
30
+ <li><?php printf(__('Click on "<b>%s</b>".', 'nextend-facebook-connect'), 'Save'); ?></li>
31
+ <li><?php printf(__('Go back to %1$s and <b>Verify</b> your %2$s provider.', 'nextend-facebook-connect'), 'Nextend Social Login', 'Twitter'); ?></li>
 
 
32
  </ol>
33
 
34
  <a href="<?php echo $this->getUrl('settings'); ?>"
readme.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: nextendweb
3
  Tags: social login, facebook, google, twitter, linkedin, register, login, social, nextend facebook connect, social sign in
4
  Donate link: https://www.facebook.com/nextendweb
5
  Requires at least: 4.9
6
- Tested up to: 5.6
7
- Stable tag: 3.0.27
8
  Requires PHP: 7.0
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
@@ -115,9 +115,33 @@ Using the Pro Addon you can set where the login buttons should appear on the Reg
115
 
116
  1. Nextend Social Login and Register on the main WP login page
117
  2. Nextend Social Login and Register in the profile page for account linking
 
 
118
 
119
  == Changelog ==
120
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
121
  = 3.0.27 =
122
  * Fix: Ultimate Member prevents our registration when we need to ask extra information before the registration.
123
  * Fix: post_mime_type PHP notice.
3
  Tags: social login, facebook, google, twitter, linkedin, register, login, social, nextend facebook connect, social sign in
4
  Donate link: https://www.facebook.com/nextendweb
5
  Requires at least: 4.9
6
+ Tested up to: 5.7.2
7
+ Stable tag: 3.0.28
8
  Requires PHP: 7.0
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
115
 
116
  1. Nextend Social Login and Register on the main WP login page
117
  2. Nextend Social Login and Register in the profile page for account linking
118
+ 3. The Providers page with the available providers and their states.
119
+ 4. The Settings page of the Facebook provider.
120
 
121
  == Changelog ==
122
 
123
+ = 3.0.28 =
124
+ * Fix: We didn't display the disabled registration notification when the "OAuth redirect uri proxy page" feature was used.
125
+ * Fix: Google provider - Social button didn't appear in Opera Mini and iOS Opera Touch.
126
+ * Fix: WordPress couldn't download the avatars coming from the social media when the avatar URL was too long.
127
+ * Fix: Our styles were missing from pages with AMP mode of "AMP for WP".
128
+ * Fix: There was an AMP validation error as earlier we didn't load our styles into the unique style tag with the "amp-custom" attribute.
129
+ * Fix: Database - There was a database error on MySQL 8.0.17 and above, as the display width attribute has been deprecated for integer data types.
130
+ * Fix: Database - Default values of register_date, login_date and link_date have been changed from "0000-00-00 00:00:00" to NULL, since the old value could cause a database error when we tried to make database structure modifications in databases when NO_ZERO_DATE, NO_ZERO_IN_DATE values are set in sql_mode.
131
+ * Improvement: Developers can now pass false value for the [nsl_disabled_register_error_message](https://nextendweb.com/nextend-social-login-docs/backend-developer/#disabled-reg-message-override) filter for turning off our registration disabled notification.
132
+ * Improvement: Google provider - The Google button will no longer be hidden in Line App WebView, as Google allows the authentication over the WebView of this App.
133
+ * Improvement: Developers can now use the [nsl_unlink_user](https://nextendweb.com/nextend-social-login-docs/backend-developer/#unlink-user) action to run custom function when a user unlinks the social media account from the WordPress account.
134
+ * Improvement: [Twitter Getting Started](https://nextendweb.com/nextend-social-login-docs/provider-twitter/#configuration) Update
135
+ * Improvement: [Google Getting Started](https://nextendweb.com/nextend-social-login-docs/provider-google/#configuration) Update
136
+ * Improvement: [Facebook Getting Started](https://nextendweb.com/nextend-social-login-docs/provider-facebook/#configuration) Update
137
+ * Improvement: The context "Register form submit button label" has been added to the Register button appearing in our register flow. So it can now be translated with language files separately.
138
+ * Improvement: On the frontend we will use native JavaScript instead of jQuery.
139
+
140
+ * PRO: Fix: [Linkedin](https://nextendweb.com/nextend-social-login-docs/provider-linkedin/) provider didn't store the first name and last name, if the account didn't have profile with English as either primary language or secondary language.
141
+ * PRO: Fix: Our integration for "Checkout for WooCommerce" didn't work with their most recent versions.
142
+ * PRO: Improvement: [Apple Getting Started](https://nextendweb.com/nextend-social-login-docs/provider-apple/#configuration) Update
143
+
144
+
145
  = 3.0.27 =
146
  * Fix: Ultimate Member prevents our registration when we need to ask extra information before the registration.
147
  * Fix: post_mime_type PHP notice.
template-parts/embedded-login/below.php CHANGED
@@ -1,14 +1,15 @@
1
  <script type="text/javascript">
2
- window._nsl.push(function ($) {
3
- $(document).ready(function () {
4
- var $container = $('#<?php echo $containerID; ?>');
5
- $container.find('.nsl-container')
6
- .addClass('nsl-container-embedded-login-layout-below')
7
- .css('display', 'block');
8
 
9
- $container
10
- .appendTo($container.closest('form'));
11
- });
 
 
 
 
12
  });
13
  </script>
14
  <?php
@@ -17,7 +18,7 @@ $style = '
17
  display: none;
18
  }
19
 
20
- {{containerID}} .nsl-container-login-layout-below {
21
  clear: both;
22
  padding: 20px 0 0;
23
  }
@@ -34,9 +35,4 @@ $style = '
34
  {{containerID}} .nsl-container {
35
  display: block;
36
  }';
37
- ?>
38
- <noscript>
39
- <style type="text/css">
40
- <?php echo str_replace('{{containerID}}','#' . $containerID, $style); ?>
41
- </style>
42
- </noscript>
1
  <script type="text/javascript">
2
+ window._nslDOMReady(function () {
3
+ var container = document.getElementById('<?php echo $containerID; ?>'),
4
+ form = container.closest('form');
 
 
 
5
 
6
+ var innerContainer = container.querySelector('.nsl-container');
7
+ if (innerContainer) {
8
+ innerContainer.classList.add('nsl-container-embedded-login-layout-below');
9
+ innerContainer.style.display = 'block';
10
+ }
11
+
12
+ form.appendChild(container);
13
  });
14
  </script>
15
  <?php
18
  display: none;
19
  }
20
 
21
+ {{containerID}} .nsl-container-embedded-login-layout-below {
22
  clear: both;
23
  padding: 20px 0 0;
24
  }
35
  {{containerID}} .nsl-container {
36
  display: block;
37
  }';
38
+ ?>
 
 
 
 
 
template-parts/login/below.php CHANGED
@@ -1,29 +1,32 @@
1
  <script type="text/javascript">
2
- window._nsl.push(function ($) {
3
- $(document).ready(function () {
4
- var $main = $('#nsl-custom-login-form-main');
5
-
6
- $main.find('.nsl-container')
7
- .addClass('nsl-container-login-layout-below')
8
- .css('display', 'block');
9
-
 
 
10
 
11
- var $jetpackSSO = $('#jetpack-sso-wrap__action');
12
- if ($jetpackSSO.length) {
13
- $jetpackSSO
14
- .append($main.clone().attr('id', 'nsl-custom-login-form-jetpack-sso'));
 
15
 
16
- $main.insertBefore('#jetpack-sso-wrap');
17
- } else {
18
- var $form = $('#loginform,#registerform,#front-login-form,#setupform');
 
 
 
 
 
19
 
20
- if ($form.parent().hasClass('tml')) {
21
- $form = $form.parent();
22
- }
23
 
24
- $main.appendTo($form);
25
- }
26
- });
27
  });
28
  </script>
29
  <style type="text/css">
@@ -44,11 +47,4 @@
44
  clear: both;
45
  padding: 0 0 20px;
46
  }
47
- </style>
48
- <noscript>
49
- <style>
50
- #nsl-custom-login-form-main .nsl-container {
51
- display: block;
52
- }
53
- </style>
54
- </noscript>
1
  <script type="text/javascript">
2
+ window._nslDOMReady(function () {
3
+ var container = document.getElementById('nsl-custom-login-form-main'),
4
+ form = document.querySelector('#loginform,#registerform,#front-login-form,#setupform');
5
+
6
+ if (!form) {
7
+ form = container.closest('form');
8
+ if (!form) {
9
+ form = container.parentNode;
10
+ }
11
+ }
12
 
13
+ var innerContainer = container.querySelector('.nsl-container');
14
+ if (innerContainer) {
15
+ innerContainer.classList.add('nsl-container-login-layout-below');
16
+ innerContainer.style.display = 'block';
17
+ }
18
 
19
+ var jetpackSSO = document.getElementById('jetpack-sso-wrap');
20
+ if (jetpackSSO) {
21
+ form = jetpackSSO;
22
+ } else {
23
+ if (form.parentNode.classList.contains('tml')) {
24
+ form = form.parentNode;
25
+ }
26
+ }
27
 
28
+ form.appendChild(container);
 
 
29
 
 
 
 
30
  });
31
  </script>
32
  <style type="text/css">
47
  clear: both;
48
  padding: 0 0 20px;
49
  }
50
+ </style>