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

Version Description

  • Fix: Ultimate Member prevents our registration when we need to ask extra information before the registration.
  • Fix: post_mime_type PHP notice.
  • Improvement: Italian translation files added.
  • Improvement: Notice handling logic improvements.
  • Improvement: Twitter Getting Started Update
  • Improvement: Facebook Getting Started Update
  • Improvement: Facebook Warning for App replacing
  • Improvement: Google provider using OAuth2 v2 endpoint
  • Improvement: 2 new filters for customizing the redirect url and error message when login is disabled.
  • Improvement: Database new column "social_users_id" for Primary Key
  • Improvement: PHP 8.0 compatibility
  • Improvement: We will override the WordPress default avatar using the pre_get_avatar_data filter instead of get_avatar filter.

  • PRO: Fix: Apple provider Logo overlaps the box shadow of the light button skin

  • PRO: Improvement: New Google Sync data fields: Genders and Locations ( requires People API )

  • PRO: Removed: Google Sync data fields: Gender, Profile link, Taglines and Residences

Download this release

Release Info

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

Code changes from version 3.0.25 to 3.0.27

Files changed (44) hide show
  1. NSL/Notices.php +18 -17
  2. admin/admin.php +1 -2
  3. admin/images/notice.png +0 -0
  4. admin/sale.php +0 -57
  5. admin/templates-provider/buttons.php +19 -0
  6. admin/templates/settings/general.php +15 -0
  7. admin/templates/settings/woocommerce.php +15 -0
  8. includes/avatar.php +87 -141
  9. includes/oauth2.php +2 -0
  10. includes/provider-admin.php +1 -0
  11. includes/provider.php +29 -11
  12. includes/user.php +72 -9
  13. includes/userData.php +1 -1
  14. languages/nextend-facebook-connect-de_DE.mo +0 -0
  15. languages/nextend-facebook-connect-de_DE.po +371 -211
  16. languages/nextend-facebook-connect-es_LA.mo +0 -0
  17. languages/nextend-facebook-connect-es_LA.po +471 -259
  18. languages/nextend-facebook-connect-fr_FR.mo +0 -0
  19. languages/nextend-facebook-connect-fr_FR.po +371 -211
  20. languages/nextend-facebook-connect-hu_HU.mo +0 -0
  21. languages/nextend-facebook-connect-hu_HU.po +459 -273
  22. languages/nextend-facebook-connect-it_IT.mo +0 -0
  23. languages/nextend-facebook-connect-it_IT.po +4079 -0
  24. languages/nextend-facebook-connect-nl_NL.mo +0 -0
  25. languages/nextend-facebook-connect-nl_NL.po +512 -271
  26. languages/nextend-facebook-connect-pt_BR.mo +0 -0
  27. languages/nextend-facebook-connect-pt_BR.po +485 -267
  28. languages/nextend-facebook-connect-ru_RU.mo +0 -0
  29. languages/nextend-facebook-connect-ru_RU.po +408 -252
  30. languages/nextend-facebook-connect-zh_ZH.mo +0 -0
  31. languages/nextend-facebook-connect-zh_ZH.po +468 -257
  32. languages/nextend-facebook-connect.pot +376 -210
  33. nextend-facebook-connect.php +2 -1
  34. nextend-social-login.php +84 -36
  35. providers/facebook/admin/getting-started.php +18 -3
  36. providers/facebook/admin/settings.php +10 -0
  37. providers/facebook/facebook.php +8 -6
  38. providers/google/google-client.php +1 -1
  39. providers/google/google.php +9 -15
  40. providers/twitter/admin/fix-redirect-uri.php +3 -3
  41. providers/twitter/admin/getting-started.php +17 -12
  42. providers/twitter/twitter.php +2 -0
  43. readme.txt +36 -2
  44. template-parts/style.css +2 -1
NSL/Notices.php CHANGED
@@ -18,27 +18,28 @@ class Notices {
18
  }
19
 
20
  private function __construct() {
 
 
 
 
 
 
 
 
 
 
 
 
21
 
22
- add_action('init', array(
23
- $this,
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'
 
 
 
 
31
  ));
32
  }
33
-
34
- add_action('admin_print_footer_scripts', array(
35
- $this,
36
- 'notices_fallback'
37
- ));
38
- add_action('wp_print_footer_scripts', array(
39
- $this,
40
- 'notices_fallback'
41
- ));
42
  }
43
 
44
  public function load() {
18
  }
19
 
20
  private function __construct() {
21
+ if (is_admin() || (isset($_GET['nsl-notice']) && $_GET['nsl-notice'] == 1)) {
22
+ add_action('init', array(
23
+ $this,
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'
31
+ ));
32
+ }
33
 
34
+ add_action('admin_print_footer_scripts', array(
 
 
 
 
 
 
35
  $this,
36
+ 'notices_fallback'
37
+ ));
38
+ add_action('wp_print_footer_scripts', array(
39
+ $this,
40
+ 'notices_fallback'
41
  ));
42
  }
 
 
 
 
 
 
 
 
 
43
  }
44
 
45
  public function load() {
admin/admin.php CHANGED
@@ -115,8 +115,6 @@ class NextendSocialLoginAdmin {
115
 
116
  public static function admin_init() {
117
 
118
- require_once(dirname(__FILE__).'/sale.php');
119
-
120
  if (current_user_can('manage_options')) {
121
  if (!isset($_GET['page']) || $_GET['page'] != 'nextend-social-login' || !isset($_GET['view']) || $_GET['view'] != 'fix-redirect-uri') {
122
  add_action('admin_notices', 'NextendSocialLoginAdmin::show_oauth_uri_notice');
@@ -338,6 +336,7 @@ class NextendSocialLoginAdmin {
338
  case 'debug':
339
  case 'login_restriction':
340
  case 'avatars_in_all_media':
 
341
  case 'terms_show':
342
  case 'store_name':
343
  case 'store_email':
115
 
116
  public static function admin_init() {
117
 
 
 
118
  if (current_user_can('manage_options')) {
119
  if (!isset($_GET['page']) || $_GET['page'] != 'nextend-social-login' || !isset($_GET['view']) || $_GET['view'] != 'fix-redirect-uri') {
120
  add_action('admin_notices', 'NextendSocialLoginAdmin::show_oauth_uri_notice');
336
  case 'debug':
337
  case 'login_restriction':
338
  case 'avatars_in_all_media':
339
+ case 'custom_register_label':
340
  case 'terms_show':
341
  case 'store_name':
342
  case 'store_email':
admin/images/notice.png ADDED
Binary file
admin/sale.php DELETED
@@ -1,57 +0,0 @@
1
- <?php
2
-
3
- if (false === apply_filters('nsl-pro', false)) {
4
- $current = time();
5
- if ($current <= mktime(0, 0, 0, 9, 2, 2020)) {
6
- if (get_transient('nsl_summer_2020') != '1') {
7
-
8
- add_action('admin_enqueue_scripts', function () {
9
- wp_enqueue_script('jquery');
10
- });
11
-
12
- add_action('admin_notices', function () {
13
- ?>
14
- <div class="notice notice-info is-dismissible" data-nsldismissable="">
15
- <h3>Nextend Social Login - Summer Sale</h3>
16
- <p>
17
- Get your <b>Pro Addon</b> with <b>30% OFF</b>! Limited time offer expires on September 1.</p>
18
- <p>
19
- <a class="button button-primary" href="https://nextendweb.com/social-login/?coupon=SUMMER2020NSL&utm_source=wpfree&utm_medium=wp&utm_campaign=summer2020nsl#pricing" target="_blank">Buy
20
- Now!</a>
21
- <a class="button button-dismiss" href="#">Dismiss</a>
22
- </p>
23
- </div>
24
- <?php
25
- });
26
-
27
- add_action('admin_footer', function () {
28
- ?>
29
- <script type="text/javascript">
30
- (function ($) {
31
- $(function () {
32
- setTimeout(function () {
33
- $('div[data-nsldismissable] .notice-dismiss, div[data-nsldismissable] .button-dismiss')
34
- .on('click', function (e) {
35
- e.preventDefault();
36
- $.post(ajaxurl, {
37
- 'action': 'nsl_dismiss_admin_notice',
38
- 'nonce': <?php echo json_encode(wp_create_nonce('nsl-dismissible-notice')); ?>
39
- });
40
- $(e.target).closest('.is-dismissible').remove();
41
- });
42
- }, 1000);
43
- });
44
- })(jQuery);
45
- </script>
46
- <?php
47
- });
48
-
49
- add_action('wp_ajax_nsl_dismiss_admin_notice', function () {
50
- check_ajax_referer('nsl-dismissible-notice', 'nonce');
51
-
52
- set_transient('nsl_summer_2020', '1', YEAR_IN_SECONDS);
53
- wp_die();
54
- });
55
- }
56
- }
57
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
admin/templates-provider/buttons.php CHANGED
@@ -15,6 +15,7 @@ $isPRO = apply_filters('nsl-pro', false);
15
  window.resetButtonToDefault = function (id) {
16
  var defaultButtonValues = {
17
  '#login_label': <?php echo wp_json_encode($settings->get('login_label', 'default')); ?>,
 
18
  '#link_label': <?php echo wp_json_encode($settings->get('link_label', 'default')); ?>,
19
  '#unlink_label': <?php echo wp_json_encode($settings->get('unlink_label', 'default')); ?>,
20
  '#custom_default_button': <?php echo wp_json_encode($provider->getRawDefaultButton()); ?>,
@@ -85,6 +86,24 @@ $isPRO = apply_filters('nsl-pro', false);
85
  </p>
86
  </td>
87
  </tr>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
88
  <tr>
89
  <th scope="row"><label for="link_label"><?php _e('Link label', 'nextend-facebook-connect'); ?></label>
90
  </th>
15
  window.resetButtonToDefault = function (id) {
16
  var defaultButtonValues = {
17
  '#login_label': <?php echo wp_json_encode($settings->get('login_label', 'default')); ?>,
18
+ '#register_label': <?php echo wp_json_encode($settings->get('register_label', 'default')); ?>,
19
  '#link_label': <?php echo wp_json_encode($settings->get('link_label', 'default')); ?>,
20
  '#unlink_label': <?php echo wp_json_encode($settings->get('unlink_label', 'default')); ?>,
21
  '#custom_default_button': <?php echo wp_json_encode($provider->getRawDefaultButton()); ?>,
86
  </p>
87
  </td>
88
  </tr>
89
+
90
+ <?php
91
+ $useCustomRegisterLabel = NextendSocialLogin::$settings->get('custom_register_label');
92
+ if ($useCustomRegisterLabel): ?>
93
+ <tr>
94
+ <th scope="row"><label
95
+ for="register_label"><?php _e('Register label', 'nextend-facebook-connect'); ?></label>
96
+ </th>
97
+ <td>
98
+ <input name="register_label" type="text" id="register_label"
99
+ value="<?php echo esc_attr($settings->get('register_label')); ?>" class="regular-text">
100
+ <p class="description"><a href="#"
101
+ onclick="return resetButtonToDefault('#register_label');"><?php _e('Reset to default', 'nextend-facebook-connect'); ?></a>
102
+ </p>
103
+ </td>
104
+ </tr>
105
+ <?php endif; ?>
106
+
107
  <tr>
108
  <th scope="row"><label for="link_label"><?php _e('Link label', 'nextend-facebook-connect'); ?></label>
109
  </th>
admin/templates/settings/general.php CHANGED
@@ -252,6 +252,21 @@
252
  </td>
253
  </tr>
254
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
255
  </tbody>
256
  </table>
257
 
252
  </td>
253
  </tr>
254
 
255
+ <tr>
256
+ <th scope="row"><?php _e('Custom label for register buttons', 'nextend-facebook-connect'); ?></th>
257
+ <td>
258
+ <fieldset>
259
+ <label><input type="radio" name="custom_register_label"
260
+ value="0" <?php if ($settings->get('custom_register_label') == '0') : ?> checked="checked" <?php endif; ?>>
261
+ <span><?php _e('Disabled', 'nextend-facebook-connect'); ?></span></label><br>
262
+ <label><input type="radio" name="custom_register_label"
263
+ value="1" <?php if ($settings->get('custom_register_label') == '1') : ?> checked="checked" <?php endif; ?>>
264
+ <span><?php _e('Enabled', 'nextend-facebook-connect'); ?></span></label><br>
265
+ </fieldset>
266
+ <p class="description"><?php printf(__('Set a custom label for the social buttons in registration forms and for shortcodes with %1$s parameter set to %2$s.<br>The register specific labels can be modified at the Buttons tab of each provider.', 'nextend-facebook-connect'), '<b>labeltype</b>', '<b>register</b>'); ?></p>
267
+ </td>
268
+ </tr>
269
+
270
  </tbody>
271
  </table>
272
 
admin/templates/settings/woocommerce.php CHANGED
@@ -319,6 +319,21 @@ NextendSocialLoginAdmin::showProBox();
319
  </td>
320
  </tr>
321
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
322
  </tbody>
323
  </table>
324
  <?php if ($isPRO): ?>
319
  </td>
320
  </tr>
321
 
322
+ <tr>
323
+ <th scope="row"><?php _e('Email template for registration', 'nextend-facebook-connect'); ?></th>
324
+ <td>
325
+ <fieldset>
326
+ <label><input type="radio" name="woocoommerce_registration_email_template"
327
+ value="default" <?php if ($settings->get('woocoommerce_registration_email_template') == 'default') : ?> checked="checked" <?php endif; ?><?php echo $attr; ?>>
328
+ <span><?php _e('WordPress default notification', 'nextend-facebook-connect'); ?></span></label><br>
329
+ <label><input type="radio" name="woocoommerce_registration_email_template"
330
+ value="woocommerce" <?php if ($settings->get('woocoommerce_registration_email_template') == 'woocommerce') : ?> checked="checked" <?php endif; ?><?php echo $attr; ?>>
331
+ <span><?php _e('WooCommerce registration notification', 'nextend-facebook-connect'); ?></span></label><br>
332
+ </fieldset>
333
+ <p class="description"><?php printf(__('Defines whether the registration with %1$s will send the same registration notification that %2$s does, instead of the %3$s default one.', 'nextend-facebook-connect'), '<b>Nextend Social Login</b>', '<b>WooCommerce</b>', '<b>WordPress</b>'); ?></p>
334
+ </td>
335
+ </tr>
336
+
337
  </tbody>
338
  </table>
339
  <?php if ($isPRO): ?>
includes/avatar.php CHANGED
@@ -25,21 +25,11 @@ class NextendSocialLoginAvatar {
25
  // WP User Avatar https://wordpress.org/plugins/wp-user-avatar/
26
  // Ultimate member
27
  if (!defined('WPUA_VERSION') && !class_exists('UM', false) && !class_exists('buddypress', false)) {
28
- add_filter('get_avatar', array(
29
- $this,
30
- 'renderAvatar'
31
- ), 5, 6);
32
-
33
- add_filter('bp_core_fetch_avatar', array(
34
- $this,
35
- 'renderAvatarBP'
36
- ), 3, 2);
37
 
38
- add_filter('bp_core_fetch_avatar_url', array(
39
  $this,
40
- 'renderAvatarBPUrl'
41
- ), 3, 2);
42
-
43
  }
44
 
45
  add_filter('post_mime_types', array(
@@ -68,7 +58,7 @@ class NextendSocialLoginAvatar {
68
  if (!isset($query['meta_query']) || !is_array($query['meta_query'])) {
69
  $query['meta_query'] = array();
70
  }
71
- if ($query['post_mime_type'] === 'avatar') {
72
  $query['post_mime_type'] = 'image';
73
  $query['meta_query']['relation'] = 'AND';
74
  $query['meta_query'][] = array(
@@ -256,59 +246,86 @@ class NextendSocialLoginAvatar {
256
  if (isset($mime_to_ext[$mime])) {
257
 
258
  $wp_upload_dir = wp_upload_dir();
259
- $filename = 'user-' . $user_id . '.' . $mime_to_ext[$mime];
260
 
261
- $filename = wp_unique_filename($wp_upload_dir['path'], $filename);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
262
 
263
- $newAvatarPath = trailingslashit($wp_upload_dir['path']) . $filename;
264
- $newFile = @copy($avatarTempPath, $newAvatarPath);
265
- @unlink($avatarTempPath);
266
 
267
- if (false !== $newFile) {
268
- $url = $wp_upload_dir['url'] . '/' . basename($filename);
269
- $newAvatarMD5 = md5_file($newAvatarPath);
270
 
271
- if ($overwriteAttachment) {
272
- $originalAvatarImage = get_attached_file($original_attachment_id);
273
 
274
- // we got the same image, so we do not want to store it
275
- if ($original_attachment_md5 === $newAvatarMD5) {
276
- @unlink($newAvatarPath);
277
  } else {
278
- // Store the new avatar and remove the old one
279
- @unlink($originalAvatarImage);
280
- update_attached_file($original_attachment_id, $newAvatarPath);
281
-
282
- // Make sure that this file is included, as wp_generate_attachment_metadata() depends on it.
283
- require_once(ABSPATH . 'wp-admin/includes/image.php');
284
-
285
- wp_update_attachment_metadata($original_attachment_id, wp_generate_attachment_metadata($original_attachment_id, $newAvatarPath));
286
 
287
- update_user_meta($user_id, $wpdb->get_blog_prefix($blog_id) . 'user_avatar', $original_attachment_id);
288
- update_user_meta($user_id, 'nsl_user_avatar_md5', $newAvatarMD5);
289
- }
290
- } else {
291
- $attachment = array(
292
- 'guid' => $url,
293
- 'post_mime_type' => $mime,
294
- 'post_title' => '',
295
- 'post_content' => '',
296
- 'post_status' => 'private',
297
- );
298
-
299
- $new_attachment_id = wp_insert_attachment($attachment, $newAvatarPath);
300
- if (!is_wp_error($new_attachment_id)) {
301
 
302
- // Make sure that this file is included, as wp_generate_attachment_metadata() depends on it.
303
- require_once(ABSPATH . 'wp-admin/includes/image.php');
304
 
305
- wp_update_attachment_metadata($new_attachment_id, wp_generate_attachment_metadata($new_attachment_id, $newAvatarPath));
306
 
307
- update_post_meta($new_attachment_id, $provider->getId() . '_avatar', $provider->getAuthUserData('id'));
308
- update_post_meta($new_attachment_id, '_wp_attachment_wp_user_avatar', $user_id);
309
 
310
- update_user_meta($user_id, $wpdb->get_blog_prefix($blog_id) . 'user_avatar', $new_attachment_id);
311
- update_user_meta($user_id, 'nsl_user_avatar_md5', $newAvatarMD5);
 
312
  }
313
  }
314
  }
@@ -318,105 +335,34 @@ class NextendSocialLoginAvatar {
318
  }
319
  }
320
 
321
- public function renderAvatar($avatar = '', $id_or_email, $size = 96, $default = '', $alt = false, $args = array()) {
322
  global $blog_id, $wpdb;
323
 
324
- $id = 0;
325
- /**
326
- * Get the user id depending on the $id_or_email, it can be the user id, email and object.
327
- */
328
- if (is_numeric($id_or_email)) {
329
- $id = $id_or_email;
330
- } else if (is_string($id_or_email)) {
331
- $user = get_user_by('email', $id_or_email);
332
- if ($user) {
333
- $id = $user->ID;
334
- }
335
- } else if (is_object($id_or_email)) {
336
- if (!empty($id_or_email->comment_author_email)) {
337
- $user = get_user_by('email', $id_or_email->comment_author_email);
338
- if ($user) {
339
- $id = $user->ID;
340
- }
341
- } else if (!empty($id_or_email->user_id)) {
342
- $id = $id_or_email->user_id;
343
- }
344
- }
345
  if ($id == 0) {
346
- return $avatar;
347
  }
348
 
349
- $url = '';
350
-
351
  /**
352
  * Get the avatar attachment id of the user.
353
  */
354
  $attachment_id = get_user_meta($id, $wpdb->get_blog_prefix($blog_id) . 'user_avatar', true);
355
  if (wp_attachment_is_image($attachment_id)) {
356
- $get_size = is_numeric($size) ? array(
357
- $size,
358
- $size
359
- ) : $size;
360
- $image_src_array = wp_get_attachment_image_src($attachment_id, $get_size);
361
-
362
- $url = $image_src_array[0];
363
-
364
- if (is_numeric($size)) {
365
- $args['width'] = $image_src_array[1];
366
- $args['height'] = $image_src_array[2];
367
- }
368
- }
369
-
370
- if (empty($url)) {
371
- $url = NextendSocialLogin::getAvatar($id);
372
- }
373
-
374
- if (!$url) {
375
- return $avatar;
376
- }
377
-
378
- if (defined('IS_PROFILE_PAGE') && IS_PROFILE_PAGE) {
379
- add_filter('user_profile_picture_description', array(
380
- $this,
381
- 'removeProfilePictureGravatarDescription'
382
- ));
383
- }
384
-
385
- $class = array(
386
- 'avatar',
387
- 'avatar-' . (int)$args['size'],
388
- 'photo'
389
- );
390
-
391
- if ($args['class']) {
392
- if (is_array($args['class'])) {
393
- $class = array_merge($class, $args['class']);
394
- } else {
395
- $class[] = $args['class'];
396
  }
397
- }
398
-
399
- return sprintf("<img alt='%s' src='%s' class='%s' height='%d' width='%d' %s/>", esc_attr($args['alt']), esc_url($url), esc_attr(join(' ', $class)), (int)$args['height'], (int)$args['width'], $args['extra_attr']);
400
- }
401
-
402
- public function renderAvatarBP($avatar, $params) {
403
-
404
- if (strpos($avatar, 'gravatar.com', 0) > -1) {
405
-
406
- $avatar = $this->renderAvatar($avatar, ($params['object'] == 'user') ? $params['item_id'] : '', ($params['object'] == 'user') ? (($params['type'] == 'thumb') ? 50 : 150) : 50, '', '');
407
- }
408
-
409
- return $avatar;
410
- }
411
-
412
- public function renderAvatarBPUrl($avatar, $params) {
413
-
414
- if (strpos($avatar, 'gravatar.com', 0) > -1) {
415
 
416
- $avatar = $this->renderAvatar($avatar, ($params['object'] == 'user') ? $params['item_id'] : '', ($params['object'] == 'user') ? (($params['type'] == 'thumb') ? 50 : 150) : 50, '', '');
417
  }
418
 
419
- return $avatar;
420
  }
421
 
422
  public function removeProfilePictureGravatarDescription($description) {
25
  // WP User Avatar https://wordpress.org/plugins/wp-user-avatar/
26
  // Ultimate member
27
  if (!defined('WPUA_VERSION') && !class_exists('UM', false) && !class_exists('buddypress', false)) {
 
 
 
 
 
 
 
 
 
28
 
29
+ add_filter('pre_get_avatar_data', array(
30
  $this,
31
+ 'preGetAvatarData'
32
+ ), 1, 2);
 
33
  }
34
 
35
  add_filter('post_mime_types', array(
58
  if (!isset($query['meta_query']) || !is_array($query['meta_query'])) {
59
  $query['meta_query'] = array();
60
  }
61
+ if (isset($query['post_mime_type']) && $query['post_mime_type'] === 'avatar') {
62
  $query['post_mime_type'] = 'image';
63
  $query['meta_query']['relation'] = 'AND';
64
  $query['meta_query'][] = array(
246
  if (isset($mime_to_ext[$mime])) {
247
 
248
  $wp_upload_dir = wp_upload_dir();
 
249
 
250
+ /**
251
+ * The name of the folder inside /wp-content/uploads where the user avatars will be uploaded.
252
+ * Can be changed by defining the NSL_AVATARS_FOLDER constant.
253
+ */
254
+ $nslUploadDirName = 'nsl_avatars';
255
+ if (defined('NSL_AVATARS_FOLDER')) {
256
+ $nslUploadDirName = NSL_AVATARS_FOLDER;
257
+ }
258
+ $nslUploadDir = trailingslashit($wp_upload_dir['basedir']) . $nslUploadDirName;
259
+
260
+ if (wp_mkdir_p($nslUploadDir)) {
261
+
262
+ $filename = wp_hash($user_id) . '.' . $mime_to_ext[$mime];
263
+ $filename = wp_unique_filename($nslUploadDir, $filename);
264
+
265
+ $newAvatarPath = trailingslashit($nslUploadDir) . $filename;
266
+ $newFile = @copy($avatarTempPath, $newAvatarPath);
267
+ @unlink($avatarTempPath);
268
+
269
+ if (false !== $newFile) {
270
+ $url = $wp_upload_dir['baseurl'] . '/' . $nslUploadDirName . '/' . basename($filename);
271
+ $newAvatarMD5 = md5_file($newAvatarPath);
272
+
273
+ if ($overwriteAttachment) {
274
+ $originalAvatarImage = get_attached_file($original_attachment_id);
275
+
276
+ // we got the same image, so we do not want to store it
277
+ if ($original_attachment_md5 === $newAvatarMD5) {
278
+ @unlink($newAvatarPath);
279
+ } else {
280
+ // Store the new avatar and remove the old one
281
+ @unlink($originalAvatarImage);
282
+
283
+ foreach (get_intermediate_image_sizes() as $size) {
284
+ /**
285
+ * Delete the previous Avatar sub-sizes to avoid orphan images
286
+ */
287
+ $originalAvatarSubsize = image_get_intermediate_size($original_attachment_id, $size);
288
+ if (isset($originalAvatarSubsize['path'])) {
289
+ $originalAvatarSubsizePath = trailingslashit($wp_upload_dir['basedir']) . $originalAvatarSubsize['path'];
290
+ if (file_exists($originalAvatarSubsizePath)) {
291
+ @unlink($originalAvatarSubsizePath);
292
+ }
293
+ }
294
+ }
295
 
296
+ update_attached_file($original_attachment_id, $newAvatarPath);
 
 
297
 
298
+ // Make sure that this file is included, as wp_generate_attachment_metadata() depends on it.
299
+ require_once(ABSPATH . 'wp-admin/includes/image.php');
 
300
 
301
+ wp_update_attachment_metadata($original_attachment_id, wp_generate_attachment_metadata($original_attachment_id, $newAvatarPath));
 
302
 
303
+ update_user_meta($user_id, $wpdb->get_blog_prefix($blog_id) . 'user_avatar', $original_attachment_id);
304
+ update_user_meta($user_id, 'nsl_user_avatar_md5', $newAvatarMD5);
305
+ }
306
  } else {
307
+ $attachment = array(
308
+ 'guid' => $url,
309
+ 'post_mime_type' => $mime,
310
+ 'post_title' => '',
311
+ 'post_content' => '',
312
+ 'post_status' => 'private',
313
+ );
 
314
 
315
+ $new_attachment_id = wp_insert_attachment($attachment, $newAvatarPath);
316
+ if (!is_wp_error($new_attachment_id)) {
 
 
 
 
 
 
 
 
 
 
 
 
317
 
318
+ // Make sure that this file is included, as wp_generate_attachment_metadata() depends on it.
319
+ require_once(ABSPATH . 'wp-admin/includes/image.php');
320
 
321
+ wp_update_attachment_metadata($new_attachment_id, wp_generate_attachment_metadata($new_attachment_id, $newAvatarPath));
322
 
323
+ update_post_meta($new_attachment_id, $provider->getId() . '_avatar', $provider->getAuthUserData('id'));
324
+ update_post_meta($new_attachment_id, '_wp_attachment_wp_user_avatar', $user_id);
325
 
326
+ update_user_meta($user_id, $wpdb->get_blog_prefix($blog_id) . 'user_avatar', $new_attachment_id);
327
+ update_user_meta($user_id, 'nsl_user_avatar_md5', $newAvatarMD5);
328
+ }
329
  }
330
  }
331
  }
335
  }
336
  }
337
 
338
+ public function preGetAvatarData($args, $id_or_email) {
339
  global $blog_id, $wpdb;
340
 
341
+ $id = NextendSocialLogin::getUserIDByIdOrEmail($id_or_email);
342
+
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
343
  if ($id == 0) {
344
+ return $args;
345
  }
346
 
 
 
347
  /**
348
  * Get the avatar attachment id of the user.
349
  */
350
  $attachment_id = get_user_meta($id, $wpdb->get_blog_prefix($blog_id) . 'user_avatar', true);
351
  if (wp_attachment_is_image($attachment_id)) {
352
+ $image_src_array = wp_get_attachment_image_src($attachment_id);
353
+
354
+ if (isset($args['size'])) {
355
+ $get_size = is_numeric($args['size']) ? array(
356
+ $args['size'],
357
+ $args['size']
358
+ ) : $args['size'];
359
+ $image_src_array = wp_get_attachment_image_src($attachment_id, $get_size);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
360
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
361
 
362
+ $args['url'] = $image_src_array[0];
363
  }
364
 
365
+ return $args;
366
  }
367
 
368
  public function removeProfilePictureGravatarDescription($description) {
includes/oauth2.php CHANGED
@@ -84,6 +84,8 @@ abstract class NextendSocialOauth2 extends NextendSocialAuth {
84
  $args['scope'] = urlencode($this->formatScopes($scopes));
85
  }
86
 
 
 
87
  return add_query_arg($args, $this->getEndpointAuthorization());
88
  }
89
 
84
  $args['scope'] = urlencode($this->formatScopes($scopes));
85
  }
86
 
87
+ $args = apply_filters('nsl_' . $this->providerID . '_auth_url_args', $args);
88
+
89
  return add_query_arg($args, $this->getEndpointAuthorization());
90
  }
91
 
includes/provider-admin.php CHANGED
@@ -92,6 +92,7 @@ class NextendSocialProviderAdmin {
92
 
93
  switch ($key) {
94
  case 'login_label':
 
95
  case 'link_label':
96
  case 'unlink_label':
97
  $newData[$key] = wp_kses_post($value);
92
 
93
  switch ($key) {
94
  case 'login_label':
95
+ case 'register_label':
96
  case 'link_label':
97
  case 'unlink_label':
98
  $newData[$key] = wp_kses_post($value);
includes/provider.php CHANGED
@@ -65,6 +65,7 @@ abstract class NextendSocialProvider extends NextendSocialProviderDummy {
65
  'custom_default_button' => '',
66
  'custom_icon_button' => '',
67
  'login_label' => '',
 
68
  'link_label' => '',
69
  'unlink_label' => '',
70
  'user_prefix' => '',
@@ -417,7 +418,7 @@ abstract class NextendSocialProvider extends NextendSocialProviderDummy {
417
  $socialUser->liveConnectGetUserProfile();
418
 
419
  $this->deleteLoginPersistentData();
420
- $this->redirectToLastLocationOther();
421
  }
422
 
423
  /**
@@ -582,7 +583,7 @@ abstract class NextendSocialProvider extends NextendSocialProviderDummy {
582
  return $this->getAuthUserData('id');
583
  }
584
 
585
- public function getConnectButton($buttonStyle = 'default', $redirectTo = null, $trackerData = false) {
586
  $arg = array();
587
  if (!empty($redirectTo)) {
588
  $arg['redirect'] = urlencode($redirectTo);
@@ -601,6 +602,12 @@ abstract class NextendSocialProvider extends NextendSocialProviderDummy {
601
 
602
  }
603
 
 
 
 
 
 
 
604
  switch ($buttonStyle) {
605
  case 'icon':
606
 
@@ -608,11 +615,11 @@ abstract class NextendSocialProvider extends NextendSocialProviderDummy {
608
  break;
609
  default:
610
 
611
- $button = $this->getDefaultButton($this->settings->get('login_label'));
612
  break;
613
  }
614
 
615
- return '<a href="' . esc_url(add_query_arg($arg, $this->getLoginUrl())) . '" rel="nofollow" aria-label="' . esc_attr__($this->settings->get('login_label')) . '" data-plugin="nsl" data-action="connect" data-provider="' . esc_attr($this->getId()) . '" data-popupwidth="' . $this->getPopupWidth() . '" data-popupheight="' . $this->getPopupHeight() . '">' . $button . '</a>';
616
  }
617
 
618
  public function getLinkButton() {
@@ -644,7 +651,7 @@ abstract class NextendSocialProvider extends NextendSocialProviderDummy {
644
  }
645
 
646
  public function redirectToLoginForm() {
647
- self::redirect(__('Authentication error', 'nextend-facebook-connect'), NextendSocialLogin::getLoginUrl());
648
  }
649
 
650
  /**
@@ -665,7 +672,7 @@ abstract class NextendSocialProvider extends NextendSocialProviderDummy {
665
  }
666
  }
667
 
668
- $this->redirectToLastLocationOther();
669
  exit;
670
  }
671
 
@@ -695,23 +702,34 @@ abstract class NextendSocialProvider extends NextendSocialProviderDummy {
695
  }
696
  }
697
 
698
- public function redirectToLastLocation() {
 
699
 
700
  if (Persistent::get($this->id . '_interim_login') == 1) {
701
  $this->deleteLoginPersistentData();
 
702
 
703
- $url = add_query_arg('interim_login', 'nsl', NextendSocialLogin::getLoginUrl('login'));
 
 
 
704
 
705
  self::redirect(__('Authentication successful', 'nextend-facebook-connect'), $url);
706
 
707
  exit;
708
  }
709
 
710
- self::redirect(__('Authentication successful', 'nextend-facebook-connect'), $this->getLastLocationRedirectTo());
 
 
 
711
  }
712
 
713
- protected function redirectToLastLocationOther() {
714
- $this->redirectToLastLocation();
 
 
 
715
  }
716
 
717
  protected function validateRedirect($location) {
65
  'custom_default_button' => '',
66
  'custom_icon_button' => '',
67
  'login_label' => '',
68
+ 'register_label' => '',
69
  'link_label' => '',
70
  'unlink_label' => '',
71
  'user_prefix' => '',
418
  $socialUser->liveConnectGetUserProfile();
419
 
420
  $this->deleteLoginPersistentData();
421
+ $this->redirectToLastLocationOther(true);
422
  }
423
 
424
  /**
583
  return $this->getAuthUserData('id');
584
  }
585
 
586
+ public function getConnectButton($buttonStyle = 'default', $redirectTo = null, $trackerData = false, $labelType = 'login') {
587
  $arg = array();
588
  if (!empty($redirectTo)) {
589
  $arg['redirect'] = urlencode($redirectTo);
602
 
603
  }
604
 
605
+ $label = $this->settings->get('login_label');
606
+ $useCustomRegisterLabel = NextendSocialLogin::$settings->get('custom_register_label');
607
+ if ($labelType == 'register' && $useCustomRegisterLabel) {
608
+ $label = $this->settings->get('register_label');;
609
+ }
610
+
611
  switch ($buttonStyle) {
612
  case 'icon':
613
 
615
  break;
616
  default:
617
 
618
+ $button = $this->getDefaultButton($label);
619
  break;
620
  }
621
 
622
+ return '<a href="' . esc_url(add_query_arg($arg, $this->getLoginUrl())) . '" rel="nofollow" aria-label="' . esc_attr__($label) . '" data-plugin="nsl" data-action="connect" data-provider="' . esc_attr($this->getId()) . '" data-popupwidth="' . $this->getPopupWidth() . '" data-popupheight="' . $this->getPopupHeight() . '">' . $button . '</a>';
623
  }
624
 
625
  public function getLinkButton() {
651
  }
652
 
653
  public function redirectToLoginForm() {
654
+ self::redirect(__('Authentication error', 'nextend-facebook-connect'), NextendSocialLogin::enableNoticeForUrl(NextendSocialLogin::getLoginUrl()));
655
  }
656
 
657
  /**
672
  }
673
  }
674
 
675
+ $this->redirectToLastLocationOther(true);
676
  exit;
677
  }
678
 
702
  }
703
  }
704
 
705
+ public function redirectToLastLocation($notice = false) {
706
+ $url = $this->getLastLocationRedirectTo();
707
 
708
  if (Persistent::get($this->id . '_interim_login') == 1) {
709
  $this->deleteLoginPersistentData();
710
+ $args['interim_login'] = 'nsl';
711
 
712
+ $url = add_query_arg($args, NextendSocialLogin::getLoginUrl('login'));
713
+ if ($notice) {
714
+ $url = NextendSocialLogin::enableNoticeForUrl($url);
715
+ }
716
 
717
  self::redirect(__('Authentication successful', 'nextend-facebook-connect'), $url);
718
 
719
  exit;
720
  }
721
 
722
+ if ($notice) {
723
+ $url = NextendSocialLogin::enableNoticeForUrl($url);
724
+ }
725
+ self::redirect(__('Authentication successful', 'nextend-facebook-connect'), $url);
726
  }
727
 
728
+ /**
729
+ * @param bool $notice
730
+ */
731
+ protected function redirectToLastLocationOther($notice = false) {
732
+ $this->redirectToLastLocation($notice);
733
  }
734
 
735
  protected function validateRedirect($location) {
includes/user.php CHANGED
@@ -74,12 +74,12 @@ class NextendSocialUser {
74
  Notices::addSuccess(sprintf(__('Your %1$s account is successfully linked with your account. Now you can sign in with %2$s easily.', 'nextend-facebook-connect'), $this->provider->getLabel(), $this->provider->getLabel()));
75
  } else {
76
 
77
- Notices::addError(sprintf(__('You have already linked a(n) %s account. Please unlink the current and then you can link other %s account.', 'nextend-facebook-connect'), $this->provider->getLabel(), $this->provider->getLabel()));
78
  }
79
 
80
  } else if ($current_user->ID != $user_id) {
81
 
82
- Notices::addError(sprintf(__('This %s account is already linked to other user.', 'nextend-facebook-connect'), $this->provider->getLabel()));
83
  }
84
  }
85
  }
@@ -107,6 +107,12 @@ class NextendSocialUser {
107
  } else {
108
  $user_id = email_exists($email);
109
  }
 
 
 
 
 
 
110
  if ($user_id === false) { // Real register
111
  if (apply_filters('nsl_is_register_allowed', true, $this->provider)) {
112
  $this->register($providerUserID, $email);
@@ -115,15 +121,51 @@ class NextendSocialUser {
115
  Persistent::delete($this->provider->getId() . '_at');
116
  Persistent::delete($this->provider->getId() . '_state');
117
 
 
 
 
 
 
118
 
119
  $proxyPage = NextendSocialLogin::getProxyPage();
120
  if ($proxyPage) {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
121
  $errors = new WP_Error();
122
- $errors->add('registerdisabled', apply_filters('nsl_disabled_register_error_message', __('User registration is currently not allowed.')));
123
  Notices::addError($errors->get_error_message());
124
  }
125
 
126
- NextendSocialProvider::redirect(__('Authentication error', 'nextend-facebook-connect'), apply_filters('nsl_disabled_register_redirect_url', add_query_arg('registration', 'disabled', NextendSocialLogin::getLoginUrl())));
 
 
 
 
 
127
  exit;
128
  }
129
 
@@ -278,7 +320,7 @@ class NextendSocialUser {
278
  Persistent::delete($this->provider->getId() . '_state');
279
 
280
  Notices::addError($errors);
281
- $this->redirectToLastLocationLogin();
282
  }
283
  }
284
 
@@ -339,7 +381,7 @@ class NextendSocialUser {
339
  if (is_wp_error($error)) {
340
 
341
  Notices::addError($error);
342
- $this->redirectToLastLocationLogin();
343
 
344
  } else if ($error === 0) {
345
  $this->registerError();
@@ -423,7 +465,11 @@ class NextendSocialUser {
423
  $this,
424
  'um_get_loginpage'
425
  ));
426
- do_action('um_user_register', $user_id, array());
 
 
 
 
427
  }
428
 
429
 
@@ -536,6 +582,21 @@ class NextendSocialUser {
536
  }
537
 
538
  $this->finishLogin();
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
539
  }
540
 
541
  $this->provider->redirectToLoginForm();
@@ -559,8 +620,10 @@ class NextendSocialUser {
559
  * -the Fixed redirect url if it is set
560
  * -where the login happened if redirect is specified in the url
561
  * -the Default redirect url if it is set, and if redirect was not specified in the url
 
 
562
  */
563
- public function redirectToLastLocationLogin() {
564
 
565
  if (NextendSocialLogin::$settings->get('redirect_prevent_external') == 0) {
566
  add_filter('nsl_' . $this->provider->getId() . 'default_last_location_redirect', array(
@@ -569,7 +632,7 @@ class NextendSocialUser {
569
  ), 9, 2);
570
  }
571
 
572
- $this->provider->redirectToLastLocation();
573
  }
574
 
575
  /**
74
  Notices::addSuccess(sprintf(__('Your %1$s account is successfully linked with your account. Now you can sign in with %2$s easily.', 'nextend-facebook-connect'), $this->provider->getLabel(), $this->provider->getLabel()));
75
  } else {
76
 
77
+ Notices::addError(sprintf(__('You have already linked a(n) %s account. Please unlink the current and then you can link another %s account.', 'nextend-facebook-connect'), $this->provider->getLabel(), $this->provider->getLabel()));
78
  }
79
 
80
  } else if ($current_user->ID != $user_id) {
81
 
82
+ Notices::addError(sprintf(__('This %s account is already linked to another user.', 'nextend-facebook-connect'), $this->provider->getLabel()));
83
  }
84
  }
85
  }
107
  } else {
108
  $user_id = email_exists($email);
109
  }
110
+
111
+ /**
112
+ * Can be used for overriding the account where the social account should be automatically linked to.
113
+ */
114
+ $user_id = apply_filters('nsl_match_social_account_to_user_id', $user_id, $this, $this->provider);
115
+
116
  if ($user_id === false) { // Real register
117
  if (apply_filters('nsl_is_register_allowed', true, $this->provider)) {
118
  $this->register($providerUserID, $email);
121
  Persistent::delete($this->provider->getId() . '_at');
122
  Persistent::delete($this->provider->getId() . '_state');
123
 
124
+ $registerDisabledMessage = apply_filters('nsl_disabled_register_error_message', '');
125
+ $registerDisabledRedirectURL = apply_filters('nsl_disabled_register_redirect_url', '');
126
+
127
+ $nslLoginUrl = NextendSocialLogin::getLoginUrl();
128
+ $defaultDisabledMessage = __('User registration is currently not allowed.');
129
 
130
  $proxyPage = NextendSocialLogin::getProxyPage();
131
  if ($proxyPage) {
132
+ if (empty($registerDisabledMessage)) {
133
+ /**
134
+ * There is no custom message and proxy page is used, so we need to inform the user with our own message.
135
+ */
136
+ $registerDisabledMessage = $defaultDisabledMessage;
137
+ }
138
+ } else {
139
+ if (empty($registerDisabledMessage)) {
140
+ if (!empty($registerDisabledRedirectURL)) {
141
+ /**
142
+ * There is no custom message and it is a custom redirect url, so we need to inform the user with our own message.
143
+ */
144
+ $registerDisabledMessage = $defaultDisabledMessage;
145
+ }
146
+ } else {
147
+ if (empty($registerDisabledRedirectURL)) {
148
+ /**
149
+ * By default WordPress displays an error message if the $_GET['registration'] is set to "disabled"
150
+ * To avoid displaying the default and the custom error message, the url should not contain it.
151
+ */
152
+ $registerDisabledRedirectURL = $nslLoginUrl;
153
+ }
154
+ }
155
+ }
156
+
157
+ if (!empty($registerDisabledMessage)) {
158
  $errors = new WP_Error();
159
+ $errors->add('registerdisabled', $registerDisabledMessage);
160
  Notices::addError($errors->get_error_message());
161
  }
162
 
163
+ if (empty($registerDisabledRedirectURL)) {
164
+ $registerDisabledRedirectURL = add_query_arg('registration', 'disabled', $nslLoginUrl);
165
+ }
166
+
167
+
168
+ NextendSocialProvider::redirect(__('Authentication error', 'nextend-facebook-connect'), NextendSocialLogin::enableNoticeForUrl($registerDisabledRedirectURL));
169
  exit;
170
  }
171
 
320
  Persistent::delete($this->provider->getId() . '_state');
321
 
322
  Notices::addError($errors);
323
+ $this->redirectToLastLocationLogin(true);
324
  }
325
  }
326
 
381
  if (is_wp_error($error)) {
382
 
383
  Notices::addError($error);
384
+ $this->redirectToLastLocationLogin(true);
385
 
386
  } else if ($error === 0) {
387
  $this->registerError();
465
  $this,
466
  'um_get_loginpage'
467
  ));
468
+ do_action('um_user_register', $user_id, array(
469
+ 'submitted' => array(
470
+ 'timestamp' => current_time('timestamp')
471
+ )
472
+ ));
473
  }
474
 
475
 
582
  }
583
 
584
  $this->finishLogin();
585
+ } else {
586
+ $this->provider->deleteLoginPersistentData();
587
+ $loginDisabledMessage = apply_filters('nsl_disabled_login_error_message', '');
588
+ $loginDisabledRedirectURL = apply_filters('nsl_disabled_login_redirect_url', '');
589
+ if (!empty($loginDisabledMessage)) {
590
+ Notices::clear();
591
+ $errors = new WP_Error();
592
+ $errors->add('logindisabled', $loginDisabledMessage);
593
+ Notices::addError($errors->get_error_message());
594
+ }
595
+
596
+ if (!empty($loginDisabledRedirectURL)) {
597
+ NextendSocialProvider::redirect(__('Authentication error', 'nextend-facebook-connect'), NextendSocialLogin::enableNoticeForUrl($loginDisabledRedirectURL));
598
+ }
599
+
600
  }
601
 
602
  $this->provider->redirectToLoginForm();
620
  * -the Fixed redirect url if it is set
621
  * -where the login happened if redirect is specified in the url
622
  * -the Default redirect url if it is set, and if redirect was not specified in the url
623
+ *
624
+ * @param bool $notice
625
  */
626
+ public function redirectToLastLocationLogin($notice = false) {
627
 
628
  if (NextendSocialLogin::$settings->get('redirect_prevent_external') == 0) {
629
  add_filter('nsl_' . $this->provider->getId() . 'default_last_location_redirect', array(
632
  ), 9, 2);
633
  }
634
 
635
+ $this->provider->redirectToLastLocation($notice);
636
  }
637
 
638
  /**
includes/userData.php CHANGED
@@ -74,7 +74,7 @@ class NextendSocialUserData {
74
  Notices::addError($this->errors->get_error_message());
75
  }
76
 
77
- wp_redirect(site_url('wp-login.php'));
78
  exit();
79
  }
80
  }
74
  Notices::addError($this->errors->get_error_message());
75
  }
76
 
77
+ wp_redirect(NextendSocialLogin::enableNoticeForUrl(site_url('wp-login.php')));
78
  exit();
79
  }
80
  }
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: 2020-08-25 13:37+0200\n"
5
- "PO-Revision-Date: 2020-08-25 13:37+0200\n"
6
  "Last-Translator: \n"
7
  "Language-Team: nextend-facebook-connect\n"
8
  "Language: de\n"
@@ -112,29 +112,29 @@ msgstr ""
112
  msgid "User"
113
  msgstr ""
114
 
115
- #: nextend-facebook-connect/admin/admin.php:203
116
  #, php-format
117
  msgid "%s needs json_decode function."
118
  msgstr ""
119
 
120
- #: nextend-facebook-connect/admin/admin.php:203
121
  msgid "Please contact your server administrator and ask for solution!"
122
  msgstr ""
123
 
124
- #: nextend-facebook-connect/admin/admin.php:235
125
- #: nextend-facebook-connect/admin/admin.php:265
126
  msgid "Settings saved."
127
  msgstr ""
128
 
129
- #: nextend-facebook-connect/admin/admin.php:244
130
  msgid "The activation was successful"
131
  msgstr ""
132
 
133
- #: nextend-facebook-connect/admin/admin.php:255
134
  msgid "Deactivate completed."
135
  msgstr ""
136
 
137
- #: nextend-facebook-connect/admin/admin.php:433
138
  #: nextend-facebook-connect/admin/templates-provider/menu.php:15
139
  #: nextend-facebook-connect/admin/templates/providers.php:89
140
  #: nextend-facebook-connect/admin/templates/providers.php:101
@@ -142,9 +142,9 @@ msgstr ""
142
  msgid "Settings"
143
  msgstr ""
144
 
145
- #: nextend-facebook-connect/admin/admin.php:516
146
- #: nextend-facebook-connect/includes/oauth2.php:141
147
- #: nextend-facebook-connect/includes/oauth2.php:286
148
  #: nextend-facebook-connect/providers/facebook/facebook-client.php:84
149
  #: nextend-facebook-connect/providers/twitter/twitter-client.php:165
150
  #: nextend-social-login-pro/providers/apple/apple-client.php:87
@@ -153,7 +153,7 @@ msgstr ""
153
  msgid "Unexpected response: %s"
154
  msgstr ""
155
 
156
- #: nextend-facebook-connect/admin/admin.php:577
157
  #: nextend-facebook-connect/admin/templates/fix-redirect-uri.php:21
158
  #, php-format
159
  msgid ""
@@ -161,31 +161,31 @@ msgid ""
161
  "URIs in the related social applications."
162
  msgstr ""
163
 
164
- #: nextend-facebook-connect/admin/admin.php:578
165
- #: nextend-social-login-pro/providers/apple/apple.php:308
166
  msgid "Fix Error"
167
  msgstr ""
168
 
169
- #: nextend-facebook-connect/admin/admin.php:578
170
  msgid "Oauth Redirect URI"
171
  msgstr ""
172
 
173
- #: nextend-facebook-connect/admin/admin.php:595
174
  #, php-format
175
  msgid ""
176
  "%1$s detected that %2$s installed on your site. You need the Pro Addon to "
177
  "display Social Login buttons in %2$s login form!"
178
  msgstr ""
179
 
180
- #: nextend-facebook-connect/admin/admin.php:596
181
  msgid "Dismiss and check Pro Addon"
182
  msgstr ""
183
 
184
- #: nextend-facebook-connect/admin/admin.php:596
185
  msgid "Dismiss"
186
  msgstr ""
187
 
188
- #: nextend-facebook-connect/admin/admin.php:602
189
  #, php-format
190
  msgid ""
191
  "%1$s detected that %2$s installed on your site. You must set \"<b>Page for "
@@ -193,35 +193,35 @@ msgid ""
193
  "work properly."
194
  msgstr ""
195
 
196
- #: nextend-facebook-connect/admin/admin.php:603
197
  msgid "Fix now"
198
  msgstr ""
199
 
200
- #: nextend-facebook-connect/admin/admin.php:627
201
  msgid "Activate your Pro Addon"
202
  msgstr ""
203
 
204
- #: nextend-facebook-connect/admin/admin.php:628
205
  msgid ""
206
  "To be able to use the Pro features, you need to activate Nextend Social "
207
  "Login Pro Addon. You can do this by clicking on the Activate button below "
208
  "then select the related purchase."
209
  msgstr ""
210
 
211
- #: nextend-facebook-connect/admin/admin.php:633
212
- #: nextend-social-login-pro/nextend-social-login-pro.php:94
213
  msgid "Activate"
214
  msgstr ""
215
 
216
- #: nextend-facebook-connect/admin/admin.php:731
217
  msgid "License key"
218
  msgstr ""
219
 
220
- #: nextend-facebook-connect/admin/admin.php:754
221
  msgid "OAuth proxy page"
222
  msgstr ""
223
 
224
- #: nextend-facebook-connect/admin/admin.php:757
225
  msgid "Register flow page"
226
  msgstr ""
227
 
@@ -230,46 +230,51 @@ msgstr ""
230
  msgid "You have logged in successfully."
231
  msgstr ""
232
 
233
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:79
234
  msgid "Login label"
235
  msgstr ""
236
 
237
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:84
238
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:95
239
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:106
240
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:135
241
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:165
 
242
  #: nextend-facebook-connect/admin/templates/settings/privacy.php:53
243
  msgid "Reset to default"
244
  msgstr ""
245
 
246
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:89
 
 
 
 
247
  msgid "Link label"
248
  msgstr ""
249
 
250
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:101
251
  msgid "Unlink label"
252
  msgstr ""
253
 
254
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:112
255
  msgid "Default button"
256
  msgstr ""
257
 
258
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:128
259
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:158
260
  msgid "Use custom button"
261
  msgstr ""
262
 
263
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:135
264
  #, php-format
265
  msgid "Use the %s in your custom button's code to make the label show up."
266
  msgstr ""
267
 
268
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:143
269
  msgid "Icon button"
270
  msgstr ""
271
 
272
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:174
273
  #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:140
274
  #: nextend-facebook-connect/admin/templates-provider/sync-data.php:104
275
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:170
@@ -282,8 +287,8 @@ msgstr ""
282
  #: nextend-facebook-connect/admin/templates/settings/privacy.php:109
283
  #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:186
284
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:167
285
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:326
286
- #: nextend-facebook-connect/providers/facebook/admin/settings.php:57
287
  #: nextend-facebook-connect/providers/google/admin/settings.php:62
288
  #: nextend-facebook-connect/providers/twitter/admin/settings.php:48
289
  #: nextend-social-login-pro/providers/amazon/admin/settings.php:47
@@ -408,7 +413,8 @@ msgstr ""
408
  #: nextend-facebook-connect/admin/templates/settings/general.php:213
409
  #: nextend-facebook-connect/admin/templates/settings/general.php:228
410
  #: nextend-facebook-connect/admin/templates/settings/general.php:246
411
- #: nextend-facebook-connect/includes/provider-admin.php:217
 
412
  msgid "Disabled"
413
  msgstr ""
414
 
@@ -702,7 +708,8 @@ msgstr ""
702
  #: nextend-facebook-connect/admin/templates/settings/general.php:216
703
  #: nextend-facebook-connect/admin/templates/settings/general.php:231
704
  #: nextend-facebook-connect/admin/templates/settings/general.php:249
705
- #: nextend-facebook-connect/includes/provider-admin.php:220
 
706
  #: nextend-facebook-connect/providers/google/admin/settings.php:53
707
  #: nextend-social-login-pro/providers/paypal/admin/settings.php:51
708
  msgid "Enabled"
@@ -713,17 +720,17 @@ msgid "Upgrade Now"
713
  msgstr ""
714
 
715
  #: nextend-facebook-connect/admin/templates/providers.php:77
716
- #: nextend-facebook-connect/includes/provider-admin.php:204
717
  msgid "Verify Settings"
718
  msgstr ""
719
 
720
  #: nextend-facebook-connect/admin/templates/providers.php:85
721
- #: nextend-facebook-connect/includes/provider-admin.php:249
722
  msgid "Enable"
723
  msgstr ""
724
 
725
  #: nextend-facebook-connect/admin/templates/providers.php:97
726
- #: nextend-facebook-connect/includes/provider-admin.php:257
727
  msgid "Disable"
728
  msgstr ""
729
 
@@ -1249,6 +1256,18 @@ msgstr ""
1249
  msgid "Allow registration with Social login."
1250
  msgstr ""
1251
 
 
 
 
 
 
 
 
 
 
 
 
 
1252
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:29
1253
  #: nextend-facebook-connect/admin/templates/settings/memberpress.php:33
1254
  #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:33
@@ -1335,7 +1354,7 @@ msgid "Link buttons after account details"
1335
  msgstr ""
1336
 
1337
  #: nextend-facebook-connect/admin/templates/settings/privacy.php:6
1338
- #: nextend-facebook-connect/nextend-social-login.php:143
1339
  msgid ""
1340
  "By clicking Register, you accept our <a href=\"#privacy_policy_url\" target="
1341
  "\"_blank\">Privacy Policy</a>"
@@ -1363,12 +1382,12 @@ msgid "When not enabled, email will be empty."
1363
  msgstr ""
1364
 
1365
  #: nextend-facebook-connect/admin/templates/settings/privacy.php:91
1366
- #: nextend-facebook-connect/includes/avatar.php:59
1367
  msgid "Avatar"
1368
  msgstr ""
1369
 
1370
  #: nextend-facebook-connect/admin/templates/settings/privacy.php:102
1371
- #: nextend-facebook-connect/includes/provider.php:1082
1372
  msgid "Access token"
1373
  msgstr ""
1374
 
@@ -1436,6 +1455,25 @@ msgstr ""
1436
  msgid "Link buttons on"
1437
  msgstr ""
1438
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1439
  #: nextend-facebook-connect/admin/templates/test-connection.php:42
1440
  #, php-format
1441
  msgid "Network connection successful: %1$s"
@@ -1452,18 +1490,17 @@ msgid ""
1452
  "between your server and the provider."
1453
  msgstr ""
1454
 
1455
- #: nextend-facebook-connect/includes/avatar.php:60
1456
  msgid "Manage Avatar"
1457
  msgstr ""
1458
 
1459
- #: nextend-facebook-connect/includes/avatar.php:61
1460
  #, php-format
1461
  msgid "Avatar <span class=\"count\">(%s)</span>"
1462
  msgid_plural "Avatar <span class=\"count\">(%s)</span>"
1463
  msgstr[0] ""
1464
  msgstr[1] ""
1465
 
1466
- #. translators: Login screen title. 1: Login screen name, 2: Network or site name
1467
  #: nextend-facebook-connect/includes/compat-wp-login.php:63
1468
  #, php-format
1469
  msgid "%1$s &lsaquo; %2$s &#8212; WordPress"
@@ -1477,18 +1514,17 @@ msgstr ""
1477
  msgid "Powered by WordPress"
1478
  msgstr ""
1479
 
1480
- #. translators: %s: site title
1481
  #: nextend-facebook-connect/includes/compat-wp-login.php:284
1482
  #, php-format
1483
  msgctxt "site"
1484
  msgid "&larr; Back to %s"
1485
  msgstr ""
1486
 
1487
- #: nextend-facebook-connect/includes/provider-admin.php:198
1488
  msgid "Your configuration needs to be verified"
1489
  msgstr ""
1490
 
1491
- #: nextend-facebook-connect/includes/provider-admin.php:199
1492
  msgid ""
1493
  "Before you can start letting your users register with your app it needs to "
1494
  "be tested. This test makes sure that no users will have troubles with the "
@@ -1497,76 +1533,77 @@ msgid ""
1497
  "are fine."
1498
  msgstr ""
1499
 
1500
- #: nextend-facebook-connect/includes/provider-admin.php:205
1501
  msgid "Please save your changes to verify settings."
1502
  msgstr ""
1503
 
1504
- #: nextend-facebook-connect/includes/provider-admin.php:213
1505
  msgid "Works Fine"
1506
  msgstr ""
1507
 
1508
- #: nextend-facebook-connect/includes/provider-admin.php:227
1509
  #, php-format
1510
  msgid ""
1511
  "This provider is currently disabled, which means that users can’t register "
1512
  "or login via their %s account."
1513
  msgstr ""
1514
 
1515
- #: nextend-facebook-connect/includes/provider-admin.php:230
1516
  #, php-format
1517
  msgid ""
1518
  "This provider works fine, but you can test it again. If you don’t want to "
1519
  "let users register or login with %s anymore you can disable it."
1520
  msgstr ""
1521
 
1522
- #: nextend-facebook-connect/includes/provider-admin.php:233
1523
  #, php-format
1524
  msgid ""
1525
  "This provider is currently enabled, which means that users can register or "
1526
  "login via their %s account."
1527
  msgstr ""
1528
 
1529
- #: nextend-facebook-connect/includes/provider-admin.php:241
1530
  msgid "Verify Settings Again"
1531
  msgstr ""
1532
 
1533
- #: nextend-facebook-connect/includes/provider-admin.php:242
1534
  msgid "Please save your changes before verifying settings."
1535
  msgstr ""
1536
 
1537
- #: nextend-facebook-connect/includes/provider.php:357
1538
- #: nextend-facebook-connect/includes/provider.php:705
1539
- #: nextend-facebook-connect/includes/provider.php:710
1540
  msgid "Authentication successful"
1541
  msgstr ""
1542
 
1543
- #: nextend-facebook-connect/includes/provider.php:647
1544
- #: nextend-facebook-connect/includes/user.php:126
 
1545
  msgid "Authentication error"
1546
  msgstr ""
1547
 
1548
- #: nextend-facebook-connect/includes/provider.php:662
1549
  msgid "Unlink successful."
1550
  msgstr ""
1551
 
1552
- #: nextend-facebook-connect/includes/provider.php:664
1553
  msgid "Unlink is not allowed!"
1554
  msgstr ""
1555
 
1556
- #: nextend-facebook-connect/includes/provider.php:868
1557
- #: nextend-facebook-connect/includes/provider.php:875
1558
  msgid "The test was successful"
1559
  msgstr ""
1560
 
1561
- #: nextend-facebook-connect/includes/provider.php:921
1562
  msgid "Authentication failed"
1563
  msgstr ""
1564
 
1565
- #: nextend-facebook-connect/includes/provider.php:1074
1566
  msgid "Identifier"
1567
  msgstr ""
1568
 
1569
- #: nextend-facebook-connect/includes/provider.php:1090
1570
  msgid "Profile picture"
1571
  msgstr ""
1572
 
@@ -1581,15 +1618,15 @@ msgstr ""
1581
  #, php-format
1582
  msgid ""
1583
  "You have already linked a(n) %s account. Please unlink the current and then "
1584
- "you can link other %s account."
1585
  msgstr ""
1586
 
1587
  #: nextend-facebook-connect/includes/user.php:82
1588
  #, php-format
1589
- msgid "This %s account is already linked to other user."
1590
  msgstr ""
1591
 
1592
- #: nextend-facebook-connect/includes/user.php:122
1593
  msgid "User registration is currently not allowed."
1594
  msgstr ""
1595
 
@@ -1597,14 +1634,12 @@ msgstr ""
1597
  msgid "Register For This Site!"
1598
  msgstr ""
1599
 
1600
- #. translators: %2$s: PHP version
1601
- #: nextend-facebook-connect/nextend-facebook-connect.php:34
1602
  #, php-format
1603
  msgid "%1$s requires PHP version %2$s+, plugin is currently NOT ACTIVE."
1604
  msgstr ""
1605
 
1606
- #. translators: %2$s: WordPress version
1607
- #: nextend-facebook-connect/nextend-facebook-connect.php:41
1608
  #, php-format
1609
  msgid ""
1610
  "%1$s requires WordPress version %2$s+. Because you are using an earlier "
@@ -1622,12 +1657,12 @@ msgstr ""
1622
  msgid "Update now!"
1623
  msgstr ""
1624
 
1625
- #: nextend-facebook-connect/nextend-social-login.php:749
1626
- #: nextend-facebook-connect/nextend-social-login.php:1125
1627
  msgid "Social Login"
1628
  msgstr ""
1629
 
1630
- #: nextend-facebook-connect/nextend-social-login.php:1106
1631
  msgid "Social Accounts"
1632
  msgstr ""
1633
 
@@ -1692,7 +1727,7 @@ msgid "In the left sidebar, click on \"<b>Facebook Login > Settings</b>\""
1692
  msgstr ""
1693
 
1694
  #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:12
1695
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:34
1696
  #, php-format
1697
  msgid ""
1698
  "Add the following URL to the \"<b>Valid OAuth redirect URIs</b>\" field: <b>"
@@ -1775,7 +1810,9 @@ msgid "Navigate to %s"
1775
  msgstr ""
1776
 
1777
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:26
1778
- msgid "Click on the \"<b>Add a New App\" button</b>"
 
 
1779
  msgstr ""
1780
 
1781
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:27
@@ -1788,89 +1825,133 @@ msgstr ""
1788
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:28
1789
  #, php-format
1790
  msgid ""
1791
- "Fill \"<b>Display Name</b>\" and \"<b>Contact Email</b>\". The specified "
1792
- "\"Display Name\" will appear on your %s!"
1793
  msgstr ""
1794
 
1795
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:29
1796
  msgid ""
1797
- "Click the \"<b>Create App ID</b>\" button and complete the Security Check."
 
1798
  msgstr ""
1799
 
1800
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:30
 
 
 
 
 
1801
  #, php-format
1802
  msgid ""
1803
  "At the \"<b>Add a Product</b>\" panel find \"<b>%1$s</b>\" and click "
1804
  "\"<b>Set Up</b>\""
1805
  msgstr ""
1806
 
1807
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:31
1808
  #, php-format
1809
  msgid ""
1810
  "Select \"<b>Web</b>\" and enter the following URL to the \"<b>Site URL</b>\" "
1811
  "field: <b>%s</b>"
1812
  msgstr ""
1813
 
1814
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:32
1815
  msgid "Press “<b>Save</b>”"
1816
  msgstr ""
1817
 
1818
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:33
1819
  #, php-format
1820
  msgid ""
1821
  "Click on the “<b>%1$s</b>” option what you find on the left side, under “<b>"
1822
  "%2$s</b> - <b>%3$s</b>”"
1823
  msgstr ""
1824
 
1825
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:35
1826
  msgid "Click on “<b>Save Changes</b>”"
1827
  msgstr ""
1828
 
1829
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:36
1830
  #, php-format
1831
  msgid ""
1832
  "On the top left side, click on the “<b>%1$s</b>” menu point, then click “<b>"
1833
  "%2$s</b>”"
1834
  msgstr ""
1835
 
1836
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:37
1837
  #, php-format
1838
  msgid ""
1839
  "Enter your domain name to the \"<b>App Domains</b>\" field, probably: <b>%s</"
1840
  "b>"
1841
  msgstr ""
1842
 
1843
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:38
1844
  msgid ""
1845
  "Fill up the \"<b>Privacy Policy URL</b>\" field. Provide a publicly "
1846
  "available and easily accessible privacy policy that explains what data you "
1847
  "are collecting and how you will use that data."
1848
  msgstr ""
1849
 
1850
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:39
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1851
  msgid ""
1852
- "Select a “<b>Category</b>”, an “<b>App Icon</b>” and pick the “<b>Business "
1853
- "Use</b>” option that describes your the App best, then press \"<b>Save "
 
 
 
 
 
 
 
 
1854
  "Changes</b>\""
1855
  msgstr ""
1856
 
1857
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:40
1858
  msgid ""
1859
  "Your application is currently private, which means that only you can log in "
1860
  "with it. In the top bar click on the switch next to the \"<b>In development</"
1861
  "b>\" label, then click the \"<b>Switch Mode</b>\" button."
1862
  msgstr ""
1863
 
1864
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:41
1865
  msgid ""
1866
  "At the top of the page you can find your \"<b>App ID</b>\" and you can see "
1867
  "your \"<b>App secret</b>\" if you click on the \"Show\" button. These will "
1868
  "be needed in plugin’s settings."
1869
  msgstr ""
1870
 
1871
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:45
 
 
 
 
 
 
 
 
 
 
 
1872
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:40
1873
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:32
1874
  #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:39
1875
  #: nextend-social-login-pro/providers/apple/admin/getting-started.php:122
1876
  #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:30
@@ -1940,38 +2021,53 @@ msgstr ""
1940
  msgid "App Secret"
1941
  msgstr ""
1942
 
1943
- #: nextend-facebook-connect/providers/facebook/facebook.php:84
1944
- msgid "Continue with <b>Facebook</b>"
 
 
 
 
 
 
 
1945
  msgstr ""
1946
 
1947
  #: nextend-facebook-connect/providers/facebook/facebook.php:85
1948
- msgid "Link account with <b>Facebook</b>"
1949
  msgstr ""
1950
 
1951
  #: nextend-facebook-connect/providers/facebook/facebook.php:86
 
 
 
 
 
 
 
 
1952
  msgid "Unlink account from <b>Facebook</b>"
1953
  msgstr ""
1954
 
1955
- #: nextend-facebook-connect/providers/facebook/facebook.php:186
1956
- #: nextend-facebook-connect/providers/google/google.php:174
1957
- #: nextend-facebook-connect/providers/twitter/twitter.php:95
1958
- #: nextend-social-login-pro/providers/amazon/amazon.php:65
1959
- #: nextend-social-login-pro/providers/apple/apple.php:129
1960
- #: nextend-social-login-pro/providers/apple/apple.php:136
1961
- #: nextend-social-login-pro/providers/disqus/disqus.php:112
1962
- #: nextend-social-login-pro/providers/github/github.php:150
1963
- #: nextend-social-login-pro/providers/linkedin/linkedin.php:63
1964
- #: nextend-social-login-pro/providers/paypal/paypal.php:90
1965
- #: nextend-social-login-pro/providers/vk/vk.php:61
1966
- #: nextend-social-login-pro/providers/wordpress/wordpress.php:99
1967
- #: nextend-social-login-pro/providers/yahoo/yahoo.php:90
1968
  #, php-format
1969
  msgid ""
1970
  "The %1$s entered did not appear to be a valid. Please enter a valid %2$s."
1971
  msgstr ""
1972
 
1973
- #: nextend-facebook-connect/providers/facebook/facebook.php:307
1974
- #: nextend-social-login-pro/providers/paypal/paypal.php:170
1975
  #, php-format
1976
  msgid "Required scope: %1$s"
1977
  msgstr ""
@@ -2119,42 +2215,57 @@ msgid ""
2119
  "Disable, when you don't want to see the account select prompt on each login."
2120
  msgstr ""
2121
 
2122
- #: nextend-facebook-connect/providers/google/google.php:106
2123
  msgid "Continue with <b>Google</b>"
2124
  msgstr ""
2125
 
2126
- #: nextend-facebook-connect/providers/google/google.php:107
 
 
 
 
2127
  msgid "Link account with <b>Google</b>"
2128
  msgstr ""
2129
 
2130
- #: nextend-facebook-connect/providers/google/google.php:108
2131
  msgid "Unlink account from <b>Google</b>"
2132
  msgstr ""
2133
 
2134
- #: nextend-facebook-connect/providers/google/google.php:301
2135
  #, php-format
2136
  msgid "Required API: %1$s"
2137
  msgstr ""
2138
 
2139
  #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:10
2140
- msgid "Find your App and click on the \"<b>Details</b>\" button"
 
 
2141
  msgstr ""
2142
 
2143
  #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:11
2144
- msgid ""
2145
- "The <b>Edit</b> button can be found on the App details tab. Click on it and "
2146
- "select \"<b>Edit details</b>\""
2147
  msgstr ""
2148
 
2149
  #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:12
2150
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:22
2151
  #, php-format
2152
  msgid "Add the following URL to the \"<b>Callback URLs</b>\" field: <b>%s</b>"
2153
  msgstr ""
2154
 
2155
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:17
 
 
 
 
 
 
 
 
 
 
 
2156
  #, php-format
2157
- msgid "Log in with your %s credentials if you are not logged in yet"
2158
  msgstr ""
2159
 
2160
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:18
@@ -2171,44 +2282,68 @@ msgid ""
2171
  msgstr ""
2172
 
2173
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:20
2174
- #, php-format
2175
- msgid ""
2176
- "Fill the <b>App name</b>, <b>Application description</b> fields. Then enter "
2177
- "your site's URL to the <b>Website URL</b> field: <b>%s</b>"
2178
  msgstr ""
2179
 
2180
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:21
2181
- msgid "Tick the checkbox next to <b>Enable Sign in with Twitter</b>!"
 
 
 
 
 
 
2182
  msgstr ""
2183
 
2184
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:23
2185
  msgid ""
2186
- "Fill the “<b>Terms of Service URL</b>\", \"<b>Privacy policy URL</b>\" and "
2187
- "\"<b>Tell us how this app will be used</b>\" fields!"
 
2188
  msgstr ""
2189
 
2190
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:24
2191
- msgid "Click the <b>Create</b> button."
 
2192
  msgstr ""
2193
 
2194
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:25
2195
- msgid "Read the Developer Terms and click the <b>Create</b> button again!"
2196
  msgstr ""
2197
 
2198
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:26
2199
- msgid "Select the <b>Permissions</b> tab and click <b>Edit</b>."
2200
  msgstr ""
2201
 
2202
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:27
2203
- msgid ""
2204
- "Tick the <b>Request email address from users</b> under the Additional "
2205
- "permissions section and click <b>Save</b>."
2206
  msgstr ""
2207
 
2208
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:28
 
 
 
 
 
 
 
 
 
 
2209
  msgid ""
2210
- "Go to the <b>Keys and tokens</b> tab and find the <b>API key</b> and <b>API "
2211
- "secret key</b>"
 
 
 
 
 
 
 
 
 
 
 
2212
  msgstr ""
2213
 
2214
  #: nextend-facebook-connect/providers/twitter/admin/settings.php:27
@@ -2228,15 +2363,19 @@ msgstr ""
2228
  msgid "Original"
2229
  msgstr ""
2230
 
2231
- #: nextend-facebook-connect/providers/twitter/twitter.php:69
2232
  msgid "Continue with <b>Twitter</b>"
2233
  msgstr ""
2234
 
2235
- #: nextend-facebook-connect/providers/twitter/twitter.php:70
 
 
 
 
2236
  msgid "Link account with <b>Twitter</b>"
2237
  msgstr ""
2238
 
2239
- #: nextend-facebook-connect/providers/twitter/twitter.php:71
2240
  msgid "Unlink account from <b>Twitter</b>"
2241
  msgstr ""
2242
 
@@ -2354,20 +2493,20 @@ msgid ""
2354
  "with %1$s."
2355
  msgstr ""
2356
 
2357
- #: nextend-social-login-pro/nextend-social-login-pro.php:88
2358
  #, php-format
2359
  msgid "Please install and activate %1$s to use the %2$s"
2360
  msgstr ""
2361
 
2362
- #: nextend-social-login-pro/nextend-social-login-pro.php:102
2363
  msgid "Network Activate"
2364
  msgstr ""
2365
 
2366
- #: nextend-social-login-pro/nextend-social-login-pro.php:114
2367
  msgid "Install now!"
2368
  msgstr ""
2369
 
2370
- #: nextend-social-login-pro/nextend-social-login-pro.php:787
2371
  msgid "Social Providers"
2372
  msgstr ""
2373
 
@@ -2378,7 +2517,7 @@ msgid ""
2378
  "latest %2$s version!"
2379
  msgstr ""
2380
 
2381
- #: nextend-social-login-pro/provider-extensions/google.php:176
2382
  #, php-format
2383
  msgid ""
2384
  "Most of these information can only be retrieved, when the field is marked as "
@@ -2425,21 +2564,6 @@ msgid ""
2425
  "%1$s App."
2426
  msgstr ""
2427
 
2428
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:25
2429
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:38
2430
- #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:9
2431
- #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:16
2432
- #: nextend-social-login-pro/providers/github/admin/getting-started.php:16
2433
- #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:9
2434
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:17
2435
- #: nextend-social-login-pro/providers/vk/admin/getting-started.php:16
2436
- #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:9
2437
- #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:16
2438
- #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:17
2439
- #, php-format
2440
- msgid "Log in with your %s credentials if you are not logged in."
2441
- msgstr ""
2442
-
2443
  #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:27
2444
  msgid ""
2445
  "If you don't have a Security Profile yet, you'll need to create one. You can "
@@ -2475,15 +2599,19 @@ msgid ""
2475
  "middle of the page, under the \"<b>Web Settings</b>\" tab."
2476
  msgstr ""
2477
 
2478
- #: nextend-social-login-pro/providers/amazon/amazon.php:39
2479
  msgid "Continue with <b>Amazon</b>"
2480
  msgstr ""
2481
 
2482
- #: nextend-social-login-pro/providers/amazon/amazon.php:40
 
 
 
 
2483
  msgid "Link account with <b>Amazon</b>"
2484
  msgstr ""
2485
 
2486
- #: nextend-social-login-pro/providers/amazon/amazon.php:41
2487
  msgid "Unlink account from <b>Amazon</b>"
2488
  msgstr ""
2489
 
@@ -2788,47 +2916,51 @@ msgstr ""
2788
  msgid "Generate Token"
2789
  msgstr ""
2790
 
2791
- #: nextend-social-login-pro/providers/apple/apple.php:82
2792
  msgid "Continue with <b>Apple</b>"
2793
  msgstr ""
2794
 
2795
- #: nextend-social-login-pro/providers/apple/apple.php:83
 
 
 
 
2796
  msgid "Link account with <b>Apple</b>"
2797
  msgstr ""
2798
 
2799
- #: nextend-social-login-pro/providers/apple/apple.php:84
2800
  msgid "Unlink account from <b>Apple</b>"
2801
  msgstr ""
2802
 
2803
- #: nextend-social-login-pro/providers/apple/apple.php:178
2804
  #, php-format
2805
  msgid "An error occurred when storing of the expiration timestamp : %1$s"
2806
  msgstr ""
2807
 
2808
- #: nextend-social-login-pro/providers/apple/apple.php:182
2809
- #: nextend-social-login-pro/providers/apple/apple.php:280
2810
- #: nextend-social-login-pro/providers/apple/apple.php:295
2811
- #: nextend-social-login-pro/providers/apple/apple.php:339
2812
  #, php-format
2813
  msgid "Token generation failed: %1$s"
2814
  msgstr ""
2815
 
2816
- #: nextend-social-login-pro/providers/apple/apple.php:182
2817
  msgid "Please check your credentials!"
2818
  msgstr ""
2819
 
2820
- #: nextend-social-login-pro/providers/apple/apple.php:280
2821
  msgid "Private key format is not valid!"
2822
  msgstr ""
2823
 
2824
- #: nextend-social-login-pro/providers/apple/apple.php:306
2825
  #, php-format
2826
  msgid ""
2827
  "%s detected that your Apple credentials have expired. Please delete the "
2828
  "current credentials and generate new one!"
2829
  msgstr ""
2830
 
2831
- #: nextend-social-login-pro/providers/apple/apple.php:308
2832
  msgid "Apple Credentials"
2833
  msgstr ""
2834
 
@@ -2905,15 +3037,19 @@ msgstr ""
2905
  msgid "API Secret"
2906
  msgstr ""
2907
 
2908
- #: nextend-social-login-pro/providers/disqus/disqus.php:86
2909
  msgid "Continue with <b>Disqus</b>"
2910
  msgstr ""
2911
 
2912
- #: nextend-social-login-pro/providers/disqus/disqus.php:87
 
 
 
 
2913
  msgid "Link account with <b>Disqus</b>"
2914
  msgstr ""
2915
 
2916
- #: nextend-social-login-pro/providers/disqus/disqus.php:88
2917
  msgid "Unlink account from <b>Disqus</b>"
2918
  msgstr ""
2919
 
@@ -2987,15 +3123,19 @@ msgid ""
2987
  "public email address set at the %1$s profile page%2$s!"
2988
  msgstr ""
2989
 
2990
- #: nextend-social-login-pro/providers/github/github.php:124
2991
  msgid "Continue with <b>GitHub</b>"
2992
  msgstr ""
2993
 
2994
- #: nextend-social-login-pro/providers/github/github.php:125
 
 
 
 
2995
  msgid "Link account with <b>GitHub</b>"
2996
  msgstr ""
2997
 
2998
- #: nextend-social-login-pro/providers/github/github.php:126
2999
  msgid "Unlink account from <b>GitHub</b>"
3000
  msgstr ""
3001
 
@@ -3077,15 +3217,19 @@ msgid ""
3077
  "the Application credentials section, on the <b>Auth</b> tab."
3078
  msgstr ""
3079
 
3080
- #: nextend-social-login-pro/providers/linkedin/linkedin.php:37
3081
  msgid "Continue with <b>LinkedIn</b>"
3082
  msgstr ""
3083
 
3084
- #: nextend-social-login-pro/providers/linkedin/linkedin.php:38
 
 
 
 
3085
  msgid "Link account with <b>LinkedIn</b>"
3086
  msgstr ""
3087
 
3088
- #: nextend-social-login-pro/providers/linkedin/linkedin.php:39
3089
  msgid "Unlink account from <b>LinkedIn</b>"
3090
  msgstr ""
3091
 
@@ -3186,15 +3330,19 @@ msgstr ""
3186
  msgid "Disable, when you have no rights for email address."
3187
  msgstr ""
3188
 
3189
- #: nextend-social-login-pro/providers/paypal/paypal.php:64
3190
  msgid "Continue with <b>PayPal</b>"
3191
  msgstr ""
3192
 
3193
- #: nextend-social-login-pro/providers/paypal/paypal.php:65
 
 
 
 
3194
  msgid "Link account with <b>PayPal</b>"
3195
  msgstr ""
3196
 
3197
- #: nextend-social-login-pro/providers/paypal/paypal.php:66
3198
  msgid "Unlink account from <b>PayPal</b>"
3199
  msgstr ""
3200
 
@@ -3271,15 +3419,19 @@ msgstr ""
3271
  msgid "Secure key"
3272
  msgstr ""
3273
 
3274
- #: nextend-social-login-pro/providers/vk/vk.php:35
3275
  msgid "Continue with <b>VK</b>"
3276
  msgstr ""
3277
 
3278
- #: nextend-social-login-pro/providers/vk/vk.php:36
 
 
 
 
3279
  msgid "Link account with <b>VK</b>"
3280
  msgstr ""
3281
 
3282
- #: nextend-social-login-pro/providers/vk/vk.php:37
3283
  msgid "Unlink account from <b>VK</b>"
3284
  msgstr ""
3285
 
@@ -3336,15 +3488,19 @@ msgid ""
3336
  "These will be needed in the plugin's settings."
3337
  msgstr ""
3338
 
3339
- #: nextend-social-login-pro/providers/wordpress/wordpress.php:73
3340
  msgid "Continue with <b>WordPress.com</b>"
3341
  msgstr ""
3342
 
3343
- #: nextend-social-login-pro/providers/wordpress/wordpress.php:74
 
 
 
 
3344
  msgid "Link account with <b>WordPress.com</b>"
3345
  msgstr ""
3346
 
3347
- #: nextend-social-login-pro/providers/wordpress/wordpress.php:75
3348
  msgid "Unlink account from <b>WordPress.com</b>"
3349
  msgstr ""
3350
 
@@ -3395,19 +3551,23 @@ msgid ""
3395
  "\"<b>Client Secret</b>\"! These will be needed in the plugin's settings."
3396
  msgstr ""
3397
 
3398
- #: nextend-social-login-pro/providers/yahoo/yahoo.php:64
3399
  msgid "Continue with <b>Yahoo</b>"
3400
  msgstr ""
3401
 
3402
- #: nextend-social-login-pro/providers/yahoo/yahoo.php:65
 
 
 
 
3403
  msgid "Link account with <b>Yahoo</b>"
3404
  msgstr ""
3405
 
3406
- #: nextend-social-login-pro/providers/yahoo/yahoo.php:66
3407
  msgid "Unlink account from <b>Yahoo</b>"
3408
  msgstr ""
3409
 
3410
- #: nextend-social-login-pro/providers/yahoo/yahoo.php:186
3411
  #, php-format
3412
  msgid "Required permission: %1$s"
3413
  msgstr ""
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: nextend-facebook-connect\n"
4
+ "POT-Creation-Date: 2021-01-27 13:56+0100\n"
5
+ "PO-Revision-Date: 2021-01-27 13:56+0100\n"
6
  "Last-Translator: \n"
7
  "Language-Team: nextend-facebook-connect\n"
8
  "Language: de\n"
112
  msgid "User"
113
  msgstr ""
114
 
115
+ #: nextend-facebook-connect/admin/admin.php:206
116
  #, php-format
117
  msgid "%s needs json_decode function."
118
  msgstr ""
119
 
120
+ #: nextend-facebook-connect/admin/admin.php:206
121
  msgid "Please contact your server administrator and ask for solution!"
122
  msgstr ""
123
 
124
+ #: nextend-facebook-connect/admin/admin.php:238
125
+ #: nextend-facebook-connect/admin/admin.php:268
126
  msgid "Settings saved."
127
  msgstr ""
128
 
129
+ #: nextend-facebook-connect/admin/admin.php:247
130
  msgid "The activation was successful"
131
  msgstr ""
132
 
133
+ #: nextend-facebook-connect/admin/admin.php:258
134
  msgid "Deactivate completed."
135
  msgstr ""
136
 
137
+ #: nextend-facebook-connect/admin/admin.php:437
138
  #: nextend-facebook-connect/admin/templates-provider/menu.php:15
139
  #: nextend-facebook-connect/admin/templates/providers.php:89
140
  #: nextend-facebook-connect/admin/templates/providers.php:101
142
  msgid "Settings"
143
  msgstr ""
144
 
145
+ #: nextend-facebook-connect/admin/admin.php:520
146
+ #: nextend-facebook-connect/includes/oauth2.php:143
147
+ #: nextend-facebook-connect/includes/oauth2.php:288
148
  #: nextend-facebook-connect/providers/facebook/facebook-client.php:84
149
  #: nextend-facebook-connect/providers/twitter/twitter-client.php:165
150
  #: nextend-social-login-pro/providers/apple/apple-client.php:87
153
  msgid "Unexpected response: %s"
154
  msgstr ""
155
 
156
+ #: nextend-facebook-connect/admin/admin.php:581
157
  #: nextend-facebook-connect/admin/templates/fix-redirect-uri.php:21
158
  #, php-format
159
  msgid ""
161
  "URIs in the related social applications."
162
  msgstr ""
163
 
164
+ #: nextend-facebook-connect/admin/admin.php:582
165
+ #: nextend-social-login-pro/providers/apple/apple.php:310
166
  msgid "Fix Error"
167
  msgstr ""
168
 
169
+ #: nextend-facebook-connect/admin/admin.php:582
170
  msgid "Oauth Redirect URI"
171
  msgstr ""
172
 
173
+ #: nextend-facebook-connect/admin/admin.php:599
174
  #, php-format
175
  msgid ""
176
  "%1$s detected that %2$s installed on your site. You need the Pro Addon to "
177
  "display Social Login buttons in %2$s login form!"
178
  msgstr ""
179
 
180
+ #: nextend-facebook-connect/admin/admin.php:600
181
  msgid "Dismiss and check Pro Addon"
182
  msgstr ""
183
 
184
+ #: nextend-facebook-connect/admin/admin.php:600
185
  msgid "Dismiss"
186
  msgstr ""
187
 
188
+ #: nextend-facebook-connect/admin/admin.php:606
189
  #, php-format
190
  msgid ""
191
  "%1$s detected that %2$s installed on your site. You must set \"<b>Page for "
193
  "work properly."
194
  msgstr ""
195
 
196
+ #: nextend-facebook-connect/admin/admin.php:607
197
  msgid "Fix now"
198
  msgstr ""
199
 
200
+ #: nextend-facebook-connect/admin/admin.php:631
201
  msgid "Activate your Pro Addon"
202
  msgstr ""
203
 
204
+ #: nextend-facebook-connect/admin/admin.php:632
205
  msgid ""
206
  "To be able to use the Pro features, you need to activate Nextend Social "
207
  "Login Pro Addon. You can do this by clicking on the Activate button below "
208
  "then select the related purchase."
209
  msgstr ""
210
 
211
+ #: nextend-facebook-connect/admin/admin.php:637
212
+ #: nextend-social-login-pro/nextend-social-login-pro.php:110
213
  msgid "Activate"
214
  msgstr ""
215
 
216
+ #: nextend-facebook-connect/admin/admin.php:735
217
  msgid "License key"
218
  msgstr ""
219
 
220
+ #: nextend-facebook-connect/admin/admin.php:758
221
  msgid "OAuth proxy page"
222
  msgstr ""
223
 
224
+ #: nextend-facebook-connect/admin/admin.php:761
225
  msgid "Register flow page"
226
  msgstr ""
227
 
230
  msgid "You have logged in successfully."
231
  msgstr ""
232
 
233
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:80
234
  msgid "Login label"
235
  msgstr ""
236
 
237
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:85
238
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:101
239
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:114
240
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:125
241
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:154
242
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:184
243
  #: nextend-facebook-connect/admin/templates/settings/privacy.php:53
244
  msgid "Reset to default"
245
  msgstr ""
246
 
247
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:95
248
+ msgid "Register label"
249
+ msgstr ""
250
+
251
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:108
252
  msgid "Link label"
253
  msgstr ""
254
 
255
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:120
256
  msgid "Unlink label"
257
  msgstr ""
258
 
259
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:131
260
  msgid "Default button"
261
  msgstr ""
262
 
263
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:147
264
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:177
265
  msgid "Use custom button"
266
  msgstr ""
267
 
268
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:154
269
  #, php-format
270
  msgid "Use the %s in your custom button's code to make the label show up."
271
  msgstr ""
272
 
273
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:162
274
  msgid "Icon button"
275
  msgstr ""
276
 
277
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:193
278
  #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:140
279
  #: nextend-facebook-connect/admin/templates-provider/sync-data.php:104
280
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:170
287
  #: nextend-facebook-connect/admin/templates/settings/privacy.php:109
288
  #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:186
289
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:167
290
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:341
291
+ #: nextend-facebook-connect/providers/facebook/admin/settings.php:67
292
  #: nextend-facebook-connect/providers/google/admin/settings.php:62
293
  #: nextend-facebook-connect/providers/twitter/admin/settings.php:48
294
  #: nextend-social-login-pro/providers/amazon/admin/settings.php:47
413
  #: nextend-facebook-connect/admin/templates/settings/general.php:213
414
  #: nextend-facebook-connect/admin/templates/settings/general.php:228
415
  #: nextend-facebook-connect/admin/templates/settings/general.php:246
416
+ #: nextend-facebook-connect/admin/templates/settings/general.php:261
417
+ #: nextend-facebook-connect/includes/provider-admin.php:218
418
  msgid "Disabled"
419
  msgstr ""
420
 
708
  #: nextend-facebook-connect/admin/templates/settings/general.php:216
709
  #: nextend-facebook-connect/admin/templates/settings/general.php:231
710
  #: nextend-facebook-connect/admin/templates/settings/general.php:249
711
+ #: nextend-facebook-connect/admin/templates/settings/general.php:264
712
+ #: nextend-facebook-connect/includes/provider-admin.php:221
713
  #: nextend-facebook-connect/providers/google/admin/settings.php:53
714
  #: nextend-social-login-pro/providers/paypal/admin/settings.php:51
715
  msgid "Enabled"
720
  msgstr ""
721
 
722
  #: nextend-facebook-connect/admin/templates/providers.php:77
723
+ #: nextend-facebook-connect/includes/provider-admin.php:205
724
  msgid "Verify Settings"
725
  msgstr ""
726
 
727
  #: nextend-facebook-connect/admin/templates/providers.php:85
728
+ #: nextend-facebook-connect/includes/provider-admin.php:250
729
  msgid "Enable"
730
  msgstr ""
731
 
732
  #: nextend-facebook-connect/admin/templates/providers.php:97
733
+ #: nextend-facebook-connect/includes/provider-admin.php:258
734
  msgid "Disable"
735
  msgstr ""
736
 
1256
  msgid "Allow registration with Social login."
1257
  msgstr ""
1258
 
1259
+ #: nextend-facebook-connect/admin/templates/settings/general.php:256
1260
+ msgid "Custom label for register buttons"
1261
+ msgstr ""
1262
+
1263
+ #: nextend-facebook-connect/admin/templates/settings/general.php:266
1264
+ #, php-format
1265
+ msgid ""
1266
+ "Set a custom label for the social buttons in registration forms and for "
1267
+ "shortcodes with %1$s parameter set to %2$s.<br>The register specific labels "
1268
+ "can be modified at the Buttons tab of each provider."
1269
+ msgstr ""
1270
+
1271
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:29
1272
  #: nextend-facebook-connect/admin/templates/settings/memberpress.php:33
1273
  #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:33
1354
  msgstr ""
1355
 
1356
  #: nextend-facebook-connect/admin/templates/settings/privacy.php:6
1357
+ #: nextend-facebook-connect/nextend-social-login.php:148
1358
  msgid ""
1359
  "By clicking Register, you accept our <a href=\"#privacy_policy_url\" target="
1360
  "\"_blank\">Privacy Policy</a>"
1382
  msgstr ""
1383
 
1384
  #: nextend-facebook-connect/admin/templates/settings/privacy.php:91
1385
+ #: nextend-facebook-connect/includes/avatar.php:49
1386
  msgid "Avatar"
1387
  msgstr ""
1388
 
1389
  #: nextend-facebook-connect/admin/templates/settings/privacy.php:102
1390
+ #: nextend-facebook-connect/includes/provider.php:1100
1391
  msgid "Access token"
1392
  msgstr ""
1393
 
1455
  msgid "Link buttons on"
1456
  msgstr ""
1457
 
1458
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:323
1459
+ msgid "Email template for registration"
1460
+ msgstr ""
1461
+
1462
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:328
1463
+ msgid "WordPress default notification"
1464
+ msgstr ""
1465
+
1466
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:331
1467
+ msgid "WooCommerce registration notification"
1468
+ msgstr ""
1469
+
1470
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:333
1471
+ #, php-format
1472
+ msgid ""
1473
+ "Defines whether the registration with %1$s will send the same registration "
1474
+ "notification that %2$s does, instead of the %3$s default one."
1475
+ msgstr ""
1476
+
1477
  #: nextend-facebook-connect/admin/templates/test-connection.php:42
1478
  #, php-format
1479
  msgid "Network connection successful: %1$s"
1490
  "between your server and the provider."
1491
  msgstr ""
1492
 
1493
+ #: nextend-facebook-connect/includes/avatar.php:50
1494
  msgid "Manage Avatar"
1495
  msgstr ""
1496
 
1497
+ #: nextend-facebook-connect/includes/avatar.php:51
1498
  #, php-format
1499
  msgid "Avatar <span class=\"count\">(%s)</span>"
1500
  msgid_plural "Avatar <span class=\"count\">(%s)</span>"
1501
  msgstr[0] ""
1502
  msgstr[1] ""
1503
 
 
1504
  #: nextend-facebook-connect/includes/compat-wp-login.php:63
1505
  #, php-format
1506
  msgid "%1$s &lsaquo; %2$s &#8212; WordPress"
1514
  msgid "Powered by WordPress"
1515
  msgstr ""
1516
 
 
1517
  #: nextend-facebook-connect/includes/compat-wp-login.php:284
1518
  #, php-format
1519
  msgctxt "site"
1520
  msgid "&larr; Back to %s"
1521
  msgstr ""
1522
 
1523
+ #: nextend-facebook-connect/includes/provider-admin.php:199
1524
  msgid "Your configuration needs to be verified"
1525
  msgstr ""
1526
 
1527
+ #: nextend-facebook-connect/includes/provider-admin.php:200
1528
  msgid ""
1529
  "Before you can start letting your users register with your app it needs to "
1530
  "be tested. This test makes sure that no users will have troubles with the "
1533
  "are fine."
1534
  msgstr ""
1535
 
1536
+ #: nextend-facebook-connect/includes/provider-admin.php:206
1537
  msgid "Please save your changes to verify settings."
1538
  msgstr ""
1539
 
1540
+ #: nextend-facebook-connect/includes/provider-admin.php:214
1541
  msgid "Works Fine"
1542
  msgstr ""
1543
 
1544
+ #: nextend-facebook-connect/includes/provider-admin.php:228
1545
  #, php-format
1546
  msgid ""
1547
  "This provider is currently disabled, which means that users can’t register "
1548
  "or login via their %s account."
1549
  msgstr ""
1550
 
1551
+ #: nextend-facebook-connect/includes/provider-admin.php:231
1552
  #, php-format
1553
  msgid ""
1554
  "This provider works fine, but you can test it again. If you don’t want to "
1555
  "let users register or login with %s anymore you can disable it."
1556
  msgstr ""
1557
 
1558
+ #: nextend-facebook-connect/includes/provider-admin.php:234
1559
  #, php-format
1560
  msgid ""
1561
  "This provider is currently enabled, which means that users can register or "
1562
  "login via their %s account."
1563
  msgstr ""
1564
 
1565
+ #: nextend-facebook-connect/includes/provider-admin.php:242
1566
  msgid "Verify Settings Again"
1567
  msgstr ""
1568
 
1569
+ #: nextend-facebook-connect/includes/provider-admin.php:243
1570
  msgid "Please save your changes before verifying settings."
1571
  msgstr ""
1572
 
1573
+ #: nextend-facebook-connect/includes/provider.php:358
1574
+ #: nextend-facebook-connect/includes/provider.php:717
1575
+ #: nextend-facebook-connect/includes/provider.php:725
1576
  msgid "Authentication successful"
1577
  msgstr ""
1578
 
1579
+ #: nextend-facebook-connect/includes/provider.php:654
1580
+ #: nextend-facebook-connect/includes/user.php:168
1581
+ #: nextend-facebook-connect/includes/user.php:597
1582
  msgid "Authentication error"
1583
  msgstr ""
1584
 
1585
+ #: nextend-facebook-connect/includes/provider.php:669
1586
  msgid "Unlink successful."
1587
  msgstr ""
1588
 
1589
+ #: nextend-facebook-connect/includes/provider.php:671
1590
  msgid "Unlink is not allowed!"
1591
  msgstr ""
1592
 
1593
+ #: nextend-facebook-connect/includes/provider.php:886
1594
+ #: nextend-facebook-connect/includes/provider.php:893
1595
  msgid "The test was successful"
1596
  msgstr ""
1597
 
1598
+ #: nextend-facebook-connect/includes/provider.php:939
1599
  msgid "Authentication failed"
1600
  msgstr ""
1601
 
1602
+ #: nextend-facebook-connect/includes/provider.php:1092
1603
  msgid "Identifier"
1604
  msgstr ""
1605
 
1606
+ #: nextend-facebook-connect/includes/provider.php:1108
1607
  msgid "Profile picture"
1608
  msgstr ""
1609
 
1618
  #, php-format
1619
  msgid ""
1620
  "You have already linked a(n) %s account. Please unlink the current and then "
1621
+ "you can link another %s account."
1622
  msgstr ""
1623
 
1624
  #: nextend-facebook-connect/includes/user.php:82
1625
  #, php-format
1626
+ msgid "This %s account is already linked to another user."
1627
  msgstr ""
1628
 
1629
+ #: nextend-facebook-connect/includes/user.php:128
1630
  msgid "User registration is currently not allowed."
1631
  msgstr ""
1632
 
1634
  msgid "Register For This Site!"
1635
  msgstr ""
1636
 
1637
+ #: nextend-facebook-connect/nextend-facebook-connect.php:37
 
1638
  #, php-format
1639
  msgid "%1$s requires PHP version %2$s+, plugin is currently NOT ACTIVE."
1640
  msgstr ""
1641
 
1642
+ #: nextend-facebook-connect/nextend-facebook-connect.php:44
 
1643
  #, php-format
1644
  msgid ""
1645
  "%1$s requires WordPress version %2$s+. Because you are using an earlier "
1657
  msgid "Update now!"
1658
  msgstr ""
1659
 
1660
+ #: nextend-facebook-connect/nextend-social-login.php:762
1661
+ #: nextend-facebook-connect/nextend-social-login.php:1140
1662
  msgid "Social Login"
1663
  msgstr ""
1664
 
1665
+ #: nextend-facebook-connect/nextend-social-login.php:1121
1666
  msgid "Social Accounts"
1667
  msgstr ""
1668
 
1727
  msgstr ""
1728
 
1729
  #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:12
1730
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:35
1731
  #, php-format
1732
  msgid ""
1733
  "Add the following URL to the \"<b>Valid OAuth redirect URIs</b>\" field: <b>"
1810
  msgstr ""
1811
 
1812
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:26
1813
+ msgid ""
1814
+ "Click on the \"<b>Create App</b>\" button and in the Popup choose the "
1815
+ "\"<b>Build Connected Experiences</b>\" option!"
1816
  msgstr ""
1817
 
1818
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:27
1825
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:28
1826
  #, php-format
1827
  msgid ""
1828
+ "Fill \"<b>App Display Name</b>\", \"<b>App Contact Email</b>\". The "
1829
+ "specified \"App Display Name\" will appear on your %s!"
1830
  msgstr ""
1831
 
1832
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:29
1833
  msgid ""
1834
+ "<b>Optional</b>: choose a \"<b>Business Manager Account</b>\" in the popup, "
1835
+ "if you have any."
1836
  msgstr ""
1837
 
1838
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:30
1839
+ msgid ""
1840
+ "Click the \"<b>Create App ID</b>\" button and complete the Security Check."
1841
+ msgstr ""
1842
+
1843
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:31
1844
  #, php-format
1845
  msgid ""
1846
  "At the \"<b>Add a Product</b>\" panel find \"<b>%1$s</b>\" and click "
1847
  "\"<b>Set Up</b>\""
1848
  msgstr ""
1849
 
1850
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:32
1851
  #, php-format
1852
  msgid ""
1853
  "Select \"<b>Web</b>\" and enter the following URL to the \"<b>Site URL</b>\" "
1854
  "field: <b>%s</b>"
1855
  msgstr ""
1856
 
1857
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:33
1858
  msgid "Press “<b>Save</b>”"
1859
  msgstr ""
1860
 
1861
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:34
1862
  #, php-format
1863
  msgid ""
1864
  "Click on the “<b>%1$s</b>” option what you find on the left side, under “<b>"
1865
  "%2$s</b> - <b>%3$s</b>”"
1866
  msgstr ""
1867
 
1868
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:36
1869
  msgid "Click on “<b>Save Changes</b>”"
1870
  msgstr ""
1871
 
1872
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:37
1873
  #, php-format
1874
  msgid ""
1875
  "On the top left side, click on the “<b>%1$s</b>” menu point, then click “<b>"
1876
  "%2$s</b>”"
1877
  msgstr ""
1878
 
1879
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:38
1880
  #, php-format
1881
  msgid ""
1882
  "Enter your domain name to the \"<b>App Domains</b>\" field, probably: <b>%s</"
1883
  "b>"
1884
  msgstr ""
1885
 
1886
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:39
1887
  msgid ""
1888
  "Fill up the \"<b>Privacy Policy URL</b>\" field. Provide a publicly "
1889
  "available and easily accessible privacy policy that explains what data you "
1890
  "are collecting and how you will use that data."
1891
  msgstr ""
1892
 
1893
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:40
1894
+ msgid ""
1895
+ "At \"<b>User Data Deletion</b>\", choose the \"<b>Data Deletion Instructions "
1896
+ "URL</b>\" option, and enter the <i>URL of your page</i>* with the "
1897
+ "instructions on how users can delete their accounts on your site."
1898
+ msgstr ""
1899
+
1900
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:42
1901
+ msgid ""
1902
+ "To comply with GDPR, you should already offer possibility to delete accounts "
1903
+ "on your site, either by the user or by the admin:"
1904
+ msgstr ""
1905
+
1906
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:45
1907
+ msgid ""
1908
+ "<u>If each user has an option to delete the account</u>: the URL should "
1909
+ "point to a guide showing the way users can delete their accounts."
1910
+ msgstr ""
1911
+
1912
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:46
1913
  msgid ""
1914
+ "<u>If the accounts are deleted by an admin</u>: then you should have a "
1915
+ "section - usually in the Privacy Policy - with the contact details, where "
1916
+ "users can send their account erasure requests. In this case the URL should "
1917
+ "point to this section of the document."
1918
+ msgstr ""
1919
+
1920
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:51
1921
+ msgid ""
1922
+ "Select a “<b>Category</b>”, an “<b>App Icon</b>” and pick the “<b>App "
1923
+ "Purpose</b>” option that describes your App the best, then press \"<b>Save "
1924
  "Changes</b>\""
1925
  msgstr ""
1926
 
1927
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:52
1928
  msgid ""
1929
  "Your application is currently private, which means that only you can log in "
1930
  "with it. In the top bar click on the switch next to the \"<b>In development</"
1931
  "b>\" label, then click the \"<b>Switch Mode</b>\" button."
1932
  msgstr ""
1933
 
1934
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:53
1935
  msgid ""
1936
  "At the top of the page you can find your \"<b>App ID</b>\" and you can see "
1937
  "your \"<b>App secret</b>\" if you click on the \"Show\" button. These will "
1938
  "be needed in plugin’s settings."
1939
  msgstr ""
1940
 
1941
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:56
1942
+ #, php-format
1943
+ msgid ""
1944
+ "<b>WARNING:</b> <u>Don't replace your Facebook App with another!</u> Since "
1945
+ "WordPress users with linked Facebook accounts can only login using the %1$s "
1946
+ "App, that was originally used at the time, when the WordPress account was "
1947
+ "linked with a %1$s Account.<br>\n"
1948
+ "If you would like to know the reason of this, or you really need to replace "
1949
+ "the Facebook App, then please check our %2$sdocumentation%3$s."
1950
+ msgstr ""
1951
+
1952
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:60
1953
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:40
1954
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:37
1955
  #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:39
1956
  #: nextend-social-login-pro/providers/apple/admin/getting-started.php:122
1957
  #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:30
2021
  msgid "App Secret"
2022
  msgstr ""
2023
 
2024
+ #: nextend-facebook-connect/providers/facebook/admin/settings.php:59
2025
+ #, php-format
2026
+ msgid ""
2027
+ "By replacing your existing %1$s App, users with linked %1$s accounts will no "
2028
+ "longer be able to login with %1$s."
2029
+ msgstr ""
2030
+
2031
+ #: nextend-facebook-connect/providers/facebook/admin/settings.php:61
2032
+ msgid "Find out why?"
2033
  msgstr ""
2034
 
2035
  #: nextend-facebook-connect/providers/facebook/facebook.php:85
2036
+ msgid "Continue with <b>Facebook</b>"
2037
  msgstr ""
2038
 
2039
  #: nextend-facebook-connect/providers/facebook/facebook.php:86
2040
+ msgid "Sign up with <b>Facebook</b>"
2041
+ msgstr ""
2042
+
2043
+ #: nextend-facebook-connect/providers/facebook/facebook.php:87
2044
+ msgid "Link account with <b>Facebook</b>"
2045
+ msgstr ""
2046
+
2047
+ #: nextend-facebook-connect/providers/facebook/facebook.php:88
2048
  msgid "Unlink account from <b>Facebook</b>"
2049
  msgstr ""
2050
 
2051
+ #: nextend-facebook-connect/providers/facebook/facebook.php:188
2052
+ #: nextend-facebook-connect/providers/google/google.php:168
2053
+ #: nextend-facebook-connect/providers/twitter/twitter.php:97
2054
+ #: nextend-social-login-pro/providers/amazon/amazon.php:67
2055
+ #: nextend-social-login-pro/providers/apple/apple.php:131
2056
+ #: nextend-social-login-pro/providers/apple/apple.php:138
2057
+ #: nextend-social-login-pro/providers/disqus/disqus.php:114
2058
+ #: nextend-social-login-pro/providers/github/github.php:152
2059
+ #: nextend-social-login-pro/providers/linkedin/linkedin.php:65
2060
+ #: nextend-social-login-pro/providers/paypal/paypal.php:92
2061
+ #: nextend-social-login-pro/providers/vk/vk.php:63
2062
+ #: nextend-social-login-pro/providers/wordpress/wordpress.php:101
2063
+ #: nextend-social-login-pro/providers/yahoo/yahoo.php:92
2064
  #, php-format
2065
  msgid ""
2066
  "The %1$s entered did not appear to be a valid. Please enter a valid %2$s."
2067
  msgstr ""
2068
 
2069
+ #: nextend-facebook-connect/providers/facebook/facebook.php:309
2070
+ #: nextend-social-login-pro/providers/paypal/paypal.php:172
2071
  #, php-format
2072
  msgid "Required scope: %1$s"
2073
  msgstr ""
2215
  "Disable, when you don't want to see the account select prompt on each login."
2216
  msgstr ""
2217
 
2218
+ #: nextend-facebook-connect/providers/google/google.php:99
2219
  msgid "Continue with <b>Google</b>"
2220
  msgstr ""
2221
 
2222
+ #: nextend-facebook-connect/providers/google/google.php:100
2223
+ msgid "Sign up with <b>Google</b>"
2224
+ msgstr ""
2225
+
2226
+ #: nextend-facebook-connect/providers/google/google.php:101
2227
  msgid "Link account with <b>Google</b>"
2228
  msgstr ""
2229
 
2230
+ #: nextend-facebook-connect/providers/google/google.php:102
2231
  msgid "Unlink account from <b>Google</b>"
2232
  msgstr ""
2233
 
2234
+ #: nextend-facebook-connect/providers/google/google.php:295
2235
  #, php-format
2236
  msgid "Required API: %1$s"
2237
  msgstr ""
2238
 
2239
  #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:10
2240
+ msgid ""
2241
+ "Find your App and click on the <b>App settings</b> icon. (The one that looks "
2242
+ "like a gear.)"
2243
  msgstr ""
2244
 
2245
  #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:11
2246
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:27
2247
+ msgid "Click on the <b>Edit</b> button at <b>Authentication settings</b>."
 
2248
  msgstr ""
2249
 
2250
  #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:12
 
2251
  #, php-format
2252
  msgid "Add the following URL to the \"<b>Callback URLs</b>\" field: <b>%s</b>"
2253
  msgstr ""
2254
 
2255
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:17
2256
+ #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:25
2257
+ #: nextend-social-login-pro/providers/apple/admin/getting-started.php:38
2258
+ #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:9
2259
+ #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:16
2260
+ #: nextend-social-login-pro/providers/github/admin/getting-started.php:16
2261
+ #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:9
2262
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:17
2263
+ #: nextend-social-login-pro/providers/vk/admin/getting-started.php:16
2264
+ #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:9
2265
+ #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:16
2266
+ #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:17
2267
  #, php-format
2268
+ msgid "Log in with your %s credentials if you are not logged in."
2269
  msgstr ""
2270
 
2271
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:18
2282
  msgstr ""
2283
 
2284
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:20
2285
+ msgid "Click on <b>+ New Project</b>!"
 
 
 
2286
  msgstr ""
2287
 
2288
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:21
2289
+ msgid ""
2290
+ "Name your project, and go through the basic setup. You’ll need to select "
2291
+ "your use case and give a description."
2292
+ msgstr ""
2293
+
2294
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:22
2295
+ msgid "Create a new app, or select an existing one, then click <b>Complete</b>"
2296
  msgstr ""
2297
 
2298
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:23
2299
  msgid ""
2300
+ "You’ll find your API key and secret on this page. Copy and paste the <b>API "
2301
+ "key</b> and the <b>API secret key</b> to the corresponding fields at Nextend "
2302
+ "Social Login and press <b>Save Changes</b>."
2303
  msgstr ""
2304
 
2305
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:24
2306
+ #, php-format
2307
+ msgid "Click on the <b>App Settings</b> button at %s."
2308
  msgstr ""
2309
 
2310
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:25
2311
+ msgid "Find the Apps section, and the app you created a few steps ago."
2312
  msgstr ""
2313
 
2314
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:26
2315
+ msgid "Click on the App settings icon. (The one that looks like a gear.)"
2316
  msgstr ""
2317
 
2318
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:28
2319
+ msgid "Switch on the <b>Enable 3-legged OAuth</b> option."
 
 
2320
  msgstr ""
2321
 
2322
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:29
2323
+ #, php-format
2324
+ msgid "Add the following URL to the <b>Callback URLs</b> field: <b>%s</b>"
2325
+ msgstr ""
2326
+
2327
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:30
2328
+ #, php-format
2329
+ msgid "Enter your site's URL to the <b>Website URL</b> field: <b>%s</b>"
2330
+ msgstr ""
2331
+
2332
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:31
2333
  msgid ""
2334
+ "If you want to get the email address as well, then don’t forget to enable "
2335
+ "the <b>Request email address from users</b> option. In this case you also "
2336
+ "need to fill the <b>Terms of service</b> and the <b>Privacy policy</b> "
2337
+ "fields with the corresponding URLs!"
2338
+ msgstr ""
2339
+
2340
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:32
2341
+ msgid "Click on <b>Save</b>."
2342
+ msgstr ""
2343
+
2344
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:33
2345
+ #, php-format
2346
+ msgid "Go back to Nextend Social Login and <b>Verify</b> your %s provider."
2347
  msgstr ""
2348
 
2349
  #: nextend-facebook-connect/providers/twitter/admin/settings.php:27
2363
  msgid "Original"
2364
  msgstr ""
2365
 
2366
+ #: nextend-facebook-connect/providers/twitter/twitter.php:70
2367
  msgid "Continue with <b>Twitter</b>"
2368
  msgstr ""
2369
 
2370
+ #: nextend-facebook-connect/providers/twitter/twitter.php:71
2371
+ msgid "Sign up with <b>Twitter</b>"
2372
+ msgstr ""
2373
+
2374
+ #: nextend-facebook-connect/providers/twitter/twitter.php:72
2375
  msgid "Link account with <b>Twitter</b>"
2376
  msgstr ""
2377
 
2378
+ #: nextend-facebook-connect/providers/twitter/twitter.php:73
2379
  msgid "Unlink account from <b>Twitter</b>"
2380
  msgstr ""
2381
 
2493
  "with %1$s."
2494
  msgstr ""
2495
 
2496
+ #: nextend-social-login-pro/nextend-social-login-pro.php:104
2497
  #, php-format
2498
  msgid "Please install and activate %1$s to use the %2$s"
2499
  msgstr ""
2500
 
2501
+ #: nextend-social-login-pro/nextend-social-login-pro.php:118
2502
  msgid "Network Activate"
2503
  msgstr ""
2504
 
2505
+ #: nextend-social-login-pro/nextend-social-login-pro.php:130
2506
  msgid "Install now!"
2507
  msgstr ""
2508
 
2509
+ #: nextend-social-login-pro/nextend-social-login-pro.php:821
2510
  msgid "Social Providers"
2511
  msgstr ""
2512
 
2517
  "latest %2$s version!"
2518
  msgstr ""
2519
 
2520
+ #: nextend-social-login-pro/provider-extensions/google.php:187
2521
  #, php-format
2522
  msgid ""
2523
  "Most of these information can only be retrieved, when the field is marked as "
2564
  "%1$s App."
2565
  msgstr ""
2566
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2567
  #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:27
2568
  msgid ""
2569
  "If you don't have a Security Profile yet, you'll need to create one. You can "
2599
  "middle of the page, under the \"<b>Web Settings</b>\" tab."
2600
  msgstr ""
2601
 
2602
+ #: nextend-social-login-pro/providers/amazon/amazon.php:40
2603
  msgid "Continue with <b>Amazon</b>"
2604
  msgstr ""
2605
 
2606
+ #: nextend-social-login-pro/providers/amazon/amazon.php:41
2607
+ msgid "Sign up with <b>Amazon</b>"
2608
+ msgstr ""
2609
+
2610
+ #: nextend-social-login-pro/providers/amazon/amazon.php:42
2611
  msgid "Link account with <b>Amazon</b>"
2612
  msgstr ""
2613
 
2614
+ #: nextend-social-login-pro/providers/amazon/amazon.php:43
2615
  msgid "Unlink account from <b>Amazon</b>"
2616
  msgstr ""
2617
 
2916
  msgid "Generate Token"
2917
  msgstr ""
2918
 
2919
+ #: nextend-social-login-pro/providers/apple/apple.php:83
2920
  msgid "Continue with <b>Apple</b>"
2921
  msgstr ""
2922
 
2923
+ #: nextend-social-login-pro/providers/apple/apple.php:84
2924
+ msgid "Sign up with <b>Apple</b>"
2925
+ msgstr ""
2926
+
2927
+ #: nextend-social-login-pro/providers/apple/apple.php:85
2928
  msgid "Link account with <b>Apple</b>"
2929
  msgstr ""
2930
 
2931
+ #: nextend-social-login-pro/providers/apple/apple.php:86
2932
  msgid "Unlink account from <b>Apple</b>"
2933
  msgstr ""
2934
 
2935
+ #: nextend-social-login-pro/providers/apple/apple.php:180
2936
  #, php-format
2937
  msgid "An error occurred when storing of the expiration timestamp : %1$s"
2938
  msgstr ""
2939
 
2940
+ #: nextend-social-login-pro/providers/apple/apple.php:184
2941
+ #: nextend-social-login-pro/providers/apple/apple.php:282
2942
+ #: nextend-social-login-pro/providers/apple/apple.php:297
2943
+ #: nextend-social-login-pro/providers/apple/apple.php:341
2944
  #, php-format
2945
  msgid "Token generation failed: %1$s"
2946
  msgstr ""
2947
 
2948
+ #: nextend-social-login-pro/providers/apple/apple.php:184
2949
  msgid "Please check your credentials!"
2950
  msgstr ""
2951
 
2952
+ #: nextend-social-login-pro/providers/apple/apple.php:282
2953
  msgid "Private key format is not valid!"
2954
  msgstr ""
2955
 
2956
+ #: nextend-social-login-pro/providers/apple/apple.php:308
2957
  #, php-format
2958
  msgid ""
2959
  "%s detected that your Apple credentials have expired. Please delete the "
2960
  "current credentials and generate new one!"
2961
  msgstr ""
2962
 
2963
+ #: nextend-social-login-pro/providers/apple/apple.php:310
2964
  msgid "Apple Credentials"
2965
  msgstr ""
2966
 
3037
  msgid "API Secret"
3038
  msgstr ""
3039
 
3040
+ #: nextend-social-login-pro/providers/disqus/disqus.php:87
3041
  msgid "Continue with <b>Disqus</b>"
3042
  msgstr ""
3043
 
3044
+ #: nextend-social-login-pro/providers/disqus/disqus.php:88
3045
+ msgid "Sign up with <b>Disqus</b>"
3046
+ msgstr ""
3047
+
3048
+ #: nextend-social-login-pro/providers/disqus/disqus.php:89
3049
  msgid "Link account with <b>Disqus</b>"
3050
  msgstr ""
3051
 
3052
+ #: nextend-social-login-pro/providers/disqus/disqus.php:90
3053
  msgid "Unlink account from <b>Disqus</b>"
3054
  msgstr ""
3055
 
3123
  "public email address set at the %1$s profile page%2$s!"
3124
  msgstr ""
3125
 
3126
+ #: nextend-social-login-pro/providers/github/github.php:125
3127
  msgid "Continue with <b>GitHub</b>"
3128
  msgstr ""
3129
 
3130
+ #: nextend-social-login-pro/providers/github/github.php:126
3131
+ msgid "Sign up with <b>GitHub</b>"
3132
+ msgstr ""
3133
+
3134
+ #: nextend-social-login-pro/providers/github/github.php:127
3135
  msgid "Link account with <b>GitHub</b>"
3136
  msgstr ""
3137
 
3138
+ #: nextend-social-login-pro/providers/github/github.php:128
3139
  msgid "Unlink account from <b>GitHub</b>"
3140
  msgstr ""
3141
 
3217
  "the Application credentials section, on the <b>Auth</b> tab."
3218
  msgstr ""
3219
 
3220
+ #: nextend-social-login-pro/providers/linkedin/linkedin.php:38
3221
  msgid "Continue with <b>LinkedIn</b>"
3222
  msgstr ""
3223
 
3224
+ #: nextend-social-login-pro/providers/linkedin/linkedin.php:39
3225
+ msgid "Sign up with <b>LinkedIn</b>"
3226
+ msgstr ""
3227
+
3228
+ #: nextend-social-login-pro/providers/linkedin/linkedin.php:40
3229
  msgid "Link account with <b>LinkedIn</b>"
3230
  msgstr ""
3231
 
3232
+ #: nextend-social-login-pro/providers/linkedin/linkedin.php:41
3233
  msgid "Unlink account from <b>LinkedIn</b>"
3234
  msgstr ""
3235
 
3330
  msgid "Disable, when you have no rights for email address."
3331
  msgstr ""
3332
 
3333
+ #: nextend-social-login-pro/providers/paypal/paypal.php:65
3334
  msgid "Continue with <b>PayPal</b>"
3335
  msgstr ""
3336
 
3337
+ #: nextend-social-login-pro/providers/paypal/paypal.php:66
3338
+ msgid "Sign up with <b>PayPal</b>"
3339
+ msgstr ""
3340
+
3341
+ #: nextend-social-login-pro/providers/paypal/paypal.php:67
3342
  msgid "Link account with <b>PayPal</b>"
3343
  msgstr ""
3344
 
3345
+ #: nextend-social-login-pro/providers/paypal/paypal.php:68
3346
  msgid "Unlink account from <b>PayPal</b>"
3347
  msgstr ""
3348
 
3419
  msgid "Secure key"
3420
  msgstr ""
3421
 
3422
+ #: nextend-social-login-pro/providers/vk/vk.php:36
3423
  msgid "Continue with <b>VK</b>"
3424
  msgstr ""
3425
 
3426
+ #: nextend-social-login-pro/providers/vk/vk.php:37
3427
+ msgid "Sign up with <b>VK</b>"
3428
+ msgstr ""
3429
+
3430
+ #: nextend-social-login-pro/providers/vk/vk.php:38
3431
  msgid "Link account with <b>VK</b>"
3432
  msgstr ""
3433
 
3434
+ #: nextend-social-login-pro/providers/vk/vk.php:39
3435
  msgid "Unlink account from <b>VK</b>"
3436
  msgstr ""
3437
 
3488
  "These will be needed in the plugin's settings."
3489
  msgstr ""
3490
 
3491
+ #: nextend-social-login-pro/providers/wordpress/wordpress.php:74
3492
  msgid "Continue with <b>WordPress.com</b>"
3493
  msgstr ""
3494
 
3495
+ #: nextend-social-login-pro/providers/wordpress/wordpress.php:75
3496
+ msgid "Sign up with <b>WordPress.com</b>"
3497
+ msgstr ""
3498
+
3499
+ #: nextend-social-login-pro/providers/wordpress/wordpress.php:76
3500
  msgid "Link account with <b>WordPress.com</b>"
3501
  msgstr ""
3502
 
3503
+ #: nextend-social-login-pro/providers/wordpress/wordpress.php:77
3504
  msgid "Unlink account from <b>WordPress.com</b>"
3505
  msgstr ""
3506
 
3551
  "\"<b>Client Secret</b>\"! These will be needed in the plugin's settings."
3552
  msgstr ""
3553
 
3554
+ #: nextend-social-login-pro/providers/yahoo/yahoo.php:65
3555
  msgid "Continue with <b>Yahoo</b>"
3556
  msgstr ""
3557
 
3558
+ #: nextend-social-login-pro/providers/yahoo/yahoo.php:66
3559
+ msgid "Sign up with <b>Yahoo</b>"
3560
+ msgstr ""
3561
+
3562
+ #: nextend-social-login-pro/providers/yahoo/yahoo.php:67
3563
  msgid "Link account with <b>Yahoo</b>"
3564
  msgstr ""
3565
 
3566
+ #: nextend-social-login-pro/providers/yahoo/yahoo.php:68
3567
  msgid "Unlink account from <b>Yahoo</b>"
3568
  msgstr ""
3569
 
3570
+ #: nextend-social-login-pro/providers/yahoo/yahoo.php:188
3571
  #, php-format
3572
  msgid "Required permission: %1$s"
3573
  msgstr ""
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: 2020-08-25 13:37+0200\n"
5
- "PO-Revision-Date: 2020-08-25 13:37+0200\n"
6
  "Last-Translator: Gabriel Vilaró <gabo@etereo.ch>\n"
7
  "Language-Team: nextend-facebook-connect\n"
8
  "Language: es_419\n"
@@ -112,35 +112,35 @@ msgstr ""
112
  msgid "User"
113
  msgstr "Usario"
114
 
115
- #: nextend-facebook-connect/admin/admin.php:203
116
  #, php-format
117
  msgid "%s needs json_decode function."
118
  msgstr "%s necesita la función json_decode."
119
 
120
- #: nextend-facebook-connect/admin/admin.php:203
121
  msgid "Please contact your server administrator and ask for solution!"
122
  msgstr ""
123
  "¡Por favor, ponte en contacto con el administrador de tu servidor y solicita "
124
  "una solución!"
125
 
126
- #: nextend-facebook-connect/admin/admin.php:235
127
- #: nextend-facebook-connect/admin/admin.php:265
128
  msgid "Settings saved."
129
  msgstr "Ajustes guardados."
130
 
131
- #: nextend-facebook-connect/admin/admin.php:244
132
  #, fuzzy
133
  #| msgid "The authorization was successful"
134
  msgid "The activation was successful"
135
  msgstr "La autorización fue exitosa"
136
 
137
- #: nextend-facebook-connect/admin/admin.php:255
138
  #, fuzzy
139
  #| msgid "Deauthorize completed."
140
  msgid "Deactivate completed."
141
  msgstr "Desautorizar completado."
142
 
143
- #: nextend-facebook-connect/admin/admin.php:433
144
  #: nextend-facebook-connect/admin/templates-provider/menu.php:15
145
  #: nextend-facebook-connect/admin/templates/providers.php:89
146
  #: nextend-facebook-connect/admin/templates/providers.php:101
@@ -148,9 +148,9 @@ msgstr "Desautorizar completado."
148
  msgid "Settings"
149
  msgstr "Ajustes"
150
 
151
- #: nextend-facebook-connect/admin/admin.php:516
152
- #: nextend-facebook-connect/includes/oauth2.php:141
153
- #: nextend-facebook-connect/includes/oauth2.php:286
154
  #: nextend-facebook-connect/providers/facebook/facebook-client.php:84
155
  #: nextend-facebook-connect/providers/twitter/twitter-client.php:165
156
  #: nextend-social-login-pro/providers/apple/apple-client.php:87
@@ -159,7 +159,7 @@ msgstr "Ajustes"
159
  msgid "Unexpected response: %s"
160
  msgstr "Respuesta inesperada: %s"
161
 
162
- #: nextend-facebook-connect/admin/admin.php:577
163
  #: nextend-facebook-connect/admin/templates/fix-redirect-uri.php:21
164
  #, php-format
165
  msgid ""
@@ -169,16 +169,16 @@ msgstr ""
169
  "%s detectó que tu URL de inicio de sesión cambió. Debes actualizar los URI "
170
  "de redireccionamiento de Oauth en las aplicaciones sociales relacionadas."
171
 
172
- #: nextend-facebook-connect/admin/admin.php:578
173
- #: nextend-social-login-pro/providers/apple/apple.php:308
174
  msgid "Fix Error"
175
  msgstr "Arreglar Error"
176
 
177
- #: nextend-facebook-connect/admin/admin.php:578
178
  msgid "Oauth Redirect URI"
179
  msgstr "URI de redireccionamiento de Oauth"
180
 
181
- #: nextend-facebook-connect/admin/admin.php:595
182
  #, php-format
183
  msgid ""
184
  "%1$s detected that %2$s installed on your site. You need the Pro Addon to "
@@ -187,15 +187,15 @@ msgstr ""
187
  "%1$s detectó que %2$s está instalado en tu sitio. ¡Necesitas el Pro Addon "
188
  "para mostrar los botones de Social Login en el formulario de acceso de %2$s!"
189
 
190
- #: nextend-facebook-connect/admin/admin.php:596
191
  msgid "Dismiss and check Pro Addon"
192
  msgstr "Descartar y verificar Pro Addon"
193
 
194
- #: nextend-facebook-connect/admin/admin.php:596
195
  msgid "Dismiss"
196
  msgstr "Descartar"
197
 
198
- #: nextend-facebook-connect/admin/admin.php:602
199
  #, php-format
200
  msgid ""
201
  "%1$s detected that %2$s installed on your site. You must set \"<b>Page for "
@@ -203,19 +203,19 @@ msgid ""
203
  "work properly."
204
  msgstr ""
205
 
206
- #: nextend-facebook-connect/admin/admin.php:603
207
  #, fuzzy
208
  #| msgid "Fix Error"
209
  msgid "Fix now"
210
  msgstr "Arreglar Error"
211
 
212
- #: nextend-facebook-connect/admin/admin.php:627
213
  #, fuzzy
214
  #| msgid "Activate Pro Addon"
215
  msgid "Activate your Pro Addon"
216
  msgstr "Activar Pro Addon"
217
 
218
- #: nextend-facebook-connect/admin/admin.php:628
219
  #, fuzzy
220
  #| msgid ""
221
  #| "To be able to use the Pro features, you need to authorize Nextend Social "
@@ -230,20 +230,20 @@ msgstr ""
230
  "Pro Addon. Puedes hacer esto haciendo clic en el botón Autorizar a "
231
  "continuación y luego seleccionar la compra relacionada."
232
 
233
- #: nextend-facebook-connect/admin/admin.php:633
234
- #: nextend-social-login-pro/nextend-social-login-pro.php:94
235
  msgid "Activate"
236
  msgstr "Activar"
237
 
238
- #: nextend-facebook-connect/admin/admin.php:731
239
  msgid "License key"
240
  msgstr "Clave de licencia"
241
 
242
- #: nextend-facebook-connect/admin/admin.php:754
243
  msgid "OAuth proxy page"
244
  msgstr ""
245
 
246
- #: nextend-facebook-connect/admin/admin.php:757
247
  #, fuzzy
248
  #| msgid "Register layout"
249
  msgid "Register flow page"
@@ -254,48 +254,55 @@ msgstr "Diseño de Registro"
254
  msgid "You have logged in successfully."
255
  msgstr "Has ingresado exitosamente."
256
 
257
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:79
258
  msgid "Login label"
259
  msgstr "Etiqueta de acceso"
260
 
261
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:84
262
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:95
263
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:106
264
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:135
265
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:165
 
266
  #: nextend-facebook-connect/admin/templates/settings/privacy.php:53
267
  msgid "Reset to default"
268
  msgstr "Restablecer los valores predeterminados"
269
 
270
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:89
 
 
 
 
 
 
271
  msgid "Link label"
272
  msgstr "Etiqueta de enlace"
273
 
274
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:101
275
  msgid "Unlink label"
276
  msgstr "Etiqueta de desenlazar"
277
 
278
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:112
279
  msgid "Default button"
280
  msgstr "Botón predeterminado"
281
 
282
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:128
283
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:158
284
  msgid "Use custom button"
285
  msgstr "Usa botón personalizado"
286
 
287
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:135
288
  #, php-format
289
  msgid "Use the %s in your custom button's code to make the label show up."
290
  msgstr ""
291
  "Use el %s en el código de tu botón personalizado para que aparezca la "
292
  "etiqueta."
293
 
294
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:143
295
  msgid "Icon button"
296
  msgstr "Botón de icono"
297
 
298
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:174
299
  #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:140
300
  #: nextend-facebook-connect/admin/templates-provider/sync-data.php:104
301
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:170
@@ -308,8 +315,8 @@ msgstr "Botón de icono"
308
  #: nextend-facebook-connect/admin/templates/settings/privacy.php:109
309
  #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:186
310
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:167
311
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:326
312
- #: nextend-facebook-connect/providers/facebook/admin/settings.php:57
313
  #: nextend-facebook-connect/providers/google/admin/settings.php:62
314
  #: nextend-facebook-connect/providers/twitter/admin/settings.php:48
315
  #: nextend-social-login-pro/providers/amazon/admin/settings.php:47
@@ -436,7 +443,8 @@ msgstr "Conectar automáticamente la cuenta existente al registrarse"
436
  #: nextend-facebook-connect/admin/templates/settings/general.php:213
437
  #: nextend-facebook-connect/admin/templates/settings/general.php:228
438
  #: nextend-facebook-connect/admin/templates/settings/general.php:246
439
- #: nextend-facebook-connect/includes/provider-admin.php:217
 
440
  msgid "Disabled"
441
  msgstr "Desactivado"
442
 
@@ -763,7 +771,8 @@ msgstr "No Verificado"
763
  #: nextend-facebook-connect/admin/templates/settings/general.php:216
764
  #: nextend-facebook-connect/admin/templates/settings/general.php:231
765
  #: nextend-facebook-connect/admin/templates/settings/general.php:249
766
- #: nextend-facebook-connect/includes/provider-admin.php:220
 
767
  #: nextend-facebook-connect/providers/google/admin/settings.php:53
768
  #: nextend-social-login-pro/providers/paypal/admin/settings.php:51
769
  msgid "Enabled"
@@ -774,17 +783,17 @@ msgid "Upgrade Now"
774
  msgstr "Actualizar Ahora"
775
 
776
  #: nextend-facebook-connect/admin/templates/providers.php:77
777
- #: nextend-facebook-connect/includes/provider-admin.php:204
778
  msgid "Verify Settings"
779
  msgstr "Verificar Configuración"
780
 
781
  #: nextend-facebook-connect/admin/templates/providers.php:85
782
- #: nextend-facebook-connect/includes/provider-admin.php:249
783
  msgid "Enable"
784
  msgstr "Habilitar"
785
 
786
  #: nextend-facebook-connect/admin/templates/providers.php:97
787
- #: nextend-facebook-connect/includes/provider-admin.php:257
788
  msgid "Disable"
789
  msgstr "Inhabilitar"
790
 
@@ -1354,6 +1363,20 @@ msgstr "Membresía"
1354
  msgid "Allow registration with Social login."
1355
  msgstr "Permitir registro con Social login"
1356
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1357
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:29
1358
  #: nextend-facebook-connect/admin/templates/settings/memberpress.php:33
1359
  #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:33
@@ -1454,7 +1477,7 @@ msgid "Link buttons after account details"
1454
  msgstr "Enlazar botones de enlace después de los detalles de la cuenta"
1455
 
1456
  #: nextend-facebook-connect/admin/templates/settings/privacy.php:6
1457
- #: nextend-facebook-connect/nextend-social-login.php:143
1458
  msgid ""
1459
  "By clicking Register, you accept our <a href=\"#privacy_policy_url\" target="
1460
  "\"_blank\">Privacy Policy</a>"
@@ -1482,12 +1505,12 @@ msgid "When not enabled, email will be empty."
1482
  msgstr ""
1483
 
1484
  #: nextend-facebook-connect/admin/templates/settings/privacy.php:91
1485
- #: nextend-facebook-connect/includes/avatar.php:59
1486
  msgid "Avatar"
1487
  msgstr "Avatar"
1488
 
1489
  #: nextend-facebook-connect/admin/templates/settings/privacy.php:102
1490
- #: nextend-facebook-connect/includes/provider.php:1082
1491
  msgid "Access token"
1492
  msgstr ""
1493
 
@@ -1569,6 +1592,31 @@ msgstr "Conectar botón antes de los detalles de cuenta"
1569
  msgid "Link buttons on"
1570
  msgstr "Sin botones de enlace"
1571
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1572
  #: nextend-facebook-connect/admin/templates/test-connection.php:42
1573
  #, fuzzy, php-format
1574
  #| msgid "Authentication successful"
@@ -1586,18 +1634,17 @@ msgid ""
1586
  "between your server and the provider."
1587
  msgstr ""
1588
 
1589
- #: nextend-facebook-connect/includes/avatar.php:60
1590
  msgid "Manage Avatar"
1591
  msgstr "Administrar Avatar"
1592
 
1593
- #: nextend-facebook-connect/includes/avatar.php:61
1594
  #, php-format
1595
  msgid "Avatar <span class=\"count\">(%s)</span>"
1596
  msgid_plural "Avatar <span class=\"count\">(%s)</span>"
1597
  msgstr[0] "Avatar <span class=\"count\">(%s)</span>"
1598
  msgstr[1] "Avatar <span class=\"count\">(%s)</span>"
1599
 
1600
- #. translators: Login screen title. 1: Login screen name, 2: Network or site name
1601
  #: nextend-facebook-connect/includes/compat-wp-login.php:63
1602
  #, php-format
1603
  msgid "%1$s &lsaquo; %2$s &#8212; WordPress"
@@ -1611,18 +1658,17 @@ msgstr ""
1611
  msgid "Powered by WordPress"
1612
  msgstr ""
1613
 
1614
- #. translators: %s: site title
1615
  #: nextend-facebook-connect/includes/compat-wp-login.php:284
1616
  #, php-format
1617
  msgctxt "site"
1618
  msgid "&larr; Back to %s"
1619
  msgstr ""
1620
 
1621
- #: nextend-facebook-connect/includes/provider-admin.php:198
1622
  msgid "Your configuration needs to be verified"
1623
  msgstr "Tu configuración debe ser verificada"
1624
 
1625
- #: nextend-facebook-connect/includes/provider-admin.php:199
1626
  msgid ""
1627
  "Before you can start letting your users register with your app it needs to "
1628
  "be tested. This test makes sure that no users will have troubles with the "
@@ -1636,15 +1682,15 @@ msgstr ""
1636
  "mensaje de error en el menú emergente, verifica la ID copiada y el secreto o "
1637
  "la aplicación. De lo contrario, tu configuración está bien."
1638
 
1639
- #: nextend-facebook-connect/includes/provider-admin.php:205
1640
  msgid "Please save your changes to verify settings."
1641
  msgstr "Guarda los cambios para verificar la configuración."
1642
 
1643
- #: nextend-facebook-connect/includes/provider-admin.php:213
1644
  msgid "Works Fine"
1645
  msgstr "Funciona Bien"
1646
 
1647
- #: nextend-facebook-connect/includes/provider-admin.php:227
1648
  #, php-format
1649
  msgid ""
1650
  "This provider is currently disabled, which means that users can’t register "
@@ -1653,7 +1699,7 @@ msgstr ""
1653
  "Este proveedor está desactivado, así que los usuarios no pueden registrarse "
1654
  "ni iniciar sesión a través de su cuenta de %s."
1655
 
1656
- #: nextend-facebook-connect/includes/provider-admin.php:230
1657
  #, php-format
1658
  msgid ""
1659
  "This provider works fine, but you can test it again. If you don’t want to "
@@ -1663,7 +1709,7 @@ msgstr ""
1663
  "permitir que los usuarios se registren o inicien sesión con %s, puedes "
1664
  "deshabilitarlo."
1665
 
1666
- #: nextend-facebook-connect/includes/provider-admin.php:233
1667
  #, php-format
1668
  msgid ""
1669
  "This provider is currently enabled, which means that users can register or "
@@ -1672,47 +1718,48 @@ msgstr ""
1672
  "Este proveedor está habilitado, así que los usuarios pueden registrarse o "
1673
  "iniciar sesión a través de su cuenta %s."
1674
 
1675
- #: nextend-facebook-connect/includes/provider-admin.php:241
1676
  msgid "Verify Settings Again"
1677
  msgstr "Verificar la configuración de nuevo"
1678
 
1679
- #: nextend-facebook-connect/includes/provider-admin.php:242
1680
  msgid "Please save your changes before verifying settings."
1681
  msgstr "Guarda tus cambios antes de verificar la configuración, por favor."
1682
 
1683
- #: nextend-facebook-connect/includes/provider.php:357
1684
- #: nextend-facebook-connect/includes/provider.php:705
1685
- #: nextend-facebook-connect/includes/provider.php:710
1686
  msgid "Authentication successful"
1687
  msgstr "Autenticación exitosa"
1688
 
1689
- #: nextend-facebook-connect/includes/provider.php:647
1690
- #: nextend-facebook-connect/includes/user.php:126
 
1691
  msgid "Authentication error"
1692
  msgstr "Error de autenticación"
1693
 
1694
- #: nextend-facebook-connect/includes/provider.php:662
1695
  msgid "Unlink successful."
1696
  msgstr "Desenlace exitoso."
1697
 
1698
- #: nextend-facebook-connect/includes/provider.php:664
1699
  msgid "Unlink is not allowed!"
1700
  msgstr ""
1701
 
1702
- #: nextend-facebook-connect/includes/provider.php:868
1703
- #: nextend-facebook-connect/includes/provider.php:875
1704
  msgid "The test was successful"
1705
  msgstr "La prueba fue exitosa"
1706
 
1707
- #: nextend-facebook-connect/includes/provider.php:921
1708
  msgid "Authentication failed"
1709
  msgstr "Error de autenticación"
1710
 
1711
- #: nextend-facebook-connect/includes/provider.php:1074
1712
  msgid "Identifier"
1713
  msgstr ""
1714
 
1715
- #: nextend-facebook-connect/includes/provider.php:1090
1716
  msgid "Profile picture"
1717
  msgstr ""
1718
 
@@ -1726,20 +1773,24 @@ msgstr ""
1726
  "sesión con %2$s fácilmente."
1727
 
1728
  #: nextend-facebook-connect/includes/user.php:77
1729
- #, php-format
 
 
 
1730
  msgid ""
1731
  "You have already linked a(n) %s account. Please unlink the current and then "
1732
- "you can link other %s account."
1733
  msgstr ""
1734
  "Ya has vinculado una %s cuenta. Desvincula la cuenta actual y después "
1735
  "podrías vincular otra cuenta de %s."
1736
 
1737
  #: nextend-facebook-connect/includes/user.php:82
1738
- #, php-format
1739
- msgid "This %s account is already linked to other user."
 
1740
  msgstr "Esta cuenta %s ya está vinculada a otro usuario."
1741
 
1742
- #: nextend-facebook-connect/includes/user.php:122
1743
  msgid "User registration is currently not allowed."
1744
  msgstr ""
1745
 
@@ -1747,14 +1798,12 @@ msgstr ""
1747
  msgid "Register For This Site!"
1748
  msgstr "¡Registrarse Para Este Sitio!"
1749
 
1750
- #. translators: %2$s: PHP version
1751
- #: nextend-facebook-connect/nextend-facebook-connect.php:34
1752
  #, php-format
1753
  msgid "%1$s requires PHP version %2$s+, plugin is currently NOT ACTIVE."
1754
  msgstr "%1$s requiere la versión PHP %2$s+, el plugin NO ESTÁ ACTIVO."
1755
 
1756
- #. translators: %2$s: WordPress version
1757
- #: nextend-facebook-connect/nextend-facebook-connect.php:41
1758
  #, php-format
1759
  msgid ""
1760
  "%1$s requires WordPress version %2$s+. Because you are using an earlier "
@@ -1774,12 +1823,12 @@ msgstr "Por favor, actualiza %1$s a la versión %2$s o más reciente."
1774
  msgid "Update now!"
1775
  msgstr "¡Actualizar ahora!"
1776
 
1777
- #: nextend-facebook-connect/nextend-social-login.php:749
1778
- #: nextend-facebook-connect/nextend-social-login.php:1125
1779
  msgid "Social Login"
1780
  msgstr "Social Login"
1781
 
1782
- #: nextend-facebook-connect/nextend-social-login.php:1106
1783
  msgid "Social Accounts"
1784
  msgstr "Cuentas Sociales"
1785
 
@@ -1850,7 +1899,7 @@ msgid "In the left sidebar, click on \"<b>Facebook Login > Settings</b>\""
1850
  msgstr "En la barra lateral izquierda, haz clic en \"Facebook Login/Ajustes\""
1851
 
1852
  #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:12
1853
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:34
1854
  #, fuzzy, php-format
1855
  #| msgid ""
1856
  #| "Add the following URL to the \"Valid OAuth redirect URIs\" field: <b>%s</"
@@ -1947,9 +1996,11 @@ msgstr "Navegar a %s"
1947
 
1948
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:26
1949
  #, fuzzy
1950
- #| msgid "Click on the \"Add a New App\" button"
1951
- msgid "Click on the \"<b>Add a New App\" button</b>"
1952
- msgstr "Haz clic en el botón \"Add a New App\" por favor"
 
 
1953
 
1954
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:27
1955
  msgid ""
@@ -1961,25 +2012,31 @@ msgstr ""
1961
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:28
1962
  #, php-format
1963
  msgid ""
1964
- "Fill \"<b>Display Name</b>\" and \"<b>Contact Email</b>\". The specified "
1965
- "\"Display Name\" will appear on your %s!"
1966
  msgstr ""
1967
 
1968
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:29
 
 
 
 
 
 
1969
  #, fuzzy
1970
  #| msgid "Click on the \"Create New App\" button"
1971
  msgid ""
1972
  "Click the \"<b>Create App ID</b>\" button and complete the Security Check."
1973
  msgstr "Haz clic en el botón de \"Create New App\" por favor"
1974
 
1975
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:30
1976
  #, php-format
1977
  msgid ""
1978
  "At the \"<b>Add a Product</b>\" panel find \"<b>%1$s</b>\" and click "
1979
  "\"<b>Set Up</b>\""
1980
  msgstr ""
1981
 
1982
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:31
1983
  #, fuzzy, php-format
1984
  #| msgid ""
1985
  #| "Add the following URL to the \"Authorized Redirect URLs:\" field: <b>%s</"
@@ -1990,33 +2047,33 @@ msgid ""
1990
  msgstr ""
1991
  "Agrega la siguiente URL al campo \"Authorized Redirect URLs\": <b>%s</b>"
1992
 
1993
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:32
1994
  #, fuzzy
1995
  #| msgid "Click on \"Save Changes\""
1996
  msgid "Press “<b>Save</b>”"
1997
  msgstr "Haz clic en \"Guardar Cambios\""
1998
 
1999
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:33
2000
  #, php-format
2001
  msgid ""
2002
  "Click on the “<b>%1$s</b>” option what you find on the left side, under “<b>"
2003
  "%2$s</b> - <b>%3$s</b>”"
2004
  msgstr ""
2005
 
2006
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:35
2007
  #, fuzzy
2008
  #| msgid "Click on \"Save Changes\""
2009
  msgid "Click on “<b>Save Changes</b>”"
2010
  msgstr "Haz clic en \"Guardar Cambios\""
2011
 
2012
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:36
2013
  #, php-format
2014
  msgid ""
2015
  "On the top left side, click on the “<b>%1$s</b>” menu point, then click “<b>"
2016
  "%2$s</b>”"
2017
  msgstr ""
2018
 
2019
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:37
2020
  #, fuzzy, php-format
2021
  #| msgid "Enter your domain name to the App Domains"
2022
  msgid ""
@@ -2024,7 +2081,7 @@ msgid ""
2024
  "b>"
2025
  msgstr "Ingresa tu nombre de dominio a los App Domains"
2026
 
2027
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:38
2028
  #, fuzzy
2029
  #| msgid ""
2030
  #| "Fill up the \"Privacy Policy URL\". Provide a publicly available and "
@@ -2039,14 +2096,41 @@ msgstr ""
2039
  "accesible al público y de fácil acceso que explique cuales datos estás "
2040
  "recopilando y cómo utilizarás esos datos."
2041
 
2042
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:39
2043
  msgid ""
2044
- "Select a “<b>Category</b>”, an “<b>App Icon</b>” and pick the “<b>Business "
2045
- "Use</b>” option that describes your the App best, then press \"<b>Save "
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2046
  "Changes</b>\""
2047
  msgstr ""
2048
 
2049
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:40
2050
  #, fuzzy
2051
  #| msgid ""
2052
  #| "Your application is currently private, which means that only you can log "
@@ -2061,7 +2145,7 @@ msgstr ""
2061
  "En la barra lateral izquierda, elige \"App Review\" y haz que tu aplicación "
2062
  "sea pública"
2063
 
2064
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:41
2065
  #, fuzzy
2066
  #| msgid ""
2067
  #| "Here you can see your \"APP ID\" and you can see your \"App secret\" if "
@@ -2076,9 +2160,20 @@ msgstr ""
2076
  "en el botón \"Mostrar\". Estos serán necesarios en la configuración del "
2077
  "plugin."
2078
 
2079
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:45
 
 
 
 
 
 
 
 
 
 
 
2080
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:40
2081
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:32
2082
  #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:39
2083
  #: nextend-social-login-pro/providers/apple/admin/getting-started.php:122
2084
  #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:30
@@ -2150,39 +2245,56 @@ msgstr ""
2150
  msgid "App Secret"
2151
  msgstr "App Secret"
2152
 
2153
- #: nextend-facebook-connect/providers/facebook/facebook.php:84
 
 
 
 
 
 
 
 
 
 
 
2154
  msgid "Continue with <b>Facebook</b>"
2155
  msgstr "Sigue con <b>Facebook</b>"
2156
 
2157
- #: nextend-facebook-connect/providers/facebook/facebook.php:85
 
 
 
 
 
 
2158
  msgid "Link account with <b>Facebook</b>"
2159
  msgstr "Enlazar cuenta con <b>Facebook</b>"
2160
 
2161
- #: nextend-facebook-connect/providers/facebook/facebook.php:86
2162
  msgid "Unlink account from <b>Facebook</b>"
2163
  msgstr "Desenlazar cuenta de <b>Facebook</b>"
2164
 
2165
- #: nextend-facebook-connect/providers/facebook/facebook.php:186
2166
- #: nextend-facebook-connect/providers/google/google.php:174
2167
- #: nextend-facebook-connect/providers/twitter/twitter.php:95
2168
- #: nextend-social-login-pro/providers/amazon/amazon.php:65
2169
- #: nextend-social-login-pro/providers/apple/apple.php:129
2170
- #: nextend-social-login-pro/providers/apple/apple.php:136
2171
- #: nextend-social-login-pro/providers/disqus/disqus.php:112
2172
- #: nextend-social-login-pro/providers/github/github.php:150
2173
- #: nextend-social-login-pro/providers/linkedin/linkedin.php:63
2174
- #: nextend-social-login-pro/providers/paypal/paypal.php:90
2175
- #: nextend-social-login-pro/providers/vk/vk.php:61
2176
- #: nextend-social-login-pro/providers/wordpress/wordpress.php:99
2177
- #: nextend-social-login-pro/providers/yahoo/yahoo.php:90
2178
  #, php-format
2179
  msgid ""
2180
  "The %1$s entered did not appear to be a valid. Please enter a valid %2$s."
2181
  msgstr ""
2182
  "El %1$s ingresado no parece ser válido. Por favor ingresa un %2$s válido."
2183
 
2184
- #: nextend-facebook-connect/providers/facebook/facebook.php:307
2185
- #: nextend-social-login-pro/providers/paypal/paypal.php:170
2186
  #, php-format
2187
  msgid "Required scope: %1$s"
2188
  msgstr "Alcance requerido: %1$s"
@@ -2363,19 +2475,25 @@ msgid ""
2363
  "Disable, when you don't want to see the account select prompt on each login."
2364
  msgstr ""
2365
 
2366
- #: nextend-facebook-connect/providers/google/google.php:106
2367
  msgid "Continue with <b>Google</b>"
2368
  msgstr "Sigue con <b>Google</b>"
2369
 
2370
- #: nextend-facebook-connect/providers/google/google.php:107
 
 
 
 
 
 
2371
  msgid "Link account with <b>Google</b>"
2372
  msgstr "Enlazar cuenta con <b>Google</b>"
2373
 
2374
- #: nextend-facebook-connect/providers/google/google.php:108
2375
  msgid "Unlink account from <b>Google</b>"
2376
  msgstr "Desenlazar cuenta de <b>Google</b>"
2377
 
2378
- #: nextend-facebook-connect/providers/google/google.php:301
2379
  #, fuzzy, php-format
2380
  #| msgid "Required scope: %1$s"
2381
  msgid "Required API: %1$s"
@@ -2384,27 +2502,39 @@ msgstr "Alcance requerido: %1$s"
2384
  #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:10
2385
  #, fuzzy
2386
  #| msgid "Name your project and then click on the Create button"
2387
- msgid "Find your App and click on the \"<b>Details</b>\" button"
 
 
2388
  msgstr "Denomina tu proyecto y luego haz clic en el botón Create"
2389
 
2390
  #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:11
2391
- msgid ""
2392
- "The <b>Edit</b> button can be found on the App details tab. Click on it and "
2393
- "select \"<b>Edit details</b>\""
2394
- msgstr ""
 
2395
 
2396
  #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:12
2397
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:22
2398
  #, fuzzy, php-format
2399
  #| msgid "Add the following URL to the \"Callback URL\" field: <b>%s</b>"
2400
  msgid "Add the following URL to the \"<b>Callback URLs</b>\" field: <b>%s</b>"
2401
  msgstr "Agrega la siguiente URL al campo de \"Callback URL\": <b>%s</b>"
2402
 
2403
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:17
2404
- #, fuzzy, php-format
2405
- #| msgid "Log in with your %s credentials if you are not logged in"
2406
- msgid "Log in with your %s credentials if you are not logged in yet"
2407
- msgstr "Inicia sesión con tus %s credenciales si no has iniciado sesión"
 
 
 
 
 
 
 
 
 
 
2408
 
2409
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:18
2410
  msgid ""
@@ -2420,58 +2550,77 @@ msgid ""
2420
  msgstr ""
2421
 
2422
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:20
2423
- #, fuzzy, php-format
2424
- #| msgid ""
2425
- #| "Fill the name and description fields. Then enter your site's URL to the "
2426
- #| "Website field: <b>%s</b>"
 
 
2427
  msgid ""
2428
- "Fill the <b>App name</b>, <b>Application description</b> fields. Then enter "
2429
- "your site's URL to the <b>Website URL</b> field: <b>%s</b>"
2430
  msgstr ""
2431
- "Llena los campos de nombre y descripción. Luego ingresa la URL de tu sitio "
2432
- "en el campo Website: <b>%s</b>"
2433
 
2434
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:21
2435
- msgid "Tick the checkbox next to <b>Enable Sign in with Twitter</b>!"
2436
  msgstr ""
2437
 
2438
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:23
2439
  msgid ""
2440
- "Fill the “<b>Terms of Service URL</b>\", \"<b>Privacy policy URL</b>\" and "
2441
- "\"<b>Tell us how this app will be used</b>\" fields!"
 
2442
  msgstr ""
2443
 
2444
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:24
2445
- #, fuzzy
2446
- #| msgid "Click on the Create button"
2447
- msgid "Click the <b>Create</b> button."
2448
- msgstr "Haz clic en el botón Create"
2449
 
2450
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:25
2451
- #, fuzzy
2452
- #| msgid "Name your project and then click on the Create button"
2453
- msgid "Read the Developer Terms and click the <b>Create</b> button again!"
2454
- msgstr "Denomina tu proyecto y luego haz clic en el botón Create"
2455
 
2456
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:26
2457
- msgid "Select the <b>Permissions</b> tab and click <b>Edit</b>."
2458
  msgstr ""
2459
 
2460
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:27
2461
- msgid ""
2462
- "Tick the <b>Request email address from users</b> under the Additional "
2463
- "permissions section and click <b>Save</b>."
2464
  msgstr ""
2465
 
2466
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:28
2467
- #, fuzzy
 
 
 
 
 
 
2468
  #| msgid ""
2469
- #| "Go to the Keys and Access Tokens tab and find the Consumer Key and Secret"
 
 
 
 
2470
  msgid ""
2471
- "Go to the <b>Keys and tokens</b> tab and find the <b>API key</b> and <b>API "
2472
- "secret key</b>"
 
 
 
 
 
 
 
 
 
 
 
 
 
2473
  msgstr ""
2474
- "Ve a la pestaña Keys and Access Tokens y busca la Consumer Key y Secret"
2475
 
2476
  #: nextend-facebook-connect/providers/twitter/admin/settings.php:27
2477
  #: nextend-social-login-pro/providers/disqus/admin/settings.php:26
@@ -2492,15 +2641,21 @@ msgstr ""
2492
  msgid "Original"
2493
  msgstr ""
2494
 
2495
- #: nextend-facebook-connect/providers/twitter/twitter.php:69
2496
  msgid "Continue with <b>Twitter</b>"
2497
  msgstr "Sigue con <b>Twitter</b>"
2498
 
2499
- #: nextend-facebook-connect/providers/twitter/twitter.php:70
 
 
 
 
 
 
2500
  msgid "Link account with <b>Twitter</b>"
2501
  msgstr "Enlazar cuenta con <b>Twitter</b>"
2502
 
2503
- #: nextend-facebook-connect/providers/twitter/twitter.php:71
2504
  msgid "Unlink account from <b>Twitter</b>"
2505
  msgstr "Desenlazar cuenta de <b>Twitter</b>"
2506
 
@@ -2627,20 +2782,20 @@ msgstr ""
2627
  "Este email ya está registrado, por favor inicia sesión en tu cuenta para "
2628
  "vincularlo con %1$s."
2629
 
2630
- #: nextend-social-login-pro/nextend-social-login-pro.php:88
2631
  #, php-format
2632
  msgid "Please install and activate %1$s to use the %2$s"
2633
  msgstr "Por favor instala y activa %1$s para usar el %2$s"
2634
 
2635
- #: nextend-social-login-pro/nextend-social-login-pro.php:102
2636
  msgid "Network Activate"
2637
  msgstr "Activar Red"
2638
 
2639
- #: nextend-social-login-pro/nextend-social-login-pro.php:114
2640
  msgid "Install now!"
2641
  msgstr "¡Instalar ahora!"
2642
 
2643
- #: nextend-social-login-pro/nextend-social-login-pro.php:787
2644
  #, fuzzy
2645
  #| msgid "Providers"
2646
  msgid "Social Providers"
@@ -2653,7 +2808,7 @@ msgid ""
2653
  "latest %2$s version!"
2654
  msgstr ""
2655
 
2656
- #: nextend-social-login-pro/provider-extensions/google.php:176
2657
  #, php-format
2658
  msgid ""
2659
  "Most of these information can only be retrieved, when the field is marked as "
@@ -2715,21 +2870,6 @@ msgstr ""
2715
  "aplicación %1$s, dirígete a \"Ajustes\" y configura los \"%2$s\" y \"%3$s\" "
2716
  "dados según tu aplicación %1$s."
2717
 
2718
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:25
2719
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:38
2720
- #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:9
2721
- #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:16
2722
- #: nextend-social-login-pro/providers/github/admin/getting-started.php:16
2723
- #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:9
2724
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:17
2725
- #: nextend-social-login-pro/providers/vk/admin/getting-started.php:16
2726
- #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:9
2727
- #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:16
2728
- #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:17
2729
- #, php-format
2730
- msgid "Log in with your %s credentials if you are not logged in."
2731
- msgstr "Inicia sesión con tus %s credenciales si no has iniciado sesión."
2732
-
2733
  #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:27
2734
  #, fuzzy
2735
  #| msgid ""
@@ -2795,15 +2935,21 @@ msgid ""
2795
  "middle of the page, under the \"<b>Web Settings</b>\" tab."
2796
  msgstr "Busca la \"Client ID\" y \"Client Secret\" en el medio de la página."
2797
 
2798
- #: nextend-social-login-pro/providers/amazon/amazon.php:39
2799
  msgid "Continue with <b>Amazon</b>"
2800
  msgstr "Sigue con <b>Amazon</b>"
2801
 
2802
- #: nextend-social-login-pro/providers/amazon/amazon.php:40
 
 
 
 
 
 
2803
  msgid "Link account with <b>Amazon</b>"
2804
  msgstr "Enlazar cuenta con <b>Amazon</b>"
2805
 
2806
- #: nextend-social-login-pro/providers/amazon/amazon.php:41
2807
  msgid "Unlink account from <b>Amazon</b>"
2808
  msgstr "Desenlazar cuenta de <b>Amazon</b>"
2809
 
@@ -3134,53 +3280,54 @@ msgstr ""
3134
  msgid "Generate Token"
3135
  msgstr ""
3136
 
3137
- #: nextend-social-login-pro/providers/apple/apple.php:82
3138
- #, fuzzy
3139
- #| msgid "Continue with <b>Google</b>"
3140
  msgid "Continue with <b>Apple</b>"
3141
- msgstr "Sigue con <b>Google</b>"
3142
 
3143
- #: nextend-social-login-pro/providers/apple/apple.php:83
 
 
 
 
 
3144
  #, fuzzy
3145
- #| msgid "Link account with <b>Google</b>"
3146
  msgid "Link account with <b>Apple</b>"
3147
- msgstr "Enlazar cuenta con <b>Google</b>"
3148
 
3149
- #: nextend-social-login-pro/providers/apple/apple.php:84
3150
  #, fuzzy
3151
- #| msgid "Unlink account from <b>Google</b>"
3152
  msgid "Unlink account from <b>Apple</b>"
3153
- msgstr "Desenlazar cuenta de <b>Google</b>"
3154
 
3155
- #: nextend-social-login-pro/providers/apple/apple.php:178
3156
  #, php-format
3157
  msgid "An error occurred when storing of the expiration timestamp : %1$s"
3158
  msgstr ""
3159
 
3160
- #: nextend-social-login-pro/providers/apple/apple.php:182
3161
- #: nextend-social-login-pro/providers/apple/apple.php:280
3162
- #: nextend-social-login-pro/providers/apple/apple.php:295
3163
- #: nextend-social-login-pro/providers/apple/apple.php:339
3164
  #, php-format
3165
  msgid "Token generation failed: %1$s"
3166
  msgstr ""
3167
 
3168
- #: nextend-social-login-pro/providers/apple/apple.php:182
3169
  msgid "Please check your credentials!"
3170
  msgstr ""
3171
 
3172
- #: nextend-social-login-pro/providers/apple/apple.php:280
3173
  msgid "Private key format is not valid!"
3174
  msgstr ""
3175
 
3176
- #: nextend-social-login-pro/providers/apple/apple.php:306
3177
  #, php-format
3178
  msgid ""
3179
  "%s detected that your Apple credentials have expired. Please delete the "
3180
  "current credentials and generate new one!"
3181
  msgstr ""
3182
 
3183
- #: nextend-social-login-pro/providers/apple/apple.php:308
3184
  msgid "Apple Credentials"
3185
  msgstr ""
3186
 
@@ -3287,15 +3434,21 @@ msgstr ""
3287
  msgid "API Secret"
3288
  msgstr "App Secret"
3289
 
3290
- #: nextend-social-login-pro/providers/disqus/disqus.php:86
3291
  msgid "Continue with <b>Disqus</b>"
3292
  msgstr "Sigue con <b>Disqus</b>"
3293
 
3294
- #: nextend-social-login-pro/providers/disqus/disqus.php:87
 
 
 
 
 
 
3295
  msgid "Link account with <b>Disqus</b>"
3296
  msgstr "Enlazar cuenta con <b>Disqus</b>"
3297
 
3298
- #: nextend-social-login-pro/providers/disqus/disqus.php:88
3299
  msgid "Unlink account from <b>Disqus</b>"
3300
  msgstr "Desenlazar cuenta de <b>Disqus</b>"
3301
 
@@ -3386,23 +3539,22 @@ msgid ""
3386
  "public email address set at the %1$s profile page%2$s!"
3387
  msgstr ""
3388
 
3389
- #: nextend-social-login-pro/providers/github/github.php:124
3390
- #, fuzzy
3391
- #| msgid "Continue with <b>Disqus</b>"
3392
  msgid "Continue with <b>GitHub</b>"
3393
- msgstr "Sigue con <b>Disqus</b>"
3394
 
3395
- #: nextend-social-login-pro/providers/github/github.php:125
3396
  #, fuzzy
3397
- #| msgid "Link account with <b>Disqus</b>"
 
 
 
3398
  msgid "Link account with <b>GitHub</b>"
3399
- msgstr "Enlazar cuenta con <b>Disqus</b>"
3400
 
3401
- #: nextend-social-login-pro/providers/github/github.php:126
3402
- #, fuzzy
3403
- #| msgid "Unlink account from <b>Disqus</b>"
3404
  msgid "Unlink account from <b>GitHub</b>"
3405
- msgstr "Desenlazar cuenta de <b>Disqus</b>"
3406
 
3407
  #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:10
3408
  msgid "Click on your App and go to the \"<b>Auth</b>\" tab."
@@ -3504,15 +3656,21 @@ msgid ""
3504
  "the Application credentials section, on the <b>Auth</b> tab."
3505
  msgstr "Busca la \"Client ID\" y \"Client Secret\" en el medio de la página."
3506
 
3507
- #: nextend-social-login-pro/providers/linkedin/linkedin.php:37
3508
  msgid "Continue with <b>LinkedIn</b>"
3509
  msgstr "Sigue con <b>LinkedIn</b>"
3510
 
3511
- #: nextend-social-login-pro/providers/linkedin/linkedin.php:38
 
 
 
 
 
 
3512
  msgid "Link account with <b>LinkedIn</b>"
3513
  msgstr "Enlazar cuenta con <b>LinkedIn</b>"
3514
 
3515
- #: nextend-social-login-pro/providers/linkedin/linkedin.php:39
3516
  msgid "Unlink account from <b>LinkedIn</b>"
3517
  msgstr "Desenlazar cuenta de <b>LinkedIn</b>"
3518
 
@@ -3624,15 +3782,21 @@ msgstr "Email"
3624
  msgid "Disable, when you have no rights for email address."
3625
  msgstr ""
3626
 
3627
- #: nextend-social-login-pro/providers/paypal/paypal.php:64
3628
  msgid "Continue with <b>PayPal</b>"
3629
  msgstr "Sigue con <b>PayPal</b>"
3630
 
3631
- #: nextend-social-login-pro/providers/paypal/paypal.php:65
 
 
 
 
 
 
3632
  msgid "Link account with <b>PayPal</b>"
3633
  msgstr "Enlazar cuenta con <b>PayPal</b>"
3634
 
3635
- #: nextend-social-login-pro/providers/paypal/paypal.php:66
3636
  msgid "Unlink account from <b>PayPal</b>"
3637
  msgstr "Desenlazar cuenta de <b>PayPal</b>"
3638
 
@@ -3746,15 +3910,21 @@ msgstr ""
3746
  msgid "Secure key"
3747
  msgstr "Secure key"
3748
 
3749
- #: nextend-social-login-pro/providers/vk/vk.php:35
3750
  msgid "Continue with <b>VK</b>"
3751
  msgstr "Sigue con <b>VK</b>"
3752
 
3753
- #: nextend-social-login-pro/providers/vk/vk.php:36
 
 
 
 
 
 
3754
  msgid "Link account with <b>VK</b>"
3755
  msgstr "Enlazar cuenta con <b>VK</b>"
3756
 
3757
- #: nextend-social-login-pro/providers/vk/vk.php:37
3758
  msgid "Unlink account from <b>VK</b>"
3759
  msgstr "Desenlazar cuenta de <b>VK</b>"
3760
 
@@ -3831,15 +4001,21 @@ msgstr ""
3831
  "en el botón \"Mostrar\". Estos serán necesarios en la configuración del "
3832
  "plugin."
3833
 
3834
- #: nextend-social-login-pro/providers/wordpress/wordpress.php:73
3835
  msgid "Continue with <b>WordPress.com</b>"
3836
  msgstr "Sigue con <b>WordPress.com</b>"
3837
 
3838
- #: nextend-social-login-pro/providers/wordpress/wordpress.php:74
 
 
 
 
 
 
3839
  msgid "Link account with <b>WordPress.com</b>"
3840
  msgstr "Enlazar cuenta con <b>WordPress.com</b>"
3841
 
3842
- #: nextend-social-login-pro/providers/wordpress/wordpress.php:75
3843
  msgid "Unlink account from <b>WordPress.com</b>"
3844
  msgstr "Desenlazar cuenta de <b>WordPress.com</b>"
3845
 
@@ -3908,25 +4084,24 @@ msgstr ""
3908
  "en el botón \"Mostrar\". Estos serán necesarios en la configuración del "
3909
  "plugin."
3910
 
3911
- #: nextend-social-login-pro/providers/yahoo/yahoo.php:64
3912
- #, fuzzy
3913
- #| msgid "Continue with <b>Facebook</b>"
3914
  msgid "Continue with <b>Yahoo</b>"
3915
- msgstr "Sigue con <b>Facebook</b>"
3916
 
3917
- #: nextend-social-login-pro/providers/yahoo/yahoo.php:65
3918
  #, fuzzy
3919
- #| msgid "Link account with <b>Facebook</b>"
 
 
 
3920
  msgid "Link account with <b>Yahoo</b>"
3921
- msgstr "Enlazar cuenta con <b>Facebook</b>"
3922
 
3923
- #: nextend-social-login-pro/providers/yahoo/yahoo.php:66
3924
- #, fuzzy
3925
- #| msgid "Unlink account from <b>Facebook</b>"
3926
  msgid "Unlink account from <b>Yahoo</b>"
3927
- msgstr "Desenlazar cuenta de <b>Facebook</b>"
3928
 
3929
- #: nextend-social-login-pro/providers/yahoo/yahoo.php:186
3930
  #, fuzzy, php-format
3931
  #| msgid "Required scope: %1$s"
3932
  msgid "Required permission: %1$s"
@@ -3970,6 +4145,46 @@ msgstr "O"
3970
  msgid "Social accounts"
3971
  msgstr "Cuentas sociales"
3972
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3973
  #, fuzzy
3974
  #~| msgid "Enter your domain name to the App Domains"
3975
  #~ msgid "Enter your domain name to the \"App Domains\" field."
@@ -4320,9 +4535,6 @@ msgstr "Cuentas sociales"
4320
  #~ msgid "Connect button after login form"
4321
  #~ msgstr "Conectar botón después del formulario inicio de sesión"
4322
 
4323
- #~ msgid "WooCommerce register form"
4324
- #~ msgstr "Formulario de registro WooCommerce"
4325
-
4326
  #~ msgid "Connect button before register form"
4327
  #~ msgstr "Conectar botón antes del formulario registro"
4328
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: nextend-facebook-connect\n"
4
+ "POT-Creation-Date: 2021-01-27 13:56+0100\n"
5
+ "PO-Revision-Date: 2021-01-27 13:56+0100\n"
6
  "Last-Translator: Gabriel Vilaró <gabo@etereo.ch>\n"
7
  "Language-Team: nextend-facebook-connect\n"
8
  "Language: es_419\n"
112
  msgid "User"
113
  msgstr "Usario"
114
 
115
+ #: nextend-facebook-connect/admin/admin.php:206
116
  #, php-format
117
  msgid "%s needs json_decode function."
118
  msgstr "%s necesita la función json_decode."
119
 
120
+ #: nextend-facebook-connect/admin/admin.php:206
121
  msgid "Please contact your server administrator and ask for solution!"
122
  msgstr ""
123
  "¡Por favor, ponte en contacto con el administrador de tu servidor y solicita "
124
  "una solución!"
125
 
126
+ #: nextend-facebook-connect/admin/admin.php:238
127
+ #: nextend-facebook-connect/admin/admin.php:268
128
  msgid "Settings saved."
129
  msgstr "Ajustes guardados."
130
 
131
+ #: nextend-facebook-connect/admin/admin.php:247
132
  #, fuzzy
133
  #| msgid "The authorization was successful"
134
  msgid "The activation was successful"
135
  msgstr "La autorización fue exitosa"
136
 
137
+ #: nextend-facebook-connect/admin/admin.php:258
138
  #, fuzzy
139
  #| msgid "Deauthorize completed."
140
  msgid "Deactivate completed."
141
  msgstr "Desautorizar completado."
142
 
143
+ #: nextend-facebook-connect/admin/admin.php:437
144
  #: nextend-facebook-connect/admin/templates-provider/menu.php:15
145
  #: nextend-facebook-connect/admin/templates/providers.php:89
146
  #: nextend-facebook-connect/admin/templates/providers.php:101
148
  msgid "Settings"
149
  msgstr "Ajustes"
150
 
151
+ #: nextend-facebook-connect/admin/admin.php:520
152
+ #: nextend-facebook-connect/includes/oauth2.php:143
153
+ #: nextend-facebook-connect/includes/oauth2.php:288
154
  #: nextend-facebook-connect/providers/facebook/facebook-client.php:84
155
  #: nextend-facebook-connect/providers/twitter/twitter-client.php:165
156
  #: nextend-social-login-pro/providers/apple/apple-client.php:87
159
  msgid "Unexpected response: %s"
160
  msgstr "Respuesta inesperada: %s"
161
 
162
+ #: nextend-facebook-connect/admin/admin.php:581
163
  #: nextend-facebook-connect/admin/templates/fix-redirect-uri.php:21
164
  #, php-format
165
  msgid ""
169
  "%s detectó que tu URL de inicio de sesión cambió. Debes actualizar los URI "
170
  "de redireccionamiento de Oauth en las aplicaciones sociales relacionadas."
171
 
172
+ #: nextend-facebook-connect/admin/admin.php:582
173
+ #: nextend-social-login-pro/providers/apple/apple.php:310
174
  msgid "Fix Error"
175
  msgstr "Arreglar Error"
176
 
177
+ #: nextend-facebook-connect/admin/admin.php:582
178
  msgid "Oauth Redirect URI"
179
  msgstr "URI de redireccionamiento de Oauth"
180
 
181
+ #: nextend-facebook-connect/admin/admin.php:599
182
  #, php-format
183
  msgid ""
184
  "%1$s detected that %2$s installed on your site. You need the Pro Addon to "
187
  "%1$s detectó que %2$s está instalado en tu sitio. ¡Necesitas el Pro Addon "
188
  "para mostrar los botones de Social Login en el formulario de acceso de %2$s!"
189
 
190
+ #: nextend-facebook-connect/admin/admin.php:600
191
  msgid "Dismiss and check Pro Addon"
192
  msgstr "Descartar y verificar Pro Addon"
193
 
194
+ #: nextend-facebook-connect/admin/admin.php:600
195
  msgid "Dismiss"
196
  msgstr "Descartar"
197
 
198
+ #: nextend-facebook-connect/admin/admin.php:606
199
  #, php-format
200
  msgid ""
201
  "%1$s detected that %2$s installed on your site. You must set \"<b>Page for "
203
  "work properly."
204
  msgstr ""
205
 
206
+ #: nextend-facebook-connect/admin/admin.php:607
207
  #, fuzzy
208
  #| msgid "Fix Error"
209
  msgid "Fix now"
210
  msgstr "Arreglar Error"
211
 
212
+ #: nextend-facebook-connect/admin/admin.php:631
213
  #, fuzzy
214
  #| msgid "Activate Pro Addon"
215
  msgid "Activate your Pro Addon"
216
  msgstr "Activar Pro Addon"
217
 
218
+ #: nextend-facebook-connect/admin/admin.php:632
219
  #, fuzzy
220
  #| msgid ""
221
  #| "To be able to use the Pro features, you need to authorize Nextend Social "
230
  "Pro Addon. Puedes hacer esto haciendo clic en el botón Autorizar a "
231
  "continuación y luego seleccionar la compra relacionada."
232
 
233
+ #: nextend-facebook-connect/admin/admin.php:637
234
+ #: nextend-social-login-pro/nextend-social-login-pro.php:110
235
  msgid "Activate"
236
  msgstr "Activar"
237
 
238
+ #: nextend-facebook-connect/admin/admin.php:735
239
  msgid "License key"
240
  msgstr "Clave de licencia"
241
 
242
+ #: nextend-facebook-connect/admin/admin.php:758
243
  msgid "OAuth proxy page"
244
  msgstr ""
245
 
246
+ #: nextend-facebook-connect/admin/admin.php:761
247
  #, fuzzy
248
  #| msgid "Register layout"
249
  msgid "Register flow page"
254
  msgid "You have logged in successfully."
255
  msgstr "Has ingresado exitosamente."
256
 
257
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:80
258
  msgid "Login label"
259
  msgstr "Etiqueta de acceso"
260
 
261
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:85
262
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:101
263
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:114
264
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:125
265
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:154
266
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:184
267
  #: nextend-facebook-connect/admin/templates/settings/privacy.php:53
268
  msgid "Reset to default"
269
  msgstr "Restablecer los valores predeterminados"
270
 
271
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:95
272
+ #, fuzzy
273
+ #| msgid "Register layout"
274
+ msgid "Register label"
275
+ msgstr "Diseño de Registro"
276
+
277
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:108
278
  msgid "Link label"
279
  msgstr "Etiqueta de enlace"
280
 
281
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:120
282
  msgid "Unlink label"
283
  msgstr "Etiqueta de desenlazar"
284
 
285
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:131
286
  msgid "Default button"
287
  msgstr "Botón predeterminado"
288
 
289
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:147
290
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:177
291
  msgid "Use custom button"
292
  msgstr "Usa botón personalizado"
293
 
294
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:154
295
  #, php-format
296
  msgid "Use the %s in your custom button's code to make the label show up."
297
  msgstr ""
298
  "Use el %s en el código de tu botón personalizado para que aparezca la "
299
  "etiqueta."
300
 
301
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:162
302
  msgid "Icon button"
303
  msgstr "Botón de icono"
304
 
305
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:193
306
  #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:140
307
  #: nextend-facebook-connect/admin/templates-provider/sync-data.php:104
308
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:170
315
  #: nextend-facebook-connect/admin/templates/settings/privacy.php:109
316
  #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:186
317
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:167
318
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:341
319
+ #: nextend-facebook-connect/providers/facebook/admin/settings.php:67
320
  #: nextend-facebook-connect/providers/google/admin/settings.php:62
321
  #: nextend-facebook-connect/providers/twitter/admin/settings.php:48
322
  #: nextend-social-login-pro/providers/amazon/admin/settings.php:47
443
  #: nextend-facebook-connect/admin/templates/settings/general.php:213
444
  #: nextend-facebook-connect/admin/templates/settings/general.php:228
445
  #: nextend-facebook-connect/admin/templates/settings/general.php:246
446
+ #: nextend-facebook-connect/admin/templates/settings/general.php:261
447
+ #: nextend-facebook-connect/includes/provider-admin.php:218
448
  msgid "Disabled"
449
  msgstr "Desactivado"
450
 
771
  #: nextend-facebook-connect/admin/templates/settings/general.php:216
772
  #: nextend-facebook-connect/admin/templates/settings/general.php:231
773
  #: nextend-facebook-connect/admin/templates/settings/general.php:249
774
+ #: nextend-facebook-connect/admin/templates/settings/general.php:264
775
+ #: nextend-facebook-connect/includes/provider-admin.php:221
776
  #: nextend-facebook-connect/providers/google/admin/settings.php:53
777
  #: nextend-social-login-pro/providers/paypal/admin/settings.php:51
778
  msgid "Enabled"
783
  msgstr "Actualizar Ahora"
784
 
785
  #: nextend-facebook-connect/admin/templates/providers.php:77
786
+ #: nextend-facebook-connect/includes/provider-admin.php:205
787
  msgid "Verify Settings"
788
  msgstr "Verificar Configuración"
789
 
790
  #: nextend-facebook-connect/admin/templates/providers.php:85
791
+ #: nextend-facebook-connect/includes/provider-admin.php:250
792
  msgid "Enable"
793
  msgstr "Habilitar"
794
 
795
  #: nextend-facebook-connect/admin/templates/providers.php:97
796
+ #: nextend-facebook-connect/includes/provider-admin.php:258
797
  msgid "Disable"
798
  msgstr "Inhabilitar"
799
 
1363
  msgid "Allow registration with Social login."
1364
  msgstr "Permitir registro con Social login"
1365
 
1366
+ #: nextend-facebook-connect/admin/templates/settings/general.php:256
1367
+ #, fuzzy
1368
+ #| msgid "for Register"
1369
+ msgid "Custom label for register buttons"
1370
+ msgstr "para Registrarse"
1371
+
1372
+ #: nextend-facebook-connect/admin/templates/settings/general.php:266
1373
+ #, php-format
1374
+ msgid ""
1375
+ "Set a custom label for the social buttons in registration forms and for "
1376
+ "shortcodes with %1$s parameter set to %2$s.<br>The register specific labels "
1377
+ "can be modified at the Buttons tab of each provider."
1378
+ msgstr ""
1379
+
1380
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:29
1381
  #: nextend-facebook-connect/admin/templates/settings/memberpress.php:33
1382
  #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:33
1477
  msgstr "Enlazar botones de enlace después de los detalles de la cuenta"
1478
 
1479
  #: nextend-facebook-connect/admin/templates/settings/privacy.php:6
1480
+ #: nextend-facebook-connect/nextend-social-login.php:148
1481
  msgid ""
1482
  "By clicking Register, you accept our <a href=\"#privacy_policy_url\" target="
1483
  "\"_blank\">Privacy Policy</a>"
1505
  msgstr ""
1506
 
1507
  #: nextend-facebook-connect/admin/templates/settings/privacy.php:91
1508
+ #: nextend-facebook-connect/includes/avatar.php:49
1509
  msgid "Avatar"
1510
  msgstr "Avatar"
1511
 
1512
  #: nextend-facebook-connect/admin/templates/settings/privacy.php:102
1513
+ #: nextend-facebook-connect/includes/provider.php:1100
1514
  msgid "Access token"
1515
  msgstr ""
1516
 
1592
  msgid "Link buttons on"
1593
  msgstr "Sin botones de enlace"
1594
 
1595
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:323
1596
+ #, fuzzy
1597
+ #| msgid "Ask E-mail on registration"
1598
+ msgid "Email template for registration"
1599
+ msgstr "Preguntar E-mail durante el registro"
1600
+
1601
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:328
1602
+ #, fuzzy
1603
+ #| msgid "WordPress default"
1604
+ msgid "WordPress default notification"
1605
+ msgstr "Configuración predeterminada de Wordpress"
1606
+
1607
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:331
1608
+ #, fuzzy
1609
+ #| msgid "WooCommerce register form"
1610
+ msgid "WooCommerce registration notification"
1611
+ msgstr "Formulario de registro WooCommerce"
1612
+
1613
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:333
1614
+ #, php-format
1615
+ msgid ""
1616
+ "Defines whether the registration with %1$s will send the same registration "
1617
+ "notification that %2$s does, instead of the %3$s default one."
1618
+ msgstr ""
1619
+
1620
  #: nextend-facebook-connect/admin/templates/test-connection.php:42
1621
  #, fuzzy, php-format
1622
  #| msgid "Authentication successful"
1634
  "between your server and the provider."
1635
  msgstr ""
1636
 
1637
+ #: nextend-facebook-connect/includes/avatar.php:50
1638
  msgid "Manage Avatar"
1639
  msgstr "Administrar Avatar"
1640
 
1641
+ #: nextend-facebook-connect/includes/avatar.php:51
1642
  #, php-format
1643
  msgid "Avatar <span class=\"count\">(%s)</span>"
1644
  msgid_plural "Avatar <span class=\"count\">(%s)</span>"
1645
  msgstr[0] "Avatar <span class=\"count\">(%s)</span>"
1646
  msgstr[1] "Avatar <span class=\"count\">(%s)</span>"
1647
 
 
1648
  #: nextend-facebook-connect/includes/compat-wp-login.php:63
1649
  #, php-format
1650
  msgid "%1$s &lsaquo; %2$s &#8212; WordPress"
1658
  msgid "Powered by WordPress"
1659
  msgstr ""
1660
 
 
1661
  #: nextend-facebook-connect/includes/compat-wp-login.php:284
1662
  #, php-format
1663
  msgctxt "site"
1664
  msgid "&larr; Back to %s"
1665
  msgstr ""
1666
 
1667
+ #: nextend-facebook-connect/includes/provider-admin.php:199
1668
  msgid "Your configuration needs to be verified"
1669
  msgstr "Tu configuración debe ser verificada"
1670
 
1671
+ #: nextend-facebook-connect/includes/provider-admin.php:200
1672
  msgid ""
1673
  "Before you can start letting your users register with your app it needs to "
1674
  "be tested. This test makes sure that no users will have troubles with the "
1682
  "mensaje de error en el menú emergente, verifica la ID copiada y el secreto o "
1683
  "la aplicación. De lo contrario, tu configuración está bien."
1684
 
1685
+ #: nextend-facebook-connect/includes/provider-admin.php:206
1686
  msgid "Please save your changes to verify settings."
1687
  msgstr "Guarda los cambios para verificar la configuración."
1688
 
1689
+ #: nextend-facebook-connect/includes/provider-admin.php:214
1690
  msgid "Works Fine"
1691
  msgstr "Funciona Bien"
1692
 
1693
+ #: nextend-facebook-connect/includes/provider-admin.php:228
1694
  #, php-format
1695
  msgid ""
1696
  "This provider is currently disabled, which means that users can’t register "
1699
  "Este proveedor está desactivado, así que los usuarios no pueden registrarse "
1700
  "ni iniciar sesión a través de su cuenta de %s."
1701
 
1702
+ #: nextend-facebook-connect/includes/provider-admin.php:231
1703
  #, php-format
1704
  msgid ""
1705
  "This provider works fine, but you can test it again. If you don’t want to "
1709
  "permitir que los usuarios se registren o inicien sesión con %s, puedes "
1710
  "deshabilitarlo."
1711
 
1712
+ #: nextend-facebook-connect/includes/provider-admin.php:234
1713
  #, php-format
1714
  msgid ""
1715
  "This provider is currently enabled, which means that users can register or "
1718
  "Este proveedor está habilitado, así que los usuarios pueden registrarse o "
1719
  "iniciar sesión a través de su cuenta %s."
1720
 
1721
+ #: nextend-facebook-connect/includes/provider-admin.php:242
1722
  msgid "Verify Settings Again"
1723
  msgstr "Verificar la configuración de nuevo"
1724
 
1725
+ #: nextend-facebook-connect/includes/provider-admin.php:243
1726
  msgid "Please save your changes before verifying settings."
1727
  msgstr "Guarda tus cambios antes de verificar la configuración, por favor."
1728
 
1729
+ #: nextend-facebook-connect/includes/provider.php:358
1730
+ #: nextend-facebook-connect/includes/provider.php:717
1731
+ #: nextend-facebook-connect/includes/provider.php:725
1732
  msgid "Authentication successful"
1733
  msgstr "Autenticación exitosa"
1734
 
1735
+ #: nextend-facebook-connect/includes/provider.php:654
1736
+ #: nextend-facebook-connect/includes/user.php:168
1737
+ #: nextend-facebook-connect/includes/user.php:597
1738
  msgid "Authentication error"
1739
  msgstr "Error de autenticación"
1740
 
1741
+ #: nextend-facebook-connect/includes/provider.php:669
1742
  msgid "Unlink successful."
1743
  msgstr "Desenlace exitoso."
1744
 
1745
+ #: nextend-facebook-connect/includes/provider.php:671
1746
  msgid "Unlink is not allowed!"
1747
  msgstr ""
1748
 
1749
+ #: nextend-facebook-connect/includes/provider.php:886
1750
+ #: nextend-facebook-connect/includes/provider.php:893
1751
  msgid "The test was successful"
1752
  msgstr "La prueba fue exitosa"
1753
 
1754
+ #: nextend-facebook-connect/includes/provider.php:939
1755
  msgid "Authentication failed"
1756
  msgstr "Error de autenticación"
1757
 
1758
+ #: nextend-facebook-connect/includes/provider.php:1092
1759
  msgid "Identifier"
1760
  msgstr ""
1761
 
1762
+ #: nextend-facebook-connect/includes/provider.php:1108
1763
  msgid "Profile picture"
1764
  msgstr ""
1765
 
1773
  "sesión con %2$s fácilmente."
1774
 
1775
  #: nextend-facebook-connect/includes/user.php:77
1776
+ #, fuzzy, php-format
1777
+ #| msgid ""
1778
+ #| "You have already linked a(n) %s account. Please unlink the current and "
1779
+ #| "then you can link other %s account."
1780
  msgid ""
1781
  "You have already linked a(n) %s account. Please unlink the current and then "
1782
+ "you can link another %s account."
1783
  msgstr ""
1784
  "Ya has vinculado una %s cuenta. Desvincula la cuenta actual y después "
1785
  "podrías vincular otra cuenta de %s."
1786
 
1787
  #: nextend-facebook-connect/includes/user.php:82
1788
+ #, fuzzy, php-format
1789
+ #| msgid "This %s account is already linked to other user."
1790
+ msgid "This %s account is already linked to another user."
1791
  msgstr "Esta cuenta %s ya está vinculada a otro usuario."
1792
 
1793
+ #: nextend-facebook-connect/includes/user.php:128
1794
  msgid "User registration is currently not allowed."
1795
  msgstr ""
1796
 
1798
  msgid "Register For This Site!"
1799
  msgstr "¡Registrarse Para Este Sitio!"
1800
 
1801
+ #: nextend-facebook-connect/nextend-facebook-connect.php:37
 
1802
  #, php-format
1803
  msgid "%1$s requires PHP version %2$s+, plugin is currently NOT ACTIVE."
1804
  msgstr "%1$s requiere la versión PHP %2$s+, el plugin NO ESTÁ ACTIVO."
1805
 
1806
+ #: nextend-facebook-connect/nextend-facebook-connect.php:44
 
1807
  #, php-format
1808
  msgid ""
1809
  "%1$s requires WordPress version %2$s+. Because you are using an earlier "
1823
  msgid "Update now!"
1824
  msgstr "¡Actualizar ahora!"
1825
 
1826
+ #: nextend-facebook-connect/nextend-social-login.php:762
1827
+ #: nextend-facebook-connect/nextend-social-login.php:1140
1828
  msgid "Social Login"
1829
  msgstr "Social Login"
1830
 
1831
+ #: nextend-facebook-connect/nextend-social-login.php:1121
1832
  msgid "Social Accounts"
1833
  msgstr "Cuentas Sociales"
1834
 
1899
  msgstr "En la barra lateral izquierda, haz clic en \"Facebook Login/Ajustes\""
1900
 
1901
  #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:12
1902
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:35
1903
  #, fuzzy, php-format
1904
  #| msgid ""
1905
  #| "Add the following URL to the \"Valid OAuth redirect URIs\" field: <b>%s</"
1996
 
1997
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:26
1998
  #, fuzzy
1999
+ #| msgid "Click on the \"Create New App\" button"
2000
+ msgid ""
2001
+ "Click on the \"<b>Create App</b>\" button and in the Popup choose the "
2002
+ "\"<b>Build Connected Experiences</b>\" option!"
2003
+ msgstr "Haz clic en el botón de \"Create New App\" por favor"
2004
 
2005
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:27
2006
  msgid ""
2012
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:28
2013
  #, php-format
2014
  msgid ""
2015
+ "Fill \"<b>App Display Name</b>\", \"<b>App Contact Email</b>\". The "
2016
+ "specified \"App Display Name\" will appear on your %s!"
2017
  msgstr ""
2018
 
2019
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:29
2020
+ msgid ""
2021
+ "<b>Optional</b>: choose a \"<b>Business Manager Account</b>\" in the popup, "
2022
+ "if you have any."
2023
+ msgstr ""
2024
+
2025
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:30
2026
  #, fuzzy
2027
  #| msgid "Click on the \"Create New App\" button"
2028
  msgid ""
2029
  "Click the \"<b>Create App ID</b>\" button and complete the Security Check."
2030
  msgstr "Haz clic en el botón de \"Create New App\" por favor"
2031
 
2032
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:31
2033
  #, php-format
2034
  msgid ""
2035
  "At the \"<b>Add a Product</b>\" panel find \"<b>%1$s</b>\" and click "
2036
  "\"<b>Set Up</b>\""
2037
  msgstr ""
2038
 
2039
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:32
2040
  #, fuzzy, php-format
2041
  #| msgid ""
2042
  #| "Add the following URL to the \"Authorized Redirect URLs:\" field: <b>%s</"
2047
  msgstr ""
2048
  "Agrega la siguiente URL al campo \"Authorized Redirect URLs\": <b>%s</b>"
2049
 
2050
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:33
2051
  #, fuzzy
2052
  #| msgid "Click on \"Save Changes\""
2053
  msgid "Press “<b>Save</b>”"
2054
  msgstr "Haz clic en \"Guardar Cambios\""
2055
 
2056
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:34
2057
  #, php-format
2058
  msgid ""
2059
  "Click on the “<b>%1$s</b>” option what you find on the left side, under “<b>"
2060
  "%2$s</b> - <b>%3$s</b>”"
2061
  msgstr ""
2062
 
2063
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:36
2064
  #, fuzzy
2065
  #| msgid "Click on \"Save Changes\""
2066
  msgid "Click on “<b>Save Changes</b>”"
2067
  msgstr "Haz clic en \"Guardar Cambios\""
2068
 
2069
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:37
2070
  #, php-format
2071
  msgid ""
2072
  "On the top left side, click on the “<b>%1$s</b>” menu point, then click “<b>"
2073
  "%2$s</b>”"
2074
  msgstr ""
2075
 
2076
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:38
2077
  #, fuzzy, php-format
2078
  #| msgid "Enter your domain name to the App Domains"
2079
  msgid ""
2081
  "b>"
2082
  msgstr "Ingresa tu nombre de dominio a los App Domains"
2083
 
2084
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:39
2085
  #, fuzzy
2086
  #| msgid ""
2087
  #| "Fill up the \"Privacy Policy URL\". Provide a publicly available and "
2096
  "accesible al público y de fácil acceso que explique cuales datos estás "
2097
  "recopilando y cómo utilizarás esos datos."
2098
 
2099
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:40
2100
  msgid ""
2101
+ "At \"<b>User Data Deletion</b>\", choose the \"<b>Data Deletion Instructions "
2102
+ "URL</b>\" option, and enter the <i>URL of your page</i>* with the "
2103
+ "instructions on how users can delete their accounts on your site."
2104
+ msgstr ""
2105
+
2106
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:42
2107
+ msgid ""
2108
+ "To comply with GDPR, you should already offer possibility to delete accounts "
2109
+ "on your site, either by the user or by the admin:"
2110
+ msgstr ""
2111
+
2112
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:45
2113
+ msgid ""
2114
+ "<u>If each user has an option to delete the account</u>: the URL should "
2115
+ "point to a guide showing the way users can delete their accounts."
2116
+ msgstr ""
2117
+
2118
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:46
2119
+ msgid ""
2120
+ "<u>If the accounts are deleted by an admin</u>: then you should have a "
2121
+ "section - usually in the Privacy Policy - with the contact details, where "
2122
+ "users can send their account erasure requests. In this case the URL should "
2123
+ "point to this section of the document."
2124
+ msgstr ""
2125
+
2126
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:51
2127
+ msgid ""
2128
+ "Select a “<b>Category</b>”, an “<b>App Icon</b>” and pick the “<b>App "
2129
+ "Purpose</b>” option that describes your App the best, then press \"<b>Save "
2130
  "Changes</b>\""
2131
  msgstr ""
2132
 
2133
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:52
2134
  #, fuzzy
2135
  #| msgid ""
2136
  #| "Your application is currently private, which means that only you can log "
2145
  "En la barra lateral izquierda, elige \"App Review\" y haz que tu aplicación "
2146
  "sea pública"
2147
 
2148
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:53
2149
  #, fuzzy
2150
  #| msgid ""
2151
  #| "Here you can see your \"APP ID\" and you can see your \"App secret\" if "
2160
  "en el botón \"Mostrar\". Estos serán necesarios en la configuración del "
2161
  "plugin."
2162
 
2163
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:56
2164
+ #, php-format
2165
+ msgid ""
2166
+ "<b>WARNING:</b> <u>Don't replace your Facebook App with another!</u> Since "
2167
+ "WordPress users with linked Facebook accounts can only login using the %1$s "
2168
+ "App, that was originally used at the time, when the WordPress account was "
2169
+ "linked with a %1$s Account.<br>\n"
2170
+ "If you would like to know the reason of this, or you really need to replace "
2171
+ "the Facebook App, then please check our %2$sdocumentation%3$s."
2172
+ msgstr ""
2173
+
2174
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:60
2175
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:40
2176
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:37
2177
  #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:39
2178
  #: nextend-social-login-pro/providers/apple/admin/getting-started.php:122
2179
  #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:30
2245
  msgid "App Secret"
2246
  msgstr "App Secret"
2247
 
2248
+ #: nextend-facebook-connect/providers/facebook/admin/settings.php:59
2249
+ #, php-format
2250
+ msgid ""
2251
+ "By replacing your existing %1$s App, users with linked %1$s accounts will no "
2252
+ "longer be able to login with %1$s."
2253
+ msgstr ""
2254
+
2255
+ #: nextend-facebook-connect/providers/facebook/admin/settings.php:61
2256
+ msgid "Find out why?"
2257
+ msgstr ""
2258
+
2259
+ #: nextend-facebook-connect/providers/facebook/facebook.php:85
2260
  msgid "Continue with <b>Facebook</b>"
2261
  msgstr "Sigue con <b>Facebook</b>"
2262
 
2263
+ #: nextend-facebook-connect/providers/facebook/facebook.php:86
2264
+ #, fuzzy
2265
+ #| msgid "Continue with <b>Facebook</b>"
2266
+ msgid "Sign up with <b>Facebook</b>"
2267
+ msgstr "Sigue con <b>Facebook</b>"
2268
+
2269
+ #: nextend-facebook-connect/providers/facebook/facebook.php:87
2270
  msgid "Link account with <b>Facebook</b>"
2271
  msgstr "Enlazar cuenta con <b>Facebook</b>"
2272
 
2273
+ #: nextend-facebook-connect/providers/facebook/facebook.php:88
2274
  msgid "Unlink account from <b>Facebook</b>"
2275
  msgstr "Desenlazar cuenta de <b>Facebook</b>"
2276
 
2277
+ #: nextend-facebook-connect/providers/facebook/facebook.php:188
2278
+ #: nextend-facebook-connect/providers/google/google.php:168
2279
+ #: nextend-facebook-connect/providers/twitter/twitter.php:97
2280
+ #: nextend-social-login-pro/providers/amazon/amazon.php:67
2281
+ #: nextend-social-login-pro/providers/apple/apple.php:131
2282
+ #: nextend-social-login-pro/providers/apple/apple.php:138
2283
+ #: nextend-social-login-pro/providers/disqus/disqus.php:114
2284
+ #: nextend-social-login-pro/providers/github/github.php:152
2285
+ #: nextend-social-login-pro/providers/linkedin/linkedin.php:65
2286
+ #: nextend-social-login-pro/providers/paypal/paypal.php:92
2287
+ #: nextend-social-login-pro/providers/vk/vk.php:63
2288
+ #: nextend-social-login-pro/providers/wordpress/wordpress.php:101
2289
+ #: nextend-social-login-pro/providers/yahoo/yahoo.php:92
2290
  #, php-format
2291
  msgid ""
2292
  "The %1$s entered did not appear to be a valid. Please enter a valid %2$s."
2293
  msgstr ""
2294
  "El %1$s ingresado no parece ser válido. Por favor ingresa un %2$s válido."
2295
 
2296
+ #: nextend-facebook-connect/providers/facebook/facebook.php:309
2297
+ #: nextend-social-login-pro/providers/paypal/paypal.php:172
2298
  #, php-format
2299
  msgid "Required scope: %1$s"
2300
  msgstr "Alcance requerido: %1$s"
2475
  "Disable, when you don't want to see the account select prompt on each login."
2476
  msgstr ""
2477
 
2478
+ #: nextend-facebook-connect/providers/google/google.php:99
2479
  msgid "Continue with <b>Google</b>"
2480
  msgstr "Sigue con <b>Google</b>"
2481
 
2482
+ #: nextend-facebook-connect/providers/google/google.php:100
2483
+ #, fuzzy
2484
+ #| msgid "Continue with <b>Google</b>"
2485
+ msgid "Sign up with <b>Google</b>"
2486
+ msgstr "Sigue con <b>Google</b>"
2487
+
2488
+ #: nextend-facebook-connect/providers/google/google.php:101
2489
  msgid "Link account with <b>Google</b>"
2490
  msgstr "Enlazar cuenta con <b>Google</b>"
2491
 
2492
+ #: nextend-facebook-connect/providers/google/google.php:102
2493
  msgid "Unlink account from <b>Google</b>"
2494
  msgstr "Desenlazar cuenta de <b>Google</b>"
2495
 
2496
+ #: nextend-facebook-connect/providers/google/google.php:295
2497
  #, fuzzy, php-format
2498
  #| msgid "Required scope: %1$s"
2499
  msgid "Required API: %1$s"
2502
  #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:10
2503
  #, fuzzy
2504
  #| msgid "Name your project and then click on the Create button"
2505
+ msgid ""
2506
+ "Find your App and click on the <b>App settings</b> icon. (The one that looks "
2507
+ "like a gear.)"
2508
  msgstr "Denomina tu proyecto y luego haz clic en el botón Create"
2509
 
2510
  #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:11
2511
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:27
2512
+ #, fuzzy
2513
+ #| msgid "Click on the \"Create New App\" button"
2514
+ msgid "Click on the <b>Edit</b> button at <b>Authentication settings</b>."
2515
+ msgstr "Haz clic en el botón de \"Create New App\" por favor"
2516
 
2517
  #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:12
 
2518
  #, fuzzy, php-format
2519
  #| msgid "Add the following URL to the \"Callback URL\" field: <b>%s</b>"
2520
  msgid "Add the following URL to the \"<b>Callback URLs</b>\" field: <b>%s</b>"
2521
  msgstr "Agrega la siguiente URL al campo de \"Callback URL\": <b>%s</b>"
2522
 
2523
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:17
2524
+ #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:25
2525
+ #: nextend-social-login-pro/providers/apple/admin/getting-started.php:38
2526
+ #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:9
2527
+ #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:16
2528
+ #: nextend-social-login-pro/providers/github/admin/getting-started.php:16
2529
+ #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:9
2530
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:17
2531
+ #: nextend-social-login-pro/providers/vk/admin/getting-started.php:16
2532
+ #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:9
2533
+ #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:16
2534
+ #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:17
2535
+ #, php-format
2536
+ msgid "Log in with your %s credentials if you are not logged in."
2537
+ msgstr "Inicia sesión con tus %s credenciales si no has iniciado sesión."
2538
 
2539
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:18
2540
  msgid ""
2550
  msgstr ""
2551
 
2552
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:20
2553
+ #, fuzzy
2554
+ #| msgid "Click on \"Save\""
2555
+ msgid "Click on <b>+ New Project</b>!"
2556
+ msgstr "Haz clic en \"Guardar Cambios\""
2557
+
2558
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:21
2559
  msgid ""
2560
+ "Name your project, and go through the basic setup. You’ll need to select "
2561
+ "your use case and give a description."
2562
  msgstr ""
 
 
2563
 
2564
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:22
2565
+ msgid "Create a new app, or select an existing one, then click <b>Complete</b>"
2566
  msgstr ""
2567
 
2568
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:23
2569
  msgid ""
2570
+ "You’ll find your API key and secret on this page. Copy and paste the <b>API "
2571
+ "key</b> and the <b>API secret key</b> to the corresponding fields at Nextend "
2572
+ "Social Login and press <b>Save Changes</b>."
2573
  msgstr ""
2574
 
2575
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:24
2576
+ #, fuzzy, php-format
2577
+ #| msgid "Click on \"Save Changes\""
2578
+ msgid "Click on the <b>App Settings</b> button at %s."
2579
+ msgstr "Haz clic en \"Guardar Cambios\""
2580
 
2581
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:25
2582
+ msgid "Find the Apps section, and the app you created a few steps ago."
2583
+ msgstr ""
 
 
2584
 
2585
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:26
2586
+ msgid "Click on the App settings icon. (The one that looks like a gear.)"
2587
  msgstr ""
2588
 
2589
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:28
2590
+ msgid "Switch on the <b>Enable 3-legged OAuth</b> option."
 
 
2591
  msgstr ""
2592
 
2593
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:29
2594
+ #, fuzzy, php-format
2595
+ #| msgid "Add the following URL to the \"Callback URL\" field: <b>%s</b>"
2596
+ msgid "Add the following URL to the <b>Callback URLs</b> field: <b>%s</b>"
2597
+ msgstr "Agrega la siguiente URL al campo de \"Callback URL\": <b>%s</b>"
2598
+
2599
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:30
2600
+ #, fuzzy, php-format
2601
  #| msgid ""
2602
+ #| "Add the following URL to the \"Allowed Return URLs\" field <b>%s</b> "
2603
+ msgid "Enter your site's URL to the <b>Website URL</b> field: <b>%s</b>"
2604
+ msgstr "Agrega la siguiente URL al campo \"Allowed Return URLs\" <b>%s</b> "
2605
+
2606
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:31
2607
  msgid ""
2608
+ "If you want to get the email address as well, then don’t forget to enable "
2609
+ "the <b>Request email address from users</b> option. In this case you also "
2610
+ "need to fill the <b>Terms of service</b> and the <b>Privacy policy</b> "
2611
+ "fields with the corresponding URLs!"
2612
+ msgstr ""
2613
+
2614
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:32
2615
+ #, fuzzy
2616
+ #| msgid "Click on \"Save\""
2617
+ msgid "Click on <b>Save</b>."
2618
+ msgstr "Haz clic en \"Guardar Cambios\""
2619
+
2620
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:33
2621
+ #, php-format
2622
+ msgid "Go back to Nextend Social Login and <b>Verify</b> your %s provider."
2623
  msgstr ""
 
2624
 
2625
  #: nextend-facebook-connect/providers/twitter/admin/settings.php:27
2626
  #: nextend-social-login-pro/providers/disqus/admin/settings.php:26
2641
  msgid "Original"
2642
  msgstr ""
2643
 
2644
+ #: nextend-facebook-connect/providers/twitter/twitter.php:70
2645
  msgid "Continue with <b>Twitter</b>"
2646
  msgstr "Sigue con <b>Twitter</b>"
2647
 
2648
+ #: nextend-facebook-connect/providers/twitter/twitter.php:71
2649
+ #, fuzzy
2650
+ #| msgid "Continue with <b>Twitter</b>"
2651
+ msgid "Sign up with <b>Twitter</b>"
2652
+ msgstr "Sigue con <b>Twitter</b>"
2653
+
2654
+ #: nextend-facebook-connect/providers/twitter/twitter.php:72
2655
  msgid "Link account with <b>Twitter</b>"
2656
  msgstr "Enlazar cuenta con <b>Twitter</b>"
2657
 
2658
+ #: nextend-facebook-connect/providers/twitter/twitter.php:73
2659
  msgid "Unlink account from <b>Twitter</b>"
2660
  msgstr "Desenlazar cuenta de <b>Twitter</b>"
2661
 
2782
  "Este email ya está registrado, por favor inicia sesión en tu cuenta para "
2783
  "vincularlo con %1$s."
2784
 
2785
+ #: nextend-social-login-pro/nextend-social-login-pro.php:104
2786
  #, php-format
2787
  msgid "Please install and activate %1$s to use the %2$s"
2788
  msgstr "Por favor instala y activa %1$s para usar el %2$s"
2789
 
2790
+ #: nextend-social-login-pro/nextend-social-login-pro.php:118
2791
  msgid "Network Activate"
2792
  msgstr "Activar Red"
2793
 
2794
+ #: nextend-social-login-pro/nextend-social-login-pro.php:130
2795
  msgid "Install now!"
2796
  msgstr "¡Instalar ahora!"
2797
 
2798
+ #: nextend-social-login-pro/nextend-social-login-pro.php:821
2799
  #, fuzzy
2800
  #| msgid "Providers"
2801
  msgid "Social Providers"
2808
  "latest %2$s version!"
2809
  msgstr ""
2810
 
2811
+ #: nextend-social-login-pro/provider-extensions/google.php:187
2812
  #, php-format
2813
  msgid ""
2814
  "Most of these information can only be retrieved, when the field is marked as "
2870
  "aplicación %1$s, dirígete a \"Ajustes\" y configura los \"%2$s\" y \"%3$s\" "
2871
  "dados según tu aplicación %1$s."
2872
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2873
  #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:27
2874
  #, fuzzy
2875
  #| msgid ""
2935
  "middle of the page, under the \"<b>Web Settings</b>\" tab."
2936
  msgstr "Busca la \"Client ID\" y \"Client Secret\" en el medio de la página."
2937
 
2938
+ #: nextend-social-login-pro/providers/amazon/amazon.php:40
2939
  msgid "Continue with <b>Amazon</b>"
2940
  msgstr "Sigue con <b>Amazon</b>"
2941
 
2942
+ #: nextend-social-login-pro/providers/amazon/amazon.php:41
2943
+ #, fuzzy
2944
+ #| msgid "Continue with <b>Amazon</b>"
2945
+ msgid "Sign up with <b>Amazon</b>"
2946
+ msgstr "Sigue con <b>Amazon</b>"
2947
+
2948
+ #: nextend-social-login-pro/providers/amazon/amazon.php:42
2949
  msgid "Link account with <b>Amazon</b>"
2950
  msgstr "Enlazar cuenta con <b>Amazon</b>"
2951
 
2952
+ #: nextend-social-login-pro/providers/amazon/amazon.php:43
2953
  msgid "Unlink account from <b>Amazon</b>"
2954
  msgstr "Desenlazar cuenta de <b>Amazon</b>"
2955
 
3280
  msgid "Generate Token"
3281
  msgstr ""
3282
 
3283
+ #: nextend-social-login-pro/providers/apple/apple.php:83
 
 
3284
  msgid "Continue with <b>Apple</b>"
3285
+ msgstr "Sigue con <b>Apple</b>"
3286
 
3287
+ #: nextend-social-login-pro/providers/apple/apple.php:84
3288
+ #, fuzzy
3289
+ msgid "Sign up with <b>Apple</b>"
3290
+ msgstr "Sigue con <b>Apple</b>"
3291
+
3292
+ #: nextend-social-login-pro/providers/apple/apple.php:85
3293
  #, fuzzy
 
3294
  msgid "Link account with <b>Apple</b>"
3295
+ msgstr "Enlazar cuenta con <b>Apple</b>"
3296
 
3297
+ #: nextend-social-login-pro/providers/apple/apple.php:86
3298
  #, fuzzy
 
3299
  msgid "Unlink account from <b>Apple</b>"
3300
+ msgstr "Desenlazar cuenta de <b>Apple</b>"
3301
 
3302
+ #: nextend-social-login-pro/providers/apple/apple.php:180
3303
  #, php-format
3304
  msgid "An error occurred when storing of the expiration timestamp : %1$s"
3305
  msgstr ""
3306
 
3307
+ #: nextend-social-login-pro/providers/apple/apple.php:184
3308
+ #: nextend-social-login-pro/providers/apple/apple.php:282
3309
+ #: nextend-social-login-pro/providers/apple/apple.php:297
3310
+ #: nextend-social-login-pro/providers/apple/apple.php:341
3311
  #, php-format
3312
  msgid "Token generation failed: %1$s"
3313
  msgstr ""
3314
 
3315
+ #: nextend-social-login-pro/providers/apple/apple.php:184
3316
  msgid "Please check your credentials!"
3317
  msgstr ""
3318
 
3319
+ #: nextend-social-login-pro/providers/apple/apple.php:282
3320
  msgid "Private key format is not valid!"
3321
  msgstr ""
3322
 
3323
+ #: nextend-social-login-pro/providers/apple/apple.php:308
3324
  #, php-format
3325
  msgid ""
3326
  "%s detected that your Apple credentials have expired. Please delete the "
3327
  "current credentials and generate new one!"
3328
  msgstr ""
3329
 
3330
+ #: nextend-social-login-pro/providers/apple/apple.php:310
3331
  msgid "Apple Credentials"
3332
  msgstr ""
3333
 
3434
  msgid "API Secret"
3435
  msgstr "App Secret"
3436
 
3437
+ #: nextend-social-login-pro/providers/disqus/disqus.php:87
3438
  msgid "Continue with <b>Disqus</b>"
3439
  msgstr "Sigue con <b>Disqus</b>"
3440
 
3441
+ #: nextend-social-login-pro/providers/disqus/disqus.php:88
3442
+ #, fuzzy
3443
+ #| msgid "Continue with <b>Disqus</b>"
3444
+ msgid "Sign up with <b>Disqus</b>"
3445
+ msgstr "Sigue con <b>Disqus</b>"
3446
+
3447
+ #: nextend-social-login-pro/providers/disqus/disqus.php:89
3448
  msgid "Link account with <b>Disqus</b>"
3449
  msgstr "Enlazar cuenta con <b>Disqus</b>"
3450
 
3451
+ #: nextend-social-login-pro/providers/disqus/disqus.php:90
3452
  msgid "Unlink account from <b>Disqus</b>"
3453
  msgstr "Desenlazar cuenta de <b>Disqus</b>"
3454
 
3539
  "public email address set at the %1$s profile page%2$s!"
3540
  msgstr ""
3541
 
3542
+ #: nextend-social-login-pro/providers/github/github.php:125
 
 
3543
  msgid "Continue with <b>GitHub</b>"
3544
+ msgstr "Sigue con <b>GitHub</b>"
3545
 
3546
+ #: nextend-social-login-pro/providers/github/github.php:126
3547
  #, fuzzy
3548
+ msgid "Sign up with <b>GitHub</b>"
3549
+ msgstr "Sigue con <b>GitHub</b>"
3550
+
3551
+ #: nextend-social-login-pro/providers/github/github.php:127
3552
  msgid "Link account with <b>GitHub</b>"
3553
+ msgstr "Enlazar cuenta con <b>GitHub</b>"
3554
 
3555
+ #: nextend-social-login-pro/providers/github/github.php:128
 
 
3556
  msgid "Unlink account from <b>GitHub</b>"
3557
+ msgstr "Desenlazar cuenta de <b>GitHub</b>"
3558
 
3559
  #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:10
3560
  msgid "Click on your App and go to the \"<b>Auth</b>\" tab."
3656
  "the Application credentials section, on the <b>Auth</b> tab."
3657
  msgstr "Busca la \"Client ID\" y \"Client Secret\" en el medio de la página."
3658
 
3659
+ #: nextend-social-login-pro/providers/linkedin/linkedin.php:38
3660
  msgid "Continue with <b>LinkedIn</b>"
3661
  msgstr "Sigue con <b>LinkedIn</b>"
3662
 
3663
+ #: nextend-social-login-pro/providers/linkedin/linkedin.php:39
3664
+ #, fuzzy
3665
+ #| msgid "Continue with <b>LinkedIn</b>"
3666
+ msgid "Sign up with <b>LinkedIn</b>"
3667
+ msgstr "Sigue con <b>LinkedIn</b>"
3668
+
3669
+ #: nextend-social-login-pro/providers/linkedin/linkedin.php:40
3670
  msgid "Link account with <b>LinkedIn</b>"
3671
  msgstr "Enlazar cuenta con <b>LinkedIn</b>"
3672
 
3673
+ #: nextend-social-login-pro/providers/linkedin/linkedin.php:41
3674
  msgid "Unlink account from <b>LinkedIn</b>"
3675
  msgstr "Desenlazar cuenta de <b>LinkedIn</b>"
3676
 
3782
  msgid "Disable, when you have no rights for email address."
3783
  msgstr ""
3784
 
3785
+ #: nextend-social-login-pro/providers/paypal/paypal.php:65
3786
  msgid "Continue with <b>PayPal</b>"
3787
  msgstr "Sigue con <b>PayPal</b>"
3788
 
3789
+ #: nextend-social-login-pro/providers/paypal/paypal.php:66
3790
+ #, fuzzy
3791
+ #| msgid "Continue with <b>PayPal</b>"
3792
+ msgid "Sign up with <b>PayPal</b>"
3793
+ msgstr "Sigue con <b>PayPal</b>"
3794
+
3795
+ #: nextend-social-login-pro/providers/paypal/paypal.php:67
3796
  msgid "Link account with <b>PayPal</b>"
3797
  msgstr "Enlazar cuenta con <b>PayPal</b>"
3798
 
3799
+ #: nextend-social-login-pro/providers/paypal/paypal.php:68
3800
  msgid "Unlink account from <b>PayPal</b>"
3801
  msgstr "Desenlazar cuenta de <b>PayPal</b>"
3802
 
3910
  msgid "Secure key"
3911
  msgstr "Secure key"
3912
 
3913
+ #: nextend-social-login-pro/providers/vk/vk.php:36
3914
  msgid "Continue with <b>VK</b>"
3915
  msgstr "Sigue con <b>VK</b>"
3916
 
3917
+ #: nextend-social-login-pro/providers/vk/vk.php:37
3918
+ #, fuzzy
3919
+ #| msgid "Continue with <b>VK</b>"
3920
+ msgid "Sign up with <b>VK</b>"
3921
+ msgstr "Sigue con <b>VK</b>"
3922
+
3923
+ #: nextend-social-login-pro/providers/vk/vk.php:38
3924
  msgid "Link account with <b>VK</b>"
3925
  msgstr "Enlazar cuenta con <b>VK</b>"
3926
 
3927
+ #: nextend-social-login-pro/providers/vk/vk.php:39
3928
  msgid "Unlink account from <b>VK</b>"
3929
  msgstr "Desenlazar cuenta de <b>VK</b>"
3930
 
4001
  "en el botón \"Mostrar\". Estos serán necesarios en la configuración del "
4002
  "plugin."
4003
 
4004
+ #: nextend-social-login-pro/providers/wordpress/wordpress.php:74
4005
  msgid "Continue with <b>WordPress.com</b>"
4006
  msgstr "Sigue con <b>WordPress.com</b>"
4007
 
4008
+ #: nextend-social-login-pro/providers/wordpress/wordpress.php:75
4009
+ #, fuzzy
4010
+ #| msgid "Continue with <b>WordPress.com</b>"
4011
+ msgid "Sign up with <b>WordPress.com</b>"
4012
+ msgstr "Sigue con <b>WordPress.com</b>"
4013
+
4014
+ #: nextend-social-login-pro/providers/wordpress/wordpress.php:76
4015
  msgid "Link account with <b>WordPress.com</b>"
4016
  msgstr "Enlazar cuenta con <b>WordPress.com</b>"
4017
 
4018
+ #: nextend-social-login-pro/providers/wordpress/wordpress.php:77
4019
  msgid "Unlink account from <b>WordPress.com</b>"
4020
  msgstr "Desenlazar cuenta de <b>WordPress.com</b>"
4021
 
4084
  "en el botón \"Mostrar\". Estos serán necesarios en la configuración del "
4085
  "plugin."
4086
 
4087
+ #: nextend-social-login-pro/providers/yahoo/yahoo.php:65
 
 
4088
  msgid "Continue with <b>Yahoo</b>"
4089
+ msgstr "Sigue con <b>Yahoo</b>"
4090
 
4091
+ #: nextend-social-login-pro/providers/yahoo/yahoo.php:66
4092
  #, fuzzy
4093
+ msgid "Sign up with <b>Yahoo</b>"
4094
+ msgstr "Sigue con <b>Yahoo</b>"
4095
+
4096
+ #: nextend-social-login-pro/providers/yahoo/yahoo.php:67
4097
  msgid "Link account with <b>Yahoo</b>"
4098
+ msgstr "Enlazar cuenta con <b>Yahoo</b>"
4099
 
4100
+ #: nextend-social-login-pro/providers/yahoo/yahoo.php:68
 
 
4101
  msgid "Unlink account from <b>Yahoo</b>"
4102
+ msgstr "Desenlazar cuenta de <b>Yahoo</b>"
4103
 
4104
+ #: nextend-social-login-pro/providers/yahoo/yahoo.php:188
4105
  #, fuzzy, php-format
4106
  #| msgid "Required scope: %1$s"
4107
  msgid "Required permission: %1$s"
4145
  msgid "Social accounts"
4146
  msgstr "Cuentas sociales"
4147
 
4148
+ #, fuzzy, php-format
4149
+ #~| msgid "Log in with your %s credentials if you are not logged in"
4150
+ #~ msgid "Log in with your %s credentials if you are not logged in yet"
4151
+ #~ msgstr "Inicia sesión con tus %s credenciales si no has iniciado sesión"
4152
+
4153
+ #, fuzzy, php-format
4154
+ #~| msgid ""
4155
+ #~| "Fill the name and description fields. Then enter your site's URL to the "
4156
+ #~| "Website field: <b>%s</b>"
4157
+ #~ msgid ""
4158
+ #~ "Fill the <b>App name</b>, <b>Application description</b> fields. Then "
4159
+ #~ "enter your site's URL to the <b>Website URL</b> field: <b>%s</b>"
4160
+ #~ msgstr ""
4161
+ #~ "Llena los campos de nombre y descripción. Luego ingresa la URL de tu "
4162
+ #~ "sitio en el campo Website: <b>%s</b>"
4163
+
4164
+ #, fuzzy
4165
+ #~| msgid "Click on the Create button"
4166
+ #~ msgid "Click the <b>Create</b> button."
4167
+ #~ msgstr "Haz clic en el botón Create"
4168
+
4169
+ #, fuzzy
4170
+ #~| msgid "Name your project and then click on the Create button"
4171
+ #~ msgid "Read the Developer Terms and click the <b>Create</b> button again!"
4172
+ #~ msgstr "Denomina tu proyecto y luego haz clic en el botón Create"
4173
+
4174
+ #, fuzzy
4175
+ #~| msgid ""
4176
+ #~| "Go to the Keys and Access Tokens tab and find the Consumer Key and Secret"
4177
+ #~ msgid ""
4178
+ #~ "Go to the <b>Keys and tokens</b> tab and find the <b>API key</b> and "
4179
+ #~ "<b>API secret key</b>"
4180
+ #~ msgstr ""
4181
+ #~ "Ve a la pestaña Keys and Access Tokens y busca la Consumer Key y Secret"
4182
+
4183
+ #, fuzzy
4184
+ #~| msgid "Click on the \"Add a New App\" button"
4185
+ #~ msgid "Click on the \"<b>Add a New App\" button</b>"
4186
+ #~ msgstr "Haz clic en el botón \"Add a New App\" por favor"
4187
+
4188
  #, fuzzy
4189
  #~| msgid "Enter your domain name to the App Domains"
4190
  #~ msgid "Enter your domain name to the \"App Domains\" field."
4535
  #~ msgid "Connect button after login form"
4536
  #~ msgstr "Conectar botón después del formulario inicio de sesión"
4537
 
 
 
 
4538
  #~ msgid "Connect button before register form"
4539
  #~ msgstr "Conectar botón antes del formulario registro"
4540
 
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: ss3\n"
4
- "POT-Creation-Date: 2020-08-25 13:38+0200\n"
5
- "PO-Revision-Date: 2020-08-25 13:38+0200\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: fr\n"
@@ -117,29 +117,29 @@ msgstr ""
117
  msgid "User"
118
  msgstr ""
119
 
120
- #: nextend-facebook-connect/admin/admin.php:203
121
  #, php-format
122
  msgid "%s needs json_decode function."
123
  msgstr ""
124
 
125
- #: nextend-facebook-connect/admin/admin.php:203
126
  msgid "Please contact your server administrator and ask for solution!"
127
  msgstr ""
128
 
129
- #: nextend-facebook-connect/admin/admin.php:235
130
- #: nextend-facebook-connect/admin/admin.php:265
131
  msgid "Settings saved."
132
  msgstr ""
133
 
134
- #: nextend-facebook-connect/admin/admin.php:244
135
  msgid "The activation was successful"
136
  msgstr ""
137
 
138
- #: nextend-facebook-connect/admin/admin.php:255
139
  msgid "Deactivate completed."
140
  msgstr ""
141
 
142
- #: nextend-facebook-connect/admin/admin.php:433
143
  #: nextend-facebook-connect/admin/templates-provider/menu.php:15
144
  #: nextend-facebook-connect/admin/templates/providers.php:89
145
  #: nextend-facebook-connect/admin/templates/providers.php:101
@@ -147,9 +147,9 @@ msgstr ""
147
  msgid "Settings"
148
  msgstr ""
149
 
150
- #: nextend-facebook-connect/admin/admin.php:516
151
- #: nextend-facebook-connect/includes/oauth2.php:141
152
- #: nextend-facebook-connect/includes/oauth2.php:286
153
  #: nextend-facebook-connect/providers/facebook/facebook-client.php:84
154
  #: nextend-facebook-connect/providers/twitter/twitter-client.php:165
155
  #: nextend-social-login-pro/providers/apple/apple-client.php:87
@@ -158,7 +158,7 @@ msgstr ""
158
  msgid "Unexpected response: %s"
159
  msgstr ""
160
 
161
- #: nextend-facebook-connect/admin/admin.php:577
162
  #: nextend-facebook-connect/admin/templates/fix-redirect-uri.php:21
163
  #, php-format
164
  msgid ""
@@ -166,31 +166,31 @@ msgid ""
166
  "URIs in the related social applications."
167
  msgstr ""
168
 
169
- #: nextend-facebook-connect/admin/admin.php:578
170
- #: nextend-social-login-pro/providers/apple/apple.php:308
171
  msgid "Fix Error"
172
  msgstr ""
173
 
174
- #: nextend-facebook-connect/admin/admin.php:578
175
  msgid "Oauth Redirect URI"
176
  msgstr ""
177
 
178
- #: nextend-facebook-connect/admin/admin.php:595
179
  #, php-format
180
  msgid ""
181
  "%1$s detected that %2$s installed on your site. You need the Pro Addon to "
182
  "display Social Login buttons in %2$s login form!"
183
  msgstr ""
184
 
185
- #: nextend-facebook-connect/admin/admin.php:596
186
  msgid "Dismiss and check Pro Addon"
187
  msgstr ""
188
 
189
- #: nextend-facebook-connect/admin/admin.php:596
190
  msgid "Dismiss"
191
  msgstr ""
192
 
193
- #: nextend-facebook-connect/admin/admin.php:602
194
  #, php-format
195
  msgid ""
196
  "%1$s detected that %2$s installed on your site. You must set \"<b>Page for "
@@ -198,35 +198,35 @@ msgid ""
198
  "work properly."
199
  msgstr ""
200
 
201
- #: nextend-facebook-connect/admin/admin.php:603
202
  msgid "Fix now"
203
  msgstr ""
204
 
205
- #: nextend-facebook-connect/admin/admin.php:627
206
  msgid "Activate your Pro Addon"
207
  msgstr ""
208
 
209
- #: nextend-facebook-connect/admin/admin.php:628
210
  msgid ""
211
  "To be able to use the Pro features, you need to activate Nextend Social "
212
  "Login Pro Addon. You can do this by clicking on the Activate button below "
213
  "then select the related purchase."
214
  msgstr ""
215
 
216
- #: nextend-facebook-connect/admin/admin.php:633
217
- #: nextend-social-login-pro/nextend-social-login-pro.php:94
218
  msgid "Activate"
219
  msgstr ""
220
 
221
- #: nextend-facebook-connect/admin/admin.php:731
222
  msgid "License key"
223
  msgstr ""
224
 
225
- #: nextend-facebook-connect/admin/admin.php:754
226
  msgid "OAuth proxy page"
227
  msgstr ""
228
 
229
- #: nextend-facebook-connect/admin/admin.php:757
230
  msgid "Register flow page"
231
  msgstr ""
232
 
@@ -235,46 +235,51 @@ msgstr ""
235
  msgid "You have logged in successfully."
236
  msgstr ""
237
 
238
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:79
239
  msgid "Login label"
240
  msgstr ""
241
 
242
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:84
243
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:95
244
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:106
245
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:135
246
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:165
 
247
  #: nextend-facebook-connect/admin/templates/settings/privacy.php:53
248
  msgid "Reset to default"
249
  msgstr ""
250
 
251
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:89
 
 
 
 
252
  msgid "Link label"
253
  msgstr ""
254
 
255
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:101
256
  msgid "Unlink label"
257
  msgstr ""
258
 
259
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:112
260
  msgid "Default button"
261
  msgstr ""
262
 
263
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:128
264
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:158
265
  msgid "Use custom button"
266
  msgstr ""
267
 
268
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:135
269
  #, php-format
270
  msgid "Use the %s in your custom button's code to make the label show up."
271
  msgstr ""
272
 
273
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:143
274
  msgid "Icon button"
275
  msgstr ""
276
 
277
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:174
278
  #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:140
279
  #: nextend-facebook-connect/admin/templates-provider/sync-data.php:104
280
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:170
@@ -287,8 +292,8 @@ msgstr ""
287
  #: nextend-facebook-connect/admin/templates/settings/privacy.php:109
288
  #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:186
289
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:167
290
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:326
291
- #: nextend-facebook-connect/providers/facebook/admin/settings.php:57
292
  #: nextend-facebook-connect/providers/google/admin/settings.php:62
293
  #: nextend-facebook-connect/providers/twitter/admin/settings.php:48
294
  #: nextend-social-login-pro/providers/amazon/admin/settings.php:47
@@ -413,7 +418,8 @@ msgstr ""
413
  #: nextend-facebook-connect/admin/templates/settings/general.php:213
414
  #: nextend-facebook-connect/admin/templates/settings/general.php:228
415
  #: nextend-facebook-connect/admin/templates/settings/general.php:246
416
- #: nextend-facebook-connect/includes/provider-admin.php:217
 
417
  msgid "Disabled"
418
  msgstr ""
419
 
@@ -707,7 +713,8 @@ msgstr ""
707
  #: nextend-facebook-connect/admin/templates/settings/general.php:216
708
  #: nextend-facebook-connect/admin/templates/settings/general.php:231
709
  #: nextend-facebook-connect/admin/templates/settings/general.php:249
710
- #: nextend-facebook-connect/includes/provider-admin.php:220
 
711
  #: nextend-facebook-connect/providers/google/admin/settings.php:53
712
  #: nextend-social-login-pro/providers/paypal/admin/settings.php:51
713
  msgid "Enabled"
@@ -718,17 +725,17 @@ msgid "Upgrade Now"
718
  msgstr ""
719
 
720
  #: nextend-facebook-connect/admin/templates/providers.php:77
721
- #: nextend-facebook-connect/includes/provider-admin.php:204
722
  msgid "Verify Settings"
723
  msgstr ""
724
 
725
  #: nextend-facebook-connect/admin/templates/providers.php:85
726
- #: nextend-facebook-connect/includes/provider-admin.php:249
727
  msgid "Enable"
728
  msgstr ""
729
 
730
  #: nextend-facebook-connect/admin/templates/providers.php:97
731
- #: nextend-facebook-connect/includes/provider-admin.php:257
732
  msgid "Disable"
733
  msgstr ""
734
 
@@ -1254,6 +1261,18 @@ msgstr ""
1254
  msgid "Allow registration with Social login."
1255
  msgstr ""
1256
 
 
 
 
 
 
 
 
 
 
 
 
 
1257
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:29
1258
  #: nextend-facebook-connect/admin/templates/settings/memberpress.php:33
1259
  #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:33
@@ -1340,7 +1359,7 @@ msgid "Link buttons after account details"
1340
  msgstr ""
1341
 
1342
  #: nextend-facebook-connect/admin/templates/settings/privacy.php:6
1343
- #: nextend-facebook-connect/nextend-social-login.php:143
1344
  msgid ""
1345
  "By clicking Register, you accept our <a href=\"#privacy_policy_url\" target="
1346
  "\"_blank\">Privacy Policy</a>"
@@ -1368,12 +1387,12 @@ msgid "When not enabled, email will be empty."
1368
  msgstr ""
1369
 
1370
  #: nextend-facebook-connect/admin/templates/settings/privacy.php:91
1371
- #: nextend-facebook-connect/includes/avatar.php:59
1372
  msgid "Avatar"
1373
  msgstr ""
1374
 
1375
  #: nextend-facebook-connect/admin/templates/settings/privacy.php:102
1376
- #: nextend-facebook-connect/includes/provider.php:1082
1377
  msgid "Access token"
1378
  msgstr ""
1379
 
@@ -1441,6 +1460,25 @@ msgstr ""
1441
  msgid "Link buttons on"
1442
  msgstr ""
1443
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1444
  #: nextend-facebook-connect/admin/templates/test-connection.php:42
1445
  #, php-format
1446
  msgid "Network connection successful: %1$s"
@@ -1457,18 +1495,17 @@ msgid ""
1457
  "between your server and the provider."
1458
  msgstr ""
1459
 
1460
- #: nextend-facebook-connect/includes/avatar.php:60
1461
  msgid "Manage Avatar"
1462
  msgstr ""
1463
 
1464
- #: nextend-facebook-connect/includes/avatar.php:61
1465
  #, php-format
1466
  msgid "Avatar <span class=\"count\">(%s)</span>"
1467
  msgid_plural "Avatar <span class=\"count\">(%s)</span>"
1468
  msgstr[0] ""
1469
  msgstr[1] ""
1470
 
1471
- #. translators: Login screen title. 1: Login screen name, 2: Network or site name
1472
  #: nextend-facebook-connect/includes/compat-wp-login.php:63
1473
  #, php-format
1474
  msgid "%1$s &lsaquo; %2$s &#8212; WordPress"
@@ -1482,18 +1519,17 @@ msgstr ""
1482
  msgid "Powered by WordPress"
1483
  msgstr ""
1484
 
1485
- #. translators: %s: site title
1486
  #: nextend-facebook-connect/includes/compat-wp-login.php:284
1487
  #, php-format
1488
  msgctxt "site"
1489
  msgid "&larr; Back to %s"
1490
  msgstr ""
1491
 
1492
- #: nextend-facebook-connect/includes/provider-admin.php:198
1493
  msgid "Your configuration needs to be verified"
1494
  msgstr ""
1495
 
1496
- #: nextend-facebook-connect/includes/provider-admin.php:199
1497
  msgid ""
1498
  "Before you can start letting your users register with your app it needs to "
1499
  "be tested. This test makes sure that no users will have troubles with the "
@@ -1502,76 +1538,77 @@ msgid ""
1502
  "are fine."
1503
  msgstr ""
1504
 
1505
- #: nextend-facebook-connect/includes/provider-admin.php:205
1506
  msgid "Please save your changes to verify settings."
1507
  msgstr ""
1508
 
1509
- #: nextend-facebook-connect/includes/provider-admin.php:213
1510
  msgid "Works Fine"
1511
  msgstr ""
1512
 
1513
- #: nextend-facebook-connect/includes/provider-admin.php:227
1514
  #, php-format
1515
  msgid ""
1516
  "This provider is currently disabled, which means that users can’t register "
1517
  "or login via their %s account."
1518
  msgstr ""
1519
 
1520
- #: nextend-facebook-connect/includes/provider-admin.php:230
1521
  #, php-format
1522
  msgid ""
1523
  "This provider works fine, but you can test it again. If you don’t want to "
1524
  "let users register or login with %s anymore you can disable it."
1525
  msgstr ""
1526
 
1527
- #: nextend-facebook-connect/includes/provider-admin.php:233
1528
  #, php-format
1529
  msgid ""
1530
  "This provider is currently enabled, which means that users can register or "
1531
  "login via their %s account."
1532
  msgstr ""
1533
 
1534
- #: nextend-facebook-connect/includes/provider-admin.php:241
1535
  msgid "Verify Settings Again"
1536
  msgstr ""
1537
 
1538
- #: nextend-facebook-connect/includes/provider-admin.php:242
1539
  msgid "Please save your changes before verifying settings."
1540
  msgstr ""
1541
 
1542
- #: nextend-facebook-connect/includes/provider.php:357
1543
- #: nextend-facebook-connect/includes/provider.php:705
1544
- #: nextend-facebook-connect/includes/provider.php:710
1545
  msgid "Authentication successful"
1546
  msgstr ""
1547
 
1548
- #: nextend-facebook-connect/includes/provider.php:647
1549
- #: nextend-facebook-connect/includes/user.php:126
 
1550
  msgid "Authentication error"
1551
  msgstr ""
1552
 
1553
- #: nextend-facebook-connect/includes/provider.php:662
1554
  msgid "Unlink successful."
1555
  msgstr ""
1556
 
1557
- #: nextend-facebook-connect/includes/provider.php:664
1558
  msgid "Unlink is not allowed!"
1559
  msgstr ""
1560
 
1561
- #: nextend-facebook-connect/includes/provider.php:868
1562
- #: nextend-facebook-connect/includes/provider.php:875
1563
  msgid "The test was successful"
1564
  msgstr ""
1565
 
1566
- #: nextend-facebook-connect/includes/provider.php:921
1567
  msgid "Authentication failed"
1568
  msgstr ""
1569
 
1570
- #: nextend-facebook-connect/includes/provider.php:1074
1571
  msgid "Identifier"
1572
  msgstr ""
1573
 
1574
- #: nextend-facebook-connect/includes/provider.php:1090
1575
  msgid "Profile picture"
1576
  msgstr ""
1577
 
@@ -1586,15 +1623,15 @@ msgstr ""
1586
  #, php-format
1587
  msgid ""
1588
  "You have already linked a(n) %s account. Please unlink the current and then "
1589
- "you can link other %s account."
1590
  msgstr ""
1591
 
1592
  #: nextend-facebook-connect/includes/user.php:82
1593
  #, php-format
1594
- msgid "This %s account is already linked to other user."
1595
  msgstr ""
1596
 
1597
- #: nextend-facebook-connect/includes/user.php:122
1598
  msgid "User registration is currently not allowed."
1599
  msgstr ""
1600
 
@@ -1602,14 +1639,12 @@ msgstr ""
1602
  msgid "Register For This Site!"
1603
  msgstr ""
1604
 
1605
- #. translators: %2$s: PHP version
1606
- #: nextend-facebook-connect/nextend-facebook-connect.php:34
1607
  #, php-format
1608
  msgid "%1$s requires PHP version %2$s+, plugin is currently NOT ACTIVE."
1609
  msgstr ""
1610
 
1611
- #. translators: %2$s: WordPress version
1612
- #: nextend-facebook-connect/nextend-facebook-connect.php:41
1613
  #, php-format
1614
  msgid ""
1615
  "%1$s requires WordPress version %2$s+. Because you are using an earlier "
@@ -1627,12 +1662,12 @@ msgstr ""
1627
  msgid "Update now!"
1628
  msgstr ""
1629
 
1630
- #: nextend-facebook-connect/nextend-social-login.php:749
1631
- #: nextend-facebook-connect/nextend-social-login.php:1125
1632
  msgid "Social Login"
1633
  msgstr ""
1634
 
1635
- #: nextend-facebook-connect/nextend-social-login.php:1106
1636
  msgid "Social Accounts"
1637
  msgstr ""
1638
 
@@ -1697,7 +1732,7 @@ msgid "In the left sidebar, click on \"<b>Facebook Login > Settings</b>\""
1697
  msgstr ""
1698
 
1699
  #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:12
1700
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:34
1701
  #, php-format
1702
  msgid ""
1703
  "Add the following URL to the \"<b>Valid OAuth redirect URIs</b>\" field: <b>"
@@ -1780,7 +1815,9 @@ msgid "Navigate to %s"
1780
  msgstr ""
1781
 
1782
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:26
1783
- msgid "Click on the \"<b>Add a New App\" button</b>"
 
 
1784
  msgstr ""
1785
 
1786
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:27
@@ -1793,89 +1830,133 @@ msgstr ""
1793
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:28
1794
  #, php-format
1795
  msgid ""
1796
- "Fill \"<b>Display Name</b>\" and \"<b>Contact Email</b>\". The specified "
1797
- "\"Display Name\" will appear on your %s!"
1798
  msgstr ""
1799
 
1800
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:29
1801
  msgid ""
1802
- "Click the \"<b>Create App ID</b>\" button and complete the Security Check."
 
1803
  msgstr ""
1804
 
1805
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:30
 
 
 
 
 
1806
  #, php-format
1807
  msgid ""
1808
  "At the \"<b>Add a Product</b>\" panel find \"<b>%1$s</b>\" and click "
1809
  "\"<b>Set Up</b>\""
1810
  msgstr ""
1811
 
1812
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:31
1813
  #, php-format
1814
  msgid ""
1815
  "Select \"<b>Web</b>\" and enter the following URL to the \"<b>Site URL</b>\" "
1816
  "field: <b>%s</b>"
1817
  msgstr ""
1818
 
1819
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:32
1820
  msgid "Press “<b>Save</b>”"
1821
  msgstr ""
1822
 
1823
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:33
1824
  #, php-format
1825
  msgid ""
1826
  "Click on the “<b>%1$s</b>” option what you find on the left side, under “<b>"
1827
  "%2$s</b> - <b>%3$s</b>”"
1828
  msgstr ""
1829
 
1830
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:35
1831
  msgid "Click on “<b>Save Changes</b>”"
1832
  msgstr ""
1833
 
1834
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:36
1835
  #, php-format
1836
  msgid ""
1837
  "On the top left side, click on the “<b>%1$s</b>” menu point, then click “<b>"
1838
  "%2$s</b>”"
1839
  msgstr ""
1840
 
1841
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:37
1842
  #, php-format
1843
  msgid ""
1844
  "Enter your domain name to the \"<b>App Domains</b>\" field, probably: <b>%s</"
1845
  "b>"
1846
  msgstr ""
1847
 
1848
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:38
1849
  msgid ""
1850
  "Fill up the \"<b>Privacy Policy URL</b>\" field. Provide a publicly "
1851
  "available and easily accessible privacy policy that explains what data you "
1852
  "are collecting and how you will use that data."
1853
  msgstr ""
1854
 
1855
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:39
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1856
  msgid ""
1857
- "Select a “<b>Category</b>”, an “<b>App Icon</b>” and pick the “<b>Business "
1858
- "Use</b>” option that describes your the App best, then press \"<b>Save "
 
 
 
 
 
 
 
 
1859
  "Changes</b>\""
1860
  msgstr ""
1861
 
1862
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:40
1863
  msgid ""
1864
  "Your application is currently private, which means that only you can log in "
1865
  "with it. In the top bar click on the switch next to the \"<b>In development</"
1866
  "b>\" label, then click the \"<b>Switch Mode</b>\" button."
1867
  msgstr ""
1868
 
1869
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:41
1870
  msgid ""
1871
  "At the top of the page you can find your \"<b>App ID</b>\" and you can see "
1872
  "your \"<b>App secret</b>\" if you click on the \"Show\" button. These will "
1873
  "be needed in plugin’s settings."
1874
  msgstr ""
1875
 
1876
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:45
 
 
 
 
 
 
 
 
 
 
 
1877
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:40
1878
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:32
1879
  #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:39
1880
  #: nextend-social-login-pro/providers/apple/admin/getting-started.php:122
1881
  #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:30
@@ -1945,38 +2026,53 @@ msgstr ""
1945
  msgid "App Secret"
1946
  msgstr ""
1947
 
1948
- #: nextend-facebook-connect/providers/facebook/facebook.php:84
1949
- msgid "Continue with <b>Facebook</b>"
 
 
 
 
 
 
 
1950
  msgstr ""
1951
 
1952
  #: nextend-facebook-connect/providers/facebook/facebook.php:85
1953
- msgid "Link account with <b>Facebook</b>"
1954
  msgstr ""
1955
 
1956
  #: nextend-facebook-connect/providers/facebook/facebook.php:86
 
 
 
 
 
 
 
 
1957
  msgid "Unlink account from <b>Facebook</b>"
1958
  msgstr ""
1959
 
1960
- #: nextend-facebook-connect/providers/facebook/facebook.php:186
1961
- #: nextend-facebook-connect/providers/google/google.php:174
1962
- #: nextend-facebook-connect/providers/twitter/twitter.php:95
1963
- #: nextend-social-login-pro/providers/amazon/amazon.php:65
1964
- #: nextend-social-login-pro/providers/apple/apple.php:129
1965
- #: nextend-social-login-pro/providers/apple/apple.php:136
1966
- #: nextend-social-login-pro/providers/disqus/disqus.php:112
1967
- #: nextend-social-login-pro/providers/github/github.php:150
1968
- #: nextend-social-login-pro/providers/linkedin/linkedin.php:63
1969
- #: nextend-social-login-pro/providers/paypal/paypal.php:90
1970
- #: nextend-social-login-pro/providers/vk/vk.php:61
1971
- #: nextend-social-login-pro/providers/wordpress/wordpress.php:99
1972
- #: nextend-social-login-pro/providers/yahoo/yahoo.php:90
1973
  #, php-format
1974
  msgid ""
1975
  "The %1$s entered did not appear to be a valid. Please enter a valid %2$s."
1976
  msgstr ""
1977
 
1978
- #: nextend-facebook-connect/providers/facebook/facebook.php:307
1979
- #: nextend-social-login-pro/providers/paypal/paypal.php:170
1980
  #, php-format
1981
  msgid "Required scope: %1$s"
1982
  msgstr ""
@@ -2124,42 +2220,57 @@ msgid ""
2124
  "Disable, when you don't want to see the account select prompt on each login."
2125
  msgstr ""
2126
 
2127
- #: nextend-facebook-connect/providers/google/google.php:106
2128
  msgid "Continue with <b>Google</b>"
2129
  msgstr ""
2130
 
2131
- #: nextend-facebook-connect/providers/google/google.php:107
 
 
 
 
2132
  msgid "Link account with <b>Google</b>"
2133
  msgstr ""
2134
 
2135
- #: nextend-facebook-connect/providers/google/google.php:108
2136
  msgid "Unlink account from <b>Google</b>"
2137
  msgstr ""
2138
 
2139
- #: nextend-facebook-connect/providers/google/google.php:301
2140
  #, php-format
2141
  msgid "Required API: %1$s"
2142
  msgstr ""
2143
 
2144
  #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:10
2145
- msgid "Find your App and click on the \"<b>Details</b>\" button"
 
 
2146
  msgstr ""
2147
 
2148
  #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:11
2149
- msgid ""
2150
- "The <b>Edit</b> button can be found on the App details tab. Click on it and "
2151
- "select \"<b>Edit details</b>\""
2152
  msgstr ""
2153
 
2154
  #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:12
2155
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:22
2156
  #, php-format
2157
  msgid "Add the following URL to the \"<b>Callback URLs</b>\" field: <b>%s</b>"
2158
  msgstr ""
2159
 
2160
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:17
 
 
 
 
 
 
 
 
 
 
 
2161
  #, php-format
2162
- msgid "Log in with your %s credentials if you are not logged in yet"
2163
  msgstr ""
2164
 
2165
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:18
@@ -2176,44 +2287,68 @@ msgid ""
2176
  msgstr ""
2177
 
2178
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:20
2179
- #, php-format
2180
- msgid ""
2181
- "Fill the <b>App name</b>, <b>Application description</b> fields. Then enter "
2182
- "your site's URL to the <b>Website URL</b> field: <b>%s</b>"
2183
  msgstr ""
2184
 
2185
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:21
2186
- msgid "Tick the checkbox next to <b>Enable Sign in with Twitter</b>!"
 
 
 
 
 
 
2187
  msgstr ""
2188
 
2189
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:23
2190
  msgid ""
2191
- "Fill the “<b>Terms of Service URL</b>\", \"<b>Privacy policy URL</b>\" and "
2192
- "\"<b>Tell us how this app will be used</b>\" fields!"
 
2193
  msgstr ""
2194
 
2195
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:24
2196
- msgid "Click the <b>Create</b> button."
 
2197
  msgstr ""
2198
 
2199
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:25
2200
- msgid "Read the Developer Terms and click the <b>Create</b> button again!"
2201
  msgstr ""
2202
 
2203
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:26
2204
- msgid "Select the <b>Permissions</b> tab and click <b>Edit</b>."
2205
  msgstr ""
2206
 
2207
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:27
2208
- msgid ""
2209
- "Tick the <b>Request email address from users</b> under the Additional "
2210
- "permissions section and click <b>Save</b>."
2211
  msgstr ""
2212
 
2213
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:28
 
 
 
 
 
 
 
 
 
 
2214
  msgid ""
2215
- "Go to the <b>Keys and tokens</b> tab and find the <b>API key</b> and <b>API "
2216
- "secret key</b>"
 
 
 
 
 
 
 
 
 
 
 
2217
  msgstr ""
2218
 
2219
  #: nextend-facebook-connect/providers/twitter/admin/settings.php:27
@@ -2233,15 +2368,19 @@ msgstr ""
2233
  msgid "Original"
2234
  msgstr ""
2235
 
2236
- #: nextend-facebook-connect/providers/twitter/twitter.php:69
2237
  msgid "Continue with <b>Twitter</b>"
2238
  msgstr ""
2239
 
2240
- #: nextend-facebook-connect/providers/twitter/twitter.php:70
 
 
 
 
2241
  msgid "Link account with <b>Twitter</b>"
2242
  msgstr ""
2243
 
2244
- #: nextend-facebook-connect/providers/twitter/twitter.php:71
2245
  msgid "Unlink account from <b>Twitter</b>"
2246
  msgstr ""
2247
 
@@ -2359,20 +2498,20 @@ msgid ""
2359
  "with %1$s."
2360
  msgstr ""
2361
 
2362
- #: nextend-social-login-pro/nextend-social-login-pro.php:88
2363
  #, php-format
2364
  msgid "Please install and activate %1$s to use the %2$s"
2365
  msgstr ""
2366
 
2367
- #: nextend-social-login-pro/nextend-social-login-pro.php:102
2368
  msgid "Network Activate"
2369
  msgstr ""
2370
 
2371
- #: nextend-social-login-pro/nextend-social-login-pro.php:114
2372
  msgid "Install now!"
2373
  msgstr ""
2374
 
2375
- #: nextend-social-login-pro/nextend-social-login-pro.php:787
2376
  msgid "Social Providers"
2377
  msgstr ""
2378
 
@@ -2383,7 +2522,7 @@ msgid ""
2383
  "latest %2$s version!"
2384
  msgstr ""
2385
 
2386
- #: nextend-social-login-pro/provider-extensions/google.php:176
2387
  #, php-format
2388
  msgid ""
2389
  "Most of these information can only be retrieved, when the field is marked as "
@@ -2430,21 +2569,6 @@ msgid ""
2430
  "%1$s App."
2431
  msgstr ""
2432
 
2433
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:25
2434
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:38
2435
- #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:9
2436
- #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:16
2437
- #: nextend-social-login-pro/providers/github/admin/getting-started.php:16
2438
- #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:9
2439
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:17
2440
- #: nextend-social-login-pro/providers/vk/admin/getting-started.php:16
2441
- #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:9
2442
- #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:16
2443
- #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:17
2444
- #, php-format
2445
- msgid "Log in with your %s credentials if you are not logged in."
2446
- msgstr ""
2447
-
2448
  #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:27
2449
  msgid ""
2450
  "If you don't have a Security Profile yet, you'll need to create one. You can "
@@ -2480,15 +2604,19 @@ msgid ""
2480
  "middle of the page, under the \"<b>Web Settings</b>\" tab."
2481
  msgstr ""
2482
 
2483
- #: nextend-social-login-pro/providers/amazon/amazon.php:39
2484
  msgid "Continue with <b>Amazon</b>"
2485
  msgstr ""
2486
 
2487
- #: nextend-social-login-pro/providers/amazon/amazon.php:40
 
 
 
 
2488
  msgid "Link account with <b>Amazon</b>"
2489
  msgstr ""
2490
 
2491
- #: nextend-social-login-pro/providers/amazon/amazon.php:41
2492
  msgid "Unlink account from <b>Amazon</b>"
2493
  msgstr ""
2494
 
@@ -2793,47 +2921,51 @@ msgstr ""
2793
  msgid "Generate Token"
2794
  msgstr ""
2795
 
2796
- #: nextend-social-login-pro/providers/apple/apple.php:82
2797
  msgid "Continue with <b>Apple</b>"
2798
  msgstr ""
2799
 
2800
- #: nextend-social-login-pro/providers/apple/apple.php:83
 
 
 
 
2801
  msgid "Link account with <b>Apple</b>"
2802
  msgstr ""
2803
 
2804
- #: nextend-social-login-pro/providers/apple/apple.php:84
2805
  msgid "Unlink account from <b>Apple</b>"
2806
  msgstr ""
2807
 
2808
- #: nextend-social-login-pro/providers/apple/apple.php:178
2809
  #, php-format
2810
  msgid "An error occurred when storing of the expiration timestamp : %1$s"
2811
  msgstr ""
2812
 
2813
- #: nextend-social-login-pro/providers/apple/apple.php:182
2814
- #: nextend-social-login-pro/providers/apple/apple.php:280
2815
- #: nextend-social-login-pro/providers/apple/apple.php:295
2816
- #: nextend-social-login-pro/providers/apple/apple.php:339
2817
  #, php-format
2818
  msgid "Token generation failed: %1$s"
2819
  msgstr ""
2820
 
2821
- #: nextend-social-login-pro/providers/apple/apple.php:182
2822
  msgid "Please check your credentials!"
2823
  msgstr ""
2824
 
2825
- #: nextend-social-login-pro/providers/apple/apple.php:280
2826
  msgid "Private key format is not valid!"
2827
  msgstr ""
2828
 
2829
- #: nextend-social-login-pro/providers/apple/apple.php:306
2830
  #, php-format
2831
  msgid ""
2832
  "%s detected that your Apple credentials have expired. Please delete the "
2833
  "current credentials and generate new one!"
2834
  msgstr ""
2835
 
2836
- #: nextend-social-login-pro/providers/apple/apple.php:308
2837
  msgid "Apple Credentials"
2838
  msgstr ""
2839
 
@@ -2910,15 +3042,19 @@ msgstr ""
2910
  msgid "API Secret"
2911
  msgstr ""
2912
 
2913
- #: nextend-social-login-pro/providers/disqus/disqus.php:86
2914
  msgid "Continue with <b>Disqus</b>"
2915
  msgstr ""
2916
 
2917
- #: nextend-social-login-pro/providers/disqus/disqus.php:87
 
 
 
 
2918
  msgid "Link account with <b>Disqus</b>"
2919
  msgstr ""
2920
 
2921
- #: nextend-social-login-pro/providers/disqus/disqus.php:88
2922
  msgid "Unlink account from <b>Disqus</b>"
2923
  msgstr ""
2924
 
@@ -2992,15 +3128,19 @@ msgid ""
2992
  "public email address set at the %1$s profile page%2$s!"
2993
  msgstr ""
2994
 
2995
- #: nextend-social-login-pro/providers/github/github.php:124
2996
  msgid "Continue with <b>GitHub</b>"
2997
  msgstr ""
2998
 
2999
- #: nextend-social-login-pro/providers/github/github.php:125
 
 
 
 
3000
  msgid "Link account with <b>GitHub</b>"
3001
  msgstr ""
3002
 
3003
- #: nextend-social-login-pro/providers/github/github.php:126
3004
  msgid "Unlink account from <b>GitHub</b>"
3005
  msgstr ""
3006
 
@@ -3082,15 +3222,19 @@ msgid ""
3082
  "the Application credentials section, on the <b>Auth</b> tab."
3083
  msgstr ""
3084
 
3085
- #: nextend-social-login-pro/providers/linkedin/linkedin.php:37
3086
  msgid "Continue with <b>LinkedIn</b>"
3087
  msgstr ""
3088
 
3089
- #: nextend-social-login-pro/providers/linkedin/linkedin.php:38
 
 
 
 
3090
  msgid "Link account with <b>LinkedIn</b>"
3091
  msgstr ""
3092
 
3093
- #: nextend-social-login-pro/providers/linkedin/linkedin.php:39
3094
  msgid "Unlink account from <b>LinkedIn</b>"
3095
  msgstr ""
3096
 
@@ -3191,15 +3335,19 @@ msgstr ""
3191
  msgid "Disable, when you have no rights for email address."
3192
  msgstr ""
3193
 
3194
- #: nextend-social-login-pro/providers/paypal/paypal.php:64
3195
  msgid "Continue with <b>PayPal</b>"
3196
  msgstr ""
3197
 
3198
- #: nextend-social-login-pro/providers/paypal/paypal.php:65
 
 
 
 
3199
  msgid "Link account with <b>PayPal</b>"
3200
  msgstr ""
3201
 
3202
- #: nextend-social-login-pro/providers/paypal/paypal.php:66
3203
  msgid "Unlink account from <b>PayPal</b>"
3204
  msgstr ""
3205
 
@@ -3276,15 +3424,19 @@ msgstr ""
3276
  msgid "Secure key"
3277
  msgstr ""
3278
 
3279
- #: nextend-social-login-pro/providers/vk/vk.php:35
3280
  msgid "Continue with <b>VK</b>"
3281
  msgstr ""
3282
 
3283
- #: nextend-social-login-pro/providers/vk/vk.php:36
 
 
 
 
3284
  msgid "Link account with <b>VK</b>"
3285
  msgstr ""
3286
 
3287
- #: nextend-social-login-pro/providers/vk/vk.php:37
3288
  msgid "Unlink account from <b>VK</b>"
3289
  msgstr ""
3290
 
@@ -3341,15 +3493,19 @@ msgid ""
3341
  "These will be needed in the plugin's settings."
3342
  msgstr ""
3343
 
3344
- #: nextend-social-login-pro/providers/wordpress/wordpress.php:73
3345
  msgid "Continue with <b>WordPress.com</b>"
3346
  msgstr ""
3347
 
3348
- #: nextend-social-login-pro/providers/wordpress/wordpress.php:74
 
 
 
 
3349
  msgid "Link account with <b>WordPress.com</b>"
3350
  msgstr ""
3351
 
3352
- #: nextend-social-login-pro/providers/wordpress/wordpress.php:75
3353
  msgid "Unlink account from <b>WordPress.com</b>"
3354
  msgstr ""
3355
 
@@ -3400,19 +3556,23 @@ msgid ""
3400
  "\"<b>Client Secret</b>\"! These will be needed in the plugin's settings."
3401
  msgstr ""
3402
 
3403
- #: nextend-social-login-pro/providers/yahoo/yahoo.php:64
3404
  msgid "Continue with <b>Yahoo</b>"
3405
  msgstr ""
3406
 
3407
- #: nextend-social-login-pro/providers/yahoo/yahoo.php:65
 
 
 
 
3408
  msgid "Link account with <b>Yahoo</b>"
3409
  msgstr ""
3410
 
3411
- #: nextend-social-login-pro/providers/yahoo/yahoo.php:66
3412
  msgid "Unlink account from <b>Yahoo</b>"
3413
  msgstr ""
3414
 
3415
- #: nextend-social-login-pro/providers/yahoo/yahoo.php:186
3416
  #, php-format
3417
  msgid "Required permission: %1$s"
3418
  msgstr ""
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: ss3\n"
4
+ "POT-Creation-Date: 2021-01-27 13:57+0100\n"
5
+ "PO-Revision-Date: 2021-01-27 13:57+0100\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: fr\n"
117
  msgid "User"
118
  msgstr ""
119
 
120
+ #: nextend-facebook-connect/admin/admin.php:206
121
  #, php-format
122
  msgid "%s needs json_decode function."
123
  msgstr ""
124
 
125
+ #: nextend-facebook-connect/admin/admin.php:206
126
  msgid "Please contact your server administrator and ask for solution!"
127
  msgstr ""
128
 
129
+ #: nextend-facebook-connect/admin/admin.php:238
130
+ #: nextend-facebook-connect/admin/admin.php:268
131
  msgid "Settings saved."
132
  msgstr ""
133
 
134
+ #: nextend-facebook-connect/admin/admin.php:247
135
  msgid "The activation was successful"
136
  msgstr ""
137
 
138
+ #: nextend-facebook-connect/admin/admin.php:258
139
  msgid "Deactivate completed."
140
  msgstr ""
141
 
142
+ #: nextend-facebook-connect/admin/admin.php:437
143
  #: nextend-facebook-connect/admin/templates-provider/menu.php:15
144
  #: nextend-facebook-connect/admin/templates/providers.php:89
145
  #: nextend-facebook-connect/admin/templates/providers.php:101
147
  msgid "Settings"
148
  msgstr ""
149
 
150
+ #: nextend-facebook-connect/admin/admin.php:520
151
+ #: nextend-facebook-connect/includes/oauth2.php:143
152
+ #: nextend-facebook-connect/includes/oauth2.php:288
153
  #: nextend-facebook-connect/providers/facebook/facebook-client.php:84
154
  #: nextend-facebook-connect/providers/twitter/twitter-client.php:165
155
  #: nextend-social-login-pro/providers/apple/apple-client.php:87
158
  msgid "Unexpected response: %s"
159
  msgstr ""
160
 
161
+ #: nextend-facebook-connect/admin/admin.php:581
162
  #: nextend-facebook-connect/admin/templates/fix-redirect-uri.php:21
163
  #, php-format
164
  msgid ""
166
  "URIs in the related social applications."
167
  msgstr ""
168
 
169
+ #: nextend-facebook-connect/admin/admin.php:582
170
+ #: nextend-social-login-pro/providers/apple/apple.php:310
171
  msgid "Fix Error"
172
  msgstr ""
173
 
174
+ #: nextend-facebook-connect/admin/admin.php:582
175
  msgid "Oauth Redirect URI"
176
  msgstr ""
177
 
178
+ #: nextend-facebook-connect/admin/admin.php:599
179
  #, php-format
180
  msgid ""
181
  "%1$s detected that %2$s installed on your site. You need the Pro Addon to "
182
  "display Social Login buttons in %2$s login form!"
183
  msgstr ""
184
 
185
+ #: nextend-facebook-connect/admin/admin.php:600
186
  msgid "Dismiss and check Pro Addon"
187
  msgstr ""
188
 
189
+ #: nextend-facebook-connect/admin/admin.php:600
190
  msgid "Dismiss"
191
  msgstr ""
192
 
193
+ #: nextend-facebook-connect/admin/admin.php:606
194
  #, php-format
195
  msgid ""
196
  "%1$s detected that %2$s installed on your site. You must set \"<b>Page for "
198
  "work properly."
199
  msgstr ""
200
 
201
+ #: nextend-facebook-connect/admin/admin.php:607
202
  msgid "Fix now"
203
  msgstr ""
204
 
205
+ #: nextend-facebook-connect/admin/admin.php:631
206
  msgid "Activate your Pro Addon"
207
  msgstr ""
208
 
209
+ #: nextend-facebook-connect/admin/admin.php:632
210
  msgid ""
211
  "To be able to use the Pro features, you need to activate Nextend Social "
212
  "Login Pro Addon. You can do this by clicking on the Activate button below "
213
  "then select the related purchase."
214
  msgstr ""
215
 
216
+ #: nextend-facebook-connect/admin/admin.php:637
217
+ #: nextend-social-login-pro/nextend-social-login-pro.php:110
218
  msgid "Activate"
219
  msgstr ""
220
 
221
+ #: nextend-facebook-connect/admin/admin.php:735
222
  msgid "License key"
223
  msgstr ""
224
 
225
+ #: nextend-facebook-connect/admin/admin.php:758
226
  msgid "OAuth proxy page"
227
  msgstr ""
228
 
229
+ #: nextend-facebook-connect/admin/admin.php:761
230
  msgid "Register flow page"
231
  msgstr ""
232
 
235
  msgid "You have logged in successfully."
236
  msgstr ""
237
 
238
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:80
239
  msgid "Login label"
240
  msgstr ""
241
 
242
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:85
243
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:101
244
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:114
245
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:125
246
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:154
247
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:184
248
  #: nextend-facebook-connect/admin/templates/settings/privacy.php:53
249
  msgid "Reset to default"
250
  msgstr ""
251
 
252
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:95
253
+ msgid "Register label"
254
+ msgstr ""
255
+
256
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:108
257
  msgid "Link label"
258
  msgstr ""
259
 
260
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:120
261
  msgid "Unlink label"
262
  msgstr ""
263
 
264
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:131
265
  msgid "Default button"
266
  msgstr ""
267
 
268
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:147
269
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:177
270
  msgid "Use custom button"
271
  msgstr ""
272
 
273
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:154
274
  #, php-format
275
  msgid "Use the %s in your custom button's code to make the label show up."
276
  msgstr ""
277
 
278
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:162
279
  msgid "Icon button"
280
  msgstr ""
281
 
282
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:193
283
  #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:140
284
  #: nextend-facebook-connect/admin/templates-provider/sync-data.php:104
285
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:170
292
  #: nextend-facebook-connect/admin/templates/settings/privacy.php:109
293
  #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:186
294
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:167
295
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:341
296
+ #: nextend-facebook-connect/providers/facebook/admin/settings.php:67
297
  #: nextend-facebook-connect/providers/google/admin/settings.php:62
298
  #: nextend-facebook-connect/providers/twitter/admin/settings.php:48
299
  #: nextend-social-login-pro/providers/amazon/admin/settings.php:47
418
  #: nextend-facebook-connect/admin/templates/settings/general.php:213
419
  #: nextend-facebook-connect/admin/templates/settings/general.php:228
420
  #: nextend-facebook-connect/admin/templates/settings/general.php:246
421
+ #: nextend-facebook-connect/admin/templates/settings/general.php:261
422
+ #: nextend-facebook-connect/includes/provider-admin.php:218
423
  msgid "Disabled"
424
  msgstr ""
425
 
713
  #: nextend-facebook-connect/admin/templates/settings/general.php:216
714
  #: nextend-facebook-connect/admin/templates/settings/general.php:231
715
  #: nextend-facebook-connect/admin/templates/settings/general.php:249
716
+ #: nextend-facebook-connect/admin/templates/settings/general.php:264
717
+ #: nextend-facebook-connect/includes/provider-admin.php:221
718
  #: nextend-facebook-connect/providers/google/admin/settings.php:53
719
  #: nextend-social-login-pro/providers/paypal/admin/settings.php:51
720
  msgid "Enabled"
725
  msgstr ""
726
 
727
  #: nextend-facebook-connect/admin/templates/providers.php:77
728
+ #: nextend-facebook-connect/includes/provider-admin.php:205
729
  msgid "Verify Settings"
730
  msgstr ""
731
 
732
  #: nextend-facebook-connect/admin/templates/providers.php:85
733
+ #: nextend-facebook-connect/includes/provider-admin.php:250
734
  msgid "Enable"
735
  msgstr ""
736
 
737
  #: nextend-facebook-connect/admin/templates/providers.php:97
738
+ #: nextend-facebook-connect/includes/provider-admin.php:258
739
  msgid "Disable"
740
  msgstr ""
741
 
1261
  msgid "Allow registration with Social login."
1262
  msgstr ""
1263
 
1264
+ #: nextend-facebook-connect/admin/templates/settings/general.php:256
1265
+ msgid "Custom label for register buttons"
1266
+ msgstr ""
1267
+
1268
+ #: nextend-facebook-connect/admin/templates/settings/general.php:266
1269
+ #, php-format
1270
+ msgid ""
1271
+ "Set a custom label for the social buttons in registration forms and for "
1272
+ "shortcodes with %1$s parameter set to %2$s.<br>The register specific labels "
1273
+ "can be modified at the Buttons tab of each provider."
1274
+ msgstr ""
1275
+
1276
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:29
1277
  #: nextend-facebook-connect/admin/templates/settings/memberpress.php:33
1278
  #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:33
1359
  msgstr ""
1360
 
1361
  #: nextend-facebook-connect/admin/templates/settings/privacy.php:6
1362
+ #: nextend-facebook-connect/nextend-social-login.php:148
1363
  msgid ""
1364
  "By clicking Register, you accept our <a href=\"#privacy_policy_url\" target="
1365
  "\"_blank\">Privacy Policy</a>"
1387
  msgstr ""
1388
 
1389
  #: nextend-facebook-connect/admin/templates/settings/privacy.php:91
1390
+ #: nextend-facebook-connect/includes/avatar.php:49
1391
  msgid "Avatar"
1392
  msgstr ""
1393
 
1394
  #: nextend-facebook-connect/admin/templates/settings/privacy.php:102
1395
+ #: nextend-facebook-connect/includes/provider.php:1100
1396
  msgid "Access token"
1397
  msgstr ""
1398
 
1460
  msgid "Link buttons on"
1461
  msgstr ""
1462
 
1463
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:323
1464
+ msgid "Email template for registration"
1465
+ msgstr ""
1466
+
1467
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:328
1468
+ msgid "WordPress default notification"
1469
+ msgstr ""
1470
+
1471
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:331
1472
+ msgid "WooCommerce registration notification"
1473
+ msgstr ""
1474
+
1475
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:333
1476
+ #, php-format
1477
+ msgid ""
1478
+ "Defines whether the registration with %1$s will send the same registration "
1479
+ "notification that %2$s does, instead of the %3$s default one."
1480
+ msgstr ""
1481
+
1482
  #: nextend-facebook-connect/admin/templates/test-connection.php:42
1483
  #, php-format
1484
  msgid "Network connection successful: %1$s"
1495
  "between your server and the provider."
1496
  msgstr ""
1497
 
1498
+ #: nextend-facebook-connect/includes/avatar.php:50
1499
  msgid "Manage Avatar"
1500
  msgstr ""
1501
 
1502
+ #: nextend-facebook-connect/includes/avatar.php:51
1503
  #, php-format
1504
  msgid "Avatar <span class=\"count\">(%s)</span>"
1505
  msgid_plural "Avatar <span class=\"count\">(%s)</span>"
1506
  msgstr[0] ""
1507
  msgstr[1] ""
1508
 
 
1509
  #: nextend-facebook-connect/includes/compat-wp-login.php:63
1510
  #, php-format
1511
  msgid "%1$s &lsaquo; %2$s &#8212; WordPress"
1519
  msgid "Powered by WordPress"
1520
  msgstr ""
1521
 
 
1522
  #: nextend-facebook-connect/includes/compat-wp-login.php:284
1523
  #, php-format
1524
  msgctxt "site"
1525
  msgid "&larr; Back to %s"
1526
  msgstr ""
1527
 
1528
+ #: nextend-facebook-connect/includes/provider-admin.php:199
1529
  msgid "Your configuration needs to be verified"
1530
  msgstr ""
1531
 
1532
+ #: nextend-facebook-connect/includes/provider-admin.php:200
1533
  msgid ""
1534
  "Before you can start letting your users register with your app it needs to "
1535
  "be tested. This test makes sure that no users will have troubles with the "
1538
  "are fine."
1539
  msgstr ""
1540
 
1541
+ #: nextend-facebook-connect/includes/provider-admin.php:206
1542
  msgid "Please save your changes to verify settings."
1543
  msgstr ""
1544
 
1545
+ #: nextend-facebook-connect/includes/provider-admin.php:214
1546
  msgid "Works Fine"
1547
  msgstr ""
1548
 
1549
+ #: nextend-facebook-connect/includes/provider-admin.php:228
1550
  #, php-format
1551
  msgid ""
1552
  "This provider is currently disabled, which means that users can’t register "
1553
  "or login via their %s account."
1554
  msgstr ""
1555
 
1556
+ #: nextend-facebook-connect/includes/provider-admin.php:231
1557
  #, php-format
1558
  msgid ""
1559
  "This provider works fine, but you can test it again. If you don’t want to "
1560
  "let users register or login with %s anymore you can disable it."
1561
  msgstr ""
1562
 
1563
+ #: nextend-facebook-connect/includes/provider-admin.php:234
1564
  #, php-format
1565
  msgid ""
1566
  "This provider is currently enabled, which means that users can register or "
1567
  "login via their %s account."
1568
  msgstr ""
1569
 
1570
+ #: nextend-facebook-connect/includes/provider-admin.php:242
1571
  msgid "Verify Settings Again"
1572
  msgstr ""
1573
 
1574
+ #: nextend-facebook-connect/includes/provider-admin.php:243
1575
  msgid "Please save your changes before verifying settings."
1576
  msgstr ""
1577
 
1578
+ #: nextend-facebook-connect/includes/provider.php:358
1579
+ #: nextend-facebook-connect/includes/provider.php:717
1580
+ #: nextend-facebook-connect/includes/provider.php:725
1581
  msgid "Authentication successful"
1582
  msgstr ""
1583
 
1584
+ #: nextend-facebook-connect/includes/provider.php:654
1585
+ #: nextend-facebook-connect/includes/user.php:168
1586
+ #: nextend-facebook-connect/includes/user.php:597
1587
  msgid "Authentication error"
1588
  msgstr ""
1589
 
1590
+ #: nextend-facebook-connect/includes/provider.php:669
1591
  msgid "Unlink successful."
1592
  msgstr ""
1593
 
1594
+ #: nextend-facebook-connect/includes/provider.php:671
1595
  msgid "Unlink is not allowed!"
1596
  msgstr ""
1597
 
1598
+ #: nextend-facebook-connect/includes/provider.php:886
1599
+ #: nextend-facebook-connect/includes/provider.php:893
1600
  msgid "The test was successful"
1601
  msgstr ""
1602
 
1603
+ #: nextend-facebook-connect/includes/provider.php:939
1604
  msgid "Authentication failed"
1605
  msgstr ""
1606
 
1607
+ #: nextend-facebook-connect/includes/provider.php:1092
1608
  msgid "Identifier"
1609
  msgstr ""
1610
 
1611
+ #: nextend-facebook-connect/includes/provider.php:1108
1612
  msgid "Profile picture"
1613
  msgstr ""
1614
 
1623
  #, php-format
1624
  msgid ""
1625
  "You have already linked a(n) %s account. Please unlink the current and then "
1626
+ "you can link another %s account."
1627
  msgstr ""
1628
 
1629
  #: nextend-facebook-connect/includes/user.php:82
1630
  #, php-format
1631
+ msgid "This %s account is already linked to another user."
1632
  msgstr ""
1633
 
1634
+ #: nextend-facebook-connect/includes/user.php:128
1635
  msgid "User registration is currently not allowed."
1636
  msgstr ""
1637
 
1639
  msgid "Register For This Site!"
1640
  msgstr ""
1641
 
1642
+ #: nextend-facebook-connect/nextend-facebook-connect.php:37
 
1643
  #, php-format
1644
  msgid "%1$s requires PHP version %2$s+, plugin is currently NOT ACTIVE."
1645
  msgstr ""
1646
 
1647
+ #: nextend-facebook-connect/nextend-facebook-connect.php:44
 
1648
  #, php-format
1649
  msgid ""
1650
  "%1$s requires WordPress version %2$s+. Because you are using an earlier "
1662
  msgid "Update now!"
1663
  msgstr ""
1664
 
1665
+ #: nextend-facebook-connect/nextend-social-login.php:762
1666
+ #: nextend-facebook-connect/nextend-social-login.php:1140
1667
  msgid "Social Login"
1668
  msgstr ""
1669
 
1670
+ #: nextend-facebook-connect/nextend-social-login.php:1121
1671
  msgid "Social Accounts"
1672
  msgstr ""
1673
 
1732
  msgstr ""
1733
 
1734
  #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:12
1735
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:35
1736
  #, php-format
1737
  msgid ""
1738
  "Add the following URL to the \"<b>Valid OAuth redirect URIs</b>\" field: <b>"
1815
  msgstr ""
1816
 
1817
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:26
1818
+ msgid ""
1819
+ "Click on the \"<b>Create App</b>\" button and in the Popup choose the "
1820
+ "\"<b>Build Connected Experiences</b>\" option!"
1821
  msgstr ""
1822
 
1823
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:27
1830
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:28
1831
  #, php-format
1832
  msgid ""
1833
+ "Fill \"<b>App Display Name</b>\", \"<b>App Contact Email</b>\". The "
1834
+ "specified \"App Display Name\" will appear on your %s!"
1835
  msgstr ""
1836
 
1837
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:29
1838
  msgid ""
1839
+ "<b>Optional</b>: choose a \"<b>Business Manager Account</b>\" in the popup, "
1840
+ "if you have any."
1841
  msgstr ""
1842
 
1843
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:30
1844
+ msgid ""
1845
+ "Click the \"<b>Create App ID</b>\" button and complete the Security Check."
1846
+ msgstr ""
1847
+
1848
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:31
1849
  #, php-format
1850
  msgid ""
1851
  "At the \"<b>Add a Product</b>\" panel find \"<b>%1$s</b>\" and click "
1852
  "\"<b>Set Up</b>\""
1853
  msgstr ""
1854
 
1855
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:32
1856
  #, php-format
1857
  msgid ""
1858
  "Select \"<b>Web</b>\" and enter the following URL to the \"<b>Site URL</b>\" "
1859
  "field: <b>%s</b>"
1860
  msgstr ""
1861
 
1862
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:33
1863
  msgid "Press “<b>Save</b>”"
1864
  msgstr ""
1865
 
1866
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:34
1867
  #, php-format
1868
  msgid ""
1869
  "Click on the “<b>%1$s</b>” option what you find on the left side, under “<b>"
1870
  "%2$s</b> - <b>%3$s</b>”"
1871
  msgstr ""
1872
 
1873
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:36
1874
  msgid "Click on “<b>Save Changes</b>”"
1875
  msgstr ""
1876
 
1877
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:37
1878
  #, php-format
1879
  msgid ""
1880
  "On the top left side, click on the “<b>%1$s</b>” menu point, then click “<b>"
1881
  "%2$s</b>”"
1882
  msgstr ""
1883
 
1884
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:38
1885
  #, php-format
1886
  msgid ""
1887
  "Enter your domain name to the \"<b>App Domains</b>\" field, probably: <b>%s</"
1888
  "b>"
1889
  msgstr ""
1890
 
1891
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:39
1892
  msgid ""
1893
  "Fill up the \"<b>Privacy Policy URL</b>\" field. Provide a publicly "
1894
  "available and easily accessible privacy policy that explains what data you "
1895
  "are collecting and how you will use that data."
1896
  msgstr ""
1897
 
1898
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:40
1899
+ msgid ""
1900
+ "At \"<b>User Data Deletion</b>\", choose the \"<b>Data Deletion Instructions "
1901
+ "URL</b>\" option, and enter the <i>URL of your page</i>* with the "
1902
+ "instructions on how users can delete their accounts on your site."
1903
+ msgstr ""
1904
+
1905
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:42
1906
+ msgid ""
1907
+ "To comply with GDPR, you should already offer possibility to delete accounts "
1908
+ "on your site, either by the user or by the admin:"
1909
+ msgstr ""
1910
+
1911
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:45
1912
+ msgid ""
1913
+ "<u>If each user has an option to delete the account</u>: the URL should "
1914
+ "point to a guide showing the way users can delete their accounts."
1915
+ msgstr ""
1916
+
1917
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:46
1918
  msgid ""
1919
+ "<u>If the accounts are deleted by an admin</u>: then you should have a "
1920
+ "section - usually in the Privacy Policy - with the contact details, where "
1921
+ "users can send their account erasure requests. In this case the URL should "
1922
+ "point to this section of the document."
1923
+ msgstr ""
1924
+
1925
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:51
1926
+ msgid ""
1927
+ "Select a “<b>Category</b>”, an “<b>App Icon</b>” and pick the “<b>App "
1928
+ "Purpose</b>” option that describes your App the best, then press \"<b>Save "
1929
  "Changes</b>\""
1930
  msgstr ""
1931
 
1932
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:52
1933
  msgid ""
1934
  "Your application is currently private, which means that only you can log in "
1935
  "with it. In the top bar click on the switch next to the \"<b>In development</"
1936
  "b>\" label, then click the \"<b>Switch Mode</b>\" button."
1937
  msgstr ""
1938
 
1939
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:53
1940
  msgid ""
1941
  "At the top of the page you can find your \"<b>App ID</b>\" and you can see "
1942
  "your \"<b>App secret</b>\" if you click on the \"Show\" button. These will "
1943
  "be needed in plugin’s settings."
1944
  msgstr ""
1945
 
1946
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:56
1947
+ #, php-format
1948
+ msgid ""
1949
+ "<b>WARNING:</b> <u>Don't replace your Facebook App with another!</u> Since "
1950
+ "WordPress users with linked Facebook accounts can only login using the %1$s "
1951
+ "App, that was originally used at the time, when the WordPress account was "
1952
+ "linked with a %1$s Account.<br>\n"
1953
+ "If you would like to know the reason of this, or you really need to replace "
1954
+ "the Facebook App, then please check our %2$sdocumentation%3$s."
1955
+ msgstr ""
1956
+
1957
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:60
1958
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:40
1959
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:37
1960
  #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:39
1961
  #: nextend-social-login-pro/providers/apple/admin/getting-started.php:122
1962
  #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:30
2026
  msgid "App Secret"
2027
  msgstr ""
2028
 
2029
+ #: nextend-facebook-connect/providers/facebook/admin/settings.php:59
2030
+ #, php-format
2031
+ msgid ""
2032
+ "By replacing your existing %1$s App, users with linked %1$s accounts will no "
2033
+ "longer be able to login with %1$s."
2034
+ msgstr ""
2035
+
2036
+ #: nextend-facebook-connect/providers/facebook/admin/settings.php:61
2037
+ msgid "Find out why?"
2038
  msgstr ""
2039
 
2040
  #: nextend-facebook-connect/providers/facebook/facebook.php:85
2041
+ msgid "Continue with <b>Facebook</b>"
2042
  msgstr ""
2043
 
2044
  #: nextend-facebook-connect/providers/facebook/facebook.php:86
2045
+ msgid "Sign up with <b>Facebook</b>"
2046
+ msgstr ""
2047
+
2048
+ #: nextend-facebook-connect/providers/facebook/facebook.php:87
2049
+ msgid "Link account with <b>Facebook</b>"
2050
+ msgstr ""
2051
+
2052
+ #: nextend-facebook-connect/providers/facebook/facebook.php:88
2053
  msgid "Unlink account from <b>Facebook</b>"
2054
  msgstr ""
2055
 
2056
+ #: nextend-facebook-connect/providers/facebook/facebook.php:188
2057
+ #: nextend-facebook-connect/providers/google/google.php:168
2058
+ #: nextend-facebook-connect/providers/twitter/twitter.php:97
2059
+ #: nextend-social-login-pro/providers/amazon/amazon.php:67
2060
+ #: nextend-social-login-pro/providers/apple/apple.php:131
2061
+ #: nextend-social-login-pro/providers/apple/apple.php:138
2062
+ #: nextend-social-login-pro/providers/disqus/disqus.php:114
2063
+ #: nextend-social-login-pro/providers/github/github.php:152
2064
+ #: nextend-social-login-pro/providers/linkedin/linkedin.php:65
2065
+ #: nextend-social-login-pro/providers/paypal/paypal.php:92
2066
+ #: nextend-social-login-pro/providers/vk/vk.php:63
2067
+ #: nextend-social-login-pro/providers/wordpress/wordpress.php:101
2068
+ #: nextend-social-login-pro/providers/yahoo/yahoo.php:92
2069
  #, php-format
2070
  msgid ""
2071
  "The %1$s entered did not appear to be a valid. Please enter a valid %2$s."
2072
  msgstr ""
2073
 
2074
+ #: nextend-facebook-connect/providers/facebook/facebook.php:309
2075
+ #: nextend-social-login-pro/providers/paypal/paypal.php:172
2076
  #, php-format
2077
  msgid "Required scope: %1$s"
2078
  msgstr ""
2220
  "Disable, when you don't want to see the account select prompt on each login."
2221
  msgstr ""
2222
 
2223
+ #: nextend-facebook-connect/providers/google/google.php:99
2224
  msgid "Continue with <b>Google</b>"
2225
  msgstr ""
2226
 
2227
+ #: nextend-facebook-connect/providers/google/google.php:100
2228
+ msgid "Sign up with <b>Google</b>"
2229
+ msgstr ""
2230
+
2231
+ #: nextend-facebook-connect/providers/google/google.php:101
2232
  msgid "Link account with <b>Google</b>"
2233
  msgstr ""
2234
 
2235
+ #: nextend-facebook-connect/providers/google/google.php:102
2236
  msgid "Unlink account from <b>Google</b>"
2237
  msgstr ""
2238
 
2239
+ #: nextend-facebook-connect/providers/google/google.php:295
2240
  #, php-format
2241
  msgid "Required API: %1$s"
2242
  msgstr ""
2243
 
2244
  #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:10
2245
+ msgid ""
2246
+ "Find your App and click on the <b>App settings</b> icon. (The one that looks "
2247
+ "like a gear.)"
2248
  msgstr ""
2249
 
2250
  #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:11
2251
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:27
2252
+ msgid "Click on the <b>Edit</b> button at <b>Authentication settings</b>."
 
2253
  msgstr ""
2254
 
2255
  #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:12
 
2256
  #, php-format
2257
  msgid "Add the following URL to the \"<b>Callback URLs</b>\" field: <b>%s</b>"
2258
  msgstr ""
2259
 
2260
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:17
2261
+ #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:25
2262
+ #: nextend-social-login-pro/providers/apple/admin/getting-started.php:38
2263
+ #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:9
2264
+ #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:16
2265
+ #: nextend-social-login-pro/providers/github/admin/getting-started.php:16
2266
+ #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:9
2267
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:17
2268
+ #: nextend-social-login-pro/providers/vk/admin/getting-started.php:16
2269
+ #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:9
2270
+ #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:16
2271
+ #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:17
2272
  #, php-format
2273
+ msgid "Log in with your %s credentials if you are not logged in."
2274
  msgstr ""
2275
 
2276
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:18
2287
  msgstr ""
2288
 
2289
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:20
2290
+ msgid "Click on <b>+ New Project</b>!"
 
 
 
2291
  msgstr ""
2292
 
2293
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:21
2294
+ msgid ""
2295
+ "Name your project, and go through the basic setup. You’ll need to select "
2296
+ "your use case and give a description."
2297
+ msgstr ""
2298
+
2299
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:22
2300
+ msgid "Create a new app, or select an existing one, then click <b>Complete</b>"
2301
  msgstr ""
2302
 
2303
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:23
2304
  msgid ""
2305
+ "You’ll find your API key and secret on this page. Copy and paste the <b>API "
2306
+ "key</b> and the <b>API secret key</b> to the corresponding fields at Nextend "
2307
+ "Social Login and press <b>Save Changes</b>."
2308
  msgstr ""
2309
 
2310
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:24
2311
+ #, php-format
2312
+ msgid "Click on the <b>App Settings</b> button at %s."
2313
  msgstr ""
2314
 
2315
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:25
2316
+ msgid "Find the Apps section, and the app you created a few steps ago."
2317
  msgstr ""
2318
 
2319
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:26
2320
+ msgid "Click on the App settings icon. (The one that looks like a gear.)"
2321
  msgstr ""
2322
 
2323
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:28
2324
+ msgid "Switch on the <b>Enable 3-legged OAuth</b> option."
 
 
2325
  msgstr ""
2326
 
2327
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:29
2328
+ #, php-format
2329
+ msgid "Add the following URL to the <b>Callback URLs</b> field: <b>%s</b>"
2330
+ msgstr ""
2331
+
2332
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:30
2333
+ #, php-format
2334
+ msgid "Enter your site's URL to the <b>Website URL</b> field: <b>%s</b>"
2335
+ msgstr ""
2336
+
2337
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:31
2338
  msgid ""
2339
+ "If you want to get the email address as well, then don’t forget to enable "
2340
+ "the <b>Request email address from users</b> option. In this case you also "
2341
+ "need to fill the <b>Terms of service</b> and the <b>Privacy policy</b> "
2342
+ "fields with the corresponding URLs!"
2343
+ msgstr ""
2344
+
2345
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:32
2346
+ msgid "Click on <b>Save</b>."
2347
+ msgstr ""
2348
+
2349
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:33
2350
+ #, php-format
2351
+ msgid "Go back to Nextend Social Login and <b>Verify</b> your %s provider."
2352
  msgstr ""
2353
 
2354
  #: nextend-facebook-connect/providers/twitter/admin/settings.php:27
2368
  msgid "Original"
2369
  msgstr ""
2370
 
2371
+ #: nextend-facebook-connect/providers/twitter/twitter.php:70
2372
  msgid "Continue with <b>Twitter</b>"
2373
  msgstr ""
2374
 
2375
+ #: nextend-facebook-connect/providers/twitter/twitter.php:71
2376
+ msgid "Sign up with <b>Twitter</b>"
2377
+ msgstr ""
2378
+
2379
+ #: nextend-facebook-connect/providers/twitter/twitter.php:72
2380
  msgid "Link account with <b>Twitter</b>"
2381
  msgstr ""
2382
 
2383
+ #: nextend-facebook-connect/providers/twitter/twitter.php:73
2384
  msgid "Unlink account from <b>Twitter</b>"
2385
  msgstr ""
2386
 
2498
  "with %1$s."
2499
  msgstr ""
2500
 
2501
+ #: nextend-social-login-pro/nextend-social-login-pro.php:104
2502
  #, php-format
2503
  msgid "Please install and activate %1$s to use the %2$s"
2504
  msgstr ""
2505
 
2506
+ #: nextend-social-login-pro/nextend-social-login-pro.php:118
2507
  msgid "Network Activate"
2508
  msgstr ""
2509
 
2510
+ #: nextend-social-login-pro/nextend-social-login-pro.php:130
2511
  msgid "Install now!"
2512
  msgstr ""
2513
 
2514
+ #: nextend-social-login-pro/nextend-social-login-pro.php:821
2515
  msgid "Social Providers"
2516
  msgstr ""
2517
 
2522
  "latest %2$s version!"
2523
  msgstr ""
2524
 
2525
+ #: nextend-social-login-pro/provider-extensions/google.php:187
2526
  #, php-format
2527
  msgid ""
2528
  "Most of these information can only be retrieved, when the field is marked as "
2569
  "%1$s App."
2570
  msgstr ""
2571
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2572
  #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:27
2573
  msgid ""
2574
  "If you don't have a Security Profile yet, you'll need to create one. You can "
2604
  "middle of the page, under the \"<b>Web Settings</b>\" tab."
2605
  msgstr ""
2606
 
2607
+ #: nextend-social-login-pro/providers/amazon/amazon.php:40
2608
  msgid "Continue with <b>Amazon</b>"
2609
  msgstr ""
2610
 
2611
+ #: nextend-social-login-pro/providers/amazon/amazon.php:41
2612
+ msgid "Sign up with <b>Amazon</b>"
2613
+ msgstr ""
2614
+
2615
+ #: nextend-social-login-pro/providers/amazon/amazon.php:42
2616
  msgid "Link account with <b>Amazon</b>"
2617
  msgstr ""
2618
 
2619
+ #: nextend-social-login-pro/providers/amazon/amazon.php:43
2620
  msgid "Unlink account from <b>Amazon</b>"
2621
  msgstr ""
2622
 
2921
  msgid "Generate Token"
2922
  msgstr ""
2923
 
2924
+ #: nextend-social-login-pro/providers/apple/apple.php:83
2925
  msgid "Continue with <b>Apple</b>"
2926
  msgstr ""
2927
 
2928
+ #: nextend-social-login-pro/providers/apple/apple.php:84
2929
+ msgid "Sign up with <b>Apple</b>"
2930
+ msgstr ""
2931
+
2932
+ #: nextend-social-login-pro/providers/apple/apple.php:85
2933
  msgid "Link account with <b>Apple</b>"
2934
  msgstr ""
2935
 
2936
+ #: nextend-social-login-pro/providers/apple/apple.php:86
2937
  msgid "Unlink account from <b>Apple</b>"
2938
  msgstr ""
2939
 
2940
+ #: nextend-social-login-pro/providers/apple/apple.php:180
2941
  #, php-format
2942
  msgid "An error occurred when storing of the expiration timestamp : %1$s"
2943
  msgstr ""
2944
 
2945
+ #: nextend-social-login-pro/providers/apple/apple.php:184
2946
+ #: nextend-social-login-pro/providers/apple/apple.php:282
2947
+ #: nextend-social-login-pro/providers/apple/apple.php:297
2948
+ #: nextend-social-login-pro/providers/apple/apple.php:341
2949
  #, php-format
2950
  msgid "Token generation failed: %1$s"
2951
  msgstr ""
2952
 
2953
+ #: nextend-social-login-pro/providers/apple/apple.php:184
2954
  msgid "Please check your credentials!"
2955
  msgstr ""
2956
 
2957
+ #: nextend-social-login-pro/providers/apple/apple.php:282
2958
  msgid "Private key format is not valid!"
2959
  msgstr ""
2960
 
2961
+ #: nextend-social-login-pro/providers/apple/apple.php:308
2962
  #, php-format
2963
  msgid ""
2964
  "%s detected that your Apple credentials have expired. Please delete the "
2965
  "current credentials and generate new one!"
2966
  msgstr ""
2967
 
2968
+ #: nextend-social-login-pro/providers/apple/apple.php:310
2969
  msgid "Apple Credentials"
2970
  msgstr ""
2971
 
3042
  msgid "API Secret"
3043
  msgstr ""
3044
 
3045
+ #: nextend-social-login-pro/providers/disqus/disqus.php:87
3046
  msgid "Continue with <b>Disqus</b>"
3047
  msgstr ""
3048
 
3049
+ #: nextend-social-login-pro/providers/disqus/disqus.php:88
3050
+ msgid "Sign up with <b>Disqus</b>"
3051
+ msgstr ""
3052
+
3053
+ #: nextend-social-login-pro/providers/disqus/disqus.php:89
3054
  msgid "Link account with <b>Disqus</b>"
3055
  msgstr ""
3056
 
3057
+ #: nextend-social-login-pro/providers/disqus/disqus.php:90
3058
  msgid "Unlink account from <b>Disqus</b>"
3059
  msgstr ""
3060
 
3128
  "public email address set at the %1$s profile page%2$s!"
3129
  msgstr ""
3130
 
3131
+ #: nextend-social-login-pro/providers/github/github.php:125
3132
  msgid "Continue with <b>GitHub</b>"
3133
  msgstr ""
3134
 
3135
+ #: nextend-social-login-pro/providers/github/github.php:126
3136
+ msgid "Sign up with <b>GitHub</b>"
3137
+ msgstr ""
3138
+
3139
+ #: nextend-social-login-pro/providers/github/github.php:127
3140
  msgid "Link account with <b>GitHub</b>"
3141
  msgstr ""
3142
 
3143
+ #: nextend-social-login-pro/providers/github/github.php:128
3144
  msgid "Unlink account from <b>GitHub</b>"
3145
  msgstr ""
3146
 
3222
  "the Application credentials section, on the <b>Auth</b> tab."
3223
  msgstr ""
3224
 
3225
+ #: nextend-social-login-pro/providers/linkedin/linkedin.php:38
3226
  msgid "Continue with <b>LinkedIn</b>"
3227
  msgstr ""
3228
 
3229
+ #: nextend-social-login-pro/providers/linkedin/linkedin.php:39
3230
+ msgid "Sign up with <b>LinkedIn</b>"
3231
+ msgstr ""
3232
+
3233
+ #: nextend-social-login-pro/providers/linkedin/linkedin.php:40
3234
  msgid "Link account with <b>LinkedIn</b>"
3235
  msgstr ""
3236
 
3237
+ #: nextend-social-login-pro/providers/linkedin/linkedin.php:41
3238
  msgid "Unlink account from <b>LinkedIn</b>"
3239
  msgstr ""
3240
 
3335
  msgid "Disable, when you have no rights for email address."
3336
  msgstr ""
3337
 
3338
+ #: nextend-social-login-pro/providers/paypal/paypal.php:65
3339
  msgid "Continue with <b>PayPal</b>"
3340
  msgstr ""
3341
 
3342
+ #: nextend-social-login-pro/providers/paypal/paypal.php:66
3343
+ msgid "Sign up with <b>PayPal</b>"
3344
+ msgstr ""
3345
+
3346
+ #: nextend-social-login-pro/providers/paypal/paypal.php:67
3347
  msgid "Link account with <b>PayPal</b>"
3348
  msgstr ""
3349
 
3350
+ #: nextend-social-login-pro/providers/paypal/paypal.php:68
3351
  msgid "Unlink account from <b>PayPal</b>"
3352
  msgstr ""
3353
 
3424
  msgid "Secure key"
3425
  msgstr ""
3426
 
3427
+ #: nextend-social-login-pro/providers/vk/vk.php:36
3428
  msgid "Continue with <b>VK</b>"
3429
  msgstr ""
3430
 
3431
+ #: nextend-social-login-pro/providers/vk/vk.php:37
3432
+ msgid "Sign up with <b>VK</b>"
3433
+ msgstr ""
3434
+
3435
+ #: nextend-social-login-pro/providers/vk/vk.php:38
3436
  msgid "Link account with <b>VK</b>"
3437
  msgstr ""
3438
 
3439
+ #: nextend-social-login-pro/providers/vk/vk.php:39
3440
  msgid "Unlink account from <b>VK</b>"
3441
  msgstr ""
3442
 
3493
  "These will be needed in the plugin's settings."
3494
  msgstr ""
3495
 
3496
+ #: nextend-social-login-pro/providers/wordpress/wordpress.php:74
3497
  msgid "Continue with <b>WordPress.com</b>"
3498
  msgstr ""
3499
 
3500
+ #: nextend-social-login-pro/providers/wordpress/wordpress.php:75
3501
+ msgid "Sign up with <b>WordPress.com</b>"
3502
+ msgstr ""
3503
+
3504
+ #: nextend-social-login-pro/providers/wordpress/wordpress.php:76
3505
  msgid "Link account with <b>WordPress.com</b>"
3506
  msgstr ""
3507
 
3508
+ #: nextend-social-login-pro/providers/wordpress/wordpress.php:77
3509
  msgid "Unlink account from <b>WordPress.com</b>"
3510
  msgstr ""
3511
 
3556
  "\"<b>Client Secret</b>\"! These will be needed in the plugin's settings."
3557
  msgstr ""
3558
 
3559
+ #: nextend-social-login-pro/providers/yahoo/yahoo.php:65
3560
  msgid "Continue with <b>Yahoo</b>"
3561
  msgstr ""
3562
 
3563
+ #: nextend-social-login-pro/providers/yahoo/yahoo.php:66
3564
+ msgid "Sign up with <b>Yahoo</b>"
3565
+ msgstr ""
3566
+
3567
+ #: nextend-social-login-pro/providers/yahoo/yahoo.php:67
3568
  msgid "Link account with <b>Yahoo</b>"
3569
  msgstr ""
3570
 
3571
+ #: nextend-social-login-pro/providers/yahoo/yahoo.php:68
3572
  msgid "Unlink account from <b>Yahoo</b>"
3573
  msgstr ""
3574
 
3575
+ #: nextend-social-login-pro/providers/yahoo/yahoo.php:188
3576
  #, php-format
3577
  msgid "Required permission: %1$s"
3578
  msgstr ""
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: 2020-08-25 13:38+0200\n"
5
- "PO-Revision-Date: 2020-08-25 13:38+0200\n"
6
  "Last-Translator: \n"
7
  "Language-Team: nextend\n"
8
  "Language: hu\n"
@@ -122,30 +122,30 @@ msgstr ""
122
  msgid "User"
123
  msgstr "Felhasználó"
124
 
125
- #: nextend-facebook-connect/admin/admin.php:203
126
  #, php-format
127
  msgid "%s needs json_decode function."
128
  msgstr "A %s-nak szüksége van a json_decode függvényre."
129
 
130
- #: nextend-facebook-connect/admin/admin.php:203
131
  msgid "Please contact your server administrator and ask for solution!"
132
  msgstr ""
133
  "Kérlek lépj kapcsolatba a szerveradminisztrátorral és kérj tőle segítséget!"
134
 
135
- #: nextend-facebook-connect/admin/admin.php:235
136
- #: nextend-facebook-connect/admin/admin.php:265
137
  msgid "Settings saved."
138
  msgstr "Beállítások elmentve."
139
 
140
- #: nextend-facebook-connect/admin/admin.php:244
141
  msgid "The activation was successful"
142
  msgstr "Az aktiváció sikeres volt"
143
 
144
- #: nextend-facebook-connect/admin/admin.php:255
145
  msgid "Deactivate completed."
146
  msgstr "A deaktiválás befejeződött."
147
 
148
- #: nextend-facebook-connect/admin/admin.php:433
149
  #: nextend-facebook-connect/admin/templates-provider/menu.php:15
150
  #: nextend-facebook-connect/admin/templates/providers.php:89
151
  #: nextend-facebook-connect/admin/templates/providers.php:101
@@ -153,9 +153,9 @@ msgstr "A deaktiválás befejeződött."
153
  msgid "Settings"
154
  msgstr "Beállítások"
155
 
156
- #: nextend-facebook-connect/admin/admin.php:516
157
- #: nextend-facebook-connect/includes/oauth2.php:141
158
- #: nextend-facebook-connect/includes/oauth2.php:286
159
  #: nextend-facebook-connect/providers/facebook/facebook-client.php:84
160
  #: nextend-facebook-connect/providers/twitter/twitter-client.php:165
161
  #: nextend-social-login-pro/providers/apple/apple-client.php:87
@@ -164,7 +164,7 @@ msgstr "Beállítások"
164
  msgid "Unexpected response: %s"
165
  msgstr "Nem várt válasz: %s"
166
 
167
- #: nextend-facebook-connect/admin/admin.php:577
168
  #: nextend-facebook-connect/admin/templates/fix-redirect-uri.php:21
169
  #, php-format
170
  msgid ""
@@ -174,16 +174,16 @@ msgstr ""
174
  "%s érzékelte hogy a bejelentkezési url megváltozott. Frissitened kell az "
175
  "\"Oauth redirect URIs\" értékeket a konfigurált alkalmazásaidban."
176
 
177
- #: nextend-facebook-connect/admin/admin.php:578
178
- #: nextend-social-login-pro/providers/apple/apple.php:308
179
  msgid "Fix Error"
180
  msgstr "Hiba javítása"
181
 
182
- #: nextend-facebook-connect/admin/admin.php:578
183
  msgid "Oauth Redirect URI"
184
  msgstr "Oauth Redirect URI"
185
 
186
- #: nextend-facebook-connect/admin/admin.php:595
187
  #, php-format
188
  msgid ""
189
  "%1$s detected that %2$s installed on your site. You need the Pro Addon to "
@@ -193,15 +193,15 @@ msgstr ""
193
  "social login gombok megjelenjenek a(z) %2$s login formokban, a Pro Addon-ra "
194
  "van szükséged!"
195
 
196
- #: nextend-facebook-connect/admin/admin.php:596
197
  msgid "Dismiss and check Pro Addon"
198
  msgstr "Eltüntent és Pro Addon ellenörzése."
199
 
200
- #: nextend-facebook-connect/admin/admin.php:596
201
  msgid "Dismiss"
202
  msgstr "Eltüntet"
203
 
204
- #: nextend-facebook-connect/admin/admin.php:602
205
  #, php-format
206
  msgid ""
207
  "%1$s detected that %2$s installed on your site. You must set \"<b>Page for "
@@ -209,15 +209,15 @@ msgid ""
209
  "work properly."
210
  msgstr ""
211
 
212
- #: nextend-facebook-connect/admin/admin.php:603
213
  msgid "Fix now"
214
  msgstr "Javítás most"
215
 
216
- #: nextend-facebook-connect/admin/admin.php:627
217
  msgid "Activate your Pro Addon"
218
  msgstr "Pro Addon aktiválása"
219
 
220
- #: nextend-facebook-connect/admin/admin.php:628
221
  #, fuzzy
222
  #| msgid ""
223
  #| "To be able to use the Pro features, you need to activate Nextend Social "
@@ -232,20 +232,20 @@ msgstr ""
232
  "Addon-t. Ezt megteheted az Activate gombra való kattintással és a társított "
233
  "vásárlás kiválasztásával."
234
 
235
- #: nextend-facebook-connect/admin/admin.php:633
236
- #: nextend-social-login-pro/nextend-social-login-pro.php:94
237
  msgid "Activate"
238
  msgstr "Aktiválás"
239
 
240
- #: nextend-facebook-connect/admin/admin.php:731
241
  msgid "License key"
242
  msgstr "Licensz kulcs"
243
 
244
- #: nextend-facebook-connect/admin/admin.php:754
245
  msgid "OAuth proxy page"
246
  msgstr "OAuth proxy page"
247
 
248
- #: nextend-facebook-connect/admin/admin.php:757
249
  msgid "Register flow page"
250
  msgstr "Register flow page"
251
 
@@ -254,46 +254,53 @@ msgstr "Register flow page"
254
  msgid "You have logged in successfully."
255
  msgstr "Sikeresen bejelentkeztél"
256
 
257
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:79
258
  msgid "Login label"
259
  msgstr "Bejelentkezés felirat"
260
 
261
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:84
262
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:95
263
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:106
264
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:135
265
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:165
 
266
  #: nextend-facebook-connect/admin/templates/settings/privacy.php:53
267
  msgid "Reset to default"
268
  msgstr "Alapbeállítás visszaállítása"
269
 
270
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:89
 
 
 
 
 
 
271
  msgid "Link label"
272
  msgstr "Profil összekapcsolás felirat"
273
 
274
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:101
275
  msgid "Unlink label"
276
  msgstr "Profile szétkapcsolás felirat"
277
 
278
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:112
279
  msgid "Default button"
280
  msgstr "Alap gomb"
281
 
282
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:128
283
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:158
284
  msgid "Use custom button"
285
  msgstr "Egyedi gomb használata"
286
 
287
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:135
288
  #, php-format
289
  msgid "Use the %s in your custom button's code to make the label show up."
290
  msgstr "Használd a %s azonosítót, hogy megfelenjen a gomb felirat."
291
 
292
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:143
293
  msgid "Icon button"
294
  msgstr "Ikon gomb"
295
 
296
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:174
297
  #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:140
298
  #: nextend-facebook-connect/admin/templates-provider/sync-data.php:104
299
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:170
@@ -306,8 +313,8 @@ msgstr "Ikon gomb"
306
  #: nextend-facebook-connect/admin/templates/settings/privacy.php:109
307
  #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:186
308
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:167
309
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:326
310
- #: nextend-facebook-connect/providers/facebook/admin/settings.php:57
311
  #: nextend-facebook-connect/providers/google/admin/settings.php:62
312
  #: nextend-facebook-connect/providers/twitter/admin/settings.php:48
313
  #: nextend-social-login-pro/providers/amazon/admin/settings.php:47
@@ -432,7 +439,8 @@ msgstr "Fiók csatlakoztatása, ha regisztráció esetén már létezik a fiók"
432
  #: nextend-facebook-connect/admin/templates/settings/general.php:213
433
  #: nextend-facebook-connect/admin/templates/settings/general.php:228
434
  #: nextend-facebook-connect/admin/templates/settings/general.php:246
435
- #: nextend-facebook-connect/includes/provider-admin.php:217
 
436
  msgid "Disabled"
437
  msgstr "Kikapcsolva"
438
 
@@ -752,7 +760,8 @@ msgstr "Nincs hitelesítve"
752
  #: nextend-facebook-connect/admin/templates/settings/general.php:216
753
  #: nextend-facebook-connect/admin/templates/settings/general.php:231
754
  #: nextend-facebook-connect/admin/templates/settings/general.php:249
755
- #: nextend-facebook-connect/includes/provider-admin.php:220
 
756
  #: nextend-facebook-connect/providers/google/admin/settings.php:53
757
  #: nextend-social-login-pro/providers/paypal/admin/settings.php:51
758
  msgid "Enabled"
@@ -763,17 +772,17 @@ msgid "Upgrade Now"
763
  msgstr "Upgradelés most"
764
 
765
  #: nextend-facebook-connect/admin/templates/providers.php:77
766
- #: nextend-facebook-connect/includes/provider-admin.php:204
767
  msgid "Verify Settings"
768
  msgstr "Beállítások hitelesítése"
769
 
770
  #: nextend-facebook-connect/admin/templates/providers.php:85
771
- #: nextend-facebook-connect/includes/provider-admin.php:249
772
  msgid "Enable"
773
  msgstr "Bekapcsolás"
774
 
775
  #: nextend-facebook-connect/admin/templates/providers.php:97
776
- #: nextend-facebook-connect/includes/provider-admin.php:257
777
  msgid "Disable"
778
  msgstr "Kikapcsolás"
779
 
@@ -1323,6 +1332,20 @@ msgstr ""
1323
  msgid "Allow registration with Social login."
1324
  msgstr ""
1325
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1326
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:29
1327
  #: nextend-facebook-connect/admin/templates/settings/memberpress.php:33
1328
  #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:33
@@ -1423,7 +1446,7 @@ msgid "Link buttons after account details"
1423
  msgstr "Összekapcsoló gombok a profil részletes beállításai után"
1424
 
1425
  #: nextend-facebook-connect/admin/templates/settings/privacy.php:6
1426
- #: nextend-facebook-connect/nextend-social-login.php:143
1427
  msgid ""
1428
  "By clicking Register, you accept our <a href=\"#privacy_policy_url\" target="
1429
  "\"_blank\">Privacy Policy</a>"
@@ -1451,12 +1474,12 @@ msgid "When not enabled, email will be empty."
1451
  msgstr ""
1452
 
1453
  #: nextend-facebook-connect/admin/templates/settings/privacy.php:91
1454
- #: nextend-facebook-connect/includes/avatar.php:59
1455
  msgid "Avatar"
1456
  msgstr ""
1457
 
1458
  #: nextend-facebook-connect/admin/templates/settings/privacy.php:102
1459
- #: nextend-facebook-connect/includes/provider.php:1082
1460
  msgid "Access token"
1461
  msgstr ""
1462
 
@@ -1542,6 +1565,31 @@ msgstr "Ne legyen összekapcsoló gomb a belépő űrlapnál"
1542
  msgid "Link buttons on"
1543
  msgstr "Ikon gomb"
1544
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1545
  #: nextend-facebook-connect/admin/templates/test-connection.php:42
1546
  #, fuzzy, php-format
1547
  #| msgid "Authentication successful"
@@ -1559,18 +1607,17 @@ msgid ""
1559
  "between your server and the provider."
1560
  msgstr ""
1561
 
1562
- #: nextend-facebook-connect/includes/avatar.php:60
1563
  msgid "Manage Avatar"
1564
  msgstr ""
1565
 
1566
- #: nextend-facebook-connect/includes/avatar.php:61
1567
  #, php-format
1568
  msgid "Avatar <span class=\"count\">(%s)</span>"
1569
  msgid_plural "Avatar <span class=\"count\">(%s)</span>"
1570
  msgstr[0] ""
1571
  msgstr[1] ""
1572
 
1573
- #. translators: Login screen title. 1: Login screen name, 2: Network or site name
1574
  #: nextend-facebook-connect/includes/compat-wp-login.php:63
1575
  #, php-format
1576
  msgid "%1$s &lsaquo; %2$s &#8212; WordPress"
@@ -1584,18 +1631,17 @@ msgstr ""
1584
  msgid "Powered by WordPress"
1585
  msgstr ""
1586
 
1587
- #. translators: %s: site title
1588
  #: nextend-facebook-connect/includes/compat-wp-login.php:284
1589
  #, php-format
1590
  msgctxt "site"
1591
  msgid "&larr; Back to %s"
1592
  msgstr ""
1593
 
1594
- #: nextend-facebook-connect/includes/provider-admin.php:198
1595
  msgid "Your configuration needs to be verified"
1596
  msgstr ""
1597
 
1598
- #: nextend-facebook-connect/includes/provider-admin.php:199
1599
  msgid ""
1600
  "Before you can start letting your users register with your app it needs to "
1601
  "be tested. This test makes sure that no users will have troubles with the "
@@ -1609,15 +1655,15 @@ msgstr ""
1609
  "felugró ablakban, nézd meg az appodat vagy a kimásolt hitelesítő adatokat. "
1610
  "Ha nincs hibaüzenet, az azt jelenti, hogy minden rendben van."
1611
 
1612
- #: nextend-facebook-connect/includes/provider-admin.php:205
1613
  msgid "Please save your changes to verify settings."
1614
  msgstr ""
1615
 
1616
- #: nextend-facebook-connect/includes/provider-admin.php:213
1617
  msgid "Works Fine"
1618
  msgstr "Megfelelően Működik"
1619
 
1620
- #: nextend-facebook-connect/includes/provider-admin.php:227
1621
  #, php-format
1622
  msgid ""
1623
  "This provider is currently disabled, which means that users can’t register "
@@ -1626,7 +1672,7 @@ msgstr ""
1626
  "Ez a provider jelenleg nincs bekapcsolva, ami azt jelenti, hogy a "
1627
  "felhasználók nem tudnak regisztrálni vagy belépni a %s fiókjukkal."
1628
 
1629
- #: nextend-facebook-connect/includes/provider-admin.php:230
1630
  #, php-format
1631
  msgid ""
1632
  "This provider works fine, but you can test it again. If you don’t want to "
@@ -1636,7 +1682,7 @@ msgstr ""
1636
  "továbbiakban nem akarod, hogy regisztráljanak vagy belépjenek a %s "
1637
  "fiókjukkal kikapcsolhatod a providertt."
1638
 
1639
- #: nextend-facebook-connect/includes/provider-admin.php:233
1640
  #, php-format
1641
  msgid ""
1642
  "This provider is currently enabled, which means that users can register or "
@@ -1645,47 +1691,48 @@ msgstr ""
1645
  "Ez a provider jelenleg be vankapcsolva, ami azt jelenti, hogy a felhasználók "
1646
  "regisztrálhatnak és beléphetnek a %s fiókjukkal."
1647
 
1648
- #: nextend-facebook-connect/includes/provider-admin.php:241
1649
  msgid "Verify Settings Again"
1650
  msgstr ""
1651
 
1652
- #: nextend-facebook-connect/includes/provider-admin.php:242
1653
  msgid "Please save your changes before verifying settings."
1654
  msgstr ""
1655
 
1656
- #: nextend-facebook-connect/includes/provider.php:357
1657
- #: nextend-facebook-connect/includes/provider.php:705
1658
- #: nextend-facebook-connect/includes/provider.php:710
1659
  msgid "Authentication successful"
1660
  msgstr "Hitelesítés sikeres"
1661
 
1662
- #: nextend-facebook-connect/includes/provider.php:647
1663
- #: nextend-facebook-connect/includes/user.php:126
 
1664
  msgid "Authentication error"
1665
  msgstr "Hitelesítési hiba"
1666
 
1667
- #: nextend-facebook-connect/includes/provider.php:662
1668
  msgid "Unlink successful."
1669
  msgstr "Szétkapcsolás sikeres"
1670
 
1671
- #: nextend-facebook-connect/includes/provider.php:664
1672
  msgid "Unlink is not allowed!"
1673
  msgstr ""
1674
 
1675
- #: nextend-facebook-connect/includes/provider.php:868
1676
- #: nextend-facebook-connect/includes/provider.php:875
1677
  msgid "The test was successful"
1678
  msgstr "A teszt sikeres volt"
1679
 
1680
- #: nextend-facebook-connect/includes/provider.php:921
1681
  msgid "Authentication failed"
1682
  msgstr "Hitelesítés sikertelen"
1683
 
1684
- #: nextend-facebook-connect/includes/provider.php:1074
1685
  msgid "Identifier"
1686
  msgstr ""
1687
 
1688
- #: nextend-facebook-connect/includes/provider.php:1090
1689
  msgid "Profile picture"
1690
  msgstr ""
1691
 
@@ -1702,15 +1749,20 @@ msgstr ""
1702
  #, php-format
1703
  msgid ""
1704
  "You have already linked a(n) %s account. Please unlink the current and then "
1705
- "you can link other %s account."
1706
  msgstr ""
1707
 
1708
  #: nextend-facebook-connect/includes/user.php:82
1709
- #, php-format
1710
- msgid "This %s account is already linked to other user."
 
 
 
1711
  msgstr ""
 
 
1712
 
1713
- #: nextend-facebook-connect/includes/user.php:122
1714
  msgid "User registration is currently not allowed."
1715
  msgstr ""
1716
 
@@ -1718,14 +1770,12 @@ msgstr ""
1718
  msgid "Register For This Site!"
1719
  msgstr ""
1720
 
1721
- #. translators: %2$s: PHP version
1722
- #: nextend-facebook-connect/nextend-facebook-connect.php:34
1723
  #, php-format
1724
  msgid "%1$s requires PHP version %2$s+, plugin is currently NOT ACTIVE."
1725
  msgstr ""
1726
 
1727
- #. translators: %2$s: WordPress version
1728
- #: nextend-facebook-connect/nextend-facebook-connect.php:41
1729
  #, php-format
1730
  msgid ""
1731
  "%1$s requires WordPress version %2$s+. Because you are using an earlier "
@@ -1743,12 +1793,12 @@ msgstr ""
1743
  msgid "Update now!"
1744
  msgstr ""
1745
 
1746
- #: nextend-facebook-connect/nextend-social-login.php:749
1747
- #: nextend-facebook-connect/nextend-social-login.php:1125
1748
  msgid "Social Login"
1749
  msgstr "Közösségi belépés"
1750
 
1751
- #: nextend-facebook-connect/nextend-social-login.php:1106
1752
  msgid "Social Accounts"
1753
  msgstr ""
1754
 
@@ -1816,7 +1866,7 @@ msgid "In the left sidebar, click on \"<b>Facebook Login > Settings</b>\""
1816
  msgstr "A bal oldali menüben kattints a \"Facebook Login\" feliratra"
1817
 
1818
  #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:12
1819
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:34
1820
  #, fuzzy, php-format
1821
  #| msgid ""
1822
  #| "Add the following URL to the \"Valid OAuth redirect URIs\" field: <b>%s</"
@@ -1911,9 +1961,11 @@ msgstr "Látogasd meg ezt az oldalt: %s"
1911
 
1912
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:26
1913
  #, fuzzy
1914
- #| msgid "Click on the \"Add a New App\" button"
1915
- msgid "Click on the \"<b>Add a New App\" button</b>"
1916
- msgstr "Kattints az \"Add a New App\" gombra"
 
 
1917
 
1918
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:27
1919
  msgid ""
@@ -1925,25 +1977,31 @@ msgstr ""
1925
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:28
1926
  #, php-format
1927
  msgid ""
1928
- "Fill \"<b>Display Name</b>\" and \"<b>Contact Email</b>\". The specified "
1929
- "\"Display Name\" will appear on your %s!"
1930
  msgstr ""
1931
 
1932
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:29
 
 
 
 
 
 
1933
  #, fuzzy
1934
  #| msgid "Click the \"Create App\" button."
1935
  msgid ""
1936
  "Click the \"<b>Create App ID</b>\" button and complete the Security Check."
1937
  msgstr "Kattints a \"Create App\" gombra"
1938
 
1939
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:30
1940
  #, php-format
1941
  msgid ""
1942
  "At the \"<b>Add a Product</b>\" panel find \"<b>%1$s</b>\" and click "
1943
  "\"<b>Set Up</b>\""
1944
  msgstr ""
1945
 
1946
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:31
1947
  #, fuzzy, php-format
1948
  #| msgid "Add the following URL to the \"Redirect URLs\" field <b>%s</b> "
1949
  msgid ""
@@ -1951,33 +2009,33 @@ msgid ""
1951
  "field: <b>%s</b>"
1952
  msgstr "Tedd a következő linket az \"Redirect URLs:\" mezőbe: <b>%s</b>"
1953
 
1954
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:32
1955
  #, fuzzy
1956
  #| msgid "Click on \"Save Changes\""
1957
  msgid "Press “<b>Save</b>”"
1958
  msgstr "Kattints a \"Save Changes\"-re"
1959
 
1960
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:33
1961
  #, php-format
1962
  msgid ""
1963
  "Click on the “<b>%1$s</b>” option what you find on the left side, under “<b>"
1964
  "%2$s</b> - <b>%3$s</b>”"
1965
  msgstr ""
1966
 
1967
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:35
1968
  #, fuzzy
1969
  #| msgid "Click on \"Save Changes\""
1970
  msgid "Click on “<b>Save Changes</b>”"
1971
  msgstr "Kattints a \"Save Changes\"-re"
1972
 
1973
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:36
1974
  #, php-format
1975
  msgid ""
1976
  "On the top left side, click on the “<b>%1$s</b>” menu point, then click “<b>"
1977
  "%2$s</b>”"
1978
  msgstr ""
1979
 
1980
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:37
1981
  #, fuzzy, php-format
1982
  #| msgid "Enter your domain name to the App Domains"
1983
  msgid ""
@@ -1985,7 +2043,7 @@ msgid ""
1985
  "b>"
1986
  msgstr "Írd be a domain neved az \"App Domains\" mezőbe"
1987
 
1988
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:38
1989
  #, fuzzy
1990
  #| msgid ""
1991
  #| "Fill up the \"Privacy Policy URL\". Provide a publicly available and "
@@ -2000,14 +2058,41 @@ msgstr ""
2000
  "tartalmazza az adatvédelmi irányelveket, amik elmagyarázzák, milyen "
2001
  "információkat gyűjtesz és mihez kezdesz velük."
2002
 
2003
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:39
2004
  msgid ""
2005
- "Select a “<b>Category</b>”, an “<b>App Icon</b>” and pick the “<b>Business "
2006
- "Use</b>” option that describes your the App best, then press \"<b>Save "
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2007
  "Changes</b>\""
2008
  msgstr ""
2009
 
2010
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:40
2011
  #, fuzzy
2012
  #| msgid ""
2013
  #| "Your application is currently private ( Status: In Development ), which "
@@ -2022,7 +2107,7 @@ msgstr ""
2022
  "vele. A felső menüben kattintsz az \"OFF\" választó gombra és válassz egy "
2023
  "kategóriát az Appodnak."
2024
 
2025
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:41
2026
  #, fuzzy
2027
  #| msgid ""
2028
  #| "Here you can see your \"APP ID\" and you can see your \"App secret\" if "
@@ -2036,9 +2121,20 @@ msgstr ""
2036
  "Itt találod az \"App ID\"-t és az \"App Secret\"-et, ha a \"Show\" gombra "
2037
  "kattintasz. Ezekre lesz szükséged a plugin beállításainál."
2038
 
2039
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:45
 
 
 
 
 
 
 
 
 
 
 
2040
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:40
2041
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:32
2042
  #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:39
2043
  #: nextend-social-login-pro/providers/apple/admin/getting-started.php:122
2044
  #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:30
@@ -2110,31 +2206,46 @@ msgstr ""
2110
  msgid "App Secret"
2111
  msgstr "App Secret"
2112
 
2113
- #: nextend-facebook-connect/providers/facebook/facebook.php:84
2114
- msgid "Continue with <b>Facebook</b>"
2115
- msgstr "Folytatás a <b>Facebookkal</b>"
 
 
 
 
 
 
 
2116
 
2117
  #: nextend-facebook-connect/providers/facebook/facebook.php:85
 
 
 
 
 
 
 
 
2118
  msgid "Link account with <b>Facebook</b>"
2119
  msgstr "Fiók összekapcsolása a <b>Facebook</b>-kal"
2120
 
2121
- #: nextend-facebook-connect/providers/facebook/facebook.php:86
2122
  msgid "Unlink account from <b>Facebook</b>"
2123
- msgstr "Szétkapcsolás <b>Facebook</b>-kal"
2124
-
2125
- #: nextend-facebook-connect/providers/facebook/facebook.php:186
2126
- #: nextend-facebook-connect/providers/google/google.php:174
2127
- #: nextend-facebook-connect/providers/twitter/twitter.php:95
2128
- #: nextend-social-login-pro/providers/amazon/amazon.php:65
2129
- #: nextend-social-login-pro/providers/apple/apple.php:129
2130
- #: nextend-social-login-pro/providers/apple/apple.php:136
2131
- #: nextend-social-login-pro/providers/disqus/disqus.php:112
2132
- #: nextend-social-login-pro/providers/github/github.php:150
2133
- #: nextend-social-login-pro/providers/linkedin/linkedin.php:63
2134
- #: nextend-social-login-pro/providers/paypal/paypal.php:90
2135
- #: nextend-social-login-pro/providers/vk/vk.php:61
2136
- #: nextend-social-login-pro/providers/wordpress/wordpress.php:99
2137
- #: nextend-social-login-pro/providers/yahoo/yahoo.php:90
2138
  #, php-format
2139
  msgid ""
2140
  "The %1$s entered did not appear to be a valid. Please enter a valid %2$s."
@@ -2142,8 +2253,8 @@ msgstr ""
2142
  "A megadott %1$s nem tűnik helyesnek. Győződj meg róla, hogy a beírt %2$s "
2143
  "helyes."
2144
 
2145
- #: nextend-facebook-connect/providers/facebook/facebook.php:307
2146
- #: nextend-social-login-pro/providers/paypal/paypal.php:170
2147
  #, php-format
2148
  msgid "Required scope: %1$s"
2149
  msgstr ""
@@ -2338,19 +2449,23 @@ msgid ""
2338
  "Disable, when you don't want to see the account select prompt on each login."
2339
  msgstr ""
2340
 
2341
- #: nextend-facebook-connect/providers/google/google.php:106
2342
  msgid "Continue with <b>Google</b>"
2343
- msgstr "Folytatás a <b>Google-el</b>"
2344
 
2345
- #: nextend-facebook-connect/providers/google/google.php:107
 
 
 
 
2346
  msgid "Link account with <b>Google</b>"
2347
  msgstr "Fiók összekapcsolása a <b>Google</b>-lel"
2348
 
2349
- #: nextend-facebook-connect/providers/google/google.php:108
2350
  msgid "Unlink account from <b>Google</b>"
2351
- msgstr "Szétkapcsolás <b>Google</b>-lel"
2352
 
2353
- #: nextend-facebook-connect/providers/google/google.php:301
2354
  #, php-format
2355
  msgid "Required API: %1$s"
2356
  msgstr "Szükséges API: %1$s"
@@ -2358,25 +2473,38 @@ msgstr "Szükséges API: %1$s"
2358
  #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:10
2359
  #, fuzzy
2360
  #| msgid "Find your App and click on the Details button"
2361
- msgid "Find your App and click on the \"<b>Details</b>\" button"
 
 
2362
  msgstr "Keresd meg az Appod és kattints a Details gombra."
2363
 
2364
  #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:11
2365
- msgid ""
2366
- "The <b>Edit</b> button can be found on the App details tab. Click on it and "
2367
- "select \"<b>Edit details</b>\""
2368
- msgstr ""
 
2369
 
2370
  #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:12
2371
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:22
2372
  #, fuzzy, php-format
2373
  #| msgid "Add the following URL to the \"Callback URLs\" field: <b>%s</b>"
2374
  msgid "Add the following URL to the \"<b>Callback URLs</b>\" field: <b>%s</b>"
2375
  msgstr "Tedd a következő linket az \"Callback URL\" mezőbe: <b>%s</b>"
2376
 
2377
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:17
 
 
 
 
 
 
 
 
 
 
 
2378
  #, php-format
2379
- msgid "Log in with your %s credentials if you are not logged in yet"
2380
  msgstr "Lépj be a %s fiókoddal ha még nem vagy belépve."
2381
 
2382
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:18
@@ -2393,59 +2521,76 @@ msgid ""
2393
  msgstr ""
2394
 
2395
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:20
2396
- #, fuzzy, php-format
2397
- #| msgid ""
2398
- #| "Fill the App name, Application description fields. Then enter your site's "
2399
- #| "URL to the Website URL field: <b>%s</b>"
 
 
2400
  msgid ""
2401
- "Fill the <b>App name</b>, <b>Application description</b> fields. Then enter "
2402
- "your site's URL to the <b>Website URL</b> field: <b>%s</b>"
2403
  msgstr ""
2404
- "Töltsd ki az App name és Application description mezőjet. Aztán írd be az "
2405
- "oldalad címét a Website URL mezőbe: <b>%s</b>"
2406
 
2407
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:21
2408
- msgid "Tick the checkbox next to <b>Enable Sign in with Twitter</b>!"
2409
  msgstr ""
2410
 
2411
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:23
2412
  msgid ""
2413
- "Fill the “<b>Terms of Service URL</b>\", \"<b>Privacy policy URL</b>\" and "
2414
- "\"<b>Tell us how this app will be used</b>\" fields!"
 
2415
  msgstr ""
2416
 
2417
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:24
2418
- #, fuzzy
2419
- #| msgid "Click the Create button."
2420
- msgid "Click the <b>Create</b> button."
2421
- msgstr "Kattints a \"Create\" gombra"
2422
 
2423
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:25
2424
- #, fuzzy
2425
- #| msgid "Read the Developer Terms and click the Create button again!"
2426
- msgid "Read the Developer Terms and click the <b>Create</b> button again!"
2427
- msgstr "Olvasd el a Fejlesztői feltételeket és kattints a Create gombra újra."
2428
 
2429
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:26
2430
- msgid "Select the <b>Permissions</b> tab and click <b>Edit</b>."
2431
  msgstr ""
2432
 
2433
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:27
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2434
  msgid ""
2435
- "Tick the <b>Request email address from users</b> under the Additional "
2436
- "permissions section and click <b>Save</b>."
 
 
2437
  msgstr ""
2438
 
2439
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:28
2440
  #, fuzzy
2441
- #| msgid ""
2442
- #| "Go to the Keys and tokens tab and find the API key and API secret key"
2443
- msgid ""
2444
- "Go to the <b>Keys and tokens</b> tab and find the <b>API key</b> and <b>API "
2445
- "secret key</b>"
 
 
2446
  msgstr ""
2447
- "Menj a \"Keys and tokens\" fülre ahol megtalálod az \"API key\"-t és \"API "
2448
- "Secret\"-et"
2449
 
2450
  #: nextend-facebook-connect/providers/twitter/admin/settings.php:27
2451
  #: nextend-social-login-pro/providers/disqus/admin/settings.php:26
@@ -2464,17 +2609,21 @@ msgstr ""
2464
  msgid "Original"
2465
  msgstr ""
2466
 
2467
- #: nextend-facebook-connect/providers/twitter/twitter.php:69
2468
  msgid "Continue with <b>Twitter</b>"
2469
- msgstr "Folytatás a <b>Twitterrel</b>"
2470
 
2471
- #: nextend-facebook-connect/providers/twitter/twitter.php:70
 
 
 
 
2472
  msgid "Link account with <b>Twitter</b>"
2473
  msgstr "Fiók összekapcsolása a <b>Twitter</b>-rel"
2474
 
2475
- #: nextend-facebook-connect/providers/twitter/twitter.php:71
2476
  msgid "Unlink account from <b>Twitter</b>"
2477
- msgstr "Szétkapcsolás <b>Twitter</b>-rel"
2478
 
2479
  #: nextend-facebook-connect/widget.php:10
2480
  #, php-format
@@ -2592,20 +2741,20 @@ msgid ""
2592
  "with %1$s."
2593
  msgstr ""
2594
 
2595
- #: nextend-social-login-pro/nextend-social-login-pro.php:88
2596
  #, php-format
2597
  msgid "Please install and activate %1$s to use the %2$s"
2598
  msgstr ""
2599
 
2600
- #: nextend-social-login-pro/nextend-social-login-pro.php:102
2601
  msgid "Network Activate"
2602
  msgstr ""
2603
 
2604
- #: nextend-social-login-pro/nextend-social-login-pro.php:114
2605
  msgid "Install now!"
2606
  msgstr ""
2607
 
2608
- #: nextend-social-login-pro/nextend-social-login-pro.php:787
2609
  #, fuzzy
2610
  #| msgid "Providers"
2611
  msgid "Social Providers"
@@ -2618,7 +2767,7 @@ msgid ""
2618
  "latest %2$s version!"
2619
  msgstr ""
2620
 
2621
- #: nextend-social-login-pro/provider-extensions/google.php:176
2622
  #, php-format
2623
  msgid ""
2624
  "Most of these information can only be retrieved, when the field is marked as "
@@ -2672,21 +2821,6 @@ msgstr ""
2672
  "\"Beállítások\" fülre és állítsd be a \"%2$s\"-t és \"%3$s\"-t a %1$s Appod "
2673
  "alapján."
2674
 
2675
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:25
2676
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:38
2677
- #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:9
2678
- #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:16
2679
- #: nextend-social-login-pro/providers/github/admin/getting-started.php:16
2680
- #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:9
2681
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:17
2682
- #: nextend-social-login-pro/providers/vk/admin/getting-started.php:16
2683
- #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:9
2684
- #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:16
2685
- #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:17
2686
- #, php-format
2687
- msgid "Log in with your %s credentials if you are not logged in."
2688
- msgstr "Lépj be a %s fiókoddal ha még nem vagy belépve."
2689
-
2690
  #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:27
2691
  #, fuzzy
2692
  #| msgid ""
@@ -2741,15 +2875,19 @@ msgstr ""
2741
  "Itt találod a \"Client ID\"-t és a \"Client Secret\"-et az oldal közepén, a "
2742
  "Web Settings tab alatt."
2743
 
2744
- #: nextend-social-login-pro/providers/amazon/amazon.php:39
2745
  msgid "Continue with <b>Amazon</b>"
2746
  msgstr "Folytatás az <b>Amazon</b>-nal"
2747
 
2748
- #: nextend-social-login-pro/providers/amazon/amazon.php:40
 
 
 
 
2749
  msgid "Link account with <b>Amazon</b>"
2750
  msgstr "Fiók összekapcsolása az <b>Amazon</b>-nal"
2751
 
2752
- #: nextend-social-login-pro/providers/amazon/amazon.php:41
2753
  msgid "Unlink account from <b>Amazon</b>"
2754
  msgstr "Szétkapcsolás <b>Amazon</b>-tól"
2755
 
@@ -3076,53 +3214,51 @@ msgstr ""
3076
  msgid "Generate Token"
3077
  msgstr ""
3078
 
3079
- #: nextend-social-login-pro/providers/apple/apple.php:82
3080
- #, fuzzy
3081
- #| msgid "Continue with <b>Google</b>"
3082
  msgid "Continue with <b>Apple</b>"
3083
- msgstr "Folytatás a <b>Google-el</b>"
3084
 
3085
- #: nextend-social-login-pro/providers/apple/apple.php:83
3086
- #, fuzzy
3087
- #| msgid "Link account with <b>Google</b>"
 
 
3088
  msgid "Link account with <b>Apple</b>"
3089
- msgstr "Fiók összekapcsolása a <b>Google</b>-lel"
3090
 
3091
- #: nextend-social-login-pro/providers/apple/apple.php:84
3092
- #, fuzzy
3093
- #| msgid "Unlink account from <b>Google</b>"
3094
  msgid "Unlink account from <b>Apple</b>"
3095
- msgstr "Szétkapcsolás <b>Google</b>-lel"
3096
 
3097
- #: nextend-social-login-pro/providers/apple/apple.php:178
3098
  #, php-format
3099
  msgid "An error occurred when storing of the expiration timestamp : %1$s"
3100
  msgstr ""
3101
 
3102
- #: nextend-social-login-pro/providers/apple/apple.php:182
3103
- #: nextend-social-login-pro/providers/apple/apple.php:280
3104
- #: nextend-social-login-pro/providers/apple/apple.php:295
3105
- #: nextend-social-login-pro/providers/apple/apple.php:339
3106
  #, php-format
3107
  msgid "Token generation failed: %1$s"
3108
  msgstr ""
3109
 
3110
- #: nextend-social-login-pro/providers/apple/apple.php:182
3111
  msgid "Please check your credentials!"
3112
  msgstr ""
3113
 
3114
- #: nextend-social-login-pro/providers/apple/apple.php:280
3115
  msgid "Private key format is not valid!"
3116
  msgstr ""
3117
 
3118
- #: nextend-social-login-pro/providers/apple/apple.php:306
3119
  #, php-format
3120
  msgid ""
3121
  "%s detected that your Apple credentials have expired. Please delete the "
3122
  "current credentials and generate new one!"
3123
  msgstr ""
3124
 
3125
- #: nextend-social-login-pro/providers/apple/apple.php:308
3126
  msgid "Apple Credentials"
3127
  msgstr ""
3128
 
@@ -3238,15 +3374,19 @@ msgstr ""
3238
  msgid "API Secret"
3239
  msgstr "API Secret"
3240
 
3241
- #: nextend-social-login-pro/providers/disqus/disqus.php:86
3242
  msgid "Continue with <b>Disqus</b>"
3243
  msgstr "Folytatás a <b>Disqus</b>-szal"
3244
 
3245
- #: nextend-social-login-pro/providers/disqus/disqus.php:87
 
 
 
 
3246
  msgid "Link account with <b>Disqus</b>"
3247
  msgstr "Fiók összekapcsolása a <b>Disqus</b>-szal"
3248
 
3249
- #: nextend-social-login-pro/providers/disqus/disqus.php:88
3250
  msgid "Unlink account from <b>Disqus</b>"
3251
  msgstr "Szétkapcsolás <b>Disqus</b>-tól"
3252
 
@@ -3338,23 +3478,21 @@ msgid ""
3338
  "public email address set at the %1$s profile page%2$s!"
3339
  msgstr ""
3340
 
3341
- #: nextend-social-login-pro/providers/github/github.php:124
3342
- #, fuzzy
3343
- #| msgid "Continue with <b>Disqus</b>"
3344
  msgid "Continue with <b>GitHub</b>"
3345
- msgstr "Folytatás a <b>Disqus</b>-szal"
3346
 
3347
- #: nextend-social-login-pro/providers/github/github.php:125
3348
- #, fuzzy
3349
- #| msgid "Link account with <b>Disqus</b>"
 
 
3350
  msgid "Link account with <b>GitHub</b>"
3351
- msgstr "Fiók összekapcsolása a <b>Disqus</b>-szal"
3352
 
3353
- #: nextend-social-login-pro/providers/github/github.php:126
3354
- #, fuzzy
3355
- #| msgid "Unlink account from <b>Disqus</b>"
3356
  msgid "Unlink account from <b>GitHub</b>"
3357
- msgstr "Szétkapcsolás <b>Disqus</b>-tól"
3358
 
3359
  #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:10
3360
  msgid "Click on your App and go to the \"<b>Auth</b>\" tab."
@@ -3450,17 +3588,21 @@ msgstr ""
3450
  "Itt találod a \"Client ID\"-t és a \"Client Secret\"-et az oldal közepén, a "
3451
  "Web Settings tab alatt."
3452
 
3453
- #: nextend-social-login-pro/providers/linkedin/linkedin.php:37
3454
  msgid "Continue with <b>LinkedIn</b>"
3455
- msgstr "Folytatás a <b>LinkedInnel</b>"
3456
 
3457
- #: nextend-social-login-pro/providers/linkedin/linkedin.php:38
 
 
 
 
3458
  msgid "Link account with <b>LinkedIn</b>"
3459
  msgstr "Fiók összekapcsolása a <b>LinkedIn</b>-nel"
3460
 
3461
- #: nextend-social-login-pro/providers/linkedin/linkedin.php:39
3462
  msgid "Unlink account from <b>LinkedIn</b>"
3463
- msgstr "Szétkapcsolás <b>LinkedIn</b>-nel"
3464
 
3465
  #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:10
3466
  #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:18
@@ -3563,15 +3705,19 @@ msgstr "Email scope"
3563
  msgid "Disable, when you have no rights for email address."
3564
  msgstr ""
3565
 
3566
- #: nextend-social-login-pro/providers/paypal/paypal.php:64
3567
  msgid "Continue with <b>PayPal</b>"
3568
  msgstr "Folytatás a <b>PayPal</b>-al"
3569
 
3570
- #: nextend-social-login-pro/providers/paypal/paypal.php:65
 
 
 
 
3571
  msgid "Link account with <b>PayPal</b>"
3572
  msgstr "Fiók összekapcsolása a <b>PayPal</b>-al"
3573
 
3574
- #: nextend-social-login-pro/providers/paypal/paypal.php:66
3575
  msgid "Unlink account from <b>PayPal</b>"
3576
  msgstr "Szétkapcsolás <b>PayPal</b>-tól"
3577
 
@@ -3677,15 +3823,19 @@ msgstr ""
3677
  msgid "Secure key"
3678
  msgstr ""
3679
 
3680
- #: nextend-social-login-pro/providers/vk/vk.php:35
3681
  msgid "Continue with <b>VK</b>"
3682
  msgstr "Folytatás a <b>VK</b>-val"
3683
 
3684
- #: nextend-social-login-pro/providers/vk/vk.php:36
 
 
 
 
3685
  msgid "Link account with <b>VK</b>"
3686
  msgstr "Fiók összekapcsolása a <b>VK</b>-val"
3687
 
3688
- #: nextend-social-login-pro/providers/vk/vk.php:37
3689
  msgid "Unlink account from <b>VK</b>"
3690
  msgstr "Szétkapcsolás <b>VK</b>-tól"
3691
 
@@ -3759,15 +3909,19 @@ msgstr ""
3759
  "Itt találod az \"Client ID\"-t és az \"Client Secret\"-et. Ezekre lesz "
3760
  "szükséged a plugin beállításainál."
3761
 
3762
- #: nextend-social-login-pro/providers/wordpress/wordpress.php:73
3763
  msgid "Continue with <b>WordPress.com</b>"
3764
  msgstr "Folytatás a <b>WordPress.com</b>-al"
3765
 
3766
- #: nextend-social-login-pro/providers/wordpress/wordpress.php:74
 
 
 
 
3767
  msgid "Link account with <b>WordPress.com</b>"
3768
  msgstr "Fiók összekapcsolása a <b>WordPress.com</b>-al"
3769
 
3770
- #: nextend-social-login-pro/providers/wordpress/wordpress.php:75
3771
  msgid "Unlink account from <b>WordPress.com</b>"
3772
  msgstr "Szétkapcsolás <b>WordPress.com</b>-tól"
3773
 
@@ -3830,25 +3984,23 @@ msgstr ""
3830
  "Itt találod az \"Client ID\"-t és az \"Client Secret\"-et. Ezekre lesz "
3831
  "szükséged a plugin beállításainál."
3832
 
3833
- #: nextend-social-login-pro/providers/yahoo/yahoo.php:64
3834
- #, fuzzy
3835
- #| msgid "Continue with <b>Facebook</b>"
3836
  msgid "Continue with <b>Yahoo</b>"
3837
- msgstr "Folytatás a <b>Facebookkal</b>"
3838
 
3839
- #: nextend-social-login-pro/providers/yahoo/yahoo.php:65
3840
- #, fuzzy
3841
- #| msgid "Link account with <b>Facebook</b>"
 
 
3842
  msgid "Link account with <b>Yahoo</b>"
3843
- msgstr "Fiók összekapcsolása a <b>Facebook</b>-kal"
3844
 
3845
- #: nextend-social-login-pro/providers/yahoo/yahoo.php:66
3846
- #, fuzzy
3847
- #| msgid "Unlink account from <b>Facebook</b>"
3848
  msgid "Unlink account from <b>Yahoo</b>"
3849
- msgstr "Szétkapcsolás <b>Facebook</b>-kal"
3850
 
3851
- #: nextend-social-login-pro/providers/yahoo/yahoo.php:186
3852
  #, fuzzy, php-format
3853
  #| msgid "Required API: %1$s"
3854
  msgid "Required permission: %1$s"
@@ -3892,6 +4044,47 @@ msgstr "VAGY"
3892
  msgid "Social accounts"
3893
  msgstr "Közösségi fiókok"
3894
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3895
  #, fuzzy
3896
  #~| msgid "Enter your domain name to the App Domains"
3897
  #~ msgid "Enter your domain name to the \"App Domains\" field."
@@ -4210,13 +4403,6 @@ msgstr "Közösségi fiókok"
4210
  #~ msgid "Not Tested"
4211
  #~ msgstr "Nincs Tesztelve"
4212
 
4213
- #~ msgid ""
4214
- #~ "This %s account is already linked with other account. Linking process "
4215
- #~ "failed!"
4216
- #~ msgstr ""
4217
- #~ "Az %s fiók már haszálva van egy másik közösségi fiókkal. Az "
4218
- #~ "összekapcsolási folyamat sikertelen!"
4219
-
4220
  #~ msgid "Your configuration needs testing"
4221
  #~ msgstr "A konfigurációt le kell tesztelni"
4222
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: nextend-facebook-connect\n"
4
+ "POT-Creation-Date: 2021-01-27 13:57+0100\n"
5
+ "PO-Revision-Date: 2021-01-27 13:57+0100\n"
6
  "Last-Translator: \n"
7
  "Language-Team: nextend\n"
8
  "Language: hu\n"
122
  msgid "User"
123
  msgstr "Felhasználó"
124
 
125
+ #: nextend-facebook-connect/admin/admin.php:206
126
  #, php-format
127
  msgid "%s needs json_decode function."
128
  msgstr "A %s-nak szüksége van a json_decode függvényre."
129
 
130
+ #: nextend-facebook-connect/admin/admin.php:206
131
  msgid "Please contact your server administrator and ask for solution!"
132
  msgstr ""
133
  "Kérlek lépj kapcsolatba a szerveradminisztrátorral és kérj tőle segítséget!"
134
 
135
+ #: nextend-facebook-connect/admin/admin.php:238
136
+ #: nextend-facebook-connect/admin/admin.php:268
137
  msgid "Settings saved."
138
  msgstr "Beállítások elmentve."
139
 
140
+ #: nextend-facebook-connect/admin/admin.php:247
141
  msgid "The activation was successful"
142
  msgstr "Az aktiváció sikeres volt"
143
 
144
+ #: nextend-facebook-connect/admin/admin.php:258
145
  msgid "Deactivate completed."
146
  msgstr "A deaktiválás befejeződött."
147
 
148
+ #: nextend-facebook-connect/admin/admin.php:437
149
  #: nextend-facebook-connect/admin/templates-provider/menu.php:15
150
  #: nextend-facebook-connect/admin/templates/providers.php:89
151
  #: nextend-facebook-connect/admin/templates/providers.php:101
153
  msgid "Settings"
154
  msgstr "Beállítások"
155
 
156
+ #: nextend-facebook-connect/admin/admin.php:520
157
+ #: nextend-facebook-connect/includes/oauth2.php:143
158
+ #: nextend-facebook-connect/includes/oauth2.php:288
159
  #: nextend-facebook-connect/providers/facebook/facebook-client.php:84
160
  #: nextend-facebook-connect/providers/twitter/twitter-client.php:165
161
  #: nextend-social-login-pro/providers/apple/apple-client.php:87
164
  msgid "Unexpected response: %s"
165
  msgstr "Nem várt válasz: %s"
166
 
167
+ #: nextend-facebook-connect/admin/admin.php:581
168
  #: nextend-facebook-connect/admin/templates/fix-redirect-uri.php:21
169
  #, php-format
170
  msgid ""
174
  "%s érzékelte hogy a bejelentkezési url megváltozott. Frissitened kell az "
175
  "\"Oauth redirect URIs\" értékeket a konfigurált alkalmazásaidban."
176
 
177
+ #: nextend-facebook-connect/admin/admin.php:582
178
+ #: nextend-social-login-pro/providers/apple/apple.php:310
179
  msgid "Fix Error"
180
  msgstr "Hiba javítása"
181
 
182
+ #: nextend-facebook-connect/admin/admin.php:582
183
  msgid "Oauth Redirect URI"
184
  msgstr "Oauth Redirect URI"
185
 
186
+ #: nextend-facebook-connect/admin/admin.php:599
187
  #, php-format
188
  msgid ""
189
  "%1$s detected that %2$s installed on your site. You need the Pro Addon to "
193
  "social login gombok megjelenjenek a(z) %2$s login formokban, a Pro Addon-ra "
194
  "van szükséged!"
195
 
196
+ #: nextend-facebook-connect/admin/admin.php:600
197
  msgid "Dismiss and check Pro Addon"
198
  msgstr "Eltüntent és Pro Addon ellenörzése."
199
 
200
+ #: nextend-facebook-connect/admin/admin.php:600
201
  msgid "Dismiss"
202
  msgstr "Eltüntet"
203
 
204
+ #: nextend-facebook-connect/admin/admin.php:606
205
  #, php-format
206
  msgid ""
207
  "%1$s detected that %2$s installed on your site. You must set \"<b>Page for "
209
  "work properly."
210
  msgstr ""
211
 
212
+ #: nextend-facebook-connect/admin/admin.php:607
213
  msgid "Fix now"
214
  msgstr "Javítás most"
215
 
216
+ #: nextend-facebook-connect/admin/admin.php:631
217
  msgid "Activate your Pro Addon"
218
  msgstr "Pro Addon aktiválása"
219
 
220
+ #: nextend-facebook-connect/admin/admin.php:632
221
  #, fuzzy
222
  #| msgid ""
223
  #| "To be able to use the Pro features, you need to activate Nextend Social "
232
  "Addon-t. Ezt megteheted az Activate gombra való kattintással és a társított "
233
  "vásárlás kiválasztásával."
234
 
235
+ #: nextend-facebook-connect/admin/admin.php:637
236
+ #: nextend-social-login-pro/nextend-social-login-pro.php:110
237
  msgid "Activate"
238
  msgstr "Aktiválás"
239
 
240
+ #: nextend-facebook-connect/admin/admin.php:735
241
  msgid "License key"
242
  msgstr "Licensz kulcs"
243
 
244
+ #: nextend-facebook-connect/admin/admin.php:758
245
  msgid "OAuth proxy page"
246
  msgstr "OAuth proxy page"
247
 
248
+ #: nextend-facebook-connect/admin/admin.php:761
249
  msgid "Register flow page"
250
  msgstr "Register flow page"
251
 
254
  msgid "You have logged in successfully."
255
  msgstr "Sikeresen bejelentkeztél"
256
 
257
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:80
258
  msgid "Login label"
259
  msgstr "Bejelentkezés felirat"
260
 
261
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:85
262
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:101
263
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:114
264
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:125
265
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:154
266
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:184
267
  #: nextend-facebook-connect/admin/templates/settings/privacy.php:53
268
  msgid "Reset to default"
269
  msgstr "Alapbeállítás visszaállítása"
270
 
271
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:95
272
+ #, fuzzy
273
+ #| msgid "Login layout"
274
+ msgid "Register label"
275
+ msgstr "Login elrendezése"
276
+
277
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:108
278
  msgid "Link label"
279
  msgstr "Profil összekapcsolás felirat"
280
 
281
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:120
282
  msgid "Unlink label"
283
  msgstr "Profile szétkapcsolás felirat"
284
 
285
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:131
286
  msgid "Default button"
287
  msgstr "Alap gomb"
288
 
289
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:147
290
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:177
291
  msgid "Use custom button"
292
  msgstr "Egyedi gomb használata"
293
 
294
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:154
295
  #, php-format
296
  msgid "Use the %s in your custom button's code to make the label show up."
297
  msgstr "Használd a %s azonosítót, hogy megfelenjen a gomb felirat."
298
 
299
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:162
300
  msgid "Icon button"
301
  msgstr "Ikon gomb"
302
 
303
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:193
304
  #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:140
305
  #: nextend-facebook-connect/admin/templates-provider/sync-data.php:104
306
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:170
313
  #: nextend-facebook-connect/admin/templates/settings/privacy.php:109
314
  #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:186
315
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:167
316
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:341
317
+ #: nextend-facebook-connect/providers/facebook/admin/settings.php:67
318
  #: nextend-facebook-connect/providers/google/admin/settings.php:62
319
  #: nextend-facebook-connect/providers/twitter/admin/settings.php:48
320
  #: nextend-social-login-pro/providers/amazon/admin/settings.php:47
439
  #: nextend-facebook-connect/admin/templates/settings/general.php:213
440
  #: nextend-facebook-connect/admin/templates/settings/general.php:228
441
  #: nextend-facebook-connect/admin/templates/settings/general.php:246
442
+ #: nextend-facebook-connect/admin/templates/settings/general.php:261
443
+ #: nextend-facebook-connect/includes/provider-admin.php:218
444
  msgid "Disabled"
445
  msgstr "Kikapcsolva"
446
 
760
  #: nextend-facebook-connect/admin/templates/settings/general.php:216
761
  #: nextend-facebook-connect/admin/templates/settings/general.php:231
762
  #: nextend-facebook-connect/admin/templates/settings/general.php:249
763
+ #: nextend-facebook-connect/admin/templates/settings/general.php:264
764
+ #: nextend-facebook-connect/includes/provider-admin.php:221
765
  #: nextend-facebook-connect/providers/google/admin/settings.php:53
766
  #: nextend-social-login-pro/providers/paypal/admin/settings.php:51
767
  msgid "Enabled"
772
  msgstr "Upgradelés most"
773
 
774
  #: nextend-facebook-connect/admin/templates/providers.php:77
775
+ #: nextend-facebook-connect/includes/provider-admin.php:205
776
  msgid "Verify Settings"
777
  msgstr "Beállítások hitelesítése"
778
 
779
  #: nextend-facebook-connect/admin/templates/providers.php:85
780
+ #: nextend-facebook-connect/includes/provider-admin.php:250
781
  msgid "Enable"
782
  msgstr "Bekapcsolás"
783
 
784
  #: nextend-facebook-connect/admin/templates/providers.php:97
785
+ #: nextend-facebook-connect/includes/provider-admin.php:258
786
  msgid "Disable"
787
  msgstr "Kikapcsolás"
788
 
1332
  msgid "Allow registration with Social login."
1333
  msgstr ""
1334
 
1335
+ #: nextend-facebook-connect/admin/templates/settings/general.php:256
1336
+ #, fuzzy
1337
+ #| msgid "Page for register flow"
1338
+ msgid "Custom label for register buttons"
1339
+ msgstr "Page for register flow"
1340
+
1341
+ #: nextend-facebook-connect/admin/templates/settings/general.php:266
1342
+ #, php-format
1343
+ msgid ""
1344
+ "Set a custom label for the social buttons in registration forms and for "
1345
+ "shortcodes with %1$s parameter set to %2$s.<br>The register specific labels "
1346
+ "can be modified at the Buttons tab of each provider."
1347
+ msgstr ""
1348
+
1349
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:29
1350
  #: nextend-facebook-connect/admin/templates/settings/memberpress.php:33
1351
  #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:33
1446
  msgstr "Összekapcsoló gombok a profil részletes beállításai után"
1447
 
1448
  #: nextend-facebook-connect/admin/templates/settings/privacy.php:6
1449
+ #: nextend-facebook-connect/nextend-social-login.php:148
1450
  msgid ""
1451
  "By clicking Register, you accept our <a href=\"#privacy_policy_url\" target="
1452
  "\"_blank\">Privacy Policy</a>"
1474
  msgstr ""
1475
 
1476
  #: nextend-facebook-connect/admin/templates/settings/privacy.php:91
1477
+ #: nextend-facebook-connect/includes/avatar.php:49
1478
  msgid "Avatar"
1479
  msgstr ""
1480
 
1481
  #: nextend-facebook-connect/admin/templates/settings/privacy.php:102
1482
+ #: nextend-facebook-connect/includes/provider.php:1100
1483
  msgid "Access token"
1484
  msgstr ""
1485
 
1565
  msgid "Link buttons on"
1566
  msgstr "Ikon gomb"
1567
 
1568
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:323
1569
+ #, fuzzy
1570
+ #| msgid "Ask E-mail on registration"
1571
+ msgid "Email template for registration"
1572
+ msgstr "E-mail kérésére regisztrációkor"
1573
+
1574
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:328
1575
+ #, fuzzy
1576
+ #| msgid "WordPress default"
1577
+ msgid "WordPress default notification"
1578
+ msgstr "WordPress alapértelmezett"
1579
+
1580
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:331
1581
+ #, fuzzy
1582
+ #| msgid "Registration notification sent to"
1583
+ msgid "WooCommerce registration notification"
1584
+ msgstr "Regisztrációról értesítést kap"
1585
+
1586
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:333
1587
+ #, php-format
1588
+ msgid ""
1589
+ "Defines whether the registration with %1$s will send the same registration "
1590
+ "notification that %2$s does, instead of the %3$s default one."
1591
+ msgstr ""
1592
+
1593
  #: nextend-facebook-connect/admin/templates/test-connection.php:42
1594
  #, fuzzy, php-format
1595
  #| msgid "Authentication successful"
1607
  "between your server and the provider."
1608
  msgstr ""
1609
 
1610
+ #: nextend-facebook-connect/includes/avatar.php:50
1611
  msgid "Manage Avatar"
1612
  msgstr ""
1613
 
1614
+ #: nextend-facebook-connect/includes/avatar.php:51
1615
  #, php-format
1616
  msgid "Avatar <span class=\"count\">(%s)</span>"
1617
  msgid_plural "Avatar <span class=\"count\">(%s)</span>"
1618
  msgstr[0] ""
1619
  msgstr[1] ""
1620
 
 
1621
  #: nextend-facebook-connect/includes/compat-wp-login.php:63
1622
  #, php-format
1623
  msgid "%1$s &lsaquo; %2$s &#8212; WordPress"
1631
  msgid "Powered by WordPress"
1632
  msgstr ""
1633
 
 
1634
  #: nextend-facebook-connect/includes/compat-wp-login.php:284
1635
  #, php-format
1636
  msgctxt "site"
1637
  msgid "&larr; Back to %s"
1638
  msgstr ""
1639
 
1640
+ #: nextend-facebook-connect/includes/provider-admin.php:199
1641
  msgid "Your configuration needs to be verified"
1642
  msgstr ""
1643
 
1644
+ #: nextend-facebook-connect/includes/provider-admin.php:200
1645
  msgid ""
1646
  "Before you can start letting your users register with your app it needs to "
1647
  "be tested. This test makes sure that no users will have troubles with the "
1655
  "felugró ablakban, nézd meg az appodat vagy a kimásolt hitelesítő adatokat. "
1656
  "Ha nincs hibaüzenet, az azt jelenti, hogy minden rendben van."
1657
 
1658
+ #: nextend-facebook-connect/includes/provider-admin.php:206
1659
  msgid "Please save your changes to verify settings."
1660
  msgstr ""
1661
 
1662
+ #: nextend-facebook-connect/includes/provider-admin.php:214
1663
  msgid "Works Fine"
1664
  msgstr "Megfelelően Működik"
1665
 
1666
+ #: nextend-facebook-connect/includes/provider-admin.php:228
1667
  #, php-format
1668
  msgid ""
1669
  "This provider is currently disabled, which means that users can’t register "
1672
  "Ez a provider jelenleg nincs bekapcsolva, ami azt jelenti, hogy a "
1673
  "felhasználók nem tudnak regisztrálni vagy belépni a %s fiókjukkal."
1674
 
1675
+ #: nextend-facebook-connect/includes/provider-admin.php:231
1676
  #, php-format
1677
  msgid ""
1678
  "This provider works fine, but you can test it again. If you don’t want to "
1682
  "továbbiakban nem akarod, hogy regisztráljanak vagy belépjenek a %s "
1683
  "fiókjukkal kikapcsolhatod a providertt."
1684
 
1685
+ #: nextend-facebook-connect/includes/provider-admin.php:234
1686
  #, php-format
1687
  msgid ""
1688
  "This provider is currently enabled, which means that users can register or "
1691
  "Ez a provider jelenleg be vankapcsolva, ami azt jelenti, hogy a felhasználók "
1692
  "regisztrálhatnak és beléphetnek a %s fiókjukkal."
1693
 
1694
+ #: nextend-facebook-connect/includes/provider-admin.php:242
1695
  msgid "Verify Settings Again"
1696
  msgstr ""
1697
 
1698
+ #: nextend-facebook-connect/includes/provider-admin.php:243
1699
  msgid "Please save your changes before verifying settings."
1700
  msgstr ""
1701
 
1702
+ #: nextend-facebook-connect/includes/provider.php:358
1703
+ #: nextend-facebook-connect/includes/provider.php:717
1704
+ #: nextend-facebook-connect/includes/provider.php:725
1705
  msgid "Authentication successful"
1706
  msgstr "Hitelesítés sikeres"
1707
 
1708
+ #: nextend-facebook-connect/includes/provider.php:654
1709
+ #: nextend-facebook-connect/includes/user.php:168
1710
+ #: nextend-facebook-connect/includes/user.php:597
1711
  msgid "Authentication error"
1712
  msgstr "Hitelesítési hiba"
1713
 
1714
+ #: nextend-facebook-connect/includes/provider.php:669
1715
  msgid "Unlink successful."
1716
  msgstr "Szétkapcsolás sikeres"
1717
 
1718
+ #: nextend-facebook-connect/includes/provider.php:671
1719
  msgid "Unlink is not allowed!"
1720
  msgstr ""
1721
 
1722
+ #: nextend-facebook-connect/includes/provider.php:886
1723
+ #: nextend-facebook-connect/includes/provider.php:893
1724
  msgid "The test was successful"
1725
  msgstr "A teszt sikeres volt"
1726
 
1727
+ #: nextend-facebook-connect/includes/provider.php:939
1728
  msgid "Authentication failed"
1729
  msgstr "Hitelesítés sikertelen"
1730
 
1731
+ #: nextend-facebook-connect/includes/provider.php:1092
1732
  msgid "Identifier"
1733
  msgstr ""
1734
 
1735
+ #: nextend-facebook-connect/includes/provider.php:1108
1736
  msgid "Profile picture"
1737
  msgstr ""
1738
 
1749
  #, php-format
1750
  msgid ""
1751
  "You have already linked a(n) %s account. Please unlink the current and then "
1752
+ "you can link another %s account."
1753
  msgstr ""
1754
 
1755
  #: nextend-facebook-connect/includes/user.php:82
1756
+ #, fuzzy, php-format
1757
+ #| msgid ""
1758
+ #| "This %s account is already linked with other account. Linking process "
1759
+ #| "failed!"
1760
+ msgid "This %s account is already linked to another user."
1761
  msgstr ""
1762
+ "Az %s fiók már haszálva van egy másik közösségi fiókkal. Az összekapcsolási "
1763
+ "folyamat sikertelen!"
1764
 
1765
+ #: nextend-facebook-connect/includes/user.php:128
1766
  msgid "User registration is currently not allowed."
1767
  msgstr ""
1768
 
1770
  msgid "Register For This Site!"
1771
  msgstr ""
1772
 
1773
+ #: nextend-facebook-connect/nextend-facebook-connect.php:37
 
1774
  #, php-format
1775
  msgid "%1$s requires PHP version %2$s+, plugin is currently NOT ACTIVE."
1776
  msgstr ""
1777
 
1778
+ #: nextend-facebook-connect/nextend-facebook-connect.php:44
 
1779
  #, php-format
1780
  msgid ""
1781
  "%1$s requires WordPress version %2$s+. Because you are using an earlier "
1793
  msgid "Update now!"
1794
  msgstr ""
1795
 
1796
+ #: nextend-facebook-connect/nextend-social-login.php:762
1797
+ #: nextend-facebook-connect/nextend-social-login.php:1140
1798
  msgid "Social Login"
1799
  msgstr "Közösségi belépés"
1800
 
1801
+ #: nextend-facebook-connect/nextend-social-login.php:1121
1802
  msgid "Social Accounts"
1803
  msgstr ""
1804
 
1866
  msgstr "A bal oldali menüben kattints a \"Facebook Login\" feliratra"
1867
 
1868
  #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:12
1869
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:35
1870
  #, fuzzy, php-format
1871
  #| msgid ""
1872
  #| "Add the following URL to the \"Valid OAuth redirect URIs\" field: <b>%s</"
1961
 
1962
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:26
1963
  #, fuzzy
1964
+ #| msgid "Click the \"Create App\" button."
1965
+ msgid ""
1966
+ "Click on the \"<b>Create App</b>\" button and in the Popup choose the "
1967
+ "\"<b>Build Connected Experiences</b>\" option!"
1968
+ msgstr "Kattints a \"Create App\" gombra"
1969
 
1970
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:27
1971
  msgid ""
1977
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:28
1978
  #, php-format
1979
  msgid ""
1980
+ "Fill \"<b>App Display Name</b>\", \"<b>App Contact Email</b>\". The "
1981
+ "specified \"App Display Name\" will appear on your %s!"
1982
  msgstr ""
1983
 
1984
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:29
1985
+ msgid ""
1986
+ "<b>Optional</b>: choose a \"<b>Business Manager Account</b>\" in the popup, "
1987
+ "if you have any."
1988
+ msgstr ""
1989
+
1990
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:30
1991
  #, fuzzy
1992
  #| msgid "Click the \"Create App\" button."
1993
  msgid ""
1994
  "Click the \"<b>Create App ID</b>\" button and complete the Security Check."
1995
  msgstr "Kattints a \"Create App\" gombra"
1996
 
1997
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:31
1998
  #, php-format
1999
  msgid ""
2000
  "At the \"<b>Add a Product</b>\" panel find \"<b>%1$s</b>\" and click "
2001
  "\"<b>Set Up</b>\""
2002
  msgstr ""
2003
 
2004
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:32
2005
  #, fuzzy, php-format
2006
  #| msgid "Add the following URL to the \"Redirect URLs\" field <b>%s</b> "
2007
  msgid ""
2009
  "field: <b>%s</b>"
2010
  msgstr "Tedd a következő linket az \"Redirect URLs:\" mezőbe: <b>%s</b>"
2011
 
2012
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:33
2013
  #, fuzzy
2014
  #| msgid "Click on \"Save Changes\""
2015
  msgid "Press “<b>Save</b>”"
2016
  msgstr "Kattints a \"Save Changes\"-re"
2017
 
2018
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:34
2019
  #, php-format
2020
  msgid ""
2021
  "Click on the “<b>%1$s</b>” option what you find on the left side, under “<b>"
2022
  "%2$s</b> - <b>%3$s</b>”"
2023
  msgstr ""
2024
 
2025
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:36
2026
  #, fuzzy
2027
  #| msgid "Click on \"Save Changes\""
2028
  msgid "Click on “<b>Save Changes</b>”"
2029
  msgstr "Kattints a \"Save Changes\"-re"
2030
 
2031
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:37
2032
  #, php-format
2033
  msgid ""
2034
  "On the top left side, click on the “<b>%1$s</b>” menu point, then click “<b>"
2035
  "%2$s</b>”"
2036
  msgstr ""
2037
 
2038
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:38
2039
  #, fuzzy, php-format
2040
  #| msgid "Enter your domain name to the App Domains"
2041
  msgid ""
2043
  "b>"
2044
  msgstr "Írd be a domain neved az \"App Domains\" mezőbe"
2045
 
2046
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:39
2047
  #, fuzzy
2048
  #| msgid ""
2049
  #| "Fill up the \"Privacy Policy URL\". Provide a publicly available and "
2058
  "tartalmazza az adatvédelmi irányelveket, amik elmagyarázzák, milyen "
2059
  "információkat gyűjtesz és mihez kezdesz velük."
2060
 
2061
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:40
2062
  msgid ""
2063
+ "At \"<b>User Data Deletion</b>\", choose the \"<b>Data Deletion Instructions "
2064
+ "URL</b>\" option, and enter the <i>URL of your page</i>* with the "
2065
+ "instructions on how users can delete their accounts on your site."
2066
+ msgstr ""
2067
+
2068
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:42
2069
+ msgid ""
2070
+ "To comply with GDPR, you should already offer possibility to delete accounts "
2071
+ "on your site, either by the user or by the admin:"
2072
+ msgstr ""
2073
+
2074
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:45
2075
+ msgid ""
2076
+ "<u>If each user has an option to delete the account</u>: the URL should "
2077
+ "point to a guide showing the way users can delete their accounts."
2078
+ msgstr ""
2079
+
2080
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:46
2081
+ msgid ""
2082
+ "<u>If the accounts are deleted by an admin</u>: then you should have a "
2083
+ "section - usually in the Privacy Policy - with the contact details, where "
2084
+ "users can send their account erasure requests. In this case the URL should "
2085
+ "point to this section of the document."
2086
+ msgstr ""
2087
+
2088
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:51
2089
+ msgid ""
2090
+ "Select a “<b>Category</b>”, an “<b>App Icon</b>” and pick the “<b>App "
2091
+ "Purpose</b>” option that describes your App the best, then press \"<b>Save "
2092
  "Changes</b>\""
2093
  msgstr ""
2094
 
2095
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:52
2096
  #, fuzzy
2097
  #| msgid ""
2098
  #| "Your application is currently private ( Status: In Development ), which "
2107
  "vele. A felső menüben kattintsz az \"OFF\" választó gombra és válassz egy "
2108
  "kategóriát az Appodnak."
2109
 
2110
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:53
2111
  #, fuzzy
2112
  #| msgid ""
2113
  #| "Here you can see your \"APP ID\" and you can see your \"App secret\" if "
2121
  "Itt találod az \"App ID\"-t és az \"App Secret\"-et, ha a \"Show\" gombra "
2122
  "kattintasz. Ezekre lesz szükséged a plugin beállításainál."
2123
 
2124
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:56
2125
+ #, php-format
2126
+ msgid ""
2127
+ "<b>WARNING:</b> <u>Don't replace your Facebook App with another!</u> Since "
2128
+ "WordPress users with linked Facebook accounts can only login using the %1$s "
2129
+ "App, that was originally used at the time, when the WordPress account was "
2130
+ "linked with a %1$s Account.<br>\n"
2131
+ "If you would like to know the reason of this, or you really need to replace "
2132
+ "the Facebook App, then please check our %2$sdocumentation%3$s."
2133
+ msgstr ""
2134
+
2135
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:60
2136
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:40
2137
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:37
2138
  #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:39
2139
  #: nextend-social-login-pro/providers/apple/admin/getting-started.php:122
2140
  #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:30
2206
  msgid "App Secret"
2207
  msgstr "App Secret"
2208
 
2209
+ #: nextend-facebook-connect/providers/facebook/admin/settings.php:59
2210
+ #, php-format
2211
+ msgid ""
2212
+ "By replacing your existing %1$s App, users with linked %1$s accounts will no "
2213
+ "longer be able to login with %1$s."
2214
+ msgstr ""
2215
+
2216
+ #: nextend-facebook-connect/providers/facebook/admin/settings.php:61
2217
+ msgid "Find out why?"
2218
+ msgstr ""
2219
 
2220
  #: nextend-facebook-connect/providers/facebook/facebook.php:85
2221
+ msgid "Continue with <b>Facebook</b>"
2222
+ msgstr "Folytatás a <b>Facebook</b>-kal"
2223
+
2224
+ #: nextend-facebook-connect/providers/facebook/facebook.php:86
2225
+ msgid "Sign up with <b>Facebook</b>"
2226
+ msgstr "Regisztrálás a <b>Facebook</b>-kal"
2227
+
2228
+ #: nextend-facebook-connect/providers/facebook/facebook.php:87
2229
  msgid "Link account with <b>Facebook</b>"
2230
  msgstr "Fiók összekapcsolása a <b>Facebook</b>-kal"
2231
 
2232
+ #: nextend-facebook-connect/providers/facebook/facebook.php:88
2233
  msgid "Unlink account from <b>Facebook</b>"
2234
+ msgstr "Szétkapcsolás <b>Facebook</b>-tól"
2235
+
2236
+ #: nextend-facebook-connect/providers/facebook/facebook.php:188
2237
+ #: nextend-facebook-connect/providers/google/google.php:168
2238
+ #: nextend-facebook-connect/providers/twitter/twitter.php:97
2239
+ #: nextend-social-login-pro/providers/amazon/amazon.php:67
2240
+ #: nextend-social-login-pro/providers/apple/apple.php:131
2241
+ #: nextend-social-login-pro/providers/apple/apple.php:138
2242
+ #: nextend-social-login-pro/providers/disqus/disqus.php:114
2243
+ #: nextend-social-login-pro/providers/github/github.php:152
2244
+ #: nextend-social-login-pro/providers/linkedin/linkedin.php:65
2245
+ #: nextend-social-login-pro/providers/paypal/paypal.php:92
2246
+ #: nextend-social-login-pro/providers/vk/vk.php:63
2247
+ #: nextend-social-login-pro/providers/wordpress/wordpress.php:101
2248
+ #: nextend-social-login-pro/providers/yahoo/yahoo.php:92
2249
  #, php-format
2250
  msgid ""
2251
  "The %1$s entered did not appear to be a valid. Please enter a valid %2$s."
2253
  "A megadott %1$s nem tűnik helyesnek. Győződj meg róla, hogy a beírt %2$s "
2254
  "helyes."
2255
 
2256
+ #: nextend-facebook-connect/providers/facebook/facebook.php:309
2257
+ #: nextend-social-login-pro/providers/paypal/paypal.php:172
2258
  #, php-format
2259
  msgid "Required scope: %1$s"
2260
  msgstr ""
2449
  "Disable, when you don't want to see the account select prompt on each login."
2450
  msgstr ""
2451
 
2452
+ #: nextend-facebook-connect/providers/google/google.php:99
2453
  msgid "Continue with <b>Google</b>"
2454
+ msgstr "Folytatás a <b>Google</b>-lel"
2455
 
2456
+ #: nextend-facebook-connect/providers/google/google.php:100
2457
+ msgid "Sign up with <b>Google</b>"
2458
+ msgstr "Regisztrálás a <b>Google</b>-lel"
2459
+
2460
+ #: nextend-facebook-connect/providers/google/google.php:101
2461
  msgid "Link account with <b>Google</b>"
2462
  msgstr "Fiók összekapcsolása a <b>Google</b>-lel"
2463
 
2464
+ #: nextend-facebook-connect/providers/google/google.php:102
2465
  msgid "Unlink account from <b>Google</b>"
2466
+ msgstr "Szétkapcsolás <b>Google</b>-től"
2467
 
2468
+ #: nextend-facebook-connect/providers/google/google.php:295
2469
  #, php-format
2470
  msgid "Required API: %1$s"
2471
  msgstr "Szükséges API: %1$s"
2473
  #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:10
2474
  #, fuzzy
2475
  #| msgid "Find your App and click on the Details button"
2476
+ msgid ""
2477
+ "Find your App and click on the <b>App settings</b> icon. (The one that looks "
2478
+ "like a gear.)"
2479
  msgstr "Keresd meg az Appod és kattints a Details gombra."
2480
 
2481
  #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:11
2482
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:27
2483
+ #, fuzzy
2484
+ #| msgid "Click the \"Create App\" button."
2485
+ msgid "Click on the <b>Edit</b> button at <b>Authentication settings</b>."
2486
+ msgstr "Kattints a \"Create App\" gombra"
2487
 
2488
  #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:12
 
2489
  #, fuzzy, php-format
2490
  #| msgid "Add the following URL to the \"Callback URLs\" field: <b>%s</b>"
2491
  msgid "Add the following URL to the \"<b>Callback URLs</b>\" field: <b>%s</b>"
2492
  msgstr "Tedd a következő linket az \"Callback URL\" mezőbe: <b>%s</b>"
2493
 
2494
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:17
2495
+ #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:25
2496
+ #: nextend-social-login-pro/providers/apple/admin/getting-started.php:38
2497
+ #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:9
2498
+ #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:16
2499
+ #: nextend-social-login-pro/providers/github/admin/getting-started.php:16
2500
+ #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:9
2501
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:17
2502
+ #: nextend-social-login-pro/providers/vk/admin/getting-started.php:16
2503
+ #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:9
2504
+ #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:16
2505
+ #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:17
2506
  #, php-format
2507
+ msgid "Log in with your %s credentials if you are not logged in."
2508
  msgstr "Lépj be a %s fiókoddal ha még nem vagy belépve."
2509
 
2510
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:18
2521
  msgstr ""
2522
 
2523
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:20
2524
+ #, fuzzy
2525
+ #| msgid "Click on \"Save\""
2526
+ msgid "Click on <b>+ New Project</b>!"
2527
+ msgstr "Kattints a \"Save\" gombra"
2528
+
2529
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:21
2530
  msgid ""
2531
+ "Name your project, and go through the basic setup. You’ll need to select "
2532
+ "your use case and give a description."
2533
  msgstr ""
 
 
2534
 
2535
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:22
2536
+ msgid "Create a new app, or select an existing one, then click <b>Complete</b>"
2537
  msgstr ""
2538
 
2539
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:23
2540
  msgid ""
2541
+ "You’ll find your API key and secret on this page. Copy and paste the <b>API "
2542
+ "key</b> and the <b>API secret key</b> to the corresponding fields at Nextend "
2543
+ "Social Login and press <b>Save Changes</b>."
2544
  msgstr ""
2545
 
2546
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:24
2547
+ #, fuzzy, php-format
2548
+ #| msgid "Click on the \"Save Changes\" button."
2549
+ msgid "Click on the <b>App Settings</b> button at %s."
2550
+ msgstr "Kattints a \"Save Changes\" gombra."
2551
 
2552
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:25
2553
+ msgid "Find the Apps section, and the app you created a few steps ago."
2554
+ msgstr ""
 
 
2555
 
2556
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:26
2557
+ msgid "Click on the App settings icon. (The one that looks like a gear.)"
2558
  msgstr ""
2559
 
2560
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:28
2561
+ msgid "Switch on the <b>Enable 3-legged OAuth</b> option."
2562
+ msgstr ""
2563
+
2564
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:29
2565
+ #, fuzzy, php-format
2566
+ #| msgid "Add the following URL to the \"Callback URLs\" field: <b>%s</b>"
2567
+ msgid "Add the following URL to the <b>Callback URLs</b> field: <b>%s</b>"
2568
+ msgstr "Tedd a következő linket az \"Callback URL\" mezőbe: <b>%s</b>"
2569
+
2570
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:30
2571
+ #, fuzzy, php-format
2572
+ #| msgid "Add the following URL to the \"Live Return URL\" field <b>%s</b> "
2573
+ msgid "Enter your site's URL to the <b>Website URL</b> field: <b>%s</b>"
2574
+ msgstr "Tedd a következő linket az \"Live Return URL\" mezőbe: <b>%s</b>"
2575
+
2576
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:31
2577
  msgid ""
2578
+ "If you want to get the email address as well, then don’t forget to enable "
2579
+ "the <b>Request email address from users</b> option. In this case you also "
2580
+ "need to fill the <b>Terms of service</b> and the <b>Privacy policy</b> "
2581
+ "fields with the corresponding URLs!"
2582
  msgstr ""
2583
 
2584
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:32
2585
  #, fuzzy
2586
+ #| msgid "Click on \"Save\""
2587
+ msgid "Click on <b>Save</b>."
2588
+ msgstr "Kattints a \"Save\" gombra"
2589
+
2590
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:33
2591
+ #, php-format
2592
+ msgid "Go back to Nextend Social Login and <b>Verify</b> your %s provider."
2593
  msgstr ""
 
 
2594
 
2595
  #: nextend-facebook-connect/providers/twitter/admin/settings.php:27
2596
  #: nextend-social-login-pro/providers/disqus/admin/settings.php:26
2609
  msgid "Original"
2610
  msgstr ""
2611
 
2612
+ #: nextend-facebook-connect/providers/twitter/twitter.php:70
2613
  msgid "Continue with <b>Twitter</b>"
2614
+ msgstr "Folytatás a <b>Twitter</b>-rel"
2615
 
2616
+ #: nextend-facebook-connect/providers/twitter/twitter.php:71
2617
+ msgid "Sign up with <b>Twitter</b>"
2618
+ msgstr "Regisztrálás a <b>Twitter</b>-rel"
2619
+
2620
+ #: nextend-facebook-connect/providers/twitter/twitter.php:72
2621
  msgid "Link account with <b>Twitter</b>"
2622
  msgstr "Fiók összekapcsolása a <b>Twitter</b>-rel"
2623
 
2624
+ #: nextend-facebook-connect/providers/twitter/twitter.php:73
2625
  msgid "Unlink account from <b>Twitter</b>"
2626
+ msgstr "Szétkapcsolás <b>Twitter</b>-től"
2627
 
2628
  #: nextend-facebook-connect/widget.php:10
2629
  #, php-format
2741
  "with %1$s."
2742
  msgstr ""
2743
 
2744
+ #: nextend-social-login-pro/nextend-social-login-pro.php:104
2745
  #, php-format
2746
  msgid "Please install and activate %1$s to use the %2$s"
2747
  msgstr ""
2748
 
2749
+ #: nextend-social-login-pro/nextend-social-login-pro.php:118
2750
  msgid "Network Activate"
2751
  msgstr ""
2752
 
2753
+ #: nextend-social-login-pro/nextend-social-login-pro.php:130
2754
  msgid "Install now!"
2755
  msgstr ""
2756
 
2757
+ #: nextend-social-login-pro/nextend-social-login-pro.php:821
2758
  #, fuzzy
2759
  #| msgid "Providers"
2760
  msgid "Social Providers"
2767
  "latest %2$s version!"
2768
  msgstr ""
2769
 
2770
+ #: nextend-social-login-pro/provider-extensions/google.php:187
2771
  #, php-format
2772
  msgid ""
2773
  "Most of these information can only be retrieved, when the field is marked as "
2821
  "\"Beállítások\" fülre és állítsd be a \"%2$s\"-t és \"%3$s\"-t a %1$s Appod "
2822
  "alapján."
2823
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2824
  #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:27
2825
  #, fuzzy
2826
  #| msgid ""
2875
  "Itt találod a \"Client ID\"-t és a \"Client Secret\"-et az oldal közepén, a "
2876
  "Web Settings tab alatt."
2877
 
2878
+ #: nextend-social-login-pro/providers/amazon/amazon.php:40
2879
  msgid "Continue with <b>Amazon</b>"
2880
  msgstr "Folytatás az <b>Amazon</b>-nal"
2881
 
2882
+ #: nextend-social-login-pro/providers/amazon/amazon.php:41
2883
+ msgid "Sign up with <b>Amazon</b>"
2884
+ msgstr "Regisztrálás az <b>Amazon</b>-nal"
2885
+
2886
+ #: nextend-social-login-pro/providers/amazon/amazon.php:42
2887
  msgid "Link account with <b>Amazon</b>"
2888
  msgstr "Fiók összekapcsolása az <b>Amazon</b>-nal"
2889
 
2890
+ #: nextend-social-login-pro/providers/amazon/amazon.php:43
2891
  msgid "Unlink account from <b>Amazon</b>"
2892
  msgstr "Szétkapcsolás <b>Amazon</b>-tól"
2893
 
3214
  msgid "Generate Token"
3215
  msgstr ""
3216
 
3217
+ #: nextend-social-login-pro/providers/apple/apple.php:83
 
 
3218
  msgid "Continue with <b>Apple</b>"
3219
+ msgstr "Folytatás az <b>Apple</b>-lel"
3220
 
3221
+ #: nextend-social-login-pro/providers/apple/apple.php:84
3222
+ msgid "Sign up with <b>Apple</b>"
3223
+ msgstr "Regisztrálás az <b>Apple</b>-lel"
3224
+
3225
+ #: nextend-social-login-pro/providers/apple/apple.php:85
3226
  msgid "Link account with <b>Apple</b>"
3227
+ msgstr "Fiók összekapcsolása az <b>Apple</b>-lel"
3228
 
3229
+ #: nextend-social-login-pro/providers/apple/apple.php:86
 
 
3230
  msgid "Unlink account from <b>Apple</b>"
3231
+ msgstr "Szétkapcsolás <b>Apple</b>-től"
3232
 
3233
+ #: nextend-social-login-pro/providers/apple/apple.php:180
3234
  #, php-format
3235
  msgid "An error occurred when storing of the expiration timestamp : %1$s"
3236
  msgstr ""
3237
 
3238
+ #: nextend-social-login-pro/providers/apple/apple.php:184
3239
+ #: nextend-social-login-pro/providers/apple/apple.php:282
3240
+ #: nextend-social-login-pro/providers/apple/apple.php:297
3241
+ #: nextend-social-login-pro/providers/apple/apple.php:341
3242
  #, php-format
3243
  msgid "Token generation failed: %1$s"
3244
  msgstr ""
3245
 
3246
+ #: nextend-social-login-pro/providers/apple/apple.php:184
3247
  msgid "Please check your credentials!"
3248
  msgstr ""
3249
 
3250
+ #: nextend-social-login-pro/providers/apple/apple.php:282
3251
  msgid "Private key format is not valid!"
3252
  msgstr ""
3253
 
3254
+ #: nextend-social-login-pro/providers/apple/apple.php:308
3255
  #, php-format
3256
  msgid ""
3257
  "%s detected that your Apple credentials have expired. Please delete the "
3258
  "current credentials and generate new one!"
3259
  msgstr ""
3260
 
3261
+ #: nextend-social-login-pro/providers/apple/apple.php:310
3262
  msgid "Apple Credentials"
3263
  msgstr ""
3264
 
3374
  msgid "API Secret"
3375
  msgstr "API Secret"
3376
 
3377
+ #: nextend-social-login-pro/providers/disqus/disqus.php:87
3378
  msgid "Continue with <b>Disqus</b>"
3379
  msgstr "Folytatás a <b>Disqus</b>-szal"
3380
 
3381
+ #: nextend-social-login-pro/providers/disqus/disqus.php:88
3382
+ msgid "Sign up with <b>Disqus</b>"
3383
+ msgstr "Regisztrálás a <b>Disqus</b>-szal"
3384
+
3385
+ #: nextend-social-login-pro/providers/disqus/disqus.php:89
3386
  msgid "Link account with <b>Disqus</b>"
3387
  msgstr "Fiók összekapcsolása a <b>Disqus</b>-szal"
3388
 
3389
+ #: nextend-social-login-pro/providers/disqus/disqus.php:90
3390
  msgid "Unlink account from <b>Disqus</b>"
3391
  msgstr "Szétkapcsolás <b>Disqus</b>-tól"
3392
 
3478
  "public email address set at the %1$s profile page%2$s!"
3479
  msgstr ""
3480
 
3481
+ #: nextend-social-login-pro/providers/github/github.php:125
 
 
3482
  msgid "Continue with <b>GitHub</b>"
3483
+ msgstr "Folytatás a <b>GitHub</b>-bal"
3484
 
3485
+ #: nextend-social-login-pro/providers/github/github.php:126
3486
+ msgid "Sign up with <b>GitHub</b>"
3487
+ msgstr "Regisztrálás a <b>GitHub</b>-bal"
3488
+
3489
+ #: nextend-social-login-pro/providers/github/github.php:127
3490
  msgid "Link account with <b>GitHub</b>"
3491
+ msgstr "Fiók összekapcsolása a <b>GitHub</b>-bal"
3492
 
3493
+ #: nextend-social-login-pro/providers/github/github.php:128
 
 
3494
  msgid "Unlink account from <b>GitHub</b>"
3495
+ msgstr "Szétkapcsolás <b>GitHub</b>-tól"
3496
 
3497
  #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:10
3498
  msgid "Click on your App and go to the \"<b>Auth</b>\" tab."
3588
  "Itt találod a \"Client ID\"-t és a \"Client Secret\"-et az oldal közepén, a "
3589
  "Web Settings tab alatt."
3590
 
3591
+ #: nextend-social-login-pro/providers/linkedin/linkedin.php:38
3592
  msgid "Continue with <b>LinkedIn</b>"
3593
+ msgstr "Folytatás a <b>LinkedIn</b>-nel"
3594
 
3595
+ #: nextend-social-login-pro/providers/linkedin/linkedin.php:39
3596
+ msgid "Sign up with <b>LinkedIn</b>"
3597
+ msgstr "Folytatás a <b>LinkedIn</b>-nel"
3598
+
3599
+ #: nextend-social-login-pro/providers/linkedin/linkedin.php:40
3600
  msgid "Link account with <b>LinkedIn</b>"
3601
  msgstr "Fiók összekapcsolása a <b>LinkedIn</b>-nel"
3602
 
3603
+ #: nextend-social-login-pro/providers/linkedin/linkedin.php:41
3604
  msgid "Unlink account from <b>LinkedIn</b>"
3605
+ msgstr "Szétkapcsolás <b>LinkedIn</b>-től"
3606
 
3607
  #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:10
3608
  #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:18
3705
  msgid "Disable, when you have no rights for email address."
3706
  msgstr ""
3707
 
3708
+ #: nextend-social-login-pro/providers/paypal/paypal.php:65
3709
  msgid "Continue with <b>PayPal</b>"
3710
  msgstr "Folytatás a <b>PayPal</b>-al"
3711
 
3712
+ #: nextend-social-login-pro/providers/paypal/paypal.php:66
3713
+ msgid "Sign up with <b>PayPal</b>"
3714
+ msgstr "Regisztrálás a <b>PayPal</b>-al"
3715
+
3716
+ #: nextend-social-login-pro/providers/paypal/paypal.php:67
3717
  msgid "Link account with <b>PayPal</b>"
3718
  msgstr "Fiók összekapcsolása a <b>PayPal</b>-al"
3719
 
3720
+ #: nextend-social-login-pro/providers/paypal/paypal.php:68
3721
  msgid "Unlink account from <b>PayPal</b>"
3722
  msgstr "Szétkapcsolás <b>PayPal</b>-tól"
3723
 
3823
  msgid "Secure key"
3824
  msgstr ""
3825
 
3826
+ #: nextend-social-login-pro/providers/vk/vk.php:36
3827
  msgid "Continue with <b>VK</b>"
3828
  msgstr "Folytatás a <b>VK</b>-val"
3829
 
3830
+ #: nextend-social-login-pro/providers/vk/vk.php:37
3831
+ msgid "Sign up with <b>VK</b>"
3832
+ msgstr "Regisztrálás a <b>VK</b>-val"
3833
+
3834
+ #: nextend-social-login-pro/providers/vk/vk.php:38
3835
  msgid "Link account with <b>VK</b>"
3836
  msgstr "Fiók összekapcsolása a <b>VK</b>-val"
3837
 
3838
+ #: nextend-social-login-pro/providers/vk/vk.php:39
3839
  msgid "Unlink account from <b>VK</b>"
3840
  msgstr "Szétkapcsolás <b>VK</b>-tól"
3841
 
3909
  "Itt találod az \"Client ID\"-t és az \"Client Secret\"-et. Ezekre lesz "
3910
  "szükséged a plugin beállításainál."
3911
 
3912
+ #: nextend-social-login-pro/providers/wordpress/wordpress.php:74
3913
  msgid "Continue with <b>WordPress.com</b>"
3914
  msgstr "Folytatás a <b>WordPress.com</b>-al"
3915
 
3916
+ #: nextend-social-login-pro/providers/wordpress/wordpress.php:75
3917
+ msgid "Sign up with <b>WordPress.com</b>"
3918
+ msgstr "Regisztrálás a <b>WordPress.com</b>-al"
3919
+
3920
+ #: nextend-social-login-pro/providers/wordpress/wordpress.php:76
3921
  msgid "Link account with <b>WordPress.com</b>"
3922
  msgstr "Fiók összekapcsolása a <b>WordPress.com</b>-al"
3923
 
3924
+ #: nextend-social-login-pro/providers/wordpress/wordpress.php:77
3925
  msgid "Unlink account from <b>WordPress.com</b>"
3926
  msgstr "Szétkapcsolás <b>WordPress.com</b>-tól"
3927
 
3984
  "Itt találod az \"Client ID\"-t és az \"Client Secret\"-et. Ezekre lesz "
3985
  "szükséged a plugin beállításainál."
3986
 
3987
+ #: nextend-social-login-pro/providers/yahoo/yahoo.php:65
 
 
3988
  msgid "Continue with <b>Yahoo</b>"
3989
+ msgstr "Folytatás a <b>Yahoo</b>-val"
3990
 
3991
+ #: nextend-social-login-pro/providers/yahoo/yahoo.php:66
3992
+ msgid "Sign up with <b>Yahoo</b>"
3993
+ msgstr "Regisztrálás a <b>Yahool</b>-val"
3994
+
3995
+ #: nextend-social-login-pro/providers/yahoo/yahoo.php:67
3996
  msgid "Link account with <b>Yahoo</b>"
3997
+ msgstr "Fiók összekapcsolása a <b>Yahoo</b>-val"
3998
 
3999
+ #: nextend-social-login-pro/providers/yahoo/yahoo.php:68
 
 
4000
  msgid "Unlink account from <b>Yahoo</b>"
4001
+ msgstr "Szétkapcsolás <b>Yahoo</b>-tól"
4002
 
4003
+ #: nextend-social-login-pro/providers/yahoo/yahoo.php:188
4004
  #, fuzzy, php-format
4005
  #| msgid "Required API: %1$s"
4006
  msgid "Required permission: %1$s"
4044
  msgid "Social accounts"
4045
  msgstr "Közösségi fiókok"
4046
 
4047
+ #, php-format
4048
+ #~ msgid "Log in with your %s credentials if you are not logged in yet"
4049
+ #~ msgstr "Lépj be a %s fiókoddal ha még nem vagy belépve."
4050
+
4051
+ #, fuzzy, php-format
4052
+ #~| msgid ""
4053
+ #~| "Fill the App name, Application description fields. Then enter your "
4054
+ #~| "site's URL to the Website URL field: <b>%s</b>"
4055
+ #~ msgid ""
4056
+ #~ "Fill the <b>App name</b>, <b>Application description</b> fields. Then "
4057
+ #~ "enter your site's URL to the <b>Website URL</b> field: <b>%s</b>"
4058
+ #~ msgstr ""
4059
+ #~ "Töltsd ki az App name és Application description mezőjet. Aztán írd be az "
4060
+ #~ "oldalad címét a Website URL mezőbe: <b>%s</b>"
4061
+
4062
+ #, fuzzy
4063
+ #~| msgid "Click the Create button."
4064
+ #~ msgid "Click the <b>Create</b> button."
4065
+ #~ msgstr "Kattints a \"Create\" gombra"
4066
+
4067
+ #, fuzzy
4068
+ #~| msgid "Read the Developer Terms and click the Create button again!"
4069
+ #~ msgid "Read the Developer Terms and click the <b>Create</b> button again!"
4070
+ #~ msgstr ""
4071
+ #~ "Olvasd el a Fejlesztői feltételeket és kattints a Create gombra újra."
4072
+
4073
+ #, fuzzy
4074
+ #~| msgid ""
4075
+ #~| "Go to the Keys and tokens tab and find the API key and API secret key"
4076
+ #~ msgid ""
4077
+ #~ "Go to the <b>Keys and tokens</b> tab and find the <b>API key</b> and "
4078
+ #~ "<b>API secret key</b>"
4079
+ #~ msgstr ""
4080
+ #~ "Menj a \"Keys and tokens\" fülre ahol megtalálod az \"API key\"-t és "
4081
+ #~ "\"API Secret\"-et"
4082
+
4083
+ #, fuzzy
4084
+ #~| msgid "Click on the \"Add a New App\" button"
4085
+ #~ msgid "Click on the \"<b>Add a New App\" button</b>"
4086
+ #~ msgstr "Kattints az \"Add a New App\" gombra"
4087
+
4088
  #, fuzzy
4089
  #~| msgid "Enter your domain name to the App Domains"
4090
  #~ msgid "Enter your domain name to the \"App Domains\" field."
4403
  #~ msgid "Not Tested"
4404
  #~ msgstr "Nincs Tesztelve"
4405
 
 
 
 
 
 
 
 
4406
  #~ msgid "Your configuration needs testing"
4407
  #~ msgstr "A konfigurációt le kell tesztelni"
4408
 
languages/nextend-facebook-connect-it_IT.mo ADDED
Binary file
languages/nextend-facebook-connect-it_IT.po ADDED
@@ -0,0 +1,4079 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: nextend-facebook-connect\n"
4
+ "POT-Creation-Date: 2021-01-27 13:57+0100\n"
5
+ "PO-Revision-Date: 2021-01-27 13:57+0100\n"
6
+ "Last-Translator: \n"
7
+ "Language-Team: nextend-facebook-connect\n"
8
+ "Language: it_IT\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 2.4.1\n"
13
+ "X-Poedit-Basepath: ../..\n"
14
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
+ "X-Poedit-SourceCharset: UTF-8\n"
16
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
17
+ "_n_noop:1,2;_c;_nc:4c,1,2;_x:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;_ex:1,2c;"
18
+ "esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;"
19
+ "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_x:1,2c;esc_html_e\n"
20
+ "X-Poedit-Flags-xgettext: −−default-domain=nextend-facebook-connect\n"
21
+ "X-Poedit-SearchPath-0: nextend-social-login-pro\n"
22
+ "X-Poedit-SearchPath-1: nextend-facebook-connect\n"
23
+
24
+ #: nextend-facebook-connect/NSL/GDPR.php:34
25
+ msgid "What personal data we collect and why we collect it"
26
+ msgstr "Quali dati personali raccogliamo e perché li raccogliamo"
27
+
28
+ #: nextend-facebook-connect/NSL/GDPR.php:35
29
+ #, php-format
30
+ msgid ""
31
+ "%1$s collects data when a visitor register, login or link the account with "
32
+ "with any of the enabled social provider. It collects the following data: "
33
+ "email address, name, social provider identifier and access token. Also it "
34
+ "can collect profile picture and more fields with the Pro Addon's sync data "
35
+ "feature."
36
+ msgstr ""
37
+ "%1$s raccoglie dati quando un visitatore si registra, fa il login o collega "
38
+ "l'account con uno qualunque dei social provider. Raccoglie i seguenti dati: "
39
+ "indirizzi email, nome, l'ID del social e il token d'accesso. Inoltre può "
40
+ "raccogliere immagini e altri campi mediante la funzionalità di "
41
+ "sincronizzazione Pro Addon's."
42
+
43
+ #: nextend-facebook-connect/NSL/GDPR.php:37
44
+ msgid "Who we share your data with"
45
+ msgstr "Con chi condividiamo i tuoi dati"
46
+
47
+ #: nextend-facebook-connect/NSL/GDPR.php:38
48
+ #, php-format
49
+ msgid ""
50
+ "%1$s stores the personal data on your site and does not share it with anyone "
51
+ "except the access token which used for the authenticated communication with "
52
+ "the social providers."
53
+ msgstr ""
54
+ "%1$s memorizza i tuoi dati personali sul tuo sito e non li condivide con "
55
+ "nessun altro ad eccezione del token d'accesso che è impiegato per "
56
+ "autenticare le comunicazioni col social provider."
57
+
58
+ #: nextend-facebook-connect/NSL/GDPR.php:40
59
+ msgid "Does the plugin share personal data with third parties"
60
+ msgstr "Il plugin condivide dati personali con terze parti"
61
+
62
+ #: nextend-facebook-connect/NSL/GDPR.php:41
63
+ #, php-format
64
+ msgid ""
65
+ "%1$s use the access token what the social provider gave to communicate with "
66
+ "the providers to verify account and securely access personal data."
67
+ msgstr ""
68
+ "%1$s usa il token d'accesso che il social provider ha fornito comunicando "
69
+ "col provider per verificare l'account e accedere in sicurezza ai dati "
70
+ "personali."
71
+
72
+ #: nextend-facebook-connect/NSL/GDPR.php:43
73
+ msgid "How long we retain your data"
74
+ msgstr "Per quanto tempo conserviamo i tuoi dati"
75
+
76
+ #: nextend-facebook-connect/NSL/GDPR.php:44
77
+ #, php-format
78
+ msgid ""
79
+ "%1$s removes the collected personal data when the user deleted from "
80
+ "WordPress."
81
+ msgstr ""
82
+ "%1$s rimuove i dati personali raccolti quando l'utente è cancellato da "
83
+ "WordPress."
84
+
85
+ #: nextend-facebook-connect/NSL/GDPR.php:46
86
+ msgid "Does the plugin use personal data collected by others?"
87
+ msgstr "Il plugin impiega dati personali raccolti da altri?"
88
+
89
+ #: nextend-facebook-connect/NSL/GDPR.php:47
90
+ #, php-format
91
+ msgid ""
92
+ "%1$s use the personal data collected by the social providers to create "
93
+ "account on your site when the visitor authorize it."
94
+ msgstr ""
95
+ "Quando il visitatore lo autorizza, %1$s impiega i dati personali raccolti "
96
+ "dai social provider per creare un account sul tuo sito."
97
+
98
+ #: nextend-facebook-connect/NSL/GDPR.php:49
99
+ msgid "Does the plugin store things in the browser?"
100
+ msgstr "Il plugin memorizza \"cose\" sul browser?"
101
+
102
+ #: nextend-facebook-connect/NSL/GDPR.php:50
103
+ #, php-format
104
+ msgid ""
105
+ "Yes, %1$s must create a cookie for visitors who use the social login "
106
+ "authorization flow. This cookie required for every provider to secure the "
107
+ "communication and to redirect the user back to the last location."
108
+ msgstr ""
109
+ "Si, %1$s deve creare un cookie per i visitatori che usano l'autorizzazione "
110
+ "del social login. Questo cookie è necessario per ogni provider per rendere "
111
+ "sicura la comunicazione e per rimandare l'utente indietro all'ultima pagina "
112
+ "del sito."
113
+
114
+ #: nextend-facebook-connect/NSL/GDPR.php:52
115
+ msgid "Does the plugin collect telemetry data, directly or indirectly?"
116
+ msgstr ""
117
+ "Il plugin raccoglie informazioni sulla telemetria, direttamente o "
118
+ "indirettamente?"
119
+
120
+ #: nextend-facebook-connect/NSL/GDPR.php:53
121
+ #: nextend-facebook-connect/NSL/GDPR.php:56
122
+ msgid "No"
123
+ msgstr "No"
124
+
125
+ #: nextend-facebook-connect/NSL/GDPR.php:55
126
+ msgid ""
127
+ "Does the plugin enqueue JavaScript, tracking pixels or embed iframes from a "
128
+ "third party?"
129
+ msgstr ""
130
+ "Il plugin include JavaScript, pixel di tracciamento o iframes incorporati da "
131
+ "terze parti?"
132
+
133
+ #: nextend-facebook-connect/NSL/GDPR.php:99
134
+ #: nextend-facebook-connect/admin/templates/settings/general-pro.php:57
135
+ msgid "User"
136
+ msgstr "Utente"
137
+
138
+ #: nextend-facebook-connect/admin/admin.php:206
139
+ #, php-format
140
+ msgid "%s needs json_decode function."
141
+ msgstr "%s necessita della funzione json_decode."
142
+
143
+ #: nextend-facebook-connect/admin/admin.php:206
144
+ msgid "Please contact your server administrator and ask for solution!"
145
+ msgstr ""
146
+ "Per favore contatta l'amministratore del tuo server e chiedi una soluzione!"
147
+
148
+ #: nextend-facebook-connect/admin/admin.php:238
149
+ #: nextend-facebook-connect/admin/admin.php:268
150
+ msgid "Settings saved."
151
+ msgstr "Settaggio salvato."
152
+
153
+ #: nextend-facebook-connect/admin/admin.php:247
154
+ msgid "The activation was successful"
155
+ msgstr "Attivazione completata"
156
+
157
+ #: nextend-facebook-connect/admin/admin.php:258
158
+ msgid "Deactivate completed."
159
+ msgstr "Disattivazione completata."
160
+
161
+ #: nextend-facebook-connect/admin/admin.php:437
162
+ #: nextend-facebook-connect/admin/templates-provider/menu.php:15
163
+ #: nextend-facebook-connect/admin/templates/providers.php:89
164
+ #: nextend-facebook-connect/admin/templates/providers.php:101
165
+ #: nextend-facebook-connect/admin/templates/settings/comment.php:28
166
+ msgid "Settings"
167
+ msgstr "Settaggi"
168
+
169
+ #: nextend-facebook-connect/admin/admin.php:520
170
+ #: nextend-facebook-connect/includes/oauth2.php:143
171
+ #: nextend-facebook-connect/includes/oauth2.php:288
172
+ #: nextend-facebook-connect/providers/facebook/facebook-client.php:84
173
+ #: nextend-facebook-connect/providers/twitter/twitter-client.php:165
174
+ #: nextend-social-login-pro/providers/apple/apple-client.php:87
175
+ #: nextend-social-login-pro/providers/github/github-client.php:87
176
+ #, php-format
177
+ msgid "Unexpected response: %s"
178
+ msgstr "Unexpected response: %s"
179
+
180
+ #: nextend-facebook-connect/admin/admin.php:581
181
+ #: nextend-facebook-connect/admin/templates/fix-redirect-uri.php:21
182
+ #, php-format
183
+ msgid ""
184
+ "%s detected that your login url changed. You must update the Oauth redirect "
185
+ "URIs in the related social applications."
186
+ msgstr ""
187
+ "%s ha rilevato che la tua url di login è cambiata. Devi aggiornare il "
188
+ "redirect Oauth URIs nella relative applicazioni social."
189
+
190
+ #: nextend-facebook-connect/admin/admin.php:582
191
+ #: nextend-social-login-pro/providers/apple/apple.php:310
192
+ msgid "Fix Error"
193
+ msgstr "Ripara Errore"
194
+
195
+ #: nextend-facebook-connect/admin/admin.php:582
196
+ msgid "Oauth Redirect URI"
197
+ msgstr "Oauth Redirect URI"
198
+
199
+ #: nextend-facebook-connect/admin/admin.php:599
200
+ #, php-format
201
+ msgid ""
202
+ "%1$s detected that %2$s installed on your site. You need the Pro Addon to "
203
+ "display Social Login buttons in %2$s login form!"
204
+ msgstr ""
205
+ "%1$s ha rilevato che %2$s è installato sul tuo sito. Hai bisogno di Pro "
206
+ "Addon per mostrare i bottoni Social Login nel form di login di %2$s!"
207
+
208
+ #: nextend-facebook-connect/admin/admin.php:600
209
+ msgid "Dismiss and check Pro Addon"
210
+ msgstr ""
211
+
212
+ #: nextend-facebook-connect/admin/admin.php:600
213
+ msgid "Dismiss"
214
+ msgstr ""
215
+
216
+ #: nextend-facebook-connect/admin/admin.php:606
217
+ #, php-format
218
+ msgid ""
219
+ "%1$s detected that %2$s installed on your site. You must set \"<b>Page for "
220
+ "register flow</b>\" and \"<b>OAuth redirect uri proxy page</b>\" in %1$s to "
221
+ "work properly."
222
+ msgstr ""
223
+ "%1$s ha rilevato che %2$s è installato sul tuo sito. Devi settare "
224
+ "\"<b>Pagina per il flusso di registrazione</b>\" e \"<b>OAuth redirect uri "
225
+ "proxy page</b>\" in %1$s per funzionare correttamente."
226
+
227
+ #: nextend-facebook-connect/admin/admin.php:607
228
+ msgid "Fix now"
229
+ msgstr "Ripara ora"
230
+
231
+ #: nextend-facebook-connect/admin/admin.php:631
232
+ msgid "Activate your Pro Addon"
233
+ msgstr "Attiva il tuo Pro Addon"
234
+
235
+ #: nextend-facebook-connect/admin/admin.php:632
236
+ msgid ""
237
+ "To be able to use the Pro features, you need to activate Nextend Social "
238
+ "Login Pro Addon. You can do this by clicking on the Activate button below "
239
+ "then select the related purchase."
240
+ msgstr ""
241
+ "Per potere usare le funzionalità Pro devi attivare l'addon Nextend Social "
242
+ "Login Pro. Puoi farlo cliccando sul bottone Attiva in basso e selezionare il "
243
+ "relativo acquisto."
244
+
245
+ #: nextend-facebook-connect/admin/admin.php:637
246
+ #: nextend-social-login-pro/nextend-social-login-pro.php:110
247
+ msgid "Activate"
248
+ msgstr "Attiva"
249
+
250
+ #: nextend-facebook-connect/admin/admin.php:735
251
+ msgid "License key"
252
+ msgstr "Chiave di licenza"
253
+
254
+ #: nextend-facebook-connect/admin/admin.php:758
255
+ msgid "OAuth proxy page"
256
+ msgstr "Pagina OAuth proxy"
257
+
258
+ #: nextend-facebook-connect/admin/admin.php:761
259
+ msgid "Register flow page"
260
+ msgstr "Pagina del flusso di registrazione"
261
+
262
+ #: nextend-facebook-connect/admin/interim.php:12
263
+ #: nextend-facebook-connect/admin/interim.php:23
264
+ msgid "You have logged in successfully."
265
+ msgstr "Ti sei loggato."
266
+
267
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:80
268
+ msgid "Login label"
269
+ msgstr "Etichetta login"
270
+
271
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:85
272
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:101
273
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:114
274
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:125
275
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:154
276
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:184
277
+ #: nextend-facebook-connect/admin/templates/settings/privacy.php:53
278
+ msgid "Reset to default"
279
+ msgstr "Ripristina predefiniti"
280
+
281
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:95
282
+ #, fuzzy
283
+ #| msgid "Register layout"
284
+ msgid "Register label"
285
+ msgstr "Layout registrazione"
286
+
287
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:108
288
+ msgid "Link label"
289
+ msgstr "Collega etichetta"
290
+
291
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:120
292
+ msgid "Unlink label"
293
+ msgstr "Scollega etichetta"
294
+
295
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:131
296
+ msgid "Default button"
297
+ msgstr "Bottone standard"
298
+
299
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:147
300
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:177
301
+ msgid "Use custom button"
302
+ msgstr "Usa bottone personalizzato"
303
+
304
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:154
305
+ #, php-format
306
+ msgid "Use the %s in your custom button's code to make the label show up."
307
+ msgstr ""
308
+ "Utilizza %s nei codici dei tuoi bottoni personalizzati per rendere "
309
+ "l'etichetta visibile."
310
+
311
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:162
312
+ msgid "Icon button"
313
+ msgstr "Bottone icona"
314
+
315
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:193
316
+ #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:140
317
+ #: nextend-facebook-connect/admin/templates-provider/sync-data.php:104
318
+ #: nextend-facebook-connect/admin/templates/settings/buddypress.php:170
319
+ #: nextend-facebook-connect/admin/templates/settings/comment.php:73
320
+ #: nextend-facebook-connect/admin/templates/settings/general-pro.php:8
321
+ #: nextend-facebook-connect/admin/templates/settings/general-pro.php:127
322
+ #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:8
323
+ #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:155
324
+ #: nextend-facebook-connect/admin/templates/settings/memberpress.php:186
325
+ #: nextend-facebook-connect/admin/templates/settings/privacy.php:109
326
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:186
327
+ #: nextend-facebook-connect/admin/templates/settings/userpro.php:167
328
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:341
329
+ #: nextend-facebook-connect/providers/facebook/admin/settings.php:67
330
+ #: nextend-facebook-connect/providers/google/admin/settings.php:62
331
+ #: nextend-facebook-connect/providers/twitter/admin/settings.php:48
332
+ #: nextend-social-login-pro/providers/amazon/admin/settings.php:47
333
+ #: nextend-social-login-pro/providers/disqus/admin/settings.php:47
334
+ #: nextend-social-login-pro/providers/github/admin/settings.php:48
335
+ #: nextend-social-login-pro/providers/linkedin/admin/settings.php:47
336
+ #: nextend-social-login-pro/providers/paypal/admin/settings.php:60
337
+ #: nextend-social-login-pro/providers/vk/admin/settings.php:48
338
+ #: nextend-social-login-pro/providers/wordpress/admin/settings.php:47
339
+ #: nextend-social-login-pro/providers/yahoo/admin/settings.php:47
340
+ msgid "Save Changes"
341
+ msgstr "Salva Modifiche"
342
+
343
+ #: nextend-facebook-connect/admin/templates-provider/menu.php:13
344
+ #: nextend-facebook-connect/admin/templates/providers.php:69
345
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:17
346
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:9
347
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:9
348
+ #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:17
349
+ #: nextend-social-login-pro/providers/apple/admin/getting-started.php:28
350
+ #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:8
351
+ #: nextend-social-login-pro/providers/github/admin/getting-started.php:8
352
+ #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:8
353
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:8
354
+ #: nextend-social-login-pro/providers/vk/admin/getting-started.php:8
355
+ #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:8
356
+ #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:8
357
+ msgid "Getting Started"
358
+ msgstr "Inizia"
359
+
360
+ #: nextend-facebook-connect/admin/templates-provider/menu.php:17
361
+ msgid "Buttons"
362
+ msgstr "Bottoni"
363
+
364
+ #: nextend-facebook-connect/admin/templates-provider/menu.php:21
365
+ msgid "Sync data"
366
+ msgstr "Sincronizza dati"
367
+
368
+ #: nextend-facebook-connect/admin/templates-provider/menu.php:24
369
+ msgid "Usage"
370
+ msgstr "Utilizzo"
371
+
372
+ #: nextend-facebook-connect/admin/templates-provider/settings-other.php:11
373
+ msgid "Other settings"
374
+ msgstr "Altri settaggi"
375
+
376
+ #: nextend-facebook-connect/admin/templates-provider/settings-other.php:16
377
+ msgid "Username prefix on register"
378
+ msgstr "Prefisso allo username alla registrazione"
379
+
380
+ #: nextend-facebook-connect/admin/templates-provider/settings-other.php:23
381
+ msgid "Fallback username prefix on register"
382
+ msgstr ""
383
+
384
+ #: nextend-facebook-connect/admin/templates-provider/settings-other.php:27
385
+ msgid "Used when username is invalid or not stored"
386
+ msgstr "Usato quando lo username non è valido o non è memorizzato"
387
+
388
+ #: nextend-facebook-connect/admin/templates-provider/settings-other.php:32
389
+ #: nextend-facebook-connect/admin/templates-provider/settings-other.php:43
390
+ #: nextend-facebook-connect/admin/templates/settings/privacy.php:35
391
+ msgid "Terms and conditions"
392
+ msgstr "Termini e condizioni"
393
+
394
+ #: nextend-facebook-connect/admin/templates-provider/settings-other.php:43
395
+ #, php-format
396
+ msgid "Override global \"%1$s\""
397
+ msgstr "Sovrascrivi \"%1$s\" globali"
398
+
399
+ #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:18
400
+ #: nextend-facebook-connect/admin/templates/settings/general-pro.php:12
401
+ #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:12
402
+ msgid "PRO settings"
403
+ msgstr "Settaggi PRO"
404
+
405
+ #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:28
406
+ #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:32
407
+ msgid "Ask E-mail on registration"
408
+ msgstr "Chiedi E-mail alla registrazione"
409
+
410
+ #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:35
411
+ #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:69
412
+ msgid "Never"
413
+ msgstr "Mai"
414
+
415
+ #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:38
416
+ msgid "When email is not provided or empty"
417
+ msgstr "Quando l'email non è fornita o è vuota"
418
+
419
+ #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:41
420
+ #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:59
421
+ #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:72
422
+ msgid "Always"
423
+ msgstr "Sempre"
424
+
425
+ #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:46
426
+ #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:50
427
+ msgid "Ask Username on registration"
428
+ msgstr "Chiedi Username alla registrazione"
429
+
430
+ #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:53
431
+ msgid "Never, generate automatically"
432
+ msgstr "Mai, genera automaticamente"
433
+
434
+ #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:56
435
+ msgid "When username is empty or invalid"
436
+ msgstr "Quando lo username è vuoto o non valido"
437
+
438
+ #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:64
439
+ msgid "Ask Password on registration"
440
+ msgstr "Chiedi password alla registrazione"
441
+
442
+ #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:77
443
+ #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:81
444
+ msgid "Automatically connect the existing account upon registration"
445
+ msgstr "Alla registrazione connetti automaticamente l'account esistente"
446
+
447
+ #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:85
448
+ #: nextend-facebook-connect/admin/templates/providers.php:47
449
+ #: nextend-facebook-connect/admin/templates/settings/general-pro.php:86
450
+ #: nextend-facebook-connect/admin/templates/settings/general.php:48
451
+ #: nextend-facebook-connect/admin/templates/settings/general.php:213
452
+ #: nextend-facebook-connect/admin/templates/settings/general.php:228
453
+ #: nextend-facebook-connect/admin/templates/settings/general.php:246
454
+ #: nextend-facebook-connect/admin/templates/settings/general.php:261
455
+ #: nextend-facebook-connect/includes/provider-admin.php:218
456
+ msgid "Disabled"
457
+ msgstr "Disabilitato"
458
+
459
+ #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:88
460
+ msgid "Automatic, based on email address"
461
+ msgstr "Automatico, basato sull'indirizzo email"
462
+
463
+ #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:93
464
+ msgid "Disable login for the selected roles"
465
+ msgstr "Disabilita login per i seguenti ruoli"
466
+
467
+ #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:113
468
+ msgid "Default roles for user who registered with this provider"
469
+ msgstr "Ruolo default per chi si registra con questi provider"
470
+
471
+ #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:121
472
+ #: nextend-facebook-connect/admin/templates/settings/buddypress.php:50
473
+ #: nextend-facebook-connect/admin/templates/settings/buddypress.php:99
474
+ #: nextend-facebook-connect/admin/templates/settings/buddypress.php:118
475
+ #: nextend-facebook-connect/admin/templates/settings/comment.php:39
476
+ #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:35
477
+ #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:91
478
+ #: nextend-facebook-connect/admin/templates/settings/memberpress.php:39
479
+ #: nextend-facebook-connect/admin/templates/settings/memberpress.php:105
480
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:39
481
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:105
482
+ #: nextend-facebook-connect/admin/templates/settings/userpro.php:51
483
+ #: nextend-facebook-connect/admin/templates/settings/userpro.php:102
484
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:24
485
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:64
486
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:122
487
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:193
488
+ #: nextend-facebook-connect/widget.php:42
489
+ msgid "Default"
490
+ msgstr "Default"
491
+
492
+ #: nextend-facebook-connect/admin/templates-provider/sync-data.php:50
493
+ #: nextend-facebook-connect/includes/userData.php:188
494
+ msgid "Register"
495
+ msgstr "Registra"
496
+
497
+ #: nextend-facebook-connect/admin/templates-provider/sync-data.php:58
498
+ msgid "Login"
499
+ msgstr "Login"
500
+
501
+ #: nextend-facebook-connect/admin/templates-provider/sync-data.php:66
502
+ msgid "Link"
503
+ msgstr "Collega"
504
+
505
+ #: nextend-facebook-connect/admin/templates-provider/sync-data.php:84
506
+ msgid "Store in meta key"
507
+ msgstr "Memorizza nella meta key"
508
+
509
+ #: nextend-facebook-connect/admin/templates-provider/usage.php:9
510
+ msgid "Shortcode"
511
+ msgstr "Shortcode"
512
+
513
+ #: nextend-facebook-connect/admin/templates-provider/usage.php:12
514
+ msgid "Important!"
515
+ msgstr "Importante!"
516
+
517
+ #: nextend-facebook-connect/admin/templates-provider/usage.php:13
518
+ msgid "The shortcodes are only rendered for users who haven't logged in yet!"
519
+ msgstr ""
520
+ "Lo shortcode è renderizzato per gli utenti che non si sono ancora loggati!"
521
+
522
+ #: nextend-facebook-connect/admin/templates-provider/usage.php:14
523
+ msgid "See the full list of shortcode parameters."
524
+ msgstr "Guarda la lista completa dei parametri dello shortcode."
525
+
526
+ #: nextend-facebook-connect/admin/templates-provider/usage.php:31
527
+ msgid "Simple link"
528
+ msgstr "Collegamento semplice"
529
+
530
+ #: nextend-facebook-connect/admin/templates-provider/usage.php:34
531
+ msgid "Click here to login or register"
532
+ msgstr "Clicca qui per accedere o registrarti"
533
+
534
+ #: nextend-facebook-connect/admin/templates-provider/usage.php:39
535
+ msgid "Image button"
536
+ msgstr "Bottone immagine"
537
+
538
+ #: nextend-facebook-connect/admin/templates-provider/usage.php:42
539
+ msgid "Image url"
540
+ msgstr "Url immagine"
541
+
542
+ #: nextend-facebook-connect/admin/templates/debug.php:7
543
+ #: nextend-facebook-connect/admin/templates/header.php:20
544
+ msgid "Debug"
545
+ msgstr "Debug"
546
+
547
+ #: nextend-facebook-connect/admin/templates/debug.php:41
548
+ msgid "Test network connection with providers"
549
+ msgstr "Testa la connessione con i providers"
550
+
551
+ #: nextend-facebook-connect/admin/templates/debug.php:48
552
+ msgid "You don't have cURL support, please enable it in php.ini!"
553
+ msgstr "Non hai il supporto al cURL, per favore abilitalo nel php.ini!"
554
+
555
+ #: nextend-facebook-connect/admin/templates/debug.php:58
556
+ #, php-format
557
+ msgid "Test %1$s connection"
558
+ msgstr "Testa la connessione %1$s"
559
+
560
+ #: nextend-facebook-connect/admin/templates/fix-redirect-uri.php:2
561
+ msgid "Fix Oauth Redirect URIs"
562
+ msgstr "Correggi Oauth Redirect URIs"
563
+
564
+ #: nextend-facebook-connect/admin/templates/fix-redirect-uri.php:13
565
+ msgid "Every Oauth Redirect URI seems fine"
566
+ msgstr "Ogni Oauth Redirect URI sembra corretta"
567
+
568
+ #: nextend-facebook-connect/admin/templates/fix-redirect-uri.php:32
569
+ msgid "Got it"
570
+ msgstr "Capito"
571
+
572
+ #: nextend-facebook-connect/admin/templates/global-settings.php:28
573
+ #: nextend-facebook-connect/admin/templates/menu.php:8
574
+ msgid "Global Settings"
575
+ msgstr "Settaggi Globali"
576
+
577
+ #: nextend-facebook-connect/admin/templates/global-settings.php:31
578
+ msgid "General"
579
+ msgstr "Generale"
580
+
581
+ #: nextend-facebook-connect/admin/templates/global-settings.php:33
582
+ msgid "Privacy"
583
+ msgstr "Privacy"
584
+
585
+ #: nextend-facebook-connect/admin/templates/global-settings.php:35
586
+ #: nextend-facebook-connect/admin/templates/settings/login-form.php:9
587
+ #: nextend-facebook-connect/admin/templates/settings/userpro.php:18
588
+ msgid "Login Form"
589
+ msgstr "Form di login"
590
+
591
+ #: nextend-facebook-connect/admin/templates/global-settings.php:39
592
+ msgid "Comment"
593
+ msgstr "Commento"
594
+
595
+ #: nextend-facebook-connect/admin/templates/header.php:14
596
+ msgid "Docs"
597
+ msgstr "Docs"
598
+
599
+ #: nextend-facebook-connect/admin/templates/header.php:17
600
+ msgid "Support"
601
+ msgstr "Supporto"
602
+
603
+ #: nextend-facebook-connect/admin/templates/header.php:23
604
+ #: nextend-facebook-connect/admin/templates/menu.php:12
605
+ msgid "Pro Addon"
606
+ msgstr "Pro Addon"
607
+
608
+ #: nextend-facebook-connect/admin/templates/menu.php:6
609
+ msgid "Providers"
610
+ msgstr "Provider"
611
+
612
+ #: nextend-facebook-connect/admin/templates/pro-addon.php:13
613
+ msgid "Error"
614
+ msgstr "Errore"
615
+
616
+ #: nextend-facebook-connect/admin/templates/pro-addon.php:14
617
+ msgid ""
618
+ "You don’t have sufficient permissions to install and activate plugins. "
619
+ "Please contact your site’s administrator!"
620
+ msgstr ""
621
+ "Non hai permessi sufficienti per installare ed attivare il plugin. Per "
622
+ "favore contatta l'amministratore del tuo sito!"
623
+
624
+ #: nextend-facebook-connect/admin/templates/pro-addon.php:22
625
+ #: nextend-facebook-connect/admin/templates/pro-addon.php:32
626
+ #: nextend-facebook-connect/admin/templates/pro.php:34
627
+ msgid "Activate Pro Addon"
628
+ msgstr "Attiva Pro Addon"
629
+
630
+ #: nextend-facebook-connect/admin/templates/pro-addon.php:23
631
+ msgid ""
632
+ "Pro Addon is installed but not activated. To be able to use the Pro "
633
+ "features, you need to activate it."
634
+ msgstr ""
635
+ "Pro Addon è installato ma non attivto. Per potere usare le funzionalità Pro "
636
+ "devi attivarlo."
637
+
638
+ #: nextend-facebook-connect/admin/templates/pro-addon.php:37
639
+ #: nextend-facebook-connect/admin/templates/pro-addon.php:142
640
+ msgid "Deactivate Pro Addon"
641
+ msgstr "Disattiva Pro Addon"
642
+
643
+ #: nextend-facebook-connect/admin/templates/pro-addon.php:48
644
+ #: nextend-facebook-connect/admin/templates/pro.php:43
645
+ msgid "Pro Addon is not installed"
646
+ msgstr "Pro Addon non è installato"
647
+
648
+ #: nextend-facebook-connect/admin/templates/pro-addon.php:50
649
+ msgid ""
650
+ "To access the Pro features, you need to install and activate the Pro Addon."
651
+ msgstr ""
652
+ "Per accedere alle funzionalità Pro hai bisogno di installare e attivare Pro "
653
+ "Addon."
654
+
655
+ #: nextend-facebook-connect/admin/templates/pro-addon.php:59
656
+ #, php-format
657
+ msgid "Install %s now"
658
+ msgstr "Installa %s adesso"
659
+
660
+ #: nextend-facebook-connect/admin/templates/pro-addon.php:60
661
+ #: nextend-facebook-connect/admin/templates/pro.php:47
662
+ msgid "Install Pro Addon"
663
+ msgstr "Installa Pro Addon"
664
+
665
+ #: nextend-facebook-connect/admin/templates/pro-addon.php:94
666
+ msgid "Activating..."
667
+ msgstr "Attivazione..."
668
+
669
+ #: nextend-facebook-connect/admin/templates/pro-addon.php:118
670
+ msgid "Not compatible!"
671
+ msgstr "Non compatibile!"
672
+
673
+ #: nextend-facebook-connect/admin/templates/pro-addon.php:119
674
+ #, php-format
675
+ msgid ""
676
+ "%1$s and %2$s are not compatible. Please update %2$s to version %3$s or "
677
+ "newer."
678
+ msgstr ""
679
+ "%1$s e %2$s non sono compatibili. Per favore aggiorna %2$s alla versione "
680
+ "%3$s o più recente."
681
+
682
+ #: nextend-facebook-connect/admin/templates/pro-addon.php:123
683
+ msgid "Update Pro Addon"
684
+ msgstr "Aggiorna Pro Addon"
685
+
686
+ #: nextend-facebook-connect/admin/templates/pro-addon.php:133
687
+ msgid "Pro Addon is installed and activated"
688
+ msgstr "Pro Addon è installato e attivo"
689
+
690
+ #: nextend-facebook-connect/admin/templates/pro-addon.php:135
691
+ msgid ""
692
+ "You installed and activated the Pro Addon. If you don’t want to use it "
693
+ "anymore, you can deactivate using the button below."
694
+ msgstr ""
695
+ "Hai installato ed attivato il Pro Addon. Se non volessi più usarlo, puoi "
696
+ "disattivarlo usando il bottone in basso."
697
+
698
+ #: nextend-facebook-connect/admin/templates/pro.php:8
699
+ msgid "Get Pro Addon to unlock more features"
700
+ msgstr "Passa a Pro Addon per sbloccare più funzionalità"
701
+
702
+ #: nextend-facebook-connect/admin/templates/pro.php:9
703
+ #, php-format
704
+ msgid ""
705
+ "The features below are available in %s Pro Addon. Get it today and tweak the "
706
+ "awesome settings."
707
+ msgstr ""
708
+ "Le funzionalità qui sotto sono disponibili in %s Pro Addon. Acquistalo oggi "
709
+ "e accedi ai settaggi più avanzati."
710
+
711
+ #: nextend-facebook-connect/admin/templates/pro.php:10
712
+ msgid ""
713
+ "If you already have a license, you can Authorize your Pro Addon. Otherwise "
714
+ "you can purchase it using the button below."
715
+ msgstr ""
716
+ "Se hai già una licenza, puoi autorizzare il tuo Pro Addon. Altrimenti potrai "
717
+ "comprarla dal bottone in basso."
718
+
719
+ #: nextend-facebook-connect/admin/templates/pro.php:14
720
+ msgid "Buy Pro Addon"
721
+ msgstr "Compra Pro Addon"
722
+
723
+ #: nextend-facebook-connect/admin/templates/pro.php:16
724
+ msgid "Authorize Pro Addon"
725
+ msgstr "Autorizza Pro Addon"
726
+
727
+ #: nextend-facebook-connect/admin/templates/pro.php:25
728
+ msgid "Pro Addon is not activated"
729
+ msgstr "Pro Addon non è attivato"
730
+
731
+ #: nextend-facebook-connect/admin/templates/pro.php:26
732
+ #: nextend-facebook-connect/admin/templates/pro.php:44
733
+ msgid ""
734
+ "To be able to use the Pro features, you need to install and activate the "
735
+ "Nextend Social Login Pro Addon."
736
+ msgstr ""
737
+ "Per potere usare le funzionalità Pro, devi installare e attivare il Nextend "
738
+ "Social Login Pro Addon."
739
+
740
+ #: nextend-facebook-connect/admin/templates/providers.php:8
741
+ #, php-format
742
+ msgid ""
743
+ "%1$s detected that you have providers configured but none of them are "
744
+ "enabled. To display any social buttons, please make sure you have at least "
745
+ "one provider enabled!"
746
+ msgstr ""
747
+ "%1$s ha rilevato che hai provider configurati ma nessuno è abilitato. Per "
748
+ "visualizzare i bottoni social accertati di avere almeno un provider "
749
+ "abilitato!"
750
+
751
+ #: nextend-facebook-connect/admin/templates/providers.php:38
752
+ msgid "Not Available"
753
+ msgstr "Non disponibile"
754
+
755
+ #: nextend-facebook-connect/admin/templates/providers.php:41
756
+ msgid "Not Configured"
757
+ msgstr "Non Configurato"
758
+
759
+ #: nextend-facebook-connect/admin/templates/providers.php:44
760
+ msgid "Not Verified"
761
+ msgstr "Non Verificato"
762
+
763
+ #: nextend-facebook-connect/admin/templates/providers.php:50
764
+ #: nextend-facebook-connect/admin/templates/settings/general-pro.php:89
765
+ #: nextend-facebook-connect/admin/templates/settings/general.php:51
766
+ #: nextend-facebook-connect/admin/templates/settings/general.php:216
767
+ #: nextend-facebook-connect/admin/templates/settings/general.php:231
768
+ #: nextend-facebook-connect/admin/templates/settings/general.php:249
769
+ #: nextend-facebook-connect/admin/templates/settings/general.php:264
770
+ #: nextend-facebook-connect/includes/provider-admin.php:221
771
+ #: nextend-facebook-connect/providers/google/admin/settings.php:53
772
+ #: nextend-social-login-pro/providers/paypal/admin/settings.php:51
773
+ msgid "Enabled"
774
+ msgstr "Abilitato"
775
+
776
+ #: nextend-facebook-connect/admin/templates/providers.php:62
777
+ msgid "Upgrade Now"
778
+ msgstr "Aggiorna adesso"
779
+
780
+ #: nextend-facebook-connect/admin/templates/providers.php:77
781
+ #: nextend-facebook-connect/includes/provider-admin.php:205
782
+ msgid "Verify Settings"
783
+ msgstr "Verifica Settaggi"
784
+
785
+ #: nextend-facebook-connect/admin/templates/providers.php:85
786
+ #: nextend-facebook-connect/includes/provider-admin.php:250
787
+ msgid "Enable"
788
+ msgstr "Abilita"
789
+
790
+ #: nextend-facebook-connect/admin/templates/providers.php:97
791
+ #: nextend-facebook-connect/includes/provider-admin.php:258
792
+ msgid "Disable"
793
+ msgstr "Disabilita"
794
+
795
+ #: nextend-facebook-connect/admin/templates/providers.php:122
796
+ msgid "Stay Updated"
797
+ msgstr "Tieniti aggiornato"
798
+
799
+ #: nextend-facebook-connect/admin/templates/providers.php:123
800
+ msgid ""
801
+ "Receive info on the latest plugin updates and social provider related "
802
+ "changes."
803
+ msgstr ""
804
+ "Ricevi informazioni sugli aggiornamenti del plugin e quelli dei providers."
805
+
806
+ #: nextend-facebook-connect/admin/templates/providers.php:124
807
+ msgid "Enter your email address"
808
+ msgstr "Inserisci il tuo indirizzo Email"
809
+
810
+ #: nextend-facebook-connect/admin/templates/providers.php:128
811
+ msgid "Subscribe"
812
+ msgstr "Sottoscrivi"
813
+
814
+ #: nextend-facebook-connect/admin/templates/providers.php:144
815
+ msgid "Saving..."
816
+ msgstr "Salvando..."
817
+
818
+ #: nextend-facebook-connect/admin/templates/providers.php:145
819
+ msgid "Saving failed"
820
+ msgstr "Salvataggio fallito"
821
+
822
+ #: nextend-facebook-connect/admin/templates/providers.php:146
823
+ msgid "Order Saved"
824
+ msgstr "Ordine Salvato"
825
+
826
+ #: nextend-facebook-connect/admin/templates/providers.php:215
827
+ msgid "Successfully subscribed!"
828
+ msgstr "Abbonato correttamente!"
829
+
830
+ #: nextend-facebook-connect/admin/templates/providers.php:215
831
+ msgid ""
832
+ "We'll be bringing you all the latest news and updates about Social Login - "
833
+ "right to your inbox."
834
+ msgstr ""
835
+ "Ti forniremo tutte le ultime novità e gli aggiornamenti su Social Login - "
836
+ "proprio nella tua posta in arrivo."
837
+
838
+ #: nextend-facebook-connect/admin/templates/providers.php:222
839
+ msgid "The entered email address is invalid!"
840
+ msgstr "L'email inserita non è valida!"
841
+
842
+ #: nextend-facebook-connect/admin/templates/review.php:14
843
+ msgid "Rate your experience!"
844
+ msgstr "Vota la tua esperienza!"
845
+
846
+ #: nextend-facebook-connect/admin/templates/review.php:15
847
+ msgid "Hated it"
848
+ msgstr "Odiato"
849
+
850
+ #: nextend-facebook-connect/admin/templates/review.php:16
851
+ msgid "Disliked it"
852
+ msgstr "Non piaciuto"
853
+
854
+ #: nextend-facebook-connect/admin/templates/review.php:17
855
+ msgid "It was ok"
856
+ msgstr "Ok"
857
+
858
+ #: nextend-facebook-connect/admin/templates/review.php:18
859
+ msgid "Liked it"
860
+ msgstr "Mi è piaciuto"
861
+
862
+ #: nextend-facebook-connect/admin/templates/review.php:19
863
+ msgid "Loved it"
864
+ msgstr "Adorabile"
865
+
866
+ #: nextend-facebook-connect/admin/templates/review.php:31
867
+ msgid "Please Leave a Review"
868
+ msgstr "Per Favore Lascia una Recensione"
869
+
870
+ #: nextend-facebook-connect/admin/templates/review.php:32
871
+ msgid ""
872
+ "If you are happy with <b>Nextend Social Login</b> and can take a minute "
873
+ "please leave us a review. It will be a tremendous help for us!"
874
+ msgstr ""
875
+ "Se sei soddisfatto con <b>Nextend Social Login</b> e puoi prenderti un "
876
+ "minuto per favore lascia una recensione. Sarà un aiuto enorme per noi!"
877
+
878
+ #: nextend-facebook-connect/admin/templates/review.php:34
879
+ msgid "Ok, you deserve it"
880
+ msgstr "Ok, me lo merito"
881
+
882
+ #: nextend-facebook-connect/admin/templates/settings/buddypress.php:18
883
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:84
884
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:96
885
+ msgid "Register form"
886
+ msgstr "Form di registrazione"
887
+
888
+ #: nextend-facebook-connect/admin/templates/settings/buddypress.php:23
889
+ msgid "No Connect button"
890
+ msgstr ""
891
+
892
+ #: nextend-facebook-connect/admin/templates/settings/buddypress.php:26
893
+ msgid "Connect button before register"
894
+ msgstr ""
895
+
896
+ #: nextend-facebook-connect/admin/templates/settings/buddypress.php:27
897
+ #: nextend-facebook-connect/admin/templates/settings/buddypress.php:32
898
+ #: nextend-facebook-connect/admin/templates/settings/buddypress.php:37
899
+ #: nextend-facebook-connect/admin/templates/settings/memberpress.php:27
900
+ #: nextend-facebook-connect/admin/templates/settings/memberpress.php:93
901
+ #: nextend-facebook-connect/admin/templates/settings/memberpress.php:159
902
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:27
903
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:93
904
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:159
905
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:47
906
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:52
907
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:105
908
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:110
909
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:163
910
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:168
911
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:174
912
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:180
913
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:242
914
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:293
915
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:298
916
+ msgid "Action:"
917
+ msgstr "Azione:"
918
+
919
+ #: nextend-facebook-connect/admin/templates/settings/buddypress.php:31
920
+ msgid "Connect button before account details"
921
+ msgstr ""
922
+
923
+ #: nextend-facebook-connect/admin/templates/settings/buddypress.php:36
924
+ msgid "Connect button after register"
925
+ msgstr "Bottone connetti dopo la registrazione"
926
+
927
+ #: nextend-facebook-connect/admin/templates/settings/buddypress.php:44
928
+ msgid "Register button style"
929
+ msgstr "Stile del bottone di registrazione"
930
+
931
+ #: nextend-facebook-connect/admin/templates/settings/buddypress.php:56
932
+ #: nextend-facebook-connect/admin/templates/settings/buddypress.php:105
933
+ #: nextend-facebook-connect/admin/templates/settings/comment.php:45
934
+ #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:41
935
+ #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:97
936
+ #: nextend-facebook-connect/admin/templates/settings/memberpress.php:45
937
+ #: nextend-facebook-connect/admin/templates/settings/memberpress.php:111
938
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:45
939
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:111
940
+ #: nextend-facebook-connect/admin/templates/settings/userpro.php:57
941
+ #: nextend-facebook-connect/admin/templates/settings/userpro.php:108
942
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:30
943
+ #: nextend-facebook-connect/widget.php:47
944
+ msgid "Icon"
945
+ msgstr "Icona"
946
+
947
+ #: nextend-facebook-connect/admin/templates/settings/buddypress.php:64
948
+ msgid "Sidebar Login form"
949
+ msgstr ""
950
+
951
+ #: nextend-facebook-connect/admin/templates/settings/buddypress.php:69
952
+ #: nextend-facebook-connect/admin/templates/settings/buddypress.php:85
953
+ #: nextend-facebook-connect/admin/templates/settings/login-form.php:17
954
+ #: nextend-facebook-connect/admin/templates/settings/login-form.php:30
955
+ #: nextend-facebook-connect/admin/templates/settings/login-form.php:47
956
+ #: nextend-facebook-connect/admin/templates/settings/userpro.php:26
957
+ #: nextend-facebook-connect/admin/templates/settings/userpro.php:39
958
+ msgid "Hide login buttons"
959
+ msgstr "Nascondi bottone login"
960
+
961
+ #: nextend-facebook-connect/admin/templates/settings/buddypress.php:72
962
+ #: nextend-facebook-connect/admin/templates/settings/buddypress.php:88
963
+ #: nextend-facebook-connect/admin/templates/settings/login-form.php:14
964
+ #: nextend-facebook-connect/admin/templates/settings/login-form.php:27
965
+ #: nextend-facebook-connect/admin/templates/settings/login-form.php:44
966
+ #: nextend-facebook-connect/admin/templates/settings/userpro.php:23
967
+ #: nextend-facebook-connect/admin/templates/settings/userpro.php:36
968
+ #: nextend-facebook-connect/widget.php:76
969
+ msgid "Show login buttons"
970
+ msgstr "Mostra bottone login"
971
+
972
+ #: nextend-facebook-connect/admin/templates/settings/buddypress.php:73
973
+ msgid ""
974
+ "Some themes that use BuddyPress, display the social buttons twice in the "
975
+ "same login form. This option can disable the one for: "
976
+ "<b>bp_sidebar_login_form action</b>. "
977
+ msgstr ""
978
+ "Alcuni temi che usano BuddyPress mostrano i bottoni sociali due volte sullo "
979
+ "stesso form di login. Questa opzione può disabilitarne un set per: "
980
+ "<b>bp_sidebar_login_form action</b>. "
981
+
982
+ #: nextend-facebook-connect/admin/templates/settings/buddypress.php:80
983
+ #: nextend-facebook-connect/admin/templates/settings/memberpress.php:18
984
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:18
985
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:38
986
+ msgid "Login form"
987
+ msgstr "Form di login"
988
+
989
+ #: nextend-facebook-connect/admin/templates/settings/buddypress.php:93
990
+ msgid "Login button style"
991
+ msgstr "Stile del bottone di login"
992
+
993
+ #: nextend-facebook-connect/admin/templates/settings/buddypress.php:112
994
+ #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:48
995
+ #: nextend-facebook-connect/admin/templates/settings/memberpress.php:52
996
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:52
997
+ #: nextend-facebook-connect/admin/templates/settings/userpro.php:64
998
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:58
999
+ msgid "Login layout"
1000
+ msgstr "Layout del login"
1001
+
1002
+ #: nextend-facebook-connect/admin/templates/settings/buddypress.php:124
1003
+ #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:54
1004
+ #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:110
1005
+ #: nextend-facebook-connect/admin/templates/settings/memberpress.php:58
1006
+ #: nextend-facebook-connect/admin/templates/settings/memberpress.php:124
1007
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:58
1008
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:124
1009
+ #: nextend-facebook-connect/admin/templates/settings/userpro.php:70
1010
+ #: nextend-facebook-connect/admin/templates/settings/userpro.php:121
1011
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:70
1012
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:128
1013
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:205
1014
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:255
1015
+ msgid "Below"
1016
+ msgstr "Sotto"
1017
+
1018
+ #: nextend-facebook-connect/admin/templates/settings/buddypress.php:130
1019
+ #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:60
1020
+ #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:116
1021
+ #: nextend-facebook-connect/admin/templates/settings/memberpress.php:64
1022
+ #: nextend-facebook-connect/admin/templates/settings/memberpress.php:130
1023
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:64
1024
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:130
1025
+ #: nextend-facebook-connect/admin/templates/settings/userpro.php:76
1026
+ #: nextend-facebook-connect/admin/templates/settings/userpro.php:127
1027
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:76
1028
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:134
1029
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:211
1030
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:261
1031
+ msgid "Below with separator"
1032
+ msgstr "Sotto con separatore"
1033
+
1034
+ #: nextend-facebook-connect/admin/templates/settings/buddypress.php:136
1035
+ #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:72
1036
+ #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:122
1037
+ #: nextend-facebook-connect/admin/templates/settings/memberpress.php:70
1038
+ #: nextend-facebook-connect/admin/templates/settings/memberpress.php:136
1039
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:70
1040
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:136
1041
+ #: nextend-facebook-connect/admin/templates/settings/userpro.php:82
1042
+ #: nextend-facebook-connect/admin/templates/settings/userpro.php:133
1043
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:82
1044
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:140
1045
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:217
1046
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:267
1047
+ msgid "Above"
1048
+ msgstr "Sopra"
1049
+
1050
+ #: nextend-facebook-connect/admin/templates/settings/buddypress.php:142
1051
+ #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:78
1052
+ #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:128
1053
+ #: nextend-facebook-connect/admin/templates/settings/memberpress.php:76
1054
+ #: nextend-facebook-connect/admin/templates/settings/memberpress.php:142
1055
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:76
1056
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:142
1057
+ #: nextend-facebook-connect/admin/templates/settings/userpro.php:88
1058
+ #: nextend-facebook-connect/admin/templates/settings/userpro.php:139
1059
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:88
1060
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:146
1061
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:223
1062
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:273
1063
+ msgid "Above with separator"
1064
+ msgstr "Sopra con separatore"
1065
+
1066
+ #: nextend-facebook-connect/admin/templates/settings/buddypress.php:150
1067
+ #: nextend-facebook-connect/admin/templates/settings/comment.php:53
1068
+ #: nextend-facebook-connect/admin/templates/settings/login-form.php:53
1069
+ #: nextend-facebook-connect/admin/templates/settings/memberpress.php:166
1070
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:166
1071
+ #: nextend-facebook-connect/admin/templates/settings/userpro.php:147
1072
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:305
1073
+ msgid "Button alignment"
1074
+ msgstr "Allineamento bottone"
1075
+
1076
+ #: nextend-facebook-connect/admin/templates/settings/buddypress.php:155
1077
+ #: nextend-facebook-connect/admin/templates/settings/comment.php:58
1078
+ #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:140
1079
+ #: nextend-facebook-connect/admin/templates/settings/login-form.php:58
1080
+ #: nextend-facebook-connect/admin/templates/settings/memberpress.php:171
1081
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:171
1082
+ #: nextend-facebook-connect/admin/templates/settings/userpro.php:152
1083
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:310
1084
+ #: nextend-facebook-connect/widget.php:57
1085
+ msgid "Left"
1086
+ msgstr "Sinistra"
1087
+
1088
+ #: nextend-facebook-connect/admin/templates/settings/buddypress.php:158
1089
+ #: nextend-facebook-connect/admin/templates/settings/comment.php:61
1090
+ #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:143
1091
+ #: nextend-facebook-connect/admin/templates/settings/login-form.php:61
1092
+ #: nextend-facebook-connect/admin/templates/settings/memberpress.php:174
1093
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:174
1094
+ #: nextend-facebook-connect/admin/templates/settings/userpro.php:155
1095
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:313
1096
+ #: nextend-facebook-connect/widget.php:62
1097
+ msgid "Center"
1098
+ msgstr "Centro"
1099
+
1100
+ #: nextend-facebook-connect/admin/templates/settings/buddypress.php:162
1101
+ #: nextend-facebook-connect/admin/templates/settings/comment.php:65
1102
+ #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:147
1103
+ #: nextend-facebook-connect/admin/templates/settings/login-form.php:65
1104
+ #: nextend-facebook-connect/admin/templates/settings/memberpress.php:178
1105
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:178
1106
+ #: nextend-facebook-connect/admin/templates/settings/userpro.php:159
1107
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:317
1108
+ #: nextend-facebook-connect/widget.php:67
1109
+ msgid "Right"
1110
+ msgstr "Destra"
1111
+
1112
+ #: nextend-facebook-connect/admin/templates/settings/comment.php:18
1113
+ msgid "Login button"
1114
+ msgstr "Bottone login"
1115
+
1116
+ #: nextend-facebook-connect/admin/templates/settings/comment.php:23
1117
+ #: nextend-facebook-connect/admin/templates/settings/privacy.php:42
1118
+ msgid "Show"
1119
+ msgstr "Mostra"
1120
+
1121
+ #: nextend-facebook-connect/admin/templates/settings/comment.php:26
1122
+ msgid "Hide"
1123
+ msgstr "Nascondi"
1124
+
1125
+ #: nextend-facebook-connect/admin/templates/settings/comment.php:28
1126
+ #, php-format
1127
+ msgid "You need to turn on the ' %1$s > %2$s > %3$s ' for this feature to work"
1128
+ msgstr ""
1129
+ "Hai bisogno di attivare ' %1$s > %2$s > %3$s ' per fare funzionare questa "
1130
+ "caratteristica"
1131
+
1132
+ #: nextend-facebook-connect/admin/templates/settings/comment.php:28
1133
+ msgid "Discussion"
1134
+ msgstr "Discussione"
1135
+
1136
+ #: nextend-facebook-connect/admin/templates/settings/comment.php:28
1137
+ msgid "Users must be registered and logged in to comment"
1138
+ msgstr "Gli utenti devono essere registrati e loggati per commentare"
1139
+
1140
+ #: nextend-facebook-connect/admin/templates/settings/comment.php:33
1141
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:18
1142
+ msgid "Button style"
1143
+ msgstr "Stile bottone"
1144
+
1145
+ #: nextend-facebook-connect/admin/templates/settings/general-pro.php:29
1146
+ msgid "Target window"
1147
+ msgstr "Finestra target"
1148
+
1149
+ #: nextend-facebook-connect/admin/templates/settings/general-pro.php:34
1150
+ msgid "Prefer popup"
1151
+ msgstr "Preferisci popup"
1152
+
1153
+ #: nextend-facebook-connect/admin/templates/settings/general-pro.php:37
1154
+ msgid "Prefer new tab"
1155
+ msgstr "Preferisci nuova tab"
1156
+
1157
+ #: nextend-facebook-connect/admin/templates/settings/general-pro.php:40
1158
+ msgid "Prefer same window"
1159
+ msgstr "Preferisci stessa finestra"
1160
+
1161
+ #: nextend-facebook-connect/admin/templates/settings/general-pro.php:46
1162
+ msgid "Registration notification sent to"
1163
+ msgstr "Invia notifica di registrazione a"
1164
+
1165
+ #: nextend-facebook-connect/admin/templates/settings/general-pro.php:51
1166
+ #: nextend-facebook-connect/admin/templates/settings/general.php:243
1167
+ msgid "WordPress default"
1168
+ msgstr "Default WordPress"
1169
+
1170
+ #: nextend-facebook-connect/admin/templates/settings/general-pro.php:54
1171
+ msgid "Nobody"
1172
+ msgstr "Nessuno"
1173
+
1174
+ #: nextend-facebook-connect/admin/templates/settings/general-pro.php:60
1175
+ msgid "Admin"
1176
+ msgstr "Admin"
1177
+
1178
+ #: nextend-facebook-connect/admin/templates/settings/general-pro.php:63
1179
+ msgid "User and Admin"
1180
+ msgstr "Utente e Admin"
1181
+
1182
+ #: nextend-facebook-connect/admin/templates/settings/general-pro.php:69
1183
+ msgid "Unlink"
1184
+ msgstr "Scollega"
1185
+
1186
+ #: nextend-facebook-connect/admin/templates/settings/general-pro.php:75
1187
+ msgid "Allow Social account unlink"
1188
+ msgstr "Consenti di scollegare gli account Social"
1189
+
1190
+ #: nextend-facebook-connect/admin/templates/settings/general-pro.php:81
1191
+ msgid "Show linked providers"
1192
+ msgstr "Mostra providers collegati"
1193
+
1194
+ #: nextend-facebook-connect/admin/templates/settings/general-pro.php:91
1195
+ #, php-format
1196
+ msgid "Providers linked to the account will appear in the %1$s."
1197
+ msgstr "I providers collegati all'account appariranno in %1$s."
1198
+
1199
+ #: nextend-facebook-connect/admin/templates/settings/general-pro.php:91
1200
+ msgid "Users table"
1201
+ msgstr "Tabella utenti"
1202
+
1203
+ #: nextend-facebook-connect/admin/templates/settings/general-pro.php:96
1204
+ msgid "Disable Admin bar for roles"
1205
+ msgstr "Disabilita l'amministrazione per i ruoli"
1206
+
1207
+ #: nextend-facebook-connect/admin/templates/settings/general.php:43
1208
+ msgid "Debug mode"
1209
+ msgstr "Modalità debug"
1210
+
1211
+ #: nextend-facebook-connect/admin/templates/settings/general.php:57
1212
+ msgid "Page for register flow"
1213
+ msgstr "Pagina per il flusso di registrazione"
1214
+
1215
+ #: nextend-facebook-connect/admin/templates/settings/general.php:67
1216
+ #: nextend-facebook-connect/admin/templates/settings/general.php:92
1217
+ msgid "None"
1218
+ msgstr "Nessuno"
1219
+
1220
+ #: nextend-facebook-connect/admin/templates/settings/general.php:75
1221
+ msgid ""
1222
+ "This setting is used when you request additional data from the users (such "
1223
+ "as email address) and to display the Terms and conditions."
1224
+ msgstr ""
1225
+ "Questo settaggio è usato quando richiedi più informazioni dagli utenti (come "
1226
+ "l'indirizzo email) per mostrare i Termini e condizioni."
1227
+
1228
+ #: nextend-facebook-connect/admin/templates/settings/general.php:76
1229
+ #, php-format
1230
+ msgid ""
1231
+ "%2$s First create a new page and insert the following shortcode: %1$s then "
1232
+ "select this page above"
1233
+ msgstr ""
1234
+ "%2$s Prima crea una nuova pagina e inserisci il seguente shortcode: %1$s, "
1235
+ "dopo seleziona una voce dal menù sopra"
1236
+
1237
+ #: nextend-facebook-connect/admin/templates/settings/general.php:76
1238
+ #: nextend-facebook-connect/admin/templates/settings/general.php:102
1239
+ msgid "Usage:"
1240
+ msgstr "Utilizzo:"
1241
+
1242
+ #: nextend-facebook-connect/admin/templates/settings/general.php:77
1243
+ #: nextend-facebook-connect/admin/templates/settings/general.php:103
1244
+ #, php-format
1245
+ msgid ""
1246
+ "%1$s You won't be able to reach the selected page unless a social login/"
1247
+ "registration happens."
1248
+ msgstr ""
1249
+ "%1$s Non potrai raggiungere la pagina selezionata fino a quando un login, o "
1250
+ "un accesso social non avvengono."
1251
+
1252
+ #: nextend-facebook-connect/admin/templates/settings/general.php:77
1253
+ #: nextend-facebook-connect/admin/templates/settings/general.php:103
1254
+ msgid "Important:"
1255
+ msgstr "Importante:"
1256
+
1257
+ #: nextend-facebook-connect/admin/templates/settings/general.php:81
1258
+ msgid "OAuth redirect uri proxy page"
1259
+ msgstr "Pagina proxy OAuth redirect uri"
1260
+
1261
+ #: nextend-facebook-connect/admin/templates/settings/general.php:101
1262
+ msgid ""
1263
+ "You can use this setting when wp-login.php page is not available to handle "
1264
+ "the OAuth flow."
1265
+ msgstr ""
1266
+ "Puoi usare questo settaggio quando wp-login.php non è disponibile per "
1267
+ "gestire il flusso OAuth."
1268
+
1269
+ #: nextend-facebook-connect/admin/templates/settings/general.php:102
1270
+ #, php-format
1271
+ msgid "%1$s First create a new page then select this page above."
1272
+ msgstr "%1$s Crea una nuova pagina e poi una voce dal menù sopra."
1273
+
1274
+ #: nextend-facebook-connect/admin/templates/settings/general.php:109
1275
+ msgid "Prevent external redirect overrides"
1276
+ msgstr "Impedisci overrides di redirect esterni"
1277
+
1278
+ #: nextend-facebook-connect/admin/templates/settings/general.php:115
1279
+ msgid "Disable external redirects"
1280
+ msgstr "Disabilita redirect esterni"
1281
+
1282
+ #: nextend-facebook-connect/admin/templates/settings/general.php:122
1283
+ msgid "Default redirect url"
1284
+ msgstr "Url di redirect default"
1285
+
1286
+ #: nextend-facebook-connect/admin/templates/settings/general.php:135
1287
+ #: nextend-facebook-connect/admin/templates/settings/general.php:173
1288
+ msgid "for Login"
1289
+ msgstr "per Accedere"
1290
+
1291
+ #: nextend-facebook-connect/admin/templates/settings/general.php:150
1292
+ #: nextend-facebook-connect/admin/templates/settings/general.php:188
1293
+ msgid "for Register"
1294
+ msgstr "per Regisstrarsi"
1295
+
1296
+ #: nextend-facebook-connect/admin/templates/settings/general.php:160
1297
+ msgid "Fixed redirect url"
1298
+ msgstr "Url di redirect fissa"
1299
+
1300
+ #: nextend-facebook-connect/admin/templates/settings/general.php:197
1301
+ msgid "Blacklisted redirects"
1302
+ msgstr "Redirect in blacklist"
1303
+
1304
+ #: nextend-facebook-connect/admin/templates/settings/general.php:203
1305
+ msgid "If you want to blacklist redirect url params. One pattern per line."
1306
+ msgstr ""
1307
+ "Se vuoi mettere in blacklist dei parametri url. Inserisci un pattern per "
1308
+ "linea."
1309
+
1310
+ #: nextend-facebook-connect/admin/templates/settings/general.php:208
1311
+ msgid "Support login restrictions"
1312
+ msgstr "Restrizioni al login"
1313
+
1314
+ #: nextend-facebook-connect/admin/templates/settings/general.php:218
1315
+ #, php-format
1316
+ msgid "Please visit to our %1$s to check what plugins are supported!"
1317
+ msgstr "Per favore, visita %1$s per verificare quali plugins sono supportati!"
1318
+
1319
+ #: nextend-facebook-connect/admin/templates/settings/general.php:223
1320
+ msgid "Display avatars in \"All media items\""
1321
+ msgstr "Mostra avatars in \"Libreria Media\""
1322
+
1323
+ #: nextend-facebook-connect/admin/templates/settings/general.php:233
1324
+ msgid ""
1325
+ "Enabling this option can speed up loading images in Media Library - Grid "
1326
+ "view!"
1327
+ msgstr ""
1328
+ "Abilitando questa opzione potrai velocizzare il caricamento delle immagini "
1329
+ "nella Libreria Media - vista a Griglia!"
1330
+
1331
+ #: nextend-facebook-connect/admin/templates/settings/general.php:238
1332
+ msgid "Membership"
1333
+ msgstr "Abbonamento"
1334
+
1335
+ #: nextend-facebook-connect/admin/templates/settings/general.php:251
1336
+ msgid "Allow registration with Social login."
1337
+ msgstr "Consenti la registrazione con Social login."
1338
+
1339
+ #: nextend-facebook-connect/admin/templates/settings/general.php:256
1340
+ #, fuzzy
1341
+ #| msgid "Page for register flow"
1342
+ msgid "Custom label for register buttons"
1343
+ msgstr "Pagina per il flusso di registrazione"
1344
+
1345
+ #: nextend-facebook-connect/admin/templates/settings/general.php:266
1346
+ #, php-format
1347
+ msgid ""
1348
+ "Set a custom label for the social buttons in registration forms and for "
1349
+ "shortcodes with %1$s parameter set to %2$s.<br>The register specific labels "
1350
+ "can be modified at the Buttons tab of each provider."
1351
+ msgstr ""
1352
+
1353
+ #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:29
1354
+ #: nextend-facebook-connect/admin/templates/settings/memberpress.php:33
1355
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:33
1356
+ #: nextend-facebook-connect/admin/templates/settings/userpro.php:45
1357
+ msgid "Login form button style"
1358
+ msgstr "Stile del bottone del form di login"
1359
+
1360
+ #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:66
1361
+ msgid "Below and floating"
1362
+ msgstr "Sotto e fluttuante"
1363
+
1364
+ #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:85
1365
+ msgid "Embedded Login form button style"
1366
+ msgstr "Stile del bottone del form di login incorporato"
1367
+
1368
+ #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:104
1369
+ msgid "Embedded Login layout"
1370
+ msgstr "Layout del login incorporato"
1371
+
1372
+ #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:135
1373
+ msgid "Embedded login form button alignment"
1374
+ msgstr "Allineamento del bottone del login incorporato"
1375
+
1376
+ #: nextend-facebook-connect/admin/templates/settings/login-form.php:22
1377
+ #: nextend-facebook-connect/includes/userData.php:137
1378
+ msgid "Registration Form"
1379
+ msgstr "Form di Registrazione"
1380
+
1381
+ #: nextend-facebook-connect/admin/templates/settings/login-form.php:36
1382
+ msgid "Embedded login form"
1383
+ msgstr "Form di login incorporato"
1384
+
1385
+ #: nextend-facebook-connect/admin/templates/settings/memberpress.php:23
1386
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:23
1387
+ msgid "No Connect button in Login form"
1388
+ msgstr "Non connettere bottone nel form di Login"
1389
+
1390
+ #: nextend-facebook-connect/admin/templates/settings/memberpress.php:26
1391
+ #: nextend-facebook-connect/admin/templates/settings/memberpress.php:92
1392
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:26
1393
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:92
1394
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:46
1395
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:51
1396
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:104
1397
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:109
1398
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:162
1399
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:167
1400
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:173
1401
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:179
1402
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:241
1403
+ msgid "Connect button on"
1404
+ msgstr "Connetti bottone a"
1405
+
1406
+ #: nextend-facebook-connect/admin/templates/settings/memberpress.php:84
1407
+ msgid "Sign Up form"
1408
+ msgstr "Form di Iscrizione"
1409
+
1410
+ #: nextend-facebook-connect/admin/templates/settings/memberpress.php:89
1411
+ msgid "No Connect button in Sign Up form"
1412
+ msgstr ""
1413
+
1414
+ #: nextend-facebook-connect/admin/templates/settings/memberpress.php:99
1415
+ msgid "Sign Up form button style"
1416
+ msgstr "Stile del bottone Iscriviti"
1417
+
1418
+ #: nextend-facebook-connect/admin/templates/settings/memberpress.php:118
1419
+ msgid "Sign Up layout"
1420
+ msgstr "Layout di Iscrizione"
1421
+
1422
+ #: nextend-facebook-connect/admin/templates/settings/memberpress.php:150
1423
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:150
1424
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:284
1425
+ msgid "Account details"
1426
+ msgstr "Dettagli account"
1427
+
1428
+ #: nextend-facebook-connect/admin/templates/settings/memberpress.php:155
1429
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:155
1430
+ msgid "No link buttons"
1431
+ msgstr "Non collegare bottoni"
1432
+
1433
+ #: nextend-facebook-connect/admin/templates/settings/memberpress.php:158
1434
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:158
1435
+ msgid "Link buttons after account details"
1436
+ msgstr "Collega bottoni dopo i dettagli dell'account"
1437
+
1438
+ #: nextend-facebook-connect/admin/templates/settings/privacy.php:6
1439
+ #: nextend-facebook-connect/nextend-social-login.php:148
1440
+ msgid ""
1441
+ "By clicking Register, you accept our <a href=\"#privacy_policy_url\" target="
1442
+ "\"_blank\">Privacy Policy</a>"
1443
+ msgstr ""
1444
+ "Cliccando su Registrati, accetti la nostra <a href=\"#privacy_policy_url\" "
1445
+ "target=\"_blank\">Privacy Policy</a>"
1446
+
1447
+ #: nextend-facebook-connect/admin/templates/settings/privacy.php:59
1448
+ msgid "Store"
1449
+ msgstr "Memorizza"
1450
+
1451
+ #: nextend-facebook-connect/admin/templates/settings/privacy.php:65
1452
+ msgid "First and last name"
1453
+ msgstr "Nome e cognome"
1454
+
1455
+ #: nextend-facebook-connect/admin/templates/settings/privacy.php:68
1456
+ msgid "When not enabled, username will be randomly generated."
1457
+ msgstr "Quando non abilitato, lo username sarà generato casualmente."
1458
+
1459
+ #: nextend-facebook-connect/admin/templates/settings/privacy.php:78
1460
+ #: nextend-social-login-pro/class-provider-extension.php:322
1461
+ msgid "Email"
1462
+ msgstr "Email"
1463
+
1464
+ #: nextend-facebook-connect/admin/templates/settings/privacy.php:81
1465
+ msgid "When not enabled, email will be empty."
1466
+ msgstr "Quando non abilitato, l'email sarà vuota."
1467
+
1468
+ #: nextend-facebook-connect/admin/templates/settings/privacy.php:91
1469
+ #: nextend-facebook-connect/includes/avatar.php:49
1470
+ msgid "Avatar"
1471
+ msgstr "Avatar"
1472
+
1473
+ #: nextend-facebook-connect/admin/templates/settings/privacy.php:102
1474
+ #: nextend-facebook-connect/includes/provider.php:1100
1475
+ msgid "Access token"
1476
+ msgstr "Token d'accesso"
1477
+
1478
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:89
1479
+ msgid "No Connect button in Register form"
1480
+ msgstr ""
1481
+
1482
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:99
1483
+ #: nextend-facebook-connect/admin/templates/settings/userpro.php:96
1484
+ msgid "Register form button style"
1485
+ msgstr "Stile del bottone del form registrati"
1486
+
1487
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:118
1488
+ #: nextend-facebook-connect/admin/templates/settings/userpro.php:115
1489
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:116
1490
+ msgid "Register layout"
1491
+ msgstr "Layout registrazione"
1492
+
1493
+ #: nextend-facebook-connect/admin/templates/settings/userpro.php:31
1494
+ msgid "Register Form"
1495
+ msgstr "Form di Registrazione"
1496
+
1497
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:43
1498
+ msgid "No Connect button in login form"
1499
+ msgstr ""
1500
+
1501
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:101
1502
+ msgid "No Connect button in register form"
1503
+ msgstr ""
1504
+
1505
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:154
1506
+ msgid "Billing form"
1507
+ msgstr "Form pagamento"
1508
+
1509
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:159
1510
+ msgid "No Connect button in billing form"
1511
+ msgstr ""
1512
+
1513
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:187
1514
+ msgid "Billing layout"
1515
+ msgstr "Layout accesso"
1516
+
1517
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:199
1518
+ msgid "Default with separator"
1519
+ msgstr "Default con separatore"
1520
+
1521
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:233
1522
+ msgid "Checkout for WooCommerce"
1523
+ msgstr "Checkout per WooCommerce"
1524
+
1525
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:238
1526
+ msgid "No Connect button in \"Checkout for WooCommerce\" form"
1527
+ msgstr ""
1528
+
1529
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:249
1530
+ msgid "Checkout for WooCommerce layout"
1531
+ msgstr ""
1532
+
1533
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:289
1534
+ msgid "No Connect buttons in account details form"
1535
+ msgstr ""
1536
+
1537
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:292
1538
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:297
1539
+ msgid "Link buttons on"
1540
+ msgstr "Collega bottoni a"
1541
+
1542
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:323
1543
+ #, fuzzy
1544
+ #| msgid "Ask E-mail on registration"
1545
+ msgid "Email template for registration"
1546
+ msgstr "Chiedi E-mail alla registrazione"
1547
+
1548
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:328
1549
+ #, fuzzy
1550
+ #| msgid "WordPress default"
1551
+ msgid "WordPress default notification"
1552
+ msgstr "Default WordPress"
1553
+
1554
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:331
1555
+ #, fuzzy
1556
+ #| msgid "Registration notification sent to"
1557
+ msgid "WooCommerce registration notification"
1558
+ msgstr "Invia notifica di registrazione a"
1559
+
1560
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:333
1561
+ #, php-format
1562
+ msgid ""
1563
+ "Defines whether the registration with %1$s will send the same registration "
1564
+ "notification that %2$s does, instead of the %3$s default one."
1565
+ msgstr ""
1566
+
1567
+ #: nextend-facebook-connect/admin/templates/test-connection.php:42
1568
+ #, php-format
1569
+ msgid "Network connection successful: %1$s"
1570
+ msgstr "Connessione alla rete riuscita: %1$s"
1571
+
1572
+ #: nextend-facebook-connect/admin/templates/test-connection.php:49
1573
+ #, php-format
1574
+ msgid "Network connection failed: %1$s"
1575
+ msgstr "Connessione alla rete fallita: %1$s"
1576
+
1577
+ #: nextend-facebook-connect/admin/templates/test-connection.php:52
1578
+ msgid ""
1579
+ "Please contact with your hosting provider to resolve the network issue "
1580
+ "between your server and the provider."
1581
+ msgstr ""
1582
+ "Gentilmente contatta il tuo hosting provider per risolvere i problemi di "
1583
+ "connettività fra il tuo server e il provider."
1584
+
1585
+ #: nextend-facebook-connect/includes/avatar.php:50
1586
+ msgid "Manage Avatar"
1587
+ msgstr "Gestisci Avatar"
1588
+
1589
+ #: nextend-facebook-connect/includes/avatar.php:51
1590
+ #, php-format
1591
+ msgid "Avatar <span class=\"count\">(%s)</span>"
1592
+ msgid_plural "Avatar <span class=\"count\">(%s)</span>"
1593
+ msgstr[0] "Avatar <span class=\"count\">(%s)</span>"
1594
+ msgstr[1] "Avatar <span class=\"count\">(%s)</span>"
1595
+
1596
+ #: nextend-facebook-connect/includes/compat-wp-login.php:63
1597
+ #, php-format
1598
+ msgid "%1$s &lsaquo; %2$s &#8212; WordPress"
1599
+ msgstr "%1$s &lsaquo; %2$s &#8212; WordPress"
1600
+
1601
+ #: nextend-facebook-connect/includes/compat-wp-login.php:129
1602
+ msgid "https://wordpress.org/"
1603
+ msgstr "https://wordpress.org/"
1604
+
1605
+ #: nextend-facebook-connect/includes/compat-wp-login.php:130
1606
+ msgid "Powered by WordPress"
1607
+ msgstr "Powered by WordPress"
1608
+
1609
+ #: nextend-facebook-connect/includes/compat-wp-login.php:284
1610
+ #, php-format
1611
+ msgctxt "site"
1612
+ msgid "&larr; Back to %s"
1613
+ msgstr "&larr; Indietro a %s"
1614
+
1615
+ #: nextend-facebook-connect/includes/provider-admin.php:199
1616
+ msgid "Your configuration needs to be verified"
1617
+ msgstr "La tua configurazione deve essere verificata"
1618
+
1619
+ #: nextend-facebook-connect/includes/provider-admin.php:200
1620
+ msgid ""
1621
+ "Before you can start letting your users register with your app it needs to "
1622
+ "be tested. This test makes sure that no users will have troubles with the "
1623
+ "login and registration process. <br> If you see error message in the popup "
1624
+ "check the copied ID and secret or the app itself. Otherwise your settings "
1625
+ "are fine."
1626
+ msgstr ""
1627
+ "Prima di consentire ai tuoi utenti di registrarsi con la tua app è "
1628
+ "necessario che venga testata. Questo test verifica che nessun utente abbia "
1629
+ "problemi col processo di login e registrazione. <br> Se vedi errori nel "
1630
+ "popup verifica l'ID copiato e la secret o l'app stessa. Altrimenti i tuoi "
1631
+ "settaggi sono corretti."
1632
+
1633
+ #: nextend-facebook-connect/includes/provider-admin.php:206
1634
+ msgid "Please save your changes to verify settings."
1635
+ msgstr "Per favore salva le tue modifiche per verificare i settaggi."
1636
+
1637
+ #: nextend-facebook-connect/includes/provider-admin.php:214
1638
+ msgid "Works Fine"
1639
+ msgstr "Funziona Bene"
1640
+
1641
+ #: nextend-facebook-connect/includes/provider-admin.php:228
1642
+ #, php-format
1643
+ msgid ""
1644
+ "This provider is currently disabled, which means that users can’t register "
1645
+ "or login via their %s account."
1646
+ msgstr ""
1647
+ "Questo provider è correntemente disabilitato, e significa che gli utenti non "
1648
+ "possono registrarsi o accedere mediante il loro account %s."
1649
+
1650
+ #: nextend-facebook-connect/includes/provider-admin.php:231
1651
+ #, php-format
1652
+ msgid ""
1653
+ "This provider works fine, but you can test it again. If you don’t want to "
1654
+ "let users register or login with %s anymore you can disable it."
1655
+ msgstr ""
1656
+ "Questo provider funziona bene, ma puoi testarlo di nuovo. Se non vuoi che "
1657
+ "gli utenti si registrino o accedano ancora con %s puoi disabilitarlo."
1658
+
1659
+ #: nextend-facebook-connect/includes/provider-admin.php:234
1660
+ #, php-format
1661
+ msgid ""
1662
+ "This provider is currently enabled, which means that users can register or "
1663
+ "login via their %s account."
1664
+ msgstr ""
1665
+ "Questo provider è correntemente abilitato, significa che gli utenti possono "
1666
+ "registrarsi o accedere mediante i loro account %s."
1667
+
1668
+ #: nextend-facebook-connect/includes/provider-admin.php:242
1669
+ msgid "Verify Settings Again"
1670
+ msgstr "Verifica nuovamente le impostazioni"
1671
+
1672
+ #: nextend-facebook-connect/includes/provider-admin.php:243
1673
+ msgid "Please save your changes before verifying settings."
1674
+ msgstr "Per favore salva le tue modifiche prima di verificare le impostazioni."
1675
+
1676
+ #: nextend-facebook-connect/includes/provider.php:358
1677
+ #: nextend-facebook-connect/includes/provider.php:717
1678
+ #: nextend-facebook-connect/includes/provider.php:725
1679
+ msgid "Authentication successful"
1680
+ msgstr "Autenticazione riuscita"
1681
+
1682
+ #: nextend-facebook-connect/includes/provider.php:654
1683
+ #: nextend-facebook-connect/includes/user.php:168
1684
+ #: nextend-facebook-connect/includes/user.php:597
1685
+ msgid "Authentication error"
1686
+ msgstr "Errore di autenticazione"
1687
+
1688
+ #: nextend-facebook-connect/includes/provider.php:669
1689
+ msgid "Unlink successful."
1690
+ msgstr "Scollegamento riuscito."
1691
+
1692
+ #: nextend-facebook-connect/includes/provider.php:671
1693
+ msgid "Unlink is not allowed!"
1694
+ msgstr "Lo scollegamento non è consentito!"
1695
+
1696
+ #: nextend-facebook-connect/includes/provider.php:886
1697
+ #: nextend-facebook-connect/includes/provider.php:893
1698
+ msgid "The test was successful"
1699
+ msgstr "Il test è riuscito"
1700
+
1701
+ #: nextend-facebook-connect/includes/provider.php:939
1702
+ msgid "Authentication failed"
1703
+ msgstr "Autenticazione fallita"
1704
+
1705
+ #: nextend-facebook-connect/includes/provider.php:1092
1706
+ msgid "Identifier"
1707
+ msgstr "Identificatore"
1708
+
1709
+ #: nextend-facebook-connect/includes/provider.php:1108
1710
+ msgid "Profile picture"
1711
+ msgstr "Immagine del profilo"
1712
+
1713
+ #: nextend-facebook-connect/includes/user.php:74
1714
+ #, php-format
1715
+ msgid ""
1716
+ "Your %1$s account is successfully linked with your account. Now you can sign "
1717
+ "in with %2$s easily."
1718
+ msgstr ""
1719
+ "Il tuo account %1$s è correttamente collegato al tuo account. Adesso puoi "
1720
+ "accedere facilmente con %2$s."
1721
+
1722
+ #: nextend-facebook-connect/includes/user.php:77
1723
+ #, fuzzy, php-format
1724
+ #| msgid ""
1725
+ #| "You have already linked a(n) %s account. Please unlink the current and "
1726
+ #| "then you can link other %s account."
1727
+ msgid ""
1728
+ "You have already linked a(n) %s account. Please unlink the current and then "
1729
+ "you can link another %s account."
1730
+ msgstr ""
1731
+ "Hai già collegato un account %s. Per favore scollega quello corrente e "
1732
+ "potrai successivamente collegarne un altro a %s."
1733
+
1734
+ #: nextend-facebook-connect/includes/user.php:82
1735
+ #, fuzzy, php-format
1736
+ #| msgid "This %s account is already linked to other user."
1737
+ msgid "This %s account is already linked to another user."
1738
+ msgstr "Questo account %s è già collegato ad un altro utente."
1739
+
1740
+ #: nextend-facebook-connect/includes/user.php:128
1741
+ msgid "User registration is currently not allowed."
1742
+ msgstr "La registrazione dell'utente non è al momento consentita."
1743
+
1744
+ #: nextend-facebook-connect/includes/userData.php:137
1745
+ msgid "Register For This Site!"
1746
+ msgstr "Registrati per questo sito!"
1747
+
1748
+ #: nextend-facebook-connect/nextend-facebook-connect.php:37
1749
+ #, php-format
1750
+ msgid "%1$s requires PHP version %2$s+, plugin is currently NOT ACTIVE."
1751
+ msgstr ""
1752
+ "%1$s richiede una versione PHP %2$s+, il plugin al momento NON È ATTIVO."
1753
+
1754
+ #: nextend-facebook-connect/nextend-facebook-connect.php:44
1755
+ #, php-format
1756
+ msgid ""
1757
+ "%1$s requires WordPress version %2$s+. Because you are using an earlier "
1758
+ "version, the plugin is currently NOT ACTIVE."
1759
+ msgstr ""
1760
+ "%1$s richiede la versione di WordPress %2$s+. Dato che stai usando una "
1761
+ "versione precedente, il plugin al momento NON È ATTIVO."
1762
+
1763
+ #: nextend-facebook-connect/nextend-social-login.php:56
1764
+ #: nextend-facebook-connect/nextend-social-login.php:63
1765
+ #, php-format
1766
+ msgid "Please update %1$s to version %2$s or newer."
1767
+ msgstr "Please update %1$s to version %2$s or newer."
1768
+
1769
+ #: nextend-facebook-connect/nextend-social-login.php:56
1770
+ #: nextend-facebook-connect/nextend-social-login.php:63
1771
+ msgid "Update now!"
1772
+ msgstr "Aggiorna adesso!"
1773
+
1774
+ #: nextend-facebook-connect/nextend-social-login.php:762
1775
+ #: nextend-facebook-connect/nextend-social-login.php:1140
1776
+ msgid "Social Login"
1777
+ msgstr "Social Login"
1778
+
1779
+ #: nextend-facebook-connect/nextend-social-login.php:1121
1780
+ msgid "Social Accounts"
1781
+ msgstr "Account Social"
1782
+
1783
+ #: nextend-facebook-connect/providers/facebook/admin/buttons.php:2
1784
+ #: nextend-facebook-connect/providers/google/admin/buttons.php:2
1785
+ #: nextend-social-login-pro/providers/apple/admin/buttons.php:2
1786
+ msgid "Button skin"
1787
+ msgstr "Skin del bottone"
1788
+
1789
+ #: nextend-facebook-connect/providers/facebook/admin/buttons.php:8
1790
+ #: nextend-facebook-connect/providers/google/admin/buttons.php:8
1791
+ #: nextend-social-login-pro/providers/apple/admin/buttons.php:14
1792
+ msgid "Dark"
1793
+ msgstr "Scuro"
1794
+
1795
+ #: nextend-facebook-connect/providers/facebook/admin/buttons.php:14
1796
+ #: nextend-facebook-connect/providers/google/admin/buttons.php:14
1797
+ #: nextend-social-login-pro/providers/apple/admin/buttons.php:8
1798
+ msgid "Light"
1799
+ msgstr "Chiaro"
1800
+
1801
+ #: nextend-facebook-connect/providers/facebook/admin/buttons.php:20
1802
+ msgid "Black"
1803
+ msgstr "Nero"
1804
+
1805
+ #: nextend-facebook-connect/providers/facebook/admin/buttons.php:26
1806
+ msgid "White"
1807
+ msgstr "Bianco"
1808
+
1809
+ #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:8
1810
+ #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:8
1811
+ #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:8
1812
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:16
1813
+ #: nextend-social-login-pro/providers/yahoo/admin/fix-redirect-uri.php:8
1814
+ #, php-format
1815
+ msgid "Navigate to <b>%s</b>"
1816
+ msgstr "Naviga in <b>%s</b>"
1817
+
1818
+ #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:9
1819
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:25
1820
+ #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:9
1821
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:17
1822
+ #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:9
1823
+ #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:9
1824
+ #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:20
1825
+ #: nextend-social-login-pro/providers/github/admin/fix-redirect-uri.php:9
1826
+ #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:9
1827
+ #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:16
1828
+ #: nextend-social-login-pro/providers/vk/admin/fix-redirect-uri.php:9
1829
+ #: nextend-social-login-pro/providers/yahoo/admin/fix-redirect-uri.php:9
1830
+ #, php-format
1831
+ msgid "Log in with your %s credentials if you are not logged in"
1832
+ msgstr "Accedi con le tue credenziali %s se non sei loggato"
1833
+
1834
+ #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:10
1835
+ #, php-format
1836
+ msgid "Click on the App with App ID: <b>%s</b>"
1837
+ msgstr "Clicca sull'App con l'App ID: <b>%s</b>"
1838
+
1839
+ #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:11
1840
+ msgid "In the left sidebar, click on \"<b>Facebook Login > Settings</b>\""
1841
+ msgstr ""
1842
+ "Sulla barra laterale clicca clicca su \"<b>Accesso Facebook > Impostazioni</"
1843
+ "b>\""
1844
+
1845
+ #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:12
1846
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:35
1847
+ #, php-format
1848
+ msgid ""
1849
+ "Add the following URL to the \"<b>Valid OAuth redirect URIs</b>\" field: <b>"
1850
+ "%s</b>"
1851
+ msgstr ""
1852
+ "Aggiungi l'URL seguente al campo \"<b>Valid OAuth redirect URIs</b>\": <b>"
1853
+ "%s</b>"
1854
+
1855
+ #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:13
1856
+ msgid "Click on \"<b>Save Changes</b>\""
1857
+ msgstr "Clicca su \"<b>Salva Modifiche</b>\""
1858
+
1859
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:11
1860
+ #: nextend-facebook-connect/providers/facebook/admin/settings.php:13
1861
+ #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:11
1862
+ #: nextend-social-login-pro/providers/apple/admin/getting-started.php:22
1863
+ #, php-format
1864
+ msgid ""
1865
+ "%1$s allows HTTPS OAuth Redirects only. You must move your site to HTTPS in "
1866
+ "order to allow login with %1$s."
1867
+ msgstr ""
1868
+ "%1$s consenti solo HTTPS OAuth Redirects. Devi portare il tuo sito a HTTPS "
1869
+ "per potere accedere con %1$s."
1870
+
1871
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:13
1872
+ #: nextend-facebook-connect/providers/facebook/admin/settings.php:15
1873
+ #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:13
1874
+ #: nextend-social-login-pro/providers/apple/admin/getting-started.php:24
1875
+ msgid "How to get SSL for my WordPress site?"
1876
+ msgstr "Come ottenere l'SSL per il mio sito WordPress?"
1877
+
1878
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:19
1879
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:11
1880
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:11
1881
+ #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:10
1882
+ #: nextend-social-login-pro/providers/vk/admin/getting-started.php:10
1883
+ #, php-format
1884
+ msgid ""
1885
+ "To allow your visitors to log in with their %1$s account, first you must "
1886
+ "create a %1$s App. The following guide will help you through the %1$s App "
1887
+ "creation process. After you have created your %1$s App, head over to "
1888
+ "\"Settings\" and configure the given \"%2$s\" and \"%3$s\" according to your "
1889
+ "%1$s App."
1890
+ msgstr ""
1891
+ "Per consentire ai tuoi visitatori di accedere con il loro account %1$s, per "
1892
+ "primo dovrai creare un'App %1$s. La seguente guida ti aiuterà attraverso il "
1893
+ "processo di creazione di un'App %1$s. Dopo avere creato la tua App %1$s, vai "
1894
+ "su \"Impostazioni\" e configura il \"%2$s\" ottenuto e \"%3$s\" secondo la "
1895
+ "tua App %1$s."
1896
+
1897
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:21
1898
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:13
1899
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:13
1900
+ #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:21
1901
+ #: nextend-social-login-pro/providers/apple/admin/getting-started.php:32
1902
+ #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:12
1903
+ #: nextend-social-login-pro/providers/github/admin/getting-started.php:12
1904
+ #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:12
1905
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:12
1906
+ #: nextend-social-login-pro/providers/vk/admin/getting-started.php:12
1907
+ #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:12
1908
+ #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:13
1909
+ #, php-format
1910
+ msgctxt "App creation"
1911
+ msgid "Create %s"
1912
+ msgstr "Crea %s"
1913
+
1914
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:24
1915
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:16
1916
+ #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:8
1917
+ #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:24
1918
+ #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:19
1919
+ #: nextend-social-login-pro/providers/apple/admin/getting-started.php:37
1920
+ #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:8
1921
+ #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:15
1922
+ #: nextend-social-login-pro/providers/github/admin/fix-redirect-uri.php:8
1923
+ #: nextend-social-login-pro/providers/github/admin/getting-started.php:15
1924
+ #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:8
1925
+ #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:15
1926
+ #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:8
1927
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:16
1928
+ #: nextend-social-login-pro/providers/vk/admin/fix-redirect-uri.php:8
1929
+ #: nextend-social-login-pro/providers/vk/admin/getting-started.php:15
1930
+ #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:8
1931
+ #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:15
1932
+ #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:16
1933
+ #, php-format
1934
+ msgid "Navigate to %s"
1935
+ msgstr "Naviga a %s"
1936
+
1937
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:26
1938
+ #, fuzzy
1939
+ #| msgid ""
1940
+ #| "Click on the \"<b>Create an App</b>\" button on the top right corner."
1941
+ msgid ""
1942
+ "Click on the \"<b>Create App</b>\" button and in the Popup choose the "
1943
+ "\"<b>Build Connected Experiences</b>\" option!"
1944
+ msgstr ""
1945
+ "Clicca sul bottone \"<b>Crea un'App</b>\" nell'angolo in alto a destra."
1946
+
1947
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:27
1948
+ msgid ""
1949
+ "If you see the message \"<b>Become a Facebook Developer</b>\", then you need "
1950
+ "to click on the green \"<b>Register Now</b>\" button, fill the form then "
1951
+ "finally verify your account."
1952
+ msgstr ""
1953
+ "Se vedi il messaggio \"<b>Diventa uno Sviluppatore Facebook</b>\", dovrai "
1954
+ "cliccare sul bottone verde \"<b>Registrati Adesso</b>\", compilare il form "
1955
+ "ed infine verificare il tuo account."
1956
+
1957
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:28
1958
+ #, fuzzy, php-format
1959
+ #| msgid ""
1960
+ #| "Fill \"<b>Display Name</b>\" and \"<b>Contact Email</b>\". The specified "
1961
+ #| "\"Display Name\" will appear on your %s!"
1962
+ msgid ""
1963
+ "Fill \"<b>App Display Name</b>\", \"<b>App Contact Email</b>\". The "
1964
+ "specified \"App Display Name\" will appear on your %s!"
1965
+ msgstr ""
1966
+ "Compila \"<b>Nome mostrato</b>\" e \"<b>Email di contatto</b>\". Il \"Nome "
1967
+ "mostrato \" apparirà sulla tua %s!"
1968
+
1969
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:29
1970
+ msgid ""
1971
+ "<b>Optional</b>: choose a \"<b>Business Manager Account</b>\" in the popup, "
1972
+ "if you have any."
1973
+ msgstr ""
1974
+
1975
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:30
1976
+ msgid ""
1977
+ "Click the \"<b>Create App ID</b>\" button and complete the Security Check."
1978
+ msgstr ""
1979
+ "Clicca il bottone \"<b>Crea App ID</b>\" e completa la Verifica di Sicurezza."
1980
+
1981
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:31
1982
+ #, php-format
1983
+ msgid ""
1984
+ "At the \"<b>Add a Product</b>\" panel find \"<b>%1$s</b>\" and click "
1985
+ "\"<b>Set Up</b>\""
1986
+ msgstr ""
1987
+ "Nel pannello \"<b>Aggiungi un Prodotto</b>\" troverai \"<b>%1$s</b>\", "
1988
+ "clicca su \"<b>Set Up</b>\""
1989
+
1990
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:32
1991
+ #, php-format
1992
+ msgid ""
1993
+ "Select \"<b>Web</b>\" and enter the following URL to the \"<b>Site URL</b>\" "
1994
+ "field: <b>%s</b>"
1995
+ msgstr ""
1996
+ "Seleziona \"<b>Web</b>\" e inserisci la seguente URL nel campo \"<b>URL sito "
1997
+ "internet</b>\": <b>%s</b>"
1998
+
1999
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:33
2000
+ msgid "Press “<b>Save</b>”"
2001
+ msgstr "Premi “<b>Salva</b>”"
2002
+
2003
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:34
2004
+ #, php-format
2005
+ msgid ""
2006
+ "Click on the “<b>%1$s</b>” option what you find on the left side, under “<b>"
2007
+ "%2$s</b> - <b>%3$s</b>”"
2008
+ msgstr ""
2009
+ "Clicca sulla opzione “<b>%1$s</b>” che troverai sul lato sinistro, sotto“<b>"
2010
+ "%2$s</b> - <b>%3$s</b>”"
2011
+
2012
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:36
2013
+ msgid "Click on “<b>Save Changes</b>”"
2014
+ msgstr "Clicca su \"<b>Salva Modifiche</b>”"
2015
+
2016
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:37
2017
+ #, php-format
2018
+ msgid ""
2019
+ "On the top left side, click on the “<b>%1$s</b>” menu point, then click “<b>"
2020
+ "%2$s</b>”"
2021
+ msgstr ""
2022
+ "In alto a sinistra, clicca nel menù su “<b>%1$s</b>”, quindi clicca “<b>"
2023
+ "%2$s</b>”"
2024
+
2025
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:38
2026
+ #, php-format
2027
+ msgid ""
2028
+ "Enter your domain name to the \"<b>App Domains</b>\" field, probably: <b>%s</"
2029
+ "b>"
2030
+ msgstr ""
2031
+ "Inserisci il nome del tuo dominio nel campo \"<b>Domini App</b>\", "
2032
+ "probabilmente: <b>%s</b>"
2033
+
2034
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:39
2035
+ msgid ""
2036
+ "Fill up the \"<b>Privacy Policy URL</b>\" field. Provide a publicly "
2037
+ "available and easily accessible privacy policy that explains what data you "
2038
+ "are collecting and how you will use that data."
2039
+ msgstr ""
2040
+ "Inserisci l'\"<b>URL della Privacy Policy</b> nel campo\". Fornisci una "
2041
+ "privacy policy pubblica e facilmente accessibile, che spieghi quali "
2042
+ "informazioni stai raccogliendo e come le userai."
2043
+
2044
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:40
2045
+ msgid ""
2046
+ "At \"<b>User Data Deletion</b>\", choose the \"<b>Data Deletion Instructions "
2047
+ "URL</b>\" option, and enter the <i>URL of your page</i>* with the "
2048
+ "instructions on how users can delete their accounts on your site."
2049
+ msgstr ""
2050
+
2051
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:42
2052
+ msgid ""
2053
+ "To comply with GDPR, you should already offer possibility to delete accounts "
2054
+ "on your site, either by the user or by the admin:"
2055
+ msgstr ""
2056
+
2057
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:45
2058
+ msgid ""
2059
+ "<u>If each user has an option to delete the account</u>: the URL should "
2060
+ "point to a guide showing the way users can delete their accounts."
2061
+ msgstr ""
2062
+
2063
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:46
2064
+ msgid ""
2065
+ "<u>If the accounts are deleted by an admin</u>: then you should have a "
2066
+ "section - usually in the Privacy Policy - with the contact details, where "
2067
+ "users can send their account erasure requests. In this case the URL should "
2068
+ "point to this section of the document."
2069
+ msgstr ""
2070
+
2071
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:51
2072
+ #, fuzzy
2073
+ #| msgid ""
2074
+ #| "Select a “<b>Category</b>”, an “<b>App Icon</b>” and pick the "
2075
+ #| "“<b>Business Use</b>” option that describes your the App best, then press "
2076
+ #| "\"<b>Save Changes</b>\""
2077
+ msgid ""
2078
+ "Select a “<b>Category</b>”, an “<b>App Icon</b>” and pick the “<b>App "
2079
+ "Purpose</b>” option that describes your App the best, then press \"<b>Save "
2080
+ "Changes</b>\""
2081
+ msgstr ""
2082
+ "Seleziona una “<b>Categoria</b>”, una “<b>Icona dell'App</b>” e seleziona "
2083
+ "l'opzione “<b>Uso Commerciale</b>” che descriva al meglio la tua App, poi "
2084
+ "premi \"<b>Salva Modifiche</b>\""
2085
+
2086
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:52
2087
+ msgid ""
2088
+ "Your application is currently private, which means that only you can log in "
2089
+ "with it. In the top bar click on the switch next to the \"<b>In development</"
2090
+ "b>\" label, then click the \"<b>Switch Mode</b>\" button."
2091
+ msgstr ""
2092
+ "La tua applicazione è attualmente privata, che significa che solo tu puoi "
2093
+ "accedere con essa. Nella barra in alto clicca sullo switch all'etichetta "
2094
+ "\"<b>In sviluppo</b>\", quindi clicca il bottone \"<b>Cambia modalità</b>\"."
2095
+
2096
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:53
2097
+ msgid ""
2098
+ "At the top of the page you can find your \"<b>App ID</b>\" and you can see "
2099
+ "your \"<b>App secret</b>\" if you click on the \"Show\" button. These will "
2100
+ "be needed in plugin’s settings."
2101
+ msgstr ""
2102
+ "In cima alla pagina troverai la tua \"<b>App ID</b>\" e l'\"<b>App secret</b>"
2103
+ "\" se clicchi sul bottone \"Mostra\". Questi ti serviranno per la "
2104
+ "configurazione del plugin."
2105
+
2106
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:56
2107
+ #, php-format
2108
+ msgid ""
2109
+ "<b>WARNING:</b> <u>Don't replace your Facebook App with another!</u> Since "
2110
+ "WordPress users with linked Facebook accounts can only login using the %1$s "
2111
+ "App, that was originally used at the time, when the WordPress account was "
2112
+ "linked with a %1$s Account.<br>\n"
2113
+ "If you would like to know the reason of this, or you really need to replace "
2114
+ "the Facebook App, then please check our %2$sdocumentation%3$s."
2115
+ msgstr ""
2116
+
2117
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:60
2118
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:40
2119
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:37
2120
+ #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:39
2121
+ #: nextend-social-login-pro/providers/apple/admin/getting-started.php:122
2122
+ #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:30
2123
+ #: nextend-social-login-pro/providers/github/admin/getting-started.php:29
2124
+ #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:32
2125
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:33
2126
+ #: nextend-social-login-pro/providers/vk/admin/getting-started.php:30
2127
+ #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:30
2128
+ #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:29
2129
+ #, php-format
2130
+ msgid "I am done setting up my %s"
2131
+ msgstr "Ho completato l'impostazione della mia %s"
2132
+
2133
+ #: nextend-facebook-connect/providers/facebook/admin/settings.php:35
2134
+ #: nextend-social-login-pro/providers/vk/admin/settings.php:27
2135
+ msgid "App ID"
2136
+ msgstr "App ID"
2137
+
2138
+ #: nextend-facebook-connect/providers/facebook/admin/settings.php:36
2139
+ #: nextend-facebook-connect/providers/facebook/admin/settings.php:48
2140
+ #: nextend-facebook-connect/providers/google/admin/settings.php:28
2141
+ #: nextend-facebook-connect/providers/google/admin/settings.php:41
2142
+ #: nextend-facebook-connect/providers/twitter/admin/settings.php:28
2143
+ #: nextend-social-login-pro/providers/amazon/admin/settings.php:27
2144
+ #: nextend-social-login-pro/providers/amazon/admin/settings.php:39
2145
+ #: nextend-social-login-pro/providers/apple/admin/settings.php:79
2146
+ #: nextend-social-login-pro/providers/apple/admin/settings.php:90
2147
+ #: nextend-social-login-pro/providers/apple/admin/settings.php:99
2148
+ #: nextend-social-login-pro/providers/apple/admin/settings.php:107
2149
+ #: nextend-social-login-pro/providers/disqus/admin/settings.php:27
2150
+ #: nextend-social-login-pro/providers/disqus/admin/settings.php:39
2151
+ #: nextend-social-login-pro/providers/github/admin/settings.php:28
2152
+ #: nextend-social-login-pro/providers/github/admin/settings.php:40
2153
+ #: nextend-social-login-pro/providers/linkedin/admin/settings.php:27
2154
+ #: nextend-social-login-pro/providers/linkedin/admin/settings.php:39
2155
+ #: nextend-social-login-pro/providers/paypal/admin/settings.php:27
2156
+ #: nextend-social-login-pro/providers/paypal/admin/settings.php:39
2157
+ #: nextend-social-login-pro/providers/vk/admin/settings.php:28
2158
+ #: nextend-social-login-pro/providers/vk/admin/settings.php:40
2159
+ #: nextend-social-login-pro/providers/wordpress/admin/settings.php:27
2160
+ #: nextend-social-login-pro/providers/wordpress/admin/settings.php:39
2161
+ #: nextend-social-login-pro/providers/yahoo/admin/settings.php:27
2162
+ #: nextend-social-login-pro/providers/yahoo/admin/settings.php:39
2163
+ msgid "Required"
2164
+ msgstr "Richiesto"
2165
+
2166
+ #: nextend-facebook-connect/providers/facebook/admin/settings.php:41
2167
+ #: nextend-facebook-connect/providers/google/admin/settings.php:35
2168
+ #: nextend-facebook-connect/providers/twitter/admin/settings.php:33
2169
+ #: nextend-social-login-pro/providers/amazon/admin/settings.php:33
2170
+ #: nextend-social-login-pro/providers/apple/admin/settings.php:34
2171
+ #: nextend-social-login-pro/providers/apple/admin/settings.php:85
2172
+ #: nextend-social-login-pro/providers/disqus/admin/settings.php:33
2173
+ #: nextend-social-login-pro/providers/github/admin/settings.php:34
2174
+ #: nextend-social-login-pro/providers/linkedin/admin/settings.php:33
2175
+ #: nextend-social-login-pro/providers/paypal/admin/settings.php:33
2176
+ #: nextend-social-login-pro/providers/vk/admin/settings.php:34
2177
+ #: nextend-social-login-pro/providers/wordpress/admin/settings.php:33
2178
+ #: nextend-social-login-pro/providers/yahoo/admin/settings.php:33
2179
+ #, php-format
2180
+ msgid ""
2181
+ "If you are not sure what is your %1$s, please head over to <a href=\"%2$s"
2182
+ "\">Getting Started</a>"
2183
+ msgstr ""
2184
+ "Se non sei sicuro di quale sia il tuo %1$s, gentilmente vai su<a href=\"%2$s"
2185
+ "\">Inizia</a>"
2186
+
2187
+ #: nextend-facebook-connect/providers/facebook/admin/settings.php:47
2188
+ msgid "App Secret"
2189
+ msgstr "App Secret"
2190
+
2191
+ #: nextend-facebook-connect/providers/facebook/admin/settings.php:59
2192
+ #, php-format
2193
+ msgid ""
2194
+ "By replacing your existing %1$s App, users with linked %1$s accounts will no "
2195
+ "longer be able to login with %1$s."
2196
+ msgstr ""
2197
+
2198
+ #: nextend-facebook-connect/providers/facebook/admin/settings.php:61
2199
+ msgid "Find out why?"
2200
+ msgstr ""
2201
+
2202
+ #: nextend-facebook-connect/providers/facebook/facebook.php:85
2203
+ msgid "Continue with <b>Facebook</b>"
2204
+ msgstr "Continua con <b>Facebook</b>"
2205
+
2206
+ #: nextend-facebook-connect/providers/facebook/facebook.php:86
2207
+ #, fuzzy
2208
+ #| msgid "Continue with <b>Facebook</b>"
2209
+ msgid "Sign up with <b>Facebook</b>"
2210
+ msgstr "Continua con <b>Facebook</b>"
2211
+
2212
+ #: nextend-facebook-connect/providers/facebook/facebook.php:87
2213
+ msgid "Link account with <b>Facebook</b>"
2214
+ msgstr "Collega account con <b>Facebook</b>"
2215
+
2216
+ #: nextend-facebook-connect/providers/facebook/facebook.php:88
2217
+ msgid "Unlink account from <b>Facebook</b>"
2218
+ msgstr "Scollega account da <b>Facebook</b>"
2219
+
2220
+ #: nextend-facebook-connect/providers/facebook/facebook.php:188
2221
+ #: nextend-facebook-connect/providers/google/google.php:168
2222
+ #: nextend-facebook-connect/providers/twitter/twitter.php:97
2223
+ #: nextend-social-login-pro/providers/amazon/amazon.php:67
2224
+ #: nextend-social-login-pro/providers/apple/apple.php:131
2225
+ #: nextend-social-login-pro/providers/apple/apple.php:138
2226
+ #: nextend-social-login-pro/providers/disqus/disqus.php:114
2227
+ #: nextend-social-login-pro/providers/github/github.php:152
2228
+ #: nextend-social-login-pro/providers/linkedin/linkedin.php:65
2229
+ #: nextend-social-login-pro/providers/paypal/paypal.php:92
2230
+ #: nextend-social-login-pro/providers/vk/vk.php:63
2231
+ #: nextend-social-login-pro/providers/wordpress/wordpress.php:101
2232
+ #: nextend-social-login-pro/providers/yahoo/yahoo.php:92
2233
+ #, php-format
2234
+ msgid ""
2235
+ "The %1$s entered did not appear to be a valid. Please enter a valid %2$s."
2236
+ msgstr ""
2237
+ "Il %1$s inserito sembra non essere valido. Per favore inserisci un %2$s "
2238
+ "valido."
2239
+
2240
+ #: nextend-facebook-connect/providers/facebook/facebook.php:309
2241
+ #: nextend-social-login-pro/providers/paypal/paypal.php:172
2242
+ #, php-format
2243
+ msgid "Required scope: %1$s"
2244
+ msgstr "Campo richiesto: %1$s"
2245
+
2246
+ #: nextend-facebook-connect/providers/google/admin/buttons.php:20
2247
+ msgid "Uniform - Legacy"
2248
+ msgstr ""
2249
+
2250
+ #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:10
2251
+ msgid "Click on the \"<b>Credentials</b>\" in the left hand menu"
2252
+ msgstr "Clicca su \"<b>Credenziali</b>\" nel menù a sinistra"
2253
+
2254
+ #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:11
2255
+ #, php-format
2256
+ msgid ""
2257
+ "Under the \"<b>OAuth 2.0 Client IDs</b>\" section find your Client ID: <b>"
2258
+ "%s</b>"
2259
+ msgstr ""
2260
+ "Sotto la sezione \"<b>OAuth 2.0 Client IDs</b>\" trova il tuo Client ID: <b>"
2261
+ "%s</b>"
2262
+
2263
+ #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:12
2264
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:34
2265
+ #, php-format
2266
+ msgid ""
2267
+ "Add the following URL to the \"<b>Authorised redirect URIs</b>\" field: <b>"
2268
+ "%s</b>"
2269
+ msgstr ""
2270
+ "Aggiungi l'URL seguente al campo\"<b>Redirect URIs autorizzati</b>\": <b>%s</"
2271
+ "b>"
2272
+
2273
+ #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:13
2274
+ #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:13
2275
+ #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:14
2276
+ msgid "Click on \"<b>Save</b>\""
2277
+ msgstr "Clicca su \"<b>Salva</b>\""
2278
+
2279
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:18
2280
+ msgid ""
2281
+ "If you don't have a project yet, you'll need to create one. You can do this "
2282
+ "by clicking on the blue \"<b>Create</b>\" button on the right side! ( If "
2283
+ "you already have a project, click on the name of your project in the "
2284
+ "dashboard instead, which will bring up a modal and click <b>\"New Project\"</"
2285
+ "b>. )"
2286
+ msgstr ""
2287
+ "Se non hai ancora un progetto, avrai bisogno di crearne uno. Puoi farlo "
2288
+ "cliccando sul bottone blu \"<b>Crea</b>\" sul lato destro! ( Se già hai un "
2289
+ "progetto, clicca sul nome del tuo progetto sulla dashboard, ti apparità una "
2290
+ "finestra e dovri cliccare su <b>\"Nuovo Progetto\"</b>. )"
2291
+
2292
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:19
2293
+ msgid "Name your project and then click on the \"<b>Create</b>\" button again"
2294
+ msgstr ""
2295
+ "Inserisci un nome per il tuo progetto e poi clicca di nuovo sul bottone "
2296
+ "\"<b>Crea</b>\""
2297
+
2298
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:20
2299
+ msgid "Once you have a project, you'll end up in the dashboard."
2300
+ msgstr "Una volta ottenuto il progetto, ti troverai sulla dashboard."
2301
+
2302
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:21
2303
+ msgid "Click the “<b>OAuth consent screen</b>” button on the left hand side."
2304
+ msgstr "Clicca il bottone “<b>OAuth consent screen</b>” sulla sinistra."
2305
+
2306
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:22
2307
+ msgid ""
2308
+ "Choose a <b>User Type</b> according to your needs. If you want to enable the "
2309
+ "social login with Google for any users with a Google account, then pick the "
2310
+ "External option!"
2311
+ msgstr ""
2312
+ "Scegli un <b>Tipo Utente</b> secondo le tue necessità. Se vuoi attivare "
2313
+ "Social Login con Google per qualunque utente con un account Google, "
2314
+ "seleziona l'opzione Esterna!"
2315
+
2316
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:24
2317
+ #, php-format
2318
+ msgid ""
2319
+ "<b>Note:</b> We don't use sensitive or restricted scopes either. But if you "
2320
+ "will use this App for other purposes too, then you may need to go through an "
2321
+ "%1$s!"
2322
+ msgstr ""
2323
+
2324
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:27
2325
+ msgid ""
2326
+ "Enter a name for your App to the \"<b>Application name</b>\" field, which "
2327
+ "will appear as the name of the app asking for consent."
2328
+ msgstr ""
2329
+ "Inserisci un nome per la tua App nel campo \"<b>Nome applicazione</b>\", che "
2330
+ "apparirà come nome dell'app che chiede per il consenso."
2331
+
2332
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:28
2333
+ #, php-format
2334
+ msgid ""
2335
+ "Fill the \"<b>Authorized domains</b>\" field with your domain name probably: "
2336
+ "<b>%s</b> without subdomains!"
2337
+ msgstr ""
2338
+ "Compila il campo \"<b>Domini autorizzati</b>\" col tuo nome del tuo dominio, "
2339
+ "probabilmente: <b>%s</b> senza sottodomini!"
2340
+
2341
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:29
2342
+ msgid "Save your settings!"
2343
+ msgstr "Salva le impostazioni!"
2344
+
2345
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:30
2346
+ #, php-format
2347
+ msgid ""
2348
+ "On the left side, click on the \"<b>%1$s</b>\" menu point, then click the "
2349
+ "\"<b>%2$s</b>\" button in the top bar."
2350
+ msgstr ""
2351
+ "Sul lato sinistro, clicca nel menù su \"<b>%1$s</b>\", quindi clicca il "
2352
+ "bottone \"<b>%2$s</b>\" nella barra superiore."
2353
+
2354
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:31
2355
+ msgid "Choose the \"<b>OAuth client ID</b>\" option."
2356
+ msgstr "Scegli l'opzione \"<b>OAuth client ID</b>\"."
2357
+
2358
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:32
2359
+ msgid "Select the \"<b>Web application</b>\" under Application type."
2360
+ msgstr "Seleziona \"<b>Applicazione web</b>\" sotto Tipo di applicazione."
2361
+
2362
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:33
2363
+ msgid "Enter a \"<b>Name</b>\" for your OAuth client ID."
2364
+ msgstr "Inserisci un \"<b>Name</b>\" per il tuo OAuth client ID."
2365
+
2366
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:35
2367
+ msgid "Click on the \"<b>Create</b>\" button"
2368
+ msgstr "Clicca sul bottone \"<b>Crea</b>\""
2369
+
2370
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:36
2371
+ msgid ""
2372
+ "A modal should pop up with your credentials. If that doesn't happen, go to "
2373
+ "the Credentials in the left hand menu and select your app by clicking on its "
2374
+ "name and you'll be able to copy-paste the \"<b>Client ID</b>\" and "
2375
+ "\"<b>Client Secret</b>\" from there."
2376
+ msgstr ""
2377
+ "Una finestra modal dovrebbe comparire con le tue credenziali. Se questo non "
2378
+ "avvenisse, vai su Credenziali nel menù a sinistra e seleziona la tua app "
2379
+ "cliccando sul suo nome e sarai in grado di fare copia-incolla del "
2380
+ "\"<b>Client ID</b>\" e del \"<b>Client Secret</b>\" da lì."
2381
+
2382
+ #: nextend-facebook-connect/providers/google/admin/settings.php:27
2383
+ #: nextend-social-login-pro/providers/amazon/admin/settings.php:26
2384
+ #: nextend-social-login-pro/providers/apple/admin/settings.php:28
2385
+ #: nextend-social-login-pro/providers/github/admin/settings.php:27
2386
+ #: nextend-social-login-pro/providers/linkedin/admin/settings.php:26
2387
+ #: nextend-social-login-pro/providers/paypal/admin/settings.php:26
2388
+ #: nextend-social-login-pro/providers/wordpress/admin/settings.php:26
2389
+ #: nextend-social-login-pro/providers/yahoo/admin/settings.php:26
2390
+ msgid "Client ID"
2391
+ msgstr "Client ID"
2392
+
2393
+ #: nextend-facebook-connect/providers/google/admin/settings.php:40
2394
+ #: nextend-social-login-pro/providers/amazon/admin/settings.php:38
2395
+ #: nextend-social-login-pro/providers/apple/admin/settings.php:39
2396
+ #: nextend-social-login-pro/providers/github/admin/settings.php:39
2397
+ #: nextend-social-login-pro/providers/linkedin/admin/settings.php:38
2398
+ #: nextend-social-login-pro/providers/wordpress/admin/settings.php:38
2399
+ #: nextend-social-login-pro/providers/yahoo/admin/settings.php:38
2400
+ msgid "Client Secret"
2401
+ msgstr "Client Secret"
2402
+
2403
+ #: nextend-facebook-connect/providers/google/admin/settings.php:47
2404
+ msgid "Select account on each login"
2405
+ msgstr "Scegli un account ad ogni accesso"
2406
+
2407
+ #: nextend-facebook-connect/providers/google/admin/settings.php:56
2408
+ msgid ""
2409
+ "Disable, when you don't want to see the account select prompt on each login."
2410
+ msgstr ""
2411
+ "Disabilita, quando non vuoi vedere la scelta dell'account ad ogni accesso."
2412
+
2413
+ #: nextend-facebook-connect/providers/google/google.php:99
2414
+ msgid "Continue with <b>Google</b>"
2415
+ msgstr "Continua con <b>Google</b>"
2416
+
2417
+ #: nextend-facebook-connect/providers/google/google.php:100
2418
+ #, fuzzy
2419
+ #| msgid "Continue with <b>Google</b>"
2420
+ msgid "Sign up with <b>Google</b>"
2421
+ msgstr "Continua con <b>Google</b>"
2422
+
2423
+ #: nextend-facebook-connect/providers/google/google.php:101
2424
+ msgid "Link account with <b>Google</b>"
2425
+ msgstr "Collega account con <b>Google</b>"
2426
+
2427
+ #: nextend-facebook-connect/providers/google/google.php:102
2428
+ msgid "Unlink account from <b>Google</b>"
2429
+ msgstr "Scollega account da <b>Google</b>"
2430
+
2431
+ #: nextend-facebook-connect/providers/google/google.php:295
2432
+ #, php-format
2433
+ msgid "Required API: %1$s"
2434
+ msgstr "API richiesta: %1$s"
2435
+
2436
+ #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:10
2437
+ #, fuzzy
2438
+ #| msgid "Find your App and click on the \"<b>Details</b>\" button"
2439
+ msgid ""
2440
+ "Find your App and click on the <b>App settings</b> icon. (The one that looks "
2441
+ "like a gear.)"
2442
+ msgstr "Cerca la tua App e clicca sul bottone \"<b>Dettagli</b>\""
2443
+
2444
+ #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:11
2445
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:27
2446
+ #, fuzzy
2447
+ #| msgid ""
2448
+ #| "Click on the \"<b>Create an App</b>\" button on the top right corner."
2449
+ msgid "Click on the <b>Edit</b> button at <b>Authentication settings</b>."
2450
+ msgstr ""
2451
+ "Clicca sul bottone \"<b>Crea un'App</b>\" nell'angolo in alto a destra."
2452
+
2453
+ #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:12
2454
+ #, php-format
2455
+ msgid "Add the following URL to the \"<b>Callback URLs</b>\" field: <b>%s</b>"
2456
+ msgstr "Aggiungi l'URL seguente al campo \"<b>Callback URLs</b>\": <b>%s</b>"
2457
+
2458
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:17
2459
+ #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:25
2460
+ #: nextend-social-login-pro/providers/apple/admin/getting-started.php:38
2461
+ #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:9
2462
+ #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:16
2463
+ #: nextend-social-login-pro/providers/github/admin/getting-started.php:16
2464
+ #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:9
2465
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:17
2466
+ #: nextend-social-login-pro/providers/vk/admin/getting-started.php:16
2467
+ #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:9
2468
+ #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:16
2469
+ #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:17
2470
+ #, php-format
2471
+ msgid "Log in with your %s credentials if you are not logged in."
2472
+ msgstr "Accedi con le tue credenziali %s se non sei loggato."
2473
+
2474
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:18
2475
+ msgid ""
2476
+ "If you don't have a developer account yet, please apply one by filling all "
2477
+ "the required details! This is required for the next steps!"
2478
+ msgstr ""
2479
+ "Se non hai ancora un account sviluppatore, creane uno compilando tutti i "
2480
+ "dettagli richiesti! Questo sarà necessario per i prossimi passi!"
2481
+
2482
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:19
2483
+ #, php-format
2484
+ msgid ""
2485
+ "Once your developer account is complete, navigate back to <b>%s</b> if you "
2486
+ "aren't already there!"
2487
+ msgstr ""
2488
+ "Una volta il tuo account sviluppatore sarà completo, naviga indietro a <b>"
2489
+ "%s</b> se non sei già lì!"
2490
+
2491
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:20
2492
+ #, fuzzy
2493
+ #| msgid "Click on \"<b>Save</b>\""
2494
+ msgid "Click on <b>+ New Project</b>!"
2495
+ msgstr "Clicca su \"<b>Salva</b>\""
2496
+
2497
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:21
2498
+ msgid ""
2499
+ "Name your project, and go through the basic setup. You’ll need to select "
2500
+ "your use case and give a description."
2501
+ msgstr ""
2502
+
2503
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:22
2504
+ msgid "Create a new app, or select an existing one, then click <b>Complete</b>"
2505
+ msgstr ""
2506
+
2507
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:23
2508
+ msgid ""
2509
+ "You’ll find your API key and secret on this page. Copy and paste the <b>API "
2510
+ "key</b> and the <b>API secret key</b> to the corresponding fields at Nextend "
2511
+ "Social Login and press <b>Save Changes</b>."
2512
+ msgstr ""
2513
+
2514
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:24
2515
+ #, fuzzy, php-format
2516
+ #| msgid "Click on the \"<b>Save Changes</b>\" button."
2517
+ msgid "Click on the <b>App Settings</b> button at %s."
2518
+ msgstr "Clicca sul bottone \"<b>Salva Modifiche</b>\"."
2519
+
2520
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:25
2521
+ msgid "Find the Apps section, and the app you created a few steps ago."
2522
+ msgstr ""
2523
+
2524
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:26
2525
+ msgid "Click on the App settings icon. (The one that looks like a gear.)"
2526
+ msgstr ""
2527
+
2528
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:28
2529
+ msgid "Switch on the <b>Enable 3-legged OAuth</b> option."
2530
+ msgstr ""
2531
+
2532
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:29
2533
+ #, fuzzy, php-format
2534
+ #| msgid ""
2535
+ #| "Add the following URL to the \"<b>Callback URLs</b>\" field: <b>%s</b>"
2536
+ msgid "Add the following URL to the <b>Callback URLs</b> field: <b>%s</b>"
2537
+ msgstr "Aggiungi l'URL seguente al campo \"<b>Callback URLs</b>\": <b>%s</b>"
2538
+
2539
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:30
2540
+ #, fuzzy, php-format
2541
+ #| msgid ""
2542
+ #| "Enter the URL of your site to the \"<b>Home Page URL</b>\" field: <b>%s</"
2543
+ #| "b>"
2544
+ msgid "Enter your site's URL to the <b>Website URL</b> field: <b>%s</b>"
2545
+ msgstr ""
2546
+ "Inserisci l'URL del tuo sito nel campo \"<b>Home Page URL</b>\": <b>%s</b>"
2547
+
2548
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:31
2549
+ msgid ""
2550
+ "If you want to get the email address as well, then don’t forget to enable "
2551
+ "the <b>Request email address from users</b> option. In this case you also "
2552
+ "need to fill the <b>Terms of service</b> and the <b>Privacy policy</b> "
2553
+ "fields with the corresponding URLs!"
2554
+ msgstr ""
2555
+
2556
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:32
2557
+ #, fuzzy
2558
+ #| msgid "Click on \"<b>Save</b>\""
2559
+ msgid "Click on <b>Save</b>."
2560
+ msgstr "Clicca su \"<b>Salva</b>\""
2561
+
2562
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:33
2563
+ #, php-format
2564
+ msgid "Go back to Nextend Social Login and <b>Verify</b> your %s provider."
2565
+ msgstr ""
2566
+
2567
+ #: nextend-facebook-connect/providers/twitter/admin/settings.php:27
2568
+ #: nextend-social-login-pro/providers/disqus/admin/settings.php:26
2569
+ msgid "API Key"
2570
+ msgstr "API Key"
2571
+
2572
+ #: nextend-facebook-connect/providers/twitter/admin/settings.php:38
2573
+ msgid "API secret key"
2574
+ msgstr "API secret key"
2575
+
2576
+ #: nextend-facebook-connect/providers/twitter/admin/settings.php:57
2577
+ msgid "Profile image size"
2578
+ msgstr "Dimensioni immagine profilo"
2579
+
2580
+ #: nextend-facebook-connect/providers/twitter/admin/settings.php:71
2581
+ msgid "Original"
2582
+ msgstr "Originale"
2583
+
2584
+ #: nextend-facebook-connect/providers/twitter/twitter.php:70
2585
+ msgid "Continue with <b>Twitter</b>"
2586
+ msgstr "Continua con <b>Twitter</b>"
2587
+
2588
+ #: nextend-facebook-connect/providers/twitter/twitter.php:71
2589
+ #, fuzzy
2590
+ #| msgid "Continue with <b>Twitter</b>"
2591
+ msgid "Sign up with <b>Twitter</b>"
2592
+ msgstr "Continua con <b>Twitter</b>"
2593
+
2594
+ #: nextend-facebook-connect/providers/twitter/twitter.php:72
2595
+ msgid "Link account with <b>Twitter</b>"
2596
+ msgstr "Collega account con <b>Twitter</b>"
2597
+
2598
+ #: nextend-facebook-connect/providers/twitter/twitter.php:73
2599
+ msgid "Unlink account from <b>Twitter</b>"
2600
+ msgstr "Scollega account da <b>Twitter</b>"
2601
+
2602
+ #: nextend-facebook-connect/widget.php:10
2603
+ #, php-format
2604
+ msgid "%s Buttons"
2605
+ msgstr "%s Bottoni"
2606
+
2607
+ #: nextend-facebook-connect/widget.php:30
2608
+ msgid "Title:"
2609
+ msgstr "Titolo:"
2610
+
2611
+ #: nextend-facebook-connect/widget.php:38
2612
+ msgid "Button style:"
2613
+ msgstr "Stile bottone:"
2614
+
2615
+ #: nextend-facebook-connect/widget.php:53
2616
+ msgid "Button align:"
2617
+ msgstr "Allineamento bottone:"
2618
+
2619
+ #: nextend-facebook-connect/widget.php:85
2620
+ msgid "Show link buttons"
2621
+ msgstr "Mostra bottoni di collegamento"
2622
+
2623
+ #: nextend-facebook-connect/widget.php:94
2624
+ msgid "Show unlink buttons"
2625
+ msgstr "Mostra bottoni di scollegamento"
2626
+
2627
+ #: nextend-social-login-pro/class-provider-extension.php:117
2628
+ msgid "Social login is not allowed with this role!"
2629
+ msgstr "L'accesso con Social Login non è consentito con questo ruolo!"
2630
+
2631
+ #: nextend-social-login-pro/class-provider-extension.php:213
2632
+ #: nextend-social-login-pro/class-provider-extension.php:216
2633
+ #: nextend-social-login-pro/class-provider-extension.php:222
2634
+ #: nextend-social-login-pro/class-provider-extension.php:229
2635
+ #: nextend-social-login-pro/class-provider-extension.php:300
2636
+ #: nextend-social-login-pro/class-provider-extension.php:303
2637
+ #: nextend-social-login-pro/class-provider-extension.php:307
2638
+ msgid "ERROR"
2639
+ msgstr "ERRORE"
2640
+
2641
+ #: nextend-social-login-pro/class-provider-extension.php:213
2642
+ msgid "Please enter a username."
2643
+ msgstr "Per favore inserisci uno username."
2644
+
2645
+ #: nextend-social-login-pro/class-provider-extension.php:216
2646
+ msgid ""
2647
+ "This username is invalid because it uses illegal characters. Please enter a "
2648
+ "valid username."
2649
+ msgstr ""
2650
+ "Questo username non è valido perché contiene caratteri non consentiti. Per "
2651
+ "favore inserisci uno username valido."
2652
+
2653
+ #: nextend-social-login-pro/class-provider-extension.php:222
2654
+ msgid "This username is already registered. Please choose another one."
2655
+ msgstr "Questo username è già registrato. Per favore scegline un altro."
2656
+
2657
+ #: nextend-social-login-pro/class-provider-extension.php:229
2658
+ msgid "Sorry, that username is not allowed."
2659
+ msgstr "Mi spiace, quello username non è consentito."
2660
+
2661
+ #: nextend-social-login-pro/class-provider-extension.php:247
2662
+ msgid "Username"
2663
+ msgstr "Username"
2664
+
2665
+ #: nextend-social-login-pro/class-provider-extension.php:300
2666
+ msgid "Please enter an email address."
2667
+ msgstr "Per favore inserisci un indirizzo email."
2668
+
2669
+ #: nextend-social-login-pro/class-provider-extension.php:303
2670
+ msgid "The email address isn&#8217;t correct."
2671
+ msgstr "L'indirizzo email non è corretto."
2672
+
2673
+ #: nextend-social-login-pro/class-provider-extension.php:307
2674
+ msgid "This email is already registered, please choose another one."
2675
+ msgstr "Questa email è già registrata, per favore scegline un'altra."
2676
+
2677
+ #: nextend-social-login-pro/class-provider-extension.php:327
2678
+ msgid "Registration confirmation will be emailed to you."
2679
+ msgstr "La conferma di registrazione ti sarà inviata per email."
2680
+
2681
+ #: nextend-social-login-pro/class-provider-extension.php:386
2682
+ msgid "<strong>ERROR</strong>: Please enter a password."
2683
+ msgstr "<strong>ERRORE</strong>: Per favore inserisci una password."
2684
+
2685
+ #: nextend-social-login-pro/class-provider-extension.php:392
2686
+ msgid "<strong>ERROR</strong>: Passwords may not contain the character \"\\\"."
2687
+ msgstr ""
2688
+ "<strong>ERRORE</strong>: Le password non possono contenere il carattere \"\\"
2689
+ "\"."
2690
+
2691
+ #: nextend-social-login-pro/class-provider-extension.php:398
2692
+ msgid ""
2693
+ "<strong>ERROR</strong>: Please enter the same password in both password "
2694
+ "fields."
2695
+ msgstr ""
2696
+ "<strong>ERRORE</strong>: Per favore inserisci la stessa password in entrambi "
2697
+ "i campi."
2698
+
2699
+ #: nextend-social-login-pro/class-provider-extension.php:415
2700
+ msgid "Password"
2701
+ msgstr "Password"
2702
+
2703
+ #: nextend-social-login-pro/class-provider-extension.php:425
2704
+ msgid "Strength indicator"
2705
+ msgstr "Indicatore di forza"
2706
+
2707
+ #: nextend-social-login-pro/class-provider-extension.php:430
2708
+ msgid "Confirm use of weak password"
2709
+ msgstr "Conferma l'utilizzo di una password debole"
2710
+
2711
+ #: nextend-social-login-pro/class-provider-extension.php:436
2712
+ msgid "Confirm password"
2713
+ msgstr "Conferma password"
2714
+
2715
+ #: nextend-social-login-pro/class-provider-extension.php:448
2716
+ #, php-format
2717
+ msgid ""
2718
+ "This email is already registered, please login in to your account to link "
2719
+ "with %1$s."
2720
+ msgstr ""
2721
+ "Questa email è già registrata, per favore accedi al tuo account con %1$s."
2722
+
2723
+ #: nextend-social-login-pro/nextend-social-login-pro.php:104
2724
+ #, php-format
2725
+ msgid "Please install and activate %1$s to use the %2$s"
2726
+ msgstr "Per favore installa e attiva %1$s per usare %2$s"
2727
+
2728
+ #: nextend-social-login-pro/nextend-social-login-pro.php:118
2729
+ msgid "Network Activate"
2730
+ msgstr ""
2731
+
2732
+ #: nextend-social-login-pro/nextend-social-login-pro.php:130
2733
+ msgid "Install now!"
2734
+ msgstr "Installa ora!"
2735
+
2736
+ #: nextend-social-login-pro/nextend-social-login-pro.php:821
2737
+ msgid "Social Providers"
2738
+ msgstr "Social Provider"
2739
+
2740
+ #: nextend-social-login-pro/provider-extensions/facebook.php:74
2741
+ #, php-format
2742
+ msgid ""
2743
+ "The Facebook Sync data needs an approved %1$s and your App must use the "
2744
+ "latest %2$s version!"
2745
+ msgstr ""
2746
+
2747
+ #: nextend-social-login-pro/provider-extensions/google.php:187
2748
+ #, php-format
2749
+ msgid ""
2750
+ "Most of these information can only be retrieved, when the field is marked as "
2751
+ "Public on the user's %s page!"
2752
+ msgstr ""
2753
+ "Molte di queste informazioni possono essere recuperate quando il campo è "
2754
+ "markato come Pubblico sulla pagina utente %s!"
2755
+
2756
+ #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:10
2757
+ #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:26
2758
+ #, php-format
2759
+ msgid "Visit %s"
2760
+ msgstr "Visita %s"
2761
+
2762
+ #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:11
2763
+ #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:30
2764
+ msgid ""
2765
+ "On the right side, under \"<b>Manage</b>\", hover over the gear icon and "
2766
+ "select \"<b>Web Settings</b>\" option."
2767
+ msgstr ""
2768
+ "Sul lato destro, sotto \"<b>Gestisci</b>\", vai sull'icona ad ingranaggio e "
2769
+ "seleziona l'opzione \"<b>Impostazioni Web</b>\"."
2770
+
2771
+ #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:12
2772
+ #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:31
2773
+ msgid "Click \"<b>Edit</b>\"."
2774
+ msgstr "Clicca \"<b>Modifica</b>\"."
2775
+
2776
+ #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:13
2777
+ #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:33
2778
+ #, php-format
2779
+ msgid ""
2780
+ "Add the following URL to the \"<b>Allowed Return URLs</b>\" field <b>%s</b> "
2781
+ msgstr ""
2782
+ "Aggiungi l'url seguente alle \"<b>URL di Ritorno consentite</b>\" campo <b>"
2783
+ "%s</b> "
2784
+
2785
+ #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:19
2786
+ #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:10
2787
+ #: nextend-social-login-pro/providers/github/admin/getting-started.php:10
2788
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:10
2789
+ #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:10
2790
+ #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:10
2791
+ #, php-format
2792
+ msgid ""
2793
+ "To allow your visitors to log in with their %1$s account, first you must "
2794
+ "create an %1$s App. The following guide will help you through the %1$s App "
2795
+ "creation process. After you have created your %1$s App, head over to "
2796
+ "\"Settings\" and configure the given \"%2$s\" and \"%3$s\" according to your "
2797
+ "%1$s App."
2798
+ msgstr ""
2799
+ "Per consentire ai tuoi visitatori di accedere con i loro account %1$s, devi "
2800
+ "prima creare una App %1$s . La guida seguente ti aiuterà attraverso il "
2801
+ "processo di creazione dell'App %1$s. Dopo che hai creato la tua App %1$s, "
2802
+ "vai sopra \"Impostazioni\" e configura i \"%2$s\" and \"%3$s\" ottenuti "
2803
+ "secondo la tua App %1$s."
2804
+
2805
+ #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:27
2806
+ msgid ""
2807
+ "If you don't have a Security Profile yet, you'll need to create one. You can "
2808
+ "do this by clicking on the orange \"<b>Create a New Security Profile</b>\" "
2809
+ "button on the left side."
2810
+ msgstr ""
2811
+
2812
+ #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:28
2813
+ msgid ""
2814
+ "Fill \"<b>Security Profile Name</b>\", \"<b>Security Profile Description</b>"
2815
+ "\" and \"<b>Consent Privacy Notice URL</b>\"."
2816
+ msgstr ""
2817
+
2818
+ #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:29
2819
+ msgid "Once you filled all the required fields, click \"<b>Save</b>\"."
2820
+ msgstr "Una volta compilati tutti i campi richiesti, clicca \"<b>Salva</b>\"."
2821
+
2822
+ #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:32
2823
+ #, php-format
2824
+ msgid ""
2825
+ "Fill \"<b>Allowed Origins</b>\" with the url of your homepage, probably: <b>"
2826
+ "%s</b>"
2827
+ msgstr ""
2828
+ "Compila \"<b>Origini Consentite</b>\" con l'url della tua homepage, "
2829
+ "probabilmente: <b>%s</b>"
2830
+
2831
+ #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:34
2832
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:28
2833
+ msgid "When all fields are filled, click \"<b>Save</b>\"."
2834
+ msgstr "Quando tutti i campi sono compilati, clicca \"<b>Salva</b>\"."
2835
+
2836
+ #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:35
2837
+ msgid ""
2838
+ "Find the necessary \"<b>Client ID</b>\" and \"<b>Client Secret</b>\" at the "
2839
+ "middle of the page, under the \"<b>Web Settings</b>\" tab."
2840
+ msgstr ""
2841
+ "Cerca i necessari \"<b>Client ID</b>\" e \"<b>Client Secret</b>\" al centro "
2842
+ "della pagina, sotto la tab \"<b>Settaggi Web</b>\"."
2843
+
2844
+ #: nextend-social-login-pro/providers/amazon/amazon.php:40
2845
+ msgid "Continue with <b>Amazon</b>"
2846
+ msgstr "Continua con <b>Amazon</b>"
2847
+
2848
+ #: nextend-social-login-pro/providers/amazon/amazon.php:41
2849
+ #, fuzzy
2850
+ #| msgid "Continue with <b>Amazon</b>"
2851
+ msgid "Sign up with <b>Amazon</b>"
2852
+ msgstr "Continua con <b>Amazon</b>"
2853
+
2854
+ #: nextend-social-login-pro/providers/amazon/amazon.php:42
2855
+ msgid "Link account with <b>Amazon</b>"
2856
+ msgstr "Collega account con <b>Amazon</b>"
2857
+
2858
+ #: nextend-social-login-pro/providers/amazon/amazon.php:43
2859
+ msgid "Unlink account from <b>Amazon</b>"
2860
+ msgstr "Scollega account da <b>Amazon</b>"
2861
+
2862
+ #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:21
2863
+ msgid "Click on the name of your service."
2864
+ msgstr "Clicca sul nome del tuo servizio."
2865
+
2866
+ #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:22
2867
+ msgid ""
2868
+ "Click the \"<b>Configure</b>\" button next to \"<b>Sign In with Apple</b>\"."
2869
+ msgstr ""
2870
+ "Clicca il bottone \"<b>Configura</b>\" vicino a \"<b>Accedi con Apple</b>\"."
2871
+
2872
+ #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:23
2873
+ #: nextend-social-login-pro/providers/apple/admin/getting-started.php:53
2874
+ #, php-format
2875
+ msgid "Click the <b>blue + icon</b> next to %1$s heading."
2876
+ msgstr ""
2877
+
2878
+ #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:24
2879
+ #: nextend-social-login-pro/providers/apple/admin/getting-started.php:79
2880
+ #, php-format
2881
+ msgid ""
2882
+ "Fill the \"<b>Domains and Subdomains</b>\" field with your domain name "
2883
+ "probably: <b>%s</b>"
2884
+ msgstr ""
2885
+ "Compila il campo \"<b>Domini e Sottodomini</b>\" col nome del tuo dominio, "
2886
+ "probabilmente: <b>%s</b>"
2887
+
2888
+ #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:25
2889
+ #: nextend-social-login-pro/providers/apple/admin/getting-started.php:80
2890
+ #, php-format
2891
+ msgid "Add the following URL to the \"<b>Return URLs</b>\" field: <b>%s</b>"
2892
+ msgstr "Aggiungi l'URL seguente al campo \"<b>URLs di ritorno</b>\": <b>%s</b>"
2893
+
2894
+ #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:26
2895
+ msgid ""
2896
+ "Finally press \"<b>Next</b>\" then \"<b>Done</b>\" and finally click on the "
2897
+ "\"<b>Continue</b>\" and the \"<b>Save</b>\" button!"
2898
+ msgstr ""
2899
+ "Premi \"<b>Avanti</b>\" poi \"<b>Fatto</b>\" e infine sul bottone "
2900
+ "\"<b>Continua</b>\" e poi su \"<b>Salva</b>\"!"
2901
+
2902
+ #: nextend-social-login-pro/providers/apple/admin/getting-started.php:30
2903
+ #, php-format
2904
+ msgid ""
2905
+ "To allow your visitors to log in with their %1$s account, first you must "
2906
+ "create an %1$s App. The following guide will help you through the %1$s App "
2907
+ "creation process. After you have created your %1$s App, head over to "
2908
+ "\"Settings\" and configure the given \"%2$s\", \"%3$s\", \"%4$s\" and \"%5$s"
2909
+ "\" according to your %1$s App."
2910
+ msgstr ""
2911
+ "Per consentire ai tuoi visitatori di accedere col loro account %1$s, devi "
2912
+ "prima creare un'App %1$s. La seguente guida ti aiuterà attraverso il "
2913
+ "processo di creazione di un'App %1$s. Dopo aver creato la tua App %1$s, vai "
2914
+ "su \"Impostazioni\" e configura i \"%2$s\", \"%3$s\", \"%4$s\" and \"%5$s\" "
2915
+ "ottenuti secondo la tua App %1$s."
2916
+
2917
+ #: nextend-social-login-pro/providers/apple/admin/getting-started.php:35
2918
+ msgid ""
2919
+ "Make sure you have an <strong>active subscription for the Apple Developer "
2920
+ "Program</strong>!"
2921
+ msgstr ""
2922
+ "Accertati che tu abbia una <strong>sottoscrizione attiva all'Apple Developer "
2923
+ "Program</strong>!"
2924
+
2925
+ #: nextend-social-login-pro/providers/apple/admin/getting-started.php:36
2926
+ msgid ""
2927
+ "Make sure your site have <b>SSL</b>, since <b>Apple only allows HTTPS urls</"
2928
+ "b>!"
2929
+ msgstr ""
2930
+ "Accertati di avere <b>SSL</b>, perché <b>Apple consentirà solo url HTTPS</b>!"
2931
+
2932
+ #: nextend-social-login-pro/providers/apple/admin/getting-started.php:41
2933
+ msgid "1.) Create the associated App:"
2934
+ msgstr "1.) Crea l'App associata:"
2935
+
2936
+ #: nextend-social-login-pro/providers/apple/admin/getting-started.php:43
2937
+ #, php-format
2938
+ msgid ""
2939
+ "Click the <b>blue + icon</b> next to %1$s, then select the <b>%2$s</b> "
2940
+ "option and click the \"Continue\" button."
2941
+ msgstr ""
2942
+
2943
+ #: nextend-social-login-pro/providers/apple/admin/getting-started.php:44
2944
+ msgid "Enter a \"<b>Description</b>\""
2945
+ msgstr "Inserisci una \"<b>Descrizione</b>\""
2946
+
2947
+ #: nextend-social-login-pro/providers/apple/admin/getting-started.php:45
2948
+ #, php-format
2949
+ msgid ""
2950
+ "At the \"<b>Bundle ID</b>\" field select the \"<b>Explicit</b>\" option and "
2951
+ "enter your domain name in reverse-domain name style, with the name of the "
2952
+ "app at its end: <b>%s.nslapp</b>"
2953
+ msgstr ""
2954
+ "Nel campo \"<b>Bundle ID</b>\" seleziona l'opzione \"<b>Explicit</b>\" e "
2955
+ "inserisci il nome del tuo dominio come reverse-domain, col nome dell'app "
2956
+ "alla fine: <b>%s.nslapp</b>"
2957
+
2958
+ #: nextend-social-login-pro/providers/apple/admin/getting-started.php:46
2959
+ msgid ""
2960
+ "Under the \"<b>Capabilities</b>\" section, tick the \"<b>Sign In with Apple</"
2961
+ "b>\" option."
2962
+ msgstr ""
2963
+ "Sotto la sezione \"<b>Capacità</b>\", spunta l'opzione \"<b>Accedi con "
2964
+ "Apple</b>\"."
2965
+
2966
+ #: nextend-social-login-pro/providers/apple/admin/getting-started.php:47
2967
+ msgid ""
2968
+ "Scroll up and press the \"<b>Continue</b>\" button and then the "
2969
+ "\"<b>Register</b>\" button."
2970
+ msgstr ""
2971
+ "Scrolla su e clicca sul bottone \"<b>Continua</b>\", e dopo clicca sul "
2972
+ "bottone \"<b>Registra</b>\"."
2973
+
2974
+ #: nextend-social-login-pro/providers/apple/admin/getting-started.php:50
2975
+ msgid "2.) Create the Key:"
2976
+ msgstr "2.) Crea la Chiave:"
2977
+
2978
+ #: nextend-social-login-pro/providers/apple/admin/getting-started.php:52
2979
+ #, php-format
2980
+ msgid "On the left hand side, click on the \"<b>%s</b>\" tab."
2981
+ msgstr "Sulla sinistra, clicca sulla tab \"<b>%s</b>\"."
2982
+
2983
+ #: nextend-social-login-pro/providers/apple/admin/getting-started.php:54
2984
+ msgid "Enter a name in the <b>Key Name</b> field."
2985
+ msgstr "Inserisci un nome nel campo <b>Nome Chiave</b> ."
2986
+
2987
+ #: nextend-social-login-pro/providers/apple/admin/getting-started.php:55
2988
+ msgid ""
2989
+ "Tick the \"<b>Sign In with Apple</b>\" option, then click on \"<b>Configure</"
2990
+ "b>\"."
2991
+ msgstr ""
2992
+ "Spunta l'opzione \"<b>Accedi con Apple</b>\", poi clicca su \"<b>Configura</"
2993
+ "b>\"."
2994
+
2995
+ #: nextend-social-login-pro/providers/apple/admin/getting-started.php:56
2996
+ msgid ""
2997
+ "If you have multiple Apps, then at the \"<b>Choose a Primary App ID</b>\" "
2998
+ "field <b>select the App what you just created</b>, then click \"<b>Save</b>"
2999
+ "\"."
3000
+ msgstr ""
3001
+ "Se hai App multiple, nel campo \"<b>Scegli ID App Primaria</b>\" "
3002
+ "<b>seleziona l'App che hai creato</b>, poi clicca \"<b>Salva</b>\"."
3003
+
3004
+ #: nextend-social-login-pro/providers/apple/admin/getting-started.php:57
3005
+ msgid ""
3006
+ "Finally press the \"<b>Continue</b>\" button and then the \"<b>Register</b>"
3007
+ "\" button."
3008
+ msgstr ""
3009
+ "Concludi premendo il bottone \"<b>Continua</b>\" e poi il bottone "
3010
+ "\"<b>Register</b>\"."
3011
+
3012
+ #: nextend-social-login-pro/providers/apple/admin/getting-started.php:58
3013
+ msgid "<b>Don't download the key yet!</b>"
3014
+ msgstr "<b>Non scaricare la chiave ancora!</b>"
3015
+
3016
+ #: nextend-social-login-pro/providers/apple/admin/getting-started.php:61
3017
+ msgid "3.) Create the Service:"
3018
+ msgstr "3.) Crea il Servizio:"
3019
+
3020
+ #: nextend-social-login-pro/providers/apple/admin/getting-started.php:63
3021
+ #, php-format
3022
+ msgid ""
3023
+ "Go to the \"<b>%1$s</b>\" section, what you will find within the \"%2$s\" "
3024
+ "tab."
3025
+ msgstr ""
3026
+ "Vai alla sezione \"<b>%1$s</b>\", che troverai all'interno della tab \"%2$s"
3027
+ "\"."
3028
+
3029
+ #: nextend-social-login-pro/providers/apple/admin/getting-started.php:64
3030
+ #, php-format
3031
+ msgid ""
3032
+ "Click the <b>blue + icon</b> next to %1$s, then select the \"<b>%2$s</b>\" "
3033
+ "option and click the \"<b>Continue</b>\" button."
3034
+ msgstr ""
3035
+
3036
+ #: nextend-social-login-pro/providers/apple/admin/getting-started.php:65
3037
+ msgid "Enter a \"<b>Description</b>\"."
3038
+ msgstr "Inserisci una \"<b>Descrizione</b>\"."
3039
+
3040
+ #: nextend-social-login-pro/providers/apple/admin/getting-started.php:66
3041
+ #, php-format
3042
+ msgid ""
3043
+ "At the \"<b>Identifier</b>\" field enter your domain name in reverse-domain "
3044
+ "name style, with the name of the client at its end: <b>%s.nslclient</b>"
3045
+ msgstr ""
3046
+ "Nel campo \"<b>Identificatore</b>\" inserisci il nome del tuo dominio come "
3047
+ "reverse-domain, col nome del client alla fine: <b>%s.nslclient</b>"
3048
+
3049
+ #: nextend-social-login-pro/providers/apple/admin/getting-started.php:69
3050
+ msgid "<b>Note:</b> This will also be used as Service Identifier later!"
3051
+ msgstr ""
3052
+ "<b>Nota:</b> Questo sarà usato come Identificatore di Servizio "
3053
+ "successivamente!"
3054
+
3055
+ #: nextend-social-login-pro/providers/apple/admin/getting-started.php:72
3056
+ msgid ""
3057
+ "Press the \"<b>Continue</b>\" button and then the \"<b>Register</b>\" button."
3058
+ msgstr "Premi il bottone \"<b>Continua</b>\" e poi quello \"<b>Registra</b>\"."
3059
+
3060
+ #: nextend-social-login-pro/providers/apple/admin/getting-started.php:73
3061
+ #, php-format
3062
+ msgid "In the \"<b>%1$s</b>\" section, click the service you just created."
3063
+ msgstr ""
3064
+ "Nella sezione \"<b>%1$s</b>\", clicca il servizio che hai appena creato."
3065
+
3066
+ #: nextend-social-login-pro/providers/apple/admin/getting-started.php:76
3067
+ msgid ""
3068
+ "Tick the \"<b>Sign In with Apple</b>\" option and click the \"<b>Configure</"
3069
+ "b>\" button next to it."
3070
+ msgstr ""
3071
+ "Spunta l'opzione \"<b>Accedi con Apple</b>\" e clicca il bottone vicino "
3072
+ "\"<b>Configura</b>\"."
3073
+
3074
+ #: nextend-social-login-pro/providers/apple/admin/getting-started.php:78
3075
+ msgid ""
3076
+ "If you have multiple Apps, then at the \"Primary App ID\" field select the "
3077
+ "App what you just created."
3078
+ msgstr ""
3079
+ "Se hai App multiple, nel campo \"Primary App ID\" seleziona l'App che hai "
3080
+ "appena creato."
3081
+
3082
+ #: nextend-social-login-pro/providers/apple/admin/getting-started.php:83
3083
+ msgid ""
3084
+ "Save the configuration by clicking on the \"<b>Save</b>\" button and "
3085
+ "pressing \"<b>Done</b>\"."
3086
+ msgstr ""
3087
+ "Salva la configurazione cliccando sul bottone \"<b>Salva</b>\" e premendo "
3088
+ "\"<b>Fatto</b>\"."
3089
+
3090
+ #: nextend-social-login-pro/providers/apple/admin/getting-started.php:84
3091
+ msgid ""
3092
+ "Finally press the \"<b>Continue</b>\" button and then the \"<b>Save</b>\" "
3093
+ "button."
3094
+ msgstr ""
3095
+ "Concludi premendo il bottone \"<b>Continua</b>\" e quindi sul bottone "
3096
+ "\"<b>Salva</b>\"."
3097
+
3098
+ #: nextend-social-login-pro/providers/apple/admin/getting-started.php:87
3099
+ msgid "4.) Configure Nextend Social Login with your credentials:"
3100
+ msgstr "4.) Configura Nextend Social Login con le tue credenziali:"
3101
+
3102
+ #: nextend-social-login-pro/providers/apple/admin/getting-started.php:89
3103
+ msgid "Go to Nextend Social Login > Providers > Apple > Settings tab."
3104
+ msgstr "Vai sulla tab Nextend Social Login > Provider > Apple > Impostazioni."
3105
+
3106
+ #: nextend-social-login-pro/providers/apple/admin/getting-started.php:90
3107
+ msgid "<strong><u>Private Key ID:</u></strong>"
3108
+ msgstr "<strong><u>ID Chiave Privata:</u></strong>"
3109
+
3110
+ #: nextend-social-login-pro/providers/apple/admin/getting-started.php:92
3111
+ #: nextend-social-login-pro/providers/apple/admin/getting-started.php:110
3112
+ #, php-format
3113
+ msgid "Navigate to: <b>%s</b>"
3114
+ msgstr "Naviga a: <b>%s</b>"
3115
+
3116
+ #: nextend-social-login-pro/providers/apple/admin/getting-started.php:93
3117
+ msgid "Click on the <b>name of your Key</b>."
3118
+ msgstr "Chicca sul <b>nome della tua Chiave</b>."
3119
+
3120
+ #: nextend-social-login-pro/providers/apple/admin/getting-started.php:94
3121
+ msgid "You will find your \"<b>Private Key ID</b>\" under \"<b>Key ID</b>\"."
3122
+ msgstr "Troverai l'\"<b>ID Chiave Privata</b>\" sotto \"<b>ID Chiave</b>\"."
3123
+
3124
+ #: nextend-social-login-pro/providers/apple/admin/getting-started.php:97
3125
+ msgid "<strong><u>Private Key:</u></strong>"
3126
+ msgstr "<strong><u>Chiave Privata:</u></strong>"
3127
+
3128
+ #: nextend-social-login-pro/providers/apple/admin/getting-started.php:99
3129
+ msgid ""
3130
+ "Click the \"<b>Download</b>\" button to download the key file. <u>Once this "
3131
+ "file is downloaded, it will no longer be available, so <b>make sure you keep "
3132
+ "this file safe</b>!</u> "
3133
+ msgstr ""
3134
+ "Clicca sul bottone \"<b>Download</b>\" per scaricare il file Chiave. <u>Una "
3135
+ "volta scaricato il file, non sarà più disponibile, quindi <b>accertati di "
3136
+ "conservare questo file al sicuro</b>!</u> "
3137
+
3138
+ #: nextend-social-login-pro/providers/apple/admin/getting-started.php:100
3139
+ msgid ""
3140
+ "<b>Open the downloaded file</b> with a text editor, like Notepad, <b><u>copy "
3141
+ "all of its contents</u></b> and <b>paste it</b> into the \"<b>Private Key</b>"
3142
+ "\" field of Nextend Social Login."
3143
+ msgstr ""
3144
+ "<b>Apri il file scaricato </b>con un editor di testo, come Notepad, "
3145
+ "<b><u>copia tutti i suoi contenuti</u></b> e <b>incollali</b> nel campo "
3146
+ "\"<b>Chiave Privata</b>\" di Nextend Social Login."
3147
+
3148
+ #: nextend-social-login-pro/providers/apple/admin/getting-started.php:103
3149
+ msgid "<strong><u>Team Identifier:</u></strong>"
3150
+ msgstr "<strong><u>Identificatore Team:</u></strong>"
3151
+
3152
+ #: nextend-social-login-pro/providers/apple/admin/getting-started.php:105
3153
+ msgid ""
3154
+ "A 10 character long identifier, what you can find on the <b>top-right "
3155
+ "corner, just under your name</b>."
3156
+ msgstr ""
3157
+ "Un identificatore lungo 10 caratteri, che puoi trovare <b>nell'angolo "
3158
+ "superiore destro, proprio sotto il tuo nome</b>."
3159
+
3160
+ #: nextend-social-login-pro/providers/apple/admin/getting-started.php:108
3161
+ msgid "<strong><u>Service Identifier:</u></strong>"
3162
+ msgstr "<strong><u>Identificatore Servizio:</u></strong>"
3163
+
3164
+ #: nextend-social-login-pro/providers/apple/admin/getting-started.php:111
3165
+ #, php-format
3166
+ msgid ""
3167
+ "You will find it under the \"<b>IDENTIFIER</b>\" column. If you configured "
3168
+ "the service according to the suggestions, it will probably end to .nslclient "
3169
+ "e.g.: <b>%s.nslclient</b>"
3170
+ msgstr ""
3171
+ "Lo troverai sotto la colonna \"<b>IDENTIFICATORE</b>\". Se hai configurato "
3172
+ "il servizio come da suggerimenti, probabilmente finirà con .nslclient, per "
3173
+ "esempio.: <b>%s.nslclient</b>"
3174
+
3175
+ #: nextend-social-login-pro/providers/apple/admin/getting-started.php:114
3176
+ msgid ""
3177
+ "Once you filled up all the fields, click on the \"<b>Generate Token</b>\" "
3178
+ "button."
3179
+ msgstr ""
3180
+ "Una volta compilati tutti i campi, clicca sul bottone \"<b>Genera Token</b>"
3181
+ "\"."
3182
+
3183
+ #: nextend-social-login-pro/providers/apple/admin/getting-started.php:115
3184
+ msgid "Finally <b>verify the settings</b> and <b>enable the provider</b>!"
3185
+ msgstr "Infine <b>verifica le impostazioni</b> e <b>abilita il provider</b>!"
3186
+
3187
+ #: nextend-social-login-pro/providers/apple/admin/getting-started.php:116
3188
+ msgid ""
3189
+ "When you need to change your credentials for some reason, then you must "
3190
+ "delete the token, copy the new credentials and generate a new token!"
3191
+ msgstr ""
3192
+ "Se dovessi cambiare le tue credenziali per qualsiasi ragione, devi "
3193
+ "cancellare il token, copiare le nuove credenziali e generare un nuovo token!"
3194
+
3195
+ #: nextend-social-login-pro/providers/apple/admin/settings.php:48
3196
+ msgid "Delete credentials"
3197
+ msgstr "Cancella credenziali"
3198
+
3199
+ #: nextend-social-login-pro/providers/apple/admin/settings.php:78
3200
+ msgid "Private Key ID"
3201
+ msgstr "ID Chiave Privata"
3202
+
3203
+ #: nextend-social-login-pro/providers/apple/admin/settings.php:89
3204
+ msgid "Private Key"
3205
+ msgstr "Chiave Privata"
3206
+
3207
+ #: nextend-social-login-pro/providers/apple/admin/settings.php:98
3208
+ msgid "Team Identifier"
3209
+ msgstr "Identificatore Team"
3210
+
3211
+ #: nextend-social-login-pro/providers/apple/admin/settings.php:106
3212
+ msgid "Service Identifier"
3213
+ msgstr "Identificatore Servizio"
3214
+
3215
+ #: nextend-social-login-pro/providers/apple/admin/settings.php:116
3216
+ msgid "Generate Token"
3217
+ msgstr "Genera Token"
3218
+
3219
+ #: nextend-social-login-pro/providers/apple/apple.php:83
3220
+ msgid "Continue with <b>Apple</b>"
3221
+ msgstr "Continua con <b>Apple</b>"
3222
+
3223
+ #: nextend-social-login-pro/providers/apple/apple.php:84
3224
+ #, fuzzy
3225
+ #| msgid "Continue with <b>Apple</b>"
3226
+ msgid "Sign up with <b>Apple</b>"
3227
+ msgstr "Continua con <b>Apple</b>"
3228
+
3229
+ #: nextend-social-login-pro/providers/apple/apple.php:85
3230
+ msgid "Link account with <b>Apple</b>"
3231
+ msgstr "Collega account con <b>Apple</b>"
3232
+
3233
+ #: nextend-social-login-pro/providers/apple/apple.php:86
3234
+ msgid "Unlink account from <b>Apple</b>"
3235
+ msgstr "Scollega account da <b>Apple</b>"
3236
+
3237
+ #: nextend-social-login-pro/providers/apple/apple.php:180
3238
+ #, php-format
3239
+ msgid "An error occurred when storing of the expiration timestamp : %1$s"
3240
+ msgstr ""
3241
+ "C'è stato un errore durante la memorizzazione del timestamp di scadenza: %1$s"
3242
+
3243
+ #: nextend-social-login-pro/providers/apple/apple.php:184
3244
+ #: nextend-social-login-pro/providers/apple/apple.php:282
3245
+ #: nextend-social-login-pro/providers/apple/apple.php:297
3246
+ #: nextend-social-login-pro/providers/apple/apple.php:341
3247
+ #, php-format
3248
+ msgid "Token generation failed: %1$s"
3249
+ msgstr "Generazione del Token fallita: %1$s"
3250
+
3251
+ #: nextend-social-login-pro/providers/apple/apple.php:184
3252
+ msgid "Please check your credentials!"
3253
+ msgstr "Gentilmente verifica le tue credenziali!"
3254
+
3255
+ #: nextend-social-login-pro/providers/apple/apple.php:282
3256
+ msgid "Private key format is not valid!"
3257
+ msgstr "Il formato Chiave Privata non è valido!"
3258
+
3259
+ #: nextend-social-login-pro/providers/apple/apple.php:308
3260
+ #, php-format
3261
+ msgid ""
3262
+ "%s detected that your Apple credentials have expired. Please delete the "
3263
+ "current credentials and generate new one!"
3264
+ msgstr ""
3265
+ "%s ha rilevato che le tue credenziali Apple sono scadute. Gentilmente "
3266
+ "elimina le credenziali correnti e generane delle nuove!"
3267
+
3268
+ #: nextend-social-login-pro/providers/apple/apple.php:310
3269
+ msgid "Apple Credentials"
3270
+ msgstr "Credenziali Apple"
3271
+
3272
+ #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:10
3273
+ #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:10
3274
+ #, php-format
3275
+ msgid "Click on the name of your %s App."
3276
+ msgstr "Clicca sul nome della tua %s App."
3277
+
3278
+ #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:12
3279
+ msgid ""
3280
+ "Select the \"<b>Settings</b>\" tab and scroll down to the Authentication "
3281
+ "section!"
3282
+ msgstr ""
3283
+ "Seleziona la tab \"<b>Settaggi</b>\" e scrolla giù alla sezione "
3284
+ "Autenticazione!"
3285
+
3286
+ #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:13
3287
+ #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:23
3288
+ #, php-format
3289
+ msgid "Add the following URL to the \"<b>Callback URL</b>\" field <b>%s</b> "
3290
+ msgstr "Aggiungi l'URL seguente nel campo \"<b>Callback URL</b>\" <b>%s</b> "
3291
+
3292
+ #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:14
3293
+ msgid "Click on the \"<b>Save Changes</b>\" button."
3294
+ msgstr "Clicca sul bottone \"<b>Salva Modifiche</b>\"."
3295
+
3296
+ #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:17
3297
+ msgid ""
3298
+ "Click on the \"<b>Registering new application</b>\" button under the "
3299
+ "Applications tab."
3300
+ msgstr ""
3301
+ "Clicca sul bottone \"<b>Registra nuova applicazione</b>\" sotto la tab "
3302
+ "Applicazioni."
3303
+
3304
+ #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:18
3305
+ msgid "Enter a \"<b>Label</b>\" and \"<b>Description</b>\" for your App."
3306
+ msgstr ""
3307
+ "Inserisci una \"<b>Etichetta</b>\" e una \"<b>Descrizione</b>\" per la tua "
3308
+ "App."
3309
+
3310
+ #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:19
3311
+ #, php-format
3312
+ msgid ""
3313
+ "Fill \"<b>Website</b>\" with the url of your homepage, probably: <b>%s</b>"
3314
+ msgstr ""
3315
+ "Compila \"<b>Sito Internet</b>\" con la url della tua homepage, "
3316
+ "probabilmente: <b>%s</b>"
3317
+
3318
+ #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:20
3319
+ msgid ""
3320
+ "Complete the Human test and click the \"<b>Register my application</b>\" "
3321
+ "button."
3322
+ msgstr ""
3323
+ "Completa il \"Test Umano\" e clicca il bottone \"<b>Registra la mia "
3324
+ "applicazione</b>\"."
3325
+
3326
+ #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:21
3327
+ #, php-format
3328
+ msgid "Fill the \"<b>Domains</b>\" field with your domain name like: <b>%s</b>"
3329
+ msgstr ""
3330
+ "Compila il campo \"<b>Domini</b>\" col nome del tuo dominio, come: <b>%s</b>"
3331
+
3332
+ #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:22
3333
+ msgid ""
3334
+ "Select \"<b>Read only</b>\" as Default Access under the Authentication "
3335
+ "section."
3336
+ msgstr ""
3337
+ "Seleziona \"<b>Solo lettura</b>\" come Accesso Default nella sezione "
3338
+ "Authentication."
3339
+
3340
+ #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:24
3341
+ msgid "Click on the \"<b>Save Changes</b>\" button!"
3342
+ msgstr "Clicca sul bottone \"<b>Salva Modifiche</b>\"!"
3343
+
3344
+ #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:25
3345
+ msgid "Navigate to the \"<b>Details</b>\" tab of your Application!"
3346
+ msgstr "Naviga alla tab \"<b>Dettagli</b>\" della tua Applicazione!"
3347
+
3348
+ #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:26
3349
+ msgid ""
3350
+ "Here you can see your \"<b>API Key</b>\" and \"<b>API Secret</b>\". These "
3351
+ "will be needed in the plugin's settings."
3352
+ msgstr ""
3353
+ "Qui puoi vedere la tua \"<b>Chiave API</b>\" e \"<b>API Secret</b>\". Queste "
3354
+ "serviranno nei settaggi del plugin."
3355
+
3356
+ #: nextend-social-login-pro/providers/disqus/admin/settings.php:38
3357
+ msgid "API Secret"
3358
+ msgstr "API Secret"
3359
+
3360
+ #: nextend-social-login-pro/providers/disqus/disqus.php:87
3361
+ msgid "Continue with <b>Disqus</b>"
3362
+ msgstr "Continua con <b>Disqus</b>"
3363
+
3364
+ #: nextend-social-login-pro/providers/disqus/disqus.php:88
3365
+ #, fuzzy
3366
+ #| msgid "Continue with <b>Disqus</b>"
3367
+ msgid "Sign up with <b>Disqus</b>"
3368
+ msgstr "Continua con <b>Disqus</b>"
3369
+
3370
+ #: nextend-social-login-pro/providers/disqus/disqus.php:89
3371
+ msgid "Link account with <b>Disqus</b>"
3372
+ msgstr "Collega account con <b>Disqus</b>"
3373
+
3374
+ #: nextend-social-login-pro/providers/disqus/disqus.php:90
3375
+ msgid "Unlink account from <b>Disqus</b>"
3376
+ msgstr "Scollega account da <b>Disqus</b>"
3377
+
3378
+ #: nextend-social-login-pro/providers/github/admin/fix-redirect-uri.php:10
3379
+ #, php-format
3380
+ msgid "Click on the name of the App you configured %s with."
3381
+ msgstr "Clicca sul nome dell'App che hai configurato per %s."
3382
+
3383
+ #: nextend-social-login-pro/providers/github/admin/fix-redirect-uri.php:11
3384
+ #, php-format
3385
+ msgid "Make sure the <b>Homepage URL</b> matches with: <b>%s</b>"
3386
+ msgstr "Accertati che l'<b>URL della Homepage</b> coincida con: <b>%s</b>"
3387
+
3388
+ #: nextend-social-login-pro/providers/github/admin/fix-redirect-uri.php:13
3389
+ #, php-format
3390
+ msgid ""
3391
+ "Replace the current URL in the <b>Authorization callback URL</b> field with: "
3392
+ "<b>%s</b>"
3393
+ msgstr ""
3394
+ "Sostituisci l'URL corrente nel campo <b>Authorization callback URL</b> con: "
3395
+ "<b>%s</b>"
3396
+
3397
+ #: nextend-social-login-pro/providers/github/admin/fix-redirect-uri.php:14
3398
+ msgid "Press the <b>Update application</b> button to save the changes."
3399
+ msgstr ""
3400
+ "Clicca sul botton <b>Aggiorna applicatione</b>per salvare le modifiche."
3401
+
3402
+ #: nextend-social-login-pro/providers/github/admin/getting-started.php:17
3403
+ #, php-format
3404
+ msgid ""
3405
+ "Make sure the <b>%1$s</b> tab is selected and click on the <b>%2$s</b> "
3406
+ "button."
3407
+ msgstr ""
3408
+ "Accertati che la tab <b>%1$s</b> sia selezionata e clicca sul bottone <b>"
3409
+ "%2$s</b>."
3410
+
3411
+ #: nextend-social-login-pro/providers/github/admin/getting-started.php:18
3412
+ msgid ""
3413
+ "Enter a name into the <b>Application name</b> field. Users will see this "
3414
+ "name, when they authorize your app at the OAuth consent screen!"
3415
+ msgstr ""
3416
+ "Inserisci un nome nel campo <b>Nome Applicazione</b>. Gli utenti vedranno "
3417
+ "questo nome, quando autorizzeranno la tua app nella schermata OAuth!"
3418
+
3419
+ #: nextend-social-login-pro/providers/github/admin/getting-started.php:19
3420
+ #, php-format
3421
+ msgid ""
3422
+ "Fill <b>Homepage URL</b> with the url of your homepage, probably: <b>%s</b>"
3423
+ msgstr ""
3424
+ "Compila <b>Homepage URL</b> con l'url della tua homepage, probabilmente: <b>"
3425
+ "%s</b>"
3426
+
3427
+ #: nextend-social-login-pro/providers/github/admin/getting-started.php:20
3428
+ msgid ""
3429
+ "In the <b>Description</b> field you should explain what this App will be "
3430
+ "used for."
3431
+ msgstr ""
3432
+ "Nel campo <b>Descrizione</b> dovresti spiegare per cosa è impiegata questa "
3433
+ "App."
3434
+
3435
+ #: nextend-social-login-pro/providers/github/admin/getting-started.php:21
3436
+ #, php-format
3437
+ msgid ""
3438
+ "Add the following URL to the <b>Authorization callback URL</b> field: <b>%s</"
3439
+ "b>"
3440
+ msgstr ""
3441
+ "Aggiungi questa URL nel campo della <b>Authorization callback URL</b>: <b>"
3442
+ "%s</b>"
3443
+
3444
+ #: nextend-social-login-pro/providers/github/admin/getting-started.php:22
3445
+ msgid "Click the <b>Register application</b> button."
3446
+ msgstr "Clicca il bottone <b>Regisstra applicazione</b>."
3447
+
3448
+ #: nextend-social-login-pro/providers/github/admin/getting-started.php:23
3449
+ msgid ""
3450
+ "Find the necessary <b>Client ID</b> and <b>Client Secret</b> at the middle "
3451
+ "of the page. These will be needed in the plugin's settings!"
3452
+ msgstr ""
3453
+ "Cerca il <b>Client ID</b> and il <b>Client Secret</b>richiesti al centro "
3454
+ "della pagina. Questi saranno necessari nei settaggi del plugin!"
3455
+
3456
+ #: nextend-social-login-pro/providers/github/admin/getting-started.php:26
3457
+ #, php-format
3458
+ msgid ""
3459
+ "<b>Important note:</b> The email address is only retrievable, if there is a "
3460
+ "public email address set at the %1$s profile page%2$s!"
3461
+ msgstr ""
3462
+
3463
+ #: nextend-social-login-pro/providers/github/github.php:125
3464
+ msgid "Continue with <b>GitHub</b>"
3465
+ msgstr "Continua con <b>GitHub</b>"
3466
+
3467
+ #: nextend-social-login-pro/providers/github/github.php:126
3468
+ #, fuzzy
3469
+ #| msgid "Continue with <b>GitHub</b>"
3470
+ msgid "Sign up with <b>GitHub</b>"
3471
+ msgstr "Continua con <b>GitHub</b>"
3472
+
3473
+ #: nextend-social-login-pro/providers/github/github.php:127
3474
+ msgid "Link account with <b>GitHub</b>"
3475
+ msgstr "Collega account con <b>GitHub</b>"
3476
+
3477
+ #: nextend-social-login-pro/providers/github/github.php:128
3478
+ msgid "Unlink account from <b>GitHub</b>"
3479
+ msgstr "Scollega account da <b>GitHub</b>"
3480
+
3481
+ #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:10
3482
+ msgid "Click on your App and go to the \"<b>Auth</b>\" tab."
3483
+ msgstr "Clicca sulla tua App e vai nella tab \"<b>Auth</b>\"."
3484
+
3485
+ #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:11
3486
+ #, php-format
3487
+ msgid "Add the following URL to the \"<b>Redirect URLs</b>\" field: <b>%s</b>"
3488
+ msgstr "Aggiungi l'URL seguente nel campo \"<b>Redirect URLs</b>\": <b>%s</b>"
3489
+
3490
+ #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:12
3491
+ #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:27
3492
+ #: nextend-social-login-pro/providers/vk/admin/fix-redirect-uri.php:13
3493
+ #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:14
3494
+ #: nextend-social-login-pro/providers/yahoo/admin/fix-redirect-uri.php:12
3495
+ msgid "Click on \"<b>Update</b>\" to save the changes"
3496
+ msgstr "Clicca su \"<b>Aggiorna</b>\" per salvare le modifiche"
3497
+
3498
+ #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:17
3499
+ msgid "Locate the \"<b>Create app</b>\" button and click on it."
3500
+ msgstr "Cerca il bottone \"<b>Crea app</b>\" e cliccaci."
3501
+
3502
+ #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:18
3503
+ msgid "Enter the name of your App to the \"App name\" field."
3504
+ msgstr "Inserisci il nome della tua App nel campo \"Nome App\"."
3505
+
3506
+ #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:19
3507
+ #, php-format
3508
+ msgid ""
3509
+ "Find your company page in the \"<b>Company</b>\" field. If you don't have "
3510
+ "one yet, create new one at: %s"
3511
+ msgstr ""
3512
+ "Cerca la pagina della tua azienda nel campo \"<b>Azienda</b>\". Se non ne "
3513
+ "hai ancora una, creane una nuova qui: %s"
3514
+
3515
+ #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:20
3516
+ msgid ""
3517
+ "Enter your \"<b>Privacy policy URL</b>\" and upload an \"<b>App logo</b>\""
3518
+ msgstr ""
3519
+ "Inserisci l'URL della tua \"<b>Privacy policy</b>\" e carica un \"<b>logo "
3520
+ "per l'App</b>\""
3521
+
3522
+ #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:21
3523
+ msgid ""
3524
+ "Read and agree the \"<b>API Terms of Use</b>\" then click the \"<b>Create "
3525
+ "App</b>\" button!"
3526
+ msgstr ""
3527
+ "Leggi e acconsenti ai \"<b>Termini di Utilizzo delle API</b>\" poi clicca il "
3528
+ "bottone \"<b>Crea App</b>\"!"
3529
+
3530
+ #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:22
3531
+ msgid ""
3532
+ "You will end up in the App setting area. Click on the \"<b>Products</b>\" "
3533
+ "tab."
3534
+ msgstr ""
3535
+ "Finirai nell'area delle impostazioni dell'App. Clicca sulla tab "
3536
+ "\"<b>Prodotti</b>\"."
3537
+
3538
+ #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:23
3539
+ #, php-format
3540
+ msgid "Find <b>\"%s\"</b> and click \"<b>Select</b>\"."
3541
+ msgstr "Cerca <b>\"%s\"</b> e clicca \"<b>Seleziona</b>\"."
3542
+
3543
+ #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:24
3544
+ msgid ""
3545
+ "A modal will appear where you need to tick the \"<b>I have read and agree to "
3546
+ "these terms</b>\" checkbox and finally press the \"<b>Add product</b>\" "
3547
+ "button."
3548
+ msgstr ""
3549
+ "Una finestra Modal ti apparirà, dove dovrai spuntare il la casella \"<b>Ho "
3550
+ "letto e accetto questi termini</b>\", in conclusione premi il bottone "
3551
+ "\"<b>Aggiungi prodotto</b>\"."
3552
+
3553
+ #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:25
3554
+ msgid "Click on the \"<b>Auth</b>\" tab."
3555
+ msgstr "Clicca sulla tab \"<b>Auth</b>\"."
3556
+
3557
+ #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:26
3558
+ #, php-format
3559
+ msgid ""
3560
+ "Find \"<b>OAuth 2.0 settings</b>\" section and add the following URL to the "
3561
+ "\"<b>Redirect URLs</b>\" field: <b>%s</b>"
3562
+ msgstr ""
3563
+ "Cerca la sezione \"<b>OAuth 2.0 settings</b>\" e aggiungi l'URL seguente al "
3564
+ "campo \"<b>Redirect URLs</b>\": <b>%s</b>"
3565
+
3566
+ #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:28
3567
+ msgid ""
3568
+ "Find the necessary \"<b>Client ID</b>\" and \"<b>Client Secret</b>\" under "
3569
+ "the Application credentials section, on the <b>Auth</b> tab."
3570
+ msgstr ""
3571
+ "Cerca il \"<b>Client ID</b>\" and \"<b>Client Secret</b>\" richiesti sotto "
3572
+ "la sezione Credenziali applicazione, nella tab <b>Auth</b>."
3573
+
3574
+ #: nextend-social-login-pro/providers/linkedin/linkedin.php:38
3575
+ msgid "Continue with <b>LinkedIn</b>"
3576
+ msgstr "Continua con <b>LinkedIn</b>"
3577
+
3578
+ #: nextend-social-login-pro/providers/linkedin/linkedin.php:39
3579
+ #, fuzzy
3580
+ #| msgid "Continue with <b>LinkedIn</b>"
3581
+ msgid "Sign up with <b>LinkedIn</b>"
3582
+ msgstr "Continua con <b>LinkedIn</b>"
3583
+
3584
+ #: nextend-social-login-pro/providers/linkedin/linkedin.php:40
3585
+ msgid "Link account with <b>LinkedIn</b>"
3586
+ msgstr "Collega account con <b>LinkedIn</b>"
3587
+
3588
+ #: nextend-social-login-pro/providers/linkedin/linkedin.php:41
3589
+ msgid "Unlink account from <b>LinkedIn</b>"
3590
+ msgstr "Scollega account da <b>LinkedIn</b>"
3591
+
3592
+ #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:10
3593
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:18
3594
+ msgid "There is a Sandbox/Live switch. Make sure \"<b>Live</b>\" is selected!"
3595
+ msgstr ""
3596
+ "C'è uno swich Sandbox/Live. Accertati che \"<b>Live</b>\" sia selezionato!"
3597
+
3598
+ #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:11
3599
+ #, php-format
3600
+ msgid "Click on the name of your %s App, under the REST API apps section."
3601
+ msgstr "Clicca sul nome della tua %s App, sotto la sezione dell'app REST API."
3602
+
3603
+ #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:12
3604
+ msgid ""
3605
+ "Scroll down to \"<b>LIVE APP SETTINGS</b>\", find the \"<b>Live Return URL</"
3606
+ "b>\" heading and click \"<b>Show</b>\"."
3607
+ msgstr ""
3608
+ "Scendi giù fino a \"<b>SETTAGGI APP LIVE</b>\", cerca il titolo \"<b>Live "
3609
+ "Return URL</b>\" e clicca su \"<b>Mostra</b>\"."
3610
+
3611
+ #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:13
3612
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:22
3613
+ #, php-format
3614
+ msgid ""
3615
+ "Add the following URL to the \"<b>Live Return URL</b>\" field: <b>%s</b> "
3616
+ msgstr ""
3617
+ "Aggiungi l'URL seguente al campo \"<b>Live Return URL</b>\": <b>%s</b> "
3618
+
3619
+ #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:14
3620
+ msgid "Click on \"Save\""
3621
+ msgstr "Clicca su \"Salva\""
3622
+
3623
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:15
3624
+ #, php-format
3625
+ msgid ""
3626
+ "Editing Live Apps are only possible with a %s. So please make sure you own "
3627
+ "one!"
3628
+ msgstr ""
3629
+ "La modifica delle Live Apps sono possibili solo con un %s. Gentilmente "
3630
+ "accertati di possederne uno!"
3631
+
3632
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:19
3633
+ msgid "Click the \"<b>Create App</b>\" button under the REST API apps section."
3634
+ msgstr "Clicca il bottone \"<b>Crea App</b>\" nella sezione REST API dell'app."
3635
+
3636
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:20
3637
+ msgid ""
3638
+ "Fill the \"<b>App Name</b>\" field and click \"<b>Create App</b>\" button."
3639
+ msgstr ""
3640
+ "Compila il campo \"<b>Nome App</b>\" e clicca il bottone \"<b>Crea App</b>\"."
3641
+
3642
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:21
3643
+ msgid ""
3644
+ "Scroll down to \"<b>LIVE APP SETTINGS</b>\", find the \"<b>Live Return URL</"
3645
+ "b>\" heading then click \"<b>Show</b>\"."
3646
+ msgstr ""
3647
+ "Scendi giù fino a \"<b>LIVE APP SETTINGS</b>\", cerca il titolo \"<b>Live "
3648
+ "Return URL</b>\" e poi clicca \"<b>Mostra</b>\"."
3649
+
3650
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:23
3651
+ msgid ""
3652
+ "Scroll down to \"<b>App feature options</b>\" section and tick \"<b>Log In "
3653
+ "with PayPal</b>\"."
3654
+ msgstr ""
3655
+ "Scendi giù fino alla sezione \"<b>Caratteristiche e Opzioni dell'App</b>\" e "
3656
+ "spunta \"<b>Accedi con PayPal</b>\"."
3657
+
3658
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:24
3659
+ msgid ""
3660
+ "Click \"<b>Advanced Options</b>\" which can be found at the end of text "
3661
+ "after \"<b>Connect with PayPal (formerly Log In with PayPal)</b>\"."
3662
+ msgstr ""
3663
+ "Clicca \"<b>Opzioni Avanzate</b>\" che possono essere trovate alla fine del "
3664
+ "testo dopo \"<b>Connettiti con PayPal (formalmente Accedi con PayPal)</b>\"."
3665
+
3666
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:25
3667
+ msgid "Tick \"<b>Full name</b>\"."
3668
+ msgstr "Spunta \"<b>Nome completo</b>\"."
3669
+
3670
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:26
3671
+ msgid ""
3672
+ "\"<b>Email address</b>\" now requires an App Review by PayPal. To get the "
3673
+ "email address as well, <b>please submit your App for a review</b> after your "
3674
+ "App configuration is finished. Once the App review is successful, you need "
3675
+ "to pick \"Email address\" here to retrieve the email of the user. Until then "
3676
+ "make sure the Email scope is not \"Enabled\" in our PayPal Settings tab."
3677
+ msgstr ""
3678
+
3679
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:27
3680
+ msgid "Fill \"<b>Privacy policy URL</b>\" and \"<b>User agreement URL</b>\"."
3681
+ msgstr ""
3682
+ "Compila \"<b>URL Privacy policy</b>\" e \"<b>URL Accordo con l'utente</b>\"."
3683
+
3684
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:29
3685
+ msgid ""
3686
+ "Scroll up to \"<b>LIVE API CREDENTIALS</b>\" section and find the necessary "
3687
+ "\"<b>Client ID</b>\" and \"<b>Secret</b>\"! ( Make sure you are in "
3688
+ "\"<b>Live</b>\" mode and not \"Sandbox\". )"
3689
+ msgstr ""
3690
+ "Sali su fino alla sezione \"<b>LIVE API CREDENTIALS</b>\" e cerca il "
3691
+ "\"<b>Client ID</b>\" and \"<b>Secret</b>\" richiesti! (Accertati di trovarti "
3692
+ "nella modalità \"<b>Live</b>\" e non quella \"Sandbox\". )"
3693
+
3694
+ #: nextend-social-login-pro/providers/paypal/admin/settings.php:38
3695
+ msgid "Secret"
3696
+ msgstr "Secret"
3697
+
3698
+ #: nextend-social-login-pro/providers/paypal/admin/settings.php:45
3699
+ msgid "Email scope"
3700
+ msgstr ""
3701
+
3702
+ #: nextend-social-login-pro/providers/paypal/admin/settings.php:54
3703
+ msgid "Disable, when you have no rights for email address."
3704
+ msgstr "Disabilita, quando non hai diritti sull'indirizzo email."
3705
+
3706
+ #: nextend-social-login-pro/providers/paypal/paypal.php:65
3707
+ msgid "Continue with <b>PayPal</b>"
3708
+ msgstr "Continua con <b>PayPal</b>"
3709
+
3710
+ #: nextend-social-login-pro/providers/paypal/paypal.php:66
3711
+ #, fuzzy
3712
+ #| msgid "Continue with <b>PayPal</b>"
3713
+ msgid "Sign up with <b>PayPal</b>"
3714
+ msgstr "Continua con <b>PayPal</b>"
3715
+
3716
+ #: nextend-social-login-pro/providers/paypal/paypal.php:67
3717
+ msgid "Link account with <b>PayPal</b>"
3718
+ msgstr "Collega account con <b>PayPal</b>"
3719
+
3720
+ #: nextend-social-login-pro/providers/paypal/paypal.php:68
3721
+ msgid "Unlink account from <b>PayPal</b>"
3722
+ msgstr "Scollega account da <b>PayPal</b>"
3723
+
3724
+ #: nextend-social-login-pro/providers/vk/admin/fix-redirect-uri.php:10
3725
+ msgid "Click on the \"<b>Manage</b>\" button next to the associated App."
3726
+ msgstr "Clicca sul bottone \"<b>Gestisci</b>\" vicino l'App associata."
3727
+
3728
+ #: nextend-social-login-pro/providers/vk/admin/fix-redirect-uri.php:11
3729
+ msgid "Go to the \"<b>Settings</b>\" menu"
3730
+ msgstr "Vai al menu \"<b>Settaggi</b>\""
3731
+
3732
+ #: nextend-social-login-pro/providers/vk/admin/fix-redirect-uri.php:12
3733
+ #, php-format
3734
+ msgid ""
3735
+ "Add the following URL to the \"<b>Authorized redirect URI</b>\" field: <b>"
3736
+ "%s</b>"
3737
+ msgstr ""
3738
+ "Aggiungi l'URL seguente al campo \"<b>Authorized redirect URI</b>\": <b>%s</"
3739
+ "b>"
3740
+
3741
+ #: nextend-social-login-pro/providers/vk/admin/getting-started.php:17
3742
+ msgid "Locate the blue \"<b>Create app</b>\" button and click on it."
3743
+ msgstr "Cerca il bottone \"<b>Crea app</b>\" e cliccaci."
3744
+
3745
+ #: nextend-social-login-pro/providers/vk/admin/getting-started.php:18
3746
+ msgid ""
3747
+ "Enter the <b>Title</b> for your App and select \"<b>Website</b>\" as "
3748
+ "platform."
3749
+ msgstr ""
3750
+ "Inserisci il <b>Titolo</b> per la tua App e seleziona \"<b>Sito internet</b>"
3751
+ "\" come piattaforma."
3752
+
3753
+ #: nextend-social-login-pro/providers/vk/admin/getting-started.php:19
3754
+ #, php-format
3755
+ msgid ""
3756
+ "Fill \"<b>Website address</b>\" with the url of your homepage, probably: <b>"
3757
+ "%s</b>"
3758
+ msgstr ""
3759
+ "Compila \"<b>Indirizzo sito internet</b>\" con l'url della tua homepage, "
3760
+ "probabilmente: <b>%s</b>"
3761
+
3762
+ #: nextend-social-login-pro/providers/vk/admin/getting-started.php:20
3763
+ #, php-format
3764
+ msgid ""
3765
+ "Fill the \"<b>Base domain</b>\" field with your domain, probably: <b>%s</b>"
3766
+ msgstr ""
3767
+ "Compila il campo \"<b>Dominio base</b>\" col tuo dominio, probabilmente: <b>"
3768
+ "%s</b>"
3769
+
3770
+ #: nextend-social-login-pro/providers/vk/admin/getting-started.php:21
3771
+ msgid "When all fields are filled, click the \"<b>Upload app</b>\" button."
3772
+ msgstr ""
3773
+ "Quando tutti i campi sono compilati, clicca il bottone \"<b>Carica app</b>\"."
3774
+
3775
+ #: nextend-social-login-pro/providers/vk/admin/getting-started.php:22
3776
+ msgid ""
3777
+ "<b>Fill the information form</b> of your app, <b>upload an app icon</b> then "
3778
+ "click <b>Save</b>."
3779
+ msgstr ""
3780
+ "<b>Compila il form delle informazioni</b> della tua app, <b>carica una icona "
3781
+ "per l'app</b> e poi clicca su <b>Salva</b>."
3782
+
3783
+ #: nextend-social-login-pro/providers/vk/admin/getting-started.php:23
3784
+ msgid "Pick <b>Settings</b> at the left-hand menu "
3785
+ msgstr "Seleziona <b>Settaggi</b> nel menu a sinistra "
3786
+
3787
+ #: nextend-social-login-pro/providers/vk/admin/getting-started.php:24
3788
+ #, php-format
3789
+ msgid ""
3790
+ "Add the following URL to the \"<b>Authorized redirect URI</b>\" field <b>%s</"
3791
+ "b> "
3792
+ msgstr ""
3793
+ "Aggiungi l'URL seguente al campo \"<b>Authorized redirect URI</b>\" <b>%s</"
3794
+ "b> "
3795
+
3796
+ #: nextend-social-login-pro/providers/vk/admin/getting-started.php:25
3797
+ msgid "<b>Save</b> your app"
3798
+ msgstr "<b>Salva</b> la tua app"
3799
+
3800
+ #: nextend-social-login-pro/providers/vk/admin/getting-started.php:26
3801
+ msgid ""
3802
+ "Find the necessary \"<b>App ID</b>\" and \"<b>Secure key</b>\" at the top of "
3803
+ "the Settings page where you just hit the save button."
3804
+ msgstr ""
3805
+ "Cerca l'\"<b>App ID</b>\" e la \"<b>Secure key</b>\" richieste in alta nella "
3806
+ "pagina Settaggi dove hai premuto il bottone per il salvataggio."
3807
+
3808
+ #: nextend-social-login-pro/providers/vk/admin/settings.php:39
3809
+ msgid "Secure key"
3810
+ msgstr "Secure key"
3811
+
3812
+ #: nextend-social-login-pro/providers/vk/vk.php:36
3813
+ msgid "Continue with <b>VK</b>"
3814
+ msgstr "Continua con <b>VK</b>"
3815
+
3816
+ #: nextend-social-login-pro/providers/vk/vk.php:37
3817
+ #, fuzzy
3818
+ #| msgid "Continue with <b>VK</b>"
3819
+ msgid "Sign up with <b>VK</b>"
3820
+ msgstr "Continua con <b>VK</b>"
3821
+
3822
+ #: nextend-social-login-pro/providers/vk/vk.php:38
3823
+ msgid "Link account with <b>VK</b>"
3824
+ msgstr "Collega account con <b>VK</b>"
3825
+
3826
+ #: nextend-social-login-pro/providers/vk/vk.php:39
3827
+ msgid "Unlink account from <b>VK</b>"
3828
+ msgstr "Scollega account da <b>VK</b>"
3829
+
3830
+ #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:12
3831
+ msgid "Click \"<b>Manage Settings</b>\" under the Tools section!"
3832
+ msgstr "Clicca \"<b>Gestisci Settaggi</b>\" sotto la sezione Strumenti!"
3833
+
3834
+ #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:13
3835
+ #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:20
3836
+ #, php-format
3837
+ msgid "Add the following URL to the \"<b>Redirect URLs</b>\" field <b>%s</b> "
3838
+ msgstr ""
3839
+ "Aggiungi l'URL seguente al campo \"<b>Redirect URLs</b>\" field <b>%s</b> "
3840
+
3841
+ #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:17
3842
+ msgid "Click on the \"<b>Create New Application</b>\" button."
3843
+ msgstr "Clicca sul bottone \"<b>Crea Nuova Applicazione</b>\"."
3844
+
3845
+ #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:18
3846
+ msgid "Enter a \"<b>Name</b>\" and \"<b>Description</b>\" for your App."
3847
+ msgstr "Inserisci \"<b>Nome</b>\" e \"<b>Descrizione</b>\" for la tua App."
3848
+
3849
+ #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:19
3850
+ #, php-format
3851
+ msgid ""
3852
+ "Fill \"<b>Website URL</b>\" with the url of your homepage, probably: <b>%s</"
3853
+ "b>"
3854
+ msgstr ""
3855
+ "Compila \"<b>URL del sito internet</b>\" con l'url della tua homepage, "
3856
+ "probabilmente: <b>%s</b>"
3857
+
3858
+ #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:21
3859
+ msgid "You can leave the \"Javascript Origins\" field blank!"
3860
+ msgstr "Puoi lasciare il campo \"Javascript Origins\" vuoto!"
3861
+
3862
+ #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:22
3863
+ msgid "Complete the human verification test."
3864
+ msgstr "Completa il test \"verifica umano\"."
3865
+
3866
+ #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:23
3867
+ msgid "At the \"<b>Type</b>\" make sure \"<b>Web</b>\" is selected!"
3868
+ msgstr "In \"<b>Tipo</b>\" assicurati che \"<b>Web</b>\" sia selezionato!"
3869
+
3870
+ #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:24
3871
+ msgid "Click the \"<b>Create</b>\" button!"
3872
+ msgstr "Clicca il bottone\"<b>Crea</b>\"!"
3873
+
3874
+ #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:25
3875
+ msgid ""
3876
+ "<b>Click the name of your App</b> either in the Breadcrumb navigation or "
3877
+ "next to Editing!"
3878
+ msgstr ""
3879
+
3880
+ #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:26
3881
+ msgid ""
3882
+ "Here you can see your \"<b>Client ID</b>\" and \"<b>Client Secret</b>\". "
3883
+ "These will be needed in the plugin's settings."
3884
+ msgstr ""
3885
+ "Qui vedrai il tuo \"<b>Client ID</b>\" e il tuo \"<b>Client Secret</b>\". "
3886
+ "Questi saranno richiesti nei settaggi del plugin."
3887
+
3888
+ #: nextend-social-login-pro/providers/wordpress/wordpress.php:74
3889
+ msgid "Continue with <b>WordPress.com</b>"
3890
+ msgstr "Continua con <b>WordPress.com</b>"
3891
+
3892
+ #: nextend-social-login-pro/providers/wordpress/wordpress.php:75
3893
+ #, fuzzy
3894
+ #| msgid "Continue with <b>WordPress.com</b>"
3895
+ msgid "Sign up with <b>WordPress.com</b>"
3896
+ msgstr "Continua con <b>WordPress.com</b>"
3897
+
3898
+ #: nextend-social-login-pro/providers/wordpress/wordpress.php:76
3899
+ msgid "Link account with <b>WordPress.com</b>"
3900
+ msgstr "Collega account con <b>WordPress.com</b>"
3901
+
3902
+ #: nextend-social-login-pro/providers/wordpress/wordpress.php:77
3903
+ msgid "Unlink account from <b>WordPress.com</b>"
3904
+ msgstr "Scollega account da <b>WordPress.com</b>"
3905
+
3906
+ #: nextend-social-login-pro/providers/yahoo/admin/fix-redirect-uri.php:10
3907
+ msgid "Click on the App which has its credentials associated with the plugin."
3908
+ msgstr "Clicca sull'App che ha le credenziali associate col plugin."
3909
+
3910
+ #: nextend-social-login-pro/providers/yahoo/admin/fix-redirect-uri.php:11
3911
+ #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:22
3912
+ #, php-format
3913
+ msgid ""
3914
+ "Add the following URL to the \"<b>Redirect URI(s)</b>\" field: <b>%s</b>"
3915
+ msgstr ""
3916
+ "Aggiungi la seguente URL al campo \"<b>Redirect URI(s)</b>\": <b>%s</b>"
3917
+
3918
+ #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:18
3919
+ msgid "Click on the \"<b>Create an App</b>\" button on the top right corner."
3920
+ msgstr ""
3921
+ "Clicca sul bottone \"<b>Crea un'App</b>\" nell'angolo in alto a destra."
3922
+
3923
+ #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:19
3924
+ msgid ""
3925
+ "Fill the \"<b>Application Name</b>\" and select \"<b>Web Application</b>\" "
3926
+ "at \"<b>Application Type</b>\"."
3927
+ msgstr ""
3928
+ "Compila \"<b>Nome Applicazione</b>\" e seleziona \"<b>Applicazione Web</b>\" "
3929
+ "nei \"<b>Tipi di applicazione</b>\"."
3930
+
3931
+ #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:20
3932
+ msgid "Enter a \"<b>Description</b>\" for your app!"
3933
+ msgstr "Inserisci una \"<b>Descrizione</b>\" per la tua app!"
3934
+
3935
+ #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:21
3936
+ #, php-format
3937
+ msgid ""
3938
+ "Enter the URL of your site to the \"<b>Home Page URL</b>\" field: <b>%s</b>"
3939
+ msgstr ""
3940
+ "Inserisci l'URL del tuo sito nel campo \"<b>Home Page URL</b>\": <b>%s</b>"
3941
+
3942
+ #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:23
3943
+ msgid ""
3944
+ "Under the \"<b>API Permissions</b>\" you should select \"<b>OpenID Connect "
3945
+ "Permissions</b>\" with both \"<b>Email</b>\" and \"<b>Profile</b>\" enabled."
3946
+ msgstr ""
3947
+ "Under the \"<b>API Permissions</b>\" you should select \"<b>OpenID Connect "
3948
+ "Permissions</b>\" with both \"<b>Email</b>\" and \"<b>Profile</b>\" enabled."
3949
+
3950
+ #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:24
3951
+ msgid "Click \"<b>Create App</b>\"."
3952
+ msgstr "Clicca \"<b>Crea App</b>\"."
3953
+
3954
+ #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:25
3955
+ msgid ""
3956
+ "On the top of the page, you will find the necessary \"<b>Client ID</b>\" and "
3957
+ "\"<b>Client Secret</b>\"! These will be needed in the plugin's settings."
3958
+ msgstr ""
3959
+ "In alto nella pagina, troverai i necessari \"<b>Client ID</b>\" e "
3960
+ "\"<b>Client Secret</b>\"! Questi ti serviranno nella configurazione del "
3961
+ "plugin."
3962
+
3963
+ #: nextend-social-login-pro/providers/yahoo/yahoo.php:65
3964
+ msgid "Continue with <b>Yahoo</b>"
3965
+ msgstr "Continua con <b>Yahoo</b>"
3966
+
3967
+ #: nextend-social-login-pro/providers/yahoo/yahoo.php:66
3968
+ #, fuzzy
3969
+ #| msgid "Continue with <b>Yahoo</b>"
3970
+ msgid "Sign up with <b>Yahoo</b>"
3971
+ msgstr "Continua con <b>Yahoo</b>"
3972
+
3973
+ #: nextend-social-login-pro/providers/yahoo/yahoo.php:67
3974
+ msgid "Link account with <b>Yahoo</b>"
3975
+ msgstr "Collega account con <b>Yahoo</b>"
3976
+
3977
+ #: nextend-social-login-pro/providers/yahoo/yahoo.php:68
3978
+ msgid "Unlink account from <b>Yahoo</b>"
3979
+ msgstr "Scollega account da <b>Yahoo</b>"
3980
+
3981
+ #: nextend-social-login-pro/providers/yahoo/yahoo.php:188
3982
+ #, php-format
3983
+ msgid "Required permission: %1$s"
3984
+ msgstr "Permesso richiesto: %1$s"
3985
+
3986
+ #: nextend-social-login-pro/template-parts/buddypress/login/above-separator.php:10
3987
+ #: nextend-social-login-pro/template-parts/buddypress/login/below-separator.php:10
3988
+ #: nextend-social-login-pro/template-parts/embedded-login/above-separator.php:10
3989
+ #: nextend-social-login-pro/template-parts/embedded-login/below-separator.php:10
3990
+ #: nextend-social-login-pro/template-parts/login/above-separator.php:20
3991
+ #: nextend-social-login-pro/template-parts/login/below-separator.php:8
3992
+ #: nextend-social-login-pro/template-parts/memberpress/login/above-separator.php:10
3993
+ #: nextend-social-login-pro/template-parts/memberpress/login/below-separator.php:10
3994
+ #: nextend-social-login-pro/template-parts/memberpress/sign-up/above-separator.php:10
3995
+ #: nextend-social-login-pro/template-parts/memberpress/sign-up/below-separator.php:10
3996
+ #: nextend-social-login-pro/template-parts/ultimate-member/login/above-separator.php:10
3997
+ #: nextend-social-login-pro/template-parts/ultimate-member/login/below-separator.php:10
3998
+ #: nextend-social-login-pro/template-parts/ultimate-member/register/above-separator.php:10
3999
+ #: nextend-social-login-pro/template-parts/ultimate-member/register/below-separator.php:10
4000
+ #: nextend-social-login-pro/template-parts/userpro/login/above-separator.php:10
4001
+ #: nextend-social-login-pro/template-parts/userpro/login/below-separator.php:10
4002
+ #: nextend-social-login-pro/template-parts/userpro/register/above-separator.php:10
4003
+ #: nextend-social-login-pro/template-parts/userpro/register/below-separator.php:10
4004
+ #: nextend-social-login-pro/template-parts/woocommerce/billing/above-separator.php:11
4005
+ #: nextend-social-login-pro/template-parts/woocommerce/billing/below-separator.php:11
4006
+ #: nextend-social-login-pro/template-parts/woocommerce/billing/default-separator-after.php:7
4007
+ #: nextend-social-login-pro/template-parts/woocommerce/billing/default-separator-before.php:7
4008
+ #: nextend-social-login-pro/template-parts/woocommerce/checkout-for-woocommerce/above-separator.php:15
4009
+ #: nextend-social-login-pro/template-parts/woocommerce/checkout-for-woocommerce/below-separator.php:15
4010
+ #: nextend-social-login-pro/template-parts/woocommerce/login/above-separator.php:10
4011
+ #: nextend-social-login-pro/template-parts/woocommerce/login/below-separator.php:10
4012
+ #: nextend-social-login-pro/template-parts/woocommerce/register/above-separator.php:10
4013
+ #: nextend-social-login-pro/template-parts/woocommerce/register/below-separator.php:10
4014
+ msgid "OR"
4015
+ msgstr "OR"
4016
+
4017
+ #: nextend-social-login-pro/template-parts/memberpress/account-home.php:1
4018
+ #: nextend-social-login-pro/template-parts/ultimate-member/account-home.php:2
4019
+ #: nextend-social-login-pro/template-parts/woocommerce/edit-account-after.php:1
4020
+ #: nextend-social-login-pro/template-parts/woocommerce/edit-account-before.php:1
4021
+ msgid "Social accounts"
4022
+ msgstr "Account social"
4023
+
4024
+ #~ msgid ""
4025
+ #~ "The <b>Edit</b> button can be found on the App details tab. Click on it "
4026
+ #~ "and select \"<b>Edit details</b>\""
4027
+ #~ msgstr ""
4028
+ #~ "Il bottone <b>Modifica</b> può essere trovato nella tab dettagli "
4029
+ #~ "dell'App. cliccaci e seleziona \"<b>Modifica dettagli</b>\""
4030
+
4031
+ #, php-format
4032
+ #~ msgid "Log in with your %s credentials if you are not logged in yet"
4033
+ #~ msgstr "Accedi con le tue credenziali %s se non sei ancora loggato"
4034
+
4035
+ #, php-format
4036
+ #~ msgid ""
4037
+ #~ "Fill the <b>App name</b>, <b>Application description</b> fields. Then "
4038
+ #~ "enter your site's URL to the <b>Website URL</b> field: <b>%s</b>"
4039
+ #~ msgstr ""
4040
+ #~ "Compila i campi <b>Nome app</b> e <b>Descrizione applicazione</b>. Poi "
4041
+ #~ "inserisci l'URL del tuo sito nel campo <b>URL sito internet</b>: <b>%s</b>"
4042
+
4043
+ #~ msgid "Tick the checkbox next to <b>Enable Sign in with Twitter</b>!"
4044
+ #~ msgstr "Spunta la casella accanto <b>Abilita Accedi con Twitter</b>!"
4045
+
4046
+ #~ msgid ""
4047
+ #~ "Fill the “<b>Terms of Service URL</b>\", \"<b>Privacy policy URL</b>\" "
4048
+ #~ "and \"<b>Tell us how this app will be used</b>\" fields!"
4049
+ #~ msgstr ""
4050
+ #~ "Compila i campi “<b>URL Termini di Servizio</b>\", \"<b>URL Privacy "
4051
+ #~ "policy</b>\" e \"<b>Dicci come quest'App sarà usata</b>\"!"
4052
+
4053
+ #~ msgid "Click the <b>Create</b> button."
4054
+ #~ msgstr "Clicca il bottone <b>Crea</b>."
4055
+
4056
+ #~ msgid "Read the Developer Terms and click the <b>Create</b> button again!"
4057
+ #~ msgstr ""
4058
+ #~ "Leggi i Termini per lo Sviluppatore e clicca di nuovo il bottone <b>Crea</"
4059
+ #~ "b>!"
4060
+
4061
+ #~ msgid "Select the <b>Permissions</b> tab and click <b>Edit</b>."
4062
+ #~ msgstr "Seleziona la tab <b>Permessi</b> e clicca <b>Modifica</b>."
4063
+
4064
+ #~ msgid ""
4065
+ #~ "Tick the <b>Request email address from users</b> under the Additional "
4066
+ #~ "permissions section and click <b>Save</b>."
4067
+ #~ msgstr ""
4068
+ #~ "Spunta <b>Richiedi indirizzo email dagli utenti</b> sotto la sezione "
4069
+ #~ "Permessi addizionali e clicca <b>Salva</b>."
4070
+
4071
+ #~ msgid ""
4072
+ #~ "Go to the <b>Keys and tokens</b> tab and find the <b>API key</b> and "
4073
+ #~ "<b>API secret key</b>"
4074
+ #~ msgstr ""
4075
+ #~ "Vai alla tab <b>Chiavi e tokens</b> e cerca <b>API key</b> e <b>API "
4076
+ #~ "secret key</b>"
4077
+
4078
+ #~ msgid "Click on the \"<b>Add a New App\" button</b>"
4079
+ #~ msgstr "Clicca sul bottone \"<b>Aggiungi una Nuova App\"</b>"
languages/nextend-facebook-connect-nl_NL.mo CHANGED
Binary file
languages/nextend-facebook-connect-nl_NL.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: nextend-facebook-connect\n"
4
- "POT-Creation-Date: 2020-08-25 13:38+0200\n"
5
- "PO-Revision-Date: 2020-08-25 13:38+0200\n"
6
  "Last-Translator: Erik Molenaar <info@erikmolenaar.nl>\n"
7
  "Language-Team: nextend-facebook-connect\n"
8
  "Language: nl_NL\n"
@@ -135,29 +135,29 @@ msgstr ""
135
  msgid "User"
136
  msgstr "Gebruiker"
137
 
138
- #: nextend-facebook-connect/admin/admin.php:203
139
  #, php-format
140
  msgid "%s needs json_decode function."
141
  msgstr "%s heeft de functie json_decode nodig."
142
 
143
- #: nextend-facebook-connect/admin/admin.php:203
144
  msgid "Please contact your server administrator and ask for solution!"
145
  msgstr "Neem contact op met je serverbeheerder en vraag om een oplossing!"
146
 
147
- #: nextend-facebook-connect/admin/admin.php:235
148
- #: nextend-facebook-connect/admin/admin.php:265
149
  msgid "Settings saved."
150
  msgstr "Instellingen opgeslagen."
151
 
152
- #: nextend-facebook-connect/admin/admin.php:244
153
  msgid "The activation was successful"
154
  msgstr "De activering was succesvol"
155
 
156
- #: nextend-facebook-connect/admin/admin.php:255
157
  msgid "Deactivate completed."
158
  msgstr "Deactiveren voltooid."
159
 
160
- #: nextend-facebook-connect/admin/admin.php:433
161
  #: nextend-facebook-connect/admin/templates-provider/menu.php:15
162
  #: nextend-facebook-connect/admin/templates/providers.php:89
163
  #: nextend-facebook-connect/admin/templates/providers.php:101
@@ -165,9 +165,9 @@ msgstr "Deactiveren voltooid."
165
  msgid "Settings"
166
  msgstr "Instellingen"
167
 
168
- #: nextend-facebook-connect/admin/admin.php:516
169
- #: nextend-facebook-connect/includes/oauth2.php:141
170
- #: nextend-facebook-connect/includes/oauth2.php:286
171
  #: nextend-facebook-connect/providers/facebook/facebook-client.php:84
172
  #: nextend-facebook-connect/providers/twitter/twitter-client.php:165
173
  #: nextend-social-login-pro/providers/apple/apple-client.php:87
@@ -176,7 +176,7 @@ msgstr "Instellingen"
176
  msgid "Unexpected response: %s"
177
  msgstr "Onverwachte reactie: %s"
178
 
179
- #: nextend-facebook-connect/admin/admin.php:577
180
  #: nextend-facebook-connect/admin/templates/fix-redirect-uri.php:21
181
  #, php-format
182
  msgid ""
@@ -186,16 +186,16 @@ msgstr ""
186
  "%s detecteert dat je inlog-URL is gewijzigd. Je moet de Oauth-omleidings-"
187
  "URI's bijwerken in de bijbehorende social applicatie."
188
 
189
- #: nextend-facebook-connect/admin/admin.php:578
190
- #: nextend-social-login-pro/providers/apple/apple.php:308
191
  msgid "Fix Error"
192
  msgstr "Fout Oplossen"
193
 
194
- #: nextend-facebook-connect/admin/admin.php:578
195
  msgid "Oauth Redirect URI"
196
  msgstr "Oauth Omleidings-URI"
197
 
198
- #: nextend-facebook-connect/admin/admin.php:595
199
  #, php-format
200
  msgid ""
201
  "%1$s detected that %2$s installed on your site. You need the Pro Addon to "
@@ -205,15 +205,15 @@ msgstr ""
205
  "Add-on nodig om Social Login-knoppen weer te geven in het %2$s "
206
  "aanmeldingsformulier!"
207
 
208
- #: nextend-facebook-connect/admin/admin.php:596
209
  msgid "Dismiss and check Pro Addon"
210
  msgstr "Sluiten en vink Pro-uitbreiding aan"
211
 
212
- #: nextend-facebook-connect/admin/admin.php:596
213
  msgid "Dismiss"
214
  msgstr "Sluiten"
215
 
216
- #: nextend-facebook-connect/admin/admin.php:602
217
  #, php-format
218
  msgid ""
219
  "%1$s detected that %2$s installed on your site. You must set \"<b>Page for "
@@ -224,15 +224,15 @@ msgstr ""
224
  "\"<b>Pagina voor registreerproces</b>\" en \"<b>OAuth-omleidingspagina voor "
225
  "uri-proxy</b>\" instellen om %1$s correct te laten werken."
226
 
227
- #: nextend-facebook-connect/admin/admin.php:603
228
  msgid "Fix now"
229
  msgstr "Nu maken"
230
 
231
- #: nextend-facebook-connect/admin/admin.php:627
232
  msgid "Activate your Pro Addon"
233
  msgstr "Activeer je Pro Add-on"
234
 
235
- #: nextend-facebook-connect/admin/admin.php:628
236
  #, fuzzy
237
  #| msgid ""
238
  #| "To be able to use the Pro features, you need to activate Nextend Social "
@@ -247,20 +247,20 @@ msgstr ""
247
  "uitbreiding activeren. Je kunt dit doen door hieronder op de knop Activeren "
248
  "te klikken en vervolgens de bijbehorende aankoop te selecteren."
249
 
250
- #: nextend-facebook-connect/admin/admin.php:633
251
- #: nextend-social-login-pro/nextend-social-login-pro.php:94
252
  msgid "Activate"
253
  msgstr "Activeren"
254
 
255
- #: nextend-facebook-connect/admin/admin.php:731
256
  msgid "License key"
257
  msgstr "Licentiesleutel"
258
 
259
- #: nextend-facebook-connect/admin/admin.php:754
260
  msgid "OAuth proxy page"
261
  msgstr "OAuth-proxy-pagina"
262
 
263
- #: nextend-facebook-connect/admin/admin.php:757
264
  msgid "Register flow page"
265
  msgstr "Registreerproces-pagina"
266
 
@@ -269,48 +269,55 @@ msgstr "Registreerproces-pagina"
269
  msgid "You have logged in successfully."
270
  msgstr "Je bent succesvol ingelogd."
271
 
272
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:79
273
  msgid "Login label"
274
  msgstr "Login label"
275
 
276
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:84
277
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:95
278
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:106
279
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:135
280
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:165
 
281
  #: nextend-facebook-connect/admin/templates/settings/privacy.php:53
282
  msgid "Reset to default"
283
  msgstr "Reset naar standaard"
284
 
285
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:89
 
 
 
 
 
 
286
  msgid "Link label"
287
  msgstr "Koppel label"
288
 
289
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:101
290
  msgid "Unlink label"
291
  msgstr "Ontkoppel label"
292
 
293
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:112
294
  msgid "Default button"
295
  msgstr "Standaard knop"
296
 
297
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:128
298
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:158
299
  msgid "Use custom button"
300
  msgstr "Gebruik de aangepaste knop"
301
 
302
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:135
303
  #, php-format
304
  msgid "Use the %s in your custom button's code to make the label show up."
305
  msgstr ""
306
  "Gebruik de %s in de code van je aangepaste knop om het label te laten "
307
  "verschijnen."
308
 
309
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:143
310
  msgid "Icon button"
311
  msgstr "Pictogram knop"
312
 
313
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:174
314
  #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:140
315
  #: nextend-facebook-connect/admin/templates-provider/sync-data.php:104
316
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:170
@@ -323,8 +330,8 @@ msgstr "Pictogram knop"
323
  #: nextend-facebook-connect/admin/templates/settings/privacy.php:109
324
  #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:186
325
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:167
326
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:326
327
- #: nextend-facebook-connect/providers/facebook/admin/settings.php:57
328
  #: nextend-facebook-connect/providers/google/admin/settings.php:62
329
  #: nextend-facebook-connect/providers/twitter/admin/settings.php:48
330
  #: nextend-social-login-pro/providers/amazon/admin/settings.php:47
@@ -450,7 +457,8 @@ msgstr "Verbind het bestaande account automatisch bij registratie"
450
  #: nextend-facebook-connect/admin/templates/settings/general.php:213
451
  #: nextend-facebook-connect/admin/templates/settings/general.php:228
452
  #: nextend-facebook-connect/admin/templates/settings/general.php:246
453
- #: nextend-facebook-connect/includes/provider-admin.php:217
 
454
  msgid "Disabled"
455
  msgstr "Uitgeschakeld"
456
 
@@ -767,7 +775,8 @@ msgstr "Niet Geverifieerd"
767
  #: nextend-facebook-connect/admin/templates/settings/general.php:216
768
  #: nextend-facebook-connect/admin/templates/settings/general.php:231
769
  #: nextend-facebook-connect/admin/templates/settings/general.php:249
770
- #: nextend-facebook-connect/includes/provider-admin.php:220
 
771
  #: nextend-facebook-connect/providers/google/admin/settings.php:53
772
  #: nextend-social-login-pro/providers/paypal/admin/settings.php:51
773
  msgid "Enabled"
@@ -778,17 +787,17 @@ msgid "Upgrade Now"
778
  msgstr "Nu Bijwerken"
779
 
780
  #: nextend-facebook-connect/admin/templates/providers.php:77
781
- #: nextend-facebook-connect/includes/provider-admin.php:204
782
  msgid "Verify Settings"
783
  msgstr "Instellingen Controleren"
784
 
785
  #: nextend-facebook-connect/admin/templates/providers.php:85
786
- #: nextend-facebook-connect/includes/provider-admin.php:249
787
  msgid "Enable"
788
  msgstr "Inschakelen"
789
 
790
  #: nextend-facebook-connect/admin/templates/providers.php:97
791
- #: nextend-facebook-connect/includes/provider-admin.php:257
792
  msgid "Disable"
793
  msgstr "Uitschakelen"
794
 
@@ -1342,6 +1351,20 @@ msgstr "Lidmaatschap"
1342
  msgid "Allow registration with Social login."
1343
  msgstr "Registratie toestaan met Social login."
1344
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1345
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:29
1346
  #: nextend-facebook-connect/admin/templates/settings/memberpress.php:33
1347
  #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:33
@@ -1428,7 +1451,7 @@ msgid "Link buttons after account details"
1428
  msgstr "Koppelknoppen na accountgegevens"
1429
 
1430
  #: nextend-facebook-connect/admin/templates/settings/privacy.php:6
1431
- #: nextend-facebook-connect/nextend-social-login.php:143
1432
  msgid ""
1433
  "By clicking Register, you accept our <a href=\"#privacy_policy_url\" target="
1434
  "\"_blank\">Privacy Policy</a>"
@@ -1459,12 +1482,12 @@ msgid "When not enabled, email will be empty."
1459
  msgstr "Indien niet ingeschakeld, zal e-mail leeg zijn."
1460
 
1461
  #: nextend-facebook-connect/admin/templates/settings/privacy.php:91
1462
- #: nextend-facebook-connect/includes/avatar.php:59
1463
  msgid "Avatar"
1464
  msgstr "Profielfoto"
1465
 
1466
  #: nextend-facebook-connect/admin/templates/settings/privacy.php:102
1467
- #: nextend-facebook-connect/includes/provider.php:1082
1468
  msgid "Access token"
1469
  msgstr "Toegangstoken"
1470
 
@@ -1536,6 +1559,31 @@ msgstr "Geen Verbindingsknop in het accountgegevens formulier"
1536
  msgid "Link buttons on"
1537
  msgstr "Koppelknoppen op"
1538
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1539
  #: nextend-facebook-connect/admin/templates/test-connection.php:42
1540
  #, php-format
1541
  msgid "Network connection successful: %1$s"
@@ -1554,18 +1602,17 @@ msgstr ""
1554
  "Neem contact op met je hostingprovider om het netwerkprobleem tussen je "
1555
  "server en de provider op te lossen."
1556
 
1557
- #: nextend-facebook-connect/includes/avatar.php:60
1558
  msgid "Manage Avatar"
1559
  msgstr "Profielfoto beheren"
1560
 
1561
- #: nextend-facebook-connect/includes/avatar.php:61
1562
  #, php-format
1563
  msgid "Avatar <span class=\"count\">(%s)</span>"
1564
  msgid_plural "Avatar <span class=\"count\">(%s)</span>"
1565
  msgstr[0] "Profielfoto <span class=\"count\">(%s)</span>"
1566
  msgstr[1] "Profielfoto <span class=\"count\">(%s)</span>"
1567
 
1568
- #. translators: Login screen title. 1: Login screen name, 2: Network or site name
1569
  #: nextend-facebook-connect/includes/compat-wp-login.php:63
1570
  #, php-format
1571
  msgid "%1$s &lsaquo; %2$s &#8212; WordPress"
@@ -1579,18 +1626,17 @@ msgstr "https://nl.wordpress.org/"
1579
  msgid "Powered by WordPress"
1580
  msgstr "Mogelijk gemaakt door WordPress"
1581
 
1582
- #. translators: %s: site title
1583
  #: nextend-facebook-connect/includes/compat-wp-login.php:284
1584
  #, php-format
1585
  msgctxt "site"
1586
  msgid "&larr; Back to %s"
1587
  msgstr "&larr; Terug naar %s"
1588
 
1589
- #: nextend-facebook-connect/includes/provider-admin.php:198
1590
  msgid "Your configuration needs to be verified"
1591
  msgstr "Je configuratie moet worden geverifieerd"
1592
 
1593
- #: nextend-facebook-connect/includes/provider-admin.php:199
1594
  msgid ""
1595
  "Before you can start letting your users register with your app it needs to "
1596
  "be tested. This test makes sure that no users will have troubles with the "
@@ -1604,15 +1650,15 @@ msgstr ""
1604
  "een foutmelding ziet in de popup, controleer dan de gekopieerde ID en het "
1605
  "geheim of de app zelf. Anders zijn je instellingen in orde."
1606
 
1607
- #: nextend-facebook-connect/includes/provider-admin.php:205
1608
  msgid "Please save your changes to verify settings."
1609
  msgstr "Sla je wijzigingen op om de instellingen te controleren."
1610
 
1611
- #: nextend-facebook-connect/includes/provider-admin.php:213
1612
  msgid "Works Fine"
1613
  msgstr "Werkt Prima"
1614
 
1615
- #: nextend-facebook-connect/includes/provider-admin.php:227
1616
  #, php-format
1617
  msgid ""
1618
  "This provider is currently disabled, which means that users can’t register "
@@ -1621,7 +1667,7 @@ msgstr ""
1621
  "Deze provider is momenteel uitgeschakeld, wat betekent dat gebruikers zich "
1622
  "niet kunnen registreren of inloggen via hun %s account."
1623
 
1624
- #: nextend-facebook-connect/includes/provider-admin.php:230
1625
  #, php-format
1626
  msgid ""
1627
  "This provider works fine, but you can test it again. If you don’t want to "
@@ -1631,7 +1677,7 @@ msgstr ""
1631
  "gebruikers niet meer wilt laten registreren of inloggen met %s kun je deze "
1632
  "uitschakelen."
1633
 
1634
- #: nextend-facebook-connect/includes/provider-admin.php:233
1635
  #, php-format
1636
  msgid ""
1637
  "This provider is currently enabled, which means that users can register or "
@@ -1640,47 +1686,48 @@ msgstr ""
1640
  "Deze provider is momenteel ingeschakeld, wat betekent dat gebruikers zich "
1641
  "kunnen registreren of inloggen via hun %s account."
1642
 
1643
- #: nextend-facebook-connect/includes/provider-admin.php:241
1644
  msgid "Verify Settings Again"
1645
  msgstr "Controleer Instellingen Nogmaals"
1646
 
1647
- #: nextend-facebook-connect/includes/provider-admin.php:242
1648
  msgid "Please save your changes before verifying settings."
1649
  msgstr "Sla je wijzigingen op voordat je de instellingen controleert."
1650
 
1651
- #: nextend-facebook-connect/includes/provider.php:357
1652
- #: nextend-facebook-connect/includes/provider.php:705
1653
- #: nextend-facebook-connect/includes/provider.php:710
1654
  msgid "Authentication successful"
1655
  msgstr "Authenticatie geslaagd"
1656
 
1657
- #: nextend-facebook-connect/includes/provider.php:647
1658
- #: nextend-facebook-connect/includes/user.php:126
 
1659
  msgid "Authentication error"
1660
  msgstr "Authenticatiefout"
1661
 
1662
- #: nextend-facebook-connect/includes/provider.php:662
1663
  msgid "Unlink successful."
1664
  msgstr "Ontkoppeling succesvol."
1665
 
1666
- #: nextend-facebook-connect/includes/provider.php:664
1667
  msgid "Unlink is not allowed!"
1668
  msgstr "Ontkoppelen is niet toegestaan!"
1669
 
1670
- #: nextend-facebook-connect/includes/provider.php:868
1671
- #: nextend-facebook-connect/includes/provider.php:875
1672
  msgid "The test was successful"
1673
  msgstr "De test was succesvol"
1674
 
1675
- #: nextend-facebook-connect/includes/provider.php:921
1676
  msgid "Authentication failed"
1677
  msgstr "Authenticatie mislukt"
1678
 
1679
- #: nextend-facebook-connect/includes/provider.php:1074
1680
  msgid "Identifier"
1681
  msgstr "Identificatie"
1682
 
1683
- #: nextend-facebook-connect/includes/provider.php:1090
1684
  msgid "Profile picture"
1685
  msgstr "Profielfoto"
1686
 
@@ -1694,20 +1741,24 @@ msgstr ""
1694
  "gemakkelijk aanmelden met %2$s."
1695
 
1696
  #: nextend-facebook-connect/includes/user.php:77
1697
- #, php-format
 
 
 
1698
  msgid ""
1699
  "You have already linked a(n) %s account. Please unlink the current and then "
1700
- "you can link other %s account."
1701
  msgstr ""
1702
  "Je hebt al een %s account gekoppeld. Ontkoppel de huidige en dan kun je "
1703
  "andere %s account koppelen."
1704
 
1705
  #: nextend-facebook-connect/includes/user.php:82
1706
- #, php-format
1707
- msgid "This %s account is already linked to other user."
 
1708
  msgstr "Dit %s account is al gekoppeld aan een andere gebruiker."
1709
 
1710
- #: nextend-facebook-connect/includes/user.php:122
1711
  msgid "User registration is currently not allowed."
1712
  msgstr "Gebruikersregistratie is momenteel niet toegestaan."
1713
 
@@ -1715,14 +1766,12 @@ msgstr "Gebruikersregistratie is momenteel niet toegestaan."
1715
  msgid "Register For This Site!"
1716
  msgstr "Registreer Voor Deze Site!"
1717
 
1718
- #. translators: %2$s: PHP version
1719
- #: nextend-facebook-connect/nextend-facebook-connect.php:34
1720
  #, php-format
1721
  msgid "%1$s requires PHP version %2$s+, plugin is currently NOT ACTIVE."
1722
  msgstr "%1$s vereist PHP versie %2$s+, plugin is momenteel NIET ACTIEF."
1723
 
1724
- #. translators: %2$s: WordPress version
1725
- #: nextend-facebook-connect/nextend-facebook-connect.php:41
1726
  #, php-format
1727
  msgid ""
1728
  "%1$s requires WordPress version %2$s+. Because you are using an earlier "
@@ -1742,12 +1791,12 @@ msgstr "Gelieve %1$s bij te werken naar versie %2$s of nieuwer."
1742
  msgid "Update now!"
1743
  msgstr "Update nu!"
1744
 
1745
- #: nextend-facebook-connect/nextend-social-login.php:749
1746
- #: nextend-facebook-connect/nextend-social-login.php:1125
1747
  msgid "Social Login"
1748
  msgstr "Social Login"
1749
 
1750
- #: nextend-facebook-connect/nextend-social-login.php:1106
1751
  msgid "Social Accounts"
1752
  msgstr "Social Accounts"
1753
 
@@ -1816,7 +1865,7 @@ msgid "In the left sidebar, click on \"<b>Facebook Login > Settings</b>\""
1816
  msgstr "Klik in de linkerbalk op \"Facebook Login/Instellingen\""
1817
 
1818
  #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:12
1819
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:34
1820
  #, fuzzy, php-format
1821
  #| msgid ""
1822
  #| "Add the following URL to the \"Valid OAuth redirect URIs\" field: <b>%s</"
@@ -1914,9 +1963,11 @@ msgstr "Navigeer naar %s"
1914
 
1915
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:26
1916
  #, fuzzy
1917
- #| msgid "Click on the \"Add a New App\" button"
1918
- msgid "Click on the \"<b>Add a New App\" button</b>"
1919
- msgstr "Klik op de knop \"Een nieuwe app toevoegen\""
 
 
1920
 
1921
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:27
1922
  msgid ""
@@ -1931,20 +1982,26 @@ msgstr ""
1931
  #| "Fill \"Display Name\" and \"Contact Email\". The specified \"Display Name"
1932
  #| "\" will appear on your %s!"
1933
  msgid ""
1934
- "Fill \"<b>Display Name</b>\" and \"<b>Contact Email</b>\". The specified "
1935
- "\"Display Name\" will appear on your %s!"
1936
  msgstr ""
1937
  "Vul \"Schermnaam\" en \"E-mail\" in. De opgegeven \"Schermnaam\" zal "
1938
  "verschijnen op je %s!"
1939
 
1940
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:29
 
 
 
 
 
 
1941
  #, fuzzy
1942
  #| msgid "Click on the \"Create an App\" button on the top right corner."
1943
  msgid ""
1944
  "Click the \"<b>Create App ID</b>\" button and complete the Security Check."
1945
  msgstr "Klik op de knop \"Maak een App\" in de rechterbovenhoek."
1946
 
1947
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:30
1948
  #, fuzzy, php-format
1949
  #| msgid "Fill the \"App Name\" field and click \"Create App\" button."
1950
  msgid ""
@@ -1952,7 +2009,7 @@ msgid ""
1952
  "\"<b>Set Up</b>\""
1953
  msgstr "Vul het veld \"App Naam\" in en klik op de knop \"Maak App\"."
1954
 
1955
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:31
1956
  #, fuzzy, php-format
1957
  #| msgid "Add the following URL to the \"Redirect URLs\" field <b>%s</b> "
1958
  msgid ""
@@ -1960,33 +2017,33 @@ msgid ""
1960
  "field: <b>%s</b>"
1961
  msgstr "Voeg de volgende URL toe aan het veld \"Omleidings-URLs\" <b>%s</b> "
1962
 
1963
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:32
1964
  #, fuzzy
1965
  #| msgid "Click on \"Save Changes\""
1966
  msgid "Press “<b>Save</b>”"
1967
  msgstr "Klik op \"Wijzigingen Opslaan\""
1968
 
1969
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:33
1970
  #, php-format
1971
  msgid ""
1972
  "Click on the “<b>%1$s</b>” option what you find on the left side, under “<b>"
1973
  "%2$s</b> - <b>%3$s</b>”"
1974
  msgstr ""
1975
 
1976
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:35
1977
  #, fuzzy
1978
  #| msgid "Click on \"Save Changes\""
1979
  msgid "Click on “<b>Save Changes</b>”"
1980
  msgstr "Klik op \"Wijzigingen Opslaan\""
1981
 
1982
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:36
1983
  #, php-format
1984
  msgid ""
1985
  "On the top left side, click on the “<b>%1$s</b>” menu point, then click “<b>"
1986
  "%2$s</b>”"
1987
  msgstr ""
1988
 
1989
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:37
1990
  #, fuzzy, php-format
1991
  #| msgid "Enter your domain name to the App Domains"
1992
  msgid ""
@@ -1994,7 +2051,7 @@ msgid ""
1994
  "b>"
1995
  msgstr "Voer je domeinnaam in bij de App Domeinen"
1996
 
1997
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:38
1998
  #, fuzzy
1999
  #| msgid ""
2000
  #| "Fill up the \"Privacy Policy URL\". Provide a publicly available and "
@@ -2009,14 +2066,41 @@ msgstr ""
2009
  "gemakkelijk toegankelijk privacybeleid waarin wordt uitgelegd welke gegevens "
2010
  "je verzamelt en hoe je deze gegevens zult gebruiken."
2011
 
2012
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:39
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2013
  msgid ""
2014
- "Select a “<b>Category</b>”, an “<b>App Icon</b>” and pick the “<b>Business "
2015
- "Use</b>” option that describes your the App best, then press \"<b>Save "
2016
  "Changes</b>\""
2017
  msgstr ""
2018
 
2019
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:40
2020
  #, fuzzy
2021
  #| msgid ""
2022
  #| "Your application is currently private ( Status: In Development ), which "
@@ -2031,7 +2115,7 @@ msgstr ""
2031
  "alleen jij ermee kunt inloggen. Klik in de bovenste balk op de \"OFF\" "
2032
  "schakelaar en selecteer een categorie voor je App."
2033
 
2034
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:41
2035
  #, fuzzy
2036
  #| msgid ""
2037
  #| "Here you can see your \"APP ID\" and you can see your \"App secret\" if "
@@ -2045,9 +2129,20 @@ msgstr ""
2045
  "Hier kun je je \"APP ID\" zien en je \"App geheim\" als je op de knop "
2046
  "\"Weergeven\" klikt. Deze zullen nodig zijn in de instellingen van de plugin."
2047
 
2048
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:45
 
 
 
 
 
 
 
 
 
 
 
2049
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:40
2050
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:32
2051
  #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:39
2052
  #: nextend-social-login-pro/providers/apple/admin/getting-started.php:122
2053
  #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:30
@@ -2119,38 +2214,55 @@ msgstr ""
2119
  msgid "App Secret"
2120
  msgstr "App Geheim"
2121
 
2122
- #: nextend-facebook-connect/providers/facebook/facebook.php:84
 
 
 
 
 
 
 
 
 
 
 
2123
  msgid "Continue with <b>Facebook</b>"
2124
  msgstr "Doorgaan met <b>Facebook</b>"
2125
 
2126
- #: nextend-facebook-connect/providers/facebook/facebook.php:85
 
 
 
 
 
 
2127
  msgid "Link account with <b>Facebook</b>"
2128
  msgstr "Koppel met <b>Facebook</b>"
2129
 
2130
- #: nextend-facebook-connect/providers/facebook/facebook.php:86
2131
  msgid "Unlink account from <b>Facebook</b>"
2132
  msgstr "Ontkoppel van <b>Facebook</b>"
2133
 
2134
- #: nextend-facebook-connect/providers/facebook/facebook.php:186
2135
- #: nextend-facebook-connect/providers/google/google.php:174
2136
- #: nextend-facebook-connect/providers/twitter/twitter.php:95
2137
- #: nextend-social-login-pro/providers/amazon/amazon.php:65
2138
- #: nextend-social-login-pro/providers/apple/apple.php:129
2139
- #: nextend-social-login-pro/providers/apple/apple.php:136
2140
- #: nextend-social-login-pro/providers/disqus/disqus.php:112
2141
- #: nextend-social-login-pro/providers/github/github.php:150
2142
- #: nextend-social-login-pro/providers/linkedin/linkedin.php:63
2143
- #: nextend-social-login-pro/providers/paypal/paypal.php:90
2144
- #: nextend-social-login-pro/providers/vk/vk.php:61
2145
- #: nextend-social-login-pro/providers/wordpress/wordpress.php:99
2146
- #: nextend-social-login-pro/providers/yahoo/yahoo.php:90
2147
  #, php-format
2148
  msgid ""
2149
  "The %1$s entered did not appear to be a valid. Please enter a valid %2$s."
2150
  msgstr "Het ingevoerde %1$s bleek niet geldig te zijn. Vul een geldig %2$s in."
2151
 
2152
- #: nextend-facebook-connect/providers/facebook/facebook.php:307
2153
- #: nextend-social-login-pro/providers/paypal/paypal.php:170
2154
  #, php-format
2155
  msgid "Required scope: %1$s"
2156
  msgstr "Vereiste scope: %1$s"
@@ -2353,19 +2465,25 @@ msgid ""
2353
  "Disable, when you don't want to see the account select prompt on each login."
2354
  msgstr ""
2355
 
2356
- #: nextend-facebook-connect/providers/google/google.php:106
2357
  msgid "Continue with <b>Google</b>"
2358
  msgstr "Doorgaan met <b>Google</b>"
2359
 
2360
- #: nextend-facebook-connect/providers/google/google.php:107
 
 
 
 
 
 
2361
  msgid "Link account with <b>Google</b>"
2362
  msgstr "Koppel met <b>Google</b>"
2363
 
2364
- #: nextend-facebook-connect/providers/google/google.php:108
2365
  msgid "Unlink account from <b>Google</b>"
2366
  msgstr "Ontkoppel van <b>Google</b>"
2367
 
2368
- #: nextend-facebook-connect/providers/google/google.php:301
2369
  #, php-format
2370
  msgid "Required API: %1$s"
2371
  msgstr "Vereiste API: %1$s"
@@ -2373,32 +2491,39 @@ msgstr "Vereiste API: %1$s"
2373
  #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:10
2374
  #, fuzzy
2375
  #| msgid "Find your App and click on the Details button"
2376
- msgid "Find your App and click on the \"<b>Details</b>\" button"
 
 
2377
  msgstr "Vind jew app en klik op de knop Details"
2378
 
2379
  #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:11
 
2380
  #, fuzzy
2381
- #| msgid ""
2382
- #| "The Edit button can be found on the App details tab. Click on it and "
2383
- #| "select Edit details"
2384
- msgid ""
2385
- "The <b>Edit</b> button can be found on the App details tab. Click on it and "
2386
- "select \"<b>Edit details</b>\""
2387
- msgstr ""
2388
- "De knop Bewerken is te vinden op het tabblad App details. Klik erop en "
2389
- "selecteer Bewerken details"
2390
 
2391
  #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:12
2392
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:22
2393
  #, fuzzy, php-format
2394
  #| msgid "Add the following URL to the \"Callback URLs\" field: <b>%s</b>"
2395
  msgid "Add the following URL to the \"<b>Callback URLs</b>\" field: <b>%s</b>"
2396
  msgstr "Voeg de volgende URL toe aan het veld \"Callback URL's\": <b>%s</b>"
2397
 
2398
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:17
 
 
 
 
 
 
 
 
 
 
 
2399
  #, php-format
2400
- msgid "Log in with your %s credentials if you are not logged in yet"
2401
- msgstr "Log in met je %s inloggegevens als je nog niet ingelogd bent"
2402
 
2403
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:18
2404
  msgid ""
@@ -2421,75 +2546,76 @@ msgstr ""
2421
  "nog niet bent!"
2422
 
2423
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:20
2424
- #, fuzzy, php-format
2425
- #| msgid ""
2426
- #| "Fill the App name, Application description fields. Then enter your site's "
2427
- #| "URL to the Website URL field: <b>%s</b>"
 
 
2428
  msgid ""
2429
- "Fill the <b>App name</b>, <b>Application description</b> fields. Then enter "
2430
- "your site's URL to the <b>Website URL</b> field: <b>%s</b>"
2431
  msgstr ""
2432
- "Vul de App-naam, Applicatiebeschrijving velden in. Voer vervolgens de URL "
2433
- "van je site in bij het Website URL veld: <b>%s</b>"
2434
 
2435
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:21
2436
- #, fuzzy
2437
- #| msgid "Tick the checkbox next to Enable Sign in with Twitter!"
2438
- msgid "Tick the checkbox next to <b>Enable Sign in with Twitter</b>!"
2439
- msgstr "Vink het selectievakje aan naast Inschakelen Inloggen met Twitter!"
2440
 
2441
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:23
2442
- #, fuzzy
2443
- #| msgid ""
2444
- #| "Fill the “Terms of Service URL\", \"Privacy policy URL\" and \"Tell us "
2445
- #| "how this app will be used” fields!"
2446
  msgid ""
2447
- "Fill the “<b>Terms of Service URL</b>\", \"<b>Privacy policy URL</b>\" and "
2448
- "\"<b>Tell us how this app will be used</b>\" fields!"
 
2449
  msgstr ""
2450
- "Vul de velden \"Servicevoorwaarden-URL\", \"Privacy policy URL\" en \"Vertel "
2451
- "ons hoe deze app zal worden gebruikt\" in!"
2452
 
2453
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:24
2454
- #, fuzzy
2455
- #| msgid "Click the Create button."
2456
- msgid "Click the <b>Create</b> button."
2457
- msgstr "Klik op de knop Maken."
2458
 
2459
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:25
2460
- #, fuzzy
2461
- #| msgid "Read the Developer Terms and click the Create button again!"
2462
- msgid "Read the Developer Terms and click the <b>Create</b> button again!"
2463
- msgstr "Lees de Developer Terms en klik opnieuw op de knop Maken!"
2464
 
2465
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:26
2466
- #, fuzzy
2467
- #| msgid "Select the Permissions tab and click Edit."
2468
- msgid "Select the <b>Permissions</b> tab and click <b>Edit</b>."
2469
- msgstr "Selecteer het tabblad Machtigingen en klik op Bewerken."
2470
 
2471
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:27
2472
- #, fuzzy
2473
- #| msgid ""
2474
- #| "Tick the Request email address from users under the Additional "
2475
- #| "permissions section and click Save."
 
 
 
 
 
 
 
 
 
 
 
 
2476
  msgid ""
2477
- "Tick the <b>Request email address from users</b> under the Additional "
2478
- "permissions section and click <b>Save</b>."
 
 
2479
  msgstr ""
2480
- "Vink het e-mailadres voor het aanvragen van gebruikers aan in het de sectie "
2481
- "Extra rechten en klik op Opslaan."
2482
 
2483
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:28
2484
  #, fuzzy
2485
- #| msgid ""
2486
- #| "Go to the Keys and tokens tab and find the API key and API secret key"
2487
- msgid ""
2488
- "Go to the <b>Keys and tokens</b> tab and find the <b>API key</b> and <b>API "
2489
- "secret key</b>"
 
 
2490
  msgstr ""
2491
- "Ga naar het tabblad Sleutels en tokens en zoek de API-sleutel en geheime API-"
2492
- "sleutel"
2493
 
2494
  #: nextend-facebook-connect/providers/twitter/admin/settings.php:27
2495
  #: nextend-social-login-pro/providers/disqus/admin/settings.php:26
@@ -2508,15 +2634,21 @@ msgstr "Profielafbeelding grootte"
2508
  msgid "Original"
2509
  msgstr "Origineel"
2510
 
2511
- #: nextend-facebook-connect/providers/twitter/twitter.php:69
2512
  msgid "Continue with <b>Twitter</b>"
2513
  msgstr "Doorgaan met <b>Twitter</b>"
2514
 
2515
- #: nextend-facebook-connect/providers/twitter/twitter.php:70
 
 
 
 
 
 
2516
  msgid "Link account with <b>Twitter</b>"
2517
  msgstr "Koppel met <b>Twitter</b>"
2518
 
2519
- #: nextend-facebook-connect/providers/twitter/twitter.php:71
2520
  msgid "Unlink account from <b>Twitter</b>"
2521
  msgstr "Ontkoppel van <b>Twitter</b>"
2522
 
@@ -2641,20 +2773,20 @@ msgstr ""
2641
  "Dit e-mailadres is al geregistreerd, log in op je account om te koppelen met "
2642
  "%1$s."
2643
 
2644
- #: nextend-social-login-pro/nextend-social-login-pro.php:88
2645
  #, php-format
2646
  msgid "Please install and activate %1$s to use the %2$s"
2647
  msgstr "Installeer en activeer %1$s om de %2$s te gebruiken"
2648
 
2649
- #: nextend-social-login-pro/nextend-social-login-pro.php:102
2650
  msgid "Network Activate"
2651
  msgstr "Netwerk Activeren"
2652
 
2653
- #: nextend-social-login-pro/nextend-social-login-pro.php:114
2654
  msgid "Install now!"
2655
  msgstr "Installeer nu!"
2656
 
2657
- #: nextend-social-login-pro/nextend-social-login-pro.php:787
2658
  #, fuzzy
2659
  #| msgid "Providers"
2660
  msgid "Social Providers"
@@ -2669,7 +2801,7 @@ msgstr ""
2669
  "De Facebook Sync data heeft een goedgekeurd %1$s nodig en je App moet de "
2670
  "laatste %2$s versie gebruiken!"
2671
 
2672
- #: nextend-social-login-pro/provider-extensions/google.php:176
2673
  #, php-format
2674
  msgid ""
2675
  "Most of these information can only be retrieved, when the field is marked as "
@@ -2734,21 +2866,6 @@ msgstr ""
2734
  "\"Instellingen\" en configureer je de gegevens \"%2$s\" en \"%3$s\" volgens "
2735
  "je %1$s App."
2736
 
2737
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:25
2738
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:38
2739
- #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:9
2740
- #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:16
2741
- #: nextend-social-login-pro/providers/github/admin/getting-started.php:16
2742
- #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:9
2743
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:17
2744
- #: nextend-social-login-pro/providers/vk/admin/getting-started.php:16
2745
- #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:9
2746
- #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:16
2747
- #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:17
2748
- #, php-format
2749
- msgid "Log in with your %s credentials if you are not logged in."
2750
- msgstr "Log in met je %s inloggegevens als je niet ingelogd bent."
2751
-
2752
  #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:27
2753
  #, fuzzy
2754
  #| msgid ""
@@ -2813,15 +2930,21 @@ msgstr ""
2813
  "Vind de benodigde \"Client ID\" en \"Client Geheim\" in het midden van de "
2814
  "pagina, onder het tabblad \"Web Instelling\"."
2815
 
2816
- #: nextend-social-login-pro/providers/amazon/amazon.php:39
2817
  msgid "Continue with <b>Amazon</b>"
2818
  msgstr "Doorgaan met <b>Amazonië</b>"
2819
 
2820
- #: nextend-social-login-pro/providers/amazon/amazon.php:40
 
 
 
 
 
 
2821
  msgid "Link account with <b>Amazon</b>"
2822
  msgstr "Koppel met <b>Amazon</b>"
2823
 
2824
- #: nextend-social-login-pro/providers/amazon/amazon.php:41
2825
  msgid "Unlink account from <b>Amazon</b>"
2826
  msgstr "Ontkoppel van <b>Amazon</b>"
2827
 
@@ -3162,54 +3285,54 @@ msgstr "Identificatie"
3162
  msgid "Generate Token"
3163
  msgstr ""
3164
 
3165
- #: nextend-social-login-pro/providers/apple/apple.php:82
3166
- #, fuzzy
3167
- #| msgid "Continue with <b>Google</b>"
3168
  msgid "Continue with <b>Apple</b>"
3169
- msgstr "Doorgaan met <b>Google</b>"
3170
 
3171
- #: nextend-social-login-pro/providers/apple/apple.php:83
3172
  #, fuzzy
3173
- #| msgid "Link account with <b>Google</b>"
 
 
 
 
3174
  msgid "Link account with <b>Apple</b>"
3175
- msgstr "Koppel met <b>Google</b>"
3176
 
3177
- #: nextend-social-login-pro/providers/apple/apple.php:84
3178
- #, fuzzy
3179
- #| msgid "Unlink account from <b>Google</b>"
3180
  msgid "Unlink account from <b>Apple</b>"
3181
- msgstr "Ontkoppel van <b>Google</b>"
3182
 
3183
- #: nextend-social-login-pro/providers/apple/apple.php:178
3184
  #, php-format
3185
  msgid "An error occurred when storing of the expiration timestamp : %1$s"
3186
  msgstr ""
3187
 
3188
- #: nextend-social-login-pro/providers/apple/apple.php:182
3189
- #: nextend-social-login-pro/providers/apple/apple.php:280
3190
- #: nextend-social-login-pro/providers/apple/apple.php:295
3191
- #: nextend-social-login-pro/providers/apple/apple.php:339
3192
  #, fuzzy, php-format
3193
  #| msgid "Network connection failed: %1$s"
3194
  msgid "Token generation failed: %1$s"
3195
  msgstr "Netwerkverbinding mislukt: %1$s"
3196
 
3197
- #: nextend-social-login-pro/providers/apple/apple.php:182
3198
  msgid "Please check your credentials!"
3199
  msgstr ""
3200
 
3201
- #: nextend-social-login-pro/providers/apple/apple.php:280
3202
  msgid "Private key format is not valid!"
3203
  msgstr ""
3204
 
3205
- #: nextend-social-login-pro/providers/apple/apple.php:306
3206
  #, php-format
3207
  msgid ""
3208
  "%s detected that your Apple credentials have expired. Please delete the "
3209
  "current credentials and generate new one!"
3210
  msgstr ""
3211
 
3212
- #: nextend-social-login-pro/providers/apple/apple.php:308
3213
  msgid "Apple Credentials"
3214
  msgstr ""
3215
 
@@ -3323,15 +3446,21 @@ msgstr ""
3323
  msgid "API Secret"
3324
  msgstr "API Geheim"
3325
 
3326
- #: nextend-social-login-pro/providers/disqus/disqus.php:86
3327
  msgid "Continue with <b>Disqus</b>"
3328
  msgstr "Doorgaan met <b>Disqus</b>"
3329
 
3330
- #: nextend-social-login-pro/providers/disqus/disqus.php:87
 
 
 
 
 
 
3331
  msgid "Link account with <b>Disqus</b>"
3332
  msgstr "Koppel met <b>Disqus</b>"
3333
 
3334
- #: nextend-social-login-pro/providers/disqus/disqus.php:88
3335
  msgid "Unlink account from <b>Disqus</b>"
3336
  msgstr "Ontkoppel van <b>Disqus</b>"
3337
 
@@ -3428,23 +3557,22 @@ msgid ""
3428
  "public email address set at the %1$s profile page%2$s!"
3429
  msgstr ""
3430
 
3431
- #: nextend-social-login-pro/providers/github/github.php:124
3432
- #, fuzzy
3433
- #| msgid "Continue with <b>Disqus</b>"
3434
  msgid "Continue with <b>GitHub</b>"
3435
- msgstr "Doorgaan met <b>Disqus</b>"
3436
 
3437
- #: nextend-social-login-pro/providers/github/github.php:125
3438
  #, fuzzy
3439
- #| msgid "Link account with <b>Disqus</b>"
 
 
 
3440
  msgid "Link account with <b>GitHub</b>"
3441
- msgstr "Koppel met <b>Disqus</b>"
3442
 
3443
- #: nextend-social-login-pro/providers/github/github.php:126
3444
- #, fuzzy
3445
- #| msgid "Unlink account from <b>Disqus</b>"
3446
  msgid "Unlink account from <b>GitHub</b>"
3447
- msgstr "Ontkoppel van <b>Disqus</b>"
3448
 
3449
  #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:10
3450
  msgid "Click on your App and go to the \"<b>Auth</b>\" tab."
@@ -3553,15 +3681,21 @@ msgstr ""
3553
  "Zoek de benodigde \"Client ID\" en \"Client Geheim\" onder de sectie "
3554
  "Applicatie inloggegevens, op het tabblad Auth."
3555
 
3556
- #: nextend-social-login-pro/providers/linkedin/linkedin.php:37
3557
  msgid "Continue with <b>LinkedIn</b>"
3558
  msgstr "Doorgaan met <b>LinkedIn</b>"
3559
 
3560
- #: nextend-social-login-pro/providers/linkedin/linkedin.php:38
 
 
 
 
 
 
3561
  msgid "Link account with <b>LinkedIn</b>"
3562
  msgstr "Koppel met <b>LinkedIn</b>"
3563
 
3564
- #: nextend-social-login-pro/providers/linkedin/linkedin.php:39
3565
  msgid "Unlink account from <b>LinkedIn</b>"
3566
  msgstr "Ontkoppel van <b>LinkedIn</b>"
3567
 
@@ -3717,15 +3851,21 @@ msgstr "E-mail scope"
3717
  msgid "Disable, when you have no rights for email address."
3718
  msgstr "Uitschakelen, wanneer je geen rechten hebt voor e-mailadres."
3719
 
3720
- #: nextend-social-login-pro/providers/paypal/paypal.php:64
3721
  msgid "Continue with <b>PayPal</b>"
3722
  msgstr "Doorgaan met <b>PayPal</b>"
3723
 
3724
- #: nextend-social-login-pro/providers/paypal/paypal.php:65
 
 
 
 
 
 
3725
  msgid "Link account with <b>PayPal</b>"
3726
  msgstr "Koppel met <b>PayPal</b>"
3727
 
3728
- #: nextend-social-login-pro/providers/paypal/paypal.php:66
3729
  msgid "Unlink account from <b>PayPal</b>"
3730
  msgstr "Ontkoppel van <b>PayPal</b>"
3731
 
@@ -3839,15 +3979,21 @@ msgstr ""
3839
  msgid "Secure key"
3840
  msgstr "Beveiligde sleutel"
3841
 
3842
- #: nextend-social-login-pro/providers/vk/vk.php:35
3843
  msgid "Continue with <b>VK</b>"
3844
  msgstr "Doorgaan met <b>VK</b>"
3845
 
3846
- #: nextend-social-login-pro/providers/vk/vk.php:36
 
 
 
 
 
 
3847
  msgid "Link account with <b>VK</b>"
3848
  msgstr "Koppel met <b>VK</b>"
3849
 
3850
- #: nextend-social-login-pro/providers/vk/vk.php:37
3851
  msgid "Unlink account from <b>VK</b>"
3852
  msgstr "Ontkoppel van <b>VK</b>"
3853
 
@@ -3929,15 +4075,21 @@ msgstr ""
3929
  "Hier kun je je \"Client ID\" en \"Client Geheim\" zien. Deze zijn nodig in "
3930
  "de instellingen van de plugin."
3931
 
3932
- #: nextend-social-login-pro/providers/wordpress/wordpress.php:73
3933
  msgid "Continue with <b>WordPress.com</b>"
3934
  msgstr "Doorgaan met <b>WordPress.com</b>"
3935
 
3936
- #: nextend-social-login-pro/providers/wordpress/wordpress.php:74
 
 
 
 
 
 
3937
  msgid "Link account with <b>WordPress.com</b>"
3938
  msgstr "Koppel met <b>WordPress.com</b>"
3939
 
3940
- #: nextend-social-login-pro/providers/wordpress/wordpress.php:75
3941
  msgid "Unlink account from <b>WordPress.com</b>"
3942
  msgstr "Ontkoppel van <b>WordPress.com</b>"
3943
 
@@ -4008,19 +4160,25 @@ msgstr ""
4008
  "Bovenaan de pagina vind je de nodige \"Client ID\" en \"Client Geheim\"! "
4009
  "Deze zijn nodig in de instellingen van de plugin."
4010
 
4011
- #: nextend-social-login-pro/providers/yahoo/yahoo.php:64
4012
  msgid "Continue with <b>Yahoo</b>"
4013
  msgstr "Doorgaan met <b>Yahoo</b>"
4014
 
4015
- #: nextend-social-login-pro/providers/yahoo/yahoo.php:65
 
 
 
 
 
 
4016
  msgid "Link account with <b>Yahoo</b>"
4017
  msgstr "Koppel met <b>Yahoo</b>"
4018
 
4019
- #: nextend-social-login-pro/providers/yahoo/yahoo.php:66
4020
  msgid "Unlink account from <b>Yahoo</b>"
4021
  msgstr "Ontkoppel van <b>Yahoo</b>"
4022
 
4023
- #: nextend-social-login-pro/providers/yahoo/yahoo.php:186
4024
  #, php-format
4025
  msgid "Required permission: %1$s"
4026
  msgstr "Vereiste toestemming: %1$s"
@@ -4063,6 +4221,89 @@ msgstr "OF"
4063
  msgid "Social accounts"
4064
  msgstr "Social accounts"
4065
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4066
  #, fuzzy
4067
  #~| msgid "Enter your domain name to the App Domains"
4068
  #~ msgid "Enter your domain name to the \"App Domains\" field."
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: nextend-facebook-connect\n"
4
+ "POT-Creation-Date: 2021-01-27 13:58+0100\n"
5
+ "PO-Revision-Date: 2021-01-27 13:58+0100\n"
6
  "Last-Translator: Erik Molenaar <info@erikmolenaar.nl>\n"
7
  "Language-Team: nextend-facebook-connect\n"
8
  "Language: nl_NL\n"
135
  msgid "User"
136
  msgstr "Gebruiker"
137
 
138
+ #: nextend-facebook-connect/admin/admin.php:206
139
  #, php-format
140
  msgid "%s needs json_decode function."
141
  msgstr "%s heeft de functie json_decode nodig."
142
 
143
+ #: nextend-facebook-connect/admin/admin.php:206
144
  msgid "Please contact your server administrator and ask for solution!"
145
  msgstr "Neem contact op met je serverbeheerder en vraag om een oplossing!"
146
 
147
+ #: nextend-facebook-connect/admin/admin.php:238
148
+ #: nextend-facebook-connect/admin/admin.php:268
149
  msgid "Settings saved."
150
  msgstr "Instellingen opgeslagen."
151
 
152
+ #: nextend-facebook-connect/admin/admin.php:247
153
  msgid "The activation was successful"
154
  msgstr "De activering was succesvol"
155
 
156
+ #: nextend-facebook-connect/admin/admin.php:258
157
  msgid "Deactivate completed."
158
  msgstr "Deactiveren voltooid."
159
 
160
+ #: nextend-facebook-connect/admin/admin.php:437
161
  #: nextend-facebook-connect/admin/templates-provider/menu.php:15
162
  #: nextend-facebook-connect/admin/templates/providers.php:89
163
  #: nextend-facebook-connect/admin/templates/providers.php:101
165
  msgid "Settings"
166
  msgstr "Instellingen"
167
 
168
+ #: nextend-facebook-connect/admin/admin.php:520
169
+ #: nextend-facebook-connect/includes/oauth2.php:143
170
+ #: nextend-facebook-connect/includes/oauth2.php:288
171
  #: nextend-facebook-connect/providers/facebook/facebook-client.php:84
172
  #: nextend-facebook-connect/providers/twitter/twitter-client.php:165
173
  #: nextend-social-login-pro/providers/apple/apple-client.php:87
176
  msgid "Unexpected response: %s"
177
  msgstr "Onverwachte reactie: %s"
178
 
179
+ #: nextend-facebook-connect/admin/admin.php:581
180
  #: nextend-facebook-connect/admin/templates/fix-redirect-uri.php:21
181
  #, php-format
182
  msgid ""
186
  "%s detecteert dat je inlog-URL is gewijzigd. Je moet de Oauth-omleidings-"
187
  "URI's bijwerken in de bijbehorende social applicatie."
188
 
189
+ #: nextend-facebook-connect/admin/admin.php:582
190
+ #: nextend-social-login-pro/providers/apple/apple.php:310
191
  msgid "Fix Error"
192
  msgstr "Fout Oplossen"
193
 
194
+ #: nextend-facebook-connect/admin/admin.php:582
195
  msgid "Oauth Redirect URI"
196
  msgstr "Oauth Omleidings-URI"
197
 
198
+ #: nextend-facebook-connect/admin/admin.php:599
199
  #, php-format
200
  msgid ""
201
  "%1$s detected that %2$s installed on your site. You need the Pro Addon to "
205
  "Add-on nodig om Social Login-knoppen weer te geven in het %2$s "
206
  "aanmeldingsformulier!"
207
 
208
+ #: nextend-facebook-connect/admin/admin.php:600
209
  msgid "Dismiss and check Pro Addon"
210
  msgstr "Sluiten en vink Pro-uitbreiding aan"
211
 
212
+ #: nextend-facebook-connect/admin/admin.php:600
213
  msgid "Dismiss"
214
  msgstr "Sluiten"
215
 
216
+ #: nextend-facebook-connect/admin/admin.php:606
217
  #, php-format
218
  msgid ""
219
  "%1$s detected that %2$s installed on your site. You must set \"<b>Page for "
224
  "\"<b>Pagina voor registreerproces</b>\" en \"<b>OAuth-omleidingspagina voor "
225
  "uri-proxy</b>\" instellen om %1$s correct te laten werken."
226
 
227
+ #: nextend-facebook-connect/admin/admin.php:607
228
  msgid "Fix now"
229
  msgstr "Nu maken"
230
 
231
+ #: nextend-facebook-connect/admin/admin.php:631
232
  msgid "Activate your Pro Addon"
233
  msgstr "Activeer je Pro Add-on"
234
 
235
+ #: nextend-facebook-connect/admin/admin.php:632
236
  #, fuzzy
237
  #| msgid ""
238
  #| "To be able to use the Pro features, you need to activate Nextend Social "
247
  "uitbreiding activeren. Je kunt dit doen door hieronder op de knop Activeren "
248
  "te klikken en vervolgens de bijbehorende aankoop te selecteren."
249
 
250
+ #: nextend-facebook-connect/admin/admin.php:637
251
+ #: nextend-social-login-pro/nextend-social-login-pro.php:110
252
  msgid "Activate"
253
  msgstr "Activeren"
254
 
255
+ #: nextend-facebook-connect/admin/admin.php:735
256
  msgid "License key"
257
  msgstr "Licentiesleutel"
258
 
259
+ #: nextend-facebook-connect/admin/admin.php:758
260
  msgid "OAuth proxy page"
261
  msgstr "OAuth-proxy-pagina"
262
 
263
+ #: nextend-facebook-connect/admin/admin.php:761
264
  msgid "Register flow page"
265
  msgstr "Registreerproces-pagina"
266
 
269
  msgid "You have logged in successfully."
270
  msgstr "Je bent succesvol ingelogd."
271
 
272
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:80
273
  msgid "Login label"
274
  msgstr "Login label"
275
 
276
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:85
277
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:101
278
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:114
279
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:125
280
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:154
281
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:184
282
  #: nextend-facebook-connect/admin/templates/settings/privacy.php:53
283
  msgid "Reset to default"
284
  msgstr "Reset naar standaard"
285
 
286
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:95
287
+ #, fuzzy
288
+ #| msgid "Register layout"
289
+ msgid "Register label"
290
+ msgstr "Registratie layout"
291
+
292
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:108
293
  msgid "Link label"
294
  msgstr "Koppel label"
295
 
296
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:120
297
  msgid "Unlink label"
298
  msgstr "Ontkoppel label"
299
 
300
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:131
301
  msgid "Default button"
302
  msgstr "Standaard knop"
303
 
304
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:147
305
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:177
306
  msgid "Use custom button"
307
  msgstr "Gebruik de aangepaste knop"
308
 
309
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:154
310
  #, php-format
311
  msgid "Use the %s in your custom button's code to make the label show up."
312
  msgstr ""
313
  "Gebruik de %s in de code van je aangepaste knop om het label te laten "
314
  "verschijnen."
315
 
316
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:162
317
  msgid "Icon button"
318
  msgstr "Pictogram knop"
319
 
320
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:193
321
  #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:140
322
  #: nextend-facebook-connect/admin/templates-provider/sync-data.php:104
323
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:170
330
  #: nextend-facebook-connect/admin/templates/settings/privacy.php:109
331
  #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:186
332
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:167
333
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:341
334
+ #: nextend-facebook-connect/providers/facebook/admin/settings.php:67
335
  #: nextend-facebook-connect/providers/google/admin/settings.php:62
336
  #: nextend-facebook-connect/providers/twitter/admin/settings.php:48
337
  #: nextend-social-login-pro/providers/amazon/admin/settings.php:47
457
  #: nextend-facebook-connect/admin/templates/settings/general.php:213
458
  #: nextend-facebook-connect/admin/templates/settings/general.php:228
459
  #: nextend-facebook-connect/admin/templates/settings/general.php:246
460
+ #: nextend-facebook-connect/admin/templates/settings/general.php:261
461
+ #: nextend-facebook-connect/includes/provider-admin.php:218
462
  msgid "Disabled"
463
  msgstr "Uitgeschakeld"
464
 
775
  #: nextend-facebook-connect/admin/templates/settings/general.php:216
776
  #: nextend-facebook-connect/admin/templates/settings/general.php:231
777
  #: nextend-facebook-connect/admin/templates/settings/general.php:249
778
+ #: nextend-facebook-connect/admin/templates/settings/general.php:264
779
+ #: nextend-facebook-connect/includes/provider-admin.php:221
780
  #: nextend-facebook-connect/providers/google/admin/settings.php:53
781
  #: nextend-social-login-pro/providers/paypal/admin/settings.php:51
782
  msgid "Enabled"
787
  msgstr "Nu Bijwerken"
788
 
789
  #: nextend-facebook-connect/admin/templates/providers.php:77
790
+ #: nextend-facebook-connect/includes/provider-admin.php:205
791
  msgid "Verify Settings"
792
  msgstr "Instellingen Controleren"
793
 
794
  #: nextend-facebook-connect/admin/templates/providers.php:85
795
+ #: nextend-facebook-connect/includes/provider-admin.php:250
796
  msgid "Enable"
797
  msgstr "Inschakelen"
798
 
799
  #: nextend-facebook-connect/admin/templates/providers.php:97
800
+ #: nextend-facebook-connect/includes/provider-admin.php:258
801
  msgid "Disable"
802
  msgstr "Uitschakelen"
803
 
1351
  msgid "Allow registration with Social login."
1352
  msgstr "Registratie toestaan met Social login."
1353
 
1354
+ #: nextend-facebook-connect/admin/templates/settings/general.php:256
1355
+ #, fuzzy
1356
+ #| msgid "Page for register flow"
1357
+ msgid "Custom label for register buttons"
1358
+ msgstr "Pagina voor registreerproces"
1359
+
1360
+ #: nextend-facebook-connect/admin/templates/settings/general.php:266
1361
+ #, php-format
1362
+ msgid ""
1363
+ "Set a custom label for the social buttons in registration forms and for "
1364
+ "shortcodes with %1$s parameter set to %2$s.<br>The register specific labels "
1365
+ "can be modified at the Buttons tab of each provider."
1366
+ msgstr ""
1367
+
1368
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:29
1369
  #: nextend-facebook-connect/admin/templates/settings/memberpress.php:33
1370
  #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:33
1451
  msgstr "Koppelknoppen na accountgegevens"
1452
 
1453
  #: nextend-facebook-connect/admin/templates/settings/privacy.php:6
1454
+ #: nextend-facebook-connect/nextend-social-login.php:148
1455
  msgid ""
1456
  "By clicking Register, you accept our <a href=\"#privacy_policy_url\" target="
1457
  "\"_blank\">Privacy Policy</a>"
1482
  msgstr "Indien niet ingeschakeld, zal e-mail leeg zijn."
1483
 
1484
  #: nextend-facebook-connect/admin/templates/settings/privacy.php:91
1485
+ #: nextend-facebook-connect/includes/avatar.php:49
1486
  msgid "Avatar"
1487
  msgstr "Profielfoto"
1488
 
1489
  #: nextend-facebook-connect/admin/templates/settings/privacy.php:102
1490
+ #: nextend-facebook-connect/includes/provider.php:1100
1491
  msgid "Access token"
1492
  msgstr "Toegangstoken"
1493
 
1559
  msgid "Link buttons on"
1560
  msgstr "Koppelknoppen op"
1561
 
1562
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:323
1563
+ #, fuzzy
1564
+ #| msgid "Ask E-mail on registration"
1565
+ msgid "Email template for registration"
1566
+ msgstr "Vraag E-mail bij inschrijving"
1567
+
1568
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:328
1569
+ #, fuzzy
1570
+ #| msgid "WordPress default"
1571
+ msgid "WordPress default notification"
1572
+ msgstr "WordPress standaard"
1573
+
1574
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:331
1575
+ #, fuzzy
1576
+ #| msgid "Registration notification sent to"
1577
+ msgid "WooCommerce registration notification"
1578
+ msgstr "Registratie notificatie verzonden naar"
1579
+
1580
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:333
1581
+ #, php-format
1582
+ msgid ""
1583
+ "Defines whether the registration with %1$s will send the same registration "
1584
+ "notification that %2$s does, instead of the %3$s default one."
1585
+ msgstr ""
1586
+
1587
  #: nextend-facebook-connect/admin/templates/test-connection.php:42
1588
  #, php-format
1589
  msgid "Network connection successful: %1$s"
1602
  "Neem contact op met je hostingprovider om het netwerkprobleem tussen je "
1603
  "server en de provider op te lossen."
1604
 
1605
+ #: nextend-facebook-connect/includes/avatar.php:50
1606
  msgid "Manage Avatar"
1607
  msgstr "Profielfoto beheren"
1608
 
1609
+ #: nextend-facebook-connect/includes/avatar.php:51
1610
  #, php-format
1611
  msgid "Avatar <span class=\"count\">(%s)</span>"
1612
  msgid_plural "Avatar <span class=\"count\">(%s)</span>"
1613
  msgstr[0] "Profielfoto <span class=\"count\">(%s)</span>"
1614
  msgstr[1] "Profielfoto <span class=\"count\">(%s)</span>"
1615
 
 
1616
  #: nextend-facebook-connect/includes/compat-wp-login.php:63
1617
  #, php-format
1618
  msgid "%1$s &lsaquo; %2$s &#8212; WordPress"
1626
  msgid "Powered by WordPress"
1627
  msgstr "Mogelijk gemaakt door WordPress"
1628
 
 
1629
  #: nextend-facebook-connect/includes/compat-wp-login.php:284
1630
  #, php-format
1631
  msgctxt "site"
1632
  msgid "&larr; Back to %s"
1633
  msgstr "&larr; Terug naar %s"
1634
 
1635
+ #: nextend-facebook-connect/includes/provider-admin.php:199
1636
  msgid "Your configuration needs to be verified"
1637
  msgstr "Je configuratie moet worden geverifieerd"
1638
 
1639
+ #: nextend-facebook-connect/includes/provider-admin.php:200
1640
  msgid ""
1641
  "Before you can start letting your users register with your app it needs to "
1642
  "be tested. This test makes sure that no users will have troubles with the "
1650
  "een foutmelding ziet in de popup, controleer dan de gekopieerde ID en het "
1651
  "geheim of de app zelf. Anders zijn je instellingen in orde."
1652
 
1653
+ #: nextend-facebook-connect/includes/provider-admin.php:206
1654
  msgid "Please save your changes to verify settings."
1655
  msgstr "Sla je wijzigingen op om de instellingen te controleren."
1656
 
1657
+ #: nextend-facebook-connect/includes/provider-admin.php:214
1658
  msgid "Works Fine"
1659
  msgstr "Werkt Prima"
1660
 
1661
+ #: nextend-facebook-connect/includes/provider-admin.php:228
1662
  #, php-format
1663
  msgid ""
1664
  "This provider is currently disabled, which means that users can’t register "
1667
  "Deze provider is momenteel uitgeschakeld, wat betekent dat gebruikers zich "
1668
  "niet kunnen registreren of inloggen via hun %s account."
1669
 
1670
+ #: nextend-facebook-connect/includes/provider-admin.php:231
1671
  #, php-format
1672
  msgid ""
1673
  "This provider works fine, but you can test it again. If you don’t want to "
1677
  "gebruikers niet meer wilt laten registreren of inloggen met %s kun je deze "
1678
  "uitschakelen."
1679
 
1680
+ #: nextend-facebook-connect/includes/provider-admin.php:234
1681
  #, php-format
1682
  msgid ""
1683
  "This provider is currently enabled, which means that users can register or "
1686
  "Deze provider is momenteel ingeschakeld, wat betekent dat gebruikers zich "
1687
  "kunnen registreren of inloggen via hun %s account."
1688
 
1689
+ #: nextend-facebook-connect/includes/provider-admin.php:242
1690
  msgid "Verify Settings Again"
1691
  msgstr "Controleer Instellingen Nogmaals"
1692
 
1693
+ #: nextend-facebook-connect/includes/provider-admin.php:243
1694
  msgid "Please save your changes before verifying settings."
1695
  msgstr "Sla je wijzigingen op voordat je de instellingen controleert."
1696
 
1697
+ #: nextend-facebook-connect/includes/provider.php:358
1698
+ #: nextend-facebook-connect/includes/provider.php:717
1699
+ #: nextend-facebook-connect/includes/provider.php:725
1700
  msgid "Authentication successful"
1701
  msgstr "Authenticatie geslaagd"
1702
 
1703
+ #: nextend-facebook-connect/includes/provider.php:654
1704
+ #: nextend-facebook-connect/includes/user.php:168
1705
+ #: nextend-facebook-connect/includes/user.php:597
1706
  msgid "Authentication error"
1707
  msgstr "Authenticatiefout"
1708
 
1709
+ #: nextend-facebook-connect/includes/provider.php:669
1710
  msgid "Unlink successful."
1711
  msgstr "Ontkoppeling succesvol."
1712
 
1713
+ #: nextend-facebook-connect/includes/provider.php:671
1714
  msgid "Unlink is not allowed!"
1715
  msgstr "Ontkoppelen is niet toegestaan!"
1716
 
1717
+ #: nextend-facebook-connect/includes/provider.php:886
1718
+ #: nextend-facebook-connect/includes/provider.php:893
1719
  msgid "The test was successful"
1720
  msgstr "De test was succesvol"
1721
 
1722
+ #: nextend-facebook-connect/includes/provider.php:939
1723
  msgid "Authentication failed"
1724
  msgstr "Authenticatie mislukt"
1725
 
1726
+ #: nextend-facebook-connect/includes/provider.php:1092
1727
  msgid "Identifier"
1728
  msgstr "Identificatie"
1729
 
1730
+ #: nextend-facebook-connect/includes/provider.php:1108
1731
  msgid "Profile picture"
1732
  msgstr "Profielfoto"
1733
 
1741
  "gemakkelijk aanmelden met %2$s."
1742
 
1743
  #: nextend-facebook-connect/includes/user.php:77
1744
+ #, fuzzy, php-format
1745
+ #| msgid ""
1746
+ #| "You have already linked a(n) %s account. Please unlink the current and "
1747
+ #| "then you can link other %s account."
1748
  msgid ""
1749
  "You have already linked a(n) %s account. Please unlink the current and then "
1750
+ "you can link another %s account."
1751
  msgstr ""
1752
  "Je hebt al een %s account gekoppeld. Ontkoppel de huidige en dan kun je "
1753
  "andere %s account koppelen."
1754
 
1755
  #: nextend-facebook-connect/includes/user.php:82
1756
+ #, fuzzy, php-format
1757
+ #| msgid "This %s account is already linked to other user."
1758
+ msgid "This %s account is already linked to another user."
1759
  msgstr "Dit %s account is al gekoppeld aan een andere gebruiker."
1760
 
1761
+ #: nextend-facebook-connect/includes/user.php:128
1762
  msgid "User registration is currently not allowed."
1763
  msgstr "Gebruikersregistratie is momenteel niet toegestaan."
1764
 
1766
  msgid "Register For This Site!"
1767
  msgstr "Registreer Voor Deze Site!"
1768
 
1769
+ #: nextend-facebook-connect/nextend-facebook-connect.php:37
 
1770
  #, php-format
1771
  msgid "%1$s requires PHP version %2$s+, plugin is currently NOT ACTIVE."
1772
  msgstr "%1$s vereist PHP versie %2$s+, plugin is momenteel NIET ACTIEF."
1773
 
1774
+ #: nextend-facebook-connect/nextend-facebook-connect.php:44
 
1775
  #, php-format
1776
  msgid ""
1777
  "%1$s requires WordPress version %2$s+. Because you are using an earlier "
1791
  msgid "Update now!"
1792
  msgstr "Update nu!"
1793
 
1794
+ #: nextend-facebook-connect/nextend-social-login.php:762
1795
+ #: nextend-facebook-connect/nextend-social-login.php:1140
1796
  msgid "Social Login"
1797
  msgstr "Social Login"
1798
 
1799
+ #: nextend-facebook-connect/nextend-social-login.php:1121
1800
  msgid "Social Accounts"
1801
  msgstr "Social Accounts"
1802
 
1865
  msgstr "Klik in de linkerbalk op \"Facebook Login/Instellingen\""
1866
 
1867
  #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:12
1868
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:35
1869
  #, fuzzy, php-format
1870
  #| msgid ""
1871
  #| "Add the following URL to the \"Valid OAuth redirect URIs\" field: <b>%s</"
1963
 
1964
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:26
1965
  #, fuzzy
1966
+ #| msgid "Click on the \"Create an App\" button on the top right corner."
1967
+ msgid ""
1968
+ "Click on the \"<b>Create App</b>\" button and in the Popup choose the "
1969
+ "\"<b>Build Connected Experiences</b>\" option!"
1970
+ msgstr "Klik op de knop \"Maak een App\" in de rechterbovenhoek."
1971
 
1972
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:27
1973
  msgid ""
1982
  #| "Fill \"Display Name\" and \"Contact Email\". The specified \"Display Name"
1983
  #| "\" will appear on your %s!"
1984
  msgid ""
1985
+ "Fill \"<b>App Display Name</b>\", \"<b>App Contact Email</b>\". The "
1986
+ "specified \"App Display Name\" will appear on your %s!"
1987
  msgstr ""
1988
  "Vul \"Schermnaam\" en \"E-mail\" in. De opgegeven \"Schermnaam\" zal "
1989
  "verschijnen op je %s!"
1990
 
1991
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:29
1992
+ msgid ""
1993
+ "<b>Optional</b>: choose a \"<b>Business Manager Account</b>\" in the popup, "
1994
+ "if you have any."
1995
+ msgstr ""
1996
+
1997
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:30
1998
  #, fuzzy
1999
  #| msgid "Click on the \"Create an App\" button on the top right corner."
2000
  msgid ""
2001
  "Click the \"<b>Create App ID</b>\" button and complete the Security Check."
2002
  msgstr "Klik op de knop \"Maak een App\" in de rechterbovenhoek."
2003
 
2004
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:31
2005
  #, fuzzy, php-format
2006
  #| msgid "Fill the \"App Name\" field and click \"Create App\" button."
2007
  msgid ""
2009
  "\"<b>Set Up</b>\""
2010
  msgstr "Vul het veld \"App Naam\" in en klik op de knop \"Maak App\"."
2011
 
2012
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:32
2013
  #, fuzzy, php-format
2014
  #| msgid "Add the following URL to the \"Redirect URLs\" field <b>%s</b> "
2015
  msgid ""
2017
  "field: <b>%s</b>"
2018
  msgstr "Voeg de volgende URL toe aan het veld \"Omleidings-URLs\" <b>%s</b> "
2019
 
2020
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:33
2021
  #, fuzzy
2022
  #| msgid "Click on \"Save Changes\""
2023
  msgid "Press “<b>Save</b>”"
2024
  msgstr "Klik op \"Wijzigingen Opslaan\""
2025
 
2026
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:34
2027
  #, php-format
2028
  msgid ""
2029
  "Click on the “<b>%1$s</b>” option what you find on the left side, under “<b>"
2030
  "%2$s</b> - <b>%3$s</b>”"
2031
  msgstr ""
2032
 
2033
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:36
2034
  #, fuzzy
2035
  #| msgid "Click on \"Save Changes\""
2036
  msgid "Click on “<b>Save Changes</b>”"
2037
  msgstr "Klik op \"Wijzigingen Opslaan\""
2038
 
2039
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:37
2040
  #, php-format
2041
  msgid ""
2042
  "On the top left side, click on the “<b>%1$s</b>” menu point, then click “<b>"
2043
  "%2$s</b>”"
2044
  msgstr ""
2045
 
2046
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:38
2047
  #, fuzzy, php-format
2048
  #| msgid "Enter your domain name to the App Domains"
2049
  msgid ""
2051
  "b>"
2052
  msgstr "Voer je domeinnaam in bij de App Domeinen"
2053
 
2054
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:39
2055
  #, fuzzy
2056
  #| msgid ""
2057
  #| "Fill up the \"Privacy Policy URL\". Provide a publicly available and "
2066
  "gemakkelijk toegankelijk privacybeleid waarin wordt uitgelegd welke gegevens "
2067
  "je verzamelt en hoe je deze gegevens zult gebruiken."
2068
 
2069
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:40
2070
+ msgid ""
2071
+ "At \"<b>User Data Deletion</b>\", choose the \"<b>Data Deletion Instructions "
2072
+ "URL</b>\" option, and enter the <i>URL of your page</i>* with the "
2073
+ "instructions on how users can delete their accounts on your site."
2074
+ msgstr ""
2075
+
2076
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:42
2077
+ msgid ""
2078
+ "To comply with GDPR, you should already offer possibility to delete accounts "
2079
+ "on your site, either by the user or by the admin:"
2080
+ msgstr ""
2081
+
2082
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:45
2083
+ msgid ""
2084
+ "<u>If each user has an option to delete the account</u>: the URL should "
2085
+ "point to a guide showing the way users can delete their accounts."
2086
+ msgstr ""
2087
+
2088
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:46
2089
+ msgid ""
2090
+ "<u>If the accounts are deleted by an admin</u>: then you should have a "
2091
+ "section - usually in the Privacy Policy - with the contact details, where "
2092
+ "users can send their account erasure requests. In this case the URL should "
2093
+ "point to this section of the document."
2094
+ msgstr ""
2095
+
2096
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:51
2097
  msgid ""
2098
+ "Select a “<b>Category</b>”, an “<b>App Icon</b>” and pick the “<b>App "
2099
+ "Purpose</b>” option that describes your App the best, then press \"<b>Save "
2100
  "Changes</b>\""
2101
  msgstr ""
2102
 
2103
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:52
2104
  #, fuzzy
2105
  #| msgid ""
2106
  #| "Your application is currently private ( Status: In Development ), which "
2115
  "alleen jij ermee kunt inloggen. Klik in de bovenste balk op de \"OFF\" "
2116
  "schakelaar en selecteer een categorie voor je App."
2117
 
2118
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:53
2119
  #, fuzzy
2120
  #| msgid ""
2121
  #| "Here you can see your \"APP ID\" and you can see your \"App secret\" if "
2129
  "Hier kun je je \"APP ID\" zien en je \"App geheim\" als je op de knop "
2130
  "\"Weergeven\" klikt. Deze zullen nodig zijn in de instellingen van de plugin."
2131
 
2132
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:56
2133
+ #, php-format
2134
+ msgid ""
2135
+ "<b>WARNING:</b> <u>Don't replace your Facebook App with another!</u> Since "
2136
+ "WordPress users with linked Facebook accounts can only login using the %1$s "
2137
+ "App, that was originally used at the time, when the WordPress account was "
2138
+ "linked with a %1$s Account.<br>\n"
2139
+ "If you would like to know the reason of this, or you really need to replace "
2140
+ "the Facebook App, then please check our %2$sdocumentation%3$s."
2141
+ msgstr ""
2142
+
2143
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:60
2144
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:40
2145
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:37
2146
  #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:39
2147
  #: nextend-social-login-pro/providers/apple/admin/getting-started.php:122
2148
  #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:30
2214
  msgid "App Secret"
2215
  msgstr "App Geheim"
2216
 
2217
+ #: nextend-facebook-connect/providers/facebook/admin/settings.php:59
2218
+ #, php-format
2219
+ msgid ""
2220
+ "By replacing your existing %1$s App, users with linked %1$s accounts will no "
2221
+ "longer be able to login with %1$s."
2222
+ msgstr ""
2223
+
2224
+ #: nextend-facebook-connect/providers/facebook/admin/settings.php:61
2225
+ msgid "Find out why?"
2226
+ msgstr ""
2227
+
2228
+ #: nextend-facebook-connect/providers/facebook/facebook.php:85
2229
  msgid "Continue with <b>Facebook</b>"
2230
  msgstr "Doorgaan met <b>Facebook</b>"
2231
 
2232
+ #: nextend-facebook-connect/providers/facebook/facebook.php:86
2233
+ #, fuzzy
2234
+ #| msgid "Continue with <b>Facebook</b>"
2235
+ msgid "Sign up with <b>Facebook</b>"
2236
+ msgstr "Doorgaan met <b>Facebook</b>"
2237
+
2238
+ #: nextend-facebook-connect/providers/facebook/facebook.php:87
2239
  msgid "Link account with <b>Facebook</b>"
2240
  msgstr "Koppel met <b>Facebook</b>"
2241
 
2242
+ #: nextend-facebook-connect/providers/facebook/facebook.php:88
2243
  msgid "Unlink account from <b>Facebook</b>"
2244
  msgstr "Ontkoppel van <b>Facebook</b>"
2245
 
2246
+ #: nextend-facebook-connect/providers/facebook/facebook.php:188
2247
+ #: nextend-facebook-connect/providers/google/google.php:168
2248
+ #: nextend-facebook-connect/providers/twitter/twitter.php:97
2249
+ #: nextend-social-login-pro/providers/amazon/amazon.php:67
2250
+ #: nextend-social-login-pro/providers/apple/apple.php:131
2251
+ #: nextend-social-login-pro/providers/apple/apple.php:138
2252
+ #: nextend-social-login-pro/providers/disqus/disqus.php:114
2253
+ #: nextend-social-login-pro/providers/github/github.php:152
2254
+ #: nextend-social-login-pro/providers/linkedin/linkedin.php:65
2255
+ #: nextend-social-login-pro/providers/paypal/paypal.php:92
2256
+ #: nextend-social-login-pro/providers/vk/vk.php:63
2257
+ #: nextend-social-login-pro/providers/wordpress/wordpress.php:101
2258
+ #: nextend-social-login-pro/providers/yahoo/yahoo.php:92
2259
  #, php-format
2260
  msgid ""
2261
  "The %1$s entered did not appear to be a valid. Please enter a valid %2$s."
2262
  msgstr "Het ingevoerde %1$s bleek niet geldig te zijn. Vul een geldig %2$s in."
2263
 
2264
+ #: nextend-facebook-connect/providers/facebook/facebook.php:309
2265
+ #: nextend-social-login-pro/providers/paypal/paypal.php:172
2266
  #, php-format
2267
  msgid "Required scope: %1$s"
2268
  msgstr "Vereiste scope: %1$s"
2465
  "Disable, when you don't want to see the account select prompt on each login."
2466
  msgstr ""
2467
 
2468
+ #: nextend-facebook-connect/providers/google/google.php:99
2469
  msgid "Continue with <b>Google</b>"
2470
  msgstr "Doorgaan met <b>Google</b>"
2471
 
2472
+ #: nextend-facebook-connect/providers/google/google.php:100
2473
+ #, fuzzy
2474
+ #| msgid "Continue with <b>Google</b>"
2475
+ msgid "Sign up with <b>Google</b>"
2476
+ msgstr "Doorgaan met <b>Google</b>"
2477
+
2478
+ #: nextend-facebook-connect/providers/google/google.php:101
2479
  msgid "Link account with <b>Google</b>"
2480
  msgstr "Koppel met <b>Google</b>"
2481
 
2482
+ #: nextend-facebook-connect/providers/google/google.php:102
2483
  msgid "Unlink account from <b>Google</b>"
2484
  msgstr "Ontkoppel van <b>Google</b>"
2485
 
2486
+ #: nextend-facebook-connect/providers/google/google.php:295
2487
  #, php-format
2488
  msgid "Required API: %1$s"
2489
  msgstr "Vereiste API: %1$s"
2491
  #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:10
2492
  #, fuzzy
2493
  #| msgid "Find your App and click on the Details button"
2494
+ msgid ""
2495
+ "Find your App and click on the <b>App settings</b> icon. (The one that looks "
2496
+ "like a gear.)"
2497
  msgstr "Vind jew app en klik op de knop Details"
2498
 
2499
  #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:11
2500
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:27
2501
  #, fuzzy
2502
+ #| msgid "Click on the \"Create an App\" button on the top right corner."
2503
+ msgid "Click on the <b>Edit</b> button at <b>Authentication settings</b>."
2504
+ msgstr "Klik op de knop \"Maak een App\" in de rechterbovenhoek."
 
 
 
 
 
 
2505
 
2506
  #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:12
 
2507
  #, fuzzy, php-format
2508
  #| msgid "Add the following URL to the \"Callback URLs\" field: <b>%s</b>"
2509
  msgid "Add the following URL to the \"<b>Callback URLs</b>\" field: <b>%s</b>"
2510
  msgstr "Voeg de volgende URL toe aan het veld \"Callback URL's\": <b>%s</b>"
2511
 
2512
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:17
2513
+ #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:25
2514
+ #: nextend-social-login-pro/providers/apple/admin/getting-started.php:38
2515
+ #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:9
2516
+ #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:16
2517
+ #: nextend-social-login-pro/providers/github/admin/getting-started.php:16
2518
+ #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:9
2519
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:17
2520
+ #: nextend-social-login-pro/providers/vk/admin/getting-started.php:16
2521
+ #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:9
2522
+ #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:16
2523
+ #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:17
2524
  #, php-format
2525
+ msgid "Log in with your %s credentials if you are not logged in."
2526
+ msgstr "Log in met je %s inloggegevens als je niet ingelogd bent."
2527
 
2528
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:18
2529
  msgid ""
2546
  "nog niet bent!"
2547
 
2548
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:20
2549
+ #, fuzzy
2550
+ #| msgid "Click on \"Save\""
2551
+ msgid "Click on <b>+ New Project</b>!"
2552
+ msgstr "Klik op \"Opslaan\""
2553
+
2554
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:21
2555
  msgid ""
2556
+ "Name your project, and go through the basic setup. You’ll need to select "
2557
+ "your use case and give a description."
2558
  msgstr ""
 
 
2559
 
2560
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:22
2561
+ msgid "Create a new app, or select an existing one, then click <b>Complete</b>"
2562
+ msgstr ""
 
 
2563
 
2564
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:23
 
 
 
 
2565
  msgid ""
2566
+ "You’ll find your API key and secret on this page. Copy and paste the <b>API "
2567
+ "key</b> and the <b>API secret key</b> to the corresponding fields at Nextend "
2568
+ "Social Login and press <b>Save Changes</b>."
2569
  msgstr ""
 
 
2570
 
2571
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:24
2572
+ #, fuzzy, php-format
2573
+ #| msgid "Click on the \"Save Changes\" button."
2574
+ msgid "Click on the <b>App Settings</b> button at %s."
2575
+ msgstr "Klik op de knop \"Wijzigingen Opslaan\"."
2576
 
2577
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:25
2578
+ msgid "Find the Apps section, and the app you created a few steps ago."
2579
+ msgstr ""
 
 
2580
 
2581
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:26
2582
+ msgid "Click on the App settings icon. (The one that looks like a gear.)"
2583
+ msgstr ""
 
 
2584
 
2585
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:28
2586
+ msgid "Switch on the <b>Enable 3-legged OAuth</b> option."
2587
+ msgstr ""
2588
+
2589
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:29
2590
+ #, fuzzy, php-format
2591
+ #| msgid "Add the following URL to the \"Callback URLs\" field: <b>%s</b>"
2592
+ msgid "Add the following URL to the <b>Callback URLs</b> field: <b>%s</b>"
2593
+ msgstr "Voeg de volgende URL toe aan het veld \"Callback URL's\": <b>%s</b>"
2594
+
2595
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:30
2596
+ #, fuzzy, php-format
2597
+ #| msgid "Enter the URL of your site to the \"Home Page URL\" field: <b>%s</b>"
2598
+ msgid "Enter your site's URL to the <b>Website URL</b> field: <b>%s</b>"
2599
+ msgstr "Voer de URL van je site in het veld \"Home Page URL\" in: <b>%s</b>"
2600
+
2601
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:31
2602
  msgid ""
2603
+ "If you want to get the email address as well, then don’t forget to enable "
2604
+ "the <b>Request email address from users</b> option. In this case you also "
2605
+ "need to fill the <b>Terms of service</b> and the <b>Privacy policy</b> "
2606
+ "fields with the corresponding URLs!"
2607
  msgstr ""
 
 
2608
 
2609
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:32
2610
  #, fuzzy
2611
+ #| msgid "Click on \"Save\""
2612
+ msgid "Click on <b>Save</b>."
2613
+ msgstr "Klik op \"Opslaan\""
2614
+
2615
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:33
2616
+ #, php-format
2617
+ msgid "Go back to Nextend Social Login and <b>Verify</b> your %s provider."
2618
  msgstr ""
 
 
2619
 
2620
  #: nextend-facebook-connect/providers/twitter/admin/settings.php:27
2621
  #: nextend-social-login-pro/providers/disqus/admin/settings.php:26
2634
  msgid "Original"
2635
  msgstr "Origineel"
2636
 
2637
+ #: nextend-facebook-connect/providers/twitter/twitter.php:70
2638
  msgid "Continue with <b>Twitter</b>"
2639
  msgstr "Doorgaan met <b>Twitter</b>"
2640
 
2641
+ #: nextend-facebook-connect/providers/twitter/twitter.php:71
2642
+ #, fuzzy
2643
+ #| msgid "Continue with <b>Twitter</b>"
2644
+ msgid "Sign up with <b>Twitter</b>"
2645
+ msgstr "Doorgaan met <b>Twitter</b>"
2646
+
2647
+ #: nextend-facebook-connect/providers/twitter/twitter.php:72
2648
  msgid "Link account with <b>Twitter</b>"
2649
  msgstr "Koppel met <b>Twitter</b>"
2650
 
2651
+ #: nextend-facebook-connect/providers/twitter/twitter.php:73
2652
  msgid "Unlink account from <b>Twitter</b>"
2653
  msgstr "Ontkoppel van <b>Twitter</b>"
2654
 
2773
  "Dit e-mailadres is al geregistreerd, log in op je account om te koppelen met "
2774
  "%1$s."
2775
 
2776
+ #: nextend-social-login-pro/nextend-social-login-pro.php:104
2777
  #, php-format
2778
  msgid "Please install and activate %1$s to use the %2$s"
2779
  msgstr "Installeer en activeer %1$s om de %2$s te gebruiken"
2780
 
2781
+ #: nextend-social-login-pro/nextend-social-login-pro.php:118
2782
  msgid "Network Activate"
2783
  msgstr "Netwerk Activeren"
2784
 
2785
+ #: nextend-social-login-pro/nextend-social-login-pro.php:130
2786
  msgid "Install now!"
2787
  msgstr "Installeer nu!"
2788
 
2789
+ #: nextend-social-login-pro/nextend-social-login-pro.php:821
2790
  #, fuzzy
2791
  #| msgid "Providers"
2792
  msgid "Social Providers"
2801
  "De Facebook Sync data heeft een goedgekeurd %1$s nodig en je App moet de "
2802
  "laatste %2$s versie gebruiken!"
2803
 
2804
+ #: nextend-social-login-pro/provider-extensions/google.php:187
2805
  #, php-format
2806
  msgid ""
2807
  "Most of these information can only be retrieved, when the field is marked as "
2866
  "\"Instellingen\" en configureer je de gegevens \"%2$s\" en \"%3$s\" volgens "
2867
  "je %1$s App."
2868
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2869
  #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:27
2870
  #, fuzzy
2871
  #| msgid ""
2930
  "Vind de benodigde \"Client ID\" en \"Client Geheim\" in het midden van de "
2931
  "pagina, onder het tabblad \"Web Instelling\"."
2932
 
2933
+ #: nextend-social-login-pro/providers/amazon/amazon.php:40
2934
  msgid "Continue with <b>Amazon</b>"
2935
  msgstr "Doorgaan met <b>Amazonië</b>"
2936
 
2937
+ #: nextend-social-login-pro/providers/amazon/amazon.php:41
2938
+ #, fuzzy
2939
+ #| msgid "Continue with <b>Amazon</b>"
2940
+ msgid "Sign up with <b>Amazon</b>"
2941
+ msgstr "Doorgaan met <b>Amazonië</b>"
2942
+
2943
+ #: nextend-social-login-pro/providers/amazon/amazon.php:42
2944
  msgid "Link account with <b>Amazon</b>"
2945
  msgstr "Koppel met <b>Amazon</b>"
2946
 
2947
+ #: nextend-social-login-pro/providers/amazon/amazon.php:43
2948
  msgid "Unlink account from <b>Amazon</b>"
2949
  msgstr "Ontkoppel van <b>Amazon</b>"
2950
 
3285
  msgid "Generate Token"
3286
  msgstr ""
3287
 
3288
+ #: nextend-social-login-pro/providers/apple/apple.php:83
 
 
3289
  msgid "Continue with <b>Apple</b>"
3290
+ msgstr "Doorgaan met <b>Apple</b>"
3291
 
3292
+ #: nextend-social-login-pro/providers/apple/apple.php:84
3293
  #, fuzzy
3294
+ #| msgid "Continue with <b>Apple</b>"
3295
+ msgid "Sign up with <b>Apple</b>"
3296
+ msgstr "Doorgaan met <b>Apple</b>"
3297
+
3298
+ #: nextend-social-login-pro/providers/apple/apple.php:85
3299
  msgid "Link account with <b>Apple</b>"
3300
+ msgstr "Koppel met <b>Apple</b>"
3301
 
3302
+ #: nextend-social-login-pro/providers/apple/apple.php:86
 
 
3303
  msgid "Unlink account from <b>Apple</b>"
3304
+ msgstr "Ontkoppel van <b>Apple</b>"
3305
 
3306
+ #: nextend-social-login-pro/providers/apple/apple.php:180
3307
  #, php-format
3308
  msgid "An error occurred when storing of the expiration timestamp : %1$s"
3309
  msgstr ""
3310
 
3311
+ #: nextend-social-login-pro/providers/apple/apple.php:184
3312
+ #: nextend-social-login-pro/providers/apple/apple.php:282
3313
+ #: nextend-social-login-pro/providers/apple/apple.php:297
3314
+ #: nextend-social-login-pro/providers/apple/apple.php:341
3315
  #, fuzzy, php-format
3316
  #| msgid "Network connection failed: %1$s"
3317
  msgid "Token generation failed: %1$s"
3318
  msgstr "Netwerkverbinding mislukt: %1$s"
3319
 
3320
+ #: nextend-social-login-pro/providers/apple/apple.php:184
3321
  msgid "Please check your credentials!"
3322
  msgstr ""
3323
 
3324
+ #: nextend-social-login-pro/providers/apple/apple.php:282
3325
  msgid "Private key format is not valid!"
3326
  msgstr ""
3327
 
3328
+ #: nextend-social-login-pro/providers/apple/apple.php:308
3329
  #, php-format
3330
  msgid ""
3331
  "%s detected that your Apple credentials have expired. Please delete the "
3332
  "current credentials and generate new one!"
3333
  msgstr ""
3334
 
3335
+ #: nextend-social-login-pro/providers/apple/apple.php:310
3336
  msgid "Apple Credentials"
3337
  msgstr ""
3338
 
3446
  msgid "API Secret"
3447
  msgstr "API Geheim"
3448
 
3449
+ #: nextend-social-login-pro/providers/disqus/disqus.php:87
3450
  msgid "Continue with <b>Disqus</b>"
3451
  msgstr "Doorgaan met <b>Disqus</b>"
3452
 
3453
+ #: nextend-social-login-pro/providers/disqus/disqus.php:88
3454
+ #, fuzzy
3455
+ #| msgid "Continue with <b>Disqus</b>"
3456
+ msgid "Sign up with <b>Disqus</b>"
3457
+ msgstr "Doorgaan met <b>Disqus</b>"
3458
+
3459
+ #: nextend-social-login-pro/providers/disqus/disqus.php:89
3460
  msgid "Link account with <b>Disqus</b>"
3461
  msgstr "Koppel met <b>Disqus</b>"
3462
 
3463
+ #: nextend-social-login-pro/providers/disqus/disqus.php:90
3464
  msgid "Unlink account from <b>Disqus</b>"
3465
  msgstr "Ontkoppel van <b>Disqus</b>"
3466
 
3557
  "public email address set at the %1$s profile page%2$s!"
3558
  msgstr ""
3559
 
3560
+ #: nextend-social-login-pro/providers/github/github.php:125
 
 
3561
  msgid "Continue with <b>GitHub</b>"
3562
+ msgstr "Doorgaan met <b>GitHub</b>"
3563
 
3564
+ #: nextend-social-login-pro/providers/github/github.php:126
3565
  #, fuzzy
3566
+ msgid "Sign up with <b>GitHub</b>"
3567
+ msgstr "Doorgaan met <b>GitHub</b>"
3568
+
3569
+ #: nextend-social-login-pro/providers/github/github.php:127
3570
  msgid "Link account with <b>GitHub</b>"
3571
+ msgstr "Koppel met <b>GitHub</b>"
3572
 
3573
+ #: nextend-social-login-pro/providers/github/github.php:128
 
 
3574
  msgid "Unlink account from <b>GitHub</b>"
3575
+ msgstr "Ontkoppel van <b>GitHub</b>"
3576
 
3577
  #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:10
3578
  msgid "Click on your App and go to the \"<b>Auth</b>\" tab."
3681
  "Zoek de benodigde \"Client ID\" en \"Client Geheim\" onder de sectie "
3682
  "Applicatie inloggegevens, op het tabblad Auth."
3683
 
3684
+ #: nextend-social-login-pro/providers/linkedin/linkedin.php:38
3685
  msgid "Continue with <b>LinkedIn</b>"
3686
  msgstr "Doorgaan met <b>LinkedIn</b>"
3687
 
3688
+ #: nextend-social-login-pro/providers/linkedin/linkedin.php:39
3689
+ #, fuzzy
3690
+ #| msgid "Continue with <b>LinkedIn</b>"
3691
+ msgid "Sign up with <b>LinkedIn</b>"
3692
+ msgstr "Doorgaan met <b>LinkedIn</b>"
3693
+
3694
+ #: nextend-social-login-pro/providers/linkedin/linkedin.php:40
3695
  msgid "Link account with <b>LinkedIn</b>"
3696
  msgstr "Koppel met <b>LinkedIn</b>"
3697
 
3698
+ #: nextend-social-login-pro/providers/linkedin/linkedin.php:41
3699
  msgid "Unlink account from <b>LinkedIn</b>"
3700
  msgstr "Ontkoppel van <b>LinkedIn</b>"
3701
 
3851
  msgid "Disable, when you have no rights for email address."
3852
  msgstr "Uitschakelen, wanneer je geen rechten hebt voor e-mailadres."
3853
 
3854
+ #: nextend-social-login-pro/providers/paypal/paypal.php:65
3855
  msgid "Continue with <b>PayPal</b>"
3856
  msgstr "Doorgaan met <b>PayPal</b>"
3857
 
3858
+ #: nextend-social-login-pro/providers/paypal/paypal.php:66
3859
+ #, fuzzy
3860
+ #| msgid "Continue with <b>PayPal</b>"
3861
+ msgid "Sign up with <b>PayPal</b>"
3862
+ msgstr "Doorgaan met <b>PayPal</b>"
3863
+
3864
+ #: nextend-social-login-pro/providers/paypal/paypal.php:67
3865
  msgid "Link account with <b>PayPal</b>"
3866
  msgstr "Koppel met <b>PayPal</b>"
3867
 
3868
+ #: nextend-social-login-pro/providers/paypal/paypal.php:68
3869
  msgid "Unlink account from <b>PayPal</b>"
3870
  msgstr "Ontkoppel van <b>PayPal</b>"
3871
 
3979
  msgid "Secure key"
3980
  msgstr "Beveiligde sleutel"
3981
 
3982
+ #: nextend-social-login-pro/providers/vk/vk.php:36
3983
  msgid "Continue with <b>VK</b>"
3984
  msgstr "Doorgaan met <b>VK</b>"
3985
 
3986
+ #: nextend-social-login-pro/providers/vk/vk.php:37
3987
+ #, fuzzy
3988
+ #| msgid "Continue with <b>VK</b>"
3989
+ msgid "Sign up with <b>VK</b>"
3990
+ msgstr "Doorgaan met <b>VK</b>"
3991
+
3992
+ #: nextend-social-login-pro/providers/vk/vk.php:38
3993
  msgid "Link account with <b>VK</b>"
3994
  msgstr "Koppel met <b>VK</b>"
3995
 
3996
+ #: nextend-social-login-pro/providers/vk/vk.php:39
3997
  msgid "Unlink account from <b>VK</b>"
3998
  msgstr "Ontkoppel van <b>VK</b>"
3999
 
4075
  "Hier kun je je \"Client ID\" en \"Client Geheim\" zien. Deze zijn nodig in "
4076
  "de instellingen van de plugin."
4077
 
4078
+ #: nextend-social-login-pro/providers/wordpress/wordpress.php:74
4079
  msgid "Continue with <b>WordPress.com</b>"
4080
  msgstr "Doorgaan met <b>WordPress.com</b>"
4081
 
4082
+ #: nextend-social-login-pro/providers/wordpress/wordpress.php:75
4083
+ #, fuzzy
4084
+ #| msgid "Continue with <b>WordPress.com</b>"
4085
+ msgid "Sign up with <b>WordPress.com</b>"
4086
+ msgstr "Doorgaan met <b>WordPress.com</b>"
4087
+
4088
+ #: nextend-social-login-pro/providers/wordpress/wordpress.php:76
4089
  msgid "Link account with <b>WordPress.com</b>"
4090
  msgstr "Koppel met <b>WordPress.com</b>"
4091
 
4092
+ #: nextend-social-login-pro/providers/wordpress/wordpress.php:77
4093
  msgid "Unlink account from <b>WordPress.com</b>"
4094
  msgstr "Ontkoppel van <b>WordPress.com</b>"
4095
 
4160
  "Bovenaan de pagina vind je de nodige \"Client ID\" en \"Client Geheim\"! "
4161
  "Deze zijn nodig in de instellingen van de plugin."
4162
 
4163
+ #: nextend-social-login-pro/providers/yahoo/yahoo.php:65
4164
  msgid "Continue with <b>Yahoo</b>"
4165
  msgstr "Doorgaan met <b>Yahoo</b>"
4166
 
4167
+ #: nextend-social-login-pro/providers/yahoo/yahoo.php:66
4168
+ #, fuzzy
4169
+ #| msgid "Continue with <b>Yahoo</b>"
4170
+ msgid "Sign up with <b>Yahoo</b>"
4171
+ msgstr "Doorgaan met <b>Yahoo</b>"
4172
+
4173
+ #: nextend-social-login-pro/providers/yahoo/yahoo.php:67
4174
  msgid "Link account with <b>Yahoo</b>"
4175
  msgstr "Koppel met <b>Yahoo</b>"
4176
 
4177
+ #: nextend-social-login-pro/providers/yahoo/yahoo.php:68
4178
  msgid "Unlink account from <b>Yahoo</b>"
4179
  msgstr "Ontkoppel van <b>Yahoo</b>"
4180
 
4181
+ #: nextend-social-login-pro/providers/yahoo/yahoo.php:188
4182
  #, php-format
4183
  msgid "Required permission: %1$s"
4184
  msgstr "Vereiste toestemming: %1$s"
4221
  msgid "Social accounts"
4222
  msgstr "Social accounts"
4223
 
4224
+ #, fuzzy
4225
+ #~| msgid ""
4226
+ #~| "The Edit button can be found on the App details tab. Click on it and "
4227
+ #~| "select Edit details"
4228
+ #~ msgid ""
4229
+ #~ "The <b>Edit</b> button can be found on the App details tab. Click on it "
4230
+ #~ "and select \"<b>Edit details</b>\""
4231
+ #~ msgstr ""
4232
+ #~ "De knop Bewerken is te vinden op het tabblad App details. Klik erop en "
4233
+ #~ "selecteer Bewerken details"
4234
+
4235
+ #, php-format
4236
+ #~ msgid "Log in with your %s credentials if you are not logged in yet"
4237
+ #~ msgstr "Log in met je %s inloggegevens als je nog niet ingelogd bent"
4238
+
4239
+ #, fuzzy, php-format
4240
+ #~| msgid ""
4241
+ #~| "Fill the App name, Application description fields. Then enter your "
4242
+ #~| "site's URL to the Website URL field: <b>%s</b>"
4243
+ #~ msgid ""
4244
+ #~ "Fill the <b>App name</b>, <b>Application description</b> fields. Then "
4245
+ #~ "enter your site's URL to the <b>Website URL</b> field: <b>%s</b>"
4246
+ #~ msgstr ""
4247
+ #~ "Vul de App-naam, Applicatiebeschrijving velden in. Voer vervolgens de URL "
4248
+ #~ "van je site in bij het Website URL veld: <b>%s</b>"
4249
+
4250
+ #, fuzzy
4251
+ #~| msgid "Tick the checkbox next to Enable Sign in with Twitter!"
4252
+ #~ msgid "Tick the checkbox next to <b>Enable Sign in with Twitter</b>!"
4253
+ #~ msgstr "Vink het selectievakje aan naast Inschakelen Inloggen met Twitter!"
4254
+
4255
+ #, fuzzy
4256
+ #~| msgid ""
4257
+ #~| "Fill the “Terms of Service URL\", \"Privacy policy URL\" and \"Tell us "
4258
+ #~| "how this app will be used” fields!"
4259
+ #~ msgid ""
4260
+ #~ "Fill the “<b>Terms of Service URL</b>\", \"<b>Privacy policy URL</b>\" "
4261
+ #~ "and \"<b>Tell us how this app will be used</b>\" fields!"
4262
+ #~ msgstr ""
4263
+ #~ "Vul de velden \"Servicevoorwaarden-URL\", \"Privacy policy URL\" en "
4264
+ #~ "\"Vertel ons hoe deze app zal worden gebruikt\" in!"
4265
+
4266
+ #, fuzzy
4267
+ #~| msgid "Click the Create button."
4268
+ #~ msgid "Click the <b>Create</b> button."
4269
+ #~ msgstr "Klik op de knop Maken."
4270
+
4271
+ #, fuzzy
4272
+ #~| msgid "Read the Developer Terms and click the Create button again!"
4273
+ #~ msgid "Read the Developer Terms and click the <b>Create</b> button again!"
4274
+ #~ msgstr "Lees de Developer Terms en klik opnieuw op de knop Maken!"
4275
+
4276
+ #, fuzzy
4277
+ #~| msgid "Select the Permissions tab and click Edit."
4278
+ #~ msgid "Select the <b>Permissions</b> tab and click <b>Edit</b>."
4279
+ #~ msgstr "Selecteer het tabblad Machtigingen en klik op Bewerken."
4280
+
4281
+ #, fuzzy
4282
+ #~| msgid ""
4283
+ #~| "Tick the Request email address from users under the Additional "
4284
+ #~| "permissions section and click Save."
4285
+ #~ msgid ""
4286
+ #~ "Tick the <b>Request email address from users</b> under the Additional "
4287
+ #~ "permissions section and click <b>Save</b>."
4288
+ #~ msgstr ""
4289
+ #~ "Vink het e-mailadres voor het aanvragen van gebruikers aan in het de "
4290
+ #~ "sectie Extra rechten en klik op Opslaan."
4291
+
4292
+ #, fuzzy
4293
+ #~| msgid ""
4294
+ #~| "Go to the Keys and tokens tab and find the API key and API secret key"
4295
+ #~ msgid ""
4296
+ #~ "Go to the <b>Keys and tokens</b> tab and find the <b>API key</b> and "
4297
+ #~ "<b>API secret key</b>"
4298
+ #~ msgstr ""
4299
+ #~ "Ga naar het tabblad Sleutels en tokens en zoek de API-sleutel en geheime "
4300
+ #~ "API-sleutel"
4301
+
4302
+ #, fuzzy
4303
+ #~| msgid "Click on the \"Add a New App\" button"
4304
+ #~ msgid "Click on the \"<b>Add a New App\" button</b>"
4305
+ #~ msgstr "Klik op de knop \"Een nieuwe app toevoegen\""
4306
+
4307
  #, fuzzy
4308
  #~| msgid "Enter your domain name to the App Domains"
4309
  #~ msgid "Enter your domain name to the \"App Domains\" field."
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: ss3\n"
4
- "POT-Creation-Date: 2020-08-25 13:38+0200\n"
5
- "PO-Revision-Date: 2020-08-25 13:38+0200\n"
6
  "Last-Translator: \n"
7
  "Language-Team: renato@modernstuff.com.br\n"
8
  "Language: pt_BR\n"
@@ -137,34 +137,34 @@ msgstr ""
137
  msgid "User"
138
  msgstr "Usuário"
139
 
140
- #: nextend-facebook-connect/admin/admin.php:203
141
  #, php-format
142
  msgid "%s needs json_decode function."
143
  msgstr "%s precisa da função json_decode."
144
 
145
- #: nextend-facebook-connect/admin/admin.php:203
146
  msgid "Please contact your server administrator and ask for solution!"
147
  msgstr ""
148
  "Entre em contato com o seu administrador do servidor e peça uma solução!"
149
 
150
- #: nextend-facebook-connect/admin/admin.php:235
151
- #: nextend-facebook-connect/admin/admin.php:265
152
  msgid "Settings saved."
153
  msgstr "Configurações salvas."
154
 
155
- #: nextend-facebook-connect/admin/admin.php:244
156
  #, fuzzy
157
  #| msgid "The authorization was successful"
158
  msgid "The activation was successful"
159
  msgstr "A autorização foi bem sucedida"
160
 
161
- #: nextend-facebook-connect/admin/admin.php:255
162
  #, fuzzy
163
  #| msgid "Deauthorize completed."
164
  msgid "Deactivate completed."
165
  msgstr "Desautorização concluída."
166
 
167
- #: nextend-facebook-connect/admin/admin.php:433
168
  #: nextend-facebook-connect/admin/templates-provider/menu.php:15
169
  #: nextend-facebook-connect/admin/templates/providers.php:89
170
  #: nextend-facebook-connect/admin/templates/providers.php:101
@@ -172,9 +172,9 @@ msgstr "Desautorização concluída."
172
  msgid "Settings"
173
  msgstr "Configurações"
174
 
175
- #: nextend-facebook-connect/admin/admin.php:516
176
- #: nextend-facebook-connect/includes/oauth2.php:141
177
- #: nextend-facebook-connect/includes/oauth2.php:286
178
  #: nextend-facebook-connect/providers/facebook/facebook-client.php:84
179
  #: nextend-facebook-connect/providers/twitter/twitter-client.php:165
180
  #: nextend-social-login-pro/providers/apple/apple-client.php:87
@@ -183,7 +183,7 @@ msgstr "Configurações"
183
  msgid "Unexpected response: %s"
184
  msgstr "Resposta inesperada: %s"
185
 
186
- #: nextend-facebook-connect/admin/admin.php:577
187
  #: nextend-facebook-connect/admin/templates/fix-redirect-uri.php:21
188
  #, php-format
189
  msgid ""
@@ -193,16 +193,16 @@ msgstr ""
193
  "%s detectou que sua url de login mudou. Você deve atualizar as URIs de "
194
  "redirecionamento do Oauth nas aplicações sociais relacionados."
195
 
196
- #: nextend-facebook-connect/admin/admin.php:578
197
- #: nextend-social-login-pro/providers/apple/apple.php:308
198
  msgid "Fix Error"
199
  msgstr "Corrigir erro"
200
 
201
- #: nextend-facebook-connect/admin/admin.php:578
202
  msgid "Oauth Redirect URI"
203
  msgstr "URI de Redirecionamento do OAuth"
204
 
205
- #: nextend-facebook-connect/admin/admin.php:595
206
  #, php-format
207
  msgid ""
208
  "%1$s detected that %2$s installed on your site. You need the Pro Addon to "
@@ -211,15 +211,15 @@ msgstr ""
211
  "%1$s detectado que %2$s instalou em seu site. Você precisa Addon Pro para "
212
  "mostrar botões de Login Social no formulário de login %2$s!"
213
 
214
- #: nextend-facebook-connect/admin/admin.php:596
215
  msgid "Dismiss and check Pro Addon"
216
  msgstr "Dispensar e verificar Addon Pro"
217
 
218
- #: nextend-facebook-connect/admin/admin.php:596
219
  msgid "Dismiss"
220
  msgstr "Dispensar"
221
 
222
- #: nextend-facebook-connect/admin/admin.php:602
223
  #, php-format
224
  msgid ""
225
  "%1$s detected that %2$s installed on your site. You must set \"<b>Page for "
@@ -230,17 +230,17 @@ msgstr ""
230
  "página para fluxo de registro</b>\" e \"<b>página do proxy uri do "
231
  "redirecionamento OAuth</b>\" em %1$s para funcionar corretamente."
232
 
233
- #: nextend-facebook-connect/admin/admin.php:603
234
  msgid "Fix now"
235
  msgstr "Corrigir erro"
236
 
237
- #: nextend-facebook-connect/admin/admin.php:627
238
  #, fuzzy
239
  #| msgid "Activate Pro Addon"
240
  msgid "Activate your Pro Addon"
241
  msgstr "Ativar Addon Pro"
242
 
243
- #: nextend-facebook-connect/admin/admin.php:628
244
  #, fuzzy
245
  #| msgid ""
246
  #| "To be able to use the Pro features, you need to authorize Nextend Social "
@@ -255,20 +255,20 @@ msgstr ""
255
  "Pro do Nextend Social Connect. Você pode fazer isso clicando no botão "
256
  "autorizar abaixo e então selecione a compra relacionada."
257
 
258
- #: nextend-facebook-connect/admin/admin.php:633
259
- #: nextend-social-login-pro/nextend-social-login-pro.php:94
260
  msgid "Activate"
261
  msgstr "Ativar"
262
 
263
- #: nextend-facebook-connect/admin/admin.php:731
264
  msgid "License key"
265
  msgstr "Chave de licença"
266
 
267
- #: nextend-facebook-connect/admin/admin.php:754
268
  msgid "OAuth proxy page"
269
  msgstr "Página do proxy OAuth"
270
 
271
- #: nextend-facebook-connect/admin/admin.php:757
272
  msgid "Register flow page"
273
  msgstr "Registrar página de fluxo"
274
 
@@ -277,47 +277,54 @@ msgstr "Registrar página de fluxo"
277
  msgid "You have logged in successfully."
278
  msgstr "Você entrou com sucesso."
279
 
280
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:79
281
  msgid "Login label"
282
  msgstr "Rótulo de Login"
283
 
284
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:84
285
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:95
286
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:106
287
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:135
288
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:165
 
289
  #: nextend-facebook-connect/admin/templates/settings/privacy.php:53
290
  msgid "Reset to default"
291
  msgstr "Redefinir para o padrão"
292
 
293
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:89
 
 
 
 
 
 
294
  msgid "Link label"
295
  msgstr "Rótulo de Vincular"
296
 
297
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:101
298
  msgid "Unlink label"
299
  msgstr "Rótulo de Desvincular"
300
 
301
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:112
302
  msgid "Default button"
303
  msgstr "Botão padrão"
304
 
305
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:128
306
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:158
307
  msgid "Use custom button"
308
  msgstr "Usar botão personalizado"
309
 
310
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:135
311
  #, php-format
312
  msgid "Use the %s in your custom button's code to make the label show up."
313
  msgstr ""
314
  "Usar o %s em seu código de botão personalizado para fazer o rótulo aparecer."
315
 
316
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:143
317
  msgid "Icon button"
318
  msgstr "Ícone do botão"
319
 
320
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:174
321
  #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:140
322
  #: nextend-facebook-connect/admin/templates-provider/sync-data.php:104
323
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:170
@@ -330,8 +337,8 @@ msgstr "Ícone do botão"
330
  #: nextend-facebook-connect/admin/templates/settings/privacy.php:109
331
  #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:186
332
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:167
333
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:326
334
- #: nextend-facebook-connect/providers/facebook/admin/settings.php:57
335
  #: nextend-facebook-connect/providers/google/admin/settings.php:62
336
  #: nextend-facebook-connect/providers/twitter/admin/settings.php:48
337
  #: nextend-social-login-pro/providers/amazon/admin/settings.php:47
@@ -456,7 +463,8 @@ msgstr "Conectar automaticamente a conta existente durante o registro"
456
  #: nextend-facebook-connect/admin/templates/settings/general.php:213
457
  #: nextend-facebook-connect/admin/templates/settings/general.php:228
458
  #: nextend-facebook-connect/admin/templates/settings/general.php:246
459
- #: nextend-facebook-connect/includes/provider-admin.php:217
 
460
  msgid "Disabled"
461
  msgstr "Desativado"
462
 
@@ -780,7 +788,8 @@ msgstr "Não Verificado"
780
  #: nextend-facebook-connect/admin/templates/settings/general.php:216
781
  #: nextend-facebook-connect/admin/templates/settings/general.php:231
782
  #: nextend-facebook-connect/admin/templates/settings/general.php:249
783
- #: nextend-facebook-connect/includes/provider-admin.php:220
 
784
  #: nextend-facebook-connect/providers/google/admin/settings.php:53
785
  #: nextend-social-login-pro/providers/paypal/admin/settings.php:51
786
  msgid "Enabled"
@@ -791,17 +800,17 @@ msgid "Upgrade Now"
791
  msgstr "Atualizar agora"
792
 
793
  #: nextend-facebook-connect/admin/templates/providers.php:77
794
- #: nextend-facebook-connect/includes/provider-admin.php:204
795
  msgid "Verify Settings"
796
  msgstr "Verificar Configurações"
797
 
798
  #: nextend-facebook-connect/admin/templates/providers.php:85
799
- #: nextend-facebook-connect/includes/provider-admin.php:249
800
  msgid "Enable"
801
  msgstr "Habilitar"
802
 
803
  #: nextend-facebook-connect/admin/templates/providers.php:97
804
- #: nextend-facebook-connect/includes/provider-admin.php:257
805
  msgid "Disable"
806
  msgstr "Desativar"
807
 
@@ -1378,6 +1387,20 @@ msgstr "Membros"
1378
  msgid "Allow registration with Social login."
1379
  msgstr "Permitir registro com Social login"
1380
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1381
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:29
1382
  #: nextend-facebook-connect/admin/templates/settings/memberpress.php:33
1383
  #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:33
@@ -1466,7 +1489,7 @@ msgid "Link buttons after account details"
1466
  msgstr "Botão Vincular após detalhes da conta"
1467
 
1468
  #: nextend-facebook-connect/admin/templates/settings/privacy.php:6
1469
- #: nextend-facebook-connect/nextend-social-login.php:143
1470
  msgid ""
1471
  "By clicking Register, you accept our <a href=\"#privacy_policy_url\" target="
1472
  "\"_blank\">Privacy Policy</a>"
@@ -1496,12 +1519,12 @@ msgid "When not enabled, email will be empty."
1496
  msgstr "Quando não estiver ativado, o e-mail estará vazio."
1497
 
1498
  #: nextend-facebook-connect/admin/templates/settings/privacy.php:91
1499
- #: nextend-facebook-connect/includes/avatar.php:59
1500
  msgid "Avatar"
1501
  msgstr "Avatar"
1502
 
1503
  #: nextend-facebook-connect/admin/templates/settings/privacy.php:102
1504
- #: nextend-facebook-connect/includes/provider.php:1082
1505
  msgid "Access token"
1506
  msgstr "Token de acesso"
1507
 
@@ -1575,6 +1598,31 @@ msgstr "Botão Conectar antes de detalhes da conta"
1575
  msgid "Link buttons on"
1576
  msgstr "Link de botões em"
1577
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1578
  #: nextend-facebook-connect/admin/templates/test-connection.php:42
1579
  #, php-format
1580
  msgid "Network connection successful: %1$s"
@@ -1593,18 +1641,17 @@ msgstr ""
1593
  "Entre em contato com o seu provedor de hospedagem para resolver o problema "
1594
  "de rede entre o seu servidor e o provedor."
1595
 
1596
- #: nextend-facebook-connect/includes/avatar.php:60
1597
  msgid "Manage Avatar"
1598
  msgstr "Gerenciar avatar"
1599
 
1600
- #: nextend-facebook-connect/includes/avatar.php:61
1601
  #, php-format
1602
  msgid "Avatar <span class=\"count\">(%s)</span>"
1603
  msgid_plural "Avatar <span class=\"count\">(%s)</span>"
1604
  msgstr[0] "Avatar <span class=\"count\">(%s)</span>"
1605
  msgstr[1] "Avatar <span class=\"count\">(%s)</span>"
1606
 
1607
- #. translators: Login screen title. 1: Login screen name, 2: Network or site name
1608
  #: nextend-facebook-connect/includes/compat-wp-login.php:63
1609
  #, php-format
1610
  msgid "%1$s &lsaquo; %2$s &#8212; WordPress"
@@ -1618,18 +1665,17 @@ msgstr "https://wordpress.org/"
1618
  msgid "Powered by WordPress"
1619
  msgstr "Alimentado por WordPress"
1620
 
1621
- #. translators: %s: site title
1622
  #: nextend-facebook-connect/includes/compat-wp-login.php:284
1623
  #, php-format
1624
  msgctxt "site"
1625
  msgid "&larr; Back to %s"
1626
  msgstr "&larr; voltar para %s"
1627
 
1628
- #: nextend-facebook-connect/includes/provider-admin.php:198
1629
  msgid "Your configuration needs to be verified"
1630
  msgstr "Sua configuração precisa ser verificada"
1631
 
1632
- #: nextend-facebook-connect/includes/provider-admin.php:199
1633
  msgid ""
1634
  "Before you can start letting your users register with your app it needs to "
1635
  "be tested. This test makes sure that no users will have troubles with the "
@@ -1643,15 +1689,15 @@ msgstr ""
1643
  "erro no popup verifique os ID e segredo ou mesmo o app. Caso contrário suas "
1644
  "configurações estão funcionando."
1645
 
1646
- #: nextend-facebook-connect/includes/provider-admin.php:205
1647
  msgid "Please save your changes to verify settings."
1648
  msgstr "Por favor salve suas alterações para verificar suas configurações."
1649
 
1650
- #: nextend-facebook-connect/includes/provider-admin.php:213
1651
  msgid "Works Fine"
1652
  msgstr "Funcionando bem"
1653
 
1654
- #: nextend-facebook-connect/includes/provider-admin.php:227
1655
  #, php-format
1656
  msgid ""
1657
  "This provider is currently disabled, which means that users can’t register "
@@ -1660,7 +1706,7 @@ msgstr ""
1660
  "Este provedor está desativado no momento, o que significa que os usuários "
1661
  "não podem registar-se ou iniciar sessão através de sua conta do %s."
1662
 
1663
- #: nextend-facebook-connect/includes/provider-admin.php:230
1664
  #, php-format
1665
  msgid ""
1666
  "This provider works fine, but you can test it again. If you don’t want to "
@@ -1670,7 +1716,7 @@ msgstr ""
1670
  "não quer deixar mais usuários se registrarem e se logarem com %s você pode "
1671
  "desativá-lo."
1672
 
1673
- #: nextend-facebook-connect/includes/provider-admin.php:233
1674
  #, php-format
1675
  msgid ""
1676
  "This provider is currently enabled, which means that users can register or "
@@ -1679,47 +1725,48 @@ msgstr ""
1679
  "Este provedor está ativado no momento, o que significa que os usuários podem "
1680
  "registar-se ou iniciar sessão através de sua conta do %s."
1681
 
1682
- #: nextend-facebook-connect/includes/provider-admin.php:241
1683
  msgid "Verify Settings Again"
1684
  msgstr "Verificar Configurações De Novo"
1685
 
1686
- #: nextend-facebook-connect/includes/provider-admin.php:242
1687
  msgid "Please save your changes before verifying settings."
1688
  msgstr "Salve suas alterações antes de verificar as configurações."
1689
 
1690
- #: nextend-facebook-connect/includes/provider.php:357
1691
- #: nextend-facebook-connect/includes/provider.php:705
1692
- #: nextend-facebook-connect/includes/provider.php:710
1693
  msgid "Authentication successful"
1694
  msgstr "Autenticação bem sucedida"
1695
 
1696
- #: nextend-facebook-connect/includes/provider.php:647
1697
- #: nextend-facebook-connect/includes/user.php:126
 
1698
  msgid "Authentication error"
1699
  msgstr "Erro de autenticação"
1700
 
1701
- #: nextend-facebook-connect/includes/provider.php:662
1702
  msgid "Unlink successful."
1703
  msgstr "Desvinculação bem sucedida."
1704
 
1705
- #: nextend-facebook-connect/includes/provider.php:664
1706
  msgid "Unlink is not allowed!"
1707
  msgstr ""
1708
 
1709
- #: nextend-facebook-connect/includes/provider.php:868
1710
- #: nextend-facebook-connect/includes/provider.php:875
1711
  msgid "The test was successful"
1712
  msgstr "O teste foi bem sucedido"
1713
 
1714
- #: nextend-facebook-connect/includes/provider.php:921
1715
  msgid "Authentication failed"
1716
  msgstr "Falha na autenticação"
1717
 
1718
- #: nextend-facebook-connect/includes/provider.php:1074
1719
  msgid "Identifier"
1720
  msgstr "Identificador"
1721
 
1722
- #: nextend-facebook-connect/includes/provider.php:1090
1723
  msgid "Profile picture"
1724
  msgstr "Foto do perfil"
1725
 
@@ -1733,20 +1780,24 @@ msgstr ""
1733
  "logar com o %2$s facilmente."
1734
 
1735
  #: nextend-facebook-connect/includes/user.php:77
1736
- #, php-format
 
 
 
1737
  msgid ""
1738
  "You have already linked a(n) %s account. Please unlink the current and then "
1739
- "you can link other %s account."
1740
  msgstr ""
1741
  "Você já vinculou uma conta %s. Por favor desvincule a atual e então você "
1742
  "poderá vincular outra conta %s."
1743
 
1744
  #: nextend-facebook-connect/includes/user.php:82
1745
- #, php-format
1746
- msgid "This %s account is already linked to other user."
 
1747
  msgstr "A conta %s já está vinculada a outro usuário."
1748
 
1749
- #: nextend-facebook-connect/includes/user.php:122
1750
  msgid "User registration is currently not allowed."
1751
  msgstr ""
1752
 
@@ -1754,14 +1805,12 @@ msgstr ""
1754
  msgid "Register For This Site!"
1755
  msgstr "Registrar Para Este Site!"
1756
 
1757
- #. translators: %2$s: PHP version
1758
- #: nextend-facebook-connect/nextend-facebook-connect.php:34
1759
  #, php-format
1760
  msgid "%1$s requires PHP version %2$s+, plugin is currently NOT ACTIVE."
1761
  msgstr "%1$s requer a versão do PHP %2$s+, O plugin atualmente não está ativo."
1762
 
1763
- #. translators: %2$s: WordPress version
1764
- #: nextend-facebook-connect/nextend-facebook-connect.php:41
1765
  #, php-format
1766
  msgid ""
1767
  "%1$s requires WordPress version %2$s+. Because you are using an earlier "
@@ -1781,12 +1830,12 @@ msgstr "Por favor, atualize %1$s para versão %2$s ou mais recente."
1781
  msgid "Update now!"
1782
  msgstr "Atualizar agora!"
1783
 
1784
- #: nextend-facebook-connect/nextend-social-login.php:749
1785
- #: nextend-facebook-connect/nextend-social-login.php:1125
1786
  msgid "Social Login"
1787
  msgstr "Login Social"
1788
 
1789
- #: nextend-facebook-connect/nextend-social-login.php:1106
1790
  msgid "Social Accounts"
1791
  msgstr "Redes Sociais"
1792
 
@@ -1855,7 +1904,7 @@ msgid "In the left sidebar, click on \"<b>Facebook Login > Settings</b>\""
1855
  msgstr "Na barra lateral esquerda, clique em \"Facebook Login/Settings\""
1856
 
1857
  #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:12
1858
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:34
1859
  #, fuzzy, php-format
1860
  #| msgid ""
1861
  #| "Add the following URL to the \"Valid OAuth redirect URIs\" field: <b>%s</"
@@ -1953,9 +2002,11 @@ msgstr "Navegar para %s"
1953
 
1954
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:26
1955
  #, fuzzy
1956
- #| msgid "Click on the \"Add a New App\" button"
1957
- msgid "Click on the \"<b>Add a New App\" button</b>"
1958
- msgstr "Clique no botão \"Adicionar um Novo App\""
 
 
1959
 
1960
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:27
1961
  msgid ""
@@ -1967,18 +2018,24 @@ msgstr ""
1967
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:28
1968
  #, php-format
1969
  msgid ""
1970
- "Fill \"<b>Display Name</b>\" and \"<b>Contact Email</b>\". The specified "
1971
- "\"Display Name\" will appear on your %s!"
1972
  msgstr ""
1973
 
1974
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:29
 
 
 
 
 
 
1975
  #, fuzzy
1976
  #| msgid "Click the \"Create App\" button."
1977
  msgid ""
1978
  "Click the \"<b>Create App ID</b>\" button and complete the Security Check."
1979
  msgstr "Clique no botão \"Criar Novo App\"."
1980
 
1981
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:30
1982
  #, fuzzy, php-format
1983
  #| msgid "Fill the \"App Name\" field and click \"Create App\" button."
1984
  msgid ""
@@ -1988,7 +2045,7 @@ msgstr ""
1988
  "Preencha o campo \"nome do aplicativo\" e clique no botão \"criar aplicativo"
1989
  "\"."
1990
 
1991
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:31
1992
  #, fuzzy, php-format
1993
  #| msgid "Add the following URL to the \"Redirect URLs\" field <b>%s</b> "
1994
  msgid ""
@@ -1996,33 +2053,33 @@ msgid ""
1996
  "field: <b>%s</b>"
1997
  msgstr "Adicione a seguinte URL ao campo \"Redirecionar URLs\"<b>%s</b> "
1998
 
1999
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:32
2000
  #, fuzzy
2001
  #| msgid "Click on \"Save Changes\""
2002
  msgid "Press “<b>Save</b>”"
2003
  msgstr "Clique em \"Salvar Alterações\""
2004
 
2005
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:33
2006
  #, php-format
2007
  msgid ""
2008
  "Click on the “<b>%1$s</b>” option what you find on the left side, under “<b>"
2009
  "%2$s</b> - <b>%3$s</b>”"
2010
  msgstr ""
2011
 
2012
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:35
2013
  #, fuzzy
2014
  #| msgid "Click on \"Save Changes\""
2015
  msgid "Click on “<b>Save Changes</b>”"
2016
  msgstr "Clique em \"Salvar Alterações\""
2017
 
2018
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:36
2019
  #, php-format
2020
  msgid ""
2021
  "On the top left side, click on the “<b>%1$s</b>” menu point, then click “<b>"
2022
  "%2$s</b>”"
2023
  msgstr ""
2024
 
2025
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:37
2026
  #, fuzzy, php-format
2027
  #| msgid "Enter your domain name to the App Domains"
2028
  msgid ""
@@ -2030,7 +2087,7 @@ msgid ""
2030
  "b>"
2031
  msgstr "Digite seu nome de domínio para os Domínios do App"
2032
 
2033
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:38
2034
  #, fuzzy
2035
  #| msgid ""
2036
  #| "Fill up the \"Privacy Policy URL\". Provide a publicly available and "
@@ -2045,14 +2102,41 @@ msgstr ""
2045
  "privacidade publicamente disponível e facilmente acessível que explique "
2046
  "quais dados você está coletando e como você utilizará estes dados."
2047
 
2048
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:39
2049
  msgid ""
2050
- "Select a “<b>Category</b>”, an “<b>App Icon</b>” and pick the “<b>Business "
2051
- "Use</b>” option that describes your the App best, then press \"<b>Save "
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2052
  "Changes</b>\""
2053
  msgstr ""
2054
 
2055
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:40
2056
  #, fuzzy
2057
  #| msgid ""
2058
  #| "Your application is currently private, which means that only you can log "
@@ -2067,7 +2151,7 @@ msgstr ""
2067
  "logar com ela. No menu lateral esquerdo escolha “Revisar App” e torne seu "
2068
  "App público"
2069
 
2070
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:41
2071
  #, fuzzy
2072
  #| msgid ""
2073
  #| "Here you can see your \"APP ID\" and you can see your \"App secret\" if "
@@ -2081,9 +2165,20 @@ msgstr ""
2081
  "Aqui voc6e pode ver seu “ID do APP” e seu “Segredo do App” se você clicar no "
2082
  "botão “Mostrar”. Isto será necessário nas configurações do plugin."
2083
 
2084
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:45
 
 
 
 
 
 
 
 
 
 
 
2085
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:40
2086
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:32
2087
  #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:39
2088
  #: nextend-social-login-pro/providers/apple/admin/getting-started.php:122
2089
  #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:30
@@ -2155,39 +2250,56 @@ msgstr ""
2155
  msgid "App Secret"
2156
  msgstr "Chave Secreta do App"
2157
 
2158
- #: nextend-facebook-connect/providers/facebook/facebook.php:84
 
 
 
 
 
 
 
 
 
 
 
2159
  msgid "Continue with <b>Facebook</b>"
2160
  msgstr "Continuar com <b>Facebook</b>"
2161
 
2162
- #: nextend-facebook-connect/providers/facebook/facebook.php:85
 
 
 
 
 
 
2163
  msgid "Link account with <b>Facebook</b>"
2164
  msgstr "Vincular conta com <b>Facebook</b>"
2165
 
2166
- #: nextend-facebook-connect/providers/facebook/facebook.php:86
2167
  msgid "Unlink account from <b>Facebook</b>"
2168
  msgstr "Desvincular conta do <b>Facebook</b>"
2169
 
2170
- #: nextend-facebook-connect/providers/facebook/facebook.php:186
2171
- #: nextend-facebook-connect/providers/google/google.php:174
2172
- #: nextend-facebook-connect/providers/twitter/twitter.php:95
2173
- #: nextend-social-login-pro/providers/amazon/amazon.php:65
2174
- #: nextend-social-login-pro/providers/apple/apple.php:129
2175
- #: nextend-social-login-pro/providers/apple/apple.php:136
2176
- #: nextend-social-login-pro/providers/disqus/disqus.php:112
2177
- #: nextend-social-login-pro/providers/github/github.php:150
2178
- #: nextend-social-login-pro/providers/linkedin/linkedin.php:63
2179
- #: nextend-social-login-pro/providers/paypal/paypal.php:90
2180
- #: nextend-social-login-pro/providers/vk/vk.php:61
2181
- #: nextend-social-login-pro/providers/wordpress/wordpress.php:99
2182
- #: nextend-social-login-pro/providers/yahoo/yahoo.php:90
2183
  #, php-format
2184
  msgid ""
2185
  "The %1$s entered did not appear to be a valid. Please enter a valid %2$s."
2186
  msgstr ""
2187
  "O %1$s inserido não parece ser válido. Por favor insira um %2$s válido."
2188
 
2189
- #: nextend-facebook-connect/providers/facebook/facebook.php:307
2190
- #: nextend-social-login-pro/providers/paypal/paypal.php:170
2191
  #, php-format
2192
  msgid "Required scope: %1$s"
2193
  msgstr "Escopo requerido: %1$s"
@@ -2376,19 +2488,25 @@ msgid ""
2376
  "Disable, when you don't want to see the account select prompt on each login."
2377
  msgstr ""
2378
 
2379
- #: nextend-facebook-connect/providers/google/google.php:106
2380
  msgid "Continue with <b>Google</b>"
2381
  msgstr "Continuar com <b>Google</b>"
2382
 
2383
- #: nextend-facebook-connect/providers/google/google.php:107
 
 
 
 
 
 
2384
  msgid "Link account with <b>Google</b>"
2385
  msgstr "Vincular conta com <b>Google</b>"
2386
 
2387
- #: nextend-facebook-connect/providers/google/google.php:108
2388
  msgid "Unlink account from <b>Google</b>"
2389
  msgstr "Desvincular conta do <b>Google</b>"
2390
 
2391
- #: nextend-facebook-connect/providers/google/google.php:301
2392
  #, php-format
2393
  msgid "Required API: %1$s"
2394
  msgstr "API obrigatória: %1$s"
@@ -2396,27 +2514,39 @@ msgstr "API obrigatória: %1$s"
2396
  #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:10
2397
  #, fuzzy
2398
  #| msgid "Name your project and then click on the Create button again"
2399
- msgid "Find your App and click on the \"<b>Details</b>\" button"
 
 
2400
  msgstr "Nomeie o projeto e, em seguida, clique no botão Criar"
2401
 
2402
  #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:11
2403
- msgid ""
2404
- "The <b>Edit</b> button can be found on the App details tab. Click on it and "
2405
- "select \"<b>Edit details</b>\""
2406
- msgstr ""
 
2407
 
2408
  #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:12
2409
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:22
2410
  #, fuzzy, php-format
2411
  #| msgid "Add the following URL to the \"Callback URL\" field: <b>%s</b>"
2412
  msgid "Add the following URL to the \"<b>Callback URLs</b>\" field: <b>%s</b>"
2413
  msgstr "Adicione a URL seguinte no campo “URL de Retorno”: <b>%s</b>"
2414
 
2415
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:17
2416
- #, fuzzy, php-format
2417
- #| msgid "Log in with your %s credentials if you are not logged in"
2418
- msgid "Log in with your %s credentials if you are not logged in yet"
2419
- msgstr "Logue com suas credenciais %s se você não estiver logado"
 
 
 
 
 
 
 
 
 
 
2420
 
2421
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:18
2422
  msgid ""
@@ -2439,63 +2569,76 @@ msgstr ""
2439
  "se você ainda não estiver lá!"
2440
 
2441
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:20
2442
- #, fuzzy, php-format
2443
- #| msgid ""
2444
- #| "Fill the App name, Application description fields. Then enter your site's "
2445
- #| "URL to the Website field: <b>%s</b>"
 
 
2446
  msgid ""
2447
- "Fill the <b>App name</b>, <b>Application description</b> fields. Then enter "
2448
- "your site's URL to the <b>Website URL</b> field: <b>%s</b>"
2449
  msgstr ""
2450
- "Preencha os campos de nome e descrição. Então entre com a URL de seu site no "
2451
- "campo Website: <b>%s</b>"
2452
 
2453
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:21
2454
- #, fuzzy
2455
- #| msgid "Tick the checkbox next to Enable Sign in with Twitter!"
2456
- msgid "Tick the checkbox next to <b>Enable Sign in with Twitter</b>!"
2457
- msgstr "Marque a caixa de seleção ao lado para ativar Entrada com o Twitter!"
2458
 
2459
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:23
2460
- #, fuzzy
2461
- #| msgid "Full the \"Tell us how this app will be used\" field! "
2462
  msgid ""
2463
- "Fill the “<b>Terms of Service URL</b>\", \"<b>Privacy policy URL</b>\" and "
2464
- "\"<b>Tell us how this app will be used</b>\" fields!"
2465
- msgstr "Preencha o campo \"Diga-nos como este aplicativo será usado\"!\"."
 
2466
 
2467
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:24
2468
- #, fuzzy
2469
- #| msgid "Click the Create button."
2470
- msgid "Click the <b>Create</b> button."
2471
- msgstr "Clique no botão Criar."
2472
 
2473
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:25
2474
- #, fuzzy
2475
- #| msgid "Read the Developer Terms and click the Create button again!"
2476
- msgid "Read the Developer Terms and click the <b>Create</b> button again!"
2477
- msgstr "Leia os termos do desenvolvedor e clique no botão criar novamente!"
2478
 
2479
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:26
2480
- msgid "Select the <b>Permissions</b> tab and click <b>Edit</b>."
2481
  msgstr ""
2482
 
2483
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:27
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2484
  msgid ""
2485
- "Tick the <b>Request email address from users</b> under the Additional "
2486
- "permissions section and click <b>Save</b>."
 
 
2487
  msgstr ""
2488
 
2489
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:28
2490
  #, fuzzy
2491
- #| msgid ""
2492
- #| "Go to the Keys and tokens tab and find the API key and API secret key"
2493
- msgid ""
2494
- "Go to the <b>Keys and tokens</b> tab and find the <b>API key</b> and <b>API "
2495
- "secret key</b>"
 
 
2496
  msgstr ""
2497
- "Vá para a aba chaves e tokens e encontre a chave da API e a chave secreta da "
2498
- "API"
2499
 
2500
  #: nextend-facebook-connect/providers/twitter/admin/settings.php:27
2501
  #: nextend-social-login-pro/providers/disqus/admin/settings.php:26
@@ -2514,15 +2657,21 @@ msgstr "Tamanho da imagem do perfil"
2514
  msgid "Original"
2515
  msgstr "Original"
2516
 
2517
- #: nextend-facebook-connect/providers/twitter/twitter.php:69
2518
  msgid "Continue with <b>Twitter</b>"
2519
  msgstr "Continuar com <b>Twitter</b>"
2520
 
2521
- #: nextend-facebook-connect/providers/twitter/twitter.php:70
 
 
 
 
 
 
2522
  msgid "Link account with <b>Twitter</b>"
2523
  msgstr "Vincular conta com <b>Twitter</b>"
2524
 
2525
- #: nextend-facebook-connect/providers/twitter/twitter.php:71
2526
  msgid "Unlink account from <b>Twitter</b>"
2527
  msgstr "Desvincular conta do <b>Twitter</b>"
2528
 
@@ -2646,20 +2795,20 @@ msgstr ""
2646
  "Este e-mail já está registrado, faça o login na sua conta para fazer um link "
2647
  "com %1$s."
2648
 
2649
- #: nextend-social-login-pro/nextend-social-login-pro.php:88
2650
  #, php-format
2651
  msgid "Please install and activate %1$s to use the %2$s"
2652
  msgstr "Instale e ative %1$s para usar o %2$s"
2653
 
2654
- #: nextend-social-login-pro/nextend-social-login-pro.php:102
2655
  msgid "Network Activate"
2656
  msgstr "Ativar rede"
2657
 
2658
- #: nextend-social-login-pro/nextend-social-login-pro.php:114
2659
  msgid "Install now!"
2660
  msgstr "Instalar agora!"
2661
 
2662
- #: nextend-social-login-pro/nextend-social-login-pro.php:787
2663
  #, fuzzy
2664
  #| msgid "Providers"
2665
  msgid "Social Providers"
@@ -2672,7 +2821,7 @@ msgid ""
2672
  "latest %2$s version!"
2673
  msgstr ""
2674
 
2675
- #: nextend-social-login-pro/provider-extensions/google.php:176
2676
  #, php-format
2677
  msgid ""
2678
  "Most of these information can only be retrieved, when the field is marked as "
@@ -2735,21 +2884,6 @@ msgstr ""
2735
  "\"Configurações\" e configure os \"%2$s\" e \"%3$s\" de acordo com seu "
2736
  "aplicativo %1$s."
2737
 
2738
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:25
2739
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:38
2740
- #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:9
2741
- #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:16
2742
- #: nextend-social-login-pro/providers/github/admin/getting-started.php:16
2743
- #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:9
2744
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:17
2745
- #: nextend-social-login-pro/providers/vk/admin/getting-started.php:16
2746
- #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:9
2747
- #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:16
2748
- #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:17
2749
- #, php-format
2750
- msgid "Log in with your %s credentials if you are not logged in."
2751
- msgstr "Faça o login com o seu %s credenciais se você não estiver logado."
2752
-
2753
  #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:27
2754
  #, fuzzy
2755
  #| msgid ""
@@ -2813,15 +2947,21 @@ msgid ""
2813
  msgstr ""
2814
  "Encontre o \"Client ID\" e \"Client Secret\" necessários no meio da página."
2815
 
2816
- #: nextend-social-login-pro/providers/amazon/amazon.php:39
2817
  msgid "Continue with <b>Amazon</b>"
2818
  msgstr "Continuar com <b>Amazon</b>"
2819
 
2820
- #: nextend-social-login-pro/providers/amazon/amazon.php:40
 
 
 
 
 
 
2821
  msgid "Link account with <b>Amazon</b>"
2822
  msgstr "Vincular conta com <b>Amazon</b>"
2823
 
2824
- #: nextend-social-login-pro/providers/amazon/amazon.php:41
2825
  msgid "Unlink account from <b>Amazon</b>"
2826
  msgstr "Desvincular conta do <b>Amazon</b>"
2827
 
@@ -3160,54 +3300,53 @@ msgstr "Identificador"
3160
  msgid "Generate Token"
3161
  msgstr ""
3162
 
3163
- #: nextend-social-login-pro/providers/apple/apple.php:82
3164
- #, fuzzy
3165
- #| msgid "Continue with <b>Google</b>"
3166
  msgid "Continue with <b>Apple</b>"
3167
- msgstr "Continuar com <b>Google</b>"
3168
 
3169
- #: nextend-social-login-pro/providers/apple/apple.php:83
3170
  #, fuzzy
3171
- #| msgid "Link account with <b>Google</b>"
 
 
 
3172
  msgid "Link account with <b>Apple</b>"
3173
- msgstr "Vincular conta com <b>Google</b>"
3174
 
3175
- #: nextend-social-login-pro/providers/apple/apple.php:84
3176
- #, fuzzy
3177
- #| msgid "Unlink account from <b>Google</b>"
3178
  msgid "Unlink account from <b>Apple</b>"
3179
- msgstr "Desvincular conta do <b>Google</b>"
3180
 
3181
- #: nextend-social-login-pro/providers/apple/apple.php:178
3182
  #, php-format
3183
  msgid "An error occurred when storing of the expiration timestamp : %1$s"
3184
  msgstr ""
3185
 
3186
- #: nextend-social-login-pro/providers/apple/apple.php:182
3187
- #: nextend-social-login-pro/providers/apple/apple.php:280
3188
- #: nextend-social-login-pro/providers/apple/apple.php:295
3189
- #: nextend-social-login-pro/providers/apple/apple.php:339
3190
  #, fuzzy, php-format
3191
  #| msgid "Network connection failed: %1$s"
3192
  msgid "Token generation failed: %1$s"
3193
  msgstr "Falha na conexão de rede: %1$s"
3194
 
3195
- #: nextend-social-login-pro/providers/apple/apple.php:182
3196
  msgid "Please check your credentials!"
3197
  msgstr ""
3198
 
3199
- #: nextend-social-login-pro/providers/apple/apple.php:280
3200
  msgid "Private key format is not valid!"
3201
  msgstr ""
3202
 
3203
- #: nextend-social-login-pro/providers/apple/apple.php:306
3204
  #, php-format
3205
  msgid ""
3206
  "%s detected that your Apple credentials have expired. Please delete the "
3207
  "current credentials and generate new one!"
3208
  msgstr ""
3209
 
3210
- #: nextend-social-login-pro/providers/apple/apple.php:308
3211
  msgid "Apple Credentials"
3212
  msgstr ""
3213
 
@@ -3314,15 +3453,21 @@ msgstr ""
3314
  msgid "API Secret"
3315
  msgstr "Chave Secreta do App"
3316
 
3317
- #: nextend-social-login-pro/providers/disqus/disqus.php:86
3318
  msgid "Continue with <b>Disqus</b>"
3319
  msgstr "Continuar com <b>Disqus</b>"
3320
 
3321
- #: nextend-social-login-pro/providers/disqus/disqus.php:87
 
 
 
 
 
 
3322
  msgid "Link account with <b>Disqus</b>"
3323
  msgstr "Vincular conta com <b>Disqus</b>"
3324
 
3325
- #: nextend-social-login-pro/providers/disqus/disqus.php:88
3326
  msgid "Unlink account from <b>Disqus</b>"
3327
  msgstr "Desvincular conta do <b>Disqus</b>"
3328
 
@@ -3412,23 +3557,22 @@ msgid ""
3412
  "public email address set at the %1$s profile page%2$s!"
3413
  msgstr ""
3414
 
3415
- #: nextend-social-login-pro/providers/github/github.php:124
3416
- #, fuzzy
3417
- #| msgid "Continue with <b>Disqus</b>"
3418
  msgid "Continue with <b>GitHub</b>"
3419
- msgstr "Continuar com <b>Disqus</b>"
3420
 
3421
- #: nextend-social-login-pro/providers/github/github.php:125
3422
  #, fuzzy
3423
- #| msgid "Link account with <b>Disqus</b>"
 
 
 
3424
  msgid "Link account with <b>GitHub</b>"
3425
- msgstr "Vincular conta com <b>Disqus</b>"
3426
 
3427
- #: nextend-social-login-pro/providers/github/github.php:126
3428
- #, fuzzy
3429
- #| msgid "Unlink account from <b>Disqus</b>"
3430
  msgid "Unlink account from <b>GitHub</b>"
3431
- msgstr "Desvincular conta do <b>Disqus</b>"
3432
 
3433
  #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:10
3434
  msgid "Click on your App and go to the \"<b>Auth</b>\" tab."
@@ -3528,15 +3672,21 @@ msgid ""
3528
  msgstr ""
3529
  "Encontre o \"Client ID\" e \"Client Secret\" necessários no meio da página."
3530
 
3531
- #: nextend-social-login-pro/providers/linkedin/linkedin.php:37
3532
  msgid "Continue with <b>LinkedIn</b>"
3533
  msgstr "Continuar com <b>LinkedIn</b>"
3534
 
3535
- #: nextend-social-login-pro/providers/linkedin/linkedin.php:38
 
 
 
 
 
 
3536
  msgid "Link account with <b>LinkedIn</b>"
3537
  msgstr "Vincular conta com <b>LinkedIn</b>"
3538
 
3539
- #: nextend-social-login-pro/providers/linkedin/linkedin.php:39
3540
  msgid "Unlink account from <b>LinkedIn</b>"
3541
  msgstr "Desvincular conta do <b>LinkedIn</b>"
3542
 
@@ -3684,15 +3834,21 @@ msgstr "E-mail"
3684
  msgid "Disable, when you have no rights for email address."
3685
  msgstr ""
3686
 
3687
- #: nextend-social-login-pro/providers/paypal/paypal.php:64
3688
  msgid "Continue with <b>PayPal</b>"
3689
  msgstr "Continuar com <b>PayPal</b>"
3690
 
3691
- #: nextend-social-login-pro/providers/paypal/paypal.php:65
 
 
 
 
 
 
3692
  msgid "Link account with <b>PayPal</b>"
3693
  msgstr "Vincular conta com <b>PayPal</b>"
3694
 
3695
- #: nextend-social-login-pro/providers/paypal/paypal.php:66
3696
  msgid "Unlink account from <b>PayPal</b>"
3697
  msgstr "Desvincular conta do <b>PayPal</b>"
3698
 
@@ -3806,15 +3962,21 @@ msgstr ""
3806
  msgid "Secure key"
3807
  msgstr "Chave segura"
3808
 
3809
- #: nextend-social-login-pro/providers/vk/vk.php:35
3810
  msgid "Continue with <b>VK</b>"
3811
  msgstr "Continuar com <b>VK</b>"
3812
 
3813
- #: nextend-social-login-pro/providers/vk/vk.php:36
 
 
 
 
 
 
3814
  msgid "Link account with <b>VK</b>"
3815
  msgstr "Vincular conta com <b>VK</b>"
3816
 
3817
- #: nextend-social-login-pro/providers/vk/vk.php:37
3818
  msgid "Unlink account from <b>VK</b>"
3819
  msgstr "Desvincular conta do <b>VK</b>"
3820
 
@@ -3897,15 +4059,21 @@ msgstr ""
3897
  "Aqui você pode ver o seu \"ID do Cliente\" e \"Segredo do cliente\". Estes "
3898
  "serão necessários nas configurações do plugin."
3899
 
3900
- #: nextend-social-login-pro/providers/wordpress/wordpress.php:73
3901
  msgid "Continue with <b>WordPress.com</b>"
3902
  msgstr "Continuar com <b>WordPress.com</b>"
3903
 
3904
- #: nextend-social-login-pro/providers/wordpress/wordpress.php:74
 
 
 
 
 
 
3905
  msgid "Link account with <b>WordPress.com</b>"
3906
  msgstr "Vincular conta com <b>WordPress.com</b>"
3907
 
3908
- #: nextend-social-login-pro/providers/wordpress/wordpress.php:75
3909
  msgid "Unlink account from <b>WordPress.com</b>"
3910
  msgstr "Desvincular conta do <b>WordPress.com</b>"
3911
 
@@ -3970,25 +4138,24 @@ msgstr ""
3970
  "Aqui você pode ver o seu \"ID do Cliente\" e \"Segredo do cliente\". Estes "
3971
  "serão necessários nas configurações do plugin."
3972
 
3973
- #: nextend-social-login-pro/providers/yahoo/yahoo.php:64
3974
- #, fuzzy
3975
- #| msgid "Continue with <b>Facebook</b>"
3976
  msgid "Continue with <b>Yahoo</b>"
3977
- msgstr "Continuar com <b>Facebook</b>"
3978
 
3979
- #: nextend-social-login-pro/providers/yahoo/yahoo.php:65
3980
  #, fuzzy
3981
- #| msgid "Link account with <b>Facebook</b>"
 
 
 
3982
  msgid "Link account with <b>Yahoo</b>"
3983
- msgstr "Vincular conta com <b>Facebook</b>"
3984
 
3985
- #: nextend-social-login-pro/providers/yahoo/yahoo.php:66
3986
- #, fuzzy
3987
- #| msgid "Unlink account from <b>Facebook</b>"
3988
  msgid "Unlink account from <b>Yahoo</b>"
3989
- msgstr "Desvincular conta do <b>Facebook</b>"
3990
 
3991
- #: nextend-social-login-pro/providers/yahoo/yahoo.php:186
3992
  #, fuzzy, php-format
3993
  #| msgid "Required scope: %1$s"
3994
  msgid "Required permission: %1$s"
@@ -4032,6 +4199,60 @@ msgstr "OU"
4032
  msgid "Social accounts"
4033
  msgstr "Contas redes sociais"
4034
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4035
  #, fuzzy
4036
  #~| msgid "Enter your domain name to the App Domains"
4037
  #~ msgid "Enter your domain name to the \"App Domains\" field."
@@ -4400,9 +4621,6 @@ msgstr "Contas redes sociais"
4400
  #~ msgid "Connect button after login form"
4401
  #~ msgstr "Botão Conectar após o formulário de login"
4402
 
4403
- #~ msgid "WooCommerce register form"
4404
- #~ msgstr "Formulário de registo do WooCommerce"
4405
-
4406
  #~ msgid "Connect button before register form"
4407
  #~ msgstr "Botão Conectar antes de formulário de registro"
4408
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: ss3\n"
4
+ "POT-Creation-Date: 2021-01-27 13:58+0100\n"
5
+ "PO-Revision-Date: 2021-01-27 13:58+0100\n"
6
  "Last-Translator: \n"
7
  "Language-Team: renato@modernstuff.com.br\n"
8
  "Language: pt_BR\n"
137
  msgid "User"
138
  msgstr "Usuário"
139
 
140
+ #: nextend-facebook-connect/admin/admin.php:206
141
  #, php-format
142
  msgid "%s needs json_decode function."
143
  msgstr "%s precisa da função json_decode."
144
 
145
+ #: nextend-facebook-connect/admin/admin.php:206
146
  msgid "Please contact your server administrator and ask for solution!"
147
  msgstr ""
148
  "Entre em contato com o seu administrador do servidor e peça uma solução!"
149
 
150
+ #: nextend-facebook-connect/admin/admin.php:238
151
+ #: nextend-facebook-connect/admin/admin.php:268
152
  msgid "Settings saved."
153
  msgstr "Configurações salvas."
154
 
155
+ #: nextend-facebook-connect/admin/admin.php:247
156
  #, fuzzy
157
  #| msgid "The authorization was successful"
158
  msgid "The activation was successful"
159
  msgstr "A autorização foi bem sucedida"
160
 
161
+ #: nextend-facebook-connect/admin/admin.php:258
162
  #, fuzzy
163
  #| msgid "Deauthorize completed."
164
  msgid "Deactivate completed."
165
  msgstr "Desautorização concluída."
166
 
167
+ #: nextend-facebook-connect/admin/admin.php:437
168
  #: nextend-facebook-connect/admin/templates-provider/menu.php:15
169
  #: nextend-facebook-connect/admin/templates/providers.php:89
170
  #: nextend-facebook-connect/admin/templates/providers.php:101
172
  msgid "Settings"
173
  msgstr "Configurações"
174
 
175
+ #: nextend-facebook-connect/admin/admin.php:520
176
+ #: nextend-facebook-connect/includes/oauth2.php:143
177
+ #: nextend-facebook-connect/includes/oauth2.php:288
178
  #: nextend-facebook-connect/providers/facebook/facebook-client.php:84
179
  #: nextend-facebook-connect/providers/twitter/twitter-client.php:165
180
  #: nextend-social-login-pro/providers/apple/apple-client.php:87
183
  msgid "Unexpected response: %s"
184
  msgstr "Resposta inesperada: %s"
185
 
186
+ #: nextend-facebook-connect/admin/admin.php:581
187
  #: nextend-facebook-connect/admin/templates/fix-redirect-uri.php:21
188
  #, php-format
189
  msgid ""
193
  "%s detectou que sua url de login mudou. Você deve atualizar as URIs de "
194
  "redirecionamento do Oauth nas aplicações sociais relacionados."
195
 
196
+ #: nextend-facebook-connect/admin/admin.php:582
197
+ #: nextend-social-login-pro/providers/apple/apple.php:310
198
  msgid "Fix Error"
199
  msgstr "Corrigir erro"
200
 
201
+ #: nextend-facebook-connect/admin/admin.php:582
202
  msgid "Oauth Redirect URI"
203
  msgstr "URI de Redirecionamento do OAuth"
204
 
205
+ #: nextend-facebook-connect/admin/admin.php:599
206
  #, php-format
207
  msgid ""
208
  "%1$s detected that %2$s installed on your site. You need the Pro Addon to "
211
  "%1$s detectado que %2$s instalou em seu site. Você precisa Addon Pro para "
212
  "mostrar botões de Login Social no formulário de login %2$s!"
213
 
214
+ #: nextend-facebook-connect/admin/admin.php:600
215
  msgid "Dismiss and check Pro Addon"
216
  msgstr "Dispensar e verificar Addon Pro"
217
 
218
+ #: nextend-facebook-connect/admin/admin.php:600
219
  msgid "Dismiss"
220
  msgstr "Dispensar"
221
 
222
+ #: nextend-facebook-connect/admin/admin.php:606
223
  #, php-format
224
  msgid ""
225
  "%1$s detected that %2$s installed on your site. You must set \"<b>Page for "
230
  "página para fluxo de registro</b>\" e \"<b>página do proxy uri do "
231
  "redirecionamento OAuth</b>\" em %1$s para funcionar corretamente."
232
 
233
+ #: nextend-facebook-connect/admin/admin.php:607
234
  msgid "Fix now"
235
  msgstr "Corrigir erro"
236
 
237
+ #: nextend-facebook-connect/admin/admin.php:631
238
  #, fuzzy
239
  #| msgid "Activate Pro Addon"
240
  msgid "Activate your Pro Addon"
241
  msgstr "Ativar Addon Pro"
242
 
243
+ #: nextend-facebook-connect/admin/admin.php:632
244
  #, fuzzy
245
  #| msgid ""
246
  #| "To be able to use the Pro features, you need to authorize Nextend Social "
255
  "Pro do Nextend Social Connect. Você pode fazer isso clicando no botão "
256
  "autorizar abaixo e então selecione a compra relacionada."
257
 
258
+ #: nextend-facebook-connect/admin/admin.php:637
259
+ #: nextend-social-login-pro/nextend-social-login-pro.php:110
260
  msgid "Activate"
261
  msgstr "Ativar"
262
 
263
+ #: nextend-facebook-connect/admin/admin.php:735
264
  msgid "License key"
265
  msgstr "Chave de licença"
266
 
267
+ #: nextend-facebook-connect/admin/admin.php:758
268
  msgid "OAuth proxy page"
269
  msgstr "Página do proxy OAuth"
270
 
271
+ #: nextend-facebook-connect/admin/admin.php:761
272
  msgid "Register flow page"
273
  msgstr "Registrar página de fluxo"
274
 
277
  msgid "You have logged in successfully."
278
  msgstr "Você entrou com sucesso."
279
 
280
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:80
281
  msgid "Login label"
282
  msgstr "Rótulo de Login"
283
 
284
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:85
285
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:101
286
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:114
287
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:125
288
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:154
289
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:184
290
  #: nextend-facebook-connect/admin/templates/settings/privacy.php:53
291
  msgid "Reset to default"
292
  msgstr "Redefinir para o padrão"
293
 
294
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:95
295
+ #, fuzzy
296
+ #| msgid "Register layout"
297
+ msgid "Register label"
298
+ msgstr "Cadastrar layout"
299
+
300
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:108
301
  msgid "Link label"
302
  msgstr "Rótulo de Vincular"
303
 
304
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:120
305
  msgid "Unlink label"
306
  msgstr "Rótulo de Desvincular"
307
 
308
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:131
309
  msgid "Default button"
310
  msgstr "Botão padrão"
311
 
312
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:147
313
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:177
314
  msgid "Use custom button"
315
  msgstr "Usar botão personalizado"
316
 
317
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:154
318
  #, php-format
319
  msgid "Use the %s in your custom button's code to make the label show up."
320
  msgstr ""
321
  "Usar o %s em seu código de botão personalizado para fazer o rótulo aparecer."
322
 
323
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:162
324
  msgid "Icon button"
325
  msgstr "Ícone do botão"
326
 
327
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:193
328
  #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:140
329
  #: nextend-facebook-connect/admin/templates-provider/sync-data.php:104
330
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:170
337
  #: nextend-facebook-connect/admin/templates/settings/privacy.php:109
338
  #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:186
339
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:167
340
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:341
341
+ #: nextend-facebook-connect/providers/facebook/admin/settings.php:67
342
  #: nextend-facebook-connect/providers/google/admin/settings.php:62
343
  #: nextend-facebook-connect/providers/twitter/admin/settings.php:48
344
  #: nextend-social-login-pro/providers/amazon/admin/settings.php:47
463
  #: nextend-facebook-connect/admin/templates/settings/general.php:213
464
  #: nextend-facebook-connect/admin/templates/settings/general.php:228
465
  #: nextend-facebook-connect/admin/templates/settings/general.php:246
466
+ #: nextend-facebook-connect/admin/templates/settings/general.php:261
467
+ #: nextend-facebook-connect/includes/provider-admin.php:218
468
  msgid "Disabled"
469
  msgstr "Desativado"
470
 
788
  #: nextend-facebook-connect/admin/templates/settings/general.php:216
789
  #: nextend-facebook-connect/admin/templates/settings/general.php:231
790
  #: nextend-facebook-connect/admin/templates/settings/general.php:249
791
+ #: nextend-facebook-connect/admin/templates/settings/general.php:264
792
+ #: nextend-facebook-connect/includes/provider-admin.php:221
793
  #: nextend-facebook-connect/providers/google/admin/settings.php:53
794
  #: nextend-social-login-pro/providers/paypal/admin/settings.php:51
795
  msgid "Enabled"
800
  msgstr "Atualizar agora"
801
 
802
  #: nextend-facebook-connect/admin/templates/providers.php:77
803
+ #: nextend-facebook-connect/includes/provider-admin.php:205
804
  msgid "Verify Settings"
805
  msgstr "Verificar Configurações"
806
 
807
  #: nextend-facebook-connect/admin/templates/providers.php:85
808
+ #: nextend-facebook-connect/includes/provider-admin.php:250
809
  msgid "Enable"
810
  msgstr "Habilitar"
811
 
812
  #: nextend-facebook-connect/admin/templates/providers.php:97
813
+ #: nextend-facebook-connect/includes/provider-admin.php:258
814
  msgid "Disable"
815
  msgstr "Desativar"
816
 
1387
  msgid "Allow registration with Social login."
1388
  msgstr "Permitir registro com Social login"
1389
 
1390
+ #: nextend-facebook-connect/admin/templates/settings/general.php:256
1391
+ #, fuzzy
1392
+ #| msgid "Page for register flow"
1393
+ msgid "Custom label for register buttons"
1394
+ msgstr "Página para fluxo de registro"
1395
+
1396
+ #: nextend-facebook-connect/admin/templates/settings/general.php:266
1397
+ #, php-format
1398
+ msgid ""
1399
+ "Set a custom label for the social buttons in registration forms and for "
1400
+ "shortcodes with %1$s parameter set to %2$s.<br>The register specific labels "
1401
+ "can be modified at the Buttons tab of each provider."
1402
+ msgstr ""
1403
+
1404
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:29
1405
  #: nextend-facebook-connect/admin/templates/settings/memberpress.php:33
1406
  #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:33
1489
  msgstr "Botão Vincular após detalhes da conta"
1490
 
1491
  #: nextend-facebook-connect/admin/templates/settings/privacy.php:6
1492
+ #: nextend-facebook-connect/nextend-social-login.php:148
1493
  msgid ""
1494
  "By clicking Register, you accept our <a href=\"#privacy_policy_url\" target="
1495
  "\"_blank\">Privacy Policy</a>"
1519
  msgstr "Quando não estiver ativado, o e-mail estará vazio."
1520
 
1521
  #: nextend-facebook-connect/admin/templates/settings/privacy.php:91
1522
+ #: nextend-facebook-connect/includes/avatar.php:49
1523
  msgid "Avatar"
1524
  msgstr "Avatar"
1525
 
1526
  #: nextend-facebook-connect/admin/templates/settings/privacy.php:102
1527
+ #: nextend-facebook-connect/includes/provider.php:1100
1528
  msgid "Access token"
1529
  msgstr "Token de acesso"
1530
 
1598
  msgid "Link buttons on"
1599
  msgstr "Link de botões em"
1600
 
1601
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:323
1602
+ #, fuzzy
1603
+ #| msgid "Ask E-mail on registration"
1604
+ msgid "Email template for registration"
1605
+ msgstr "Solicitar E-mail no registro"
1606
+
1607
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:328
1608
+ #, fuzzy
1609
+ #| msgid "WordPress default"
1610
+ msgid "WordPress default notification"
1611
+ msgstr "Por omissão do WordPress"
1612
+
1613
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:331
1614
+ #, fuzzy
1615
+ #| msgid "WooCommerce register form"
1616
+ msgid "WooCommerce registration notification"
1617
+ msgstr "Formulário de registo do WooCommerce"
1618
+
1619
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:333
1620
+ #, php-format
1621
+ msgid ""
1622
+ "Defines whether the registration with %1$s will send the same registration "
1623
+ "notification that %2$s does, instead of the %3$s default one."
1624
+ msgstr ""
1625
+
1626
  #: nextend-facebook-connect/admin/templates/test-connection.php:42
1627
  #, php-format
1628
  msgid "Network connection successful: %1$s"
1641
  "Entre em contato com o seu provedor de hospedagem para resolver o problema "
1642
  "de rede entre o seu servidor e o provedor."
1643
 
1644
+ #: nextend-facebook-connect/includes/avatar.php:50
1645
  msgid "Manage Avatar"
1646
  msgstr "Gerenciar avatar"
1647
 
1648
+ #: nextend-facebook-connect/includes/avatar.php:51
1649
  #, php-format
1650
  msgid "Avatar <span class=\"count\">(%s)</span>"
1651
  msgid_plural "Avatar <span class=\"count\">(%s)</span>"
1652
  msgstr[0] "Avatar <span class=\"count\">(%s)</span>"
1653
  msgstr[1] "Avatar <span class=\"count\">(%s)</span>"
1654
 
 
1655
  #: nextend-facebook-connect/includes/compat-wp-login.php:63
1656
  #, php-format
1657
  msgid "%1$s &lsaquo; %2$s &#8212; WordPress"
1665
  msgid "Powered by WordPress"
1666
  msgstr "Alimentado por WordPress"
1667
 
 
1668
  #: nextend-facebook-connect/includes/compat-wp-login.php:284
1669
  #, php-format
1670
  msgctxt "site"
1671
  msgid "&larr; Back to %s"
1672
  msgstr "&larr; voltar para %s"
1673
 
1674
+ #: nextend-facebook-connect/includes/provider-admin.php:199
1675
  msgid "Your configuration needs to be verified"
1676
  msgstr "Sua configuração precisa ser verificada"
1677
 
1678
+ #: nextend-facebook-connect/includes/provider-admin.php:200
1679
  msgid ""
1680
  "Before you can start letting your users register with your app it needs to "
1681
  "be tested. This test makes sure that no users will have troubles with the "
1689
  "erro no popup verifique os ID e segredo ou mesmo o app. Caso contrário suas "
1690
  "configurações estão funcionando."
1691
 
1692
+ #: nextend-facebook-connect/includes/provider-admin.php:206
1693
  msgid "Please save your changes to verify settings."
1694
  msgstr "Por favor salve suas alterações para verificar suas configurações."
1695
 
1696
+ #: nextend-facebook-connect/includes/provider-admin.php:214
1697
  msgid "Works Fine"
1698
  msgstr "Funcionando bem"
1699
 
1700
+ #: nextend-facebook-connect/includes/provider-admin.php:228
1701
  #, php-format
1702
  msgid ""
1703
  "This provider is currently disabled, which means that users can’t register "
1706
  "Este provedor está desativado no momento, o que significa que os usuários "
1707
  "não podem registar-se ou iniciar sessão através de sua conta do %s."
1708
 
1709
+ #: nextend-facebook-connect/includes/provider-admin.php:231
1710
  #, php-format
1711
  msgid ""
1712
  "This provider works fine, but you can test it again. If you don’t want to "
1716
  "não quer deixar mais usuários se registrarem e se logarem com %s você pode "
1717
  "desativá-lo."
1718
 
1719
+ #: nextend-facebook-connect/includes/provider-admin.php:234
1720
  #, php-format
1721
  msgid ""
1722
  "This provider is currently enabled, which means that users can register or "
1725
  "Este provedor está ativado no momento, o que significa que os usuários podem "
1726
  "registar-se ou iniciar sessão através de sua conta do %s."
1727
 
1728
+ #: nextend-facebook-connect/includes/provider-admin.php:242
1729
  msgid "Verify Settings Again"
1730
  msgstr "Verificar Configurações De Novo"
1731
 
1732
+ #: nextend-facebook-connect/includes/provider-admin.php:243
1733
  msgid "Please save your changes before verifying settings."
1734
  msgstr "Salve suas alterações antes de verificar as configurações."
1735
 
1736
+ #: nextend-facebook-connect/includes/provider.php:358
1737
+ #: nextend-facebook-connect/includes/provider.php:717
1738
+ #: nextend-facebook-connect/includes/provider.php:725
1739
  msgid "Authentication successful"
1740
  msgstr "Autenticação bem sucedida"
1741
 
1742
+ #: nextend-facebook-connect/includes/provider.php:654
1743
+ #: nextend-facebook-connect/includes/user.php:168
1744
+ #: nextend-facebook-connect/includes/user.php:597
1745
  msgid "Authentication error"
1746
  msgstr "Erro de autenticação"
1747
 
1748
+ #: nextend-facebook-connect/includes/provider.php:669
1749
  msgid "Unlink successful."
1750
  msgstr "Desvinculação bem sucedida."
1751
 
1752
+ #: nextend-facebook-connect/includes/provider.php:671
1753
  msgid "Unlink is not allowed!"
1754
  msgstr ""
1755
 
1756
+ #: nextend-facebook-connect/includes/provider.php:886
1757
+ #: nextend-facebook-connect/includes/provider.php:893
1758
  msgid "The test was successful"
1759
  msgstr "O teste foi bem sucedido"
1760
 
1761
+ #: nextend-facebook-connect/includes/provider.php:939
1762
  msgid "Authentication failed"
1763
  msgstr "Falha na autenticação"
1764
 
1765
+ #: nextend-facebook-connect/includes/provider.php:1092
1766
  msgid "Identifier"
1767
  msgstr "Identificador"
1768
 
1769
+ #: nextend-facebook-connect/includes/provider.php:1108
1770
  msgid "Profile picture"
1771
  msgstr "Foto do perfil"
1772
 
1780
  "logar com o %2$s facilmente."
1781
 
1782
  #: nextend-facebook-connect/includes/user.php:77
1783
+ #, fuzzy, php-format
1784
+ #| msgid ""
1785
+ #| "You have already linked a(n) %s account. Please unlink the current and "
1786
+ #| "then you can link other %s account."
1787
  msgid ""
1788
  "You have already linked a(n) %s account. Please unlink the current and then "
1789
+ "you can link another %s account."
1790
  msgstr ""
1791
  "Você já vinculou uma conta %s. Por favor desvincule a atual e então você "
1792
  "poderá vincular outra conta %s."
1793
 
1794
  #: nextend-facebook-connect/includes/user.php:82
1795
+ #, fuzzy, php-format
1796
+ #| msgid "This %s account is already linked to other user."
1797
+ msgid "This %s account is already linked to another user."
1798
  msgstr "A conta %s já está vinculada a outro usuário."
1799
 
1800
+ #: nextend-facebook-connect/includes/user.php:128
1801
  msgid "User registration is currently not allowed."
1802
  msgstr ""
1803
 
1805
  msgid "Register For This Site!"
1806
  msgstr "Registrar Para Este Site!"
1807
 
1808
+ #: nextend-facebook-connect/nextend-facebook-connect.php:37
 
1809
  #, php-format
1810
  msgid "%1$s requires PHP version %2$s+, plugin is currently NOT ACTIVE."
1811
  msgstr "%1$s requer a versão do PHP %2$s+, O plugin atualmente não está ativo."
1812
 
1813
+ #: nextend-facebook-connect/nextend-facebook-connect.php:44
 
1814
  #, php-format
1815
  msgid ""
1816
  "%1$s requires WordPress version %2$s+. Because you are using an earlier "
1830
  msgid "Update now!"
1831
  msgstr "Atualizar agora!"
1832
 
1833
+ #: nextend-facebook-connect/nextend-social-login.php:762
1834
+ #: nextend-facebook-connect/nextend-social-login.php:1140
1835
  msgid "Social Login"
1836
  msgstr "Login Social"
1837
 
1838
+ #: nextend-facebook-connect/nextend-social-login.php:1121
1839
  msgid "Social Accounts"
1840
  msgstr "Redes Sociais"
1841
 
1904
  msgstr "Na barra lateral esquerda, clique em \"Facebook Login/Settings\""
1905
 
1906
  #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:12
1907
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:35
1908
  #, fuzzy, php-format
1909
  #| msgid ""
1910
  #| "Add the following URL to the \"Valid OAuth redirect URIs\" field: <b>%s</"
2002
 
2003
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:26
2004
  #, fuzzy
2005
+ #| msgid "Click the \"Create App\" button."
2006
+ msgid ""
2007
+ "Click on the \"<b>Create App</b>\" button and in the Popup choose the "
2008
+ "\"<b>Build Connected Experiences</b>\" option!"
2009
+ msgstr "Clique no botão \"Criar Novo App\"."
2010
 
2011
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:27
2012
  msgid ""
2018
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:28
2019
  #, php-format
2020
  msgid ""
2021
+ "Fill \"<b>App Display Name</b>\", \"<b>App Contact Email</b>\". The "
2022
+ "specified \"App Display Name\" will appear on your %s!"
2023
  msgstr ""
2024
 
2025
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:29
2026
+ msgid ""
2027
+ "<b>Optional</b>: choose a \"<b>Business Manager Account</b>\" in the popup, "
2028
+ "if you have any."
2029
+ msgstr ""
2030
+
2031
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:30
2032
  #, fuzzy
2033
  #| msgid "Click the \"Create App\" button."
2034
  msgid ""
2035
  "Click the \"<b>Create App ID</b>\" button and complete the Security Check."
2036
  msgstr "Clique no botão \"Criar Novo App\"."
2037
 
2038
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:31
2039
  #, fuzzy, php-format
2040
  #| msgid "Fill the \"App Name\" field and click \"Create App\" button."
2041
  msgid ""
2045
  "Preencha o campo \"nome do aplicativo\" e clique no botão \"criar aplicativo"
2046
  "\"."
2047
 
2048
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:32
2049
  #, fuzzy, php-format
2050
  #| msgid "Add the following URL to the \"Redirect URLs\" field <b>%s</b> "
2051
  msgid ""
2053
  "field: <b>%s</b>"
2054
  msgstr "Adicione a seguinte URL ao campo \"Redirecionar URLs\"<b>%s</b> "
2055
 
2056
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:33
2057
  #, fuzzy
2058
  #| msgid "Click on \"Save Changes\""
2059
  msgid "Press “<b>Save</b>”"
2060
  msgstr "Clique em \"Salvar Alterações\""
2061
 
2062
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:34
2063
  #, php-format
2064
  msgid ""
2065
  "Click on the “<b>%1$s</b>” option what you find on the left side, under “<b>"
2066
  "%2$s</b> - <b>%3$s</b>”"
2067
  msgstr ""
2068
 
2069
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:36
2070
  #, fuzzy
2071
  #| msgid "Click on \"Save Changes\""
2072
  msgid "Click on “<b>Save Changes</b>”"
2073
  msgstr "Clique em \"Salvar Alterações\""
2074
 
2075
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:37
2076
  #, php-format
2077
  msgid ""
2078
  "On the top left side, click on the “<b>%1$s</b>” menu point, then click “<b>"
2079
  "%2$s</b>”"
2080
  msgstr ""
2081
 
2082
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:38
2083
  #, fuzzy, php-format
2084
  #| msgid "Enter your domain name to the App Domains"
2085
  msgid ""
2087
  "b>"
2088
  msgstr "Digite seu nome de domínio para os Domínios do App"
2089
 
2090
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:39
2091
  #, fuzzy
2092
  #| msgid ""
2093
  #| "Fill up the \"Privacy Policy URL\". Provide a publicly available and "
2102
  "privacidade publicamente disponível e facilmente acessível que explique "
2103
  "quais dados você está coletando e como você utilizará estes dados."
2104
 
2105
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:40
2106
  msgid ""
2107
+ "At \"<b>User Data Deletion</b>\", choose the \"<b>Data Deletion Instructions "
2108
+ "URL</b>\" option, and enter the <i>URL of your page</i>* with the "
2109
+ "instructions on how users can delete their accounts on your site."
2110
+ msgstr ""
2111
+
2112
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:42
2113
+ msgid ""
2114
+ "To comply with GDPR, you should already offer possibility to delete accounts "
2115
+ "on your site, either by the user or by the admin:"
2116
+ msgstr ""
2117
+
2118
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:45
2119
+ msgid ""
2120
+ "<u>If each user has an option to delete the account</u>: the URL should "
2121
+ "point to a guide showing the way users can delete their accounts."
2122
+ msgstr ""
2123
+
2124
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:46
2125
+ msgid ""
2126
+ "<u>If the accounts are deleted by an admin</u>: then you should have a "
2127
+ "section - usually in the Privacy Policy - with the contact details, where "
2128
+ "users can send their account erasure requests. In this case the URL should "
2129
+ "point to this section of the document."
2130
+ msgstr ""
2131
+
2132
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:51
2133
+ msgid ""
2134
+ "Select a “<b>Category</b>”, an “<b>App Icon</b>” and pick the “<b>App "
2135
+ "Purpose</b>” option that describes your App the best, then press \"<b>Save "
2136
  "Changes</b>\""
2137
  msgstr ""
2138
 
2139
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:52
2140
  #, fuzzy
2141
  #| msgid ""
2142
  #| "Your application is currently private, which means that only you can log "
2151
  "logar com ela. No menu lateral esquerdo escolha “Revisar App” e torne seu "
2152
  "App público"
2153
 
2154
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:53
2155
  #, fuzzy
2156
  #| msgid ""
2157
  #| "Here you can see your \"APP ID\" and you can see your \"App secret\" if "
2165
  "Aqui voc6e pode ver seu “ID do APP” e seu “Segredo do App” se você clicar no "
2166
  "botão “Mostrar”. Isto será necessário nas configurações do plugin."
2167
 
2168
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:56
2169
+ #, php-format
2170
+ msgid ""
2171
+ "<b>WARNING:</b> <u>Don't replace your Facebook App with another!</u> Since "
2172
+ "WordPress users with linked Facebook accounts can only login using the %1$s "
2173
+ "App, that was originally used at the time, when the WordPress account was "
2174
+ "linked with a %1$s Account.<br>\n"
2175
+ "If you would like to know the reason of this, or you really need to replace "
2176
+ "the Facebook App, then please check our %2$sdocumentation%3$s."
2177
+ msgstr ""
2178
+
2179
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:60
2180
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:40
2181
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:37
2182
  #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:39
2183
  #: nextend-social-login-pro/providers/apple/admin/getting-started.php:122
2184
  #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:30
2250
  msgid "App Secret"
2251
  msgstr "Chave Secreta do App"
2252
 
2253
+ #: nextend-facebook-connect/providers/facebook/admin/settings.php:59
2254
+ #, php-format
2255
+ msgid ""
2256
+ "By replacing your existing %1$s App, users with linked %1$s accounts will no "
2257
+ "longer be able to login with %1$s."
2258
+ msgstr ""
2259
+
2260
+ #: nextend-facebook-connect/providers/facebook/admin/settings.php:61
2261
+ msgid "Find out why?"
2262
+ msgstr ""
2263
+
2264
+ #: nextend-facebook-connect/providers/facebook/facebook.php:85
2265
  msgid "Continue with <b>Facebook</b>"
2266
  msgstr "Continuar com <b>Facebook</b>"
2267
 
2268
+ #: nextend-facebook-connect/providers/facebook/facebook.php:86
2269
+ #, fuzzy
2270
+ #| msgid "Continue with <b>Facebook</b>"
2271
+ msgid "Sign up with <b>Facebook</b>"
2272
+ msgstr "Continuar com <b>Facebook</b>"
2273
+
2274
+ #: nextend-facebook-connect/providers/facebook/facebook.php:87
2275
  msgid "Link account with <b>Facebook</b>"
2276
  msgstr "Vincular conta com <b>Facebook</b>"
2277
 
2278
+ #: nextend-facebook-connect/providers/facebook/facebook.php:88
2279
  msgid "Unlink account from <b>Facebook</b>"
2280
  msgstr "Desvincular conta do <b>Facebook</b>"
2281
 
2282
+ #: nextend-facebook-connect/providers/facebook/facebook.php:188
2283
+ #: nextend-facebook-connect/providers/google/google.php:168
2284
+ #: nextend-facebook-connect/providers/twitter/twitter.php:97
2285
+ #: nextend-social-login-pro/providers/amazon/amazon.php:67
2286
+ #: nextend-social-login-pro/providers/apple/apple.php:131
2287
+ #: nextend-social-login-pro/providers/apple/apple.php:138
2288
+ #: nextend-social-login-pro/providers/disqus/disqus.php:114
2289
+ #: nextend-social-login-pro/providers/github/github.php:152
2290
+ #: nextend-social-login-pro/providers/linkedin/linkedin.php:65
2291
+ #: nextend-social-login-pro/providers/paypal/paypal.php:92
2292
+ #: nextend-social-login-pro/providers/vk/vk.php:63
2293
+ #: nextend-social-login-pro/providers/wordpress/wordpress.php:101
2294
+ #: nextend-social-login-pro/providers/yahoo/yahoo.php:92
2295
  #, php-format
2296
  msgid ""
2297
  "The %1$s entered did not appear to be a valid. Please enter a valid %2$s."
2298
  msgstr ""
2299
  "O %1$s inserido não parece ser válido. Por favor insira um %2$s válido."
2300
 
2301
+ #: nextend-facebook-connect/providers/facebook/facebook.php:309
2302
+ #: nextend-social-login-pro/providers/paypal/paypal.php:172
2303
  #, php-format
2304
  msgid "Required scope: %1$s"
2305
  msgstr "Escopo requerido: %1$s"
2488
  "Disable, when you don't want to see the account select prompt on each login."
2489
  msgstr ""
2490
 
2491
+ #: nextend-facebook-connect/providers/google/google.php:99
2492
  msgid "Continue with <b>Google</b>"
2493
  msgstr "Continuar com <b>Google</b>"
2494
 
2495
+ #: nextend-facebook-connect/providers/google/google.php:100
2496
+ #, fuzzy
2497
+ #| msgid "Continue with <b>Google</b>"
2498
+ msgid "Sign up with <b>Google</b>"
2499
+ msgstr "Continuar com <b>Google</b>"
2500
+
2501
+ #: nextend-facebook-connect/providers/google/google.php:101
2502
  msgid "Link account with <b>Google</b>"
2503
  msgstr "Vincular conta com <b>Google</b>"
2504
 
2505
+ #: nextend-facebook-connect/providers/google/google.php:102
2506
  msgid "Unlink account from <b>Google</b>"
2507
  msgstr "Desvincular conta do <b>Google</b>"
2508
 
2509
+ #: nextend-facebook-connect/providers/google/google.php:295
2510
  #, php-format
2511
  msgid "Required API: %1$s"
2512
  msgstr "API obrigatória: %1$s"
2514
  #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:10
2515
  #, fuzzy
2516
  #| msgid "Name your project and then click on the Create button again"
2517
+ msgid ""
2518
+ "Find your App and click on the <b>App settings</b> icon. (The one that looks "
2519
+ "like a gear.)"
2520
  msgstr "Nomeie o projeto e, em seguida, clique no botão Criar"
2521
 
2522
  #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:11
2523
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:27
2524
+ #, fuzzy
2525
+ #| msgid "Click the \"Create App\" button."
2526
+ msgid "Click on the <b>Edit</b> button at <b>Authentication settings</b>."
2527
+ msgstr "Clique no botão \"Criar Novo App\"."
2528
 
2529
  #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:12
 
2530
  #, fuzzy, php-format
2531
  #| msgid "Add the following URL to the \"Callback URL\" field: <b>%s</b>"
2532
  msgid "Add the following URL to the \"<b>Callback URLs</b>\" field: <b>%s</b>"
2533
  msgstr "Adicione a URL seguinte no campo “URL de Retorno”: <b>%s</b>"
2534
 
2535
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:17
2536
+ #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:25
2537
+ #: nextend-social-login-pro/providers/apple/admin/getting-started.php:38
2538
+ #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:9
2539
+ #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:16
2540
+ #: nextend-social-login-pro/providers/github/admin/getting-started.php:16
2541
+ #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:9
2542
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:17
2543
+ #: nextend-social-login-pro/providers/vk/admin/getting-started.php:16
2544
+ #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:9
2545
+ #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:16
2546
+ #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:17
2547
+ #, php-format
2548
+ msgid "Log in with your %s credentials if you are not logged in."
2549
+ msgstr "Faça o login com o seu %s credenciais se você não estiver logado."
2550
 
2551
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:18
2552
  msgid ""
2569
  "se você ainda não estiver lá!"
2570
 
2571
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:20
2572
+ #, fuzzy
2573
+ #| msgid "Click on \"Save\""
2574
+ msgid "Click on <b>+ New Project</b>!"
2575
+ msgstr "Clique em \"Salvar\""
2576
+
2577
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:21
2578
  msgid ""
2579
+ "Name your project, and go through the basic setup. You’ll need to select "
2580
+ "your use case and give a description."
2581
  msgstr ""
 
 
2582
 
2583
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:22
2584
+ msgid "Create a new app, or select an existing one, then click <b>Complete</b>"
2585
+ msgstr ""
 
 
2586
 
2587
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:23
 
 
2588
  msgid ""
2589
+ "You’ll find your API key and secret on this page. Copy and paste the <b>API "
2590
+ "key</b> and the <b>API secret key</b> to the corresponding fields at Nextend "
2591
+ "Social Login and press <b>Save Changes</b>."
2592
+ msgstr ""
2593
 
2594
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:24
2595
+ #, fuzzy, php-format
2596
+ #| msgid "Click on \"Save Changes\""
2597
+ msgid "Click on the <b>App Settings</b> button at %s."
2598
+ msgstr "Clique em \"Salvar Alterações\""
2599
 
2600
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:25
2601
+ msgid "Find the Apps section, and the app you created a few steps ago."
2602
+ msgstr ""
 
 
2603
 
2604
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:26
2605
+ msgid "Click on the App settings icon. (The one that looks like a gear.)"
2606
  msgstr ""
2607
 
2608
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:28
2609
+ msgid "Switch on the <b>Enable 3-legged OAuth</b> option."
2610
+ msgstr ""
2611
+
2612
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:29
2613
+ #, fuzzy, php-format
2614
+ #| msgid "Add the following URL to the \"Callback URL\" field: <b>%s</b>"
2615
+ msgid "Add the following URL to the <b>Callback URLs</b> field: <b>%s</b>"
2616
+ msgstr "Adicione a URL seguinte no campo “URL de Retorno”: <b>%s</b>"
2617
+
2618
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:30
2619
+ #, fuzzy, php-format
2620
+ #| msgid "Add the following URL to the \"Live Return URL\" field <b>%s</b> "
2621
+ msgid "Enter your site's URL to the <b>Website URL</b> field: <b>%s</b>"
2622
+ msgstr "Adicione a seguinte URL ao campo \"URL de retorno ao vivo\" <b>%s</b>"
2623
+
2624
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:31
2625
  msgid ""
2626
+ "If you want to get the email address as well, then don’t forget to enable "
2627
+ "the <b>Request email address from users</b> option. In this case you also "
2628
+ "need to fill the <b>Terms of service</b> and the <b>Privacy policy</b> "
2629
+ "fields with the corresponding URLs!"
2630
  msgstr ""
2631
 
2632
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:32
2633
  #, fuzzy
2634
+ #| msgid "Click on \"Save\""
2635
+ msgid "Click on <b>Save</b>."
2636
+ msgstr "Clique em \"Salvar\""
2637
+
2638
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:33
2639
+ #, php-format
2640
+ msgid "Go back to Nextend Social Login and <b>Verify</b> your %s provider."
2641
  msgstr ""
 
 
2642
 
2643
  #: nextend-facebook-connect/providers/twitter/admin/settings.php:27
2644
  #: nextend-social-login-pro/providers/disqus/admin/settings.php:26
2657
  msgid "Original"
2658
  msgstr "Original"
2659
 
2660
+ #: nextend-facebook-connect/providers/twitter/twitter.php:70
2661
  msgid "Continue with <b>Twitter</b>"
2662
  msgstr "Continuar com <b>Twitter</b>"
2663
 
2664
+ #: nextend-facebook-connect/providers/twitter/twitter.php:71
2665
+ #, fuzzy
2666
+ #| msgid "Continue with <b>Twitter</b>"
2667
+ msgid "Sign up with <b>Twitter</b>"
2668
+ msgstr "Continuar com <b>Twitter</b>"
2669
+
2670
+ #: nextend-facebook-connect/providers/twitter/twitter.php:72
2671
  msgid "Link account with <b>Twitter</b>"
2672
  msgstr "Vincular conta com <b>Twitter</b>"
2673
 
2674
+ #: nextend-facebook-connect/providers/twitter/twitter.php:73
2675
  msgid "Unlink account from <b>Twitter</b>"
2676
  msgstr "Desvincular conta do <b>Twitter</b>"
2677
 
2795
  "Este e-mail já está registrado, faça o login na sua conta para fazer um link "
2796
  "com %1$s."
2797
 
2798
+ #: nextend-social-login-pro/nextend-social-login-pro.php:104
2799
  #, php-format
2800
  msgid "Please install and activate %1$s to use the %2$s"
2801
  msgstr "Instale e ative %1$s para usar o %2$s"
2802
 
2803
+ #: nextend-social-login-pro/nextend-social-login-pro.php:118
2804
  msgid "Network Activate"
2805
  msgstr "Ativar rede"
2806
 
2807
+ #: nextend-social-login-pro/nextend-social-login-pro.php:130
2808
  msgid "Install now!"
2809
  msgstr "Instalar agora!"
2810
 
2811
+ #: nextend-social-login-pro/nextend-social-login-pro.php:821
2812
  #, fuzzy
2813
  #| msgid "Providers"
2814
  msgid "Social Providers"
2821
  "latest %2$s version!"
2822
  msgstr ""
2823
 
2824
+ #: nextend-social-login-pro/provider-extensions/google.php:187
2825
  #, php-format
2826
  msgid ""
2827
  "Most of these information can only be retrieved, when the field is marked as "
2884
  "\"Configurações\" e configure os \"%2$s\" e \"%3$s\" de acordo com seu "
2885
  "aplicativo %1$s."
2886
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2887
  #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:27
2888
  #, fuzzy
2889
  #| msgid ""
2947
  msgstr ""
2948
  "Encontre o \"Client ID\" e \"Client Secret\" necessários no meio da página."
2949
 
2950
+ #: nextend-social-login-pro/providers/amazon/amazon.php:40
2951
  msgid "Continue with <b>Amazon</b>"
2952
  msgstr "Continuar com <b>Amazon</b>"
2953
 
2954
+ #: nextend-social-login-pro/providers/amazon/amazon.php:41
2955
+ #, fuzzy
2956
+ #| msgid "Continue with <b>Amazon</b>"
2957
+ msgid "Sign up with <b>Amazon</b>"
2958
+ msgstr "Continuar com <b>Amazon</b>"
2959
+
2960
+ #: nextend-social-login-pro/providers/amazon/amazon.php:42
2961
  msgid "Link account with <b>Amazon</b>"
2962
  msgstr "Vincular conta com <b>Amazon</b>"
2963
 
2964
+ #: nextend-social-login-pro/providers/amazon/amazon.php:43
2965
  msgid "Unlink account from <b>Amazon</b>"
2966
  msgstr "Desvincular conta do <b>Amazon</b>"
2967
 
3300
  msgid "Generate Token"
3301
  msgstr ""
3302
 
3303
+ #: nextend-social-login-pro/providers/apple/apple.php:83
 
 
3304
  msgid "Continue with <b>Apple</b>"
3305
+ msgstr "Continuar com <b>Apple</b>"
3306
 
3307
+ #: nextend-social-login-pro/providers/apple/apple.php:84
3308
  #, fuzzy
3309
+ msgid "Sign up with <b>Apple</b>"
3310
+ msgstr "Continuar com <b>Apple</b>"
3311
+
3312
+ #: nextend-social-login-pro/providers/apple/apple.php:85
3313
  msgid "Link account with <b>Apple</b>"
3314
+ msgstr "Vincular conta com <b>Apple</b>"
3315
 
3316
+ #: nextend-social-login-pro/providers/apple/apple.php:86
 
 
3317
  msgid "Unlink account from <b>Apple</b>"
3318
+ msgstr "Desvincular conta do <b>Apple</b>"
3319
 
3320
+ #: nextend-social-login-pro/providers/apple/apple.php:180
3321
  #, php-format
3322
  msgid "An error occurred when storing of the expiration timestamp : %1$s"
3323
  msgstr ""
3324
 
3325
+ #: nextend-social-login-pro/providers/apple/apple.php:184
3326
+ #: nextend-social-login-pro/providers/apple/apple.php:282
3327
+ #: nextend-social-login-pro/providers/apple/apple.php:297
3328
+ #: nextend-social-login-pro/providers/apple/apple.php:341
3329
  #, fuzzy, php-format
3330
  #| msgid "Network connection failed: %1$s"
3331
  msgid "Token generation failed: %1$s"
3332
  msgstr "Falha na conexão de rede: %1$s"
3333
 
3334
+ #: nextend-social-login-pro/providers/apple/apple.php:184
3335
  msgid "Please check your credentials!"
3336
  msgstr ""
3337
 
3338
+ #: nextend-social-login-pro/providers/apple/apple.php:282
3339
  msgid "Private key format is not valid!"
3340
  msgstr ""
3341
 
3342
+ #: nextend-social-login-pro/providers/apple/apple.php:308
3343
  #, php-format
3344
  msgid ""
3345
  "%s detected that your Apple credentials have expired. Please delete the "
3346
  "current credentials and generate new one!"
3347
  msgstr ""
3348
 
3349
+ #: nextend-social-login-pro/providers/apple/apple.php:310
3350
  msgid "Apple Credentials"
3351
  msgstr ""
3352
 
3453
  msgid "API Secret"
3454
  msgstr "Chave Secreta do App"
3455
 
3456
+ #: nextend-social-login-pro/providers/disqus/disqus.php:87
3457
  msgid "Continue with <b>Disqus</b>"
3458
  msgstr "Continuar com <b>Disqus</b>"
3459
 
3460
+ #: nextend-social-login-pro/providers/disqus/disqus.php:88
3461
+ #, fuzzy
3462
+ #| msgid "Continue with <b>Disqus</b>"
3463
+ msgid "Sign up with <b>Disqus</b>"
3464
+ msgstr "Continuar com <b>Disqus</b>"
3465
+
3466
+ #: nextend-social-login-pro/providers/disqus/disqus.php:89
3467
  msgid "Link account with <b>Disqus</b>"
3468
  msgstr "Vincular conta com <b>Disqus</b>"
3469
 
3470
+ #: nextend-social-login-pro/providers/disqus/disqus.php:90
3471
  msgid "Unlink account from <b>Disqus</b>"
3472
  msgstr "Desvincular conta do <b>Disqus</b>"
3473
 
3557
  "public email address set at the %1$s profile page%2$s!"
3558
  msgstr ""
3559
 
3560
+ #: nextend-social-login-pro/providers/github/github.php:125
 
 
3561
  msgid "Continue with <b>GitHub</b>"
3562
+ msgstr "Continuar com <b>GitHub</b>"
3563
 
3564
+ #: nextend-social-login-pro/providers/github/github.php:126
3565
  #, fuzzy
3566
+ msgid "Sign up with <b>GitHub</b>"
3567
+ msgstr "Continuar com <b>GitHub</b>"
3568
+
3569
+ #: nextend-social-login-pro/providers/github/github.php:127
3570
  msgid "Link account with <b>GitHub</b>"
3571
+ msgstr "Vincular conta com <b>GitHub</b>"
3572
 
3573
+ #: nextend-social-login-pro/providers/github/github.php:128
 
 
3574
  msgid "Unlink account from <b>GitHub</b>"
3575
+ msgstr "Desvincular conta do <b>GitHub</b>"
3576
 
3577
  #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:10
3578
  msgid "Click on your App and go to the \"<b>Auth</b>\" tab."
3672
  msgstr ""
3673
  "Encontre o \"Client ID\" e \"Client Secret\" necessários no meio da página."
3674
 
3675
+ #: nextend-social-login-pro/providers/linkedin/linkedin.php:38
3676
  msgid "Continue with <b>LinkedIn</b>"
3677
  msgstr "Continuar com <b>LinkedIn</b>"
3678
 
3679
+ #: nextend-social-login-pro/providers/linkedin/linkedin.php:39
3680
+ #, fuzzy
3681
+ #| msgid "Continue with <b>LinkedIn</b>"
3682
+ msgid "Sign up with <b>LinkedIn</b>"
3683
+ msgstr "Continuar com <b>LinkedIn</b>"
3684
+
3685
+ #: nextend-social-login-pro/providers/linkedin/linkedin.php:40
3686
  msgid "Link account with <b>LinkedIn</b>"
3687
  msgstr "Vincular conta com <b>LinkedIn</b>"
3688
 
3689
+ #: nextend-social-login-pro/providers/linkedin/linkedin.php:41
3690
  msgid "Unlink account from <b>LinkedIn</b>"
3691
  msgstr "Desvincular conta do <b>LinkedIn</b>"
3692
 
3834
  msgid "Disable, when you have no rights for email address."
3835
  msgstr ""
3836
 
3837
+ #: nextend-social-login-pro/providers/paypal/paypal.php:65
3838
  msgid "Continue with <b>PayPal</b>"
3839
  msgstr "Continuar com <b>PayPal</b>"
3840
 
3841
+ #: nextend-social-login-pro/providers/paypal/paypal.php:66
3842
+ #, fuzzy
3843
+ #| msgid "Continue with <b>PayPal</b>"
3844
+ msgid "Sign up with <b>PayPal</b>"
3845
+ msgstr "Continuar com <b>PayPal</b>"
3846
+
3847
+ #: nextend-social-login-pro/providers/paypal/paypal.php:67
3848
  msgid "Link account with <b>PayPal</b>"
3849
  msgstr "Vincular conta com <b>PayPal</b>"
3850
 
3851
+ #: nextend-social-login-pro/providers/paypal/paypal.php:68
3852
  msgid "Unlink account from <b>PayPal</b>"
3853
  msgstr "Desvincular conta do <b>PayPal</b>"
3854
 
3962
  msgid "Secure key"
3963
  msgstr "Chave segura"
3964
 
3965
+ #: nextend-social-login-pro/providers/vk/vk.php:36
3966
  msgid "Continue with <b>VK</b>"
3967
  msgstr "Continuar com <b>VK</b>"
3968
 
3969
+ #: nextend-social-login-pro/providers/vk/vk.php:37
3970
+ #, fuzzy
3971
+ #| msgid "Continue with <b>VK</b>"
3972
+ msgid "Sign up with <b>VK</b>"
3973
+ msgstr "Continuar com <b>VK</b>"
3974
+
3975
+ #: nextend-social-login-pro/providers/vk/vk.php:38
3976
  msgid "Link account with <b>VK</b>"
3977
  msgstr "Vincular conta com <b>VK</b>"
3978
 
3979
+ #: nextend-social-login-pro/providers/vk/vk.php:39
3980
  msgid "Unlink account from <b>VK</b>"
3981
  msgstr "Desvincular conta do <b>VK</b>"
3982
 
4059
  "Aqui você pode ver o seu \"ID do Cliente\" e \"Segredo do cliente\". Estes "
4060
  "serão necessários nas configurações do plugin."
4061
 
4062
+ #: nextend-social-login-pro/providers/wordpress/wordpress.php:74
4063
  msgid "Continue with <b>WordPress.com</b>"
4064
  msgstr "Continuar com <b>WordPress.com</b>"
4065
 
4066
+ #: nextend-social-login-pro/providers/wordpress/wordpress.php:75
4067
+ #, fuzzy
4068
+ #| msgid "Continue with <b>WordPress.com</b>"
4069
+ msgid "Sign up with <b>WordPress.com</b>"
4070
+ msgstr "Continuar com <b>WordPress.com</b>"
4071
+
4072
+ #: nextend-social-login-pro/providers/wordpress/wordpress.php:76
4073
  msgid "Link account with <b>WordPress.com</b>"
4074
  msgstr "Vincular conta com <b>WordPress.com</b>"
4075
 
4076
+ #: nextend-social-login-pro/providers/wordpress/wordpress.php:77
4077
  msgid "Unlink account from <b>WordPress.com</b>"
4078
  msgstr "Desvincular conta do <b>WordPress.com</b>"
4079
 
4138
  "Aqui você pode ver o seu \"ID do Cliente\" e \"Segredo do cliente\". Estes "
4139
  "serão necessários nas configurações do plugin."
4140
 
4141
+ #: nextend-social-login-pro/providers/yahoo/yahoo.php:65
 
 
4142
  msgid "Continue with <b>Yahoo</b>"
4143
+ msgstr "Continuar com <b>Yahoo</b>"
4144
 
4145
+ #: nextend-social-login-pro/providers/yahoo/yahoo.php:66
4146
  #, fuzzy
4147
+ msgid "Sign up with <b>Yahoo</b>"
4148
+ msgstr "Continuar com <b>Yahoo</b>"
4149
+
4150
+ #: nextend-social-login-pro/providers/yahoo/yahoo.php:67
4151
  msgid "Link account with <b>Yahoo</b>"
4152
+ msgstr "Vincular conta com <b>Yahoo</b>"
4153
 
4154
+ #: nextend-social-login-pro/providers/yahoo/yahoo.php:68
 
 
4155
  msgid "Unlink account from <b>Yahoo</b>"
4156
+ msgstr "Desvincular conta do <b>Yahoo</b>"
4157
 
4158
+ #: nextend-social-login-pro/providers/yahoo/yahoo.php:188
4159
  #, fuzzy, php-format
4160
  #| msgid "Required scope: %1$s"
4161
  msgid "Required permission: %1$s"
4199
  msgid "Social accounts"
4200
  msgstr "Contas redes sociais"
4201
 
4202
+ #, fuzzy, php-format
4203
+ #~| msgid "Log in with your %s credentials if you are not logged in"
4204
+ #~ msgid "Log in with your %s credentials if you are not logged in yet"
4205
+ #~ msgstr "Logue com suas credenciais %s se você não estiver logado"
4206
+
4207
+ #, fuzzy, php-format
4208
+ #~| msgid ""
4209
+ #~| "Fill the App name, Application description fields. Then enter your "
4210
+ #~| "site's URL to the Website field: <b>%s</b>"
4211
+ #~ msgid ""
4212
+ #~ "Fill the <b>App name</b>, <b>Application description</b> fields. Then "
4213
+ #~ "enter your site's URL to the <b>Website URL</b> field: <b>%s</b>"
4214
+ #~ msgstr ""
4215
+ #~ "Preencha os campos de nome e descrição. Então entre com a URL de seu site "
4216
+ #~ "no campo Website: <b>%s</b>"
4217
+
4218
+ #, fuzzy
4219
+ #~| msgid "Tick the checkbox next to Enable Sign in with Twitter!"
4220
+ #~ msgid "Tick the checkbox next to <b>Enable Sign in with Twitter</b>!"
4221
+ #~ msgstr ""
4222
+ #~ "Marque a caixa de seleção ao lado para ativar Entrada com o Twitter!"
4223
+
4224
+ #, fuzzy
4225
+ #~| msgid "Full the \"Tell us how this app will be used\" field! "
4226
+ #~ msgid ""
4227
+ #~ "Fill the “<b>Terms of Service URL</b>\", \"<b>Privacy policy URL</b>\" "
4228
+ #~ "and \"<b>Tell us how this app will be used</b>\" fields!"
4229
+ #~ msgstr "Preencha o campo \"Diga-nos como este aplicativo será usado\"!\"."
4230
+
4231
+ #, fuzzy
4232
+ #~| msgid "Click the Create button."
4233
+ #~ msgid "Click the <b>Create</b> button."
4234
+ #~ msgstr "Clique no botão Criar."
4235
+
4236
+ #, fuzzy
4237
+ #~| msgid "Read the Developer Terms and click the Create button again!"
4238
+ #~ msgid "Read the Developer Terms and click the <b>Create</b> button again!"
4239
+ #~ msgstr "Leia os termos do desenvolvedor e clique no botão criar novamente!"
4240
+
4241
+ #, fuzzy
4242
+ #~| msgid ""
4243
+ #~| "Go to the Keys and tokens tab and find the API key and API secret key"
4244
+ #~ msgid ""
4245
+ #~ "Go to the <b>Keys and tokens</b> tab and find the <b>API key</b> and "
4246
+ #~ "<b>API secret key</b>"
4247
+ #~ msgstr ""
4248
+ #~ "Vá para a aba chaves e tokens e encontre a chave da API e a chave secreta "
4249
+ #~ "da API"
4250
+
4251
+ #, fuzzy
4252
+ #~| msgid "Click on the \"Add a New App\" button"
4253
+ #~ msgid "Click on the \"<b>Add a New App\" button</b>"
4254
+ #~ msgstr "Clique no botão \"Adicionar um Novo App\""
4255
+
4256
  #, fuzzy
4257
  #~| msgid "Enter your domain name to the App Domains"
4258
  #~ msgid "Enter your domain name to the \"App Domains\" field."
4621
  #~ msgid "Connect button after login form"
4622
  #~ msgstr "Botão Conectar após o formulário de login"
4623
 
 
 
 
4624
  #~ msgid "Connect button before register form"
4625
  #~ msgstr "Botão Conectar antes de formulário de registro"
4626
 
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: 2020-08-25 13:38+0200\n"
5
- "PO-Revision-Date: 2020-08-25 13:38+0200\n"
6
  "Last-Translator: \n"
7
  "Language-Team: nextend-facebook-connect\n"
8
  "Language: ru\n"
@@ -112,29 +112,29 @@ msgstr ""
112
  msgid "User"
113
  msgstr ""
114
 
115
- #: nextend-facebook-connect/admin/admin.php:203
116
  #, php-format
117
  msgid "%s needs json_decode function."
118
  msgstr ""
119
 
120
- #: nextend-facebook-connect/admin/admin.php:203
121
  msgid "Please contact your server administrator and ask for solution!"
122
  msgstr ""
123
 
124
- #: nextend-facebook-connect/admin/admin.php:235
125
- #: nextend-facebook-connect/admin/admin.php:265
126
  msgid "Settings saved."
127
  msgstr ""
128
 
129
- #: nextend-facebook-connect/admin/admin.php:244
130
  msgid "The activation was successful"
131
  msgstr ""
132
 
133
- #: nextend-facebook-connect/admin/admin.php:255
134
  msgid "Deactivate completed."
135
  msgstr ""
136
 
137
- #: nextend-facebook-connect/admin/admin.php:433
138
  #: nextend-facebook-connect/admin/templates-provider/menu.php:15
139
  #: nextend-facebook-connect/admin/templates/providers.php:89
140
  #: nextend-facebook-connect/admin/templates/providers.php:101
@@ -142,9 +142,9 @@ msgstr ""
142
  msgid "Settings"
143
  msgstr ""
144
 
145
- #: nextend-facebook-connect/admin/admin.php:516
146
- #: nextend-facebook-connect/includes/oauth2.php:141
147
- #: nextend-facebook-connect/includes/oauth2.php:286
148
  #: nextend-facebook-connect/providers/facebook/facebook-client.php:84
149
  #: nextend-facebook-connect/providers/twitter/twitter-client.php:165
150
  #: nextend-social-login-pro/providers/apple/apple-client.php:87
@@ -153,7 +153,7 @@ msgstr ""
153
  msgid "Unexpected response: %s"
154
  msgstr ""
155
 
156
- #: nextend-facebook-connect/admin/admin.php:577
157
  #: nextend-facebook-connect/admin/templates/fix-redirect-uri.php:21
158
  #, php-format
159
  msgid ""
@@ -161,31 +161,31 @@ msgid ""
161
  "URIs in the related social applications."
162
  msgstr ""
163
 
164
- #: nextend-facebook-connect/admin/admin.php:578
165
- #: nextend-social-login-pro/providers/apple/apple.php:308
166
  msgid "Fix Error"
167
  msgstr ""
168
 
169
- #: nextend-facebook-connect/admin/admin.php:578
170
  msgid "Oauth Redirect URI"
171
  msgstr ""
172
 
173
- #: nextend-facebook-connect/admin/admin.php:595
174
  #, php-format
175
  msgid ""
176
  "%1$s detected that %2$s installed on your site. You need the Pro Addon to "
177
  "display Social Login buttons in %2$s login form!"
178
  msgstr ""
179
 
180
- #: nextend-facebook-connect/admin/admin.php:596
181
  msgid "Dismiss and check Pro Addon"
182
  msgstr ""
183
 
184
- #: nextend-facebook-connect/admin/admin.php:596
185
  msgid "Dismiss"
186
  msgstr ""
187
 
188
- #: nextend-facebook-connect/admin/admin.php:602
189
  #, php-format
190
  msgid ""
191
  "%1$s detected that %2$s installed on your site. You must set \"<b>Page for "
@@ -193,35 +193,35 @@ msgid ""
193
  "work properly."
194
  msgstr ""
195
 
196
- #: nextend-facebook-connect/admin/admin.php:603
197
  msgid "Fix now"
198
  msgstr ""
199
 
200
- #: nextend-facebook-connect/admin/admin.php:627
201
  msgid "Activate your Pro Addon"
202
  msgstr ""
203
 
204
- #: nextend-facebook-connect/admin/admin.php:628
205
  msgid ""
206
  "To be able to use the Pro features, you need to activate Nextend Social "
207
  "Login Pro Addon. You can do this by clicking on the Activate button below "
208
  "then select the related purchase."
209
  msgstr ""
210
 
211
- #: nextend-facebook-connect/admin/admin.php:633
212
- #: nextend-social-login-pro/nextend-social-login-pro.php:94
213
  msgid "Activate"
214
  msgstr ""
215
 
216
- #: nextend-facebook-connect/admin/admin.php:731
217
  msgid "License key"
218
  msgstr ""
219
 
220
- #: nextend-facebook-connect/admin/admin.php:754
221
  msgid "OAuth proxy page"
222
  msgstr ""
223
 
224
- #: nextend-facebook-connect/admin/admin.php:757
225
  msgid "Register flow page"
226
  msgstr ""
227
 
@@ -230,46 +230,51 @@ msgstr ""
230
  msgid "You have logged in successfully."
231
  msgstr ""
232
 
233
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:79
234
  msgid "Login label"
235
  msgstr ""
236
 
237
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:84
238
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:95
239
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:106
240
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:135
241
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:165
 
242
  #: nextend-facebook-connect/admin/templates/settings/privacy.php:53
243
  msgid "Reset to default"
244
  msgstr ""
245
 
246
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:89
 
 
 
 
247
  msgid "Link label"
248
  msgstr ""
249
 
250
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:101
251
  msgid "Unlink label"
252
  msgstr ""
253
 
254
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:112
255
  msgid "Default button"
256
  msgstr ""
257
 
258
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:128
259
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:158
260
  msgid "Use custom button"
261
  msgstr ""
262
 
263
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:135
264
  #, php-format
265
  msgid "Use the %s in your custom button's code to make the label show up."
266
  msgstr ""
267
 
268
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:143
269
  msgid "Icon button"
270
  msgstr ""
271
 
272
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:174
273
  #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:140
274
  #: nextend-facebook-connect/admin/templates-provider/sync-data.php:104
275
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:170
@@ -282,8 +287,8 @@ msgstr ""
282
  #: nextend-facebook-connect/admin/templates/settings/privacy.php:109
283
  #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:186
284
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:167
285
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:326
286
- #: nextend-facebook-connect/providers/facebook/admin/settings.php:57
287
  #: nextend-facebook-connect/providers/google/admin/settings.php:62
288
  #: nextend-facebook-connect/providers/twitter/admin/settings.php:48
289
  #: nextend-social-login-pro/providers/amazon/admin/settings.php:47
@@ -408,7 +413,8 @@ msgstr ""
408
  #: nextend-facebook-connect/admin/templates/settings/general.php:213
409
  #: nextend-facebook-connect/admin/templates/settings/general.php:228
410
  #: nextend-facebook-connect/admin/templates/settings/general.php:246
411
- #: nextend-facebook-connect/includes/provider-admin.php:217
 
412
  msgid "Disabled"
413
  msgstr ""
414
 
@@ -702,7 +708,8 @@ msgstr ""
702
  #: nextend-facebook-connect/admin/templates/settings/general.php:216
703
  #: nextend-facebook-connect/admin/templates/settings/general.php:231
704
  #: nextend-facebook-connect/admin/templates/settings/general.php:249
705
- #: nextend-facebook-connect/includes/provider-admin.php:220
 
706
  #: nextend-facebook-connect/providers/google/admin/settings.php:53
707
  #: nextend-social-login-pro/providers/paypal/admin/settings.php:51
708
  msgid "Enabled"
@@ -713,17 +720,17 @@ msgid "Upgrade Now"
713
  msgstr ""
714
 
715
  #: nextend-facebook-connect/admin/templates/providers.php:77
716
- #: nextend-facebook-connect/includes/provider-admin.php:204
717
  msgid "Verify Settings"
718
  msgstr ""
719
 
720
  #: nextend-facebook-connect/admin/templates/providers.php:85
721
- #: nextend-facebook-connect/includes/provider-admin.php:249
722
  msgid "Enable"
723
  msgstr ""
724
 
725
  #: nextend-facebook-connect/admin/templates/providers.php:97
726
- #: nextend-facebook-connect/includes/provider-admin.php:257
727
  msgid "Disable"
728
  msgstr ""
729
 
@@ -1251,6 +1258,18 @@ msgstr ""
1251
  msgid "Allow registration with Social login."
1252
  msgstr ""
1253
 
 
 
 
 
 
 
 
 
 
 
 
 
1254
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:29
1255
  #: nextend-facebook-connect/admin/templates/settings/memberpress.php:33
1256
  #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:33
@@ -1337,7 +1356,7 @@ msgid "Link buttons after account details"
1337
  msgstr ""
1338
 
1339
  #: nextend-facebook-connect/admin/templates/settings/privacy.php:6
1340
- #: nextend-facebook-connect/nextend-social-login.php:143
1341
  msgid ""
1342
  "By clicking Register, you accept our <a href=\"#privacy_policy_url\" target="
1343
  "\"_blank\">Privacy Policy</a>"
@@ -1365,12 +1384,12 @@ msgid "When not enabled, email will be empty."
1365
  msgstr ""
1366
 
1367
  #: nextend-facebook-connect/admin/templates/settings/privacy.php:91
1368
- #: nextend-facebook-connect/includes/avatar.php:59
1369
  msgid "Avatar"
1370
  msgstr ""
1371
 
1372
  #: nextend-facebook-connect/admin/templates/settings/privacy.php:102
1373
- #: nextend-facebook-connect/includes/provider.php:1082
1374
  msgid "Access token"
1375
  msgstr ""
1376
 
@@ -1438,6 +1457,25 @@ msgstr ""
1438
  msgid "Link buttons on"
1439
  msgstr ""
1440
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1441
  #: nextend-facebook-connect/admin/templates/test-connection.php:42
1442
  #, php-format
1443
  msgid "Network connection successful: %1$s"
@@ -1454,18 +1492,17 @@ msgid ""
1454
  "between your server and the provider."
1455
  msgstr ""
1456
 
1457
- #: nextend-facebook-connect/includes/avatar.php:60
1458
  msgid "Manage Avatar"
1459
  msgstr ""
1460
 
1461
- #: nextend-facebook-connect/includes/avatar.php:61
1462
  #, php-format
1463
  msgid "Avatar <span class=\"count\">(%s)</span>"
1464
  msgid_plural "Avatar <span class=\"count\">(%s)</span>"
1465
  msgstr[0] ""
1466
  msgstr[1] ""
1467
 
1468
- #. translators: Login screen title. 1: Login screen name, 2: Network or site name
1469
  #: nextend-facebook-connect/includes/compat-wp-login.php:63
1470
  #, php-format
1471
  msgid "%1$s &lsaquo; %2$s &#8212; WordPress"
@@ -1479,18 +1516,17 @@ msgstr ""
1479
  msgid "Powered by WordPress"
1480
  msgstr ""
1481
 
1482
- #. translators: %s: site title
1483
  #: nextend-facebook-connect/includes/compat-wp-login.php:284
1484
  #, php-format
1485
  msgctxt "site"
1486
  msgid "&larr; Back to %s"
1487
  msgstr ""
1488
 
1489
- #: nextend-facebook-connect/includes/provider-admin.php:198
1490
  msgid "Your configuration needs to be verified"
1491
  msgstr ""
1492
 
1493
- #: nextend-facebook-connect/includes/provider-admin.php:199
1494
  msgid ""
1495
  "Before you can start letting your users register with your app it needs to "
1496
  "be tested. This test makes sure that no users will have troubles with the "
@@ -1499,76 +1535,77 @@ msgid ""
1499
  "are fine."
1500
  msgstr ""
1501
 
1502
- #: nextend-facebook-connect/includes/provider-admin.php:205
1503
  msgid "Please save your changes to verify settings."
1504
  msgstr ""
1505
 
1506
- #: nextend-facebook-connect/includes/provider-admin.php:213
1507
  msgid "Works Fine"
1508
  msgstr ""
1509
 
1510
- #: nextend-facebook-connect/includes/provider-admin.php:227
1511
  #, php-format
1512
  msgid ""
1513
  "This provider is currently disabled, which means that users can’t register "
1514
  "or login via their %s account."
1515
  msgstr ""
1516
 
1517
- #: nextend-facebook-connect/includes/provider-admin.php:230
1518
  #, php-format
1519
  msgid ""
1520
  "This provider works fine, but you can test it again. If you don’t want to "
1521
  "let users register or login with %s anymore you can disable it."
1522
  msgstr ""
1523
 
1524
- #: nextend-facebook-connect/includes/provider-admin.php:233
1525
  #, php-format
1526
  msgid ""
1527
  "This provider is currently enabled, which means that users can register or "
1528
  "login via their %s account."
1529
  msgstr ""
1530
 
1531
- #: nextend-facebook-connect/includes/provider-admin.php:241
1532
  msgid "Verify Settings Again"
1533
  msgstr ""
1534
 
1535
- #: nextend-facebook-connect/includes/provider-admin.php:242
1536
  msgid "Please save your changes before verifying settings."
1537
  msgstr ""
1538
 
1539
- #: nextend-facebook-connect/includes/provider.php:357
1540
- #: nextend-facebook-connect/includes/provider.php:705
1541
- #: nextend-facebook-connect/includes/provider.php:710
1542
  msgid "Authentication successful"
1543
  msgstr ""
1544
 
1545
- #: nextend-facebook-connect/includes/provider.php:647
1546
- #: nextend-facebook-connect/includes/user.php:126
 
1547
  msgid "Authentication error"
1548
  msgstr ""
1549
 
1550
- #: nextend-facebook-connect/includes/provider.php:662
1551
  msgid "Unlink successful."
1552
  msgstr ""
1553
 
1554
- #: nextend-facebook-connect/includes/provider.php:664
1555
  msgid "Unlink is not allowed!"
1556
  msgstr ""
1557
 
1558
- #: nextend-facebook-connect/includes/provider.php:868
1559
- #: nextend-facebook-connect/includes/provider.php:875
1560
  msgid "The test was successful"
1561
  msgstr ""
1562
 
1563
- #: nextend-facebook-connect/includes/provider.php:921
1564
  msgid "Authentication failed"
1565
  msgstr ""
1566
 
1567
- #: nextend-facebook-connect/includes/provider.php:1074
1568
  msgid "Identifier"
1569
  msgstr ""
1570
 
1571
- #: nextend-facebook-connect/includes/provider.php:1090
1572
  msgid "Profile picture"
1573
  msgstr ""
1574
 
@@ -1583,15 +1620,15 @@ msgstr ""
1583
  #, php-format
1584
  msgid ""
1585
  "You have already linked a(n) %s account. Please unlink the current and then "
1586
- "you can link other %s account."
1587
  msgstr ""
1588
 
1589
  #: nextend-facebook-connect/includes/user.php:82
1590
  #, php-format
1591
- msgid "This %s account is already linked to other user."
1592
  msgstr ""
1593
 
1594
- #: nextend-facebook-connect/includes/user.php:122
1595
  msgid "User registration is currently not allowed."
1596
  msgstr ""
1597
 
@@ -1599,14 +1636,12 @@ msgstr ""
1599
  msgid "Register For This Site!"
1600
  msgstr ""
1601
 
1602
- #. translators: %2$s: PHP version
1603
- #: nextend-facebook-connect/nextend-facebook-connect.php:34
1604
  #, php-format
1605
  msgid "%1$s requires PHP version %2$s+, plugin is currently NOT ACTIVE."
1606
  msgstr ""
1607
 
1608
- #. translators: %2$s: WordPress version
1609
- #: nextend-facebook-connect/nextend-facebook-connect.php:41
1610
  #, php-format
1611
  msgid ""
1612
  "%1$s requires WordPress version %2$s+. Because you are using an earlier "
@@ -1624,12 +1659,12 @@ msgstr ""
1624
  msgid "Update now!"
1625
  msgstr ""
1626
 
1627
- #: nextend-facebook-connect/nextend-social-login.php:749
1628
- #: nextend-facebook-connect/nextend-social-login.php:1125
1629
  msgid "Social Login"
1630
  msgstr ""
1631
 
1632
- #: nextend-facebook-connect/nextend-social-login.php:1106
1633
  msgid "Social Accounts"
1634
  msgstr ""
1635
 
@@ -1694,7 +1729,7 @@ msgid "In the left sidebar, click on \"<b>Facebook Login > Settings</b>\""
1694
  msgstr ""
1695
 
1696
  #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:12
1697
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:34
1698
  #, php-format
1699
  msgid ""
1700
  "Add the following URL to the \"<b>Valid OAuth redirect URIs</b>\" field: <b>"
@@ -1777,7 +1812,9 @@ msgid "Navigate to %s"
1777
  msgstr ""
1778
 
1779
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:26
1780
- msgid "Click on the \"<b>Add a New App\" button</b>"
 
 
1781
  msgstr ""
1782
 
1783
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:27
@@ -1790,89 +1827,133 @@ msgstr ""
1790
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:28
1791
  #, php-format
1792
  msgid ""
1793
- "Fill \"<b>Display Name</b>\" and \"<b>Contact Email</b>\". The specified "
1794
- "\"Display Name\" will appear on your %s!"
1795
  msgstr ""
1796
 
1797
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:29
1798
  msgid ""
1799
- "Click the \"<b>Create App ID</b>\" button and complete the Security Check."
 
1800
  msgstr ""
1801
 
1802
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:30
 
 
 
 
 
1803
  #, php-format
1804
  msgid ""
1805
  "At the \"<b>Add a Product</b>\" panel find \"<b>%1$s</b>\" and click "
1806
  "\"<b>Set Up</b>\""
1807
  msgstr ""
1808
 
1809
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:31
1810
  #, php-format
1811
  msgid ""
1812
  "Select \"<b>Web</b>\" and enter the following URL to the \"<b>Site URL</b>\" "
1813
  "field: <b>%s</b>"
1814
  msgstr ""
1815
 
1816
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:32
1817
  msgid "Press “<b>Save</b>”"
1818
  msgstr ""
1819
 
1820
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:33
1821
  #, php-format
1822
  msgid ""
1823
  "Click on the “<b>%1$s</b>” option what you find on the left side, under “<b>"
1824
  "%2$s</b> - <b>%3$s</b>”"
1825
  msgstr ""
1826
 
1827
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:35
1828
  msgid "Click on “<b>Save Changes</b>”"
1829
  msgstr ""
1830
 
1831
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:36
1832
  #, php-format
1833
  msgid ""
1834
  "On the top left side, click on the “<b>%1$s</b>” menu point, then click “<b>"
1835
  "%2$s</b>”"
1836
  msgstr ""
1837
 
1838
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:37
1839
  #, php-format
1840
  msgid ""
1841
  "Enter your domain name to the \"<b>App Domains</b>\" field, probably: <b>%s</"
1842
  "b>"
1843
  msgstr ""
1844
 
1845
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:38
1846
  msgid ""
1847
  "Fill up the \"<b>Privacy Policy URL</b>\" field. Provide a publicly "
1848
  "available and easily accessible privacy policy that explains what data you "
1849
  "are collecting and how you will use that data."
1850
  msgstr ""
1851
 
1852
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:39
 
 
 
 
 
 
 
 
 
 
 
 
 
1853
  msgid ""
1854
- "Select a “<b>Category</b>”, an “<b>App Icon</b>” and pick the “<b>Business "
1855
- "Use</b>” option that describes your the App best, then press \"<b>Save "
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1856
  "Changes</b>\""
1857
  msgstr ""
1858
 
1859
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:40
1860
  msgid ""
1861
  "Your application is currently private, which means that only you can log in "
1862
  "with it. In the top bar click on the switch next to the \"<b>In development</"
1863
  "b>\" label, then click the \"<b>Switch Mode</b>\" button."
1864
  msgstr ""
1865
 
1866
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:41
1867
  msgid ""
1868
  "At the top of the page you can find your \"<b>App ID</b>\" and you can see "
1869
  "your \"<b>App secret</b>\" if you click on the \"Show\" button. These will "
1870
  "be needed in plugin’s settings."
1871
  msgstr ""
1872
 
1873
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:45
 
 
 
 
 
 
 
 
 
 
 
1874
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:40
1875
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:32
1876
  #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:39
1877
  #: nextend-social-login-pro/providers/apple/admin/getting-started.php:122
1878
  #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:30
@@ -1942,38 +2023,55 @@ msgstr ""
1942
  msgid "App Secret"
1943
  msgstr ""
1944
 
1945
- #: nextend-facebook-connect/providers/facebook/facebook.php:84
 
 
 
 
 
 
 
 
 
 
 
1946
  msgid "Continue with <b>Facebook</b>"
1947
  msgstr "Войти через <b>Facebook</b>"
1948
 
1949
- #: nextend-facebook-connect/providers/facebook/facebook.php:85
 
 
 
 
 
 
1950
  msgid "Link account with <b>Facebook</b>"
1951
  msgstr "Связать аккаунты с <b>Facebook</b>"
1952
 
1953
- #: nextend-facebook-connect/providers/facebook/facebook.php:86
1954
  msgid "Unlink account from <b>Facebook</b>"
1955
  msgstr "Отвязать аккаунты от <b>Facebook</b>"
1956
 
1957
- #: nextend-facebook-connect/providers/facebook/facebook.php:186
1958
- #: nextend-facebook-connect/providers/google/google.php:174
1959
- #: nextend-facebook-connect/providers/twitter/twitter.php:95
1960
- #: nextend-social-login-pro/providers/amazon/amazon.php:65
1961
- #: nextend-social-login-pro/providers/apple/apple.php:129
1962
- #: nextend-social-login-pro/providers/apple/apple.php:136
1963
- #: nextend-social-login-pro/providers/disqus/disqus.php:112
1964
- #: nextend-social-login-pro/providers/github/github.php:150
1965
- #: nextend-social-login-pro/providers/linkedin/linkedin.php:63
1966
- #: nextend-social-login-pro/providers/paypal/paypal.php:90
1967
- #: nextend-social-login-pro/providers/vk/vk.php:61
1968
- #: nextend-social-login-pro/providers/wordpress/wordpress.php:99
1969
- #: nextend-social-login-pro/providers/yahoo/yahoo.php:90
1970
  #, php-format
1971
  msgid ""
1972
  "The %1$s entered did not appear to be a valid. Please enter a valid %2$s."
1973
  msgstr ""
1974
 
1975
- #: nextend-facebook-connect/providers/facebook/facebook.php:307
1976
- #: nextend-social-login-pro/providers/paypal/paypal.php:170
1977
  #, php-format
1978
  msgid "Required scope: %1$s"
1979
  msgstr ""
@@ -2121,42 +2219,59 @@ msgid ""
2121
  "Disable, when you don't want to see the account select prompt on each login."
2122
  msgstr ""
2123
 
2124
- #: nextend-facebook-connect/providers/google/google.php:106
2125
  msgid "Continue with <b>Google</b>"
2126
  msgstr "Войти через <b>Google</b>"
2127
 
2128
- #: nextend-facebook-connect/providers/google/google.php:107
 
 
 
 
 
 
2129
  msgid "Link account with <b>Google</b>"
2130
  msgstr "Связать аккаунты с <b>Google</b>"
2131
 
2132
- #: nextend-facebook-connect/providers/google/google.php:108
2133
  msgid "Unlink account from <b>Google</b>"
2134
  msgstr "Отвязать аккаунты от <b>Google</b>"
2135
 
2136
- #: nextend-facebook-connect/providers/google/google.php:301
2137
  #, php-format
2138
  msgid "Required API: %1$s"
2139
  msgstr ""
2140
 
2141
  #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:10
2142
- msgid "Find your App and click on the \"<b>Details</b>\" button"
 
 
2143
  msgstr ""
2144
 
2145
  #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:11
2146
- msgid ""
2147
- "The <b>Edit</b> button can be found on the App details tab. Click on it and "
2148
- "select \"<b>Edit details</b>\""
2149
  msgstr ""
2150
 
2151
  #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:12
2152
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:22
2153
  #, php-format
2154
  msgid "Add the following URL to the \"<b>Callback URLs</b>\" field: <b>%s</b>"
2155
  msgstr ""
2156
 
2157
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:17
 
 
 
 
 
 
 
 
 
 
 
2158
  #, php-format
2159
- msgid "Log in with your %s credentials if you are not logged in yet"
2160
  msgstr ""
2161
 
2162
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:18
@@ -2173,44 +2288,68 @@ msgid ""
2173
  msgstr ""
2174
 
2175
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:20
2176
- #, php-format
2177
- msgid ""
2178
- "Fill the <b>App name</b>, <b>Application description</b> fields. Then enter "
2179
- "your site's URL to the <b>Website URL</b> field: <b>%s</b>"
2180
  msgstr ""
2181
 
2182
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:21
2183
- msgid "Tick the checkbox next to <b>Enable Sign in with Twitter</b>!"
 
 
 
 
 
 
2184
  msgstr ""
2185
 
2186
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:23
2187
  msgid ""
2188
- "Fill the “<b>Terms of Service URL</b>\", \"<b>Privacy policy URL</b>\" and "
2189
- "\"<b>Tell us how this app will be used</b>\" fields!"
 
2190
  msgstr ""
2191
 
2192
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:24
2193
- msgid "Click the <b>Create</b> button."
 
2194
  msgstr ""
2195
 
2196
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:25
2197
- msgid "Read the Developer Terms and click the <b>Create</b> button again!"
2198
  msgstr ""
2199
 
2200
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:26
2201
- msgid "Select the <b>Permissions</b> tab and click <b>Edit</b>."
2202
  msgstr ""
2203
 
2204
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:27
2205
- msgid ""
2206
- "Tick the <b>Request email address from users</b> under the Additional "
2207
- "permissions section and click <b>Save</b>."
2208
  msgstr ""
2209
 
2210
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:28
 
 
 
 
 
 
 
 
 
 
2211
  msgid ""
2212
- "Go to the <b>Keys and tokens</b> tab and find the <b>API key</b> and <b>API "
2213
- "secret key</b>"
 
 
 
 
 
 
 
 
 
 
 
2214
  msgstr ""
2215
 
2216
  #: nextend-facebook-connect/providers/twitter/admin/settings.php:27
@@ -2230,15 +2369,21 @@ msgstr ""
2230
  msgid "Original"
2231
  msgstr ""
2232
 
2233
- #: nextend-facebook-connect/providers/twitter/twitter.php:69
2234
  msgid "Continue with <b>Twitter</b>"
2235
  msgstr "Войти через <b>Twitter</b>"
2236
 
2237
- #: nextend-facebook-connect/providers/twitter/twitter.php:70
 
 
 
 
 
 
2238
  msgid "Link account with <b>Twitter</b>"
2239
  msgstr "Связать аккаунты с <b>Twitter</b>"
2240
 
2241
- #: nextend-facebook-connect/providers/twitter/twitter.php:71
2242
  msgid "Unlink account from <b>Twitter</b>"
2243
  msgstr "Отвязать аккаунты от <b>Twitter</b>"
2244
 
@@ -2356,20 +2501,20 @@ msgid ""
2356
  "with %1$s."
2357
  msgstr ""
2358
 
2359
- #: nextend-social-login-pro/nextend-social-login-pro.php:88
2360
  #, php-format
2361
  msgid "Please install and activate %1$s to use the %2$s"
2362
  msgstr ""
2363
 
2364
- #: nextend-social-login-pro/nextend-social-login-pro.php:102
2365
  msgid "Network Activate"
2366
  msgstr ""
2367
 
2368
- #: nextend-social-login-pro/nextend-social-login-pro.php:114
2369
  msgid "Install now!"
2370
  msgstr ""
2371
 
2372
- #: nextend-social-login-pro/nextend-social-login-pro.php:787
2373
  msgid "Social Providers"
2374
  msgstr ""
2375
 
@@ -2380,7 +2525,7 @@ msgid ""
2380
  "latest %2$s version!"
2381
  msgstr ""
2382
 
2383
- #: nextend-social-login-pro/provider-extensions/google.php:176
2384
  #, php-format
2385
  msgid ""
2386
  "Most of these information can only be retrieved, when the field is marked as "
@@ -2427,21 +2572,6 @@ msgid ""
2427
  "%1$s App."
2428
  msgstr ""
2429
 
2430
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:25
2431
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:38
2432
- #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:9
2433
- #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:16
2434
- #: nextend-social-login-pro/providers/github/admin/getting-started.php:16
2435
- #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:9
2436
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:17
2437
- #: nextend-social-login-pro/providers/vk/admin/getting-started.php:16
2438
- #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:9
2439
- #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:16
2440
- #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:17
2441
- #, php-format
2442
- msgid "Log in with your %s credentials if you are not logged in."
2443
- msgstr ""
2444
-
2445
  #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:27
2446
  msgid ""
2447
  "If you don't have a Security Profile yet, you'll need to create one. You can "
@@ -2477,17 +2607,22 @@ msgid ""
2477
  "middle of the page, under the \"<b>Web Settings</b>\" tab."
2478
  msgstr ""
2479
 
2480
- #: nextend-social-login-pro/providers/amazon/amazon.php:39
2481
  msgid "Continue with <b>Amazon</b>"
2482
- msgstr ""
2483
 
2484
- #: nextend-social-login-pro/providers/amazon/amazon.php:40
 
 
 
 
 
2485
  msgid "Link account with <b>Amazon</b>"
2486
- msgstr ""
2487
 
2488
- #: nextend-social-login-pro/providers/amazon/amazon.php:41
2489
  msgid "Unlink account from <b>Amazon</b>"
2490
- msgstr ""
2491
 
2492
  #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:21
2493
  msgid "Click on the name of your service."
@@ -2790,53 +2925,51 @@ msgstr ""
2790
  msgid "Generate Token"
2791
  msgstr ""
2792
 
2793
- #: nextend-social-login-pro/providers/apple/apple.php:82
2794
- #, fuzzy
2795
- #| msgid "Continue with <b>Google</b>"
2796
  msgid "Continue with <b>Apple</b>"
2797
- msgstr "Войти через <b>Google</b>"
2798
 
2799
- #: nextend-social-login-pro/providers/apple/apple.php:83
2800
- #, fuzzy
2801
- #| msgid "Link account with <b>Google</b>"
 
 
2802
  msgid "Link account with <b>Apple</b>"
2803
- msgstr "Связать аккаунты с <b>Google</b>"
2804
 
2805
- #: nextend-social-login-pro/providers/apple/apple.php:84
2806
- #, fuzzy
2807
- #| msgid "Unlink account from <b>Google</b>"
2808
  msgid "Unlink account from <b>Apple</b>"
2809
- msgstr "Отвязать аккаунты от <b>Google</b>"
2810
 
2811
- #: nextend-social-login-pro/providers/apple/apple.php:178
2812
  #, php-format
2813
  msgid "An error occurred when storing of the expiration timestamp : %1$s"
2814
  msgstr ""
2815
 
2816
- #: nextend-social-login-pro/providers/apple/apple.php:182
2817
- #: nextend-social-login-pro/providers/apple/apple.php:280
2818
- #: nextend-social-login-pro/providers/apple/apple.php:295
2819
- #: nextend-social-login-pro/providers/apple/apple.php:339
2820
  #, php-format
2821
  msgid "Token generation failed: %1$s"
2822
  msgstr ""
2823
 
2824
- #: nextend-social-login-pro/providers/apple/apple.php:182
2825
  msgid "Please check your credentials!"
2826
  msgstr ""
2827
 
2828
- #: nextend-social-login-pro/providers/apple/apple.php:280
2829
  msgid "Private key format is not valid!"
2830
  msgstr ""
2831
 
2832
- #: nextend-social-login-pro/providers/apple/apple.php:306
2833
  #, php-format
2834
  msgid ""
2835
  "%s detected that your Apple credentials have expired. Please delete the "
2836
  "current credentials and generate new one!"
2837
  msgstr ""
2838
 
2839
- #: nextend-social-login-pro/providers/apple/apple.php:308
2840
  msgid "Apple Credentials"
2841
  msgstr ""
2842
 
@@ -2913,17 +3046,22 @@ msgstr ""
2913
  msgid "API Secret"
2914
  msgstr ""
2915
 
2916
- #: nextend-social-login-pro/providers/disqus/disqus.php:86
2917
  msgid "Continue with <b>Disqus</b>"
2918
- msgstr ""
2919
 
2920
- #: nextend-social-login-pro/providers/disqus/disqus.php:87
 
 
 
 
 
2921
  msgid "Link account with <b>Disqus</b>"
2922
- msgstr ""
2923
 
2924
- #: nextend-social-login-pro/providers/disqus/disqus.php:88
2925
  msgid "Unlink account from <b>Disqus</b>"
2926
- msgstr ""
2927
 
2928
  #: nextend-social-login-pro/providers/github/admin/fix-redirect-uri.php:10
2929
  #, php-format
@@ -2995,23 +3133,22 @@ msgid ""
2995
  "public email address set at the %1$s profile page%2$s!"
2996
  msgstr ""
2997
 
2998
- #: nextend-social-login-pro/providers/github/github.php:124
2999
- #, fuzzy
3000
- #| msgid "Continue with <b>VK</b>"
3001
  msgid "Continue with <b>GitHub</b>"
3002
- msgstr "Войти через <b>VK</b>"
3003
 
3004
- #: nextend-social-login-pro/providers/github/github.php:125
3005
  #, fuzzy
3006
- #| msgid "Link account with <b>VK</b>"
 
 
 
3007
  msgid "Link account with <b>GitHub</b>"
3008
- msgstr "Связать аккаунты с <b>VK</b>"
3009
 
3010
- #: nextend-social-login-pro/providers/github/github.php:126
3011
- #, fuzzy
3012
- #| msgid "Unlink account from <b>VK</b>"
3013
  msgid "Unlink account from <b>GitHub</b>"
3014
- msgstr "Отвязать аккаунты от <b>VK</b>"
3015
 
3016
  #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:10
3017
  msgid "Click on your App and go to the \"<b>Auth</b>\" tab."
@@ -3091,17 +3228,22 @@ msgid ""
3091
  "the Application credentials section, on the <b>Auth</b> tab."
3092
  msgstr ""
3093
 
3094
- #: nextend-social-login-pro/providers/linkedin/linkedin.php:37
3095
  msgid "Continue with <b>LinkedIn</b>"
3096
- msgstr ""
3097
 
3098
- #: nextend-social-login-pro/providers/linkedin/linkedin.php:38
 
 
 
 
 
3099
  msgid "Link account with <b>LinkedIn</b>"
3100
- msgstr ""
3101
 
3102
- #: nextend-social-login-pro/providers/linkedin/linkedin.php:39
3103
  msgid "Unlink account from <b>LinkedIn</b>"
3104
- msgstr ""
3105
 
3106
  #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:10
3107
  #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:18
@@ -3200,17 +3342,22 @@ msgstr ""
3200
  msgid "Disable, when you have no rights for email address."
3201
  msgstr ""
3202
 
3203
- #: nextend-social-login-pro/providers/paypal/paypal.php:64
3204
  msgid "Continue with <b>PayPal</b>"
3205
- msgstr ""
3206
 
3207
- #: nextend-social-login-pro/providers/paypal/paypal.php:65
 
 
 
 
 
3208
  msgid "Link account with <b>PayPal</b>"
3209
- msgstr ""
3210
 
3211
- #: nextend-social-login-pro/providers/paypal/paypal.php:66
3212
  msgid "Unlink account from <b>PayPal</b>"
3213
- msgstr ""
3214
 
3215
  #: nextend-social-login-pro/providers/vk/admin/fix-redirect-uri.php:10
3216
  msgid "Click on the \"<b>Manage</b>\" button next to the associated App."
@@ -3285,15 +3432,21 @@ msgstr ""
3285
  msgid "Secure key"
3286
  msgstr ""
3287
 
3288
- #: nextend-social-login-pro/providers/vk/vk.php:35
3289
  msgid "Continue with <b>VK</b>"
3290
  msgstr "Войти через <b>VK</b>"
3291
 
3292
- #: nextend-social-login-pro/providers/vk/vk.php:36
 
 
 
 
 
 
3293
  msgid "Link account with <b>VK</b>"
3294
  msgstr "Связать аккаунты с <b>VK</b>"
3295
 
3296
- #: nextend-social-login-pro/providers/vk/vk.php:37
3297
  msgid "Unlink account from <b>VK</b>"
3298
  msgstr "Отвязать аккаунты от <b>VK</b>"
3299
 
@@ -3350,17 +3503,22 @@ msgid ""
3350
  "These will be needed in the plugin's settings."
3351
  msgstr ""
3352
 
3353
- #: nextend-social-login-pro/providers/wordpress/wordpress.php:73
3354
  msgid "Continue with <b>WordPress.com</b>"
3355
- msgstr ""
3356
 
3357
- #: nextend-social-login-pro/providers/wordpress/wordpress.php:74
 
 
 
 
 
3358
  msgid "Link account with <b>WordPress.com</b>"
3359
- msgstr ""
3360
 
3361
- #: nextend-social-login-pro/providers/wordpress/wordpress.php:75
3362
  msgid "Unlink account from <b>WordPress.com</b>"
3363
- msgstr ""
3364
 
3365
  #: nextend-social-login-pro/providers/yahoo/admin/fix-redirect-uri.php:10
3366
  msgid "Click on the App which has its credentials associated with the plugin."
@@ -3409,25 +3567,23 @@ msgid ""
3409
  "\"<b>Client Secret</b>\"! These will be needed in the plugin's settings."
3410
  msgstr ""
3411
 
3412
- #: nextend-social-login-pro/providers/yahoo/yahoo.php:64
3413
- #, fuzzy
3414
- #| msgid "Continue with <b>Facebook</b>"
3415
  msgid "Continue with <b>Yahoo</b>"
3416
- msgstr "Войти через <b>Facebook</b>"
3417
 
3418
- #: nextend-social-login-pro/providers/yahoo/yahoo.php:65
3419
- #, fuzzy
3420
- #| msgid "Link account with <b>Facebook</b>"
 
 
3421
  msgid "Link account with <b>Yahoo</b>"
3422
- msgstr "Связать аккаунты с <b>Facebook</b>"
3423
 
3424
- #: nextend-social-login-pro/providers/yahoo/yahoo.php:66
3425
- #, fuzzy
3426
- #| msgid "Unlink account from <b>Facebook</b>"
3427
  msgid "Unlink account from <b>Yahoo</b>"
3428
- msgstr "Отвязать аккаунты от <b>Facebook</b>"
3429
 
3430
- #: nextend-social-login-pro/providers/yahoo/yahoo.php:186
3431
  #, php-format
3432
  msgid "Required permission: %1$s"
3433
  msgstr ""
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: nextend-facebook-connect\n"
4
+ "POT-Creation-Date: 2021-01-27 13:58+0100\n"
5
+ "PO-Revision-Date: 2021-01-27 13:58+0100\n"
6
  "Last-Translator: \n"
7
  "Language-Team: nextend-facebook-connect\n"
8
  "Language: ru\n"
112
  msgid "User"
113
  msgstr ""
114
 
115
+ #: nextend-facebook-connect/admin/admin.php:206
116
  #, php-format
117
  msgid "%s needs json_decode function."
118
  msgstr ""
119
 
120
+ #: nextend-facebook-connect/admin/admin.php:206
121
  msgid "Please contact your server administrator and ask for solution!"
122
  msgstr ""
123
 
124
+ #: nextend-facebook-connect/admin/admin.php:238
125
+ #: nextend-facebook-connect/admin/admin.php:268
126
  msgid "Settings saved."
127
  msgstr ""
128
 
129
+ #: nextend-facebook-connect/admin/admin.php:247
130
  msgid "The activation was successful"
131
  msgstr ""
132
 
133
+ #: nextend-facebook-connect/admin/admin.php:258
134
  msgid "Deactivate completed."
135
  msgstr ""
136
 
137
+ #: nextend-facebook-connect/admin/admin.php:437
138
  #: nextend-facebook-connect/admin/templates-provider/menu.php:15
139
  #: nextend-facebook-connect/admin/templates/providers.php:89
140
  #: nextend-facebook-connect/admin/templates/providers.php:101
142
  msgid "Settings"
143
  msgstr ""
144
 
145
+ #: nextend-facebook-connect/admin/admin.php:520
146
+ #: nextend-facebook-connect/includes/oauth2.php:143
147
+ #: nextend-facebook-connect/includes/oauth2.php:288
148
  #: nextend-facebook-connect/providers/facebook/facebook-client.php:84
149
  #: nextend-facebook-connect/providers/twitter/twitter-client.php:165
150
  #: nextend-social-login-pro/providers/apple/apple-client.php:87
153
  msgid "Unexpected response: %s"
154
  msgstr ""
155
 
156
+ #: nextend-facebook-connect/admin/admin.php:581
157
  #: nextend-facebook-connect/admin/templates/fix-redirect-uri.php:21
158
  #, php-format
159
  msgid ""
161
  "URIs in the related social applications."
162
  msgstr ""
163
 
164
+ #: nextend-facebook-connect/admin/admin.php:582
165
+ #: nextend-social-login-pro/providers/apple/apple.php:310
166
  msgid "Fix Error"
167
  msgstr ""
168
 
169
+ #: nextend-facebook-connect/admin/admin.php:582
170
  msgid "Oauth Redirect URI"
171
  msgstr ""
172
 
173
+ #: nextend-facebook-connect/admin/admin.php:599
174
  #, php-format
175
  msgid ""
176
  "%1$s detected that %2$s installed on your site. You need the Pro Addon to "
177
  "display Social Login buttons in %2$s login form!"
178
  msgstr ""
179
 
180
+ #: nextend-facebook-connect/admin/admin.php:600
181
  msgid "Dismiss and check Pro Addon"
182
  msgstr ""
183
 
184
+ #: nextend-facebook-connect/admin/admin.php:600
185
  msgid "Dismiss"
186
  msgstr ""
187
 
188
+ #: nextend-facebook-connect/admin/admin.php:606
189
  #, php-format
190
  msgid ""
191
  "%1$s detected that %2$s installed on your site. You must set \"<b>Page for "
193
  "work properly."
194
  msgstr ""
195
 
196
+ #: nextend-facebook-connect/admin/admin.php:607
197
  msgid "Fix now"
198
  msgstr ""
199
 
200
+ #: nextend-facebook-connect/admin/admin.php:631
201
  msgid "Activate your Pro Addon"
202
  msgstr ""
203
 
204
+ #: nextend-facebook-connect/admin/admin.php:632
205
  msgid ""
206
  "To be able to use the Pro features, you need to activate Nextend Social "
207
  "Login Pro Addon. You can do this by clicking on the Activate button below "
208
  "then select the related purchase."
209
  msgstr ""
210
 
211
+ #: nextend-facebook-connect/admin/admin.php:637
212
+ #: nextend-social-login-pro/nextend-social-login-pro.php:110
213
  msgid "Activate"
214
  msgstr ""
215
 
216
+ #: nextend-facebook-connect/admin/admin.php:735
217
  msgid "License key"
218
  msgstr ""
219
 
220
+ #: nextend-facebook-connect/admin/admin.php:758
221
  msgid "OAuth proxy page"
222
  msgstr ""
223
 
224
+ #: nextend-facebook-connect/admin/admin.php:761
225
  msgid "Register flow page"
226
  msgstr ""
227
 
230
  msgid "You have logged in successfully."
231
  msgstr ""
232
 
233
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:80
234
  msgid "Login label"
235
  msgstr ""
236
 
237
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:85
238
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:101
239
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:114
240
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:125
241
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:154
242
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:184
243
  #: nextend-facebook-connect/admin/templates/settings/privacy.php:53
244
  msgid "Reset to default"
245
  msgstr ""
246
 
247
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:95
248
+ msgid "Register label"
249
+ msgstr ""
250
+
251
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:108
252
  msgid "Link label"
253
  msgstr ""
254
 
255
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:120
256
  msgid "Unlink label"
257
  msgstr ""
258
 
259
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:131
260
  msgid "Default button"
261
  msgstr ""
262
 
263
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:147
264
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:177
265
  msgid "Use custom button"
266
  msgstr ""
267
 
268
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:154
269
  #, php-format
270
  msgid "Use the %s in your custom button's code to make the label show up."
271
  msgstr ""
272
 
273
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:162
274
  msgid "Icon button"
275
  msgstr ""
276
 
277
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:193
278
  #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:140
279
  #: nextend-facebook-connect/admin/templates-provider/sync-data.php:104
280
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:170
287
  #: nextend-facebook-connect/admin/templates/settings/privacy.php:109
288
  #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:186
289
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:167
290
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:341
291
+ #: nextend-facebook-connect/providers/facebook/admin/settings.php:67
292
  #: nextend-facebook-connect/providers/google/admin/settings.php:62
293
  #: nextend-facebook-connect/providers/twitter/admin/settings.php:48
294
  #: nextend-social-login-pro/providers/amazon/admin/settings.php:47
413
  #: nextend-facebook-connect/admin/templates/settings/general.php:213
414
  #: nextend-facebook-connect/admin/templates/settings/general.php:228
415
  #: nextend-facebook-connect/admin/templates/settings/general.php:246
416
+ #: nextend-facebook-connect/admin/templates/settings/general.php:261
417
+ #: nextend-facebook-connect/includes/provider-admin.php:218
418
  msgid "Disabled"
419
  msgstr ""
420
 
708
  #: nextend-facebook-connect/admin/templates/settings/general.php:216
709
  #: nextend-facebook-connect/admin/templates/settings/general.php:231
710
  #: nextend-facebook-connect/admin/templates/settings/general.php:249
711
+ #: nextend-facebook-connect/admin/templates/settings/general.php:264
712
+ #: nextend-facebook-connect/includes/provider-admin.php:221
713
  #: nextend-facebook-connect/providers/google/admin/settings.php:53
714
  #: nextend-social-login-pro/providers/paypal/admin/settings.php:51
715
  msgid "Enabled"
720
  msgstr ""
721
 
722
  #: nextend-facebook-connect/admin/templates/providers.php:77
723
+ #: nextend-facebook-connect/includes/provider-admin.php:205
724
  msgid "Verify Settings"
725
  msgstr ""
726
 
727
  #: nextend-facebook-connect/admin/templates/providers.php:85
728
+ #: nextend-facebook-connect/includes/provider-admin.php:250
729
  msgid "Enable"
730
  msgstr ""
731
 
732
  #: nextend-facebook-connect/admin/templates/providers.php:97
733
+ #: nextend-facebook-connect/includes/provider-admin.php:258
734
  msgid "Disable"
735
  msgstr ""
736
 
1258
  msgid "Allow registration with Social login."
1259
  msgstr ""
1260
 
1261
+ #: nextend-facebook-connect/admin/templates/settings/general.php:256
1262
+ msgid "Custom label for register buttons"
1263
+ msgstr ""
1264
+
1265
+ #: nextend-facebook-connect/admin/templates/settings/general.php:266
1266
+ #, php-format
1267
+ msgid ""
1268
+ "Set a custom label for the social buttons in registration forms and for "
1269
+ "shortcodes with %1$s parameter set to %2$s.<br>The register specific labels "
1270
+ "can be modified at the Buttons tab of each provider."
1271
+ msgstr ""
1272
+
1273
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:29
1274
  #: nextend-facebook-connect/admin/templates/settings/memberpress.php:33
1275
  #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:33
1356
  msgstr ""
1357
 
1358
  #: nextend-facebook-connect/admin/templates/settings/privacy.php:6
1359
+ #: nextend-facebook-connect/nextend-social-login.php:148
1360
  msgid ""
1361
  "By clicking Register, you accept our <a href=\"#privacy_policy_url\" target="
1362
  "\"_blank\">Privacy Policy</a>"
1384
  msgstr ""
1385
 
1386
  #: nextend-facebook-connect/admin/templates/settings/privacy.php:91
1387
+ #: nextend-facebook-connect/includes/avatar.php:49
1388
  msgid "Avatar"
1389
  msgstr ""
1390
 
1391
  #: nextend-facebook-connect/admin/templates/settings/privacy.php:102
1392
+ #: nextend-facebook-connect/includes/provider.php:1100
1393
  msgid "Access token"
1394
  msgstr ""
1395
 
1457
  msgid "Link buttons on"
1458
  msgstr ""
1459
 
1460
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:323
1461
+ msgid "Email template for registration"
1462
+ msgstr ""
1463
+
1464
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:328
1465
+ msgid "WordPress default notification"
1466
+ msgstr ""
1467
+
1468
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:331
1469
+ msgid "WooCommerce registration notification"
1470
+ msgstr ""
1471
+
1472
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:333
1473
+ #, php-format
1474
+ msgid ""
1475
+ "Defines whether the registration with %1$s will send the same registration "
1476
+ "notification that %2$s does, instead of the %3$s default one."
1477
+ msgstr ""
1478
+
1479
  #: nextend-facebook-connect/admin/templates/test-connection.php:42
1480
  #, php-format
1481
  msgid "Network connection successful: %1$s"
1492
  "between your server and the provider."
1493
  msgstr ""
1494
 
1495
+ #: nextend-facebook-connect/includes/avatar.php:50
1496
  msgid "Manage Avatar"
1497
  msgstr ""
1498
 
1499
+ #: nextend-facebook-connect/includes/avatar.php:51
1500
  #, php-format
1501
  msgid "Avatar <span class=\"count\">(%s)</span>"
1502
  msgid_plural "Avatar <span class=\"count\">(%s)</span>"
1503
  msgstr[0] ""
1504
  msgstr[1] ""
1505
 
 
1506
  #: nextend-facebook-connect/includes/compat-wp-login.php:63
1507
  #, php-format
1508
  msgid "%1$s &lsaquo; %2$s &#8212; WordPress"
1516
  msgid "Powered by WordPress"
1517
  msgstr ""
1518
 
 
1519
  #: nextend-facebook-connect/includes/compat-wp-login.php:284
1520
  #, php-format
1521
  msgctxt "site"
1522
  msgid "&larr; Back to %s"
1523
  msgstr ""
1524
 
1525
+ #: nextend-facebook-connect/includes/provider-admin.php:199
1526
  msgid "Your configuration needs to be verified"
1527
  msgstr ""
1528
 
1529
+ #: nextend-facebook-connect/includes/provider-admin.php:200
1530
  msgid ""
1531
  "Before you can start letting your users register with your app it needs to "
1532
  "be tested. This test makes sure that no users will have troubles with the "
1535
  "are fine."
1536
  msgstr ""
1537
 
1538
+ #: nextend-facebook-connect/includes/provider-admin.php:206
1539
  msgid "Please save your changes to verify settings."
1540
  msgstr ""
1541
 
1542
+ #: nextend-facebook-connect/includes/provider-admin.php:214
1543
  msgid "Works Fine"
1544
  msgstr ""
1545
 
1546
+ #: nextend-facebook-connect/includes/provider-admin.php:228
1547
  #, php-format
1548
  msgid ""
1549
  "This provider is currently disabled, which means that users can’t register "
1550
  "or login via their %s account."
1551
  msgstr ""
1552
 
1553
+ #: nextend-facebook-connect/includes/provider-admin.php:231
1554
  #, php-format
1555
  msgid ""
1556
  "This provider works fine, but you can test it again. If you don’t want to "
1557
  "let users register or login with %s anymore you can disable it."
1558
  msgstr ""
1559
 
1560
+ #: nextend-facebook-connect/includes/provider-admin.php:234
1561
  #, php-format
1562
  msgid ""
1563
  "This provider is currently enabled, which means that users can register or "
1564
  "login via their %s account."
1565
  msgstr ""
1566
 
1567
+ #: nextend-facebook-connect/includes/provider-admin.php:242
1568
  msgid "Verify Settings Again"
1569
  msgstr ""
1570
 
1571
+ #: nextend-facebook-connect/includes/provider-admin.php:243
1572
  msgid "Please save your changes before verifying settings."
1573
  msgstr ""
1574
 
1575
+ #: nextend-facebook-connect/includes/provider.php:358
1576
+ #: nextend-facebook-connect/includes/provider.php:717
1577
+ #: nextend-facebook-connect/includes/provider.php:725
1578
  msgid "Authentication successful"
1579
  msgstr ""
1580
 
1581
+ #: nextend-facebook-connect/includes/provider.php:654
1582
+ #: nextend-facebook-connect/includes/user.php:168
1583
+ #: nextend-facebook-connect/includes/user.php:597
1584
  msgid "Authentication error"
1585
  msgstr ""
1586
 
1587
+ #: nextend-facebook-connect/includes/provider.php:669
1588
  msgid "Unlink successful."
1589
  msgstr ""
1590
 
1591
+ #: nextend-facebook-connect/includes/provider.php:671
1592
  msgid "Unlink is not allowed!"
1593
  msgstr ""
1594
 
1595
+ #: nextend-facebook-connect/includes/provider.php:886
1596
+ #: nextend-facebook-connect/includes/provider.php:893
1597
  msgid "The test was successful"
1598
  msgstr ""
1599
 
1600
+ #: nextend-facebook-connect/includes/provider.php:939
1601
  msgid "Authentication failed"
1602
  msgstr ""
1603
 
1604
+ #: nextend-facebook-connect/includes/provider.php:1092
1605
  msgid "Identifier"
1606
  msgstr ""
1607
 
1608
+ #: nextend-facebook-connect/includes/provider.php:1108
1609
  msgid "Profile picture"
1610
  msgstr ""
1611
 
1620
  #, php-format
1621
  msgid ""
1622
  "You have already linked a(n) %s account. Please unlink the current and then "
1623
+ "you can link another %s account."
1624
  msgstr ""
1625
 
1626
  #: nextend-facebook-connect/includes/user.php:82
1627
  #, php-format
1628
+ msgid "This %s account is already linked to another user."
1629
  msgstr ""
1630
 
1631
+ #: nextend-facebook-connect/includes/user.php:128
1632
  msgid "User registration is currently not allowed."
1633
  msgstr ""
1634
 
1636
  msgid "Register For This Site!"
1637
  msgstr ""
1638
 
1639
+ #: nextend-facebook-connect/nextend-facebook-connect.php:37
 
1640
  #, php-format
1641
  msgid "%1$s requires PHP version %2$s+, plugin is currently NOT ACTIVE."
1642
  msgstr ""
1643
 
1644
+ #: nextend-facebook-connect/nextend-facebook-connect.php:44
 
1645
  #, php-format
1646
  msgid ""
1647
  "%1$s requires WordPress version %2$s+. Because you are using an earlier "
1659
  msgid "Update now!"
1660
  msgstr ""
1661
 
1662
+ #: nextend-facebook-connect/nextend-social-login.php:762
1663
+ #: nextend-facebook-connect/nextend-social-login.php:1140
1664
  msgid "Social Login"
1665
  msgstr ""
1666
 
1667
+ #: nextend-facebook-connect/nextend-social-login.php:1121
1668
  msgid "Social Accounts"
1669
  msgstr ""
1670
 
1729
  msgstr ""
1730
 
1731
  #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:12
1732
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:35
1733
  #, php-format
1734
  msgid ""
1735
  "Add the following URL to the \"<b>Valid OAuth redirect URIs</b>\" field: <b>"
1812
  msgstr ""
1813
 
1814
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:26
1815
+ msgid ""
1816
+ "Click on the \"<b>Create App</b>\" button and in the Popup choose the "
1817
+ "\"<b>Build Connected Experiences</b>\" option!"
1818
  msgstr ""
1819
 
1820
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:27
1827
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:28
1828
  #, php-format
1829
  msgid ""
1830
+ "Fill \"<b>App Display Name</b>\", \"<b>App Contact Email</b>\". The "
1831
+ "specified \"App Display Name\" will appear on your %s!"
1832
  msgstr ""
1833
 
1834
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:29
1835
  msgid ""
1836
+ "<b>Optional</b>: choose a \"<b>Business Manager Account</b>\" in the popup, "
1837
+ "if you have any."
1838
  msgstr ""
1839
 
1840
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:30
1841
+ msgid ""
1842
+ "Click the \"<b>Create App ID</b>\" button and complete the Security Check."
1843
+ msgstr ""
1844
+
1845
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:31
1846
  #, php-format
1847
  msgid ""
1848
  "At the \"<b>Add a Product</b>\" panel find \"<b>%1$s</b>\" and click "
1849
  "\"<b>Set Up</b>\""
1850
  msgstr ""
1851
 
1852
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:32
1853
  #, php-format
1854
  msgid ""
1855
  "Select \"<b>Web</b>\" and enter the following URL to the \"<b>Site URL</b>\" "
1856
  "field: <b>%s</b>"
1857
  msgstr ""
1858
 
1859
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:33
1860
  msgid "Press “<b>Save</b>”"
1861
  msgstr ""
1862
 
1863
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:34
1864
  #, php-format
1865
  msgid ""
1866
  "Click on the “<b>%1$s</b>” option what you find on the left side, under “<b>"
1867
  "%2$s</b> - <b>%3$s</b>”"
1868
  msgstr ""
1869
 
1870
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:36
1871
  msgid "Click on “<b>Save Changes</b>”"
1872
  msgstr ""
1873
 
1874
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:37
1875
  #, php-format
1876
  msgid ""
1877
  "On the top left side, click on the “<b>%1$s</b>” menu point, then click “<b>"
1878
  "%2$s</b>”"
1879
  msgstr ""
1880
 
1881
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:38
1882
  #, php-format
1883
  msgid ""
1884
  "Enter your domain name to the \"<b>App Domains</b>\" field, probably: <b>%s</"
1885
  "b>"
1886
  msgstr ""
1887
 
1888
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:39
1889
  msgid ""
1890
  "Fill up the \"<b>Privacy Policy URL</b>\" field. Provide a publicly "
1891
  "available and easily accessible privacy policy that explains what data you "
1892
  "are collecting and how you will use that data."
1893
  msgstr ""
1894
 
1895
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:40
1896
+ msgid ""
1897
+ "At \"<b>User Data Deletion</b>\", choose the \"<b>Data Deletion Instructions "
1898
+ "URL</b>\" option, and enter the <i>URL of your page</i>* with the "
1899
+ "instructions on how users can delete their accounts on your site."
1900
+ msgstr ""
1901
+
1902
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:42
1903
+ msgid ""
1904
+ "To comply with GDPR, you should already offer possibility to delete accounts "
1905
+ "on your site, either by the user or by the admin:"
1906
+ msgstr ""
1907
+
1908
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:45
1909
  msgid ""
1910
+ "<u>If each user has an option to delete the account</u>: the URL should "
1911
+ "point to a guide showing the way users can delete their accounts."
1912
+ msgstr ""
1913
+
1914
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:46
1915
+ msgid ""
1916
+ "<u>If the accounts are deleted by an admin</u>: then you should have a "
1917
+ "section - usually in the Privacy Policy - with the contact details, where "
1918
+ "users can send their account erasure requests. In this case the URL should "
1919
+ "point to this section of the document."
1920
+ msgstr ""
1921
+
1922
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:51
1923
+ msgid ""
1924
+ "Select a “<b>Category</b>”, an “<b>App Icon</b>” and pick the “<b>App "
1925
+ "Purpose</b>” option that describes your App the best, then press \"<b>Save "
1926
  "Changes</b>\""
1927
  msgstr ""
1928
 
1929
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:52
1930
  msgid ""
1931
  "Your application is currently private, which means that only you can log in "
1932
  "with it. In the top bar click on the switch next to the \"<b>In development</"
1933
  "b>\" label, then click the \"<b>Switch Mode</b>\" button."
1934
  msgstr ""
1935
 
1936
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:53
1937
  msgid ""
1938
  "At the top of the page you can find your \"<b>App ID</b>\" and you can see "
1939
  "your \"<b>App secret</b>\" if you click on the \"Show\" button. These will "
1940
  "be needed in plugin’s settings."
1941
  msgstr ""
1942
 
1943
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:56
1944
+ #, php-format
1945
+ msgid ""
1946
+ "<b>WARNING:</b> <u>Don't replace your Facebook App with another!</u> Since "
1947
+ "WordPress users with linked Facebook accounts can only login using the %1$s "
1948
+ "App, that was originally used at the time, when the WordPress account was "
1949
+ "linked with a %1$s Account.<br>\n"
1950
+ "If you would like to know the reason of this, or you really need to replace "
1951
+ "the Facebook App, then please check our %2$sdocumentation%3$s."
1952
+ msgstr ""
1953
+
1954
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:60
1955
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:40
1956
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:37
1957
  #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:39
1958
  #: nextend-social-login-pro/providers/apple/admin/getting-started.php:122
1959
  #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:30
2023
  msgid "App Secret"
2024
  msgstr ""
2025
 
2026
+ #: nextend-facebook-connect/providers/facebook/admin/settings.php:59
2027
+ #, php-format
2028
+ msgid ""
2029
+ "By replacing your existing %1$s App, users with linked %1$s accounts will no "
2030
+ "longer be able to login with %1$s."
2031
+ msgstr ""
2032
+
2033
+ #: nextend-facebook-connect/providers/facebook/admin/settings.php:61
2034
+ msgid "Find out why?"
2035
+ msgstr ""
2036
+
2037
+ #: nextend-facebook-connect/providers/facebook/facebook.php:85
2038
  msgid "Continue with <b>Facebook</b>"
2039
  msgstr "Войти через <b>Facebook</b>"
2040
 
2041
+ #: nextend-facebook-connect/providers/facebook/facebook.php:86
2042
+ #, fuzzy
2043
+ #| msgid "Continue with <b>Facebook</b>"
2044
+ msgid "Sign up with <b>Facebook</b>"
2045
+ msgstr "Войти через <b>Facebook</b>"
2046
+
2047
+ #: nextend-facebook-connect/providers/facebook/facebook.php:87
2048
  msgid "Link account with <b>Facebook</b>"
2049
  msgstr "Связать аккаунты с <b>Facebook</b>"
2050
 
2051
+ #: nextend-facebook-connect/providers/facebook/facebook.php:88
2052
  msgid "Unlink account from <b>Facebook</b>"
2053
  msgstr "Отвязать аккаунты от <b>Facebook</b>"
2054
 
2055
+ #: nextend-facebook-connect/providers/facebook/facebook.php:188
2056
+ #: nextend-facebook-connect/providers/google/google.php:168
2057
+ #: nextend-facebook-connect/providers/twitter/twitter.php:97
2058
+ #: nextend-social-login-pro/providers/amazon/amazon.php:67
2059
+ #: nextend-social-login-pro/providers/apple/apple.php:131
2060
+ #: nextend-social-login-pro/providers/apple/apple.php:138
2061
+ #: nextend-social-login-pro/providers/disqus/disqus.php:114
2062
+ #: nextend-social-login-pro/providers/github/github.php:152
2063
+ #: nextend-social-login-pro/providers/linkedin/linkedin.php:65
2064
+ #: nextend-social-login-pro/providers/paypal/paypal.php:92
2065
+ #: nextend-social-login-pro/providers/vk/vk.php:63
2066
+ #: nextend-social-login-pro/providers/wordpress/wordpress.php:101
2067
+ #: nextend-social-login-pro/providers/yahoo/yahoo.php:92
2068
  #, php-format
2069
  msgid ""
2070
  "The %1$s entered did not appear to be a valid. Please enter a valid %2$s."
2071
  msgstr ""
2072
 
2073
+ #: nextend-facebook-connect/providers/facebook/facebook.php:309
2074
+ #: nextend-social-login-pro/providers/paypal/paypal.php:172
2075
  #, php-format
2076
  msgid "Required scope: %1$s"
2077
  msgstr ""
2219
  "Disable, when you don't want to see the account select prompt on each login."
2220
  msgstr ""
2221
 
2222
+ #: nextend-facebook-connect/providers/google/google.php:99
2223
  msgid "Continue with <b>Google</b>"
2224
  msgstr "Войти через <b>Google</b>"
2225
 
2226
+ #: nextend-facebook-connect/providers/google/google.php:100
2227
+ #, fuzzy
2228
+ #| msgid "Continue with <b>Google</b>"
2229
+ msgid "Sign up with <b>Google</b>"
2230
+ msgstr "Войти через <b>Google</b>"
2231
+
2232
+ #: nextend-facebook-connect/providers/google/google.php:101
2233
  msgid "Link account with <b>Google</b>"
2234
  msgstr "Связать аккаунты с <b>Google</b>"
2235
 
2236
+ #: nextend-facebook-connect/providers/google/google.php:102
2237
  msgid "Unlink account from <b>Google</b>"
2238
  msgstr "Отвязать аккаунты от <b>Google</b>"
2239
 
2240
+ #: nextend-facebook-connect/providers/google/google.php:295
2241
  #, php-format
2242
  msgid "Required API: %1$s"
2243
  msgstr ""
2244
 
2245
  #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:10
2246
+ msgid ""
2247
+ "Find your App and click on the <b>App settings</b> icon. (The one that looks "
2248
+ "like a gear.)"
2249
  msgstr ""
2250
 
2251
  #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:11
2252
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:27
2253
+ msgid "Click on the <b>Edit</b> button at <b>Authentication settings</b>."
 
2254
  msgstr ""
2255
 
2256
  #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:12
 
2257
  #, php-format
2258
  msgid "Add the following URL to the \"<b>Callback URLs</b>\" field: <b>%s</b>"
2259
  msgstr ""
2260
 
2261
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:17
2262
+ #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:25
2263
+ #: nextend-social-login-pro/providers/apple/admin/getting-started.php:38
2264
+ #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:9
2265
+ #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:16
2266
+ #: nextend-social-login-pro/providers/github/admin/getting-started.php:16
2267
+ #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:9
2268
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:17
2269
+ #: nextend-social-login-pro/providers/vk/admin/getting-started.php:16
2270
+ #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:9
2271
+ #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:16
2272
+ #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:17
2273
  #, php-format
2274
+ msgid "Log in with your %s credentials if you are not logged in."
2275
  msgstr ""
2276
 
2277
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:18
2288
  msgstr ""
2289
 
2290
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:20
2291
+ msgid "Click on <b>+ New Project</b>!"
 
 
 
2292
  msgstr ""
2293
 
2294
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:21
2295
+ msgid ""
2296
+ "Name your project, and go through the basic setup. You’ll need to select "
2297
+ "your use case and give a description."
2298
+ msgstr ""
2299
+
2300
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:22
2301
+ msgid "Create a new app, or select an existing one, then click <b>Complete</b>"
2302
  msgstr ""
2303
 
2304
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:23
2305
  msgid ""
2306
+ "You’ll find your API key and secret on this page. Copy and paste the <b>API "
2307
+ "key</b> and the <b>API secret key</b> to the corresponding fields at Nextend "
2308
+ "Social Login and press <b>Save Changes</b>."
2309
  msgstr ""
2310
 
2311
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:24
2312
+ #, php-format
2313
+ msgid "Click on the <b>App Settings</b> button at %s."
2314
  msgstr ""
2315
 
2316
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:25
2317
+ msgid "Find the Apps section, and the app you created a few steps ago."
2318
  msgstr ""
2319
 
2320
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:26
2321
+ msgid "Click on the App settings icon. (The one that looks like a gear.)"
2322
  msgstr ""
2323
 
2324
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:28
2325
+ msgid "Switch on the <b>Enable 3-legged OAuth</b> option."
 
 
2326
  msgstr ""
2327
 
2328
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:29
2329
+ #, php-format
2330
+ msgid "Add the following URL to the <b>Callback URLs</b> field: <b>%s</b>"
2331
+ msgstr ""
2332
+
2333
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:30
2334
+ #, php-format
2335
+ msgid "Enter your site's URL to the <b>Website URL</b> field: <b>%s</b>"
2336
+ msgstr ""
2337
+
2338
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:31
2339
  msgid ""
2340
+ "If you want to get the email address as well, then don’t forget to enable "
2341
+ "the <b>Request email address from users</b> option. In this case you also "
2342
+ "need to fill the <b>Terms of service</b> and the <b>Privacy policy</b> "
2343
+ "fields with the corresponding URLs!"
2344
+ msgstr ""
2345
+
2346
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:32
2347
+ msgid "Click on <b>Save</b>."
2348
+ msgstr ""
2349
+
2350
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:33
2351
+ #, php-format
2352
+ msgid "Go back to Nextend Social Login and <b>Verify</b> your %s provider."
2353
  msgstr ""
2354
 
2355
  #: nextend-facebook-connect/providers/twitter/admin/settings.php:27
2369
  msgid "Original"
2370
  msgstr ""
2371
 
2372
+ #: nextend-facebook-connect/providers/twitter/twitter.php:70
2373
  msgid "Continue with <b>Twitter</b>"
2374
  msgstr "Войти через <b>Twitter</b>"
2375
 
2376
+ #: nextend-facebook-connect/providers/twitter/twitter.php:71
2377
+ #, fuzzy
2378
+ #| msgid "Continue with <b>Twitter</b>"
2379
+ msgid "Sign up with <b>Twitter</b>"
2380
+ msgstr "Войти через <b>Twitter</b>"
2381
+
2382
+ #: nextend-facebook-connect/providers/twitter/twitter.php:72
2383
  msgid "Link account with <b>Twitter</b>"
2384
  msgstr "Связать аккаунты с <b>Twitter</b>"
2385
 
2386
+ #: nextend-facebook-connect/providers/twitter/twitter.php:73
2387
  msgid "Unlink account from <b>Twitter</b>"
2388
  msgstr "Отвязать аккаунты от <b>Twitter</b>"
2389
 
2501
  "with %1$s."
2502
  msgstr ""
2503
 
2504
+ #: nextend-social-login-pro/nextend-social-login-pro.php:104
2505
  #, php-format
2506
  msgid "Please install and activate %1$s to use the %2$s"
2507
  msgstr ""
2508
 
2509
+ #: nextend-social-login-pro/nextend-social-login-pro.php:118
2510
  msgid "Network Activate"
2511
  msgstr ""
2512
 
2513
+ #: nextend-social-login-pro/nextend-social-login-pro.php:130
2514
  msgid "Install now!"
2515
  msgstr ""
2516
 
2517
+ #: nextend-social-login-pro/nextend-social-login-pro.php:821
2518
  msgid "Social Providers"
2519
  msgstr ""
2520
 
2525
  "latest %2$s version!"
2526
  msgstr ""
2527
 
2528
+ #: nextend-social-login-pro/provider-extensions/google.php:187
2529
  #, php-format
2530
  msgid ""
2531
  "Most of these information can only be retrieved, when the field is marked as "
2572
  "%1$s App."
2573
  msgstr ""
2574
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2575
  #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:27
2576
  msgid ""
2577
  "If you don't have a Security Profile yet, you'll need to create one. You can "
2607
  "middle of the page, under the \"<b>Web Settings</b>\" tab."
2608
  msgstr ""
2609
 
2610
+ #: nextend-social-login-pro/providers/amazon/amazon.php:40
2611
  msgid "Continue with <b>Amazon</b>"
2612
+ msgstr "Войти через <b>Amazon</b>"
2613
 
2614
+ #: nextend-social-login-pro/providers/amazon/amazon.php:41
2615
+ #, fuzzy
2616
+ msgid "Sign up with <b>Amazon</b>"
2617
+ msgstr "Войти через <b>Amazon</b>"
2618
+
2619
+ #: nextend-social-login-pro/providers/amazon/amazon.php:42
2620
  msgid "Link account with <b>Amazon</b>"
2621
+ msgstr "Связать аккаунты с <b>Amazon</b>"
2622
 
2623
+ #: nextend-social-login-pro/providers/amazon/amazon.php:43
2624
  msgid "Unlink account from <b>Amazon</b>"
2625
+ msgstr "Отвязать аккаунты от <b>Amazon</b>"
2626
 
2627
  #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:21
2628
  msgid "Click on the name of your service."
2925
  msgid "Generate Token"
2926
  msgstr ""
2927
 
2928
+ #: nextend-social-login-pro/providers/apple/apple.php:83
 
 
2929
  msgid "Continue with <b>Apple</b>"
2930
+ msgstr "Войти через <b>Apple</b>"
2931
 
2932
+ #: nextend-social-login-pro/providers/apple/apple.php:84
2933
+ msgid "Sign up with <b>Apple</b>"
2934
+ msgstr "Войти через <b>Apple</b>"
2935
+
2936
+ #: nextend-social-login-pro/providers/apple/apple.php:85
2937
  msgid "Link account with <b>Apple</b>"
2938
+ msgstr "Связать аккаунты с <b>Apple</b>"
2939
 
2940
+ #: nextend-social-login-pro/providers/apple/apple.php:86
 
 
2941
  msgid "Unlink account from <b>Apple</b>"
2942
+ msgstr "Отвязать аккаунты от <b>Apple</b>"
2943
 
2944
+ #: nextend-social-login-pro/providers/apple/apple.php:180
2945
  #, php-format
2946
  msgid "An error occurred when storing of the expiration timestamp : %1$s"
2947
  msgstr ""
2948
 
2949
+ #: nextend-social-login-pro/providers/apple/apple.php:184
2950
+ #: nextend-social-login-pro/providers/apple/apple.php:282
2951
+ #: nextend-social-login-pro/providers/apple/apple.php:297
2952
+ #: nextend-social-login-pro/providers/apple/apple.php:341
2953
  #, php-format
2954
  msgid "Token generation failed: %1$s"
2955
  msgstr ""
2956
 
2957
+ #: nextend-social-login-pro/providers/apple/apple.php:184
2958
  msgid "Please check your credentials!"
2959
  msgstr ""
2960
 
2961
+ #: nextend-social-login-pro/providers/apple/apple.php:282
2962
  msgid "Private key format is not valid!"
2963
  msgstr ""
2964
 
2965
+ #: nextend-social-login-pro/providers/apple/apple.php:308
2966
  #, php-format
2967
  msgid ""
2968
  "%s detected that your Apple credentials have expired. Please delete the "
2969
  "current credentials and generate new one!"
2970
  msgstr ""
2971
 
2972
+ #: nextend-social-login-pro/providers/apple/apple.php:310
2973
  msgid "Apple Credentials"
2974
  msgstr ""
2975
 
3046
  msgid "API Secret"
3047
  msgstr ""
3048
 
3049
+ #: nextend-social-login-pro/providers/disqus/disqus.php:87
3050
  msgid "Continue with <b>Disqus</b>"
3051
+ msgstr "Войти через <b>Disqus</b>"
3052
 
3053
+ #: nextend-social-login-pro/providers/disqus/disqus.php:88
3054
+ #, fuzzy
3055
+ msgid "Sign up with <b>Disqus</b>"
3056
+ msgstr "Войти через <b>Disqus</b>"
3057
+
3058
+ #: nextend-social-login-pro/providers/disqus/disqus.php:89
3059
  msgid "Link account with <b>Disqus</b>"
3060
+ msgstr "Связать аккаунты с <b>Disqus</b>"
3061
 
3062
+ #: nextend-social-login-pro/providers/disqus/disqus.php:90
3063
  msgid "Unlink account from <b>Disqus</b>"
3064
+ msgstr "Отвязать аккаунты от <b>Disqus</b>"
3065
 
3066
  #: nextend-social-login-pro/providers/github/admin/fix-redirect-uri.php:10
3067
  #, php-format
3133
  "public email address set at the %1$s profile page%2$s!"
3134
  msgstr ""
3135
 
3136
+ #: nextend-social-login-pro/providers/github/github.php:125
 
 
3137
  msgid "Continue with <b>GitHub</b>"
3138
+ msgstr "Войти через <b>GitHub</b>"
3139
 
3140
+ #: nextend-social-login-pro/providers/github/github.php:126
3141
  #, fuzzy
3142
+ msgid "Sign up with <b>GitHub</b>"
3143
+ msgstr "Войти через <b>GitHub</b>"
3144
+
3145
+ #: nextend-social-login-pro/providers/github/github.php:127
3146
  msgid "Link account with <b>GitHub</b>"
3147
+ msgstr "Связать аккаунты с <b>GitHub</b>"
3148
 
3149
+ #: nextend-social-login-pro/providers/github/github.php:128
 
 
3150
  msgid "Unlink account from <b>GitHub</b>"
3151
+ msgstr "Отвязать аккаунты от <b>GitHub</b>"
3152
 
3153
  #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:10
3154
  msgid "Click on your App and go to the \"<b>Auth</b>\" tab."
3228
  "the Application credentials section, on the <b>Auth</b> tab."
3229
  msgstr ""
3230
 
3231
+ #: nextend-social-login-pro/providers/linkedin/linkedin.php:38
3232
  msgid "Continue with <b>LinkedIn</b>"
3233
+ msgstr "Войти через <b>LinkedIn</b>"
3234
 
3235
+ #: nextend-social-login-pro/providers/linkedin/linkedin.php:39
3236
+ #, fuzzy
3237
+ msgid "Sign up with <b>LinkedIn</b>"
3238
+ msgstr "Войти через <b>LinkedIn</b>"
3239
+
3240
+ #: nextend-social-login-pro/providers/linkedin/linkedin.php:40
3241
  msgid "Link account with <b>LinkedIn</b>"
3242
+ msgstr "Связать аккаунты с <b>LinkedIn</b>"
3243
 
3244
+ #: nextend-social-login-pro/providers/linkedin/linkedin.php:41
3245
  msgid "Unlink account from <b>LinkedIn</b>"
3246
+ msgstr "Отвязать аккаунты от <b>LinkedIn</b>"
3247
 
3248
  #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:10
3249
  #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:18
3342
  msgid "Disable, when you have no rights for email address."
3343
  msgstr ""
3344
 
3345
+ #: nextend-social-login-pro/providers/paypal/paypal.php:65
3346
  msgid "Continue with <b>PayPal</b>"
3347
+ msgstr "Войти через <b>PayPal</b>"
3348
 
3349
+ #: nextend-social-login-pro/providers/paypal/paypal.php:66
3350
+ #, fuzzy
3351
+ msgid "Sign up with <b>PayPal</b>"
3352
+ msgstr "Войти через <b>PayPal</b>"
3353
+
3354
+ #: nextend-social-login-pro/providers/paypal/paypal.php:67
3355
  msgid "Link account with <b>PayPal</b>"
3356
+ msgstr "Связать аккаунты с <b>PayPal</b>"
3357
 
3358
+ #: nextend-social-login-pro/providers/paypal/paypal.php:68
3359
  msgid "Unlink account from <b>PayPal</b>"
3360
+ msgstr "Отвязать аккаунты от <b>PayPal</b>"
3361
 
3362
  #: nextend-social-login-pro/providers/vk/admin/fix-redirect-uri.php:10
3363
  msgid "Click on the \"<b>Manage</b>\" button next to the associated App."
3432
  msgid "Secure key"
3433
  msgstr ""
3434
 
3435
+ #: nextend-social-login-pro/providers/vk/vk.php:36
3436
  msgid "Continue with <b>VK</b>"
3437
  msgstr "Войти через <b>VK</b>"
3438
 
3439
+ #: nextend-social-login-pro/providers/vk/vk.php:37
3440
+ #, fuzzy
3441
+ #| msgid "Continue with <b>VK</b>"
3442
+ msgid "Sign up with <b>VK</b>"
3443
+ msgstr "Войти через <b>VK</b>"
3444
+
3445
+ #: nextend-social-login-pro/providers/vk/vk.php:38
3446
  msgid "Link account with <b>VK</b>"
3447
  msgstr "Связать аккаунты с <b>VK</b>"
3448
 
3449
+ #: nextend-social-login-pro/providers/vk/vk.php:39
3450
  msgid "Unlink account from <b>VK</b>"
3451
  msgstr "Отвязать аккаунты от <b>VK</b>"
3452
 
3503
  "These will be needed in the plugin's settings."
3504
  msgstr ""
3505
 
3506
+ #: nextend-social-login-pro/providers/wordpress/wordpress.php:74
3507
  msgid "Continue with <b>WordPress.com</b>"
3508
+ msgstr "Войти через <b>WordPress.com</b>"
3509
 
3510
+ #: nextend-social-login-pro/providers/wordpress/wordpress.php:75
3511
+ #, fuzzy
3512
+ msgid "Sign up with <b>WordPress.com</b>"
3513
+ msgstr "Войти через <b>WordPress.com</b>"
3514
+
3515
+ #: nextend-social-login-pro/providers/wordpress/wordpress.php:76
3516
  msgid "Link account with <b>WordPress.com</b>"
3517
+ msgstr "Связать аккаунты с <b>WordPress.com</b>"
3518
 
3519
+ #: nextend-social-login-pro/providers/wordpress/wordpress.php:77
3520
  msgid "Unlink account from <b>WordPress.com</b>"
3521
+ msgstr "Отвязать аккаунты от <b>WordPress.com</b>"
3522
 
3523
  #: nextend-social-login-pro/providers/yahoo/admin/fix-redirect-uri.php:10
3524
  msgid "Click on the App which has its credentials associated with the plugin."
3567
  "\"<b>Client Secret</b>\"! These will be needed in the plugin's settings."
3568
  msgstr ""
3569
 
3570
+ #: nextend-social-login-pro/providers/yahoo/yahoo.php:65
 
 
3571
  msgid "Continue with <b>Yahoo</b>"
3572
+ msgstr "Войти через <b>Yahoo</b>"
3573
 
3574
+ #: nextend-social-login-pro/providers/yahoo/yahoo.php:66
3575
+ msgid "Sign up with <b>Yahoo</b>"
3576
+ msgstr "Войти через <b>Yahoo</b>"
3577
+
3578
+ #: nextend-social-login-pro/providers/yahoo/yahoo.php:67
3579
  msgid "Link account with <b>Yahoo</b>"
3580
+ msgstr "Связать аккаунты с <b>Yahoo</b>"
3581
 
3582
+ #: nextend-social-login-pro/providers/yahoo/yahoo.php:68
 
 
3583
  msgid "Unlink account from <b>Yahoo</b>"
3584
+ msgstr "Отвязать аккаунты от <b>Yahoo</b>"
3585
 
3586
+ #: nextend-social-login-pro/providers/yahoo/yahoo.php:188
3587
  #, php-format
3588
  msgid "Required permission: %1$s"
3589
  msgstr ""
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: ss3\n"
4
- "POT-Creation-Date: 2020-08-25 13:38+0200\n"
5
- "PO-Revision-Date: 2020-08-25 13:38+0200\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: zh_CN\n"
@@ -117,33 +117,33 @@ msgstr ""
117
  msgid "User"
118
  msgstr "用户"
119
 
120
- #: nextend-facebook-connect/admin/admin.php:203
121
  #, php-format
122
  msgid "%s needs json_decode function."
123
  msgstr "%s 需要 json_decode 函数。"
124
 
125
- #: nextend-facebook-connect/admin/admin.php:203
126
  msgid "Please contact your server administrator and ask for solution!"
127
  msgstr "请与服务器管理员联系并寻求解决方案!"
128
 
129
- #: nextend-facebook-connect/admin/admin.php:235
130
- #: nextend-facebook-connect/admin/admin.php:265
131
  msgid "Settings saved."
132
  msgstr "设置已保存。"
133
 
134
- #: nextend-facebook-connect/admin/admin.php:244
135
  #, fuzzy
136
  #| msgid "The authorization was successful"
137
  msgid "The activation was successful"
138
  msgstr "授权成功"
139
 
140
- #: nextend-facebook-connect/admin/admin.php:255
141
  #, fuzzy
142
  #| msgid "Deauthorize completed."
143
  msgid "Deactivate completed."
144
  msgstr "取消授权."
145
 
146
- #: nextend-facebook-connect/admin/admin.php:433
147
  #: nextend-facebook-connect/admin/templates-provider/menu.php:15
148
  #: nextend-facebook-connect/admin/templates/providers.php:89
149
  #: nextend-facebook-connect/admin/templates/providers.php:101
@@ -151,9 +151,9 @@ msgstr "取消授权."
151
  msgid "Settings"
152
  msgstr "设置"
153
 
154
- #: nextend-facebook-connect/admin/admin.php:516
155
- #: nextend-facebook-connect/includes/oauth2.php:141
156
- #: nextend-facebook-connect/includes/oauth2.php:286
157
  #: nextend-facebook-connect/providers/facebook/facebook-client.php:84
158
  #: nextend-facebook-connect/providers/twitter/twitter-client.php:165
159
  #: nextend-social-login-pro/providers/apple/apple-client.php:87
@@ -162,7 +162,7 @@ msgstr "设置"
162
  msgid "Unexpected response: %s"
163
  msgstr "响应出现意外情况: %s"
164
 
165
- #: nextend-facebook-connect/admin/admin.php:577
166
  #: nextend-facebook-connect/admin/templates/fix-redirect-uri.php:21
167
  #, php-format
168
  msgid ""
@@ -172,16 +172,16 @@ msgstr ""
172
  "%s 检测到您的登录网址已更改。您必须更新相关社交应用程序中的Oauth redirect "
173
  "URIs."
174
 
175
- #: nextend-facebook-connect/admin/admin.php:578
176
- #: nextend-social-login-pro/providers/apple/apple.php:308
177
  msgid "Fix Error"
178
  msgstr "修复错误"
179
 
180
- #: nextend-facebook-connect/admin/admin.php:578
181
  msgid "Oauth Redirect URI"
182
  msgstr "Oauth Redirect URI"
183
 
184
- #: nextend-facebook-connect/admin/admin.php:595
185
  #, php-format
186
  msgid ""
187
  "%1$s detected that %2$s installed on your site. You need the Pro Addon to "
@@ -190,15 +190,15 @@ msgstr ""
190
  "%1$s 检测到 %2$s 已经安装在你的网站. 你需要安装专业版本去显示社交登录按钮 "
191
  "%2$s 登录表单!"
192
 
193
- #: nextend-facebook-connect/admin/admin.php:596
194
  msgid "Dismiss and check Pro Addon"
195
  msgstr "解除并检查专业版本"
196
 
197
- #: nextend-facebook-connect/admin/admin.php:596
198
  msgid "Dismiss"
199
  msgstr "解除"
200
 
201
- #: nextend-facebook-connect/admin/admin.php:602
202
  #, php-format
203
  msgid ""
204
  "%1$s detected that %2$s installed on your site. You must set \"<b>Page for "
@@ -206,19 +206,19 @@ msgid ""
206
  "work properly."
207
  msgstr ""
208
 
209
- #: nextend-facebook-connect/admin/admin.php:603
210
  #, fuzzy
211
  #| msgid "Fix Error"
212
  msgid "Fix now"
213
  msgstr "修复错误"
214
 
215
- #: nextend-facebook-connect/admin/admin.php:627
216
  #, fuzzy
217
  #| msgid "Activate Pro Addon"
218
  msgid "Activate your Pro Addon"
219
  msgstr "启用专业版本插件"
220
 
221
- #: nextend-facebook-connect/admin/admin.php:628
222
  #, fuzzy
223
  #| msgid ""
224
  #| "To be able to use the Pro features, you need to authorize Nextend Social "
@@ -232,20 +232,20 @@ msgstr ""
232
  "要想使用专业版本功能,你需要 Nextend Social Connect 专业版本的授权。你可以点"
233
  "击下面的授权按钮,然后选择购买。"
234
 
235
- #: nextend-facebook-connect/admin/admin.php:633
236
- #: nextend-social-login-pro/nextend-social-login-pro.php:94
237
  msgid "Activate"
238
  msgstr ""
239
 
240
- #: nextend-facebook-connect/admin/admin.php:731
241
  msgid "License key"
242
  msgstr "密匙"
243
 
244
- #: nextend-facebook-connect/admin/admin.php:754
245
  msgid "OAuth proxy page"
246
  msgstr ""
247
 
248
- #: nextend-facebook-connect/admin/admin.php:757
249
  #, fuzzy
250
  #| msgid "Register"
251
  msgid "Register flow page"
@@ -256,46 +256,53 @@ msgstr "注册"
256
  msgid "You have logged in successfully."
257
  msgstr "你已经成功登录。"
258
 
259
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:79
260
  msgid "Login label"
261
  msgstr "登录标签"
262
 
263
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:84
264
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:95
265
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:106
266
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:135
267
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:165
 
268
  #: nextend-facebook-connect/admin/templates/settings/privacy.php:53
269
  msgid "Reset to default"
270
  msgstr "恢复默认设置"
271
 
272
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:89
 
 
 
 
 
 
273
  msgid "Link label"
274
  msgstr "链接标签"
275
 
276
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:101
277
  msgid "Unlink label"
278
  msgstr "解除链接标签"
279
 
280
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:112
281
  msgid "Default button"
282
  msgstr "默认按钮"
283
 
284
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:128
285
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:158
286
  msgid "Use custom button"
287
  msgstr "使用自定义按钮"
288
 
289
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:135
290
  #, php-format
291
  msgid "Use the %s in your custom button's code to make the label show up."
292
  msgstr "使用 %s 在你的自定义按钮代码显示界面."
293
 
294
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:143
295
  msgid "Icon button"
296
  msgstr "图标按钮"
297
 
298
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:174
299
  #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:140
300
  #: nextend-facebook-connect/admin/templates-provider/sync-data.php:104
301
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:170
@@ -308,8 +315,8 @@ msgstr "图标按钮"
308
  #: nextend-facebook-connect/admin/templates/settings/privacy.php:109
309
  #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:186
310
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:167
311
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:326
312
- #: nextend-facebook-connect/providers/facebook/admin/settings.php:57
313
  #: nextend-facebook-connect/providers/google/admin/settings.php:62
314
  #: nextend-facebook-connect/providers/twitter/admin/settings.php:48
315
  #: nextend-social-login-pro/providers/amazon/admin/settings.php:47
@@ -438,7 +445,8 @@ msgstr "注册后自动连接现有帐户"
438
  #: nextend-facebook-connect/admin/templates/settings/general.php:213
439
  #: nextend-facebook-connect/admin/templates/settings/general.php:228
440
  #: nextend-facebook-connect/admin/templates/settings/general.php:246
441
- #: nextend-facebook-connect/includes/provider-admin.php:217
 
442
  msgid "Disabled"
443
  msgstr "禁用"
444
 
@@ -754,7 +762,8 @@ msgstr "未验证"
754
  #: nextend-facebook-connect/admin/templates/settings/general.php:216
755
  #: nextend-facebook-connect/admin/templates/settings/general.php:231
756
  #: nextend-facebook-connect/admin/templates/settings/general.php:249
757
- #: nextend-facebook-connect/includes/provider-admin.php:220
 
758
  #: nextend-facebook-connect/providers/google/admin/settings.php:53
759
  #: nextend-social-login-pro/providers/paypal/admin/settings.php:51
760
  msgid "Enabled"
@@ -765,17 +774,17 @@ msgid "Upgrade Now"
765
  msgstr "现在更新"
766
 
767
  #: nextend-facebook-connect/admin/templates/providers.php:77
768
- #: nextend-facebook-connect/includes/provider-admin.php:204
769
  msgid "Verify Settings"
770
  msgstr "验证设置"
771
 
772
  #: nextend-facebook-connect/admin/templates/providers.php:85
773
- #: nextend-facebook-connect/includes/provider-admin.php:249
774
  msgid "Enable"
775
  msgstr "启用"
776
 
777
  #: nextend-facebook-connect/admin/templates/providers.php:97
778
- #: nextend-facebook-connect/includes/provider-admin.php:257
779
  msgid "Disable"
780
  msgstr "禁止"
781
 
@@ -1349,6 +1358,20 @@ msgstr "会员"
1349
  msgid "Allow registration with Social login."
1350
  msgstr "允许通过社交登录注册"
1351
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1352
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:29
1353
  #: nextend-facebook-connect/admin/templates/settings/memberpress.php:33
1354
  #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:33
@@ -1451,7 +1474,7 @@ msgid "Link buttons after account details"
1451
  msgstr "链接按钮在账户详情后面"
1452
 
1453
  #: nextend-facebook-connect/admin/templates/settings/privacy.php:6
1454
- #: nextend-facebook-connect/nextend-social-login.php:143
1455
  msgid ""
1456
  "By clicking Register, you accept our <a href=\"#privacy_policy_url\" target="
1457
  "\"_blank\">Privacy Policy</a>"
@@ -1479,12 +1502,12 @@ msgid "When not enabled, email will be empty."
1479
  msgstr ""
1480
 
1481
  #: nextend-facebook-connect/admin/templates/settings/privacy.php:91
1482
- #: nextend-facebook-connect/includes/avatar.php:59
1483
  msgid "Avatar"
1484
  msgstr ""
1485
 
1486
  #: nextend-facebook-connect/admin/templates/settings/privacy.php:102
1487
- #: nextend-facebook-connect/includes/provider.php:1082
1488
  msgid "Access token"
1489
  msgstr ""
1490
 
@@ -1572,6 +1595,31 @@ msgstr "登录按钮在账户详情之前"
1572
  msgid "Link buttons on"
1573
  msgstr "图标按钮"
1574
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1575
  #: nextend-facebook-connect/admin/templates/test-connection.php:42
1576
  #, fuzzy, php-format
1577
  #| msgid "Authentication successful"
@@ -1589,17 +1637,16 @@ msgid ""
1589
  "between your server and the provider."
1590
  msgstr ""
1591
 
1592
- #: nextend-facebook-connect/includes/avatar.php:60
1593
  msgid "Manage Avatar"
1594
  msgstr ""
1595
 
1596
- #: nextend-facebook-connect/includes/avatar.php:61
1597
  #, php-format
1598
  msgid "Avatar <span class=\"count\">(%s)</span>"
1599
  msgid_plural "Avatar <span class=\"count\">(%s)</span>"
1600
  msgstr[0] ""
1601
 
1602
- #. translators: Login screen title. 1: Login screen name, 2: Network or site name
1603
  #: nextend-facebook-connect/includes/compat-wp-login.php:63
1604
  #, php-format
1605
  msgid "%1$s &lsaquo; %2$s &#8212; WordPress"
@@ -1613,18 +1660,17 @@ msgstr ""
1613
  msgid "Powered by WordPress"
1614
  msgstr ""
1615
 
1616
- #. translators: %s: site title
1617
  #: nextend-facebook-connect/includes/compat-wp-login.php:284
1618
  #, php-format
1619
  msgctxt "site"
1620
  msgid "&larr; Back to %s"
1621
  msgstr ""
1622
 
1623
- #: nextend-facebook-connect/includes/provider-admin.php:198
1624
  msgid "Your configuration needs to be verified"
1625
  msgstr "您的配置需要验证"
1626
 
1627
- #: nextend-facebook-connect/includes/provider-admin.php:199
1628
  msgid ""
1629
  "Before you can start letting your users register with your app it needs to "
1630
  "be tested. This test makes sure that no users will have troubles with the "
@@ -1636,22 +1682,22 @@ msgstr ""
1636
  "册过程中不会遇到麻烦。 <br>如果您在弹出窗口中看到错误消息,请检查复制的ID和密"
1637
  "码。如果没有错误信息,说明你的程序运行正常。"
1638
 
1639
- #: nextend-facebook-connect/includes/provider-admin.php:205
1640
  msgid "Please save your changes to verify settings."
1641
  msgstr "请保存您的更改以验证。"
1642
 
1643
- #: nextend-facebook-connect/includes/provider-admin.php:213
1644
  msgid "Works Fine"
1645
  msgstr "运行正常"
1646
 
1647
- #: nextend-facebook-connect/includes/provider-admin.php:227
1648
  #, php-format
1649
  msgid ""
1650
  "This provider is currently disabled, which means that users can’t register "
1651
  "or login via their %s account."
1652
  msgstr "该通道目前已被禁用,用户无法通过其 %s 帐户注册或登录。"
1653
 
1654
- #: nextend-facebook-connect/includes/provider-admin.php:230
1655
  #, php-format
1656
  msgid ""
1657
  "This provider works fine, but you can test it again. If you don’t want to "
@@ -1660,54 +1706,55 @@ msgstr ""
1660
  "该通道工作正常,但可以再次进行测试。 如果您不想让用户通过 %s 注册或登录,可以"
1661
  "禁用它。"
1662
 
1663
- #: nextend-facebook-connect/includes/provider-admin.php:233
1664
  #, php-format
1665
  msgid ""
1666
  "This provider is currently enabled, which means that users can register or "
1667
  "login via their %s account."
1668
  msgstr "该通道目前已启用,这意味着用户可以通过 %s 账户进行注册或登录。"
1669
 
1670
- #: nextend-facebook-connect/includes/provider-admin.php:241
1671
  msgid "Verify Settings Again"
1672
  msgstr "再次验证设置"
1673
 
1674
- #: nextend-facebook-connect/includes/provider-admin.php:242
1675
  msgid "Please save your changes before verifying settings."
1676
  msgstr ""
1677
 
1678
- #: nextend-facebook-connect/includes/provider.php:357
1679
- #: nextend-facebook-connect/includes/provider.php:705
1680
- #: nextend-facebook-connect/includes/provider.php:710
1681
  msgid "Authentication successful"
1682
  msgstr "授权成功"
1683
 
1684
- #: nextend-facebook-connect/includes/provider.php:647
1685
- #: nextend-facebook-connect/includes/user.php:126
 
1686
  msgid "Authentication error"
1687
  msgstr "授权认证出错"
1688
 
1689
- #: nextend-facebook-connect/includes/provider.php:662
1690
  msgid "Unlink successful."
1691
  msgstr "解除链接成功."
1692
 
1693
- #: nextend-facebook-connect/includes/provider.php:664
1694
  msgid "Unlink is not allowed!"
1695
  msgstr ""
1696
 
1697
- #: nextend-facebook-connect/includes/provider.php:868
1698
- #: nextend-facebook-connect/includes/provider.php:875
1699
  msgid "The test was successful"
1700
  msgstr "测试成功"
1701
 
1702
- #: nextend-facebook-connect/includes/provider.php:921
1703
  msgid "Authentication failed"
1704
  msgstr "授权认证失败"
1705
 
1706
- #: nextend-facebook-connect/includes/provider.php:1074
1707
  msgid "Identifier"
1708
  msgstr ""
1709
 
1710
- #: nextend-facebook-connect/includes/provider.php:1090
1711
  msgid "Profile picture"
1712
  msgstr ""
1713
 
@@ -1719,19 +1766,23 @@ msgid ""
1719
  msgstr "你的 %1$s 账号已经成功链接到你的网站帐号. 你可以快速登录 %2$s ."
1720
 
1721
  #: nextend-facebook-connect/includes/user.php:77
1722
- #, php-format
 
 
 
1723
  msgid ""
1724
  "You have already linked a(n) %s account. Please unlink the current and then "
1725
- "you can link other %s account."
1726
  msgstr ""
1727
  "你已经链接了 a(n) %s 账号. 请解除现有的链接账号,你才可以重新链接 %s 账号。"
1728
 
1729
  #: nextend-facebook-connect/includes/user.php:82
1730
- #, php-format
1731
- msgid "This %s account is already linked to other user."
 
1732
  msgstr "这个 %s 账号已经链接到了其他用户。"
1733
 
1734
- #: nextend-facebook-connect/includes/user.php:122
1735
  msgid "User registration is currently not allowed."
1736
  msgstr ""
1737
 
@@ -1739,14 +1790,12 @@ msgstr ""
1739
  msgid "Register For This Site!"
1740
  msgstr "注册此网站!"
1741
 
1742
- #. translators: %2$s: PHP version
1743
- #: nextend-facebook-connect/nextend-facebook-connect.php:34
1744
  #, php-format
1745
  msgid "%1$s requires PHP version %2$s+, plugin is currently NOT ACTIVE."
1746
  msgstr ""
1747
 
1748
- #. translators: %2$s: WordPress version
1749
- #: nextend-facebook-connect/nextend-facebook-connect.php:41
1750
  #, php-format
1751
  msgid ""
1752
  "%1$s requires WordPress version %2$s+. Because you are using an earlier "
@@ -1764,12 +1813,12 @@ msgstr "请更新 %1$s 到 %2$s 版本."
1764
  msgid "Update now!"
1765
  msgstr "现在更新!"
1766
 
1767
- #: nextend-facebook-connect/nextend-social-login.php:749
1768
- #: nextend-facebook-connect/nextend-social-login.php:1125
1769
  msgid "Social Login"
1770
  msgstr "社交登录"
1771
 
1772
- #: nextend-facebook-connect/nextend-social-login.php:1106
1773
  msgid "Social Accounts"
1774
  msgstr "社交账号"
1775
 
@@ -1840,7 +1889,7 @@ msgid "In the left sidebar, click on \"<b>Facebook Login > Settings</b>\""
1840
  msgstr "在左侧,点击\"Facebook 登录/设置\""
1841
 
1842
  #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:12
1843
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:34
1844
  #, fuzzy, php-format
1845
  #| msgid ""
1846
  #| "Add the following URL to the \"Valid OAuth redirect URIs\" field: <b>%s</"
@@ -1932,9 +1981,11 @@ msgstr "导航 %s"
1932
 
1933
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:26
1934
  #, fuzzy
1935
- #| msgid "Click on the \"Add a New App\" button"
1936
- msgid "Click on the \"<b>Add a New App\" button</b>"
1937
- msgstr "点击\"添加新的应用\"按钮"
 
 
1938
 
1939
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:27
1940
  msgid ""
@@ -1946,25 +1997,31 @@ msgstr ""
1946
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:28
1947
  #, php-format
1948
  msgid ""
1949
- "Fill \"<b>Display Name</b>\" and \"<b>Contact Email</b>\". The specified "
1950
- "\"Display Name\" will appear on your %s!"
1951
  msgstr ""
1952
 
1953
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:29
 
 
 
 
 
 
1954
  #, fuzzy
1955
  #| msgid "Click on the \"Create New App\" button"
1956
  msgid ""
1957
  "Click the \"<b>Create App ID</b>\" button and complete the Security Check."
1958
  msgstr "点击\"创建新应用\"按钮"
1959
 
1960
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:30
1961
  #, php-format
1962
  msgid ""
1963
  "At the \"<b>Add a Product</b>\" panel find \"<b>%1$s</b>\" and click "
1964
  "\"<b>Set Up</b>\""
1965
  msgstr ""
1966
 
1967
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:31
1968
  #, fuzzy, php-format
1969
  #| msgid ""
1970
  #| "Add the following URL to the \"Authorized Redirect URLs:\" field: <b>%s</"
@@ -1974,33 +2031,33 @@ msgid ""
1974
  "field: <b>%s</b>"
1975
  msgstr "将以下网址添加到“授权重定向网址”字段中:<b>%s</b>"
1976
 
1977
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:32
1978
  #, fuzzy
1979
  #| msgid "Click on \"Save Changes\""
1980
  msgid "Press “<b>Save</b>”"
1981
  msgstr "点击\"保存设置\""
1982
 
1983
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:33
1984
  #, php-format
1985
  msgid ""
1986
  "Click on the “<b>%1$s</b>” option what you find on the left side, under “<b>"
1987
  "%2$s</b> - <b>%3$s</b>”"
1988
  msgstr ""
1989
 
1990
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:35
1991
  #, fuzzy
1992
  #| msgid "Click on \"Save Changes\""
1993
  msgid "Click on “<b>Save Changes</b>”"
1994
  msgstr "点击\"保存设置\""
1995
 
1996
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:36
1997
  #, php-format
1998
  msgid ""
1999
  "On the top left side, click on the “<b>%1$s</b>” menu point, then click “<b>"
2000
  "%2$s</b>”"
2001
  msgstr ""
2002
 
2003
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:37
2004
  #, fuzzy, php-format
2005
  #| msgid "Enter your domain name to the App Domains"
2006
  msgid ""
@@ -2008,7 +2065,7 @@ msgid ""
2008
  "b>"
2009
  msgstr "填写你的域名到 应用域名"
2010
 
2011
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:38
2012
  #, fuzzy
2013
  #| msgid ""
2014
  #| "Fill up the \"Privacy Policy URL\". Provide a publicly available and "
@@ -2022,14 +2079,41 @@ msgstr ""
2022
  "填写“隐私政策URL”。 提供公开可用且易于访问的隐私政策页面,解释您收集的数据以"
2023
  "及您将如何使用该数据。"
2024
 
2025
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:39
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2026
  msgid ""
2027
- "Select a “<b>Category</b>”, an “<b>App Icon</b>” and pick the “<b>Business "
2028
- "Use</b>” option that describes your the App best, then press \"<b>Save "
 
 
 
 
 
 
 
 
2029
  "Changes</b>\""
2030
  msgstr ""
2031
 
2032
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:40
2033
  #, fuzzy
2034
  #| msgid ""
2035
  #| "Your application is currently private, which means that only you can log "
@@ -2043,7 +2127,7 @@ msgstr ""
2043
  "您的应用程序目前是私人的,这意味着只有您可以使用它登录。 在左侧栏中选择“应用"
2044
  "程序审查”,并发布您的应用程序"
2045
 
2046
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:41
2047
  #, fuzzy
2048
  #| msgid ""
2049
  #| "Here you can see your \"APP ID\" and you can see your \"App secret\" if "
@@ -2057,9 +2141,20 @@ msgstr ""
2057
  "然后,你可以看见你的 \"APP ID\" 和 \"APP secret\"密匙,你可以看到\"显示\"按"
2058
  "钮,这些都需要填写到插件的设置里。"
2059
 
2060
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:45
 
 
 
 
 
 
 
 
 
 
 
2061
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:40
2062
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:32
2063
  #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:39
2064
  #: nextend-social-login-pro/providers/apple/admin/getting-started.php:122
2065
  #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:30
@@ -2129,38 +2224,55 @@ msgstr "如果你不确定,什么是你的 %1$s, 请转到 <a href=\"%2$s\">
2129
  msgid "App Secret"
2130
  msgstr "App 密匙"
2131
 
2132
- #: nextend-facebook-connect/providers/facebook/facebook.php:84
 
 
 
 
 
 
 
 
 
 
 
2133
  msgid "Continue with <b>Facebook</b>"
2134
  msgstr "通过 <b>Facebook</b>"
2135
 
2136
- #: nextend-facebook-connect/providers/facebook/facebook.php:85
 
 
 
 
 
 
2137
  msgid "Link account with <b>Facebook</b>"
2138
  msgstr "关联 <b>Facebook</b> 账号"
2139
 
2140
- #: nextend-facebook-connect/providers/facebook/facebook.php:86
2141
  msgid "Unlink account from <b>Facebook</b>"
2142
  msgstr "解除关联 <b>Facebook</b> 账号"
2143
 
2144
- #: nextend-facebook-connect/providers/facebook/facebook.php:186
2145
- #: nextend-facebook-connect/providers/google/google.php:174
2146
- #: nextend-facebook-connect/providers/twitter/twitter.php:95
2147
- #: nextend-social-login-pro/providers/amazon/amazon.php:65
2148
- #: nextend-social-login-pro/providers/apple/apple.php:129
2149
- #: nextend-social-login-pro/providers/apple/apple.php:136
2150
- #: nextend-social-login-pro/providers/disqus/disqus.php:112
2151
- #: nextend-social-login-pro/providers/github/github.php:150
2152
- #: nextend-social-login-pro/providers/linkedin/linkedin.php:63
2153
- #: nextend-social-login-pro/providers/paypal/paypal.php:90
2154
- #: nextend-social-login-pro/providers/vk/vk.php:61
2155
- #: nextend-social-login-pro/providers/wordpress/wordpress.php:99
2156
- #: nextend-social-login-pro/providers/yahoo/yahoo.php:90
2157
  #, php-format
2158
  msgid ""
2159
  "The %1$s entered did not appear to be a valid. Please enter a valid %2$s."
2160
  msgstr "输入的 %1$s 似乎不是有效的。 请输入有效的 %2$s."
2161
 
2162
- #: nextend-facebook-connect/providers/facebook/facebook.php:307
2163
- #: nextend-social-login-pro/providers/paypal/paypal.php:170
2164
  #, php-format
2165
  msgid "Required scope: %1$s"
2166
  msgstr ""
@@ -2338,19 +2450,25 @@ msgid ""
2338
  "Disable, when you don't want to see the account select prompt on each login."
2339
  msgstr ""
2340
 
2341
- #: nextend-facebook-connect/providers/google/google.php:106
2342
  msgid "Continue with <b>Google</b>"
2343
  msgstr "通过 <b>Google</b>"
2344
 
2345
- #: nextend-facebook-connect/providers/google/google.php:107
 
 
 
 
 
 
2346
  msgid "Link account with <b>Google</b>"
2347
  msgstr "关联 <b>Google</b>"
2348
 
2349
- #: nextend-facebook-connect/providers/google/google.php:108
2350
  msgid "Unlink account from <b>Google</b>"
2351
  msgstr "取消关联 <b>Google</b>"
2352
 
2353
- #: nextend-facebook-connect/providers/google/google.php:301
2354
  #, fuzzy, php-format
2355
  #| msgid "Required"
2356
  msgid "Required API: %1$s"
@@ -2359,26 +2477,39 @@ msgstr "请求"
2359
  #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:10
2360
  #, fuzzy
2361
  #| msgid "Name your project and then click on the Create button"
2362
- msgid "Find your App and click on the \"<b>Details</b>\" button"
 
 
2363
  msgstr "命名您的项目,然后点击创建按钮"
2364
 
2365
  #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:11
2366
- msgid ""
2367
- "The <b>Edit</b> button can be found on the App details tab. Click on it and "
2368
- "select \"<b>Edit details</b>\""
2369
- msgstr ""
 
2370
 
2371
  #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:12
2372
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:22
2373
  #, fuzzy, php-format
2374
  #| msgid "Add the following URL to the \"Callback URL\" field: <b>%s</b>"
2375
  msgid "Add the following URL to the \"<b>Callback URLs</b>\" field: <b>%s</b>"
2376
  msgstr "将以下网址添加到\"Callback URL\"中:<b>%s</b>"
2377
 
2378
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:17
 
 
 
 
 
 
 
 
 
 
 
2379
  #, fuzzy, php-format
2380
  #| msgid "Log in with your %s credentials if you are not logged in"
2381
- msgid "Log in with your %s credentials if you are not logged in yet"
2382
  msgstr "如果您未登录,请使用您的 %s 凭据登录"
2383
 
2384
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:18
@@ -2395,55 +2526,78 @@ msgid ""
2395
  msgstr ""
2396
 
2397
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:20
2398
- #, fuzzy, php-format
2399
- #| msgid ""
2400
- #| "Fill the name and description fields. Then enter your site's URL to the "
2401
- #| "Website field: <b>%s</b>"
2402
- msgid ""
2403
- "Fill the <b>App name</b>, <b>Application description</b> fields. Then enter "
2404
- "your site's URL to the <b>Website URL</b> field: <b>%s</b>"
2405
- msgstr "填写名称和说明。 然后在网址字段输入您网站的:<b>%s</b>"
2406
 
2407
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:21
2408
- msgid "Tick the checkbox next to <b>Enable Sign in with Twitter</b>!"
 
 
 
 
 
 
2409
  msgstr ""
2410
 
2411
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:23
2412
  msgid ""
2413
- "Fill the “<b>Terms of Service URL</b>\", \"<b>Privacy policy URL</b>\" and "
2414
- "\"<b>Tell us how this app will be used</b>\" fields!"
 
2415
  msgstr ""
2416
 
2417
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:24
2418
- #, fuzzy
2419
- #| msgid "Click on the Create button"
2420
- msgid "Click the <b>Create</b> button."
2421
- msgstr "点击创建按钮"
2422
 
2423
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:25
2424
- #, fuzzy
2425
- #| msgid "Name your project and then click on the Create button"
2426
- msgid "Read the Developer Terms and click the <b>Create</b> button again!"
2427
- msgstr "命名您的项目,然后点击创建按钮"
2428
 
2429
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:26
2430
- msgid "Select the <b>Permissions</b> tab and click <b>Edit</b>."
2431
  msgstr ""
2432
 
2433
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:27
2434
- msgid ""
2435
- "Tick the <b>Request email address from users</b> under the Additional "
2436
- "permissions section and click <b>Save</b>."
2437
  msgstr ""
2438
 
2439
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:28
2440
- #, fuzzy
 
 
 
 
 
 
2441
  #| msgid ""
2442
- #| "Go to the Keys and Access Tokens tab and find the Consumer Key and Secret"
 
 
 
 
 
2443
  msgid ""
2444
- "Go to the <b>Keys and tokens</b> tab and find the <b>API key</b> and <b>API "
2445
- "secret key</b>"
2446
- msgstr "转到密钥和访问密令选项卡,找到使用者密匙和密码"
 
 
 
 
 
 
 
 
 
 
 
 
 
2447
 
2448
  #: nextend-facebook-connect/providers/twitter/admin/settings.php:27
2449
  #: nextend-social-login-pro/providers/disqus/admin/settings.php:26
@@ -2462,15 +2616,21 @@ msgstr ""
2462
  msgid "Original"
2463
  msgstr ""
2464
 
2465
- #: nextend-facebook-connect/providers/twitter/twitter.php:69
2466
  msgid "Continue with <b>Twitter</b>"
2467
  msgstr "保持 <b>Twitter</b>"
2468
 
2469
- #: nextend-facebook-connect/providers/twitter/twitter.php:70
 
 
 
 
 
 
2470
  msgid "Link account with <b>Twitter</b>"
2471
  msgstr "关联 <b>Twitter</b> 账号"
2472
 
2473
- #: nextend-facebook-connect/providers/twitter/twitter.php:71
2474
  msgid "Unlink account from <b>Twitter</b>"
2475
  msgstr "从 <b>Twitter</b> 取消关联帐户"
2476
 
@@ -2593,20 +2753,20 @@ msgid ""
2593
  "with %1$s."
2594
  msgstr "这个电子邮件已经注册过,请登录到您的帐户以链接到Facebook。"
2595
 
2596
- #: nextend-social-login-pro/nextend-social-login-pro.php:88
2597
  #, php-format
2598
  msgid "Please install and activate %1$s to use the %2$s"
2599
  msgstr ""
2600
 
2601
- #: nextend-social-login-pro/nextend-social-login-pro.php:102
2602
  msgid "Network Activate"
2603
  msgstr ""
2604
 
2605
- #: nextend-social-login-pro/nextend-social-login-pro.php:114
2606
  msgid "Install now!"
2607
  msgstr ""
2608
 
2609
- #: nextend-social-login-pro/nextend-social-login-pro.php:787
2610
  #, fuzzy
2611
  #| msgid "Providers"
2612
  msgid "Social Providers"
@@ -2619,7 +2779,7 @@ msgid ""
2619
  "latest %2$s version!"
2620
  msgstr ""
2621
 
2622
- #: nextend-social-login-pro/provider-extensions/google.php:176
2623
  #, php-format
2624
  msgid ""
2625
  "Most of these information can only be retrieved, when the field is marked as "
@@ -2679,22 +2839,6 @@ msgstr ""
2679
  "将帮助你了解 %1$s 应用建立的过程,然后你可以建立一个你自己的 %1$s App。转到"
2680
  "\"设置“,然后根据你的 %1$s 配置,给予 \"%2$s\" and \"%3$s\"。"
2681
 
2682
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:25
2683
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:38
2684
- #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:9
2685
- #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:16
2686
- #: nextend-social-login-pro/providers/github/admin/getting-started.php:16
2687
- #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:9
2688
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:17
2689
- #: nextend-social-login-pro/providers/vk/admin/getting-started.php:16
2690
- #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:9
2691
- #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:16
2692
- #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:17
2693
- #, fuzzy, php-format
2694
- #| msgid "Log in with your %s credentials if you are not logged in"
2695
- msgid "Log in with your %s credentials if you are not logged in."
2696
- msgstr "如果您未登录,请使用您的 %s 凭据登录"
2697
-
2698
  #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:27
2699
  #, fuzzy
2700
  #| msgid ""
@@ -2744,15 +2888,21 @@ msgstr ""
2744
  "然后,你可以看见你的 \"APP ID\" 和 \"APP secret\"密匙,你可以看到\"显示\"按"
2745
  "钮,这些都需要填写到插件的设置里。"
2746
 
2747
- #: nextend-social-login-pro/providers/amazon/amazon.php:39
2748
  msgid "Continue with <b>Amazon</b>"
2749
  msgstr "通过 <b>Amazon</b>"
2750
 
2751
- #: nextend-social-login-pro/providers/amazon/amazon.php:40
 
 
 
 
 
 
2752
  msgid "Link account with <b>Amazon</b>"
2753
  msgstr "关联 <b>Amazon</b> 账号"
2754
 
2755
- #: nextend-social-login-pro/providers/amazon/amazon.php:41
2756
  msgid "Unlink account from <b>Amazon</b>"
2757
  msgstr "解除关联 <b>Amazon</b> 账号"
2758
 
@@ -3075,53 +3225,52 @@ msgstr ""
3075
  msgid "Generate Token"
3076
  msgstr ""
3077
 
3078
- #: nextend-social-login-pro/providers/apple/apple.php:82
3079
- #, fuzzy
3080
- #| msgid "Continue with <b>Google</b>"
3081
  msgid "Continue with <b>Apple</b>"
3082
- msgstr "通过 <b>Google</b>"
3083
 
3084
- #: nextend-social-login-pro/providers/apple/apple.php:83
3085
  #, fuzzy
3086
- #| msgid "Link account with <b>Google</b>"
 
 
 
3087
  msgid "Link account with <b>Apple</b>"
3088
- msgstr "关联 <b>Google</b>"
3089
 
3090
- #: nextend-social-login-pro/providers/apple/apple.php:84
3091
- #, fuzzy
3092
- #| msgid "Unlink account from <b>Google</b>"
3093
  msgid "Unlink account from <b>Apple</b>"
3094
- msgstr "取消关联 <b>Google</b>"
3095
 
3096
- #: nextend-social-login-pro/providers/apple/apple.php:178
3097
  #, php-format
3098
  msgid "An error occurred when storing of the expiration timestamp : %1$s"
3099
  msgstr ""
3100
 
3101
- #: nextend-social-login-pro/providers/apple/apple.php:182
3102
- #: nextend-social-login-pro/providers/apple/apple.php:280
3103
- #: nextend-social-login-pro/providers/apple/apple.php:295
3104
- #: nextend-social-login-pro/providers/apple/apple.php:339
3105
  #, php-format
3106
  msgid "Token generation failed: %1$s"
3107
  msgstr ""
3108
 
3109
- #: nextend-social-login-pro/providers/apple/apple.php:182
3110
  msgid "Please check your credentials!"
3111
  msgstr ""
3112
 
3113
- #: nextend-social-login-pro/providers/apple/apple.php:280
3114
  msgid "Private key format is not valid!"
3115
  msgstr ""
3116
 
3117
- #: nextend-social-login-pro/providers/apple/apple.php:306
3118
  #, php-format
3119
  msgid ""
3120
  "%s detected that your Apple credentials have expired. Please delete the "
3121
  "current credentials and generate new one!"
3122
  msgstr ""
3123
 
3124
- #: nextend-social-login-pro/providers/apple/apple.php:308
3125
  msgid "Apple Credentials"
3126
  msgstr ""
3127
 
@@ -3224,15 +3373,21 @@ msgstr ""
3224
  msgid "API Secret"
3225
  msgstr "App 密匙"
3226
 
3227
- #: nextend-social-login-pro/providers/disqus/disqus.php:86
3228
  msgid "Continue with <b>Disqus</b>"
3229
  msgstr "通过 <b>Disqus</b>"
3230
 
3231
- #: nextend-social-login-pro/providers/disqus/disqus.php:87
 
 
 
 
 
 
3232
  msgid "Link account with <b>Disqus</b>"
3233
  msgstr "关联 <b>Disqus</b>"
3234
 
3235
- #: nextend-social-login-pro/providers/disqus/disqus.php:88
3236
  msgid "Unlink account from <b>Disqus</b>"
3237
  msgstr "取消关联 <b>Disqus</b>"
3238
 
@@ -3325,23 +3480,22 @@ msgid ""
3325
  "public email address set at the %1$s profile page%2$s!"
3326
  msgstr ""
3327
 
3328
- #: nextend-social-login-pro/providers/github/github.php:124
3329
- #, fuzzy
3330
- #| msgid "Continue with <b>Disqus</b>"
3331
  msgid "Continue with <b>GitHub</b>"
3332
- msgstr "通过 <b>Disqus</b>"
3333
 
3334
- #: nextend-social-login-pro/providers/github/github.php:125
3335
  #, fuzzy
3336
- #| msgid "Link account with <b>Disqus</b>"
 
 
 
3337
  msgid "Link account with <b>GitHub</b>"
3338
- msgstr "关联 <b>Disqus</b>"
3339
 
3340
- #: nextend-social-login-pro/providers/github/github.php:126
3341
- #, fuzzy
3342
- #| msgid "Unlink account from <b>Disqus</b>"
3343
  msgid "Unlink account from <b>GitHub</b>"
3344
- msgstr "取消关联 <b>Disqus</b>"
3345
 
3346
  #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:10
3347
  msgid "Click on your App and go to the \"<b>Auth</b>\" tab."
@@ -3442,15 +3596,21 @@ msgstr ""
3442
  "然后,你可以看见你的 \"APP ID\" 和 \"APP secret\"密匙,你可以看到\"显示\"按"
3443
  "钮,这些都需要填写到插件的设置里。"
3444
 
3445
- #: nextend-social-login-pro/providers/linkedin/linkedin.php:37
3446
  msgid "Continue with <b>LinkedIn</b>"
3447
  msgstr "通过 <b>LinkedIn</b>"
3448
 
3449
- #: nextend-social-login-pro/providers/linkedin/linkedin.php:38
 
 
 
 
 
 
3450
  msgid "Link account with <b>LinkedIn</b>"
3451
  msgstr "关联 <b>LinkedIn</b> 账号"
3452
 
3453
- #: nextend-social-login-pro/providers/linkedin/linkedin.php:39
3454
  msgid "Unlink account from <b>LinkedIn</b>"
3455
  msgstr "从<b> LinkedIn </ b>取消关联帐户"
3456
 
@@ -3563,15 +3723,21 @@ msgstr "Email"
3563
  msgid "Disable, when you have no rights for email address."
3564
  msgstr ""
3565
 
3566
- #: nextend-social-login-pro/providers/paypal/paypal.php:64
3567
  msgid "Continue with <b>PayPal</b>"
3568
  msgstr "通过 <b>PayPal</b>"
3569
 
3570
- #: nextend-social-login-pro/providers/paypal/paypal.php:65
 
 
 
 
 
 
3571
  msgid "Link account with <b>PayPal</b>"
3572
  msgstr "关联 <b>PayPal</b>"
3573
 
3574
- #: nextend-social-login-pro/providers/paypal/paypal.php:66
3575
  msgid "Unlink account from <b>PayPal</b>"
3576
  msgstr "取消关联 <b>PayPal</b>"
3577
 
@@ -3671,15 +3837,21 @@ msgstr ""
3671
  msgid "Secure key"
3672
  msgstr ""
3673
 
3674
- #: nextend-social-login-pro/providers/vk/vk.php:35
3675
  msgid "Continue with <b>VK</b>"
3676
  msgstr "通过 <b>VK</b>"
3677
 
3678
- #: nextend-social-login-pro/providers/vk/vk.php:36
 
 
 
 
 
 
3679
  msgid "Link account with <b>VK</b>"
3680
  msgstr "关联 <b>VK</b>"
3681
 
3682
- #: nextend-social-login-pro/providers/vk/vk.php:37
3683
  msgid "Unlink account from <b>VK</b>"
3684
  msgstr "取消关联 <b>VK</b>"
3685
 
@@ -3752,15 +3924,21 @@ msgstr ""
3752
  "然后,你可以看见你的 \"APP ID\" 和 \"APP secret\"密匙,你可以看到\"显示\"按"
3753
  "钮,这些都需要填写到插件的设置里。"
3754
 
3755
- #: nextend-social-login-pro/providers/wordpress/wordpress.php:73
3756
  msgid "Continue with <b>WordPress.com</b>"
3757
  msgstr "通过 <b>WordPress.com</b>"
3758
 
3759
- #: nextend-social-login-pro/providers/wordpress/wordpress.php:74
 
 
 
 
 
 
3760
  msgid "Link account with <b>WordPress.com</b>"
3761
  msgstr "关联 <b>WordPress.com</b>"
3762
 
3763
- #: nextend-social-login-pro/providers/wordpress/wordpress.php:75
3764
  msgid "Unlink account from <b>WordPress.com</b>"
3765
  msgstr "取消关联 <b>WordPress.com</b>"
3766
 
@@ -3828,25 +4006,24 @@ msgstr ""
3828
  "然后,你可以看见你的 \"APP ID\" 和 \"APP secret\"密匙,你可以看到\"显示\"按"
3829
  "钮,这些都需要填写到插件的设置里。"
3830
 
3831
- #: nextend-social-login-pro/providers/yahoo/yahoo.php:64
3832
- #, fuzzy
3833
- #| msgid "Continue with <b>Facebook</b>"
3834
  msgid "Continue with <b>Yahoo</b>"
3835
- msgstr "通过 <b>Facebook</b>"
3836
 
3837
- #: nextend-social-login-pro/providers/yahoo/yahoo.php:65
3838
  #, fuzzy
3839
- #| msgid "Link account with <b>Facebook</b>"
 
 
 
3840
  msgid "Link account with <b>Yahoo</b>"
3841
- msgstr "关联 <b>Facebook</b> 账号"
3842
 
3843
- #: nextend-social-login-pro/providers/yahoo/yahoo.php:66
3844
- #, fuzzy
3845
- #| msgid "Unlink account from <b>Facebook</b>"
3846
  msgid "Unlink account from <b>Yahoo</b>"
3847
- msgstr "解除关联 <b>Facebook</b> 账号"
3848
 
3849
- #: nextend-social-login-pro/providers/yahoo/yahoo.php:186
3850
  #, fuzzy, php-format
3851
  #| msgid "Required"
3852
  msgid "Required permission: %1$s"
@@ -3890,6 +4067,43 @@ msgstr "或"
3890
  msgid "Social accounts"
3891
  msgstr "社交账号"
3892
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3893
  #, fuzzy
3894
  #~| msgid "Enter your domain name to the App Domains"
3895
  #~ msgid "Enter your domain name to the \"App Domains\" field."
@@ -4189,9 +4403,6 @@ msgstr "社交账号"
4189
  #~ msgid "Connect button after login form"
4190
  #~ msgstr "登录按钮在登录表单后"
4191
 
4192
- #~ msgid "WooCommerce register form"
4193
- #~ msgstr "WooCommerce 注册表单"
4194
-
4195
  #~ msgid "Connect button before register form"
4196
  #~ msgstr "登录按钮在注册表单前"
4197
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: ss3\n"
4
+ "POT-Creation-Date: 2021-01-27 13:58+0100\n"
5
+ "PO-Revision-Date: 2021-01-27 13:58+0100\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: zh_CN\n"
117
  msgid "User"
118
  msgstr "用户"
119
 
120
+ #: nextend-facebook-connect/admin/admin.php:206
121
  #, php-format
122
  msgid "%s needs json_decode function."
123
  msgstr "%s 需要 json_decode 函数。"
124
 
125
+ #: nextend-facebook-connect/admin/admin.php:206
126
  msgid "Please contact your server administrator and ask for solution!"
127
  msgstr "请与服务器管理员联系并寻求解决方案!"
128
 
129
+ #: nextend-facebook-connect/admin/admin.php:238
130
+ #: nextend-facebook-connect/admin/admin.php:268
131
  msgid "Settings saved."
132
  msgstr "设置已保存。"
133
 
134
+ #: nextend-facebook-connect/admin/admin.php:247
135
  #, fuzzy
136
  #| msgid "The authorization was successful"
137
  msgid "The activation was successful"
138
  msgstr "授权成功"
139
 
140
+ #: nextend-facebook-connect/admin/admin.php:258
141
  #, fuzzy
142
  #| msgid "Deauthorize completed."
143
  msgid "Deactivate completed."
144
  msgstr "取消授权."
145
 
146
+ #: nextend-facebook-connect/admin/admin.php:437
147
  #: nextend-facebook-connect/admin/templates-provider/menu.php:15
148
  #: nextend-facebook-connect/admin/templates/providers.php:89
149
  #: nextend-facebook-connect/admin/templates/providers.php:101
151
  msgid "Settings"
152
  msgstr "设置"
153
 
154
+ #: nextend-facebook-connect/admin/admin.php:520
155
+ #: nextend-facebook-connect/includes/oauth2.php:143
156
+ #: nextend-facebook-connect/includes/oauth2.php:288
157
  #: nextend-facebook-connect/providers/facebook/facebook-client.php:84
158
  #: nextend-facebook-connect/providers/twitter/twitter-client.php:165
159
  #: nextend-social-login-pro/providers/apple/apple-client.php:87
162
  msgid "Unexpected response: %s"
163
  msgstr "响应出现意外情况: %s"
164
 
165
+ #: nextend-facebook-connect/admin/admin.php:581
166
  #: nextend-facebook-connect/admin/templates/fix-redirect-uri.php:21
167
  #, php-format
168
  msgid ""
172
  "%s 检测到您的登录网址已更改。您必须更新相关社交应用程序中的Oauth redirect "
173
  "URIs."
174
 
175
+ #: nextend-facebook-connect/admin/admin.php:582
176
+ #: nextend-social-login-pro/providers/apple/apple.php:310
177
  msgid "Fix Error"
178
  msgstr "修复错误"
179
 
180
+ #: nextend-facebook-connect/admin/admin.php:582
181
  msgid "Oauth Redirect URI"
182
  msgstr "Oauth Redirect URI"
183
 
184
+ #: nextend-facebook-connect/admin/admin.php:599
185
  #, php-format
186
  msgid ""
187
  "%1$s detected that %2$s installed on your site. You need the Pro Addon to "
190
  "%1$s 检测到 %2$s 已经安装在你的网站. 你需要安装专业版本去显示社交登录按钮 "
191
  "%2$s 登录表单!"
192
 
193
+ #: nextend-facebook-connect/admin/admin.php:600
194
  msgid "Dismiss and check Pro Addon"
195
  msgstr "解除并检查专业版本"
196
 
197
+ #: nextend-facebook-connect/admin/admin.php:600
198
  msgid "Dismiss"
199
  msgstr "解除"
200
 
201
+ #: nextend-facebook-connect/admin/admin.php:606
202
  #, php-format
203
  msgid ""
204
  "%1$s detected that %2$s installed on your site. You must set \"<b>Page for "
206
  "work properly."
207
  msgstr ""
208
 
209
+ #: nextend-facebook-connect/admin/admin.php:607
210
  #, fuzzy
211
  #| msgid "Fix Error"
212
  msgid "Fix now"
213
  msgstr "修复错误"
214
 
215
+ #: nextend-facebook-connect/admin/admin.php:631
216
  #, fuzzy
217
  #| msgid "Activate Pro Addon"
218
  msgid "Activate your Pro Addon"
219
  msgstr "启用专业版本插件"
220
 
221
+ #: nextend-facebook-connect/admin/admin.php:632
222
  #, fuzzy
223
  #| msgid ""
224
  #| "To be able to use the Pro features, you need to authorize Nextend Social "
232
  "要想使用专业版本功能,你需要 Nextend Social Connect 专业版本的授权。你可以点"
233
  "击下面的授权按钮,然后选择购买。"
234
 
235
+ #: nextend-facebook-connect/admin/admin.php:637
236
+ #: nextend-social-login-pro/nextend-social-login-pro.php:110
237
  msgid "Activate"
238
  msgstr ""
239
 
240
+ #: nextend-facebook-connect/admin/admin.php:735
241
  msgid "License key"
242
  msgstr "密匙"
243
 
244
+ #: nextend-facebook-connect/admin/admin.php:758
245
  msgid "OAuth proxy page"
246
  msgstr ""
247
 
248
+ #: nextend-facebook-connect/admin/admin.php:761
249
  #, fuzzy
250
  #| msgid "Register"
251
  msgid "Register flow page"
256
  msgid "You have logged in successfully."
257
  msgstr "你已经成功登录。"
258
 
259
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:80
260
  msgid "Login label"
261
  msgstr "登录标签"
262
 
263
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:85
264
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:101
265
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:114
266
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:125
267
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:154
268
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:184
269
  #: nextend-facebook-connect/admin/templates/settings/privacy.php:53
270
  msgid "Reset to default"
271
  msgstr "恢复默认设置"
272
 
273
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:95
274
+ #, fuzzy
275
+ #| msgid "Register"
276
+ msgid "Register label"
277
+ msgstr "注册"
278
+
279
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:108
280
  msgid "Link label"
281
  msgstr "链接标签"
282
 
283
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:120
284
  msgid "Unlink label"
285
  msgstr "解除链接标签"
286
 
287
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:131
288
  msgid "Default button"
289
  msgstr "默认按钮"
290
 
291
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:147
292
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:177
293
  msgid "Use custom button"
294
  msgstr "使用自定义按钮"
295
 
296
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:154
297
  #, php-format
298
  msgid "Use the %s in your custom button's code to make the label show up."
299
  msgstr "使用 %s 在你的自定义按钮代码显示界面."
300
 
301
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:162
302
  msgid "Icon button"
303
  msgstr "图标按钮"
304
 
305
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:193
306
  #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:140
307
  #: nextend-facebook-connect/admin/templates-provider/sync-data.php:104
308
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:170
315
  #: nextend-facebook-connect/admin/templates/settings/privacy.php:109
316
  #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:186
317
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:167
318
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:341
319
+ #: nextend-facebook-connect/providers/facebook/admin/settings.php:67
320
  #: nextend-facebook-connect/providers/google/admin/settings.php:62
321
  #: nextend-facebook-connect/providers/twitter/admin/settings.php:48
322
  #: nextend-social-login-pro/providers/amazon/admin/settings.php:47
445
  #: nextend-facebook-connect/admin/templates/settings/general.php:213
446
  #: nextend-facebook-connect/admin/templates/settings/general.php:228
447
  #: nextend-facebook-connect/admin/templates/settings/general.php:246
448
+ #: nextend-facebook-connect/admin/templates/settings/general.php:261
449
+ #: nextend-facebook-connect/includes/provider-admin.php:218
450
  msgid "Disabled"
451
  msgstr "禁用"
452
 
762
  #: nextend-facebook-connect/admin/templates/settings/general.php:216
763
  #: nextend-facebook-connect/admin/templates/settings/general.php:231
764
  #: nextend-facebook-connect/admin/templates/settings/general.php:249
765
+ #: nextend-facebook-connect/admin/templates/settings/general.php:264
766
+ #: nextend-facebook-connect/includes/provider-admin.php:221
767
  #: nextend-facebook-connect/providers/google/admin/settings.php:53
768
  #: nextend-social-login-pro/providers/paypal/admin/settings.php:51
769
  msgid "Enabled"
774
  msgstr "现在更新"
775
 
776
  #: nextend-facebook-connect/admin/templates/providers.php:77
777
+ #: nextend-facebook-connect/includes/provider-admin.php:205
778
  msgid "Verify Settings"
779
  msgstr "验证设置"
780
 
781
  #: nextend-facebook-connect/admin/templates/providers.php:85
782
+ #: nextend-facebook-connect/includes/provider-admin.php:250
783
  msgid "Enable"
784
  msgstr "启用"
785
 
786
  #: nextend-facebook-connect/admin/templates/providers.php:97
787
+ #: nextend-facebook-connect/includes/provider-admin.php:258
788
  msgid "Disable"
789
  msgstr "禁止"
790
 
1358
  msgid "Allow registration with Social login."
1359
  msgstr "允许通过社交登录注册"
1360
 
1361
+ #: nextend-facebook-connect/admin/templates/settings/general.php:256
1362
+ #, fuzzy
1363
+ #| msgid "Register"
1364
+ msgid "Custom label for register buttons"
1365
+ msgstr "注册"
1366
+
1367
+ #: nextend-facebook-connect/admin/templates/settings/general.php:266
1368
+ #, php-format
1369
+ msgid ""
1370
+ "Set a custom label for the social buttons in registration forms and for "
1371
+ "shortcodes with %1$s parameter set to %2$s.<br>The register specific labels "
1372
+ "can be modified at the Buttons tab of each provider."
1373
+ msgstr ""
1374
+
1375
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:29
1376
  #: nextend-facebook-connect/admin/templates/settings/memberpress.php:33
1377
  #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:33
1474
  msgstr "链接按钮在账户详情后面"
1475
 
1476
  #: nextend-facebook-connect/admin/templates/settings/privacy.php:6
1477
+ #: nextend-facebook-connect/nextend-social-login.php:148
1478
  msgid ""
1479
  "By clicking Register, you accept our <a href=\"#privacy_policy_url\" target="
1480
  "\"_blank\">Privacy Policy</a>"
1502
  msgstr ""
1503
 
1504
  #: nextend-facebook-connect/admin/templates/settings/privacy.php:91
1505
+ #: nextend-facebook-connect/includes/avatar.php:49
1506
  msgid "Avatar"
1507
  msgstr ""
1508
 
1509
  #: nextend-facebook-connect/admin/templates/settings/privacy.php:102
1510
+ #: nextend-facebook-connect/includes/provider.php:1100
1511
  msgid "Access token"
1512
  msgstr ""
1513
 
1595
  msgid "Link buttons on"
1596
  msgstr "图标按钮"
1597
 
1598
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:323
1599
+ #, fuzzy
1600
+ #| msgid "Ask E-mail on registration"
1601
+ msgid "Email template for registration"
1602
+ msgstr "注册时询问E-MAIL"
1603
+
1604
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:328
1605
+ #, fuzzy
1606
+ #| msgid "WordPress default"
1607
+ msgid "WordPress default notification"
1608
+ msgstr "WordPress 默认"
1609
+
1610
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:331
1611
+ #, fuzzy
1612
+ #| msgid "WooCommerce register form"
1613
+ msgid "WooCommerce registration notification"
1614
+ msgstr "WooCommerce 注册表单"
1615
+
1616
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:333
1617
+ #, php-format
1618
+ msgid ""
1619
+ "Defines whether the registration with %1$s will send the same registration "
1620
+ "notification that %2$s does, instead of the %3$s default one."
1621
+ msgstr ""
1622
+
1623
  #: nextend-facebook-connect/admin/templates/test-connection.php:42
1624
  #, fuzzy, php-format
1625
  #| msgid "Authentication successful"
1637
  "between your server and the provider."
1638
  msgstr ""
1639
 
1640
+ #: nextend-facebook-connect/includes/avatar.php:50
1641
  msgid "Manage Avatar"
1642
  msgstr ""
1643
 
1644
+ #: nextend-facebook-connect/includes/avatar.php:51
1645
  #, php-format
1646
  msgid "Avatar <span class=\"count\">(%s)</span>"
1647
  msgid_plural "Avatar <span class=\"count\">(%s)</span>"
1648
  msgstr[0] ""
1649
 
 
1650
  #: nextend-facebook-connect/includes/compat-wp-login.php:63
1651
  #, php-format
1652
  msgid "%1$s &lsaquo; %2$s &#8212; WordPress"
1660
  msgid "Powered by WordPress"
1661
  msgstr ""
1662
 
 
1663
  #: nextend-facebook-connect/includes/compat-wp-login.php:284
1664
  #, php-format
1665
  msgctxt "site"
1666
  msgid "&larr; Back to %s"
1667
  msgstr ""
1668
 
1669
+ #: nextend-facebook-connect/includes/provider-admin.php:199
1670
  msgid "Your configuration needs to be verified"
1671
  msgstr "您的配置需要验证"
1672
 
1673
+ #: nextend-facebook-connect/includes/provider-admin.php:200
1674
  msgid ""
1675
  "Before you can start letting your users register with your app it needs to "
1676
  "be tested. This test makes sure that no users will have troubles with the "
1682
  "册过程中不会遇到麻烦。 <br>如果您在弹出窗口中看到错误消息,请检查复制的ID和密"
1683
  "码。如果没有错误信息,说明你的程序运行正常。"
1684
 
1685
+ #: nextend-facebook-connect/includes/provider-admin.php:206
1686
  msgid "Please save your changes to verify settings."
1687
  msgstr "请保存您的更改以验证。"
1688
 
1689
+ #: nextend-facebook-connect/includes/provider-admin.php:214
1690
  msgid "Works Fine"
1691
  msgstr "运行正常"
1692
 
1693
+ #: nextend-facebook-connect/includes/provider-admin.php:228
1694
  #, php-format
1695
  msgid ""
1696
  "This provider is currently disabled, which means that users can’t register "
1697
  "or login via their %s account."
1698
  msgstr "该通道目前已被禁用,用户无法通过其 %s 帐户注册或登录。"
1699
 
1700
+ #: nextend-facebook-connect/includes/provider-admin.php:231
1701
  #, php-format
1702
  msgid ""
1703
  "This provider works fine, but you can test it again. If you don’t want to "
1706
  "该通道工作正常,但可以再次进行测试。 如果您不想让用户通过 %s 注册或登录,可以"
1707
  "禁用它。"
1708
 
1709
+ #: nextend-facebook-connect/includes/provider-admin.php:234
1710
  #, php-format
1711
  msgid ""
1712
  "This provider is currently enabled, which means that users can register or "
1713
  "login via their %s account."
1714
  msgstr "该通道目前已启用,这意味着用户可以通过 %s 账户进行注册或登录。"
1715
 
1716
+ #: nextend-facebook-connect/includes/provider-admin.php:242
1717
  msgid "Verify Settings Again"
1718
  msgstr "再次验证设置"
1719
 
1720
+ #: nextend-facebook-connect/includes/provider-admin.php:243
1721
  msgid "Please save your changes before verifying settings."
1722
  msgstr ""
1723
 
1724
+ #: nextend-facebook-connect/includes/provider.php:358
1725
+ #: nextend-facebook-connect/includes/provider.php:717
1726
+ #: nextend-facebook-connect/includes/provider.php:725
1727
  msgid "Authentication successful"
1728
  msgstr "授权成功"
1729
 
1730
+ #: nextend-facebook-connect/includes/provider.php:654
1731
+ #: nextend-facebook-connect/includes/user.php:168
1732
+ #: nextend-facebook-connect/includes/user.php:597
1733
  msgid "Authentication error"
1734
  msgstr "授权认证出错"
1735
 
1736
+ #: nextend-facebook-connect/includes/provider.php:669
1737
  msgid "Unlink successful."
1738
  msgstr "解除链接成功."
1739
 
1740
+ #: nextend-facebook-connect/includes/provider.php:671
1741
  msgid "Unlink is not allowed!"
1742
  msgstr ""
1743
 
1744
+ #: nextend-facebook-connect/includes/provider.php:886
1745
+ #: nextend-facebook-connect/includes/provider.php:893
1746
  msgid "The test was successful"
1747
  msgstr "测试成功"
1748
 
1749
+ #: nextend-facebook-connect/includes/provider.php:939
1750
  msgid "Authentication failed"
1751
  msgstr "授权认证失败"
1752
 
1753
+ #: nextend-facebook-connect/includes/provider.php:1092
1754
  msgid "Identifier"
1755
  msgstr ""
1756
 
1757
+ #: nextend-facebook-connect/includes/provider.php:1108
1758
  msgid "Profile picture"
1759
  msgstr ""
1760
 
1766
  msgstr "你的 %1$s 账号已经成功链接到你的网站帐号. 你可以快速登录 %2$s ."
1767
 
1768
  #: nextend-facebook-connect/includes/user.php:77
1769
+ #, fuzzy, php-format
1770
+ #| msgid ""
1771
+ #| "You have already linked a(n) %s account. Please unlink the current and "
1772
+ #| "then you can link other %s account."
1773
  msgid ""
1774
  "You have already linked a(n) %s account. Please unlink the current and then "
1775
+ "you can link another %s account."
1776
  msgstr ""
1777
  "你已经链接了 a(n) %s 账号. 请解除现有的链接账号,你才可以重新链接 %s 账号。"
1778
 
1779
  #: nextend-facebook-connect/includes/user.php:82
1780
+ #, fuzzy, php-format
1781
+ #| msgid "This %s account is already linked to other user."
1782
+ msgid "This %s account is already linked to another user."
1783
  msgstr "这个 %s 账号已经链接到了其他用户。"
1784
 
1785
+ #: nextend-facebook-connect/includes/user.php:128
1786
  msgid "User registration is currently not allowed."
1787
  msgstr ""
1788
 
1790
  msgid "Register For This Site!"
1791
  msgstr "注册此网站!"
1792
 
1793
+ #: nextend-facebook-connect/nextend-facebook-connect.php:37
 
1794
  #, php-format
1795
  msgid "%1$s requires PHP version %2$s+, plugin is currently NOT ACTIVE."
1796
  msgstr ""
1797
 
1798
+ #: nextend-facebook-connect/nextend-facebook-connect.php:44
 
1799
  #, php-format
1800
  msgid ""
1801
  "%1$s requires WordPress version %2$s+. Because you are using an earlier "
1813
  msgid "Update now!"
1814
  msgstr "现在更新!"
1815
 
1816
+ #: nextend-facebook-connect/nextend-social-login.php:762
1817
+ #: nextend-facebook-connect/nextend-social-login.php:1140
1818
  msgid "Social Login"
1819
  msgstr "社交登录"
1820
 
1821
+ #: nextend-facebook-connect/nextend-social-login.php:1121
1822
  msgid "Social Accounts"
1823
  msgstr "社交账号"
1824
 
1889
  msgstr "在左侧,点击\"Facebook 登录/设置\""
1890
 
1891
  #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:12
1892
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:35
1893
  #, fuzzy, php-format
1894
  #| msgid ""
1895
  #| "Add the following URL to the \"Valid OAuth redirect URIs\" field: <b>%s</"
1981
 
1982
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:26
1983
  #, fuzzy
1984
+ #| msgid "Click on the \"Create New App\" button"
1985
+ msgid ""
1986
+ "Click on the \"<b>Create App</b>\" button and in the Popup choose the "
1987
+ "\"<b>Build Connected Experiences</b>\" option!"
1988
+ msgstr "点击\"创建新应用\"按钮"
1989
 
1990
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:27
1991
  msgid ""
1997
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:28
1998
  #, php-format
1999
  msgid ""
2000
+ "Fill \"<b>App Display Name</b>\", \"<b>App Contact Email</b>\". The "
2001
+ "specified \"App Display Name\" will appear on your %s!"
2002
  msgstr ""
2003
 
2004
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:29
2005
+ msgid ""
2006
+ "<b>Optional</b>: choose a \"<b>Business Manager Account</b>\" in the popup, "
2007
+ "if you have any."
2008
+ msgstr ""
2009
+
2010
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:30
2011
  #, fuzzy
2012
  #| msgid "Click on the \"Create New App\" button"
2013
  msgid ""
2014
  "Click the \"<b>Create App ID</b>\" button and complete the Security Check."
2015
  msgstr "点击\"创建新应用\"按钮"
2016
 
2017
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:31
2018
  #, php-format
2019
  msgid ""
2020
  "At the \"<b>Add a Product</b>\" panel find \"<b>%1$s</b>\" and click "
2021
  "\"<b>Set Up</b>\""
2022
  msgstr ""
2023
 
2024
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:32
2025
  #, fuzzy, php-format
2026
  #| msgid ""
2027
  #| "Add the following URL to the \"Authorized Redirect URLs:\" field: <b>%s</"
2031
  "field: <b>%s</b>"
2032
  msgstr "将以下网址添加到“授权重定向网址”字段中:<b>%s</b>"
2033
 
2034
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:33
2035
  #, fuzzy
2036
  #| msgid "Click on \"Save Changes\""
2037
  msgid "Press “<b>Save</b>”"
2038
  msgstr "点击\"保存设置\""
2039
 
2040
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:34
2041
  #, php-format
2042
  msgid ""
2043
  "Click on the “<b>%1$s</b>” option what you find on the left side, under “<b>"
2044
  "%2$s</b> - <b>%3$s</b>”"
2045
  msgstr ""
2046
 
2047
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:36
2048
  #, fuzzy
2049
  #| msgid "Click on \"Save Changes\""
2050
  msgid "Click on “<b>Save Changes</b>”"
2051
  msgstr "点击\"保存设置\""
2052
 
2053
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:37
2054
  #, php-format
2055
  msgid ""
2056
  "On the top left side, click on the “<b>%1$s</b>” menu point, then click “<b>"
2057
  "%2$s</b>”"
2058
  msgstr ""
2059
 
2060
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:38
2061
  #, fuzzy, php-format
2062
  #| msgid "Enter your domain name to the App Domains"
2063
  msgid ""
2065
  "b>"
2066
  msgstr "填写你的域名到 应用域名"
2067
 
2068
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:39
2069
  #, fuzzy
2070
  #| msgid ""
2071
  #| "Fill up the \"Privacy Policy URL\". Provide a publicly available and "
2079
  "填写“隐私政策URL”。 提供公开可用且易于访问的隐私政策页面,解释您收集的数据以"
2080
  "及您将如何使用该数据。"
2081
 
2082
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:40
2083
+ msgid ""
2084
+ "At \"<b>User Data Deletion</b>\", choose the \"<b>Data Deletion Instructions "
2085
+ "URL</b>\" option, and enter the <i>URL of your page</i>* with the "
2086
+ "instructions on how users can delete their accounts on your site."
2087
+ msgstr ""
2088
+
2089
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:42
2090
+ msgid ""
2091
+ "To comply with GDPR, you should already offer possibility to delete accounts "
2092
+ "on your site, either by the user or by the admin:"
2093
+ msgstr ""
2094
+
2095
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:45
2096
+ msgid ""
2097
+ "<u>If each user has an option to delete the account</u>: the URL should "
2098
+ "point to a guide showing the way users can delete their accounts."
2099
+ msgstr ""
2100
+
2101
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:46
2102
  msgid ""
2103
+ "<u>If the accounts are deleted by an admin</u>: then you should have a "
2104
+ "section - usually in the Privacy Policy - with the contact details, where "
2105
+ "users can send their account erasure requests. In this case the URL should "
2106
+ "point to this section of the document."
2107
+ msgstr ""
2108
+
2109
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:51
2110
+ msgid ""
2111
+ "Select a “<b>Category</b>”, an “<b>App Icon</b>” and pick the “<b>App "
2112
+ "Purpose</b>” option that describes your App the best, then press \"<b>Save "
2113
  "Changes</b>\""
2114
  msgstr ""
2115
 
2116
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:52
2117
  #, fuzzy
2118
  #| msgid ""
2119
  #| "Your application is currently private, which means that only you can log "
2127
  "您的应用程序目前是私人的,这意味着只有您可以使用它登录。 在左侧栏中选择“应用"
2128
  "程序审查”,并发布您的应用程序"
2129
 
2130
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:53
2131
  #, fuzzy
2132
  #| msgid ""
2133
  #| "Here you can see your \"APP ID\" and you can see your \"App secret\" if "
2141
  "然后,你可以看见你的 \"APP ID\" 和 \"APP secret\"密匙,你可以看到\"显示\"按"
2142
  "钮,这些都需要填写到插件的设置里。"
2143
 
2144
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:56
2145
+ #, php-format
2146
+ msgid ""
2147
+ "<b>WARNING:</b> <u>Don't replace your Facebook App with another!</u> Since "
2148
+ "WordPress users with linked Facebook accounts can only login using the %1$s "
2149
+ "App, that was originally used at the time, when the WordPress account was "
2150
+ "linked with a %1$s Account.<br>\n"
2151
+ "If you would like to know the reason of this, or you really need to replace "
2152
+ "the Facebook App, then please check our %2$sdocumentation%3$s."
2153
+ msgstr ""
2154
+
2155
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:60
2156
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:40
2157
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:37
2158
  #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:39
2159
  #: nextend-social-login-pro/providers/apple/admin/getting-started.php:122
2160
  #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:30
2224
  msgid "App Secret"
2225
  msgstr "App 密匙"
2226
 
2227
+ #: nextend-facebook-connect/providers/facebook/admin/settings.php:59
2228
+ #, php-format
2229
+ msgid ""
2230
+ "By replacing your existing %1$s App, users with linked %1$s accounts will no "
2231
+ "longer be able to login with %1$s."
2232
+ msgstr ""
2233
+
2234
+ #: nextend-facebook-connect/providers/facebook/admin/settings.php:61
2235
+ msgid "Find out why?"
2236
+ msgstr ""
2237
+
2238
+ #: nextend-facebook-connect/providers/facebook/facebook.php:85
2239
  msgid "Continue with <b>Facebook</b>"
2240
  msgstr "通过 <b>Facebook</b>"
2241
 
2242
+ #: nextend-facebook-connect/providers/facebook/facebook.php:86
2243
+ #, fuzzy
2244
+ #| msgid "Continue with <b>Facebook</b>"
2245
+ msgid "Sign up with <b>Facebook</b>"
2246
+ msgstr "通过 <b>Facebook</b>"
2247
+
2248
+ #: nextend-facebook-connect/providers/facebook/facebook.php:87
2249
  msgid "Link account with <b>Facebook</b>"
2250
  msgstr "关联 <b>Facebook</b> 账号"
2251
 
2252
+ #: nextend-facebook-connect/providers/facebook/facebook.php:88
2253
  msgid "Unlink account from <b>Facebook</b>"
2254
  msgstr "解除关联 <b>Facebook</b> 账号"
2255
 
2256
+ #: nextend-facebook-connect/providers/facebook/facebook.php:188
2257
+ #: nextend-facebook-connect/providers/google/google.php:168
2258
+ #: nextend-facebook-connect/providers/twitter/twitter.php:97
2259
+ #: nextend-social-login-pro/providers/amazon/amazon.php:67
2260
+ #: nextend-social-login-pro/providers/apple/apple.php:131
2261
+ #: nextend-social-login-pro/providers/apple/apple.php:138
2262
+ #: nextend-social-login-pro/providers/disqus/disqus.php:114
2263
+ #: nextend-social-login-pro/providers/github/github.php:152
2264
+ #: nextend-social-login-pro/providers/linkedin/linkedin.php:65
2265
+ #: nextend-social-login-pro/providers/paypal/paypal.php:92
2266
+ #: nextend-social-login-pro/providers/vk/vk.php:63
2267
+ #: nextend-social-login-pro/providers/wordpress/wordpress.php:101
2268
+ #: nextend-social-login-pro/providers/yahoo/yahoo.php:92
2269
  #, php-format
2270
  msgid ""
2271
  "The %1$s entered did not appear to be a valid. Please enter a valid %2$s."
2272
  msgstr "输入的 %1$s 似乎不是有效的。 请输入有效的 %2$s."
2273
 
2274
+ #: nextend-facebook-connect/providers/facebook/facebook.php:309
2275
+ #: nextend-social-login-pro/providers/paypal/paypal.php:172
2276
  #, php-format
2277
  msgid "Required scope: %1$s"
2278
  msgstr ""
2450
  "Disable, when you don't want to see the account select prompt on each login."
2451
  msgstr ""
2452
 
2453
+ #: nextend-facebook-connect/providers/google/google.php:99
2454
  msgid "Continue with <b>Google</b>"
2455
  msgstr "通过 <b>Google</b>"
2456
 
2457
+ #: nextend-facebook-connect/providers/google/google.php:100
2458
+ #, fuzzy
2459
+ #| msgid "Continue with <b>Google</b>"
2460
+ msgid "Sign up with <b>Google</b>"
2461
+ msgstr "通过 <b>Google</b>"
2462
+
2463
+ #: nextend-facebook-connect/providers/google/google.php:101
2464
  msgid "Link account with <b>Google</b>"
2465
  msgstr "关联 <b>Google</b>"
2466
 
2467
+ #: nextend-facebook-connect/providers/google/google.php:102
2468
  msgid "Unlink account from <b>Google</b>"
2469
  msgstr "取消关联 <b>Google</b>"
2470
 
2471
+ #: nextend-facebook-connect/providers/google/google.php:295
2472
  #, fuzzy, php-format
2473
  #| msgid "Required"
2474
  msgid "Required API: %1$s"
2477
  #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:10
2478
  #, fuzzy
2479
  #| msgid "Name your project and then click on the Create button"
2480
+ msgid ""
2481
+ "Find your App and click on the <b>App settings</b> icon. (The one that looks "
2482
+ "like a gear.)"
2483
  msgstr "命名您的项目,然后点击创建按钮"
2484
 
2485
  #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:11
2486
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:27
2487
+ #, fuzzy
2488
+ #| msgid "Click on the \"Create New App\" button"
2489
+ msgid "Click on the <b>Edit</b> button at <b>Authentication settings</b>."
2490
+ msgstr "点击\"创建新应用\"按钮"
2491
 
2492
  #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:12
 
2493
  #, fuzzy, php-format
2494
  #| msgid "Add the following URL to the \"Callback URL\" field: <b>%s</b>"
2495
  msgid "Add the following URL to the \"<b>Callback URLs</b>\" field: <b>%s</b>"
2496
  msgstr "将以下网址添加到\"Callback URL\"中:<b>%s</b>"
2497
 
2498
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:17
2499
+ #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:25
2500
+ #: nextend-social-login-pro/providers/apple/admin/getting-started.php:38
2501
+ #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:9
2502
+ #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:16
2503
+ #: nextend-social-login-pro/providers/github/admin/getting-started.php:16
2504
+ #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:9
2505
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:17
2506
+ #: nextend-social-login-pro/providers/vk/admin/getting-started.php:16
2507
+ #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:9
2508
+ #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:16
2509
+ #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:17
2510
  #, fuzzy, php-format
2511
  #| msgid "Log in with your %s credentials if you are not logged in"
2512
+ msgid "Log in with your %s credentials if you are not logged in."
2513
  msgstr "如果您未登录,请使用您的 %s 凭据登录"
2514
 
2515
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:18
2526
  msgstr ""
2527
 
2528
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:20
2529
+ #, fuzzy
2530
+ #| msgid "Click on \"Save\""
2531
+ msgid "Click on <b>+ New Project</b>!"
2532
+ msgstr "点击\"保存“"
 
 
 
 
2533
 
2534
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:21
2535
+ msgid ""
2536
+ "Name your project, and go through the basic setup. You’ll need to select "
2537
+ "your use case and give a description."
2538
+ msgstr ""
2539
+
2540
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:22
2541
+ msgid "Create a new app, or select an existing one, then click <b>Complete</b>"
2542
  msgstr ""
2543
 
2544
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:23
2545
  msgid ""
2546
+ "You’ll find your API key and secret on this page. Copy and paste the <b>API "
2547
+ "key</b> and the <b>API secret key</b> to the corresponding fields at Nextend "
2548
+ "Social Login and press <b>Save Changes</b>."
2549
  msgstr ""
2550
 
2551
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:24
2552
+ #, fuzzy, php-format
2553
+ #| msgid "Click on \"Save Changes\""
2554
+ msgid "Click on the <b>App Settings</b> button at %s."
2555
+ msgstr "点击\"保存设置\""
2556
 
2557
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:25
2558
+ msgid "Find the Apps section, and the app you created a few steps ago."
2559
+ msgstr ""
 
 
2560
 
2561
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:26
2562
+ msgid "Click on the App settings icon. (The one that looks like a gear.)"
2563
  msgstr ""
2564
 
2565
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:28
2566
+ msgid "Switch on the <b>Enable 3-legged OAuth</b> option."
 
 
2567
  msgstr ""
2568
 
2569
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:29
2570
+ #, fuzzy, php-format
2571
+ #| msgid "Add the following URL to the \"Callback URL\" field: <b>%s</b>"
2572
+ msgid "Add the following URL to the <b>Callback URLs</b> field: <b>%s</b>"
2573
+ msgstr "将以下网址添加到\"Callback URL\"中:<b>%s</b>"
2574
+
2575
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:30
2576
+ #, fuzzy, php-format
2577
  #| msgid ""
2578
+ #| "Add the following URL to the \"Authorized Redirect URLs:\" field: <b>%s</"
2579
+ #| "b>"
2580
+ msgid "Enter your site's URL to the <b>Website URL</b> field: <b>%s</b>"
2581
+ msgstr "将以下网址添加到“授权重定向网址”字段中:<b>%s</b>"
2582
+
2583
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:31
2584
  msgid ""
2585
+ "If you want to get the email address as well, then don’t forget to enable "
2586
+ "the <b>Request email address from users</b> option. In this case you also "
2587
+ "need to fill the <b>Terms of service</b> and the <b>Privacy policy</b> "
2588
+ "fields with the corresponding URLs!"
2589
+ msgstr ""
2590
+
2591
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:32
2592
+ #, fuzzy
2593
+ #| msgid "Click on \"Save\""
2594
+ msgid "Click on <b>Save</b>."
2595
+ msgstr "点击\"保存“"
2596
+
2597
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:33
2598
+ #, php-format
2599
+ msgid "Go back to Nextend Social Login and <b>Verify</b> your %s provider."
2600
+ msgstr ""
2601
 
2602
  #: nextend-facebook-connect/providers/twitter/admin/settings.php:27
2603
  #: nextend-social-login-pro/providers/disqus/admin/settings.php:26
2616
  msgid "Original"
2617
  msgstr ""
2618
 
2619
+ #: nextend-facebook-connect/providers/twitter/twitter.php:70
2620
  msgid "Continue with <b>Twitter</b>"
2621
  msgstr "保持 <b>Twitter</b>"
2622
 
2623
+ #: nextend-facebook-connect/providers/twitter/twitter.php:71
2624
+ #, fuzzy
2625
+ #| msgid "Continue with <b>Twitter</b>"
2626
+ msgid "Sign up with <b>Twitter</b>"
2627
+ msgstr "保持 <b>Twitter</b>"
2628
+
2629
+ #: nextend-facebook-connect/providers/twitter/twitter.php:72
2630
  msgid "Link account with <b>Twitter</b>"
2631
  msgstr "关联 <b>Twitter</b> 账号"
2632
 
2633
+ #: nextend-facebook-connect/providers/twitter/twitter.php:73
2634
  msgid "Unlink account from <b>Twitter</b>"
2635
  msgstr "从 <b>Twitter</b> 取消关联帐户"
2636
 
2753
  "with %1$s."
2754
  msgstr "这个电子邮件已经注册过,请登录到您的帐户以链接到Facebook。"
2755
 
2756
+ #: nextend-social-login-pro/nextend-social-login-pro.php:104
2757
  #, php-format
2758
  msgid "Please install and activate %1$s to use the %2$s"
2759
  msgstr ""
2760
 
2761
+ #: nextend-social-login-pro/nextend-social-login-pro.php:118
2762
  msgid "Network Activate"
2763
  msgstr ""
2764
 
2765
+ #: nextend-social-login-pro/nextend-social-login-pro.php:130
2766
  msgid "Install now!"
2767
  msgstr ""
2768
 
2769
+ #: nextend-social-login-pro/nextend-social-login-pro.php:821
2770
  #, fuzzy
2771
  #| msgid "Providers"
2772
  msgid "Social Providers"
2779
  "latest %2$s version!"
2780
  msgstr ""
2781
 
2782
+ #: nextend-social-login-pro/provider-extensions/google.php:187
2783
  #, php-format
2784
  msgid ""
2785
  "Most of these information can only be retrieved, when the field is marked as "
2839
  "将帮助你了解 %1$s 应用建立的过程,然后你可以建立一个你自己的 %1$s App。转到"
2840
  "\"设置“,然后根据你的 %1$s 配置,给予 \"%2$s\" and \"%3$s\"。"
2841
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2842
  #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:27
2843
  #, fuzzy
2844
  #| msgid ""
2888
  "然后,你可以看见你的 \"APP ID\" 和 \"APP secret\"密匙,你可以看到\"显示\"按"
2889
  "钮,这些都需要填写到插件的设置里。"
2890
 
2891
+ #: nextend-social-login-pro/providers/amazon/amazon.php:40
2892
  msgid "Continue with <b>Amazon</b>"
2893
  msgstr "通过 <b>Amazon</b>"
2894
 
2895
+ #: nextend-social-login-pro/providers/amazon/amazon.php:41
2896
+ #, fuzzy
2897
+ #| msgid "Continue with <b>Amazon</b>"
2898
+ msgid "Sign up with <b>Amazon</b>"
2899
+ msgstr "通过 <b>Amazon</b>"
2900
+
2901
+ #: nextend-social-login-pro/providers/amazon/amazon.php:42
2902
  msgid "Link account with <b>Amazon</b>"
2903
  msgstr "关联 <b>Amazon</b> 账号"
2904
 
2905
+ #: nextend-social-login-pro/providers/amazon/amazon.php:43
2906
  msgid "Unlink account from <b>Amazon</b>"
2907
  msgstr "解除关联 <b>Amazon</b> 账号"
2908
 
3225
  msgid "Generate Token"
3226
  msgstr ""
3227
 
3228
+ #: nextend-social-login-pro/providers/apple/apple.php:83
 
 
3229
  msgid "Continue with <b>Apple</b>"
3230
+ msgstr "通过 <b>Apple</b>"
3231
 
3232
+ #: nextend-social-login-pro/providers/apple/apple.php:84
3233
  #, fuzzy
3234
+ msgid "Sign up with <b>Apple</b>"
3235
+ msgstr "通过 <b>Apple</b>"
3236
+
3237
+ #: nextend-social-login-pro/providers/apple/apple.php:85
3238
  msgid "Link account with <b>Apple</b>"
3239
+ msgstr "关联 <b>Apple</b>"
3240
 
3241
+ #: nextend-social-login-pro/providers/apple/apple.php:86
 
 
3242
  msgid "Unlink account from <b>Apple</b>"
3243
+ msgstr "取消关联 <b>Apple</b>"
3244
 
3245
+ #: nextend-social-login-pro/providers/apple/apple.php:180
3246
  #, php-format
3247
  msgid "An error occurred when storing of the expiration timestamp : %1$s"
3248
  msgstr ""
3249
 
3250
+ #: nextend-social-login-pro/providers/apple/apple.php:184
3251
+ #: nextend-social-login-pro/providers/apple/apple.php:282
3252
+ #: nextend-social-login-pro/providers/apple/apple.php:297
3253
+ #: nextend-social-login-pro/providers/apple/apple.php:341
3254
  #, php-format
3255
  msgid "Token generation failed: %1$s"
3256
  msgstr ""
3257
 
3258
+ #: nextend-social-login-pro/providers/apple/apple.php:184
3259
  msgid "Please check your credentials!"
3260
  msgstr ""
3261
 
3262
+ #: nextend-social-login-pro/providers/apple/apple.php:282
3263
  msgid "Private key format is not valid!"
3264
  msgstr ""
3265
 
3266
+ #: nextend-social-login-pro/providers/apple/apple.php:308
3267
  #, php-format
3268
  msgid ""
3269
  "%s detected that your Apple credentials have expired. Please delete the "
3270
  "current credentials and generate new one!"
3271
  msgstr ""
3272
 
3273
+ #: nextend-social-login-pro/providers/apple/apple.php:310
3274
  msgid "Apple Credentials"
3275
  msgstr ""
3276
 
3373
  msgid "API Secret"
3374
  msgstr "App 密匙"
3375
 
3376
+ #: nextend-social-login-pro/providers/disqus/disqus.php:87
3377
  msgid "Continue with <b>Disqus</b>"
3378
  msgstr "通过 <b>Disqus</b>"
3379
 
3380
+ #: nextend-social-login-pro/providers/disqus/disqus.php:88
3381
+ #, fuzzy
3382
+ #| msgid "Continue with <b>Disqus</b>"
3383
+ msgid "Sign up with <b>Disqus</b>"
3384
+ msgstr "通过 <b>Disqus</b>"
3385
+
3386
+ #: nextend-social-login-pro/providers/disqus/disqus.php:89
3387
  msgid "Link account with <b>Disqus</b>"
3388
  msgstr "关联 <b>Disqus</b>"
3389
 
3390
+ #: nextend-social-login-pro/providers/disqus/disqus.php:90
3391
  msgid "Unlink account from <b>Disqus</b>"
3392
  msgstr "取消关联 <b>Disqus</b>"
3393
 
3480
  "public email address set at the %1$s profile page%2$s!"
3481
  msgstr ""
3482
 
3483
+ #: nextend-social-login-pro/providers/github/github.php:125
 
 
3484
  msgid "Continue with <b>GitHub</b>"
3485
+ msgstr "通过 <b>GitHub</b>"
3486
 
3487
+ #: nextend-social-login-pro/providers/github/github.php:126
3488
  #, fuzzy
3489
+ msgid "Sign up with <b>GitHub</b>"
3490
+ msgstr "通过 <b>GitHub</b>"
3491
+
3492
+ #: nextend-social-login-pro/providers/github/github.php:127
3493
  msgid "Link account with <b>GitHub</b>"
3494
+ msgstr "关联 <b>GitHub</b>"
3495
 
3496
+ #: nextend-social-login-pro/providers/github/github.php:128
 
 
3497
  msgid "Unlink account from <b>GitHub</b>"
3498
+ msgstr "取消关联 <b>GitHub</b>"
3499
 
3500
  #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:10
3501
  msgid "Click on your App and go to the \"<b>Auth</b>\" tab."
3596
  "然后,你可以看见你的 \"APP ID\" 和 \"APP secret\"密匙,你可以看到\"显示\"按"
3597
  "钮,这些都需要填写到插件的设置里。"
3598
 
3599
+ #: nextend-social-login-pro/providers/linkedin/linkedin.php:38
3600
  msgid "Continue with <b>LinkedIn</b>"
3601
  msgstr "通过 <b>LinkedIn</b>"
3602
 
3603
+ #: nextend-social-login-pro/providers/linkedin/linkedin.php:39
3604
+ #, fuzzy
3605
+ #| msgid "Continue with <b>LinkedIn</b>"
3606
+ msgid "Sign up with <b>LinkedIn</b>"
3607
+ msgstr "通过 <b>LinkedIn</b>"
3608
+
3609
+ #: nextend-social-login-pro/providers/linkedin/linkedin.php:40
3610
  msgid "Link account with <b>LinkedIn</b>"
3611
  msgstr "关联 <b>LinkedIn</b> 账号"
3612
 
3613
+ #: nextend-social-login-pro/providers/linkedin/linkedin.php:41
3614
  msgid "Unlink account from <b>LinkedIn</b>"
3615
  msgstr "从<b> LinkedIn </ b>取消关联帐户"
3616
 
3723
  msgid "Disable, when you have no rights for email address."
3724
  msgstr ""
3725
 
3726
+ #: nextend-social-login-pro/providers/paypal/paypal.php:65
3727
  msgid "Continue with <b>PayPal</b>"
3728
  msgstr "通过 <b>PayPal</b>"
3729
 
3730
+ #: nextend-social-login-pro/providers/paypal/paypal.php:66
3731
+ #, fuzzy
3732
+ #| msgid "Continue with <b>PayPal</b>"
3733
+ msgid "Sign up with <b>PayPal</b>"
3734
+ msgstr "通过 <b>PayPal</b>"
3735
+
3736
+ #: nextend-social-login-pro/providers/paypal/paypal.php:67
3737
  msgid "Link account with <b>PayPal</b>"
3738
  msgstr "关联 <b>PayPal</b>"
3739
 
3740
+ #: nextend-social-login-pro/providers/paypal/paypal.php:68
3741
  msgid "Unlink account from <b>PayPal</b>"
3742
  msgstr "取消关联 <b>PayPal</b>"
3743
 
3837
  msgid "Secure key"
3838
  msgstr ""
3839
 
3840
+ #: nextend-social-login-pro/providers/vk/vk.php:36
3841
  msgid "Continue with <b>VK</b>"
3842
  msgstr "通过 <b>VK</b>"
3843
 
3844
+ #: nextend-social-login-pro/providers/vk/vk.php:37
3845
+ #, fuzzy
3846
+ #| msgid "Continue with <b>VK</b>"
3847
+ msgid "Sign up with <b>VK</b>"
3848
+ msgstr "通过 <b>VK</b>"
3849
+
3850
+ #: nextend-social-login-pro/providers/vk/vk.php:38
3851
  msgid "Link account with <b>VK</b>"
3852
  msgstr "关联 <b>VK</b>"
3853
 
3854
+ #: nextend-social-login-pro/providers/vk/vk.php:39
3855
  msgid "Unlink account from <b>VK</b>"
3856
  msgstr "取消关联 <b>VK</b>"
3857
 
3924
  "然后,你可以看见你的 \"APP ID\" 和 \"APP secret\"密匙,你可以看到\"显示\"按"
3925
  "钮,这些都需要填写到插件的设置里。"
3926
 
3927
+ #: nextend-social-login-pro/providers/wordpress/wordpress.php:74
3928
  msgid "Continue with <b>WordPress.com</b>"
3929
  msgstr "通过 <b>WordPress.com</b>"
3930
 
3931
+ #: nextend-social-login-pro/providers/wordpress/wordpress.php:75
3932
+ #, fuzzy
3933
+ #| msgid "Continue with <b>WordPress.com</b>"
3934
+ msgid "Sign up with <b>WordPress.com</b>"
3935
+ msgstr "通过 <b>WordPress.com</b>"
3936
+
3937
+ #: nextend-social-login-pro/providers/wordpress/wordpress.php:76
3938
  msgid "Link account with <b>WordPress.com</b>"
3939
  msgstr "关联 <b>WordPress.com</b>"
3940
 
3941
+ #: nextend-social-login-pro/providers/wordpress/wordpress.php:77
3942
  msgid "Unlink account from <b>WordPress.com</b>"
3943
  msgstr "取消关联 <b>WordPress.com</b>"
3944
 
4006
  "然后,你可以看见你的 \"APP ID\" 和 \"APP secret\"密匙,你可以看到\"显示\"按"
4007
  "钮,这些都需要填写到插件的设置里。"
4008
 
4009
+ #: nextend-social-login-pro/providers/yahoo/yahoo.php:65
 
 
4010
  msgid "Continue with <b>Yahoo</b>"
4011
+ msgstr "通过 <b>Yahoo</b>"
4012
 
4013
+ #: nextend-social-login-pro/providers/yahoo/yahoo.php:66
4014
  #, fuzzy
4015
+ msgid "Sign up with <b>Yahoo</b>"
4016
+ msgstr "通过 <b>Yahoo</b>"
4017
+
4018
+ #: nextend-social-login-pro/providers/yahoo/yahoo.php:67
4019
  msgid "Link account with <b>Yahoo</b>"
4020
+ msgstr "关联 <b>Yahoo</b> 账号"
4021
 
4022
+ #: nextend-social-login-pro/providers/yahoo/yahoo.php:68
 
 
4023
  msgid "Unlink account from <b>Yahoo</b>"
4024
+ msgstr "解除关联 <b>Yahoo</b> 账号"
4025
 
4026
+ #: nextend-social-login-pro/providers/yahoo/yahoo.php:188
4027
  #, fuzzy, php-format
4028
  #| msgid "Required"
4029
  msgid "Required permission: %1$s"
4067
  msgid "Social accounts"
4068
  msgstr "社交账号"
4069
 
4070
+ #, fuzzy, php-format
4071
+ #~| msgid "Log in with your %s credentials if you are not logged in"
4072
+ #~ msgid "Log in with your %s credentials if you are not logged in yet"
4073
+ #~ msgstr "如果您未登录,请使用您的 %s 凭据登录"
4074
+
4075
+ #, fuzzy, php-format
4076
+ #~| msgid ""
4077
+ #~| "Fill the name and description fields. Then enter your site's URL to the "
4078
+ #~| "Website field: <b>%s</b>"
4079
+ #~ msgid ""
4080
+ #~ "Fill the <b>App name</b>, <b>Application description</b> fields. Then "
4081
+ #~ "enter your site's URL to the <b>Website URL</b> field: <b>%s</b>"
4082
+ #~ msgstr "填写名称和说明。 然后在网址字段输入您网站的:<b>%s</b>"
4083
+
4084
+ #, fuzzy
4085
+ #~| msgid "Click on the Create button"
4086
+ #~ msgid "Click the <b>Create</b> button."
4087
+ #~ msgstr "点击创建按钮"
4088
+
4089
+ #, fuzzy
4090
+ #~| msgid "Name your project and then click on the Create button"
4091
+ #~ msgid "Read the Developer Terms and click the <b>Create</b> button again!"
4092
+ #~ msgstr "命名您的项目,然后点击创建按钮"
4093
+
4094
+ #, fuzzy
4095
+ #~| msgid ""
4096
+ #~| "Go to the Keys and Access Tokens tab and find the Consumer Key and Secret"
4097
+ #~ msgid ""
4098
+ #~ "Go to the <b>Keys and tokens</b> tab and find the <b>API key</b> and "
4099
+ #~ "<b>API secret key</b>"
4100
+ #~ msgstr "转到密钥和访问密令选项卡,找到使用者密匙和密码"
4101
+
4102
+ #, fuzzy
4103
+ #~| msgid "Click on the \"Add a New App\" button"
4104
+ #~ msgid "Click on the \"<b>Add a New App\" button</b>"
4105
+ #~ msgstr "点击\"添加新的应用\"按钮"
4106
+
4107
  #, fuzzy
4108
  #~| msgid "Enter your domain name to the App Domains"
4109
  #~ msgid "Enter your domain name to the \"App Domains\" field."
4403
  #~ msgid "Connect button after login form"
4404
  #~ msgstr "登录按钮在登录表单后"
4405
 
 
 
 
4406
  #~ msgid "Connect button before register form"
4407
  #~ msgstr "登录按钮在注册表单前"
4408
 
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: 2020-08-25 13:37+0200\n"
6
  "PO-Revision-Date: 2020-06-29 13:58+0200\n"
7
  "Last-Translator: \n"
8
  "Language-Team: nextend-facebook-connect\n"
@@ -114,29 +114,29 @@ msgstr ""
114
  msgid "User"
115
  msgstr ""
116
 
117
- #: nextend-facebook-connect/admin/admin.php:203
118
  #, php-format
119
  msgid "%s needs json_decode function."
120
  msgstr ""
121
 
122
- #: nextend-facebook-connect/admin/admin.php:203
123
  msgid "Please contact your server administrator and ask for solution!"
124
  msgstr ""
125
 
126
- #: nextend-facebook-connect/admin/admin.php:235
127
- #: nextend-facebook-connect/admin/admin.php:265
128
  msgid "Settings saved."
129
  msgstr ""
130
 
131
- #: nextend-facebook-connect/admin/admin.php:244
132
  msgid "The activation was successful"
133
  msgstr ""
134
 
135
- #: nextend-facebook-connect/admin/admin.php:255
136
  msgid "Deactivate completed."
137
  msgstr ""
138
 
139
- #: nextend-facebook-connect/admin/admin.php:433
140
  #: nextend-facebook-connect/admin/templates-provider/menu.php:15
141
  #: nextend-facebook-connect/admin/templates/providers.php:89
142
  #: nextend-facebook-connect/admin/templates/providers.php:101
@@ -144,9 +144,9 @@ msgstr ""
144
  msgid "Settings"
145
  msgstr ""
146
 
147
- #: nextend-facebook-connect/admin/admin.php:516
148
- #: nextend-facebook-connect/includes/oauth2.php:141
149
- #: nextend-facebook-connect/includes/oauth2.php:286
150
  #: nextend-facebook-connect/providers/facebook/facebook-client.php:84
151
  #: nextend-facebook-connect/providers/twitter/twitter-client.php:165
152
  #: nextend-social-login-pro/providers/apple/apple-client.php:87
@@ -155,7 +155,7 @@ msgstr ""
155
  msgid "Unexpected response: %s"
156
  msgstr ""
157
 
158
- #: nextend-facebook-connect/admin/admin.php:577
159
  #: nextend-facebook-connect/admin/templates/fix-redirect-uri.php:21
160
  #, php-format
161
  msgid ""
@@ -163,31 +163,31 @@ msgid ""
163
  "redirect URIs in the related social applications."
164
  msgstr ""
165
 
166
- #: nextend-facebook-connect/admin/admin.php:578
167
- #: nextend-social-login-pro/providers/apple/apple.php:308
168
  msgid "Fix Error"
169
  msgstr ""
170
 
171
- #: nextend-facebook-connect/admin/admin.php:578
172
  msgid "Oauth Redirect URI"
173
  msgstr ""
174
 
175
- #: nextend-facebook-connect/admin/admin.php:595
176
  #, php-format
177
  msgid ""
178
  "%1$s detected that %2$s installed on your site. You need the Pro Addon "
179
  "to display Social Login buttons in %2$s login form!"
180
  msgstr ""
181
 
182
- #: nextend-facebook-connect/admin/admin.php:596
183
  msgid "Dismiss and check Pro Addon"
184
  msgstr ""
185
 
186
- #: nextend-facebook-connect/admin/admin.php:596
187
  msgid "Dismiss"
188
  msgstr ""
189
 
190
- #: nextend-facebook-connect/admin/admin.php:602
191
  #, php-format
192
  msgid ""
193
  "%1$s detected that %2$s installed on your site. You must set \"<b>Page "
@@ -195,35 +195,35 @@ msgid ""
195
  "in %1$s to work properly."
196
  msgstr ""
197
 
198
- #: nextend-facebook-connect/admin/admin.php:603
199
  msgid "Fix now"
200
  msgstr ""
201
 
202
- #: nextend-facebook-connect/admin/admin.php:627
203
  msgid "Activate your Pro Addon"
204
  msgstr ""
205
 
206
- #: nextend-facebook-connect/admin/admin.php:628
207
  msgid ""
208
  "To be able to use the Pro features, you need to activate Nextend "
209
  "Social Login Pro Addon. You can do this by clicking on the Activate "
210
  "button below then select the related purchase."
211
  msgstr ""
212
 
213
- #: nextend-facebook-connect/admin/admin.php:633
214
- #: nextend-social-login-pro/nextend-social-login-pro.php:94
215
  msgid "Activate"
216
  msgstr ""
217
 
218
- #: nextend-facebook-connect/admin/admin.php:731
219
  msgid "License key"
220
  msgstr ""
221
 
222
- #: nextend-facebook-connect/admin/admin.php:754
223
  msgid "OAuth proxy page"
224
  msgstr ""
225
 
226
- #: nextend-facebook-connect/admin/admin.php:757
227
  msgid "Register flow page"
228
  msgstr ""
229
 
@@ -232,47 +232,52 @@ msgstr ""
232
  msgid "You have logged in successfully."
233
  msgstr ""
234
 
235
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:79
236
  msgid "Login label"
237
  msgstr ""
238
 
239
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:84
240
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:95
241
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:106
242
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:135
243
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:165
 
244
  #: nextend-facebook-connect/admin/templates/settings/privacy.php:53
245
  msgid "Reset to default"
246
  msgstr ""
247
 
248
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:89
 
 
 
 
249
  msgid "Link label"
250
  msgstr ""
251
 
252
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:101
253
  msgid "Unlink label"
254
  msgstr ""
255
 
256
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:112
257
  msgid "Default button"
258
  msgstr ""
259
 
260
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:128
261
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:158
262
  msgid "Use custom button"
263
  msgstr ""
264
 
265
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:135
266
  #, php-format
267
  msgid ""
268
  "Use the %s in your custom button's code to make the label show up."
269
  msgstr ""
270
 
271
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:143
272
  msgid "Icon button"
273
  msgstr ""
274
 
275
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:174
276
  #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:140
277
  #: nextend-facebook-connect/admin/templates-provider/sync-data.php:104
278
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:170
@@ -285,8 +290,8 @@ msgstr ""
285
  #: nextend-facebook-connect/admin/templates/settings/privacy.php:109
286
  #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:186
287
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:167
288
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:326
289
- #: nextend-facebook-connect/providers/facebook/admin/settings.php:57
290
  #: nextend-facebook-connect/providers/google/admin/settings.php:62
291
  #: nextend-facebook-connect/providers/twitter/admin/settings.php:48
292
  #: nextend-social-login-pro/providers/amazon/admin/settings.php:47
@@ -411,7 +416,8 @@ msgstr ""
411
  #: nextend-facebook-connect/admin/templates/settings/general.php:213
412
  #: nextend-facebook-connect/admin/templates/settings/general.php:228
413
  #: nextend-facebook-connect/admin/templates/settings/general.php:246
414
- #: nextend-facebook-connect/includes/provider-admin.php:217
 
415
  msgid "Disabled"
416
  msgstr ""
417
 
@@ -707,7 +713,8 @@ msgstr ""
707
  #: nextend-facebook-connect/admin/templates/settings/general.php:216
708
  #: nextend-facebook-connect/admin/templates/settings/general.php:231
709
  #: nextend-facebook-connect/admin/templates/settings/general.php:249
710
- #: nextend-facebook-connect/includes/provider-admin.php:220
 
711
  #: nextend-facebook-connect/providers/google/admin/settings.php:53
712
  #: nextend-social-login-pro/providers/paypal/admin/settings.php:51
713
  msgid "Enabled"
@@ -718,17 +725,17 @@ msgid "Upgrade Now"
718
  msgstr ""
719
 
720
  #: nextend-facebook-connect/admin/templates/providers.php:77
721
- #: nextend-facebook-connect/includes/provider-admin.php:204
722
  msgid "Verify Settings"
723
  msgstr ""
724
 
725
  #: nextend-facebook-connect/admin/templates/providers.php:85
726
- #: nextend-facebook-connect/includes/provider-admin.php:249
727
  msgid "Enable"
728
  msgstr ""
729
 
730
  #: nextend-facebook-connect/admin/templates/providers.php:97
731
- #: nextend-facebook-connect/includes/provider-admin.php:257
732
  msgid "Disable"
733
  msgstr ""
734
 
@@ -1256,6 +1263,18 @@ msgstr ""
1256
  msgid "Allow registration with Social login."
1257
  msgstr ""
1258
 
 
 
 
 
 
 
 
 
 
 
 
 
1259
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:29
1260
  #: nextend-facebook-connect/admin/templates/settings/memberpress.php:33
1261
  #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:33
@@ -1342,7 +1361,7 @@ msgid "Link buttons after account details"
1342
  msgstr ""
1343
 
1344
  #: nextend-facebook-connect/admin/templates/settings/privacy.php:6
1345
- #: nextend-facebook-connect/nextend-social-login.php:143
1346
  msgid ""
1347
  "By clicking Register, you accept our <a href=\"#privacy_policy_url\" "
1348
  "target=\"_blank\">Privacy Policy</a>"
@@ -1370,12 +1389,12 @@ msgid "When not enabled, email will be empty."
1370
  msgstr ""
1371
 
1372
  #: nextend-facebook-connect/admin/templates/settings/privacy.php:91
1373
- #: nextend-facebook-connect/includes/avatar.php:59
1374
  msgid "Avatar"
1375
  msgstr ""
1376
 
1377
  #: nextend-facebook-connect/admin/templates/settings/privacy.php:102
1378
- #: nextend-facebook-connect/includes/provider.php:1082
1379
  msgid "Access token"
1380
  msgstr ""
1381
 
@@ -1443,6 +1462,26 @@ msgstr ""
1443
  msgid "Link buttons on"
1444
  msgstr ""
1445
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1446
  #: nextend-facebook-connect/admin/templates/test-connection.php:42
1447
  #, php-format
1448
  msgid "Network connection successful: %1$s"
@@ -1459,18 +1498,17 @@ msgid ""
1459
  "between your server and the provider."
1460
  msgstr ""
1461
 
1462
- #: nextend-facebook-connect/includes/avatar.php:60
1463
  msgid "Manage Avatar"
1464
  msgstr ""
1465
 
1466
- #: nextend-facebook-connect/includes/avatar.php:61
1467
  #, php-format
1468
  msgid "Avatar <span class=\"count\">(%s)</span>"
1469
  msgid_plural "Avatar <span class=\"count\">(%s)</span>"
1470
  msgstr[0] ""
1471
  msgstr[1] ""
1472
 
1473
- #. translators: Login screen title. 1: Login screen name, 2: Network or site name
1474
  #: nextend-facebook-connect/includes/compat-wp-login.php:63
1475
  #, php-format
1476
  msgid "%1$s &lsaquo; %2$s &#8212; WordPress"
@@ -1484,18 +1522,17 @@ msgstr ""
1484
  msgid "Powered by WordPress"
1485
  msgstr ""
1486
 
1487
- #. translators: %s: site title
1488
  #: nextend-facebook-connect/includes/compat-wp-login.php:284
1489
  #, php-format
1490
  msgctxt "site"
1491
  msgid "&larr; Back to %s"
1492
  msgstr ""
1493
 
1494
- #: nextend-facebook-connect/includes/provider-admin.php:198
1495
  msgid "Your configuration needs to be verified"
1496
  msgstr ""
1497
 
1498
- #: nextend-facebook-connect/includes/provider-admin.php:199
1499
  msgid ""
1500
  "Before you can start letting your users register with your app it "
1501
  "needs to be tested. This test makes sure that no users will have "
@@ -1504,76 +1541,77 @@ msgid ""
1504
  "itself. Otherwise your settings are fine."
1505
  msgstr ""
1506
 
1507
- #: nextend-facebook-connect/includes/provider-admin.php:205
1508
  msgid "Please save your changes to verify settings."
1509
  msgstr ""
1510
 
1511
- #: nextend-facebook-connect/includes/provider-admin.php:213
1512
  msgid "Works Fine"
1513
  msgstr ""
1514
 
1515
- #: nextend-facebook-connect/includes/provider-admin.php:227
1516
  #, php-format
1517
  msgid ""
1518
  "This provider is currently disabled, which means that users can’t "
1519
  "register or login via their %s account."
1520
  msgstr ""
1521
 
1522
- #: nextend-facebook-connect/includes/provider-admin.php:230
1523
  #, php-format
1524
  msgid ""
1525
  "This provider works fine, but you can test it again. If you don’t want "
1526
  "to let users register or login with %s anymore you can disable it."
1527
  msgstr ""
1528
 
1529
- #: nextend-facebook-connect/includes/provider-admin.php:233
1530
  #, php-format
1531
  msgid ""
1532
  "This provider is currently enabled, which means that users can "
1533
  "register or login via their %s account."
1534
  msgstr ""
1535
 
1536
- #: nextend-facebook-connect/includes/provider-admin.php:241
1537
  msgid "Verify Settings Again"
1538
  msgstr ""
1539
 
1540
- #: nextend-facebook-connect/includes/provider-admin.php:242
1541
  msgid "Please save your changes before verifying settings."
1542
  msgstr ""
1543
 
1544
- #: nextend-facebook-connect/includes/provider.php:357
1545
- #: nextend-facebook-connect/includes/provider.php:705
1546
- #: nextend-facebook-connect/includes/provider.php:710
1547
  msgid "Authentication successful"
1548
  msgstr ""
1549
 
1550
- #: nextend-facebook-connect/includes/provider.php:647
1551
- #: nextend-facebook-connect/includes/user.php:126
 
1552
  msgid "Authentication error"
1553
  msgstr ""
1554
 
1555
- #: nextend-facebook-connect/includes/provider.php:662
1556
  msgid "Unlink successful."
1557
  msgstr ""
1558
 
1559
- #: nextend-facebook-connect/includes/provider.php:664
1560
  msgid "Unlink is not allowed!"
1561
  msgstr ""
1562
 
1563
- #: nextend-facebook-connect/includes/provider.php:868
1564
- #: nextend-facebook-connect/includes/provider.php:875
1565
  msgid "The test was successful"
1566
  msgstr ""
1567
 
1568
- #: nextend-facebook-connect/includes/provider.php:921
1569
  msgid "Authentication failed"
1570
  msgstr ""
1571
 
1572
- #: nextend-facebook-connect/includes/provider.php:1074
1573
  msgid "Identifier"
1574
  msgstr ""
1575
 
1576
- #: nextend-facebook-connect/includes/provider.php:1090
1577
  msgid "Profile picture"
1578
  msgstr ""
1579
 
@@ -1588,15 +1626,15 @@ msgstr ""
1588
  #, php-format
1589
  msgid ""
1590
  "You have already linked a(n) %s account. Please unlink the current and "
1591
- "then you can link other %s account."
1592
  msgstr ""
1593
 
1594
  #: nextend-facebook-connect/includes/user.php:82
1595
  #, php-format
1596
- msgid "This %s account is already linked to other user."
1597
  msgstr ""
1598
 
1599
- #: nextend-facebook-connect/includes/user.php:122
1600
  msgid "User registration is currently not allowed."
1601
  msgstr ""
1602
 
@@ -1604,14 +1642,12 @@ msgstr ""
1604
  msgid "Register For This Site!"
1605
  msgstr ""
1606
 
1607
- #. translators: %2$s: PHP version
1608
- #: nextend-facebook-connect/nextend-facebook-connect.php:34
1609
  #, php-format
1610
  msgid "%1$s requires PHP version %2$s+, plugin is currently NOT ACTIVE."
1611
  msgstr ""
1612
 
1613
- #. translators: %2$s: WordPress version
1614
- #: nextend-facebook-connect/nextend-facebook-connect.php:41
1615
  #, php-format
1616
  msgid ""
1617
  "%1$s requires WordPress version %2$s+. Because you are using an "
@@ -1629,12 +1665,12 @@ msgstr ""
1629
  msgid "Update now!"
1630
  msgstr ""
1631
 
1632
- #: nextend-facebook-connect/nextend-social-login.php:749
1633
- #: nextend-facebook-connect/nextend-social-login.php:1125
1634
  msgid "Social Login"
1635
  msgstr ""
1636
 
1637
- #: nextend-facebook-connect/nextend-social-login.php:1106
1638
  msgid "Social Accounts"
1639
  msgstr ""
1640
 
@@ -1700,7 +1736,7 @@ msgid ""
1700
  msgstr ""
1701
 
1702
  #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:12
1703
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:34
1704
  #, php-format
1705
  msgid ""
1706
  "Add the following URL to the \"<b>Valid OAuth redirect URIs</b>\" "
@@ -1783,7 +1819,9 @@ msgid "Navigate to %s"
1783
  msgstr ""
1784
 
1785
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:26
1786
- msgid "Click on the \"<b>Add a New App\" button</b>"
 
 
1787
  msgstr ""
1788
 
1789
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:27
@@ -1796,90 +1834,136 @@ msgstr ""
1796
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:28
1797
  #, php-format
1798
  msgid ""
1799
- "Fill \"<b>Display Name</b>\" and \"<b>Contact Email</b>\". The "
1800
- "specified \"Display Name\" will appear on your %s!"
1801
  msgstr ""
1802
 
1803
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:29
1804
  msgid ""
 
 
 
 
 
 
1805
  "Click the \"<b>Create App ID</b>\" button and complete the Security "
1806
  "Check."
1807
  msgstr ""
1808
 
1809
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:30
1810
  #, php-format
1811
  msgid ""
1812
  "At the \"<b>Add a Product</b>\" panel find \"<b>%1$s</b>\" and click "
1813
  "\"<b>Set Up</b>\""
1814
  msgstr ""
1815
 
1816
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:31
1817
  #, php-format
1818
  msgid ""
1819
  "Select \"<b>Web</b>\" and enter the following URL to the \"<b>Site "
1820
  "URL</b>\" field: <b>%s</b>"
1821
  msgstr ""
1822
 
1823
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:32
1824
  msgid "Press “<b>Save</b>”"
1825
  msgstr ""
1826
 
1827
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:33
1828
  #, php-format
1829
  msgid ""
1830
  "Click on the “<b>%1$s</b>” option what you find on the left side, "
1831
  "under “<b>%2$s</b> - <b>%3$s</b>”"
1832
  msgstr ""
1833
 
1834
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:35
1835
  msgid "Click on “<b>Save Changes</b>”"
1836
  msgstr ""
1837
 
1838
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:36
1839
  #, php-format
1840
  msgid ""
1841
  "On the top left side, click on the “<b>%1$s</b>” menu point, then "
1842
  "click “<b>%2$s</b>”"
1843
  msgstr ""
1844
 
1845
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:37
1846
  #, php-format
1847
  msgid ""
1848
  "Enter your domain name to the \"<b>App Domains</b>\" field, probably: "
1849
  "<b>%s</b>"
1850
  msgstr ""
1851
 
1852
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:38
1853
  msgid ""
1854
  "Fill up the \"<b>Privacy Policy URL</b>\" field. Provide a publicly "
1855
  "available and easily accessible privacy policy that explains what data "
1856
  "you are collecting and how you will use that data."
1857
  msgstr ""
1858
 
1859
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:39
1860
  msgid ""
1861
- "Select a “<b>Category</b>”, an “<b>App Icon</b>” and pick the "
1862
- "“<b>Business Use</b>” option that describes your the App best, then "
1863
- "press \"<b>Save Changes</b>\""
 
1864
  msgstr ""
1865
 
1866
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:40
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1867
  msgid ""
1868
  "Your application is currently private, which means that only you can "
1869
  "log in with it. In the top bar click on the switch next to the \"<b>In "
1870
  "development</b>\" label, then click the \"<b>Switch Mode</b>\" button."
1871
  msgstr ""
1872
 
1873
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:41
1874
  msgid ""
1875
  "At the top of the page you can find your \"<b>App ID</b>\" and you can "
1876
  "see your \"<b>App secret</b>\" if you click on the \"Show\" button. "
1877
  "These will be needed in plugin’s settings."
1878
  msgstr ""
1879
 
1880
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:45
 
 
 
 
 
 
 
 
 
 
 
1881
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:40
1882
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:32
1883
  #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:39
1884
  #: nextend-social-login-pro/providers/apple/admin/getting-started.php:122
1885
  #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:30
@@ -1949,39 +2033,54 @@ msgstr ""
1949
  msgid "App Secret"
1950
  msgstr ""
1951
 
1952
- #: nextend-facebook-connect/providers/facebook/facebook.php:84
1953
- msgid "Continue with <b>Facebook</b>"
 
 
 
 
 
 
 
1954
  msgstr ""
1955
 
1956
  #: nextend-facebook-connect/providers/facebook/facebook.php:85
1957
- msgid "Link account with <b>Facebook</b>"
1958
  msgstr ""
1959
 
1960
  #: nextend-facebook-connect/providers/facebook/facebook.php:86
 
 
 
 
 
 
 
 
1961
  msgid "Unlink account from <b>Facebook</b>"
1962
  msgstr ""
1963
 
1964
- #: nextend-facebook-connect/providers/facebook/facebook.php:186
1965
- #: nextend-facebook-connect/providers/google/google.php:174
1966
- #: nextend-facebook-connect/providers/twitter/twitter.php:95
1967
- #: nextend-social-login-pro/providers/amazon/amazon.php:65
1968
- #: nextend-social-login-pro/providers/apple/apple.php:129
1969
- #: nextend-social-login-pro/providers/apple/apple.php:136
1970
- #: nextend-social-login-pro/providers/disqus/disqus.php:112
1971
- #: nextend-social-login-pro/providers/github/github.php:150
1972
- #: nextend-social-login-pro/providers/linkedin/linkedin.php:63
1973
- #: nextend-social-login-pro/providers/paypal/paypal.php:90
1974
- #: nextend-social-login-pro/providers/vk/vk.php:61
1975
- #: nextend-social-login-pro/providers/wordpress/wordpress.php:99
1976
- #: nextend-social-login-pro/providers/yahoo/yahoo.php:90
1977
  #, php-format
1978
  msgid ""
1979
  "The %1$s entered did not appear to be a valid. Please enter a valid "
1980
  "%2$s."
1981
  msgstr ""
1982
 
1983
- #: nextend-facebook-connect/providers/facebook/facebook.php:307
1984
- #: nextend-social-login-pro/providers/paypal/paypal.php:170
1985
  #, php-format
1986
  msgid "Required scope: %1$s"
1987
  msgstr ""
@@ -2132,43 +2231,59 @@ msgid ""
2132
  "login."
2133
  msgstr ""
2134
 
2135
- #: nextend-facebook-connect/providers/google/google.php:106
2136
  msgid "Continue with <b>Google</b>"
2137
  msgstr ""
2138
 
2139
- #: nextend-facebook-connect/providers/google/google.php:107
 
 
 
 
2140
  msgid "Link account with <b>Google</b>"
2141
  msgstr ""
2142
 
2143
- #: nextend-facebook-connect/providers/google/google.php:108
2144
  msgid "Unlink account from <b>Google</b>"
2145
  msgstr ""
2146
 
2147
- #: nextend-facebook-connect/providers/google/google.php:301
2148
  #, php-format
2149
  msgid "Required API: %1$s"
2150
  msgstr ""
2151
 
2152
  #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:10
2153
- msgid "Find your App and click on the \"<b>Details</b>\" button"
 
 
2154
  msgstr ""
2155
 
2156
  #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:11
 
2157
  msgid ""
2158
- "The <b>Edit</b> button can be found on the App details tab. Click on "
2159
- "it and select \"<b>Edit details</b>\""
2160
  msgstr ""
2161
 
2162
  #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:12
2163
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:22
2164
  #, php-format
2165
  msgid ""
2166
  "Add the following URL to the \"<b>Callback URLs</b>\" field: <b>%s</b>"
2167
  msgstr ""
2168
 
2169
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:17
 
 
 
 
 
 
 
 
 
 
 
2170
  #, php-format
2171
- msgid "Log in with your %s credentials if you are not logged in yet"
2172
  msgstr ""
2173
 
2174
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:18
@@ -2185,45 +2300,71 @@ msgid ""
2185
  msgstr ""
2186
 
2187
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:20
2188
- #, php-format
2189
- msgid ""
2190
- "Fill the <b>App name</b>, <b>Application description</b> fields. Then "
2191
- "enter your site's URL to the <b>Website URL</b> field: <b>%s</b>"
2192
  msgstr ""
2193
 
2194
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:21
2195
- msgid "Tick the checkbox next to <b>Enable Sign in with Twitter</b>!"
 
 
 
 
 
 
 
2196
  msgstr ""
2197
 
2198
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:23
2199
  msgid ""
2200
- "Fill the “<b>Terms of Service URL</b>\", \"<b>Privacy policy URL</b>\" "
2201
- "and \"<b>Tell us how this app will be used</b>\" fields!"
 
2202
  msgstr ""
2203
 
2204
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:24
2205
- msgid "Click the <b>Create</b> button."
 
2206
  msgstr ""
2207
 
2208
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:25
2209
- msgid ""
2210
- "Read the Developer Terms and click the <b>Create</b> button again!"
2211
  msgstr ""
2212
 
2213
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:26
2214
- msgid "Select the <b>Permissions</b> tab and click <b>Edit</b>."
2215
  msgstr ""
2216
 
2217
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:27
 
 
 
 
 
2218
  msgid ""
2219
- "Tick the <b>Request email address from users</b> under the Additional "
2220
- "permissions section and click <b>Save</b>."
2221
  msgstr ""
2222
 
2223
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:28
 
 
 
 
 
2224
  msgid ""
2225
- "Go to the <b>Keys and tokens</b> tab and find the <b>API key</b> and "
2226
- "<b>API secret key</b>"
 
 
 
 
 
 
 
 
 
 
 
 
2227
  msgstr ""
2228
 
2229
  #: nextend-facebook-connect/providers/twitter/admin/settings.php:27
@@ -2243,15 +2384,19 @@ msgstr ""
2243
  msgid "Original"
2244
  msgstr ""
2245
 
2246
- #: nextend-facebook-connect/providers/twitter/twitter.php:69
2247
  msgid "Continue with <b>Twitter</b>"
2248
  msgstr ""
2249
 
2250
- #: nextend-facebook-connect/providers/twitter/twitter.php:70
 
 
 
 
2251
  msgid "Link account with <b>Twitter</b>"
2252
  msgstr ""
2253
 
2254
- #: nextend-facebook-connect/providers/twitter/twitter.php:71
2255
  msgid "Unlink account from <b>Twitter</b>"
2256
  msgstr ""
2257
 
@@ -2370,20 +2515,20 @@ msgid ""
2370
  "link with %1$s."
2371
  msgstr ""
2372
 
2373
- #: nextend-social-login-pro/nextend-social-login-pro.php:88
2374
  #, php-format
2375
  msgid "Please install and activate %1$s to use the %2$s"
2376
  msgstr ""
2377
 
2378
- #: nextend-social-login-pro/nextend-social-login-pro.php:102
2379
  msgid "Network Activate"
2380
  msgstr ""
2381
 
2382
- #: nextend-social-login-pro/nextend-social-login-pro.php:114
2383
  msgid "Install now!"
2384
  msgstr ""
2385
 
2386
- #: nextend-social-login-pro/nextend-social-login-pro.php:787
2387
  msgid "Social Providers"
2388
  msgstr ""
2389
 
@@ -2394,7 +2539,7 @@ msgid ""
2394
  "the latest %2$s version!"
2395
  msgstr ""
2396
 
2397
- #: nextend-social-login-pro/provider-extensions/google.php:176
2398
  #, php-format
2399
  msgid ""
2400
  "Most of these information can only be retrieved, when the field is "
@@ -2442,21 +2587,6 @@ msgid ""
2442
  "according to your %1$s App."
2443
  msgstr ""
2444
 
2445
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:25
2446
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:38
2447
- #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:9
2448
- #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:16
2449
- #: nextend-social-login-pro/providers/github/admin/getting-started.php:16
2450
- #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:9
2451
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:17
2452
- #: nextend-social-login-pro/providers/vk/admin/getting-started.php:16
2453
- #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:9
2454
- #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:16
2455
- #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:17
2456
- #, php-format
2457
- msgid "Log in with your %s credentials if you are not logged in."
2458
- msgstr ""
2459
-
2460
  #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:27
2461
  msgid ""
2462
  "If you don't have a Security Profile yet, you'll need to create one. "
@@ -2492,15 +2622,19 @@ msgid ""
2492
  "at the middle of the page, under the \"<b>Web Settings</b>\" tab."
2493
  msgstr ""
2494
 
2495
- #: nextend-social-login-pro/providers/amazon/amazon.php:39
2496
  msgid "Continue with <b>Amazon</b>"
2497
  msgstr ""
2498
 
2499
- #: nextend-social-login-pro/providers/amazon/amazon.php:40
 
 
 
 
2500
  msgid "Link account with <b>Amazon</b>"
2501
  msgstr ""
2502
 
2503
- #: nextend-social-login-pro/providers/amazon/amazon.php:41
2504
  msgid "Unlink account from <b>Amazon</b>"
2505
  msgstr ""
2506
 
@@ -2813,47 +2947,51 @@ msgstr ""
2813
  msgid "Generate Token"
2814
  msgstr ""
2815
 
2816
- #: nextend-social-login-pro/providers/apple/apple.php:82
2817
  msgid "Continue with <b>Apple</b>"
2818
  msgstr ""
2819
 
2820
- #: nextend-social-login-pro/providers/apple/apple.php:83
 
 
 
 
2821
  msgid "Link account with <b>Apple</b>"
2822
  msgstr ""
2823
 
2824
- #: nextend-social-login-pro/providers/apple/apple.php:84
2825
  msgid "Unlink account from <b>Apple</b>"
2826
  msgstr ""
2827
 
2828
- #: nextend-social-login-pro/providers/apple/apple.php:178
2829
  #, php-format
2830
  msgid "An error occurred when storing of the expiration timestamp : %1$s"
2831
  msgstr ""
2832
 
2833
- #: nextend-social-login-pro/providers/apple/apple.php:182
2834
- #: nextend-social-login-pro/providers/apple/apple.php:280
2835
- #: nextend-social-login-pro/providers/apple/apple.php:295
2836
- #: nextend-social-login-pro/providers/apple/apple.php:339
2837
  #, php-format
2838
  msgid "Token generation failed: %1$s"
2839
  msgstr ""
2840
 
2841
- #: nextend-social-login-pro/providers/apple/apple.php:182
2842
  msgid "Please check your credentials!"
2843
  msgstr ""
2844
 
2845
- #: nextend-social-login-pro/providers/apple/apple.php:280
2846
  msgid "Private key format is not valid!"
2847
  msgstr ""
2848
 
2849
- #: nextend-social-login-pro/providers/apple/apple.php:306
2850
  #, php-format
2851
  msgid ""
2852
  "%s detected that your Apple credentials have expired. Please delete "
2853
  "the current credentials and generate new one!"
2854
  msgstr ""
2855
 
2856
- #: nextend-social-login-pro/providers/apple/apple.php:308
2857
  msgid "Apple Credentials"
2858
  msgstr ""
2859
 
@@ -2933,15 +3071,19 @@ msgstr ""
2933
  msgid "API Secret"
2934
  msgstr ""
2935
 
2936
- #: nextend-social-login-pro/providers/disqus/disqus.php:86
2937
  msgid "Continue with <b>Disqus</b>"
2938
  msgstr ""
2939
 
2940
- #: nextend-social-login-pro/providers/disqus/disqus.php:87
 
 
 
 
2941
  msgid "Link account with <b>Disqus</b>"
2942
  msgstr ""
2943
 
2944
- #: nextend-social-login-pro/providers/disqus/disqus.php:88
2945
  msgid "Unlink account from <b>Disqus</b>"
2946
  msgstr ""
2947
 
@@ -3016,15 +3158,19 @@ msgid ""
3016
  "is a public email address set at the %1$s profile page%2$s!"
3017
  msgstr ""
3018
 
3019
- #: nextend-social-login-pro/providers/github/github.php:124
3020
  msgid "Continue with <b>GitHub</b>"
3021
  msgstr ""
3022
 
3023
- #: nextend-social-login-pro/providers/github/github.php:125
 
 
 
 
3024
  msgid "Link account with <b>GitHub</b>"
3025
  msgstr ""
3026
 
3027
- #: nextend-social-login-pro/providers/github/github.php:126
3028
  msgid "Unlink account from <b>GitHub</b>"
3029
  msgstr ""
3030
 
@@ -3108,15 +3254,19 @@ msgid ""
3108
  "under the Application credentials section, on the <b>Auth</b> tab."
3109
  msgstr ""
3110
 
3111
- #: nextend-social-login-pro/providers/linkedin/linkedin.php:37
3112
  msgid "Continue with <b>LinkedIn</b>"
3113
  msgstr ""
3114
 
3115
- #: nextend-social-login-pro/providers/linkedin/linkedin.php:38
 
 
 
 
3116
  msgid "Link account with <b>LinkedIn</b>"
3117
  msgstr ""
3118
 
3119
- #: nextend-social-login-pro/providers/linkedin/linkedin.php:39
3120
  msgid "Unlink account from <b>LinkedIn</b>"
3121
  msgstr ""
3122
 
@@ -3225,15 +3375,19 @@ msgstr ""
3225
  msgid "Disable, when you have no rights for email address."
3226
  msgstr ""
3227
 
3228
- #: nextend-social-login-pro/providers/paypal/paypal.php:64
3229
  msgid "Continue with <b>PayPal</b>"
3230
  msgstr ""
3231
 
3232
- #: nextend-social-login-pro/providers/paypal/paypal.php:65
 
 
 
 
3233
  msgid "Link account with <b>PayPal</b>"
3234
  msgstr ""
3235
 
3236
- #: nextend-social-login-pro/providers/paypal/paypal.php:66
3237
  msgid "Unlink account from <b>PayPal</b>"
3238
  msgstr ""
3239
 
@@ -3312,15 +3466,19 @@ msgstr ""
3312
  msgid "Secure key"
3313
  msgstr ""
3314
 
3315
- #: nextend-social-login-pro/providers/vk/vk.php:35
3316
  msgid "Continue with <b>VK</b>"
3317
  msgstr ""
3318
 
3319
- #: nextend-social-login-pro/providers/vk/vk.php:36
 
 
 
 
3320
  msgid "Link account with <b>VK</b>"
3321
  msgstr ""
3322
 
3323
- #: nextend-social-login-pro/providers/vk/vk.php:37
3324
  msgid "Unlink account from <b>VK</b>"
3325
  msgstr ""
3326
 
@@ -3378,15 +3536,19 @@ msgid ""
3378
  "\". These will be needed in the plugin's settings."
3379
  msgstr ""
3380
 
3381
- #: nextend-social-login-pro/providers/wordpress/wordpress.php:73
3382
  msgid "Continue with <b>WordPress.com</b>"
3383
  msgstr ""
3384
 
3385
- #: nextend-social-login-pro/providers/wordpress/wordpress.php:74
 
 
 
 
3386
  msgid "Link account with <b>WordPress.com</b>"
3387
  msgstr ""
3388
 
3389
- #: nextend-social-login-pro/providers/wordpress/wordpress.php:75
3390
  msgid "Unlink account from <b>WordPress.com</b>"
3391
  msgstr ""
3392
 
@@ -3443,19 +3605,23 @@ msgid ""
3443
  "settings."
3444
  msgstr ""
3445
 
3446
- #: nextend-social-login-pro/providers/yahoo/yahoo.php:64
3447
  msgid "Continue with <b>Yahoo</b>"
3448
  msgstr ""
3449
 
3450
- #: nextend-social-login-pro/providers/yahoo/yahoo.php:65
 
 
 
 
3451
  msgid "Link account with <b>Yahoo</b>"
3452
  msgstr ""
3453
 
3454
- #: nextend-social-login-pro/providers/yahoo/yahoo.php:66
3455
  msgid "Unlink account from <b>Yahoo</b>"
3456
  msgstr ""
3457
 
3458
- #: nextend-social-login-pro/providers/yahoo/yahoo.php:186
3459
  #, php-format
3460
  msgid "Required permission: %1$s"
3461
  msgstr ""
2
  msgid ""
3
  msgstr ""
4
  "Project-Id-Version: nextend-facebook-connect\n"
5
+ "POT-Creation-Date: 2021-01-27 13:55+0100\n"
6
  "PO-Revision-Date: 2020-06-29 13:58+0200\n"
7
  "Last-Translator: \n"
8
  "Language-Team: nextend-facebook-connect\n"
114
  msgid "User"
115
  msgstr ""
116
 
117
+ #: nextend-facebook-connect/admin/admin.php:206
118
  #, php-format
119
  msgid "%s needs json_decode function."
120
  msgstr ""
121
 
122
+ #: nextend-facebook-connect/admin/admin.php:206
123
  msgid "Please contact your server administrator and ask for solution!"
124
  msgstr ""
125
 
126
+ #: nextend-facebook-connect/admin/admin.php:238
127
+ #: nextend-facebook-connect/admin/admin.php:268
128
  msgid "Settings saved."
129
  msgstr ""
130
 
131
+ #: nextend-facebook-connect/admin/admin.php:247
132
  msgid "The activation was successful"
133
  msgstr ""
134
 
135
+ #: nextend-facebook-connect/admin/admin.php:258
136
  msgid "Deactivate completed."
137
  msgstr ""
138
 
139
+ #: nextend-facebook-connect/admin/admin.php:437
140
  #: nextend-facebook-connect/admin/templates-provider/menu.php:15
141
  #: nextend-facebook-connect/admin/templates/providers.php:89
142
  #: nextend-facebook-connect/admin/templates/providers.php:101
144
  msgid "Settings"
145
  msgstr ""
146
 
147
+ #: nextend-facebook-connect/admin/admin.php:520
148
+ #: nextend-facebook-connect/includes/oauth2.php:143
149
+ #: nextend-facebook-connect/includes/oauth2.php:288
150
  #: nextend-facebook-connect/providers/facebook/facebook-client.php:84
151
  #: nextend-facebook-connect/providers/twitter/twitter-client.php:165
152
  #: nextend-social-login-pro/providers/apple/apple-client.php:87
155
  msgid "Unexpected response: %s"
156
  msgstr ""
157
 
158
+ #: nextend-facebook-connect/admin/admin.php:581
159
  #: nextend-facebook-connect/admin/templates/fix-redirect-uri.php:21
160
  #, php-format
161
  msgid ""
163
  "redirect URIs in the related social applications."
164
  msgstr ""
165
 
166
+ #: nextend-facebook-connect/admin/admin.php:582
167
+ #: nextend-social-login-pro/providers/apple/apple.php:310
168
  msgid "Fix Error"
169
  msgstr ""
170
 
171
+ #: nextend-facebook-connect/admin/admin.php:582
172
  msgid "Oauth Redirect URI"
173
  msgstr ""
174
 
175
+ #: nextend-facebook-connect/admin/admin.php:599
176
  #, php-format
177
  msgid ""
178
  "%1$s detected that %2$s installed on your site. You need the Pro Addon "
179
  "to display Social Login buttons in %2$s login form!"
180
  msgstr ""
181
 
182
+ #: nextend-facebook-connect/admin/admin.php:600
183
  msgid "Dismiss and check Pro Addon"
184
  msgstr ""
185
 
186
+ #: nextend-facebook-connect/admin/admin.php:600
187
  msgid "Dismiss"
188
  msgstr ""
189
 
190
+ #: nextend-facebook-connect/admin/admin.php:606
191
  #, php-format
192
  msgid ""
193
  "%1$s detected that %2$s installed on your site. You must set \"<b>Page "
195
  "in %1$s to work properly."
196
  msgstr ""
197
 
198
+ #: nextend-facebook-connect/admin/admin.php:607
199
  msgid "Fix now"
200
  msgstr ""
201
 
202
+ #: nextend-facebook-connect/admin/admin.php:631
203
  msgid "Activate your Pro Addon"
204
  msgstr ""
205
 
206
+ #: nextend-facebook-connect/admin/admin.php:632
207
  msgid ""
208
  "To be able to use the Pro features, you need to activate Nextend "
209
  "Social Login Pro Addon. You can do this by clicking on the Activate "
210
  "button below then select the related purchase."
211
  msgstr ""
212
 
213
+ #: nextend-facebook-connect/admin/admin.php:637
214
+ #: nextend-social-login-pro/nextend-social-login-pro.php:110
215
  msgid "Activate"
216
  msgstr ""
217
 
218
+ #: nextend-facebook-connect/admin/admin.php:735
219
  msgid "License key"
220
  msgstr ""
221
 
222
+ #: nextend-facebook-connect/admin/admin.php:758
223
  msgid "OAuth proxy page"
224
  msgstr ""
225
 
226
+ #: nextend-facebook-connect/admin/admin.php:761
227
  msgid "Register flow page"
228
  msgstr ""
229
 
232
  msgid "You have logged in successfully."
233
  msgstr ""
234
 
235
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:80
236
  msgid "Login label"
237
  msgstr ""
238
 
239
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:85
240
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:101
241
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:114
242
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:125
243
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:154
244
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:184
245
  #: nextend-facebook-connect/admin/templates/settings/privacy.php:53
246
  msgid "Reset to default"
247
  msgstr ""
248
 
249
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:95
250
+ msgid "Register label"
251
+ msgstr ""
252
+
253
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:108
254
  msgid "Link label"
255
  msgstr ""
256
 
257
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:120
258
  msgid "Unlink label"
259
  msgstr ""
260
 
261
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:131
262
  msgid "Default button"
263
  msgstr ""
264
 
265
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:147
266
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:177
267
  msgid "Use custom button"
268
  msgstr ""
269
 
270
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:154
271
  #, php-format
272
  msgid ""
273
  "Use the %s in your custom button's code to make the label show up."
274
  msgstr ""
275
 
276
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:162
277
  msgid "Icon button"
278
  msgstr ""
279
 
280
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:193
281
  #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:140
282
  #: nextend-facebook-connect/admin/templates-provider/sync-data.php:104
283
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:170
290
  #: nextend-facebook-connect/admin/templates/settings/privacy.php:109
291
  #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:186
292
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:167
293
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:341
294
+ #: nextend-facebook-connect/providers/facebook/admin/settings.php:67
295
  #: nextend-facebook-connect/providers/google/admin/settings.php:62
296
  #: nextend-facebook-connect/providers/twitter/admin/settings.php:48
297
  #: nextend-social-login-pro/providers/amazon/admin/settings.php:47
416
  #: nextend-facebook-connect/admin/templates/settings/general.php:213
417
  #: nextend-facebook-connect/admin/templates/settings/general.php:228
418
  #: nextend-facebook-connect/admin/templates/settings/general.php:246
419
+ #: nextend-facebook-connect/admin/templates/settings/general.php:261
420
+ #: nextend-facebook-connect/includes/provider-admin.php:218
421
  msgid "Disabled"
422
  msgstr ""
423
 
713
  #: nextend-facebook-connect/admin/templates/settings/general.php:216
714
  #: nextend-facebook-connect/admin/templates/settings/general.php:231
715
  #: nextend-facebook-connect/admin/templates/settings/general.php:249
716
+ #: nextend-facebook-connect/admin/templates/settings/general.php:264
717
+ #: nextend-facebook-connect/includes/provider-admin.php:221
718
  #: nextend-facebook-connect/providers/google/admin/settings.php:53
719
  #: nextend-social-login-pro/providers/paypal/admin/settings.php:51
720
  msgid "Enabled"
725
  msgstr ""
726
 
727
  #: nextend-facebook-connect/admin/templates/providers.php:77
728
+ #: nextend-facebook-connect/includes/provider-admin.php:205
729
  msgid "Verify Settings"
730
  msgstr ""
731
 
732
  #: nextend-facebook-connect/admin/templates/providers.php:85
733
+ #: nextend-facebook-connect/includes/provider-admin.php:250
734
  msgid "Enable"
735
  msgstr ""
736
 
737
  #: nextend-facebook-connect/admin/templates/providers.php:97
738
+ #: nextend-facebook-connect/includes/provider-admin.php:258
739
  msgid "Disable"
740
  msgstr ""
741
 
1263
  msgid "Allow registration with Social login."
1264
  msgstr ""
1265
 
1266
+ #: nextend-facebook-connect/admin/templates/settings/general.php:256
1267
+ msgid "Custom label for register buttons"
1268
+ msgstr ""
1269
+
1270
+ #: nextend-facebook-connect/admin/templates/settings/general.php:266
1271
+ #, php-format
1272
+ msgid ""
1273
+ "Set a custom label for the social buttons in registration forms and "
1274
+ "for shortcodes with %1$s parameter set to %2$s.<br>The register "
1275
+ "specific labels can be modified at the Buttons tab of each provider."
1276
+ msgstr ""
1277
+
1278
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:29
1279
  #: nextend-facebook-connect/admin/templates/settings/memberpress.php:33
1280
  #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:33
1361
  msgstr ""
1362
 
1363
  #: nextend-facebook-connect/admin/templates/settings/privacy.php:6
1364
+ #: nextend-facebook-connect/nextend-social-login.php:148
1365
  msgid ""
1366
  "By clicking Register, you accept our <a href=\"#privacy_policy_url\" "
1367
  "target=\"_blank\">Privacy Policy</a>"
1389
  msgstr ""
1390
 
1391
  #: nextend-facebook-connect/admin/templates/settings/privacy.php:91
1392
+ #: nextend-facebook-connect/includes/avatar.php:49
1393
  msgid "Avatar"
1394
  msgstr ""
1395
 
1396
  #: nextend-facebook-connect/admin/templates/settings/privacy.php:102
1397
+ #: nextend-facebook-connect/includes/provider.php:1100
1398
  msgid "Access token"
1399
  msgstr ""
1400
 
1462
  msgid "Link buttons on"
1463
  msgstr ""
1464
 
1465
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:323
1466
+ msgid "Email template for registration"
1467
+ msgstr ""
1468
+
1469
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:328
1470
+ msgid "WordPress default notification"
1471
+ msgstr ""
1472
+
1473
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:331
1474
+ msgid "WooCommerce registration notification"
1475
+ msgstr ""
1476
+
1477
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:333
1478
+ #, php-format
1479
+ msgid ""
1480
+ "Defines whether the registration with %1$s will send the same "
1481
+ "registration notification that %2$s does, instead of the %3$s default "
1482
+ "one."
1483
+ msgstr ""
1484
+
1485
  #: nextend-facebook-connect/admin/templates/test-connection.php:42
1486
  #, php-format
1487
  msgid "Network connection successful: %1$s"
1498
  "between your server and the provider."
1499
  msgstr ""
1500
 
1501
+ #: nextend-facebook-connect/includes/avatar.php:50
1502
  msgid "Manage Avatar"
1503
  msgstr ""
1504
 
1505
+ #: nextend-facebook-connect/includes/avatar.php:51
1506
  #, php-format
1507
  msgid "Avatar <span class=\"count\">(%s)</span>"
1508
  msgid_plural "Avatar <span class=\"count\">(%s)</span>"
1509
  msgstr[0] ""
1510
  msgstr[1] ""
1511
 
 
1512
  #: nextend-facebook-connect/includes/compat-wp-login.php:63
1513
  #, php-format
1514
  msgid "%1$s &lsaquo; %2$s &#8212; WordPress"
1522
  msgid "Powered by WordPress"
1523
  msgstr ""
1524
 
 
1525
  #: nextend-facebook-connect/includes/compat-wp-login.php:284
1526
  #, php-format
1527
  msgctxt "site"
1528
  msgid "&larr; Back to %s"
1529
  msgstr ""
1530
 
1531
+ #: nextend-facebook-connect/includes/provider-admin.php:199
1532
  msgid "Your configuration needs to be verified"
1533
  msgstr ""
1534
 
1535
+ #: nextend-facebook-connect/includes/provider-admin.php:200
1536
  msgid ""
1537
  "Before you can start letting your users register with your app it "
1538
  "needs to be tested. This test makes sure that no users will have "
1541
  "itself. Otherwise your settings are fine."
1542
  msgstr ""
1543
 
1544
+ #: nextend-facebook-connect/includes/provider-admin.php:206
1545
  msgid "Please save your changes to verify settings."
1546
  msgstr ""
1547
 
1548
+ #: nextend-facebook-connect/includes/provider-admin.php:214
1549
  msgid "Works Fine"
1550
  msgstr ""
1551
 
1552
+ #: nextend-facebook-connect/includes/provider-admin.php:228
1553
  #, php-format
1554
  msgid ""
1555
  "This provider is currently disabled, which means that users can’t "
1556
  "register or login via their %s account."
1557
  msgstr ""
1558
 
1559
+ #: nextend-facebook-connect/includes/provider-admin.php:231
1560
  #, php-format
1561
  msgid ""
1562
  "This provider works fine, but you can test it again. If you don’t want "
1563
  "to let users register or login with %s anymore you can disable it."
1564
  msgstr ""
1565
 
1566
+ #: nextend-facebook-connect/includes/provider-admin.php:234
1567
  #, php-format
1568
  msgid ""
1569
  "This provider is currently enabled, which means that users can "
1570
  "register or login via their %s account."
1571
  msgstr ""
1572
 
1573
+ #: nextend-facebook-connect/includes/provider-admin.php:242
1574
  msgid "Verify Settings Again"
1575
  msgstr ""
1576
 
1577
+ #: nextend-facebook-connect/includes/provider-admin.php:243
1578
  msgid "Please save your changes before verifying settings."
1579
  msgstr ""
1580
 
1581
+ #: nextend-facebook-connect/includes/provider.php:358
1582
+ #: nextend-facebook-connect/includes/provider.php:717
1583
+ #: nextend-facebook-connect/includes/provider.php:725
1584
  msgid "Authentication successful"
1585
  msgstr ""
1586
 
1587
+ #: nextend-facebook-connect/includes/provider.php:654
1588
+ #: nextend-facebook-connect/includes/user.php:168
1589
+ #: nextend-facebook-connect/includes/user.php:597
1590
  msgid "Authentication error"
1591
  msgstr ""
1592
 
1593
+ #: nextend-facebook-connect/includes/provider.php:669
1594
  msgid "Unlink successful."
1595
  msgstr ""
1596
 
1597
+ #: nextend-facebook-connect/includes/provider.php:671
1598
  msgid "Unlink is not allowed!"
1599
  msgstr ""
1600
 
1601
+ #: nextend-facebook-connect/includes/provider.php:886
1602
+ #: nextend-facebook-connect/includes/provider.php:893
1603
  msgid "The test was successful"
1604
  msgstr ""
1605
 
1606
+ #: nextend-facebook-connect/includes/provider.php:939
1607
  msgid "Authentication failed"
1608
  msgstr ""
1609
 
1610
+ #: nextend-facebook-connect/includes/provider.php:1092
1611
  msgid "Identifier"
1612
  msgstr ""
1613
 
1614
+ #: nextend-facebook-connect/includes/provider.php:1108
1615
  msgid "Profile picture"
1616
  msgstr ""
1617
 
1626
  #, php-format
1627
  msgid ""
1628
  "You have already linked a(n) %s account. Please unlink the current and "
1629
+ "then you can link another %s account."
1630
  msgstr ""
1631
 
1632
  #: nextend-facebook-connect/includes/user.php:82
1633
  #, php-format
1634
+ msgid "This %s account is already linked to another user."
1635
  msgstr ""
1636
 
1637
+ #: nextend-facebook-connect/includes/user.php:128
1638
  msgid "User registration is currently not allowed."
1639
  msgstr ""
1640
 
1642
  msgid "Register For This Site!"
1643
  msgstr ""
1644
 
1645
+ #: nextend-facebook-connect/nextend-facebook-connect.php:37
 
1646
  #, php-format
1647
  msgid "%1$s requires PHP version %2$s+, plugin is currently NOT ACTIVE."
1648
  msgstr ""
1649
 
1650
+ #: nextend-facebook-connect/nextend-facebook-connect.php:44
 
1651
  #, php-format
1652
  msgid ""
1653
  "%1$s requires WordPress version %2$s+. Because you are using an "
1665
  msgid "Update now!"
1666
  msgstr ""
1667
 
1668
+ #: nextend-facebook-connect/nextend-social-login.php:762
1669
+ #: nextend-facebook-connect/nextend-social-login.php:1140
1670
  msgid "Social Login"
1671
  msgstr ""
1672
 
1673
+ #: nextend-facebook-connect/nextend-social-login.php:1121
1674
  msgid "Social Accounts"
1675
  msgstr ""
1676
 
1736
  msgstr ""
1737
 
1738
  #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:12
1739
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:35
1740
  #, php-format
1741
  msgid ""
1742
  "Add the following URL to the \"<b>Valid OAuth redirect URIs</b>\" "
1819
  msgstr ""
1820
 
1821
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:26
1822
+ msgid ""
1823
+ "Click on the \"<b>Create App</b>\" button and in the Popup choose the "
1824
+ "\"<b>Build Connected Experiences</b>\" option!"
1825
  msgstr ""
1826
 
1827
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:27
1834
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:28
1835
  #, php-format
1836
  msgid ""
1837
+ "Fill \"<b>App Display Name</b>\", \"<b>App Contact Email</b>\". The "
1838
+ "specified \"App Display Name\" will appear on your %s!"
1839
  msgstr ""
1840
 
1841
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:29
1842
  msgid ""
1843
+ "<b>Optional</b>: choose a \"<b>Business Manager Account</b>\" in the "
1844
+ "popup, if you have any."
1845
+ msgstr ""
1846
+
1847
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:30
1848
+ msgid ""
1849
  "Click the \"<b>Create App ID</b>\" button and complete the Security "
1850
  "Check."
1851
  msgstr ""
1852
 
1853
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:31
1854
  #, php-format
1855
  msgid ""
1856
  "At the \"<b>Add a Product</b>\" panel find \"<b>%1$s</b>\" and click "
1857
  "\"<b>Set Up</b>\""
1858
  msgstr ""
1859
 
1860
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:32
1861
  #, php-format
1862
  msgid ""
1863
  "Select \"<b>Web</b>\" and enter the following URL to the \"<b>Site "
1864
  "URL</b>\" field: <b>%s</b>"
1865
  msgstr ""
1866
 
1867
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:33
1868
  msgid "Press “<b>Save</b>”"
1869
  msgstr ""
1870
 
1871
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:34
1872
  #, php-format
1873
  msgid ""
1874
  "Click on the “<b>%1$s</b>” option what you find on the left side, "
1875
  "under “<b>%2$s</b> - <b>%3$s</b>”"
1876
  msgstr ""
1877
 
1878
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:36
1879
  msgid "Click on “<b>Save Changes</b>”"
1880
  msgstr ""
1881
 
1882
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:37
1883
  #, php-format
1884
  msgid ""
1885
  "On the top left side, click on the “<b>%1$s</b>” menu point, then "
1886
  "click “<b>%2$s</b>”"
1887
  msgstr ""
1888
 
1889
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:38
1890
  #, php-format
1891
  msgid ""
1892
  "Enter your domain name to the \"<b>App Domains</b>\" field, probably: "
1893
  "<b>%s</b>"
1894
  msgstr ""
1895
 
1896
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:39
1897
  msgid ""
1898
  "Fill up the \"<b>Privacy Policy URL</b>\" field. Provide a publicly "
1899
  "available and easily accessible privacy policy that explains what data "
1900
  "you are collecting and how you will use that data."
1901
  msgstr ""
1902
 
1903
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:40
1904
  msgid ""
1905
+ "At \"<b>User Data Deletion</b>\", choose the \"<b>Data Deletion "
1906
+ "Instructions URL</b>\" option, and enter the <i>URL of your page</i>* "
1907
+ "with the instructions on how users can delete their accounts on your "
1908
+ "site."
1909
  msgstr ""
1910
 
1911
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:42
1912
+ msgid ""
1913
+ "To comply with GDPR, you should already offer possibility to delete "
1914
+ "accounts on your site, either by the user or by the admin:"
1915
+ msgstr ""
1916
+
1917
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:45
1918
+ msgid ""
1919
+ "<u>If each user has an option to delete the account</u>: the URL "
1920
+ "should point to a guide showing the way users can delete their "
1921
+ "accounts."
1922
+ msgstr ""
1923
+
1924
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:46
1925
+ msgid ""
1926
+ "<u>If the accounts are deleted by an admin</u>: then you should have a "
1927
+ "section - usually in the Privacy Policy - with the contact details, "
1928
+ "where users can send their account erasure requests. In this case the "
1929
+ "URL should point to this section of the document."
1930
+ msgstr ""
1931
+
1932
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:51
1933
+ msgid ""
1934
+ "Select a “<b>Category</b>”, an “<b>App Icon</b>” and pick the “<b>App "
1935
+ "Purpose</b>” option that describes your App the best, then press "
1936
+ "\"<b>Save Changes</b>\""
1937
+ msgstr ""
1938
+
1939
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:52
1940
  msgid ""
1941
  "Your application is currently private, which means that only you can "
1942
  "log in with it. In the top bar click on the switch next to the \"<b>In "
1943
  "development</b>\" label, then click the \"<b>Switch Mode</b>\" button."
1944
  msgstr ""
1945
 
1946
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:53
1947
  msgid ""
1948
  "At the top of the page you can find your \"<b>App ID</b>\" and you can "
1949
  "see your \"<b>App secret</b>\" if you click on the \"Show\" button. "
1950
  "These will be needed in plugin’s settings."
1951
  msgstr ""
1952
 
1953
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:56
1954
+ #, php-format
1955
+ msgid ""
1956
+ "<b>WARNING:</b> <u>Don't replace your Facebook App with another!</u> "
1957
+ "Since WordPress users with linked Facebook accounts can only login "
1958
+ "using the %1$s App, that was originally used at the time, when the "
1959
+ "WordPress account was linked with a %1$s Account.<br>\n"
1960
+ "If you would like to know the reason of this, or you really need to "
1961
+ "replace the Facebook App, then please check our %2$sdocumentation%3$s."
1962
+ msgstr ""
1963
+
1964
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:60
1965
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:40
1966
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:37
1967
  #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:39
1968
  #: nextend-social-login-pro/providers/apple/admin/getting-started.php:122
1969
  #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:30
2033
  msgid "App Secret"
2034
  msgstr ""
2035
 
2036
+ #: nextend-facebook-connect/providers/facebook/admin/settings.php:59
2037
+ #, php-format
2038
+ msgid ""
2039
+ "By replacing your existing %1$s App, users with linked %1$s accounts "
2040
+ "will no longer be able to login with %1$s."
2041
+ msgstr ""
2042
+
2043
+ #: nextend-facebook-connect/providers/facebook/admin/settings.php:61
2044
+ msgid "Find out why?"
2045
  msgstr ""
2046
 
2047
  #: nextend-facebook-connect/providers/facebook/facebook.php:85
2048
+ msgid "Continue with <b>Facebook</b>"
2049
  msgstr ""
2050
 
2051
  #: nextend-facebook-connect/providers/facebook/facebook.php:86
2052
+ msgid "Sign up with <b>Facebook</b>"
2053
+ msgstr ""
2054
+
2055
+ #: nextend-facebook-connect/providers/facebook/facebook.php:87
2056
+ msgid "Link account with <b>Facebook</b>"
2057
+ msgstr ""
2058
+
2059
+ #: nextend-facebook-connect/providers/facebook/facebook.php:88
2060
  msgid "Unlink account from <b>Facebook</b>"
2061
  msgstr ""
2062
 
2063
+ #: nextend-facebook-connect/providers/facebook/facebook.php:188
2064
+ #: nextend-facebook-connect/providers/google/google.php:168
2065
+ #: nextend-facebook-connect/providers/twitter/twitter.php:97
2066
+ #: nextend-social-login-pro/providers/amazon/amazon.php:67
2067
+ #: nextend-social-login-pro/providers/apple/apple.php:131
2068
+ #: nextend-social-login-pro/providers/apple/apple.php:138
2069
+ #: nextend-social-login-pro/providers/disqus/disqus.php:114
2070
+ #: nextend-social-login-pro/providers/github/github.php:152
2071
+ #: nextend-social-login-pro/providers/linkedin/linkedin.php:65
2072
+ #: nextend-social-login-pro/providers/paypal/paypal.php:92
2073
+ #: nextend-social-login-pro/providers/vk/vk.php:63
2074
+ #: nextend-social-login-pro/providers/wordpress/wordpress.php:101
2075
+ #: nextend-social-login-pro/providers/yahoo/yahoo.php:92
2076
  #, php-format
2077
  msgid ""
2078
  "The %1$s entered did not appear to be a valid. Please enter a valid "
2079
  "%2$s."
2080
  msgstr ""
2081
 
2082
+ #: nextend-facebook-connect/providers/facebook/facebook.php:309
2083
+ #: nextend-social-login-pro/providers/paypal/paypal.php:172
2084
  #, php-format
2085
  msgid "Required scope: %1$s"
2086
  msgstr ""
2231
  "login."
2232
  msgstr ""
2233
 
2234
+ #: nextend-facebook-connect/providers/google/google.php:99
2235
  msgid "Continue with <b>Google</b>"
2236
  msgstr ""
2237
 
2238
+ #: nextend-facebook-connect/providers/google/google.php:100
2239
+ msgid "Sign up with <b>Google</b>"
2240
+ msgstr ""
2241
+
2242
+ #: nextend-facebook-connect/providers/google/google.php:101
2243
  msgid "Link account with <b>Google</b>"
2244
  msgstr ""
2245
 
2246
+ #: nextend-facebook-connect/providers/google/google.php:102
2247
  msgid "Unlink account from <b>Google</b>"
2248
  msgstr ""
2249
 
2250
+ #: nextend-facebook-connect/providers/google/google.php:295
2251
  #, php-format
2252
  msgid "Required API: %1$s"
2253
  msgstr ""
2254
 
2255
  #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:10
2256
+ msgid ""
2257
+ "Find your App and click on the <b>App settings</b> icon. (The one that "
2258
+ "looks like a gear.)"
2259
  msgstr ""
2260
 
2261
  #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:11
2262
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:27
2263
  msgid ""
2264
+ "Click on the <b>Edit</b> button at <b>Authentication settings</b>."
 
2265
  msgstr ""
2266
 
2267
  #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:12
 
2268
  #, php-format
2269
  msgid ""
2270
  "Add the following URL to the \"<b>Callback URLs</b>\" field: <b>%s</b>"
2271
  msgstr ""
2272
 
2273
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:17
2274
+ #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:25
2275
+ #: nextend-social-login-pro/providers/apple/admin/getting-started.php:38
2276
+ #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:9
2277
+ #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:16
2278
+ #: nextend-social-login-pro/providers/github/admin/getting-started.php:16
2279
+ #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:9
2280
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:17
2281
+ #: nextend-social-login-pro/providers/vk/admin/getting-started.php:16
2282
+ #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:9
2283
+ #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:16
2284
+ #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:17
2285
  #, php-format
2286
+ msgid "Log in with your %s credentials if you are not logged in."
2287
  msgstr ""
2288
 
2289
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:18
2300
  msgstr ""
2301
 
2302
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:20
2303
+ msgid "Click on <b>+ New Project</b>!"
 
 
 
2304
  msgstr ""
2305
 
2306
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:21
2307
+ msgid ""
2308
+ "Name your project, and go through the basic setup. You’ll need to "
2309
+ "select your use case and give a description."
2310
+ msgstr ""
2311
+
2312
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:22
2313
+ msgid ""
2314
+ "Create a new app, or select an existing one, then click <b>Complete</b>"
2315
  msgstr ""
2316
 
2317
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:23
2318
  msgid ""
2319
+ "You’ll find your API key and secret on this page. Copy and paste the "
2320
+ "<b>API key</b> and the <b>API secret key</b> to the corresponding "
2321
+ "fields at Nextend Social Login and press <b>Save Changes</b>."
2322
  msgstr ""
2323
 
2324
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:24
2325
+ #, php-format
2326
+ msgid "Click on the <b>App Settings</b> button at %s."
2327
  msgstr ""
2328
 
2329
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:25
2330
+ msgid "Find the Apps section, and the app you created a few steps ago."
 
2331
  msgstr ""
2332
 
2333
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:26
2334
+ msgid "Click on the App settings icon. (The one that looks like a gear.)"
2335
  msgstr ""
2336
 
2337
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:28
2338
+ msgid "Switch on the <b>Enable 3-legged OAuth</b> option."
2339
+ msgstr ""
2340
+
2341
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:29
2342
+ #, php-format
2343
  msgid ""
2344
+ "Add the following URL to the <b>Callback URLs</b> field: <b>%s</b>"
 
2345
  msgstr ""
2346
 
2347
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:30
2348
+ #, php-format
2349
+ msgid "Enter your site's URL to the <b>Website URL</b> field: <b>%s</b>"
2350
+ msgstr ""
2351
+
2352
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:31
2353
  msgid ""
2354
+ "If you want to get the email address as well, then don’t forget to "
2355
+ "enable the <b>Request email address from users</b> option. In this "
2356
+ "case you also need to fill the <b>Terms of service</b> and the "
2357
+ "<b>Privacy policy</b> fields with the corresponding URLs!"
2358
+ msgstr ""
2359
+
2360
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:32
2361
+ msgid "Click on <b>Save</b>."
2362
+ msgstr ""
2363
+
2364
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:33
2365
+ #, php-format
2366
+ msgid ""
2367
+ "Go back to Nextend Social Login and <b>Verify</b> your %s provider."
2368
  msgstr ""
2369
 
2370
  #: nextend-facebook-connect/providers/twitter/admin/settings.php:27
2384
  msgid "Original"
2385
  msgstr ""
2386
 
2387
+ #: nextend-facebook-connect/providers/twitter/twitter.php:70
2388
  msgid "Continue with <b>Twitter</b>"
2389
  msgstr ""
2390
 
2391
+ #: nextend-facebook-connect/providers/twitter/twitter.php:71
2392
+ msgid "Sign up with <b>Twitter</b>"
2393
+ msgstr ""
2394
+
2395
+ #: nextend-facebook-connect/providers/twitter/twitter.php:72
2396
  msgid "Link account with <b>Twitter</b>"
2397
  msgstr ""
2398
 
2399
+ #: nextend-facebook-connect/providers/twitter/twitter.php:73
2400
  msgid "Unlink account from <b>Twitter</b>"
2401
  msgstr ""
2402
 
2515
  "link with %1$s."
2516
  msgstr ""
2517
 
2518
+ #: nextend-social-login-pro/nextend-social-login-pro.php:104
2519
  #, php-format
2520
  msgid "Please install and activate %1$s to use the %2$s"
2521
  msgstr ""
2522
 
2523
+ #: nextend-social-login-pro/nextend-social-login-pro.php:118
2524
  msgid "Network Activate"
2525
  msgstr ""
2526
 
2527
+ #: nextend-social-login-pro/nextend-social-login-pro.php:130
2528
  msgid "Install now!"
2529
  msgstr ""
2530
 
2531
+ #: nextend-social-login-pro/nextend-social-login-pro.php:821
2532
  msgid "Social Providers"
2533
  msgstr ""
2534
 
2539
  "the latest %2$s version!"
2540
  msgstr ""
2541
 
2542
+ #: nextend-social-login-pro/provider-extensions/google.php:187
2543
  #, php-format
2544
  msgid ""
2545
  "Most of these information can only be retrieved, when the field is "
2587
  "according to your %1$s App."
2588
  msgstr ""
2589
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2590
  #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:27
2591
  msgid ""
2592
  "If you don't have a Security Profile yet, you'll need to create one. "
2622
  "at the middle of the page, under the \"<b>Web Settings</b>\" tab."
2623
  msgstr ""
2624
 
2625
+ #: nextend-social-login-pro/providers/amazon/amazon.php:40
2626
  msgid "Continue with <b>Amazon</b>"
2627
  msgstr ""
2628
 
2629
+ #: nextend-social-login-pro/providers/amazon/amazon.php:41
2630
+ msgid "Sign up with <b>Amazon</b>"
2631
+ msgstr ""
2632
+
2633
+ #: nextend-social-login-pro/providers/amazon/amazon.php:42
2634
  msgid "Link account with <b>Amazon</b>"
2635
  msgstr ""
2636
 
2637
+ #: nextend-social-login-pro/providers/amazon/amazon.php:43
2638
  msgid "Unlink account from <b>Amazon</b>"
2639
  msgstr ""
2640
 
2947
  msgid "Generate Token"
2948
  msgstr ""
2949
 
2950
+ #: nextend-social-login-pro/providers/apple/apple.php:83
2951
  msgid "Continue with <b>Apple</b>"
2952
  msgstr ""
2953
 
2954
+ #: nextend-social-login-pro/providers/apple/apple.php:84
2955
+ msgid "Sign up with <b>Apple</b>"
2956
+ msgstr ""
2957
+
2958
+ #: nextend-social-login-pro/providers/apple/apple.php:85
2959
  msgid "Link account with <b>Apple</b>"
2960
  msgstr ""
2961
 
2962
+ #: nextend-social-login-pro/providers/apple/apple.php:86
2963
  msgid "Unlink account from <b>Apple</b>"
2964
  msgstr ""
2965
 
2966
+ #: nextend-social-login-pro/providers/apple/apple.php:180
2967
  #, php-format
2968
  msgid "An error occurred when storing of the expiration timestamp : %1$s"
2969
  msgstr ""
2970
 
2971
+ #: nextend-social-login-pro/providers/apple/apple.php:184
2972
+ #: nextend-social-login-pro/providers/apple/apple.php:282
2973
+ #: nextend-social-login-pro/providers/apple/apple.php:297
2974
+ #: nextend-social-login-pro/providers/apple/apple.php:341
2975
  #, php-format
2976
  msgid "Token generation failed: %1$s"
2977
  msgstr ""
2978
 
2979
+ #: nextend-social-login-pro/providers/apple/apple.php:184
2980
  msgid "Please check your credentials!"
2981
  msgstr ""
2982
 
2983
+ #: nextend-social-login-pro/providers/apple/apple.php:282
2984
  msgid "Private key format is not valid!"
2985
  msgstr ""
2986
 
2987
+ #: nextend-social-login-pro/providers/apple/apple.php:308
2988
  #, php-format
2989
  msgid ""
2990
  "%s detected that your Apple credentials have expired. Please delete "
2991
  "the current credentials and generate new one!"
2992
  msgstr ""
2993
 
2994
+ #: nextend-social-login-pro/providers/apple/apple.php:310
2995
  msgid "Apple Credentials"
2996
  msgstr ""
2997
 
3071
  msgid "API Secret"
3072
  msgstr ""
3073
 
3074
+ #: nextend-social-login-pro/providers/disqus/disqus.php:87
3075
  msgid "Continue with <b>Disqus</b>"
3076
  msgstr ""
3077
 
3078
+ #: nextend-social-login-pro/providers/disqus/disqus.php:88
3079
+ msgid "Sign up with <b>Disqus</b>"
3080
+ msgstr ""
3081
+
3082
+ #: nextend-social-login-pro/providers/disqus/disqus.php:89
3083
  msgid "Link account with <b>Disqus</b>"
3084
  msgstr ""
3085
 
3086
+ #: nextend-social-login-pro/providers/disqus/disqus.php:90
3087
  msgid "Unlink account from <b>Disqus</b>"
3088
  msgstr ""
3089
 
3158
  "is a public email address set at the %1$s profile page%2$s!"
3159
  msgstr ""
3160
 
3161
+ #: nextend-social-login-pro/providers/github/github.php:125
3162
  msgid "Continue with <b>GitHub</b>"
3163
  msgstr ""
3164
 
3165
+ #: nextend-social-login-pro/providers/github/github.php:126
3166
+ msgid "Sign up with <b>GitHub</b>"
3167
+ msgstr ""
3168
+
3169
+ #: nextend-social-login-pro/providers/github/github.php:127
3170
  msgid "Link account with <b>GitHub</b>"
3171
  msgstr ""
3172
 
3173
+ #: nextend-social-login-pro/providers/github/github.php:128
3174
  msgid "Unlink account from <b>GitHub</b>"
3175
  msgstr ""
3176
 
3254
  "under the Application credentials section, on the <b>Auth</b> tab."
3255
  msgstr ""
3256
 
3257
+ #: nextend-social-login-pro/providers/linkedin/linkedin.php:38
3258
  msgid "Continue with <b>LinkedIn</b>"
3259
  msgstr ""
3260
 
3261
+ #: nextend-social-login-pro/providers/linkedin/linkedin.php:39
3262
+ msgid "Sign up with <b>LinkedIn</b>"
3263
+ msgstr ""
3264
+
3265
+ #: nextend-social-login-pro/providers/linkedin/linkedin.php:40
3266
  msgid "Link account with <b>LinkedIn</b>"
3267
  msgstr ""
3268
 
3269
+ #: nextend-social-login-pro/providers/linkedin/linkedin.php:41
3270
  msgid "Unlink account from <b>LinkedIn</b>"
3271
  msgstr ""
3272
 
3375
  msgid "Disable, when you have no rights for email address."
3376
  msgstr ""
3377
 
3378
+ #: nextend-social-login-pro/providers/paypal/paypal.php:65
3379
  msgid "Continue with <b>PayPal</b>"
3380
  msgstr ""
3381
 
3382
+ #: nextend-social-login-pro/providers/paypal/paypal.php:66
3383
+ msgid "Sign up with <b>PayPal</b>"
3384
+ msgstr ""
3385
+
3386
+ #: nextend-social-login-pro/providers/paypal/paypal.php:67
3387
  msgid "Link account with <b>PayPal</b>"
3388
  msgstr ""
3389
 
3390
+ #: nextend-social-login-pro/providers/paypal/paypal.php:68
3391
  msgid "Unlink account from <b>PayPal</b>"
3392
  msgstr ""
3393
 
3466
  msgid "Secure key"
3467
  msgstr ""
3468
 
3469
+ #: nextend-social-login-pro/providers/vk/vk.php:36
3470
  msgid "Continue with <b>VK</b>"
3471
  msgstr ""
3472
 
3473
+ #: nextend-social-login-pro/providers/vk/vk.php:37
3474
+ msgid "Sign up with <b>VK</b>"
3475
+ msgstr ""
3476
+
3477
+ #: nextend-social-login-pro/providers/vk/vk.php:38
3478
  msgid "Link account with <b>VK</b>"
3479
  msgstr ""
3480
 
3481
+ #: nextend-social-login-pro/providers/vk/vk.php:39
3482
  msgid "Unlink account from <b>VK</b>"
3483
  msgstr ""
3484
 
3536
  "\". These will be needed in the plugin's settings."
3537
  msgstr ""
3538
 
3539
+ #: nextend-social-login-pro/providers/wordpress/wordpress.php:74
3540
  msgid "Continue with <b>WordPress.com</b>"
3541
  msgstr ""
3542
 
3543
+ #: nextend-social-login-pro/providers/wordpress/wordpress.php:75
3544
+ msgid "Sign up with <b>WordPress.com</b>"
3545
+ msgstr ""
3546
+
3547
+ #: nextend-social-login-pro/providers/wordpress/wordpress.php:76
3548
  msgid "Link account with <b>WordPress.com</b>"
3549
  msgstr ""
3550
 
3551
+ #: nextend-social-login-pro/providers/wordpress/wordpress.php:77
3552
  msgid "Unlink account from <b>WordPress.com</b>"
3553
  msgstr ""
3554
 
3605
  "settings."
3606
  msgstr ""
3607
 
3608
+ #: nextend-social-login-pro/providers/yahoo/yahoo.php:65
3609
  msgid "Continue with <b>Yahoo</b>"
3610
  msgstr ""
3611
 
3612
+ #: nextend-social-login-pro/providers/yahoo/yahoo.php:66
3613
+ msgid "Sign up with <b>Yahoo</b>"
3614
+ msgstr ""
3615
+
3616
+ #: nextend-social-login-pro/providers/yahoo/yahoo.php:67
3617
  msgid "Link account with <b>Yahoo</b>"
3618
  msgstr ""
3619
 
3620
+ #: nextend-social-login-pro/providers/yahoo/yahoo.php:68
3621
  msgid "Unlink account from <b>Yahoo</b>"
3622
  msgstr ""
3623
 
3624
+ #: nextend-social-login-pro/providers/yahoo/yahoo.php:188
3625
  #, php-format
3626
  msgid "Required permission: %1$s"
3627
  msgstr ""
nextend-facebook-connect.php CHANGED
@@ -3,10 +3,11 @@
3
  Plugin Name: Nextend Social Login
4
  Plugin URI: https://nextendweb.com/
5
  Description: Nextend Social Login displays social login buttons for Facebook, Google and Twitter.
6
- Version: 3.0.25
7
  Requires PHP: 7.0
8
  Requires at least: 4.9
9
  Author: Nextendweb
 
10
  License: GPL2
11
  Text Domain: nextend-facebook-connect
12
  Domain Path: /languages
3
  Plugin Name: Nextend Social Login
4
  Plugin URI: https://nextendweb.com/
5
  Description: Nextend Social Login displays social login buttons for Facebook, Google and Twitter.
6
+ Version: 3.0.27
7
  Requires PHP: 7.0
8
  Requires at least: 4.9
9
  Author: Nextendweb
10
+ Author URI: https://nextendweb.com/social-login/
11
  License: GPL2
12
  Text Domain: nextend-facebook-connect
13
  Domain Path: /languages
nextend-social-login.php CHANGED
@@ -19,9 +19,9 @@ require_once(NSL_PATH . '/compat.php');
19
 
20
  class NextendSocialLogin {
21
 
22
- public static $version = '3.0.25';
23
 
24
- public static $nslPROMinVersion = '3.0.25';
25
 
26
  public static $proxyPage = false;
27
 
@@ -191,21 +191,23 @@ class NextendSocialLogin {
191
  'woocommerce_cfw' => 'show',
192
  'woocommerce_cfw_layout' => 'below',
193
 
194
- 'memberpress_login' => 'before',
195
- 'memberpress_form_button_align' => 'left',
196
- 'memberpress_login_form_button_style' => 'default',
197
- 'memberpress_login_form_layout' => 'below-separator',
198
- 'memberpress_signup' => 'before',
199
- 'memberpress_signup_form_button_style' => 'default',
200
- 'memberpress_signup_form_layout' => 'below-separator',
201
- 'memberpress_account_details' => 'after',
202
- 'registration_notification_notify' => '0',
203
- 'debug' => '0',
204
- 'show_linked_providers' => '0',
205
- 'login_restriction' => '0',
206
- 'avatars_in_all_media' => '0',
207
- 'review_state' => -1,
208
- 'woocommerce_dismissed' => 0,
 
 
209
 
210
  'userpro_show_login_form' => 'show',
211
  'userpro_show_register_form' => 'show',
@@ -299,7 +301,11 @@ class NextendSocialLogin {
299
  }
300
 
301
  add_action('login_form_login', 'NextendSocialLogin::login_form_login');
302
- add_action('login_form_register', 'NextendSocialLogin::login_form_register');
 
 
 
 
303
  add_action('login_form_link', 'NextendSocialLogin::login_form_link');
304
  add_action('bp_core_screen_signup', 'NextendSocialLogin::bp_login_form_register');
305
 
@@ -325,7 +331,7 @@ class NextendSocialLogin {
325
  if (NextendSocialLogin::$settings->get('show_registration_form') == 'hide') {
326
  add_action('login_form_register', 'NextendSocialLogin::removeLoginFormAssets');
327
  } else {
328
- add_action('register_form', 'NextendSocialLogin::addLoginFormButtons');
329
  add_action('login_form_register', 'NextendSocialLogin::jQuery');
330
  }
331
 
@@ -359,10 +365,7 @@ class NextendSocialLogin {
359
  /*
360
  * AMP plugin does not call wp_head in Reader mode.
361
  */
362
-
363
- if (function_exists('is_amp_endpoint') && is_amp_endpoint() && !did_action('wp_head')) {
364
- add_action('amp_post_template_head', 'NextendSocialLogin::styles', 100);
365
- }
366
 
367
 
368
  add_action('admin_head', 'NextendSocialLogin::styles', 100);
@@ -476,6 +479,7 @@ class NextendSocialLogin {
476
  $charset_collate = $wpdb->get_charset_collate();
477
 
478
  $sql = "CREATE TABLE " . $table_name . " (
 
479
  `ID` int(11) NOT NULL,
480
  `type` varchar(20) NOT NULL,
481
  `identifier` varchar(100) NOT NULL,
@@ -681,7 +685,7 @@ class NextendSocialLogin {
681
  return $ret . self::getEmbeddedLoginForm();
682
  }
683
 
684
- private static function getEmbeddedLoginForm() {
685
  ob_start();
686
  self::styles();
687
 
@@ -689,7 +693,7 @@ class NextendSocialLogin {
689
 
690
  $containerID = 'nsl-custom-login-form-' . $index;
691
 
692
- echo '<div id="' . $containerID . '">' . self::renderButtonsWithContainer(self::$settings->get('embedded_login_form_button_style'), false, false, false, self::$settings->get('embedded_login_form_button_align')) . '</div>';
693
 
694
  $template = self::get_template_part('embedded-login/' . sanitize_file_name(self::$settings->get('embedded_login_form_layout')) . '.php');
695
  if (!empty($template) && file_exists($template)) {
@@ -707,26 +711,30 @@ class NextendSocialLogin {
707
  echo self::getRenderedLoginButtons();
708
  }
709
 
 
 
 
 
710
  public static function remove_action_login_form_buttons() {
711
  remove_action('login_form', 'NextendSocialLogin::addLoginFormButtons');
712
- remove_action('register_form', 'NextendSocialLogin::addLoginFormButtons');
713
  }
714
 
715
  public static function add_action_login_form_buttons() {
716
  add_action('login_form', 'NextendSocialLogin::addLoginFormButtons');
717
- add_action('register_form', 'NextendSocialLogin::addLoginFormButtons');
718
  }
719
 
720
- private static function getRenderedLoginButtons() {
721
  if (!self::$loginHeadAdded || self::$loginMainButtonsAdded) {
722
 
723
- return self::getEmbeddedLoginForm();
724
  }
725
 
726
  self::$loginMainButtonsAdded = true;
727
 
728
  $ret = '<div id="nsl-custom-login-form-main">';
729
- $ret .= self::renderButtonsWithContainer(self::$settings->get('login_form_button_style'), false, false, false, self::$settings->get('login_form_button_align'));
730
  $ret .= '</div>';
731
 
732
 
@@ -850,10 +858,11 @@ class NextendSocialLogin {
850
  $atts = array_merge(array(
851
  'style' => 'default',
852
  'redirect' => false,
853
- 'trackerdata' => false
 
854
  ), $atts);
855
 
856
- return self::renderButtonsWithContainerAndTitle($atts['heading'], $atts['style'], $providers, $atts['redirect'], $atts['trackerdata'], $atts['align']);
857
  }
858
 
859
  $link = filter_var($atts['link'], FILTER_VALIDATE_BOOLEAN);
@@ -872,14 +881,15 @@ class NextendSocialLogin {
872
  * @param bool|string $redirect_to
873
  * @param bool $trackerData
874
  * @param string $align
 
875
  *
876
  * @return string
877
  */
878
- public static function renderButtonsWithContainer($style = 'default', $providers = false, $redirect_to = false, $trackerData = false, $align = "left") {
879
- return self::renderButtonsWithContainerAndTitle(false, $style, $providers, $redirect_to, $trackerData, $align);
880
  }
881
 
882
- private static function renderButtonsWithContainerAndTitle($heading = false, $style = 'default', $providers = false, $redirect_to = false, $trackerData = false, $align = "left") {
883
 
884
  if (!isset(self::$styles[$style])) {
885
  $style = 'default';
@@ -906,7 +916,7 @@ class NextendSocialLogin {
906
  if (count($enabledProviders)) {
907
  $buttons = '';
908
  foreach ($enabledProviders AS $provider) {
909
- $buttons .= $provider->getConnectButton($style, $redirect_to, $trackerData);
910
  }
911
 
912
  if (!empty($heading)) {
@@ -1255,6 +1265,44 @@ class NextendSocialLogin {
1255
  return false;
1256
  }
1257
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1258
  }
1259
 
1260
  NextendSocialLogin::init();
19
 
20
  class NextendSocialLogin {
21
 
22
+ public static $version = '3.0.27';
23
 
24
+ public static $nslPROMinVersion = '3.0.27';
25
 
26
  public static $proxyPage = false;
27
 
191
  'woocommerce_cfw' => 'show',
192
  'woocommerce_cfw_layout' => 'below',
193
 
194
+ 'memberpress_login' => 'before',
195
+ 'memberpress_form_button_align' => 'left',
196
+ 'memberpress_login_form_button_style' => 'default',
197
+ 'memberpress_login_form_layout' => 'below-separator',
198
+ 'memberpress_signup' => 'before',
199
+ 'memberpress_signup_form_button_style' => 'default',
200
+ 'memberpress_signup_form_layout' => 'below-separator',
201
+ 'memberpress_account_details' => 'after',
202
+ 'registration_notification_notify' => '0',
203
+ 'debug' => '0',
204
+ 'show_linked_providers' => '0',
205
+ 'login_restriction' => '0',
206
+ 'avatars_in_all_media' => '0',
207
+ 'custom_register_label' => '0',
208
+ 'review_state' => -1,
209
+ 'woocommerce_dismissed' => 0,
210
+ 'woocoommerce_registration_email_template' => 'woocommerce',
211
 
212
  'userpro_show_login_form' => 'show',
213
  'userpro_show_register_form' => 'show',
301
  }
302
 
303
  add_action('login_form_login', 'NextendSocialLogin::login_form_login');
304
+
305
+ /**
306
+ * We need smaller priority, as some plugins like Ultimate Member may trigger a redirect before us.
307
+ */
308
+ add_action('login_form_register', 'NextendSocialLogin::login_form_register', 9);
309
  add_action('login_form_link', 'NextendSocialLogin::login_form_link');
310
  add_action('bp_core_screen_signup', 'NextendSocialLogin::bp_login_form_register');
311
 
331
  if (NextendSocialLogin::$settings->get('show_registration_form') == 'hide') {
332
  add_action('login_form_register', 'NextendSocialLogin::removeLoginFormAssets');
333
  } else {
334
+ add_action('register_form', 'NextendSocialLogin::addRegisterFormButtons');
335
  add_action('login_form_register', 'NextendSocialLogin::jQuery');
336
  }
337
 
365
  /*
366
  * AMP plugin does not call wp_head in Reader mode.
367
  */
368
+ add_action('wp', 'NextendSocialLogin::amp_post_template_head');
 
 
 
369
 
370
 
371
  add_action('admin_head', 'NextendSocialLogin::styles', 100);
479
  $charset_collate = $wpdb->get_charset_collate();
480
 
481
  $sql = "CREATE TABLE " . $table_name . " (
482
+ `social_users_id` int(11) NOT NULL AUTO_INCREMENT PRIMARY KEY,
483
  `ID` int(11) NOT NULL,
484
  `type` varchar(20) NOT NULL,
485
  `identifier` varchar(100) NOT NULL,
685
  return $ret . self::getEmbeddedLoginForm();
686
  }
687
 
688
+ private static function getEmbeddedLoginForm($labelType = 'login') {
689
  ob_start();
690
  self::styles();
691
 
693
 
694
  $containerID = 'nsl-custom-login-form-' . $index;
695
 
696
+ echo '<div id="' . $containerID . '">' . self::renderButtonsWithContainer(self::$settings->get('embedded_login_form_button_style'), false, false, false, self::$settings->get('embedded_login_form_button_align'), $labelType) . '</div>';
697
 
698
  $template = self::get_template_part('embedded-login/' . sanitize_file_name(self::$settings->get('embedded_login_form_layout')) . '.php');
699
  if (!empty($template) && file_exists($template)) {
711
  echo self::getRenderedLoginButtons();
712
  }
713
 
714
+ public static function addRegisterFormButtons() {
715
+ echo self::getRenderedLoginButtons('register');
716
+ }
717
+
718
  public static function remove_action_login_form_buttons() {
719
  remove_action('login_form', 'NextendSocialLogin::addLoginFormButtons');
720
+ remove_action('register_form', 'NextendSocialLogin::addRegisterFormButtons');
721
  }
722
 
723
  public static function add_action_login_form_buttons() {
724
  add_action('login_form', 'NextendSocialLogin::addLoginFormButtons');
725
+ add_action('register_form', 'NextendSocialLogin::addRegisterFormButtons');
726
  }
727
 
728
+ private static function getRenderedLoginButtons($labelType = 'login') {
729
  if (!self::$loginHeadAdded || self::$loginMainButtonsAdded) {
730
 
731
+ return self::getEmbeddedLoginForm($labelType);
732
  }
733
 
734
  self::$loginMainButtonsAdded = true;
735
 
736
  $ret = '<div id="nsl-custom-login-form-main">';
737
+ $ret .= self::renderButtonsWithContainer(self::$settings->get('login_form_button_style'), false, false, false, self::$settings->get('login_form_button_align'), $labelType);
738
  $ret .= '</div>';
739
 
740
 
858
  $atts = array_merge(array(
859
  'style' => 'default',
860
  'redirect' => false,
861
+ 'trackerdata' => false,
862
+ 'labeltype' => 'login'
863
  ), $atts);
864
 
865
+ return self::renderButtonsWithContainerAndTitle($atts['heading'], $atts['style'], $providers, $atts['redirect'], $atts['trackerdata'], $atts['align'], $atts['labeltype']);
866
  }
867
 
868
  $link = filter_var($atts['link'], FILTER_VALIDATE_BOOLEAN);
881
  * @param bool|string $redirect_to
882
  * @param bool $trackerData
883
  * @param string $align
884
+ * @param string $labelType
885
  *
886
  * @return string
887
  */
888
+ public static function renderButtonsWithContainer($style = 'default', $providers = false, $redirect_to = false, $trackerData = false, $align = 'left', $labelType = 'login') {
889
+ return self::renderButtonsWithContainerAndTitle(false, $style, $providers, $redirect_to, $trackerData, $align, $labelType);
890
  }
891
 
892
+ private static function renderButtonsWithContainerAndTitle($heading = false, $style = 'default', $providers = false, $redirect_to = false, $trackerData = false, $align = 'left', $labelType = 'login') {
893
 
894
  if (!isset(self::$styles[$style])) {
895
  $style = 'default';
916
  if (count($enabledProviders)) {
917
  $buttons = '';
918
  foreach ($enabledProviders AS $provider) {
919
+ $buttons .= $provider->getConnectButton($style, $redirect_to, $trackerData, $labelType);
920
  }
921
 
922
  if (!empty($heading)) {
1265
  return false;
1266
  }
1267
 
1268
+ public static function amp_post_template_head() {
1269
+ if (class_exists('AMP_Theme_Support') && function_exists('amp_is_request') && amp_is_request()) {
1270
+ if (AMP_Theme_Support::READER_MODE_SLUG === AMP_Options_Manager::get_option(AmpProject\AmpWP\Option::THEME_SUPPORT)) {
1271
+ add_action('amp_post_template_head', 'NextendSocialLogin::styles', 100);
1272
+ }
1273
+ }
1274
+ }
1275
+
1276
+ public static function enableNoticeForUrl($url) {
1277
+ return add_query_arg(array('nsl-notice' => 1), $url);
1278
+ }
1279
+
1280
+ public static function getUserIDByIdOrEmail($id_or_email){
1281
+ $id = 0;
1282
+
1283
+ /**
1284
+ * Get the user id depending on the $id_or_email, it can be the user id, email and object.
1285
+ */
1286
+ if (is_numeric($id_or_email)) {
1287
+ $id = $id_or_email;
1288
+ } else if (is_string($id_or_email)) {
1289
+ $user = get_user_by('email', $id_or_email);
1290
+ if ($user) {
1291
+ $id = $user->ID;
1292
+ }
1293
+ } else if (is_object($id_or_email)) {
1294
+ if (!empty($id_or_email->comment_author_email)) {
1295
+ $user = get_user_by('email', $id_or_email->comment_author_email);
1296
+ if ($user) {
1297
+ $id = $user->ID;
1298
+ }
1299
+ } else if (!empty($id_or_email->user_id)) {
1300
+ $id = $id_or_email->user_id;
1301
+ }
1302
+ }
1303
+
1304
+ return $id;
1305
+ }
1306
  }
1307
 
1308
  NextendSocialLogin::init();
providers/facebook/admin/getting-started.php CHANGED
@@ -23,9 +23,10 @@ $provider = $this->getProvider();
23
  <ol>
24
  <li><?php printf(__('Navigate to %s', 'nextend-facebook-connect'), '<a href="https://developers.facebook.com/apps/" target="_blank">https://developers.facebook.com/apps/</a>'); ?></li>
25
  <li><?php printf(__('Log in with your %s credentials if you are not logged in', 'nextend-facebook-connect'), 'Facebook'); ?></li>
26
- <li><?php _e('Click on the "<b>Add a New App" button</b>', 'nextend-facebook-connect'); ?></li>
27
  <li><?php _e('If you see the message "<b>Become a Facebook Developer</b>", then you need to click on the green "<b>Register Now</b>" button, fill the form then finally verify your account.', 'nextend-facebook-connect'); ?></li>
28
- <li><?php printf(__('Fill "<b>Display Name</b>" and "<b>Contact Email</b>". The specified "Display Name" will appear on your %s!', 'nextend-facebook-connect'), '<a href="https://developers.facebook.com/docs/facebook-login/permissions/overview/" target="_blank">Consent Screen</a>'); ?></li>
 
29
  <li><?php _e('Click the "<b>Create App ID</b>" button and complete the Security Check.', 'nextend-facebook-connect'); ?></li>
30
  <li><?php printf(__('At the "<b>Add a Product</b>" panel find "<b>%1$s</b>" and click "<b>Set Up</b>"', 'nextend-facebook-connect'), 'Facebook Login', 'Settings') ?></li>
31
  <li><?php printf(__('Select "<b>Web</b>" and enter the following URL to the "<b>Site URL</b>" field: <b>%s</b>', 'nextend-facebook-connect'), site_url()); ?></li>
@@ -36,11 +37,25 @@ $provider = $this->getProvider();
36
  <li><?php printf(__('On the top left side, click on the “<b>%1$s</b>” menu point, then click “<b>%2$s</b>”', 'nextend-facebook-connect'), 'Settings', 'Basic') ?></li>
37
  <li><?php printf(__('Enter your domain name to the "<b>App Domains</b>" field, probably: <b>%s</b>', 'nextend-facebook-connect'), str_replace('www.', '', $_SERVER['HTTP_HOST'])); ?></li>
38
  <li><?php _e('Fill up the "<b>Privacy Policy URL</b>" field. Provide a publicly available and easily accessible privacy policy that explains what data you are collecting and how you will use that data.', 'nextend-facebook-connect'); ?></li>
39
- <li><?php _e('Select a “<b>Category</b>”, an “<b>App Icon</b>” and pick the “<b>Business Use</b>” option that describes your the App best, then press "<b>Save Changes</b>"', 'nextend-facebook-connect'); ?></li>
 
 
 
 
 
 
 
 
 
 
 
40
  <li><?php _e('Your application is currently private, which means that only you can log in with it. In the top bar click on the switch next to the "<b>In development</b>" label, then click the "<b>Switch Mode</b>" button.', 'nextend-facebook-connect'); ?></li>
41
  <li><?php printf(__('At the top of the page you can find your "<b>App ID</b>" and you can see your "<b>App secret</b>" if you click on the "Show" button. These will be needed in plugin’s settings.', 'nextend-facebook-connect'), 'Settings', 'Basic') ?></li>
42
  </ol>
43
 
 
 
 
44
  <a href="<?php echo $this->getUrl('settings'); ?>"
45
  class="button button-primary"><?php printf(__('I am done setting up my %s', 'nextend-facebook-connect'), 'Facebook App'); ?></a>
46
 
23
  <ol>
24
  <li><?php printf(__('Navigate to %s', 'nextend-facebook-connect'), '<a href="https://developers.facebook.com/apps/" target="_blank">https://developers.facebook.com/apps/</a>'); ?></li>
25
  <li><?php printf(__('Log in with your %s credentials if you are not logged in', 'nextend-facebook-connect'), 'Facebook'); ?></li>
26
+ <li><?php _e('Click on the "<b>Create App</b>" button and in the Popup choose the "<b>Build Connected Experiences</b>" option!', 'nextend-facebook-connect'); ?></li>
27
  <li><?php _e('If you see the message "<b>Become a Facebook Developer</b>", then you need to click on the green "<b>Register Now</b>" button, fill the form then finally verify your account.', 'nextend-facebook-connect'); ?></li>
28
+ <li><?php printf(__('Fill "<b>App Display Name</b>", "<b>App Contact Email</b>". The specified "App Display Name" will appear on your %s!', 'nextend-facebook-connect'), '<a href="https://developers.facebook.com/docs/facebook-login/permissions/overview/" target="_blank">Consent Screen</a>'); ?></li>
29
+ <li><?php _e('<b>Optional</b>: choose a "<b>Business Manager Account</b>" in the popup, if you have any.', 'nextend-facebook-connect'); ?></li>
30
  <li><?php _e('Click the "<b>Create App ID</b>" button and complete the Security Check.', 'nextend-facebook-connect'); ?></li>
31
  <li><?php printf(__('At the "<b>Add a Product</b>" panel find "<b>%1$s</b>" and click "<b>Set Up</b>"', 'nextend-facebook-connect'), 'Facebook Login', 'Settings') ?></li>
32
  <li><?php printf(__('Select "<b>Web</b>" and enter the following URL to the "<b>Site URL</b>" field: <b>%s</b>', 'nextend-facebook-connect'), site_url()); ?></li>
37
  <li><?php printf(__('On the top left side, click on the “<b>%1$s</b>” menu point, then click “<b>%2$s</b>”', 'nextend-facebook-connect'), 'Settings', 'Basic') ?></li>
38
  <li><?php printf(__('Enter your domain name to the "<b>App Domains</b>" field, probably: <b>%s</b>', 'nextend-facebook-connect'), str_replace('www.', '', $_SERVER['HTTP_HOST'])); ?></li>
39
  <li><?php _e('Fill up the "<b>Privacy Policy URL</b>" field. Provide a publicly available and easily accessible privacy policy that explains what data you are collecting and how you will use that data.', 'nextend-facebook-connect'); ?></li>
40
+ <li><?php _e('At "<b>User Data Deletion</b>", choose the "<b>Data Deletion Instructions URL</b>" option, and enter the <i>URL of your page</i>* with the instructions on how users can delete their accounts on your site.', 'nextend-facebook-connect'); ?>
41
+ <ul>
42
+ <li><?php _e('To comply with GDPR, you should already offer possibility to delete accounts on your site, either by the user or by the admin:', 'nextend-facebook-connect'); ?></li>
43
+ <li>
44
+ <ul>
45
+ <li><?php _e('<u>If each user has an option to delete the account</u>: the URL should point to a guide showing the way users can delete their accounts.', 'nextend-facebook-connect'); ?></li>
46
+ <li><?php _e('<u>If the accounts are deleted by an admin</u>: then you should have a section - usually in the Privacy Policy - with the contact details, where users can send their account erasure requests. In this case the URL should point to this section of the document.', 'nextend-facebook-connect'); ?></li>
47
+ </ul>
48
+ </li>
49
+ </ul>
50
+ </li>
51
+ <li><?php _e('Select a “<b>Category</b>”, an “<b>App Icon</b>” and pick the “<b>App Purpose</b>” option that describes your App the best, then press "<b>Save Changes</b>"', 'nextend-facebook-connect'); ?></li>
52
  <li><?php _e('Your application is currently private, which means that only you can log in with it. In the top bar click on the switch next to the "<b>In development</b>" label, then click the "<b>Switch Mode</b>" button.', 'nextend-facebook-connect'); ?></li>
53
  <li><?php printf(__('At the top of the page you can find your "<b>App ID</b>" and you can see your "<b>App secret</b>" if you click on the "Show" button. These will be needed in plugin’s settings.', 'nextend-facebook-connect'), 'Settings', 'Basic') ?></li>
54
  </ol>
55
 
56
+ <p><?php printf(__('<b>WARNING:</b> <u>Don\'t replace your Facebook App with another!</u> Since WordPress users with linked Facebook accounts can only login using the %1$s App, that was originally used at the time, when the WordPress account was linked with a %1$s Account.<br>
57
+ If you would like to know the reason of this, or you really need to replace the Facebook App, then please check our %2$sdocumentation%3$s.', 'nextend-facebook-connect'), 'Facebook', '<a href="https://nextendweb.com/nextend-social-login-docs/provider-facebook/#app_scoped_user_id" target="_blank">', '</a>'); ?></p>
58
+
59
  <a href="<?php echo $this->getUrl('settings'); ?>"
60
  class="button button-primary"><?php printf(__('I am done setting up my %s', 'nextend-facebook-connect'), 'Facebook App'); ?></a>
61
 
providers/facebook/admin/settings.php CHANGED
@@ -53,6 +53,16 @@ $settings = $provider->settings;
53
  <?php endif; ?>
54
  </tbody>
55
  </table>
 
 
 
 
 
 
 
 
 
 
56
  <p class="submit"><input type="submit" name="submit" id="submit" class="button button-primary"
57
  value="<?php _e('Save Changes'); ?>"></p>
58
 
53
  <?php endif; ?>
54
  </tbody>
55
  </table>
56
+
57
+ <?php if ($settings->get('appid')): ?>
58
+ <div class="error">
59
+ <p><?php printf(__('By replacing your existing %1$s App, users with linked %1$s accounts will no longer be able to login with %1$s.', 'nextend-facebook-connect'), 'Facebook'); ?></p>
60
+ <p>
61
+ <a href="https://nextendweb.com/nextend-social-login-docs/provider-facebook/#app_scoped_user_id" target="_blank"><?php _e('Find out why?', 'nextend-facebook-connect'); ?></a>
62
+ </p>
63
+ </div>
64
+ <?php endif; ?>
65
+
66
  <p class="submit"><input type="submit" name="submit" id="submit" class="button button-primary"
67
  value="<?php _e('Save Changes'); ?>"></p>
68
 
providers/facebook/facebook.php CHANGED
@@ -71,17 +71,19 @@ class NextendSocialProviderFacebook extends NextendSocialProvider {
71
  ));
72
 
73
  parent::__construct(array(
74
- 'appid' => '',
75
- 'secret' => '',
76
- 'skin' => 'dark',
77
- 'login_label' => 'Continue with <b>Facebook</b>',
78
- 'link_label' => 'Link account with <b>Facebook</b>',
79
- 'unlink_label' => 'Unlink account from <b>Facebook</b>'
 
80
  ));
81
  }
82
 
83
  protected function forTranslation() {
84
  __('Continue with <b>Facebook</b>', 'nextend-facebook-connect');
 
85
  __('Link account with <b>Facebook</b>', 'nextend-facebook-connect');
86
  __('Unlink account from <b>Facebook</b>', 'nextend-facebook-connect');
87
  }
71
  ));
72
 
73
  parent::__construct(array(
74
+ 'appid' => '',
75
+ 'secret' => '',
76
+ 'skin' => 'dark',
77
+ 'login_label' => 'Continue with <b>Facebook</b>',
78
+ 'register_label' => 'Sign up with <b>Facebook</b>',
79
+ 'link_label' => 'Link account with <b>Facebook</b>',
80
+ 'unlink_label' => 'Unlink account from <b>Facebook</b>'
81
  ));
82
  }
83
 
84
  protected function forTranslation() {
85
  __('Continue with <b>Facebook</b>', 'nextend-facebook-connect');
86
+ __('Sign up with <b>Facebook</b>', 'nextend-facebook-connect');
87
  __('Link account with <b>Facebook</b>', 'nextend-facebook-connect');
88
  __('Unlink account from <b>Facebook</b>', 'nextend-facebook-connect');
89
  }
providers/google/google-client.php CHANGED
@@ -21,7 +21,7 @@ class NextendSocialProviderGoogleClient extends NextendSocialOauth2 {
21
 
22
  protected $endpointAccessToken = 'https://accounts.google.com/o/oauth2/token';
23
 
24
- protected $endpointRestAPI = 'https://www.googleapis.com/oauth2/v1/';
25
 
26
  protected $defaultRestParams = array(
27
  'alt' => 'json'
21
 
22
  protected $endpointAccessToken = 'https://accounts.google.com/o/oauth2/token';
23
 
24
+ protected $endpointRestAPI = 'https://www.googleapis.com/oauth2/v2/';
25
 
26
  protected $defaultRestParams = array(
27
  'alt' => 'json'
providers/google/google.php CHANGED
@@ -18,18 +18,15 @@ class NextendSocialProviderGoogle extends NextendSocialProvider {
18
  const requiredApi1 = 'Google People API';
19
 
20
  protected $sync_fields = array(
21
- 'gender' => array(
22
- 'label' => 'Gender',
23
- 'node' => 'me',
24
- ),
25
- 'link' => array(
26
- 'label' => 'Profile link',
27
- 'node' => 'me',
28
- ),
29
  'locale' => array(
30
  'label' => 'Locale',
31
  'node' => 'me',
32
  ),
 
 
 
 
 
33
  'biographies' => array(
34
  'label' => 'Biographies',
35
  'node' => 'people',
@@ -51,13 +48,8 @@ class NextendSocialProviderGoogle extends NextendSocialProvider {
51
  'node' => 'people',
52
  'description' => self::requiredApi1,
53
  ),
54
- 'residences' => array(
55
- 'label' => 'Residences',
56
- 'node' => 'people',
57
- 'description' => self::requiredApi1,
58
- ),
59
- 'taglines' => array(
60
- 'label' => 'Taglines',
61
  'node' => 'people',
62
  'description' => self::requiredApi1,
63
  ),
@@ -97,6 +89,7 @@ class NextendSocialProviderGoogle extends NextendSocialProvider {
97
  'select_account' => 1,
98
  'skin' => 'light',
99
  'login_label' => 'Continue with <b>Google</b>',
 
100
  'link_label' => 'Link account with <b>Google</b>',
101
  'unlink_label' => 'Unlink account from <b>Google</b>'
102
  ));
@@ -104,6 +97,7 @@ class NextendSocialProviderGoogle extends NextendSocialProvider {
104
 
105
  protected function forTranslation() {
106
  __('Continue with <b>Google</b>', 'nextend-facebook-connect');
 
107
  __('Link account with <b>Google</b>', 'nextend-facebook-connect');
108
  __('Unlink account from <b>Google</b>', 'nextend-facebook-connect');
109
  }
18
  const requiredApi1 = 'Google People API';
19
 
20
  protected $sync_fields = array(
 
 
 
 
 
 
 
 
21
  'locale' => array(
22
  'label' => 'Locale',
23
  'node' => 'me',
24
  ),
25
+ 'genders' => array(
26
+ 'label' => 'Genders',
27
+ 'node' => 'people',
28
+ 'description' => self::requiredApi1,
29
+ ),
30
  'biographies' => array(
31
  'label' => 'Biographies',
32
  'node' => 'people',
48
  'node' => 'people',
49
  'description' => self::requiredApi1,
50
  ),
51
+ 'locations' => array(
52
+ 'label' => 'Locations',
 
 
 
 
 
53
  'node' => 'people',
54
  'description' => self::requiredApi1,
55
  ),
89
  'select_account' => 1,
90
  'skin' => 'light',
91
  'login_label' => 'Continue with <b>Google</b>',
92
+ 'register_label' => 'Sign up with <b>Google</b>',
93
  'link_label' => 'Link account with <b>Google</b>',
94
  'unlink_label' => 'Unlink account from <b>Google</b>'
95
  ));
97
 
98
  protected function forTranslation() {
99
  __('Continue with <b>Google</b>', 'nextend-facebook-connect');
100
+ __('Sign up with <b>Google</b>', 'nextend-facebook-connect');
101
  __('Link account with <b>Google</b>', 'nextend-facebook-connect');
102
  __('Unlink account from <b>Google</b>', 'nextend-facebook-connect');
103
  }
providers/twitter/admin/fix-redirect-uri.php CHANGED
@@ -5,10 +5,10 @@ defined('ABSPATH') || die();
5
  $provider = $this->getProvider();
6
  ?>
7
  <ol>
8
- <li><?php printf(__('Navigate to <b>%s</b>', 'nextend-facebook-connect'), '<a href="https://developer.twitter.com/en/apps" target="_blank">https://developer.twitter.com/en/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>Details</b>" button', 'nextend-facebook-connect'); ?></li>
11
- <li><?php _e('The <b>Edit</b> button can be found on the App details tab. Click on it and select "<b>Edit details</b>"', 'nextend-facebook-connect'); ?></li>
12
  <li><?php printf(__('Add the following URL to the "<b>Callback URLs</b>" field: <b>%s</b>', 'nextend-facebook-connect'), $provider->getRedirectUriForApp()); ?></li>
13
  <li><?php _e('Click on "<b>Save</b>"', 'nextend-facebook-connect'); ?></li>
14
  </ol>
5
  $provider = $this->getProvider();
6
  ?>
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 printf(__('Add the following URL to the "<b>Callback URLs</b>" field: <b>%s</b>', 'nextend-facebook-connect'), $provider->getRedirectUriForApp()); ?></li>
13
  <li><?php _e('Click on "<b>Save</b>"', 'nextend-facebook-connect'); ?></li>
14
  </ol>
providers/twitter/admin/getting-started.php CHANGED
@@ -13,19 +13,24 @@ $provider = $this->getProvider();
13
  <h2 class="title"><?php printf(_x('Create %s', 'App creation', 'nextend-facebook-connect'), 'Twitter App'); ?></h2>
14
 
15
  <ol>
16
- <li><?php printf(__('Navigate to <b>%s</b>', 'nextend-facebook-connect'), '<a href="https://developer.twitter.com/en/apps/create" target="_blank">https://developer.twitter.com/en/apps/create</a>'); ?></li>
17
- <li><?php printf(__('Log in with your %s credentials if you are not logged in yet', 'nextend-facebook-connect'), 'Twitter'); ?></li>
18
  <li><?php _e('If you don\'t have a developer account yet, please apply one by filling all the required details! This is required for the next steps!', 'nextend-facebook-connect'); ?></li>
19
- <li><?php printf(__('Once your developer account is complete, navigate back to <b>%s</b> if you aren\'t already there!', 'nextend-facebook-connect'), '<a href="https://developer.twitter.com/en/apps/create" target="_blank">https://developer.twitter.com/en/apps/create</a>'); ?>
20
- <li><?php printf(__('Fill the <b>App name</b>, <b>Application description</b> fields. Then enter your site\'s URL to the <b>Website URL</b> field: <b>%s</b>', 'nextend-facebook-connect'), site_url()); ?></li>
21
- <li><?php _e('Tick the checkbox next to <b>Enable Sign in with Twitter</b>!', 'nextend-facebook-connect'); ?></li>
22
- <li><?php printf(__('Add the following URL to the "<b>Callback URLs</b>" field: <b>%s</b>', 'nextend-facebook-connect'), $provider->getRedirectUriForApp()); ?></li>
23
- <li><?php _e('Fill the “<b>Terms of Service URL</b>", "<b>Privacy policy URL</b>" and "<b>Tell us how this app will be used</b>" fields!', 'nextend-facebook-connect'); ?></li>
24
- <li><?php _e('Click the <b>Create</b> button.', 'nextend-facebook-connect'); ?></li>
25
- <li><?php _e('Read the Developer Terms and click the <b>Create</b> button again!', 'nextend-facebook-connect'); ?></li>
26
- <li><?php _e('Select the <b>Permissions</b> tab and click <b>Edit</b>.', 'nextend-facebook-connect'); ?></li>
27
- <li><?php _e('Tick the <b>Request email address from users</b> under the Additional permissions section and click <b>Save</b>.', 'nextend-facebook-connect'); ?></li>
28
- <li><?php _e('Go to the <b>Keys and tokens</b> tab and find the <b>API key</b> and <b>API secret key</b>', 'nextend-facebook-connect'); ?></li>
 
 
 
 
 
29
  </ol>
30
 
31
  <a href="<?php echo $this->getUrl('settings'); ?>"
13
  <h2 class="title"><?php printf(_x('Create %s', 'App creation', 'nextend-facebook-connect'), 'Twitter App'); ?></h2>
14
 
15
  <ol>
16
+ <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>
17
+ <li><?php printf(__('Log in with your %s credentials if you are not logged in.', 'nextend-facebook-connect'), 'Twitter'); ?></li>
18
  <li><?php _e('If you don\'t have a developer account yet, please apply one by filling all the required details! This is required for the next steps!', 'nextend-facebook-connect'); ?></li>
19
+ <li><?php printf(__('Once your developer account is complete, navigate back to <b>%s</b> if you aren\'t already there!', 'nextend-facebook-connect'), '<a href="https://developer.twitter.com/en/portal/projects-and-apps" target="_blank">https://developer.twitter.com/en/portal/projects-and-apps</a>'); ?>
20
+ <li><?php _e('Click on <b>+ New Project</b>!', 'nextend-facebook-connect'); ?></li>
21
+ <li><?php _e('Name your project, and go through the basic setup. You’ll need to select your use case and give a description.', 'nextend-facebook-connect'); ?></li>
22
+ <li><?php _e('Create a new app, or select an existing one, then click <b>Complete</b>', 'nextend-facebook-connect'); ?></li>
23
+ <li><?php _e('You’ll find your API key and secret on this page. Copy and paste the <b>API key</b> and the <b>API secret key</b> to the corresponding fields at Nextend Social Login and press <b>Save Changes</b>.', 'nextend-facebook-connect'); ?></li>
24
+ <li><?php printf(__('Click on the <b>App Settings</b> button at %s.', 'nextend-facebook-connect'), 'Twitter'); ?></li>
25
+ <li><?php _e('Find the Apps section, and the app you created a few steps ago.', 'nextend-facebook-connect'); ?></li>
26
+ <li><?php _e('Click on the App settings icon. (The one that looks like a gear.)', 'nextend-facebook-connect'); ?></li>
27
+ <li><?php _e('Click on the <b>Edit</b> button at <b>Authentication settings</b>.', 'nextend-facebook-connect'); ?></li>
28
+ <li><?php _e('Switch on the <b>Enable 3-legged OAuth</b> option.', 'nextend-facebook-connect'); ?></li>
29
+ <li><?php printf(__('Add the following URL to the <b>Callback URLs</b> field: <b>%s</b>', 'nextend-facebook-connect'), $provider->getRedirectUriForApp()); ?></li>
30
+ <li><?php printf(__('Enter your site\'s URL to the <b>Website URL</b> field: <b>%s</b>', 'nextend-facebook-connect'), site_url()); ?></li>
31
+ <li><?php _e('If you want to get the email address as well, then don’t forget to enable the <b>Request email address from users</b> option. In this case you also need to fill the <b>Terms of service</b> and the <b>Privacy policy</b> fields with the corresponding URLs!', 'nextend-facebook-connect'); ?></li>
32
+ <li><?php _e('Click on <b>Save</b>.', 'nextend-facebook-connect'); ?></li>
33
+ <li><?php printf(__('Go back to Nextend Social Login and <b>Verify</b> your %s provider.', 'nextend-facebook-connect'), 'Twitter'); ?></li>
34
  </ol>
35
 
36
  <a href="<?php echo $this->getUrl('settings'); ?>"
providers/twitter/twitter.php CHANGED
@@ -59,6 +59,7 @@ class NextendSocialProviderTwitter extends NextendSocialProvider {
59
  'consumer_key' => '',
60
  'consumer_secret' => '',
61
  'login_label' => 'Continue with <b>Twitter</b>',
 
62
  'link_label' => 'Link account with <b>Twitter</b>',
63
  'unlink_label' => 'Unlink account from <b>Twitter</b>',
64
  'profile_image_size' => 'normal'
@@ -67,6 +68,7 @@ class NextendSocialProviderTwitter extends NextendSocialProvider {
67
 
68
  protected function forTranslation() {
69
  __('Continue with <b>Twitter</b>', 'nextend-facebook-connect');
 
70
  __('Link account with <b>Twitter</b>', 'nextend-facebook-connect');
71
  __('Unlink account from <b>Twitter</b>', 'nextend-facebook-connect');
72
  }
59
  'consumer_key' => '',
60
  'consumer_secret' => '',
61
  'login_label' => 'Continue with <b>Twitter</b>',
62
+ 'register_label' => 'Sign up with <b>Twitter</b>',
63
  'link_label' => 'Link account with <b>Twitter</b>',
64
  'unlink_label' => 'Unlink account from <b>Twitter</b>',
65
  'profile_image_size' => 'normal'
68
 
69
  protected function forTranslation() {
70
  __('Continue with <b>Twitter</b>', 'nextend-facebook-connect');
71
+ __('Sign up with <b>Twitter</b>', 'nextend-facebook-connect');
72
  __('Link account with <b>Twitter</b>', 'nextend-facebook-connect');
73
  __('Unlink account from <b>Twitter</b>', 'nextend-facebook-connect');
74
  }
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.5
7
- Stable tag: 3.0.25
8
  Requires PHP: 7.0
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
@@ -118,6 +118,40 @@ Using the Pro Addon you can set where the login buttons should appear on the Reg
118
 
119
  == Changelog ==
120
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
121
  = 3.0.25 =
122
  * Fix: WishList Member plugin prevented the strong redirects of Nextend Social Login.
123
  * Fix: Connect button – URL encoding in the redirect parameter to keep the URL parameters after login.
3
  Tags: social login, facebook, google, twitter, linkedin, register, login, social, nextend facebook connect, social sign in
4
  Donate link: https://www.facebook.com/nextendweb
5
  Requires at least: 4.9
6
+ Tested up to: 5.6
7
+ Stable tag: 3.0.27
8
  Requires PHP: 7.0
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
118
 
119
  == Changelog ==
120
 
121
+ = 3.0.27 =
122
+ * Fix: Ultimate Member prevents our registration when we need to ask extra information before the registration.
123
+ * Fix: post_mime_type PHP notice.
124
+ * Improvement: Italian translation files added.
125
+ * Improvement: Notice handling logic improvements.
126
+ * Improvement: [Twitter Getting Started](https://nextendweb.com/nextend-social-login-docs/provider-twitter/#configuration) Update
127
+ * Improvement: [Facebook Getting Started](https://nextendweb.com/nextend-social-login-docs/provider-facebook/#configuration) Update
128
+ * Improvement: [Facebook Warning](https://nextendweb.com/nextend-social-login-docs/provider-facebook/#limitations) for App replacing
129
+ * Improvement: Google provider – using OAuth2 v2 endpoint
130
+ * Improvement: [2 new filters](https://nextendweb.com/nextend-social-login-docs/backend-developer/#disabled-login-redirect-override) for customizing the redirect url and error message when login is disabled.
131
+ * Improvement: Database – new column "social_users_id" for Primary Key
132
+ * Improvement: PHP 8.0 compatibility
133
+ * Improvement: We will override the WordPress default avatar using the “pre_get_avatar_data” filter instead of “get_avatar” filter.
134
+
135
+ * PRO: Fix: [Apple](https://nextendweb.com/nextend-social-login-docs/provider-apple/#guidelines) provider – Logo overlaps the box shadow of the light button skin
136
+ * PRO: Improvement: New [Google Sync data](https://nextendweb.com/nextend-social-login-docs/provider-google/#sync_data) fields: Genders and Locations ( requires People API )
137
+ * PRO: Removed: [Google Sync data](https://nextendweb.com/nextend-social-login-docs/provider-google/#sync_data) fields: Gender, Profile link, Taglines and Residences
138
+
139
+
140
+ = 3.0.26 =
141
+ * Fix: PHP notice by AMP plugin
142
+ * Fix: The orphan thumbnail sizes generated from the avatars will be deleted when the earlier stored avatar has been overridden by the provider.
143
+ * Improvement: Hashed filenames for avatars to avoid tracking back the user avatars over the URL by User ID.
144
+ * Improvement: Avatars are now stored in the dedicated folder called nsl_avatars. The name of the folder can be modified with the NSL_AVATARS_FOLDER constant.
145
+ * Improvement: Ultimate Member – the registration date will appear in the info popup for users registered by social login.
146
+ * Improvement: [2 new filters](https://nextendweb.com/nextend-social-login-docs/backend-developer/#auth-url-args) for developers
147
+ * Improvement: [nsl_disabled_register_error_message](https://nextendweb.com/nextend-social-login-docs/backend-developer/#disabled-reg-message-override) filter will also work when the OAuth flow is being handled over the default login page.
148
+ * Improvement: Facebook provider – Getting Started update.
149
+ * Feature: [Custom label](https://nextendweb.com/nextend-social-login-docs/global-settings/#custom-register-label) for social buttons in register forms and new [shortcode parameter](https://nextendweb.com/nextend-social-login-docs/theme-developer/#shortcode) to use the register labels.
150
+ * Black friday offer
151
+
152
+ * PRO: Improvement: WooCommerce – [Email template for registration](https://nextendweb.com/nextend-social-login-docs/global-settings-woocommerce/#email-template) setting defines the email template that the registration notification will use when the registration happens with social login. Earlier this was a hidden and built in feature of the [Registration notification sent to](https://nextendweb.com/nextend-social-login-docs/global-settings/#pro-settings) setting.
153
+
154
+
155
  = 3.0.25 =
156
  * Fix: WishList Member plugin prevented the strong redirects of Nextend Social Login.
157
  * Fix: Connect button – URL encoding in the redirect parameter to keep the URL parameters after login.
template-parts/style.css CHANGED
@@ -89,6 +89,7 @@ div.nsl-container .nsl-button-svg-container {
89
  flex: 0 0 auto;
90
  padding: 8px;
91
  display: flex;
 
92
  }
93
 
94
  div.nsl-container svg {
@@ -139,7 +140,7 @@ div.nsl-container .nsl-button-apple .nsl-button-svg-container svg {
139
 
140
  div.nsl-container .nsl-button-apple[data-skin="light"] {
141
  color: #000;
142
- box-shadow: inset 0 0 0 1px #000;
143
  }
144
 
145
  div.nsl-container .nsl-button-facebook[data-skin="white"] {
89
  flex: 0 0 auto;
90
  padding: 8px;
91
  display: flex;
92
+ align-items: center;
93
  }
94
 
95
  div.nsl-container svg {
140
 
141
  div.nsl-container .nsl-button-apple[data-skin="light"] {
142
  color: #000;
143
+ box-shadow: 0 0 0 1px #000;
144
  }
145
 
146
  div.nsl-container .nsl-button-facebook[data-skin="white"] {