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

Version Description

  • Fix: PHP Warning on redirects, when the "Host" header is not sent by the browser ( e.g when an action happens with CLI )
  • Fix: The redirect parameter of the shortcode didn't work in AJAX requests
  • Fix: Provider order modification didn't work in WordPress 5.9
  • Improvement: Google Getting Started Update
  • Improvement: Twitter Getting Started Update
  • Feature: Option to attempt to Bypass cache on redirect by adding a GET parameter to the redirect URL

  • PRO: New provider: TikTok

Download this release

Release Info

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

Code changes from version 3.1.3 to 3.1.4

Files changed (39) hide show
  1. NSL/Notices.php +1 -1
  2. admin/admin.php +1 -0
  3. admin/style.css +2 -3
  4. admin/templates/settings/general.php +15 -0
  5. includes/avatar.php +10 -8
  6. includes/oauth2.php +15 -0
  7. includes/provider.php +1 -0
  8. languages/nextend-facebook-connect-de_DE.mo +0 -0
  9. languages/nextend-facebook-connect-de_DE.po +166 -56
  10. languages/nextend-facebook-connect-es_LA.mo +0 -0
  11. languages/nextend-facebook-connect-es_LA.po +313 -131
  12. languages/nextend-facebook-connect-fr_FR.mo +0 -0
  13. languages/nextend-facebook-connect-fr_FR.po +166 -56
  14. languages/nextend-facebook-connect-hu_HU.mo +0 -0
  15. languages/nextend-facebook-connect-hu_HU.po +291 -106
  16. languages/nextend-facebook-connect-it_IT.mo +0 -0
  17. languages/nextend-facebook-connect-it_IT.po +308 -103
  18. languages/nextend-facebook-connect-nl_NL.mo +0 -0
  19. languages/nextend-facebook-connect-nl_NL.po +310 -116
  20. languages/nextend-facebook-connect-pt_BR.mo +0 -0
  21. languages/nextend-facebook-connect-pt_BR.po +299 -115
  22. languages/nextend-facebook-connect-ru_RU.mo +0 -0
  23. languages/nextend-facebook-connect-ru_RU.po +173 -56
  24. languages/nextend-facebook-connect-zh_ZH.mo +0 -0
  25. languages/nextend-facebook-connect-zh_ZH.po +302 -120
  26. languages/nextend-facebook-connect.pot +171 -61
  27. nextend-facebook-connect.php +1 -1
  28. nextend-social-login.php +36 -6
  29. providers/facebook/admin/fix-redirect-uri.php +1 -1
  30. providers/facebook/admin/getting-started.php +1 -1
  31. providers/facebook/facebook-client.php +6 -4
  32. providers/google/admin/getting-started.php +2 -1
  33. providers/tiktok/tiktok.php +14 -0
  34. providers/tiktok/tiktok.png +0 -0
  35. providers/twitter/admin/fix-redirect-uri.php +5 -5
  36. providers/twitter/admin/getting-started.php +15 -12
  37. providers/twitter/admin/settings.php +2 -2
  38. providers/twitter/twitter.php +2 -2
  39. readme.txt +14 -3
NSL/Notices.php CHANGED
@@ -24,7 +24,7 @@ class Notices {
24
  'load'
25
  ), 11);
26
 
27
- if (basename($_SERVER['PHP_SELF']) !== 'options-general.php' || empty($_GET['page']) || $_GET['page'] !== 'nextend-social-login') {
28
  add_action('admin_notices', array(
29
  $this,
30
  'admin_notices'
24
  'load'
25
  ), 11);
26
 
27
+ if ((!empty($_SERVER['PHP_SELF']) && basename($_SERVER['PHP_SELF']) !== 'options-general.php') || empty($_GET['page']) || $_GET['page'] !== 'nextend-social-login') {
28
  add_action('admin_notices', array(
29
  $this,
30
  'admin_notices'
admin/admin.php CHANGED
@@ -355,6 +355,7 @@ class NextendSocialLoginAdmin {
355
  foreach ($postedData as $key => $value) {
356
  switch ($key) {
357
  case 'debug':
 
358
  case 'login_restriction':
359
  case 'avatars_in_all_media':
360
  case 'custom_register_label':
355
  foreach ($postedData as $key => $value) {
356
  switch ($key) {
357
  case 'debug':
358
+ case 'bypass_cache':
359
  case 'login_restriction':
360
  case 'avatars_in_all_media':
361
  case 'custom_register_label':
admin/style.css CHANGED
@@ -162,11 +162,12 @@
162
  .nsl-dashboard-providers {
163
  position: relative;
164
  padding: 15px;
 
 
165
  }
166
 
167
  .nsl-dashboard-providers .nsl-dashboard-newsletter {
168
  position: relative;
169
- float: left;
170
  width: 340px;
171
  height: 220px;
172
  margin: 15px;
@@ -201,7 +202,6 @@
201
 
202
  .nsl-dashboard-providers .nsl-dashboard-provider {
203
  position: relative;
204
- float: left;
205
  width: 340px;
206
  height: 220px;
207
  margin: 15px;
@@ -395,7 +395,6 @@ input[type="radio"]:checked ~ img {
395
 
396
  .nsl-box-review {
397
  position: relative;
398
- float: left;
399
  width: 340px;
400
  height: 220px;
401
  margin: 15px;
162
  .nsl-dashboard-providers {
163
  position: relative;
164
  padding: 15px;
165
+ display: flex;
166
+ flex-flow: row wrap;
167
  }
168
 
169
  .nsl-dashboard-providers .nsl-dashboard-newsletter {
170
  position: relative;
 
171
  width: 340px;
172
  height: 220px;
173
  margin: 15px;
202
 
203
  .nsl-dashboard-providers .nsl-dashboard-provider {
204
  position: relative;
 
205
  width: 340px;
206
  height: 220px;
207
  margin: 15px;
395
 
396
  .nsl-box-review {
397
  position: relative;
 
398
  width: 340px;
399
  height: 220px;
400
  margin: 15px;
admin/templates/settings/general.php CHANGED
@@ -53,6 +53,21 @@
53
  </td>
54
  </tr>
55
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
56
  <tr>
57
  <th scope="row"><?php _e('Page for register flow', 'nextend-facebook-connect'); ?></th>
58
  <td>
53
  </td>
54
  </tr>
55
 
56
+ <tr>
57
+ <th scope="row"><?php _e('Bypass cache on redirect', 'nextend-facebook-connect'); ?></th>
58
+ <td>
59
+ <fieldset>
60
+ <label><input type="radio" name="bypass_cache"
61
+ value="0" <?php if ($settings->get('bypass_cache') == '0') : ?> checked="checked" <?php endif; ?>>
62
+ <span><?php _e('Disabled', 'nextend-facebook-connect'); ?></span></label><br>
63
+ <label><input type="radio" name="bypass_cache"
64
+ value="1" <?php if ($settings->get('bypass_cache') == '1') : ?> checked="checked" <?php endif; ?>>
65
+ <span><?php _e('Enabled', 'nextend-facebook-connect'); ?></span></label><br>
66
+ </fieldset>
67
+ <p class="description" id="tagline-bypass_cache"><?php printf(__('Enabling this option will add a GET parameter to the URL where we redirect after a successful registration or login with social login. %1$sLearn more%2$s.', 'nextend-facebook-connect'), '<a href="https://nextendweb.com/nextend-social-login-docs/how-to-bypass-the-cache-after-the-login-with-social-login/#how-to-bypass" target="_blank">', '</a>'); ?></p>
68
+ </td>
69
+ </tr>
70
+
71
  <tr>
72
  <th scope="row"><?php _e('Page for register flow', 'nextend-facebook-connect'); ?></th>
73
  <td>
includes/avatar.php CHANGED
@@ -235,6 +235,7 @@ class NextendSocialLoginAvatar {
235
  'image/gif' => 'gif',
236
  'image/bmp' => 'bmp',
237
  'image/tiff' => 'tif',
 
238
  ));
239
 
240
  /**
@@ -376,7 +377,8 @@ class NextendSocialLoginAvatar {
376
 
377
  /**
378
  * Adjusted according to WordPress 5.7
379
- * Override for WordPress default download_url() since wp_tempnam() can not handle long urls properly to generate temp file names.
 
380
  *
381
  * Downloads a URL to a local temporary file using the WordPress HTTP API.
382
  *
@@ -405,10 +407,10 @@ class NextendSocialLoginAvatar {
405
  }
406
 
407
  $response = wp_safe_remote_get($url, array(
408
- 'timeout' => $timeout,
409
- 'stream' => true,
410
- 'filename' => $tmpfname,
411
- ));
412
 
413
  if (is_wp_error($response)) {
414
  unlink($tmpfname);
@@ -501,9 +503,9 @@ class NextendSocialLoginAvatar {
501
 
502
  if ($signature_url) {
503
  $signature_request = wp_safe_remote_get($signature_url, array(
504
- 'limit_response_size' => 10 * KB_IN_BYTES,
505
- // 10KB should be large enough for quite a few signatures.
506
- ));
507
 
508
  if (!is_wp_error($signature_request) && 200 === wp_remote_retrieve_response_code($signature_request)) {
509
  $signature = explode("\n", wp_remote_retrieve_body($signature_request));
235
  'image/gif' => 'gif',
236
  'image/bmp' => 'bmp',
237
  'image/tiff' => 'tif',
238
+ 'image/webp' => 'webp'
239
  ));
240
 
241
  /**
377
 
378
  /**
379
  * Adjusted according to WordPress 5.7
380
+ * Override for WordPress default download_url() since wp_tempnam() can not handle long urls properly to generate
381
+ * temp file names.
382
  *
383
  * Downloads a URL to a local temporary file using the WordPress HTTP API.
384
  *
407
  }
408
 
409
  $response = wp_safe_remote_get($url, array(
410
+ 'timeout' => $timeout,
411
+ 'stream' => true,
412
+ 'filename' => $tmpfname,
413
+ ));
414
 
415
  if (is_wp_error($response)) {
416
  unlink($tmpfname);
503
 
504
  if ($signature_url) {
505
  $signature_request = wp_safe_remote_get($signature_url, array(
506
+ 'limit_response_size' => 10 * KB_IN_BYTES,
507
+ // 10KB should be large enough for quite a few signatures.
508
+ ));
509
 
510
  if (!is_wp_error($signature_request) && 200 === wp_remote_retrieve_response_code($signature_request)) {
511
  $signature = explode("\n", wp_remote_retrieve_body($signature_request));
includes/oauth2.php CHANGED
@@ -143,6 +143,8 @@ abstract class NextendSocialOauth2 extends NextendSocialAuth {
143
  throw new Exception(sprintf(__('Unexpected response: %s', 'nextend-facebook-connect'), wp_remote_retrieve_body($request)));
144
  }
145
 
 
 
146
  $accessTokenData['created'] = time();
147
 
148
  $this->access_token_data = $accessTokenData;
@@ -310,4 +312,17 @@ abstract class NextendSocialOauth2 extends NextendSocialAuth {
310
 
311
  return $http_args;
312
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
313
  }
143
  throw new Exception(sprintf(__('Unexpected response: %s', 'nextend-facebook-connect'), wp_remote_retrieve_body($request)));
144
  }
145
 
146
+ $accessTokenData = $this->extendAccessTokenData($accessTokenData);
147
+
148
  $accessTokenData['created'] = time();
149
 
150
  $this->access_token_data = $accessTokenData;
312
 
313
  return $http_args;
314
  }
315
+
316
+ /**
317
+ * @param $access_token_data
318
+ *
319
+ * Can be used for adding additional data into the access_token_data array or modifying its structure
320
+ * if the format is wrong.
321
+ *
322
+ * @return mixed
323
+ */
324
+ protected function extendAccessTokenData($access_token_data) {
325
+
326
+ return $access_token_data;
327
+ }
328
  }
includes/provider.php CHANGED
@@ -1096,6 +1096,7 @@ abstract class NextendSocialProvider extends NextendSocialProviderDummy {
1096
  * Redirect the source of the popup window to a specified url.
1097
  */
1098
  public static function redirect($title, $url) {
 
1099
  ?>
1100
  <!doctype html>
1101
  <html lang=en>
1096
  * Redirect the source of the popup window to a specified url.
1097
  */
1098
  public static function redirect($title, $url) {
1099
+ $url = NextendSocialLogin::maybeAddBypassCacheArgToUrl($url);
1100
  ?>
1101
  <!doctype html>
1102
  <html lang=en>
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-11-15 18:50+0100\n"
5
- "PO-Revision-Date: 2021-11-15 18:50+0100\n"
6
  "Last-Translator: \n"
7
  "Language-Team: nextend-facebook-connect\n"
8
  "Language: de\n"
@@ -771,6 +771,16 @@ msgstr ""
771
  msgid "Debug mode"
772
  msgstr ""
773
 
 
 
 
 
 
 
 
 
 
 
774
  msgid "Page for register flow"
775
  msgstr ""
776
 
@@ -1204,8 +1214,8 @@ msgstr ""
1204
  msgid "In the left sidebar, click on \"<b>Facebook Login > Settings</b>\""
1205
  msgstr ""
1206
 
1207
- msgid ""
1208
- "Add the following URL to the \"<b>Valid OAuth redirect URIs</b>\" field:"
1209
  msgstr ""
1210
 
1211
  msgid "Click on \"<b>Save Changes</b>\""
@@ -1547,6 +1557,14 @@ msgid ""
1547
  "from there."
1548
  msgstr ""
1549
 
 
 
 
 
 
 
 
 
1550
  msgid "Client ID"
1551
  msgstr ""
1552
 
@@ -1576,21 +1594,20 @@ msgstr ""
1576
  msgid "Required API: %1$s"
1577
  msgstr ""
1578
 
1579
- msgid ""
1580
- "Find your App and click on the <b>App settings</b> icon. (The one that looks "
1581
- "like a gear.)"
1582
  msgstr ""
1583
 
1584
- msgid "Click on the <b>Edit</b> button at <b>Authentication settings</b>."
 
1585
  msgstr ""
1586
 
1587
  #, php-format
1588
- msgid "Add the following URL to the \"<b>%1$s</b>\" field:"
1589
  msgstr ""
1590
 
1591
  #, php-format
1592
- msgid ""
1593
- "Make sure the \"<b>%1$s</b>\" field contains the following URL: <b>%2$s</b>"
1594
  msgstr ""
1595
 
1596
  msgid ""
@@ -1608,13 +1625,18 @@ msgstr ""
1608
  msgid "Click on \"<b>%s</b>\"!"
1609
  msgstr ""
1610
 
 
1611
  msgid ""
1612
  "Name your project, and go through the basic setup. You’ll need to select "
1613
- "your use case, give a description and enter a name for the App as well."
 
 
 
 
1614
  msgstr ""
1615
 
1616
  #, php-format
1617
- msgid "Click \"<b>%s</b>\"!"
1618
  msgstr ""
1619
 
1620
  #, php-format
@@ -1631,11 +1653,11 @@ msgid ""
1631
  msgstr ""
1632
 
1633
  #, php-format
1634
- msgid "Scroll down and click on the \"<b>%1$s</b>\" button at \"<b>%2$s</b>\"."
1635
  msgstr ""
1636
 
1637
  #, php-format
1638
- msgid "Switch on the \"<b>%s</b>\" option."
1639
  msgstr ""
1640
 
1641
  #, php-format
@@ -1645,22 +1667,35 @@ msgstr ""
1645
  #, php-format
1646
  msgid ""
1647
  "If you want to get the email address as well, then don’t forget to enable "
1648
- "the \"<b>%1$s</b>\" option. In this case you also need to fill the \"<b>"
1649
- "%2$s</b>\" and the \"<b>%3$s</b>\" fields with the corresponding URLs!"
 
 
 
 
 
 
 
 
 
 
1650
  msgstr ""
1651
 
1652
  #, php-format
1653
- msgid "Click on \"<b>%s</b>\"."
 
1654
  msgstr ""
1655
 
1656
  #, php-format
1657
- msgid "Go back to %1$s and <b>Verify</b> your %2$s provider."
 
 
1658
  msgstr ""
1659
 
1660
  msgid "API Key"
1661
  msgstr ""
1662
 
1663
- msgid "API secret key"
1664
  msgstr ""
1665
 
1666
  msgid "Profile image size"
@@ -1802,7 +1837,8 @@ msgstr ""
1802
  msgid "Click \"<b>Edit</b>\"."
1803
  msgstr ""
1804
 
1805
- msgid "Add the following URL to the \"<b>Allowed Return URLs</b>\" field: "
 
1806
  msgstr ""
1807
 
1808
  #, php-format
@@ -1871,9 +1907,6 @@ msgid ""
1871
  "probably: <b>%s</b>"
1872
  msgstr ""
1873
 
1874
- msgid "Add the following URL to the \"<b>Return URLs</b>\" field:"
1875
- msgstr ""
1876
-
1877
  msgid ""
1878
  "Finally press \"<b>Next</b>\" then \"<b>Done</b>\" and finally click on the "
1879
  "\"<b>Continue</b>\" and the \"<b>Save</b>\" button!"
@@ -2147,7 +2180,8 @@ msgid ""
2147
  "Settings section on the left side."
2148
  msgstr ""
2149
 
2150
- msgid "Add the following URL in the \"<b>Redirects</b>\" field:"
 
2151
  msgstr ""
2152
 
2153
  msgid "Click the \"<b>New Application</b>\" button."
@@ -2166,9 +2200,6 @@ msgid ""
2166
  "On the left side, click on the “<b>%1$s</b>” menu point in the Settings."
2167
  msgstr ""
2168
 
2169
- msgid "Add the following URL to the \"<b>Redirects</b>\" field:"
2170
- msgstr ""
2171
-
2172
  msgid "Click the \"<b>Save Changes</b>\" button."
2173
  msgstr ""
2174
 
@@ -2204,9 +2235,6 @@ msgid ""
2204
  "section!"
2205
  msgstr ""
2206
 
2207
- msgid "Add the following URL to the \"<b>Callback URL</b>\" field:"
2208
- msgstr ""
2209
-
2210
  msgid "Click on the \"<b>Save Changes</b>\" button."
2211
  msgstr ""
2212
 
@@ -2271,9 +2299,6 @@ msgstr ""
2271
  msgid "Make sure the <b>Homepage URL</b> matches with: <b>%s</b>"
2272
  msgstr ""
2273
 
2274
- msgid "Add the following URL to the <b>Authorization callback URL</b> field:"
2275
- msgstr ""
2276
-
2277
  msgid "Press the <b>Update application</b> button to save the changes."
2278
  msgstr ""
2279
 
@@ -2332,7 +2357,8 @@ msgstr ""
2332
  msgid "Select your %s App and click on the LINE Login section."
2333
  msgstr ""
2334
 
2335
- msgid "Change your URL in the \"<b>Callback URL</b>\" field:"
 
2336
  msgstr ""
2337
 
2338
  #, php-format
@@ -2441,9 +2467,6 @@ msgstr ""
2441
  msgid "Click on your App and go to the \"<b>Auth</b>\" tab."
2442
  msgstr ""
2443
 
2444
- msgid "Add the following URL to the \"<b>Redirect URLs</b>\" field:"
2445
- msgstr ""
2446
-
2447
  msgid "Click on \"<b>Update</b>\" to save the changes"
2448
  msgstr ""
2449
 
@@ -2486,9 +2509,8 @@ msgstr ""
2486
  msgid "Click on the \"<b>Auth</b>\" tab."
2487
  msgstr ""
2488
 
2489
- msgid ""
2490
- "Find \"<b>OAuth 2.0 settings</b>\" section and add the following URL to the "
2491
- "\"<b>Redirect URLs</b>\" field:"
2492
  msgstr ""
2493
 
2494
  msgid ""
@@ -2522,9 +2544,6 @@ msgstr ""
2522
  msgid "Click on the link next to the Redirect URIs label."
2523
  msgstr ""
2524
 
2525
- msgid "Add the following URL to the \"<b>Redirect URIs</b>\" field:"
2526
- msgstr ""
2527
-
2528
  #, php-format
2529
  msgid ""
2530
  "Log in with your %s credentials if you are not logged in or create a new "
@@ -2545,9 +2564,6 @@ msgid ""
2545
  "you can learn more."
2546
  msgstr ""
2547
 
2548
- msgid "Add the following URL to the \"<b>Redirect URI</b>\" field:"
2549
- msgstr ""
2550
-
2551
  msgid "Create your App with the \"<b>Register</b>\" button."
2552
  msgstr ""
2553
 
@@ -2649,9 +2665,6 @@ msgid ""
2649
  "b>\" heading and click \"<b>Show</b>\"."
2650
  msgstr ""
2651
 
2652
- msgid "Add the following URL to the \"<b>Live Return URL</b>\" field:"
2653
- msgstr ""
2654
-
2655
  msgid "Click on \"Save\""
2656
  msgstr ""
2657
 
@@ -2854,13 +2867,113 @@ msgstr ""
2854
  msgid "Unlink account from <b>Slack</b>"
2855
  msgstr ""
2856
 
2857
- msgid "Click on the \"<b>Manage</b>\" button next to the associated App."
 
2858
  msgstr ""
2859
 
2860
- msgid "Go to the \"<b>Settings</b>\" menu"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2861
  msgstr ""
2862
 
2863
- msgid "Add the following URL to the \"<b>Authorized redirect URI</b>\" field: "
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2864
  msgstr ""
2865
 
2866
  msgid "Locate the blue \"<b>Create app</b>\" button and click on it."
@@ -2968,9 +3081,6 @@ msgstr ""
2968
  msgid "Click on the App which has its credentials associated with the plugin."
2969
  msgstr ""
2970
 
2971
- msgid "Add the following URL to the \"<b>Redirect URI(s)</b>\" field:"
2972
- msgstr ""
2973
-
2974
  msgid "Click on the \"<b>Create an App</b>\" button on the top right corner."
2975
  msgstr ""
2976
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: nextend-facebook-connect\n"
4
+ "POT-Creation-Date: 2022-02-14 08:31+0100\n"
5
+ "PO-Revision-Date: 2022-02-14 08:31+0100\n"
6
  "Last-Translator: \n"
7
  "Language-Team: nextend-facebook-connect\n"
8
  "Language: de\n"
771
  msgid "Debug mode"
772
  msgstr ""
773
 
774
+ msgid "Bypass cache on redirect"
775
+ msgstr ""
776
+
777
+ #, php-format
778
+ msgid ""
779
+ "Enabling this option will add a GET parameter to the URL where we redirect "
780
+ "after a successful registration or login with social login. %1$sLearn more"
781
+ "%2$s."
782
+ msgstr ""
783
+
784
  msgid "Page for register flow"
785
  msgstr ""
786
 
1214
  msgid "In the left sidebar, click on \"<b>Facebook Login > Settings</b>\""
1215
  msgstr ""
1216
 
1217
+ #, php-format
1218
+ msgid "Add the following URL to the %s field:"
1219
  msgstr ""
1220
 
1221
  msgid "Click on \"<b>Save Changes</b>\""
1557
  "from there."
1558
  msgstr ""
1559
 
1560
+ #, php-format
1561
+ msgid ""
1562
+ "Currently your App is in %1$s mode, so only limited number of people can use "
1563
+ "it. To allow this App for any user with a Google Account, click on the \"%2$s"
1564
+ "\" option on the left side, then click the \"%3$s\" button under the \"%4$s"
1565
+ "\" section, and press the \"%5$s\" button. "
1566
+ msgstr ""
1567
+
1568
  msgid "Client ID"
1569
  msgstr ""
1570
 
1594
  msgid "Required API: %1$s"
1595
  msgstr ""
1596
 
1597
+ #, php-format
1598
+ msgid "On the left side, under the %s section click on the name of your App."
 
1599
  msgstr ""
1600
 
1601
+ #, php-format
1602
+ msgid "Click on the %1$s button at %2$s."
1603
  msgstr ""
1604
 
1605
  #, php-format
1606
+ msgid "Make sure the %1$s field contains the following URL: %2$s"
1607
  msgstr ""
1608
 
1609
  #, php-format
1610
+ msgid "Click on %s"
 
1611
  msgstr ""
1612
 
1613
  msgid ""
1625
  msgid "Click on \"<b>%s</b>\"!"
1626
  msgstr ""
1627
 
1628
+ #, php-format
1629
  msgid ""
1630
  "Name your project, and go through the basic setup. You’ll need to select "
1631
+ "your use case, give a description then click the %s button."
1632
+ msgstr ""
1633
+
1634
+ #, php-format
1635
+ msgid "Choose the %1$s option for %2$s, then press %3$s!"
1636
  msgstr ""
1637
 
1638
  #, php-format
1639
+ msgid "Into the %1$s field, enter a name for your App, then press %2$s again!"
1640
  msgstr ""
1641
 
1642
  #, php-format
1653
  msgstr ""
1654
 
1655
  #, php-format
1656
+ msgid "Scroll down and click on the %1$s button at %2$s."
1657
  msgstr ""
1658
 
1659
  #, php-format
1660
+ msgid "Switch on the %s option."
1661
  msgstr ""
1662
 
1663
  #, php-format
1667
  #, php-format
1668
  msgid ""
1669
  "If you want to get the email address as well, then don’t forget to enable "
1670
+ "the %1$s option. In this case you also need to fill the \"<b>%2$s</b>\" and "
1671
+ "the \"<b>%3$s</b>\" fields with the corresponding URLs!"
1672
+ msgstr ""
1673
+
1674
+ #, php-format
1675
+ msgid "Click on %s."
1676
+ msgstr ""
1677
+
1678
+ #, php-format
1679
+ msgid ""
1680
+ "On the left side, under the \"<b>%s</b>\" section click on the name of your "
1681
+ "Project ( that you created the App for )."
1682
  msgstr ""
1683
 
1684
  #, php-format
1685
+ msgid ""
1686
+ "Click on the %1$s button, then fill the %2$s, %3$s, %4$s and %5$s forms."
1687
  msgstr ""
1688
 
1689
  #, php-format
1690
+ msgid ""
1691
+ "Once your application for the Elevated access has been approved, go back to "
1692
+ "%1$s then <b>verify</b> and <b>enable</b> the %2$s provider!"
1693
  msgstr ""
1694
 
1695
  msgid "API Key"
1696
  msgstr ""
1697
 
1698
+ msgid "API Key Secret"
1699
  msgstr ""
1700
 
1701
  msgid "Profile image size"
1837
  msgid "Click \"<b>Edit</b>\"."
1838
  msgstr ""
1839
 
1840
+ #, php-format
1841
+ msgid "Add the following URL to the %s field: "
1842
  msgstr ""
1843
 
1844
  #, php-format
1907
  "probably: <b>%s</b>"
1908
  msgstr ""
1909
 
 
 
 
1910
  msgid ""
1911
  "Finally press \"<b>Next</b>\" then \"<b>Done</b>\" and finally click on the "
1912
  "\"<b>Continue</b>\" and the \"<b>Save</b>\" button!"
2180
  "Settings section on the left side."
2181
  msgstr ""
2182
 
2183
+ #, php-format
2184
+ msgid "Add the following URL in the %s field:"
2185
  msgstr ""
2186
 
2187
  msgid "Click the \"<b>New Application</b>\" button."
2200
  "On the left side, click on the “<b>%1$s</b>” menu point in the Settings."
2201
  msgstr ""
2202
 
 
 
 
2203
  msgid "Click the \"<b>Save Changes</b>\" button."
2204
  msgstr ""
2205
 
2235
  "section!"
2236
  msgstr ""
2237
 
 
 
 
2238
  msgid "Click on the \"<b>Save Changes</b>\" button."
2239
  msgstr ""
2240
 
2299
  msgid "Make sure the <b>Homepage URL</b> matches with: <b>%s</b>"
2300
  msgstr ""
2301
 
 
 
 
2302
  msgid "Press the <b>Update application</b> button to save the changes."
2303
  msgstr ""
2304
 
2357
  msgid "Select your %s App and click on the LINE Login section."
2358
  msgstr ""
2359
 
2360
+ #, php-format
2361
+ msgid "Change your URL in the %s field:"
2362
  msgstr ""
2363
 
2364
  #, php-format
2467
  msgid "Click on your App and go to the \"<b>Auth</b>\" tab."
2468
  msgstr ""
2469
 
 
 
 
2470
  msgid "Click on \"<b>Update</b>\" to save the changes"
2471
  msgstr ""
2472
 
2509
  msgid "Click on the \"<b>Auth</b>\" tab."
2510
  msgstr ""
2511
 
2512
+ #, php-format
2513
+ msgid "Find the %1$s section and add the following URL to the %2$s field:"
 
2514
  msgstr ""
2515
 
2516
  msgid ""
2544
  msgid "Click on the link next to the Redirect URIs label."
2545
  msgstr ""
2546
 
 
 
 
2547
  #, php-format
2548
  msgid ""
2549
  "Log in with your %s credentials if you are not logged in or create a new "
2564
  "you can learn more."
2565
  msgstr ""
2566
 
 
 
 
2567
  msgid "Create your App with the \"<b>Register</b>\" button."
2568
  msgstr ""
2569
 
2665
  "b>\" heading and click \"<b>Show</b>\"."
2666
  msgstr ""
2667
 
 
 
 
2668
  msgid "Click on \"Save\""
2669
  msgstr ""
2670
 
2867
  msgid "Unlink account from <b>Slack</b>"
2868
  msgstr ""
2869
 
2870
+ #, php-format
2871
+ msgid "Log in to your %s developer account, if you are not logged in yet."
2872
  msgstr ""
2873
 
2874
+ #, php-format
2875
+ msgid ""
2876
+ "On the top right corner click on %1$s then click on the name of that App "
2877
+ "that you used for the configuration."
2878
+ msgstr ""
2879
+
2880
+ #, php-format
2881
+ msgid "Scroll down to the %s section."
2882
+ msgstr ""
2883
+
2884
+ #, php-format
2885
+ msgid ""
2886
+ "Enter your domain name into the %1$s field, if it is not added already: %2$s"
2887
+ msgstr ""
2888
+
2889
+ #, php-format
2890
+ msgid "Press the %s button."
2891
+ msgstr ""
2892
+
2893
+ msgid "Allow some time for these modifications to take effect."
2894
+ msgstr ""
2895
+
2896
+ #, php-format
2897
+ msgid ""
2898
+ "Log in to your %s developer account or register one if you don't have any!"
2899
+ msgstr ""
2900
+
2901
+ #, php-format
2902
+ msgid "On the top right corner click on %1$s then click on the %2$s option."
2903
+ msgstr ""
2904
+
2905
+ #, php-format
2906
+ msgid ""
2907
+ "A modal will appear where you need to select an image as %1$s and enter a "
2908
+ "name into the %2$s field."
2909
+ msgstr ""
2910
+
2911
+ #, php-format
2912
+ msgid "Press the %1$s button."
2913
+ msgstr ""
2914
+
2915
+ #, php-format
2916
+ msgid "For %1$s choose the %2$s option."
2917
+ msgstr ""
2918
+
2919
+ #, php-format
2920
+ msgid "Under the %s section you should fill all of the required fields."
2921
  msgstr ""
2922
 
2923
+ #, php-format
2924
+ msgid "Enter your domain name to the %1$s field, probably: %2$s"
2925
+ msgstr ""
2926
+
2927
+ #, php-format
2928
+ msgid ""
2929
+ "Under the %1$s section you need to make sure the option %2$s is checked."
2930
+ msgstr ""
2931
+
2932
+ #, php-format
2933
+ msgid ""
2934
+ "Into the %1$s field you should write a text, that describes what you are "
2935
+ "going to do with the App. In this particular case, you will use it to offer "
2936
+ "%2$s login option for your visitors."
2937
+ msgstr ""
2938
+
2939
+ #, php-format
2940
+ msgid ""
2941
+ "Wait until your App gets approved. This can take a couple of days. If you "
2942
+ "scroll up to the top of the page you will be able to find the %s below the "
2943
+ "name of your App."
2944
+ msgstr ""
2945
+
2946
+ #, php-format
2947
+ msgid ""
2948
+ "Once the %1$s says %2$s, the %3$s and %4$s will appear below the %1$s text. "
2949
+ "You will need these for the provider configuration."
2950
+ msgstr ""
2951
+
2952
+ #, php-format
2953
+ msgid ""
2954
+ "<b>WARNING:</b> The %1$s API can not return any email address or phone "
2955
+ "number! %2$sLearn more%3$s."
2956
+ msgstr ""
2957
+
2958
+ msgid "Client Key"
2959
+ msgstr ""
2960
+
2961
+ msgid "Continue with <b>TikTok</b>"
2962
+ msgstr ""
2963
+
2964
+ msgid "Sign up with <b>TikTok</b>"
2965
+ msgstr ""
2966
+
2967
+ msgid "Link account with <b>TikTok</b>"
2968
+ msgstr ""
2969
+
2970
+ msgid "Unlink account from <b>TikTok</b>"
2971
+ msgstr ""
2972
+
2973
+ msgid "Click on the \"<b>Manage</b>\" button next to the associated App."
2974
+ msgstr ""
2975
+
2976
+ msgid "Go to the \"<b>Settings</b>\" menu"
2977
  msgstr ""
2978
 
2979
  msgid "Locate the blue \"<b>Create app</b>\" button and click on it."
3081
  msgid "Click on the App which has its credentials associated with the plugin."
3082
  msgstr ""
3083
 
 
 
 
3084
  msgid "Click on the \"<b>Create an App</b>\" button on the top right corner."
3085
  msgstr ""
3086
 
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-11-15 18:50+0100\n"
5
- "PO-Revision-Date: 2021-11-15 18:50+0100\n"
6
  "Last-Translator: Gabriel Vilaró <gabo@etereo.ch>\n"
7
  "Language-Team: nextend-facebook-connect\n"
8
  "Language: es_419\n"
@@ -888,6 +888,16 @@ msgstr "Deshabilitar inicio de sesión para los roles seleccionados"
888
  msgid "Debug mode"
889
  msgstr "Modo de depuración"
890
 
 
 
 
 
 
 
 
 
 
 
891
  #, fuzzy
892
  #| msgid "for Register"
893
  msgid "Page for register flow"
@@ -1392,14 +1402,11 @@ msgstr "Haz clic en la App con la App ID: %s"
1392
  msgid "In the left sidebar, click on \"<b>Facebook Login > Settings</b>\""
1393
  msgstr "En la barra lateral izquierda, haz clic en \"Facebook Login/Ajustes\""
1394
 
1395
- #, fuzzy
1396
  #| msgid ""
1397
- #| "Add the following URL to the \"Valid OAuth redirect URIs\" field: <b>%s</"
1398
- #| "b>"
1399
- msgid ""
1400
- "Add the following URL to the \"<b>Valid OAuth redirect URIs</b>\" field:"
1401
- msgstr ""
1402
- "Agrega la siguiente URL al campo \"Valid OAuth redirect URIs\": <b>%s</b>"
1403
 
1404
  #, fuzzy
1405
  #| msgid "Click on \"Save Changes\""
@@ -1816,6 +1823,14 @@ msgstr ""
1816
  "clic en su nombre y podrías copiar y pegar desde ahí la Client ID y el "
1817
  "Client Secret."
1818
 
 
 
 
 
 
 
 
 
1819
  msgid "Client ID"
1820
  msgstr "Client ID"
1821
 
@@ -1848,30 +1863,26 @@ msgstr "Desenlazar cuenta de <b>Google</b>"
1848
  msgid "Required API: %1$s"
1849
  msgstr "Alcance requerido: %1$s"
1850
 
1851
- #, fuzzy
1852
- #| msgid "Name your project and then click on the Create button"
1853
- msgid ""
1854
- "Find your App and click on the <b>App settings</b> icon. (The one that looks "
1855
- "like a gear.)"
1856
- msgstr "Denomina tu proyecto y luego haz clic en el botón Create"
1857
-
1858
- #, fuzzy
1859
- #| msgid "Click on the \"Create New App\" button"
1860
- msgid "Click on the <b>Edit</b> button at <b>Authentication settings</b>."
1861
- msgstr "Haz clic en el botón de \"Create New App\" por favor"
1862
 
1863
  #, fuzzy, php-format
1864
- #| msgid ""
1865
- #| "Add the following URL to the \"Allowed Return URLs\" field <b>%s</b> "
1866
- msgid "Add the following URL to the \"<b>%1$s</b>\" field:"
1867
- msgstr "Agrega la siguiente URL al campo \"Allowed Return URLs\" <b>%s</b> "
1868
 
1869
  #, fuzzy, php-format
1870
  #| msgid "Make sure that the \"%1$s\" field contains %2$s"
1871
- msgid ""
1872
- "Make sure the \"<b>%1$s</b>\" field contains the following URL: <b>%2$s</b>"
1873
  msgstr "Asegúrate que el campo \"%1$s\" tiene %2$s"
1874
 
 
 
 
 
 
1875
  msgid ""
1876
  "If you don't have a developer account yet, please apply one by filling all "
1877
  "the required details! This is required for the next steps!"
@@ -1888,15 +1899,19 @@ msgstr ""
1888
  msgid "Click on \"<b>%s</b>\"!"
1889
  msgstr "Haz clic en \"Guardar Cambios\""
1890
 
 
1891
  msgid ""
1892
  "Name your project, and go through the basic setup. You’ll need to select "
1893
- "your use case, give a description and enter a name for the App as well."
1894
  msgstr ""
1895
 
1896
- #, fuzzy, php-format
1897
- #| msgid "Click \"Edit\"."
1898
- msgid "Click \"<b>%s</b>\"!"
1899
- msgstr "Haz clic en \"Edit\"."
 
 
 
1900
 
1901
  #, php-format
1902
  msgid ""
@@ -1913,12 +1928,12 @@ msgstr ""
1913
 
1914
  #, fuzzy, php-format
1915
  #| msgid "Name your project and then click on the Create button"
1916
- msgid "Scroll down and click on the \"<b>%1$s</b>\" button at \"<b>%2$s</b>\"."
1917
  msgstr "Denomina tu proyecto y luego haz clic en el botón Create"
1918
 
1919
  #, fuzzy, php-format
1920
  #| msgid "Click on the Create button"
1921
- msgid "Switch on the \"<b>%s</b>\" option."
1922
  msgstr "Haz clic en el botón Create"
1923
 
1924
  #, fuzzy, php-format
@@ -1930,26 +1945,39 @@ msgstr "Agrega la siguiente URL al campo \"Allowed Return URLs\" <b>%s</b> "
1930
  #, php-format
1931
  msgid ""
1932
  "If you want to get the email address as well, then don’t forget to enable "
1933
- "the \"<b>%1$s</b>\" option. In this case you also need to fill the \"<b>"
1934
- "%2$s</b>\" and the \"<b>%3$s</b>\" fields with the corresponding URLs!"
1935
  msgstr ""
1936
 
1937
  #, fuzzy, php-format
1938
  #| msgid "Click on \"Save\""
1939
- msgid "Click on \"<b>%s</b>\"."
1940
  msgstr "Haz clic en \"Guardar Cambios\""
1941
 
1942
  #, php-format
1943
- msgid "Go back to %1$s and <b>Verify</b> your %2$s provider."
 
 
 
 
 
 
 
 
 
 
 
 
 
1944
  msgstr ""
1945
 
1946
  msgid "API Key"
1947
  msgstr ""
1948
 
1949
  #, fuzzy
1950
- #| msgid "Secure key"
1951
- msgid "API secret key"
1952
- msgstr "Secure key"
1953
 
1954
  msgid "Profile image size"
1955
  msgstr ""
@@ -2130,10 +2158,10 @@ msgstr ""
2130
  msgid "Click \"<b>Edit</b>\"."
2131
  msgstr "Haz clic en \"Edit\"."
2132
 
2133
- #, fuzzy
2134
  #| msgid ""
2135
  #| "Add the following URL to the \"Allowed Return URLs\" field <b>%s</b> "
2136
- msgid "Add the following URL to the \"<b>Allowed Return URLs</b>\" field: "
2137
  msgstr "Agrega la siguiente URL al campo \"Allowed Return URLs\" <b>%s</b> "
2138
 
2139
  #, php-format
@@ -2243,12 +2271,6 @@ msgid ""
2243
  msgstr ""
2244
  "Llena el campo \"Base domain\" con tu dominio, probablemente: <b>%s</b>"
2245
 
2246
- #, fuzzy
2247
- #| msgid ""
2248
- #| "Add the following URL to the \"Allowed Return URLs\" field <b>%s</b> "
2249
- msgid "Add the following URL to the \"<b>Return URLs</b>\" field:"
2250
- msgstr "Agrega la siguiente URL al campo \"Allowed Return URLs\" <b>%s</b> "
2251
-
2252
  msgid ""
2253
  "Finally press \"<b>Next</b>\" then \"<b>Done</b>\" and finally click on the "
2254
  "\"<b>Continue</b>\" and the \"<b>Save</b>\" button!"
@@ -2547,13 +2569,11 @@ msgid ""
2547
  "Settings section on the left side."
2548
  msgstr ""
2549
 
2550
- #, fuzzy
2551
  #| msgid ""
2552
- #| "Add the following URL to the \"Authorized Redirect URLs:\" field: <b>%s</"
2553
- #| "b>"
2554
- msgid "Add the following URL in the \"<b>Redirects</b>\" field:"
2555
- msgstr ""
2556
- "Agrega la siguiente URL al campo \"Authorized Redirect URLs\": <b>%s</b>"
2557
 
2558
  #, fuzzy
2559
  #| msgid "Click on the \"Create New App\" button"
@@ -2576,14 +2596,6 @@ msgid ""
2576
  "On the left side, click on the “<b>%1$s</b>” menu point in the Settings."
2577
  msgstr "Haz clic en \"Credentials\" en el menú de la izquierda"
2578
 
2579
- #, fuzzy
2580
- #| msgid ""
2581
- #| "Add the following URL to the \"Authorized Redirect URLs:\" field: <b>%s</"
2582
- #| "b>"
2583
- msgid "Add the following URL to the \"<b>Redirects</b>\" field:"
2584
- msgstr ""
2585
- "Agrega la siguiente URL al campo \"Authorized Redirect URLs\": <b>%s</b>"
2586
-
2587
  #, fuzzy
2588
  #| msgid "Click on \"Save Changes\""
2589
  msgid "Click the \"<b>Save Changes</b>\" button."
@@ -2636,11 +2648,6 @@ msgid ""
2636
  "section!"
2637
  msgstr "Busca las Authentication Keys abajo del menú Authentication"
2638
 
2639
- #, fuzzy
2640
- #| msgid "Add the following URL to the \"Callback URL\" field: <b>%s</b>"
2641
- msgid "Add the following URL to the \"<b>Callback URL</b>\" field:"
2642
- msgstr "Agrega la siguiente URL al campo de \"Callback URL\": <b>%s</b>"
2643
-
2644
  #, fuzzy
2645
  #| msgid "Click on \"Save Changes\""
2646
  msgid "Click on the \"<b>Save Changes</b>\" button."
@@ -2736,11 +2743,6 @@ msgstr "Haz clic en el botón Manage en la App"
2736
  msgid "Make sure the <b>Homepage URL</b> matches with: <b>%s</b>"
2737
  msgstr "Agrega la siguiente URL al campo \"Allowed Return URLs\" <b>%s</b> "
2738
 
2739
- #, fuzzy
2740
- #| msgid "Add the following URL to the \"Callback URL\" field: <b>%s</b>"
2741
- msgid "Add the following URL to the <b>Authorization callback URL</b> field:"
2742
- msgstr "Agrega la siguiente URL al campo de \"Callback URL\": <b>%s</b>"
2743
-
2744
  #, fuzzy
2745
  #| msgid "Hit update to save the changes"
2746
  msgid "Press the <b>Update application</b> button to save the changes."
@@ -2813,9 +2815,9 @@ msgstr "Navegar a %s"
2813
  msgid "Select your %s App and click on the LINE Login section."
2814
  msgstr ""
2815
 
2816
- #, fuzzy
2817
  #| msgid "Add the following URL to the \"Callback URL\" field: <b>%s</b>"
2818
- msgid "Change your URL in the \"<b>Callback URL</b>\" field:"
2819
  msgstr "Agrega la siguiente URL al campo de \"Callback URL\": <b>%s</b>"
2820
 
2821
  #, php-format
@@ -2952,14 +2954,6 @@ msgstr "Desenlazar cuenta de <b>LinkedIn</b>"
2952
  msgid "Click on your App and go to the \"<b>Auth</b>\" tab."
2953
  msgstr ""
2954
 
2955
- #, fuzzy
2956
- #| msgid ""
2957
- #| "Add the following URL to the \"Authorized Redirect URLs:\" field: <b>%s</"
2958
- #| "b>"
2959
- msgid "Add the following URL to the \"<b>Redirect URLs</b>\" field:"
2960
- msgstr ""
2961
- "Agrega la siguiente URL al campo \"Authorized Redirect URLs\": <b>%s</b>"
2962
-
2963
  #, fuzzy
2964
  #| msgid "Hit update to save the changes"
2965
  msgid "Click on \"<b>Update</b>\" to save the changes"
@@ -3012,13 +3006,11 @@ msgstr ""
3012
  msgid "Click on the \"<b>Auth</b>\" tab."
3013
  msgstr "Haz clic en el botón Create"
3014
 
3015
- #, fuzzy
3016
  #| msgid ""
3017
  #| "Add the following URL to the \"Authorized Redirect URLs:\" field: <b>%s</"
3018
  #| "b>"
3019
- msgid ""
3020
- "Find \"<b>OAuth 2.0 settings</b>\" section and add the following URL to the "
3021
- "\"<b>Redirect URLs</b>\" field:"
3022
  msgstr ""
3023
  "Agrega la siguiente URL al campo \"Authorized Redirect URLs\": <b>%s</b>"
3024
 
@@ -3066,14 +3058,6 @@ msgid "Click on the link next to the Redirect URIs label."
3066
  msgstr ""
3067
  "Agrega la siguiente URL al campo \"Authorized Redirect URLs\": <b>%s</b>"
3068
 
3069
- #, fuzzy
3070
- #| msgid ""
3071
- #| "Add the following URL to the \"Authorized Redirect URLs:\" field: <b>%s</"
3072
- #| "b>"
3073
- msgid "Add the following URL to the \"<b>Redirect URIs</b>\" field:"
3074
- msgstr ""
3075
- "Agrega la siguiente URL al campo \"Authorized Redirect URLs\": <b>%s</b>"
3076
-
3077
  #, fuzzy, php-format
3078
  #| msgid "Log in with your %s credentials if you are not logged in"
3079
  msgid ""
@@ -3100,14 +3084,6 @@ msgid ""
3100
  "you can learn more."
3101
  msgstr ""
3102
 
3103
- #, fuzzy
3104
- #| msgid ""
3105
- #| "Add the following URL to the \"Authorized Redirect URLs:\" field: <b>%s</"
3106
- #| "b>"
3107
- msgid "Add the following URL to the \"<b>Redirect URI</b>\" field:"
3108
- msgstr ""
3109
- "Agrega la siguiente URL al campo \"Authorized Redirect URLs\": <b>%s</b>"
3110
-
3111
  #, fuzzy
3112
  #| msgid "Click on the \"Create New App\" button"
3113
  msgid "Create your App with the \"<b>Register</b>\" button."
@@ -3242,12 +3218,6 @@ msgid ""
3242
  "b>\" heading and click \"<b>Show</b>\"."
3243
  msgstr ""
3244
 
3245
- #, fuzzy
3246
- #| msgid ""
3247
- #| "Add the following URL to the \"Allowed Return URLs\" field <b>%s</b> "
3248
- msgid "Add the following URL to the \"<b>Live Return URL</b>\" field:"
3249
- msgstr "Agrega la siguiente URL al campo \"Allowed Return URLs\" <b>%s</b> "
3250
-
3251
  msgid "Click on \"Save\""
3252
  msgstr "Haz clic en \"Guardar Cambios\""
3253
 
@@ -3513,6 +3483,124 @@ msgstr "Enlazar cuenta con <b>Facebook</b>"
3513
  msgid "Unlink account from <b>Slack</b>"
3514
  msgstr "Desenlazar cuenta de <b>Facebook</b>"
3515
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3516
  #, fuzzy
3517
  #| msgid "Click on the Manage button at the App"
3518
  msgid "Click on the \"<b>Manage</b>\" button next to the associated App."
@@ -3523,13 +3611,6 @@ msgstr "Haz clic en el botón Manage en la App"
3523
  msgid "Go to the \"<b>Settings</b>\" menu"
3524
  msgstr "Ve al menú de Ajustes"
3525
 
3526
- #, fuzzy
3527
- #| msgid ""
3528
- #| "Add the following URL to the \"Authorized redirect URI:\" field: <b>%s</b>"
3529
- msgid "Add the following URL to the \"<b>Authorized redirect URI</b>\" field: "
3530
- msgstr ""
3531
- "Agrega la siguiente URL al campo \"Authorized redirect URI\": <b>%s</b>"
3532
-
3533
  #, fuzzy
3534
  #| msgid "Locate the blue \"Create application\" button and click on it."
3535
  msgid "Locate the blue \"<b>Create app</b>\" button and click on it."
@@ -3682,14 +3763,6 @@ msgstr "Desenlazar cuenta de <b>WordPress.com</b>"
3682
  msgid "Click on the App which has its credentials associated with the plugin."
3683
  msgstr ""
3684
 
3685
- #, fuzzy
3686
- #| msgid ""
3687
- #| "Add the following URL to the \"Authorized Redirect URLs:\" field: <b>%s</"
3688
- #| "b>"
3689
- msgid "Add the following URL to the \"<b>Redirect URI(s)</b>\" field:"
3690
- msgstr ""
3691
- "Agrega la siguiente URL al campo \"Authorized Redirect URLs\": <b>%s</b>"
3692
-
3693
  #, fuzzy
3694
  #| msgid "Click on the \"Create New App\" button"
3695
  msgid "Click on the \"<b>Create an App</b>\" button on the top right corner."
@@ -3757,6 +3830,123 @@ msgstr "O"
3757
  msgid "Social accounts"
3758
  msgstr "Cuentas sociales"
3759
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3760
  #, fuzzy, php-format
3761
  #~| msgid ""
3762
  #~| "Add the following URL to the \"Authorised redirect URIs\" field: <b>%s</"
@@ -3872,14 +4062,6 @@ msgstr "Cuentas sociales"
3872
  #~ msgid "Click on blue \"Create App ID\" button"
3873
  #~ msgstr "Haz clic en el botón azul \"Create App ID\" por favor"
3874
 
3875
- #, fuzzy
3876
- #~| msgid "In the left sidebar, click on \"Facebook Login/Settings\""
3877
- #~ msgid ""
3878
- #~ "In the left sidebar under the Products section, click on \"Facebook Login"
3879
- #~ "\" and select Settings"
3880
- #~ msgstr ""
3881
- #~ "En la barra lateral izquierda, haz clic en \"Facebook Login/Ajustes\""
3882
-
3883
  #, fuzzy
3884
  #~| msgid "In the top of the left sidebar, click on \"Settings\""
3885
  #~ msgid ""
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: nextend-facebook-connect\n"
4
+ "POT-Creation-Date: 2022-02-14 08:31+0100\n"
5
+ "PO-Revision-Date: 2022-02-14 08:31+0100\n"
6
  "Last-Translator: Gabriel Vilaró <gabo@etereo.ch>\n"
7
  "Language-Team: nextend-facebook-connect\n"
8
  "Language: es_419\n"
888
  msgid "Debug mode"
889
  msgstr "Modo de depuración"
890
 
891
+ msgid "Bypass cache on redirect"
892
+ msgstr ""
893
+
894
+ #, php-format
895
+ msgid ""
896
+ "Enabling this option will add a GET parameter to the URL where we redirect "
897
+ "after a successful registration or login with social login. %1$sLearn more"
898
+ "%2$s."
899
+ msgstr ""
900
+
901
  #, fuzzy
902
  #| msgid "for Register"
903
  msgid "Page for register flow"
1402
  msgid "In the left sidebar, click on \"<b>Facebook Login > Settings</b>\""
1403
  msgstr "En la barra lateral izquierda, haz clic en \"Facebook Login/Ajustes\""
1404
 
1405
+ #, fuzzy, php-format
1406
  #| msgid ""
1407
+ #| "Add the following URL to the \"Allowed Return URLs\" field <b>%s</b> "
1408
+ msgid "Add the following URL to the %s field:"
1409
+ msgstr "Agrega la siguiente URL al campo \"Allowed Return URLs\" <b>%s</b> "
 
 
 
1410
 
1411
  #, fuzzy
1412
  #| msgid "Click on \"Save Changes\""
1823
  "clic en su nombre y podrías copiar y pegar desde ahí la Client ID y el "
1824
  "Client Secret."
1825
 
1826
+ #, php-format
1827
+ msgid ""
1828
+ "Currently your App is in %1$s mode, so only limited number of people can use "
1829
+ "it. To allow this App for any user with a Google Account, click on the \"%2$s"
1830
+ "\" option on the left side, then click the \"%3$s\" button under the \"%4$s"
1831
+ "\" section, and press the \"%5$s\" button. "
1832
+ msgstr ""
1833
+
1834
  msgid "Client ID"
1835
  msgstr "Client ID"
1836
 
1863
  msgid "Required API: %1$s"
1864
  msgstr "Alcance requerido: %1$s"
1865
 
1866
+ #, fuzzy, php-format
1867
+ #| msgid "In the left sidebar, click on \"Facebook Login/Settings\""
1868
+ msgid "On the left side, under the %s section click on the name of your App."
1869
+ msgstr "En la barra lateral izquierda, haz clic en \"Facebook Login/Ajustes\""
 
 
 
 
 
 
 
1870
 
1871
  #, fuzzy, php-format
1872
+ #| msgid "Click on the Create button"
1873
+ msgid "Click on the %1$s button at %2$s."
1874
+ msgstr "Haz clic en el botón Create"
 
1875
 
1876
  #, fuzzy, php-format
1877
  #| msgid "Make sure that the \"%1$s\" field contains %2$s"
1878
+ msgid "Make sure the %1$s field contains the following URL: %2$s"
 
1879
  msgstr "Asegúrate que el campo \"%1$s\" tiene %2$s"
1880
 
1881
+ #, fuzzy, php-format
1882
+ #| msgid "Click on \"Save\""
1883
+ msgid "Click on %s"
1884
+ msgstr "Haz clic en \"Guardar Cambios\""
1885
+
1886
  msgid ""
1887
  "If you don't have a developer account yet, please apply one by filling all "
1888
  "the required details! This is required for the next steps!"
1899
  msgid "Click on \"<b>%s</b>\"!"
1900
  msgstr "Haz clic en \"Guardar Cambios\""
1901
 
1902
+ #, php-format
1903
  msgid ""
1904
  "Name your project, and go through the basic setup. You’ll need to select "
1905
+ "your use case, give a description then click the %s button."
1906
  msgstr ""
1907
 
1908
+ #, php-format
1909
+ msgid "Choose the %1$s option for %2$s, then press %3$s!"
1910
+ msgstr ""
1911
+
1912
+ #, php-format
1913
+ msgid "Into the %1$s field, enter a name for your App, then press %2$s again!"
1914
+ msgstr ""
1915
 
1916
  #, php-format
1917
  msgid ""
1928
 
1929
  #, fuzzy, php-format
1930
  #| msgid "Name your project and then click on the Create button"
1931
+ msgid "Scroll down and click on the %1$s button at %2$s."
1932
  msgstr "Denomina tu proyecto y luego haz clic en el botón Create"
1933
 
1934
  #, fuzzy, php-format
1935
  #| msgid "Click on the Create button"
1936
+ msgid "Switch on the %s option."
1937
  msgstr "Haz clic en el botón Create"
1938
 
1939
  #, fuzzy, php-format
1945
  #, php-format
1946
  msgid ""
1947
  "If you want to get the email address as well, then don’t forget to enable "
1948
+ "the %1$s option. In this case you also need to fill the \"<b>%2$s</b>\" and "
1949
+ "the \"<b>%3$s</b>\" fields with the corresponding URLs!"
1950
  msgstr ""
1951
 
1952
  #, fuzzy, php-format
1953
  #| msgid "Click on \"Save\""
1954
+ msgid "Click on %s."
1955
  msgstr "Haz clic en \"Guardar Cambios\""
1956
 
1957
  #, php-format
1958
+ msgid ""
1959
+ "On the left side, under the \"<b>%s</b>\" section click on the name of your "
1960
+ "Project ( that you created the App for )."
1961
+ msgstr ""
1962
+
1963
+ #, php-format
1964
+ msgid ""
1965
+ "Click on the %1$s button, then fill the %2$s, %3$s, %4$s and %5$s forms."
1966
+ msgstr ""
1967
+
1968
+ #, php-format
1969
+ msgid ""
1970
+ "Once your application for the Elevated access has been approved, go back to "
1971
+ "%1$s then <b>verify</b> and <b>enable</b> the %2$s provider!"
1972
  msgstr ""
1973
 
1974
  msgid "API Key"
1975
  msgstr ""
1976
 
1977
  #, fuzzy
1978
+ #| msgid "App Secret"
1979
+ msgid "API Key Secret"
1980
+ msgstr "App Secret"
1981
 
1982
  msgid "Profile image size"
1983
  msgstr ""
2158
  msgid "Click \"<b>Edit</b>\"."
2159
  msgstr "Haz clic en \"Edit\"."
2160
 
2161
+ #, fuzzy, php-format
2162
  #| msgid ""
2163
  #| "Add the following URL to the \"Allowed Return URLs\" field <b>%s</b> "
2164
+ msgid "Add the following URL to the %s field: "
2165
  msgstr "Agrega la siguiente URL al campo \"Allowed Return URLs\" <b>%s</b> "
2166
 
2167
  #, php-format
2271
  msgstr ""
2272
  "Llena el campo \"Base domain\" con tu dominio, probablemente: <b>%s</b>"
2273
 
 
 
 
 
 
 
2274
  msgid ""
2275
  "Finally press \"<b>Next</b>\" then \"<b>Done</b>\" and finally click on the "
2276
  "\"<b>Continue</b>\" and the \"<b>Save</b>\" button!"
2569
  "Settings section on the left side."
2570
  msgstr ""
2571
 
2572
+ #, fuzzy, php-format
2573
  #| msgid ""
2574
+ #| "Add the following URL to the \"Allowed Return URLs\" field <b>%s</b> "
2575
+ msgid "Add the following URL in the %s field:"
2576
+ msgstr "Agrega la siguiente URL al campo \"Allowed Return URLs\" <b>%s</b> "
 
 
2577
 
2578
  #, fuzzy
2579
  #| msgid "Click on the \"Create New App\" button"
2596
  "On the left side, click on the “<b>%1$s</b>” menu point in the Settings."
2597
  msgstr "Haz clic en \"Credentials\" en el menú de la izquierda"
2598
 
 
 
 
 
 
 
 
 
2599
  #, fuzzy
2600
  #| msgid "Click on \"Save Changes\""
2601
  msgid "Click the \"<b>Save Changes</b>\" button."
2648
  "section!"
2649
  msgstr "Busca las Authentication Keys abajo del menú Authentication"
2650
 
 
 
 
 
 
2651
  #, fuzzy
2652
  #| msgid "Click on \"Save Changes\""
2653
  msgid "Click on the \"<b>Save Changes</b>\" button."
2743
  msgid "Make sure the <b>Homepage URL</b> matches with: <b>%s</b>"
2744
  msgstr "Agrega la siguiente URL al campo \"Allowed Return URLs\" <b>%s</b> "
2745
 
 
 
 
 
 
2746
  #, fuzzy
2747
  #| msgid "Hit update to save the changes"
2748
  msgid "Press the <b>Update application</b> button to save the changes."
2815
  msgid "Select your %s App and click on the LINE Login section."
2816
  msgstr ""
2817
 
2818
+ #, fuzzy, php-format
2819
  #| msgid "Add the following URL to the \"Callback URL\" field: <b>%s</b>"
2820
+ msgid "Change your URL in the %s field:"
2821
  msgstr "Agrega la siguiente URL al campo de \"Callback URL\": <b>%s</b>"
2822
 
2823
  #, php-format
2954
  msgid "Click on your App and go to the \"<b>Auth</b>\" tab."
2955
  msgstr ""
2956
 
 
 
 
 
 
 
 
 
2957
  #, fuzzy
2958
  #| msgid "Hit update to save the changes"
2959
  msgid "Click on \"<b>Update</b>\" to save the changes"
3006
  msgid "Click on the \"<b>Auth</b>\" tab."
3007
  msgstr "Haz clic en el botón Create"
3008
 
3009
+ #, fuzzy, php-format
3010
  #| msgid ""
3011
  #| "Add the following URL to the \"Authorized Redirect URLs:\" field: <b>%s</"
3012
  #| "b>"
3013
+ msgid "Find the %1$s section and add the following URL to the %2$s field:"
 
 
3014
  msgstr ""
3015
  "Agrega la siguiente URL al campo \"Authorized Redirect URLs\": <b>%s</b>"
3016
 
3058
  msgstr ""
3059
  "Agrega la siguiente URL al campo \"Authorized Redirect URLs\": <b>%s</b>"
3060
 
 
 
 
 
 
 
 
 
3061
  #, fuzzy, php-format
3062
  #| msgid "Log in with your %s credentials if you are not logged in"
3063
  msgid ""
3084
  "you can learn more."
3085
  msgstr ""
3086
 
 
 
 
 
 
 
 
 
3087
  #, fuzzy
3088
  #| msgid "Click on the \"Create New App\" button"
3089
  msgid "Create your App with the \"<b>Register</b>\" button."
3218
  "b>\" heading and click \"<b>Show</b>\"."
3219
  msgstr ""
3220
 
 
 
 
 
 
 
3221
  msgid "Click on \"Save\""
3222
  msgstr "Haz clic en \"Guardar Cambios\""
3223
 
3483
  msgid "Unlink account from <b>Slack</b>"
3484
  msgstr "Desenlazar cuenta de <b>Facebook</b>"
3485
 
3486
+ #, fuzzy, php-format
3487
+ #| msgid "Log in with your %s credentials if you are not logged in"
3488
+ msgid "Log in to your %s developer account, if you are not logged in yet."
3489
+ msgstr "Inicia sesión con tus %s credenciales si no has iniciado sesión"
3490
+
3491
+ #, php-format
3492
+ msgid ""
3493
+ "On the top right corner click on %1$s then click on the name of that App "
3494
+ "that you used for the configuration."
3495
+ msgstr ""
3496
+
3497
+ #, fuzzy, php-format
3498
+ #| msgid "Click on the Create button"
3499
+ msgid "Scroll down to the %s section."
3500
+ msgstr "Haz clic en el botón Create"
3501
+
3502
+ #, fuzzy, php-format
3503
+ #| msgid "Enter your domain name to the App Domains"
3504
+ msgid ""
3505
+ "Enter your domain name into the %1$s field, if it is not added already: %2$s"
3506
+ msgstr "Ingresa tu nombre de dominio a los App Domains"
3507
+
3508
+ #, php-format
3509
+ msgid "Press the %s button."
3510
+ msgstr ""
3511
+
3512
+ msgid "Allow some time for these modifications to take effect."
3513
+ msgstr ""
3514
+
3515
+ #, php-format
3516
+ msgid ""
3517
+ "Log in to your %s developer account or register one if you don't have any!"
3518
+ msgstr ""
3519
+
3520
+ #, php-format
3521
+ msgid "On the top right corner click on %1$s then click on the %2$s option."
3522
+ msgstr ""
3523
+
3524
+ #, php-format
3525
+ msgid ""
3526
+ "A modal will appear where you need to select an image as %1$s and enter a "
3527
+ "name into the %2$s field."
3528
+ msgstr ""
3529
+
3530
+ #, php-format
3531
+ msgid "Press the %1$s button."
3532
+ msgstr ""
3533
+
3534
+ #, fuzzy, php-format
3535
+ #| msgid "Click on the Create button"
3536
+ msgid "For %1$s choose the %2$s option."
3537
+ msgstr "Haz clic en el botón Create"
3538
+
3539
+ #, php-format
3540
+ msgid "Under the %s section you should fill all of the required fields."
3541
+ msgstr ""
3542
+
3543
+ #, fuzzy, php-format
3544
+ #| msgid "Enter your domain name to the App Domains"
3545
+ msgid "Enter your domain name to the %1$s field, probably: %2$s"
3546
+ msgstr "Ingresa tu nombre de dominio a los App Domains"
3547
+
3548
+ #, php-format
3549
+ msgid ""
3550
+ "Under the %1$s section you need to make sure the option %2$s is checked."
3551
+ msgstr ""
3552
+
3553
+ #, php-format
3554
+ msgid ""
3555
+ "Into the %1$s field you should write a text, that describes what you are "
3556
+ "going to do with the App. In this particular case, you will use it to offer "
3557
+ "%2$s login option for your visitors."
3558
+ msgstr ""
3559
+
3560
+ #, php-format
3561
+ msgid ""
3562
+ "Wait until your App gets approved. This can take a couple of days. If you "
3563
+ "scroll up to the top of the page you will be able to find the %s below the "
3564
+ "name of your App."
3565
+ msgstr ""
3566
+
3567
+ #, php-format
3568
+ msgid ""
3569
+ "Once the %1$s says %2$s, the %3$s and %4$s will appear below the %1$s text. "
3570
+ "You will need these for the provider configuration."
3571
+ msgstr ""
3572
+
3573
+ #, php-format
3574
+ msgid ""
3575
+ "<b>WARNING:</b> The %1$s API can not return any email address or phone "
3576
+ "number! %2$sLearn more%3$s."
3577
+ msgstr ""
3578
+
3579
+ #, fuzzy
3580
+ #| msgid "Client ID"
3581
+ msgid "Client Key"
3582
+ msgstr "Client ID"
3583
+
3584
+ #, fuzzy
3585
+ #| msgid "Continue with <b>LinkedIn</b>"
3586
+ msgid "Continue with <b>TikTok</b>"
3587
+ msgstr "Sigue con <b>LinkedIn</b>"
3588
+
3589
+ #, fuzzy
3590
+ #| msgid "Continue with <b>LinkedIn</b>"
3591
+ msgid "Sign up with <b>TikTok</b>"
3592
+ msgstr "Sigue con <b>LinkedIn</b>"
3593
+
3594
+ #, fuzzy
3595
+ #| msgid "Link account with <b>LinkedIn</b>"
3596
+ msgid "Link account with <b>TikTok</b>"
3597
+ msgstr "Enlazar cuenta con <b>LinkedIn</b>"
3598
+
3599
+ #, fuzzy
3600
+ #| msgid "Unlink account from <b>LinkedIn</b>"
3601
+ msgid "Unlink account from <b>TikTok</b>"
3602
+ msgstr "Desenlazar cuenta de <b>LinkedIn</b>"
3603
+
3604
  #, fuzzy
3605
  #| msgid "Click on the Manage button at the App"
3606
  msgid "Click on the \"<b>Manage</b>\" button next to the associated App."
3611
  msgid "Go to the \"<b>Settings</b>\" menu"
3612
  msgstr "Ve al menú de Ajustes"
3613
 
 
 
 
 
 
 
 
3614
  #, fuzzy
3615
  #| msgid "Locate the blue \"Create application\" button and click on it."
3616
  msgid "Locate the blue \"<b>Create app</b>\" button and click on it."
3763
  msgid "Click on the App which has its credentials associated with the plugin."
3764
  msgstr ""
3765
 
 
 
 
 
 
 
 
 
3766
  #, fuzzy
3767
  #| msgid "Click on the \"Create New App\" button"
3768
  msgid "Click on the \"<b>Create an App</b>\" button on the top right corner."
3830
  msgid "Social accounts"
3831
  msgstr "Cuentas sociales"
3832
 
3833
+ #, fuzzy
3834
+ #~| msgid ""
3835
+ #~| "Add the following URL to the \"Valid OAuth redirect URIs\" field: <b>%s</"
3836
+ #~| "b>"
3837
+ #~ msgid ""
3838
+ #~ "Add the following URL to the \"<b>Valid OAuth redirect URIs</b>\" field:"
3839
+ #~ msgstr ""
3840
+ #~ "Agrega la siguiente URL al campo \"Valid OAuth redirect URIs\": <b>%s</b>"
3841
+
3842
+ #, fuzzy
3843
+ #~| msgid "Name your project and then click on the Create button"
3844
+ #~ msgid ""
3845
+ #~ "Find your App and click on the <b>App settings</b> icon. (The one that "
3846
+ #~ "looks like a gear.)"
3847
+ #~ msgstr "Denomina tu proyecto y luego haz clic en el botón Create"
3848
+
3849
+ #, fuzzy
3850
+ #~| msgid "Click on the \"Create New App\" button"
3851
+ #~ msgid "Click on the <b>Edit</b> button at <b>Authentication settings</b>."
3852
+ #~ msgstr "Haz clic en el botón de \"Create New App\" por favor"
3853
+
3854
+ #, fuzzy, php-format
3855
+ #~| msgid "Click \"Edit\"."
3856
+ #~ msgid "Click \"<b>%s</b>\"!"
3857
+ #~ msgstr "Haz clic en \"Edit\"."
3858
+
3859
+ #, fuzzy
3860
+ #~| msgid "Secure key"
3861
+ #~ msgid "API secret key"
3862
+ #~ msgstr "Secure key"
3863
+
3864
+ #, fuzzy
3865
+ #~| msgid ""
3866
+ #~| "Add the following URL to the \"Allowed Return URLs\" field <b>%s</b> "
3867
+ #~ msgid "Add the following URL to the \"<b>Allowed Return URLs</b>\" field: "
3868
+ #~ msgstr "Agrega la siguiente URL al campo \"Allowed Return URLs\" <b>%s</b> "
3869
+
3870
+ #, fuzzy
3871
+ #~| msgid ""
3872
+ #~| "Add the following URL to the \"Allowed Return URLs\" field <b>%s</b> "
3873
+ #~ msgid "Add the following URL to the \"<b>Return URLs</b>\" field:"
3874
+ #~ msgstr "Agrega la siguiente URL al campo \"Allowed Return URLs\" <b>%s</b> "
3875
+
3876
+ #, fuzzy
3877
+ #~| msgid ""
3878
+ #~| "Add the following URL to the \"Authorized Redirect URLs:\" field: <b>%s</"
3879
+ #~| "b>"
3880
+ #~ msgid "Add the following URL in the \"<b>Redirects</b>\" field:"
3881
+ #~ msgstr ""
3882
+ #~ "Agrega la siguiente URL al campo \"Authorized Redirect URLs\": <b>%s</b>"
3883
+
3884
+ #, fuzzy
3885
+ #~| msgid ""
3886
+ #~| "Add the following URL to the \"Authorized Redirect URLs:\" field: <b>%s</"
3887
+ #~| "b>"
3888
+ #~ msgid "Add the following URL to the \"<b>Redirects</b>\" field:"
3889
+ #~ msgstr ""
3890
+ #~ "Agrega la siguiente URL al campo \"Authorized Redirect URLs\": <b>%s</b>"
3891
+
3892
+ #, fuzzy
3893
+ #~| msgid "Add the following URL to the \"Callback URL\" field: <b>%s</b>"
3894
+ #~ msgid "Add the following URL to the \"<b>Callback URL</b>\" field:"
3895
+ #~ msgstr "Agrega la siguiente URL al campo de \"Callback URL\": <b>%s</b>"
3896
+
3897
+ #, fuzzy
3898
+ #~| msgid "Add the following URL to the \"Callback URL\" field: <b>%s</b>"
3899
+ #~ msgid ""
3900
+ #~ "Add the following URL to the <b>Authorization callback URL</b> field:"
3901
+ #~ msgstr "Agrega la siguiente URL al campo de \"Callback URL\": <b>%s</b>"
3902
+
3903
+ #, fuzzy
3904
+ #~| msgid ""
3905
+ #~| "Add the following URL to the \"Authorized Redirect URLs:\" field: <b>%s</"
3906
+ #~| "b>"
3907
+ #~ msgid "Add the following URL to the \"<b>Redirect URLs</b>\" field:"
3908
+ #~ msgstr ""
3909
+ #~ "Agrega la siguiente URL al campo \"Authorized Redirect URLs\": <b>%s</b>"
3910
+
3911
+ #, fuzzy
3912
+ #~| msgid ""
3913
+ #~| "Add the following URL to the \"Authorized Redirect URLs:\" field: <b>%s</"
3914
+ #~| "b>"
3915
+ #~ msgid "Add the following URL to the \"<b>Redirect URIs</b>\" field:"
3916
+ #~ msgstr ""
3917
+ #~ "Agrega la siguiente URL al campo \"Authorized Redirect URLs\": <b>%s</b>"
3918
+
3919
+ #, fuzzy
3920
+ #~| msgid ""
3921
+ #~| "Add the following URL to the \"Authorized Redirect URLs:\" field: <b>%s</"
3922
+ #~| "b>"
3923
+ #~ msgid "Add the following URL to the \"<b>Redirect URI</b>\" field:"
3924
+ #~ msgstr ""
3925
+ #~ "Agrega la siguiente URL al campo \"Authorized Redirect URLs\": <b>%s</b>"
3926
+
3927
+ #, fuzzy
3928
+ #~| msgid ""
3929
+ #~| "Add the following URL to the \"Allowed Return URLs\" field <b>%s</b> "
3930
+ #~ msgid "Add the following URL to the \"<b>Live Return URL</b>\" field:"
3931
+ #~ msgstr "Agrega la siguiente URL al campo \"Allowed Return URLs\" <b>%s</b> "
3932
+
3933
+ #, fuzzy
3934
+ #~| msgid ""
3935
+ #~| "Add the following URL to the \"Authorized redirect URI:\" field: <b>%s</"
3936
+ #~| "b>"
3937
+ #~ msgid ""
3938
+ #~ "Add the following URL to the \"<b>Authorized redirect URI</b>\" field: "
3939
+ #~ msgstr ""
3940
+ #~ "Agrega la siguiente URL al campo \"Authorized redirect URI\": <b>%s</b>"
3941
+
3942
+ #, fuzzy
3943
+ #~| msgid ""
3944
+ #~| "Add the following URL to the \"Authorized Redirect URLs:\" field: <b>%s</"
3945
+ #~| "b>"
3946
+ #~ msgid "Add the following URL to the \"<b>Redirect URI(s)</b>\" field:"
3947
+ #~ msgstr ""
3948
+ #~ "Agrega la siguiente URL al campo \"Authorized Redirect URLs\": <b>%s</b>"
3949
+
3950
  #, fuzzy, php-format
3951
  #~| msgid ""
3952
  #~| "Add the following URL to the \"Authorised redirect URIs\" field: <b>%s</"
4062
  #~ msgid "Click on blue \"Create App ID\" button"
4063
  #~ msgstr "Haz clic en el botón azul \"Create App ID\" por favor"
4064
 
 
 
 
 
 
 
 
 
4065
  #, fuzzy
4066
  #~| msgid "In the top of the left sidebar, click on \"Settings\""
4067
  #~ msgid ""
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-11-15 18:50+0100\n"
5
- "PO-Revision-Date: 2021-11-15 18:50+0100\n"
6
  "Last-Translator: \n"
7
  "Language-Team: nextend-facebook-connect\n"
8
  "Language: fr\n"
@@ -777,6 +777,16 @@ msgstr ""
777
  msgid "Debug mode"
778
  msgstr ""
779
 
 
 
 
 
 
 
 
 
 
 
780
  msgid "Page for register flow"
781
  msgstr ""
782
 
@@ -1210,8 +1220,8 @@ msgstr ""
1210
  msgid "In the left sidebar, click on \"<b>Facebook Login > Settings</b>\""
1211
  msgstr ""
1212
 
1213
- msgid ""
1214
- "Add the following URL to the \"<b>Valid OAuth redirect URIs</b>\" field:"
1215
  msgstr ""
1216
 
1217
  msgid "Click on \"<b>Save Changes</b>\""
@@ -1553,6 +1563,14 @@ msgid ""
1553
  "from there."
1554
  msgstr ""
1555
 
 
 
 
 
 
 
 
 
1556
  msgid "Client ID"
1557
  msgstr ""
1558
 
@@ -1582,21 +1600,20 @@ msgstr ""
1582
  msgid "Required API: %1$s"
1583
  msgstr ""
1584
 
1585
- msgid ""
1586
- "Find your App and click on the <b>App settings</b> icon. (The one that looks "
1587
- "like a gear.)"
1588
  msgstr ""
1589
 
1590
- msgid "Click on the <b>Edit</b> button at <b>Authentication settings</b>."
 
1591
  msgstr ""
1592
 
1593
  #, php-format
1594
- msgid "Add the following URL to the \"<b>%1$s</b>\" field:"
1595
  msgstr ""
1596
 
1597
  #, php-format
1598
- msgid ""
1599
- "Make sure the \"<b>%1$s</b>\" field contains the following URL: <b>%2$s</b>"
1600
  msgstr ""
1601
 
1602
  msgid ""
@@ -1614,13 +1631,18 @@ msgstr ""
1614
  msgid "Click on \"<b>%s</b>\"!"
1615
  msgstr ""
1616
 
 
1617
  msgid ""
1618
  "Name your project, and go through the basic setup. You’ll need to select "
1619
- "your use case, give a description and enter a name for the App as well."
 
 
 
 
1620
  msgstr ""
1621
 
1622
  #, php-format
1623
- msgid "Click \"<b>%s</b>\"!"
1624
  msgstr ""
1625
 
1626
  #, php-format
@@ -1637,11 +1659,11 @@ msgid ""
1637
  msgstr ""
1638
 
1639
  #, php-format
1640
- msgid "Scroll down and click on the \"<b>%1$s</b>\" button at \"<b>%2$s</b>\"."
1641
  msgstr ""
1642
 
1643
  #, php-format
1644
- msgid "Switch on the \"<b>%s</b>\" option."
1645
  msgstr ""
1646
 
1647
  #, php-format
@@ -1651,22 +1673,35 @@ msgstr ""
1651
  #, php-format
1652
  msgid ""
1653
  "If you want to get the email address as well, then don’t forget to enable "
1654
- "the \"<b>%1$s</b>\" option. In this case you also need to fill the \"<b>"
1655
- "%2$s</b>\" and the \"<b>%3$s</b>\" fields with the corresponding URLs!"
 
 
 
 
 
 
 
 
 
 
1656
  msgstr ""
1657
 
1658
  #, php-format
1659
- msgid "Click on \"<b>%s</b>\"."
 
1660
  msgstr ""
1661
 
1662
  #, php-format
1663
- msgid "Go back to %1$s and <b>Verify</b> your %2$s provider."
 
 
1664
  msgstr ""
1665
 
1666
  msgid "API Key"
1667
  msgstr ""
1668
 
1669
- msgid "API secret key"
1670
  msgstr ""
1671
 
1672
  msgid "Profile image size"
@@ -1808,7 +1843,8 @@ msgstr ""
1808
  msgid "Click \"<b>Edit</b>\"."
1809
  msgstr ""
1810
 
1811
- msgid "Add the following URL to the \"<b>Allowed Return URLs</b>\" field: "
 
1812
  msgstr ""
1813
 
1814
  #, php-format
@@ -1877,9 +1913,6 @@ msgid ""
1877
  "probably: <b>%s</b>"
1878
  msgstr ""
1879
 
1880
- msgid "Add the following URL to the \"<b>Return URLs</b>\" field:"
1881
- msgstr ""
1882
-
1883
  msgid ""
1884
  "Finally press \"<b>Next</b>\" then \"<b>Done</b>\" and finally click on the "
1885
  "\"<b>Continue</b>\" and the \"<b>Save</b>\" button!"
@@ -2153,7 +2186,8 @@ msgid ""
2153
  "Settings section on the left side."
2154
  msgstr ""
2155
 
2156
- msgid "Add the following URL in the \"<b>Redirects</b>\" field:"
 
2157
  msgstr ""
2158
 
2159
  msgid "Click the \"<b>New Application</b>\" button."
@@ -2172,9 +2206,6 @@ msgid ""
2172
  "On the left side, click on the “<b>%1$s</b>” menu point in the Settings."
2173
  msgstr ""
2174
 
2175
- msgid "Add the following URL to the \"<b>Redirects</b>\" field:"
2176
- msgstr ""
2177
-
2178
  msgid "Click the \"<b>Save Changes</b>\" button."
2179
  msgstr ""
2180
 
@@ -2210,9 +2241,6 @@ msgid ""
2210
  "section!"
2211
  msgstr ""
2212
 
2213
- msgid "Add the following URL to the \"<b>Callback URL</b>\" field:"
2214
- msgstr ""
2215
-
2216
  msgid "Click on the \"<b>Save Changes</b>\" button."
2217
  msgstr ""
2218
 
@@ -2277,9 +2305,6 @@ msgstr ""
2277
  msgid "Make sure the <b>Homepage URL</b> matches with: <b>%s</b>"
2278
  msgstr ""
2279
 
2280
- msgid "Add the following URL to the <b>Authorization callback URL</b> field:"
2281
- msgstr ""
2282
-
2283
  msgid "Press the <b>Update application</b> button to save the changes."
2284
  msgstr ""
2285
 
@@ -2338,7 +2363,8 @@ msgstr ""
2338
  msgid "Select your %s App and click on the LINE Login section."
2339
  msgstr ""
2340
 
2341
- msgid "Change your URL in the \"<b>Callback URL</b>\" field:"
 
2342
  msgstr ""
2343
 
2344
  #, php-format
@@ -2447,9 +2473,6 @@ msgstr ""
2447
  msgid "Click on your App and go to the \"<b>Auth</b>\" tab."
2448
  msgstr ""
2449
 
2450
- msgid "Add the following URL to the \"<b>Redirect URLs</b>\" field:"
2451
- msgstr ""
2452
-
2453
  msgid "Click on \"<b>Update</b>\" to save the changes"
2454
  msgstr ""
2455
 
@@ -2492,9 +2515,8 @@ msgstr ""
2492
  msgid "Click on the \"<b>Auth</b>\" tab."
2493
  msgstr ""
2494
 
2495
- msgid ""
2496
- "Find \"<b>OAuth 2.0 settings</b>\" section and add the following URL to the "
2497
- "\"<b>Redirect URLs</b>\" field:"
2498
  msgstr ""
2499
 
2500
  msgid ""
@@ -2528,9 +2550,6 @@ msgstr ""
2528
  msgid "Click on the link next to the Redirect URIs label."
2529
  msgstr ""
2530
 
2531
- msgid "Add the following URL to the \"<b>Redirect URIs</b>\" field:"
2532
- msgstr ""
2533
-
2534
  #, php-format
2535
  msgid ""
2536
  "Log in with your %s credentials if you are not logged in or create a new "
@@ -2551,9 +2570,6 @@ msgid ""
2551
  "you can learn more."
2552
  msgstr ""
2553
 
2554
- msgid "Add the following URL to the \"<b>Redirect URI</b>\" field:"
2555
- msgstr ""
2556
-
2557
  msgid "Create your App with the \"<b>Register</b>\" button."
2558
  msgstr ""
2559
 
@@ -2655,9 +2671,6 @@ msgid ""
2655
  "b>\" heading and click \"<b>Show</b>\"."
2656
  msgstr ""
2657
 
2658
- msgid "Add the following URL to the \"<b>Live Return URL</b>\" field:"
2659
- msgstr ""
2660
-
2661
  msgid "Click on \"Save\""
2662
  msgstr ""
2663
 
@@ -2860,13 +2873,113 @@ msgstr ""
2860
  msgid "Unlink account from <b>Slack</b>"
2861
  msgstr ""
2862
 
2863
- msgid "Click on the \"<b>Manage</b>\" button next to the associated App."
 
2864
  msgstr ""
2865
 
2866
- msgid "Go to the \"<b>Settings</b>\" menu"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2867
  msgstr ""
2868
 
2869
- msgid "Add the following URL to the \"<b>Authorized redirect URI</b>\" field: "
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2870
  msgstr ""
2871
 
2872
  msgid "Locate the blue \"<b>Create app</b>\" button and click on it."
@@ -2974,9 +3087,6 @@ msgstr ""
2974
  msgid "Click on the App which has its credentials associated with the plugin."
2975
  msgstr ""
2976
 
2977
- msgid "Add the following URL to the \"<b>Redirect URI(s)</b>\" field:"
2978
- msgstr ""
2979
-
2980
  msgid "Click on the \"<b>Create an App</b>\" button on the top right corner."
2981
  msgstr ""
2982
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: nextend-facebook-connect\n"
4
+ "POT-Creation-Date: 2022-02-14 08:31+0100\n"
5
+ "PO-Revision-Date: 2022-02-14 08:31+0100\n"
6
  "Last-Translator: \n"
7
  "Language-Team: nextend-facebook-connect\n"
8
  "Language: fr\n"
777
  msgid "Debug mode"
778
  msgstr ""
779
 
780
+ msgid "Bypass cache on redirect"
781
+ msgstr ""
782
+
783
+ #, php-format
784
+ msgid ""
785
+ "Enabling this option will add a GET parameter to the URL where we redirect "
786
+ "after a successful registration or login with social login. %1$sLearn more"
787
+ "%2$s."
788
+ msgstr ""
789
+
790
  msgid "Page for register flow"
791
  msgstr ""
792
 
1220
  msgid "In the left sidebar, click on \"<b>Facebook Login > Settings</b>\""
1221
  msgstr ""
1222
 
1223
+ #, php-format
1224
+ msgid "Add the following URL to the %s field:"
1225
  msgstr ""
1226
 
1227
  msgid "Click on \"<b>Save Changes</b>\""
1563
  "from there."
1564
  msgstr ""
1565
 
1566
+ #, php-format
1567
+ msgid ""
1568
+ "Currently your App is in %1$s mode, so only limited number of people can use "
1569
+ "it. To allow this App for any user with a Google Account, click on the \"%2$s"
1570
+ "\" option on the left side, then click the \"%3$s\" button under the \"%4$s"
1571
+ "\" section, and press the \"%5$s\" button. "
1572
+ msgstr ""
1573
+
1574
  msgid "Client ID"
1575
  msgstr ""
1576
 
1600
  msgid "Required API: %1$s"
1601
  msgstr ""
1602
 
1603
+ #, php-format
1604
+ msgid "On the left side, under the %s section click on the name of your App."
 
1605
  msgstr ""
1606
 
1607
+ #, php-format
1608
+ msgid "Click on the %1$s button at %2$s."
1609
  msgstr ""
1610
 
1611
  #, php-format
1612
+ msgid "Make sure the %1$s field contains the following URL: %2$s"
1613
  msgstr ""
1614
 
1615
  #, php-format
1616
+ msgid "Click on %s"
 
1617
  msgstr ""
1618
 
1619
  msgid ""
1631
  msgid "Click on \"<b>%s</b>\"!"
1632
  msgstr ""
1633
 
1634
+ #, php-format
1635
  msgid ""
1636
  "Name your project, and go through the basic setup. You’ll need to select "
1637
+ "your use case, give a description then click the %s button."
1638
+ msgstr ""
1639
+
1640
+ #, php-format
1641
+ msgid "Choose the %1$s option for %2$s, then press %3$s!"
1642
  msgstr ""
1643
 
1644
  #, php-format
1645
+ msgid "Into the %1$s field, enter a name for your App, then press %2$s again!"
1646
  msgstr ""
1647
 
1648
  #, php-format
1659
  msgstr ""
1660
 
1661
  #, php-format
1662
+ msgid "Scroll down and click on the %1$s button at %2$s."
1663
  msgstr ""
1664
 
1665
  #, php-format
1666
+ msgid "Switch on the %s option."
1667
  msgstr ""
1668
 
1669
  #, php-format
1673
  #, php-format
1674
  msgid ""
1675
  "If you want to get the email address as well, then don’t forget to enable "
1676
+ "the %1$s option. In this case you also need to fill the \"<b>%2$s</b>\" and "
1677
+ "the \"<b>%3$s</b>\" fields with the corresponding URLs!"
1678
+ msgstr ""
1679
+
1680
+ #, php-format
1681
+ msgid "Click on %s."
1682
+ msgstr ""
1683
+
1684
+ #, php-format
1685
+ msgid ""
1686
+ "On the left side, under the \"<b>%s</b>\" section click on the name of your "
1687
+ "Project ( that you created the App for )."
1688
  msgstr ""
1689
 
1690
  #, php-format
1691
+ msgid ""
1692
+ "Click on the %1$s button, then fill the %2$s, %3$s, %4$s and %5$s forms."
1693
  msgstr ""
1694
 
1695
  #, php-format
1696
+ msgid ""
1697
+ "Once your application for the Elevated access has been approved, go back to "
1698
+ "%1$s then <b>verify</b> and <b>enable</b> the %2$s provider!"
1699
  msgstr ""
1700
 
1701
  msgid "API Key"
1702
  msgstr ""
1703
 
1704
+ msgid "API Key Secret"
1705
  msgstr ""
1706
 
1707
  msgid "Profile image size"
1843
  msgid "Click \"<b>Edit</b>\"."
1844
  msgstr ""
1845
 
1846
+ #, php-format
1847
+ msgid "Add the following URL to the %s field: "
1848
  msgstr ""
1849
 
1850
  #, php-format
1913
  "probably: <b>%s</b>"
1914
  msgstr ""
1915
 
 
 
 
1916
  msgid ""
1917
  "Finally press \"<b>Next</b>\" then \"<b>Done</b>\" and finally click on the "
1918
  "\"<b>Continue</b>\" and the \"<b>Save</b>\" button!"
2186
  "Settings section on the left side."
2187
  msgstr ""
2188
 
2189
+ #, php-format
2190
+ msgid "Add the following URL in the %s field:"
2191
  msgstr ""
2192
 
2193
  msgid "Click the \"<b>New Application</b>\" button."
2206
  "On the left side, click on the “<b>%1$s</b>” menu point in the Settings."
2207
  msgstr ""
2208
 
 
 
 
2209
  msgid "Click the \"<b>Save Changes</b>\" button."
2210
  msgstr ""
2211
 
2241
  "section!"
2242
  msgstr ""
2243
 
 
 
 
2244
  msgid "Click on the \"<b>Save Changes</b>\" button."
2245
  msgstr ""
2246
 
2305
  msgid "Make sure the <b>Homepage URL</b> matches with: <b>%s</b>"
2306
  msgstr ""
2307
 
 
 
 
2308
  msgid "Press the <b>Update application</b> button to save the changes."
2309
  msgstr ""
2310
 
2363
  msgid "Select your %s App and click on the LINE Login section."
2364
  msgstr ""
2365
 
2366
+ #, php-format
2367
+ msgid "Change your URL in the %s field:"
2368
  msgstr ""
2369
 
2370
  #, php-format
2473
  msgid "Click on your App and go to the \"<b>Auth</b>\" tab."
2474
  msgstr ""
2475
 
 
 
 
2476
  msgid "Click on \"<b>Update</b>\" to save the changes"
2477
  msgstr ""
2478
 
2515
  msgid "Click on the \"<b>Auth</b>\" tab."
2516
  msgstr ""
2517
 
2518
+ #, php-format
2519
+ msgid "Find the %1$s section and add the following URL to the %2$s field:"
 
2520
  msgstr ""
2521
 
2522
  msgid ""
2550
  msgid "Click on the link next to the Redirect URIs label."
2551
  msgstr ""
2552
 
 
 
 
2553
  #, php-format
2554
  msgid ""
2555
  "Log in with your %s credentials if you are not logged in or create a new "
2570
  "you can learn more."
2571
  msgstr ""
2572
 
 
 
 
2573
  msgid "Create your App with the \"<b>Register</b>\" button."
2574
  msgstr ""
2575
 
2671
  "b>\" heading and click \"<b>Show</b>\"."
2672
  msgstr ""
2673
 
 
 
 
2674
  msgid "Click on \"Save\""
2675
  msgstr ""
2676
 
2873
  msgid "Unlink account from <b>Slack</b>"
2874
  msgstr ""
2875
 
2876
+ #, php-format
2877
+ msgid "Log in to your %s developer account, if you are not logged in yet."
2878
  msgstr ""
2879
 
2880
+ #, php-format
2881
+ msgid ""
2882
+ "On the top right corner click on %1$s then click on the name of that App "
2883
+ "that you used for the configuration."
2884
+ msgstr ""
2885
+
2886
+ #, php-format
2887
+ msgid "Scroll down to the %s section."
2888
+ msgstr ""
2889
+
2890
+ #, php-format
2891
+ msgid ""
2892
+ "Enter your domain name into the %1$s field, if it is not added already: %2$s"
2893
+ msgstr ""
2894
+
2895
+ #, php-format
2896
+ msgid "Press the %s button."
2897
+ msgstr ""
2898
+
2899
+ msgid "Allow some time for these modifications to take effect."
2900
+ msgstr ""
2901
+
2902
+ #, php-format
2903
+ msgid ""
2904
+ "Log in to your %s developer account or register one if you don't have any!"
2905
+ msgstr ""
2906
+
2907
+ #, php-format
2908
+ msgid "On the top right corner click on %1$s then click on the %2$s option."
2909
+ msgstr ""
2910
+
2911
+ #, php-format
2912
+ msgid ""
2913
+ "A modal will appear where you need to select an image as %1$s and enter a "
2914
+ "name into the %2$s field."
2915
+ msgstr ""
2916
+
2917
+ #, php-format
2918
+ msgid "Press the %1$s button."
2919
+ msgstr ""
2920
+
2921
+ #, php-format
2922
+ msgid "For %1$s choose the %2$s option."
2923
+ msgstr ""
2924
+
2925
+ #, php-format
2926
+ msgid "Under the %s section you should fill all of the required fields."
2927
  msgstr ""
2928
 
2929
+ #, php-format
2930
+ msgid "Enter your domain name to the %1$s field, probably: %2$s"
2931
+ msgstr ""
2932
+
2933
+ #, php-format
2934
+ msgid ""
2935
+ "Under the %1$s section you need to make sure the option %2$s is checked."
2936
+ msgstr ""
2937
+
2938
+ #, php-format
2939
+ msgid ""
2940
+ "Into the %1$s field you should write a text, that describes what you are "
2941
+ "going to do with the App. In this particular case, you will use it to offer "
2942
+ "%2$s login option for your visitors."
2943
+ msgstr ""
2944
+
2945
+ #, php-format
2946
+ msgid ""
2947
+ "Wait until your App gets approved. This can take a couple of days. If you "
2948
+ "scroll up to the top of the page you will be able to find the %s below the "
2949
+ "name of your App."
2950
+ msgstr ""
2951
+
2952
+ #, php-format
2953
+ msgid ""
2954
+ "Once the %1$s says %2$s, the %3$s and %4$s will appear below the %1$s text. "
2955
+ "You will need these for the provider configuration."
2956
+ msgstr ""
2957
+
2958
+ #, php-format
2959
+ msgid ""
2960
+ "<b>WARNING:</b> The %1$s API can not return any email address or phone "
2961
+ "number! %2$sLearn more%3$s."
2962
+ msgstr ""
2963
+
2964
+ msgid "Client Key"
2965
+ msgstr ""
2966
+
2967
+ msgid "Continue with <b>TikTok</b>"
2968
+ msgstr ""
2969
+
2970
+ msgid "Sign up with <b>TikTok</b>"
2971
+ msgstr ""
2972
+
2973
+ msgid "Link account with <b>TikTok</b>"
2974
+ msgstr ""
2975
+
2976
+ msgid "Unlink account from <b>TikTok</b>"
2977
+ msgstr ""
2978
+
2979
+ msgid "Click on the \"<b>Manage</b>\" button next to the associated App."
2980
+ msgstr ""
2981
+
2982
+ msgid "Go to the \"<b>Settings</b>\" menu"
2983
  msgstr ""
2984
 
2985
  msgid "Locate the blue \"<b>Create app</b>\" button and click on it."
3087
  msgid "Click on the App which has its credentials associated with the plugin."
3088
  msgstr ""
3089
 
 
 
 
3090
  msgid "Click on the \"<b>Create an App</b>\" button on the top right corner."
3091
  msgstr ""
3092
 
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-11-15 18:50+0100\n"
5
- "PO-Revision-Date: 2021-11-15 18:50+0100\n"
6
  "Last-Translator: \n"
7
  "Language-Team: nextend-facebook-connect\n"
8
  "Language: hu\n"
@@ -861,6 +861,16 @@ msgstr "Bejelntkezés kikapcsolása a kijelölt szerepköröknek"
861
  msgid "Debug mode"
862
  msgstr "Debug mód"
863
 
 
 
 
 
 
 
 
 
 
 
864
  msgid "Page for register flow"
865
  msgstr "Page for register flow"
866
 
@@ -1360,14 +1370,10 @@ msgstr ""
1360
  msgid "In the left sidebar, click on \"<b>Facebook Login > Settings</b>\""
1361
  msgstr "A bal oldali menüben kattints a \"Facebook Login\" feliratra"
1362
 
1363
- #, fuzzy
1364
- #| msgid ""
1365
- #| "Add the following URL to the \"Valid OAuth redirect URIs\" field: <b>%s</"
1366
- #| "b>"
1367
- msgid ""
1368
- "Add the following URL to the \"<b>Valid OAuth redirect URIs</b>\" field:"
1369
- msgstr ""
1370
- "Tedd a következő linket az \"Valid OAuth redirect URIs\" mezőbe: <b>%s</b>"
1371
 
1372
  #, fuzzy
1373
  #| msgid "Click on \"Save Changes\""
@@ -1795,6 +1801,14 @@ msgstr ""
1795
  "menj a \"Credentials\" fülre a bal oldali menüben és választ ki az appodat a "
1796
  "nevére kattintva. Innen ki tudod másolni a Client ID-t és Client Secretet."
1797
 
 
 
 
 
 
 
 
 
1798
  msgid "Client ID"
1799
  msgstr "Client ID"
1800
 
@@ -1824,29 +1838,25 @@ msgstr "Szétkapcsolás <b>Google</b>-től"
1824
  msgid "Required API: %1$s"
1825
  msgstr "Szükséges API: %1$s"
1826
 
1827
- #, fuzzy
1828
- #| msgid "Find your App and click on the Details button"
1829
- msgid ""
1830
- "Find your App and click on the <b>App settings</b> icon. (The one that looks "
1831
- "like a gear.)"
1832
- msgstr "Keresd meg az Appod és kattints a Details gombra."
1833
-
1834
- #, fuzzy
1835
- #| msgid "Click the \"Create App\" button."
1836
- msgid "Click on the <b>Edit</b> button at <b>Authentication settings</b>."
1837
- msgstr "Kattints a \"Create App\" gombra"
1838
 
1839
  #, fuzzy, php-format
1840
- #| msgid "Add the following URL to the \"Live Return URL\" field <b>%s</b> "
1841
- msgid "Add the following URL to the \"<b>%1$s</b>\" field:"
1842
- msgstr "Tedd a következő linket az \"Live Return URL\" mezőbe: <b>%s</b>"
1843
 
1844
  #, fuzzy, php-format
1845
  #| msgid "Make sure that the \"%1$s\" field contains %2$s"
1846
- msgid ""
1847
- "Make sure the \"<b>%1$s</b>\" field contains the following URL: <b>%2$s</b>"
1848
  msgstr "Győződj meg róla, hogy a \"%1$s\" mező tartalmazza: %2$s"
1849
 
 
 
 
 
 
1850
  msgid ""
1851
  "If you don't have a developer account yet, please apply one by filling all "
1852
  "the required details! This is required for the next steps!"
@@ -1863,15 +1873,19 @@ msgstr ""
1863
  msgid "Click on \"<b>%s</b>\"!"
1864
  msgstr "Kattints a \"Save\" gombra"
1865
 
 
1866
  msgid ""
1867
  "Name your project, and go through the basic setup. You’ll need to select "
1868
- "your use case, give a description and enter a name for the App as well."
1869
  msgstr ""
1870
 
1871
- #, fuzzy, php-format
1872
- #| msgid "Click on \"Save\""
1873
- msgid "Click \"<b>%s</b>\"!"
1874
- msgstr "Kattints a \"Save\" gombra"
 
 
 
1875
 
1876
  #, php-format
1877
  msgid ""
@@ -1888,12 +1902,12 @@ msgstr ""
1888
 
1889
  #, fuzzy, php-format
1890
  #| msgid "Name your project and then click on the Create button again"
1891
- msgid "Scroll down and click on the \"<b>%1$s</b>\" button at \"<b>%2$s</b>\"."
1892
  msgstr "Adj nevet a projektnek és kattints a \"Create\" gombra újra."
1893
 
1894
  #, fuzzy, php-format
1895
  #| msgid "Click on the Create button"
1896
- msgid "Switch on the \"<b>%s</b>\" option."
1897
  msgstr "Kattints a \"Create\" gombra"
1898
 
1899
  #, fuzzy, php-format
@@ -1904,25 +1918,40 @@ msgstr "Tedd a következő linket az \"Live Return URL\" mezőbe: <b>%s</b>"
1904
  #, php-format
1905
  msgid ""
1906
  "If you want to get the email address as well, then don’t forget to enable "
1907
- "the \"<b>%1$s</b>\" option. In this case you also need to fill the \"<b>"
1908
- "%2$s</b>\" and the \"<b>%3$s</b>\" fields with the corresponding URLs!"
1909
  msgstr ""
1910
 
1911
  #, fuzzy, php-format
1912
  #| msgid "Click on \"Save\""
1913
- msgid "Click on \"<b>%s</b>\"."
1914
  msgstr "Kattints a \"Save\" gombra"
1915
 
1916
  #, php-format
1917
- msgid "Go back to %1$s and <b>Verify</b> your %2$s provider."
 
 
1918
  msgstr ""
1919
 
1920
- msgid "API Key"
 
 
1921
  msgstr ""
1922
 
1923
- msgid "API secret key"
 
 
 
 
 
 
1924
  msgstr ""
1925
 
 
 
 
 
 
1926
  msgid "Profile image size"
1927
  msgstr ""
1928
 
@@ -2066,11 +2095,10 @@ msgstr ""
2066
  msgid "Click \"<b>Edit</b>\"."
2067
  msgstr ""
2068
 
2069
- #, fuzzy
2070
- #| msgid ""
2071
- #| "Add the following URL to the \"Allowed Return URLs\" field <b>%s</b> "
2072
- msgid "Add the following URL to the \"<b>Allowed Return URLs</b>\" field: "
2073
- msgstr "Tedd a következő linket az \"Allowed Return URLs\" mezőbe: <b>%s</b>"
2074
 
2075
  #, php-format
2076
  msgid ""
@@ -2167,11 +2195,6 @@ msgstr ""
2167
  "Írd be a weboldalad főoldalának címét a \"Base domain\" mezőbe. Valószínűleg "
2168
  "ez lesz az: <b>%s</b>"
2169
 
2170
- #, fuzzy
2171
- #| msgid "Add the following URL to the \"Live Return URL\" field <b>%s</b> "
2172
- msgid "Add the following URL to the \"<b>Return URLs</b>\" field:"
2173
- msgstr "Tedd a következő linket az \"Live Return URL\" mezőbe: <b>%s</b>"
2174
-
2175
  msgid ""
2176
  "Finally press \"<b>Next</b>\" then \"<b>Done</b>\" and finally click on the "
2177
  "\"<b>Continue</b>\" and the \"<b>Save</b>\" button!"
@@ -2463,10 +2486,10 @@ msgid ""
2463
  "Settings section on the left side."
2464
  msgstr ""
2465
 
2466
- #, fuzzy
2467
- #| msgid "Add the following URL to the \"Redirect URLs\" field <b>%s</b> "
2468
- msgid "Add the following URL in the \"<b>Redirects</b>\" field:"
2469
- msgstr "Tedd a következő linket az \"Redirect URLs:\" mezőbe: <b>%s</b>"
2470
 
2471
  #, fuzzy
2472
  #| msgid "Click on the \"Create New Application\" button."
@@ -2493,11 +2516,6 @@ msgstr ""
2493
  "Kattints a \"Credentials\" feliratra a bal oldali menüben hogy új API "
2494
  "adatokat készíts"
2495
 
2496
- #, fuzzy
2497
- #| msgid "Add the following URL to the \"Redirect URLs\" field <b>%s</b> "
2498
- msgid "Add the following URL to the \"<b>Redirects</b>\" field:"
2499
- msgstr "Tedd a következő linket az \"Redirect URLs:\" mezőbe: <b>%s</b>"
2500
-
2501
  #, fuzzy
2502
  #| msgid "Click on the \"Save Changes\" button."
2503
  msgid "Click the \"<b>Save Changes</b>\" button."
@@ -2554,11 +2572,6 @@ msgstr ""
2554
  "Válaszd ki a \"Read only\"-t a Default Access-nél az Authentication "
2555
  "szekcióban."
2556
 
2557
- #, fuzzy
2558
- #| msgid "Add the following URL to the \"Callback URLs\" field: <b>%s</b>"
2559
- msgid "Add the following URL to the \"<b>Callback URL</b>\" field:"
2560
- msgstr "Tedd a következő linket az \"Callback URL\" mezőbe: <b>%s</b>"
2561
-
2562
  #, fuzzy
2563
  #| msgid "Click on the \"Save Changes\" button."
2564
  msgid "Click on the \"<b>Save Changes</b>\" button."
@@ -2658,11 +2671,6 @@ msgstr "Kattints az %s Appod nevére."
2658
  msgid "Make sure the <b>Homepage URL</b> matches with: <b>%s</b>"
2659
  msgstr "Tedd a következő linket az \"Live Return URL\" mezőbe: <b>%s</b>"
2660
 
2661
- #, fuzzy
2662
- #| msgid "Add the following URL to the \"Callback URLs\" field: <b>%s</b>"
2663
- msgid "Add the following URL to the <b>Authorization callback URL</b> field:"
2664
- msgstr "Tedd a következő linket az \"Callback URL\" mezőbe: <b>%s</b>"
2665
-
2666
  #, fuzzy
2667
  #| msgid "Hit update to save the changes"
2668
  msgid "Press the <b>Update application</b> button to save the changes."
@@ -2736,9 +2744,9 @@ msgstr "Látogasd meg ezt az oldalt: %s"
2736
  msgid "Select your %s App and click on the LINE Login section."
2737
  msgstr ""
2738
 
2739
- #, fuzzy
2740
  #| msgid "Add the following URL to the \"Callback URLs\" field: <b>%s</b>"
2741
- msgid "Change your URL in the \"<b>Callback URL</b>\" field:"
2742
  msgstr "Tedd a következő linket az \"Callback URL\" mezőbe: <b>%s</b>"
2743
 
2744
  #, php-format
@@ -2878,11 +2886,6 @@ msgstr "Szétkapcsolás <b>LinkedIn</b>-től"
2878
  msgid "Click on your App and go to the \"<b>Auth</b>\" tab."
2879
  msgstr ""
2880
 
2881
- #, fuzzy
2882
- #| msgid "Add the following URL to the \"Redirect URLs\" field <b>%s</b> "
2883
- msgid "Add the following URL to the \"<b>Redirect URLs</b>\" field:"
2884
- msgstr "Tedd a következő linket az \"Redirect URLs:\" mezőbe: <b>%s</b>"
2885
-
2886
  #, fuzzy
2887
  #| msgid "Hit update to save the changes"
2888
  msgid "Click on \"<b>Update</b>\" to save the changes"
@@ -2933,11 +2936,9 @@ msgstr ""
2933
  msgid "Click on the \"<b>Auth</b>\" tab."
2934
  msgstr "Kattints a \"Create\" gombra"
2935
 
2936
- #, fuzzy
2937
  #| msgid "Add the following URL to the \"Redirect URLs\" field <b>%s</b> "
2938
- msgid ""
2939
- "Find \"<b>OAuth 2.0 settings</b>\" section and add the following URL to the "
2940
- "\"<b>Redirect URLs</b>\" field:"
2941
  msgstr "Tedd a következő linket az \"Redirect URLs:\" mezőbe: <b>%s</b>"
2942
 
2943
  #, fuzzy
@@ -2980,11 +2981,6 @@ msgstr ""
2980
  msgid "Click on the link next to the Redirect URIs label."
2981
  msgstr "Tedd a következő linket az \"Redirect URLs:\" mezőbe: <b>%s</b>"
2982
 
2983
- #, fuzzy
2984
- #| msgid "Add the following URL to the \"Redirect URLs\" field <b>%s</b> "
2985
- msgid "Add the following URL to the \"<b>Redirect URIs</b>\" field:"
2986
- msgstr "Tedd a következő linket az \"Redirect URLs:\" mezőbe: <b>%s</b>"
2987
-
2988
  #, fuzzy, php-format
2989
  #| msgid "Log in with your %s credentials if you are not logged in yet"
2990
  msgid ""
@@ -3012,11 +3008,6 @@ msgid ""
3012
  "you can learn more."
3013
  msgstr ""
3014
 
3015
- #, fuzzy
3016
- #| msgid "Add the following URL to the \"Redirect URLs\" field <b>%s</b> "
3017
- msgid "Add the following URL to the \"<b>Redirect URI</b>\" field:"
3018
- msgstr "Tedd a következő linket az \"Redirect URLs:\" mezőbe: <b>%s</b>"
3019
-
3020
  #, fuzzy
3021
  #| msgid "Click on the \"Create New Application\" button."
3022
  msgid "Create your App with the \"<b>Register</b>\" button."
@@ -3145,11 +3136,6 @@ msgid ""
3145
  "b>\" heading and click \"<b>Show</b>\"."
3146
  msgstr ""
3147
 
3148
- #, fuzzy
3149
- #| msgid "Add the following URL to the \"Live Return URL\" field <b>%s</b> "
3150
- msgid "Add the following URL to the \"<b>Live Return URL</b>\" field:"
3151
- msgstr "Tedd a következő linket az \"Live Return URL\" mezőbe: <b>%s</b>"
3152
-
3153
  msgid "Click on \"Save\""
3154
  msgstr "Kattints a \"Save\" gombra"
3155
 
@@ -3407,6 +3393,124 @@ msgstr "Fiók összekapcsolása a <b>Facebook</b>-kal"
3407
  msgid "Unlink account from <b>Slack</b>"
3408
  msgstr "Szétkapcsolás <b>Facebook</b>-tól"
3409
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3410
  #, fuzzy
3411
  #| msgid "Click on the Manage button at the App"
3412
  msgid "Click on the \"<b>Manage</b>\" button next to the associated App."
@@ -3417,13 +3521,6 @@ msgstr "Kattints a \"Manage \" gombra az Appban."
3417
  msgid "Go to the \"<b>Settings</b>\" menu"
3418
  msgstr "Menj a \"Settings\" menübe."
3419
 
3420
- #, fuzzy
3421
- #| msgid ""
3422
- #| "Add the following URL to the \"Authorized redirect URI:\" field: <b>%s</b>"
3423
- msgid "Add the following URL to the \"<b>Authorized redirect URI</b>\" field: "
3424
- msgstr ""
3425
- "Tedd a következő linket az \"Authorized redirect URI:\" mezőbe: <b>%s</b>"
3426
-
3427
  #, fuzzy
3428
  #| msgid "Locate the blue \"Create application\" button and click on it."
3429
  msgid "Locate the blue \"<b>Create app</b>\" button and click on it."
@@ -3564,11 +3661,6 @@ msgstr "Szétkapcsolás <b>WordPress.com</b>-tól"
3564
  msgid "Click on the App which has its credentials associated with the plugin."
3565
  msgstr ""
3566
 
3567
- #, fuzzy
3568
- #| msgid "Add the following URL to the \"Redirect URLs\" field <b>%s</b> "
3569
- msgid "Add the following URL to the \"<b>Redirect URI(s)</b>\" field:"
3570
- msgstr "Tedd a következő linket az \"Redirect URLs:\" mezőbe: <b>%s</b>"
3571
-
3572
  #, fuzzy
3573
  #| msgid "Click the \"Create App\" button."
3574
  msgid "Click on the \"<b>Create an App</b>\" button on the top right corner."
@@ -3632,6 +3724,99 @@ msgstr "VAGY"
3632
  msgid "Social accounts"
3633
  msgstr "Közösségi fiókok"
3634
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3635
  #, fuzzy, php-format
3636
  #~| msgid ""
3637
  #~| "Add the following URL to the \"Authorised redirect URIs\" field: <b>%s</"
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: nextend-facebook-connect\n"
4
+ "POT-Creation-Date: 2022-02-14 08:32+0100\n"
5
+ "PO-Revision-Date: 2022-02-14 08:32+0100\n"
6
  "Last-Translator: \n"
7
  "Language-Team: nextend-facebook-connect\n"
8
  "Language: hu\n"
861
  msgid "Debug mode"
862
  msgstr "Debug mód"
863
 
864
+ msgid "Bypass cache on redirect"
865
+ msgstr ""
866
+
867
+ #, php-format
868
+ msgid ""
869
+ "Enabling this option will add a GET parameter to the URL where we redirect "
870
+ "after a successful registration or login with social login. %1$sLearn more"
871
+ "%2$s."
872
+ msgstr ""
873
+
874
  msgid "Page for register flow"
875
  msgstr "Page for register flow"
876
 
1370
  msgid "In the left sidebar, click on \"<b>Facebook Login > Settings</b>\""
1371
  msgstr "A bal oldali menüben kattints a \"Facebook Login\" feliratra"
1372
 
1373
+ #, fuzzy, php-format
1374
+ #| msgid "Add the following URL to the \"Live Return URL\" field <b>%s</b> "
1375
+ msgid "Add the following URL to the %s field:"
1376
+ msgstr "Tedd a következő linket az \"Live Return URL\" mezőbe: <b>%s</b>"
 
 
 
 
1377
 
1378
  #, fuzzy
1379
  #| msgid "Click on \"Save Changes\""
1801
  "menj a \"Credentials\" fülre a bal oldali menüben és választ ki az appodat a "
1802
  "nevére kattintva. Innen ki tudod másolni a Client ID-t és Client Secretet."
1803
 
1804
+ #, php-format
1805
+ msgid ""
1806
+ "Currently your App is in %1$s mode, so only limited number of people can use "
1807
+ "it. To allow this App for any user with a Google Account, click on the \"%2$s"
1808
+ "\" option on the left side, then click the \"%3$s\" button under the \"%4$s"
1809
+ "\" section, and press the \"%5$s\" button. "
1810
+ msgstr ""
1811
+
1812
  msgid "Client ID"
1813
  msgstr "Client ID"
1814
 
1838
  msgid "Required API: %1$s"
1839
  msgstr "Szükséges API: %1$s"
1840
 
1841
+ #, php-format
1842
+ msgid "On the left side, under the %s section click on the name of your App."
1843
+ msgstr ""
 
 
 
 
 
 
 
 
1844
 
1845
  #, fuzzy, php-format
1846
+ #| msgid "Click on the Create button"
1847
+ msgid "Click on the %1$s button at %2$s."
1848
+ msgstr "Kattints a \"Create\" gombra"
1849
 
1850
  #, fuzzy, php-format
1851
  #| msgid "Make sure that the \"%1$s\" field contains %2$s"
1852
+ msgid "Make sure the %1$s field contains the following URL: %2$s"
 
1853
  msgstr "Győződj meg róla, hogy a \"%1$s\" mező tartalmazza: %2$s"
1854
 
1855
+ #, fuzzy, php-format
1856
+ #| msgid "Click on \"Save\""
1857
+ msgid "Click on %s"
1858
+ msgstr "Kattints a \"Save\" gombra"
1859
+
1860
  msgid ""
1861
  "If you don't have a developer account yet, please apply one by filling all "
1862
  "the required details! This is required for the next steps!"
1873
  msgid "Click on \"<b>%s</b>\"!"
1874
  msgstr "Kattints a \"Save\" gombra"
1875
 
1876
+ #, php-format
1877
  msgid ""
1878
  "Name your project, and go through the basic setup. You’ll need to select "
1879
+ "your use case, give a description then click the %s button."
1880
  msgstr ""
1881
 
1882
+ #, php-format
1883
+ msgid "Choose the %1$s option for %2$s, then press %3$s!"
1884
+ msgstr ""
1885
+
1886
+ #, php-format
1887
+ msgid "Into the %1$s field, enter a name for your App, then press %2$s again!"
1888
+ msgstr ""
1889
 
1890
  #, php-format
1891
  msgid ""
1902
 
1903
  #, fuzzy, php-format
1904
  #| msgid "Name your project and then click on the Create button again"
1905
+ msgid "Scroll down and click on the %1$s button at %2$s."
1906
  msgstr "Adj nevet a projektnek és kattints a \"Create\" gombra újra."
1907
 
1908
  #, fuzzy, php-format
1909
  #| msgid "Click on the Create button"
1910
+ msgid "Switch on the %s option."
1911
  msgstr "Kattints a \"Create\" gombra"
1912
 
1913
  #, fuzzy, php-format
1918
  #, php-format
1919
  msgid ""
1920
  "If you want to get the email address as well, then don’t forget to enable "
1921
+ "the %1$s option. In this case you also need to fill the \"<b>%2$s</b>\" and "
1922
+ "the \"<b>%3$s</b>\" fields with the corresponding URLs!"
1923
  msgstr ""
1924
 
1925
  #, fuzzy, php-format
1926
  #| msgid "Click on \"Save\""
1927
+ msgid "Click on %s."
1928
  msgstr "Kattints a \"Save\" gombra"
1929
 
1930
  #, php-format
1931
+ msgid ""
1932
+ "On the left side, under the \"<b>%s</b>\" section click on the name of your "
1933
+ "Project ( that you created the App for )."
1934
  msgstr ""
1935
 
1936
+ #, php-format
1937
+ msgid ""
1938
+ "Click on the %1$s button, then fill the %2$s, %3$s, %4$s and %5$s forms."
1939
  msgstr ""
1940
 
1941
+ #, php-format
1942
+ msgid ""
1943
+ "Once your application for the Elevated access has been approved, go back to "
1944
+ "%1$s then <b>verify</b> and <b>enable</b> the %2$s provider!"
1945
+ msgstr ""
1946
+
1947
+ msgid "API Key"
1948
  msgstr ""
1949
 
1950
+ #, fuzzy
1951
+ #| msgid "API Secret"
1952
+ msgid "API Key Secret"
1953
+ msgstr "API Secret"
1954
+
1955
  msgid "Profile image size"
1956
  msgstr ""
1957
 
2095
  msgid "Click \"<b>Edit</b>\"."
2096
  msgstr ""
2097
 
2098
+ #, fuzzy, php-format
2099
+ #| msgid "Add the following URL to the \"Live Return URL\" field <b>%s</b> "
2100
+ msgid "Add the following URL to the %s field: "
2101
+ msgstr "Tedd a következő linket az \"Live Return URL\" mezőbe: <b>%s</b>"
 
2102
 
2103
  #, php-format
2104
  msgid ""
2195
  "Írd be a weboldalad főoldalának címét a \"Base domain\" mezőbe. Valószínűleg "
2196
  "ez lesz az: <b>%s</b>"
2197
 
 
 
 
 
 
2198
  msgid ""
2199
  "Finally press \"<b>Next</b>\" then \"<b>Done</b>\" and finally click on the "
2200
  "\"<b>Continue</b>\" and the \"<b>Save</b>\" button!"
2486
  "Settings section on the left side."
2487
  msgstr ""
2488
 
2489
+ #, fuzzy, php-format
2490
+ #| msgid "Add the following URL to the \"Live Return URL\" field <b>%s</b> "
2491
+ msgid "Add the following URL in the %s field:"
2492
+ msgstr "Tedd a következő linket az \"Live Return URL\" mezőbe: <b>%s</b>"
2493
 
2494
  #, fuzzy
2495
  #| msgid "Click on the \"Create New Application\" button."
2516
  "Kattints a \"Credentials\" feliratra a bal oldali menüben hogy új API "
2517
  "adatokat készíts"
2518
 
 
 
 
 
 
2519
  #, fuzzy
2520
  #| msgid "Click on the \"Save Changes\" button."
2521
  msgid "Click the \"<b>Save Changes</b>\" button."
2572
  "Válaszd ki a \"Read only\"-t a Default Access-nél az Authentication "
2573
  "szekcióban."
2574
 
 
 
 
 
 
2575
  #, fuzzy
2576
  #| msgid "Click on the \"Save Changes\" button."
2577
  msgid "Click on the \"<b>Save Changes</b>\" button."
2671
  msgid "Make sure the <b>Homepage URL</b> matches with: <b>%s</b>"
2672
  msgstr "Tedd a következő linket az \"Live Return URL\" mezőbe: <b>%s</b>"
2673
 
 
 
 
 
 
2674
  #, fuzzy
2675
  #| msgid "Hit update to save the changes"
2676
  msgid "Press the <b>Update application</b> button to save the changes."
2744
  msgid "Select your %s App and click on the LINE Login section."
2745
  msgstr ""
2746
 
2747
+ #, fuzzy, php-format
2748
  #| msgid "Add the following URL to the \"Callback URLs\" field: <b>%s</b>"
2749
+ msgid "Change your URL in the %s field:"
2750
  msgstr "Tedd a következő linket az \"Callback URL\" mezőbe: <b>%s</b>"
2751
 
2752
  #, php-format
2886
  msgid "Click on your App and go to the \"<b>Auth</b>\" tab."
2887
  msgstr ""
2888
 
 
 
 
 
 
2889
  #, fuzzy
2890
  #| msgid "Hit update to save the changes"
2891
  msgid "Click on \"<b>Update</b>\" to save the changes"
2936
  msgid "Click on the \"<b>Auth</b>\" tab."
2937
  msgstr "Kattints a \"Create\" gombra"
2938
 
2939
+ #, fuzzy, php-format
2940
  #| msgid "Add the following URL to the \"Redirect URLs\" field <b>%s</b> "
2941
+ msgid "Find the %1$s section and add the following URL to the %2$s field:"
 
 
2942
  msgstr "Tedd a következő linket az \"Redirect URLs:\" mezőbe: <b>%s</b>"
2943
 
2944
  #, fuzzy
2981
  msgid "Click on the link next to the Redirect URIs label."
2982
  msgstr "Tedd a következő linket az \"Redirect URLs:\" mezőbe: <b>%s</b>"
2983
 
 
 
 
 
 
2984
  #, fuzzy, php-format
2985
  #| msgid "Log in with your %s credentials if you are not logged in yet"
2986
  msgid ""
3008
  "you can learn more."
3009
  msgstr ""
3010
 
 
 
 
 
 
3011
  #, fuzzy
3012
  #| msgid "Click on the \"Create New Application\" button."
3013
  msgid "Create your App with the \"<b>Register</b>\" button."
3136
  "b>\" heading and click \"<b>Show</b>\"."
3137
  msgstr ""
3138
 
 
 
 
 
 
3139
  msgid "Click on \"Save\""
3140
  msgstr "Kattints a \"Save\" gombra"
3141
 
3393
  msgid "Unlink account from <b>Slack</b>"
3394
  msgstr "Szétkapcsolás <b>Facebook</b>-tól"
3395
 
3396
+ #, fuzzy, php-format
3397
+ #| msgid "Log in with your %s credentials if you are not logged in yet"
3398
+ msgid "Log in to your %s developer account, if you are not logged in yet."
3399
+ msgstr "Lépj be a %s fiókoddal ha még nem vagy belépve."
3400
+
3401
+ #, php-format
3402
+ msgid ""
3403
+ "On the top right corner click on %1$s then click on the name of that App "
3404
+ "that you used for the configuration."
3405
+ msgstr ""
3406
+
3407
+ #, fuzzy, php-format
3408
+ #| msgid "Click on the Create button"
3409
+ msgid "Scroll down to the %s section."
3410
+ msgstr "Kattints a \"Create\" gombra"
3411
+
3412
+ #, fuzzy, php-format
3413
+ #| msgid "Enter your domain name to the App Domains"
3414
+ msgid ""
3415
+ "Enter your domain name into the %1$s field, if it is not added already: %2$s"
3416
+ msgstr "Írd be a domain neved az \"App Domains\" mezőbe"
3417
+
3418
+ #, php-format
3419
+ msgid "Press the %s button."
3420
+ msgstr ""
3421
+
3422
+ msgid "Allow some time for these modifications to take effect."
3423
+ msgstr ""
3424
+
3425
+ #, php-format
3426
+ msgid ""
3427
+ "Log in to your %s developer account or register one if you don't have any!"
3428
+ msgstr ""
3429
+
3430
+ #, php-format
3431
+ msgid "On the top right corner click on %1$s then click on the %2$s option."
3432
+ msgstr ""
3433
+
3434
+ #, php-format
3435
+ msgid ""
3436
+ "A modal will appear where you need to select an image as %1$s and enter a "
3437
+ "name into the %2$s field."
3438
+ msgstr ""
3439
+
3440
+ #, php-format
3441
+ msgid "Press the %1$s button."
3442
+ msgstr ""
3443
+
3444
+ #, fuzzy, php-format
3445
+ #| msgid "Click on the Create button"
3446
+ msgid "For %1$s choose the %2$s option."
3447
+ msgstr "Kattints a \"Create\" gombra"
3448
+
3449
+ #, php-format
3450
+ msgid "Under the %s section you should fill all of the required fields."
3451
+ msgstr ""
3452
+
3453
+ #, fuzzy, php-format
3454
+ #| msgid "Enter your domain name to the App Domains"
3455
+ msgid "Enter your domain name to the %1$s field, probably: %2$s"
3456
+ msgstr "Írd be a domain neved az \"App Domains\" mezőbe"
3457
+
3458
+ #, php-format
3459
+ msgid ""
3460
+ "Under the %1$s section you need to make sure the option %2$s is checked."
3461
+ msgstr ""
3462
+
3463
+ #, php-format
3464
+ msgid ""
3465
+ "Into the %1$s field you should write a text, that describes what you are "
3466
+ "going to do with the App. In this particular case, you will use it to offer "
3467
+ "%2$s login option for your visitors."
3468
+ msgstr ""
3469
+
3470
+ #, php-format
3471
+ msgid ""
3472
+ "Wait until your App gets approved. This can take a couple of days. If you "
3473
+ "scroll up to the top of the page you will be able to find the %s below the "
3474
+ "name of your App."
3475
+ msgstr ""
3476
+
3477
+ #, php-format
3478
+ msgid ""
3479
+ "Once the %1$s says %2$s, the %3$s and %4$s will appear below the %1$s text. "
3480
+ "You will need these for the provider configuration."
3481
+ msgstr ""
3482
+
3483
+ #, php-format
3484
+ msgid ""
3485
+ "<b>WARNING:</b> The %1$s API can not return any email address or phone "
3486
+ "number! %2$sLearn more%3$s."
3487
+ msgstr ""
3488
+
3489
+ #, fuzzy
3490
+ #| msgid "Client ID"
3491
+ msgid "Client Key"
3492
+ msgstr "Client ID"
3493
+
3494
+ #, fuzzy
3495
+ #| msgid "Continue with <b>LinkedIn</b>"
3496
+ msgid "Continue with <b>TikTok</b>"
3497
+ msgstr "Folytatás a <b>LinkedIn</b>-nel"
3498
+
3499
+ #, fuzzy
3500
+ #| msgid "Sign up with <b>LinkedIn</b>"
3501
+ msgid "Sign up with <b>TikTok</b>"
3502
+ msgstr "Folytatás a <b>LinkedIn</b>-nel"
3503
+
3504
+ #, fuzzy
3505
+ #| msgid "Link account with <b>LinkedIn</b>"
3506
+ msgid "Link account with <b>TikTok</b>"
3507
+ msgstr "Fiók összekapcsolása a <b>LinkedIn</b>-nel"
3508
+
3509
+ #, fuzzy
3510
+ #| msgid "Unlink account from <b>LinkedIn</b>"
3511
+ msgid "Unlink account from <b>TikTok</b>"
3512
+ msgstr "Szétkapcsolás <b>LinkedIn</b>-től"
3513
+
3514
  #, fuzzy
3515
  #| msgid "Click on the Manage button at the App"
3516
  msgid "Click on the \"<b>Manage</b>\" button next to the associated App."
3521
  msgid "Go to the \"<b>Settings</b>\" menu"
3522
  msgstr "Menj a \"Settings\" menübe."
3523
 
 
 
 
 
 
 
 
3524
  #, fuzzy
3525
  #| msgid "Locate the blue \"Create application\" button and click on it."
3526
  msgid "Locate the blue \"<b>Create app</b>\" button and click on it."
3661
  msgid "Click on the App which has its credentials associated with the plugin."
3662
  msgstr ""
3663
 
 
 
 
 
 
3664
  #, fuzzy
3665
  #| msgid "Click the \"Create App\" button."
3666
  msgid "Click on the \"<b>Create an App</b>\" button on the top right corner."
3724
  msgid "Social accounts"
3725
  msgstr "Közösségi fiókok"
3726
 
3727
+ #, fuzzy
3728
+ #~| msgid ""
3729
+ #~| "Add the following URL to the \"Valid OAuth redirect URIs\" field: <b>%s</"
3730
+ #~| "b>"
3731
+ #~ msgid ""
3732
+ #~ "Add the following URL to the \"<b>Valid OAuth redirect URIs</b>\" field:"
3733
+ #~ msgstr ""
3734
+ #~ "Tedd a következő linket az \"Valid OAuth redirect URIs\" mezőbe: <b>%s</b>"
3735
+
3736
+ #, fuzzy
3737
+ #~| msgid "Find your App and click on the Details button"
3738
+ #~ msgid ""
3739
+ #~ "Find your App and click on the <b>App settings</b> icon. (The one that "
3740
+ #~ "looks like a gear.)"
3741
+ #~ msgstr "Keresd meg az Appod és kattints a Details gombra."
3742
+
3743
+ #, fuzzy
3744
+ #~| msgid "Click the \"Create App\" button."
3745
+ #~ msgid "Click on the <b>Edit</b> button at <b>Authentication settings</b>."
3746
+ #~ msgstr "Kattints a \"Create App\" gombra"
3747
+
3748
+ #, fuzzy, php-format
3749
+ #~| msgid "Click on \"Save\""
3750
+ #~ msgid "Click \"<b>%s</b>\"!"
3751
+ #~ msgstr "Kattints a \"Save\" gombra"
3752
+
3753
+ #, fuzzy
3754
+ #~| msgid ""
3755
+ #~| "Add the following URL to the \"Allowed Return URLs\" field <b>%s</b> "
3756
+ #~ msgid "Add the following URL to the \"<b>Allowed Return URLs</b>\" field: "
3757
+ #~ msgstr ""
3758
+ #~ "Tedd a következő linket az \"Allowed Return URLs\" mezőbe: <b>%s</b>"
3759
+
3760
+ #, fuzzy
3761
+ #~| msgid "Add the following URL to the \"Live Return URL\" field <b>%s</b> "
3762
+ #~ msgid "Add the following URL to the \"<b>Return URLs</b>\" field:"
3763
+ #~ msgstr "Tedd a következő linket az \"Live Return URL\" mezőbe: <b>%s</b>"
3764
+
3765
+ #, fuzzy
3766
+ #~| msgid "Add the following URL to the \"Redirect URLs\" field <b>%s</b> "
3767
+ #~ msgid "Add the following URL in the \"<b>Redirects</b>\" field:"
3768
+ #~ msgstr "Tedd a következő linket az \"Redirect URLs:\" mezőbe: <b>%s</b>"
3769
+
3770
+ #, fuzzy
3771
+ #~| msgid "Add the following URL to the \"Redirect URLs\" field <b>%s</b> "
3772
+ #~ msgid "Add the following URL to the \"<b>Redirects</b>\" field:"
3773
+ #~ msgstr "Tedd a következő linket az \"Redirect URLs:\" mezőbe: <b>%s</b>"
3774
+
3775
+ #, fuzzy
3776
+ #~| msgid "Add the following URL to the \"Callback URLs\" field: <b>%s</b>"
3777
+ #~ msgid "Add the following URL to the \"<b>Callback URL</b>\" field:"
3778
+ #~ msgstr "Tedd a következő linket az \"Callback URL\" mezőbe: <b>%s</b>"
3779
+
3780
+ #, fuzzy
3781
+ #~| msgid "Add the following URL to the \"Callback URLs\" field: <b>%s</b>"
3782
+ #~ msgid ""
3783
+ #~ "Add the following URL to the <b>Authorization callback URL</b> field:"
3784
+ #~ msgstr "Tedd a következő linket az \"Callback URL\" mezőbe: <b>%s</b>"
3785
+
3786
+ #, fuzzy
3787
+ #~| msgid "Add the following URL to the \"Redirect URLs\" field <b>%s</b> "
3788
+ #~ msgid "Add the following URL to the \"<b>Redirect URLs</b>\" field:"
3789
+ #~ msgstr "Tedd a következő linket az \"Redirect URLs:\" mezőbe: <b>%s</b>"
3790
+
3791
+ #, fuzzy
3792
+ #~| msgid "Add the following URL to the \"Redirect URLs\" field <b>%s</b> "
3793
+ #~ msgid "Add the following URL to the \"<b>Redirect URIs</b>\" field:"
3794
+ #~ msgstr "Tedd a következő linket az \"Redirect URLs:\" mezőbe: <b>%s</b>"
3795
+
3796
+ #, fuzzy
3797
+ #~| msgid "Add the following URL to the \"Redirect URLs\" field <b>%s</b> "
3798
+ #~ msgid "Add the following URL to the \"<b>Redirect URI</b>\" field:"
3799
+ #~ msgstr "Tedd a következő linket az \"Redirect URLs:\" mezőbe: <b>%s</b>"
3800
+
3801
+ #, fuzzy
3802
+ #~| msgid "Add the following URL to the \"Live Return URL\" field <b>%s</b> "
3803
+ #~ msgid "Add the following URL to the \"<b>Live Return URL</b>\" field:"
3804
+ #~ msgstr "Tedd a következő linket az \"Live Return URL\" mezőbe: <b>%s</b>"
3805
+
3806
+ #, fuzzy
3807
+ #~| msgid ""
3808
+ #~| "Add the following URL to the \"Authorized redirect URI:\" field: <b>%s</"
3809
+ #~| "b>"
3810
+ #~ msgid ""
3811
+ #~ "Add the following URL to the \"<b>Authorized redirect URI</b>\" field: "
3812
+ #~ msgstr ""
3813
+ #~ "Tedd a következő linket az \"Authorized redirect URI:\" mezőbe: <b>%s</b>"
3814
+
3815
+ #, fuzzy
3816
+ #~| msgid "Add the following URL to the \"Redirect URLs\" field <b>%s</b> "
3817
+ #~ msgid "Add the following URL to the \"<b>Redirect URI(s)</b>\" field:"
3818
+ #~ msgstr "Tedd a következő linket az \"Redirect URLs:\" mezőbe: <b>%s</b>"
3819
+
3820
  #, fuzzy, php-format
3821
  #~| msgid ""
3822
  #~| "Add the following URL to the \"Authorised redirect URIs\" field: <b>%s</"
languages/nextend-facebook-connect-it_IT.mo CHANGED
Binary file
languages/nextend-facebook-connect-it_IT.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: nextend-facebook-connect\n"
4
- "POT-Creation-Date: 2021-11-15 18:50+0100\n"
5
- "PO-Revision-Date: 2021-11-15 18:50+0100\n"
6
  "Last-Translator: \n"
7
  "Language-Team: nextend-facebook-connect\n"
8
  "Language: it_IT\n"
@@ -845,6 +845,16 @@ msgstr "Disabilita l'amministrazione per i ruoli"
845
  msgid "Debug mode"
846
  msgstr "Modalità debug"
847
 
 
 
 
 
 
 
 
 
 
 
848
  msgid "Page for register flow"
849
  msgstr "Pagina per il flusso di registrazione"
850
 
@@ -1317,9 +1327,10 @@ msgstr ""
1317
  "Sulla barra laterale clicca clicca su \"<b>Accesso Facebook > Impostazioni</"
1318
  "b>\""
1319
 
1320
- msgid ""
1321
- "Add the following URL to the \"<b>Valid OAuth redirect URIs</b>\" field:"
1322
- msgstr "Aggiungi l'URL seguente al campo \"<b>Valid OAuth redirect URIs</b>\":"
 
1323
 
1324
  msgid "Click on \"<b>Save Changes</b>\""
1325
  msgstr "Clicca su \"<b>Salva Modifiche</b>\""
@@ -1742,6 +1753,14 @@ msgstr ""
1742
  "cliccando sul suo nome e sarai in grado di fare copia-incolla del "
1743
  "\"<b>Client ID</b>\" e del \"<b>Client Secret</b>\" da lì."
1744
 
 
 
 
 
 
 
 
 
1745
  msgid "Client ID"
1746
  msgstr "Client ID"
1747
 
@@ -1774,35 +1793,29 @@ msgstr "Scollega account da <b>Google</b>"
1774
  msgid "Required API: %1$s"
1775
  msgstr "API richiesta: %1$s"
1776
 
1777
- #, fuzzy
1778
- #| msgid "Find your App and click on the \"<b>Details</b>\" button"
1779
- msgid ""
1780
- "Find your App and click on the <b>App settings</b> icon. (The one that looks "
1781
- "like a gear.)"
1782
- msgstr "Cerca la tua App e clicca sul bottone \"<b>Dettagli</b>\""
1783
-
1784
- #, fuzzy
1785
- #| msgid ""
1786
- #| "Click on the \"<b>Create an App</b>\" button on the top right corner."
1787
- msgid "Click on the <b>Edit</b> button at <b>Authentication settings</b>."
1788
  msgstr ""
1789
- "Clicca sul bottone \"<b>Crea un'App</b>\" nell'angolo in alto a destra."
1790
 
1791
  #, fuzzy, php-format
1792
- #| msgid "Add the following URL to the \"<b>Return URLs</b>\" field: <b>%s</b>"
1793
- msgid "Add the following URL to the \"<b>%1$s</b>\" field:"
1794
- msgstr "Aggiungi l'URL seguente al campo \"<b>URLs di ritorno</b>\": <b>%s</b>"
1795
 
1796
  #, fuzzy, php-format
1797
  #| msgid ""
1798
  #| "Make sure the <b>%1$s</b> tab is selected and click on the <b>%2$s</b> "
1799
  #| "button."
1800
- msgid ""
1801
- "Make sure the \"<b>%1$s</b>\" field contains the following URL: <b>%2$s</b>"
1802
  msgstr ""
1803
  "Accertati che la tab <b>%1$s</b> sia selezionata e clicca sul bottone <b>"
1804
  "%2$s</b>."
1805
 
 
 
 
 
 
1806
  msgid ""
1807
  "If you don't have a developer account yet, please apply one by filling all "
1808
  "the required details! This is required for the next steps!"
@@ -1822,14 +1835,19 @@ msgstr ""
1822
  msgid "Click on \"<b>%s</b>\"!"
1823
  msgstr "Clicca su \"<b>%s</b>\"!"
1824
 
 
1825
  msgid ""
1826
  "Name your project, and go through the basic setup. You’ll need to select "
1827
- "your use case, give a description and enter a name for the App as well."
1828
  msgstr ""
1829
 
1830
  #, php-format
1831
- msgid "Click \"<b>%s</b>\"!"
1832
- msgstr "Clicca \"<b>>%s</b>\"!"
 
 
 
 
1833
 
1834
  #, php-format
1835
  msgid ""
@@ -1845,11 +1863,12 @@ msgid ""
1845
  msgstr ""
1846
 
1847
  #, php-format
1848
- msgid "Scroll down and click on the \"<b>%1$s</b>\" button at \"<b>%2$s</b>\"."
1849
  msgstr ""
1850
 
1851
- #, php-format
1852
- msgid "Switch on the \"<b>%s</b>\" option."
 
1853
  msgstr "Scegli l'opzione \"<b>%s</b>\"."
1854
 
1855
  #, php-format
@@ -1859,23 +1878,39 @@ msgstr "Inserisci l'URL del tuo sito nel campo \"<b>%1$s</b>\": <b>%2$s</b>"
1859
  #, php-format
1860
  msgid ""
1861
  "If you want to get the email address as well, then don’t forget to enable "
1862
- "the \"<b>%1$s</b>\" option. In this case you also need to fill the \"<b>"
1863
- "%2$s</b>\" and the \"<b>%3$s</b>\" fields with the corresponding URLs!"
1864
  msgstr ""
1865
 
1866
- #, php-format
1867
- msgid "Click on \"<b>%s</b>\"."
 
1868
  msgstr "Clicca su \"<b>%s</b>\"."
1869
 
1870
  #, php-format
1871
- msgid "Go back to %1$s and <b>Verify</b> your %2$s provider."
 
 
 
 
 
 
 
 
 
 
 
 
 
1872
  msgstr ""
1873
 
1874
  msgid "API Key"
1875
  msgstr "API Key"
1876
 
1877
- msgid "API secret key"
1878
- msgstr "API secret key"
 
 
1879
 
1880
  msgid "Profile image size"
1881
  msgstr "Dimensioni immagine profilo"
@@ -2031,10 +2066,10 @@ msgstr ""
2031
  msgid "Click \"<b>Edit</b>\"."
2032
  msgstr "Clicca \"<b>Modifica</b>\"."
2033
 
2034
- msgid "Add the following URL to the \"<b>Allowed Return URLs</b>\" field: "
2035
- msgstr ""
2036
- "Aggiungi l'url seguente alle \"<b>URL di Ritorno consentite</b>\" campo <b>"
2037
- "%s</b>: "
2038
 
2039
  #, php-format
2040
  msgid ""
@@ -2114,11 +2149,6 @@ msgstr ""
2114
  "Compila il campo \"<b>Domini e Sottodomini</b>\" col nome del tuo dominio, "
2115
  "probabilmente: <b>%s</b>"
2116
 
2117
- #, fuzzy
2118
- #| msgid "Add the following URL to the \"<b>Return URLs</b>\" field: <b>%s</b>"
2119
- msgid "Add the following URL to the \"<b>Return URLs</b>\" field:"
2120
- msgstr "Aggiungi l'URL seguente al campo \"<b>URLs di ritorno</b>\": <b>%s</b>"
2121
-
2122
  msgid ""
2123
  "Finally press \"<b>Next</b>\" then \"<b>Done</b>\" and finally click on the "
2124
  "\"<b>Continue</b>\" and the \"<b>Save</b>\" button!"
@@ -2450,8 +2480,10 @@ msgid ""
2450
  "Settings section on the left side."
2451
  msgstr ""
2452
 
2453
- msgid "Add the following URL in the \"<b>Redirects</b>\" field:"
2454
- msgstr "Aggiungi l'URL seguente nel campo \"<b>Redirect</b>\":"
 
 
2455
 
2456
  msgid "Click the \"<b>New Application</b>\" button."
2457
  msgstr "Clicca sul bottone \"<b>Crea Nuova Applicazione</b>\"."
@@ -2470,9 +2502,6 @@ msgid ""
2470
  "On the left side, click on the “<b>%1$s</b>” menu point in the Settings."
2471
  msgstr "A sinistra, clicca nel menù su “<b>%1$s</b>” nei Settaggi."
2472
 
2473
- msgid "Add the following URL to the \"<b>Redirects</b>\" field:"
2474
- msgstr "Aggiungi l'URL seguente al campo \"<b>Redirect</b>\":"
2475
-
2476
  msgid "Click the \"<b>Save Changes</b>\" button."
2477
  msgstr "Clicca sul bottone \"<b>Salva Modifiche</b>\"."
2478
 
@@ -2517,9 +2546,6 @@ msgstr ""
2517
  "Seleziona la tab \"<b>Settaggi</b>\" e scrolla giù alla sezione "
2518
  "Autenticazione!"
2519
 
2520
- msgid "Add the following URL to the \"<b>Callback URL</b>\" field:"
2521
- msgstr "Aggiungi l'URL seguente al campo \"<b>Callback URLs</b>\":"
2522
-
2523
  msgid "Click on the \"<b>Save Changes</b>\" button."
2524
  msgstr "Clicca sul bottone \"<b>Salva Modifiche</b>\"."
2525
 
@@ -2597,9 +2623,6 @@ msgstr "Clicca sul nome dell'App che hai configurato per %s."
2597
  msgid "Make sure the <b>Homepage URL</b> matches with: <b>%s</b>"
2598
  msgstr "Accertati che l'<b>URL della Homepage</b> coincida con: <b>%s</b>"
2599
 
2600
- msgid "Add the following URL to the <b>Authorization callback URL</b> field:"
2601
- msgstr "Aggiungi questa URL nel campo della <b>Authorization callback URL</b>:"
2602
-
2603
  msgid "Press the <b>Update application</b> button to save the changes."
2604
  msgstr ""
2605
  "Clicca sul botton <b>Aggiorna applicatione</b>per salvare le modifiche."
@@ -2672,10 +2695,10 @@ msgstr "Naviga a %s"
2672
  msgid "Select your %s App and click on the LINE Login section."
2673
  msgstr ""
2674
 
2675
- #, fuzzy
2676
  #| msgid ""
2677
  #| "Add the following URL to the \"<b>Callback URLs</b>\" field: <b>%s</b>"
2678
- msgid "Change your URL in the \"<b>Callback URL</b>\" field:"
2679
  msgstr "Aggiungi l'URL seguente al campo \"<b>Callback URLs</b>\": <b>%s</b>"
2680
 
2681
  #, php-format
@@ -2836,12 +2859,6 @@ msgstr "Scollega account da <b>LinkedIn</b>"
2836
  msgid "Click on your App and go to the \"<b>Auth</b>\" tab."
2837
  msgstr "Clicca sulla tua App e vai nella tab \"<b>Auth</b>\"."
2838
 
2839
- #, fuzzy
2840
- #| msgid ""
2841
- #| "Add the following URL to the \"<b>Redirect URLs</b>\" field: <b>%s</b>"
2842
- msgid "Add the following URL to the \"<b>Redirect URLs</b>\" field:"
2843
- msgstr "Aggiungi l'URL seguente nel campo \"<b>Redirect URLs</b>\": <b>%s</b>"
2844
-
2845
  msgid "Click on \"<b>Update</b>\" to save the changes"
2846
  msgstr "Clicca su \"<b>Aggiorna</b>\" per salvare le modifiche"
2847
 
@@ -2895,9 +2912,11 @@ msgstr ""
2895
  msgid "Click on the \"<b>Auth</b>\" tab."
2896
  msgstr "Clicca sulla tab \"<b>Auth</b>\"."
2897
 
2898
- msgid ""
2899
- "Find \"<b>OAuth 2.0 settings</b>\" section and add the following URL to the "
2900
- "\"<b>Redirect URLs</b>\" field:"
 
 
2901
  msgstr ""
2902
  "Cerca la sezione \"<b>OAuth 2.0 settings</b>\" e aggiungi l'URL seguente al "
2903
  "campo \"<b>Redirect URLs</b>\":"
@@ -2941,13 +2960,6 @@ msgid "Click on the link next to the Redirect URIs label."
2941
  msgstr ""
2942
  "Aggiungi la seguente URL al campo \"<b>Redirect URI(s)</b>\": <b>%s</b>"
2943
 
2944
- #, fuzzy
2945
- #| msgid ""
2946
- #| "Add the following URL to the \"<b>Redirect URI(s)</b>\" field: <b>%s</b>"
2947
- msgid "Add the following URL to the \"<b>Redirect URIs</b>\" field:"
2948
- msgstr ""
2949
- "Aggiungi la seguente URL al campo \"<b>Redirect URI(s)</b>\": <b>%s</b>"
2950
-
2951
  #, fuzzy, php-format
2952
  #| msgid "Log in with your %s credentials if you are not logged in yet"
2953
  msgid ""
@@ -2975,13 +2987,6 @@ msgid ""
2975
  "you can learn more."
2976
  msgstr ""
2977
 
2978
- #, fuzzy
2979
- #| msgid ""
2980
- #| "Add the following URL to the \"<b>Redirect URI(s)</b>\" field: <b>%s</b>"
2981
- msgid "Add the following URL to the \"<b>Redirect URI</b>\" field:"
2982
- msgstr ""
2983
- "Aggiungi la seguente URL al campo \"<b>Redirect URI(s)</b>\": <b>%s</b>"
2984
-
2985
  #, fuzzy
2986
  #| msgid ""
2987
  #| "Press the \"<b>Continue</b>\" button and then the \"<b>Register</b>\" "
@@ -3117,13 +3122,6 @@ msgstr ""
3117
  "Scendi giù fino a \"<b>SETTAGGI APP LIVE</b>\", cerca il titolo \"<b>Live "
3118
  "Return URL</b>\" e clicca su \"<b>Mostra</b>\"."
3119
 
3120
- #, fuzzy
3121
- #| msgid ""
3122
- #| "Add the following URL to the \"<b>Live Return URL</b>\" field: <b>%s</b> "
3123
- msgid "Add the following URL to the \"<b>Live Return URL</b>\" field:"
3124
- msgstr ""
3125
- "Aggiungi l'URL seguente al campo \"<b>Live Return URL</b>\": <b>%s</b> "
3126
-
3127
  msgid "Click on \"Save\""
3128
  msgstr "Clicca su \"Salva\""
3129
 
@@ -3412,20 +3410,137 @@ msgstr "Collega account con <b>Facebook</b>"
3412
  msgid "Unlink account from <b>Slack</b>"
3413
  msgstr "Scollega account da <b>Facebook</b>"
3414
 
3415
- msgid "Click on the \"<b>Manage</b>\" button next to the associated App."
3416
- msgstr "Clicca sul bottone \"<b>Gestisci</b>\" vicino l'App associata."
 
 
3417
 
3418
- msgid "Go to the \"<b>Settings</b>\" menu"
3419
- msgstr "Vai al menu \"<b>Settaggi</b>\""
 
 
 
3420
 
3421
- #, fuzzy
 
 
 
 
 
3422
  #| msgid ""
3423
- #| "Add the following URL to the \"<b>Authorized redirect URI</b>\" field: <b>"
3424
  #| "%s</b>"
3425
- msgid "Add the following URL to the \"<b>Authorized redirect URI</b>\" field: "
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3426
  msgstr ""
3427
- "Aggiungi l'URL seguente al campo \"<b>Authorized redirect URI</b>\": <b>%s</"
3428
- "b>"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3429
 
3430
  msgid "Locate the blue \"<b>Create app</b>\" button and click on it."
3431
  msgstr "Cerca il bottone \"<b>Crea app</b>\" e cliccaci."
@@ -3551,13 +3666,6 @@ msgstr "Scollega account da <b>WordPress.com</b>"
3551
  msgid "Click on the App which has its credentials associated with the plugin."
3552
  msgstr "Clicca sull'App che ha le credenziali associate col plugin."
3553
 
3554
- #, fuzzy
3555
- #| msgid ""
3556
- #| "Add the following URL to the \"<b>Redirect URI(s)</b>\" field: <b>%s</b>"
3557
- msgid "Add the following URL to the \"<b>Redirect URI(s)</b>\" field:"
3558
- msgstr ""
3559
- "Aggiungi la seguente URL al campo \"<b>Redirect URI(s)</b>\": <b>%s</b>"
3560
-
3561
  msgid "Click on the \"<b>Create an App</b>\" button on the top right corner."
3562
  msgstr ""
3563
  "Clicca sul bottone \"<b>Crea un'App</b>\" nell'angolo in alto a destra."
@@ -3620,6 +3728,103 @@ msgstr "OR"
3620
  msgid "Social accounts"
3621
  msgstr "Account social"
3622
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3623
  #~ msgid ""
3624
  #~ "Disable, when you don't want to see the consent screen on each login."
3625
  #~ msgstr ""
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: nextend-facebook-connect\n"
4
+ "POT-Creation-Date: 2022-02-14 08:32+0100\n"
5
+ "PO-Revision-Date: 2022-02-14 08:32+0100\n"
6
  "Last-Translator: \n"
7
  "Language-Team: nextend-facebook-connect\n"
8
  "Language: it_IT\n"
845
  msgid "Debug mode"
846
  msgstr "Modalità debug"
847
 
848
+ msgid "Bypass cache on redirect"
849
+ msgstr ""
850
+
851
+ #, php-format
852
+ msgid ""
853
+ "Enabling this option will add a GET parameter to the URL where we redirect "
854
+ "after a successful registration or login with social login. %1$sLearn more"
855
+ "%2$s."
856
+ msgstr ""
857
+
858
  msgid "Page for register flow"
859
  msgstr "Pagina per il flusso di registrazione"
860
 
1327
  "Sulla barra laterale clicca clicca su \"<b>Accesso Facebook > Impostazioni</"
1328
  "b>\""
1329
 
1330
+ #, fuzzy, php-format
1331
+ #| msgid "Add the following URL to the \"<b>Return URLs</b>\" field: <b>%s</b>"
1332
+ msgid "Add the following URL to the %s field:"
1333
+ msgstr "Aggiungi l'URL seguente al campo \"<b>URLs di ritorno</b>\": <b>%s</b>"
1334
 
1335
  msgid "Click on \"<b>Save Changes</b>\""
1336
  msgstr "Clicca su \"<b>Salva Modifiche</b>\""
1753
  "cliccando sul suo nome e sarai in grado di fare copia-incolla del "
1754
  "\"<b>Client ID</b>\" e del \"<b>Client Secret</b>\" da lì."
1755
 
1756
+ #, php-format
1757
+ msgid ""
1758
+ "Currently your App is in %1$s mode, so only limited number of people can use "
1759
+ "it. To allow this App for any user with a Google Account, click on the \"%2$s"
1760
+ "\" option on the left side, then click the \"%3$s\" button under the \"%4$s"
1761
+ "\" section, and press the \"%5$s\" button. "
1762
+ msgstr ""
1763
+
1764
  msgid "Client ID"
1765
  msgstr "Client ID"
1766
 
1793
  msgid "Required API: %1$s"
1794
  msgstr "API richiesta: %1$s"
1795
 
1796
+ #, php-format
1797
+ msgid "On the left side, under the %s section click on the name of your App."
 
 
 
 
 
 
 
 
 
1798
  msgstr ""
 
1799
 
1800
  #, fuzzy, php-format
1801
+ #| msgid "Click on the \"<b>Create</b>\" button"
1802
+ msgid "Click on the %1$s button at %2$s."
1803
+ msgstr "Clicca sul bottone \"<b>Crea</b>\""
1804
 
1805
  #, fuzzy, php-format
1806
  #| msgid ""
1807
  #| "Make sure the <b>%1$s</b> tab is selected and click on the <b>%2$s</b> "
1808
  #| "button."
1809
+ msgid "Make sure the %1$s field contains the following URL: %2$s"
 
1810
  msgstr ""
1811
  "Accertati che la tab <b>%1$s</b> sia selezionata e clicca sul bottone <b>"
1812
  "%2$s</b>."
1813
 
1814
+ #, fuzzy, php-format
1815
+ #| msgid "Click on \"Save\""
1816
+ msgid "Click on %s"
1817
+ msgstr "Clicca su \"Salva\""
1818
+
1819
  msgid ""
1820
  "If you don't have a developer account yet, please apply one by filling all "
1821
  "the required details! This is required for the next steps!"
1835
  msgid "Click on \"<b>%s</b>\"!"
1836
  msgstr "Clicca su \"<b>%s</b>\"!"
1837
 
1838
+ #, php-format
1839
  msgid ""
1840
  "Name your project, and go through the basic setup. You’ll need to select "
1841
+ "your use case, give a description then click the %s button."
1842
  msgstr ""
1843
 
1844
  #, php-format
1845
+ msgid "Choose the %1$s option for %2$s, then press %3$s!"
1846
+ msgstr ""
1847
+
1848
+ #, php-format
1849
+ msgid "Into the %1$s field, enter a name for your App, then press %2$s again!"
1850
+ msgstr ""
1851
 
1852
  #, php-format
1853
  msgid ""
1863
  msgstr ""
1864
 
1865
  #, php-format
1866
+ msgid "Scroll down and click on the %1$s button at %2$s."
1867
  msgstr ""
1868
 
1869
+ #, fuzzy, php-format
1870
+ #| msgid "Switch on the \"<b>%s</b>\" option."
1871
+ msgid "Switch on the %s option."
1872
  msgstr "Scegli l'opzione \"<b>%s</b>\"."
1873
 
1874
  #, php-format
1878
  #, php-format
1879
  msgid ""
1880
  "If you want to get the email address as well, then don’t forget to enable "
1881
+ "the %1$s option. In this case you also need to fill the \"<b>%2$s</b>\" and "
1882
+ "the \"<b>%3$s</b>\" fields with the corresponding URLs!"
1883
  msgstr ""
1884
 
1885
+ #, fuzzy, php-format
1886
+ #| msgid "Click on \"<b>%s</b>\"."
1887
+ msgid "Click on %s."
1888
  msgstr "Clicca su \"<b>%s</b>\"."
1889
 
1890
  #, php-format
1891
+ msgid ""
1892
+ "On the left side, under the \"<b>%s</b>\" section click on the name of your "
1893
+ "Project ( that you created the App for )."
1894
+ msgstr ""
1895
+
1896
+ #, php-format
1897
+ msgid ""
1898
+ "Click on the %1$s button, then fill the %2$s, %3$s, %4$s and %5$s forms."
1899
+ msgstr ""
1900
+
1901
+ #, php-format
1902
+ msgid ""
1903
+ "Once your application for the Elevated access has been approved, go back to "
1904
+ "%1$s then <b>verify</b> and <b>enable</b> the %2$s provider!"
1905
  msgstr ""
1906
 
1907
  msgid "API Key"
1908
  msgstr "API Key"
1909
 
1910
+ #, fuzzy
1911
+ #| msgid "API Secret"
1912
+ msgid "API Key Secret"
1913
+ msgstr "API Secret"
1914
 
1915
  msgid "Profile image size"
1916
  msgstr "Dimensioni immagine profilo"
2066
  msgid "Click \"<b>Edit</b>\"."
2067
  msgstr "Clicca \"<b>Modifica</b>\"."
2068
 
2069
+ #, fuzzy, php-format
2070
+ #| msgid "Add the following URL to the \"<b>Return URLs</b>\" field: <b>%s</b>"
2071
+ msgid "Add the following URL to the %s field: "
2072
+ msgstr "Aggiungi l'URL seguente al campo \"<b>URLs di ritorno</b>\": <b>%s</b>"
2073
 
2074
  #, php-format
2075
  msgid ""
2149
  "Compila il campo \"<b>Domini e Sottodomini</b>\" col nome del tuo dominio, "
2150
  "probabilmente: <b>%s</b>"
2151
 
 
 
 
 
 
2152
  msgid ""
2153
  "Finally press \"<b>Next</b>\" then \"<b>Done</b>\" and finally click on the "
2154
  "\"<b>Continue</b>\" and the \"<b>Save</b>\" button!"
2480
  "Settings section on the left side."
2481
  msgstr ""
2482
 
2483
+ #, fuzzy, php-format
2484
+ #| msgid "Add the following URL to the \"<b>Return URLs</b>\" field: <b>%s</b>"
2485
+ msgid "Add the following URL in the %s field:"
2486
+ msgstr "Aggiungi l'URL seguente al campo \"<b>URLs di ritorno</b>\": <b>%s</b>"
2487
 
2488
  msgid "Click the \"<b>New Application</b>\" button."
2489
  msgstr "Clicca sul bottone \"<b>Crea Nuova Applicazione</b>\"."
2502
  "On the left side, click on the “<b>%1$s</b>” menu point in the Settings."
2503
  msgstr "A sinistra, clicca nel menù su “<b>%1$s</b>” nei Settaggi."
2504
 
 
 
 
2505
  msgid "Click the \"<b>Save Changes</b>\" button."
2506
  msgstr "Clicca sul bottone \"<b>Salva Modifiche</b>\"."
2507
 
2546
  "Seleziona la tab \"<b>Settaggi</b>\" e scrolla giù alla sezione "
2547
  "Autenticazione!"
2548
 
 
 
 
2549
  msgid "Click on the \"<b>Save Changes</b>\" button."
2550
  msgstr "Clicca sul bottone \"<b>Salva Modifiche</b>\"."
2551
 
2623
  msgid "Make sure the <b>Homepage URL</b> matches with: <b>%s</b>"
2624
  msgstr "Accertati che l'<b>URL della Homepage</b> coincida con: <b>%s</b>"
2625
 
 
 
 
2626
  msgid "Press the <b>Update application</b> button to save the changes."
2627
  msgstr ""
2628
  "Clicca sul botton <b>Aggiorna applicatione</b>per salvare le modifiche."
2695
  msgid "Select your %s App and click on the LINE Login section."
2696
  msgstr ""
2697
 
2698
+ #, fuzzy, php-format
2699
  #| msgid ""
2700
  #| "Add the following URL to the \"<b>Callback URLs</b>\" field: <b>%s</b>"
2701
+ msgid "Change your URL in the %s field:"
2702
  msgstr "Aggiungi l'URL seguente al campo \"<b>Callback URLs</b>\": <b>%s</b>"
2703
 
2704
  #, php-format
2859
  msgid "Click on your App and go to the \"<b>Auth</b>\" tab."
2860
  msgstr "Clicca sulla tua App e vai nella tab \"<b>Auth</b>\"."
2861
 
 
 
 
 
 
 
2862
  msgid "Click on \"<b>Update</b>\" to save the changes"
2863
  msgstr "Clicca su \"<b>Aggiorna</b>\" per salvare le modifiche"
2864
 
2912
  msgid "Click on the \"<b>Auth</b>\" tab."
2913
  msgstr "Clicca sulla tab \"<b>Auth</b>\"."
2914
 
2915
+ #, fuzzy, php-format
2916
+ #| msgid ""
2917
+ #| "Find \"<b>OAuth 2.0 settings</b>\" section and add the following URL to "
2918
+ #| "the \"<b>Redirect URLs</b>\" field:"
2919
+ msgid "Find the %1$s section and add the following URL to the %2$s field:"
2920
  msgstr ""
2921
  "Cerca la sezione \"<b>OAuth 2.0 settings</b>\" e aggiungi l'URL seguente al "
2922
  "campo \"<b>Redirect URLs</b>\":"
2960
  msgstr ""
2961
  "Aggiungi la seguente URL al campo \"<b>Redirect URI(s)</b>\": <b>%s</b>"
2962
 
 
 
 
 
 
 
 
2963
  #, fuzzy, php-format
2964
  #| msgid "Log in with your %s credentials if you are not logged in yet"
2965
  msgid ""
2987
  "you can learn more."
2988
  msgstr ""
2989
 
 
 
 
 
 
 
 
2990
  #, fuzzy
2991
  #| msgid ""
2992
  #| "Press the \"<b>Continue</b>\" button and then the \"<b>Register</b>\" "
3122
  "Scendi giù fino a \"<b>SETTAGGI APP LIVE</b>\", cerca il titolo \"<b>Live "
3123
  "Return URL</b>\" e clicca su \"<b>Mostra</b>\"."
3124
 
 
 
 
 
 
 
 
3125
  msgid "Click on \"Save\""
3126
  msgstr "Clicca su \"Salva\""
3127
 
3410
  msgid "Unlink account from <b>Slack</b>"
3411
  msgstr "Scollega account da <b>Facebook</b>"
3412
 
3413
+ #, fuzzy, php-format
3414
+ #| msgid "Log in with your %s credentials if you are not logged in yet"
3415
+ msgid "Log in to your %s developer account, if you are not logged in yet."
3416
+ msgstr "Accedi con le tue credenziali %s se non sei ancora loggato"
3417
 
3418
+ #, php-format
3419
+ msgid ""
3420
+ "On the top right corner click on %1$s then click on the name of that App "
3421
+ "that you used for the configuration."
3422
+ msgstr ""
3423
 
3424
+ #, fuzzy, php-format
3425
+ #| msgid "Switch on the \"<b>%s</b>\" option."
3426
+ msgid "Scroll down to the %s section."
3427
+ msgstr "Scegli l'opzione \"<b>%s</b>\"."
3428
+
3429
+ #, fuzzy, php-format
3430
  #| msgid ""
3431
+ #| "Enter your domain name to the \"<b>App Domains</b>\" field, probably: <b>"
3432
  #| "%s</b>"
3433
+ msgid ""
3434
+ "Enter your domain name into the %1$s field, if it is not added already: %2$s"
3435
+ msgstr ""
3436
+ "Inserisci il nome del tuo dominio nel campo \"<b>Domini App</b>\", "
3437
+ "probabilmente: <b>%s</b>"
3438
+
3439
+ #, php-format
3440
+ msgid "Press the %s button."
3441
+ msgstr ""
3442
+
3443
+ msgid "Allow some time for these modifications to take effect."
3444
+ msgstr ""
3445
+
3446
+ #, php-format
3447
+ msgid ""
3448
+ "Log in to your %s developer account or register one if you don't have any!"
3449
+ msgstr ""
3450
+
3451
+ #, php-format
3452
+ msgid "On the top right corner click on %1$s then click on the %2$s option."
3453
  msgstr ""
3454
+
3455
+ #, php-format
3456
+ msgid ""
3457
+ "A modal will appear where you need to select an image as %1$s and enter a "
3458
+ "name into the %2$s field."
3459
+ msgstr ""
3460
+
3461
+ #, php-format
3462
+ msgid "Press the %1$s button."
3463
+ msgstr ""
3464
+
3465
+ #, fuzzy, php-format
3466
+ #| msgid "Choose the \"<b>OAuth client ID</b>\" option."
3467
+ msgid "For %1$s choose the %2$s option."
3468
+ msgstr "Scegli l'opzione \"<b>OAuth client ID</b>\"."
3469
+
3470
+ #, php-format
3471
+ msgid "Under the %s section you should fill all of the required fields."
3472
+ msgstr ""
3473
+
3474
+ #, fuzzy, php-format
3475
+ #| msgid ""
3476
+ #| "Enter your domain name to the \"<b>App Domains</b>\" field, probably: <b>"
3477
+ #| "%s</b>"
3478
+ msgid "Enter your domain name to the %1$s field, probably: %2$s"
3479
+ msgstr ""
3480
+ "Inserisci il nome del tuo dominio nel campo \"<b>Domini App</b>\", "
3481
+ "probabilmente: <b>%s</b>"
3482
+
3483
+ #, php-format
3484
+ msgid ""
3485
+ "Under the %1$s section you need to make sure the option %2$s is checked."
3486
+ msgstr ""
3487
+
3488
+ #, php-format
3489
+ msgid ""
3490
+ "Into the %1$s field you should write a text, that describes what you are "
3491
+ "going to do with the App. In this particular case, you will use it to offer "
3492
+ "%2$s login option for your visitors."
3493
+ msgstr ""
3494
+
3495
+ #, php-format
3496
+ msgid ""
3497
+ "Wait until your App gets approved. This can take a couple of days. If you "
3498
+ "scroll up to the top of the page you will be able to find the %s below the "
3499
+ "name of your App."
3500
+ msgstr ""
3501
+
3502
+ #, php-format
3503
+ msgid ""
3504
+ "Once the %1$s says %2$s, the %3$s and %4$s will appear below the %1$s text. "
3505
+ "You will need these for the provider configuration."
3506
+ msgstr ""
3507
+
3508
+ #, php-format
3509
+ msgid ""
3510
+ "<b>WARNING:</b> The %1$s API can not return any email address or phone "
3511
+ "number! %2$sLearn more%3$s."
3512
+ msgstr ""
3513
+
3514
+ #, fuzzy
3515
+ #| msgid "Client ID"
3516
+ msgid "Client Key"
3517
+ msgstr "Client ID"
3518
+
3519
+ #, fuzzy
3520
+ #| msgid "Continue with <b>LinkedIn</b>"
3521
+ msgid "Continue with <b>TikTok</b>"
3522
+ msgstr "Continua con <b>LinkedIn</b>"
3523
+
3524
+ #, fuzzy
3525
+ #| msgid "Continue with <b>LinkedIn</b>"
3526
+ msgid "Sign up with <b>TikTok</b>"
3527
+ msgstr "Continua con <b>LinkedIn</b>"
3528
+
3529
+ #, fuzzy
3530
+ #| msgid "Link account with <b>LinkedIn</b>"
3531
+ msgid "Link account with <b>TikTok</b>"
3532
+ msgstr "Collega account con <b>LinkedIn</b>"
3533
+
3534
+ #, fuzzy
3535
+ #| msgid "Unlink account from <b>LinkedIn</b>"
3536
+ msgid "Unlink account from <b>TikTok</b>"
3537
+ msgstr "Scollega account da <b>LinkedIn</b>"
3538
+
3539
+ msgid "Click on the \"<b>Manage</b>\" button next to the associated App."
3540
+ msgstr "Clicca sul bottone \"<b>Gestisci</b>\" vicino l'App associata."
3541
+
3542
+ msgid "Go to the \"<b>Settings</b>\" menu"
3543
+ msgstr "Vai al menu \"<b>Settaggi</b>\""
3544
 
3545
  msgid "Locate the blue \"<b>Create app</b>\" button and click on it."
3546
  msgstr "Cerca il bottone \"<b>Crea app</b>\" e cliccaci."
3666
  msgid "Click on the App which has its credentials associated with the plugin."
3667
  msgstr "Clicca sull'App che ha le credenziali associate col plugin."
3668
 
 
 
 
 
 
 
 
3669
  msgid "Click on the \"<b>Create an App</b>\" button on the top right corner."
3670
  msgstr ""
3671
  "Clicca sul bottone \"<b>Crea un'App</b>\" nell'angolo in alto a destra."
3728
  msgid "Social accounts"
3729
  msgstr "Account social"
3730
 
3731
+ #~ msgid ""
3732
+ #~ "Add the following URL to the \"<b>Valid OAuth redirect URIs</b>\" field:"
3733
+ #~ msgstr ""
3734
+ #~ "Aggiungi l'URL seguente al campo \"<b>Valid OAuth redirect URIs</b>\":"
3735
+
3736
+ #, fuzzy
3737
+ #~| msgid "Find your App and click on the \"<b>Details</b>\" button"
3738
+ #~ msgid ""
3739
+ #~ "Find your App and click on the <b>App settings</b> icon. (The one that "
3740
+ #~ "looks like a gear.)"
3741
+ #~ msgstr "Cerca la tua App e clicca sul bottone \"<b>Dettagli</b>\""
3742
+
3743
+ #, fuzzy
3744
+ #~| msgid ""
3745
+ #~| "Click on the \"<b>Create an App</b>\" button on the top right corner."
3746
+ #~ msgid "Click on the <b>Edit</b> button at <b>Authentication settings</b>."
3747
+ #~ msgstr ""
3748
+ #~ "Clicca sul bottone \"<b>Crea un'App</b>\" nell'angolo in alto a destra."
3749
+
3750
+ #, php-format
3751
+ #~ msgid "Click \"<b>%s</b>\"!"
3752
+ #~ msgstr "Clicca \"<b>>%s</b>\"!"
3753
+
3754
+ #~ msgid "API secret key"
3755
+ #~ msgstr "API secret key"
3756
+
3757
+ #~ msgid "Add the following URL to the \"<b>Allowed Return URLs</b>\" field: "
3758
+ #~ msgstr ""
3759
+ #~ "Aggiungi l'url seguente alle \"<b>URL di Ritorno consentite</b>\" campo "
3760
+ #~ "<b>%s</b>: "
3761
+
3762
+ #, fuzzy
3763
+ #~| msgid ""
3764
+ #~| "Add the following URL to the \"<b>Return URLs</b>\" field: <b>%s</b>"
3765
+ #~ msgid "Add the following URL to the \"<b>Return URLs</b>\" field:"
3766
+ #~ msgstr ""
3767
+ #~ "Aggiungi l'URL seguente al campo \"<b>URLs di ritorno</b>\": <b>%s</b>"
3768
+
3769
+ #~ msgid "Add the following URL in the \"<b>Redirects</b>\" field:"
3770
+ #~ msgstr "Aggiungi l'URL seguente nel campo \"<b>Redirect</b>\":"
3771
+
3772
+ #~ msgid "Add the following URL to the \"<b>Redirects</b>\" field:"
3773
+ #~ msgstr "Aggiungi l'URL seguente al campo \"<b>Redirect</b>\":"
3774
+
3775
+ #~ msgid "Add the following URL to the \"<b>Callback URL</b>\" field:"
3776
+ #~ msgstr "Aggiungi l'URL seguente al campo \"<b>Callback URLs</b>\":"
3777
+
3778
+ #~ msgid ""
3779
+ #~ "Add the following URL to the <b>Authorization callback URL</b> field:"
3780
+ #~ msgstr ""
3781
+ #~ "Aggiungi questa URL nel campo della <b>Authorization callback URL</b>:"
3782
+
3783
+ #, fuzzy
3784
+ #~| msgid ""
3785
+ #~| "Add the following URL to the \"<b>Redirect URLs</b>\" field: <b>%s</b>"
3786
+ #~ msgid "Add the following URL to the \"<b>Redirect URLs</b>\" field:"
3787
+ #~ msgstr ""
3788
+ #~ "Aggiungi l'URL seguente nel campo \"<b>Redirect URLs</b>\": <b>%s</b>"
3789
+
3790
+ #, fuzzy
3791
+ #~| msgid ""
3792
+ #~| "Add the following URL to the \"<b>Redirect URI(s)</b>\" field: <b>%s</b>"
3793
+ #~ msgid "Add the following URL to the \"<b>Redirect URIs</b>\" field:"
3794
+ #~ msgstr ""
3795
+ #~ "Aggiungi la seguente URL al campo \"<b>Redirect URI(s)</b>\": <b>%s</b>"
3796
+
3797
+ #, fuzzy
3798
+ #~| msgid ""
3799
+ #~| "Add the following URL to the \"<b>Redirect URI(s)</b>\" field: <b>%s</b>"
3800
+ #~ msgid "Add the following URL to the \"<b>Redirect URI</b>\" field:"
3801
+ #~ msgstr ""
3802
+ #~ "Aggiungi la seguente URL al campo \"<b>Redirect URI(s)</b>\": <b>%s</b>"
3803
+
3804
+ #, fuzzy
3805
+ #~| msgid ""
3806
+ #~| "Add the following URL to the \"<b>Live Return URL</b>\" field: <b>%s</b> "
3807
+ #~ msgid "Add the following URL to the \"<b>Live Return URL</b>\" field:"
3808
+ #~ msgstr ""
3809
+ #~ "Aggiungi l'URL seguente al campo \"<b>Live Return URL</b>\": <b>%s</b> "
3810
+
3811
+ #, fuzzy
3812
+ #~| msgid ""
3813
+ #~| "Add the following URL to the \"<b>Authorized redirect URI</b>\" field: "
3814
+ #~| "<b>%s</b>"
3815
+ #~ msgid ""
3816
+ #~ "Add the following URL to the \"<b>Authorized redirect URI</b>\" field: "
3817
+ #~ msgstr ""
3818
+ #~ "Aggiungi l'URL seguente al campo \"<b>Authorized redirect URI</b>\": <b>"
3819
+ #~ "%s</b>"
3820
+
3821
+ #, fuzzy
3822
+ #~| msgid ""
3823
+ #~| "Add the following URL to the \"<b>Redirect URI(s)</b>\" field: <b>%s</b>"
3824
+ #~ msgid "Add the following URL to the \"<b>Redirect URI(s)</b>\" field:"
3825
+ #~ msgstr ""
3826
+ #~ "Aggiungi la seguente URL al campo \"<b>Redirect URI(s)</b>\": <b>%s</b>"
3827
+
3828
  #~ msgid ""
3829
  #~ "Disable, when you don't want to see the consent screen on each login."
3830
  #~ msgstr ""
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-11-15 18:51+0100\n"
5
- "PO-Revision-Date: 2021-11-15 18:51+0100\n"
6
  "Last-Translator: Erik Molenaar <info@erikmolenaar.nl>\n"
7
  "Language-Team: nextend-facebook-connect\n"
8
  "Language: nl_NL\n"
@@ -865,6 +865,16 @@ msgstr "Adminbalk voor rollen uitschakelen"
865
  msgid "Debug mode"
866
  msgstr "Debugmodus"
867
 
 
 
 
 
 
 
 
 
 
 
868
  msgid "Page for register flow"
869
  msgstr "Pagina voor registreerproces"
870
 
@@ -1360,15 +1370,10 @@ msgstr "Klik op de App met App ID: %s"
1360
  msgid "In the left sidebar, click on \"<b>Facebook Login > Settings</b>\""
1361
  msgstr "Klik in de linkerbalk op \"Facebook Login/Instellingen\""
1362
 
1363
- #, fuzzy
1364
- #| msgid ""
1365
- #| "Add the following URL to the \"Valid OAuth redirect URIs\" field: <b>%s</"
1366
- #| "b>"
1367
- msgid ""
1368
- "Add the following URL to the \"<b>Valid OAuth redirect URIs</b>\" field:"
1369
- msgstr ""
1370
- "Voeg de volgende URL toe aan het veld \"Geldige OAuth omleidings-URI's\": <b>"
1371
- "%s</b>"
1372
 
1373
  #, fuzzy
1374
  #| msgid "Click on \"Save Changes\""
@@ -1805,6 +1810,14 @@ msgstr ""
1805
  "te klikken en je kunt van daaruit de Client ID en Client Geheim kopiëren en "
1806
  "plakken."
1807
 
 
 
 
 
 
 
 
 
1808
  msgid "Client ID"
1809
  msgstr "Client ID"
1810
 
@@ -1836,29 +1849,30 @@ msgstr "Ontkoppel van <b>Google</b>"
1836
  msgid "Required API: %1$s"
1837
  msgstr "Vereiste API: %1$s"
1838
 
1839
- #, fuzzy
1840
- #| msgid "Find your App and click on the Details button"
1841
- msgid ""
1842
- "Find your App and click on the <b>App settings</b> icon. (The one that looks "
1843
- "like a gear.)"
1844
- msgstr "Vind jew app en klik op de knop Details"
1845
-
1846
- #, fuzzy
1847
- #| msgid "Click on the \"Create an App\" button on the top right corner."
1848
- msgid "Click on the <b>Edit</b> button at <b>Authentication settings</b>."
1849
- msgstr "Klik op de knop \"Maak een App\" in de rechterbovenhoek."
1850
 
1851
  #, fuzzy, php-format
1852
- #| msgid "Add the following URL to the \"Live Return URL\" field <b>%s</b> "
1853
- msgid "Add the following URL to the \"<b>%1$s</b>\" field:"
1854
- msgstr "Voeg de volgende URL toe aan het \"Live Return URL\" veld <b>%s</b> "
1855
 
1856
  #, fuzzy, php-format
1857
  #| msgid "Enter the URL of your site to the \"Home Page URL\" field: <b>%s</b>"
1858
- msgid ""
1859
- "Make sure the \"<b>%1$s</b>\" field contains the following URL: <b>%2$s</b>"
1860
  msgstr "Voer de URL van je site in het veld \"Home Page URL\" in: <b>%s</b>"
1861
 
 
 
 
 
 
1862
  msgid ""
1863
  "If you don't have a developer account yet, please apply one by filling all "
1864
  "the required details! This is required for the next steps!"
@@ -1882,15 +1896,19 @@ msgstr ""
1882
  msgid "Click on \"<b>%s</b>\"!"
1883
  msgstr "Klik op \"Opslaan\""
1884
 
 
1885
  msgid ""
1886
  "Name your project, and go through the basic setup. You’ll need to select "
1887
- "your use case, give a description and enter a name for the App as well."
1888
  msgstr ""
1889
 
1890
- #, fuzzy, php-format
1891
- #| msgid "Click \"Edit\"."
1892
- msgid "Click \"<b>%s</b>\"!"
1893
- msgstr "Klik op \"Bewerken\"."
 
 
 
1894
 
1895
  #, php-format
1896
  msgid ""
@@ -1907,12 +1925,12 @@ msgstr ""
1907
 
1908
  #, fuzzy, php-format
1909
  #| msgid "Name your project and then click on the Create button again"
1910
- msgid "Scroll down and click on the \"<b>%1$s</b>\" button at \"<b>%2$s</b>\"."
1911
  msgstr "Geef je project een naam en klik dan opnieuw op de knop Aanmaken"
1912
 
1913
  #, fuzzy, php-format
1914
  #| msgid "Click on the Create button"
1915
- msgid "Switch on the \"<b>%s</b>\" option."
1916
  msgstr "Klik op de knop Aanmaken"
1917
 
1918
  #, fuzzy, php-format
@@ -1923,24 +1941,39 @@ msgstr "Voer de URL van je site in het veld \"Home Page URL\" in: <b>%s</b>"
1923
  #, php-format
1924
  msgid ""
1925
  "If you want to get the email address as well, then don’t forget to enable "
1926
- "the \"<b>%1$s</b>\" option. In this case you also need to fill the \"<b>"
1927
- "%2$s</b>\" and the \"<b>%3$s</b>\" fields with the corresponding URLs!"
1928
  msgstr ""
1929
 
1930
  #, fuzzy, php-format
1931
  #| msgid "Click on \"Save\""
1932
- msgid "Click on \"<b>%s</b>\"."
1933
  msgstr "Klik op \"Opslaan\""
1934
 
1935
  #, php-format
1936
- msgid "Go back to %1$s and <b>Verify</b> your %2$s provider."
 
 
 
 
 
 
 
 
 
 
 
 
 
1937
  msgstr ""
1938
 
1939
  msgid "API Key"
1940
  msgstr "API Sleutel"
1941
 
1942
- msgid "API secret key"
1943
- msgstr "API geheime sleutel"
 
 
1944
 
1945
  msgid "Profile image size"
1946
  msgstr "Profielafbeelding grootte"
@@ -2123,12 +2156,10 @@ msgstr ""
2123
  msgid "Click \"<b>Edit</b>\"."
2124
  msgstr "Klik op \"Bewerken\"."
2125
 
2126
- #, fuzzy
2127
- #| msgid ""
2128
- #| "Add the following URL to the \"Allowed Return URLs\" field <b>%s</b> "
2129
- msgid "Add the following URL to the \"<b>Allowed Return URLs</b>\" field: "
2130
- msgstr ""
2131
- "Voeg de volgende URL toe aan het veld \"Toegestane Return URLs\" <b>%s</b> "
2132
 
2133
  #, php-format
2134
  msgid ""
@@ -2239,11 +2270,6 @@ msgstr ""
2239
  "Vul het \"Callback Domein\" veld in met je domeinnaam waarschijnlijk: <b>%s</"
2240
  "b> "
2241
 
2242
- #, fuzzy
2243
- #| msgid "Add the following URL to the \"Live Return URL\" field <b>%s</b> "
2244
- msgid "Add the following URL to the \"<b>Return URLs</b>\" field:"
2245
- msgstr "Voeg de volgende URL toe aan het \"Live Return URL\" veld <b>%s</b> "
2246
-
2247
  msgid ""
2248
  "Finally press \"<b>Next</b>\" then \"<b>Done</b>\" and finally click on the "
2249
  "\"<b>Continue</b>\" and the \"<b>Save</b>\" button!"
@@ -2550,10 +2576,10 @@ msgid ""
2550
  "Settings section on the left side."
2551
  msgstr ""
2552
 
2553
- #, fuzzy
2554
- #| msgid "Add the following URL to the \"Redirect URLs\" field <b>%s</b> "
2555
- msgid "Add the following URL in 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 \"Create New Application\" button."
@@ -2576,11 +2602,6 @@ msgid ""
2576
  "On the left side, click on the “<b>%1$s</b>” menu point in the Settings."
2577
  msgstr "Klik op de \"Inloggegevens\" in het linker menu"
2578
 
2579
- #, fuzzy
2580
- #| msgid "Add the following URL to the \"Redirect URLs\" field <b>%s</b> "
2581
- msgid "Add the following URL to the \"<b>Redirects</b>\" field:"
2582
- msgstr "Voeg de volgende URL toe aan het veld \"Omleidings-URLs\" <b>%s</b> "
2583
-
2584
  #, fuzzy
2585
  #| msgid "Click on the \"Save Changes\" button."
2586
  msgid "Click the \"<b>Save Changes</b>\" button."
@@ -2637,11 +2658,6 @@ msgstr ""
2637
  "Selecteer het tabblad \"Instellingen\" en scroll naar beneden naar de sectie "
2638
  "Authenticatie!"
2639
 
2640
- #, fuzzy
2641
- #| msgid "Add the following URL to the \"Callback URLs\" field: <b>%s</b>"
2642
- msgid "Add the following URL to the \"<b>Callback URL</b>\" field:"
2643
- msgstr "Voeg de volgende URL toe aan het veld \"Callback URL's\": <b>%s</b>"
2644
-
2645
  #, fuzzy
2646
  #| msgid "Click on the \"Save Changes\" button."
2647
  msgid "Click on the \"<b>Save Changes</b>\" button."
@@ -2741,11 +2757,6 @@ msgstr "Klik op de naam van je %s App."
2741
  msgid "Make sure the <b>Homepage URL</b> matches with: <b>%s</b>"
2742
  msgstr "Voer de URL van je site in het veld \"Home Page URL\" in: <b>%s</b>"
2743
 
2744
- #, fuzzy
2745
- #| msgid "Add the following URL to the \"Callback URLs\" field: <b>%s</b>"
2746
- msgid "Add the following URL to the <b>Authorization callback URL</b> field:"
2747
- msgstr "Voeg de volgende URL toe aan het veld \"Callback URL's\": <b>%s</b>"
2748
-
2749
  #, fuzzy
2750
  #| msgid "Hit update to save the changes"
2751
  msgid "Press the <b>Update application</b> button to save the changes."
@@ -2825,9 +2836,9 @@ msgstr "Navigeer naar %s"
2825
  msgid "Select your %s App and click on the LINE Login section."
2826
  msgstr ""
2827
 
2828
- #, fuzzy
2829
  #| msgid "Add the following URL to the \"Callback URLs\" field: <b>%s</b>"
2830
- msgid "Change your URL in the \"<b>Callback URL</b>\" field:"
2831
  msgstr "Voeg de volgende URL toe aan het veld \"Callback URL's\": <b>%s</b>"
2832
 
2833
  #, php-format
@@ -2970,11 +2981,6 @@ msgstr "Ontkoppel van <b>LinkedIn</b>"
2970
  msgid "Click on your App and go to the \"<b>Auth</b>\" tab."
2971
  msgstr ""
2972
 
2973
- #, fuzzy
2974
- #| msgid "Add the following URL to the \"Redirect URLs\" field <b>%s</b> "
2975
- msgid "Add the following URL to the \"<b>Redirect URLs</b>\" field:"
2976
- msgstr "Voeg de volgende URL toe aan het veld \"Omleidings-URLs\" <b>%s</b> "
2977
-
2978
  #, fuzzy
2979
  #| msgid "Hit update to save the changes"
2980
  msgid "Click on \"<b>Update</b>\" to save the changes"
@@ -3034,13 +3040,11 @@ msgstr ""
3034
  msgid "Click on the \"<b>Auth</b>\" tab."
3035
  msgstr "Klik op de knop Aanmaken"
3036
 
3037
- #, fuzzy
3038
  #| msgid ""
3039
  #| "Find \"OAuth 2.0 settings\" section and add the following URL to the "
3040
  #| "\"Redirect URLs:\" field: <b>%s</b>"
3041
- msgid ""
3042
- "Find \"<b>OAuth 2.0 settings</b>\" section and add the following URL to the "
3043
- "\"<b>Redirect URLs</b>\" field:"
3044
  msgstr ""
3045
  "Zoek de sectie \"OAuth 2.0-instellingen\" en voeg de volgende URL toe aan "
3046
  "het veld \"Omleidings-URLs:\": <b>%s</b>"
@@ -3088,11 +3092,6 @@ msgstr "Klik op de App met App ID: %s"
3088
  msgid "Click on the link next to the Redirect URIs label."
3089
  msgstr "Voeg de volgende URL toe aan het veld \"Omleidings-URLs\" <b>%s</b> "
3090
 
3091
- #, fuzzy
3092
- #| msgid "Add the following URL to the \"Redirect URLs\" field <b>%s</b> "
3093
- msgid "Add the following URL to the \"<b>Redirect URIs</b>\" field:"
3094
- msgstr "Voeg de volgende URL toe aan het veld \"Omleidings-URLs\" <b>%s</b> "
3095
-
3096
  #, fuzzy, php-format
3097
  #| msgid "Log in with your %s credentials if you are not logged in yet"
3098
  msgid ""
@@ -3118,11 +3117,6 @@ msgid ""
3118
  "you can learn more."
3119
  msgstr ""
3120
 
3121
- #, fuzzy
3122
- #| msgid "Add the following URL to the \"Redirect URLs\" field <b>%s</b> "
3123
- msgid "Add the following URL to the \"<b>Redirect URI</b>\" field:"
3124
- msgstr "Voeg de volgende URL toe aan het veld \"Omleidings-URLs\" <b>%s</b> "
3125
-
3126
  #, fuzzy
3127
  #| msgid "Click on the \"Create New Application\" button."
3128
  msgid "Create your App with the \"<b>Register</b>\" button."
@@ -3261,11 +3255,6 @@ msgstr ""
3261
  "Scroll naar beneden naar \"LIVE APP INSTELLINGEN\", zoek in de rubriek "
3262
  "\"Live Return URL\" en klik op \"Weergeven\"."
3263
 
3264
- #, fuzzy
3265
- #| msgid "Add the following URL to the \"Live Return URL\" field <b>%s</b> "
3266
- msgid "Add the following URL to the \"<b>Live Return URL</b>\" field:"
3267
- msgstr "Voeg de volgende URL toe aan het \"Live Return URL\" veld <b>%s</b> "
3268
-
3269
  msgid "Click on \"Save\""
3270
  msgstr "Klik op \"Opslaan\""
3271
 
@@ -3562,6 +3551,124 @@ msgstr "Koppel met <b>Facebook</b>"
3562
  msgid "Unlink account from <b>Slack</b>"
3563
  msgstr "Ontkoppel van <b>Facebook</b>"
3564
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3565
  #, fuzzy
3566
  #| msgid "Click on the Manage button at the App"
3567
  msgid "Click on the \"<b>Manage</b>\" button next to the associated App."
@@ -3572,14 +3679,6 @@ msgstr "Klik op de knop Beheer bij de App"
3572
  msgid "Go to the \"<b>Settings</b>\" menu"
3573
  msgstr "Ga naar het menu Instellingen"
3574
 
3575
- #, fuzzy
3576
- #| msgid ""
3577
- #| "Add the following URL to the \"Authorized redirect URI:\" field: <b>%s</b>"
3578
- msgid "Add the following URL to the \"<b>Authorized redirect URI</b>\" field: "
3579
- msgstr ""
3580
- "Voeg de volgende URL toe aan het veld \"Geautoriseerde omleidings-URI:\": <b>"
3581
- "%s</b>"
3582
-
3583
  #, fuzzy
3584
  #| msgid "Locate the \"Create app\" button and click on it."
3585
  msgid "Locate the blue \"<b>Create app</b>\" button and click on it."
@@ -3738,11 +3837,6 @@ msgstr "Ontkoppel van <b>WordPress.com</b>"
3738
  msgid "Click on the App which has its credentials associated with the plugin."
3739
  msgstr "Klik op de App met de inloggegevens die aan de plugin zijn gekoppeld."
3740
 
3741
- #, fuzzy
3742
- #| msgid "Add the following URL to the \"Redirect URLs\" field <b>%s</b> "
3743
- msgid "Add the following URL to the \"<b>Redirect URI(s)</b>\" field:"
3744
- msgstr "Voeg de volgende URL toe aan het veld \"Omleidings-URLs\" <b>%s</b> "
3745
-
3746
  #, fuzzy
3747
  #| msgid "Click on the \"Create an App\" button on the top right corner."
3748
  msgid "Click on the \"<b>Create an App</b>\" button on the top right corner."
@@ -3815,6 +3909,113 @@ msgstr "OF"
3815
  msgid "Social accounts"
3816
  msgstr "Social accounts"
3817
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3818
  #, fuzzy, php-format
3819
  #~| msgid ""
3820
  #~| "Add the following URL to the \"Authorised redirect URIs\" field: <b>%s</"
@@ -3983,13 +4184,6 @@ msgstr "Social accounts"
3983
  #~ "Selecteer \"Integreer Facebook Login\" op de Selecteer een Scenario "
3984
  #~ "pagina en klik vervolgens op Bevestigen."
3985
 
3986
- #~ msgid ""
3987
- #~ "In the left sidebar under the Products section, click on \"Facebook Login"
3988
- #~ "\" and select Settings"
3989
- #~ msgstr ""
3990
- #~ "Klik in de linkerzijbalk onder de Producten-sectie op \"Facebook Login\" "
3991
- #~ "en selecteer Instellingen"
3992
-
3993
  #~ msgid ""
3994
  #~ "In the top of the left sidebar, click on \"Settings\" and select \"Basic\""
3995
  #~ msgstr ""
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: nextend-facebook-connect\n"
4
+ "POT-Creation-Date: 2022-02-14 08:32+0100\n"
5
+ "PO-Revision-Date: 2022-02-14 08:32+0100\n"
6
  "Last-Translator: Erik Molenaar <info@erikmolenaar.nl>\n"
7
  "Language-Team: nextend-facebook-connect\n"
8
  "Language: nl_NL\n"
865
  msgid "Debug mode"
866
  msgstr "Debugmodus"
867
 
868
+ msgid "Bypass cache on redirect"
869
+ msgstr ""
870
+
871
+ #, php-format
872
+ msgid ""
873
+ "Enabling this option will add a GET parameter to the URL where we redirect "
874
+ "after a successful registration or login with social login. %1$sLearn more"
875
+ "%2$s."
876
+ msgstr ""
877
+
878
  msgid "Page for register flow"
879
  msgstr "Pagina voor registreerproces"
880
 
1370
  msgid "In the left sidebar, click on \"<b>Facebook Login > Settings</b>\""
1371
  msgstr "Klik in de linkerbalk op \"Facebook Login/Instellingen\""
1372
 
1373
+ #, fuzzy, php-format
1374
+ #| msgid "Add the following URL to the \"Live Return URL\" field <b>%s</b> "
1375
+ msgid "Add the following URL to the %s field:"
1376
+ msgstr "Voeg de volgende URL toe aan het \"Live Return URL\" veld <b>%s</b> "
 
 
 
 
 
1377
 
1378
  #, fuzzy
1379
  #| msgid "Click on \"Save Changes\""
1810
  "te klikken en je kunt van daaruit de Client ID en Client Geheim kopiëren en "
1811
  "plakken."
1812
 
1813
+ #, php-format
1814
+ msgid ""
1815
+ "Currently your App is in %1$s mode, so only limited number of people can use "
1816
+ "it. To allow this App for any user with a Google Account, click on the \"%2$s"
1817
+ "\" option on the left side, then click the \"%3$s\" button under the \"%4$s"
1818
+ "\" section, and press the \"%5$s\" button. "
1819
+ msgstr ""
1820
+
1821
  msgid "Client ID"
1822
  msgstr "Client ID"
1823
 
1849
  msgid "Required API: %1$s"
1850
  msgstr "Vereiste API: %1$s"
1851
 
1852
+ #, fuzzy, php-format
1853
+ #| msgid ""
1854
+ #| "In the left sidebar under the Products section, click on \"Facebook Login"
1855
+ #| "\" and select Settings"
1856
+ msgid "On the left side, under the %s section click on the name of your App."
1857
+ msgstr ""
1858
+ "Klik in de linkerzijbalk onder de Producten-sectie op \"Facebook Login\" en "
1859
+ "selecteer Instellingen"
 
 
 
1860
 
1861
  #, fuzzy, php-format
1862
+ #| msgid "Click on the Create button"
1863
+ msgid "Click on the %1$s button at %2$s."
1864
+ msgstr "Klik op de knop Aanmaken"
1865
 
1866
  #, fuzzy, php-format
1867
  #| msgid "Enter the URL of your site to the \"Home Page URL\" field: <b>%s</b>"
1868
+ msgid "Make sure the %1$s field contains the following URL: %2$s"
 
1869
  msgstr "Voer de URL van je site in het veld \"Home Page URL\" in: <b>%s</b>"
1870
 
1871
+ #, fuzzy, php-format
1872
+ #| msgid "Click on \"Save\""
1873
+ msgid "Click on %s"
1874
+ msgstr "Klik op \"Opslaan\""
1875
+
1876
  msgid ""
1877
  "If you don't have a developer account yet, please apply one by filling all "
1878
  "the required details! This is required for the next steps!"
1896
  msgid "Click on \"<b>%s</b>\"!"
1897
  msgstr "Klik op \"Opslaan\""
1898
 
1899
+ #, php-format
1900
  msgid ""
1901
  "Name your project, and go through the basic setup. You’ll need to select "
1902
+ "your use case, give a description then click the %s button."
1903
  msgstr ""
1904
 
1905
+ #, php-format
1906
+ msgid "Choose the %1$s option for %2$s, then press %3$s!"
1907
+ msgstr ""
1908
+
1909
+ #, php-format
1910
+ msgid "Into the %1$s field, enter a name for your App, then press %2$s again!"
1911
+ msgstr ""
1912
 
1913
  #, php-format
1914
  msgid ""
1925
 
1926
  #, fuzzy, php-format
1927
  #| msgid "Name your project and then click on the Create button again"
1928
+ msgid "Scroll down and click on the %1$s button at %2$s."
1929
  msgstr "Geef je project een naam en klik dan opnieuw op de knop Aanmaken"
1930
 
1931
  #, fuzzy, php-format
1932
  #| msgid "Click on the Create button"
1933
+ msgid "Switch on the %s option."
1934
  msgstr "Klik op de knop Aanmaken"
1935
 
1936
  #, fuzzy, php-format
1941
  #, php-format
1942
  msgid ""
1943
  "If you want to get the email address as well, then don’t forget to enable "
1944
+ "the %1$s option. In this case you also need to fill the \"<b>%2$s</b>\" and "
1945
+ "the \"<b>%3$s</b>\" fields with the corresponding URLs!"
1946
  msgstr ""
1947
 
1948
  #, fuzzy, php-format
1949
  #| msgid "Click on \"Save\""
1950
+ msgid "Click on %s."
1951
  msgstr "Klik op \"Opslaan\""
1952
 
1953
  #, php-format
1954
+ msgid ""
1955
+ "On the left side, under the \"<b>%s</b>\" section click on the name of your "
1956
+ "Project ( that you created the App for )."
1957
+ msgstr ""
1958
+
1959
+ #, php-format
1960
+ msgid ""
1961
+ "Click on the %1$s button, then fill the %2$s, %3$s, %4$s and %5$s forms."
1962
+ msgstr ""
1963
+
1964
+ #, php-format
1965
+ msgid ""
1966
+ "Once your application for the Elevated access has been approved, go back to "
1967
+ "%1$s then <b>verify</b> and <b>enable</b> the %2$s provider!"
1968
  msgstr ""
1969
 
1970
  msgid "API Key"
1971
  msgstr "API Sleutel"
1972
 
1973
+ #, fuzzy
1974
+ #| msgid "API Secret"
1975
+ msgid "API Key Secret"
1976
+ msgstr "API Geheim"
1977
 
1978
  msgid "Profile image size"
1979
  msgstr "Profielafbeelding grootte"
2156
  msgid "Click \"<b>Edit</b>\"."
2157
  msgstr "Klik op \"Bewerken\"."
2158
 
2159
+ #, fuzzy, php-format
2160
+ #| msgid "Add the following URL to the \"Live Return URL\" field <b>%s</b> "
2161
+ msgid "Add the following URL to the %s field: "
2162
+ msgstr "Voeg de volgende URL toe aan het \"Live Return URL\" veld <b>%s</b> "
 
 
2163
 
2164
  #, php-format
2165
  msgid ""
2270
  "Vul het \"Callback Domein\" veld in met je domeinnaam waarschijnlijk: <b>%s</"
2271
  "b> "
2272
 
 
 
 
 
 
2273
  msgid ""
2274
  "Finally press \"<b>Next</b>\" then \"<b>Done</b>\" and finally click on the "
2275
  "\"<b>Continue</b>\" and the \"<b>Save</b>\" button!"
2576
  "Settings section on the left side."
2577
  msgstr ""
2578
 
2579
+ #, fuzzy, php-format
2580
+ #| msgid "Add the following URL to the \"Live Return URL\" field <b>%s</b> "
2581
+ msgid "Add the following URL in the %s field:"
2582
+ msgstr "Voeg de volgende URL toe aan het \"Live Return URL\" veld <b>%s</b> "
2583
 
2584
  #, fuzzy
2585
  #| msgid "Click on the \"Create New Application\" button."
2602
  "On the left side, click on the “<b>%1$s</b>” menu point in the Settings."
2603
  msgstr "Klik op de \"Inloggegevens\" in het linker menu"
2604
 
 
 
 
 
 
2605
  #, fuzzy
2606
  #| msgid "Click on the \"Save Changes\" button."
2607
  msgid "Click the \"<b>Save Changes</b>\" button."
2658
  "Selecteer het tabblad \"Instellingen\" en scroll naar beneden naar de sectie "
2659
  "Authenticatie!"
2660
 
 
 
 
 
 
2661
  #, fuzzy
2662
  #| msgid "Click on the \"Save Changes\" button."
2663
  msgid "Click on the \"<b>Save Changes</b>\" button."
2757
  msgid "Make sure the <b>Homepage URL</b> matches with: <b>%s</b>"
2758
  msgstr "Voer de URL van je site in het veld \"Home Page URL\" in: <b>%s</b>"
2759
 
 
 
 
 
 
2760
  #, fuzzy
2761
  #| msgid "Hit update to save the changes"
2762
  msgid "Press the <b>Update application</b> button to save the changes."
2836
  msgid "Select your %s App and click on the LINE Login section."
2837
  msgstr ""
2838
 
2839
+ #, fuzzy, php-format
2840
  #| msgid "Add the following URL to the \"Callback URLs\" field: <b>%s</b>"
2841
+ msgid "Change your URL in the %s field:"
2842
  msgstr "Voeg de volgende URL toe aan het veld \"Callback URL's\": <b>%s</b>"
2843
 
2844
  #, php-format
2981
  msgid "Click on your App and go to the \"<b>Auth</b>\" tab."
2982
  msgstr ""
2983
 
 
 
 
 
 
2984
  #, fuzzy
2985
  #| msgid "Hit update to save the changes"
2986
  msgid "Click on \"<b>Update</b>\" to save the changes"
3040
  msgid "Click on the \"<b>Auth</b>\" tab."
3041
  msgstr "Klik op de knop Aanmaken"
3042
 
3043
+ #, fuzzy, php-format
3044
  #| msgid ""
3045
  #| "Find \"OAuth 2.0 settings\" section and add the following URL to the "
3046
  #| "\"Redirect URLs:\" field: <b>%s</b>"
3047
+ msgid "Find the %1$s section and add the following URL to the %2$s field:"
 
 
3048
  msgstr ""
3049
  "Zoek de sectie \"OAuth 2.0-instellingen\" en voeg de volgende URL toe aan "
3050
  "het veld \"Omleidings-URLs:\": <b>%s</b>"
3092
  msgid "Click on the link next to the Redirect URIs label."
3093
  msgstr "Voeg de volgende URL toe aan het veld \"Omleidings-URLs\" <b>%s</b> "
3094
 
 
 
 
 
 
3095
  #, fuzzy, php-format
3096
  #| msgid "Log in with your %s credentials if you are not logged in yet"
3097
  msgid ""
3117
  "you can learn more."
3118
  msgstr ""
3119
 
 
 
 
 
 
3120
  #, fuzzy
3121
  #| msgid "Click on the \"Create New Application\" button."
3122
  msgid "Create your App with the \"<b>Register</b>\" button."
3255
  "Scroll naar beneden naar \"LIVE APP INSTELLINGEN\", zoek in de rubriek "
3256
  "\"Live Return URL\" en klik op \"Weergeven\"."
3257
 
 
 
 
 
 
3258
  msgid "Click on \"Save\""
3259
  msgstr "Klik op \"Opslaan\""
3260
 
3551
  msgid "Unlink account from <b>Slack</b>"
3552
  msgstr "Ontkoppel van <b>Facebook</b>"
3553
 
3554
+ #, fuzzy, php-format
3555
+ #| msgid "Log in with your %s credentials if you are not logged in yet"
3556
+ msgid "Log in to your %s developer account, if you are not logged in yet."
3557
+ msgstr "Log in met je %s inloggegevens als je nog niet ingelogd bent"
3558
+
3559
+ #, php-format
3560
+ msgid ""
3561
+ "On the top right corner click on %1$s then click on the name of that App "
3562
+ "that you used for the configuration."
3563
+ msgstr ""
3564
+
3565
+ #, fuzzy, php-format
3566
+ #| msgid "Click on the Create button"
3567
+ msgid "Scroll down to the %s section."
3568
+ msgstr "Klik op de knop Aanmaken"
3569
+
3570
+ #, fuzzy, php-format
3571
+ #| msgid "Enter your domain name to the App Domains"
3572
+ msgid ""
3573
+ "Enter your domain name into the %1$s field, if it is not added already: %2$s"
3574
+ msgstr "Voer je domeinnaam in bij de App Domeinen"
3575
+
3576
+ #, php-format
3577
+ msgid "Press the %s button."
3578
+ msgstr ""
3579
+
3580
+ msgid "Allow some time for these modifications to take effect."
3581
+ msgstr ""
3582
+
3583
+ #, php-format
3584
+ msgid ""
3585
+ "Log in to your %s developer account or register one if you don't have any!"
3586
+ msgstr ""
3587
+
3588
+ #, php-format
3589
+ msgid "On the top right corner click on %1$s then click on the %2$s option."
3590
+ msgstr ""
3591
+
3592
+ #, php-format
3593
+ msgid ""
3594
+ "A modal will appear where you need to select an image as %1$s and enter a "
3595
+ "name into the %2$s field."
3596
+ msgstr ""
3597
+
3598
+ #, php-format
3599
+ msgid "Press the %1$s button."
3600
+ msgstr ""
3601
+
3602
+ #, fuzzy, php-format
3603
+ #| msgid "Click on the Create button"
3604
+ msgid "For %1$s choose the %2$s option."
3605
+ msgstr "Klik op de knop Aanmaken"
3606
+
3607
+ #, php-format
3608
+ msgid "Under the %s section you should fill all of the required fields."
3609
+ msgstr ""
3610
+
3611
+ #, fuzzy, php-format
3612
+ #| msgid "Enter your domain name to the App Domains"
3613
+ msgid "Enter your domain name to the %1$s field, probably: %2$s"
3614
+ msgstr "Voer je domeinnaam in bij de App Domeinen"
3615
+
3616
+ #, php-format
3617
+ msgid ""
3618
+ "Under the %1$s section you need to make sure the option %2$s is checked."
3619
+ msgstr ""
3620
+
3621
+ #, php-format
3622
+ msgid ""
3623
+ "Into the %1$s field you should write a text, that describes what you are "
3624
+ "going to do with the App. In this particular case, you will use it to offer "
3625
+ "%2$s login option for your visitors."
3626
+ msgstr ""
3627
+
3628
+ #, php-format
3629
+ msgid ""
3630
+ "Wait until your App gets approved. This can take a couple of days. If you "
3631
+ "scroll up to the top of the page you will be able to find the %s below the "
3632
+ "name of your App."
3633
+ msgstr ""
3634
+
3635
+ #, php-format
3636
+ msgid ""
3637
+ "Once the %1$s says %2$s, the %3$s and %4$s will appear below the %1$s text. "
3638
+ "You will need these for the provider configuration."
3639
+ msgstr ""
3640
+
3641
+ #, php-format
3642
+ msgid ""
3643
+ "<b>WARNING:</b> The %1$s API can not return any email address or phone "
3644
+ "number! %2$sLearn more%3$s."
3645
+ msgstr ""
3646
+
3647
+ #, fuzzy
3648
+ #| msgid "Client ID"
3649
+ msgid "Client Key"
3650
+ msgstr "Client ID"
3651
+
3652
+ #, fuzzy
3653
+ #| msgid "Continue with <b>LinkedIn</b>"
3654
+ msgid "Continue with <b>TikTok</b>"
3655
+ msgstr "Doorgaan met <b>LinkedIn</b>"
3656
+
3657
+ #, fuzzy
3658
+ #| msgid "Continue with <b>LinkedIn</b>"
3659
+ msgid "Sign up with <b>TikTok</b>"
3660
+ msgstr "Doorgaan met <b>LinkedIn</b>"
3661
+
3662
+ #, fuzzy
3663
+ #| msgid "Link account with <b>LinkedIn</b>"
3664
+ msgid "Link account with <b>TikTok</b>"
3665
+ msgstr "Koppel met <b>LinkedIn</b>"
3666
+
3667
+ #, fuzzy
3668
+ #| msgid "Unlink account from <b>LinkedIn</b>"
3669
+ msgid "Unlink account from <b>TikTok</b>"
3670
+ msgstr "Ontkoppel van <b>LinkedIn</b>"
3671
+
3672
  #, fuzzy
3673
  #| msgid "Click on the Manage button at the App"
3674
  msgid "Click on the \"<b>Manage</b>\" button next to the associated App."
3679
  msgid "Go to the \"<b>Settings</b>\" menu"
3680
  msgstr "Ga naar het menu Instellingen"
3681
 
 
 
 
 
 
 
 
 
3682
  #, fuzzy
3683
  #| msgid "Locate the \"Create app\" button and click on it."
3684
  msgid "Locate the blue \"<b>Create app</b>\" button and click on it."
3837
  msgid "Click on the App which has its credentials associated with the plugin."
3838
  msgstr "Klik op de App met de inloggegevens die aan de plugin zijn gekoppeld."
3839
 
 
 
 
 
 
3840
  #, fuzzy
3841
  #| msgid "Click on the \"Create an App\" button on the top right corner."
3842
  msgid "Click on the \"<b>Create an App</b>\" button on the top right corner."
3909
  msgid "Social accounts"
3910
  msgstr "Social accounts"
3911
 
3912
+ #, fuzzy
3913
+ #~| msgid ""
3914
+ #~| "Add the following URL to the \"Valid OAuth redirect URIs\" field: <b>%s</"
3915
+ #~| "b>"
3916
+ #~ msgid ""
3917
+ #~ "Add the following URL to the \"<b>Valid OAuth redirect URIs</b>\" field:"
3918
+ #~ msgstr ""
3919
+ #~ "Voeg de volgende URL toe aan het veld \"Geldige OAuth omleidings-URI's\": "
3920
+ #~ "<b>%s</b>"
3921
+
3922
+ #, fuzzy
3923
+ #~| msgid "Find your App and click on the Details button"
3924
+ #~ msgid ""
3925
+ #~ "Find your App and click on the <b>App settings</b> icon. (The one that "
3926
+ #~ "looks like a gear.)"
3927
+ #~ msgstr "Vind jew app en klik op de knop Details"
3928
+
3929
+ #, fuzzy
3930
+ #~| msgid "Click on the \"Create an App\" button on the top right corner."
3931
+ #~ msgid "Click on the <b>Edit</b> button at <b>Authentication settings</b>."
3932
+ #~ msgstr "Klik op de knop \"Maak een App\" in de rechterbovenhoek."
3933
+
3934
+ #, fuzzy, php-format
3935
+ #~| msgid "Click \"Edit\"."
3936
+ #~ msgid "Click \"<b>%s</b>\"!"
3937
+ #~ msgstr "Klik op \"Bewerken\"."
3938
+
3939
+ #~ msgid "API secret key"
3940
+ #~ msgstr "API geheime sleutel"
3941
+
3942
+ #, fuzzy
3943
+ #~| msgid ""
3944
+ #~| "Add the following URL to the \"Allowed Return URLs\" field <b>%s</b> "
3945
+ #~ msgid "Add the following URL to the \"<b>Allowed Return URLs</b>\" field: "
3946
+ #~ msgstr ""
3947
+ #~ "Voeg de volgende URL toe aan het veld \"Toegestane Return URLs\" <b>%s</"
3948
+ #~ "b> "
3949
+
3950
+ #, fuzzy
3951
+ #~| msgid "Add the following URL to the \"Live Return URL\" field <b>%s</b> "
3952
+ #~ msgid "Add the following URL to the \"<b>Return URLs</b>\" field:"
3953
+ #~ msgstr ""
3954
+ #~ "Voeg de volgende URL toe aan het \"Live Return URL\" veld <b>%s</b> "
3955
+
3956
+ #, fuzzy
3957
+ #~| msgid "Add the following URL to the \"Redirect URLs\" field <b>%s</b> "
3958
+ #~ msgid "Add the following URL in the \"<b>Redirects</b>\" field:"
3959
+ #~ msgstr ""
3960
+ #~ "Voeg de volgende URL toe aan het veld \"Omleidings-URLs\" <b>%s</b> "
3961
+
3962
+ #, fuzzy
3963
+ #~| msgid "Add the following URL to the \"Redirect URLs\" field <b>%s</b> "
3964
+ #~ msgid "Add the following URL to the \"<b>Redirects</b>\" field:"
3965
+ #~ msgstr ""
3966
+ #~ "Voeg de volgende URL toe aan het veld \"Omleidings-URLs\" <b>%s</b> "
3967
+
3968
+ #, fuzzy
3969
+ #~| msgid "Add the following URL to the \"Callback URLs\" field: <b>%s</b>"
3970
+ #~ msgid "Add the following URL to the \"<b>Callback URL</b>\" field:"
3971
+ #~ msgstr "Voeg de volgende URL toe aan het veld \"Callback URL's\": <b>%s</b>"
3972
+
3973
+ #, fuzzy
3974
+ #~| msgid "Add the following URL to the \"Callback URLs\" field: <b>%s</b>"
3975
+ #~ msgid ""
3976
+ #~ "Add the following URL to the <b>Authorization callback URL</b> field:"
3977
+ #~ msgstr "Voeg de volgende URL toe aan het veld \"Callback URL's\": <b>%s</b>"
3978
+
3979
+ #, fuzzy
3980
+ #~| msgid "Add the following URL to the \"Redirect URLs\" field <b>%s</b> "
3981
+ #~ msgid "Add the following URL to the \"<b>Redirect URLs</b>\" field:"
3982
+ #~ msgstr ""
3983
+ #~ "Voeg de volgende URL toe aan het veld \"Omleidings-URLs\" <b>%s</b> "
3984
+
3985
+ #, fuzzy
3986
+ #~| msgid "Add the following URL to the \"Redirect URLs\" field <b>%s</b> "
3987
+ #~ msgid "Add the following URL to the \"<b>Redirect URIs</b>\" field:"
3988
+ #~ msgstr ""
3989
+ #~ "Voeg de volgende URL toe aan het veld \"Omleidings-URLs\" <b>%s</b> "
3990
+
3991
+ #, fuzzy
3992
+ #~| msgid "Add the following URL to the \"Redirect URLs\" field <b>%s</b> "
3993
+ #~ msgid "Add the following URL to the \"<b>Redirect URI</b>\" field:"
3994
+ #~ msgstr ""
3995
+ #~ "Voeg de volgende URL toe aan het veld \"Omleidings-URLs\" <b>%s</b> "
3996
+
3997
+ #, fuzzy
3998
+ #~| msgid "Add the following URL to the \"Live Return URL\" field <b>%s</b> "
3999
+ #~ msgid "Add the following URL to the \"<b>Live Return URL</b>\" field:"
4000
+ #~ msgstr ""
4001
+ #~ "Voeg de volgende URL toe aan het \"Live Return URL\" veld <b>%s</b> "
4002
+
4003
+ #, fuzzy
4004
+ #~| msgid ""
4005
+ #~| "Add the following URL to the \"Authorized redirect URI:\" field: <b>%s</"
4006
+ #~| "b>"
4007
+ #~ msgid ""
4008
+ #~ "Add the following URL to the \"<b>Authorized redirect URI</b>\" field: "
4009
+ #~ msgstr ""
4010
+ #~ "Voeg de volgende URL toe aan het veld \"Geautoriseerde omleidings-URI:\": "
4011
+ #~ "<b>%s</b>"
4012
+
4013
+ #, fuzzy
4014
+ #~| msgid "Add the following URL to the \"Redirect URLs\" field <b>%s</b> "
4015
+ #~ msgid "Add the following URL to the \"<b>Redirect URI(s)</b>\" field:"
4016
+ #~ msgstr ""
4017
+ #~ "Voeg de volgende URL toe aan het veld \"Omleidings-URLs\" <b>%s</b> "
4018
+
4019
  #, fuzzy, php-format
4020
  #~| msgid ""
4021
  #~| "Add the following URL to the \"Authorised redirect URIs\" field: <b>%s</"
4184
  #~ "Selecteer \"Integreer Facebook Login\" op de Selecteer een Scenario "
4185
  #~ "pagina en klik vervolgens op Bevestigen."
4186
 
 
 
 
 
 
 
 
4187
  #~ msgid ""
4188
  #~ "In the top of the left sidebar, click on \"Settings\" and select \"Basic\""
4189
  #~ msgstr ""
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-11-15 18:51+0100\n"
5
- "PO-Revision-Date: 2021-11-15 18:51+0100\n"
6
  "Last-Translator: \n"
7
  "Language-Team: renato@modernstuff.com.br\n"
8
  "Language: pt_BR\n"
@@ -893,6 +893,16 @@ msgstr "Desabilitar login para funções selecionadas"
893
  msgid "Debug mode"
894
  msgstr "Modo de depuração"
895
 
 
 
 
 
 
 
 
 
 
 
896
  msgid "Page for register flow"
897
  msgstr "Página para fluxo de registro"
898
 
@@ -1400,15 +1410,10 @@ msgstr "Clique no App com ID do App:%s"
1400
  msgid "In the left sidebar, click on \"<b>Facebook Login > Settings</b>\""
1401
  msgstr "Na barra lateral esquerda, clique em \"Facebook Login/Settings\""
1402
 
1403
- #, fuzzy
1404
- #| msgid ""
1405
- #| "Add the following URL to the \"Valid OAuth redirect URIs\" field: <b>%s</"
1406
- #| "b>"
1407
- msgid ""
1408
- "Add the following URL to the \"<b>Valid OAuth redirect URIs</b>\" field:"
1409
- msgstr ""
1410
- "Adicionar o seguinte URL no campo \"URIs de redirecionamento OAuth Válidos"
1411
- "\": <b>%s</b>"
1412
 
1413
  #, fuzzy
1414
  #| msgid "Click on \"Save Changes\""
@@ -1829,6 +1834,14 @@ msgstr ""
1829
  "para Credenciais no menu esquerdo e selecione seu app clicando no seu nome e "
1830
  "você será capaz de copiar-colar o ID do Cliente e o Segredo do Cliente de lá."
1831
 
 
 
 
 
 
 
 
 
1832
  msgid "Client ID"
1833
  msgstr "ID do Cliente"
1834
 
@@ -1860,29 +1873,26 @@ msgstr "Desvincular conta do <b>Google</b>"
1860
  msgid "Required API: %1$s"
1861
  msgstr "API obrigatória: %1$s"
1862
 
1863
- #, fuzzy
1864
- #| msgid "Name your project and then click on the Create button again"
1865
- msgid ""
1866
- "Find your App and click on the <b>App settings</b> icon. (The one that looks "
1867
- "like a gear.)"
1868
- msgstr "Nomeie o projeto e, em seguida, clique no botão Criar"
1869
-
1870
- #, fuzzy
1871
- #| msgid "Click the \"Create App\" button."
1872
- msgid "Click on the <b>Edit</b> button at <b>Authentication settings</b>."
1873
- msgstr "Clique no botão \"Criar Novo App\"."
1874
 
1875
  #, fuzzy, php-format
1876
- #| msgid "Add the following URL to the \"Live Return URL\" field <b>%s</b> "
1877
- msgid "Add the following URL to the \"<b>%1$s</b>\" field:"
1878
- msgstr "Adicione a seguinte URL ao campo \"URL de retorno ao vivo\" <b>%s</b>"
1879
 
1880
  #, fuzzy, php-format
1881
  #| msgid "Make sure that the \"%1$s\" field contains %2$s"
1882
- msgid ""
1883
- "Make sure the \"<b>%1$s</b>\" field contains the following URL: <b>%2$s</b>"
1884
  msgstr "Certifique-se de que o campo \"%1$s\" contém %2$s"
1885
 
 
 
 
 
 
1886
  msgid ""
1887
  "If you don't have a developer account yet, please apply one by filling all "
1888
  "the required details! This is required for the next steps!"
@@ -1906,15 +1916,19 @@ msgstr ""
1906
  msgid "Click on \"<b>%s</b>\"!"
1907
  msgstr "Clique em \"Salvar\""
1908
 
 
1909
  msgid ""
1910
  "Name your project, and go through the basic setup. You’ll need to select "
1911
- "your use case, give a description and enter a name for the App as well."
1912
  msgstr ""
1913
 
1914
- #, fuzzy, php-format
1915
- #| msgid "Click \"Edit\"."
1916
- msgid "Click \"<b>%s</b>\"!"
1917
- msgstr "Clique \"editar\"."
 
 
 
1918
 
1919
  #, php-format
1920
  msgid ""
@@ -1931,12 +1945,12 @@ msgstr ""
1931
 
1932
  #, fuzzy, php-format
1933
  #| msgid "Name your project and then click on the Create button again"
1934
- msgid "Scroll down and click on the \"<b>%1$s</b>\" button at \"<b>%2$s</b>\"."
1935
  msgstr "Nomeie o projeto e, em seguida, clique no botão Criar"
1936
 
1937
  #, fuzzy, php-format
1938
  #| msgid "Click on the Create button"
1939
- msgid "Switch on the \"<b>%s</b>\" option."
1940
  msgstr "Clique no botão Criar"
1941
 
1942
  #, fuzzy, php-format
@@ -1947,24 +1961,39 @@ msgstr "Adicione a seguinte URL ao campo \"URL de retorno ao vivo\" <b>%s</b>"
1947
  #, php-format
1948
  msgid ""
1949
  "If you want to get the email address as well, then don’t forget to enable "
1950
- "the \"<b>%1$s</b>\" option. In this case you also need to fill the \"<b>"
1951
- "%2$s</b>\" and the \"<b>%3$s</b>\" fields with the corresponding URLs!"
1952
  msgstr ""
1953
 
1954
  #, fuzzy, php-format
1955
  #| msgid "Click on \"Save\""
1956
- msgid "Click on \"<b>%s</b>\"."
1957
  msgstr "Clique em \"Salvar\""
1958
 
1959
  #, php-format
1960
- msgid "Go back to %1$s and <b>Verify</b> your %2$s provider."
 
 
 
 
 
 
 
 
 
 
 
 
 
1961
  msgstr ""
1962
 
1963
  msgid "API Key"
1964
  msgstr "Chave API"
1965
 
1966
- msgid "API secret key"
1967
- msgstr "Chave secreta da API"
 
 
1968
 
1969
  msgid "Profile image size"
1970
  msgstr "Tamanho da imagem do perfil"
@@ -2142,12 +2171,10 @@ msgstr ""
2142
  msgid "Click \"<b>Edit</b>\"."
2143
  msgstr "Clique \"editar\"."
2144
 
2145
- #, fuzzy
2146
- #| msgid ""
2147
- #| "Add the following URL to the \"Allowed Return URLs\" field <b>%s</b> "
2148
- msgid "Add the following URL to the \"<b>Allowed Return URLs</b>\" field: "
2149
- msgstr ""
2150
- "Adicione o seguinte URL ao campo \"URLs de retorno permitidos\" <b>%s</b>."
2151
 
2152
  #, php-format
2153
  msgid ""
@@ -2254,11 +2281,6 @@ msgid ""
2254
  msgstr ""
2255
  "Preencha o campo \"Domínio base\" com seu domínio, provavelmente: <b>%s</b>"
2256
 
2257
- #, fuzzy
2258
- #| msgid "Add the following URL to the \"Live Return URL\" field <b>%s</b> "
2259
- msgid "Add the following URL to the \"<b>Return URLs</b>\" field:"
2260
- msgstr "Adicione a seguinte URL ao campo \"URL de retorno ao vivo\" <b>%s</b>"
2261
-
2262
  msgid ""
2263
  "Finally press \"<b>Next</b>\" then \"<b>Done</b>\" and finally click on the "
2264
  "\"<b>Continue</b>\" and the \"<b>Save</b>\" button!"
@@ -2565,10 +2587,10 @@ msgid ""
2565
  "Settings section on the left side."
2566
  msgstr ""
2567
 
2568
- #, fuzzy
2569
- #| msgid "Add the following URL to the \"Redirect URLs\" field <b>%s</b> "
2570
- msgid "Add the following URL in the \"<b>Redirects</b>\" field:"
2571
- msgstr "Adicione a seguinte URL ao campo \"Redirecionar URLs\"<b>%s</b> "
2572
 
2573
  #, fuzzy
2574
  #| msgid "Click on the \"Create New Application\" button."
@@ -2593,11 +2615,6 @@ msgid ""
2593
  "On the left side, click on the “<b>%1$s</b>” menu point in the Settings."
2594
  msgstr "Clique em \"Credenciais\"no menu à esquerda"
2595
 
2596
- #, fuzzy
2597
- #| msgid "Add the following URL to the \"Redirect URLs\" field <b>%s</b> "
2598
- msgid "Add the following URL to the \"<b>Redirects</b>\" field:"
2599
- msgstr "Adicione a seguinte URL ao campo \"Redirecionar URLs\"<b>%s</b> "
2600
-
2601
  #, fuzzy
2602
  #| msgid "Click on \"Save Changes\""
2603
  msgid "Click the \"<b>Save Changes</b>\" button."
@@ -2651,11 +2668,6 @@ msgid ""
2651
  msgstr ""
2652
  "Encontre a Chave de Autenticação necessária abaixo do menu Autenticação"
2653
 
2654
- #, fuzzy
2655
- #| msgid "Add the following URL to the \"Callback URL\" field: <b>%s</b>"
2656
- msgid "Add the following URL to the \"<b>Callback URL</b>\" field:"
2657
- msgstr "Adicione a URL seguinte no campo “URL de Retorno”: <b>%s</b>"
2658
-
2659
  #, fuzzy
2660
  #| msgid "Click on \"Save Changes\""
2661
  msgid "Click on the \"<b>Save Changes</b>\" button."
@@ -2750,11 +2762,6 @@ msgstr "Clique no nome do seu %s aplicativo."
2750
  msgid "Make sure the <b>Homepage URL</b> matches with: <b>%s</b>"
2751
  msgstr "Adicione a seguinte URL ao campo \"URL de retorno ao vivo\" <b>%s</b>"
2752
 
2753
- #, fuzzy
2754
- #| msgid "Add the following URL to the \"Callback URL\" field: <b>%s</b>"
2755
- msgid "Add the following URL to the <b>Authorization callback URL</b> field:"
2756
- msgstr "Adicione a URL seguinte no campo “URL de Retorno”: <b>%s</b>"
2757
-
2758
  #, fuzzy
2759
  #| msgid "Hit update to save the changes"
2760
  msgid "Press the <b>Update application</b> button to save the changes."
@@ -2827,9 +2834,9 @@ msgstr "Navegar para %s"
2827
  msgid "Select your %s App and click on the LINE Login section."
2828
  msgstr ""
2829
 
2830
- #, fuzzy
2831
  #| msgid "Add the following URL to the \"Callback URL\" field: <b>%s</b>"
2832
- msgid "Change your URL in the \"<b>Callback URL</b>\" field:"
2833
  msgstr "Adicione a URL seguinte no campo “URL de Retorno”: <b>%s</b>"
2834
 
2835
  #, php-format
@@ -2968,11 +2975,6 @@ msgstr "Desvincular conta do <b>LinkedIn</b>"
2968
  msgid "Click on your App and go to the \"<b>Auth</b>\" tab."
2969
  msgstr ""
2970
 
2971
- #, fuzzy
2972
- #| msgid "Add the following URL to the \"Redirect URLs\" field <b>%s</b> "
2973
- msgid "Add the following URL to the \"<b>Redirect URLs</b>\" field:"
2974
- msgstr "Adicione a seguinte URL ao campo \"Redirecionar URLs\"<b>%s</b> "
2975
-
2976
  #, fuzzy
2977
  #| msgid "Hit update to save the changes"
2978
  msgid "Click on \"<b>Update</b>\" to save the changes"
@@ -3028,11 +3030,9 @@ msgstr ""
3028
  msgid "Click on the \"<b>Auth</b>\" tab."
3029
  msgstr "Clique no botão Criar"
3030
 
3031
- #, fuzzy
3032
  #| msgid "Add the following URL to the \"Redirect URLs\" field <b>%s</b> "
3033
- msgid ""
3034
- "Find \"<b>OAuth 2.0 settings</b>\" section and add the following URL to the "
3035
- "\"<b>Redirect URLs</b>\" field:"
3036
  msgstr "Adicione a seguinte URL ao campo \"Redirecionar URLs\"<b>%s</b> "
3037
 
3038
  #, fuzzy
@@ -3077,11 +3077,6 @@ msgstr "Clique no App com ID do App:%s"
3077
  msgid "Click on the link next to the Redirect URIs label."
3078
  msgstr "Clique no %1$s ao lado do seu nome de domínio."
3079
 
3080
- #, fuzzy
3081
- #| msgid "Add the following URL to the \"Redirect URLs\" field <b>%s</b> "
3082
- msgid "Add the following URL to the \"<b>Redirect URIs</b>\" field:"
3083
- msgstr "Adicione a seguinte URL ao campo \"Redirecionar URLs\"<b>%s</b> "
3084
-
3085
  #, fuzzy, php-format
3086
  #| msgid "Log in with your %s credentials if you are not logged in"
3087
  msgid ""
@@ -3108,11 +3103,6 @@ msgid ""
3108
  "you can learn more."
3109
  msgstr ""
3110
 
3111
- #, fuzzy
3112
- #| msgid "Add the following URL to the \"Redirect URLs\" field <b>%s</b> "
3113
- msgid "Add the following URL to the \"<b>Redirect URI</b>\" field:"
3114
- msgstr "Adicione a seguinte URL ao campo \"Redirecionar URLs\"<b>%s</b> "
3115
-
3116
  #, fuzzy
3117
  #| msgid "Click on the \"Create New Application\" button."
3118
  msgid "Create your App with the \"<b>Register</b>\" button."
@@ -3250,11 +3240,6 @@ msgstr ""
3250
  "Role para baixo até \"LIVE APP SETTINGS\", procure o título \"Live Return URL"
3251
  "\" e clique em \"Show\"."
3252
 
3253
- #, fuzzy
3254
- #| msgid "Add the following URL to the \"Live Return URL\" field <b>%s</b> "
3255
- msgid "Add the following URL to the \"<b>Live Return URL</b>\" field:"
3256
- msgstr "Adicione a seguinte URL ao campo \"URL de retorno ao vivo\" <b>%s</b>"
3257
-
3258
  msgid "Click on \"Save\""
3259
  msgstr "Clique em \"Salvar\""
3260
 
@@ -3549,6 +3534,124 @@ msgstr "Vincular conta com <b>Facebook</b>"
3549
  msgid "Unlink account from <b>Slack</b>"
3550
  msgstr "Desvincular conta do <b>Facebook</b>"
3551
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3552
  #, fuzzy
3553
  #| msgid "Click on the Manage button at the App"
3554
  msgid "Click on the \"<b>Manage</b>\" button next to the associated App."
@@ -3559,13 +3662,6 @@ msgstr "Clique no botão Gerenciar no aplicativo"
3559
  msgid "Go to the \"<b>Settings</b>\" menu"
3560
  msgstr "Vá para o menu configurações"
3561
 
3562
- #, fuzzy
3563
- #| msgid ""
3564
- #| "Add the following URL to the \"Authorized redirect URI:\" field: <b>%s</b>"
3565
- msgid "Add the following URL to the \"<b>Authorized redirect URI</b>\" field: "
3566
- msgstr ""
3567
- "Adicione o seguinte URL ao \"Redirecionado autorizada URI:\" campo: <b>%s</b>"
3568
-
3569
  #, fuzzy
3570
  #| msgid "Locate the blue \"Create application\" button and click on it."
3571
  msgid "Locate the blue \"<b>Create app</b>\" button and click on it."
@@ -3726,11 +3822,6 @@ msgstr "Desvincular conta do <b>WordPress.com</b>"
3726
  msgid "Click on the App which has its credentials associated with the plugin."
3727
  msgstr ""
3728
 
3729
- #, fuzzy
3730
- #| msgid "Add the following URL to the \"Redirect URLs\" field <b>%s</b> "
3731
- msgid "Add the following URL to the \"<b>Redirect URI(s)</b>\" field:"
3732
- msgstr "Adicione a seguinte URL ao campo \"Redirecionar URLs\"<b>%s</b> "
3733
-
3734
  #, fuzzy
3735
  #| msgid "Click the \"Create App\" button."
3736
  msgid "Click on the \"<b>Create an App</b>\" button on the top right corner."
@@ -3797,6 +3888,106 @@ msgstr "OU"
3797
  msgid "Social accounts"
3798
  msgstr "Contas redes sociais"
3799
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3800
  #, fuzzy, php-format
3801
  #~| msgid ""
3802
  #~| "Add the following URL to the \"Authorised redirect URIs\" field: <b>%s</"
@@ -3929,13 +4120,6 @@ msgstr "Contas redes sociais"
3929
  #~ msgid "Click on blue \"Create App ID\" button"
3930
  #~ msgstr "Clique no botão azul \"Criar ID do App\""
3931
 
3932
- #, fuzzy
3933
- #~| msgid "In the left sidebar, click on \"Facebook Login/Settings\""
3934
- #~ msgid ""
3935
- #~ "In the left sidebar under the Products section, click on \"Facebook Login"
3936
- #~ "\" and select Settings"
3937
- #~ msgstr "Na barra lateral esquerda, clique em \"Facebook Login/Settings\""
3938
-
3939
  #, fuzzy
3940
  #~| msgid "In the top of the left sidebar, click on \"Settings\""
3941
  #~ msgid ""
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: nextend-facebook-connect\n"
4
+ "POT-Creation-Date: 2022-02-14 08:32+0100\n"
5
+ "PO-Revision-Date: 2022-02-14 08:32+0100\n"
6
  "Last-Translator: \n"
7
  "Language-Team: renato@modernstuff.com.br\n"
8
  "Language: pt_BR\n"
893
  msgid "Debug mode"
894
  msgstr "Modo de depuração"
895
 
896
+ msgid "Bypass cache on redirect"
897
+ msgstr ""
898
+
899
+ #, php-format
900
+ msgid ""
901
+ "Enabling this option will add a GET parameter to the URL where we redirect "
902
+ "after a successful registration or login with social login. %1$sLearn more"
903
+ "%2$s."
904
+ msgstr ""
905
+
906
  msgid "Page for register flow"
907
  msgstr "Página para fluxo de registro"
908
 
1410
  msgid "In the left sidebar, click on \"<b>Facebook Login > Settings</b>\""
1411
  msgstr "Na barra lateral esquerda, clique em \"Facebook Login/Settings\""
1412
 
1413
+ #, fuzzy, php-format
1414
+ #| msgid "Add the following URL to the \"Live Return URL\" field <b>%s</b> "
1415
+ msgid "Add the following URL to the %s field:"
1416
+ msgstr "Adicione a seguinte URL ao campo \"URL de retorno ao vivo\" <b>%s</b>"
 
 
 
 
 
1417
 
1418
  #, fuzzy
1419
  #| msgid "Click on \"Save Changes\""
1834
  "para Credenciais no menu esquerdo e selecione seu app clicando no seu nome e "
1835
  "você será capaz de copiar-colar o ID do Cliente e o Segredo do Cliente de lá."
1836
 
1837
+ #, php-format
1838
+ msgid ""
1839
+ "Currently your App is in %1$s mode, so only limited number of people can use "
1840
+ "it. To allow this App for any user with a Google Account, click on the \"%2$s"
1841
+ "\" option on the left side, then click the \"%3$s\" button under the \"%4$s"
1842
+ "\" section, and press the \"%5$s\" button. "
1843
+ msgstr ""
1844
+
1845
  msgid "Client ID"
1846
  msgstr "ID do Cliente"
1847
 
1873
  msgid "Required API: %1$s"
1874
  msgstr "API obrigatória: %1$s"
1875
 
1876
+ #, fuzzy, php-format
1877
+ #| msgid "In the left sidebar, click on \"Facebook Login/Settings\""
1878
+ msgid "On the left side, under the %s section click on the name of your App."
1879
+ msgstr "Na barra lateral esquerda, clique em \"Facebook Login/Settings\""
 
 
 
 
 
 
 
1880
 
1881
  #, fuzzy, php-format
1882
+ #| msgid "Click on the Create button"
1883
+ msgid "Click on the %1$s button at %2$s."
1884
+ msgstr "Clique no botão Criar"
1885
 
1886
  #, fuzzy, php-format
1887
  #| msgid "Make sure that the \"%1$s\" field contains %2$s"
1888
+ msgid "Make sure the %1$s field contains the following URL: %2$s"
 
1889
  msgstr "Certifique-se de que o campo \"%1$s\" contém %2$s"
1890
 
1891
+ #, fuzzy, php-format
1892
+ #| msgid "Click on \"Save\""
1893
+ msgid "Click on %s"
1894
+ msgstr "Clique em \"Salvar\""
1895
+
1896
  msgid ""
1897
  "If you don't have a developer account yet, please apply one by filling all "
1898
  "the required details! This is required for the next steps!"
1916
  msgid "Click on \"<b>%s</b>\"!"
1917
  msgstr "Clique em \"Salvar\""
1918
 
1919
+ #, php-format
1920
  msgid ""
1921
  "Name your project, and go through the basic setup. You’ll need to select "
1922
+ "your use case, give a description then click the %s button."
1923
  msgstr ""
1924
 
1925
+ #, php-format
1926
+ msgid "Choose the %1$s option for %2$s, then press %3$s!"
1927
+ msgstr ""
1928
+
1929
+ #, php-format
1930
+ msgid "Into the %1$s field, enter a name for your App, then press %2$s again!"
1931
+ msgstr ""
1932
 
1933
  #, php-format
1934
  msgid ""
1945
 
1946
  #, fuzzy, php-format
1947
  #| msgid "Name your project and then click on the Create button again"
1948
+ msgid "Scroll down and click on the %1$s button at %2$s."
1949
  msgstr "Nomeie o projeto e, em seguida, clique no botão Criar"
1950
 
1951
  #, fuzzy, php-format
1952
  #| msgid "Click on the Create button"
1953
+ msgid "Switch on the %s option."
1954
  msgstr "Clique no botão Criar"
1955
 
1956
  #, fuzzy, php-format
1961
  #, php-format
1962
  msgid ""
1963
  "If you want to get the email address as well, then don’t forget to enable "
1964
+ "the %1$s option. In this case you also need to fill the \"<b>%2$s</b>\" and "
1965
+ "the \"<b>%3$s</b>\" fields with the corresponding URLs!"
1966
  msgstr ""
1967
 
1968
  #, fuzzy, php-format
1969
  #| msgid "Click on \"Save\""
1970
+ msgid "Click on %s."
1971
  msgstr "Clique em \"Salvar\""
1972
 
1973
  #, php-format
1974
+ msgid ""
1975
+ "On the left side, under the \"<b>%s</b>\" section click on the name of your "
1976
+ "Project ( that you created the App for )."
1977
+ msgstr ""
1978
+
1979
+ #, php-format
1980
+ msgid ""
1981
+ "Click on the %1$s button, then fill the %2$s, %3$s, %4$s and %5$s forms."
1982
+ msgstr ""
1983
+
1984
+ #, php-format
1985
+ msgid ""
1986
+ "Once your application for the Elevated access has been approved, go back to "
1987
+ "%1$s then <b>verify</b> and <b>enable</b> the %2$s provider!"
1988
  msgstr ""
1989
 
1990
  msgid "API Key"
1991
  msgstr "Chave API"
1992
 
1993
+ #, fuzzy
1994
+ #| msgid "App Secret"
1995
+ msgid "API Key Secret"
1996
+ msgstr "Chave Secreta do App"
1997
 
1998
  msgid "Profile image size"
1999
  msgstr "Tamanho da imagem do perfil"
2171
  msgid "Click \"<b>Edit</b>\"."
2172
  msgstr "Clique \"editar\"."
2173
 
2174
+ #, fuzzy, php-format
2175
+ #| msgid "Add the following URL to the \"Live Return URL\" field <b>%s</b> "
2176
+ msgid "Add the following URL to the %s field: "
2177
+ msgstr "Adicione a seguinte URL ao campo \"URL de retorno ao vivo\" <b>%s</b>"
 
 
2178
 
2179
  #, php-format
2180
  msgid ""
2281
  msgstr ""
2282
  "Preencha o campo \"Domínio base\" com seu domínio, provavelmente: <b>%s</b>"
2283
 
 
 
 
 
 
2284
  msgid ""
2285
  "Finally press \"<b>Next</b>\" then \"<b>Done</b>\" and finally click on the "
2286
  "\"<b>Continue</b>\" and the \"<b>Save</b>\" button!"
2587
  "Settings section on the left side."
2588
  msgstr ""
2589
 
2590
+ #, fuzzy, php-format
2591
+ #| msgid "Add the following URL to the \"Live Return URL\" field <b>%s</b> "
2592
+ msgid "Add the following URL in the %s field:"
2593
+ msgstr "Adicione a seguinte URL ao campo \"URL de retorno ao vivo\" <b>%s</b>"
2594
 
2595
  #, fuzzy
2596
  #| msgid "Click on the \"Create New Application\" button."
2615
  "On the left side, click on the “<b>%1$s</b>” menu point in the Settings."
2616
  msgstr "Clique em \"Credenciais\"no menu à esquerda"
2617
 
 
 
 
 
 
2618
  #, fuzzy
2619
  #| msgid "Click on \"Save Changes\""
2620
  msgid "Click the \"<b>Save Changes</b>\" button."
2668
  msgstr ""
2669
  "Encontre a Chave de Autenticação necessária abaixo do menu Autenticação"
2670
 
 
 
 
 
 
2671
  #, fuzzy
2672
  #| msgid "Click on \"Save Changes\""
2673
  msgid "Click on the \"<b>Save Changes</b>\" button."
2762
  msgid "Make sure the <b>Homepage URL</b> matches with: <b>%s</b>"
2763
  msgstr "Adicione a seguinte URL ao campo \"URL de retorno ao vivo\" <b>%s</b>"
2764
 
 
 
 
 
 
2765
  #, fuzzy
2766
  #| msgid "Hit update to save the changes"
2767
  msgid "Press the <b>Update application</b> button to save the changes."
2834
  msgid "Select your %s App and click on the LINE Login section."
2835
  msgstr ""
2836
 
2837
+ #, fuzzy, php-format
2838
  #| msgid "Add the following URL to the \"Callback URL\" field: <b>%s</b>"
2839
+ msgid "Change your URL in the %s field:"
2840
  msgstr "Adicione a URL seguinte no campo “URL de Retorno”: <b>%s</b>"
2841
 
2842
  #, php-format
2975
  msgid "Click on your App and go to the \"<b>Auth</b>\" tab."
2976
  msgstr ""
2977
 
 
 
 
 
 
2978
  #, fuzzy
2979
  #| msgid "Hit update to save the changes"
2980
  msgid "Click on \"<b>Update</b>\" to save the changes"
3030
  msgid "Click on the \"<b>Auth</b>\" tab."
3031
  msgstr "Clique no botão Criar"
3032
 
3033
+ #, fuzzy, php-format
3034
  #| msgid "Add the following URL to the \"Redirect URLs\" field <b>%s</b> "
3035
+ msgid "Find the %1$s section and add the following URL to the %2$s field:"
 
 
3036
  msgstr "Adicione a seguinte URL ao campo \"Redirecionar URLs\"<b>%s</b> "
3037
 
3038
  #, fuzzy
3077
  msgid "Click on the link next to the Redirect URIs label."
3078
  msgstr "Clique no %1$s ao lado do seu nome de domínio."
3079
 
 
 
 
 
 
3080
  #, fuzzy, php-format
3081
  #| msgid "Log in with your %s credentials if you are not logged in"
3082
  msgid ""
3103
  "you can learn more."
3104
  msgstr ""
3105
 
 
 
 
 
 
3106
  #, fuzzy
3107
  #| msgid "Click on the \"Create New Application\" button."
3108
  msgid "Create your App with the \"<b>Register</b>\" button."
3240
  "Role para baixo até \"LIVE APP SETTINGS\", procure o título \"Live Return URL"
3241
  "\" e clique em \"Show\"."
3242
 
 
 
 
 
 
3243
  msgid "Click on \"Save\""
3244
  msgstr "Clique em \"Salvar\""
3245
 
3534
  msgid "Unlink account from <b>Slack</b>"
3535
  msgstr "Desvincular conta do <b>Facebook</b>"
3536
 
3537
+ #, fuzzy, php-format
3538
+ #| msgid "Log in with your %s credentials if you are not logged in"
3539
+ msgid "Log in to your %s developer account, if you are not logged in yet."
3540
+ msgstr "Logue com suas credenciais %s se você não estiver logado"
3541
+
3542
+ #, php-format
3543
+ msgid ""
3544
+ "On the top right corner click on %1$s then click on the name of that App "
3545
+ "that you used for the configuration."
3546
+ msgstr ""
3547
+
3548
+ #, fuzzy, php-format
3549
+ #| msgid "Click on the Create button"
3550
+ msgid "Scroll down to the %s section."
3551
+ msgstr "Clique no botão Criar"
3552
+
3553
+ #, fuzzy, php-format
3554
+ #| msgid "Enter your domain name to the App Domains"
3555
+ msgid ""
3556
+ "Enter your domain name into the %1$s field, if it is not added already: %2$s"
3557
+ msgstr "Digite seu nome de domínio para os Domínios do App"
3558
+
3559
+ #, php-format
3560
+ msgid "Press the %s button."
3561
+ msgstr ""
3562
+
3563
+ msgid "Allow some time for these modifications to take effect."
3564
+ msgstr ""
3565
+
3566
+ #, php-format
3567
+ msgid ""
3568
+ "Log in to your %s developer account or register one if you don't have any!"
3569
+ msgstr ""
3570
+
3571
+ #, php-format
3572
+ msgid "On the top right corner click on %1$s then click on the %2$s option."
3573
+ msgstr ""
3574
+
3575
+ #, php-format
3576
+ msgid ""
3577
+ "A modal will appear where you need to select an image as %1$s and enter a "
3578
+ "name into the %2$s field."
3579
+ msgstr ""
3580
+
3581
+ #, php-format
3582
+ msgid "Press the %1$s button."
3583
+ msgstr ""
3584
+
3585
+ #, fuzzy, php-format
3586
+ #| msgid "Click on the Create button"
3587
+ msgid "For %1$s choose the %2$s option."
3588
+ msgstr "Clique no botão Criar"
3589
+
3590
+ #, php-format
3591
+ msgid "Under the %s section you should fill all of the required fields."
3592
+ msgstr ""
3593
+
3594
+ #, fuzzy, php-format
3595
+ #| msgid "Enter your domain name to the App Domains"
3596
+ msgid "Enter your domain name to the %1$s field, probably: %2$s"
3597
+ msgstr "Digite seu nome de domínio para os Domínios do App"
3598
+
3599
+ #, php-format
3600
+ msgid ""
3601
+ "Under the %1$s section you need to make sure the option %2$s is checked."
3602
+ msgstr ""
3603
+
3604
+ #, php-format
3605
+ msgid ""
3606
+ "Into the %1$s field you should write a text, that describes what you are "
3607
+ "going to do with the App. In this particular case, you will use it to offer "
3608
+ "%2$s login option for your visitors."
3609
+ msgstr ""
3610
+
3611
+ #, php-format
3612
+ msgid ""
3613
+ "Wait until your App gets approved. This can take a couple of days. If you "
3614
+ "scroll up to the top of the page you will be able to find the %s below the "
3615
+ "name of your App."
3616
+ msgstr ""
3617
+
3618
+ #, php-format
3619
+ msgid ""
3620
+ "Once the %1$s says %2$s, the %3$s and %4$s will appear below the %1$s text. "
3621
+ "You will need these for the provider configuration."
3622
+ msgstr ""
3623
+
3624
+ #, php-format
3625
+ msgid ""
3626
+ "<b>WARNING:</b> The %1$s API can not return any email address or phone "
3627
+ "number! %2$sLearn more%3$s."
3628
+ msgstr ""
3629
+
3630
+ #, fuzzy
3631
+ #| msgid "Client ID"
3632
+ msgid "Client Key"
3633
+ msgstr "ID do Cliente"
3634
+
3635
+ #, fuzzy
3636
+ #| msgid "Continue with <b>LinkedIn</b>"
3637
+ msgid "Continue with <b>TikTok</b>"
3638
+ msgstr "Continuar com <b>LinkedIn</b>"
3639
+
3640
+ #, fuzzy
3641
+ #| msgid "Continue with <b>LinkedIn</b>"
3642
+ msgid "Sign up with <b>TikTok</b>"
3643
+ msgstr "Continuar com <b>LinkedIn</b>"
3644
+
3645
+ #, fuzzy
3646
+ #| msgid "Link account with <b>LinkedIn</b>"
3647
+ msgid "Link account with <b>TikTok</b>"
3648
+ msgstr "Vincular conta com <b>LinkedIn</b>"
3649
+
3650
+ #, fuzzy
3651
+ #| msgid "Unlink account from <b>LinkedIn</b>"
3652
+ msgid "Unlink account from <b>TikTok</b>"
3653
+ msgstr "Desvincular conta do <b>LinkedIn</b>"
3654
+
3655
  #, fuzzy
3656
  #| msgid "Click on the Manage button at the App"
3657
  msgid "Click on the \"<b>Manage</b>\" button next to the associated App."
3662
  msgid "Go to the \"<b>Settings</b>\" menu"
3663
  msgstr "Vá para o menu configurações"
3664
 
 
 
 
 
 
 
 
3665
  #, fuzzy
3666
  #| msgid "Locate the blue \"Create application\" button and click on it."
3667
  msgid "Locate the blue \"<b>Create app</b>\" button and click on it."
3822
  msgid "Click on the App which has its credentials associated with the plugin."
3823
  msgstr ""
3824
 
 
 
 
 
 
3825
  #, fuzzy
3826
  #| msgid "Click the \"Create App\" button."
3827
  msgid "Click on the \"<b>Create an App</b>\" button on the top right corner."
3888
  msgid "Social accounts"
3889
  msgstr "Contas redes sociais"
3890
 
3891
+ #, fuzzy
3892
+ #~| msgid ""
3893
+ #~| "Add the following URL to the \"Valid OAuth redirect URIs\" field: <b>%s</"
3894
+ #~| "b>"
3895
+ #~ msgid ""
3896
+ #~ "Add the following URL to the \"<b>Valid OAuth redirect URIs</b>\" field:"
3897
+ #~ msgstr ""
3898
+ #~ "Adicionar o seguinte URL no campo \"URIs de redirecionamento OAuth Válidos"
3899
+ #~ "\": <b>%s</b>"
3900
+
3901
+ #, fuzzy
3902
+ #~| msgid "Name your project and then click on the Create button again"
3903
+ #~ msgid ""
3904
+ #~ "Find your App and click on the <b>App settings</b> icon. (The one that "
3905
+ #~ "looks like a gear.)"
3906
+ #~ msgstr "Nomeie o projeto e, em seguida, clique no botão Criar"
3907
+
3908
+ #, fuzzy
3909
+ #~| msgid "Click the \"Create App\" button."
3910
+ #~ msgid "Click on the <b>Edit</b> button at <b>Authentication settings</b>."
3911
+ #~ msgstr "Clique no botão \"Criar Novo App\"."
3912
+
3913
+ #, fuzzy, php-format
3914
+ #~| msgid "Click \"Edit\"."
3915
+ #~ msgid "Click \"<b>%s</b>\"!"
3916
+ #~ msgstr "Clique \"editar\"."
3917
+
3918
+ #~ msgid "API secret key"
3919
+ #~ msgstr "Chave secreta da API"
3920
+
3921
+ #, fuzzy
3922
+ #~| msgid ""
3923
+ #~| "Add the following URL to the \"Allowed Return URLs\" field <b>%s</b> "
3924
+ #~ msgid "Add the following URL to the \"<b>Allowed Return URLs</b>\" field: "
3925
+ #~ msgstr ""
3926
+ #~ "Adicione o seguinte URL ao campo \"URLs de retorno permitidos\" <b>%s</b>."
3927
+
3928
+ #, fuzzy
3929
+ #~| msgid "Add the following URL to the \"Live Return URL\" field <b>%s</b> "
3930
+ #~ msgid "Add the following URL to the \"<b>Return URLs</b>\" field:"
3931
+ #~ msgstr ""
3932
+ #~ "Adicione a seguinte URL ao campo \"URL de retorno ao vivo\" <b>%s</b>"
3933
+
3934
+ #, fuzzy
3935
+ #~| msgid "Add the following URL to the \"Redirect URLs\" field <b>%s</b> "
3936
+ #~ msgid "Add the following URL in the \"<b>Redirects</b>\" field:"
3937
+ #~ msgstr "Adicione a seguinte URL ao campo \"Redirecionar URLs\"<b>%s</b> "
3938
+
3939
+ #, fuzzy
3940
+ #~| msgid "Add the following URL to the \"Redirect URLs\" field <b>%s</b> "
3941
+ #~ msgid "Add the following URL to the \"<b>Redirects</b>\" field:"
3942
+ #~ msgstr "Adicione a seguinte URL ao campo \"Redirecionar URLs\"<b>%s</b> "
3943
+
3944
+ #, fuzzy
3945
+ #~| msgid "Add the following URL to the \"Callback URL\" field: <b>%s</b>"
3946
+ #~ msgid "Add the following URL to the \"<b>Callback URL</b>\" field:"
3947
+ #~ msgstr "Adicione a URL seguinte no campo “URL de Retorno”: <b>%s</b>"
3948
+
3949
+ #, fuzzy
3950
+ #~| msgid "Add the following URL to the \"Callback URL\" field: <b>%s</b>"
3951
+ #~ msgid ""
3952
+ #~ "Add the following URL to the <b>Authorization callback URL</b> field:"
3953
+ #~ msgstr "Adicione a URL seguinte no campo “URL de Retorno”: <b>%s</b>"
3954
+
3955
+ #, fuzzy
3956
+ #~| msgid "Add the following URL to the \"Redirect URLs\" field <b>%s</b> "
3957
+ #~ msgid "Add the following URL to the \"<b>Redirect URLs</b>\" field:"
3958
+ #~ msgstr "Adicione a seguinte URL ao campo \"Redirecionar URLs\"<b>%s</b> "
3959
+
3960
+ #, fuzzy
3961
+ #~| msgid "Add the following URL to the \"Redirect URLs\" field <b>%s</b> "
3962
+ #~ msgid "Add the following URL to the \"<b>Redirect URIs</b>\" field:"
3963
+ #~ msgstr "Adicione a seguinte URL ao campo \"Redirecionar URLs\"<b>%s</b> "
3964
+
3965
+ #, fuzzy
3966
+ #~| msgid "Add the following URL to the \"Redirect URLs\" field <b>%s</b> "
3967
+ #~ msgid "Add the following URL to the \"<b>Redirect URI</b>\" field:"
3968
+ #~ msgstr "Adicione a seguinte URL ao campo \"Redirecionar URLs\"<b>%s</b> "
3969
+
3970
+ #, fuzzy
3971
+ #~| msgid "Add the following URL to the \"Live Return URL\" field <b>%s</b> "
3972
+ #~ msgid "Add the following URL to the \"<b>Live Return URL</b>\" field:"
3973
+ #~ msgstr ""
3974
+ #~ "Adicione a seguinte URL ao campo \"URL de retorno ao vivo\" <b>%s</b>"
3975
+
3976
+ #, fuzzy
3977
+ #~| msgid ""
3978
+ #~| "Add the following URL to the \"Authorized redirect URI:\" field: <b>%s</"
3979
+ #~| "b>"
3980
+ #~ msgid ""
3981
+ #~ "Add the following URL to the \"<b>Authorized redirect URI</b>\" field: "
3982
+ #~ msgstr ""
3983
+ #~ "Adicione o seguinte URL ao \"Redirecionado autorizada URI:\" campo: <b>"
3984
+ #~ "%s</b>"
3985
+
3986
+ #, fuzzy
3987
+ #~| msgid "Add the following URL to the \"Redirect URLs\" field <b>%s</b> "
3988
+ #~ msgid "Add the following URL to the \"<b>Redirect URI(s)</b>\" field:"
3989
+ #~ msgstr "Adicione a seguinte URL ao campo \"Redirecionar URLs\"<b>%s</b> "
3990
+
3991
  #, fuzzy, php-format
3992
  #~| msgid ""
3993
  #~| "Add the following URL to the \"Authorised redirect URIs\" field: <b>%s</"
4120
  #~ msgid "Click on blue \"Create App ID\" button"
4121
  #~ msgstr "Clique no botão azul \"Criar ID do App\""
4122
 
 
 
 
 
 
 
 
4123
  #, fuzzy
4124
  #~| msgid "In the top of the left sidebar, click on \"Settings\""
4125
  #~ msgid ""
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-11-15 18:51+0100\n"
5
- "PO-Revision-Date: 2021-11-15 18:51+0100\n"
6
  "Last-Translator: \n"
7
  "Language-Team: nextend-facebook-connect\n"
8
  "Language: ru\n"
@@ -773,6 +773,16 @@ msgstr ""
773
  msgid "Debug mode"
774
  msgstr ""
775
 
 
 
 
 
 
 
 
 
 
 
776
  msgid "Page for register flow"
777
  msgstr ""
778
 
@@ -1206,8 +1216,8 @@ msgstr ""
1206
  msgid "In the left sidebar, click on \"<b>Facebook Login > Settings</b>\""
1207
  msgstr ""
1208
 
1209
- msgid ""
1210
- "Add the following URL to the \"<b>Valid OAuth redirect URIs</b>\" field:"
1211
  msgstr ""
1212
 
1213
  msgid "Click on \"<b>Save Changes</b>\""
@@ -1551,6 +1561,14 @@ msgid ""
1551
  "from there."
1552
  msgstr ""
1553
 
 
 
 
 
 
 
 
 
1554
  msgid "Client ID"
1555
  msgstr ""
1556
 
@@ -1582,21 +1600,20 @@ msgstr "Отвязать аккаунты от <b>Google</b>"
1582
  msgid "Required API: %1$s"
1583
  msgstr ""
1584
 
1585
- msgid ""
1586
- "Find your App and click on the <b>App settings</b> icon. (The one that looks "
1587
- "like a gear.)"
1588
  msgstr ""
1589
 
1590
- msgid "Click on the <b>Edit</b> button at <b>Authentication settings</b>."
 
1591
  msgstr ""
1592
 
1593
  #, php-format
1594
- msgid "Add the following URL to the \"<b>%1$s</b>\" field:"
1595
  msgstr ""
1596
 
1597
  #, php-format
1598
- msgid ""
1599
- "Make sure the \"<b>%1$s</b>\" field contains the following URL: <b>%2$s</b>"
1600
  msgstr ""
1601
 
1602
  msgid ""
@@ -1614,13 +1631,18 @@ msgstr ""
1614
  msgid "Click on \"<b>%s</b>\"!"
1615
  msgstr ""
1616
 
 
1617
  msgid ""
1618
  "Name your project, and go through the basic setup. You’ll need to select "
1619
- "your use case, give a description and enter a name for the App as well."
1620
  msgstr ""
1621
 
1622
  #, php-format
1623
- msgid "Click \"<b>%s</b>\"!"
 
 
 
 
1624
  msgstr ""
1625
 
1626
  #, php-format
@@ -1637,11 +1659,11 @@ msgid ""
1637
  msgstr ""
1638
 
1639
  #, php-format
1640
- msgid "Scroll down and click on the \"<b>%1$s</b>\" button at \"<b>%2$s</b>\"."
1641
  msgstr ""
1642
 
1643
  #, php-format
1644
- msgid "Switch on the \"<b>%s</b>\" option."
1645
  msgstr ""
1646
 
1647
  #, php-format
@@ -1651,22 +1673,35 @@ msgstr ""
1651
  #, php-format
1652
  msgid ""
1653
  "If you want to get the email address as well, then don’t forget to enable "
1654
- "the \"<b>%1$s</b>\" option. In this case you also need to fill the \"<b>"
1655
- "%2$s</b>\" and the \"<b>%3$s</b>\" fields with the corresponding URLs!"
1656
  msgstr ""
1657
 
1658
  #, php-format
1659
- msgid "Click on \"<b>%s</b>\"."
1660
  msgstr ""
1661
 
1662
  #, php-format
1663
- msgid "Go back to %1$s and <b>Verify</b> your %2$s provider."
 
 
 
 
 
 
 
 
 
 
 
 
 
1664
  msgstr ""
1665
 
1666
  msgid "API Key"
1667
  msgstr ""
1668
 
1669
- msgid "API secret key"
1670
  msgstr ""
1671
 
1672
  msgid "Profile image size"
@@ -1810,7 +1845,8 @@ msgstr ""
1810
  msgid "Click \"<b>Edit</b>\"."
1811
  msgstr ""
1812
 
1813
- msgid "Add the following URL to the \"<b>Allowed Return URLs</b>\" field: "
 
1814
  msgstr ""
1815
 
1816
  #, php-format
@@ -1880,9 +1916,6 @@ msgid ""
1880
  "probably: <b>%s</b>"
1881
  msgstr ""
1882
 
1883
- msgid "Add the following URL to the \"<b>Return URLs</b>\" field:"
1884
- msgstr ""
1885
-
1886
  msgid ""
1887
  "Finally press \"<b>Next</b>\" then \"<b>Done</b>\" and finally click on the "
1888
  "\"<b>Continue</b>\" and the \"<b>Save</b>\" button!"
@@ -2156,7 +2189,8 @@ msgid ""
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."
@@ -2175,9 +2209,6 @@ msgid ""
2175
  "On the left side, click on the “<b>%1$s</b>” menu point in the Settings."
2176
  msgstr ""
2177
 
2178
- msgid "Add the following URL to the \"<b>Redirects</b>\" field:"
2179
- msgstr ""
2180
-
2181
  msgid "Click the \"<b>Save Changes</b>\" button."
2182
  msgstr ""
2183
 
@@ -2220,9 +2251,6 @@ msgid ""
2220
  "section!"
2221
  msgstr ""
2222
 
2223
- msgid "Add the following URL to the \"<b>Callback URL</b>\" field:"
2224
- msgstr ""
2225
-
2226
  msgid "Click on the \"<b>Save Changes</b>\" button."
2227
  msgstr ""
2228
 
@@ -2288,9 +2316,6 @@ msgstr ""
2288
  msgid "Make sure the <b>Homepage URL</b> matches with: <b>%s</b>"
2289
  msgstr ""
2290
 
2291
- msgid "Add the following URL to the <b>Authorization callback URL</b> field:"
2292
- msgstr ""
2293
-
2294
  msgid "Press the <b>Update application</b> button to save the changes."
2295
  msgstr ""
2296
 
@@ -2350,7 +2375,8 @@ msgstr ""
2350
  msgid "Select your %s App and click on the LINE Login section."
2351
  msgstr ""
2352
 
2353
- msgid "Change your URL in the \"<b>Callback URL</b>\" field:"
 
2354
  msgstr ""
2355
 
2356
  #, php-format
@@ -2466,9 +2492,6 @@ msgstr "Отвязать аккаунты от <b>LinkedIn</b>"
2466
  msgid "Click on your App and go to the \"<b>Auth</b>\" tab."
2467
  msgstr ""
2468
 
2469
- msgid "Add the following URL to the \"<b>Redirect URLs</b>\" field:"
2470
- msgstr ""
2471
-
2472
  msgid "Click on \"<b>Update</b>\" to save the changes"
2473
  msgstr ""
2474
 
@@ -2511,9 +2534,8 @@ msgstr ""
2511
  msgid "Click on the \"<b>Auth</b>\" tab."
2512
  msgstr ""
2513
 
2514
- msgid ""
2515
- "Find \"<b>OAuth 2.0 settings</b>\" section and add the following URL to the "
2516
- "\"<b>Redirect URLs</b>\" field:"
2517
  msgstr ""
2518
 
2519
  msgid ""
@@ -2548,9 +2570,6 @@ msgstr ""
2548
  msgid "Click on the link next to the Redirect URIs label."
2549
  msgstr ""
2550
 
2551
- msgid "Add the following URL to the \"<b>Redirect URIs</b>\" field:"
2552
- msgstr ""
2553
-
2554
  #, php-format
2555
  msgid ""
2556
  "Log in with your %s credentials if you are not logged in or create a new "
@@ -2571,9 +2590,6 @@ msgid ""
2571
  "you can learn more."
2572
  msgstr ""
2573
 
2574
- msgid "Add the following URL to the \"<b>Redirect URI</b>\" field:"
2575
- msgstr ""
2576
-
2577
  msgid "Create your App with the \"<b>Register</b>\" button."
2578
  msgstr ""
2579
 
@@ -2683,9 +2699,6 @@ msgid ""
2683
  "b>\" heading and click \"<b>Show</b>\"."
2684
  msgstr ""
2685
 
2686
- msgid "Add the following URL to the \"<b>Live Return URL</b>\" field:"
2687
- msgstr ""
2688
-
2689
  msgid "Click on \"Save\""
2690
  msgstr ""
2691
 
@@ -2897,13 +2910,120 @@ msgstr "Связать аккаунты с <b>Facebook</b>"
2897
  msgid "Unlink account from <b>Slack</b>"
2898
  msgstr "Отвязать аккаунты от <b>Facebook</b>"
2899
 
2900
- msgid "Click on the \"<b>Manage</b>\" button next to the associated App."
 
2901
  msgstr ""
2902
 
2903
- msgid "Go to the \"<b>Settings</b>\" menu"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2904
  msgstr ""
2905
 
2906
- msgid "Add the following URL to the \"<b>Authorized redirect URI</b>\" field: "
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2907
  msgstr ""
2908
 
2909
  msgid "Locate the blue \"<b>Create app</b>\" button and click on it."
@@ -3014,9 +3134,6 @@ msgstr "Отвязать аккаунты от <b>WordPress.com</b>"
3014
  msgid "Click on the App which has its credentials associated with the plugin."
3015
  msgstr ""
3016
 
3017
- msgid "Add the following URL to the \"<b>Redirect URI(s)</b>\" field:"
3018
- msgstr ""
3019
-
3020
  msgid "Click on the \"<b>Create an App</b>\" button on the top right corner."
3021
  msgstr ""
3022
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: nextend-facebook-connect\n"
4
+ "POT-Creation-Date: 2022-02-14 08:32+0100\n"
5
+ "PO-Revision-Date: 2022-02-14 08:32+0100\n"
6
  "Last-Translator: \n"
7
  "Language-Team: nextend-facebook-connect\n"
8
  "Language: ru\n"
773
  msgid "Debug mode"
774
  msgstr ""
775
 
776
+ msgid "Bypass cache on redirect"
777
+ msgstr ""
778
+
779
+ #, php-format
780
+ msgid ""
781
+ "Enabling this option will add a GET parameter to the URL where we redirect "
782
+ "after a successful registration or login with social login. %1$sLearn more"
783
+ "%2$s."
784
+ msgstr ""
785
+
786
  msgid "Page for register flow"
787
  msgstr ""
788
 
1216
  msgid "In the left sidebar, click on \"<b>Facebook Login > Settings</b>\""
1217
  msgstr ""
1218
 
1219
+ #, php-format
1220
+ msgid "Add the following URL to the %s field:"
1221
  msgstr ""
1222
 
1223
  msgid "Click on \"<b>Save Changes</b>\""
1561
  "from there."
1562
  msgstr ""
1563
 
1564
+ #, php-format
1565
+ msgid ""
1566
+ "Currently your App is in %1$s mode, so only limited number of people can use "
1567
+ "it. To allow this App for any user with a Google Account, click on the \"%2$s"
1568
+ "\" option on the left side, then click the \"%3$s\" button under the \"%4$s"
1569
+ "\" section, and press the \"%5$s\" button. "
1570
+ msgstr ""
1571
+
1572
  msgid "Client ID"
1573
  msgstr ""
1574
 
1600
  msgid "Required API: %1$s"
1601
  msgstr ""
1602
 
1603
+ #, php-format
1604
+ msgid "On the left side, under the %s section click on the name of your App."
 
1605
  msgstr ""
1606
 
1607
+ #, php-format
1608
+ msgid "Click on the %1$s button at %2$s."
1609
  msgstr ""
1610
 
1611
  #, php-format
1612
+ msgid "Make sure the %1$s field contains the following URL: %2$s"
1613
  msgstr ""
1614
 
1615
  #, php-format
1616
+ msgid "Click on %s"
 
1617
  msgstr ""
1618
 
1619
  msgid ""
1631
  msgid "Click on \"<b>%s</b>\"!"
1632
  msgstr ""
1633
 
1634
+ #, php-format
1635
  msgid ""
1636
  "Name your project, and go through the basic setup. You’ll need to select "
1637
+ "your use case, give a description then click the %s button."
1638
  msgstr ""
1639
 
1640
  #, php-format
1641
+ msgid "Choose the %1$s option for %2$s, then press %3$s!"
1642
+ msgstr ""
1643
+
1644
+ #, php-format
1645
+ msgid "Into the %1$s field, enter a name for your App, then press %2$s again!"
1646
  msgstr ""
1647
 
1648
  #, php-format
1659
  msgstr ""
1660
 
1661
  #, php-format
1662
+ msgid "Scroll down and click on the %1$s button at %2$s."
1663
  msgstr ""
1664
 
1665
  #, php-format
1666
+ msgid "Switch on the %s option."
1667
  msgstr ""
1668
 
1669
  #, php-format
1673
  #, php-format
1674
  msgid ""
1675
  "If you want to get the email address as well, then don’t forget to enable "
1676
+ "the %1$s option. In this case you also need to fill the \"<b>%2$s</b>\" and "
1677
+ "the \"<b>%3$s</b>\" fields with the corresponding URLs!"
1678
  msgstr ""
1679
 
1680
  #, php-format
1681
+ msgid "Click on %s."
1682
  msgstr ""
1683
 
1684
  #, php-format
1685
+ msgid ""
1686
+ "On the left side, under the \"<b>%s</b>\" section click on the name of your "
1687
+ "Project ( that you created the App for )."
1688
+ msgstr ""
1689
+
1690
+ #, php-format
1691
+ msgid ""
1692
+ "Click on the %1$s button, then fill the %2$s, %3$s, %4$s and %5$s forms."
1693
+ msgstr ""
1694
+
1695
+ #, php-format
1696
+ msgid ""
1697
+ "Once your application for the Elevated access has been approved, go back to "
1698
+ "%1$s then <b>verify</b> and <b>enable</b> the %2$s provider!"
1699
  msgstr ""
1700
 
1701
  msgid "API Key"
1702
  msgstr ""
1703
 
1704
+ msgid "API Key Secret"
1705
  msgstr ""
1706
 
1707
  msgid "Profile image size"
1845
  msgid "Click \"<b>Edit</b>\"."
1846
  msgstr ""
1847
 
1848
+ #, php-format
1849
+ msgid "Add the following URL to the %s field: "
1850
  msgstr ""
1851
 
1852
  #, php-format
1916
  "probably: <b>%s</b>"
1917
  msgstr ""
1918
 
 
 
 
1919
  msgid ""
1920
  "Finally press \"<b>Next</b>\" then \"<b>Done</b>\" and finally click on the "
1921
  "\"<b>Continue</b>\" and the \"<b>Save</b>\" button!"
2189
  "Settings section on the left side."
2190
  msgstr ""
2191
 
2192
+ #, php-format
2193
+ msgid "Add the following URL in the %s field:"
2194
  msgstr ""
2195
 
2196
  msgid "Click the \"<b>New Application</b>\" button."
2209
  "On the left side, click on the “<b>%1$s</b>” menu point in the Settings."
2210
  msgstr ""
2211
 
 
 
 
2212
  msgid "Click the \"<b>Save Changes</b>\" button."
2213
  msgstr ""
2214
 
2251
  "section!"
2252
  msgstr ""
2253
 
 
 
 
2254
  msgid "Click on the \"<b>Save Changes</b>\" button."
2255
  msgstr ""
2256
 
2316
  msgid "Make sure the <b>Homepage URL</b> matches with: <b>%s</b>"
2317
  msgstr ""
2318
 
 
 
 
2319
  msgid "Press the <b>Update application</b> button to save the changes."
2320
  msgstr ""
2321
 
2375
  msgid "Select your %s App and click on the LINE Login section."
2376
  msgstr ""
2377
 
2378
+ #, php-format
2379
+ msgid "Change your URL in the %s field:"
2380
  msgstr ""
2381
 
2382
  #, php-format
2492
  msgid "Click on your App and go to the \"<b>Auth</b>\" tab."
2493
  msgstr ""
2494
 
 
 
 
2495
  msgid "Click on \"<b>Update</b>\" to save the changes"
2496
  msgstr ""
2497
 
2534
  msgid "Click on the \"<b>Auth</b>\" tab."
2535
  msgstr ""
2536
 
2537
+ #, php-format
2538
+ msgid "Find the %1$s section and add the following URL to the %2$s field:"
 
2539
  msgstr ""
2540
 
2541
  msgid ""
2570
  msgid "Click on the link next to the Redirect URIs label."
2571
  msgstr ""
2572
 
 
 
 
2573
  #, php-format
2574
  msgid ""
2575
  "Log in with your %s credentials if you are not logged in or create a new "
2590
  "you can learn more."
2591
  msgstr ""
2592
 
 
 
 
2593
  msgid "Create your App with the \"<b>Register</b>\" button."
2594
  msgstr ""
2595
 
2699
  "b>\" heading and click \"<b>Show</b>\"."
2700
  msgstr ""
2701
 
 
 
 
2702
  msgid "Click on \"Save\""
2703
  msgstr ""
2704
 
2910
  msgid "Unlink account from <b>Slack</b>"
2911
  msgstr "Отвязать аккаунты от <b>Facebook</b>"
2912
 
2913
+ #, php-format
2914
+ msgid "Log in to your %s developer account, if you are not logged in yet."
2915
  msgstr ""
2916
 
2917
+ #, php-format
2918
+ msgid ""
2919
+ "On the top right corner click on %1$s then click on the name of that App "
2920
+ "that you used for the configuration."
2921
+ msgstr ""
2922
+
2923
+ #, php-format
2924
+ msgid "Scroll down to the %s section."
2925
+ msgstr ""
2926
+
2927
+ #, php-format
2928
+ msgid ""
2929
+ "Enter your domain name into the %1$s field, if it is not added already: %2$s"
2930
+ msgstr ""
2931
+
2932
+ #, php-format
2933
+ msgid "Press the %s button."
2934
  msgstr ""
2935
 
2936
+ msgid "Allow some time for these modifications to take effect."
2937
+ msgstr ""
2938
+
2939
+ #, php-format
2940
+ msgid ""
2941
+ "Log in to your %s developer account or register one if you don't have any!"
2942
+ msgstr ""
2943
+
2944
+ #, php-format
2945
+ msgid "On the top right corner click on %1$s then click on the %2$s option."
2946
+ msgstr ""
2947
+
2948
+ #, php-format
2949
+ msgid ""
2950
+ "A modal will appear where you need to select an image as %1$s and enter a "
2951
+ "name into the %2$s field."
2952
+ msgstr ""
2953
+
2954
+ #, php-format
2955
+ msgid "Press the %1$s button."
2956
+ msgstr ""
2957
+
2958
+ #, php-format
2959
+ msgid "For %1$s choose the %2$s option."
2960
+ msgstr ""
2961
+
2962
+ #, php-format
2963
+ msgid "Under the %s section you should fill all of the required fields."
2964
+ msgstr ""
2965
+
2966
+ #, php-format
2967
+ msgid "Enter your domain name to the %1$s field, probably: %2$s"
2968
+ msgstr ""
2969
+
2970
+ #, php-format
2971
+ msgid ""
2972
+ "Under the %1$s section you need to make sure the option %2$s is checked."
2973
+ msgstr ""
2974
+
2975
+ #, php-format
2976
+ msgid ""
2977
+ "Into the %1$s field you should write a text, that describes what you are "
2978
+ "going to do with the App. In this particular case, you will use it to offer "
2979
+ "%2$s login option for your visitors."
2980
+ msgstr ""
2981
+
2982
+ #, php-format
2983
+ msgid ""
2984
+ "Wait until your App gets approved. This can take a couple of days. If you "
2985
+ "scroll up to the top of the page you will be able to find the %s below the "
2986
+ "name of your App."
2987
+ msgstr ""
2988
+
2989
+ #, php-format
2990
+ msgid ""
2991
+ "Once the %1$s says %2$s, the %3$s and %4$s will appear below the %1$s text. "
2992
+ "You will need these for the provider configuration."
2993
+ msgstr ""
2994
+
2995
+ #, php-format
2996
+ msgid ""
2997
+ "<b>WARNING:</b> The %1$s API can not return any email address or phone "
2998
+ "number! %2$sLearn more%3$s."
2999
+ msgstr ""
3000
+
3001
+ msgid "Client Key"
3002
+ msgstr ""
3003
+
3004
+ #, fuzzy
3005
+ #| msgid "Continue with <b>LinkedIn</b>"
3006
+ msgid "Continue with <b>TikTok</b>"
3007
+ msgstr "Войти через <b>LinkedIn</b>"
3008
+
3009
+ #, fuzzy
3010
+ msgid "Sign up with <b>TikTok</b>"
3011
+ msgstr "Войти через <b>LinkedIn</b>"
3012
+
3013
+ #, fuzzy
3014
+ #| msgid "Link account with <b>LinkedIn</b>"
3015
+ msgid "Link account with <b>TikTok</b>"
3016
+ msgstr "Связать аккаунты с <b>LinkedIn</b>"
3017
+
3018
+ #, fuzzy
3019
+ #| msgid "Unlink account from <b>LinkedIn</b>"
3020
+ msgid "Unlink account from <b>TikTok</b>"
3021
+ msgstr "Отвязать аккаунты от <b>LinkedIn</b>"
3022
+
3023
+ msgid "Click on the \"<b>Manage</b>\" button next to the associated App."
3024
+ msgstr ""
3025
+
3026
+ msgid "Go to the \"<b>Settings</b>\" menu"
3027
  msgstr ""
3028
 
3029
  msgid "Locate the blue \"<b>Create app</b>\" button and click on it."
3134
  msgid "Click on the App which has its credentials associated with the plugin."
3135
  msgstr ""
3136
 
 
 
 
3137
  msgid "Click on the \"<b>Create an App</b>\" button on the top right corner."
3138
  msgstr ""
3139
 
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-11-15 18:51+0100\n"
5
- "PO-Revision-Date: 2021-11-15 18:51+0100\n"
6
  "Last-Translator: \n"
7
  "Language-Team: nextend-facebook-connect\n"
8
  "Language: zh_CN\n"
@@ -880,6 +880,16 @@ msgstr "禁止所选对象登录"
880
  msgid "Debug mode"
881
  msgstr "调试模式"
882
 
 
 
 
 
 
 
 
 
 
 
883
  #, fuzzy
884
  #| msgid "Register"
885
  msgid "Page for register flow"
@@ -1383,13 +1393,12 @@ msgstr "点击应用程序ID为:%s"
1383
  msgid "In the left sidebar, click on \"<b>Facebook Login > Settings</b>\""
1384
  msgstr "在左侧,点击\"Facebook 登录/设置\""
1385
 
1386
- #, fuzzy
1387
  #| msgid ""
1388
- #| "Add the following URL to the \"Valid OAuth redirect URIs\" field: <b>%s</"
1389
  #| "b>"
1390
- msgid ""
1391
- "Add the following URL to the \"<b>Valid OAuth redirect URIs</b>\" field:"
1392
- msgstr "请将下面的URL填入\"Valid OAuth redirect URIs\" : <b>%s</b>"
1393
 
1394
  #, fuzzy
1395
  #| msgid "Click on \"Save Changes\""
@@ -1794,6 +1803,14 @@ msgstr ""
1794
  "通过单击其名称选择您的应用程序,然后您可以从那里复制粘贴客户端ID和客户端密"
1795
  "钥。"
1796
 
 
 
 
 
 
 
 
 
1797
  msgid "Client ID"
1798
  msgstr "客户端ID"
1799
 
@@ -1826,31 +1843,26 @@ msgstr "取消关联 <b>Google</b>"
1826
  msgid "Required API: %1$s"
1827
  msgstr "请求"
1828
 
1829
- #, fuzzy
1830
- #| msgid "Name your project and then click on the Create button"
1831
- msgid ""
1832
- "Find your App and click on the <b>App settings</b> icon. (The one that looks "
1833
- "like a gear.)"
1834
- msgstr "命名您的项目,然后点击创建按钮"
1835
-
1836
- #, fuzzy
1837
- #| msgid "Click on the \"Create New App\" button"
1838
- msgid "Click on the <b>Edit</b> button at <b>Authentication settings</b>."
1839
- msgstr "点击\"创建新应用\"按钮"
1840
 
1841
  #, fuzzy, php-format
1842
- #| msgid ""
1843
- #| "Add the following URL to the \"Authorized Redirect URLs:\" field: <b>%s</"
1844
- #| "b>"
1845
- msgid "Add the following URL to the \"<b>%1$s</b>\" field:"
1846
- msgstr "将以下网址添加到“授权重定向网址”字段中:<b>%s</b>"
1847
 
1848
  #, fuzzy, php-format
1849
  #| msgid "Make sure that the \"%1$s\" field contains %2$s"
1850
- msgid ""
1851
- "Make sure the \"<b>%1$s</b>\" field contains the following URL: <b>%2$s</b>"
1852
  msgstr "确保 \"%1$s\" 包含 %2$s"
1853
 
 
 
 
 
 
1854
  msgid ""
1855
  "If you don't have a developer account yet, please apply one by filling all "
1856
  "the required details! This is required for the next steps!"
@@ -1867,15 +1879,19 @@ msgstr ""
1867
  msgid "Click on \"<b>%s</b>\"!"
1868
  msgstr "点击\"保存“"
1869
 
 
1870
  msgid ""
1871
  "Name your project, and go through the basic setup. You’ll need to select "
1872
- "your use case, give a description and enter a name for the App as well."
1873
  msgstr ""
1874
 
1875
- #, fuzzy, php-format
1876
- #| msgid "Click on \"Save\""
1877
- msgid "Click \"<b>%s</b>\"!"
1878
- msgstr "点击\"保存“"
 
 
 
1879
 
1880
  #, php-format
1881
  msgid ""
@@ -1892,12 +1908,12 @@ msgstr ""
1892
 
1893
  #, fuzzy, php-format
1894
  #| msgid "Name your project and then click on the Create button"
1895
- msgid "Scroll down and click on the \"<b>%1$s</b>\" button at \"<b>%2$s</b>\"."
1896
  msgstr "命名您的项目,然后点击创建按钮"
1897
 
1898
  #, fuzzy, php-format
1899
  #| msgid "Click on the Create button"
1900
- msgid "Switch on the \"<b>%s</b>\" option."
1901
  msgstr "点击创建按钮"
1902
 
1903
  #, fuzzy, php-format
@@ -1910,25 +1926,40 @@ msgstr "将以下网址添加到“授权重定向网址”字段中:<b>%s</b>
1910
  #, php-format
1911
  msgid ""
1912
  "If you want to get the email address as well, then don’t forget to enable "
1913
- "the \"<b>%1$s</b>\" option. In this case you also need to fill the \"<b>"
1914
- "%2$s</b>\" and the \"<b>%3$s</b>\" fields with the corresponding URLs!"
1915
  msgstr ""
1916
 
1917
  #, fuzzy, php-format
1918
  #| msgid "Click on \"Save\""
1919
- msgid "Click on \"<b>%s</b>\"."
1920
  msgstr "点击\"保存“"
1921
 
1922
  #, php-format
1923
- msgid "Go back to %1$s and <b>Verify</b> your %2$s provider."
 
 
1924
  msgstr ""
1925
 
1926
- msgid "API Key"
 
 
1927
  msgstr ""
1928
 
1929
- msgid "API secret key"
 
 
 
 
 
 
1930
  msgstr ""
1931
 
 
 
 
 
 
1932
  msgid "Profile image size"
1933
  msgstr ""
1934
 
@@ -2088,11 +2119,11 @@ msgstr ""
2088
  msgid "Click \"<b>Edit</b>\"."
2089
  msgstr ""
2090
 
2091
- #, fuzzy
2092
  #| msgid ""
2093
  #| "Add the following URL to the \"Authorized Redirect URLs:\" field: <b>%s</"
2094
  #| "b>"
2095
- msgid "Add the following URL to the \"<b>Allowed Return URLs</b>\" field: "
2096
  msgstr "将以下网址添加到“授权重定向网址”字段中:<b>%s</b>"
2097
 
2098
  #, fuzzy, php-format
@@ -2189,13 +2220,6 @@ msgid ""
2189
  "probably: <b>%s</b>"
2190
  msgstr "将你网站的首页URL填写到 \"网站URL\",应该是 <b>%s</b>"
2191
 
2192
- #, fuzzy
2193
- #| msgid ""
2194
- #| "Add the following URL to the \"Authorized Redirect URLs:\" field: <b>%s</"
2195
- #| "b>"
2196
- msgid "Add the following URL to the \"<b>Return URLs</b>\" field:"
2197
- msgstr "将以下网址添加到“授权重定向网址”字段中:<b>%s</b>"
2198
-
2199
  msgid ""
2200
  "Finally press \"<b>Next</b>\" then \"<b>Done</b>\" and finally click on the "
2201
  "\"<b>Continue</b>\" and the \"<b>Save</b>\" button!"
@@ -2484,11 +2508,11 @@ msgid ""
2484
  "Settings section on the left side."
2485
  msgstr ""
2486
 
2487
- #, fuzzy
2488
  #| msgid ""
2489
  #| "Add the following URL to the \"Authorized Redirect URLs:\" field: <b>%s</"
2490
  #| "b>"
2491
- msgid "Add the following URL in the \"<b>Redirects</b>\" field:"
2492
  msgstr "将以下网址添加到“授权重定向网址”字段中:<b>%s</b>"
2493
 
2494
  #, fuzzy
@@ -2512,13 +2536,6 @@ msgid ""
2512
  "On the left side, click on the “<b>%1$s</b>” menu point in the Settings."
2513
  msgstr "点击左侧菜单的\"凭据\""
2514
 
2515
- #, fuzzy
2516
- #| msgid ""
2517
- #| "Add the following URL to the \"Authorized Redirect URLs:\" field: <b>%s</"
2518
- #| "b>"
2519
- msgid "Add the following URL to the \"<b>Redirects</b>\" field:"
2520
- msgstr "将以下网址添加到“授权重定向网址”字段中:<b>%s</b>"
2521
-
2522
  #, fuzzy
2523
  #| msgid "Click on \"Save Changes\""
2524
  msgid "Click the \"<b>Save Changes</b>\" button."
@@ -2574,11 +2591,6 @@ msgid ""
2574
  "section!"
2575
  msgstr "在认证菜单下找到认证密钥"
2576
 
2577
- #, fuzzy
2578
- #| msgid "Add the following URL to the \"Callback URL\" field: <b>%s</b>"
2579
- msgid "Add the following URL to the \"<b>Callback URL</b>\" field:"
2580
- msgstr "将以下网址添加到\"Callback URL\"中:<b>%s</b>"
2581
-
2582
  #, fuzzy
2583
  #| msgid "Click on \"Save Changes\""
2584
  msgid "Click on the \"<b>Save Changes</b>\" button."
@@ -2671,11 +2683,6 @@ msgstr "点击创建按钮"
2671
  msgid "Make sure the <b>Homepage URL</b> matches with: <b>%s</b>"
2672
  msgstr "将以下网址添加到“授权重定向网址”字段中:<b>%s</b>"
2673
 
2674
- #, fuzzy
2675
- #| msgid "Add the following URL to the \"Callback URL\" field: <b>%s</b>"
2676
- msgid "Add the following URL to the <b>Authorization callback URL</b> field:"
2677
- msgstr "将以下网址添加到\"Callback URL\"中:<b>%s</b>"
2678
-
2679
  #, fuzzy
2680
  #| msgid "Hit update to save the changes"
2681
  msgid "Press the <b>Update application</b> button to save the changes."
@@ -2749,9 +2756,9 @@ msgstr "导航 %s"
2749
  msgid "Select your %s App and click on the LINE Login section."
2750
  msgstr ""
2751
 
2752
- #, fuzzy
2753
  #| msgid "Add the following URL to the \"Callback URL\" field: <b>%s</b>"
2754
- msgid "Change your URL in the \"<b>Callback URL</b>\" field:"
2755
  msgstr "将以下网址添加到\"Callback URL\"中:<b>%s</b>"
2756
 
2757
  #, php-format
@@ -2887,13 +2894,6 @@ msgstr "从<b> LinkedIn </ b>取消关联帐户"
2887
  msgid "Click on your App and go to the \"<b>Auth</b>\" tab."
2888
  msgstr ""
2889
 
2890
- #, fuzzy
2891
- #| msgid ""
2892
- #| "Add the following URL to the \"Authorized Redirect URLs:\" field: <b>%s</"
2893
- #| "b>"
2894
- msgid "Add the following URL to the \"<b>Redirect URLs</b>\" field:"
2895
- msgstr "将以下网址添加到“授权重定向网址”字段中:<b>%s</b>"
2896
-
2897
  #, fuzzy
2898
  #| msgid "Hit update to save the changes"
2899
  msgid "Click on \"<b>Update</b>\" to save the changes"
@@ -2944,13 +2944,11 @@ msgstr ""
2944
  msgid "Click on the \"<b>Auth</b>\" tab."
2945
  msgstr "点击创建按钮"
2946
 
2947
- #, fuzzy
2948
  #| msgid ""
2949
  #| "Add the following URL to the \"Authorized Redirect URLs:\" field: <b>%s</"
2950
  #| "b>"
2951
- msgid ""
2952
- "Find \"<b>OAuth 2.0 settings</b>\" section and add the following URL to the "
2953
- "\"<b>Redirect URLs</b>\" field:"
2954
  msgstr "将以下网址添加到“授权重定向网址”字段中:<b>%s</b>"
2955
 
2956
  #, fuzzy
@@ -2999,13 +2997,6 @@ msgstr "点击应用程序ID为:%s"
2999
  msgid "Click on the link next to the Redirect URIs label."
3000
  msgstr "将以下网址添加到“授权重定向网址”字段中:<b>%s</b>"
3001
 
3002
- #, fuzzy
3003
- #| msgid ""
3004
- #| "Add the following URL to the \"Authorized Redirect URLs:\" field: <b>%s</"
3005
- #| "b>"
3006
- msgid "Add the following URL to the \"<b>Redirect URIs</b>\" field:"
3007
- msgstr "将以下网址添加到“授权重定向网址”字段中:<b>%s</b>"
3008
-
3009
  #, fuzzy, php-format
3010
  #| msgid "Log in with your %s credentials if you are not logged in"
3011
  msgid ""
@@ -3031,13 +3022,6 @@ msgid ""
3031
  "you can learn more."
3032
  msgstr ""
3033
 
3034
- #, fuzzy
3035
- #| msgid ""
3036
- #| "Add the following URL to the \"Authorized Redirect URLs:\" field: <b>%s</"
3037
- #| "b>"
3038
- msgid "Add the following URL to the \"<b>Redirect URI</b>\" field:"
3039
- msgstr "将以下网址添加到“授权重定向网址”字段中:<b>%s</b>"
3040
-
3041
  #, fuzzy
3042
  #| msgid "Click on the \"Create New App\" button"
3043
  msgid "Create your App with the \"<b>Register</b>\" button."
@@ -3168,13 +3152,6 @@ msgid ""
3168
  "b>\" heading and click \"<b>Show</b>\"."
3169
  msgstr ""
3170
 
3171
- #, fuzzy
3172
- #| msgid ""
3173
- #| "Add the following URL to the \"Authorized Redirect URLs:\" field: <b>%s</"
3174
- #| "b>"
3175
- msgid "Add the following URL to the \"<b>Live Return URL</b>\" field:"
3176
- msgstr "将以下网址添加到“授权重定向网址”字段中:<b>%s</b>"
3177
-
3178
  msgid "Click on \"Save\""
3179
  msgstr "点击\"保存“"
3180
 
@@ -3437,6 +3414,124 @@ msgstr "关联 <b>Facebook</b> 账号"
3437
  msgid "Unlink account from <b>Slack</b>"
3438
  msgstr "解除关联 <b>Facebook</b> 账号"
3439
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3440
  #, fuzzy
3441
  #| msgid "Click on the Create button"
3442
  msgid "Click on the \"<b>Manage</b>\" button next to the associated App."
@@ -3447,12 +3542,6 @@ msgstr "点击创建按钮"
3447
  msgid "Go to the \"<b>Settings</b>\" menu"
3448
  msgstr "去设置页."
3449
 
3450
- #, fuzzy
3451
- #| msgid ""
3452
- #| "Add the following URL to the \"Authorised redirect URIs\" field: <b>%s</b>"
3453
- msgid "Add the following URL to the \"<b>Authorized redirect URI</b>\" field: "
3454
- msgstr "将旁边的URL 填入\"Authorised redirect URIs\" 应该是 <b>%s</b>"
3455
-
3456
  #, fuzzy
3457
  #| msgid "Locate the yellow \"Create application\" button and click on it."
3458
  msgid "Locate the blue \"<b>Create app</b>\" button and click on it."
@@ -3590,13 +3679,6 @@ msgstr "取消关联 <b>WordPress.com</b>"
3590
  msgid "Click on the App which has its credentials associated with the plugin."
3591
  msgstr ""
3592
 
3593
- #, fuzzy
3594
- #| msgid ""
3595
- #| "Add the following URL to the \"Authorized Redirect URLs:\" field: <b>%s</"
3596
- #| "b>"
3597
- msgid "Add the following URL to the \"<b>Redirect URI(s)</b>\" field:"
3598
- msgstr "将以下网址添加到“授权重定向网址”字段中:<b>%s</b>"
3599
-
3600
  #, fuzzy
3601
  #| msgid "Click on the \"Create New App\" button"
3602
  msgid "Click on the \"<b>Create an App</b>\" button on the top right corner."
@@ -3664,6 +3746,113 @@ msgstr "或"
3664
  msgid "Social accounts"
3665
  msgstr "社交账号"
3666
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3667
  #, fuzzy, php-format
3668
  #~| msgid ""
3669
  #~| "Add the following URL to the \"Authorised redirect URIs\" field: <b>%s</"
@@ -3772,13 +3961,6 @@ msgstr "社交账号"
3772
  #~ msgid "Click on blue \"Create App ID\" button"
3773
  #~ msgstr "点击蓝色的\"创建应用\"按钮"
3774
 
3775
- #, fuzzy
3776
- #~| msgid "In the left sidebar, click on \"Facebook Login/Settings\""
3777
- #~ msgid ""
3778
- #~ "In the left sidebar under the Products section, click on \"Facebook Login"
3779
- #~ "\" and select Settings"
3780
- #~ msgstr "在左侧,点击\"Facebook 登录/设置\""
3781
-
3782
  #, fuzzy
3783
  #~| msgid "In the top of the left sidebar, click on \"Settings\""
3784
  #~ msgid ""
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: nextend-facebook-connect\n"
4
+ "POT-Creation-Date: 2022-02-14 08:32+0100\n"
5
+ "PO-Revision-Date: 2022-02-14 08:32+0100\n"
6
  "Last-Translator: \n"
7
  "Language-Team: nextend-facebook-connect\n"
8
  "Language: zh_CN\n"
880
  msgid "Debug mode"
881
  msgstr "调试模式"
882
 
883
+ msgid "Bypass cache on redirect"
884
+ msgstr ""
885
+
886
+ #, php-format
887
+ msgid ""
888
+ "Enabling this option will add a GET parameter to the URL where we redirect "
889
+ "after a successful registration or login with social login. %1$sLearn more"
890
+ "%2$s."
891
+ msgstr ""
892
+
893
  #, fuzzy
894
  #| msgid "Register"
895
  msgid "Page for register flow"
1393
  msgid "In the left sidebar, click on \"<b>Facebook Login > Settings</b>\""
1394
  msgstr "在左侧,点击\"Facebook 登录/设置\""
1395
 
1396
+ #, fuzzy, php-format
1397
  #| msgid ""
1398
+ #| "Add the following URL to the \"Authorized Redirect URLs:\" field: <b>%s</"
1399
  #| "b>"
1400
+ msgid "Add the following URL to the %s field:"
1401
+ msgstr "将以下网址添加到“授权重定向网址”字段中:<b>%s</b>"
 
1402
 
1403
  #, fuzzy
1404
  #| msgid "Click on \"Save Changes\""
1803
  "通过单击其名称选择您的应用程序,然后您可以从那里复制粘贴客户端ID和客户端密"
1804
  "钥。"
1805
 
1806
+ #, php-format
1807
+ msgid ""
1808
+ "Currently your App is in %1$s mode, so only limited number of people can use "
1809
+ "it. To allow this App for any user with a Google Account, click on the \"%2$s"
1810
+ "\" option on the left side, then click the \"%3$s\" button under the \"%4$s"
1811
+ "\" section, and press the \"%5$s\" button. "
1812
+ msgstr ""
1813
+
1814
  msgid "Client ID"
1815
  msgstr "客户端ID"
1816
 
1843
  msgid "Required API: %1$s"
1844
  msgstr "请求"
1845
 
1846
+ #, fuzzy, php-format
1847
+ #| msgid "In the left sidebar, click on \"Facebook Login/Settings\""
1848
+ msgid "On the left side, under the %s section click on the name of your App."
1849
+ msgstr "在左侧,点击\"Facebook 登录/设置\""
 
 
 
 
 
 
 
1850
 
1851
  #, fuzzy, php-format
1852
+ #| msgid "Click on the Create button"
1853
+ msgid "Click on the %1$s button at %2$s."
1854
+ msgstr "点击创建按钮"
 
 
1855
 
1856
  #, fuzzy, php-format
1857
  #| msgid "Make sure that the \"%1$s\" field contains %2$s"
1858
+ msgid "Make sure the %1$s field contains the following URL: %2$s"
 
1859
  msgstr "确保 \"%1$s\" 包含 %2$s"
1860
 
1861
+ #, fuzzy, php-format
1862
+ #| msgid "Click on \"Save\""
1863
+ msgid "Click on %s"
1864
+ msgstr "点击\"保存“"
1865
+
1866
  msgid ""
1867
  "If you don't have a developer account yet, please apply one by filling all "
1868
  "the required details! This is required for the next steps!"
1879
  msgid "Click on \"<b>%s</b>\"!"
1880
  msgstr "点击\"保存“"
1881
 
1882
+ #, php-format
1883
  msgid ""
1884
  "Name your project, and go through the basic setup. You’ll need to select "
1885
+ "your use case, give a description then click the %s button."
1886
  msgstr ""
1887
 
1888
+ #, php-format
1889
+ msgid "Choose the %1$s option for %2$s, then press %3$s!"
1890
+ msgstr ""
1891
+
1892
+ #, php-format
1893
+ msgid "Into the %1$s field, enter a name for your App, then press %2$s again!"
1894
+ msgstr ""
1895
 
1896
  #, php-format
1897
  msgid ""
1908
 
1909
  #, fuzzy, php-format
1910
  #| msgid "Name your project and then click on the Create button"
1911
+ msgid "Scroll down and click on the %1$s button at %2$s."
1912
  msgstr "命名您的项目,然后点击创建按钮"
1913
 
1914
  #, fuzzy, php-format
1915
  #| msgid "Click on the Create button"
1916
+ msgid "Switch on the %s option."
1917
  msgstr "点击创建按钮"
1918
 
1919
  #, fuzzy, php-format
1926
  #, php-format
1927
  msgid ""
1928
  "If you want to get the email address as well, then don’t forget to enable "
1929
+ "the %1$s option. In this case you also need to fill the \"<b>%2$s</b>\" and "
1930
+ "the \"<b>%3$s</b>\" fields with the corresponding URLs!"
1931
  msgstr ""
1932
 
1933
  #, fuzzy, php-format
1934
  #| msgid "Click on \"Save\""
1935
+ msgid "Click on %s."
1936
  msgstr "点击\"保存“"
1937
 
1938
  #, php-format
1939
+ msgid ""
1940
+ "On the left side, under the \"<b>%s</b>\" section click on the name of your "
1941
+ "Project ( that you created the App for )."
1942
  msgstr ""
1943
 
1944
+ #, php-format
1945
+ msgid ""
1946
+ "Click on the %1$s button, then fill the %2$s, %3$s, %4$s and %5$s forms."
1947
  msgstr ""
1948
 
1949
+ #, php-format
1950
+ msgid ""
1951
+ "Once your application for the Elevated access has been approved, go back to "
1952
+ "%1$s then <b>verify</b> and <b>enable</b> the %2$s provider!"
1953
+ msgstr ""
1954
+
1955
+ msgid "API Key"
1956
  msgstr ""
1957
 
1958
+ #, fuzzy
1959
+ #| msgid "App Secret"
1960
+ msgid "API Key Secret"
1961
+ msgstr "App 密匙"
1962
+
1963
  msgid "Profile image size"
1964
  msgstr ""
1965
 
2119
  msgid "Click \"<b>Edit</b>\"."
2120
  msgstr ""
2121
 
2122
+ #, fuzzy, php-format
2123
  #| msgid ""
2124
  #| "Add the following URL to the \"Authorized Redirect URLs:\" field: <b>%s</"
2125
  #| "b>"
2126
+ msgid "Add the following URL to the %s field: "
2127
  msgstr "将以下网址添加到“授权重定向网址”字段中:<b>%s</b>"
2128
 
2129
  #, fuzzy, php-format
2220
  "probably: <b>%s</b>"
2221
  msgstr "将你网站的首页URL填写到 \"网站URL\",应该是 <b>%s</b>"
2222
 
 
 
 
 
 
 
 
2223
  msgid ""
2224
  "Finally press \"<b>Next</b>\" then \"<b>Done</b>\" and finally click on the "
2225
  "\"<b>Continue</b>\" and the \"<b>Save</b>\" button!"
2508
  "Settings section on the left side."
2509
  msgstr ""
2510
 
2511
+ #, fuzzy, php-format
2512
  #| msgid ""
2513
  #| "Add the following URL to the \"Authorized Redirect URLs:\" field: <b>%s</"
2514
  #| "b>"
2515
+ msgid "Add the following URL in the %s field:"
2516
  msgstr "将以下网址添加到“授权重定向网址”字段中:<b>%s</b>"
2517
 
2518
  #, fuzzy
2536
  "On the left side, click on the “<b>%1$s</b>” menu point in the Settings."
2537
  msgstr "点击左侧菜单的\"凭据\""
2538
 
 
 
 
 
 
 
 
2539
  #, fuzzy
2540
  #| msgid "Click on \"Save Changes\""
2541
  msgid "Click the \"<b>Save Changes</b>\" button."
2591
  "section!"
2592
  msgstr "在认证菜单下找到认证密钥"
2593
 
 
 
 
 
 
2594
  #, fuzzy
2595
  #| msgid "Click on \"Save Changes\""
2596
  msgid "Click on the \"<b>Save Changes</b>\" button."
2683
  msgid "Make sure the <b>Homepage URL</b> matches with: <b>%s</b>"
2684
  msgstr "将以下网址添加到“授权重定向网址”字段中:<b>%s</b>"
2685
 
 
 
 
 
 
2686
  #, fuzzy
2687
  #| msgid "Hit update to save the changes"
2688
  msgid "Press the <b>Update application</b> button to save the changes."
2756
  msgid "Select your %s App and click on the LINE Login section."
2757
  msgstr ""
2758
 
2759
+ #, fuzzy, php-format
2760
  #| msgid "Add the following URL to the \"Callback URL\" field: <b>%s</b>"
2761
+ msgid "Change your URL in the %s field:"
2762
  msgstr "将以下网址添加到\"Callback URL\"中:<b>%s</b>"
2763
 
2764
  #, php-format
2894
  msgid "Click on your App and go to the \"<b>Auth</b>\" tab."
2895
  msgstr ""
2896
 
 
 
 
 
 
 
 
2897
  #, fuzzy
2898
  #| msgid "Hit update to save the changes"
2899
  msgid "Click on \"<b>Update</b>\" to save the changes"
2944
  msgid "Click on the \"<b>Auth</b>\" tab."
2945
  msgstr "点击创建按钮"
2946
 
2947
+ #, fuzzy, php-format
2948
  #| msgid ""
2949
  #| "Add the following URL to the \"Authorized Redirect URLs:\" field: <b>%s</"
2950
  #| "b>"
2951
+ msgid "Find the %1$s section and add the following URL to the %2$s field:"
 
 
2952
  msgstr "将以下网址添加到“授权重定向网址”字段中:<b>%s</b>"
2953
 
2954
  #, fuzzy
2997
  msgid "Click on the link next to the Redirect URIs label."
2998
  msgstr "将以下网址添加到“授权重定向网址”字段中:<b>%s</b>"
2999
 
 
 
 
 
 
 
 
3000
  #, fuzzy, php-format
3001
  #| msgid "Log in with your %s credentials if you are not logged in"
3002
  msgid ""
3022
  "you can learn more."
3023
  msgstr ""
3024
 
 
 
 
 
 
 
 
3025
  #, fuzzy
3026
  #| msgid "Click on the \"Create New App\" button"
3027
  msgid "Create your App with the \"<b>Register</b>\" button."
3152
  "b>\" heading and click \"<b>Show</b>\"."
3153
  msgstr ""
3154
 
 
 
 
 
 
 
 
3155
  msgid "Click on \"Save\""
3156
  msgstr "点击\"保存“"
3157
 
3414
  msgid "Unlink account from <b>Slack</b>"
3415
  msgstr "解除关联 <b>Facebook</b> 账号"
3416
 
3417
+ #, fuzzy, php-format
3418
+ #| msgid "Log in with your %s credentials if you are not logged in"
3419
+ msgid "Log in to your %s developer account, if you are not logged in yet."
3420
+ msgstr "如果您未登录,请使用您的 %s 凭据登录"
3421
+
3422
+ #, php-format
3423
+ msgid ""
3424
+ "On the top right corner click on %1$s then click on the name of that App "
3425
+ "that you used for the configuration."
3426
+ msgstr ""
3427
+
3428
+ #, fuzzy, php-format
3429
+ #| msgid "Click on the Create button"
3430
+ msgid "Scroll down to the %s section."
3431
+ msgstr "点击创建按钮"
3432
+
3433
+ #, fuzzy, php-format
3434
+ #| msgid "Enter your domain name to the App Domains"
3435
+ msgid ""
3436
+ "Enter your domain name into the %1$s field, if it is not added already: %2$s"
3437
+ msgstr "填写你的域名到 应用域名"
3438
+
3439
+ #, php-format
3440
+ msgid "Press the %s button."
3441
+ msgstr ""
3442
+
3443
+ msgid "Allow some time for these modifications to take effect."
3444
+ msgstr ""
3445
+
3446
+ #, php-format
3447
+ msgid ""
3448
+ "Log in to your %s developer account or register one if you don't have any!"
3449
+ msgstr ""
3450
+
3451
+ #, php-format
3452
+ msgid "On the top right corner click on %1$s then click on the %2$s option."
3453
+ msgstr ""
3454
+
3455
+ #, php-format
3456
+ msgid ""
3457
+ "A modal will appear where you need to select an image as %1$s and enter a "
3458
+ "name into the %2$s field."
3459
+ msgstr ""
3460
+
3461
+ #, php-format
3462
+ msgid "Press the %1$s button."
3463
+ msgstr ""
3464
+
3465
+ #, fuzzy, php-format
3466
+ #| msgid "Click on the Create button"
3467
+ msgid "For %1$s choose the %2$s option."
3468
+ msgstr "点击创建按钮"
3469
+
3470
+ #, php-format
3471
+ msgid "Under the %s section you should fill all of the required fields."
3472
+ msgstr ""
3473
+
3474
+ #, fuzzy, php-format
3475
+ #| msgid "Enter your domain name to the App Domains"
3476
+ msgid "Enter your domain name to the %1$s field, probably: %2$s"
3477
+ msgstr "填写你的域名到 应用域名"
3478
+
3479
+ #, php-format
3480
+ msgid ""
3481
+ "Under the %1$s section you need to make sure the option %2$s is checked."
3482
+ msgstr ""
3483
+
3484
+ #, php-format
3485
+ msgid ""
3486
+ "Into the %1$s field you should write a text, that describes what you are "
3487
+ "going to do with the App. In this particular case, you will use it to offer "
3488
+ "%2$s login option for your visitors."
3489
+ msgstr ""
3490
+
3491
+ #, php-format
3492
+ msgid ""
3493
+ "Wait until your App gets approved. This can take a couple of days. If you "
3494
+ "scroll up to the top of the page you will be able to find the %s below the "
3495
+ "name of your App."
3496
+ msgstr ""
3497
+
3498
+ #, php-format
3499
+ msgid ""
3500
+ "Once the %1$s says %2$s, the %3$s and %4$s will appear below the %1$s text. "
3501
+ "You will need these for the provider configuration."
3502
+ msgstr ""
3503
+
3504
+ #, php-format
3505
+ msgid ""
3506
+ "<b>WARNING:</b> The %1$s API can not return any email address or phone "
3507
+ "number! %2$sLearn more%3$s."
3508
+ msgstr ""
3509
+
3510
+ #, fuzzy
3511
+ #| msgid "Client ID"
3512
+ msgid "Client Key"
3513
+ msgstr "客户端ID"
3514
+
3515
+ #, fuzzy
3516
+ #| msgid "Continue with <b>LinkedIn</b>"
3517
+ msgid "Continue with <b>TikTok</b>"
3518
+ msgstr "通过 <b>LinkedIn</b>"
3519
+
3520
+ #, fuzzy
3521
+ #| msgid "Continue with <b>LinkedIn</b>"
3522
+ msgid "Sign up with <b>TikTok</b>"
3523
+ msgstr "通过 <b>LinkedIn</b>"
3524
+
3525
+ #, fuzzy
3526
+ #| msgid "Link account with <b>LinkedIn</b>"
3527
+ msgid "Link account with <b>TikTok</b>"
3528
+ msgstr "关联 <b>LinkedIn</b> 账号"
3529
+
3530
+ #, fuzzy
3531
+ #| msgid "Unlink account from <b>LinkedIn</b>"
3532
+ msgid "Unlink account from <b>TikTok</b>"
3533
+ msgstr "从<b> LinkedIn </ b>取消关联帐户"
3534
+
3535
  #, fuzzy
3536
  #| msgid "Click on the Create button"
3537
  msgid "Click on the \"<b>Manage</b>\" button next to the associated App."
3542
  msgid "Go to the \"<b>Settings</b>\" menu"
3543
  msgstr "去设置页."
3544
 
 
 
 
 
 
 
3545
  #, fuzzy
3546
  #| msgid "Locate the yellow \"Create application\" button and click on it."
3547
  msgid "Locate the blue \"<b>Create app</b>\" button and click on it."
3679
  msgid "Click on the App which has its credentials associated with the plugin."
3680
  msgstr ""
3681
 
 
 
 
 
 
 
 
3682
  #, fuzzy
3683
  #| msgid "Click on the \"Create New App\" button"
3684
  msgid "Click on the \"<b>Create an App</b>\" button on the top right corner."
3746
  msgid "Social accounts"
3747
  msgstr "社交账号"
3748
 
3749
+ #, fuzzy
3750
+ #~| msgid ""
3751
+ #~| "Add the following URL to the \"Valid OAuth redirect URIs\" field: <b>%s</"
3752
+ #~| "b>"
3753
+ #~ msgid ""
3754
+ #~ "Add the following URL to the \"<b>Valid OAuth redirect URIs</b>\" field:"
3755
+ #~ msgstr "请将下面的URL填入\"Valid OAuth redirect URIs\" : <b>%s</b>"
3756
+
3757
+ #, fuzzy
3758
+ #~| msgid "Name your project and then click on the Create button"
3759
+ #~ msgid ""
3760
+ #~ "Find your App and click on the <b>App settings</b> icon. (The one that "
3761
+ #~ "looks like a gear.)"
3762
+ #~ msgstr "命名您的项目,然后点击创建按钮"
3763
+
3764
+ #, fuzzy
3765
+ #~| msgid "Click on the \"Create New App\" button"
3766
+ #~ msgid "Click on the <b>Edit</b> button at <b>Authentication settings</b>."
3767
+ #~ msgstr "点击\"创建新应用\"按钮"
3768
+
3769
+ #, fuzzy, php-format
3770
+ #~| msgid "Click on \"Save\""
3771
+ #~ msgid "Click \"<b>%s</b>\"!"
3772
+ #~ msgstr "点击\"保存“"
3773
+
3774
+ #, fuzzy
3775
+ #~| msgid ""
3776
+ #~| "Add the following URL to the \"Authorized Redirect URLs:\" field: <b>%s</"
3777
+ #~| "b>"
3778
+ #~ msgid "Add the following URL to the \"<b>Allowed Return URLs</b>\" field: "
3779
+ #~ msgstr "将以下网址添加到“授权重定向网址”字段中:<b>%s</b>"
3780
+
3781
+ #, fuzzy
3782
+ #~| msgid ""
3783
+ #~| "Add the following URL to the \"Authorized Redirect URLs:\" field: <b>%s</"
3784
+ #~| "b>"
3785
+ #~ msgid "Add the following URL to the \"<b>Return URLs</b>\" field:"
3786
+ #~ msgstr "将以下网址添加到“授权重定向网址”字段中:<b>%s</b>"
3787
+
3788
+ #, fuzzy
3789
+ #~| msgid ""
3790
+ #~| "Add the following URL to the \"Authorized Redirect URLs:\" field: <b>%s</"
3791
+ #~| "b>"
3792
+ #~ msgid "Add the following URL in the \"<b>Redirects</b>\" field:"
3793
+ #~ msgstr "将以下网址添加到“授权重定向网址”字段中:<b>%s</b>"
3794
+
3795
+ #, fuzzy
3796
+ #~| msgid ""
3797
+ #~| "Add the following URL to the \"Authorized Redirect URLs:\" field: <b>%s</"
3798
+ #~| "b>"
3799
+ #~ msgid "Add the following URL to the \"<b>Redirects</b>\" field:"
3800
+ #~ msgstr "将以下网址添加到“授权重定向网址”字段中:<b>%s</b>"
3801
+
3802
+ #, fuzzy
3803
+ #~| msgid "Add the following URL to the \"Callback URL\" field: <b>%s</b>"
3804
+ #~ msgid "Add the following URL to the \"<b>Callback URL</b>\" field:"
3805
+ #~ msgstr "将以下网址添加到\"Callback URL\"中:<b>%s</b>"
3806
+
3807
+ #, fuzzy
3808
+ #~| msgid "Add the following URL to the \"Callback URL\" field: <b>%s</b>"
3809
+ #~ msgid ""
3810
+ #~ "Add the following URL to the <b>Authorization callback URL</b> field:"
3811
+ #~ msgstr "将以下网址添加到\"Callback URL\"中:<b>%s</b>"
3812
+
3813
+ #, fuzzy
3814
+ #~| msgid ""
3815
+ #~| "Add the following URL to the \"Authorized Redirect URLs:\" field: <b>%s</"
3816
+ #~| "b>"
3817
+ #~ msgid "Add the following URL to the \"<b>Redirect URLs</b>\" field:"
3818
+ #~ msgstr "将以下网址添加到“授权重定向网址”字段中:<b>%s</b>"
3819
+
3820
+ #, fuzzy
3821
+ #~| msgid ""
3822
+ #~| "Add the following URL to the \"Authorized Redirect URLs:\" field: <b>%s</"
3823
+ #~| "b>"
3824
+ #~ msgid "Add the following URL to the \"<b>Redirect URIs</b>\" field:"
3825
+ #~ msgstr "将以下网址添加到“授权重定向网址”字段中:<b>%s</b>"
3826
+
3827
+ #, fuzzy
3828
+ #~| msgid ""
3829
+ #~| "Add the following URL to the \"Authorized Redirect URLs:\" field: <b>%s</"
3830
+ #~| "b>"
3831
+ #~ msgid "Add the following URL to the \"<b>Redirect URI</b>\" field:"
3832
+ #~ msgstr "将以下网址添加到“授权重定向网址”字段中:<b>%s</b>"
3833
+
3834
+ #, fuzzy
3835
+ #~| msgid ""
3836
+ #~| "Add the following URL to the \"Authorized Redirect URLs:\" field: <b>%s</"
3837
+ #~| "b>"
3838
+ #~ msgid "Add the following URL to the \"<b>Live Return URL</b>\" field:"
3839
+ #~ msgstr "将以下网址添加到“授权重定向网址”字段中:<b>%s</b>"
3840
+
3841
+ #, fuzzy
3842
+ #~| msgid ""
3843
+ #~| "Add the following URL to the \"Authorised redirect URIs\" field: <b>%s</"
3844
+ #~| "b>"
3845
+ #~ msgid ""
3846
+ #~ "Add the following URL to the \"<b>Authorized redirect URI</b>\" field: "
3847
+ #~ msgstr "将旁边的URL 填入\"Authorised redirect URIs\" 应该是 <b>%s</b>"
3848
+
3849
+ #, fuzzy
3850
+ #~| msgid ""
3851
+ #~| "Add the following URL to the \"Authorized Redirect URLs:\" field: <b>%s</"
3852
+ #~| "b>"
3853
+ #~ msgid "Add the following URL to the \"<b>Redirect URI(s)</b>\" field:"
3854
+ #~ msgstr "将以下网址添加到“授权重定向网址”字段中:<b>%s</b>"
3855
+
3856
  #, fuzzy, php-format
3857
  #~| msgid ""
3858
  #~| "Add the following URL to the \"Authorised redirect URIs\" field: <b>%s</"
3961
  #~ msgid "Click on blue \"Create App ID\" button"
3962
  #~ msgstr "点击蓝色的\"创建应用\"按钮"
3963
 
 
 
 
 
 
 
 
3964
  #, fuzzy
3965
  #~| msgid "In the top of the left sidebar, click on \"Settings\""
3966
  #~ msgid ""
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-11-15 18:50+0100\n"
6
  "PO-Revision-Date: 2020-06-29 13:58+0200\n"
7
  "Last-Translator: \n"
8
  "Language-Team: nextend-facebook-connect\n"
@@ -778,6 +778,16 @@ msgstr ""
778
  msgid "Debug mode"
779
  msgstr ""
780
 
 
 
 
 
 
 
 
 
 
 
781
  msgid "Page for register flow"
782
  msgstr ""
783
 
@@ -1216,9 +1226,8 @@ msgid ""
1216
  "In the left sidebar, click on \"<b>Facebook Login > Settings</b>\""
1217
  msgstr ""
1218
 
1219
- msgid ""
1220
- "Add the following URL to the \"<b>Valid OAuth redirect URIs</b>\" "
1221
- "field:"
1222
  msgstr ""
1223
 
1224
  msgid "Click on \"<b>Save Changes</b>\""
@@ -1568,6 +1577,14 @@ msgid ""
1568
  "\"<b>%3$s</b>\" from there."
1569
  msgstr ""
1570
 
 
 
 
 
 
 
 
 
1571
  msgid "Client ID"
1572
  msgstr ""
1573
 
@@ -1598,23 +1615,21 @@ msgstr ""
1598
  msgid "Required API: %1$s"
1599
  msgstr ""
1600
 
 
1601
  msgid ""
1602
- "Find your App and click on the <b>App settings</b> icon. (The one that "
1603
- "looks like a gear.)"
1604
  msgstr ""
1605
 
1606
- msgid ""
1607
- "Click on the <b>Edit</b> button at <b>Authentication settings</b>."
1608
  msgstr ""
1609
 
1610
  #, php-format
1611
- msgid "Add the following URL to the \"<b>%1$s</b>\" field:"
1612
  msgstr ""
1613
 
1614
  #, php-format
1615
- msgid ""
1616
- "Make sure the \"<b>%1$s</b>\" field contains the following URL: <b>"
1617
- "%2$s</b>"
1618
  msgstr ""
1619
 
1620
  msgid ""
@@ -1632,14 +1647,19 @@ msgstr ""
1632
  msgid "Click on \"<b>%s</b>\"!"
1633
  msgstr ""
1634
 
 
1635
  msgid ""
1636
  "Name your project, and go through the basic setup. You’ll need to "
1637
- "select your use case, give a description and enter a name for the App "
1638
- "as well."
1639
  msgstr ""
1640
 
1641
  #, php-format
1642
- msgid "Click \"<b>%s</b>\"!"
 
 
 
 
 
1643
  msgstr ""
1644
 
1645
  #, php-format
@@ -1656,12 +1676,11 @@ msgid ""
1656
  msgstr ""
1657
 
1658
  #, php-format
1659
- msgid ""
1660
- "Scroll down and click on the \"<b>%1$s</b>\" button at \"<b>%2$s</b>\"."
1661
  msgstr ""
1662
 
1663
  #, php-format
1664
- msgid "Switch on the \"<b>%s</b>\" option."
1665
  msgstr ""
1666
 
1667
  #, php-format
@@ -1671,23 +1690,36 @@ msgstr ""
1671
  #, php-format
1672
  msgid ""
1673
  "If you want to get the email address as well, then don’t forget to "
1674
- "enable the \"<b>%1$s</b>\" option. In this case you also need to fill "
1675
- "the \"<b>%2$s</b>\" and the \"<b>%3$s</b>\" fields with the "
1676
- "corresponding URLs!"
 
 
 
1677
  msgstr ""
1678
 
1679
  #, php-format
1680
- msgid "Click on \"<b>%s</b>\"."
 
 
 
 
 
 
 
 
1681
  msgstr ""
1682
 
1683
  #, php-format
1684
- msgid "Go back to %1$s and <b>Verify</b> your %2$s provider."
 
 
1685
  msgstr ""
1686
 
1687
  msgid "API Key"
1688
  msgstr ""
1689
 
1690
- msgid "API secret key"
1691
  msgstr ""
1692
 
1693
  msgid "Profile image size"
@@ -1830,8 +1862,8 @@ msgstr ""
1830
  msgid "Click \"<b>Edit</b>\"."
1831
  msgstr ""
1832
 
1833
- msgid ""
1834
- "Add the following URL to the \"<b>Allowed Return URLs</b>\" field: "
1835
  msgstr ""
1836
 
1837
  #, php-format
@@ -1901,9 +1933,6 @@ msgid ""
1901
  "probably: <b>%s</b>"
1902
  msgstr ""
1903
 
1904
- msgid "Add the following URL to the \"<b>Return URLs</b>\" field:"
1905
- msgstr ""
1906
-
1907
  msgid ""
1908
  "Finally press \"<b>Next</b>\" then \"<b>Done</b>\" and finally click "
1909
  "on the \"<b>Continue</b>\" and the \"<b>Save</b>\" button!"
@@ -2184,7 +2213,8 @@ msgid ""
2184
  "Settings section on the left side."
2185
  msgstr ""
2186
 
2187
- msgid "Add the following URL in the \"<b>Redirects</b>\" field:"
 
2188
  msgstr ""
2189
 
2190
  msgid "Click the \"<b>New Application</b>\" button."
@@ -2205,9 +2235,6 @@ msgid ""
2205
  "Settings."
2206
  msgstr ""
2207
 
2208
- msgid "Add the following URL to the \"<b>Redirects</b>\" field:"
2209
- msgstr ""
2210
-
2211
  msgid "Click the \"<b>Save Changes</b>\" button."
2212
  msgstr ""
2213
 
@@ -2243,9 +2270,6 @@ msgid ""
2243
  "Authentication section!"
2244
  msgstr ""
2245
 
2246
- msgid "Add the following URL to the \"<b>Callback URL</b>\" field:"
2247
- msgstr ""
2248
-
2249
  msgid "Click on the \"<b>Save Changes</b>\" button."
2250
  msgstr ""
2251
 
@@ -2312,10 +2336,6 @@ msgstr ""
2312
  msgid "Make sure the <b>Homepage URL</b> matches with: <b>%s</b>"
2313
  msgstr ""
2314
 
2315
- msgid ""
2316
- "Add the following URL to the <b>Authorization callback URL</b> field:"
2317
- msgstr ""
2318
-
2319
  msgid "Press the <b>Update application</b> button to save the changes."
2320
  msgstr ""
2321
 
@@ -2375,7 +2395,8 @@ msgstr ""
2375
  msgid "Select your %s App and click on the LINE Login section."
2376
  msgstr ""
2377
 
2378
- msgid "Change your URL in the \"<b>Callback URL</b>\" field:"
 
2379
  msgstr ""
2380
 
2381
  #, php-format
@@ -2487,9 +2508,6 @@ msgstr ""
2487
  msgid "Click on your App and go to the \"<b>Auth</b>\" tab."
2488
  msgstr ""
2489
 
2490
- msgid "Add the following URL to the \"<b>Redirect URLs</b>\" field:"
2491
- msgstr ""
2492
-
2493
  msgid "Click on \"<b>Update</b>\" to save the changes"
2494
  msgstr ""
2495
 
@@ -2533,9 +2551,9 @@ msgstr ""
2533
  msgid "Click on the \"<b>Auth</b>\" tab."
2534
  msgstr ""
2535
 
 
2536
  msgid ""
2537
- "Find \"<b>OAuth 2.0 settings</b>\" section and add the following URL "
2538
- "to the \"<b>Redirect URLs</b>\" field:"
2539
  msgstr ""
2540
 
2541
  msgid ""
@@ -2570,9 +2588,6 @@ msgstr ""
2570
  msgid "Click on the link next to the Redirect URIs label."
2571
  msgstr ""
2572
 
2573
- msgid "Add the following URL to the \"<b>Redirect URIs</b>\" field:"
2574
- msgstr ""
2575
-
2576
  #, php-format
2577
  msgid ""
2578
  "Log in with your %s credentials if you are not logged in or create a "
@@ -2593,9 +2608,6 @@ msgid ""
2593
  "then %1$shere%2$s you can learn more."
2594
  msgstr ""
2595
 
2596
- msgid "Add the following URL to the \"<b>Redirect URI</b>\" field:"
2597
- msgstr ""
2598
-
2599
  msgid "Create your App with the \"<b>Register</b>\" button."
2600
  msgstr ""
2601
 
@@ -2701,9 +2713,6 @@ msgid ""
2701
  "URL</b>\" heading and click \"<b>Show</b>\"."
2702
  msgstr ""
2703
 
2704
- msgid "Add the following URL to the \"<b>Live Return URL</b>\" field:"
2705
- msgstr ""
2706
-
2707
  msgid "Click on \"Save\""
2708
  msgstr ""
2709
 
@@ -2913,14 +2922,118 @@ msgstr ""
2913
  msgid "Unlink account from <b>Slack</b>"
2914
  msgstr ""
2915
 
2916
- msgid "Click on the \"<b>Manage</b>\" button next to the associated App."
 
 
2917
  msgstr ""
2918
 
2919
- msgid "Go to the \"<b>Settings</b>\" menu"
 
 
 
 
 
 
 
 
 
 
 
 
 
2920
  msgstr ""
2921
 
 
 
 
 
 
 
 
 
2922
  msgid ""
2923
- "Add the following URL to the \"<b>Authorized redirect URI</b>\" field: "
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2924
  msgstr ""
2925
 
2926
  msgid "Locate the blue \"<b>Create app</b>\" button and click on it."
@@ -3031,9 +3144,6 @@ msgid ""
3031
  "Click on the App which has its credentials associated with the plugin."
3032
  msgstr ""
3033
 
3034
- msgid "Add the following URL to the \"<b>Redirect URI(s)</b>\" field:"
3035
- msgstr ""
3036
-
3037
  msgid ""
3038
  "Click on the \"<b>Create an App</b>\" button on the top right corner."
3039
  msgstr ""
2
  msgid ""
3
  msgstr ""
4
  "Project-Id-Version: nextend-facebook-connect\n"
5
+ "POT-Creation-Date: 2022-02-14 08:31+0100\n"
6
  "PO-Revision-Date: 2020-06-29 13:58+0200\n"
7
  "Last-Translator: \n"
8
  "Language-Team: nextend-facebook-connect\n"
778
  msgid "Debug mode"
779
  msgstr ""
780
 
781
+ msgid "Bypass cache on redirect"
782
+ msgstr ""
783
+
784
+ #, php-format
785
+ msgid ""
786
+ "Enabling this option will add a GET parameter to the URL where we "
787
+ "redirect after a successful registration or login with social login. "
788
+ "%1$sLearn more%2$s."
789
+ msgstr ""
790
+
791
  msgid "Page for register flow"
792
  msgstr ""
793
 
1226
  "In the left sidebar, click on \"<b>Facebook Login > Settings</b>\""
1227
  msgstr ""
1228
 
1229
+ #, php-format
1230
+ msgid "Add the following URL to the %s field:"
 
1231
  msgstr ""
1232
 
1233
  msgid "Click on \"<b>Save Changes</b>\""
1577
  "\"<b>%3$s</b>\" from there."
1578
  msgstr ""
1579
 
1580
+ #, php-format
1581
+ msgid ""
1582
+ "Currently your App is in %1$s mode, so only limited number of people "
1583
+ "can use it. To allow this App for any user with a Google Account, "
1584
+ "click on the \"%2$s\" option on the left side, then click the \"%3$s\" "
1585
+ "button under the \"%4$s\" section, and press the \"%5$s\" button. "
1586
+ msgstr ""
1587
+
1588
  msgid "Client ID"
1589
  msgstr ""
1590
 
1615
  msgid "Required API: %1$s"
1616
  msgstr ""
1617
 
1618
+ #, php-format
1619
  msgid ""
1620
+ "On the left side, under the %s section click on the name of your App."
 
1621
  msgstr ""
1622
 
1623
+ #, php-format
1624
+ msgid "Click on the %1$s button at %2$s."
1625
  msgstr ""
1626
 
1627
  #, php-format
1628
+ msgid "Make sure the %1$s field contains the following URL: %2$s"
1629
  msgstr ""
1630
 
1631
  #, php-format
1632
+ msgid "Click on %s"
 
 
1633
  msgstr ""
1634
 
1635
  msgid ""
1647
  msgid "Click on \"<b>%s</b>\"!"
1648
  msgstr ""
1649
 
1650
+ #, php-format
1651
  msgid ""
1652
  "Name your project, and go through the basic setup. You’ll need to "
1653
+ "select your use case, give a description then click the %s button."
 
1654
  msgstr ""
1655
 
1656
  #, php-format
1657
+ msgid "Choose the %1$s option for %2$s, then press %3$s!"
1658
+ msgstr ""
1659
+
1660
+ #, php-format
1661
+ msgid ""
1662
+ "Into the %1$s field, enter a name for your App, then press %2$s again!"
1663
  msgstr ""
1664
 
1665
  #, php-format
1676
  msgstr ""
1677
 
1678
  #, php-format
1679
+ msgid "Scroll down and click on the %1$s button at %2$s."
 
1680
  msgstr ""
1681
 
1682
  #, php-format
1683
+ msgid "Switch on the %s option."
1684
  msgstr ""
1685
 
1686
  #, php-format
1690
  #, php-format
1691
  msgid ""
1692
  "If you want to get the email address as well, then don’t forget to "
1693
+ "enable the %1$s option. In this case you also need to fill the \"<b>"
1694
+ "%2$s</b>\" and the \"<b>%3$s</b>\" fields with the corresponding URLs!"
1695
+ msgstr ""
1696
+
1697
+ #, php-format
1698
+ msgid "Click on %s."
1699
  msgstr ""
1700
 
1701
  #, php-format
1702
+ msgid ""
1703
+ "On the left side, under the \"<b>%s</b>\" section click on the name of "
1704
+ "your Project ( that you created the App for )."
1705
+ msgstr ""
1706
+
1707
+ #, php-format
1708
+ msgid ""
1709
+ "Click on the %1$s button, then fill the %2$s, %3$s, %4$s and %5$s "
1710
+ "forms."
1711
  msgstr ""
1712
 
1713
  #, php-format
1714
+ msgid ""
1715
+ "Once your application for the Elevated access has been approved, go "
1716
+ "back to %1$s then <b>verify</b> and <b>enable</b> the %2$s provider!"
1717
  msgstr ""
1718
 
1719
  msgid "API Key"
1720
  msgstr ""
1721
 
1722
+ msgid "API Key Secret"
1723
  msgstr ""
1724
 
1725
  msgid "Profile image size"
1862
  msgid "Click \"<b>Edit</b>\"."
1863
  msgstr ""
1864
 
1865
+ #, php-format
1866
+ msgid "Add the following URL to the %s field: "
1867
  msgstr ""
1868
 
1869
  #, php-format
1933
  "probably: <b>%s</b>"
1934
  msgstr ""
1935
 
 
 
 
1936
  msgid ""
1937
  "Finally press \"<b>Next</b>\" then \"<b>Done</b>\" and finally click "
1938
  "on the \"<b>Continue</b>\" and the \"<b>Save</b>\" button!"
2213
  "Settings section on the left side."
2214
  msgstr ""
2215
 
2216
+ #, php-format
2217
+ msgid "Add the following URL in the %s field:"
2218
  msgstr ""
2219
 
2220
  msgid "Click the \"<b>New Application</b>\" button."
2235
  "Settings."
2236
  msgstr ""
2237
 
 
 
 
2238
  msgid "Click the \"<b>Save Changes</b>\" button."
2239
  msgstr ""
2240
 
2270
  "Authentication section!"
2271
  msgstr ""
2272
 
 
 
 
2273
  msgid "Click on the \"<b>Save Changes</b>\" button."
2274
  msgstr ""
2275
 
2336
  msgid "Make sure the <b>Homepage URL</b> matches with: <b>%s</b>"
2337
  msgstr ""
2338
 
 
 
 
 
2339
  msgid "Press the <b>Update application</b> button to save the changes."
2340
  msgstr ""
2341
 
2395
  msgid "Select your %s App and click on the LINE Login section."
2396
  msgstr ""
2397
 
2398
+ #, php-format
2399
+ msgid "Change your URL in the %s field:"
2400
  msgstr ""
2401
 
2402
  #, php-format
2508
  msgid "Click on your App and go to the \"<b>Auth</b>\" tab."
2509
  msgstr ""
2510
 
 
 
 
2511
  msgid "Click on \"<b>Update</b>\" to save the changes"
2512
  msgstr ""
2513
 
2551
  msgid "Click on the \"<b>Auth</b>\" tab."
2552
  msgstr ""
2553
 
2554
+ #, php-format
2555
  msgid ""
2556
+ "Find the %1$s section and add the following URL to the %2$s field:"
 
2557
  msgstr ""
2558
 
2559
  msgid ""
2588
  msgid "Click on the link next to the Redirect URIs label."
2589
  msgstr ""
2590
 
 
 
 
2591
  #, php-format
2592
  msgid ""
2593
  "Log in with your %s credentials if you are not logged in or create a "
2608
  "then %1$shere%2$s you can learn more."
2609
  msgstr ""
2610
 
 
 
 
2611
  msgid "Create your App with the \"<b>Register</b>\" button."
2612
  msgstr ""
2613
 
2713
  "URL</b>\" heading and click \"<b>Show</b>\"."
2714
  msgstr ""
2715
 
 
 
 
2716
  msgid "Click on \"Save\""
2717
  msgstr ""
2718
 
2922
  msgid "Unlink account from <b>Slack</b>"
2923
  msgstr ""
2924
 
2925
+ #, php-format
2926
+ msgid ""
2927
+ "Log in to your %s developer account, if you are not logged in yet."
2928
  msgstr ""
2929
 
2930
+ #, php-format
2931
+ msgid ""
2932
+ "On the top right corner click on %1$s then click on the name of that "
2933
+ "App that you used for the configuration."
2934
+ msgstr ""
2935
+
2936
+ #, php-format
2937
+ msgid "Scroll down to the %s section."
2938
+ msgstr ""
2939
+
2940
+ #, php-format
2941
+ msgid ""
2942
+ "Enter your domain name into the %1$s field, if it is not added "
2943
+ "already: %2$s"
2944
  msgstr ""
2945
 
2946
+ #, php-format
2947
+ msgid "Press the %s button."
2948
+ msgstr ""
2949
+
2950
+ msgid "Allow some time for these modifications to take effect."
2951
+ msgstr ""
2952
+
2953
+ #, php-format
2954
  msgid ""
2955
+ "Log in to your %s developer account or register one if you don't have "
2956
+ "any!"
2957
+ msgstr ""
2958
+
2959
+ #, php-format
2960
+ msgid ""
2961
+ "On the top right corner click on %1$s then click on the %2$s option."
2962
+ msgstr ""
2963
+
2964
+ #, php-format
2965
+ msgid ""
2966
+ "A modal will appear where you need to select an image as %1$s and "
2967
+ "enter a name into the %2$s field."
2968
+ msgstr ""
2969
+
2970
+ #, php-format
2971
+ msgid "Press the %1$s button."
2972
+ msgstr ""
2973
+
2974
+ #, php-format
2975
+ msgid "For %1$s choose the %2$s option."
2976
+ msgstr ""
2977
+
2978
+ #, php-format
2979
+ msgid "Under the %s section you should fill all of the required fields."
2980
+ msgstr ""
2981
+
2982
+ #, php-format
2983
+ msgid "Enter your domain name to the %1$s field, probably: %2$s"
2984
+ msgstr ""
2985
+
2986
+ #, php-format
2987
+ msgid ""
2988
+ "Under the %1$s section you need to make sure the option %2$s is "
2989
+ "checked."
2990
+ msgstr ""
2991
+
2992
+ #, php-format
2993
+ msgid ""
2994
+ "Into the %1$s field you should write a text, that describes what you "
2995
+ "are going to do with the App. In this particular case, you will use it "
2996
+ "to offer %2$s login option for your visitors."
2997
+ msgstr ""
2998
+
2999
+ #, php-format
3000
+ msgid ""
3001
+ "Wait until your App gets approved. This can take a couple of days. If "
3002
+ "you scroll up to the top of the page you will be able to find the %s "
3003
+ "below the name of your App."
3004
+ msgstr ""
3005
+
3006
+ #, php-format
3007
+ msgid ""
3008
+ "Once the %1$s says %2$s, the %3$s and %4$s will appear below the %1$s "
3009
+ "text. You will need these for the provider configuration."
3010
+ msgstr ""
3011
+
3012
+ #, php-format
3013
+ msgid ""
3014
+ "<b>WARNING:</b> The %1$s API can not return any email address or phone "
3015
+ "number! %2$sLearn more%3$s."
3016
+ msgstr ""
3017
+
3018
+ msgid "Client Key"
3019
+ msgstr ""
3020
+
3021
+ msgid "Continue with <b>TikTok</b>"
3022
+ msgstr ""
3023
+
3024
+ msgid "Sign up with <b>TikTok</b>"
3025
+ msgstr ""
3026
+
3027
+ msgid "Link account with <b>TikTok</b>"
3028
+ msgstr ""
3029
+
3030
+ msgid "Unlink account from <b>TikTok</b>"
3031
+ msgstr ""
3032
+
3033
+ msgid "Click on the \"<b>Manage</b>\" button next to the associated App."
3034
+ msgstr ""
3035
+
3036
+ msgid "Go to the \"<b>Settings</b>\" menu"
3037
  msgstr ""
3038
 
3039
  msgid "Locate the blue \"<b>Create app</b>\" button and click on it."
3144
  "Click on the App which has its credentials associated with the plugin."
3145
  msgstr ""
3146
 
 
 
 
3147
  msgid ""
3148
  "Click on the \"<b>Create an App</b>\" button on the top right corner."
3149
  msgstr ""
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.3
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.4
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.3';
23
 
24
- public static $nslPROMinVersion = '3.1.3';
25
 
26
  public static $proxyPage = false;
27
 
@@ -214,6 +214,7 @@ class NextendSocialLogin {
214
  'memberpress_account_details' => 'after',
215
  'registration_notification_notify' => '0',
216
  'debug' => '0',
 
217
  'show_linked_providers' => '0',
218
  'login_restriction' => '0',
219
  'avatars_in_all_media' => '0',
@@ -284,7 +285,11 @@ class NextendSocialLogin {
284
  }
285
 
286
  update_option('nsl-version', self::$version, true);
287
- wp_redirect(set_url_scheme('http://' . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI']));
 
 
 
 
288
  exit;
289
  } else if (isset($_REQUEST['repairnsl']) && current_user_can('manage_options') && check_admin_referer('repairnsl')) {
290
  self::install();
@@ -418,7 +423,7 @@ class NextendSocialLogin {
418
  if (!empty($_REQUEST['loginSocial'])) {
419
  global $HideMyWP;
420
  $loginPath = '/wp-login.php';
421
- if (is_object($HideMyWP) && substr($_SERVER['PHP_SELF'], -1 * strlen($loginPath))) {
422
  $login_query = $HideMyWP->opt('login_query');
423
  if (!$login_query) {
424
  $login_query = 'hide_my_wp';
@@ -1044,8 +1049,11 @@ class NextendSocialLogin {
1044
  $ret = '<div class="nsl-container ' . self::$styles[$style]['container'] . '"' . ($style !== 'fullwidth' ? ' data-align="' . esc_attr($align) . '"' : '') . '>' . $heading . $buttons . '</div>';
1045
  if (defined('DOING_AJAX') && DOING_AJAX) {
1046
  $id = md5(uniqid('nsl-ajax-'));
1047
- $ret = '<div id="' . $id . '">' . $ret . '</div><script>window._nslDOMReady(function(){var socialButtonContainer=document.getElementById("' . $id . '");if(socialButtonContainer){var socialButtons=socialButtonContainer.querySelectorAll("a");socialButtons.forEach(function(el,i){var href=el.getAttribute("href");if(href.indexOf("?")===-1){href+="?"}else{href+="&"}
 
 
1048
  el.setAttribute("href",href+"redirect="+encodeURIComponent(window.location.href))})}});</script>';
 
1049
  }
1050
 
1051
  return $ret;
@@ -1057,7 +1065,7 @@ el.setAttribute("href",href+"redirect="+encodeURIComponent(window.location.href)
1057
 
1058
  public static function getCurrentPageURL() {
1059
 
1060
- if (defined('DOING_AJAX') && DOING_AJAX) {
1061
  return false;
1062
  }
1063
 
@@ -1410,6 +1418,28 @@ el.setAttribute("href",href+"redirect="+encodeURIComponent(window.location.href)
1410
  return $id;
1411
  }
1412
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1413
  }
1414
 
1415
  NextendSocialLogin::init();
19
 
20
  class NextendSocialLogin {
21
 
22
+ public static $version = '3.1.4';
23
 
24
+ public static $nslPROMinVersion = '3.1.4';
25
 
26
  public static $proxyPage = false;
27
 
214
  'memberpress_account_details' => 'after',
215
  'registration_notification_notify' => '0',
216
  'debug' => '0',
217
+ 'bypass_cache' => '1',
218
  'show_linked_providers' => '0',
219
  'login_restriction' => '0',
220
  'avatars_in_all_media' => '0',
285
  }
286
 
287
  update_option('nsl-version', self::$version, true);
288
+ if (!empty($_SERVER['HTTP_HOST'])) {
289
+ wp_redirect(set_url_scheme('http://' . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI']));
290
+ } else {
291
+ wp_redirect(admin_url());
292
+ }
293
  exit;
294
  } else if (isset($_REQUEST['repairnsl']) && current_user_can('manage_options') && check_admin_referer('repairnsl')) {
295
  self::install();
423
  if (!empty($_REQUEST['loginSocial'])) {
424
  global $HideMyWP;
425
  $loginPath = '/wp-login.php';
426
+ if (is_object($HideMyWP) && !empty($_SERVER['PHP_SELF']) && substr($_SERVER['PHP_SELF'], -1 * strlen($loginPath))) {
427
  $login_query = $HideMyWP->opt('login_query');
428
  if (!$login_query) {
429
  $login_query = 'hide_my_wp';
1049
  $ret = '<div class="nsl-container ' . self::$styles[$style]['container'] . '"' . ($style !== 'fullwidth' ? ' data-align="' . esc_attr($align) . '"' : '') . '>' . $heading . $buttons . '</div>';
1050
  if (defined('DOING_AJAX') && DOING_AJAX) {
1051
  $id = md5(uniqid('nsl-ajax-'));
1052
+ $ret = '<div id="' . $id . '">' . $ret . '</div>';
1053
+ if (!$redirect_to) {
1054
+ $ret .= '<script>window._nslDOMReady(function(){var socialButtonContainer=document.getElementById("' . $id . '");if(socialButtonContainer){var socialButtons=socialButtonContainer.querySelectorAll("a");socialButtons.forEach(function(el,i){var href=el.getAttribute("href");if(href.indexOf("?")===-1){href+="?"}else{href+="&"}
1055
  el.setAttribute("href",href+"redirect="+encodeURIComponent(window.location.href))})}});</script>';
1056
+ }
1057
  }
1058
 
1059
  return $ret;
1065
 
1066
  public static function getCurrentPageURL() {
1067
 
1068
+ if ((defined('DOING_AJAX') && DOING_AJAX) || empty($_SERVER['HTTP_HOST']) || empty($_SERVER['REQUEST_URI'])) {
1069
  return false;
1070
  }
1071
 
1418
  return $id;
1419
  }
1420
 
1421
+ /**
1422
+ * For logged in users, this function might add the 'nsl_bypass_cache' GET parameter to a URL with a unique value
1423
+ * to bypass the cache.
1424
+ *
1425
+ * @param $url
1426
+ *
1427
+ * @return string
1428
+ */
1429
+ public static function maybeAddBypassCacheArgToUrl($url) {
1430
+ if ($url && self::$settings->get('bypass_cache')) {
1431
+ if (is_user_logged_in()) {
1432
+ if (has_filter('nsl_bypass_cache_url')) {
1433
+ $url = apply_filters('nsl_bypass_cache_url', $url);
1434
+ } else {
1435
+ $url = add_query_arg(array('nsl_bypass_cache' => wp_hash(get_current_user_id() . current_time('timestamp'))), $url);
1436
+ }
1437
+ }
1438
+ }
1439
+
1440
+ return $url;
1441
+ }
1442
+
1443
  }
1444
 
1445
  NextendSocialLogin::init();
providers/facebook/admin/fix-redirect-uri.php CHANGED
@@ -11,7 +11,7 @@ $provider = $this->getProvider();
11
  <li><?php _e('In the left sidebar, click on "<b>Facebook Login > Settings</b>"', 'nextend-facebook-connect'); ?></li>
12
  <li><?php
13
  $loginUrls = $provider->getAllRedirectUrisForAppCreation();
14
- printf(__('Add the following URL to the "<b>Valid OAuth redirect URIs</b>" field:', 'nextend-facebook-connect'));
15
  echo "<ul>";
16
  foreach ($loginUrls as $loginUrl) {
17
  echo "<li><strong>" . $loginUrl . "</strong></li>";
11
  <li><?php _e('In the left sidebar, click on "<b>Facebook Login > Settings</b>"', 'nextend-facebook-connect'); ?></li>
12
  <li><?php
13
  $loginUrls = $provider->getAllRedirectUrisForAppCreation();
14
+ printf(__('Add the following URL to the %s field:', 'nextend-facebook-connect'), '"<b>Valid OAuth redirect URIs</b>"');
15
  echo "<ul>";
16
  foreach ($loginUrls as $loginUrl) {
17
  echo "<li><strong>" . $loginUrl . "</strong></li>";
providers/facebook/admin/getting-started.php CHANGED
@@ -38,7 +38,7 @@ $provider = $this->getProvider();
38
  <li><?php printf(__('Click on the “<b>%1$s</b>” option what you find on the left side, under “<b>%2$s</b> - <b>%3$s</b>”', 'nextend-facebook-connect'), 'Settings', 'Products', 'Facebook Login') ?></li>
39
  <li><?php
40
  $loginUrls = $provider->getAllRedirectUrisForAppCreation();
41
- printf(__('Add the following URL to the "<b>Valid OAuth redirect URIs</b>" field:', 'nextend-facebook-connect'));
42
  echo "<ul>";
43
  foreach ($loginUrls as $loginUrl) {
44
  echo "<li><strong>" . $loginUrl . "</strong></li>";
38
  <li><?php printf(__('Click on the “<b>%1$s</b>” option what you find on the left side, under “<b>%2$s</b> - <b>%3$s</b>”', 'nextend-facebook-connect'), 'Settings', 'Products', 'Facebook Login') ?></li>
39
  <li><?php
40
  $loginUrls = $provider->getAllRedirectUrisForAppCreation();
41
+ printf(__('Add the following URL to the %s field:', 'nextend-facebook-connect'), '"<b>Valid OAuth redirect URIs</b>"');
42
  echo "<ul>";
43
  foreach ($loginUrls as $loginUrl) {
44
  echo "<li><strong>" . $loginUrl . "</strong></li>";
providers/facebook/facebook-client.php CHANGED
@@ -27,10 +27,12 @@ class NextendSocialProviderFacebookClient extends NextendSocialOauth2 {
27
 
28
  public function getEndpointAuthorization() {
29
 
30
- if (preg_match('/Android|iPhone|iP[ao]d|Mobile/', $_SERVER['HTTP_USER_AGENT'])) {
31
- $endpointAuthorization = 'https://m.facebook.com/';
32
- } else {
33
- $endpointAuthorization = 'https://www.facebook.com/';
 
 
34
  }
35
 
36
  $endpointAuthorization .= self::DEFAULT_GRAPH_VERSION . '/dialog/oauth';
27
 
28
  public function getEndpointAuthorization() {
29
 
30
+ $endpointAuthorization = 'https://www.facebook.com/';
31
+
32
+ if (!empty($_SERVER['HTTP_USER_AGENT'])) {
33
+ if (preg_match('/Android|iPhone|iP[ao]d|Mobile/', $_SERVER['HTTP_USER_AGENT'])) {
34
+ $endpointAuthorization = 'https://m.facebook.com/';
35
+ }
36
  }
37
 
38
  $endpointAuthorization .= self::DEFAULT_GRAPH_VERSION . '/dialog/oauth';
providers/google/admin/getting-started.php CHANGED
@@ -2,7 +2,7 @@
2
  defined('ABSPATH') || die();
3
  /** @var $this NextendSocialProviderAdmin */
4
 
5
- $lastUpdated = '2021-09-09';
6
 
7
  $provider = $this->getProvider();
8
  ?>
@@ -50,6 +50,7 @@ $provider = $this->getProvider();
50
  </li>
51
  <li><?php printf(__('Click on the "<b>%1$s</b>" button', 'nextend-facebook-connect'), 'Create'); ?></li>
52
  <li><?php printf(__('A modal should pop up with your credentials. If that doesn\'t happen, go to the %1$s in the left hand menu and select your app by clicking on its name and you\'ll be able to copy-paste the "<b>%2$s</b>" and "<b>%3$s</b>" from there.', 'nextend-facebook-connect'), 'Credentials', 'Client ID', 'Client Secret'); ?></li>
 
53
  </ol>
54
 
55
  <a href="<?php echo $this->getUrl('settings'); ?>"
2
  defined('ABSPATH') || die();
3
  /** @var $this NextendSocialProviderAdmin */
4
 
5
+ $lastUpdated = '2021-12-09';
6
 
7
  $provider = $this->getProvider();
8
  ?>
50
  </li>
51
  <li><?php printf(__('Click on the "<b>%1$s</b>" button', 'nextend-facebook-connect'), 'Create'); ?></li>
52
  <li><?php printf(__('A modal should pop up with your credentials. If that doesn\'t happen, go to the %1$s in the left hand menu and select your app by clicking on its name and you\'ll be able to copy-paste the "<b>%2$s</b>" and "<b>%3$s</b>" from there.', 'nextend-facebook-connect'), 'Credentials', 'Client ID', 'Client Secret'); ?></li>
53
+ <li><?php printf(__('Currently your App is in %1$s mode, so only limited number of people can use it. To allow this App for any user with a Google Account, click on the "%2$s" option on the left side, then click the "%3$s" button under the "%4$s" section, and press the "%5$s" button. ', 'nextend-facebook-connect'), 'Testing', '<b>OAuth consent screen</b>', '<b>PUBLISH APP</b>', '<b>Publishing status</b>', '<b>Confirm</b>'); ?></li>
54
  </ol>
55
 
56
  <a href="<?php echo $this->getUrl('settings'); ?>"
providers/tiktok/tiktok.php ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class NextendSocialProviderTiktok extends NextendSocialProviderDummy {
4
+
5
+ protected $color = '#000000';
6
+
7
+ public function __construct() {
8
+ $this->id = 'tiktok';
9
+ $this->label = 'TikTok';
10
+ $this->path = dirname(__FILE__);
11
+ }
12
+ }
13
+
14
+ NextendSocialLogin::addProvider(new NextendSocialProviderTiktok());
providers/tiktok/tiktok.png ADDED
Binary file
providers/twitter/admin/fix-redirect-uri.php CHANGED
@@ -7,11 +7,11 @@ $provider = $this->getProvider();
7
  <ol>
8
  <li><?php printf(__('Navigate to <b>%s</b>', 'nextend-facebook-connect'), '<a href="https://developer.twitter.com/en/portal/projects-and-apps" target="_blank">https://developer.twitter.com/en/portal/projects-and-apps</a>'); ?></li>
9
  <li><?php printf(__('Log in with your %s credentials if you are not logged in', 'nextend-facebook-connect'), 'Twitter'); ?></li>
10
- <li><?php _e('Find your App and click on the <b>App settings</b> icon. (The one that looks like a gear.)', 'nextend-facebook-connect'); ?></li>
11
- <li><?php _e('Click on the <b>Edit</b> button at <b>Authentication settings</b>.', 'nextend-facebook-connect'); ?></li>
12
  <li><?php
13
  $loginUrls = $provider->getAllRedirectUrisForAppCreation();
14
- printf(__('Add the following URL to the "<b>%1$s</b>" field:', 'nextend-facebook-connect'), 'Callback URLs');
15
  echo "<ul>";
16
  foreach ($loginUrls as $loginUrl) {
17
  echo "<li><strong>" . $loginUrl . "</strong></li>";
@@ -19,6 +19,6 @@ $provider = $this->getProvider();
19
  echo "</ul>";
20
  ?>
21
  </li>
22
- <li><?php printf(__('Make sure the "<b>%1$s</b>" field contains the following URL: <b>%2$s</b>', 'nextend-facebook-connect'), 'Website URL', site_url()); ?></li>
23
- <li><?php _e('Click on "<b>Save</b>"', 'nextend-facebook-connect'); ?></li>
24
  </ol>
7
  <ol>
8
  <li><?php printf(__('Navigate to <b>%s</b>', 'nextend-facebook-connect'), '<a href="https://developer.twitter.com/en/portal/projects-and-apps" target="_blank">https://developer.twitter.com/en/portal/projects-and-apps</a>'); ?></li>
9
  <li><?php printf(__('Log in with your %s credentials if you are not logged in', 'nextend-facebook-connect'), 'Twitter'); ?></li>
10
+ <li><?php printf(__('On the left side, under the %s section click on the name of your App.', 'nextend-facebook-connect'), '"<b>Projects & Apps</b>"'); ?></li>
11
+ <li><?php printf(__('Click on the %1$s button at %2$s.', 'nextend-facebook-connect'), '"<b>Edit</b>"', '"<b>User authentication settings</b>"'); ?></li>
12
  <li><?php
13
  $loginUrls = $provider->getAllRedirectUrisForAppCreation();
14
+ printf(__('Add the following URL to the %s field:', 'nextend-facebook-connect'), '"<b>Callback URI / Redirect URL</b>"');
15
  echo "<ul>";
16
  foreach ($loginUrls as $loginUrl) {
17
  echo "<li><strong>" . $loginUrl . "</strong></li>";
19
  echo "</ul>";
20
  ?>
21
  </li>
22
+ <li><?php printf(__('Make sure the %1$s field contains the following URL: %2$s', 'nextend-facebook-connect'), '"<b>Website URL</b>"', '<b>' . site_url() . '</b>'); ?></li>
23
+ <li><?php printf(__('Click on %s', 'nextend-facebook-connect'), '"<b>Save</b>"'); ?></li>
24
  </ol>
providers/twitter/admin/getting-started.php CHANGED
@@ -2,7 +2,7 @@
2
  defined('ABSPATH') || die();
3
  /** @var $this NextendSocialProviderAdmin */
4
 
5
- $lastUpdated = '2021-10-27';
6
 
7
  $provider = $this->getProvider();
8
  ?>
@@ -22,16 +22,17 @@ $provider = $this->getProvider();
22
  <li><?php printf(__('Log in with your %s credentials if you are not logged in.', 'nextend-facebook-connect'), 'Twitter'); ?></li>
23
  <li><?php _e('If you don\'t have a developer account yet, please apply one by filling all the required details! This is required for the next steps!', 'nextend-facebook-connect'); ?></li>
24
  <li><?php printf(__('Once your developer account is complete, navigate back to <b>%s</b> if you aren\'t already there!', 'nextend-facebook-connect'), '<a href="https://developer.twitter.com/en/portal/projects-and-apps" target="_blank">https://developer.twitter.com/en/portal/projects-and-apps</a>'); ?>
25
- <li><?php printf(__('Click on "<b>%s</b>"!', 'nextend-facebook-connect'), '+ Create Project'); ?></li>
26
- <li><?php _e('Name your project, and go through the basic setup. You’ll need to select your use case, give a description and enter a name for the App as well.', 'nextend-facebook-connect'); ?></li>
27
- <li><?php printf(__('Click "<b>%s</b>"!', 'nextend-facebook-connect'), 'Next'); ?></li>
28
- <li><?php printf(__('You’ll find your API key and secret on this page. Copy and paste the "<b>%1$s</b>" and the "<b>%2$s</b>" to the corresponding fields at %3$s and press "<b>Save Changes</b>".', 'nextend-facebook-connect'), 'API key', 'API secret key', 'Nextend Social Login > Twitter > Settings'); ?></li>
29
- <li><?php printf(__('Go back to your Twitter project and on the left side, under the "<b>%s</b>" section click on the name of your App.', 'nextend-facebook-connect'), 'Projects and Apps'); ?></li>
30
- <li><?php printf(__('Scroll down and click on the "<b>%1$s</b>" button at "<b>%2$s</b>".', 'nextend-facebook-connect'), 'Edit', 'Authentication settings'); ?></li>
31
- <li><?php printf(__('Switch on the "<b>%s</b>" option.', 'nextend-facebook-connect'), 'Enable 3-legged OAuth'); ?></li>
 
32
  <li><?php
33
  $loginUrls = $provider->getAllRedirectUrisForAppCreation();
34
- printf(__('Add the following URL to the "<b>%1$s</b>" field:', 'nextend-facebook-connect'), 'Callback URLs');
35
  echo "<ul>";
36
  foreach ($loginUrls as $loginUrl) {
37
  echo "<li><strong>" . $loginUrl . "</strong></li>";
@@ -40,9 +41,11 @@ $provider = $this->getProvider();
40
  ?>
41
  </li>
42
  <li><?php printf(__('Enter your site\'s URL to the "<b>%1$s</b>" field: <b>%2$s</b>', 'nextend-facebook-connect'), 'Website URL', site_url()); ?></li>
43
- <li><?php printf(__('If you want to get the email address as well, then don’t forget to enable the "<b>%1$s</b>" option. In this case you also need to fill the "<b>%2$s</b>" and the "<b>%3$s</b>" fields with the corresponding URLs!', 'nextend-facebook-connect'), 'Request email address from users', 'Terms of service', 'Privacy policy'); ?></li>
44
- <li><?php printf(__('Click on "<b>%s</b>".', 'nextend-facebook-connect'), 'Save'); ?></li>
45
- <li><?php printf(__('Go back to %1$s and <b>Verify</b> your %2$s provider.', 'nextend-facebook-connect'), 'Nextend Social Login', 'Twitter'); ?></li>
 
 
46
  </ol>
47
 
48
  <a href="<?php echo $this->getUrl('settings'); ?>"
2
  defined('ABSPATH') || die();
3
  /** @var $this NextendSocialProviderAdmin */
4
 
5
+ $lastUpdated = '2022-01-17';
6
 
7
  $provider = $this->getProvider();
8
  ?>
22
  <li><?php printf(__('Log in with your %s credentials if you are not logged in.', 'nextend-facebook-connect'), 'Twitter'); ?></li>
23
  <li><?php _e('If you don\'t have a developer account yet, please apply one by filling all the required details! This is required for the next steps!', 'nextend-facebook-connect'); ?></li>
24
  <li><?php printf(__('Once your developer account is complete, navigate back to <b>%s</b> if you aren\'t already there!', 'nextend-facebook-connect'), '<a href="https://developer.twitter.com/en/portal/projects-and-apps" target="_blank">https://developer.twitter.com/en/portal/projects-and-apps</a>'); ?>
25
+ <li><?php printf(__('Click on "<b>%s</b>"!', 'nextend-facebook-connect'), '+ New Project'); ?></li>
26
+ <li><?php printf(__('Name your project, and go through the basic setup. You’ll need to select your use case, give a description then click the %s button.', 'nextend-facebook-connect'), '"<b>Next</b>"'); ?></li>
27
+ <li><?php printf(__('Choose the %1$s option for %2$s, then press %3$s!', 'nextend-facebook-connect'), '"<b>Production</b>"', '"<b>App environment</b>"', '"<b>Next</b>"'); ?></li>
28
+ <li><?php printf(__('Into the %1$s field, enter a name for your App, then press %2$s again!', 'nextend-facebook-connect'), '"<b>App name</b>"', '"<b>Next</b>"'); ?></li>
29
+ <li><?php printf(__('You’ll find your API key and secret on this page. Copy and paste the "<b>%1$s</b>" and the "<b>%2$s</b>" to the corresponding fields at %3$s and press "<b>Save Changes</b>".', 'nextend-facebook-connect'), 'API Key', 'API Key Secret', 'Nextend Social Login > Twitter > Settings'); ?></li>
30
+ <li><?php printf(__('Go back to your Twitter project and on the left side, under the "<b>%s</b>" section click on the name of your App.', 'nextend-facebook-connect'), 'Projects & Apps'); ?></li>
31
+ <li><?php printf(__('Scroll down and click on the %1$s button at %2$s.', 'nextend-facebook-connect'), '"<b>Set up</b>"', '"<b>User authentication settings</b>"'); ?></li>
32
+ <li><?php printf(__('Switch on the %s option.', 'nextend-facebook-connect'), '"<b>OAuth 1.0a</b>"'); ?></li>
33
  <li><?php
34
  $loginUrls = $provider->getAllRedirectUrisForAppCreation();
35
+ printf(__('Add the following URL to the %s field:', 'nextend-facebook-connect'), '"<b>Callback URI / Redirect URL</b>"');
36
  echo "<ul>";
37
  foreach ($loginUrls as $loginUrl) {
38
  echo "<li><strong>" . $loginUrl . "</strong></li>";
41
  ?>
42
  </li>
43
  <li><?php printf(__('Enter your site\'s URL to the "<b>%1$s</b>" field: <b>%2$s</b>', 'nextend-facebook-connect'), 'Website URL', site_url()); ?></li>
44
+ <li><?php printf(__('If you want to get the email address as well, then don’t forget to enable the %1$s option. In this case you also need to fill the "<b>%2$s</b>" and the "<b>%3$s</b>" fields with the corresponding URLs!', 'nextend-facebook-connect'), '"<b>Request email from users (optional)</b>"', 'Terms of service', 'Privacy policy'); ?></li>
45
+ <li><?php printf(__('Click on %s.', 'nextend-facebook-connect'), '"<b>Save</b>"'); ?></li>
46
+ <li><?php printf(__('On the left side, under the "<b>%s</b>" section click on the name of your Project ( that you created the App for ).', 'nextend-facebook-connect'), 'Projects & Apps'); ?></li>
47
+ <li><?php printf(__('Click on the %1$s button, then fill the %2$s, %3$s, %4$s and %5$s forms.', 'nextend-facebook-connect'), '"<b>Apply for Elevated</b>"', 'Basic info', 'Intended use', 'Review', 'Terms'); ?></li>
48
+ <li><?php printf(__('Once your application for the Elevated access has been approved, go back to %1$s then <b>verify</b> and <b>enable</b> the %2$s provider!', 'nextend-facebook-connect'), 'Nextend Social Login', 'Twitter'); ?></li>
49
  </ol>
50
 
51
  <a href="<?php echo $this->getUrl('settings'); ?>"
providers/twitter/admin/settings.php CHANGED
@@ -30,12 +30,12 @@ $settings = $provider->settings;
30
  <input name="consumer_key" type="text" id="consumer_key"
31
  value="<?php echo esc_attr($settings->get('consumer_key')); ?>" class="regular-text">
32
  <p class="description"
33
- id="tagline-consumer_key"><?php printf(__('If you are not sure what is your %1$s, please head over to <a href="%2$s">Getting Started</a>', 'nextend-facebook-connect'), 'API secret key', $this->getUrl()); ?></p>
34
  </td>
35
  </tr>
36
  <tr>
37
  <th scope="row"><label
38
- for="consumer_secret"><?php _e('API secret key', 'nextend-facebook-connect'); ?></label>
39
  </th>
40
  <td><input name="consumer_secret" type="text" id="consumer_secret"
41
  value="<?php echo esc_attr($settings->get('consumer_secret')); ?>" class="regular-text"
30
  <input name="consumer_key" type="text" id="consumer_key"
31
  value="<?php echo esc_attr($settings->get('consumer_key')); ?>" class="regular-text">
32
  <p class="description"
33
+ id="tagline-consumer_key"><?php printf(__('If you are not sure what is your %1$s, please head over to <a href="%2$s">Getting Started</a>', 'nextend-facebook-connect'), 'API Key', $this->getUrl()); ?></p>
34
  </td>
35
  </tr>
36
  <tr>
37
  <th scope="row"><label
38
+ for="consumer_secret"><?php _e('API Key Secret', 'nextend-facebook-connect'); ?></label>
39
  </th>
40
  <td><input name="consumer_secret" type="text" id="consumer_secret"
41
  value="<?php echo esc_attr($settings->get('consumer_secret')); ?>" class="regular-text"
providers/twitter/twitter.php CHANGED
@@ -51,8 +51,8 @@ class NextendSocialProviderTwitter extends NextendSocialProvider {
51
  $this->path = dirname(__FILE__);
52
 
53
  $this->requiredFields = array(
54
- 'consumer_key' => 'Consumer Key',
55
- 'consumer_secret' => 'Consumer Secret'
56
  );
57
 
58
  $this->oauthRedirectBehavior = 'default_redirect_but_app_has_restriction';
51
  $this->path = dirname(__FILE__);
52
 
53
  $this->requiredFields = array(
54
+ 'consumer_key' => 'API Key',
55
+ 'consumer_secret' => 'API Key Secret'
56
  );
57
 
58
  $this->oauthRedirectBehavior = 'default_redirect_but_app_has_restriction';
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.9.0
7
- Stable tag: 3.1.3
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, Discord, Slack 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,6 +125,17 @@ Using the Pro Addon you can set where the login buttons should appear on the Reg
125
 
126
  == Changelog ==
127
 
 
 
 
 
 
 
 
 
 
 
 
128
  = 3.1.3 =
129
  * Fix: Database error on clean install
130
  * Improvement: [WPML Redirect URL compatibility](https://nextendweb.com/nextend-social-login-docs/how-to-make-nextend-social-login-compatible-with-wpml/)
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.9
7
+ Stable tag: 3.1.4
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, Slack, TikTok 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.4 =
129
+ * Fix: PHP Warning on redirects, when the "Host" header is not sent by the browser ( e.g when an action happens with CLI )
130
+ * Fix: The redirect parameter of the shortcode didn't work in AJAX requests
131
+ * Fix: Provider order modification didn't work in WordPress 5.9
132
+ * Improvement: [Google Getting Started](https://nextendweb.com/nextend-social-login-docs/provider-google/#configuration) Update
133
+ * Improvement: [Twitter Getting Started](https://nextendweb.com/nextend-social-login-docs/provider-Twitter/#configuration) Update
134
+ * Feature: Option to attempt to [Bypass cache on redirect](https://nextendweb.com/nextend-social-login-docs/global-settings/#bypass-cache) by adding a GET parameter to the redirect URL
135
+
136
+ * PRO: New provider: [TikTok](https://nextendweb.com/nextend-social-login-docs/provider-tiktok/)
137
+
138
+
139
  = 3.1.3 =
140
  * Fix: Database error on clean install
141
  * Improvement: [WPML Redirect URL compatibility](https://nextendweb.com/nextend-social-login-docs/how-to-make-nextend-social-login-compatible-with-wpml/)