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

Version Description

  • Improvement: If there is a slow server or a poor internet connection, the redirect after the authentication with social login might take some time. During this time we will display a loading spinner, so the visitor will know that something is about to happen.

  • PRO: New provider: Discord

  • PRO: Fix: The Microsoft provider used a wrong redirect url, when the Frontend and the Backend URL of the site were different.

  • PRO: Improvement: New options for the Line provider: Force reauthorization on each login and Add LINE Official Account as a friend

  • PRO: Improvement: New options for the Microsoft provider: Audience and Authorization Prompt

  • PRO: Feature: Integration for Easy Digital Downloads Checkout form.

  • PRO: Feature: Display social buttons with layouts on Custom Actions

Download this release

Release Info

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

Code changes from version 3.1.1 to 3.1.2

Files changed (34) hide show
  1. admin/admin.php +24 -1
  2. admin/templates/global-settings.php +6 -3
  3. admin/templates/settings/custom-actions.php +105 -0
  4. admin/templates/settings/easy-digital-downloads.php +98 -0
  5. includes/provider-admin.php +39 -8
  6. js/nsl.js +2 -1
  7. languages/nextend-facebook-connect-de_DE.mo +0 -0
  8. languages/nextend-facebook-connect-de_DE.po +188 -10
  9. languages/nextend-facebook-connect-es_LA.mo +0 -0
  10. languages/nextend-facebook-connect-es_LA.po +235 -14
  11. languages/nextend-facebook-connect-fr_FR.mo +0 -0
  12. languages/nextend-facebook-connect-fr_FR.po +188 -10
  13. languages/nextend-facebook-connect-hu_HU.mo +0 -0
  14. languages/nextend-facebook-connect-hu_HU.po +231 -10
  15. languages/nextend-facebook-connect-it_IT.mo +0 -0
  16. languages/nextend-facebook-connect-it_IT.po +249 -10
  17. languages/nextend-facebook-connect-nl_NL.mo +0 -0
  18. languages/nextend-facebook-connect-nl_NL.po +227 -10
  19. languages/nextend-facebook-connect-pt_BR.mo +0 -0
  20. languages/nextend-facebook-connect-pt_BR.po +232 -14
  21. languages/nextend-facebook-connect-ru_RU.mo +0 -0
  22. languages/nextend-facebook-connect-ru_RU.po +195 -10
  23. languages/nextend-facebook-connect-zh_ZH.mo +0 -0
  24. languages/nextend-facebook-connect-zh_ZH.po +236 -14
  25. languages/nextend-facebook-connect.pot +194 -9
  26. nextend-facebook-connect.php +1 -1
  27. nextend-social-login.php +21 -7
  28. providers/discord/discord.php +14 -0
  29. providers/discord/discord.png +0 -0
  30. providers/facebook/admin/getting-started.php +3 -1
  31. providers/google/admin/getting-started.php +3 -1
  32. providers/twitter/admin/getting-started.php +3 -1
  33. readme.txt +15 -3
  34. template-parts/style.css +67 -2
admin/admin.php CHANGED
@@ -116,7 +116,7 @@ class NextendSocialLoginAdmin {
116
  public static function admin_init() {
117
 
118
  if (current_user_can('manage_options')) {
119
- require_once(dirname(__FILE__).'/notice.php');
120
 
121
  if (!isset($_GET['page']) || $_GET['page'] != 'nextend-social-login' || !isset($_GET['view']) || $_GET['view'] != 'fix-redirect-uri') {
122
  add_action('admin_notices', 'NextendSocialLoginAdmin::show_oauth_uri_notice');
@@ -231,6 +231,11 @@ class NextendSocialLoginAdmin {
231
  ), 10, 3);
232
 
233
  };
 
 
 
 
 
234
  }
235
 
236
  public static function save_form_data() {
@@ -856,4 +861,22 @@ class NextendSocialLoginAdmin {
856
 
857
  return $providerLoginUrl;
858
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
859
  }
116
  public static function admin_init() {
117
 
118
  if (current_user_can('manage_options')) {
119
+ require_once(dirname(__FILE__) . '/notice.php');
120
 
121
  if (!isset($_GET['page']) || $_GET['page'] != 'nextend-social-login' || !isset($_GET['view']) || $_GET['view'] != 'fix-redirect-uri') {
122
  add_action('admin_notices', 'NextendSocialLoginAdmin::show_oauth_uri_notice');
231
  ), 10, 3);
232
 
233
  };
234
+
235
+ add_action('nsl_getting_started_warnings', array(
236
+ 'NextendSocialLoginAdmin',
237
+ 'show_getting_started_warning'
238
+ ), 100, 2);
239
  }
240
 
241
  public static function save_form_data() {
861
 
862
  return $providerLoginUrl;
863
  }
864
+
865
+ public static function show_getting_started_warning($provider, $lastUpdated) {
866
+ if ($provider && $lastUpdated) {
867
+
868
+ $lastUpdatedDate = date_format(date_create_from_format('Y-m-d', $lastUpdated), get_option('date_format'));
869
+
870
+ $supportURL = 'https://nextendweb.com/contact-us/nextend-social-login-support/';
871
+ $version = defined('NSL_PRO_PATH') ? 'Pro-Addon' : 'Free';
872
+ $args = array(
873
+ 'topic' => 'Wrong-Steps',
874
+ 'provider' => $provider->getLabel(),
875
+ 'version' => $version
876
+ );
877
+ $supportUrlWithArgs = add_query_arg($args, $supportURL);
878
+
879
+ printf(__('<p style="max-width:55em;"><strong><u>Warning</u></strong>: Providers change the App setup process quite often, which means some steps below might not be accurate. If you see significant difference in the written instructions and what you see at the provider, feel free to %1$sreport it%2$s, so we can check and update the instructions.<br><strong>Last updated:</strong> %3$s.</p>', 'nextend-facebook-connect'), '<a href="' . $supportUrlWithArgs . '" target="_blank">', '</a>', $lastUpdatedDate);
880
+ }
881
+ }
882
  }
