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

Version Description

  • Fix: Google provider - Google OAuth no longer supports any kind of WebViews, so the Google button will be hidden in all WebView environments.
  • Fix: User selected language in the backend didn't load our translations in certain cases.
  • Improvement: We will trigger the "wp_login_failed" action when the login with social login fails, so the login history plugins could track the failed login attempts happened with social login, too.
  • Improvement: The unlinked social media identifier will be now available from the "nsl_unlink_user" action parameters.

  • PRO: Fix: Microsoft provider - ErrorInsufficientPermissionsInAccessToken error when using the Personal Audience option.

  • PRO: Fix: Steam provider - Error when pressing the "Got it" button on the "Fix OAuth Redirect URIs" page while the Steam provider was enabled.

  • PRO: Fix: TikTok provider - Invalid request parameters error

  • PRO: Improvement: TikTok provider - Getting Started Update

  • PRO: Feature: TikTok provider button skin selector added.

Download this release

Release Info

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

Code changes from version 3.1.5 to 3.1.6

admin/admin.php CHANGED
@@ -174,7 +174,7 @@ class NextendSocialLoginAdmin {
174
  case 'update_oauth_redirect_url':
175
  if (check_admin_referer('nextend-social-login_update_oauth_redirect_url')) {
176
  foreach (NextendSocialLogin::$enabledProviders as $provider) {
177
- $provider->updateOauthRedirectUrl();
178
  }
179
  }
180
 
174
  case 'update_oauth_redirect_url':
175
  if (check_admin_referer('nextend-social-login_update_oauth_redirect_url')) {
176
  foreach (NextendSocialLogin::$enabledProviders as $provider) {
177
+ $provider->updateAuthRedirectUrl();
178
  }
179
  }
180
 
includes/provider.php CHANGED
@@ -500,9 +500,10 @@ abstract class NextendSocialProvider extends NextendSocialProviderDummy {
500
  if ($unlinkAllowed) {
501
  $user_info = wp_get_current_user();
502
  if ($user_info->ID) {
 
503
  $this->removeConnectionByUserID($user_info->ID);
504
 
505
- do_action('nsl_unlink_user', $user_info->ID, $this->getId());
506
 
507
  return true;
508
  }
500
  if ($unlinkAllowed) {
501
  $user_info = wp_get_current_user();
502
  if ($user_info->ID) {
503
+ $unlinkedIdentifier = $this->getProviderIdentifierByUserID($user_info->ID);
504
  $this->removeConnectionByUserID($user_info->ID);
505
 
506
+ do_action('nsl_unlink_user', $user_info->ID, $this->getId(), $unlinkedIdentifier);
507
 
508
  return true;
509
  }
includes/user.php CHANGED
@@ -511,26 +511,31 @@ class NextendSocialUser {
511
  protected function login($user_id) {
512
  /** @var $wpdb WPDB */ global $wpdb;
513
 
 
 
514
  $loginRestriction = NextendSocialLogin::$settings->get('login_restriction');
515
  if ($loginRestriction) {
516
- $user = new WP_User($user_id);
517
- $user = apply_filters('authenticate', $user, $user->get('user_login'), null);
518
- if (is_wp_error($user)) {
519
- Notices::addError($user);
 
520
  $this->provider->redirectToLoginForm();
521
 
522
- return $user;
523
  }
524
 
525
  /**
526
  * Other plugins use this hook to prevent log in
527
  */
528
- $user = apply_filters('wp_authenticate_user', $user, null);
529
- if (is_wp_error($user)) {
530
- Notices::addError($user);
 
 
531
  $this->provider->redirectToLoginForm();
532
 
533
- return $user;
534
  }
535
  }
536
 
@@ -593,12 +598,13 @@ class NextendSocialUser {
593
  $this->provider->deleteLoginPersistentData();
594
  $loginDisabledMessage = apply_filters('nsl_disabled_login_error_message', '');
595
  $loginDisabledRedirectURL = apply_filters('nsl_disabled_login_redirect_url', '');
 
 
596
  if (!empty($loginDisabledMessage)) {
597
  Notices::clear();
598
- $errors = new WP_Error();
599
- $errors->add('logindisabled', $loginDisabledMessage);
600
  Notices::addError($errors->get_error_message());
601
  }
 
602
 
603
  if (!empty($loginDisabledRedirectURL)) {
604
  NextendSocialProvider::redirect(__('Authentication error', 'nextend-facebook-connect'), NextendSocialLogin::enableNoticeForUrl($loginDisabledRedirectURL));
511
  protected function login($user_id) {
512
  /** @var $wpdb WPDB */ global $wpdb;
513
 
514
+ $user = new WP_User($user_id);
515
+
516
  $loginRestriction = NextendSocialLogin::$settings->get('login_restriction');
517
  if ($loginRestriction) {
518
+ $userOrError = apply_filters('authenticate', $user, $user->get('user_login'), null);
519
+ if (is_wp_error($userOrError)) {
520
+ Notices::addError($userOrError);
521
+ do_action('wp_login_failed', $user->get('user_login'), $userOrError);
522
+
523
  $this->provider->redirectToLoginForm();
524
 
525
+ return $userOrError;
526
  }
527
 
528
  /**
529
  * Other plugins use this hook to prevent log in
530
  */
531
+ $userOrError = apply_filters('wp_authenticate_user', $user, null);
532
+ if (is_wp_error($userOrError)) {
533
+ Notices::addError($userOrError);
534
+ do_action('wp_login_failed', $user->get('user_login'), $userOrError);
535
+
536
  $this->provider->redirectToLoginForm();
537
 
538
+ return $userOrError;
539
  }
540
  }
541
 
598
  $this->provider->deleteLoginPersistentData();
599
  $loginDisabledMessage = apply_filters('nsl_disabled_login_error_message', '');
600
  $loginDisabledRedirectURL = apply_filters('nsl_disabled_login_redirect_url', '');
601
+ $errors = new WP_Error();
602
+ $errors->add('logindisabled', $loginDisabledMessage);
603
  if (!empty($loginDisabledMessage)) {
604
  Notices::clear();
 
 
605
  Notices::addError($errors->get_error_message());
606
  }
607
+ do_action('wp_login_failed', $user->get('user_login'), $errors);
608
 
609
  if (!empty($loginDisabledRedirectURL)) {
610
  NextendSocialProvider::redirect(__('Authentication error', 'nextend-facebook-connect'), NextendSocialLogin::enableNoticeForUrl($loginDisabledRedirectURL));
js/nsl.js CHANGED
@@ -172,24 +172,14 @@ function checkWebView() {
172
  }
173
 
174
  function isAllowedWebViewForUserAgent(provider) {
175
- var googleAllowedWebViews = [
176
- 'Instagram',
177
- 'FBAV',
178
- 'FBAN',
179
- 'Line',
180
- ], facebookAllowedWebViews = [
181
  'Instagram',
182
  'FBAV',
183
  'FBAN'
184
  ], whitelist = [];
185
 
186
- switch (provider) {
187
- case 'facebook':
188
- whitelist = facebookAllowedWebViews;
189
- break;
190
- case 'google':
191
- whitelist = googleAllowedWebViews;
192
- break;
193
  }
194
 
195
  var nav = window.navigator || {};
@@ -292,7 +282,7 @@ window._nslDOMReady(function () {
292
  let hasWebViewLimitation = false;
293
 
294
  var googleLoginButtons = document.querySelectorAll(' a[data-plugin="nsl"][data-provider="google"]');
295
- if (googleLoginButtons.length && checkWebView() && !isAllowedWebViewForUserAgent('google')) {
296
  googleLoginButtons.forEach(function (googleLoginButton) {
297
  googleLoginButton.remove();
298
  hasWebViewLimitation = true;
172
  }
173
 
174
  function isAllowedWebViewForUserAgent(provider) {
175
+ var facebookAllowedWebViews = [
 
 
 
 
 
176
  'Instagram',
177
  'FBAV',
178
  'FBAN'
179
  ], whitelist = [];
180
 
181
+ if (provider && provider === 'facebook') {
182
+ whitelist = facebookAllowedWebViews;
 
 
 
 
 
183
  }
184
 
185
  var nav = window.navigator || {};
282
  let hasWebViewLimitation = false;
283
 
284
  var googleLoginButtons = document.querySelectorAll(' a[data-plugin="nsl"][data-provider="google"]');
285
+ if (googleLoginButtons.length && checkWebView()) {
286
  googleLoginButtons.forEach(function (googleLoginButton) {
287
  googleLoginButton.remove();
288
  hasWebViewLimitation = true;
languages/nextend-facebook-connect-de_DE.mo CHANGED
Binary file
languages/nextend-facebook-connect-de_DE.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: nextend-facebook-connect\n"
4
- "POT-Creation-Date: 2022-06-13 13:54+0200\n"
5
- "PO-Revision-Date: 2022-06-13 13:54+0200\n"
6
  "Last-Translator: \n"
7
  "Language-Team: nextend-facebook-connect\n"
8
  "Language: de\n"
@@ -3019,6 +3019,12 @@ msgstr ""
3019
  msgid "Scroll down to the %s section."
3020
  msgstr ""
3021
 
 
 
 
 
 
 
3022
  #, php-format
3023
  msgid ""
3024
  "Enter your domain name into the %1$s field, if it is not added already: %2$s"
@@ -3028,7 +3034,11 @@ msgstr ""
3028
  msgid "Press the %s button."
3029
  msgstr ""
3030
 
3031
- msgid "Allow some time for these modifications to take effect."
 
 
 
 
3032
  msgstr ""
3033
 
3034
  #, php-format
@@ -3042,41 +3052,69 @@ msgstr ""
3042
 
3043
  #, php-format
3044
  msgid ""
3045
- "A modal will appear where you need to select an image as %1$s and enter a "
3046
- "name into the %2$s field."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3047
  msgstr ""
3048
 
3049
  #, php-format
3050
- msgid "For %1$s choose the %2$s option."
3051
  msgstr ""
3052
 
3053
  #, php-format
3054
- msgid "Under the %s section you should fill all of the required fields."
3055
  msgstr ""
3056
 
3057
  #, php-format
3058
  msgid ""
3059
- "Under the %1$s section you need to make sure the option %2$s is checked."
 
 
3060
  msgstr ""
3061
 
3062
  #, php-format
3063
  msgid ""
3064
- "Into the %1$s field you should write a text, that describes what you are "
3065
- "going to do with the App. In this particular case, you will use it to offer "
3066
- "%2$s login option for your visitors."
3067
  msgstr ""
3068
 
3069
  #, php-format
3070
  msgid ""
3071
  "Wait until your App gets approved. This can take a couple of days. If you "
3072
- "scroll up to the top of the page you will be able to find the %s below the "
3073
- "name of your App."
 
3074
  msgstr ""
3075
 
3076
  #, php-format
3077
  msgid ""
3078
- "Once the %1$s says %2$s, the %3$s and %4$s will appear below the %1$s text. "
3079
- "You will need these for the provider configuration."
 
3080
  msgstr ""
3081
 
3082
  #, php-format
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: nextend-facebook-connect\n"
4
+ "POT-Creation-Date: 2022-08-30 15:56+0200\n"
5
+ "PO-Revision-Date: 2022-08-30 15:56+0200\n"
6
  "Last-Translator: \n"
7
  "Language-Team: nextend-facebook-connect\n"
8
  "Language: de\n"
3019
  msgid "Scroll down to the %s section."
3020
  msgstr ""
3021
 
3022
+ #, php-format
3023
+ msgid ""
3024
+ "If the URLs don't match, enter the URL of your website into the %1$s field, "
3025
+ "probably: %2$s"
3026
+ msgstr ""
3027
+
3028
  #, php-format
3029
  msgid ""
3030
  "Enter your domain name into the %1$s field, if it is not added already: %2$s"
3034
  msgid "Press the %s button."
3035
  msgstr ""
3036
 
3037
+ #, php-format
3038
+ msgid ""
3039
+ "Submit your App for a review, by pressing the %1$s button on the top right "
3040
+ "corner and wait until the %2$s field says %3$s. This can take a couple of "
3041
+ "days."
3042
  msgstr ""
3043
 
3044
  #, php-format
3052
 
3053
  #, php-format
3054
  msgid ""
3055
+ "Find the %1$s section and upload an image as %2$s, then enter an %3$s, a "
3056
+ "%4$s and choose a value for %5$s."
3057
+ msgstr ""
3058
+
3059
+ #, php-format
3060
+ msgid ""
3061
+ "For %1$s you should enable the %2$s option then enter the URL of your "
3062
+ "website into the %3$s field, probably: %4$s"
3063
+ msgstr ""
3064
+
3065
+ #, php-format
3066
+ msgid "Click on the %s button."
3067
+ msgstr ""
3068
+
3069
+ #, php-format
3070
+ msgid ""
3071
+ "Click on %1$s on the left hand menu then add the %2$s product, and press the "
3072
+ "%3$s button."
3073
+ msgstr ""
3074
+
3075
+ #, php-format
3076
+ msgid "At the left hand menu click on the %1$s option under %2$s."
3077
+ msgstr ""
3078
+
3079
+ #, php-format
3080
+ msgid "Enter your %1$s and %2$s URLs."
3081
  msgstr ""
3082
 
3083
  #, php-format
3084
+ msgid "Enter your domain name into the %1$s field, probably: %2$s"
3085
  msgstr ""
3086
 
3087
  #, php-format
3088
+ msgid "Scroll up and click on the %s button."
3089
  msgstr ""
3090
 
3091
  #, php-format
3092
  msgid ""
3093
+ "Currently your App is in %1$s status, meaning that you don't have access to "
3094
+ "the credentials which are necessary for the %2$s integration. In order to "
3095
+ "gain access, click on the %3$s on the top right corner."
3096
  msgstr ""
3097
 
3098
  #, php-format
3099
  msgid ""
3100
+ "A modal will appear where you should enter a text, that describes what you "
3101
+ "are going to do with the App. In this particular case, you will use it to "
3102
+ "offer %1$s login option for your visitors."
3103
  msgstr ""
3104
 
3105
  #, php-format
3106
  msgid ""
3107
  "Wait until your App gets approved. This can take a couple of days. If you "
3108
+ "scroll up to the top of the page you will be able to inspect the %1$s below "
3109
+ "the %2$s section. If you want to learn more about the App review process, "
3110
+ "you can find more information in the %3$sofficial documentation%4$s."
3111
  msgstr ""
3112
 
3113
  #, php-format
3114
  msgid ""
3115
+ "Once the %1$s says %2$s, you will be able to reveal the %3$s and %4$s by "
3116
+ "clicking on the eye icon next to these fields. You will need these "
3117
+ "credentials for the provider configuration."
3118
  msgstr ""
3119
 
3120
  #, php-format
languages/nextend-facebook-connect-es_LA.mo CHANGED
Binary file
languages/nextend-facebook-connect-es_LA.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: nextend-facebook-connect\n"
4
- "POT-Creation-Date: 2022-06-13 13:54+0200\n"
5
- "PO-Revision-Date: 2022-06-13 13:55+0200\n"
6
  "Last-Translator: Gabriel Vilaró <gabo@etereo.ch>\n"
7
  "Language-Team: nextend-facebook-connect\n"
8
  "Language: es_419\n"
@@ -3666,6 +3666,13 @@ msgstr ""
3666
  msgid "Scroll down to the %s section."
3667
  msgstr "Haz clic en el botón Create"
3668
 
 
 
 
 
 
 
 
3669
  #, fuzzy, php-format
3670
  #| msgid "Enter your domain name to the App Domains"
3671
  msgid ""
@@ -3676,7 +3683,11 @@ msgstr "Ingresa tu nombre de dominio a los App Domains"
3676
  msgid "Press the %s button."
3677
  msgstr ""
3678
 
3679
- msgid "Allow some time for these modifications to take effect."
 
 
 
 
3680
  msgstr ""
3681
 
3682
  #, php-format
@@ -3690,42 +3701,73 @@ msgstr ""
3690
 
3691
  #, php-format
3692
  msgid ""
3693
- "A modal will appear where you need to select an image as %1$s and enter a "
3694
- "name into the %2$s field."
 
 
 
 
 
 
3695
  msgstr ""
3696
 
3697
  #, fuzzy, php-format
3698
  #| msgid "Click on the Create button"
3699
- msgid "For %1$s choose the %2$s option."
3700
  msgstr "Haz clic en el botón Create"
3701
 
3702
  #, php-format
3703
- msgid "Under the %s section you should fill all of the required fields."
 
 
3704
  msgstr ""
3705
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3706
  #, php-format
3707
  msgid ""
3708
- "Under the %1$s section you need to make sure the option %2$s is checked."
 
 
3709
  msgstr ""
3710
 
3711
  #, php-format
3712
  msgid ""
3713
- "Into the %1$s field you should write a text, that describes what you are "
3714
- "going to do with the App. In this particular case, you will use it to offer "
3715
- "%2$s login option for your visitors."
3716
  msgstr ""
3717
 
3718
  #, php-format
3719
  msgid ""
3720
  "Wait until your App gets approved. This can take a couple of days. If you "
3721
- "scroll up to the top of the page you will be able to find the %s below the "
3722
- "name of your App."
 
3723
  msgstr ""
3724
 
3725
  #, php-format
3726
  msgid ""
3727
- "Once the %1$s says %2$s, the %3$s and %4$s will appear below the %1$s text. "
3728
- "You will need these for the provider configuration."
 
3729
  msgstr ""
3730
 
3731
  #, php-format
@@ -3993,6 +4035,11 @@ msgstr "O"
3993
  msgid "Social accounts"
3994
  msgstr "Cuentas sociales"
3995
 
 
 
 
 
 
3996
  #, fuzzy
3997
  #~| msgid ""
3998
  #~| "Add the following URL to the \"Valid OAuth redirect URIs\" field: <b>%s</"
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: nextend-facebook-connect\n"
4
+ "POT-Creation-Date: 2022-08-30 15:56+0200\n"
5
+ "PO-Revision-Date: 2022-08-30 15:56+0200\n"
6
  "Last-Translator: Gabriel Vilaró <gabo@etereo.ch>\n"
7
  "Language-Team: nextend-facebook-connect\n"
8
  "Language: es_419\n"
3666
  msgid "Scroll down to the %s section."
3667
  msgstr "Haz clic en el botón Create"
3668
 
3669
+ #, fuzzy, php-format
3670
+ #| msgid "Enter your domain name to the App Domains"
3671
+ msgid ""
3672
+ "If the URLs don't match, enter the URL of your website into the %1$s field, "
3673
+ "probably: %2$s"
3674
+ msgstr "Ingresa tu nombre de dominio a los App Domains"
3675
+
3676
  #, fuzzy, php-format
3677
  #| msgid "Enter your domain name to the App Domains"
3678
  msgid ""
3683
  msgid "Press the %s button."
3684
  msgstr ""
3685
 
3686
+ #, php-format
3687
+ msgid ""
3688
+ "Submit your App for a review, by pressing the %1$s button on the top right "
3689
+ "corner and wait until the %2$s field says %3$s. This can take a couple of "
3690
+ "days."
3691
  msgstr ""
3692
 
3693
  #, php-format
3701
 
3702
  #, php-format
3703
  msgid ""
3704
+ "Find the %1$s section and upload an image as %2$s, then enter an %3$s, a "
3705
+ "%4$s and choose a value for %5$s."
3706
+ msgstr ""
3707
+
3708
+ #, php-format
3709
+ msgid ""
3710
+ "For %1$s you should enable the %2$s option then enter the URL of your "
3711
+ "website into the %3$s field, probably: %4$s"
3712
  msgstr ""
3713
 
3714
  #, fuzzy, php-format
3715
  #| msgid "Click on the Create button"
3716
+ msgid "Click on the %s button."
3717
  msgstr "Haz clic en el botón Create"
3718
 
3719
  #, php-format
3720
+ msgid ""
3721
+ "Click on %1$s on the left hand menu then add the %2$s product, and press the "
3722
+ "%3$s button."
3723
  msgstr ""
3724
 
3725
+ #, fuzzy, php-format
3726
+ #| msgid "Name your project and then click on the Create button"
3727
+ msgid "At the left hand menu click on the %1$s option under %2$s."
3728
+ msgstr "Denomina tu proyecto y luego haz clic en el botón Create"
3729
+
3730
+ #, php-format
3731
+ msgid "Enter your %1$s and %2$s URLs."
3732
+ msgstr ""
3733
+
3734
+ #, fuzzy, php-format
3735
+ #| msgid "Enter your domain name to the App Domains"
3736
+ msgid "Enter your domain name into the %1$s field, probably: %2$s"
3737
+ msgstr "Ingresa tu nombre de dominio a los App Domains"
3738
+
3739
+ #, fuzzy, php-format
3740
+ #| msgid "Name your project and then click on the Create button"
3741
+ msgid "Scroll up and click on the %s button."
3742
+ msgstr "Denomina tu proyecto y luego haz clic en el botón Create"
3743
+
3744
  #, php-format
3745
  msgid ""
3746
+ "Currently your App is in %1$s status, meaning that you don't have access to "
3747
+ "the credentials which are necessary for the %2$s integration. In order to "
3748
+ "gain access, click on the %3$s on the top right corner."
3749
  msgstr ""
3750
 
3751
  #, php-format
3752
  msgid ""
3753
+ "A modal will appear where you should enter a text, that describes what you "
3754
+ "are going to do with the App. In this particular case, you will use it to "
3755
+ "offer %1$s login option for your visitors."
3756
  msgstr ""
3757
 
3758
  #, php-format
3759
  msgid ""
3760
  "Wait until your App gets approved. This can take a couple of days. If you "
3761
+ "scroll up to the top of the page you will be able to inspect the %1$s below "
3762
+ "the %2$s section. If you want to learn more about the App review process, "
3763
+ "you can find more information in the %3$sofficial documentation%4$s."
3764
  msgstr ""
3765
 
3766
  #, php-format
3767
  msgid ""
3768
+ "Once the %1$s says %2$s, you will be able to reveal the %3$s and %4$s by "
3769
+ "clicking on the eye icon next to these fields. You will need these "
3770
+ "credentials for the provider configuration."
3771
  msgstr ""
3772
 
3773
  #, php-format
4035
  msgid "Social accounts"
4036
  msgstr "Cuentas sociales"
4037
 
4038
+ #, fuzzy, php-format
4039
+ #~| msgid "Click on the Create button"
4040
+ #~ msgid "For %1$s choose the %2$s option."
4041
+ #~ msgstr "Haz clic en el botón Create"
4042
+
4043
  #, fuzzy
4044
  #~| msgid ""
4045
  #~| "Add the following URL to the \"Valid OAuth redirect URIs\" field: <b>%s</"
languages/nextend-facebook-connect-fr_FR.mo CHANGED
Binary file
languages/nextend-facebook-connect-fr_FR.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: nextend-facebook-connect\n"
4
- "POT-Creation-Date: 2022-06-13 13:55+0200\n"
5
- "PO-Revision-Date: 2022-06-13 13:55+0200\n"
6
  "Last-Translator: \n"
7
  "Language-Team: nextend-facebook-connect\n"
8
  "Language: fr\n"
@@ -3025,6 +3025,12 @@ msgstr ""
3025
  msgid "Scroll down to the %s section."
3026
  msgstr ""
3027
 
 
 
 
 
 
 
3028
  #, php-format
3029
  msgid ""
3030
  "Enter your domain name into the %1$s field, if it is not added already: %2$s"
@@ -3034,7 +3040,11 @@ msgstr ""
3034
  msgid "Press the %s button."
3035
  msgstr ""
3036
 
3037
- msgid "Allow some time for these modifications to take effect."
 
 
 
 
3038
  msgstr ""
3039
 
3040
  #, php-format
@@ -3048,41 +3058,69 @@ msgstr ""
3048
 
3049
  #, php-format
3050
  msgid ""
3051
- "A modal will appear where you need to select an image as %1$s and enter a "
3052
- "name into the %2$s field."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3053
  msgstr ""
3054
 
3055
  #, php-format
3056
- msgid "For %1$s choose the %2$s option."
3057
  msgstr ""
3058
 
3059
  #, php-format
3060
- msgid "Under the %s section you should fill all of the required fields."
3061
  msgstr ""
3062
 
3063
  #, php-format
3064
  msgid ""
3065
- "Under the %1$s section you need to make sure the option %2$s is checked."
 
 
3066
  msgstr ""
3067
 
3068
  #, php-format
3069
  msgid ""
3070
- "Into the %1$s field you should write a text, that describes what you are "
3071
- "going to do with the App. In this particular case, you will use it to offer "
3072
- "%2$s login option for your visitors."
3073
  msgstr ""
3074
 
3075
  #, php-format
3076
  msgid ""
3077
  "Wait until your App gets approved. This can take a couple of days. If you "
3078
- "scroll up to the top of the page you will be able to find the %s below the "
3079
- "name of your App."
 
3080
  msgstr ""
3081
 
3082
  #, php-format
3083
  msgid ""
3084
- "Once the %1$s says %2$s, the %3$s and %4$s will appear below the %1$s text. "
3085
- "You will need these for the provider configuration."
 
3086
  msgstr ""
3087
 
3088
  #, php-format
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: nextend-facebook-connect\n"
4
+ "POT-Creation-Date: 2022-08-30 15:56+0200\n"
5
+ "PO-Revision-Date: 2022-08-30 15:56+0200\n"
6
  "Last-Translator: \n"
7
  "Language-Team: nextend-facebook-connect\n"
8
  "Language: fr\n"
3025
  msgid "Scroll down to the %s section."
3026
  msgstr ""
3027
 
3028
+ #, php-format
3029
+ msgid ""
3030
+ "If the URLs don't match, enter the URL of your website into the %1$s field, "
3031
+ "probably: %2$s"
3032
+ msgstr ""
3033
+
3034
  #, php-format
3035
  msgid ""
3036
  "Enter your domain name into the %1$s field, if it is not added already: %2$s"
3040
  msgid "Press the %s button."
3041
  msgstr ""
3042
 
3043
+ #, php-format
3044
+ msgid ""
3045
+ "Submit your App for a review, by pressing the %1$s button on the top right "
3046
+ "corner and wait until the %2$s field says %3$s. This can take a couple of "
3047
+ "days."
3048
  msgstr ""
3049
 
3050
  #, php-format
3058
 
3059
  #, php-format
3060
  msgid ""
3061
+ "Find the %1$s section and upload an image as %2$s, then enter an %3$s, a "
3062
+ "%4$s and choose a value for %5$s."
3063
+ msgstr ""
3064
+
3065
+ #, php-format
3066
+ msgid ""
3067
+ "For %1$s you should enable the %2$s option then enter the URL of your "
3068
+ "website into the %3$s field, probably: %4$s"
3069
+ msgstr ""
3070
+
3071
+ #, php-format
3072
+ msgid "Click on the %s button."
3073
+ msgstr ""
3074
+
3075
+ #, php-format
3076
+ msgid ""
3077
+ "Click on %1$s on the left hand menu then add the %2$s product, and press the "
3078
+ "%3$s button."
3079
+ msgstr ""
3080
+
3081
+ #, php-format
3082
+ msgid "At the left hand menu click on the %1$s option under %2$s."
3083
+ msgstr ""
3084
+
3085
+ #, php-format
3086
+ msgid "Enter your %1$s and %2$s URLs."
3087
  msgstr ""
3088
 
3089
  #, php-format
3090
+ msgid "Enter your domain name into the %1$s field, probably: %2$s"
3091
  msgstr ""
3092
 
3093
  #, php-format
3094
+ msgid "Scroll up and click on the %s button."
3095
  msgstr ""
3096
 
3097
  #, php-format
3098
  msgid ""
3099
+ "Currently your App is in %1$s status, meaning that you don't have access to "
3100
+ "the credentials which are necessary for the %2$s integration. In order to "
3101
+ "gain access, click on the %3$s on the top right corner."
3102
  msgstr ""
3103
 
3104
  #, php-format
3105
  msgid ""
3106
+ "A modal will appear where you should enter a text, that describes what you "
3107
+ "are going to do with the App. In this particular case, you will use it to "
3108
+ "offer %1$s login option for your visitors."
3109
  msgstr ""
3110
 
3111
  #, php-format
3112
  msgid ""
3113
  "Wait until your App gets approved. This can take a couple of days. If you "
3114
+ "scroll up to the top of the page you will be able to inspect the %1$s below "
3115
+ "the %2$s section. If you want to learn more about the App review process, "
3116
+ "you can find more information in the %3$sofficial documentation%4$s."
3117
  msgstr ""
3118
 
3119
  #, php-format
3120
  msgid ""
3121
+ "Once the %1$s says %2$s, you will be able to reveal the %3$s and %4$s by "
3122
+ "clicking on the eye icon next to these fields. You will need these "
3123
+ "credentials for the provider configuration."
3124
  msgstr ""
3125
 
3126
  #, php-format
languages/nextend-facebook-connect-hu_HU.mo CHANGED
Binary file
languages/nextend-facebook-connect-hu_HU.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: nextend-facebook-connect\n"
4
- "POT-Creation-Date: 2022-06-13 13:55+0200\n"
5
- "PO-Revision-Date: 2022-06-13 13:55+0200\n"
6
  "Last-Translator: \n"
7
  "Language-Team: nextend-facebook-connect\n"
8
  "Language: hu\n"
@@ -3574,6 +3574,13 @@ msgstr ""
3574
  msgid "Scroll down to the %s section."
3575
  msgstr "Kattints a \"Create\" gombra"
3576
 
 
 
 
 
 
 
 
3577
  #, fuzzy, php-format
3578
  #| msgid "Enter your domain name to the App Domains"
3579
  msgid ""
@@ -3584,7 +3591,11 @@ msgstr "Írd be a domain neved az \"App Domains\" mezőbe"
3584
  msgid "Press the %s button."
3585
  msgstr ""
3586
 
3587
- msgid "Allow some time for these modifications to take effect."
 
 
 
 
3588
  msgstr ""
3589
 
3590
  #, php-format
@@ -3598,42 +3609,73 @@ msgstr ""
3598
 
3599
  #, php-format
3600
  msgid ""
3601
- "A modal will appear where you need to select an image as %1$s and enter a "
3602
- "name into the %2$s field."
 
 
 
 
 
 
3603
  msgstr ""
3604
 
3605
  #, fuzzy, php-format
3606
  #| msgid "Click on the Create button"
3607
- msgid "For %1$s choose the %2$s option."
3608
  msgstr "Kattints a \"Create\" gombra"
3609
 
3610
  #, php-format
3611
- msgid "Under the %s section you should fill all of the required fields."
 
 
 
 
 
 
 
 
 
 
 
3612
  msgstr ""
3613
 
 
 
 
 
 
 
 
 
 
 
3614
  #, php-format
3615
  msgid ""
3616
- "Under the %1$s section you need to make sure the option %2$s is checked."
 
 
3617
  msgstr ""
3618
 
3619
  #, php-format
3620
  msgid ""
3621
- "Into the %1$s field you should write a text, that describes what you are "
3622
- "going to do with the App. In this particular case, you will use it to offer "
3623
- "%2$s login option for your visitors."
3624
  msgstr ""
3625
 
3626
  #, php-format
3627
  msgid ""
3628
  "Wait until your App gets approved. This can take a couple of days. If you "
3629
- "scroll up to the top of the page you will be able to find the %s below the "
3630
- "name of your App."
 
3631
  msgstr ""
3632
 
3633
  #, php-format
3634
  msgid ""
3635
- "Once the %1$s says %2$s, the %3$s and %4$s will appear below the %1$s text. "
3636
- "You will need these for the provider configuration."
 
3637
  msgstr ""
3638
 
3639
  #, php-format
@@ -3885,6 +3927,11 @@ msgstr "VAGY"
3885
  msgid "Social accounts"
3886
  msgstr "Közösségi fiókok"
3887
 
 
 
 
 
 
3888
  #, fuzzy
3889
  #~| msgid ""
3890
  #~| "Add the following URL to the \"Valid OAuth redirect URIs\" field: <b>%s</"
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: nextend-facebook-connect\n"
4
+ "POT-Creation-Date: 2022-08-30 15:56+0200\n"
5
+ "PO-Revision-Date: 2022-08-30 15:56+0200\n"
6
  "Last-Translator: \n"
7
  "Language-Team: nextend-facebook-connect\n"
8
  "Language: hu\n"
3574
  msgid "Scroll down to the %s section."
3575
  msgstr "Kattints a \"Create\" gombra"
3576
 
3577
+ #, fuzzy, php-format
3578
+ #| msgid "Enter your domain name to the App Domains"
3579
+ msgid ""
3580
+ "If the URLs don't match, enter the URL of your website into the %1$s field, "
3581
+ "probably: %2$s"
3582
+ msgstr "Írd be a domain neved az \"App Domains\" mezőbe"
3583
+
3584
  #, fuzzy, php-format
3585
  #| msgid "Enter your domain name to the App Domains"
3586
  msgid ""
3591
  msgid "Press the %s button."
3592
  msgstr ""
3593
 
3594
+ #, php-format
3595
+ msgid ""
3596
+ "Submit your App for a review, by pressing the %1$s button on the top right "
3597
+ "corner and wait until the %2$s field says %3$s. This can take a couple of "
3598
+ "days."
3599
  msgstr ""
3600
 
3601
  #, php-format
3609
 
3610
  #, php-format
3611
  msgid ""
3612
+ "Find the %1$s section and upload an image as %2$s, then enter an %3$s, a "
3613
+ "%4$s and choose a value for %5$s."
3614
+ msgstr ""
3615
+
3616
+ #, php-format
3617
+ msgid ""
3618
+ "For %1$s you should enable the %2$s option then enter the URL of your "
3619
+ "website into the %3$s field, probably: %4$s"
3620
  msgstr ""
3621
 
3622
  #, fuzzy, php-format
3623
  #| msgid "Click on the Create button"
3624
+ msgid "Click on the %s button."
3625
  msgstr "Kattints a \"Create\" gombra"
3626
 
3627
  #, php-format
3628
+ msgid ""
3629
+ "Click on %1$s on the left hand menu then add the %2$s product, and press the "
3630
+ "%3$s button."
3631
+ msgstr ""
3632
+
3633
+ #, fuzzy, php-format
3634
+ #| msgid "Name your project and then click on the Create button again"
3635
+ msgid "At the left hand menu click on the %1$s option under %2$s."
3636
+ msgstr "Adj nevet a projektnek és kattints a \"Create\" gombra újra."
3637
+
3638
+ #, php-format
3639
+ msgid "Enter your %1$s and %2$s URLs."
3640
  msgstr ""
3641
 
3642
+ #, fuzzy, php-format
3643
+ #| msgid "Enter your domain name to the App Domains"
3644
+ msgid "Enter your domain name into the %1$s field, probably: %2$s"
3645
+ msgstr "Írd be a domain neved az \"App Domains\" mezőbe"
3646
+
3647
+ #, fuzzy, php-format
3648
+ #| msgid "Name your project and then click on the Create button again"
3649
+ msgid "Scroll up and click on the %s button."
3650
+ msgstr "Adj nevet a projektnek és kattints a \"Create\" gombra újra."
3651
+
3652
  #, php-format
3653
  msgid ""
3654
+ "Currently your App is in %1$s status, meaning that you don't have access to "
3655
+ "the credentials which are necessary for the %2$s integration. In order to "
3656
+ "gain access, click on the %3$s on the top right corner."
3657
  msgstr ""
3658
 
3659
  #, php-format
3660
  msgid ""
3661
+ "A modal will appear where you should enter a text, that describes what you "
3662
+ "are going to do with the App. In this particular case, you will use it to "
3663
+ "offer %1$s login option for your visitors."
3664
  msgstr ""
3665
 
3666
  #, php-format
3667
  msgid ""
3668
  "Wait until your App gets approved. This can take a couple of days. If you "
3669
+ "scroll up to the top of the page you will be able to inspect the %1$s below "
3670
+ "the %2$s section. If you want to learn more about the App review process, "
3671
+ "you can find more information in the %3$sofficial documentation%4$s."
3672
  msgstr ""
3673
 
3674
  #, php-format
3675
  msgid ""
3676
+ "Once the %1$s says %2$s, you will be able to reveal the %3$s and %4$s by "
3677
+ "clicking on the eye icon next to these fields. You will need these "
3678
+ "credentials for the provider configuration."
3679
  msgstr ""
3680
 
3681
  #, php-format
3927
  msgid "Social accounts"
3928
  msgstr "Közösségi fiókok"
3929
 
3930
+ #, fuzzy, php-format
3931
+ #~| msgid "Click on the Create button"
3932
+ #~ msgid "For %1$s choose the %2$s option."
3933
+ #~ msgstr "Kattints a \"Create\" gombra"
3934
+
3935
  #, fuzzy
3936
  #~| msgid ""
3937
  #~| "Add the following URL to the \"Valid OAuth redirect URIs\" field: <b>%s</"
languages/nextend-facebook-connect-it_IT.mo CHANGED
Binary file
languages/nextend-facebook-connect-it_IT.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: nextend-facebook-connect\n"
4
- "POT-Creation-Date: 2022-06-13 13:55+0200\n"
5
- "PO-Revision-Date: 2022-06-13 13:55+0200\n"
6
  "Last-Translator: \n"
7
  "Language-Team: nextend-facebook-connect\n"
8
  "Language: it_IT\n"
@@ -3601,6 +3601,17 @@ msgstr ""
3601
  msgid "Scroll down to the %s section."
3602
  msgstr "Scegli l'opzione \"<b>%s</b>\"."
3603
 
 
 
 
 
 
 
 
 
 
 
 
3604
  #, fuzzy, php-format
3605
  #| msgid ""
3606
  #| "Enter your domain name to the \"<b>App Domains</b>\" field, probably: <b>"
@@ -3615,7 +3626,11 @@ msgstr ""
3615
  msgid "Press the %s button."
3616
  msgstr ""
3617
 
3618
- msgid "Allow some time for these modifications to take effect."
 
 
 
 
3619
  msgstr ""
3620
 
3621
  #, php-format
@@ -3629,42 +3644,77 @@ msgstr ""
3629
 
3630
  #, php-format
3631
  msgid ""
3632
- "A modal will appear where you need to select an image as %1$s and enter a "
3633
- "name into the %2$s field."
 
 
 
 
 
 
3634
  msgstr ""
3635
 
3636
  #, fuzzy, php-format
3637
- #| msgid "Choose the \"<b>OAuth client ID</b>\" option."
3638
- msgid "For %1$s choose the %2$s option."
3639
- msgstr "Scegli l'opzione \"<b>OAuth client ID</b>\"."
 
 
 
 
 
 
 
 
 
 
 
3640
 
3641
  #, php-format
3642
- msgid "Under the %s section you should fill all of the required fields."
 
 
 
 
 
 
 
3643
  msgstr ""
 
 
 
 
 
 
 
3644
 
3645
  #, php-format
3646
  msgid ""
3647
- "Under the %1$s section you need to make sure the option %2$s is checked."
 
 
3648
  msgstr ""
3649
 
3650
  #, php-format
3651
  msgid ""
3652
- "Into the %1$s field you should write a text, that describes what you are "
3653
- "going to do with the App. In this particular case, you will use it to offer "
3654
- "%2$s login option for your visitors."
3655
  msgstr ""
3656
 
3657
  #, php-format
3658
  msgid ""
3659
  "Wait until your App gets approved. This can take a couple of days. If you "
3660
- "scroll up to the top of the page you will be able to find the %s below the "
3661
- "name of your App."
 
3662
  msgstr ""
3663
 
3664
  #, php-format
3665
  msgid ""
3666
- "Once the %1$s says %2$s, the %3$s and %4$s will appear below the %1$s text. "
3667
- "You will need these for the provider configuration."
 
3668
  msgstr ""
3669
 
3670
  #, php-format
@@ -3893,6 +3943,11 @@ msgstr "OR"
3893
  msgid "Social accounts"
3894
  msgstr "Account social"
3895
 
 
 
 
 
 
3896
  #~ msgid ""
3897
  #~ "Click \"<b>Advanced Options</b>\" which can be found at the end of text "
3898
  #~ "after \"<b>Connect with PayPal (formerly Log In with PayPal)</b>\"."
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: nextend-facebook-connect\n"
4
+ "POT-Creation-Date: 2022-08-30 15:56+0200\n"
5
+ "PO-Revision-Date: 2022-08-30 15:56+0200\n"
6
  "Last-Translator: \n"
7
  "Language-Team: nextend-facebook-connect\n"
8
  "Language: it_IT\n"
3601
  msgid "Scroll down to the %s section."
3602
  msgstr "Scegli l'opzione \"<b>%s</b>\"."
3603
 
3604
+ #, fuzzy, php-format
3605
+ #| msgid ""
3606
+ #| "Enter your domain name to the \"<b>App Domains</b>\" field, probably: <b>"
3607
+ #| "%s</b>"
3608
+ msgid ""
3609
+ "If the URLs don't match, enter the URL of your website into the %1$s field, "
3610
+ "probably: %2$s"
3611
+ msgstr ""
3612
+ "Inserisci il nome del tuo dominio nel campo \"<b>Domini App</b>\", "
3613
+ "probabilmente: <b>%s</b>"
3614
+
3615
  #, fuzzy, php-format
3616
  #| msgid ""
3617
  #| "Enter your domain name to the \"<b>App Domains</b>\" field, probably: <b>"
3626
  msgid "Press the %s button."
3627
  msgstr ""
3628
 
3629
+ #, php-format
3630
+ msgid ""
3631
+ "Submit your App for a review, by pressing the %1$s button on the top right "
3632
+ "corner and wait until the %2$s field says %3$s. This can take a couple of "
3633
+ "days."
3634
  msgstr ""
3635
 
3636
  #, php-format
3644
 
3645
  #, php-format
3646
  msgid ""
3647
+ "Find the %1$s section and upload an image as %2$s, then enter an %3$s, a "
3648
+ "%4$s and choose a value for %5$s."
3649
+ msgstr ""
3650
+
3651
+ #, php-format
3652
+ msgid ""
3653
+ "For %1$s you should enable the %2$s option then enter the URL of your "
3654
+ "website into the %3$s field, probably: %4$s"
3655
  msgstr ""
3656
 
3657
  #, fuzzy, php-format
3658
+ #| msgid "Click on the \"<b>Create</b>\" button"
3659
+ msgid "Click on the %s button."
3660
+ msgstr "Clicca sul bottone \"<b>Crea</b>\""
3661
+
3662
+ #, php-format
3663
+ msgid ""
3664
+ "Click on %1$s on the left hand menu then add the %2$s product, and press the "
3665
+ "%3$s button."
3666
+ msgstr ""
3667
+
3668
+ #, fuzzy, php-format
3669
+ #| msgid "On the left hand side, click on the \"<b>%s</b>\" tab."
3670
+ msgid "At the left hand menu click on the %1$s option under %2$s."
3671
+ msgstr "Sulla sinistra, clicca sulla tab \"<b>%s</b>\"."
3672
 
3673
  #, php-format
3674
+ msgid "Enter your %1$s and %2$s URLs."
3675
+ msgstr ""
3676
+
3677
+ #, fuzzy, php-format
3678
+ #| msgid ""
3679
+ #| "Enter your domain name to the \"<b>App Domains</b>\" field, probably: <b>"
3680
+ #| "%s</b>"
3681
+ msgid "Enter your domain name into the %1$s field, probably: %2$s"
3682
  msgstr ""
3683
+ "Inserisci il nome del tuo dominio nel campo \"<b>Domini App</b>\", "
3684
+ "probabilmente: <b>%s</b>"
3685
+
3686
+ #, fuzzy, php-format
3687
+ #| msgid "Switch on the \"<b>%s</b>\" option."
3688
+ msgid "Scroll up and click on the %s button."
3689
+ msgstr "Scegli l'opzione \"<b>%s</b>\"."
3690
 
3691
  #, php-format
3692
  msgid ""
3693
+ "Currently your App is in %1$s status, meaning that you don't have access to "
3694
+ "the credentials which are necessary for the %2$s integration. In order to "
3695
+ "gain access, click on the %3$s on the top right corner."
3696
  msgstr ""
3697
 
3698
  #, php-format
3699
  msgid ""
3700
+ "A modal will appear where you should enter a text, that describes what you "
3701
+ "are going to do with the App. In this particular case, you will use it to "
3702
+ "offer %1$s login option for your visitors."
3703
  msgstr ""
3704
 
3705
  #, php-format
3706
  msgid ""
3707
  "Wait until your App gets approved. This can take a couple of days. If you "
3708
+ "scroll up to the top of the page you will be able to inspect the %1$s below "
3709
+ "the %2$s section. If you want to learn more about the App review process, "
3710
+ "you can find more information in the %3$sofficial documentation%4$s."
3711
  msgstr ""
3712
 
3713
  #, php-format
3714
  msgid ""
3715
+ "Once the %1$s says %2$s, you will be able to reveal the %3$s and %4$s by "
3716
+ "clicking on the eye icon next to these fields. You will need these "
3717
+ "credentials for the provider configuration."
3718
  msgstr ""
3719
 
3720
  #, php-format
3943
  msgid "Social accounts"
3944
  msgstr "Account social"
3945
 
3946
+ #, fuzzy, php-format
3947
+ #~| msgid "Choose the \"<b>OAuth client ID</b>\" option."
3948
+ #~ msgid "For %1$s choose the %2$s option."
3949
+ #~ msgstr "Scegli l'opzione \"<b>OAuth client ID</b>\"."
3950
+
3951
  #~ msgid ""
3952
  #~ "Click \"<b>Advanced Options</b>\" which can be found at the end of text "
3953
  #~ "after \"<b>Connect with PayPal (formerly Log In with PayPal)</b>\"."
languages/nextend-facebook-connect-nl_NL.mo CHANGED
Binary file
languages/nextend-facebook-connect-nl_NL.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: nextend-facebook-connect\n"
4
- "POT-Creation-Date: 2022-06-13 13:55+0200\n"
5
- "PO-Revision-Date: 2022-06-13 13:55+0200\n"
6
  "Last-Translator: Erik Molenaar <info@erikmolenaar.nl>\n"
7
  "Language-Team: nextend-facebook-connect\n"
8
  "Language: nl_NL\n"
@@ -3721,6 +3721,13 @@ msgstr ""
3721
  msgid "Scroll down to the %s section."
3722
  msgstr "Klik op de knop Aanmaken"
3723
 
 
 
 
 
 
 
 
3724
  #, fuzzy, php-format
3725
  #| msgid "Enter your domain name to the App Domains"
3726
  msgid ""
@@ -3731,7 +3738,11 @@ msgstr "Voer je domeinnaam in bij de App Domeinen"
3731
  msgid "Press the %s button."
3732
  msgstr ""
3733
 
3734
- msgid "Allow some time for these modifications to take effect."
 
 
 
 
3735
  msgstr ""
3736
 
3737
  #, php-format
@@ -3745,42 +3756,73 @@ msgstr ""
3745
 
3746
  #, php-format
3747
  msgid ""
3748
- "A modal will appear where you need to select an image as %1$s and enter a "
3749
- "name into the %2$s field."
 
 
 
 
 
 
3750
  msgstr ""
3751
 
3752
  #, fuzzy, php-format
3753
  #| msgid "Click on the Create button"
3754
- msgid "For %1$s choose the %2$s option."
3755
  msgstr "Klik op de knop Aanmaken"
3756
 
3757
  #, php-format
3758
- msgid "Under the %s section you should fill all of the required fields."
 
 
3759
  msgstr ""
3760
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3761
  #, php-format
3762
  msgid ""
3763
- "Under the %1$s section you need to make sure the option %2$s is checked."
 
 
3764
  msgstr ""
3765
 
3766
  #, php-format
3767
  msgid ""
3768
- "Into the %1$s field you should write a text, that describes what you are "
3769
- "going to do with the App. In this particular case, you will use it to offer "
3770
- "%2$s login option for your visitors."
3771
  msgstr ""
3772
 
3773
  #, php-format
3774
  msgid ""
3775
  "Wait until your App gets approved. This can take a couple of days. If you "
3776
- "scroll up to the top of the page you will be able to find the %s below the "
3777
- "name of your App."
 
3778
  msgstr ""
3779
 
3780
  #, php-format
3781
  msgid ""
3782
- "Once the %1$s says %2$s, the %3$s and %4$s will appear below the %1$s text. "
3783
- "You will need these for the provider configuration."
 
3784
  msgstr ""
3785
 
3786
  #, php-format
@@ -4053,6 +4095,11 @@ msgstr "OF"
4053
  msgid "Social accounts"
4054
  msgstr "Social accounts"
4055
 
 
 
 
 
 
4056
  #, fuzzy
4057
  #~| msgid ""
4058
  #~| "Click \"Advanced Options\" which can be found at the end of text after "
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: nextend-facebook-connect\n"
4
+ "POT-Creation-Date: 2022-08-30 15:56+0200\n"
5
+ "PO-Revision-Date: 2022-08-30 15:56+0200\n"
6
  "Last-Translator: Erik Molenaar <info@erikmolenaar.nl>\n"
7
  "Language-Team: nextend-facebook-connect\n"
8
  "Language: nl_NL\n"
3721
  msgid "Scroll down to the %s section."
3722
  msgstr "Klik op de knop Aanmaken"
3723
 
3724
+ #, fuzzy, php-format
3725
+ #| msgid "Enter your domain name to the App Domains"
3726
+ msgid ""
3727
+ "If the URLs don't match, enter the URL of your website into the %1$s field, "
3728
+ "probably: %2$s"
3729
+ msgstr "Voer je domeinnaam in bij de App Domeinen"
3730
+
3731
  #, fuzzy, php-format
3732
  #| msgid "Enter your domain name to the App Domains"
3733
  msgid ""
3738
  msgid "Press the %s button."
3739
  msgstr ""
3740
 
3741
+ #, php-format
3742
+ msgid ""
3743
+ "Submit your App for a review, by pressing the %1$s button on the top right "
3744
+ "corner and wait until the %2$s field says %3$s. This can take a couple of "
3745
+ "days."
3746
  msgstr ""
3747
 
3748
  #, php-format
3756
 
3757
  #, php-format
3758
  msgid ""
3759
+ "Find the %1$s section and upload an image as %2$s, then enter an %3$s, a "
3760
+ "%4$s and choose a value for %5$s."
3761
+ msgstr ""
3762
+
3763
+ #, php-format
3764
+ msgid ""
3765
+ "For %1$s you should enable the %2$s option then enter the URL of your "
3766
+ "website into the %3$s field, probably: %4$s"
3767
  msgstr ""
3768
 
3769
  #, fuzzy, php-format
3770
  #| msgid "Click on the Create button"
3771
+ msgid "Click on the %s button."
3772
  msgstr "Klik op de knop Aanmaken"
3773
 
3774
  #, php-format
3775
+ msgid ""
3776
+ "Click on %1$s on the left hand menu then add the %2$s product, and press the "
3777
+ "%3$s button."
3778
  msgstr ""
3779
 
3780
+ #, fuzzy, php-format
3781
+ #| msgid "Name your project and then click on the Create button again"
3782
+ msgid "At the left hand menu click on the %1$s option under %2$s."
3783
+ msgstr "Geef je project een naam en klik dan opnieuw op de knop Aanmaken"
3784
+
3785
+ #, php-format
3786
+ msgid "Enter your %1$s and %2$s URLs."
3787
+ msgstr ""
3788
+
3789
+ #, fuzzy, php-format
3790
+ #| msgid "Enter your domain name to the App Domains"
3791
+ msgid "Enter your domain name into the %1$s field, probably: %2$s"
3792
+ msgstr "Voer je domeinnaam in bij de App Domeinen"
3793
+
3794
+ #, fuzzy, php-format
3795
+ #| msgid "Name your project and then click on the Create button again"
3796
+ msgid "Scroll up and click on the %s button."
3797
+ msgstr "Geef je project een naam en klik dan opnieuw op de knop Aanmaken"
3798
+
3799
  #, php-format
3800
  msgid ""
3801
+ "Currently your App is in %1$s status, meaning that you don't have access to "
3802
+ "the credentials which are necessary for the %2$s integration. In order to "
3803
+ "gain access, click on the %3$s on the top right corner."
3804
  msgstr ""
3805
 
3806
  #, php-format
3807
  msgid ""
3808
+ "A modal will appear where you should enter a text, that describes what you "
3809
+ "are going to do with the App. In this particular case, you will use it to "
3810
+ "offer %1$s login option for your visitors."
3811
  msgstr ""
3812
 
3813
  #, php-format
3814
  msgid ""
3815
  "Wait until your App gets approved. This can take a couple of days. If you "
3816
+ "scroll up to the top of the page you will be able to inspect the %1$s below "
3817
+ "the %2$s section. If you want to learn more about the App review process, "
3818
+ "you can find more information in the %3$sofficial documentation%4$s."
3819
  msgstr ""
3820
 
3821
  #, php-format
3822
  msgid ""
3823
+ "Once the %1$s says %2$s, you will be able to reveal the %3$s and %4$s by "
3824
+ "clicking on the eye icon next to these fields. You will need these "
3825
+ "credentials for the provider configuration."
3826
  msgstr ""
3827
 
3828
  #, php-format
4095
  msgid "Social accounts"
4096
  msgstr "Social accounts"
4097
 
4098
+ #, fuzzy, php-format
4099
+ #~| msgid "Click on the Create button"
4100
+ #~ msgid "For %1$s choose the %2$s option."
4101
+ #~ msgstr "Klik op de knop Aanmaken"
4102
+
4103
  #, fuzzy
4104
  #~| msgid ""
4105
  #~| "Click \"Advanced Options\" which can be found at the end of text after "
languages/nextend-facebook-connect-pt_BR.mo CHANGED
Binary file
languages/nextend-facebook-connect-pt_BR.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: nextend-facebook-connect\n"
4
- "POT-Creation-Date: 2022-06-13 13:55+0200\n"
5
- "PO-Revision-Date: 2022-06-13 13:55+0200\n"
6
  "Last-Translator: \n"
7
  "Language-Team: renato@modernstuff.com.br\n"
8
  "Language: pt_BR\n"
@@ -3713,6 +3713,13 @@ msgstr ""
3713
  msgid "Scroll down to the %s section."
3714
  msgstr "Clique no botão Criar"
3715
 
 
 
 
 
 
 
 
3716
  #, fuzzy, php-format
3717
  #| msgid "Enter your domain name to the App Domains"
3718
  msgid ""
@@ -3723,7 +3730,11 @@ msgstr "Digite seu nome de domínio para os Domínios do App"
3723
  msgid "Press the %s button."
3724
  msgstr ""
3725
 
3726
- msgid "Allow some time for these modifications to take effect."
 
 
 
 
3727
  msgstr ""
3728
 
3729
  #, php-format
@@ -3737,42 +3748,73 @@ msgstr ""
3737
 
3738
  #, php-format
3739
  msgid ""
3740
- "A modal will appear where you need to select an image as %1$s and enter a "
3741
- "name into the %2$s field."
 
 
 
 
 
 
3742
  msgstr ""
3743
 
3744
  #, fuzzy, php-format
3745
  #| msgid "Click on the Create button"
3746
- msgid "For %1$s choose the %2$s option."
3747
  msgstr "Clique no botão Criar"
3748
 
3749
  #, php-format
3750
- msgid "Under the %s section you should fill all of the required fields."
 
 
3751
  msgstr ""
3752
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3753
  #, php-format
3754
  msgid ""
3755
- "Under the %1$s section you need to make sure the option %2$s is checked."
 
 
3756
  msgstr ""
3757
 
3758
  #, php-format
3759
  msgid ""
3760
- "Into the %1$s field you should write a text, that describes what you are "
3761
- "going to do with the App. In this particular case, you will use it to offer "
3762
- "%2$s login option for your visitors."
3763
  msgstr ""
3764
 
3765
  #, php-format
3766
  msgid ""
3767
  "Wait until your App gets approved. This can take a couple of days. If you "
3768
- "scroll up to the top of the page you will be able to find the %s below the "
3769
- "name of your App."
 
3770
  msgstr ""
3771
 
3772
  #, php-format
3773
  msgid ""
3774
- "Once the %1$s says %2$s, the %3$s and %4$s will appear below the %1$s text. "
3775
- "You will need these for the provider configuration."
 
3776
  msgstr ""
3777
 
3778
  #, php-format
@@ -4047,6 +4089,11 @@ msgstr "OU"
4047
  msgid "Social accounts"
4048
  msgstr "Contas redes sociais"
4049
 
 
 
 
 
 
4050
  #, fuzzy
4051
  #~| msgid ""
4052
  #~| "Click \"Advanced Options\" which can be found at the end of text \"Log "
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: nextend-facebook-connect\n"
4
+ "POT-Creation-Date: 2022-08-30 15:56+0200\n"
5
+ "PO-Revision-Date: 2022-08-30 15:56+0200\n"
6
  "Last-Translator: \n"
7
  "Language-Team: renato@modernstuff.com.br\n"
8
  "Language: pt_BR\n"
3713
  msgid "Scroll down to the %s section."
3714
  msgstr "Clique no botão Criar"
3715
 
3716
+ #, fuzzy, php-format
3717
+ #| msgid "Enter your domain name to the App Domains"
3718
+ msgid ""
3719
+ "If the URLs don't match, enter the URL of your website into the %1$s field, "
3720
+ "probably: %2$s"
3721
+ msgstr "Digite seu nome de domínio para os Domínios do App"
3722
+
3723
  #, fuzzy, php-format
3724
  #| msgid "Enter your domain name to the App Domains"
3725
  msgid ""
3730
  msgid "Press the %s button."
3731
  msgstr ""
3732
 
3733
+ #, php-format
3734
+ msgid ""
3735
+ "Submit your App for a review, by pressing the %1$s button on the top right "
3736
+ "corner and wait until the %2$s field says %3$s. This can take a couple of "
3737
+ "days."
3738
  msgstr ""
3739
 
3740
  #, php-format
3748
 
3749
  #, php-format
3750
  msgid ""
3751
+ "Find the %1$s section and upload an image as %2$s, then enter an %3$s, a "
3752
+ "%4$s and choose a value for %5$s."
3753
+ msgstr ""
3754
+
3755
+ #, php-format
3756
+ msgid ""
3757
+ "For %1$s you should enable the %2$s option then enter the URL of your "
3758
+ "website into the %3$s field, probably: %4$s"
3759
  msgstr ""
3760
 
3761
  #, fuzzy, php-format
3762
  #| msgid "Click on the Create button"
3763
+ msgid "Click on the %s button."
3764
  msgstr "Clique no botão Criar"
3765
 
3766
  #, php-format
3767
+ msgid ""
3768
+ "Click on %1$s on the left hand menu then add the %2$s product, and press the "
3769
+ "%3$s button."
3770
  msgstr ""
3771
 
3772
+ #, fuzzy, php-format
3773
+ #| msgid "Name your project and then click on the Create button again"
3774
+ msgid "At the left hand menu click on the %1$s option under %2$s."
3775
+ msgstr "Nomeie o projeto e, em seguida, clique no botão Criar"
3776
+
3777
+ #, php-format
3778
+ msgid "Enter your %1$s and %2$s URLs."
3779
+ msgstr ""
3780
+
3781
+ #, fuzzy, php-format
3782
+ #| msgid "Enter your domain name to the App Domains"
3783
+ msgid "Enter your domain name into the %1$s field, probably: %2$s"
3784
+ msgstr "Digite seu nome de domínio para os Domínios do App"
3785
+
3786
+ #, fuzzy, php-format
3787
+ #| msgid "Name your project and then click on the Create button again"
3788
+ msgid "Scroll up and click on the %s button."
3789
+ msgstr "Nomeie o projeto e, em seguida, clique no botão Criar"
3790
+
3791
  #, php-format
3792
  msgid ""
3793
+ "Currently your App is in %1$s status, meaning that you don't have access to "
3794
+ "the credentials which are necessary for the %2$s integration. In order to "
3795
+ "gain access, click on the %3$s on the top right corner."
3796
  msgstr ""
3797
 
3798
  #, php-format
3799
  msgid ""
3800
+ "A modal will appear where you should enter a text, that describes what you "
3801
+ "are going to do with the App. In this particular case, you will use it to "
3802
+ "offer %1$s login option for your visitors."
3803
  msgstr ""
3804
 
3805
  #, php-format
3806
  msgid ""
3807
  "Wait until your App gets approved. This can take a couple of days. If you "
3808
+ "scroll up to the top of the page you will be able to inspect the %1$s below "
3809
+ "the %2$s section. If you want to learn more about the App review process, "
3810
+ "you can find more information in the %3$sofficial documentation%4$s."
3811
  msgstr ""
3812
 
3813
  #, php-format
3814
  msgid ""
3815
+ "Once the %1$s says %2$s, you will be able to reveal the %3$s and %4$s by "
3816
+ "clicking on the eye icon next to these fields. You will need these "
3817
+ "credentials for the provider configuration."
3818
  msgstr ""
3819
 
3820
  #, php-format
4089
  msgid "Social accounts"
4090
  msgstr "Contas redes sociais"
4091
 
4092
+ #, fuzzy, php-format
4093
+ #~| msgid "Click on the Create button"
4094
+ #~ msgid "For %1$s choose the %2$s option."
4095
+ #~ msgstr "Clique no botão Criar"
4096
+
4097
  #, fuzzy
4098
  #~| msgid ""
4099
  #~| "Click \"Advanced Options\" which can be found at the end of text \"Log "
languages/nextend-facebook-connect-ru_RU.mo CHANGED
Binary file
languages/nextend-facebook-connect-ru_RU.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: nextend-facebook-connect\n"
4
- "POT-Creation-Date: 2022-06-13 13:55+0200\n"
5
- "PO-Revision-Date: 2022-06-13 13:55+0200\n"
6
  "Last-Translator: \n"
7
  "Language-Team: nextend-facebook-connect\n"
8
  "Language: ru\n"
@@ -3072,6 +3072,12 @@ msgstr ""
3072
  msgid "Scroll down to the %s section."
3073
  msgstr ""
3074
 
 
 
 
 
 
 
3075
  #, php-format
3076
  msgid ""
3077
  "Enter your domain name into the %1$s field, if it is not added already: %2$s"
@@ -3081,7 +3087,11 @@ msgstr ""
3081
  msgid "Press the %s button."
3082
  msgstr ""
3083
 
3084
- msgid "Allow some time for these modifications to take effect."
 
 
 
 
3085
  msgstr ""
3086
 
3087
  #, php-format
@@ -3095,41 +3105,69 @@ msgstr ""
3095
 
3096
  #, php-format
3097
  msgid ""
3098
- "A modal will appear where you need to select an image as %1$s and enter a "
3099
- "name into the %2$s field."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3100
  msgstr ""
3101
 
3102
  #, php-format
3103
- msgid "For %1$s choose the %2$s option."
3104
  msgstr ""
3105
 
3106
  #, php-format
3107
- msgid "Under the %s section you should fill all of the required fields."
3108
  msgstr ""
3109
 
3110
  #, php-format
3111
  msgid ""
3112
- "Under the %1$s section you need to make sure the option %2$s is checked."
 
 
3113
  msgstr ""
3114
 
3115
  #, php-format
3116
  msgid ""
3117
- "Into the %1$s field you should write a text, that describes what you are "
3118
- "going to do with the App. In this particular case, you will use it to offer "
3119
- "%2$s login option for your visitors."
3120
  msgstr ""
3121
 
3122
  #, php-format
3123
  msgid ""
3124
  "Wait until your App gets approved. This can take a couple of days. If you "
3125
- "scroll up to the top of the page you will be able to find the %s below the "
3126
- "name of your App."
 
3127
  msgstr ""
3128
 
3129
  #, php-format
3130
  msgid ""
3131
- "Once the %1$s says %2$s, the %3$s and %4$s will appear below the %1$s text. "
3132
- "You will need these for the provider configuration."
 
3133
  msgstr ""
3134
 
3135
  #, php-format
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: nextend-facebook-connect\n"
4
+ "POT-Creation-Date: 2022-08-30 15:56+0200\n"
5
+ "PO-Revision-Date: 2022-08-30 15:56+0200\n"
6
  "Last-Translator: \n"
7
  "Language-Team: nextend-facebook-connect\n"
8
  "Language: ru\n"
3072
  msgid "Scroll down to the %s section."
3073
  msgstr ""
3074
 
3075
+ #, php-format
3076
+ msgid ""
3077
+ "If the URLs don't match, enter the URL of your website into the %1$s field, "
3078
+ "probably: %2$s"
3079
+ msgstr ""
3080
+
3081
  #, php-format
3082
  msgid ""
3083
  "Enter your domain name into the %1$s field, if it is not added already: %2$s"
3087
  msgid "Press the %s button."
3088
  msgstr ""
3089
 
3090
+ #, php-format
3091
+ msgid ""
3092
+ "Submit your App for a review, by pressing the %1$s button on the top right "
3093
+ "corner and wait until the %2$s field says %3$s. This can take a couple of "
3094
+ "days."
3095
  msgstr ""
3096
 
3097
  #, php-format
3105
 
3106
  #, php-format
3107
  msgid ""
3108
+ "Find the %1$s section and upload an image as %2$s, then enter an %3$s, a "
3109
+ "%4$s and choose a value for %5$s."
3110
+ msgstr ""
3111
+
3112
+ #, php-format
3113
+ msgid ""
3114
+ "For %1$s you should enable the %2$s option then enter the URL of your "
3115
+ "website into the %3$s field, probably: %4$s"
3116
+ msgstr ""
3117
+
3118
+ #, php-format
3119
+ msgid "Click on the %s button."
3120
+ msgstr ""
3121
+
3122
+ #, php-format
3123
+ msgid ""
3124
+ "Click on %1$s on the left hand menu then add the %2$s product, and press the "
3125
+ "%3$s button."
3126
+ msgstr ""
3127
+
3128
+ #, php-format
3129
+ msgid "At the left hand menu click on the %1$s option under %2$s."
3130
+ msgstr ""
3131
+
3132
+ #, php-format
3133
+ msgid "Enter your %1$s and %2$s URLs."
3134
  msgstr ""
3135
 
3136
  #, php-format
3137
+ msgid "Enter your domain name into the %1$s field, probably: %2$s"
3138
  msgstr ""
3139
 
3140
  #, php-format
3141
+ msgid "Scroll up and click on the %s button."
3142
  msgstr ""
3143
 
3144
  #, php-format
3145
  msgid ""
3146
+ "Currently your App is in %1$s status, meaning that you don't have access to "
3147
+ "the credentials which are necessary for the %2$s integration. In order to "
3148
+ "gain access, click on the %3$s on the top right corner."
3149
  msgstr ""
3150
 
3151
  #, php-format
3152
  msgid ""
3153
+ "A modal will appear where you should enter a text, that describes what you "
3154
+ "are going to do with the App. In this particular case, you will use it to "
3155
+ "offer %1$s login option for your visitors."
3156
  msgstr ""
3157
 
3158
  #, php-format
3159
  msgid ""
3160
  "Wait until your App gets approved. This can take a couple of days. If you "
3161
+ "scroll up to the top of the page you will be able to inspect the %1$s below "
3162
+ "the %2$s section. If you want to learn more about the App review process, "
3163
+ "you can find more information in the %3$sofficial documentation%4$s."
3164
  msgstr ""
3165
 
3166
  #, php-format
3167
  msgid ""
3168
+ "Once the %1$s says %2$s, you will be able to reveal the %3$s and %4$s by "
3169
+ "clicking on the eye icon next to these fields. You will need these "
3170
+ "credentials for the provider configuration."
3171
  msgstr ""
3172
 
3173
  #, php-format
languages/nextend-facebook-connect-zh_ZH.mo CHANGED
Binary file
languages/nextend-facebook-connect-zh_ZH.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: nextend-facebook-connect\n"
4
- "POT-Creation-Date: 2022-06-13 13:55+0200\n"
5
- "PO-Revision-Date: 2022-06-13 13:55+0200\n"
6
  "Last-Translator: \n"
7
  "Language-Team: nextend-facebook-connect\n"
8
  "Language: zh_CN\n"
@@ -3593,6 +3593,13 @@ msgstr ""
3593
  msgid "Scroll down to the %s section."
3594
  msgstr "点击创建按钮"
3595
 
 
 
 
 
 
 
 
3596
  #, fuzzy, php-format
3597
  #| msgid "Enter your domain name to the App Domains"
3598
  msgid ""
@@ -3603,7 +3610,11 @@ msgstr "填写你的域名到 应用域名"
3603
  msgid "Press the %s button."
3604
  msgstr ""
3605
 
3606
- msgid "Allow some time for these modifications to take effect."
 
 
 
 
3607
  msgstr ""
3608
 
3609
  #, php-format
@@ -3617,42 +3628,73 @@ msgstr ""
3617
 
3618
  #, php-format
3619
  msgid ""
3620
- "A modal will appear where you need to select an image as %1$s and enter a "
3621
- "name into the %2$s field."
 
 
 
 
 
 
3622
  msgstr ""
3623
 
3624
  #, fuzzy, php-format
3625
  #| msgid "Click on the Create button"
3626
- msgid "For %1$s choose the %2$s option."
3627
  msgstr "点击创建按钮"
3628
 
3629
  #, php-format
3630
- msgid "Under the %s section you should fill all of the required fields."
 
 
3631
  msgstr ""
3632
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3633
  #, php-format
3634
  msgid ""
3635
- "Under the %1$s section you need to make sure the option %2$s is checked."
 
 
3636
  msgstr ""
3637
 
3638
  #, php-format
3639
  msgid ""
3640
- "Into the %1$s field you should write a text, that describes what you are "
3641
- "going to do with the App. In this particular case, you will use it to offer "
3642
- "%2$s login option for your visitors."
3643
  msgstr ""
3644
 
3645
  #, php-format
3646
  msgid ""
3647
  "Wait until your App gets approved. This can take a couple of days. If you "
3648
- "scroll up to the top of the page you will be able to find the %s below the "
3649
- "name of your App."
 
3650
  msgstr ""
3651
 
3652
  #, php-format
3653
  msgid ""
3654
- "Once the %1$s says %2$s, the %3$s and %4$s will appear below the %1$s text. "
3655
- "You will need these for the provider configuration."
 
3656
  msgstr ""
3657
 
3658
  #, php-format
@@ -3905,6 +3947,11 @@ msgstr "或"
3905
  msgid "Social accounts"
3906
  msgstr "社交账号"
3907
 
 
 
 
 
 
3908
  #, fuzzy
3909
  #~| msgid ""
3910
  #~| "Add the following URL to the \"Valid OAuth redirect URIs\" field: <b>%s</"
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: nextend-facebook-connect\n"
4
+ "POT-Creation-Date: 2022-08-30 15:56+0200\n"
5
+ "PO-Revision-Date: 2022-08-30 15:56+0200\n"
6
  "Last-Translator: \n"
7
  "Language-Team: nextend-facebook-connect\n"
8
  "Language: zh_CN\n"
3593
  msgid "Scroll down to the %s section."
3594
  msgstr "点击创建按钮"
3595
 
3596
+ #, fuzzy, php-format
3597
+ #| msgid "Enter your domain name to the App Domains"
3598
+ msgid ""
3599
+ "If the URLs don't match, enter the URL of your website into the %1$s field, "
3600
+ "probably: %2$s"
3601
+ msgstr "填写你的域名到 应用域名"
3602
+
3603
  #, fuzzy, php-format
3604
  #| msgid "Enter your domain name to the App Domains"
3605
  msgid ""
3610
  msgid "Press the %s button."
3611
  msgstr ""
3612
 
3613
+ #, php-format
3614
+ msgid ""
3615
+ "Submit your App for a review, by pressing the %1$s button on the top right "
3616
+ "corner and wait until the %2$s field says %3$s. This can take a couple of "
3617
+ "days."
3618
  msgstr ""
3619
 
3620
  #, php-format
3628
 
3629
  #, php-format
3630
  msgid ""
3631
+ "Find the %1$s section and upload an image as %2$s, then enter an %3$s, a "
3632
+ "%4$s and choose a value for %5$s."
3633
+ msgstr ""
3634
+
3635
+ #, php-format
3636
+ msgid ""
3637
+ "For %1$s you should enable the %2$s option then enter the URL of your "
3638
+ "website into the %3$s field, probably: %4$s"
3639
  msgstr ""
3640
 
3641
  #, fuzzy, php-format
3642
  #| msgid "Click on the Create button"
3643
+ msgid "Click on the %s button."
3644
  msgstr "点击创建按钮"
3645
 
3646
  #, php-format
3647
+ msgid ""
3648
+ "Click on %1$s on the left hand menu then add the %2$s product, and press the "
3649
+ "%3$s button."
3650
  msgstr ""
3651
 
3652
+ #, fuzzy, php-format
3653
+ #| msgid "Name your project and then click on the Create button"
3654
+ msgid "At the left hand menu click on the %1$s option under %2$s."
3655
+ msgstr "命名您的项目,然后点击创建按钮"
3656
+
3657
+ #, php-format
3658
+ msgid "Enter your %1$s and %2$s URLs."
3659
+ msgstr ""
3660
+
3661
+ #, fuzzy, php-format
3662
+ #| msgid "Enter your domain name to the App Domains"
3663
+ msgid "Enter your domain name into the %1$s field, probably: %2$s"
3664
+ msgstr "填写你的域名到 应用域名"
3665
+
3666
+ #, fuzzy, php-format
3667
+ #| msgid "Name your project and then click on the Create button"
3668
+ msgid "Scroll up and click on the %s button."
3669
+ msgstr "命名您的项目,然后点击创建按钮"
3670
+
3671
  #, php-format
3672
  msgid ""
3673
+ "Currently your App is in %1$s status, meaning that you don't have access to "
3674
+ "the credentials which are necessary for the %2$s integration. In order to "
3675
+ "gain access, click on the %3$s on the top right corner."
3676
  msgstr ""
3677
 
3678
  #, php-format
3679
  msgid ""
3680
+ "A modal will appear where you should enter a text, that describes what you "
3681
+ "are going to do with the App. In this particular case, you will use it to "
3682
+ "offer %1$s login option for your visitors."
3683
  msgstr ""
3684
 
3685
  #, php-format
3686
  msgid ""
3687
  "Wait until your App gets approved. This can take a couple of days. If you "
3688
+ "scroll up to the top of the page you will be able to inspect the %1$s below "
3689
+ "the %2$s section. If you want to learn more about the App review process, "
3690
+ "you can find more information in the %3$sofficial documentation%4$s."
3691
  msgstr ""
3692
 
3693
  #, php-format
3694
  msgid ""
3695
+ "Once the %1$s says %2$s, you will be able to reveal the %3$s and %4$s by "
3696
+ "clicking on the eye icon next to these fields. You will need these "
3697
+ "credentials for the provider configuration."
3698
  msgstr ""
3699
 
3700
  #, php-format
3947
  msgid "Social accounts"
3948
  msgstr "社交账号"
3949
 
3950
+ #, fuzzy, php-format
3951
+ #~| msgid "Click on the Create button"
3952
+ #~ msgid "For %1$s choose the %2$s option."
3953
+ #~ msgstr "点击创建按钮"
3954
+
3955
  #, fuzzy
3956
  #~| msgid ""
3957
  #~| "Add the following URL to the \"Valid OAuth redirect URIs\" field: <b>%s</"
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: 2022-06-13 13:54+0200\n"
6
  "PO-Revision-Date: 2020-06-29 13:58+0200\n"
7
  "Last-Translator: \n"
8
  "Language-Team: nextend-facebook-connect\n"
@@ -3076,6 +3076,12 @@ msgstr ""
3076
  msgid "Scroll down to the %s section."
3077
  msgstr ""
3078
 
 
 
 
 
 
 
3079
  #, php-format
3080
  msgid ""
3081
  "Enter your domain name into the %1$s field, if it is not added "
@@ -3086,7 +3092,11 @@ msgstr ""
3086
  msgid "Press the %s button."
3087
  msgstr ""
3088
 
3089
- msgid "Allow some time for these modifications to take effect."
 
 
 
 
3090
  msgstr ""
3091
 
3092
  #, php-format
@@ -3102,42 +3112,71 @@ msgstr ""
3102
 
3103
  #, php-format
3104
  msgid ""
3105
- "A modal will appear where you need to select an image as %1$s and "
3106
- "enter a name into the %2$s field."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3107
  msgstr ""
3108
 
3109
  #, php-format
3110
- msgid "For %1$s choose the %2$s option."
3111
  msgstr ""
3112
 
3113
  #, php-format
3114
- msgid "Under the %s section you should fill all of the required fields."
3115
  msgstr ""
3116
 
3117
  #, php-format
3118
  msgid ""
3119
- "Under the %1$s section you need to make sure the option %2$s is "
3120
- "checked."
 
 
3121
  msgstr ""
3122
 
3123
  #, php-format
3124
  msgid ""
3125
- "Into the %1$s field you should write a text, that describes what you "
3126
- "are going to do with the App. In this particular case, you will use it "
3127
- "to offer %2$s login option for your visitors."
3128
  msgstr ""
3129
 
3130
  #, php-format
3131
  msgid ""
3132
  "Wait until your App gets approved. This can take a couple of days. If "
3133
- "you scroll up to the top of the page you will be able to find the %s "
3134
- "below the name of your App."
 
 
3135
  msgstr ""
3136
 
3137
  #, php-format
3138
  msgid ""
3139
- "Once the %1$s says %2$s, the %3$s and %4$s will appear below the %1$s "
3140
- "text. You will need these for the provider configuration."
 
3141
  msgstr ""
3142
 
3143
  #, php-format
2
  msgid ""
3
  msgstr ""
4
  "Project-Id-Version: nextend-facebook-connect\n"
5
+ "POT-Creation-Date: 2022-08-30 15:55+0200\n"
6
  "PO-Revision-Date: 2020-06-29 13:58+0200\n"
7
  "Last-Translator: \n"
8
  "Language-Team: nextend-facebook-connect\n"
3076
  msgid "Scroll down to the %s section."
3077
  msgstr ""
3078
 
3079
+ #, php-format
3080
+ msgid ""
3081
+ "If the URLs don't match, enter the URL of your website into the %1$s "
3082
+ "field, probably: %2$s"
3083
+ msgstr ""
3084
+
3085
  #, php-format
3086
  msgid ""
3087
  "Enter your domain name into the %1$s field, if it is not added "
3092
  msgid "Press the %s button."
3093
  msgstr ""
3094
 
3095
+ #, php-format
3096
+ msgid ""
3097
+ "Submit your App for a review, by pressing the %1$s button on the top "
3098
+ "right corner and wait until the %2$s field says %3$s. This can take a "
3099
+ "couple of days."
3100
  msgstr ""
3101
 
3102
  #, php-format
3112
 
3113
  #, php-format
3114
  msgid ""
3115
+ "Find the %1$s section and upload an image as %2$s, then enter an %3$s, "
3116
+ "a %4$s and choose a value for %5$s."
3117
+ msgstr ""
3118
+
3119
+ #, php-format
3120
+ msgid ""
3121
+ "For %1$s you should enable the %2$s option then enter the URL of your "
3122
+ "website into the %3$s field, probably: %4$s"
3123
+ msgstr ""
3124
+
3125
+ #, php-format
3126
+ msgid "Click on the %s button."
3127
+ msgstr ""
3128
+
3129
+ #, php-format
3130
+ msgid ""
3131
+ "Click on %1$s on the left hand menu then add the %2$s product, and "
3132
+ "press the %3$s button."
3133
+ msgstr ""
3134
+
3135
+ #, php-format
3136
+ msgid "At the left hand menu click on the %1$s option under %2$s."
3137
+ msgstr ""
3138
+
3139
+ #, php-format
3140
+ msgid "Enter your %1$s and %2$s URLs."
3141
  msgstr ""
3142
 
3143
  #, php-format
3144
+ msgid "Enter your domain name into the %1$s field, probably: %2$s"
3145
  msgstr ""
3146
 
3147
  #, php-format
3148
+ msgid "Scroll up and click on the %s button."
3149
  msgstr ""
3150
 
3151
  #, php-format
3152
  msgid ""
3153
+ "Currently your App is in %1$s status, meaning that you don't have "
3154
+ "access to the credentials which are necessary for the %2$s "
3155
+ "integration. In order to gain access, click on the %3$s on the top "
3156
+ "right corner."
3157
  msgstr ""
3158
 
3159
  #, php-format
3160
  msgid ""
3161
+ "A modal will appear where you should enter a text, that describes what "
3162
+ "you are going to do with the App. In this particular case, you will "
3163
+ "use it to offer %1$s login option for your visitors."
3164
  msgstr ""
3165
 
3166
  #, php-format
3167
  msgid ""
3168
  "Wait until your App gets approved. This can take a couple of days. If "
3169
+ "you scroll up to the top of the page you will be able to inspect the "
3170
+ "%1$s below the %2$s section. If you want to learn more about the App "
3171
+ "review process, you can find more information in the %3$sofficial "
3172
+ "documentation%4$s."
3173
  msgstr ""
3174
 
3175
  #, php-format
3176
  msgid ""
3177
+ "Once the %1$s says %2$s, you will be able to reveal the %3$s and %4$s "
3178
+ "by clicking on the eye icon next to these fields. You will need these "
3179
+ "credentials for the provider configuration."
3180
  msgstr ""
3181
 
3182
  #, php-format
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.1.5
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.1.6
7
  Requires PHP: 7.0
8
  Requires at least: 4.9
9
  Author: Nextendweb
nextend-social-login.php CHANGED
@@ -20,9 +20,9 @@ require_once(NSL_PATH . '/compat.php');
20
 
21
  class NextendSocialLogin {
22
 
23
- public static $version = '3.1.5';
24
 
25
- public static $nslPROMinVersion = '3.1.5';
26
 
27
  public static $proxyPage = false;
28
 
@@ -149,6 +149,11 @@ class NextendSocialLogin {
149
 
150
  add_action('delete_user', 'NextendSocialLogin::delete_user');
151
 
 
 
 
 
 
152
  self::$settings = new NextendSocialLoginSettings('nextend_social_login', array(
153
  'enabled' => array(),
154
  'register-flow-page' => '',
@@ -266,11 +271,6 @@ class NextendSocialLogin {
266
  'admin_bar_roles' => array(),
267
  ));
268
 
269
- add_action('itsec_initialized', 'NextendSocialLogin::disable_better_wp_security_block_long_urls', -1);
270
- }
271
-
272
- public static function plugins_loaded() {
273
-
274
  NextendSocialLoginAdmin::init();
275
 
276
  $lastVersion = get_option('nsl-version');
20
 
21
  class NextendSocialLogin {
22
 
23
+ public static $version = '3.1.6';
24
 
25
+ public static $nslPROMinVersion = '3.1.6';
26
 
27
  public static $proxyPage = false;
28
 
149
 
150
  add_action('delete_user', 'NextendSocialLogin::delete_user');
151
 
152
+ add_action('itsec_initialized', 'NextendSocialLogin::disable_better_wp_security_block_long_urls', -1);
153
+ }
154
+
155
+ public static function plugins_loaded() {
156
+
157
  self::$settings = new NextendSocialLoginSettings('nextend_social_login', array(
158
  'enabled' => array(),
159
  'register-flow-page' => '',
271
  'admin_bar_roles' => array(),
272
  ));
273
 
 
 
 
 
 
274
  NextendSocialLoginAdmin::init();
275
 
276
  $lastVersion = get_option('nsl-version');
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: 6.0
7
- Stable tag: 3.1.5
8
  Requires PHP: 7.0
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
@@ -125,11 +125,24 @@ Using the Pro Addon you can set where the login buttons should appear on the Reg
125
 
126
  == Changelog ==
127
 
 
 
 
 
 
 
 
 
 
 
 
 
 
128
  = 3.1.5 =
129
- * Fix: The Jetpack Boost plugin stopped our authentication flow
130
- * Fix: The "WP 2FA" plugin could prevent the login with social login even if our "Support login restrictions" feature was disabled
131
- * Fix: PHP error when other plugins tried to force WordPress to update the plugin update transients ( update_plugins ) with null parameter
132
- * Fix: The "Page Transitions" feature of Elementor Pro opened our links in the opener window, causing a redirect in both the popup and the popup opener window
133
  * Improvement: Introducing the "nsl_connect_button_custom_attributes", "nsl_unlink_button_custom_attributes", "nsl_link_button_custom_attributes" filters to add extra attributes on our button links
134
  * Improvement: Avatar storing - We won't try to copy the avatar into our avatar folder if the same file is already there
135
  * Improvement: Avatar storing - If the earlier stored avatar file doesn't exist, we will delete the associated attachment data the next time the user logs in
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: 6.0.2
7
+ Stable tag: 3.1.6
8
  Requires PHP: 7.0
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
125
 
126
  == Changelog ==
127
 
128
+ = 3.1.6 =
129
+ * Fix: Google provider - Google OAuth no longer supports any kind of WebViews, so the Google button will be hidden in all WebView environments.
130
+ * Fix: [User selected language](https://wordpress.org/support/article/users-your-profile-screen/#your-profile-and-personal-options) in the backend didn't load our translations in certain cases.
131
+ * Improvement: We will trigger the "wp_login_failed" action when the login with social login fails, so the login history plugins could track the failed login attempts happened with social login, too.
132
+ * Improvement: The unlinked social media identifier will be now available from the "nsl_unlink_user" action parameters.
133
+
134
+ * PRO: Fix: Microsoft provider - ErrorInsufficientPermissionsInAccessToken error when using the Personal Audience option.
135
+ * PRO: Fix: Steam provider - Error when pressing the "Got it" button on the "Fix OAuth Redirect URIs" page while the Steam provider was enabled.
136
+ * PRO: Fix: TikTok provider - Invalid request parameters error
137
+ * PRO: Improvement: TikTok provider - [Getting Started Update](https://nextendweb.com/nextend-social-login-docs/provider-tiktok/)
138
+ * PRO: Feature: TikTok provider – [button skin](https://nextendweb.com/nextend-social-login-docs/provider-tiktok/#guidelines) selector added.
139
+
140
+
141
  = 3.1.5 =
142
+ * Fix: The Jetpack Boost plugin stopped our authentication flow
143
+ * Fix: The "WP 2FA" plugin could prevent the login with social login even if our "Support login restrictions" feature was disabled
144
+ * Fix: PHP error when other plugins tried to force WordPress to update the plugin update transients ( update_plugins ) with null parameter
145
+ * Fix: The "Page Transitions" feature of Elementor Pro opened our links in the opener window, causing a redirect in both the popup and the popup opener window
146
  * Improvement: Introducing the "nsl_connect_button_custom_attributes", "nsl_unlink_button_custom_attributes", "nsl_link_button_custom_attributes" filters to add extra attributes on our button links
147
  * Improvement: Avatar storing - We won't try to copy the avatar into our avatar folder if the same file is already there
148
  * Improvement: Avatar storing - If the earlier stored avatar file doesn't exist, we will delete the associated attachment data the next time the user logs in
template-parts/style.css CHANGED
@@ -173,6 +173,11 @@ div.nsl-container .nsl-button-slack[data-skin="light"] {
173
  box-shadow: inset 0 0 0 1px #DDDDDD;
174
  }
175
 
 
 
 
 
 
176
  .nsl-clear {
177
  clear: both;
178
  }
173
  box-shadow: inset 0 0 0 1px #DDDDDD;
174
  }
175
 
176
+ div.nsl-container .nsl-button-tiktok[data-skin="light"] {
177
+ color: #161823;
178
+ box-shadow: 0 0 0 1px rgba(22, 24, 35, 0.12);
179
+ }
180
+
181
  .nsl-clear {
182
  clear: both;
183
  }