admin/templates/global-settings.php CHANGED
@@ -7,8 +7,9 @@ $allowedSubviews = array(
7
  'general',
8
  'privacy',
9
  'login-form',
10
- 'woocommerce',
11
  'comment',
 
 
12
  'buddypress',
13
  'memberpress',
14
  'userpro',
@@ -34,10 +35,10 @@ if (!NextendSocialLoginAdmin::isPro()) {
34
  class="nsl-admin-nav-tab<?php if ($subview === 'privacy'): ?> nsl-admin-nav-tab-active<?php endif; ?>"><?php _e('Privacy', 'nextend-facebook-connect'); ?></a>
35
  <a href="<?php echo NextendSocialLoginAdmin::getAdminSettingsUrl('login-form'); ?>"
36
  class="nsl-admin-nav-tab<?php if ($subview === 'login-form'): ?> nsl-admin-nav-tab-active<?php endif; ?>"><?php _e('Login Form', 'nextend-facebook-connect'); ?></a>
37
- <a href="<?php echo NextendSocialLoginAdmin::getAdminSettingsUrl('woocommerce'); ?>"
38
- class="nsl-admin-nav-tab<?php if ($subview === 'woocommerce'): ?> nsl-admin-nav-tab-active<?php endif; ?>">WooCommerce<?php echo $proBadge; ?></a>
39
  <a href="<?php echo NextendSocialLoginAdmin::getAdminSettingsUrl('comment'); ?>"
40
  class="nsl-admin-nav-tab<?php if ($subview === 'comment'): ?> nsl-admin-nav-tab-active<?php endif; ?>"><?php _e('Comment', 'nextend-facebook-connect'); ?><?php echo $proBadge; ?></a>
 
 
41
  <a href="<?php echo NextendSocialLoginAdmin::getAdminSettingsUrl('buddypress'); ?>"
42
  class="nsl-admin-nav-tab<?php if ($subview === 'buddypress'): ?> nsl-admin-nav-tab-active<?php endif; ?>">BuddyPress<?php echo $proBadge; ?></a>
43
  <a href="<?php echo NextendSocialLoginAdmin::getAdminSettingsUrl('memberpress'); ?>"
@@ -50,6 +51,8 @@ if (!NextendSocialLoginAdmin::isPro()) {
50
  <a href="<?php echo NextendSocialLoginAdmin::getAdminSettingsUrl('easy-digital-downloads'); ?>"
51
  class="nsl-admin-nav-tab<?php if ($subview === 'easy-digital-downloads'): ?> nsl-admin-nav-tab-active<?php endif; ?>">Easy
52
  Digital Downloads<?php echo $proBadge; ?></a>
 
 
53
  </div>
54
  <form method="post" action="<?php echo admin_url('admin-post.php'); ?>" novalidate="novalidate">
55
 
7
  'general',
8
  'privacy',
9
  'login-form',
 
10
  'comment',
11
+ 'custom-actions',
12
+ 'woocommerce',
13
  'buddypress',
14
  'memberpress',
15
  'userpro',
35
  class="nsl-admin-nav-tab<?php if ($subview === 'privacy'): ?> nsl-admin-nav-tab-active<?php endif; ?>"><?php _e('Privacy', 'nextend-facebook-connect'); ?></a>
36
  <a href="<?php echo NextendSocialLoginAdmin::getAdminSettingsUrl('login-form'); ?>"
37
  class="nsl-admin-nav-tab<?php if ($subview === 'login-form'): ?> nsl-admin-nav-tab-active<?php endif; ?>"><?php _e('Login Form', 'nextend-facebook-connect'); ?></a>
 
 
38
  <a href="<?php echo NextendSocialLoginAdmin::getAdminSettingsUrl('comment'); ?>"
39
  class="nsl-admin-nav-tab<?php if ($subview === 'comment'): ?> nsl-admin-nav-tab-active<?php endif; ?>"><?php _e('Comment', 'nextend-facebook-connect'); ?><?php echo $proBadge; ?></a>
40
+ <a href="<?php echo NextendSocialLoginAdmin::getAdminSettingsUrl('woocommerce'); ?>"
41
+ class="nsl-admin-nav-tab<?php if ($subview === 'woocommerce'): ?> nsl-admin-nav-tab-active<?php endif; ?>">WooCommerce<?php echo $proBadge; ?></a>
42
  <a href="<?php echo NextendSocialLoginAdmin::getAdminSettingsUrl('buddypress'); ?>"
43
  class="nsl-admin-nav-tab<?php if ($subview === 'buddypress'): ?> nsl-admin-nav-tab-active<?php endif; ?>">BuddyPress<?php echo $proBadge; ?></a>
44
  <a href="<?php echo NextendSocialLoginAdmin::getAdminSettingsUrl('memberpress'); ?>"
51
  <a href="<?php echo NextendSocialLoginAdmin::getAdminSettingsUrl('easy-digital-downloads'); ?>"
52
  class="nsl-admin-nav-tab<?php if ($subview === 'easy-digital-downloads'): ?> nsl-admin-nav-tab-active<?php endif; ?>">Easy
53
  Digital Downloads<?php echo $proBadge; ?></a>
54
+ <a href="<?php echo NextendSocialLoginAdmin::getAdminSettingsUrl('custom-actions'); ?>"
55
+ class="nsl-admin-nav-tab<?php if ($subview === 'custom-actions'): ?> nsl-admin-nav-tab-active<?php endif; ?>"><?php _e('Custom Actions', 'nextend-facebook-connect'); ?><?php echo $proBadge; ?></a>
56
  </div>
57
  <form method="post" action="<?php echo admin_url('admin-post.php'); ?>" novalidate="novalidate">
58
 
admin/templates/settings/custom-actions.php ADDED
@@ -0,0 +1,105 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ defined('ABSPATH') || die();
3
+
4
+ $isPRO = NextendSocialLoginAdmin::isPro();
5
+
6
+ $attr = '';
7
+ if (!$isPRO) {
8
+ $attr = ' disabled ';
9
+ }
10
+
11
+ $settings = NextendSocialLogin::$settings;
12
+
13
+ NextendSocialLoginAdmin::showProBox();
14
+ ?>
15
+ <table class="form-table">
16
+ <tbody>
17
+
18
+ <tr>
19
+ <th scope="row"><?php _e('Custom Actions', 'nextend-facebook-connect'); ?></th>
20
+ <td>
21
+ <?php
22
+ $customActions = $settings->get('custom_actions');
23
+ ?>
24
+ <textarea rows="4" cols="53" name="custom_actions" id="custom_actions"<?php echo $attr; ?>><?php echo esc_textarea($customActions); ?></textarea>
25
+ <p class="description"><?php printf(__('%1$s Add your custom actions here. One action per line.', 'nextend-facebook-connect'), '<b>' . __("Usage:", "nextend-facebook-connect") . '</b>'); ?></p>
26
+ <p class="description"><?php printf(__('%1$s The HTML of the social buttons will be added at the place where the action is fired.', 'nextend-facebook-connect'), '<b>' . __("Important:", "nextend-facebook-connect") . '</b>'); ?></p>
27
+ <p class="description"><?php printf(__('If you %1$sexperience problems%2$s because of this feature, you can disable it by defining the %3$s constant.', 'nextend-facebook-connect'), '<a href="https://nextendweb.com/nextend-social-login-docs/global-settings-custom-actions/#custom-actions" target="_blank">', '</a>', '<code>NSL_DISABLE_CUSTOM_ACTIONS</code>'); ?></p>
28
+ </td>
29
+ </tr>
30
+
31
+ <tr>
32
+ <th scope="row"><?php _e('Button style', 'nextend-facebook-connect'); ?></th>
33
+ <td>
34
+ <fieldset>
35
+ <label>
36
+ <input type="radio" name="custom_actions_button_style"
37
+ value="default" <?php if ($settings->get('custom_actions_button_style') == 'default') : ?> checked="checked" <?php endif; ?><?php echo $attr; ?>>
38
+ <span><?php _e('Default', 'nextend-facebook-connect'); ?></span><br/>
39
+ <img src="<?php echo plugins_url('images/buttons/default.png', NSL_ADMIN_PATH) ?>"/>
40
+ </label>
41
+ <label>
42
+ <input type="radio" name="custom_actions_button_style"
43
+ value="fullwidth" <?php if ($settings->get('custom_actions_button_style') == 'fullwidth') : ?> checked="checked" <?php endif; ?><?php echo $attr; ?>>
44
+ <span><?php _e('Fullwidth', 'nextend-facebook-connect'); ?></span><br/>
45
+ <img src="<?php echo plugins_url('images/buttons/fullwidth.png', NSL_ADMIN_PATH) ?>"/>
46
+ </label>
47
+ <label>
48
+ <input type="radio" name="custom_actions_button_style"
49
+ value="icon" <?php if ($settings->get('custom_actions_button_style') == 'icon') : ?> checked="checked" <?php endif; ?><?php echo $attr; ?>>
50
+ <span><?php _e('Icon', 'nextend-facebook-connect'); ?></span><br/>
51
+ <img src="<?php echo plugins_url('images/buttons/icon.png', NSL_ADMIN_PATH) ?>"/>
52
+ </label><br>
53
+ </fieldset>
54
+ </td>
55
+ </tr>
56
+
57
+ <tr>
58
+ <th scope="row"><?php _e('Button layout', 'nextend-facebook-connect'); ?></th>
59
+ <td>
60
+ <fieldset>
61
+ <label>
62
+ <input type="radio" name="custom_actions_button_layout"
63
+ value="default" <?php if ($settings->get('custom_actions_button_layout') == 'default') : ?> checked="checked" <?php endif; ?><?php echo $attr; ?>>
64
+ <span><?php _e('Default', 'nextend-facebook-connect'); ?></span><br/>
65
+ <img src="<?php echo plugins_url('images/layouts/default.png', NSL_ADMIN_PATH) ?>"/>
66
+ </label>
67
+ <label>
68
+ <input type="radio" name="custom_actions_button_layout"
69
+ value="default-separator-top" <?php if ($settings->get('custom_actions_button_layout') == 'default-separator-top') : ?> checked="checked" <?php endif; ?><?php echo $attr; ?>>
70
+ <span><?php _e('Default with top separator', 'nextend-facebook-connect'); ?></span><br/>
71
+ <img src="<?php echo plugins_url('images/layouts/below-separator.png', NSL_ADMIN_PATH) ?>"/>
72
+ </label>
73
+ <label>
74
+ <input type="radio" name="custom_actions_button_layout"
75
+ value="default-separator-bottom" <?php if ($settings->get('custom_actions_button_layout') == 'default-separator-bottom') : ?> checked="checked" <?php endif; ?><?php echo $attr; ?>>
76
+ <span><?php _e('Default with bottom separator', 'nextend-facebook-connect'); ?></span><br/>
77
+ <img src="<?php echo plugins_url('images/layouts/above-separator.png', NSL_ADMIN_PATH) ?>"/>
78
+ </label><br>
79
+ </fieldset>
80
+ </td>
81
+ </tr>
82
+
83
+ <tr>
84
+ <th scope="row"><?php _e('Button alignment', 'nextend-facebook-connect'); ?></th>
85
+ <td>
86
+ <fieldset>
87
+ <label><input type="radio" name="custom_actions_button_align"
88
+ value="left" <?php if ($settings->get('custom_actions_button_align') == 'left') : ?> checked="checked" <?php endif; ?><?php echo $attr; ?>>
89
+ <span><?php _e('Left', 'nextend-facebook-connect'); ?></span></label><br>
90
+ <label><input type="radio" name="custom_actions_button_align"
91
+ value="center" <?php if ($settings->get('custom_actions_button_align') == 'center') : ?> checked="checked" <?php endif; ?><?php echo $attr; ?>>
92
+ <span><?php _e('Center', 'nextend-facebook-connect'); ?></span></label><br>
93
+
94
+ <label><input type="radio" name="custom_actions_button_align"
95
+ value="right" <?php if ($settings->get('custom_actions_button_align') == 'right') : ?> checked="checked" <?php endif; ?><?php echo $attr; ?>>
96
+ <span><?php _e('Right', 'nextend-facebook-connect'); ?></span></label><br>
97
+ </fieldset>
98
+ </td>
99
+ </tr>
100
+ </tbody>
101
+ </table>
102
+ <?php if ($isPRO): ?>
103
+ <p class="submit"><input type="submit" name="submit" id="submit" class="button button-primary"
104
+ value="<?php _e('Save Changes'); ?>"></p>
105
+ <?php endif; ?>
admin/templates/settings/easy-digital-downloads.php CHANGED
@@ -190,6 +190,104 @@ NextendSocialLoginAdmin::showProBox();
190
  </td>
191
  </tr>
192
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
193
  <tr>
194
  <th scope="row"><?php _e('Button alignment', 'nextend-facebook-connect'); ?></th>
195
  <td>
190
  </td>
191
  </tr>
192
 
193
+ <tr>
194
+ <th scope="row"><?php _e('Checkout form', 'nextend-facebook-connect'); ?></th>
195
+ <td>
196
+ <fieldset>
197
+ <label><input type="radio" name="edd_checkout"
198
+ value="" <?php if ($settings->get('edd_checkout') == '') : ?> checked="checked" <?php endif; ?><?php echo $attr; ?>>
199
+ <span><?php _e('No Connect button in Checkout form', 'nextend-facebook-connect'); ?></span></label><br>
200
+ <label><input type="radio" name="edd_checkout"
201
+ value="items_before" <?php if ($settings->get('edd_checkout') == 'items_before') : ?> checked="checked" <?php endif; ?><?php echo $attr; ?>>
202
+ <span><?php _e('Connect button on', 'nextend-facebook-connect'); ?></span>
203
+ <code><?php _e('Action:'); ?>
204
+ edd_cart_items_before</code></label><br>
205
+ <label><input type="radio" name="edd_checkout"
206
+ value="form_top" <?php if ($settings->get('edd_checkout') == 'form_top') : ?> checked="checked" <?php endif; ?><?php echo $attr; ?>>
207
+ <span><?php _e('Connect button on', 'nextend-facebook-connect'); ?></span>
208
+ <code><?php _e('Action:'); ?>
209
+ edd_checkout_form_top</code></label><br>
210
+ <label><input type="radio" name="edd_checkout"
211
+ value="before_email" <?php if ($settings->get('edd_checkout') == 'before_email') : ?> checked="checked" <?php endif; ?><?php echo $attr; ?>>
212
+ <span><?php _e('Connect button on', 'nextend-facebook-connect'); ?></span>
213
+ <code><?php _e('Action:'); ?>
214
+ edd_purchase_form_before_email</code></label><br>
215
+ <label><input type="radio" name="edd_checkout"
216
+ value="before_submit" <?php if ($settings->get('edd_checkout') == 'before_submit') : ?> checked="checked" <?php endif; ?><?php echo $attr; ?>>
217
+ <span><?php _e('Connect button on', 'nextend-facebook-connect'); ?></span>
218
+ <code><?php _e('Action:'); ?>
219
+ edd_purchase_form_before_submit</code></label><br>
220
+ <label><input type="radio" name="edd_checkout"
221
+ value="form_after" <?php if ($settings->get('edd_checkout') == 'form_after') : ?> checked="checked" <?php endif; ?><?php echo $attr; ?>>
222
+ <span><?php _e('Connect button on', 'nextend-facebook-connect'); ?></span>
223
+ <code><?php _e('Action:'); ?>
224
+ edd_purchase_form_after_submit</code></label><br>
225
+ </fieldset>
226
+ </td>
227
+ </tr>
228
+ <tr>
229
+ <th scope="row"><?php _e('Checkout form button style', 'nextend-facebook-connect'); ?></th>
230
+ <td>
231
+ <fieldset>
232
+ <label>
233
+ <input type="radio" name="edd_checkout_form_button_style"
234
+ value="default" <?php if ($settings->get('edd_checkout_form_button_style') == 'default') : ?> checked="checked" <?php endif; ?><?php echo $attr; ?>>
235
+ <span><?php _e('Default', 'nextend-facebook-connect'); ?></span><br/>
236
+ <img src="<?php echo plugins_url('images/buttons/default.png', NSL_ADMIN_PATH) ?>"/>
237
+ </label>
238
+ <label>
239
+ <input type="radio" name="edd_checkout_form_button_style"
240
+ value="fullwidth" <?php if ($settings->get('edd_checkout_form_button_style') == 'fullwidth') : ?> checked="checked" <?php endif; ?><?php echo $attr; ?>>
241
+ <span><?php _e('Fullwidth', 'nextend-facebook-connect'); ?></span><br/>
242
+ <img src="<?php echo plugins_url('images/buttons/fullwidth.png', NSL_ADMIN_PATH) ?>"/>
243
+ </label>
244
+ <label>
245
+ <input type="radio" name="edd_checkout_form_button_style"
246
+ value="icon" <?php if ($settings->get('edd_checkout_form_button_style') == 'icon') : ?> checked="checked" <?php endif; ?><?php echo $attr; ?>>
247
+ <span><?php _e('Icon', 'nextend-facebook-connect'); ?></span><br/>
248
+ <img src="<?php echo plugins_url('images/buttons/icon.png', NSL_ADMIN_PATH) ?>"/>
249
+ </label><br>
250
+ </fieldset>
251
+ </td>
252
+ </tr>
253
+ <tr>
254
+ <th scope="row"><?php _e('Checkout layout', 'nextend-facebook-connect'); ?></th>
255
+ <td>
256
+ <fieldset>
257
+ <label>
258
+ <input type="radio" name="edd_checkout_form_layout"
259
+ value="default" <?php if ($settings->get('edd_checkout_form_layout') == 'default') : ?> checked="checked" <?php endif; ?><?php echo $attr; ?>>
260
+ <span><?php _e('Default', 'nextend-facebook-connect'); ?></span><br/>
261
+ <img src="<?php echo plugins_url('images/layouts/default.png', NSL_ADMIN_PATH) ?>"/>
262
+ </label>
263
+ <label>
264
+ <input type="radio" name="edd_checkout_form_layout"
265
+ value="below" <?php if ($settings->get('edd_checkout_form_layout') == 'below') : ?> checked="checked" <?php endif; ?><?php echo $attr; ?>>
266
+ <span><?php _e('Below', 'nextend-facebook-connect'); ?></span><br/>
267
+ <img src="<?php echo plugins_url('images/layouts/below.png', NSL_ADMIN_PATH) ?>"/>
268
+ </label>
269
+ <label>
270
+ <input type="radio" name="edd_checkout_form_layout"
271
+ value="below-separator" <?php if ($settings->get('edd_checkout_form_layout') == 'below-separator') : ?> checked="checked" <?php endif; ?><?php echo $attr; ?>>
272
+ <span><?php _e('Below with separator', 'nextend-facebook-connect'); ?></span><br/>
273
+ <img src="<?php echo plugins_url('images/layouts/below-separator.png', NSL_ADMIN_PATH) ?>"/>
274
+ </label>
275
+ <label>
276
+ <input type="radio" name="edd_checkout_form_layout"
277
+ value="above" <?php if ($settings->get('edd_checkout_form_layout') == 'above') : ?> checked="checked" <?php endif; ?><?php echo $attr; ?>>
278
+ <span><?php _e('Above', 'nextend-facebook-connect'); ?></span><br/>
279
+ <img src="<?php echo plugins_url('images/layouts/above.png', NSL_ADMIN_PATH) ?>"/>
280
+ </label>
281
+ <label>
282
+ <input type="radio" name="edd_checkout_form_layout"
283
+ value="above-separator" <?php if ($settings->get('edd_checkout_form_layout') == 'above-separator') : ?> checked="checked" <?php endif; ?><?php echo $attr; ?>>
284
+ <span><?php _e('Above with separator', 'nextend-facebook-connect'); ?></span><br/>
285
+ <img src="<?php echo plugins_url('images/layouts/above-separator.png', NSL_ADMIN_PATH) ?>"/>
286
+ </label><br>
287
+ </fieldset>
288
+ </td>
289
+ </tr>
290
+
291
  <tr>
292
  <th scope="row"><?php _e('Button alignment', 'nextend-facebook-connect'); ?></th>
293
  <td>
includes/provider-admin.php CHANGED
@@ -267,16 +267,47 @@ class NextendSocialProviderAdmin {
267
 
268
 
269
  <script type="text/javascript">
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
270
 
271
- jQuery(document).on('ready', function () {
272
- var $test = jQuery('#nsl-test-configuration');
273
- if ($test.length) {
274
- jQuery(<?php echo wp_json_encode('#' . implode(',#', array_keys($provider->getRequiredFields()))); ?>)
275
- .on('keyup.test', function () {
276
- jQuery('#nsl-test-button').remove();
277
- jQuery('#nsl-test-please-save').css('display', 'inline');
278
- jQuery('input').off('keyup.test');
279
  });
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
280
  }
281
  });
282
  </script>
267
 
268
 
269
  <script type="text/javascript">
270
+ document.addEventListener("DOMContentLoaded", function () {
271
+ let testContainer = document.getElementById('nsl-test-configuration'),
272
+ requiredFieldNames = <?php echo wp_json_encode(array_keys($provider->getRequiredFields())); ?>,
273
+ requiredFieldNameSelectors = [],
274
+ events = ['keyup', 'change'];
275
+
276
+ if (testContainer && requiredFieldNames && requiredFieldNames.length) {
277
+ requiredFieldNames.forEach(function (requiredFieldName) {
278
+ let selector = "[name='" + requiredFieldName + "']";
279
+ requiredFieldNameSelectors.push(selector);
280
+ });
281
+
282
+ if (requiredFieldNameSelectors.length) {
283
+ let requiredFieldNodes = document.querySelectorAll(requiredFieldNameSelectors.join(','));
284
+ requiredFieldNodes.forEach(function (requiredFieldNode) {
285
+ events.forEach(function (event) {
286
+ requiredFieldNode.addEventListener(event, displayProviderSaveMessage);
287
+ });
288
 
 
 
 
 
 
 
 
 
289
  });
290
+
291
+ }
292
+ }
293
+
294
+ function displayProviderSaveMessage() {
295
+ let testButton = document.getElementById('nsl-test-button'),
296
+ saveMessage = document.getElementById('nsl-test-please-save');
297
+
298
+ if (testButton) {
299
+ testButton.remove();
300
+ }
301
+ if (saveMessage) {
302
+ saveMessage.style.display = 'inline';
303
+ }
304
+
305
+ let requiredFieldNodes = document.querySelectorAll(requiredFieldNameSelectors.join(','));
306
+ requiredFieldNodes.forEach(function (requiredFieldNode) {
307
+ events.forEach(function (event) {
308
+ requiredFieldNode.removeEventListener(event, displayProviderSaveMessage);
309
+ });
310
+ });
311
  }
312
  });
313
  </script>
js/nsl.js CHANGED
@@ -190,7 +190,8 @@ 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
  };
190
 
191
  window.nslRedirect = function (url) {
192
  var overlay = document.createElement('div');
193
+ overlay.id = "nsl-redirect-overlay";
194
+ overlay.insertAdjacentHTML("afterbegin", "<div id='nsl-redirect-overlay-container'><div id='nsl-redirect-overlay-spinner'></div><p id='nsl-redirect-overlay-title'>" + _localizedStrings.redirect_overlay_title + "</p><p id='nsl-redirect-overlay-text'>" + _localizedStrings.redirect_overlay_text + "</p></div>");
195
  document.body.appendChild(overlay);
196
  window.location = url;
197
  };
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: 2021-09-13 20:35+0200\n"
5
- "PO-Revision-Date: 2021-09-13 20:35+0200\n"
6
  "Last-Translator: \n"
7
  "Language-Team: nextend-facebook-connect\n"
8
  "Language: de\n"
@@ -179,6 +179,16 @@ msgid ""
179
  "information please check our %2$s %1$s compatibility tutorial%3$s!"
180
  msgstr ""
181
 
 
 
 
 
 
 
 
 
 
 
182
  msgid "You have logged in successfully."
183
  msgstr ""
184
 
@@ -362,6 +372,9 @@ msgstr ""
362
  msgid "Comment"
363
  msgstr ""
364
 
 
 
 
365
  msgid "Docs"
366
  msgstr ""
367
 
@@ -652,6 +665,37 @@ msgstr ""
652
  msgid "Button style"
653
  msgstr ""
654
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
655
  msgid "No Connect button in Login form"
656
  msgstr ""
657
 
@@ -667,6 +711,18 @@ msgstr ""
667
  msgid "Register form button style"
668
  msgstr ""
669
 
 
 
 
 
 
 
 
 
 
 
 
 
670
  msgid "Target window"
671
  msgstr ""
672
 
@@ -733,18 +789,12 @@ msgid ""
733
  "select this page above"
734
  msgstr ""
735
 
736
- msgid "Usage:"
737
- msgstr ""
738
-
739
  #, php-format
740
  msgid ""
741
  "%1$s You won't be able to reach the selected page unless a social login/"
742
  "registration happens."
743
  msgstr ""
744
 
745
- msgid "Important:"
746
- msgstr ""
747
-
748
  msgid "OAuth redirect uri proxy page"
749
  msgstr ""
750
 
@@ -1086,6 +1136,12 @@ msgstr ""
1086
  msgid "Update now!"
1087
  msgstr ""
1088
 
 
 
 
 
 
 
1089
  msgid "Social Login"
1090
  msgstr ""
1091
 
@@ -2053,6 +2109,66 @@ msgstr ""
2053
  msgid "Apple Credentials"
2054
  msgstr ""
2055
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2056
  #, php-format
2057
  msgid "Click on the name of your %s App."
2058
  msgstr ""
@@ -2266,6 +2382,27 @@ msgstr ""
2266
  msgid "Channel Secret"
2267
  msgstr ""
2268
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2269
  msgid "Continue with <b>Line</b>"
2270
  msgstr ""
2271
 
@@ -2377,9 +2514,12 @@ msgstr ""
2377
  msgid "Fill the \"<b>Name</b>\" field with your App Name."
2378
  msgstr ""
2379
 
 
2380
  msgid ""
2381
- "Choose \"<b>Personal Microsoft accounts only</b>\" from the Supported "
2382
- "account types."
 
 
2383
  msgstr ""
2384
 
2385
  msgid "Add the following URL to the \"<b>Redirect URI</b>\" field:"
@@ -2424,6 +2564,44 @@ msgstr ""
2424
  msgid "Client secret"
2425
  msgstr ""
2426
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2427
  msgid "Continue with <b>Microsoft</b>"
2428
  msgstr ""
2429
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: nextend-facebook-connect\n"
4
+ "POT-Creation-Date: 2021-10-13 19:50+0200\n"
5
+ "PO-Revision-Date: 2021-10-13 19:50+0200\n"
6
  "Last-Translator: \n"
7
  "Language-Team: nextend-facebook-connect\n"
8
  "Language: de\n"
179
  "information please check our %2$s %1$s compatibility tutorial%3$s!"
180
  msgstr ""
181
 
182
+ #, php-format
183
+ msgid ""
184
+ "<p style=\"max-width:55em;\"><strong><u>Warning</u></strong>: Providers "
185
+ "change the App setup process quite often, which means some steps below might "
186
+ "not be accurate. If you see significant difference in the written "
187
+ "instructions and what you see at the provider, feel free to %1$sreport it"
188
+ "%2$s, so we can check and update the instructions.<br><strong>Last updated:</"
189
+ "strong> %3$s.</p>"
190
+ msgstr ""
191
+
192
  msgid "You have logged in successfully."
193
  msgstr ""
194
 
372
  msgid "Comment"
373
  msgstr ""
374
 
375
+ msgid "Custom Actions"
376
+ msgstr ""
377
+
378
  msgid "Docs"
379
  msgstr ""
380
 
665
  msgid "Button style"
666
  msgstr ""
667
 
668
+ #, php-format
669
+ msgid "%1$s Add your custom actions here. One action per line."
670
+ msgstr ""
671
+
672
+ msgid "Usage:"
673
+ msgstr ""
674
+
675
+ #, php-format
676
+ msgid ""
677
+ "%1$s The HTML of the social buttons will be added at the place where the "
678
+ "action is fired."
679
+ msgstr ""
680
+
681
+ msgid "Important:"
682
+ msgstr ""
683
+
684
+ #, php-format
685
+ msgid ""
686
+ "If you %1$sexperience problems%2$s because of this feature, you can disable "
687
+ "it by defining the %3$s constant."
688
+ msgstr ""
689
+
690
+ msgid "Button layout"
691
+ msgstr ""
692
+
693
+ msgid "Default with top separator"
694
+ msgstr ""
695
+
696
+ msgid "Default with bottom separator"
697
+ msgstr ""
698
+
699
  msgid "No Connect button in Login form"
700
  msgstr ""
701
 
711
  msgid "Register form button style"
712
  msgstr ""
713
 
714
+ msgid "Checkout form"
715
+ msgstr ""
716
+
717
+ msgid "No Connect button in Checkout form"
718
+ msgstr ""
719
+
720
+ msgid "Checkout form button style"
721
+ msgstr ""
722
+
723
+ msgid "Checkout layout"
724
+ msgstr ""
725
+
726
  msgid "Target window"
727
  msgstr ""
728
 
789
  "select this page above"
790
  msgstr ""
791
 
 
 
 
792
  #, php-format
793
  msgid ""
794
  "%1$s You won't be able to reach the selected page unless a social login/"
795
  "registration happens."
796
  msgstr ""
797
 
 
 
 
798
  msgid "OAuth redirect uri proxy page"
799
  msgstr ""
800
 
1136
  msgid "Update now!"
1137
  msgstr ""
1138
 
1139
+ msgid "Hold On"
1140
+ msgstr ""
1141
+
1142
+ msgid "You are being redirected to another page,<br>it may take a few seconds."
1143
+ msgstr ""
1144
+
1145
  msgid "Social Login"
1146
  msgstr ""
1147
 
2109
  msgid "Apple Credentials"
2110
  msgstr ""
2111
 
2112
+ #, php-format
2113
+ msgid ""
2114
+ "If you are not logged in yet, then log in with your %s credentials and visit "
2115
+ "the link above again."
2116
+ msgstr ""
2117
+
2118
+ #, php-format
2119
+ msgid ""
2120
+ "Select your %s App and click on the “<b>%2$s</b>” menu point under the "
2121
+ "Settings section on the left side."
2122
+ msgstr ""
2123
+
2124
+ msgid "Add the following URL in the \"<b>Redirects</b>\" field:"
2125
+ msgstr ""
2126
+
2127
+ msgid "Click the \"<b>New Application</b>\" button."
2128
+ msgstr ""
2129
+
2130
+ msgid "Fill the \"<b>Name</b>\" field and click the \"<b>Create</b>\" button."
2131
+ msgstr ""
2132
+
2133
+ msgid ""
2134
+ "Optional: Select an \"<b>App Icon</b>\" and add a \"<b>Terms of Service URL</"
2135
+ "b>\" and \"<b>Privacy Policy URL</b>\"."
2136
+ msgstr ""
2137
+
2138
+ #, php-format
2139
+ msgid ""
2140
+ "On the left side, click on the “<b>%1$s</b>” menu point in the Settings."
2141
+ msgstr ""
2142
+
2143
+ msgid "Add the following URL to the \"<b>Redirects</b>\" field:"
2144
+ msgstr ""
2145
+
2146
+ msgid "Click the \"<b>Save Changes</b>\" button."
2147
+ msgstr ""
2148
+
2149
+ msgid ""
2150
+ "Copy the necessary \"<b>Client ID</b>\" and \"<b>Client Secret</b>\" values "
2151
+ "and fill these fields in the plugin settings!"
2152
+ msgstr ""
2153
+
2154
+ msgid "Force reauthorization on each login"
2155
+ msgstr ""
2156
+
2157
+ msgid "Disable, when you don't want to see the consent screen on each login."
2158
+ msgstr ""
2159
+
2160
+ msgid "Continue with <b>Discord</b>"
2161
+ msgstr ""
2162
+
2163
+ msgid "Sign up with <b>Discord</b>"
2164
+ msgstr ""
2165
+
2166
+ msgid "Link account with <b>Discord</b>"
2167
+ msgstr ""
2168
+
2169
+ msgid "Unlink account from <b>Discord</b>"
2170
+ msgstr ""
2171
+
2172
  #, php-format
2173
  msgid "Click on the name of your %s App."
2174
  msgstr ""
2382
  msgid "Channel Secret"
2383
  msgstr ""
2384
 
2385
+ msgid "Enable, when you want to see the consent screen on each login."
2386
+ msgstr ""
2387
+
2388
+ msgid "Add LINE Official Account as a friend"
2389
+ msgstr ""
2390
+
2391
+ msgid "Don't display"
2392
+ msgstr ""
2393
+
2394
+ msgid "Display the add friend option in the consent screen"
2395
+ msgstr ""
2396
+
2397
+ msgid "Opens a new screen with the add friend option after the consent screen"
2398
+ msgstr ""
2399
+
2400
+ #, php-format
2401
+ msgid ""
2402
+ "If you have a LINE Official Account, people can add it as a friend when they "
2403
+ "authorize your App. %1$sLearn more%2$s."
2404
+ msgstr ""
2405
+
2406
  msgid "Continue with <b>Line</b>"
2407
  msgstr ""
2408
 
2514
  msgid "Fill the \"<b>Name</b>\" field with your App Name."
2515
  msgstr ""
2516
 
2517
+ #, php-format
2518
  msgid ""
2519
+ "Select an option at Supported account types.<br><strong><u>Important:</u></"
2520
+ "strong> On our Settings tab, you will need to select the Audience depending "
2521
+ "on the selected value! If you are not sure what to choose, then %1$shere%2$s "
2522
+ "you can learn more."
2523
  msgstr ""
2524
 
2525
  msgid "Add the following URL to the \"<b>Redirect URI</b>\" field:"
2564
  msgid "Client secret"
2565
  msgstr ""
2566
 
2567
+ msgid "Audience"
2568
+ msgstr ""
2569
+
2570
+ msgid ""
2571
+ "Accounts in any organizational directory (Any Azure AD directory - "
2572
+ "Multitenant)"
2573
+ msgstr ""
2574
+
2575
+ msgid ""
2576
+ "Accounts in any organizational directory (Any Azure AD directory - "
2577
+ "Multitenant) and personal Microsoft accounts (e.g. Skype, Xbox)"
2578
+ msgstr ""
2579
+
2580
+ msgid "Personal Microsoft accounts only"
2581
+ msgstr ""
2582
+
2583
+ msgid ""
2584
+ "Only users in an organizational directory from a particular Azure AD tenant:"
2585
+ msgstr ""
2586
+
2587
+ #, php-format
2588
+ msgid ""
2589
+ "The selected value will define the supported account types. %1$sLearn more."
2590
+ "%2$s"
2591
+ msgstr ""
2592
+
2593
+ msgid "Authorization Prompt"
2594
+ msgstr ""
2595
+
2596
+ msgid "Display account select modal"
2597
+ msgstr ""
2598
+
2599
+ msgid "Force user to enter login credentials on each login"
2600
+ msgstr ""
2601
+
2602
+ msgid "Display authorization and authentication dialog only when necessary"
2603
+ msgstr ""
2604
+
2605
  msgid "Continue with <b>Microsoft</b>"
2606
  msgstr ""
2607
 
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: 2021-09-13 20:36+0200\n"
5
- "PO-Revision-Date: 2021-09-13 20:36+0200\n"
6
  "Last-Translator: Gabriel Vilaró <gabo@etereo.ch>\n"
7
  "Language-Team: nextend-facebook-connect\n"
8
  "Language: es_419\n"
@@ -203,6 +203,16 @@ msgid ""
203
  "information please check our %2$s %1$s compatibility tutorial%3$s!"
204
  msgstr ""
205
 
 
 
 
 
 
 
 
 
 
 
206
  msgid "You have logged in successfully."
207
  msgstr "Has ingresado exitosamente."
208
 
@@ -397,6 +407,9 @@ msgstr "Formulario de Acceso"
397
  msgid "Comment"
398
  msgstr "Comentario"
399
 
 
 
 
400
  msgid "Docs"
401
  msgstr "Documentos"
402
 
@@ -737,6 +750,47 @@ msgstr "Los usuarios deben estar registrados e iniciar sesión para comentar"
737
  msgid "Button style"
738
  msgstr "Estilo de Botón:"
739
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
740
  #, fuzzy
741
  #| msgid "No Connect button in login form"
742
  msgid "No Connect button in Login form"
@@ -758,6 +812,24 @@ msgstr "Sin botón de conexión en el formulario de registro"
758
  msgid "Register form button style"
759
  msgstr "Estilo de botón de formulario de Registro integrado"
760
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
761
  msgid "Target window"
762
  msgstr "Ventana de destino"
763
 
@@ -836,22 +908,12 @@ msgid ""
836
  "select this page above"
837
  msgstr ""
838
 
839
- #, fuzzy
840
- #| msgid "Usage"
841
- msgid "Usage:"
842
- msgstr "Uso"
843
-
844
  #, php-format
845
  msgid ""
846
  "%1$s You won't be able to reach the selected page unless a social login/"
847
  "registration happens."
848
  msgstr ""
849
 
850
- #, fuzzy
851
- #| msgid "Import"
852
- msgid "Important:"
853
- msgstr "Importar"
854
-
855
  msgid "OAuth redirect uri proxy page"
856
  msgstr ""
857
 
@@ -1256,6 +1318,12 @@ msgstr "Por favor, actualiza %1$s a la versión %2$s o más reciente."
1256
  msgid "Update now!"
1257
  msgstr "¡Actualizar ahora!"
1258
 
 
 
 
 
 
 
1259
  msgid "Social Login"
1260
  msgstr "Social Login"
1261
 
@@ -2441,6 +2509,95 @@ msgstr ""
2441
  msgid "Apple Credentials"
2442
  msgstr ""
2443
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2444
  #, fuzzy, php-format
2445
  #| msgid "Click on the Manage button at the App"
2446
  msgid "Click on the name of your %s App."
@@ -2728,6 +2885,27 @@ msgstr ""
2728
  msgid "Channel Secret"
2729
  msgstr "Consumer Secret"
2730
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2731
  #, fuzzy
2732
  #| msgid "Continue with <b>LinkedIn</b>"
2733
  msgid "Continue with <b>Line</b>"
@@ -2891,9 +3069,12 @@ msgid "Fill the \"<b>Name</b>\" field with your App Name."
2891
  msgstr ""
2892
  "Llena el campo \"Base domain\" con tu dominio, probablemente: <b>%s</b>"
2893
 
 
2894
  msgid ""
2895
- "Choose \"<b>Personal Microsoft accounts only</b>\" from the Supported "
2896
- "account types."
 
 
2897
  msgstr ""
2898
 
2899
  #, fuzzy
@@ -2966,6 +3147,46 @@ msgstr "Application ID"
2966
  msgid "Client secret"
2967
  msgstr "Client Secret"
2968
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2969
  #, fuzzy
2970
  #| msgid "Continue with <b>Yahoo</b>"
2971
  msgid "Continue with <b>Microsoft</b>"
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: nextend-facebook-connect\n"
4
+ "POT-Creation-Date: 2021-10-13 19:50+0200\n"
5
+ "PO-Revision-Date: 2021-10-13 19:50+0200\n"
6
  "Last-Translator: Gabriel Vilaró <gabo@etereo.ch>\n"
7
  "Language-Team: nextend-facebook-connect\n"
8
  "Language: es_419\n"
203
  "information please check our %2$s %1$s compatibility tutorial%3$s!"
204
  msgstr ""
205
 
206
+ #, php-format
207
+ msgid ""
208
+ "<p style=\"max-width:55em;\"><strong><u>Warning</u></strong>: Providers "
209
+ "change the App setup process quite often, which means some steps below might "
210
+ "not be accurate. If you see significant difference in the written "
211
+ "instructions and what you see at the provider, feel free to %1$sreport it"
212
+ "%2$s, so we can check and update the instructions.<br><strong>Last updated:</"
213
+ "strong> %3$s.</p>"
214
+ msgstr ""
215
+
216
  msgid "You have logged in successfully."
217
  msgstr "Has ingresado exitosamente."
218
 
407
  msgid "Comment"
408
  msgstr "Comentario"
409
 
410
+ msgid "Custom Actions"
411
+ msgstr ""
412
+
413
  msgid "Docs"
414
  msgstr "Documentos"
415
 
750
  msgid "Button style"
751
  msgstr "Estilo de Botón:"
752
 
753
+ #, php-format
754
+ msgid "%1$s Add your custom actions here. One action per line."
755
+ msgstr ""
756
+
757
+ #, fuzzy
758
+ #| msgid "Usage"
759
+ msgid "Usage:"
760
+ msgstr "Uso"
761
+
762
+ #, php-format
763
+ msgid ""
764
+ "%1$s The HTML of the social buttons will be added at the place where the "
765
+ "action is fired."
766
+ msgstr ""
767
+
768
+ #, fuzzy
769
+ #| msgid "Import"
770
+ msgid "Important:"
771
+ msgstr "Importar"
772
+
773
+ #, php-format
774
+ msgid ""
775
+ "If you %1$sexperience problems%2$s because of this feature, you can disable "
776
+ "it by defining the %3$s constant."
777
+ msgstr ""
778
+
779
+ #, fuzzy
780
+ #| msgid "Login layout"
781
+ msgid "Button layout"
782
+ msgstr "Diseño de Inicio de Sesión"
783
+
784
+ #, fuzzy
785
+ #| msgid "Below with separator"
786
+ msgid "Default with top separator"
787
+ msgstr "Abajo con separación"
788
+
789
+ #, fuzzy
790
+ #| msgid "Below with separator"
791
+ msgid "Default with bottom separator"
792
+ msgstr "Abajo con separación"
793
+
794
  #, fuzzy
795
  #| msgid "No Connect button in login form"
796
  msgid "No Connect button in Login form"
812
  msgid "Register form button style"
813
  msgstr "Estilo de botón de formulario de Registro integrado"
814
 
815
+ msgid "Checkout form"
816
+ msgstr ""
817
+
818
+ #, fuzzy
819
+ #| msgid "No Connect button in login form"
820
+ msgid "No Connect button in Checkout form"
821
+ msgstr "Sin botón de conexión en el formulario de inicio de sesión"
822
+
823
+ #, fuzzy
824
+ #| msgid "Login form button style"
825
+ msgid "Checkout form button style"
826
+ msgstr "Estilo de botón para iniciar sesión"
827
+
828
+ #, fuzzy
829
+ #| msgid "Register layout"
830
+ msgid "Checkout layout"
831
+ msgstr "Diseño de Registro"
832
+
833
  msgid "Target window"
834
  msgstr "Ventana de destino"
835
 
908
  "select this page above"
909
  msgstr ""
910
 
 
 
 
 
 
911
  #, php-format
912
  msgid ""
913
  "%1$s You won't be able to reach the selected page unless a social login/"
914
  "registration happens."
915
  msgstr ""
916
 
 
 
 
 
 
917
  msgid "OAuth redirect uri proxy page"
918
  msgstr ""
919
 
1318
  msgid "Update now!"
1319
  msgstr "¡Actualizar ahora!"
1320
 
1321
+ msgid "Hold On"
1322
+ msgstr ""
1323
+
1324
+ msgid "You are being redirected to another page,<br>it may take a few seconds."
1325
+ msgstr ""
1326
+
1327
  msgid "Social Login"
1328
  msgstr "Social Login"
1329
 
2509
  msgid "Apple Credentials"
2510
  msgstr ""
2511
 
2512
+ #, php-format
2513
+ msgid ""
2514
+ "If you are not logged in yet, then log in with your %s credentials and visit "
2515
+ "the link above again."
2516
+ msgstr ""
2517
+
2518
+ #, php-format
2519
+ msgid ""
2520
+ "Select your %s App and click on the “<b>%2$s</b>” menu point under the "
2521
+ "Settings section on the left side."
2522
+ msgstr ""
2523
+
2524
+ #, fuzzy
2525
+ #| msgid ""
2526
+ #| "Add the following URL to the \"Authorized Redirect URLs:\" field: <b>%s</"
2527
+ #| "b>"
2528
+ msgid "Add the following URL in the \"<b>Redirects</b>\" field:"
2529
+ msgstr ""
2530
+ "Agrega la siguiente URL al campo \"Authorized Redirect URLs\": <b>%s</b>"
2531
+
2532
+ #, fuzzy
2533
+ #| msgid "Click on the \"Create New App\" button"
2534
+ msgid "Click the \"<b>New Application</b>\" button."
2535
+ msgstr "Haz clic en el botón de \"Create New App\" por favor"
2536
+
2537
+ #, fuzzy
2538
+ #| msgid "Name your project and then click on the Create button"
2539
+ msgid "Fill the \"<b>Name</b>\" field and click the \"<b>Create</b>\" button."
2540
+ msgstr "Denomina tu proyecto y luego haz clic en el botón Create"
2541
+
2542
+ msgid ""
2543
+ "Optional: Select an \"<b>App Icon</b>\" and add a \"<b>Terms of Service URL</"
2544
+ "b>\" and \"<b>Privacy Policy URL</b>\"."
2545
+ msgstr ""
2546
+
2547
+ #, fuzzy, php-format
2548
+ #| msgid "Click on the \"Credentials\" in the left hand menu"
2549
+ msgid ""
2550
+ "On the left side, click on the “<b>%1$s</b>” menu point in the Settings."
2551
+ msgstr "Haz clic en \"Credentials\" en el menú de la izquierda"
2552
+
2553
+ #, fuzzy
2554
+ #| msgid ""
2555
+ #| "Add the following URL to the \"Authorized Redirect URLs:\" field: <b>%s</"
2556
+ #| "b>"
2557
+ msgid "Add the following URL to the \"<b>Redirects</b>\" field:"
2558
+ msgstr ""
2559
+ "Agrega la siguiente URL al campo \"Authorized Redirect URLs\": <b>%s</b>"
2560
+
2561
+ #, fuzzy
2562
+ #| msgid "Click on \"Save Changes\""
2563
+ msgid "Click the \"<b>Save Changes</b>\" button."
2564
+ msgstr "Haz clic en \"Guardar Cambios\""
2565
+
2566
+ #, fuzzy
2567
+ #| msgid ""
2568
+ #| "Find the necessary \"Client ID\" and \"Client Secret\" at the middle of "
2569
+ #| "the page."
2570
+ msgid ""
2571
+ "Copy the necessary \"<b>Client ID</b>\" and \"<b>Client Secret</b>\" values "
2572
+ "and fill these fields in the plugin settings!"
2573
+ msgstr "Busca la \"Client ID\" y \"Client Secret\" en el medio de la página."
2574
+
2575
+ msgid "Force reauthorization on each login"
2576
+ msgstr ""
2577
+
2578
+ msgid "Disable, when you don't want to see the consent screen on each login."
2579
+ msgstr ""
2580
+
2581
+ #, fuzzy
2582
+ #| msgid "Continue with <b>Disqus</b>"
2583
+ msgid "Continue with <b>Discord</b>"
2584
+ msgstr "Sigue con <b>Disqus</b>"
2585
+
2586
+ #, fuzzy
2587
+ #| msgid "Continue with <b>Disqus</b>"
2588
+ msgid "Sign up with <b>Discord</b>"
2589
+ msgstr "Sigue con <b>Disqus</b>"
2590
+
2591
+ #, fuzzy
2592
+ #| msgid "Link account with <b>Disqus</b>"
2593
+ msgid "Link account with <b>Discord</b>"
2594
+ msgstr "Enlazar cuenta con <b>Disqus</b>"
2595
+
2596
+ #, fuzzy
2597
+ #| msgid "Unlink account from <b>Disqus</b>"
2598
+ msgid "Unlink account from <b>Discord</b>"
2599
+ msgstr "Desenlazar cuenta de <b>Disqus</b>"
2600
+
2601
  #, fuzzy, php-format
2602
  #| msgid "Click on the Manage button at the App"
2603
  msgid "Click on the name of your %s App."
2885
  msgid "Channel Secret"
2886
  msgstr "Consumer Secret"
2887
 
2888
+ msgid "Enable, when you want to see the consent screen on each login."
2889
+ msgstr ""
2890
+
2891
+ msgid "Add LINE Official Account as a friend"
2892
+ msgstr ""
2893
+
2894
+ msgid "Don't display"
2895
+ msgstr ""
2896
+
2897
+ msgid "Display the add friend option in the consent screen"
2898
+ msgstr ""
2899
+
2900
+ msgid "Opens a new screen with the add friend option after the consent screen"
2901
+ msgstr ""
2902
+
2903
+ #, php-format
2904
+ msgid ""
2905
+ "If you have a LINE Official Account, people can add it as a friend when they "
2906
+ "authorize your App. %1$sLearn more%2$s."
2907
+ msgstr ""
2908
+
2909
  #, fuzzy
2910
  #| msgid "Continue with <b>LinkedIn</b>"
2911
  msgid "Continue with <b>Line</b>"
3069
  msgstr ""
3070
  "Llena el campo \"Base domain\" con tu dominio, probablemente: <b>%s</b>"
3071
 
3072
+ #, php-format
3073
  msgid ""
3074
+ "Select an option at Supported account types.<br><strong><u>Important:</u></"
3075
+ "strong> On our Settings tab, you will need to select the Audience depending "
3076
+ "on the selected value! If you are not sure what to choose, then %1$shere%2$s "
3077
+ "you can learn more."
3078
  msgstr ""
3079
 
3080
  #, fuzzy
3147
  msgid "Client secret"
3148
  msgstr "Client Secret"
3149
 
3150
+ msgid "Audience"
3151
+ msgstr ""
3152
+
3153
+ msgid ""
3154
+ "Accounts in any organizational directory (Any Azure AD directory - "
3155
+ "Multitenant)"
3156
+ msgstr ""
3157
+
3158
+ msgid ""
3159
+ "Accounts in any organizational directory (Any Azure AD directory - "
3160
+ "Multitenant) and personal Microsoft accounts (e.g. Skype, Xbox)"
3161
+ msgstr ""
3162
+
3163
+ msgid "Personal Microsoft accounts only"
3164
+ msgstr ""
3165
+
3166
+ msgid ""
3167
+ "Only users in an organizational directory from a particular Azure AD tenant:"
3168
+ msgstr ""
3169
+
3170
+ #, php-format
3171
+ msgid ""
3172
+ "The selected value will define the supported account types. %1$sLearn more."
3173
+ "%2$s"
3174
+ msgstr ""
3175
+
3176
+ #, fuzzy
3177
+ #| msgid "Authentication error"
3178
+ msgid "Authorization Prompt"
3179
+ msgstr "Error de autenticación"
3180
+
3181
+ msgid "Display account select modal"
3182
+ msgstr ""
3183
+
3184
+ msgid "Force user to enter login credentials on each login"
3185
+ msgstr ""
3186
+
3187
+ msgid "Display authorization and authentication dialog only when necessary"
3188
+ msgstr ""
3189
+
3190
  #, fuzzy
3191
  #| msgid "Continue with <b>Yahoo</b>"
3192
  msgid "Continue with <b>Microsoft</b>"
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: 2021-09-13 20:36+0200\n"
5
- "PO-Revision-Date: 2021-09-13 20:42+0200\n"
6
  "Last-Translator: \n"
7
  "Language-Team: nextend-facebook-connect\n"
8
  "Language: fr\n"
@@ -185,6 +185,16 @@ msgid ""
185
  "information please check our %2$s %1$s compatibility tutorial%3$s!"
186
  msgstr ""
187
 
 
 
 
 
 
 
 
 
 
 
188
  msgid "You have logged in successfully."
189
  msgstr ""
190
 
@@ -368,6 +378,9 @@ msgstr ""
368
  msgid "Comment"
369
  msgstr ""
370
 
 
 
 
371
  msgid "Docs"
372
  msgstr ""
373
 
@@ -658,6 +671,37 @@ msgstr ""
658
  msgid "Button style"
659
  msgstr ""
660
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
661
  msgid "No Connect button in Login form"
662
  msgstr ""
663
 
@@ -673,6 +717,18 @@ msgstr ""
673
  msgid "Register form button style"
674
  msgstr ""
675
 
 
 
 
 
 
 
 
 
 
 
 
 
676
  msgid "Target window"
677
  msgstr ""
678
 
@@ -739,18 +795,12 @@ msgid ""
739
  "select this page above"
740
  msgstr ""
741
 
742
- msgid "Usage:"
743
- msgstr ""
744
-
745
  #, php-format
746
  msgid ""
747
  "%1$s You won't be able to reach the selected page unless a social login/"
748
  "registration happens."
749
  msgstr ""
750
 
751
- msgid "Important:"
752
- msgstr ""
753
-
754
  msgid "OAuth redirect uri proxy page"
755
  msgstr ""
756
 
@@ -1092,6 +1142,12 @@ msgstr ""
1092
  msgid "Update now!"
1093
  msgstr ""
1094
 
 
 
 
 
 
 
1095
  msgid "Social Login"
1096
  msgstr ""
1097
 
@@ -2059,6 +2115,66 @@ msgstr ""
2059
  msgid "Apple Credentials"
2060
  msgstr ""
2061
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2062
  #, php-format
2063
  msgid "Click on the name of your %s App."
2064
  msgstr ""
@@ -2272,6 +2388,27 @@ msgstr ""
2272
  msgid "Channel Secret"
2273
  msgstr ""
2274
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2275
  msgid "Continue with <b>Line</b>"
2276
  msgstr ""
2277
 
@@ -2383,9 +2520,12 @@ msgstr ""
2383
  msgid "Fill the \"<b>Name</b>\" field with your App Name."
2384
  msgstr ""
2385
 
 
2386
  msgid ""
2387
- "Choose \"<b>Personal Microsoft accounts only</b>\" from the Supported "
2388
- "account types."
 
 
2389
  msgstr ""
2390
 
2391
  msgid "Add the following URL to the \"<b>Redirect URI</b>\" field:"
@@ -2430,6 +2570,44 @@ msgstr ""
2430
  msgid "Client secret"
2431
  msgstr ""
2432
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2433
  msgid "Continue with <b>Microsoft</b>"
2434
  msgstr ""
2435
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: nextend-facebook-connect\n"
4
+ "POT-Creation-Date: 2021-10-13 19:50+0200\n"
5
+ "PO-Revision-Date: 2021-10-13 19:50+0200\n"
6
  "Last-Translator: \n"
7
  "Language-Team: nextend-facebook-connect\n"
8
  "Language: fr\n"
185
  "information please check our %2$s %1$s compatibility tutorial%3$s!"
186
  msgstr ""
187
 
188
+ #, php-format
189
+ msgid ""
190
+ "<p style=\"max-width:55em;\"><strong><u>Warning</u></strong>: Providers "
191
+ "change the App setup process quite often, which means some steps below might "
192
+ "not be accurate. If you see significant difference in the written "
193
+ "instructions and what you see at the provider, feel free to %1$sreport it"
194
+ "%2$s, so we can check and update the instructions.<br><strong>Last updated:</"
195
+ "strong> %3$s.</p>"
196
+ msgstr ""
197
+
198
  msgid "You have logged in successfully."
199
  msgstr ""
200
 
378
  msgid "Comment"
379
  msgstr ""
380
 
381
+ msgid "Custom Actions"
382
+ msgstr ""
383
+
384
  msgid "Docs"
385
  msgstr ""
386
 
671
  msgid "Button style"
672
  msgstr ""
673
 
674
+ #, php-format
675
+ msgid "%1$s Add your custom actions here. One action per line."
676
+ msgstr ""
677
+
678
+ msgid "Usage:"
679
+ msgstr ""
680
+
681
+ #, php-format
682
+ msgid ""
683
+ "%1$s The HTML of the social buttons will be added at the place where the "
684
+ "action is fired."
685
+ msgstr ""
686
+
687
+ msgid "Important:"
688
+ msgstr ""
689
+
690
+ #, php-format
691
+ msgid ""
692
+ "If you %1$sexperience problems%2$s because of this feature, you can disable "
693
+ "it by defining the %3$s constant."
694
+ msgstr ""
695
+
696
+ msgid "Button layout"
697
+ msgstr ""
698
+
699
+ msgid "Default with top separator"
700
+ msgstr ""
701
+
702
+ msgid "Default with bottom separator"
703
+ msgstr ""
704
+
705
  msgid "No Connect button in Login form"
706
  msgstr ""
707
 
717
  msgid "Register form button style"
718
  msgstr ""
719
 
720
+ msgid "Checkout form"
721
+ msgstr ""
722
+
723
+ msgid "No Connect button in Checkout form"
724
+ msgstr ""
725
+
726
+ msgid "Checkout form button style"
727
+ msgstr ""
728
+
729
+ msgid "Checkout layout"
730
+ msgstr ""
731
+
732
  msgid "Target window"
733
  msgstr ""
734
 
795
  "select this page above"
796
  msgstr ""
797
 
 
 
 
798
  #, php-format
799
  msgid ""
800
  "%1$s You won't be able to reach the selected page unless a social login/"
801
  "registration happens."
802
  msgstr ""
803
 
 
 
 
804
  msgid "OAuth redirect uri proxy page"
805
  msgstr ""
806
 
1142
  msgid "Update now!"
1143
  msgstr ""
1144
 
1145
+ msgid "Hold On"
1146
+ msgstr ""
1147
+
1148
+ msgid "You are being redirected to another page,<br>it may take a few seconds."
1149
+ msgstr ""
1150
+
1151
  msgid "Social Login"
1152
  msgstr ""
1153
 
2115
  msgid "Apple Credentials"
2116
  msgstr ""
2117
 
2118
+ #, php-format
2119
+ msgid ""
2120
+ "If you are not logged in yet, then log in with your %s credentials and visit "
2121
+ "the link above again."
2122
+ msgstr ""
2123
+
2124
+ #, php-format
2125
+ msgid ""
2126
+ "Select your %s App and click on the “<b>%2$s</b>” menu point under the "
2127
+ "Settings section on the left side."
2128
+ msgstr ""
2129
+
2130
+ msgid "Add the following URL in the \"<b>Redirects</b>\" field:"
2131
+ msgstr ""
2132
+
2133
+ msgid "Click the \"<b>New Application</b>\" button."
2134
+ msgstr ""
2135
+
2136
+ msgid "Fill the \"<b>Name</b>\" field and click the \"<b>Create</b>\" button."
2137
+ msgstr ""
2138
+
2139
+ msgid ""
2140
+ "Optional: Select an \"<b>App Icon</b>\" and add a \"<b>Terms of Service URL</"
2141
+ "b>\" and \"<b>Privacy Policy URL</b>\"."
2142
+ msgstr ""
2143
+
2144
+ #, php-format
2145
+ msgid ""
2146
+ "On the left side, click on the “<b>%1$s</b>” menu point in the Settings."
2147
+ msgstr ""
2148
+
2149
+ msgid "Add the following URL to the \"<b>Redirects</b>\" field:"
2150
+ msgstr ""
2151
+
2152
+ msgid "Click the \"<b>Save Changes</b>\" button."
2153
+ msgstr ""
2154
+
2155
+ msgid ""
2156
+ "Copy the necessary \"<b>Client ID</b>\" and \"<b>Client Secret</b>\" values "
2157
+ "and fill these fields in the plugin settings!"
2158
+ msgstr ""
2159
+
2160
+ msgid "Force reauthorization on each login"
2161
+ msgstr ""
2162
+
2163
+ msgid "Disable, when you don't want to see the consent screen on each login."
2164
+ msgstr ""
2165
+
2166
+ msgid "Continue with <b>Discord</b>"
2167
+ msgstr ""
2168
+
2169
+ msgid "Sign up with <b>Discord</b>"
2170
+ msgstr ""
2171
+
2172
+ msgid "Link account with <b>Discord</b>"
2173
+ msgstr ""
2174
+
2175
+ msgid "Unlink account from <b>Discord</b>"
2176
+ msgstr ""
2177
+
2178
  #, php-format
2179
  msgid "Click on the name of your %s App."
2180
  msgstr ""
2388
  msgid "Channel Secret"
2389
  msgstr ""
2390
 
2391
+ msgid "Enable, when you want to see the consent screen on each login."
2392
+ msgstr ""
2393
+
2394
+ msgid "Add LINE Official Account as a friend"
2395
+ msgstr ""
2396
+
2397
+ msgid "Don't display"
2398
+ msgstr ""
2399
+
2400
+ msgid "Display the add friend option in the consent screen"
2401
+ msgstr ""
2402
+
2403
+ msgid "Opens a new screen with the add friend option after the consent screen"
2404
+ msgstr ""
2405
+
2406
+ #, php-format
2407
+ msgid ""
2408
+ "If you have a LINE Official Account, people can add it as a friend when they "
2409
+ "authorize your App. %1$sLearn more%2$s."
2410
+ msgstr ""
2411
+
2412
  msgid "Continue with <b>Line</b>"
2413
  msgstr ""
2414
 
2520
  msgid "Fill the \"<b>Name</b>\" field with your App Name."
2521
  msgstr ""
2522
 
2523
+ #, php-format
2524
  msgid ""
2525
+ "Select an option at Supported account types.<br><strong><u>Important:</u></"
2526
+ "strong> On our Settings tab, you will need to select the Audience depending "
2527
+ "on the selected value! If you are not sure what to choose, then %1$shere%2$s "
2528
+ "you can learn more."
2529
  msgstr ""
2530
 
2531
  msgid "Add the following URL to the \"<b>Redirect URI</b>\" field:"
2570
  msgid "Client secret"
2571
  msgstr ""
2572
 
2573
+ msgid "Audience"
2574
+ msgstr ""
2575
+
2576
+ msgid ""
2577
+ "Accounts in any organizational directory (Any Azure AD directory - "
2578
+ "Multitenant)"
2579
+ msgstr ""
2580
+
2581
+ msgid ""
2582
+ "Accounts in any organizational directory (Any Azure AD directory - "
2583
+ "Multitenant) and personal Microsoft accounts (e.g. Skype, Xbox)"
2584
+ msgstr ""
2585
+
2586
+ msgid "Personal Microsoft accounts only"
2587
+ msgstr ""
2588
+
2589
+ msgid ""
2590
+ "Only users in an organizational directory from a particular Azure AD tenant:"
2591
+ msgstr ""
2592
+
2593
+ #, php-format
2594
+ msgid ""
2595
+ "The selected value will define the supported account types. %1$sLearn more."
2596
+ "%2$s"
2597
+ msgstr ""
2598
+
2599
+ msgid "Authorization Prompt"
2600
+ msgstr ""
2601
+
2602
+ msgid "Display account select modal"
2603
+ msgstr ""
2604
+
2605
+ msgid "Force user to enter login credentials on each login"
2606
+ msgstr ""
2607
+
2608
+ msgid "Display authorization and authentication dialog only when necessary"
2609
+ msgstr ""
2610
+
2611
  msgid "Continue with <b>Microsoft</b>"
2612
  msgstr ""
2613
 
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: 2021-09-13 20:37+0200\n"
5
- "PO-Revision-Date: 2021-09-13 20:42+0200\n"
6
  "Last-Translator: \n"
7
  "Language-Team: nextend-facebook-connect\n"
8
  "Language: hu\n"
@@ -204,6 +204,16 @@ msgid ""
204
  "information please check our %2$s %1$s compatibility tutorial%3$s!"
205
  msgstr ""
206
 
 
 
 
 
 
 
 
 
 
 
207
  msgid "You have logged in successfully."
208
  msgstr "Sikeresen bejelentkeztél"
209
 
@@ -391,6 +401,9 @@ msgstr "Bejelentkezési form"
391
  msgid "Comment"
392
  msgstr "Komment"
393
 
 
 
 
394
  msgid "Docs"
395
  msgstr "Dokumentáció"
396
 
@@ -718,6 +731,43 @@ msgstr "A felhasználóknak be kell jelentkezve lenniük a kommenteléshez."
718
  msgid "Button style"
719
  msgstr "Gomb stílus:"
720
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
721
  #, fuzzy
722
  #| msgid "No Connect button in login form"
723
  msgid "No Connect button in Login form"
@@ -741,6 +791,24 @@ msgstr "Ne legyen összekapcsoló gomb a belépő űrlapnál"
741
  msgid "Register form button style"
742
  msgstr "Login gomb stílusa"
743
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
744
  msgid "Target window"
745
  msgstr "Célablak"
746
 
@@ -816,9 +884,6 @@ msgstr ""
816
  "%2$s Előszőr hozz létre egy új oldalt, majd másold be a következő shortcode-"
817
  "ot: %1$s majd válaszd ki azt az oldal itt."
818
 
819
- msgid "Usage:"
820
- msgstr "Használat"
821
-
822
  #, php-format
823
  msgid ""
824
  "%1$s You won't be able to reach the selected page unless a social login/"
@@ -827,9 +892,6 @@ msgstr ""
827
  "%1$s A kiválasztott csak a login és regisztráció folyamat számára less "
828
  "elérhető."
829
 
830
- msgid "Important:"
831
- msgstr "Fontos:"
832
-
833
  msgid "OAuth redirect uri proxy page"
834
  msgstr "OAuth redirect uri proxy page"
835
 
@@ -1227,6 +1289,12 @@ msgstr ""
1227
  msgid "Update now!"
1228
  msgstr ""
1229
 
 
 
 
 
 
 
1230
  msgid "Social Login"
1231
  msgstr "Közösségi belépés"
1232
 
@@ -2357,6 +2425,95 @@ msgstr ""
2357
  msgid "Apple Credentials"
2358
  msgstr ""
2359
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2360
  #, php-format
2361
  msgid "Click on the name of your %s App."
2362
  msgstr "Kattints az %s Appod nevére."
@@ -2654,6 +2811,27 @@ msgstr ""
2654
  msgid "Channel Secret"
2655
  msgstr "Consumer Secret"
2656
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2657
  #, fuzzy
2658
  #| msgid "Continue with <b>LinkedIn</b>"
2659
  msgid "Continue with <b>Line</b>"
@@ -2803,9 +2981,12 @@ msgstr ""
2803
  "Írd be a weboldalad főoldalának címét a \"Domains\" mezőbe. Valószínűleg ez "
2804
  "lesz az: <b>%s</b>"
2805
 
 
2806
  msgid ""
2807
- "Choose \"<b>Personal Microsoft accounts only</b>\" from the Supported "
2808
- "account types."
 
 
2809
  msgstr ""
2810
 
2811
  #, fuzzy
@@ -2868,6 +3049,46 @@ msgstr ""
2868
  msgid "Client secret"
2869
  msgstr "Client Secret"
2870
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2871
  #, fuzzy
2872
  #| msgid "Continue with <b>Yahoo</b>"
2873
  msgid "Continue with <b>Microsoft</b>"
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: nextend-facebook-connect\n"
4
+ "POT-Creation-Date: 2021-10-13 19:50+0200\n"
5
+ "PO-Revision-Date: 2021-10-13 19:50+0200\n"
6
  "Last-Translator: \n"
7
  "Language-Team: nextend-facebook-connect\n"
8
  "Language: hu\n"
204
  "information please check our %2$s %1$s compatibility tutorial%3$s!"
205
  msgstr ""
206
 
207
+ #, php-format
208
+ msgid ""
209
+ "<p style=\"max-width:55em;\"><strong><u>Warning</u></strong>: Providers "
210
+ "change the App setup process quite often, which means some steps below might "
211
+ "not be accurate. If you see significant difference in the written "
212
+ "instructions and what you see at the provider, feel free to %1$sreport it"
213
+ "%2$s, so we can check and update the instructions.<br><strong>Last updated:</"
214
+ "strong> %3$s.</p>"
215
+ msgstr ""
216
+
217
  msgid "You have logged in successfully."
218
  msgstr "Sikeresen bejelentkeztél"
219
 
401
  msgid "Comment"
402
  msgstr "Komment"
403
 
404
+ msgid "Custom Actions"
405
+ msgstr ""
406
+
407
  msgid "Docs"
408
  msgstr "Dokumentáció"
409
 
731
  msgid "Button style"
732
  msgstr "Gomb stílus:"
733
 
734
+ #, php-format
735
+ msgid "%1$s Add your custom actions here. One action per line."
736
+ msgstr ""
737
+
738
+ msgid "Usage:"
739
+ msgstr "Használat"
740
+
741
+ #, php-format
742
+ msgid ""
743
+ "%1$s The HTML of the social buttons will be added at the place where the "
744
+ "action is fired."
745
+ msgstr ""
746
+
747
+ msgid "Important:"
748
+ msgstr "Fontos:"
749
+
750
+ #, php-format
751
+ msgid ""
752
+ "If you %1$sexperience problems%2$s because of this feature, you can disable "
753
+ "it by defining the %3$s constant."
754
+ msgstr ""
755
+
756
+ #, fuzzy
757
+ #| msgid "Login layout"
758
+ msgid "Button layout"
759
+ msgstr "Login elrendezése"
760
+
761
+ #, fuzzy
762
+ #| msgid "Below with separator"
763
+ msgid "Default with top separator"
764
+ msgstr "Alul, elválasztóval"
765
+
766
+ #, fuzzy
767
+ #| msgid "Below with separator"
768
+ msgid "Default with bottom separator"
769
+ msgstr "Alul, elválasztóval"
770
+
771
  #, fuzzy
772
  #| msgid "No Connect button in login form"
773
  msgid "No Connect button in Login form"
791
  msgid "Register form button style"
792
  msgstr "Login gomb stílusa"
793
 
794
+ msgid "Checkout form"
795
+ msgstr ""
796
+
797
+ #, fuzzy
798
+ #| msgid "No Connect button in login form"
799
+ msgid "No Connect button in Checkout form"
800
+ msgstr "Ne legyen összekapcsoló gomb a belépő űrlapnál"
801
+
802
+ #, fuzzy
803
+ #| msgid "Login form button style"
804
+ msgid "Checkout form button style"
805
+ msgstr "Login gomb stílusa"
806
+
807
+ #, fuzzy
808
+ #| msgid "Login layout"
809
+ msgid "Checkout layout"
810
+ msgstr "Login elrendezése"
811
+
812
  msgid "Target window"
813
  msgstr "Célablak"
814
 
884
  "%2$s Előszőr hozz létre egy új oldalt, majd másold be a következő shortcode-"
885
  "ot: %1$s majd válaszd ki azt az oldal itt."
886
 
 
 
 
887
  #, php-format
888
  msgid ""
889
  "%1$s You won't be able to reach the selected page unless a social login/"
892
  "%1$s A kiválasztott csak a login és regisztráció folyamat számára less "
893
  "elérhető."
894
 
 
 
 
895
  msgid "OAuth redirect uri proxy page"
896
  msgstr "OAuth redirect uri proxy page"
897
 
1289
  msgid "Update now!"
1290
  msgstr ""
1291
 
1292
+ msgid "Hold On"
1293
+ msgstr "Egy kis türelmet kérünk..."
1294
+
1295
+ msgid "You are being redirected to another page,<br>it may take a few seconds."
1296
+ msgstr "Átirányítás folyamatban,<br> ez eltarthat néhány másodpercig."
1297
+
1298
  msgid "Social Login"
1299
  msgstr "Közösségi belépés"
1300
 
2425
  msgid "Apple Credentials"
2426
  msgstr ""
2427
 
2428
+ #, php-format
2429
+ msgid ""
2430
+ "If you are not logged in yet, then log in with your %s credentials and visit "
2431
+ "the link above again."
2432
+ msgstr ""
2433
+
2434
+ #, php-format
2435
+ msgid ""
2436
+ "Select your %s App and click on the “<b>%2$s</b>” menu point under the "
2437
+ "Settings section on the left side."
2438
+ msgstr ""
2439
+
2440
+ #, fuzzy
2441
+ #| msgid "Add the following URL to the \"Redirect URLs\" field <b>%s</b> "
2442
+ msgid "Add the following URL in the \"<b>Redirects</b>\" field:"
2443
+ msgstr "Tedd a következő linket az \"Redirect URLs:\" mezőbe: <b>%s</b>"
2444
+
2445
+ #, fuzzy
2446
+ #| msgid "Click on the \"Create New Application\" button."
2447
+ msgid "Click the \"<b>New Application</b>\" button."
2448
+ msgstr "Kattints a \"Create New Application\" gombra."
2449
+
2450
+ #, fuzzy
2451
+ #| msgid "Read the Developer Terms and click the Create button again!"
2452
+ msgid "Fill the \"<b>Name</b>\" field and click the \"<b>Create</b>\" button."
2453
+ msgstr "Olvasd el a Fejlesztői feltételeket és kattints a Create gombra újra."
2454
+
2455
+ msgid ""
2456
+ "Optional: Select an \"<b>App Icon</b>\" and add a \"<b>Terms of Service URL</"
2457
+ "b>\" and \"<b>Privacy Policy URL</b>\"."
2458
+ msgstr ""
2459
+
2460
+ #, fuzzy, php-format
2461
+ #| msgid ""
2462
+ #| "Click on the \"Credentials\" in the left hand menu to create new API "
2463
+ #| "credentials"
2464
+ msgid ""
2465
+ "On the left side, click on the “<b>%1$s</b>” menu point in the Settings."
2466
+ msgstr ""
2467
+ "Kattints a \"Credentials\" feliratra a bal oldali menüben hogy új API "
2468
+ "adatokat készíts"
2469
+
2470
+ #, fuzzy
2471
+ #| msgid "Add the following URL to the \"Redirect URLs\" field <b>%s</b> "
2472
+ msgid "Add the following URL to the \"<b>Redirects</b>\" field:"
2473
+ msgstr "Tedd a következő linket az \"Redirect URLs:\" mezőbe: <b>%s</b>"
2474
+
2475
+ #, fuzzy
2476
+ #| msgid "Click on the \"Save Changes\" button."
2477
+ msgid "Click the \"<b>Save Changes</b>\" button."
2478
+ msgstr "Kattints a \"Save Changes\" gombra."
2479
+
2480
+ #, fuzzy
2481
+ #| msgid ""
2482
+ #| "Find the necessary \"Client ID\" and \"Client Secret\" at the middle of "
2483
+ #| "the page, under the \"Web Settings\" tab."
2484
+ msgid ""
2485
+ "Copy the necessary \"<b>Client ID</b>\" and \"<b>Client Secret</b>\" values "
2486
+ "and fill these fields in the plugin settings!"
2487
+ msgstr ""
2488
+ "Itt találod a \"Client ID\"-t és a \"Client Secret\"-et az oldal közepén, a "
2489
+ "Web Settings tab alatt."
2490
+
2491
+ msgid "Force reauthorization on each login"
2492
+ msgstr ""
2493
+
2494
+ msgid "Disable, when you don't want to see the consent screen on each login."
2495
+ msgstr ""
2496
+
2497
+ #, fuzzy
2498
+ #| msgid "Continue with <b>Disqus</b>"
2499
+ msgid "Continue with <b>Discord</b>"
2500
+ msgstr "Folytatás a <b>Disqus</b>-szal"
2501
+
2502
+ #, fuzzy
2503
+ #| msgid "Sign up with <b>Disqus</b>"
2504
+ msgid "Sign up with <b>Discord</b>"
2505
+ msgstr "Regisztrálás a <b>Disqus</b>-szal"
2506
+
2507
+ #, fuzzy
2508
+ #| msgid "Link account with <b>Disqus</b>"
2509
+ msgid "Link account with <b>Discord</b>"
2510
+ msgstr "Fiók összekapcsolása a <b>Disqus</b>-szal"
2511
+
2512
+ #, fuzzy
2513
+ #| msgid "Unlink account from <b>Disqus</b>"
2514
+ msgid "Unlink account from <b>Discord</b>"
2515
+ msgstr "Szétkapcsolás <b>Disqus</b>-tól"
2516
+
2517
  #, php-format
2518
  msgid "Click on the name of your %s App."
2519
  msgstr "Kattints az %s Appod nevére."
2811
  msgid "Channel Secret"
2812
  msgstr "Consumer Secret"
2813
 
2814
+ msgid "Enable, when you want to see the consent screen on each login."
2815
+ msgstr ""
2816
+
2817
+ msgid "Add LINE Official Account as a friend"
2818
+ msgstr ""
2819
+
2820
+ msgid "Don't display"
2821
+ msgstr ""
2822
+
2823
+ msgid "Display the add friend option in the consent screen"
2824
+ msgstr ""
2825
+
2826
+ msgid "Opens a new screen with the add friend option after the consent screen"
2827
+ msgstr ""
2828
+
2829
+ #, php-format
2830
+ msgid ""
2831
+ "If you have a LINE Official Account, people can add it as a friend when they "
2832
+ "authorize your App. %1$sLearn more%2$s."
2833
+ msgstr ""
2834
+
2835
  #, fuzzy
2836
  #| msgid "Continue with <b>LinkedIn</b>"
2837
  msgid "Continue with <b>Line</b>"
2981
  "Írd be a weboldalad főoldalának címét a \"Domains\" mezőbe. Valószínűleg ez "
2982
  "lesz az: <b>%s</b>"
2983
 
2984
+ #, php-format
2985
  msgid ""
2986
+ "Select an option at Supported account types.<br><strong><u>Important:</u></"
2987
+ "strong> On our Settings tab, you will need to select the Audience depending "
2988
+ "on the selected value! If you are not sure what to choose, then %1$shere%2$s "
2989
+ "you can learn more."
2990
  msgstr ""
2991
 
2992
  #, fuzzy
3049
  msgid "Client secret"
3050
  msgstr "Client Secret"
3051
 
3052
+ msgid "Audience"
3053
+ msgstr ""
3054
+
3055
+ msgid ""
3056
+ "Accounts in any organizational directory (Any Azure AD directory - "
3057
+ "Multitenant)"
3058
+ msgstr ""
3059
+
3060
+ msgid ""
3061
+ "Accounts in any organizational directory (Any Azure AD directory - "
3062
+ "Multitenant) and personal Microsoft accounts (e.g. Skype, Xbox)"
3063
+ msgstr ""
3064
+
3065
+ msgid "Personal Microsoft accounts only"
3066
+ msgstr ""
3067
+
3068
+ msgid ""
3069
+ "Only users in an organizational directory from a particular Azure AD tenant:"
3070
+ msgstr ""
3071
+
3072
+ #, php-format
3073
+ msgid ""
3074
+ "The selected value will define the supported account types. %1$sLearn more."
3075
+ "%2$s"
3076
+ msgstr ""
3077
+
3078
+ #, fuzzy
3079
+ #| msgid "Authentication error"
3080
+ msgid "Authorization Prompt"
3081
+ msgstr "Hitelesítési hiba"
3082
+
3083
+ msgid "Display account select modal"
3084
+ msgstr ""
3085
+
3086
+ msgid "Force user to enter login credentials on each login"
3087
+ msgstr ""
3088
+
3089
+ msgid "Display authorization and authentication dialog only when necessary"
3090
+ msgstr ""
3091
+
3092
  #, fuzzy
3093
  #| msgid "Continue with <b>Yahoo</b>"
3094
  msgid "Continue with <b>Microsoft</b>"
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: 2021-09-13 20:37+0200\n"
5
- "PO-Revision-Date: 2021-09-13 20:42+0200\n"
6
  "Last-Translator: \n"
7
  "Language-Team: nextend-facebook-connect\n"
8
  "Language: it_IT\n"
@@ -213,6 +213,16 @@ msgid ""
213
  "information please check our %2$s %1$s compatibility tutorial%3$s!"
214
  msgstr ""
215
 
 
 
 
 
 
 
 
 
 
 
216
  msgid "You have logged in successfully."
217
  msgstr "Ti sei loggato."
218
 
@@ -401,6 +411,9 @@ msgstr "Form di login"
401
  msgid "Comment"
402
  msgstr "Commento"
403
 
 
 
 
404
  msgid "Docs"
405
  msgstr "Docs"
406
 
@@ -720,6 +733,43 @@ msgstr "Gli utenti devono essere registrati e loggati per commentare"
720
  msgid "Button style"
721
  msgstr "Stile bottone"
722
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
723
  msgid "No Connect button in Login form"
724
  msgstr "Non connettere bottone nel form di Login"
725
 
@@ -735,6 +785,26 @@ msgstr ""
735
  msgid "Register form button style"
736
  msgstr "Stile del bottone del form registrati"
737
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
738
  msgid "Target window"
739
  msgstr "Finestra target"
740
 
@@ -805,9 +875,6 @@ msgstr ""
805
  "%2$s Prima crea una nuova pagina e inserisci il seguente shortcode: %1$s, "
806
  "dopo seleziona una voce dal menù sopra"
807
 
808
- msgid "Usage:"
809
- msgstr "Utilizzo:"
810
-
811
  #, php-format
812
  msgid ""
813
  "%1$s You won't be able to reach the selected page unless a social login/"
@@ -816,9 +883,6 @@ msgstr ""
816
  "%1$s Non potrai raggiungere la pagina selezionata fino a quando un login, o "
817
  "un accesso social non avvengono."
818
 
819
- msgid "Important:"
820
- msgstr "Importante:"
821
-
822
  msgid "OAuth redirect uri proxy page"
823
  msgstr "Pagina proxy OAuth redirect uri"
824
 
@@ -1206,6 +1270,12 @@ msgstr "Please update %1$s to version %2$s or newer."
1206
  msgid "Update now!"
1207
  msgstr "Aggiorna adesso!"
1208
 
 
 
 
 
 
 
1209
  msgid "Social Login"
1210
  msgstr "Social Login"
1211
 
@@ -2450,6 +2520,106 @@ msgstr ""
2450
  msgid "Apple Credentials"
2451
  msgstr "Credenziali Apple"
2452
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2453
  #, php-format
2454
  msgid "Click on the name of your %s App."
2455
  msgstr "Clicca sul nome della tua %s App."
@@ -2750,6 +2920,32 @@ msgstr ""
2750
  msgid "Channel Secret"
2751
  msgstr "Client Secret"
2752
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2753
  #, fuzzy
2754
  #| msgid "Continue with <b>LinkedIn</b>"
2755
  msgid "Continue with <b>Line</b>"
@@ -2910,9 +3106,12 @@ msgid "Fill the \"<b>Name</b>\" field with your App Name."
2910
  msgstr ""
2911
  "Compila il campo \"<b>Domini</b>\" col nome del tuo dominio, come: <b>%s</b>"
2912
 
 
2913
  msgid ""
2914
- "Choose \"<b>Personal Microsoft accounts only</b>\" from the Supported "
2915
- "account types."
 
 
2916
  msgstr ""
2917
 
2918
  #, fuzzy
@@ -2982,6 +3181,46 @@ msgstr ""
2982
  msgid "Client secret"
2983
  msgstr "Client Secret"
2984
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2985
  #, fuzzy
2986
  #| msgid "Continue with <b>Yahoo</b>"
2987
  msgid "Continue with <b>Microsoft</b>"
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: nextend-facebook-connect\n"
4
+ "POT-Creation-Date: 2021-10-13 19:51+0200\n"
5
+ "PO-Revision-Date: 2021-10-13 19:51+0200\n"
6
  "Last-Translator: \n"
7
  "Language-Team: nextend-facebook-connect\n"
8
  "Language: it_IT\n"
213
  "information please check our %2$s %1$s compatibility tutorial%3$s!"
214
  msgstr ""
215
 
216
+ #, php-format
217
+ msgid ""
218
+ "<p style=\"max-width:55em;\"><strong><u>Warning</u></strong>: Providers "
219
+ "change the App setup process quite often, which means some steps below might "
220
+ "not be accurate. If you see significant difference in the written "
221
+ "instructions and what you see at the provider, feel free to %1$sreport it"
222
+ "%2$s, so we can check and update the instructions.<br><strong>Last updated:</"
223
+ "strong> %3$s.</p>"
224
+ msgstr ""
225
+
226
  msgid "You have logged in successfully."
227
  msgstr "Ti sei loggato."
228
 
411
  msgid "Comment"
412
  msgstr "Commento"
413
 
414
+ msgid "Custom Actions"
415
+ msgstr ""
416
+
417
  msgid "Docs"
418
  msgstr "Docs"
419
 
733
  msgid "Button style"
734
  msgstr "Stile bottone"
735
 
736
+ #, php-format
737
+ msgid "%1$s Add your custom actions here. One action per line."
738
+ msgstr ""
739
+
740
+ msgid "Usage:"
741
+ msgstr "Utilizzo:"
742
+
743
+ #, php-format
744
+ msgid ""
745
+ "%1$s The HTML of the social buttons will be added at the place where the "
746
+ "action is fired."
747
+ msgstr ""
748
+
749
+ msgid "Important:"
750
+ msgstr "Importante:"
751
+
752
+ #, php-format
753
+ msgid ""
754
+ "If you %1$sexperience problems%2$s because of this feature, you can disable "
755
+ "it by defining the %3$s constant."
756
+ msgstr ""
757
+
758
+ #, fuzzy
759
+ #| msgid "Login layout"
760
+ msgid "Button layout"
761
+ msgstr "Layout del login"
762
+
763
+ #, fuzzy
764
+ #| msgid "Default with separator"
765
+ msgid "Default with top separator"
766
+ msgstr "Default con separatore"
767
+
768
+ #, fuzzy
769
+ #| msgid "Default with separator"
770
+ msgid "Default with bottom separator"
771
+ msgstr "Default con separatore"
772
+
773
  msgid "No Connect button in Login form"
774
  msgstr "Non connettere bottone nel form di Login"
775
 
785
  msgid "Register form button style"
786
  msgstr "Stile del bottone del form registrati"
787
 
788
+ #, fuzzy
789
+ #| msgid "Checkout for WooCommerce"
790
+ msgid "Checkout form"
791
+ msgstr "Checkout per WooCommerce"
792
+
793
+ #, fuzzy
794
+ #| msgid "No Connect button in Login form"
795
+ msgid "No Connect button in Checkout form"
796
+ msgstr "Non connettere bottone nel form di Login"
797
+
798
+ #, fuzzy
799
+ #| msgid "Login form button style"
800
+ msgid "Checkout form button style"
801
+ msgstr "Stile del bottone del form di login"
802
+
803
+ #, fuzzy
804
+ #| msgid "Register layout"
805
+ msgid "Checkout layout"
806
+ msgstr "Layout registrazione"
807
+
808
  msgid "Target window"
809
  msgstr "Finestra target"
810
 
875
  "%2$s Prima crea una nuova pagina e inserisci il seguente shortcode: %1$s, "
876
  "dopo seleziona una voce dal menù sopra"
877
 
 
 
 
878
  #, php-format
879
  msgid ""
880
  "%1$s You won't be able to reach the selected page unless a social login/"
883
  "%1$s Non potrai raggiungere la pagina selezionata fino a quando un login, o "
884
  "un accesso social non avvengono."
885
 
 
 
 
886
  msgid "OAuth redirect uri proxy page"
887
  msgstr "Pagina proxy OAuth redirect uri"
888
 
1270
  msgid "Update now!"
1271
  msgstr "Aggiorna adesso!"
1272
 
1273
+ msgid "Hold On"
1274
+ msgstr ""
1275
+
1276
+ msgid "You are being redirected to another page,<br>it may take a few seconds."
1277
+ msgstr ""
1278
+
1279
  msgid "Social Login"
1280
  msgstr "Social Login"
1281
 
2520
  msgid "Apple Credentials"
2521
  msgstr "Credenziali Apple"
2522
 
2523
+ #, php-format
2524
+ msgid ""
2525
+ "If you are not logged in yet, then log in with your %s credentials and visit "
2526
+ "the link above again."
2527
+ msgstr ""
2528
+
2529
+ #, php-format
2530
+ msgid ""
2531
+ "Select your %s App and click on the “<b>%2$s</b>” menu point under the "
2532
+ "Settings section on the left side."
2533
+ msgstr ""
2534
+
2535
+ #, fuzzy
2536
+ #| msgid ""
2537
+ #| "Add the following URL to the \"<b>Redirect URLs</b>\" field: <b>%s</b>"
2538
+ msgid "Add the following URL in the \"<b>Redirects</b>\" field:"
2539
+ msgstr "Aggiungi l'URL seguente nel campo \"<b>Redirect URLs</b>\": <b>%s</b>"
2540
+
2541
+ #, fuzzy
2542
+ #| msgid "Click on the \"<b>Create New Application</b>\" button."
2543
+ msgid "Click the \"<b>New Application</b>\" button."
2544
+ msgstr "Clicca sul bottone \"<b>Crea Nuova Applicazione</b>\"."
2545
+
2546
+ #, fuzzy
2547
+ #| msgid ""
2548
+ #| "Fill the \"<b>App Name</b>\" field and click \"<b>Create App</b>\" button."
2549
+ msgid "Fill the \"<b>Name</b>\" field and click the \"<b>Create</b>\" button."
2550
+ msgstr ""
2551
+ "Compila il campo \"<b>Nome App</b>\" e clicca il bottone \"<b>Crea App</b>\"."
2552
+
2553
+ msgid ""
2554
+ "Optional: Select an \"<b>App Icon</b>\" and add a \"<b>Terms of Service URL</"
2555
+ "b>\" and \"<b>Privacy Policy URL</b>\"."
2556
+ msgstr ""
2557
+
2558
+ #, fuzzy, php-format
2559
+ #| msgid ""
2560
+ #| "On the top left side, click on the “<b>%1$s</b>” menu point, then click "
2561
+ #| "“<b>%2$s</b>”"
2562
+ msgid ""
2563
+ "On the left side, click on the “<b>%1$s</b>” menu point in the Settings."
2564
+ msgstr ""
2565
+ "In alto a sinistra, clicca nel menù su “<b>%1$s</b>”, quindi clicca “<b>"
2566
+ "%2$s</b>”"
2567
+
2568
+ #, fuzzy
2569
+ #| msgid ""
2570
+ #| "Add the following URL to the \"<b>Redirect URLs</b>\" field: <b>%s</b>"
2571
+ msgid "Add the following URL to the \"<b>Redirects</b>\" field:"
2572
+ msgstr "Aggiungi l'URL seguente nel campo \"<b>Redirect URLs</b>\": <b>%s</b>"
2573
+
2574
+ #, fuzzy
2575
+ #| msgid "Click on the \"<b>Save Changes</b>\" button."
2576
+ msgid "Click the \"<b>Save Changes</b>\" button."
2577
+ msgstr "Clicca sul bottone \"<b>Salva Modifiche</b>\"."
2578
+
2579
+ #, fuzzy
2580
+ #| msgid ""
2581
+ #| "Find the necessary <b>Client ID</b> and <b>Client Secret</b> at the "
2582
+ #| "middle of the page. These will be needed in the plugin's settings!"
2583
+ msgid ""
2584
+ "Copy the necessary \"<b>Client ID</b>\" and \"<b>Client Secret</b>\" values "
2585
+ "and fill these fields in the plugin settings!"
2586
+ msgstr ""
2587
+ "Cerca il <b>Client ID</b> and il <b>Client Secret</b>richiesti al centro "
2588
+ "della pagina. Questi saranno necessari nei settaggi del plugin!"
2589
+
2590
+ #, fuzzy
2591
+ #| msgid "Select account on each login"
2592
+ msgid "Force reauthorization on each login"
2593
+ msgstr "Scegli un account ad ogni accesso"
2594
+
2595
+ #, fuzzy
2596
+ #| msgid ""
2597
+ #| "Disable, when you don't want to see the account select prompt on each "
2598
+ #| "login."
2599
+ msgid "Disable, when you don't want to see the consent screen on each login."
2600
+ msgstr ""
2601
+ "Disabilita, quando non vuoi vedere la scelta dell'account ad ogni accesso."
2602
+
2603
+ #, fuzzy
2604
+ #| msgid "Continue with <b>Disqus</b>"
2605
+ msgid "Continue with <b>Discord</b>"
2606
+ msgstr "Continua con <b>Disqus</b>"
2607
+
2608
+ #, fuzzy
2609
+ #| msgid "Continue with <b>Disqus</b>"
2610
+ msgid "Sign up with <b>Discord</b>"
2611
+ msgstr "Continua con <b>Disqus</b>"
2612
+
2613
+ #, fuzzy
2614
+ #| msgid "Link account with <b>Disqus</b>"
2615
+ msgid "Link account with <b>Discord</b>"
2616
+ msgstr "Collega account con <b>Disqus</b>"
2617
+
2618
+ #, fuzzy
2619
+ #| msgid "Unlink account from <b>Disqus</b>"
2620
+ msgid "Unlink account from <b>Discord</b>"
2621
+ msgstr "Scollega account da <b>Disqus</b>"
2622
+
2623
  #, php-format
2624
  msgid "Click on the name of your %s App."
2625
  msgstr "Clicca sul nome della tua %s App."
2920
  msgid "Channel Secret"
2921
  msgstr "Client Secret"
2922
 
2923
+ #, fuzzy
2924
+ #| msgid ""
2925
+ #| "Disable, when you don't want to see the account select prompt on each "
2926
+ #| "login."
2927
+ msgid "Enable, when you want to see the consent screen on each login."
2928
+ msgstr ""
2929
+ "Disabilita, quando non vuoi vedere la scelta dell'account ad ogni accesso."
2930
+
2931
+ msgid "Add LINE Official Account as a friend"
2932
+ msgstr ""
2933
+
2934
+ msgid "Don't display"
2935
+ msgstr ""
2936
+
2937
+ msgid "Display the add friend option in the consent screen"
2938
+ msgstr ""
2939
+
2940
+ msgid "Opens a new screen with the add friend option after the consent screen"
2941
+ msgstr ""
2942
+
2943
+ #, php-format
2944
+ msgid ""
2945
+ "If you have a LINE Official Account, people can add it as a friend when they "
2946
+ "authorize your App. %1$sLearn more%2$s."
2947
+ msgstr ""
2948
+
2949
  #, fuzzy
2950
  #| msgid "Continue with <b>LinkedIn</b>"
2951
  msgid "Continue with <b>Line</b>"
3106
  msgstr ""
3107
  "Compila il campo \"<b>Domini</b>\" col nome del tuo dominio, come: <b>%s</b>"
3108
 
3109
+ #, php-format
3110
  msgid ""
3111
+ "Select an option at Supported account types.<br><strong><u>Important:</u></"
3112
+ "strong> On our Settings tab, you will need to select the Audience depending "
3113
+ "on the selected value! If you are not sure what to choose, then %1$shere%2$s "
3114
+ "you can learn more."
3115
  msgstr ""
3116
 
3117
  #, fuzzy
3181
  msgid "Client secret"
3182
  msgstr "Client Secret"
3183
 
3184
+ msgid "Audience"
3185
+ msgstr ""
3186
+
3187
+ msgid ""
3188
+ "Accounts in any organizational directory (Any Azure AD directory - "
3189
+ "Multitenant)"
3190
+ msgstr ""
3191
+
3192
+ msgid ""
3193
+ "Accounts in any organizational directory (Any Azure AD directory - "
3194
+ "Multitenant) and personal Microsoft accounts (e.g. Skype, Xbox)"
3195
+ msgstr ""
3196
+
3197
+ msgid "Personal Microsoft accounts only"
3198
+ msgstr ""
3199
+
3200
+ msgid ""
3201
+ "Only users in an organizational directory from a particular Azure AD tenant:"
3202
+ msgstr ""
3203
+
3204
+ #, php-format
3205
+ msgid ""
3206
+ "The selected value will define the supported account types. %1$sLearn more."
3207
+ "%2$s"
3208
+ msgstr ""
3209
+
3210
+ #, fuzzy
3211
+ #| msgid "Authentication error"
3212
+ msgid "Authorization Prompt"
3213
+ msgstr "Errore di autenticazione"
3214
+
3215
+ msgid "Display account select modal"
3216
+ msgstr ""
3217
+
3218
+ msgid "Force user to enter login credentials on each login"
3219
+ msgstr ""
3220
+
3221
+ msgid "Display authorization and authentication dialog only when necessary"
3222
+ msgstr ""
3223
+
3224
  #, fuzzy
3225
  #| msgid "Continue with <b>Yahoo</b>"
3226
  msgid "Continue with <b>Microsoft</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: 2021-09-13 20:38+0200\n"
5
- "PO-Revision-Date: 2021-09-13 20:42+0200\n"
6
  "Last-Translator: Erik Molenaar <info@erikmolenaar.nl>\n"
7
  "Language-Team: nextend-facebook-connect\n"
8
  "Language: nl_NL\n"
@@ -218,6 +218,16 @@ msgid ""
218
  "information please check our %2$s %1$s compatibility tutorial%3$s!"
219
  msgstr ""
220
 
 
 
 
 
 
 
 
 
 
 
221
  msgid "You have logged in successfully."
222
  msgstr "Je bent succesvol ingelogd."
223
 
@@ -409,6 +419,9 @@ msgstr "Loginformulier"
409
  msgid "Comment"
410
  msgstr "Reactie"
411
 
 
 
 
412
  msgid "Docs"
413
  msgstr "Documentatie"
414
 
@@ -730,6 +743,43 @@ msgstr ""
730
  msgid "Button style"
731
  msgstr "Knop stijl"
732
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
733
  msgid "No Connect button in Login form"
734
  msgstr "Geen Verbindingsknop in inlogformulier"
735
 
@@ -745,6 +795,24 @@ msgstr "Geen Verbindingsknop in het Registratieformulier"
745
  msgid "Register form button style"
746
  msgstr "Registratieformulier knopstijl"
747
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
748
  msgid "Target window"
749
  msgstr "Doelvenster"
750
 
@@ -819,9 +887,6 @@ msgstr ""
819
  "%2$s Maak eerst een nieuwe pagina aan en voeg de volgende shortcode toe: "
820
  "%1$s en selecteer dan deze pagina hierboven"
821
 
822
- msgid "Usage:"
823
- msgstr "Gebruik:"
824
-
825
  #, php-format
826
  msgid ""
827
  "%1$s You won't be able to reach the selected page unless a social login/"
@@ -830,9 +895,6 @@ msgstr ""
830
  "%1$s Je kunt de geselecteerde pagina niet bereiken tenzij er een social "
831
  "login/registratie plaatsvindt."
832
 
833
- msgid "Important:"
834
- msgstr "Let op:"
835
-
836
  msgid "OAuth redirect uri proxy page"
837
  msgstr "OAuth omleidings-uri proxy pagina"
838
 
@@ -1226,6 +1288,12 @@ msgstr "Gelieve %1$s bij te werken naar versie %2$s of nieuwer."
1226
  msgid "Update now!"
1227
  msgstr "Update nu!"
1228
 
 
 
 
 
 
 
1229
  msgid "Social Login"
1230
  msgstr "Social Login"
1231
 
@@ -2444,6 +2512,91 @@ msgstr ""
2444
  msgid "Apple Credentials"
2445
  msgstr ""
2446
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2447
  #, php-format
2448
  msgid "Click on the name of your %s App."
2449
  msgstr "Klik op de naam van je %s App."
@@ -2750,6 +2903,27 @@ msgstr ""
2750
  msgid "Channel Secret"
2751
  msgstr "Client Geheim"
2752
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2753
  #, fuzzy
2754
  #| msgid "Continue with <b>LinkedIn</b>"
2755
  msgid "Continue with <b>Line</b>"
@@ -2913,9 +3087,12 @@ msgstr "Klik op \"Opslaan\""
2913
  msgid "Fill the \"<b>Name</b>\" field with your App Name."
2914
  msgstr "Vul het veld \"Domeinen\" in met je domeinnaam zoals: <b>%s</b>"
2915
 
 
2916
  msgid ""
2917
- "Choose \"<b>Personal Microsoft accounts only</b>\" from the Supported "
2918
- "account types."
 
 
2919
  msgstr ""
2920
 
2921
  #, fuzzy
@@ -2982,6 +3159,46 @@ msgstr "Applicatie-ID"
2982
  msgid "Client secret"
2983
  msgstr "Client Geheim"
2984
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2985
  #, fuzzy
2986
  #| msgid "Continue with <b>Yahoo</b>"
2987
  msgid "Continue with <b>Microsoft</b>"
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: nextend-facebook-connect\n"
4
+ "POT-Creation-Date: 2021-10-13 19:51+0200\n"
5
+ "PO-Revision-Date: 2021-10-13 19:51+0200\n"
6
  "Last-Translator: Erik Molenaar <info@erikmolenaar.nl>\n"
7
  "Language-Team: nextend-facebook-connect\n"
8
  "Language: nl_NL\n"
218
  "information please check our %2$s %1$s compatibility tutorial%3$s!"
219
  msgstr ""
220
 
221
+ #, php-format
222
+ msgid ""
223
+ "<p style=\"max-width:55em;\"><strong><u>Warning</u></strong>: Providers "
224
+ "change the App setup process quite often, which means some steps below might "
225
+ "not be accurate. If you see significant difference in the written "
226
+ "instructions and what you see at the provider, feel free to %1$sreport it"
227
+ "%2$s, so we can check and update the instructions.<br><strong>Last updated:</"
228
+ "strong> %3$s.</p>"
229
+ msgstr ""
230
+
231
  msgid "You have logged in successfully."
232
  msgstr "Je bent succesvol ingelogd."
233
 
419
  msgid "Comment"
420
  msgstr "Reactie"
421
 
422
+ msgid "Custom Actions"
423
+ msgstr ""
424
+
425
  msgid "Docs"
426
  msgstr "Documentatie"
427
 
743
  msgid "Button style"
744
  msgstr "Knop stijl"
745
 
746
+ #, php-format
747
+ msgid "%1$s Add your custom actions here. One action per line."
748
+ msgstr ""
749
+
750
+ msgid "Usage:"
751
+ msgstr "Gebruik:"
752
+
753
+ #, php-format
754
+ msgid ""
755
+ "%1$s The HTML of the social buttons will be added at the place where the "
756
+ "action is fired."
757
+ msgstr ""
758
+
759
+ msgid "Important:"
760
+ msgstr "Let op:"
761
+
762
+ #, php-format
763
+ msgid ""
764
+ "If you %1$sexperience problems%2$s because of this feature, you can disable "
765
+ "it by defining the %3$s constant."
766
+ msgstr ""
767
+
768
+ #, fuzzy
769
+ #| msgid "Login layout"
770
+ msgid "Button layout"
771
+ msgstr "Inlog-layout"
772
+
773
+ #, fuzzy
774
+ #| msgid "Below with separator"
775
+ msgid "Default with top separator"
776
+ msgstr "Hieronder met separator"
777
+
778
+ #, fuzzy
779
+ #| msgid "Below with separator"
780
+ msgid "Default with bottom separator"
781
+ msgstr "Hieronder met separator"
782
+
783
  msgid "No Connect button in Login form"
784
  msgstr "Geen Verbindingsknop in inlogformulier"
785
 
795
  msgid "Register form button style"
796
  msgstr "Registratieformulier knopstijl"
797
 
798
+ msgid "Checkout form"
799
+ msgstr ""
800
+
801
+ #, fuzzy
802
+ #| msgid "No Connect button in Login form"
803
+ msgid "No Connect button in Checkout form"
804
+ msgstr "Geen Verbindingsknop in inlogformulier"
805
+
806
+ #, fuzzy
807
+ #| msgid "Login form button style"
808
+ msgid "Checkout form button style"
809
+ msgstr "Aanmeldingsformulier knopstijl"
810
+
811
+ #, fuzzy
812
+ #| msgid "Register layout"
813
+ msgid "Checkout layout"
814
+ msgstr "Registratie layout"
815
+
816
  msgid "Target window"
817
  msgstr "Doelvenster"
818
 
887
  "%2$s Maak eerst een nieuwe pagina aan en voeg de volgende shortcode toe: "
888
  "%1$s en selecteer dan deze pagina hierboven"
889
 
 
 
 
890
  #, php-format
891
  msgid ""
892
  "%1$s You won't be able to reach the selected page unless a social login/"
895
  "%1$s Je kunt de geselecteerde pagina niet bereiken tenzij er een social "
896
  "login/registratie plaatsvindt."
897
 
 
 
 
898
  msgid "OAuth redirect uri proxy page"
899
  msgstr "OAuth omleidings-uri proxy pagina"
900
 
1288
  msgid "Update now!"
1289
  msgstr "Update nu!"
1290
 
1291
+ msgid "Hold On"
1292
+ msgstr ""
1293
+
1294
+ msgid "You are being redirected to another page,<br>it may take a few seconds."
1295
+ msgstr ""
1296
+
1297
  msgid "Social Login"
1298
  msgstr "Social Login"
1299
 
2512
  msgid "Apple Credentials"
2513
  msgstr ""
2514
 
2515
+ #, php-format
2516
+ msgid ""
2517
+ "If you are not logged in yet, then log in with your %s credentials and visit "
2518
+ "the link above again."
2519
+ msgstr ""
2520
+
2521
+ #, php-format
2522
+ msgid ""
2523
+ "Select your %s App and click on the “<b>%2$s</b>” menu point under the "
2524
+ "Settings section on the left side."
2525
+ msgstr ""
2526
+
2527
+ #, fuzzy
2528
+ #| msgid "Add the following URL to the \"Redirect URLs\" field <b>%s</b> "
2529
+ msgid "Add the following URL in the \"<b>Redirects</b>\" field:"
2530
+ msgstr "Voeg de volgende URL toe aan het veld \"Omleidings-URLs\" <b>%s</b> "
2531
+
2532
+ #, fuzzy
2533
+ #| msgid "Click on the \"Create New Application\" button."
2534
+ msgid "Click the \"<b>New Application</b>\" button."
2535
+ msgstr "Klik op de knop \"Nieuwe Applicatie Maken\"."
2536
+
2537
+ #, fuzzy
2538
+ #| msgid "Fill the \"App Name\" field and click \"Create App\" button."
2539
+ msgid "Fill the \"<b>Name</b>\" field and click the \"<b>Create</b>\" button."
2540
+ msgstr "Vul het veld \"App Naam\" in en klik op de knop \"Maak App\"."
2541
+
2542
+ msgid ""
2543
+ "Optional: Select an \"<b>App Icon</b>\" and add a \"<b>Terms of Service URL</"
2544
+ "b>\" and \"<b>Privacy Policy URL</b>\"."
2545
+ msgstr ""
2546
+
2547
+ #, fuzzy, php-format
2548
+ #| msgid "Click on the \"Credentials\" in the left hand menu"
2549
+ msgid ""
2550
+ "On the left side, click on the “<b>%1$s</b>” menu point in the Settings."
2551
+ msgstr "Klik op de \"Inloggegevens\" in het linker menu"
2552
+
2553
+ #, fuzzy
2554
+ #| msgid "Add the following URL to the \"Redirect URLs\" field <b>%s</b> "
2555
+ msgid "Add the following URL to the \"<b>Redirects</b>\" field:"
2556
+ msgstr "Voeg de volgende URL toe aan het veld \"Omleidings-URLs\" <b>%s</b> "
2557
+
2558
+ #, fuzzy
2559
+ #| msgid "Click on the \"Save Changes\" button."
2560
+ msgid "Click the \"<b>Save Changes</b>\" button."
2561
+ msgstr "Klik op de knop \"Wijzigingen Opslaan\"."
2562
+
2563
+ #, fuzzy
2564
+ #| msgid ""
2565
+ #| "Find the necessary \"Client ID\" and \"Client Secret\" at the middle of "
2566
+ #| "the page, under the \"Web Settings\" tab."
2567
+ msgid ""
2568
+ "Copy the necessary \"<b>Client ID</b>\" and \"<b>Client Secret</b>\" values "
2569
+ "and fill these fields in the plugin settings!"
2570
+ msgstr ""
2571
+ "Vind de benodigde \"Client ID\" en \"Client Geheim\" in het midden van de "
2572
+ "pagina, onder het tabblad \"Web Instelling\"."
2573
+
2574
+ msgid "Force reauthorization on each login"
2575
+ msgstr ""
2576
+
2577
+ msgid "Disable, when you don't want to see the consent screen on each login."
2578
+ msgstr ""
2579
+
2580
+ #, fuzzy
2581
+ #| msgid "Continue with <b>Disqus</b>"
2582
+ msgid "Continue with <b>Discord</b>"
2583
+ msgstr "Doorgaan met <b>Disqus</b>"
2584
+
2585
+ #, fuzzy
2586
+ #| msgid "Continue with <b>Disqus</b>"
2587
+ msgid "Sign up with <b>Discord</b>"
2588
+ msgstr "Doorgaan met <b>Disqus</b>"
2589
+
2590
+ #, fuzzy
2591
+ #| msgid "Link account with <b>Disqus</b>"
2592
+ msgid "Link account with <b>Discord</b>"
2593
+ msgstr "Koppel met <b>Disqus</b>"
2594
+
2595
+ #, fuzzy
2596
+ #| msgid "Unlink account from <b>Disqus</b>"
2597
+ msgid "Unlink account from <b>Discord</b>"
2598
+ msgstr "Ontkoppel van <b>Disqus</b>"
2599
+
2600
  #, php-format
2601
  msgid "Click on the name of your %s App."
2602
  msgstr "Klik op de naam van je %s App."
2903
  msgid "Channel Secret"
2904
  msgstr "Client Geheim"
2905
 
2906
+ msgid "Enable, when you want to see the consent screen on each login."
2907
+ msgstr ""
2908
+
2909
+ msgid "Add LINE Official Account as a friend"
2910
+ msgstr ""
2911
+
2912
+ msgid "Don't display"
2913
+ msgstr ""
2914
+
2915
+ msgid "Display the add friend option in the consent screen"
2916
+ msgstr ""
2917
+
2918
+ msgid "Opens a new screen with the add friend option after the consent screen"
2919
+ msgstr ""
2920
+
2921
+ #, php-format
2922
+ msgid ""
2923
+ "If you have a LINE Official Account, people can add it as a friend when they "
2924
+ "authorize your App. %1$sLearn more%2$s."
2925
+ msgstr ""
2926
+
2927
  #, fuzzy
2928
  #| msgid "Continue with <b>LinkedIn</b>"
2929
  msgid "Continue with <b>Line</b>"
3087
  msgid "Fill the \"<b>Name</b>\" field with your App Name."
3088
  msgstr "Vul het veld \"Domeinen\" in met je domeinnaam zoals: <b>%s</b>"
3089
 
3090
+ #, php-format
3091
  msgid ""
3092
+ "Select an option at Supported account types.<br><strong><u>Important:</u></"
3093
+ "strong> On our Settings tab, you will need to select the Audience depending "
3094
+ "on the selected value! If you are not sure what to choose, then %1$shere%2$s "
3095
+ "you can learn more."
3096
  msgstr ""
3097
 
3098
  #, fuzzy
3159
  msgid "Client secret"
3160
  msgstr "Client Geheim"
3161
 
3162
+ msgid "Audience"
3163
+ msgstr ""
3164
+
3165
+ msgid ""
3166
+ "Accounts in any organizational directory (Any Azure AD directory - "
3167
+ "Multitenant)"
3168
+ msgstr ""
3169
+
3170
+ msgid ""
3171
+ "Accounts in any organizational directory (Any Azure AD directory - "
3172
+ "Multitenant) and personal Microsoft accounts (e.g. Skype, Xbox)"
3173
+ msgstr ""
3174
+
3175
+ msgid "Personal Microsoft accounts only"
3176
+ msgstr ""
3177
+
3178
+ msgid ""
3179
+ "Only users in an organizational directory from a particular Azure AD tenant:"
3180
+ msgstr ""
3181
+
3182
+ #, php-format
3183
+ msgid ""
3184
+ "The selected value will define the supported account types. %1$sLearn more."
3185
+ "%2$s"
3186
+ msgstr ""
3187
+
3188
+ #, fuzzy
3189
+ #| msgid "Authentication error"
3190
+ msgid "Authorization Prompt"
3191
+ msgstr "Authenticatiefout"
3192
+
3193
+ msgid "Display account select modal"
3194
+ msgstr ""
3195
+
3196
+ msgid "Force user to enter login credentials on each login"
3197
+ msgstr ""
3198
+
3199
+ msgid "Display authorization and authentication dialog only when necessary"
3200
+ msgstr ""
3201
+
3202
  #, fuzzy
3203
  #| msgid "Continue with <b>Yahoo</b>"
3204
  msgid "Continue with <b>Microsoft</b>"
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: 2021-09-13 20:40+0200\n"
5
- "PO-Revision-Date: 2021-09-13 20:43+0200\n"
6
  "Last-Translator: \n"
7
  "Language-Team: renato@modernstuff.com.br\n"
8
  "Language: pt_BR\n"
@@ -227,6 +227,16 @@ msgid ""
227
  "information please check our %2$s %1$s compatibility tutorial%3$s!"
228
  msgstr ""
229
 
 
 
 
 
 
 
 
 
 
 
230
  msgid "You have logged in successfully."
231
  msgstr "Você entrou com sucesso."
232
 
@@ -415,6 +425,9 @@ msgstr "Formulário de login"
415
  msgid "Comment"
416
  msgstr "Comentário"
417
 
 
 
 
418
  msgid "Docs"
419
  msgstr "Docs"
420
 
@@ -748,6 +761,47 @@ msgstr "Os utilizadores devem estar registrados e logados para comentar"
748
  msgid "Button style"
749
  msgstr "Estilo do botão:"
750
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
751
  msgid "No Connect button in Login form"
752
  msgstr "Nenhum botão conectar no formulário de Login"
753
 
@@ -763,6 +817,24 @@ msgstr "Nenhum botão Conectar no formulário de login"
763
  msgid "Register form button style"
764
  msgstr "Estilo do botão do formulário de login"
765
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
766
  msgid "Target window"
767
  msgstr "Janela de destino"
768
 
@@ -844,22 +916,12 @@ msgstr ""
844
  "Primeiro crie uma nova página para o fluxo de registro e insira o seguinte "
845
  "shortcode: %1$s em seguida, selecione esta página acima"
846
 
847
- #, fuzzy
848
- #| msgid "Usage"
849
- msgid "Usage:"
850
- msgstr "Utilização"
851
-
852
  #, php-format
853
  msgid ""
854
  "%1$s You won't be able to reach the selected page unless a social login/"
855
  "registration happens."
856
  msgstr ""
857
 
858
- #, fuzzy
859
- #| msgid "Import"
860
- msgid "Important:"
861
- msgstr "Importar"
862
-
863
  msgid "OAuth redirect uri proxy page"
864
  msgstr "Página do proxy uri do redirecionamento OAuth"
865
 
@@ -1266,6 +1328,12 @@ msgstr "Por favor, atualize %1$s para versão %2$s ou mais recente."
1266
  msgid "Update now!"
1267
  msgstr "Atualizar agora!"
1268
 
 
 
 
 
 
 
1269
  msgid "Social Login"
1270
  msgstr "Login Social"
1271
 
@@ -2459,6 +2527,92 @@ msgstr ""
2459
  msgid "Apple Credentials"
2460
  msgstr ""
2461
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2462
  #, php-format
2463
  msgid "Click on the name of your %s App."
2464
  msgstr "Clique no nome do seu %s aplicativo."
@@ -2747,6 +2901,27 @@ msgstr ""
2747
  msgid "Channel Secret"
2748
  msgstr "Senha Consumidor"
2749
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2750
  #, fuzzy
2751
  #| msgid "Continue with <b>LinkedIn</b>"
2752
  msgid "Continue with <b>Line</b>"
@@ -2902,9 +3077,12 @@ msgid "Fill the \"<b>Name</b>\" field with your App Name."
2902
  msgstr ""
2903
  "Preencha o campo \"Domínio base\" com seu domínio, provavelmente: <b>%s</b>"
2904
 
 
2905
  msgid ""
2906
- "Choose \"<b>Personal Microsoft accounts only</b>\" from the Supported "
2907
- "account types."
 
 
2908
  msgstr ""
2909
 
2910
  #, fuzzy
@@ -2971,6 +3149,46 @@ msgstr "ID do aplicativo"
2971
  msgid "Client secret"
2972
  msgstr "Chave do Cliente"
2973
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2974
  #, fuzzy
2975
  #| msgid "Continue with <b>Yahoo</b>"
2976
  msgid "Continue with <b>Microsoft</b>"
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: nextend-facebook-connect\n"
4
+ "POT-Creation-Date: 2021-10-13 19:51+0200\n"
5
+ "PO-Revision-Date: 2021-10-13 19:51+0200\n"
6
  "Last-Translator: \n"
7
  "Language-Team: renato@modernstuff.com.br\n"
8
  "Language: pt_BR\n"
227
  "information please check our %2$s %1$s compatibility tutorial%3$s!"
228
  msgstr ""
229
 
230
+ #, php-format
231
+ msgid ""
232
+ "<p style=\"max-width:55em;\"><strong><u>Warning</u></strong>: Providers "
233
+ "change the App setup process quite often, which means some steps below might "
234
+ "not be accurate. If you see significant difference in the written "
235
+ "instructions and what you see at the provider, feel free to %1$sreport it"
236
+ "%2$s, so we can check and update the instructions.<br><strong>Last updated:</"
237
+ "strong> %3$s.</p>"
238
+ msgstr ""
239
+
240
  msgid "You have logged in successfully."
241
  msgstr "Você entrou com sucesso."
242
 
425
  msgid "Comment"
426
  msgstr "Comentário"
427
 
428
+ msgid "Custom Actions"
429
+ msgstr ""
430
+
431
  msgid "Docs"
432
  msgstr "Docs"
433
 
761
  msgid "Button style"
762
  msgstr "Estilo do botão:"
763
 
764
+ #, php-format
765
+ msgid "%1$s Add your custom actions here. One action per line."
766
+ msgstr ""
767
+
768
+ #, fuzzy
769
+ #| msgid "Usage"
770
+ msgid "Usage:"
771
+ msgstr "Utilização"
772
+
773
+ #, php-format
774
+ msgid ""
775
+ "%1$s The HTML of the social buttons will be added at the place where the "
776
+ "action is fired."
777
+ msgstr ""
778
+
779
+ #, fuzzy
780
+ #| msgid "Import"
781
+ msgid "Important:"
782
+ msgstr "Importar"
783
+
784
+ #, php-format
785
+ msgid ""
786
+ "If you %1$sexperience problems%2$s because of this feature, you can disable "
787
+ "it by defining the %3$s constant."
788
+ msgstr ""
789
+
790
+ #, fuzzy
791
+ #| msgid "Login layout"
792
+ msgid "Button layout"
793
+ msgstr "Layout de login"
794
+
795
+ #, fuzzy
796
+ #| msgid "Below with separator"
797
+ msgid "Default with top separator"
798
+ msgstr "Abaixo com separador"
799
+
800
+ #, fuzzy
801
+ #| msgid "Below with separator"
802
+ msgid "Default with bottom separator"
803
+ msgstr "Abaixo com separador"
804
+
805
  msgid "No Connect button in Login form"
806
  msgstr "Nenhum botão conectar no formulário de Login"
807
 
817
  msgid "Register form button style"
818
  msgstr "Estilo do botão do formulário de login"
819
 
820
+ msgid "Checkout form"
821
+ msgstr ""
822
+
823
+ #, fuzzy
824
+ #| msgid "No Connect button in Login form"
825
+ msgid "No Connect button in Checkout form"
826
+ msgstr "Nenhum botão conectar no formulário de Login"
827
+
828
+ #, fuzzy
829
+ #| msgid "Login form button style"
830
+ msgid "Checkout form button style"
831
+ msgstr "Estilo do botão do formulário de login"
832
+
833
+ #, fuzzy
834
+ #| msgid "Register layout"
835
+ msgid "Checkout layout"
836
+ msgstr "Cadastrar layout"
837
+
838
  msgid "Target window"
839
  msgstr "Janela de destino"
840
 
916
  "Primeiro crie uma nova página para o fluxo de registro e insira o seguinte "
917
  "shortcode: %1$s em seguida, selecione esta página acima"
918
 
 
 
 
 
 
919
  #, php-format
920
  msgid ""
921
  "%1$s You won't be able to reach the selected page unless a social login/"
922
  "registration happens."
923
  msgstr ""
924
 
 
 
 
 
 
925
  msgid "OAuth redirect uri proxy page"
926
  msgstr "Página do proxy uri do redirecionamento OAuth"
927
 
1328
  msgid "Update now!"
1329
  msgstr "Atualizar agora!"
1330
 
1331
+ msgid "Hold On"
1332
+ msgstr ""
1333
+
1334
+ msgid "You are being redirected to another page,<br>it may take a few seconds."
1335
+ msgstr ""
1336
+
1337
  msgid "Social Login"
1338
  msgstr "Login Social"
1339
 
2527
  msgid "Apple Credentials"
2528
  msgstr ""
2529
 
2530
+ #, php-format
2531
+ msgid ""
2532
+ "If you are not logged in yet, then log in with your %s credentials and visit "
2533
+ "the link above again."
2534
+ msgstr ""
2535
+
2536
+ #, php-format
2537
+ msgid ""
2538
+ "Select your %s App and click on the “<b>%2$s</b>” menu point under the "
2539
+ "Settings section on the left side."
2540
+ msgstr ""
2541
+
2542
+ #, fuzzy
2543
+ #| msgid "Add the following URL to the \"Redirect URLs\" field <b>%s</b> "
2544
+ msgid "Add the following URL in the \"<b>Redirects</b>\" field:"
2545
+ msgstr "Adicione a seguinte URL ao campo \"Redirecionar URLs\"<b>%s</b> "
2546
+
2547
+ #, fuzzy
2548
+ #| msgid "Click on the \"Create New Application\" button."
2549
+ msgid "Click the \"<b>New Application</b>\" button."
2550
+ msgstr "Clique no botão \"Criar novo aplicativo\"."
2551
+
2552
+ #, fuzzy
2553
+ #| msgid "Fill the \"App Name\" field and click \"Create App\" button."
2554
+ msgid "Fill the \"<b>Name</b>\" field and click the \"<b>Create</b>\" button."
2555
+ msgstr ""
2556
+ "Preencha o campo \"nome do aplicativo\" e clique no botão \"criar aplicativo"
2557
+ "\"."
2558
+
2559
+ msgid ""
2560
+ "Optional: Select an \"<b>App Icon</b>\" and add a \"<b>Terms of Service URL</"
2561
+ "b>\" and \"<b>Privacy Policy URL</b>\"."
2562
+ msgstr ""
2563
+
2564
+ #, fuzzy, php-format
2565
+ #| msgid "Click on the \"Credentials\" in the left hand menu"
2566
+ msgid ""
2567
+ "On the left side, click on the “<b>%1$s</b>” menu point in the Settings."
2568
+ msgstr "Clique em \"Credenciais\"no menu à esquerda"
2569
+
2570
+ #, fuzzy
2571
+ #| msgid "Add the following URL to the \"Redirect URLs\" field <b>%s</b> "
2572
+ msgid "Add the following URL to the \"<b>Redirects</b>\" field:"
2573
+ msgstr "Adicione a seguinte URL ao campo \"Redirecionar URLs\"<b>%s</b> "
2574
+
2575
+ #, fuzzy
2576
+ #| msgid "Click on \"Save Changes\""
2577
+ msgid "Click the \"<b>Save Changes</b>\" button."
2578
+ msgstr "Clique em \"Salvar Alterações\""
2579
+
2580
+ #, fuzzy
2581
+ #| msgid ""
2582
+ #| "Find the necessary \"Client ID\" and \"Client Secret\" at the middle of "
2583
+ #| "the page."
2584
+ msgid ""
2585
+ "Copy the necessary \"<b>Client ID</b>\" and \"<b>Client Secret</b>\" values "
2586
+ "and fill these fields in the plugin settings!"
2587
+ msgstr ""
2588
+ "Encontre o \"Client ID\" e \"Client Secret\" necessários no meio da página."
2589
+
2590
+ msgid "Force reauthorization on each login"
2591
+ msgstr ""
2592
+
2593
+ msgid "Disable, when you don't want to see the consent screen on each login."
2594
+ msgstr ""
2595
+
2596
+ #, fuzzy
2597
+ #| msgid "Continue with <b>Disqus</b>"
2598
+ msgid "Continue with <b>Discord</b>"
2599
+ msgstr "Continuar com <b>Disqus</b>"
2600
+
2601
+ #, fuzzy
2602
+ #| msgid "Continue with <b>Disqus</b>"
2603
+ msgid "Sign up with <b>Discord</b>"
2604
+ msgstr "Continuar com <b>Disqus</b>"
2605
+
2606
+ #, fuzzy
2607
+ #| msgid "Link account with <b>Disqus</b>"
2608
+ msgid "Link account with <b>Discord</b>"
2609
+ msgstr "Vincular conta com <b>Disqus</b>"
2610
+
2611
+ #, fuzzy
2612
+ #| msgid "Unlink account from <b>Disqus</b>"
2613
+ msgid "Unlink account from <b>Discord</b>"
2614
+ msgstr "Desvincular conta do <b>Disqus</b>"
2615
+
2616
  #, php-format
2617
  msgid "Click on the name of your %s App."
2618
  msgstr "Clique no nome do seu %s aplicativo."
2901
  msgid "Channel Secret"
2902
  msgstr "Senha Consumidor"
2903
 
2904
+ msgid "Enable, when you want to see the consent screen on each login."
2905
+ msgstr ""
2906
+
2907
+ msgid "Add LINE Official Account as a friend"
2908
+ msgstr ""
2909
+
2910
+ msgid "Don't display"
2911
+ msgstr ""
2912
+
2913
+ msgid "Display the add friend option in the consent screen"
2914
+ msgstr ""
2915
+
2916
+ msgid "Opens a new screen with the add friend option after the consent screen"
2917
+ msgstr ""
2918
+
2919
+ #, php-format
2920
+ msgid ""
2921
+ "If you have a LINE Official Account, people can add it as a friend when they "
2922
+ "authorize your App. %1$sLearn more%2$s."
2923
+ msgstr ""
2924
+
2925
  #, fuzzy
2926
  #| msgid "Continue with <b>LinkedIn</b>"
2927
  msgid "Continue with <b>Line</b>"
3077
  msgstr ""
3078
  "Preencha o campo \"Domínio base\" com seu domínio, provavelmente: <b>%s</b>"
3079
 
3080
+ #, php-format
3081
  msgid ""
3082
+ "Select an option at Supported account types.<br><strong><u>Important:</u></"
3083
+ "strong> On our Settings tab, you will need to select the Audience depending "
3084
+ "on the selected value! If you are not sure what to choose, then %1$shere%2$s "
3085
+ "you can learn more."
3086
  msgstr ""
3087
 
3088
  #, fuzzy
3149
  msgid "Client secret"
3150
  msgstr "Chave do Cliente"
3151
 
3152
+ msgid "Audience"
3153
+ msgstr ""
3154
+
3155
+ msgid ""
3156
+ "Accounts in any organizational directory (Any Azure AD directory - "
3157
+ "Multitenant)"
3158
+ msgstr ""
3159
+
3160
+ msgid ""
3161
+ "Accounts in any organizational directory (Any Azure AD directory - "
3162
+ "Multitenant) and personal Microsoft accounts (e.g. Skype, Xbox)"
3163
+ msgstr ""
3164
+
3165
+ msgid "Personal Microsoft accounts only"
3166
+ msgstr ""
3167
+
3168
+ msgid ""
3169
+ "Only users in an organizational directory from a particular Azure AD tenant:"
3170
+ msgstr ""
3171
+
3172
+ #, php-format
3173
+ msgid ""
3174
+ "The selected value will define the supported account types. %1$sLearn more."
3175
+ "%2$s"
3176
+ msgstr ""
3177
+
3178
+ #, fuzzy
3179
+ #| msgid "Authentication error"
3180
+ msgid "Authorization Prompt"
3181
+ msgstr "Erro de autenticação"
3182
+
3183
+ msgid "Display account select modal"
3184
+ msgstr ""
3185
+
3186
+ msgid "Force user to enter login credentials on each login"
3187
+ msgstr ""
3188
+
3189
+ msgid "Display authorization and authentication dialog only when necessary"
3190
+ msgstr ""
3191
+
3192
  #, fuzzy
3193
  #| msgid "Continue with <b>Yahoo</b>"
3194
  msgid "Continue with <b>Microsoft</b>"
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: 2021-09-13 20:40+0200\n"
5
- "PO-Revision-Date: 2021-09-13 20:40+0200\n"
6
  "Last-Translator: \n"
7
  "Language-Team: nextend-facebook-connect\n"
8
  "Language: ru\n"
@@ -179,6 +179,16 @@ msgid ""
179
  "information please check our %2$s %1$s compatibility tutorial%3$s!"
180
  msgstr ""
181
 
 
 
 
 
 
 
 
 
 
 
182
  msgid "You have logged in successfully."
183
  msgstr ""
184
 
@@ -362,6 +372,9 @@ msgstr ""
362
  msgid "Comment"
363
  msgstr ""
364
 
 
 
 
365
  msgid "Docs"
366
  msgstr ""
367
 
@@ -652,6 +665,37 @@ msgstr ""
652
  msgid "Button style"
653
  msgstr ""
654
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
655
  msgid "No Connect button in Login form"
656
  msgstr ""
657
 
@@ -667,6 +711,18 @@ msgstr ""
667
  msgid "Register form button style"
668
  msgstr ""
669
 
 
 
 
 
 
 
 
 
 
 
 
 
670
  msgid "Target window"
671
  msgstr ""
672
 
@@ -735,18 +791,12 @@ msgid ""
735
  "select this page above"
736
  msgstr ""
737
 
738
- msgid "Usage:"
739
- msgstr ""
740
-
741
  #, php-format
742
  msgid ""
743
  "%1$s You won't be able to reach the selected page unless a social login/"
744
  "registration happens."
745
  msgstr ""
746
 
747
- msgid "Important:"
748
- msgstr ""
749
-
750
  msgid "OAuth redirect uri proxy page"
751
  msgstr ""
752
 
@@ -1088,6 +1138,12 @@ msgstr ""
1088
  msgid "Update now!"
1089
  msgstr ""
1090
 
 
 
 
 
 
 
1091
  msgid "Social Login"
1092
  msgstr ""
1093
 
@@ -2062,6 +2118,73 @@ msgstr ""
2062
  msgid "Apple Credentials"
2063
  msgstr ""
2064
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2065
  #, php-format
2066
  msgid "Click on the name of your %s App."
2067
  msgstr ""
@@ -2277,6 +2400,27 @@ msgstr ""
2277
  msgid "Channel Secret"
2278
  msgstr ""
2279
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2280
  #, fuzzy
2281
  #| msgid "Continue with <b>LinkedIn</b>"
2282
  msgid "Continue with <b>Line</b>"
@@ -2396,9 +2540,12 @@ msgstr ""
2396
  msgid "Fill the \"<b>Name</b>\" field with your App Name."
2397
  msgstr ""
2398
 
 
2399
  msgid ""
2400
- "Choose \"<b>Personal Microsoft accounts only</b>\" from the Supported "
2401
- "account types."
 
 
2402
  msgstr ""
2403
 
2404
  msgid "Add the following URL to the \"<b>Redirect URI</b>\" field:"
@@ -2443,6 +2590,44 @@ msgstr ""
2443
  msgid "Client secret"
2444
  msgstr ""
2445
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2446
  #, fuzzy
2447
  #| msgid "Continue with <b>Yahoo</b>"
2448
  msgid "Continue with <b>Microsoft</b>"
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: nextend-facebook-connect\n"
4
+ "POT-Creation-Date: 2021-10-13 19:51+0200\n"
5
+ "PO-Revision-Date: 2021-10-13 19:51+0200\n"
6
  "Last-Translator: \n"
7
  "Language-Team: nextend-facebook-connect\n"
8
  "Language: ru\n"
179
  "information please check our %2$s %1$s compatibility tutorial%3$s!"
180
  msgstr ""
181
 
182
+ #, php-format
183
+ msgid ""
184
+ "<p style=\"max-width:55em;\"><strong><u>Warning</u></strong>: Providers "
185
+ "change the App setup process quite often, which means some steps below might "
186
+ "not be accurate. If you see significant difference in the written "
187
+ "instructions and what you see at the provider, feel free to %1$sreport it"
188
+ "%2$s, so we can check and update the instructions.<br><strong>Last updated:</"
189
+ "strong> %3$s.</p>"
190
+ msgstr ""
191
+
192
  msgid "You have logged in successfully."
193
  msgstr ""
194
 
372
  msgid "Comment"
373
  msgstr ""
374
 
375
+ msgid "Custom Actions"
376
+ msgstr ""
377
+
378
  msgid "Docs"
379
  msgstr ""
380
 
665
  msgid "Button style"
666
  msgstr ""
667
 
668
+ #, php-format
669
+ msgid "%1$s Add your custom actions here. One action per line."
670
+ msgstr ""
671
+
672
+ msgid "Usage:"
673
+ msgstr ""
674
+
675
+ #, php-format
676
+ msgid ""
677
+ "%1$s The HTML of the social buttons will be added at the place where the "
678
+ "action is fired."
679
+ msgstr ""
680
+
681
+ msgid "Important:"
682
+ msgstr ""
683
+
684
+ #, php-format
685
+ msgid ""
686
+ "If you %1$sexperience problems%2$s because of this feature, you can disable "
687
+ "it by defining the %3$s constant."
688
+ msgstr ""
689
+
690
+ msgid "Button layout"
691
+ msgstr ""
692
+
693
+ msgid "Default with top separator"
694
+ msgstr ""
695
+
696
+ msgid "Default with bottom separator"
697
+ msgstr ""
698
+
699
  msgid "No Connect button in Login form"
700
  msgstr ""
701
 
711
  msgid "Register form button style"
712
  msgstr ""
713
 
714
+ msgid "Checkout form"
715
+ msgstr ""
716
+
717
+ msgid "No Connect button in Checkout form"
718
+ msgstr ""
719
+
720
+ msgid "Checkout form button style"
721
+ msgstr ""
722
+
723
+ msgid "Checkout layout"
724
+ msgstr ""
725
+
726
  msgid "Target window"
727
  msgstr ""
728
 
791
  "select this page above"
792
  msgstr ""
793
 
 
 
 
794
  #, php-format
795
  msgid ""
796
  "%1$s You won't be able to reach the selected page unless a social login/"
797
  "registration happens."
798
  msgstr ""
799
 
 
 
 
800
  msgid "OAuth redirect uri proxy page"
801
  msgstr ""
802
 
1138
  msgid "Update now!"
1139
  msgstr ""
1140
 
1141
+ msgid "Hold On"
1142
+ msgstr ""
1143
+
1144
+ msgid "You are being redirected to another page,<br>it may take a few seconds."
1145
+ msgstr ""
1146
+
1147
  msgid "Social Login"
1148
  msgstr ""
1149
 
2118
  msgid "Apple Credentials"
2119
  msgstr ""
2120
 
2121
+ #, php-format
2122
+ msgid ""
2123
+ "If you are not logged in yet, then log in with your %s credentials and visit "
2124
+ "the link above again."
2125
+ msgstr ""
2126
+
2127
+ #, php-format
2128
+ msgid ""
2129
+ "Select your %s App and click on the “<b>%2$s</b>” menu point under the "
2130
+ "Settings section on the left side."
2131
+ msgstr ""
2132
+
2133
+ msgid "Add the following URL in the \"<b>Redirects</b>\" field:"
2134
+ msgstr ""
2135
+
2136
+ msgid "Click the \"<b>New Application</b>\" button."
2137
+ msgstr ""
2138
+
2139
+ msgid "Fill the \"<b>Name</b>\" field and click the \"<b>Create</b>\" button."
2140
+ msgstr ""
2141
+
2142
+ msgid ""
2143
+ "Optional: Select an \"<b>App Icon</b>\" and add a \"<b>Terms of Service URL</"
2144
+ "b>\" and \"<b>Privacy Policy URL</b>\"."
2145
+ msgstr ""
2146
+
2147
+ #, php-format
2148
+ msgid ""
2149
+ "On the left side, click on the “<b>%1$s</b>” menu point in the Settings."
2150
+ msgstr ""
2151
+
2152
+ msgid "Add the following URL to the \"<b>Redirects</b>\" field:"
2153
+ msgstr ""
2154
+
2155
+ msgid "Click the \"<b>Save Changes</b>\" button."
2156
+ msgstr ""
2157
+
2158
+ msgid ""
2159
+ "Copy the necessary \"<b>Client ID</b>\" and \"<b>Client Secret</b>\" values "
2160
+ "and fill these fields in the plugin settings!"
2161
+ msgstr ""
2162
+
2163
+ msgid "Force reauthorization on each login"
2164
+ msgstr ""
2165
+
2166
+ msgid "Disable, when you don't want to see the consent screen on each login."
2167
+ msgstr ""
2168
+
2169
+ #, fuzzy
2170
+ #| msgid "Continue with <b>Disqus</b>"
2171
+ msgid "Continue with <b>Discord</b>"
2172
+ msgstr "Войти через <b>Disqus</b>"
2173
+
2174
+ #, fuzzy
2175
+ msgid "Sign up with <b>Discord</b>"
2176
+ msgstr "Войти через <b>Disqus</b>"
2177
+
2178
+ #, fuzzy
2179
+ #| msgid "Link account with <b>Disqus</b>"
2180
+ msgid "Link account with <b>Discord</b>"
2181
+ msgstr "Связать аккаунты с <b>Disqus</b>"
2182
+
2183
+ #, fuzzy
2184
+ #| msgid "Unlink account from <b>Disqus</b>"
2185
+ msgid "Unlink account from <b>Discord</b>"
2186
+ msgstr "Отвязать аккаунты от <b>Disqus</b>"
2187
+
2188
  #, php-format
2189
  msgid "Click on the name of your %s App."
2190
  msgstr ""
2400
  msgid "Channel Secret"
2401
  msgstr ""
2402
 
2403
+ msgid "Enable, when you want to see the consent screen on each login."
2404
+ msgstr ""
2405
+
2406
+ msgid "Add LINE Official Account as a friend"
2407
+ msgstr ""
2408
+
2409
+ msgid "Don't display"
2410
+ msgstr ""
2411
+
2412
+ msgid "Display the add friend option in the consent screen"
2413
+ msgstr ""
2414
+
2415
+ msgid "Opens a new screen with the add friend option after the consent screen"
2416
+ msgstr ""
2417
+
2418
+ #, php-format
2419
+ msgid ""
2420
+ "If you have a LINE Official Account, people can add it as a friend when they "
2421
+ "authorize your App. %1$sLearn more%2$s."
2422
+ msgstr ""
2423
+
2424
  #, fuzzy
2425
  #| msgid "Continue with <b>LinkedIn</b>"
2426
  msgid "Continue with <b>Line</b>"
2540
  msgid "Fill the \"<b>Name</b>\" field with your App Name."
2541
  msgstr ""
2542
 
2543
+ #, php-format
2544
  msgid ""
2545
+ "Select an option at Supported account types.<br><strong><u>Important:</u></"
2546
+ "strong> On our Settings tab, you will need to select the Audience depending "
2547
+ "on the selected value! If you are not sure what to choose, then %1$shere%2$s "
2548
+ "you can learn more."
2549
  msgstr ""
2550
 
2551
  msgid "Add the following URL to the \"<b>Redirect URI</b>\" field:"
2590
  msgid "Client secret"
2591
  msgstr ""
2592
 
2593
+ msgid "Audience"
2594
+ msgstr ""
2595
+
2596
+ msgid ""
2597
+ "Accounts in any organizational directory (Any Azure AD directory - "
2598
+ "Multitenant)"
2599
+ msgstr ""
2600
+
2601
+ msgid ""
2602
+ "Accounts in any organizational directory (Any Azure AD directory - "
2603
+ "Multitenant) and personal Microsoft accounts (e.g. Skype, Xbox)"
2604
+ msgstr ""
2605
+
2606
+ msgid "Personal Microsoft accounts only"
2607
+ msgstr ""
2608
+
2609
+ msgid ""
2610
+ "Only users in an organizational directory from a particular Azure AD tenant:"
2611
+ msgstr ""
2612
+
2613
+ #, php-format
2614
+ msgid ""
2615
+ "The selected value will define the supported account types. %1$sLearn more."
2616
+ "%2$s"
2617
+ msgstr ""
2618
+
2619
+ msgid "Authorization Prompt"
2620
+ msgstr ""
2621
+
2622
+ msgid "Display account select modal"
2623
+ msgstr ""
2624
+
2625
+ msgid "Force user to enter login credentials on each login"
2626
+ msgstr ""
2627
+
2628
+ msgid "Display authorization and authentication dialog only when necessary"
2629
+ msgstr ""
2630
+
2631
  #, fuzzy
2632
  #| msgid "Continue with <b>Yahoo</b>"
2633
  msgid "Continue with <b>Microsoft</b>"
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: 2021-09-13 20:40+0200\n"
5
- "PO-Revision-Date: 2021-09-13 20:43+0200\n"
6
  "Last-Translator: \n"
7
  "Language-Team: nextend-facebook-connect\n"
8
  "Language: zh_CN\n"
@@ -206,6 +206,16 @@ msgid ""
206
  "information please check our %2$s %1$s compatibility tutorial%3$s!"
207
  msgstr ""
208
 
 
 
 
 
 
 
 
 
 
 
209
  msgid "You have logged in successfully."
210
  msgstr "你已经成功登录。"
211
 
@@ -399,6 +409,9 @@ msgstr "登录界面"
399
  msgid "Comment"
400
  msgstr "评论"
401
 
 
 
 
402
  msgid "Docs"
403
  msgstr "文档"
404
 
@@ -729,6 +742,47 @@ msgstr "必须是登录用户才能评论"
729
  msgid "Button style"
730
  msgstr "按钮样式:"
731
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
732
  #, fuzzy
733
  #| msgid "No Connect button in login form"
734
  msgid "No Connect button in Login form"
@@ -752,6 +806,24 @@ msgstr "不要登录按钮在注册表上"
752
  msgid "Register form button style"
753
  msgstr "登录界面按钮样式"
754
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
755
  msgid "Target window"
756
  msgstr "目标窗口"
757
 
@@ -828,22 +900,12 @@ msgid ""
828
  "select this page above"
829
  msgstr ""
830
 
831
- #, fuzzy
832
- #| msgid "Usage"
833
- msgid "Usage:"
834
- msgstr "用法"
835
-
836
  #, php-format
837
  msgid ""
838
  "%1$s You won't be able to reach the selected page unless a social login/"
839
  "registration happens."
840
  msgstr ""
841
 
842
- #, fuzzy
843
- #| msgid "Import"
844
- msgid "Important:"
845
- msgstr "导入"
846
-
847
  msgid "OAuth redirect uri proxy page"
848
  msgstr ""
849
 
@@ -1247,6 +1309,12 @@ msgstr "请更新 %1$s 到 %2$s 版本."
1247
  msgid "Update now!"
1248
  msgstr "现在更新!"
1249
 
 
 
 
 
 
 
1250
  msgid "Social Login"
1251
  msgstr "社交登录"
1252
 
@@ -2378,6 +2446,96 @@ msgstr ""
2378
  msgid "Apple Credentials"
2379
  msgstr ""
2380
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2381
  #, fuzzy, php-format
2382
  #| msgid "Click on the Create button"
2383
  msgid "Click on the name of your %s App."
@@ -2662,6 +2820,27 @@ msgstr ""
2662
  msgid "Channel Secret"
2663
  msgstr "用户密码"
2664
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2665
  #, fuzzy
2666
  #| msgid "Continue with <b>LinkedIn</b>"
2667
  msgid "Continue with <b>Line</b>"
@@ -2821,9 +3000,12 @@ msgstr "点击\"保存“"
2821
  msgid "Fill the \"<b>Name</b>\" field with your App Name."
2822
  msgstr "将你网站的首页URL填写到 \"网站URL\",应该是 <b>%s</b>"
2823
 
 
2824
  msgid ""
2825
- "Choose \"<b>Personal Microsoft accounts only</b>\" from the Supported "
2826
- "account types."
 
 
2827
  msgstr ""
2828
 
2829
  #, fuzzy
@@ -2891,6 +3073,46 @@ msgstr ""
2891
  msgid "Client secret"
2892
  msgstr "客户端密码"
2893
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2894
  #, fuzzy
2895
  #| msgid "Continue with <b>Yahoo</b>"
2896
  msgid "Continue with <b>Microsoft</b>"
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: nextend-facebook-connect\n"
4
+ "POT-Creation-Date: 2021-10-13 19:51+0200\n"
5
+ "PO-Revision-Date: 2021-10-13 19:51+0200\n"
6
  "Last-Translator: \n"
7
  "Language-Team: nextend-facebook-connect\n"
8
  "Language: zh_CN\n"
206
  "information please check our %2$s %1$s compatibility tutorial%3$s!"
207
  msgstr ""
208
 
209
+ #, php-format
210
+ msgid ""
211
+ "<p style=\"max-width:55em;\"><strong><u>Warning</u></strong>: Providers "
212
+ "change the App setup process quite often, which means some steps below might "
213
+ "not be accurate. If you see significant difference in the written "
214
+ "instructions and what you see at the provider, feel free to %1$sreport it"
215
+ "%2$s, so we can check and update the instructions.<br><strong>Last updated:</"
216
+ "strong> %3$s.</p>"
217
+ msgstr ""
218
+
219
  msgid "You have logged in successfully."
220
  msgstr "你已经成功登录。"
221
 
409
  msgid "Comment"
410
  msgstr "评论"
411
 
412
+ msgid "Custom Actions"
413
+ msgstr ""
414
+
415
  msgid "Docs"
416
  msgstr "文档"
417
 
742
  msgid "Button style"
743
  msgstr "按钮样式:"
744
 
745
+ #, php-format
746
+ msgid "%1$s Add your custom actions here. One action per line."
747
+ msgstr ""
748
+
749
+ #, fuzzy
750
+ #| msgid "Usage"
751
+ msgid "Usage:"
752
+ msgstr "用法"
753
+
754
+ #, php-format
755
+ msgid ""
756
+ "%1$s The HTML of the social buttons will be added at the place where the "
757
+ "action is fired."
758
+ msgstr ""
759
+
760
+ #, fuzzy
761
+ #| msgid "Import"
762
+ msgid "Important:"
763
+ msgstr "导入"
764
+
765
+ #, php-format
766
+ msgid ""
767
+ "If you %1$sexperience problems%2$s because of this feature, you can disable "
768
+ "it by defining the %3$s constant."
769
+ msgstr ""
770
+
771
+ #, fuzzy
772
+ #| msgid "Login layout"
773
+ msgid "Button layout"
774
+ msgstr "登录界面布局"
775
+
776
+ #, fuzzy
777
+ #| msgid "Below with separator"
778
+ msgid "Default with top separator"
779
+ msgstr "下面并分割"
780
+
781
+ #, fuzzy
782
+ #| msgid "Below with separator"
783
+ msgid "Default with bottom separator"
784
+ msgstr "下面并分割"
785
+
786
  #, fuzzy
787
  #| msgid "No Connect button in login form"
788
  msgid "No Connect button in Login form"
806
  msgid "Register form button style"
807
  msgstr "登录界面按钮样式"
808
 
809
+ msgid "Checkout form"
810
+ msgstr ""
811
+
812
+ #, fuzzy
813
+ #| msgid "No Connect button in login form"
814
+ msgid "No Connect button in Checkout form"
815
+ msgstr "在登录表单里不要登录按钮"
816
+
817
+ #, fuzzy
818
+ #| msgid "Login form button style"
819
+ msgid "Checkout form button style"
820
+ msgstr "登录界面按钮样式"
821
+
822
+ #, fuzzy
823
+ #| msgid "Register"
824
+ msgid "Checkout layout"
825
+ msgstr "注册"
826
+
827
  msgid "Target window"
828
  msgstr "目标窗口"
829
 
900
  "select this page above"
901
  msgstr ""
902
 
 
 
 
 
 
903
  #, php-format
904
  msgid ""
905
  "%1$s You won't be able to reach the selected page unless a social login/"
906
  "registration happens."
907
  msgstr ""
908
 
 
 
 
 
 
909
  msgid "OAuth redirect uri proxy page"
910
  msgstr ""
911
 
1309
  msgid "Update now!"
1310
  msgstr "现在更新!"
1311
 
1312
+ msgid "Hold On"
1313
+ msgstr ""
1314
+
1315
+ msgid "You are being redirected to another page,<br>it may take a few seconds."
1316
+ msgstr ""
1317
+
1318
  msgid "Social Login"
1319
  msgstr "社交登录"
1320
 
2446
  msgid "Apple Credentials"
2447
  msgstr ""
2448
 
2449
+ #, php-format
2450
+ msgid ""
2451
+ "If you are not logged in yet, then log in with your %s credentials and visit "
2452
+ "the link above again."
2453
+ msgstr ""
2454
+
2455
+ #, php-format
2456
+ msgid ""
2457
+ "Select your %s App and click on the “<b>%2$s</b>” menu point under the "
2458
+ "Settings section on the left side."
2459
+ msgstr ""
2460
+
2461
+ #, fuzzy
2462
+ #| msgid ""
2463
+ #| "Add the following URL to the \"Authorized Redirect URLs:\" field: <b>%s</"
2464
+ #| "b>"
2465
+ msgid "Add the following URL in the \"<b>Redirects</b>\" field:"
2466
+ msgstr "将以下网址添加到“授权重定向网址”字段中:<b>%s</b>"
2467
+
2468
+ #, fuzzy
2469
+ #| msgid "Click on the \"Create New App\" button"
2470
+ msgid "Click the \"<b>New Application</b>\" button."
2471
+ msgstr "点击\"创建新应用\"按钮"
2472
+
2473
+ #, fuzzy
2474
+ #| msgid "Name your project and then click on the Create button"
2475
+ msgid "Fill the \"<b>Name</b>\" field and click the \"<b>Create</b>\" button."
2476
+ msgstr "命名您的项目,然后点击创建按钮"
2477
+
2478
+ msgid ""
2479
+ "Optional: Select an \"<b>App Icon</b>\" and add a \"<b>Terms of Service URL</"
2480
+ "b>\" and \"<b>Privacy Policy URL</b>\"."
2481
+ msgstr ""
2482
+
2483
+ #, fuzzy, php-format
2484
+ #| msgid "Click on the \"Credentials\" in the left hand menu"
2485
+ msgid ""
2486
+ "On the left side, click on the “<b>%1$s</b>” menu point in the Settings."
2487
+ msgstr "点击左侧菜单的\"凭据\""
2488
+
2489
+ #, fuzzy
2490
+ #| msgid ""
2491
+ #| "Add the following URL to the \"Authorized Redirect URLs:\" field: <b>%s</"
2492
+ #| "b>"
2493
+ msgid "Add the following URL to the \"<b>Redirects</b>\" field:"
2494
+ msgstr "将以下网址添加到“授权重定向网址”字段中:<b>%s</b>"
2495
+
2496
+ #, fuzzy
2497
+ #| msgid "Click on \"Save Changes\""
2498
+ msgid "Click the \"<b>Save Changes</b>\" button."
2499
+ msgstr "点击\"保存设置\""
2500
+
2501
+ #, fuzzy
2502
+ #| msgid ""
2503
+ #| "Here you can see your \"APP ID\" and you can see your \"App secret\" if "
2504
+ #| "you click on the \"Show\" button. These will be needed in plugin's "
2505
+ #| "settings."
2506
+ msgid ""
2507
+ "Copy the necessary \"<b>Client ID</b>\" and \"<b>Client Secret</b>\" values "
2508
+ "and fill these fields in the plugin settings!"
2509
+ msgstr ""
2510
+ "然后,你可以看见你的 \"APP ID\" 和 \"APP secret\"密匙,你可以看到\"显示\"按"
2511
+ "钮,这些都需要填写到插件的设置里。"
2512
+
2513
+ msgid "Force reauthorization on each login"
2514
+ msgstr ""
2515
+
2516
+ msgid "Disable, when you don't want to see the consent screen on each login."
2517
+ msgstr ""
2518
+
2519
+ #, fuzzy
2520
+ #| msgid "Continue with <b>Disqus</b>"
2521
+ msgid "Continue with <b>Discord</b>"
2522
+ msgstr "通过 <b>Disqus</b>"
2523
+
2524
+ #, fuzzy
2525
+ #| msgid "Continue with <b>Disqus</b>"
2526
+ msgid "Sign up with <b>Discord</b>"
2527
+ msgstr "通过 <b>Disqus</b>"
2528
+
2529
+ #, fuzzy
2530
+ #| msgid "Link account with <b>Disqus</b>"
2531
+ msgid "Link account with <b>Discord</b>"
2532
+ msgstr "关联 <b>Disqus</b>"
2533
+
2534
+ #, fuzzy
2535
+ #| msgid "Unlink account from <b>Disqus</b>"
2536
+ msgid "Unlink account from <b>Discord</b>"
2537
+ msgstr "取消关联 <b>Disqus</b>"
2538
+
2539
  #, fuzzy, php-format
2540
  #| msgid "Click on the Create button"
2541
  msgid "Click on the name of your %s App."
2820
  msgid "Channel Secret"
2821
  msgstr "用户密码"
2822
 
2823
+ msgid "Enable, when you want to see the consent screen on each login."
2824
+ msgstr ""
2825
+
2826
+ msgid "Add LINE Official Account as a friend"
2827
+ msgstr ""
2828
+
2829
+ msgid "Don't display"
2830
+ msgstr ""
2831
+
2832
+ msgid "Display the add friend option in the consent screen"
2833
+ msgstr ""
2834
+
2835
+ msgid "Opens a new screen with the add friend option after the consent screen"
2836
+ msgstr ""
2837
+
2838
+ #, php-format
2839
+ msgid ""
2840
+ "If you have a LINE Official Account, people can add it as a friend when they "
2841
+ "authorize your App. %1$sLearn more%2$s."
2842
+ msgstr ""
2843
+
2844
  #, fuzzy
2845
  #| msgid "Continue with <b>LinkedIn</b>"
2846
  msgid "Continue with <b>Line</b>"
3000
  msgid "Fill the \"<b>Name</b>\" field with your App Name."
3001
  msgstr "将你网站的首页URL填写到 \"网站URL\",应该是 <b>%s</b>"
3002
 
3003
+ #, php-format
3004
  msgid ""
3005
+ "Select an option at Supported account types.<br><strong><u>Important:</u></"
3006
+ "strong> On our Settings tab, you will need to select the Audience depending "
3007
+ "on the selected value! If you are not sure what to choose, then %1$shere%2$s "
3008
+ "you can learn more."
3009
  msgstr ""
3010
 
3011
  #, fuzzy
3073
  msgid "Client secret"
3074
  msgstr "客户端密码"
3075
 
3076
+ msgid "Audience"
3077
+ msgstr ""
3078
+
3079
+ msgid ""
3080
+ "Accounts in any organizational directory (Any Azure AD directory - "
3081
+ "Multitenant)"
3082
+ msgstr ""
3083
+
3084
+ msgid ""
3085
+ "Accounts in any organizational directory (Any Azure AD directory - "
3086
+ "Multitenant) and personal Microsoft accounts (e.g. Skype, Xbox)"
3087
+ msgstr ""
3088
+
3089
+ msgid "Personal Microsoft accounts only"
3090
+ msgstr ""
3091
+
3092
+ msgid ""
3093
+ "Only users in an organizational directory from a particular Azure AD tenant:"
3094
+ msgstr ""
3095
+
3096
+ #, php-format
3097
+ msgid ""
3098
+ "The selected value will define the supported account types. %1$sLearn more."
3099
+ "%2$s"
3100
+ msgstr ""
3101
+
3102
+ #, fuzzy
3103
+ #| msgid "Authentication error"
3104
+ msgid "Authorization Prompt"
3105
+ msgstr "授权认证出错"
3106
+
3107
+ msgid "Display account select modal"
3108
+ msgstr ""
3109
+
3110
+ msgid "Force user to enter login credentials on each login"
3111
+ msgstr ""
3112
+
3113
+ msgid "Display authorization and authentication dialog only when necessary"
3114
+ msgstr ""
3115
+
3116
  #, fuzzy
3117
  #| msgid "Continue with <b>Yahoo</b>"
3118
  msgid "Continue with <b>Microsoft</b>"
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-09-13 20:23+0200\n"
6
  "PO-Revision-Date: 2020-06-29 13:58+0200\n"
7
  "Last-Translator: \n"
8
  "Language-Team: nextend-facebook-connect\n"
@@ -181,6 +181,16 @@ msgid ""
181
  "information please check our %2$s %1$s compatibility tutorial%3$s!"
182
  msgstr ""
183
 
 
 
 
 
 
 
 
 
 
 
184
  msgid "You have logged in successfully."
185
  msgstr ""
186
 
@@ -366,6 +376,9 @@ msgstr ""
366
  msgid "Comment"
367
  msgstr ""
368
 
 
 
 
369
  msgid "Docs"
370
  msgstr ""
371
 
@@ -658,6 +671,37 @@ msgstr ""
658
  msgid "Button style"
659
  msgstr ""
660
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
661
  msgid "No Connect button in Login form"
662
  msgstr ""
663
 
@@ -673,6 +717,18 @@ msgstr ""
673
  msgid "Register form button style"
674
  msgstr ""
675
 
 
 
 
 
 
 
 
 
 
 
 
 
676
  msgid "Target window"
677
  msgstr ""
678
 
@@ -739,18 +795,12 @@ msgid ""
739
  "then select this page above"
740
  msgstr ""
741
 
742
- msgid "Usage:"
743
- msgstr ""
744
-
745
  #, php-format
746
  msgid ""
747
  "%1$s You won't be able to reach the selected page unless a social "
748
  "login/registration happens."
749
  msgstr ""
750
 
751
- msgid "Important:"
752
- msgstr ""
753
-
754
  msgid "OAuth redirect uri proxy page"
755
  msgstr ""
756
 
@@ -1094,6 +1144,13 @@ msgstr ""
1094
  msgid "Update now!"
1095
  msgstr ""
1096
 
 
 
 
 
 
 
 
1097
  msgid "Social Login"
1098
  msgstr ""
1099
 
@@ -2087,6 +2144,69 @@ msgstr ""
2087
  msgid "Apple Credentials"
2088
  msgstr ""
2089
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2090
  #, php-format
2091
  msgid "Click on the name of your %s App."
2092
  msgstr ""
@@ -2306,6 +2426,28 @@ msgstr ""
2306
  msgid "Channel Secret"
2307
  msgstr ""
2308
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2309
  msgid "Continue with <b>Line</b>"
2310
  msgstr ""
2311
 
@@ -2419,9 +2561,12 @@ msgstr ""
2419
  msgid "Fill the \"<b>Name</b>\" field with your App Name."
2420
  msgstr ""
2421
 
 
2422
  msgid ""
2423
- "Choose \"<b>Personal Microsoft accounts only</b>\" from the Supported "
2424
- "account types."
 
 
2425
  msgstr ""
2426
 
2427
  msgid "Add the following URL to the \"<b>Redirect URI</b>\" field:"
@@ -2466,6 +2611,46 @@ msgstr ""
2466
  msgid "Client secret"
2467
  msgstr ""
2468
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2469
  msgid "Continue with <b>Microsoft</b>"
2470
  msgstr ""
2471
 
2
  msgid ""
3
  msgstr ""
4
  "Project-Id-Version: nextend-facebook-connect\n"
5
+ "POT-Creation-Date: 2021-10-13 19:50+0200\n"
6
  "PO-Revision-Date: 2020-06-29 13:58+0200\n"
7
  "Last-Translator: \n"
8
  "Language-Team: nextend-facebook-connect\n"
181
  "information please check our %2$s %1$s compatibility tutorial%3$s!"
182
  msgstr ""
183
 
184
+ #, php-format
185
+ msgid ""
186
+ "<p style=\"max-width:55em;\"><strong><u>Warning</u></strong>: "
187
+ "Providers change the App setup process quite often, which means some "
188
+ "steps below might not be accurate. If you see significant difference "
189
+ "in the written instructions and what you see at the provider, feel "
190
+ "free to %1$sreport it%2$s, so we can check and update the instructions."
191
+ "<br><strong>Last updated:</strong> %3$s.</p>"
192
+ msgstr ""
193
+
194
  msgid "You have logged in successfully."
195
  msgstr ""
196
 
376
  msgid "Comment"
377
  msgstr ""
378
 
379
+ msgid "Custom Actions"
380
+ msgstr ""
381
+
382
  msgid "Docs"
383
  msgstr ""
384
 
671
  msgid "Button style"
672
  msgstr ""
673
 
674
+ #, php-format
675
+ msgid "%1$s Add your custom actions here. One action per line."
676
+ msgstr ""
677
+
678
+ msgid "Usage:"
679
+ msgstr ""
680
+
681
+ #, php-format
682
+ msgid ""
683
+ "%1$s The HTML of the social buttons will be added at the place where "
684
+ "the action is fired."
685
+ msgstr ""
686
+
687
+ msgid "Important:"
688
+ msgstr ""
689
+
690
+ #, php-format
691
+ msgid ""
692
+ "If you %1$sexperience problems%2$s because of this feature, you can "
693
+ "disable it by defining the %3$s constant."
694
+ msgstr ""
695
+
696
+ msgid "Button layout"
697
+ msgstr ""
698
+
699
+ msgid "Default with top separator"
700
+ msgstr ""
701
+
702
+ msgid "Default with bottom separator"
703
+ msgstr ""
704
+
705
  msgid "No Connect button in Login form"
706
  msgstr ""
707
 
717
  msgid "Register form button style"
718
  msgstr ""
719
 
720
+ msgid "Checkout form"
721
+ msgstr ""
722
+
723
+ msgid "No Connect button in Checkout form"
724
+ msgstr ""
725
+
726
+ msgid "Checkout form button style"
727
+ msgstr ""
728
+
729
+ msgid "Checkout layout"
730
+ msgstr ""
731
+
732
  msgid "Target window"
733
  msgstr ""
734
 
795
  "then select this page above"
796
  msgstr ""
797
 
 
 
 
798
  #, php-format
799
  msgid ""
800
  "%1$s You won't be able to reach the selected page unless a social "
801
  "login/registration happens."
802
  msgstr ""
803
 
 
 
 
804
  msgid "OAuth redirect uri proxy page"
805
  msgstr ""
806
 
1144
  msgid "Update now!"
1145
  msgstr ""
1146
 
1147
+ msgid "Hold On"
1148
+ msgstr ""
1149
+
1150
+ msgid ""
1151
+ "You are being redirected to another page,<br>it may take a few seconds."
1152
+ msgstr ""
1153
+
1154
  msgid "Social Login"
1155
  msgstr ""
1156
 
2144
  msgid "Apple Credentials"
2145
  msgstr ""
2146
 
2147
+ #, php-format
2148
+ msgid ""
2149
+ "If you are not logged in yet, then log in with your %s credentials and "
2150
+ "visit the link above again."
2151
+ msgstr ""
2152
+
2153
+ #, php-format
2154
+ msgid ""
2155
+ "Select your %s App and click on the “<b>%2$s</b>” menu point under the "
2156
+ "Settings section on the left side."
2157
+ msgstr ""
2158
+
2159
+ msgid "Add the following URL in the \"<b>Redirects</b>\" field:"
2160
+ msgstr ""
2161
+
2162
+ msgid "Click the \"<b>New Application</b>\" button."
2163
+ msgstr ""
2164
+
2165
+ msgid ""
2166
+ "Fill the \"<b>Name</b>\" field and click the \"<b>Create</b>\" button."
2167
+ msgstr ""
2168
+
2169
+ msgid ""
2170
+ "Optional: Select an \"<b>App Icon</b>\" and add a \"<b>Terms of "
2171
+ "Service URL</b>\" and \"<b>Privacy Policy URL</b>\"."
2172
+ msgstr ""
2173
+
2174
+ #, php-format
2175
+ msgid ""
2176
+ "On the left side, click on the “<b>%1$s</b>” menu point in the "
2177
+ "Settings."
2178
+ msgstr ""
2179
+
2180
+ msgid "Add the following URL to the \"<b>Redirects</b>\" field:"
2181
+ msgstr ""
2182
+
2183
+ msgid "Click the \"<b>Save Changes</b>\" button."
2184
+ msgstr ""
2185
+
2186
+ msgid ""
2187
+ "Copy the necessary \"<b>Client ID</b>\" and \"<b>Client Secret</b>\" "
2188
+ "values and fill these fields in the plugin settings!"
2189
+ msgstr ""
2190
+
2191
+ msgid "Force reauthorization on each login"
2192
+ msgstr ""
2193
+
2194
+ msgid ""
2195
+ "Disable, when you don't want to see the consent screen on each login."
2196
+ msgstr ""
2197
+
2198
+ msgid "Continue with <b>Discord</b>"
2199
+ msgstr ""
2200
+
2201
+ msgid "Sign up with <b>Discord</b>"
2202
+ msgstr ""
2203
+
2204
+ msgid "Link account with <b>Discord</b>"
2205
+ msgstr ""
2206
+
2207
+ msgid "Unlink account from <b>Discord</b>"
2208
+ msgstr ""
2209
+
2210
  #, php-format
2211
  msgid "Click on the name of your %s App."
2212
  msgstr ""
2426
  msgid "Channel Secret"
2427
  msgstr ""
2428
 
2429
+ msgid "Enable, when you want to see the consent screen on each login."
2430
+ msgstr ""
2431
+
2432
+ msgid "Add LINE Official Account as a friend"
2433
+ msgstr ""
2434
+
2435
+ msgid "Don't display"
2436
+ msgstr ""
2437
+
2438
+ msgid "Display the add friend option in the consent screen"
2439
+ msgstr ""
2440
+
2441
+ msgid ""
2442
+ "Opens a new screen with the add friend option after the consent screen"
2443
+ msgstr ""
2444
+
2445
+ #, php-format
2446
+ msgid ""
2447
+ "If you have a LINE Official Account, people can add it as a friend "
2448
+ "when they authorize your App. %1$sLearn more%2$s."
2449
+ msgstr ""
2450
+
2451
  msgid "Continue with <b>Line</b>"
2452
  msgstr ""
2453
 
2561
  msgid "Fill the \"<b>Name</b>\" field with your App Name."
2562
  msgstr ""
2563
 
2564
+ #, php-format
2565
  msgid ""
2566
+ "Select an option at Supported account types.<br><strong><u>Important:</"
2567
+ "u></strong> On our Settings tab, you will need to select the Audience "
2568
+ "depending on the selected value! If you are not sure what to choose, "
2569
+ "then %1$shere%2$s you can learn more."
2570
  msgstr ""
2571
 
2572
  msgid "Add the following URL to the \"<b>Redirect URI</b>\" field:"
2611
  msgid "Client secret"
2612
  msgstr ""
2613
 
2614
+ msgid "Audience"
2615
+ msgstr ""
2616
+
2617
+ msgid ""
2618
+ "Accounts in any organizational directory (Any Azure AD directory - "
2619
+ "Multitenant)"
2620
+ msgstr ""
2621
+
2622
+ msgid ""
2623
+ "Accounts in any organizational directory (Any Azure AD directory - "
2624
+ "Multitenant) and personal Microsoft accounts (e.g. Skype, Xbox)"
2625
+ msgstr ""
2626
+
2627
+ msgid "Personal Microsoft accounts only"
2628
+ msgstr ""
2629
+
2630
+ msgid ""
2631
+ "Only users in an organizational directory from a particular Azure AD "
2632
+ "tenant:"
2633
+ msgstr ""
2634
+
2635
+ #, php-format
2636
+ msgid ""
2637
+ "The selected value will define the supported account types. %1$sLearn "
2638
+ "more.%2$s"
2639
+ msgstr ""
2640
+
2641
+ msgid "Authorization Prompt"
2642
+ msgstr ""
2643
+
2644
+ msgid "Display account select modal"
2645
+ msgstr ""
2646
+
2647
+ msgid "Force user to enter login credentials on each login"
2648
+ msgstr ""
2649
+
2650
+ msgid ""
2651
+ "Display authorization and authentication dialog only when necessary"
2652
+ msgstr ""
2653
+
2654
  msgid "Continue with <b>Microsoft</b>"
2655
  msgstr ""
2656
 
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.1
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.2
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.1.1';
23
 
24
- public static $nslPROMinVersion = '3.1.1';
25
 
26
  public static $proxyPage = false;
27
 
@@ -172,9 +172,16 @@ class NextendSocialLogin {
172
  'embedded_login_form_button_align' => 'left',
173
  'embedded_login_form_button_style' => 'default',
174
  'embedded_login_form_layout' => 'below',
175
- 'comment_login_button' => 'show',
176
- 'comment_button_align' => 'left',
177
- 'comment_button_style' => 'default',
 
 
 
 
 
 
 
178
  'buddypress_register_button' => 'bp_before_account_details_fields',
179
  'buddypress_register_button_align' => 'left',
180
  'buddypress_register_button_style' => 'default',
@@ -237,6 +244,9 @@ class NextendSocialLogin {
237
  'edd_register' => 'after',
238
  'edd_register_form_button_style' => 'default',
239
  'edd_register_form_layout' => 'default',
 
 
 
240
  'edd_form_button_align' => 'left',
241
 
242
  'admin_bar_roles' => array(),
@@ -509,7 +519,12 @@ class NextendSocialLogin {
509
  if ($once === null) {
510
  $scripts = NSL_PATH . '/js/nsl.js';
511
  if (file_exists($scripts)) {
512
- echo '<script type="text/javascript">(function (undefined) {var _targetWindow =' . wp_json_encode(self::$settings->get('target')) . ";\n" . file_get_contents($scripts) . '})();</script>';
 
 
 
 
 
513
  }
514
  $once = true;
515
  }
@@ -1105,7 +1120,6 @@ el.setAttribute("href",href+"redirect="+encodeURIComponent(window.location.href)
1105
  }
1106
  }
1107
 
1108
-
1109
  return true;
1110
  }
1111
 
19
 
20
  class NextendSocialLogin {
21
 
22
+ public static $version = '3.1.2';
23
 
24
+ public static $nslPROMinVersion = '3.1.2';
25
 
26
  public static $proxyPage = false;
27
 
172
  'embedded_login_form_button_align' => 'left',
173
  'embedded_login_form_button_style' => 'default',
174
  'embedded_login_form_layout' => 'below',
175
+
176
+ 'custom_actions' => '',
177
+ 'custom_actions_button_style' => 'default',
178
+ 'custom_actions_button_layout' => 'default',
179
+ 'custom_actions_button_align' => 'left',
180
+
181
+ 'comment_login_button' => 'show',
182
+ 'comment_button_align' => 'left',
183
+ 'comment_button_style' => 'default',
184
+
185
  'buddypress_register_button' => 'bp_before_account_details_fields',
186
  'buddypress_register_button_align' => 'left',
187
  'buddypress_register_button_style' => 'default',
244
  'edd_register' => 'after',
245
  'edd_register_form_button_style' => 'default',
246
  'edd_register_form_layout' => 'default',
247
+ 'edd_checkout' => 'form_after',
248
+ 'edd_checkout_form_button_style' => 'default',
249
+ 'edd_checkout_form_layout' => 'default',
250
  'edd_form_button_align' => 'left',
251
 
252
  'admin_bar_roles' => array(),
519
  if ($once === null) {
520
  $scripts = NSL_PATH . '/js/nsl.js';
521
  if (file_exists($scripts)) {
522
+ $localizedStrings = array(
523
+ 'redirect_overlay_title' => __('Hold On', 'nextend-facebook-connect'),
524
+ 'redirect_overlay_text' => __('You are being redirected to another page,<br>it may take a few seconds.', 'nextend-facebook-connect')
525
+ );
526
+
527
+ echo '<script type="text/javascript">(function (undefined) {var _localizedStrings=' . wp_json_encode($localizedStrings) . ';var _targetWindow=' . wp_json_encode(self::$settings->get('target')) . ";\n" . file_get_contents($scripts) . '})();</script>';
528
  }
529
  $once = true;
530
  }
1120
  }
1121
  }
1122
 
 
1123
  return true;
1124
  }
1125
 
providers/discord/discord.php ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class NextendSocialProviderDiscord extends NextendSocialProviderDummy {
4
+
5
+ protected $color = '#5865F2';
6
+
7
+ public function __construct() {
8
+ $this->id = 'discord';
9
+ $this->label = 'Discord';
10
+ $this->path = dirname(__FILE__);
11
+ }
12
+ }
13
+
14
+ NextendSocialLogin::addProvider(new NextendSocialProviderDiscord());
providers/discord/discord.png ADDED
Binary file
providers/facebook/admin/getting-started.php CHANGED
@@ -2,6 +2,8 @@
2
  defined('ABSPATH') || die();
3
  /** @var $this NextendSocialProviderAdmin */
4
 
 
 
5
  $provider = $this->getProvider();
6
  ?>
7
  <div class="nsl-admin-sub-content">
@@ -18,7 +20,7 @@ $provider = $this->getProvider();
18
 
19
  <p style="max-width:55em;"><?php printf(__('To allow your visitors to log in with their %1$s account, first you must create a %1$s App. The following guide will help you through the %1$s App creation process. After you have created your %1$s App, head over to "Settings" and configure the given "%2$s" and "%3$s" according to your %1$s App.', 'nextend-facebook-connect'), "Facebook", "App ID", "App secret"); ?></p>
20
 
21
- <p><?php do_action('nsl_getting_started_warnings'); ?></p>
22
 
23
  <h2 class="title"><?php printf(_x('Create %s', 'App creation', 'nextend-facebook-connect'), 'Facebook App'); ?></h2>
24
 
2
  defined('ABSPATH') || die();
3
  /** @var $this NextendSocialProviderAdmin */
4
 
5
+ $lastUpdated = '2021-09-09';
6
+
7
  $provider = $this->getProvider();
8
  ?>
9
  <div class="nsl-admin-sub-content">
20
 
21
  <p style="max-width:55em;"><?php printf(__('To allow your visitors to log in with their %1$s account, first you must create a %1$s App. The following guide will help you through the %1$s App creation process. After you have created your %1$s App, head over to "Settings" and configure the given "%2$s" and "%3$s" according to your %1$s App.', 'nextend-facebook-connect'), "Facebook", "App ID", "App secret"); ?></p>
22
 
23
+ <p><?php do_action('nsl_getting_started_warnings', $provider, $lastUpdated); ?></p>
24
 
25
  <h2 class="title"><?php printf(_x('Create %s', 'App creation', 'nextend-facebook-connect'), 'Facebook App'); ?></h2>
26
 
providers/google/admin/getting-started.php CHANGED
@@ -2,6 +2,8 @@
2
  defined('ABSPATH') || die();
3
  /** @var $this NextendSocialProviderAdmin */
4
 
 
 
5
  $provider = $this->getProvider();
6
  ?>
7
 
@@ -10,7 +12,7 @@ $provider = $this->getProvider();
10
 
11
  <p style="max-width:55em;"><?php printf(__('To allow your visitors to log in with their %1$s account, first you must create a %1$s App. The following guide will help you through the %1$s App creation process. After you have created your %1$s App, head over to "Settings" and configure the given "%2$s" and "%3$s" according to your %1$s App.', 'nextend-facebook-connect'), "Google", "Client ID", "Client secret"); ?></p>
12
 
13
- <p><?php do_action('nsl_getting_started_warnings'); ?></p>
14
 
15
  <h2 class="title"><?php printf(_x('Create %s', 'App creation', 'nextend-facebook-connect'), 'Google App'); ?></h2>
16
 
2
  defined('ABSPATH') || die();
3
  /** @var $this NextendSocialProviderAdmin */
4
 
5
+ $lastUpdated = '2021-09-09';
6
+
7
  $provider = $this->getProvider();
8
  ?>
9
 
12
 
13
  <p style="max-width:55em;"><?php printf(__('To allow your visitors to log in with their %1$s account, first you must create a %1$s App. The following guide will help you through the %1$s App creation process. After you have created your %1$s App, head over to "Settings" and configure the given "%2$s" and "%3$s" according to your %1$s App.', 'nextend-facebook-connect'), "Google", "Client ID", "Client secret"); ?></p>
14
 
15
+ <p><?php do_action('nsl_getting_started_warnings', $provider, $lastUpdated); ?></p>
16
 
17
  <h2 class="title"><?php printf(_x('Create %s', 'App creation', 'nextend-facebook-connect'), 'Google App'); ?></h2>
18
 
providers/twitter/admin/getting-started.php CHANGED
@@ -2,6 +2,8 @@
2
  defined('ABSPATH') || die();
3
  /** @var $this NextendSocialProviderAdmin */
4
 
 
 
5
  $provider = $this->getProvider();
6
  ?>
7
 
@@ -10,7 +12,7 @@ $provider = $this->getProvider();
10
 
11
  <p style="max-width:55em;"><?php printf(__('To allow your visitors to log in with their %1$s account, first you must create a %1$s App. The following guide will help you through the %1$s App creation process. After you have created your %1$s App, head over to "Settings" and configure the given "%2$s" and "%3$s" according to your %1$s App.', 'nextend-facebook-connect'), "Twitter", "Consumer Key", "Consumer Secret"); ?></p>
12
 
13
- <p><?php do_action('nsl_getting_started_warnings'); ?></p>
14
 
15
  <h2 class="title"><?php printf(_x('Create %s', 'App creation', 'nextend-facebook-connect'), 'Twitter App'); ?></h2>
16
 
2
  defined('ABSPATH') || die();
3
  /** @var $this NextendSocialProviderAdmin */
4
 
5
+ $lastUpdated = '2021-09-09';
6
+
7
  $provider = $this->getProvider();
8
  ?>
9
 
12
 
13
  <p style="max-width:55em;"><?php printf(__('To allow your visitors to log in with their %1$s account, first you must create a %1$s App. The following guide will help you through the %1$s App creation process. After you have created your %1$s App, head over to "Settings" and configure the given "%2$s" and "%3$s" according to your %1$s App.', 'nextend-facebook-connect'), "Twitter", "Consumer Key", "Consumer Secret"); ?></p>
14
 
15
+ <p><?php do_action('nsl_getting_started_warnings', $provider, $lastUpdated); ?></p>
16
 
17
  <h2 class="title"><?php printf(_x('Create %s', 'App creation', 'nextend-facebook-connect'), 'Twitter App'); ?></h2>
18
 
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.7.2
7
- Stable tag: 3.1.1
8
  Requires PHP: 7.0
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
@@ -47,7 +47,7 @@ Providers are the services which the visitors can use to register and log in to
47
  * UserPro compatibility
48
  * Ultimate Member compatibility
49
  * Easy Digital Downloads compatibility
50
- * Pro providers: LinkedIn, Amazon, VKontakte, WordPress.com, Yahoo, PayPal, Disqus, Apple, GitHub, Microsoft, Line and more coming soon
51
  * Configure whether email address should be asked on registration at each provider
52
  * Configure whether username should be asked on registration at each provider
53
  * Choose from icons or wide buttons
@@ -125,12 +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.1 =
129
  * Improvement: string paths from the language files have been removed.
130
 
131
  * PRO: Improvement: VKontakte provider – we will use the API version 5.131 for the endpoints, as API version 5.74 is deprecated.
132
  * PRO: Feature: Easy Digital Downloads login and register form support.
133
 
 
134
  = 3.1.0 =
135
  * Fix: Display error message for logged out users, when they try to login with a social media account that's email address matches with a WordPress account email address, that has a linked provider from the same kind.
136
  * Fix: WooRewards will be able to generate points on registration with Nextend Social Login
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.8.1
7
+ Stable tag: 3.1.2
8
  Requires PHP: 7.0
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
47
  * UserPro compatibility
48
  * Ultimate Member compatibility
49
  * Easy Digital Downloads compatibility
50
+ * Pro providers: LinkedIn, Amazon, VKontakte, WordPress.com, Yahoo, PayPal, Disqus, Apple, GitHub, Microsoft, Line, Discord and more coming soon
51
  * Configure whether email address should be asked on registration at each provider
52
  * Configure whether username should be asked on registration at each provider
53
  * Choose from icons or wide buttons
125
 
126
  == Changelog ==
127
 
128
+ = 3.1.2 =
129
+ * Improvement: If there is a slow server or a poor internet connection, the redirect after the authentication with social login might take some time. During this time we will display a loading spinner, so the visitor will know that something is about to happen.
130
+
131
+ * PRO: New provider: [Discord](https://nextendweb.com/nextend-social-login-docs/provider-discord/)
132
+ * PRO: Fix: The Microsoft provider used a wrong redirect url, when the Frontend and the Backend URL of the site were different.
133
+ * PRO: Improvement: New options for the Line provider: [Force reauthorization on each login](https://nextendweb.com/nextend-social-login-docs/provider-line/#force-reauth) and [Add LINE Official Account as a friend](https://nextendweb.com/nextend-social-login-docs/provider-line/#add-friend)
134
+ * PRO: Improvement: New options for the Microsoft provider: [Audience](https://nextendweb.com/nextend-social-login-docs/provider-microsoft/#audience) and [Authorization Prompt](https://nextendweb.com/nextend-social-login-docs/provider-microsoft/#auth-prompt)
135
+ * PRO: Feature: Integration for Easy Digital Downloads [Checkout](https://nextendweb.com/nextend-social-login-docs/global-settings-easy-digital-downloads/#edd-checkout-form) form.
136
+ * PRO: Feature: Display social buttons with layouts on [Custom Actions](https://nextendweb.com/nextend-social-login-docs/global-settings-custom-actions/)
137
+
138
+
139
  = 3.1.1 =
140
  * Improvement: string paths from the language files have been removed.
141
 
142
  * PRO: Improvement: VKontakte provider – we will use the API version 5.131 for the endpoints, as API version 5.74 is deprecated.
143
  * PRO: Feature: Easy Digital Downloads login and register form support.
144
 
145
+
146
  = 3.1.0 =
147
  * Fix: Display error message for logged out users, when they try to login with a social media account that's email address matches with a WordPress account email address, that has a linked provider from the same kind.
148
  * Fix: WooRewards will be able to generate points on registration with Nextend Social Login
template-parts/style.css CHANGED
@@ -167,7 +167,7 @@ div.nsl-container .nsl-button-apple div.nsl-button-label-container {
167
  clear: both;
168
  }
169
 
170
- .nsl-container{
171
  clear: both;
172
  }
173
 
@@ -206,4 +206,69 @@ div.nsl-container-grid[data-align="space-between"] .nsl-container-buttons {
206
  justify-content: space-between;
207
  }
208
 
209
- /* Button align end*/
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
167
  clear: both;
168
  }
169
 
170
+ .nsl-container {
171
  clear: both;
172
  }
173
 
206
  justify-content: space-between;
207
  }
208
 
209
+ /* Button align end*/
210
+
211
+ /* Redirect */
212
+
213
+ #nsl-redirect-overlay {
214
+ display: flex;
215
+ flex-direction: column;
216
+ justify-content: center;
217
+ align-items: center;
218
+ position: fixed;
219
+ z-index: 1000000;
220
+ left: 0;
221
+ top: 0;
222
+ width: 100%;
223
+ height: 100%;
224
+ backdrop-filter: blur(1px);
225
+ background-color: RGBA(0, 0, 0, .32);;
226
+ }
227
+
228
+ #nsl-redirect-overlay-container{
229
+ display: flex;
230
+ flex-direction: column;
231
+ justify-content: center;
232
+ align-items: center;
233
+ background-color: white;
234
+ padding: 30px;
235
+ border-radius: 10px;
236
+ }
237
+
238
+ #nsl-redirect-overlay-spinner {
239
+ content: '';
240
+ display: block;
241
+ margin: 20px 0;
242
+ border: 9px solid RGBA(0, 0, 0, .6);
243
+ border-top: 9px solid #fff;
244
+ border-radius: 50%;
245
+ box-shadow: inset 0 0 0 1px RGBA(0, 0, 0, .6), 0 0 0 1px RGBA(0, 0, 0, .6);
246
+ width: 40px;
247
+ height: 40px;
248
+ animation: nsl-loader-spin 2s linear infinite;
249
+ }
250
+
251
+ @keyframes nsl-loader-spin {
252
+ 0% {
253
+ transform: rotate(0deg)
254
+ }
255
+ to {
256
+ transform: rotate(360deg)
257
+ }
258
+ }
259
+
260
+ #nsl-redirect-overlay-title{
261
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
262
+ font-size: 18px;
263
+ font-weight: bold;
264
+ color: #3C434A;
265
+ }
266
+
267
+ #nsl-redirect-overlay-text {
268
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
269
+ text-align: center;
270
+ font-size: 14px;
271
+ color: #3C434A;
272
+ }
273
+
274
+ /* Redirect END*/